????

Your IP : 3.12.162.40


Current Path : C:/opt/
Upload File :
Current File : C:/opt/tadu.sql

--
-- PostgreSQL database cluster dump
--

SET default_transaction_read_only = off;

SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;

--
-- Roles
--

CREATE ROLE geoserver;
ALTER ROLE geoserver WITH SUPERUSER INHERIT NOCREATEROLE CREATEDB LOGIN NOREPLICATION NOBYPASSRLS PASSWORD 'SCRAM-SHA-256$4096:CQWw4HyPHEeTrbCNdAwzZQ==$AkNCnSKXc4g5jFsCPzfw1iM4dHwkbmekFoFnqZHsAtg=:JfVjimsbDWGZWZD3QWQFiaKd7bwNsyfQdM8IJmMPcyQ=';
CREATE ROLE gitea;
ALTER ROLE gitea WITH NOSUPERUSER INHERIT NOCREATEROLE NOCREATEDB LOGIN NOREPLICATION NOBYPASSRLS PASSWORD 'SCRAM-SHA-256$4096:TPIzhmF+SlAqFXR7AmF4ag==$G2lyMYLtVf76W4Ttx74y5PGoWo19axch5M9pWifl1tM=:3cxUiQKU7CRxpgMQwxY/qyNVlJaBjnA2Sm14ypUYpOE=';
CREATE ROLE postgres;
ALTER ROLE postgres WITH SUPERUSER INHERIT CREATEROLE CREATEDB LOGIN REPLICATION BYPASSRLS;
CREATE ROLE sdoc;
ALTER ROLE sdoc WITH NOSUPERUSER INHERIT NOCREATEROLE CREATEDB LOGIN NOREPLICATION NOBYPASSRLS PASSWORD 'SCRAM-SHA-256$4096:L2eObKPuv92gRdKW9ykZzw==$uFztP1Xia8NOl37IhWGcj8MobYa5Aksc9MOkvEiij/A=:h4x+MOzjbdCKKoZk0WDcrSeynF9xgner2FwI2KoJwgY=';

--
-- User Configurations
--








--
-- Databases
--

--
-- Database "template1" dump
--

\connect template1

--
-- PostgreSQL database dump
--

-- Dumped from database version 15.5
-- Dumped by pg_dump version 16.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;

--
-- PostgreSQL database dump complete
--

--
-- Database "giteadb" dump
--

--
-- PostgreSQL database dump
--

-- Dumped from database version 15.5
-- Dumped by pg_dump version 16.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: giteadb; Type: DATABASE; Schema: -; Owner: gitea
--

CREATE DATABASE giteadb WITH TEMPLATE = template0 ENCODING = 'UTF8' LOCALE_PROVIDER = libc LOCALE = 'en_US.UTF-8';


ALTER DATABASE giteadb OWNER TO gitea;

\connect giteadb

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;

SET default_tablespace = '';

SET default_table_access_method = heap;

--
-- Name: access; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.access (
    id bigint NOT NULL,
    user_id bigint,
    repo_id bigint,
    mode integer
);


ALTER TABLE public.access OWNER TO gitea;

--
-- Name: access_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.access_id_seq OWNER TO gitea;

--
-- Name: access_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.access_id_seq OWNED BY public.access.id;


--
-- Name: access_token; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.access_token (
    id bigint NOT NULL,
    uid bigint,
    name character varying(255),
    token_hash character varying(255),
    token_salt character varying(255),
    token_last_eight character varying(255),
    scope character varying(255),
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.access_token OWNER TO gitea;

--
-- Name: access_token_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.access_token_id_seq OWNER TO gitea;

--
-- Name: access_token_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.access_token_id_seq OWNED BY public.access_token.id;


--
-- Name: action; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.action (
    id bigint NOT NULL,
    user_id bigint,
    op_type integer,
    act_user_id bigint,
    repo_id bigint,
    comment_id bigint,
    is_deleted boolean DEFAULT false NOT NULL,
    ref_name character varying(255),
    is_private boolean DEFAULT false NOT NULL,
    content text,
    created_unix bigint
);


ALTER TABLE public.action OWNER TO gitea;

--
-- Name: action_artifact; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.action_artifact (
    id bigint NOT NULL,
    run_id bigint,
    runner_id bigint,
    repo_id bigint,
    owner_id bigint,
    commit_sha character varying(255),
    storage_path character varying(255),
    file_size bigint,
    file_compressed_size bigint,
    content_encoding character varying(255),
    artifact_path character varying(255),
    artifact_name character varying(255),
    status bigint,
    created_unix bigint,
    updated_unix bigint,
    expired_unix bigint
);


ALTER TABLE public.action_artifact OWNER TO gitea;

--
-- Name: action_artifact_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.action_artifact_id_seq OWNER TO gitea;

--
-- Name: action_artifact_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.action_artifact_id_seq OWNED BY public.action_artifact.id;


--
-- Name: action_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.action_id_seq OWNER TO gitea;

--
-- Name: action_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.action_id_seq OWNED BY public.action.id;


--
-- Name: action_run; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.action_run (
    id bigint NOT NULL,
    title character varying(255),
    repo_id bigint,
    owner_id bigint,
    workflow_id character varying(255),
    index bigint,
    trigger_user_id bigint,
    ref character varying(255),
    commit_sha character varying(255),
    is_fork_pull_request boolean,
    event character varying(255),
    event_payload text,
    status integer,
    started bigint,
    stopped bigint,
    created bigint,
    updated bigint,
    need_approval boolean,
    approved_by bigint,
    trigger_event character varying(255),
    version integer DEFAULT 0,
    schedule_id bigint
);


ALTER TABLE public.action_run OWNER TO gitea;

--
-- Name: action_run_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.action_run_id_seq OWNER TO gitea;

--
-- Name: action_run_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.action_run_id_seq OWNED BY public.action_run.id;


--
-- Name: action_run_index; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.action_run_index (
    group_id bigint NOT NULL,
    max_index bigint
);


ALTER TABLE public.action_run_index OWNER TO gitea;

--
-- Name: action_run_job; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.action_run_job (
    id bigint NOT NULL,
    run_id bigint,
    repo_id bigint,
    owner_id bigint,
    commit_sha character varying(255),
    is_fork_pull_request boolean,
    name character varying(255),
    attempt bigint,
    workflow_payload bytea,
    job_id character varying(255),
    needs text,
    runs_on text,
    task_id bigint,
    status integer,
    started bigint,
    stopped bigint,
    created bigint,
    updated bigint
);


ALTER TABLE public.action_run_job OWNER TO gitea;

--
-- Name: action_run_job_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.action_run_job_id_seq OWNER TO gitea;

--
-- Name: action_run_job_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.action_run_job_id_seq OWNED BY public.action_run_job.id;


--
-- Name: action_runner; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.action_runner (
    id bigint NOT NULL,
    uuid character(36),
    name character varying(255),
    owner_id bigint,
    repo_id bigint,
    description text,
    base integer,
    repo_range character varying(255),
    token_hash character varying(255),
    token_salt character varying(255),
    last_online bigint,
    last_active bigint,
    agent_labels text,
    created bigint,
    updated bigint,
    deleted bigint,
    version character varying(64)
);


ALTER TABLE public.action_runner OWNER TO gitea;

--
-- Name: action_runner_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.action_runner_id_seq OWNER TO gitea;

--
-- Name: action_runner_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.action_runner_id_seq OWNED BY public.action_runner.id;


--
-- Name: action_runner_token; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.action_runner_token (
    id bigint NOT NULL,
    token character varying(255),
    owner_id bigint,
    repo_id bigint,
    is_active boolean,
    created bigint,
    updated bigint,
    deleted bigint
);


ALTER TABLE public.action_runner_token OWNER TO gitea;

--
-- Name: action_runner_token_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.action_runner_token_id_seq OWNER TO gitea;

--
-- Name: action_runner_token_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.action_runner_token_id_seq OWNED BY public.action_runner_token.id;


--
-- Name: action_schedule; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.action_schedule (
    id bigint NOT NULL,
    title character varying(255),
    specs text,
    repo_id bigint,
    owner_id bigint,
    workflow_id character varying(255),
    trigger_user_id bigint,
    ref character varying(255),
    commit_sha character varying(255),
    event character varying(255),
    event_payload text,
    content bytea,
    created bigint,
    updated bigint
);


ALTER TABLE public.action_schedule OWNER TO gitea;

--
-- Name: action_schedule_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.action_schedule_id_seq OWNER TO gitea;

--
-- Name: action_schedule_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.action_schedule_id_seq OWNED BY public.action_schedule.id;


--
-- Name: action_schedule_spec; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.action_schedule_spec (
    id bigint NOT NULL,
    repo_id bigint,
    schedule_id bigint,
    spec character varying(255),
    next bigint,
    prev bigint,
    created bigint,
    updated bigint
);


ALTER TABLE public.action_schedule_spec OWNER TO gitea;

--
-- Name: action_schedule_spec_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.action_schedule_spec_id_seq OWNER TO gitea;

--
-- Name: action_schedule_spec_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.action_schedule_spec_id_seq OWNED BY public.action_schedule_spec.id;


--
-- Name: action_task; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.action_task (
    id bigint NOT NULL,
    job_id bigint,
    attempt bigint,
    runner_id bigint,
    status integer,
    started bigint,
    stopped bigint,
    repo_id bigint,
    owner_id bigint,
    commit_sha character varying(255),
    is_fork_pull_request boolean,
    token_hash character varying(255),
    token_salt character varying(255),
    token_last_eight character varying(255),
    log_filename character varying(255),
    log_in_storage boolean,
    log_length bigint,
    log_size bigint,
    log_indexes bytea,
    log_expired boolean,
    created bigint,
    updated bigint
);


ALTER TABLE public.action_task OWNER TO gitea;

--
-- Name: action_task_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.action_task_id_seq OWNER TO gitea;

--
-- Name: action_task_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.action_task_id_seq OWNED BY public.action_task.id;


--
-- Name: action_task_output; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.action_task_output (
    id bigint NOT NULL,
    task_id bigint,
    output_key character varying(255),
    output_value text
);


ALTER TABLE public.action_task_output OWNER TO gitea;

--
-- Name: action_task_output_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.action_task_output_id_seq OWNER TO gitea;

--
-- Name: action_task_output_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.action_task_output_id_seq OWNED BY public.action_task_output.id;


--
-- Name: action_task_step; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.action_task_step (
    id bigint NOT NULL,
    name character varying(255),
    task_id bigint,
    index bigint,
    repo_id bigint,
    status integer,
    log_index bigint,
    log_length bigint,
    started bigint,
    stopped bigint,
    created bigint,
    updated bigint
);


ALTER TABLE public.action_task_step OWNER TO gitea;

--
-- Name: action_task_step_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.action_task_step_id_seq OWNER TO gitea;

--
-- Name: action_task_step_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.action_task_step_id_seq OWNED BY public.action_task_step.id;


--
-- Name: action_tasks_version; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.action_tasks_version (
    id bigint NOT NULL,
    owner_id bigint,
    repo_id bigint,
    version bigint,
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.action_tasks_version OWNER TO gitea;

--
-- Name: action_tasks_version_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.action_tasks_version_id_seq OWNER TO gitea;

--
-- Name: action_tasks_version_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.action_tasks_version_id_seq OWNED BY public.action_tasks_version.id;


--
-- Name: action_variable; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.action_variable (
    id bigint NOT NULL,
    owner_id bigint,
    repo_id bigint,
    name character varying(255) NOT NULL,
    data text NOT NULL,
    created_unix bigint NOT NULL,
    updated_unix bigint
);


ALTER TABLE public.action_variable OWNER TO gitea;

--
-- Name: action_variable_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.action_variable_id_seq OWNER TO gitea;

--
-- Name: action_variable_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.action_variable_id_seq OWNED BY public.action_variable.id;


--
-- Name: app_state; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.app_state (
    id character varying(200) NOT NULL,
    revision bigint,
    content text
);


ALTER TABLE public.app_state OWNER TO gitea;

--
-- Name: attachment; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.attachment (
    id bigint NOT NULL,
    uuid uuid,
    repo_id bigint,
    issue_id bigint,
    release_id bigint,
    uploader_id bigint DEFAULT 0,
    comment_id bigint,
    name character varying(255),
    download_count bigint DEFAULT 0,
    size bigint DEFAULT 0,
    created_unix bigint
);


ALTER TABLE public.attachment OWNER TO gitea;

--
-- Name: attachment_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.attachment_id_seq OWNER TO gitea;

--
-- Name: attachment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.attachment_id_seq OWNED BY public.attachment.id;


--
-- Name: badge; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.badge (
    id bigint NOT NULL,
    description character varying(255),
    image_url character varying(255)
);


ALTER TABLE public.badge OWNER TO gitea;

--
-- Name: badge_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.badge_id_seq OWNER TO gitea;

--
-- Name: badge_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.badge_id_seq OWNED BY public.badge.id;


--
-- Name: branch; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.branch (
    id bigint NOT NULL,
    repo_id bigint,
    name character varying(255) NOT NULL,
    commit_id character varying(255),
    commit_message text,
    pusher_id bigint,
    is_deleted boolean,
    deleted_by_id bigint,
    deleted_unix bigint,
    commit_time bigint,
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.branch OWNER TO gitea;

--
-- Name: branch_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.branch_id_seq OWNER TO gitea;

--
-- Name: branch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.branch_id_seq OWNED BY public.branch.id;


--
-- Name: collaboration; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.collaboration (
    id bigint NOT NULL,
    repo_id bigint NOT NULL,
    user_id bigint NOT NULL,
    mode integer DEFAULT 2 NOT NULL,
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.collaboration OWNER TO gitea;

--
-- Name: collaboration_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.collaboration_id_seq OWNER TO gitea;

--
-- Name: collaboration_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.collaboration_id_seq OWNED BY public.collaboration.id;


--
-- Name: comment; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.comment (
    id bigint NOT NULL,
    type integer,
    poster_id bigint,
    original_author character varying(255),
    original_author_id bigint,
    issue_id bigint,
    label_id bigint,
    old_project_id bigint,
    project_id bigint,
    old_milestone_id bigint,
    milestone_id bigint,
    time_id bigint,
    assignee_id bigint,
    removed_assignee boolean,
    assignee_team_id bigint DEFAULT 0 NOT NULL,
    resolve_doer_id bigint,
    old_title character varying(255),
    new_title character varying(255),
    old_ref character varying(255),
    new_ref character varying(255),
    dependent_issue_id bigint,
    commit_id bigint,
    line bigint,
    tree_path character varying(255),
    content text,
    patch text,
    created_unix bigint,
    updated_unix bigint,
    commit_sha character varying(40),
    review_id bigint,
    invalidated boolean,
    ref_repo_id bigint,
    ref_issue_id bigint,
    ref_comment_id bigint,
    ref_action smallint,
    ref_is_pull boolean
);


ALTER TABLE public.comment OWNER TO gitea;

--
-- Name: comment_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.comment_id_seq OWNER TO gitea;

--
-- Name: comment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.comment_id_seq OWNED BY public.comment.id;


--
-- Name: commit_status; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.commit_status (
    id bigint NOT NULL,
    index bigint,
    repo_id bigint,
    state character varying(7) NOT NULL,
    sha character varying(64) NOT NULL,
    target_url text,
    description text,
    context_hash character(40),
    context text,
    creator_id bigint,
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.commit_status OWNER TO gitea;

--
-- Name: commit_status_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.commit_status_id_seq OWNER TO gitea;

--
-- Name: commit_status_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.commit_status_id_seq OWNED BY public.commit_status.id;


--
-- Name: commit_status_index; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.commit_status_index (
    id bigint NOT NULL,
    repo_id bigint,
    sha character varying(255),
    max_index bigint
);


ALTER TABLE public.commit_status_index OWNER TO gitea;

--
-- Name: commit_status_index_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.commit_status_index_id_seq OWNER TO gitea;

--
-- Name: commit_status_index_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.commit_status_index_id_seq OWNED BY public.commit_status_index.id;


--
-- Name: dbfs_data; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.dbfs_data (
    id bigint NOT NULL,
    revision bigint NOT NULL,
    meta_id bigint NOT NULL,
    blob_offset bigint NOT NULL,
    blob_size bigint NOT NULL,
    blob_data bytea NOT NULL
);


ALTER TABLE public.dbfs_data OWNER TO gitea;

--
-- Name: dbfs_data_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.dbfs_data_id_seq OWNER TO gitea;

--
-- Name: dbfs_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.dbfs_data_id_seq OWNED BY public.dbfs_data.id;


--
-- Name: dbfs_meta; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.dbfs_meta (
    id bigint NOT NULL,
    full_path character varying(500) NOT NULL,
    block_size bigint NOT NULL,
    file_size bigint NOT NULL,
    create_timestamp bigint NOT NULL,
    modify_timestamp bigint NOT NULL
);


ALTER TABLE public.dbfs_meta OWNER TO gitea;

--
-- Name: dbfs_meta_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.dbfs_meta_id_seq OWNER TO gitea;

--
-- Name: dbfs_meta_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.dbfs_meta_id_seq OWNED BY public.dbfs_meta.id;


--
-- Name: deploy_key; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.deploy_key (
    id bigint NOT NULL,
    key_id bigint,
    repo_id bigint,
    name character varying(255),
    fingerprint character varying(255),
    mode integer DEFAULT 1 NOT NULL,
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.deploy_key OWNER TO gitea;

--
-- Name: deploy_key_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.deploy_key_id_seq OWNER TO gitea;

--
-- Name: deploy_key_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.deploy_key_id_seq OWNED BY public.deploy_key.id;


--
-- Name: email_address; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.email_address (
    id bigint NOT NULL,
    uid bigint NOT NULL,
    email character varying(255) NOT NULL,
    lower_email character varying(255) NOT NULL,
    is_activated boolean,
    is_primary boolean DEFAULT false NOT NULL
);


ALTER TABLE public.email_address OWNER TO gitea;

--
-- Name: email_address_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.email_address_id_seq OWNER TO gitea;

--
-- Name: email_address_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.email_address_id_seq OWNED BY public.email_address.id;


--
-- Name: email_hash; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.email_hash (
    hash character varying(32) NOT NULL,
    email character varying(255) NOT NULL
);


ALTER TABLE public.email_hash OWNER TO gitea;

--
-- Name: external_login_user; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.external_login_user (
    external_id character varying(255) NOT NULL,
    user_id bigint NOT NULL,
    login_source_id bigint NOT NULL,
    raw_data json,
    provider character varying(25),
    email character varying(255),
    name character varying(255),
    first_name character varying(255),
    last_name character varying(255),
    nick_name character varying(255),
    description character varying(255),
    avatar_url text,
    location character varying(255),
    access_token text,
    access_token_secret text,
    refresh_token text,
    expires_at timestamp without time zone
);


ALTER TABLE public.external_login_user OWNER TO gitea;

--
-- Name: follow; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.follow (
    id bigint NOT NULL,
    user_id bigint,
    follow_id bigint,
    created_unix bigint
);


ALTER TABLE public.follow OWNER TO gitea;

--
-- Name: follow_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.follow_id_seq OWNER TO gitea;

--
-- Name: follow_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.follow_id_seq OWNED BY public.follow.id;


--
-- Name: gpg_key; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.gpg_key (
    id bigint NOT NULL,
    owner_id bigint NOT NULL,
    key_id character(16) NOT NULL,
    primary_key_id character(16),
    content text NOT NULL,
    created_unix bigint,
    expired_unix bigint,
    added_unix bigint,
    emails text,
    verified boolean DEFAULT false NOT NULL,
    can_sign boolean,
    can_encrypt_comms boolean,
    can_encrypt_storage boolean,
    can_certify boolean
);


ALTER TABLE public.gpg_key OWNER TO gitea;

--
-- Name: gpg_key_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.gpg_key_id_seq OWNER TO gitea;

--
-- Name: gpg_key_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.gpg_key_id_seq OWNED BY public.gpg_key.id;


--
-- Name: gpg_key_import; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.gpg_key_import (
    key_id character(16) NOT NULL,
    content text NOT NULL
);


ALTER TABLE public.gpg_key_import OWNER TO gitea;

--
-- Name: hook_task; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.hook_task (
    id bigint NOT NULL,
    hook_id bigint,
    uuid character varying(255),
    payload_content text,
    event_type character varying(255),
    is_delivered boolean,
    delivered bigint,
    is_succeed boolean,
    request_content text,
    response_content text
);


ALTER TABLE public.hook_task OWNER TO gitea;

--
-- Name: hook_task_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.hook_task_id_seq OWNER TO gitea;

--
-- Name: hook_task_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.hook_task_id_seq OWNED BY public.hook_task.id;


--
-- Name: issue; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.issue (
    id bigint NOT NULL,
    repo_id bigint,
    index bigint,
    poster_id bigint,
    original_author character varying(255),
    original_author_id bigint,
    name character varying(255),
    content text,
    milestone_id bigint,
    priority integer,
    is_closed boolean,
    is_pull boolean,
    num_comments integer,
    ref character varying(255),
    deadline_unix bigint,
    created_unix bigint,
    updated_unix bigint,
    closed_unix bigint,
    is_locked boolean DEFAULT false NOT NULL,
    pin_order integer DEFAULT 0
);


ALTER TABLE public.issue OWNER TO gitea;

--
-- Name: issue_assignees; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.issue_assignees (
    id bigint NOT NULL,
    assignee_id bigint,
    issue_id bigint
);


ALTER TABLE public.issue_assignees OWNER TO gitea;

--
-- Name: issue_assignees_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.issue_assignees_id_seq OWNER TO gitea;

--
-- Name: issue_assignees_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.issue_assignees_id_seq OWNED BY public.issue_assignees.id;


--
-- Name: issue_content_history; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.issue_content_history (
    id bigint NOT NULL,
    poster_id bigint,
    issue_id bigint,
    comment_id bigint,
    edited_unix bigint,
    content_text text,
    is_first_created boolean,
    is_deleted boolean
);


ALTER TABLE public.issue_content_history OWNER TO gitea;

--
-- Name: issue_content_history_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.issue_content_history_id_seq OWNER TO gitea;

--
-- Name: issue_content_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.issue_content_history_id_seq OWNED BY public.issue_content_history.id;


--
-- Name: issue_dependency; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.issue_dependency (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    issue_id bigint NOT NULL,
    dependency_id bigint NOT NULL,
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.issue_dependency OWNER TO gitea;

--
-- Name: issue_dependency_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.issue_dependency_id_seq OWNER TO gitea;

--
-- Name: issue_dependency_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.issue_dependency_id_seq OWNED BY public.issue_dependency.id;


--
-- Name: issue_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.issue_id_seq OWNER TO gitea;

--
-- Name: issue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.issue_id_seq OWNED BY public.issue.id;


--
-- Name: issue_index; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.issue_index (
    group_id bigint NOT NULL,
    max_index bigint
);


ALTER TABLE public.issue_index OWNER TO gitea;

--
-- Name: issue_label; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.issue_label (
    id bigint NOT NULL,
    issue_id bigint,
    label_id bigint
);


ALTER TABLE public.issue_label OWNER TO gitea;

--
-- Name: issue_label_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.issue_label_id_seq OWNER TO gitea;

--
-- Name: issue_label_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.issue_label_id_seq OWNED BY public.issue_label.id;


--
-- Name: issue_user; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.issue_user (
    id bigint NOT NULL,
    uid bigint,
    issue_id bigint,
    is_read boolean,
    is_mentioned boolean
);


ALTER TABLE public.issue_user OWNER TO gitea;

--
-- Name: issue_user_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.issue_user_id_seq OWNER TO gitea;

--
-- Name: issue_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.issue_user_id_seq OWNED BY public.issue_user.id;


--
-- Name: issue_watch; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.issue_watch (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    issue_id bigint NOT NULL,
    is_watching boolean NOT NULL,
    created_unix bigint NOT NULL,
    updated_unix bigint NOT NULL
);


ALTER TABLE public.issue_watch OWNER TO gitea;

--
-- Name: issue_watch_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.issue_watch_id_seq OWNER TO gitea;

--
-- Name: issue_watch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.issue_watch_id_seq OWNED BY public.issue_watch.id;


--
-- Name: label; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.label (
    id bigint NOT NULL,
    repo_id bigint,
    org_id bigint,
    name character varying(255),
    exclusive boolean,
    description character varying(255),
    color character varying(7),
    num_issues integer,
    num_closed_issues integer,
    created_unix bigint,
    updated_unix bigint,
    archived_unix bigint
);


ALTER TABLE public.label OWNER TO gitea;

--
-- Name: label_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.label_id_seq OWNER TO gitea;

--
-- Name: label_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.label_id_seq OWNED BY public.label.id;


--
-- Name: language_stat; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.language_stat (
    id bigint NOT NULL,
    repo_id bigint NOT NULL,
    commit_id character varying(255),
    is_primary boolean,
    language character varying(50) NOT NULL,
    size bigint DEFAULT 0 NOT NULL,
    created_unix bigint
);


ALTER TABLE public.language_stat OWNER TO gitea;

--
-- Name: language_stat_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.language_stat_id_seq OWNER TO gitea;

--
-- Name: language_stat_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.language_stat_id_seq OWNED BY public.language_stat.id;


--
-- Name: lfs_lock; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.lfs_lock (
    id bigint NOT NULL,
    repo_id bigint NOT NULL,
    owner_id bigint NOT NULL,
    path text,
    created timestamp without time zone
);


ALTER TABLE public.lfs_lock OWNER TO gitea;

--
-- Name: lfs_lock_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.lfs_lock_id_seq OWNER TO gitea;

--
-- Name: lfs_lock_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.lfs_lock_id_seq OWNED BY public.lfs_lock.id;


--
-- Name: lfs_meta_object; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.lfs_meta_object (
    id bigint NOT NULL,
    oid character varying(255) NOT NULL,
    size bigint NOT NULL,
    repository_id bigint NOT NULL,
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.lfs_meta_object OWNER TO gitea;

--
-- Name: lfs_meta_object_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.lfs_meta_object_id_seq OWNER TO gitea;

--
-- Name: lfs_meta_object_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.lfs_meta_object_id_seq OWNED BY public.lfs_meta_object.id;


--
-- Name: login_source; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.login_source (
    id bigint NOT NULL,
    type integer,
    name character varying(255),
    is_active boolean DEFAULT false NOT NULL,
    is_sync_enabled boolean DEFAULT false NOT NULL,
    cfg text,
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.login_source OWNER TO gitea;

--
-- Name: login_source_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.login_source_id_seq OWNER TO gitea;

--
-- Name: login_source_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.login_source_id_seq OWNED BY public.login_source.id;


--
-- Name: milestone; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.milestone (
    id bigint NOT NULL,
    repo_id bigint,
    name character varying(255),
    content text,
    is_closed boolean,
    num_issues integer,
    num_closed_issues integer,
    completeness integer,
    created_unix bigint,
    updated_unix bigint,
    deadline_unix bigint,
    closed_date_unix bigint
);


ALTER TABLE public.milestone OWNER TO gitea;

--
-- Name: milestone_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.milestone_id_seq OWNER TO gitea;

--
-- Name: milestone_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.milestone_id_seq OWNED BY public.milestone.id;


--
-- Name: mirror; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.mirror (
    id bigint NOT NULL,
    repo_id bigint,
    "interval" bigint,
    enable_prune boolean DEFAULT true NOT NULL,
    updated_unix bigint,
    next_update_unix bigint,
    lfs_enabled boolean DEFAULT false NOT NULL,
    lfs_endpoint text,
    remote_address character varying(2048)
);


ALTER TABLE public.mirror OWNER TO gitea;

--
-- Name: mirror_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.mirror_id_seq OWNER TO gitea;

--
-- Name: mirror_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.mirror_id_seq OWNED BY public.mirror.id;


--
-- Name: notice; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.notice (
    id bigint NOT NULL,
    type integer,
    description text,
    created_unix bigint
);


ALTER TABLE public.notice OWNER TO gitea;

--
-- Name: notice_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.notice_id_seq OWNER TO gitea;

--
-- Name: notice_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.notice_id_seq OWNED BY public.notice.id;


--
-- Name: notification; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.notification (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    repo_id bigint NOT NULL,
    status smallint NOT NULL,
    source smallint NOT NULL,
    issue_id bigint NOT NULL,
    commit_id character varying(255),
    comment_id bigint,
    updated_by bigint NOT NULL,
    created_unix bigint NOT NULL,
    updated_unix bigint NOT NULL
);


ALTER TABLE public.notification OWNER TO gitea;

--
-- Name: notification_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.notification_id_seq OWNER TO gitea;

--
-- Name: notification_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.notification_id_seq OWNED BY public.notification.id;


--
-- Name: oauth2_application; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.oauth2_application (
    id bigint NOT NULL,
    uid bigint,
    name character varying(255),
    client_id character varying(255),
    client_secret character varying(255),
    confidential_client boolean DEFAULT true NOT NULL,
    redirect_uris text,
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.oauth2_application OWNER TO gitea;

--
-- Name: oauth2_application_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.oauth2_application_id_seq OWNER TO gitea;

--
-- Name: oauth2_application_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.oauth2_application_id_seq OWNED BY public.oauth2_application.id;


--
-- Name: oauth2_authorization_code; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.oauth2_authorization_code (
    id bigint NOT NULL,
    grant_id bigint,
    code character varying(255),
    code_challenge character varying(255),
    code_challenge_method character varying(255),
    redirect_uri character varying(255),
    valid_until bigint
);


ALTER TABLE public.oauth2_authorization_code OWNER TO gitea;

--
-- Name: oauth2_authorization_code_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.oauth2_authorization_code_id_seq OWNER TO gitea;

--
-- Name: oauth2_authorization_code_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.oauth2_authorization_code_id_seq OWNED BY public.oauth2_authorization_code.id;


--
-- Name: oauth2_grant; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.oauth2_grant (
    id bigint NOT NULL,
    user_id bigint,
    application_id bigint,
    counter bigint DEFAULT 1 NOT NULL,
    scope text,
    nonce text,
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.oauth2_grant OWNER TO gitea;

--
-- Name: oauth2_grant_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.oauth2_grant_id_seq OWNER TO gitea;

--
-- Name: oauth2_grant_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.oauth2_grant_id_seq OWNED BY public.oauth2_grant.id;


--
-- Name: org_user; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.org_user (
    id bigint NOT NULL,
    uid bigint,
    org_id bigint,
    is_public boolean
);


ALTER TABLE public.org_user OWNER TO gitea;

--
-- Name: org_user_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.org_user_id_seq OWNER TO gitea;

--
-- Name: org_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.org_user_id_seq OWNED BY public.org_user.id;


--
-- Name: package; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.package (
    id bigint NOT NULL,
    owner_id bigint NOT NULL,
    repo_id bigint,
    type character varying(255) NOT NULL,
    name character varying(255) NOT NULL,
    lower_name character varying(255) NOT NULL,
    semver_compatible boolean DEFAULT false NOT NULL,
    is_internal boolean DEFAULT false NOT NULL
);


ALTER TABLE public.package OWNER TO gitea;

--
-- Name: package_blob; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.package_blob (
    id bigint NOT NULL,
    size bigint DEFAULT 0 NOT NULL,
    hash_md5 character(32) NOT NULL,
    hash_sha1 character(40) NOT NULL,
    hash_sha256 character(64) NOT NULL,
    hash_sha512 character(128) NOT NULL,
    created_unix bigint NOT NULL
);


ALTER TABLE public.package_blob OWNER TO gitea;

--
-- Name: package_blob_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.package_blob_id_seq OWNER TO gitea;

--
-- Name: package_blob_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.package_blob_id_seq OWNED BY public.package_blob.id;


--
-- Name: package_blob_upload; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.package_blob_upload (
    id character varying(255) NOT NULL,
    bytes_received bigint DEFAULT 0 NOT NULL,
    hash_state_bytes bytea,
    created_unix bigint NOT NULL,
    updated_unix bigint NOT NULL
);


ALTER TABLE public.package_blob_upload OWNER TO gitea;

--
-- Name: package_cleanup_rule; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.package_cleanup_rule (
    id bigint NOT NULL,
    enabled boolean DEFAULT false NOT NULL,
    owner_id bigint DEFAULT 0 NOT NULL,
    type character varying(255) NOT NULL,
    keep_count integer DEFAULT 0 NOT NULL,
    keep_pattern character varying(255) DEFAULT ''::character varying NOT NULL,
    remove_days integer DEFAULT 0 NOT NULL,
    remove_pattern character varying(255) DEFAULT ''::character varying NOT NULL,
    match_full_name boolean DEFAULT false NOT NULL,
    created_unix bigint DEFAULT 0 NOT NULL,
    updated_unix bigint DEFAULT 0 NOT NULL
);


ALTER TABLE public.package_cleanup_rule OWNER TO gitea;

--
-- Name: package_cleanup_rule_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.package_cleanup_rule_id_seq OWNER TO gitea;

--
-- Name: package_cleanup_rule_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.package_cleanup_rule_id_seq OWNED BY public.package_cleanup_rule.id;


--
-- Name: package_file; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.package_file (
    id bigint NOT NULL,
    version_id bigint NOT NULL,
    blob_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    lower_name character varying(255) NOT NULL,
    composite_key character varying(255),
    is_lead boolean DEFAULT false NOT NULL,
    created_unix bigint NOT NULL
);


ALTER TABLE public.package_file OWNER TO gitea;

--
-- Name: package_file_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.package_file_id_seq OWNER TO gitea;

--
-- Name: package_file_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.package_file_id_seq OWNED BY public.package_file.id;


--
-- Name: package_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.package_id_seq OWNER TO gitea;

--
-- Name: package_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.package_id_seq OWNED BY public.package.id;


--
-- Name: package_property; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.package_property (
    id bigint NOT NULL,
    ref_type bigint NOT NULL,
    ref_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    value text NOT NULL
);


ALTER TABLE public.package_property OWNER TO gitea;

--
-- Name: package_property_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.package_property_id_seq OWNER TO gitea;

--
-- Name: package_property_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.package_property_id_seq OWNED BY public.package_property.id;


--
-- Name: package_version; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.package_version (
    id bigint NOT NULL,
    package_id bigint NOT NULL,
    creator_id bigint DEFAULT 0 NOT NULL,
    version character varying(255) NOT NULL,
    lower_version character varying(255) NOT NULL,
    created_unix bigint NOT NULL,
    is_internal boolean DEFAULT false NOT NULL,
    metadata_json text,
    download_count bigint DEFAULT 0 NOT NULL
);


ALTER TABLE public.package_version OWNER TO gitea;

--
-- Name: package_version_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.package_version_id_seq OWNER TO gitea;

--
-- Name: package_version_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.package_version_id_seq OWNED BY public.package_version.id;


--
-- Name: project; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.project (
    id bigint NOT NULL,
    title character varying(255) NOT NULL,
    description text,
    owner_id bigint,
    repo_id bigint,
    creator_id bigint NOT NULL,
    is_closed boolean,
    board_type bigint,
    card_type bigint,
    type bigint,
    created_unix bigint,
    updated_unix bigint,
    closed_date_unix bigint
);


ALTER TABLE public.project OWNER TO gitea;

--
-- Name: project_board; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.project_board (
    id bigint NOT NULL,
    title character varying(255),
    "default" boolean DEFAULT false NOT NULL,
    sorting integer DEFAULT 0 NOT NULL,
    color character varying(7),
    project_id bigint NOT NULL,
    creator_id bigint NOT NULL,
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.project_board OWNER TO gitea;

--
-- Name: project_board_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.project_board_id_seq OWNER TO gitea;

--
-- Name: project_board_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.project_board_id_seq OWNED BY public.project_board.id;


--
-- Name: project_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.project_id_seq OWNER TO gitea;

--
-- Name: project_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.project_id_seq OWNED BY public.project.id;


--
-- Name: project_issue; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.project_issue (
    id bigint NOT NULL,
    issue_id bigint,
    project_id bigint,
    project_board_id bigint,
    sorting bigint DEFAULT 0 NOT NULL
);


ALTER TABLE public.project_issue OWNER TO gitea;

--
-- Name: project_issue_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.project_issue_id_seq OWNER TO gitea;

--
-- Name: project_issue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.project_issue_id_seq OWNED BY public.project_issue.id;


--
-- Name: protected_branch; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.protected_branch (
    id bigint NOT NULL,
    repo_id bigint,
    branch_name character varying(255),
    can_push boolean DEFAULT false NOT NULL,
    enable_whitelist boolean,
    whitelist_user_i_ds text,
    whitelist_team_i_ds text,
    enable_merge_whitelist boolean DEFAULT false NOT NULL,
    whitelist_deploy_keys boolean DEFAULT false NOT NULL,
    merge_whitelist_user_i_ds text,
    merge_whitelist_team_i_ds text,
    enable_status_check boolean DEFAULT false NOT NULL,
    status_check_contexts text,
    enable_approvals_whitelist boolean DEFAULT false NOT NULL,
    approvals_whitelist_user_i_ds text,
    approvals_whitelist_team_i_ds text,
    required_approvals bigint DEFAULT 0 NOT NULL,
    block_on_rejected_reviews boolean DEFAULT false NOT NULL,
    block_on_official_review_requests boolean DEFAULT false NOT NULL,
    block_on_outdated_branch boolean DEFAULT false NOT NULL,
    dismiss_stale_approvals boolean DEFAULT false NOT NULL,
    require_signed_commits boolean DEFAULT false NOT NULL,
    protected_file_patterns text,
    unprotected_file_patterns text,
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.protected_branch OWNER TO gitea;

--
-- Name: protected_branch_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.protected_branch_id_seq OWNER TO gitea;

--
-- Name: protected_branch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.protected_branch_id_seq OWNED BY public.protected_branch.id;


--
-- Name: protected_tag; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.protected_tag (
    id bigint NOT NULL,
    repo_id bigint,
    name_pattern character varying(255),
    allowlist_user_i_ds text,
    allowlist_team_i_ds text,
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.protected_tag OWNER TO gitea;

--
-- Name: protected_tag_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.protected_tag_id_seq OWNER TO gitea;

--
-- Name: protected_tag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.protected_tag_id_seq OWNED BY public.protected_tag.id;


--
-- Name: public_key; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.public_key (
    id bigint NOT NULL,
    owner_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    fingerprint character varying(255) NOT NULL,
    content text NOT NULL,
    mode integer DEFAULT 2 NOT NULL,
    type integer DEFAULT 1 NOT NULL,
    login_source_id bigint DEFAULT 0 NOT NULL,
    created_unix bigint,
    updated_unix bigint,
    verified boolean DEFAULT false NOT NULL
);


ALTER TABLE public.public_key OWNER TO gitea;

--
-- Name: public_key_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.public_key_id_seq OWNER TO gitea;

--
-- Name: public_key_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.public_key_id_seq OWNED BY public.public_key.id;


--
-- Name: pull_auto_merge; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.pull_auto_merge (
    id bigint NOT NULL,
    pull_id bigint,
    doer_id bigint NOT NULL,
    merge_style character varying(30),
    message text,
    created_unix bigint
);


ALTER TABLE public.pull_auto_merge OWNER TO gitea;

--
-- Name: pull_auto_merge_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.pull_auto_merge_id_seq OWNER TO gitea;

--
-- Name: pull_auto_merge_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.pull_auto_merge_id_seq OWNED BY public.pull_auto_merge.id;


--
-- Name: pull_request; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.pull_request (
    id bigint NOT NULL,
    type integer,
    status integer,
    conflicted_files json,
    commits_ahead integer,
    commits_behind integer,
    changed_protected_files json,
    issue_id bigint,
    index bigint,
    head_repo_id bigint,
    base_repo_id bigint,
    head_branch character varying(255),
    base_branch character varying(255),
    merge_base character varying(40),
    allow_maintainer_edit boolean DEFAULT false NOT NULL,
    has_merged boolean,
    merged_commit_id character varying(40),
    merger_id bigint,
    merged_unix bigint,
    flow integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.pull_request OWNER TO gitea;

--
-- Name: pull_request_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.pull_request_id_seq OWNER TO gitea;

--
-- Name: pull_request_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.pull_request_id_seq OWNED BY public.pull_request.id;


--
-- Name: push_mirror; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.push_mirror (
    id bigint NOT NULL,
    repo_id bigint,
    remote_name character varying(255),
    sync_on_commit boolean DEFAULT true NOT NULL,
    "interval" bigint,
    created_unix bigint,
    last_update bigint,
    last_error text,
    remote_address character varying(2048)
);


ALTER TABLE public.push_mirror OWNER TO gitea;

--
-- Name: push_mirror_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.push_mirror_id_seq OWNER TO gitea;

--
-- Name: push_mirror_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.push_mirror_id_seq OWNED BY public.push_mirror.id;


--
-- Name: reaction; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.reaction (
    id bigint NOT NULL,
    type character varying(255) NOT NULL,
    issue_id bigint NOT NULL,
    comment_id bigint,
    user_id bigint NOT NULL,
    original_author_id bigint DEFAULT 0 NOT NULL,
    original_author character varying(255),
    created_unix bigint
);


ALTER TABLE public.reaction OWNER TO gitea;

--
-- Name: reaction_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.reaction_id_seq OWNER TO gitea;

--
-- Name: reaction_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.reaction_id_seq OWNED BY public.reaction.id;


--
-- Name: release; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.release (
    id bigint NOT NULL,
    repo_id bigint,
    publisher_id bigint,
    tag_name character varying(255),
    original_author character varying(255),
    original_author_id bigint,
    lower_tag_name character varying(255),
    target character varying(255),
    title character varying(255),
    sha1 character varying(40),
    num_commits bigint,
    note text,
    is_draft boolean DEFAULT false NOT NULL,
    is_prerelease boolean DEFAULT false NOT NULL,
    is_tag boolean DEFAULT false NOT NULL,
    created_unix bigint
);


ALTER TABLE public.release OWNER TO gitea;

--
-- Name: release_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.release_id_seq OWNER TO gitea;

--
-- Name: release_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.release_id_seq OWNED BY public.release.id;


--
-- Name: renamed_branch; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.renamed_branch (
    id bigint NOT NULL,
    repo_id bigint NOT NULL,
    "from" character varying(255),
    "to" character varying(255),
    created_unix bigint
);


ALTER TABLE public.renamed_branch OWNER TO gitea;

--
-- Name: renamed_branch_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.renamed_branch_id_seq OWNER TO gitea;

--
-- Name: renamed_branch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.renamed_branch_id_seq OWNED BY public.renamed_branch.id;


--
-- Name: repo_archiver; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.repo_archiver (
    id bigint NOT NULL,
    repo_id bigint,
    type integer,
    status integer,
    commit_id character varying(40),
    created_unix bigint NOT NULL
);


ALTER TABLE public.repo_archiver OWNER TO gitea;

--
-- Name: repo_archiver_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.repo_archiver_id_seq OWNER TO gitea;

--
-- Name: repo_archiver_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.repo_archiver_id_seq OWNED BY public.repo_archiver.id;


--
-- Name: repo_indexer_status; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.repo_indexer_status (
    id bigint NOT NULL,
    repo_id bigint,
    commit_sha character varying(40),
    indexer_type integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.repo_indexer_status OWNER TO gitea;

--
-- Name: repo_indexer_status_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.repo_indexer_status_id_seq OWNER TO gitea;

--
-- Name: repo_indexer_status_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.repo_indexer_status_id_seq OWNED BY public.repo_indexer_status.id;


--
-- Name: repo_redirect; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.repo_redirect (
    id bigint NOT NULL,
    owner_id bigint,
    lower_name character varying(255) NOT NULL,
    redirect_repo_id bigint
);


ALTER TABLE public.repo_redirect OWNER TO gitea;

--
-- Name: repo_redirect_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.repo_redirect_id_seq OWNER TO gitea;

--
-- Name: repo_redirect_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.repo_redirect_id_seq OWNED BY public.repo_redirect.id;


--
-- Name: repo_topic; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.repo_topic (
    repo_id bigint NOT NULL,
    topic_id bigint NOT NULL
);


ALTER TABLE public.repo_topic OWNER TO gitea;

--
-- Name: repo_transfer; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.repo_transfer (
    id bigint NOT NULL,
    doer_id bigint,
    recipient_id bigint,
    repo_id bigint,
    team_i_ds text,
    created_unix bigint NOT NULL,
    updated_unix bigint NOT NULL
);


ALTER TABLE public.repo_transfer OWNER TO gitea;

--
-- Name: repo_transfer_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.repo_transfer_id_seq OWNER TO gitea;

--
-- Name: repo_transfer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.repo_transfer_id_seq OWNED BY public.repo_transfer.id;


--
-- Name: repo_unit; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.repo_unit (
    id bigint NOT NULL,
    repo_id bigint,
    type integer,
    config text,
    created_unix bigint
);


ALTER TABLE public.repo_unit OWNER TO gitea;

--
-- Name: repo_unit_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.repo_unit_id_seq OWNER TO gitea;

--
-- Name: repo_unit_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.repo_unit_id_seq OWNED BY public.repo_unit.id;


--
-- Name: repository; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.repository (
    id bigint NOT NULL,
    owner_id bigint,
    owner_name character varying(255),
    lower_name character varying(255) NOT NULL,
    name character varying(255) NOT NULL,
    description text,
    website character varying(2048),
    original_service_type integer,
    original_url character varying(2048),
    default_branch character varying(255),
    num_watches integer,
    num_stars integer,
    num_forks integer,
    num_issues integer,
    num_closed_issues integer,
    num_pulls integer,
    num_closed_pulls integer,
    num_milestones integer DEFAULT 0 NOT NULL,
    num_closed_milestones integer DEFAULT 0 NOT NULL,
    num_projects integer DEFAULT 0 NOT NULL,
    num_closed_projects integer DEFAULT 0 NOT NULL,
    num_action_runs integer DEFAULT 0 NOT NULL,
    num_closed_action_runs integer DEFAULT 0 NOT NULL,
    is_private boolean,
    is_empty boolean,
    is_archived boolean,
    is_mirror boolean,
    status integer DEFAULT 0 NOT NULL,
    is_fork boolean DEFAULT false NOT NULL,
    fork_id bigint,
    is_template boolean DEFAULT false NOT NULL,
    template_id bigint,
    size bigint DEFAULT 0 NOT NULL,
    is_fsck_enabled boolean DEFAULT true NOT NULL,
    close_issues_via_commit_in_any_branch boolean DEFAULT false NOT NULL,
    topics json,
    trust_model integer,
    avatar character varying(64),
    created_unix bigint,
    updated_unix bigint,
    archived_unix bigint DEFAULT 0,
    git_size bigint DEFAULT 0 NOT NULL,
    lfs_size bigint DEFAULT 0 NOT NULL
);


ALTER TABLE public.repository OWNER TO gitea;

--
-- Name: repository_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.repository_id_seq OWNER TO gitea;

--
-- Name: repository_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.repository_id_seq OWNED BY public.repository.id;


--
-- Name: review; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.review (
    id bigint NOT NULL,
    type integer,
    reviewer_id bigint,
    reviewer_team_id bigint DEFAULT 0 NOT NULL,
    original_author character varying(255),
    original_author_id bigint,
    issue_id bigint,
    content text,
    official boolean DEFAULT false NOT NULL,
    commit_id character varying(40),
    stale boolean DEFAULT false NOT NULL,
    dismissed boolean DEFAULT false NOT NULL,
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.review OWNER TO gitea;

--
-- Name: review_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.review_id_seq OWNER TO gitea;

--
-- Name: review_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.review_id_seq OWNED BY public.review.id;


--
-- Name: review_state; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.review_state (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    pull_id bigint DEFAULT 0 NOT NULL,
    commit_sha character varying(40) NOT NULL,
    updated_files json NOT NULL,
    updated_unix bigint
);


ALTER TABLE public.review_state OWNER TO gitea;

--
-- Name: review_state_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.review_state_id_seq OWNER TO gitea;

--
-- Name: review_state_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.review_state_id_seq OWNED BY public.review_state.id;


--
-- Name: secret; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.secret (
    id bigint NOT NULL,
    owner_id bigint NOT NULL,
    repo_id bigint DEFAULT 0 NOT NULL,
    name character varying(255) NOT NULL,
    data text,
    created_unix bigint NOT NULL
);


ALTER TABLE public.secret OWNER TO gitea;

--
-- Name: secret_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.secret_id_seq OWNER TO gitea;

--
-- Name: secret_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.secret_id_seq OWNED BY public.secret.id;


--
-- Name: session; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.session (
    key character(16) NOT NULL,
    data bytea,
    expiry bigint
);


ALTER TABLE public.session OWNER TO gitea;

--
-- Name: star; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.star (
    id bigint NOT NULL,
    uid bigint,
    repo_id bigint,
    created_unix bigint
);


ALTER TABLE public.star OWNER TO gitea;

--
-- Name: star_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.star_id_seq OWNER TO gitea;

--
-- Name: star_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.star_id_seq OWNED BY public.star.id;


--
-- Name: stopwatch; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.stopwatch (
    id bigint NOT NULL,
    issue_id bigint,
    user_id bigint,
    created_unix bigint
);


ALTER TABLE public.stopwatch OWNER TO gitea;

--
-- Name: stopwatch_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.stopwatch_id_seq OWNER TO gitea;

--
-- Name: stopwatch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.stopwatch_id_seq OWNED BY public.stopwatch.id;


--
-- Name: system_setting; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.system_setting (
    id bigint NOT NULL,
    setting_key character varying(255),
    setting_value text,
    version integer,
    created bigint,
    updated bigint
);


ALTER TABLE public.system_setting OWNER TO gitea;

--
-- Name: system_setting_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.system_setting_id_seq OWNER TO gitea;

--
-- Name: system_setting_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.system_setting_id_seq OWNED BY public.system_setting.id;


--
-- Name: task; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.task (
    id bigint NOT NULL,
    doer_id bigint,
    owner_id bigint,
    repo_id bigint,
    type integer,
    status integer,
    start_time bigint,
    end_time bigint,
    payload_content text,
    message text,
    created bigint
);


ALTER TABLE public.task OWNER TO gitea;

--
-- Name: task_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.task_id_seq OWNER TO gitea;

--
-- Name: task_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.task_id_seq OWNED BY public.task.id;


--
-- Name: team; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.team (
    id bigint NOT NULL,
    org_id bigint,
    lower_name character varying(255),
    name character varying(255),
    description character varying(255),
    authorize integer,
    num_repos integer,
    num_members integer,
    includes_all_repositories boolean DEFAULT false NOT NULL,
    can_create_org_repo boolean DEFAULT false NOT NULL
);


ALTER TABLE public.team OWNER TO gitea;

--
-- Name: team_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.team_id_seq OWNER TO gitea;

--
-- Name: team_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.team_id_seq OWNED BY public.team.id;


--
-- Name: team_invite; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.team_invite (
    id bigint NOT NULL,
    token character varying(255) DEFAULT ''::character varying NOT NULL,
    inviter_id bigint DEFAULT 0 NOT NULL,
    org_id bigint DEFAULT 0 NOT NULL,
    team_id bigint DEFAULT 0 NOT NULL,
    email character varying(255) DEFAULT ''::character varying NOT NULL,
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.team_invite OWNER TO gitea;

--
-- Name: team_invite_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.team_invite_id_seq OWNER TO gitea;

--
-- Name: team_invite_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.team_invite_id_seq OWNED BY public.team_invite.id;


--
-- Name: team_repo; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.team_repo (
    id bigint NOT NULL,
    org_id bigint,
    team_id bigint,
    repo_id bigint
);


ALTER TABLE public.team_repo OWNER TO gitea;

--
-- Name: team_repo_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.team_repo_id_seq OWNER TO gitea;

--
-- Name: team_repo_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.team_repo_id_seq OWNED BY public.team_repo.id;


--
-- Name: team_unit; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.team_unit (
    id bigint NOT NULL,
    org_id bigint,
    team_id bigint,
    type integer,
    access_mode integer
);


ALTER TABLE public.team_unit OWNER TO gitea;

--
-- Name: team_unit_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.team_unit_id_seq OWNER TO gitea;

--
-- Name: team_unit_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.team_unit_id_seq OWNED BY public.team_unit.id;


--
-- Name: team_user; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.team_user (
    id bigint NOT NULL,
    org_id bigint,
    team_id bigint,
    uid bigint
);


ALTER TABLE public.team_user OWNER TO gitea;

--
-- Name: team_user_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.team_user_id_seq OWNER TO gitea;

--
-- Name: team_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.team_user_id_seq OWNED BY public.team_user.id;


--
-- Name: topic; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.topic (
    id bigint NOT NULL,
    name character varying(50),
    repo_count integer,
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.topic OWNER TO gitea;

--
-- Name: topic_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.topic_id_seq OWNER TO gitea;

--
-- Name: topic_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.topic_id_seq OWNED BY public.topic.id;


--
-- Name: tracked_time; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.tracked_time (
    id bigint NOT NULL,
    issue_id bigint,
    user_id bigint,
    created_unix bigint,
    "time" bigint NOT NULL,
    deleted boolean DEFAULT false NOT NULL
);


ALTER TABLE public.tracked_time OWNER TO gitea;

--
-- Name: tracked_time_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.tracked_time_id_seq OWNER TO gitea;

--
-- Name: tracked_time_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.tracked_time_id_seq OWNED BY public.tracked_time.id;


--
-- Name: two_factor; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.two_factor (
    id bigint NOT NULL,
    uid bigint,
    secret character varying(255),
    scratch_salt character varying(255),
    scratch_hash character varying(255),
    last_used_passcode character varying(10),
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.two_factor OWNER TO gitea;

--
-- Name: two_factor_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.two_factor_id_seq OWNER TO gitea;

--
-- Name: two_factor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.two_factor_id_seq OWNED BY public.two_factor.id;


--
-- Name: upload; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.upload (
    id bigint NOT NULL,
    uuid uuid,
    name character varying(255)
);


ALTER TABLE public.upload OWNER TO gitea;

--
-- Name: upload_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.upload_id_seq OWNER TO gitea;

--
-- Name: upload_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.upload_id_seq OWNED BY public.upload.id;


--
-- Name: user; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public."user" (
    id bigint NOT NULL,
    lower_name character varying(255) NOT NULL,
    name character varying(255) NOT NULL,
    full_name character varying(255),
    email character varying(255) NOT NULL,
    keep_email_private boolean,
    email_notifications_preference character varying(20) DEFAULT 'enabled'::character varying NOT NULL,
    passwd character varying(255) NOT NULL,
    passwd_hash_algo character varying(255) DEFAULT 'argon2'::character varying NOT NULL,
    must_change_password boolean DEFAULT false NOT NULL,
    login_type integer,
    login_source bigint DEFAULT 0 NOT NULL,
    login_name character varying(255),
    type integer,
    location character varying(255),
    website character varying(255),
    rands character varying(32),
    salt character varying(32),
    language character varying(5),
    description character varying(255),
    created_unix bigint,
    updated_unix bigint,
    last_login_unix bigint,
    last_repo_visibility boolean,
    max_repo_creation integer DEFAULT '-1'::integer NOT NULL,
    is_active boolean,
    is_admin boolean,
    is_restricted boolean DEFAULT false NOT NULL,
    allow_git_hook boolean,
    allow_import_local boolean,
    allow_create_organization boolean DEFAULT true,
    prohibit_login boolean DEFAULT false NOT NULL,
    avatar character varying(2048) NOT NULL,
    avatar_email character varying(255) NOT NULL,
    use_custom_avatar boolean,
    num_followers integer,
    num_following integer DEFAULT 0 NOT NULL,
    num_stars integer,
    num_repos integer,
    num_teams integer,
    num_members integer,
    visibility integer DEFAULT 0 NOT NULL,
    repo_admin_change_team_access boolean DEFAULT false NOT NULL,
    diff_view_style character varying(255) DEFAULT ''::character varying NOT NULL,
    theme character varying(255) DEFAULT ''::character varying NOT NULL,
    keep_activity_private boolean DEFAULT false NOT NULL
);


ALTER TABLE public."user" OWNER TO gitea;

--
-- Name: user_badge; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.user_badge (
    id bigint NOT NULL,
    badge_id bigint,
    user_id bigint
);


ALTER TABLE public.user_badge OWNER TO gitea;

--
-- Name: user_badge_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.user_badge_id_seq OWNER TO gitea;

--
-- Name: user_badge_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.user_badge_id_seq OWNED BY public.user_badge.id;


--
-- Name: user_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.user_id_seq OWNER TO gitea;

--
-- Name: user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.user_id_seq OWNED BY public."user".id;


--
-- Name: user_open_id; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.user_open_id (
    id bigint NOT NULL,
    uid bigint NOT NULL,
    uri character varying(255) NOT NULL,
    show boolean DEFAULT false
);


ALTER TABLE public.user_open_id OWNER TO gitea;

--
-- Name: user_open_id_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.user_open_id_id_seq OWNER TO gitea;

--
-- Name: user_open_id_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.user_open_id_id_seq OWNED BY public.user_open_id.id;


--
-- Name: user_redirect; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.user_redirect (
    id bigint NOT NULL,
    lower_name character varying(255) NOT NULL,
    redirect_user_id bigint
);


ALTER TABLE public.user_redirect OWNER TO gitea;

--
-- Name: user_redirect_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.user_redirect_id_seq OWNER TO gitea;

--
-- Name: user_redirect_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.user_redirect_id_seq OWNED BY public.user_redirect.id;


--
-- Name: user_setting; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.user_setting (
    id bigint NOT NULL,
    user_id bigint,
    setting_key character varying(255),
    setting_value text
);


ALTER TABLE public.user_setting OWNER TO gitea;

--
-- Name: user_setting_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.user_setting_id_seq OWNER TO gitea;

--
-- Name: user_setting_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.user_setting_id_seq OWNED BY public.user_setting.id;


--
-- Name: version; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.version (
    id bigint NOT NULL,
    version bigint
);


ALTER TABLE public.version OWNER TO gitea;

--
-- Name: version_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.version_id_seq OWNER TO gitea;

--
-- Name: version_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.version_id_seq OWNED BY public.version.id;


--
-- Name: watch; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.watch (
    id bigint NOT NULL,
    user_id bigint,
    repo_id bigint,
    mode smallint DEFAULT 1 NOT NULL,
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.watch OWNER TO gitea;

--
-- Name: watch_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.watch_id_seq OWNER TO gitea;

--
-- Name: watch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.watch_id_seq OWNED BY public.watch.id;


--
-- Name: webauthn_credential; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.webauthn_credential (
    id bigint NOT NULL,
    name character varying(255),
    lower_name character varying(255),
    user_id bigint,
    credential_id bytea,
    public_key bytea,
    attestation_type character varying(255),
    aaguid bytea,
    sign_count bigint,
    clone_warning boolean,
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.webauthn_credential OWNER TO gitea;

--
-- Name: webauthn_credential_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.webauthn_credential_id_seq OWNER TO gitea;

--
-- Name: webauthn_credential_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.webauthn_credential_id_seq OWNED BY public.webauthn_credential.id;


--
-- Name: webhook; Type: TABLE; Schema: public; Owner: gitea
--

CREATE TABLE public.webhook (
    id bigint NOT NULL,
    repo_id bigint,
    owner_id bigint,
    is_system_webhook boolean,
    url text,
    http_method character varying(255),
    content_type integer,
    secret text,
    events text,
    is_active boolean,
    type character varying(16),
    meta text,
    last_status integer,
    header_authorization_encrypted text,
    created_unix bigint,
    updated_unix bigint
);


ALTER TABLE public.webhook OWNER TO gitea;

--
-- Name: webhook_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--

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


ALTER SEQUENCE public.webhook_id_seq OWNER TO gitea;

--
-- Name: webhook_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--

ALTER SEQUENCE public.webhook_id_seq OWNED BY public.webhook.id;


--
-- Name: access id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: access_token id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: action id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: action_artifact id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: action_run id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: action_run_job id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: action_runner id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: action_runner_token id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: action_schedule id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: action_schedule_spec id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: action_task id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: action_task_output id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: action_task_step id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: action_tasks_version id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: action_variable id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: attachment id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: badge id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: branch id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: collaboration id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: comment id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: commit_status id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: commit_status_index id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: dbfs_data id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: dbfs_meta id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: deploy_key id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: email_address id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: follow id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: gpg_key id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: hook_task id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: issue id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: issue_assignees id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: issue_content_history id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: issue_dependency id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: issue_label id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: issue_user id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: issue_watch id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: label id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: language_stat id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: lfs_lock id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: lfs_meta_object id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: login_source id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: milestone id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: mirror id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: notice id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: notification id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: oauth2_application id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: oauth2_authorization_code id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: oauth2_grant id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: org_user id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: package id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: package_blob id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: package_cleanup_rule id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: package_file id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: package_property id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: package_version id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: project id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: project_board id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: project_issue id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: protected_branch id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: protected_tag id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: public_key id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: pull_auto_merge id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: pull_request id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: push_mirror id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: reaction id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: release id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: renamed_branch id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: repo_archiver id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: repo_indexer_status id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: repo_redirect id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: repo_transfer id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: repo_unit id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: repository id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: review id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: review_state id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: secret id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: star id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: stopwatch id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: system_setting id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: task id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: team id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: team_invite id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: team_repo id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: team_unit id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: team_user id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: topic id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: tracked_time id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: two_factor id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: upload id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: user id; Type: DEFAULT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public."user" ALTER COLUMN id SET DEFAULT nextval('public.user_id_seq'::regclass);


--
-- Name: user_badge id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: user_open_id id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: user_redirect id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: user_setting id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: version id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: watch id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: webauthn_credential id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Name: webhook id; Type: DEFAULT; Schema: public; Owner: gitea
--

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


--
-- Data for Name: access; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.access VALUES (3, 1, 7, 4);
INSERT INTO public.access VALUES (4, 4, 7, 4);
INSERT INTO public.access VALUES (5, 1, 8, 4);
INSERT INTO public.access VALUES (6, 4, 8, 4);
INSERT INTO public.access VALUES (114, 16, 21, 1);
INSERT INTO public.access VALUES (115, 16, 23, 1);
INSERT INTO public.access VALUES (116, 16, 22, 1);
INSERT INTO public.access VALUES (117, 16, 12, 1);
INSERT INTO public.access VALUES (193, 15, 29, 1);
INSERT INTO public.access VALUES (125, 1, 25, 4);
INSERT INTO public.access VALUES (126, 5, 25, 4);
INSERT INTO public.access VALUES (152, 1, 24, 4);
INSERT INTO public.access VALUES (153, 2, 24, 1);
INSERT INTO public.access VALUES (155, 15, 24, 3);
INSERT INTO public.access VALUES (156, 9, 24, 1);
INSERT INTO public.access VALUES (157, 15, 26, 1);
INSERT INTO public.access VALUES (158, 2, 26, 3);
INSERT INTO public.access VALUES (159, 9, 26, 1);
INSERT INTO public.access VALUES (55, 9, 9, 1);
INSERT INTO public.access VALUES (56, 4, 9, 4);
INSERT INTO public.access VALUES (57, 1, 9, 4);
INSERT INTO public.access VALUES (58, 4, 10, 4);
INSERT INTO public.access VALUES (59, 9, 10, 1);
INSERT INTO public.access VALUES (60, 1, 10, 4);
INSERT INTO public.access VALUES (61, 1, 11, 4);
INSERT INTO public.access VALUES (62, 4, 11, 4);
INSERT INTO public.access VALUES (63, 9, 11, 2);
INSERT INTO public.access VALUES (64, 4, 12, 4);
INSERT INTO public.access VALUES (65, 1, 12, 4);
INSERT INTO public.access VALUES (66, 11, 12, 1);
INSERT INTO public.access VALUES (69, 5, 6, 4);
INSERT INTO public.access VALUES (70, 1, 6, 4);
INSERT INTO public.access VALUES (161, 1, 26, 4);
INSERT INTO public.access VALUES (162, 2, 15, 1);
INSERT INTO public.access VALUES (73, 1, 17, 4);
INSERT INTO public.access VALUES (74, 4, 17, 4);
INSERT INTO public.access VALUES (75, 4, 18, 4);
INSERT INTO public.access VALUES (76, 1, 18, 4);
INSERT INTO public.access VALUES (163, 9, 15, 1);
INSERT INTO public.access VALUES (164, 15, 15, 1);
INSERT INTO public.access VALUES (79, 4, 20, 4);
INSERT INTO public.access VALUES (80, 1, 20, 4);
INSERT INTO public.access VALUES (166, 1, 15, 4);
INSERT INTO public.access VALUES (170, 5, 26, 4);
INSERT INTO public.access VALUES (171, 5, 15, 4);
INSERT INTO public.access VALUES (172, 5, 24, 4);
INSERT INTO public.access VALUES (173, 11, 15, 1);
INSERT INTO public.access VALUES (174, 11, 24, 1);
INSERT INTO public.access VALUES (175, 11, 26, 1);
INSERT INTO public.access VALUES (93, 1, 23, 4);
INSERT INTO public.access VALUES (94, 2, 23, 1);
INSERT INTO public.access VALUES (95, 5, 23, 4);
INSERT INTO public.access VALUES (96, 11, 23, 1);
INSERT INTO public.access VALUES (97, 11, 22, 1);
INSERT INTO public.access VALUES (98, 2, 22, 1);
INSERT INTO public.access VALUES (99, 5, 22, 4);
INSERT INTO public.access VALUES (100, 1, 22, 4);
INSERT INTO public.access VALUES (178, 2, 27, 1);
INSERT INTO public.access VALUES (179, 1, 27, 4);
INSERT INTO public.access VALUES (180, 15, 27, 1);
INSERT INTO public.access VALUES (105, 1, 21, 4);
INSERT INTO public.access VALUES (106, 11, 21, 1);
INSERT INTO public.access VALUES (107, 2, 21, 1);
INSERT INTO public.access VALUES (108, 5, 21, 4);
INSERT INTO public.access VALUES (181, 5, 27, 4);
INSERT INTO public.access VALUES (184, 1, 28, 4);
INSERT INTO public.access VALUES (185, 5, 28, 4);
INSERT INTO public.access VALUES (186, 2, 28, 1);
INSERT INTO public.access VALUES (187, 15, 28, 1);
INSERT INTO public.access VALUES (190, 5, 29, 4);
INSERT INTO public.access VALUES (191, 2, 29, 1);
INSERT INTO public.access VALUES (192, 1, 29, 4);


--
-- Data for Name: access_token; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.access_token VALUES (2, 9, 'Jenkins Token', 'a5b6de7d5566afb3decc4d4236fafffef803985eecaad17ff4dba664e099ec6f19be653e5de18f8529fdef2ad20612e5923f', 'fgruGZXHxC', '6e1529c5', 'read:organization,write:repository', 1686809422, 1704685751);
INSERT INTO public.access_token VALUES (3, 9, 'JenkinsCI', '18ed9acc4f9b129c7d625c05d05343165cd3d0ed0e6b8d223be324eddd8b8ce3874b53445ed643c4398c8b66fb95f7d8c63f', '50Wtra7BL3', '866ec69b', 'read:organization,write:repository', 1704686694, 1705636510);


--
-- Data for Name: action; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.action VALUES (1, 2, 1, 2, 1, 0, false, '', false, '', 1685008493);
INSERT INTO public.action VALUES (2, 2, 5, 2, 1, 0, false, 'refs/heads/main', false, '', 1685008695);
INSERT INTO public.action VALUES (3, 2, 5, 2, 1, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"69239c62fdf7a0f80d409af5ec5be9fdacb7f57c","Message":"init\n","AuthorEmail":"tuan1996n@gmail.com","AuthorName":"tuan1996qn","CommitterEmail":"tuan1996n@gmail.com","CommitterName":"tuan1996qn","Timestamp":"2023-05-25T16:57:33+07:00"}],"HeadCommit":{"Sha1":"69239c62fdf7a0f80d409af5ec5be9fdacb7f57c","Message":"init\n","AuthorEmail":"tuan1996n@gmail.com","AuthorName":"tuan1996qn","CommitterEmail":"tuan1996n@gmail.com","CommitterName":"tuan1996qn","Timestamp":"2023-05-25T16:57:33+07:00"},"CompareURL":"","Len":1}', 1685008695);
INSERT INTO public.action VALUES (378, 11, 7, 11, 21, 0, false, '', false, '3|update nguoi tao filter', 1702268903);
INSERT INTO public.action VALUES (6, 1, 6, 1, 1, 0, false, '', false, '1|Test tạo issue', 1685071485);
INSERT INTO public.action VALUES (7, 2, 6, 1, 1, 0, false, '', false, '1|Test tạo issue', 1685071485);
INSERT INTO public.action VALUES (8, 1, 10, 1, 1, 1, false, '', false, '1|Test tag tên @tuan ', 1685071535);
INSERT INTO public.action VALUES (9, 2, 10, 1, 1, 1, false, '', false, '1|Test tag tên @tuan ', 1685071535);
INSERT INTO public.action VALUES (10, 1, 1, 1, 6, 0, false, '', false, '', 1685353318);
INSERT INTO public.action VALUES (11, 6, 1, 1, 6, 0, false, '', false, '', 1685353318);
INSERT INTO public.action VALUES (12, 1, 5, 1, 6, 0, false, 'refs/heads/main', false, '', 1685353381);
INSERT INTO public.action VALUES (13, 6, 5, 1, 6, 0, false, 'refs/heads/main', false, '', 1685353381);
INSERT INTO public.action VALUES (14, 1, 5, 1, 6, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ea13e1d90318274180b5572fbf7d109463ce01b0","Message":"change session idleTimeout\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-05-29T16:42:42+07:00"},{"Sha1":"f9140e66f64601e3b3debae3bbbdbe17aa0fce28","Message":"enrich tracing\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-04-19T08:23:27+07:00"},{"Sha1":"a8a0e3817b8d1a5e16e44d76ca740a1a80a10466","Message":"add OpenTelemetry\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-04-06T09:52:35+07:00"},{"Sha1":"b5ff9381ecb99067cacd0f50f8030b62af6ede78","Message":"Add project files.\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-02-28T09:10:34+07:00"},{"Sha1":"44ad2a5fba944f3ae86d58fe51d01143b8ea8ddf","Message":"Add .gitattributes, .gitignore, and README.md.\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-02-28T09:10:32+07:00"}],"HeadCommit":{"Sha1":"ea13e1d90318274180b5572fbf7d109463ce01b0","Message":"change session idleTimeout\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-05-29T16:42:42+07:00"},"CompareURL":"","Len":5}', 1685353382);
INSERT INTO public.action VALUES (15, 6, 5, 1, 6, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ea13e1d90318274180b5572fbf7d109463ce01b0","Message":"change session idleTimeout\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-05-29T16:42:42+07:00"},{"Sha1":"f9140e66f64601e3b3debae3bbbdbe17aa0fce28","Message":"enrich tracing\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-04-19T08:23:27+07:00"},{"Sha1":"a8a0e3817b8d1a5e16e44d76ca740a1a80a10466","Message":"add OpenTelemetry\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-04-06T09:52:35+07:00"},{"Sha1":"b5ff9381ecb99067cacd0f50f8030b62af6ede78","Message":"Add project files.\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-02-28T09:10:34+07:00"},{"Sha1":"44ad2a5fba944f3ae86d58fe51d01143b8ea8ddf","Message":"Add .gitattributes, .gitignore, and README.md.\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-02-28T09:10:32+07:00"}],"HeadCommit":{"Sha1":"ea13e1d90318274180b5572fbf7d109463ce01b0","Message":"change session idleTimeout\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-05-29T16:42:42+07:00"},"CompareURL":"","Len":5}', 1685353382);
INSERT INTO public.action VALUES (16, 1, 1, 1, 7, 0, false, '', true, '', 1685678587);
INSERT INTO public.action VALUES (17, 7, 1, 1, 7, 0, false, '', true, '', 1685678587);
INSERT INTO public.action VALUES (18, 1, 5, 1, 7, 0, false, 'refs/heads/dev', true, '', 1685678669);
INSERT INTO public.action VALUES (19, 7, 5, 1, 7, 0, false, 'refs/heads/dev', true, '', 1685678669);
INSERT INTO public.action VALUES (20, 4, 5, 1, 7, 0, false, 'refs/heads/dev', true, '', 1685678669);
INSERT INTO public.action VALUES (21, 1, 5, 1, 7, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"db631c23c653da1f63b740d7e7814fc345df17c0","Message":"big update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T11:04:06+07:00"},{"Sha1":"82cea2fc68a9734583f81963cdb41bed2b855b45","Message":"export diem dau tu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-12-17T14:36:13+07:00"},{"Sha1":"7d9708ce2b1513835c9bb82a7ef69ec21b9255c4","Message":"xuất excel doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-10-14T17:04:01+07:00"},{"Sha1":"ed4ba7826063bd14064efce1bda51a3030f3f825","Message":"thong ke lai doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-10-13T14:35:44+07:00"},{"Sha1":"027ec3b56ed043fa98cac72a7a844be096fbd3be","Message":"them ten nguoi dai dien doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-10-12T10:26:32+07:00"}],"HeadCommit":{"Sha1":"db631c23c653da1f63b740d7e7814fc345df17c0","Message":"big update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T11:04:06+07:00"},"CompareURL":"xuc-tien-dau-tu/api/compare/482132de2202fc2bf0c0814ea89c6f3519087701...db631c23c653da1f63b740d7e7814fc345df17c0","Len":10}', 1685678670);
INSERT INTO public.action VALUES (91, 4, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[],"HeadCommit":{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/98fac2b1708b47d60818e009363f5c231120e66a...7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Len":0}', 1686812494);
INSERT INTO public.action VALUES (22, 7, 5, 1, 7, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"db631c23c653da1f63b740d7e7814fc345df17c0","Message":"big update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T11:04:06+07:00"},{"Sha1":"82cea2fc68a9734583f81963cdb41bed2b855b45","Message":"export diem dau tu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-12-17T14:36:13+07:00"},{"Sha1":"7d9708ce2b1513835c9bb82a7ef69ec21b9255c4","Message":"xuất excel doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-10-14T17:04:01+07:00"},{"Sha1":"ed4ba7826063bd14064efce1bda51a3030f3f825","Message":"thong ke lai doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-10-13T14:35:44+07:00"},{"Sha1":"027ec3b56ed043fa98cac72a7a844be096fbd3be","Message":"them ten nguoi dai dien doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-10-12T10:26:32+07:00"}],"HeadCommit":{"Sha1":"db631c23c653da1f63b740d7e7814fc345df17c0","Message":"big update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T11:04:06+07:00"},"CompareURL":"xuc-tien-dau-tu/api/compare/482132de2202fc2bf0c0814ea89c6f3519087701...db631c23c653da1f63b740d7e7814fc345df17c0","Len":10}', 1685678670);
INSERT INTO public.action VALUES (23, 4, 5, 1, 7, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"db631c23c653da1f63b740d7e7814fc345df17c0","Message":"big update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T11:04:06+07:00"},{"Sha1":"82cea2fc68a9734583f81963cdb41bed2b855b45","Message":"export diem dau tu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-12-17T14:36:13+07:00"},{"Sha1":"7d9708ce2b1513835c9bb82a7ef69ec21b9255c4","Message":"xuất excel doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-10-14T17:04:01+07:00"},{"Sha1":"ed4ba7826063bd14064efce1bda51a3030f3f825","Message":"thong ke lai doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-10-13T14:35:44+07:00"},{"Sha1":"027ec3b56ed043fa98cac72a7a844be096fbd3be","Message":"them ten nguoi dai dien doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-10-12T10:26:32+07:00"}],"HeadCommit":{"Sha1":"db631c23c653da1f63b740d7e7814fc345df17c0","Message":"big update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T11:04:06+07:00"},"CompareURL":"xuc-tien-dau-tu/api/compare/482132de2202fc2bf0c0814ea89c6f3519087701...db631c23c653da1f63b740d7e7814fc345df17c0","Len":10}', 1685678670);
INSERT INTO public.action VALUES (24, 1, 1, 1, 8, 0, false, '', true, '', 1685678896);
INSERT INTO public.action VALUES (25, 7, 1, 1, 8, 0, false, '', true, '', 1685678896);
INSERT INTO public.action VALUES (26, 4, 1, 1, 8, 0, false, '', true, '', 1685678896);
INSERT INTO public.action VALUES (27, 1, 5, 1, 8, 0, false, 'refs/heads/main', true, '', 1685679005);
INSERT INTO public.action VALUES (28, 7, 5, 1, 8, 0, false, 'refs/heads/main', true, '', 1685679005);
INSERT INTO public.action VALUES (29, 4, 5, 1, 8, 0, false, 'refs/heads/main', true, '', 1685679005);
INSERT INTO public.action VALUES (30, 1, 5, 1, 8, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ae103a15da6e4c7a95edef828a80c3b9d3c17ddd","Message":"fix route, loading detail\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-08-16T15:39:30+07:00"},{"Sha1":"3561ccf596ffc2b9132aa9cf872250c54a8fc57d","Message":"logo\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-08-11T08:45:11+07:00"},{"Sha1":"18e0ac4db5b179598bd6c81e15084303b0858e41","Message":"change environment\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2021-03-08T16:19:11+07:00"},{"Sha1":"3f8ee16e05c495d435b73bcf900418353ff41479","Message":"print map\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-12-17T16:56:28+07:00"},{"Sha1":"c7909abcefc08e6c59b81f07aeefd08f61c8397e","Message":"cap nhat file huong dan\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-12-17T16:20:54+07:00"}],"HeadCommit":{"Sha1":"ae103a15da6e4c7a95edef828a80c3b9d3c17ddd","Message":"fix route, loading detail\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-08-16T15:39:30+07:00"},"CompareURL":"xuc-tien-dau-tu/frontend/compare/964db9de9829af27ceb252f77294481e61ef947b...ae103a15da6e4c7a95edef828a80c3b9d3c17ddd","Len":10}', 1685679006);
INSERT INTO public.action VALUES (31, 7, 5, 1, 8, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ae103a15da6e4c7a95edef828a80c3b9d3c17ddd","Message":"fix route, loading detail\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-08-16T15:39:30+07:00"},{"Sha1":"3561ccf596ffc2b9132aa9cf872250c54a8fc57d","Message":"logo\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-08-11T08:45:11+07:00"},{"Sha1":"18e0ac4db5b179598bd6c81e15084303b0858e41","Message":"change environment\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2021-03-08T16:19:11+07:00"},{"Sha1":"3f8ee16e05c495d435b73bcf900418353ff41479","Message":"print map\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-12-17T16:56:28+07:00"},{"Sha1":"c7909abcefc08e6c59b81f07aeefd08f61c8397e","Message":"cap nhat file huong dan\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-12-17T16:20:54+07:00"}],"HeadCommit":{"Sha1":"ae103a15da6e4c7a95edef828a80c3b9d3c17ddd","Message":"fix route, loading detail\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-08-16T15:39:30+07:00"},"CompareURL":"xuc-tien-dau-tu/frontend/compare/964db9de9829af27ceb252f77294481e61ef947b...ae103a15da6e4c7a95edef828a80c3b9d3c17ddd","Len":10}', 1685679006);
INSERT INTO public.action VALUES (379, 14, 7, 11, 21, 0, false, '', false, '3|update nguoi tao filter', 1702268903);
INSERT INTO public.action VALUES (380, 1, 7, 11, 21, 0, false, '', false, '3|update nguoi tao filter', 1702268903);
INSERT INTO public.action VALUES (381, 5, 7, 11, 21, 0, false, '', false, '3|update nguoi tao filter', 1702268903);
INSERT INTO public.action VALUES (32, 4, 5, 1, 8, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ae103a15da6e4c7a95edef828a80c3b9d3c17ddd","Message":"fix route, loading detail\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-08-16T15:39:30+07:00"},{"Sha1":"3561ccf596ffc2b9132aa9cf872250c54a8fc57d","Message":"logo\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-08-11T08:45:11+07:00"},{"Sha1":"18e0ac4db5b179598bd6c81e15084303b0858e41","Message":"change environment\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2021-03-08T16:19:11+07:00"},{"Sha1":"3f8ee16e05c495d435b73bcf900418353ff41479","Message":"print map\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-12-17T16:56:28+07:00"},{"Sha1":"c7909abcefc08e6c59b81f07aeefd08f61c8397e","Message":"cap nhat file huong dan\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-12-17T16:20:54+07:00"}],"HeadCommit":{"Sha1":"ae103a15da6e4c7a95edef828a80c3b9d3c17ddd","Message":"fix route, loading detail\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-08-16T15:39:30+07:00"},"CompareURL":"xuc-tien-dau-tu/frontend/compare/964db9de9829af27ceb252f77294481e61ef947b...ae103a15da6e4c7a95edef828a80c3b9d3c17ddd","Len":10}', 1685679006);
INSERT INTO public.action VALUES (33, 1, 5, 1, 8, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"997c70fb991ad1c41df5d8dd04873f291b57becd","Message":"update to angular 10\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T15:46:34+07:00"}],"HeadCommit":{"Sha1":"997c70fb991ad1c41df5d8dd04873f291b57becd","Message":"update to angular 10\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T15:46:34+07:00"},"CompareURL":"xuc-tien-dau-tu/frontend/compare/ae103a15da6e4c7a95edef828a80c3b9d3c17ddd...997c70fb991ad1c41df5d8dd04873f291b57becd","Len":1}', 1685695908);
INSERT INTO public.action VALUES (34, 7, 5, 1, 8, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"997c70fb991ad1c41df5d8dd04873f291b57becd","Message":"update to angular 10\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T15:46:34+07:00"}],"HeadCommit":{"Sha1":"997c70fb991ad1c41df5d8dd04873f291b57becd","Message":"update to angular 10\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T15:46:34+07:00"},"CompareURL":"xuc-tien-dau-tu/frontend/compare/ae103a15da6e4c7a95edef828a80c3b9d3c17ddd...997c70fb991ad1c41df5d8dd04873f291b57becd","Len":1}', 1685695908);
INSERT INTO public.action VALUES (35, 4, 5, 1, 8, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"997c70fb991ad1c41df5d8dd04873f291b57becd","Message":"update to angular 10\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T15:46:34+07:00"}],"HeadCommit":{"Sha1":"997c70fb991ad1c41df5d8dd04873f291b57becd","Message":"update to angular 10\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T15:46:34+07:00"},"CompareURL":"xuc-tien-dau-tu/frontend/compare/ae103a15da6e4c7a95edef828a80c3b9d3c17ddd...997c70fb991ad1c41df5d8dd04873f291b57becd","Len":1}', 1685695908);
INSERT INTO public.action VALUES (159, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d3f9d622311007abad8020be3259e8de092c2223","Message":"update thong bao chinh sua tt co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T15:04:28+07:00"}],"HeadCommit":{"Sha1":"d3f9d622311007abad8020be3259e8de092c2223","Message":"update thong bao chinh sua tt co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T15:04:28+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/b5727ad2eac7d277d7a7a3cd78c24c798abffc65...d3f9d622311007abad8020be3259e8de092c2223","Len":1}', 1701072279);
INSERT INTO public.action VALUES (160, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d3f9d622311007abad8020be3259e8de092c2223","Message":"update thong bao chinh sua tt co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T15:04:28+07:00"}],"HeadCommit":{"Sha1":"d3f9d622311007abad8020be3259e8de092c2223","Message":"update thong bao chinh sua tt co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T15:04:28+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/b5727ad2eac7d277d7a7a3cd78c24c798abffc65...d3f9d622311007abad8020be3259e8de092c2223","Len":1}', 1701072279);
INSERT INTO public.action VALUES (173, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"e4a5176a30ebf1bc13a19cc272e09556838f0966","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T13:22:09+07:00"}],"HeadCommit":{"Sha1":"e4a5176a30ebf1bc13a19cc272e09556838f0966","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T13:22:09+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc...e4a5176a30ebf1bc13a19cc272e09556838f0966","Len":1}', 1701152540);
INSERT INTO public.action VALUES (382, 11, 11, 11, 21, 0, false, '', false, '3|update nguoi tao filter', 1702268923);
INSERT INTO public.action VALUES (383, 14, 11, 11, 21, 0, false, '', false, '3|update nguoi tao filter', 1702268923);
INSERT INTO public.action VALUES (384, 1, 11, 11, 21, 0, false, '', false, '3|update nguoi tao filter', 1702268923);
INSERT INTO public.action VALUES (385, 5, 11, 11, 21, 0, false, '', false, '3|update nguoi tao filter', 1702268923);
INSERT INTO public.action VALUES (416, 1, 11, 11, 21, 0, false, '', false, '5|update row nld', 1702372549);
INSERT INTO public.action VALUES (36, 1, 1, 1, 9, 0, false, '', true, '', 1685933300);
INSERT INTO public.action VALUES (37, 8, 1, 1, 9, 0, false, '', true, '', 1685933300);
INSERT INTO public.action VALUES (38, 4, 1, 1, 9, 0, false, '', true, '', 1685933300);
INSERT INTO public.action VALUES (39, 1, 5, 1, 9, 0, false, 'refs/heads/main', true, '', 1685933369);
INSERT INTO public.action VALUES (40, 8, 5, 1, 9, 0, false, 'refs/heads/main', true, '', 1685933369);
INSERT INTO public.action VALUES (41, 4, 5, 1, 9, 0, false, 'refs/heads/main', true, '', 1685933369);
INSERT INTO public.action VALUES (117, 4, 5, 4, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"bf773b54733cc3351f271603748cf63fe426de36","Message":"fix complete cu form\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-04T11:05:23+07:00"},{"Sha1":"88ab5242f09ef2c918b16a28b83d14b368286d5f","Message":"refactor UI add \u0026 update phuong tien do\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-06-23T16:57:23+07:00"}],"HeadCommit":{"Sha1":"bf773b54733cc3351f271603748cf63fe426de36","Message":"fix complete cu form\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-04T11:05:23+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c...bf773b54733cc3351f271603748cf63fe426de36","Len":2}', 1700798066);
INSERT INTO public.action VALUES (118, 10, 5, 4, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"bf773b54733cc3351f271603748cf63fe426de36","Message":"fix complete cu form\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-04T11:05:23+07:00"},{"Sha1":"88ab5242f09ef2c918b16a28b83d14b368286d5f","Message":"refactor UI add \u0026 update phuong tien do\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-06-23T16:57:23+07:00"}],"HeadCommit":{"Sha1":"bf773b54733cc3351f271603748cf63fe426de36","Message":"fix complete cu form\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-04T11:05:23+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c...bf773b54733cc3351f271603748cf63fe426de36","Len":2}', 1700798066);
INSERT INTO public.action VALUES (119, 1, 5, 4, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"bf773b54733cc3351f271603748cf63fe426de36","Message":"fix complete cu form\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-04T11:05:23+07:00"},{"Sha1":"88ab5242f09ef2c918b16a28b83d14b368286d5f","Message":"refactor UI add \u0026 update phuong tien do\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-06-23T16:57:23+07:00"}],"HeadCommit":{"Sha1":"bf773b54733cc3351f271603748cf63fe426de36","Message":"fix complete cu form\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-04T11:05:23+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c...bf773b54733cc3351f271603748cf63fe426de36","Len":2}', 1700798066);
INSERT INTO public.action VALUES (125, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"36685007ea7cb1ed55029bf25e99f8fafd0005c3","Message":"update name PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T15:30:02+07:00"}],"HeadCommit":{"Sha1":"36685007ea7cb1ed55029bf25e99f8fafd0005c3","Message":"update name PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T15:30:02+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/bf773b54733cc3351f271603748cf63fe426de36...36685007ea7cb1ed55029bf25e99f8fafd0005c3","Len":1}', 1700814613);
INSERT INTO public.action VALUES (472, 14, 11, 11, 21, 0, false, '', false, '8|up code', 1702610184);
INSERT INTO public.action VALUES (45, 1, 1, 1, 10, 0, false, '', true, '', 1685933663);
INSERT INTO public.action VALUES (46, 8, 1, 1, 10, 0, false, '', true, '', 1685933663);
INSERT INTO public.action VALUES (43, 8, 5, 1, 9, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"eecc690536ed3f49a97cbb6bb416175b0ff4eb06","Message":"fix build lỗi sau 1 thời gian dài\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T09:40:13+07:00"},{"Sha1":"59390456c00c4a15895278bf7d4371861b089254","Message":"update add huyen/tp diem dich vu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-12-07T08:56:14+07:00"},{"Sha1":"cf1ca9fa11bf6391bed4d535bc1394433bc94f50","Message":"fix add diem dich vu ko DN\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-12-07T08:43:33+07:00"},{"Sha1":"d043bd66297e3556f609f4f78026834fd10f8ee4","Message":"change argis rest url env\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-06-24T09:54:09+07:00"},{"Sha1":"9db562154c151ef4f59f53ede1beb1af8d848b59","Message":"favicon\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-10-15T14:55:15+07:00"}],"HeadCommit":{"Sha1":"eecc690536ed3f49a97cbb6bb416175b0ff4eb06","Message":"fix build lỗi sau 1 thời gian dài\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T09:40:13+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/fadd8cd3dd5fe23a597c675b4fb0c750fcd01e4c...eecc690536ed3f49a97cbb6bb416175b0ff4eb06","Len":10}', 1685933370);
INSERT INTO public.action VALUES (44, 4, 5, 1, 9, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"eecc690536ed3f49a97cbb6bb416175b0ff4eb06","Message":"fix build lỗi sau 1 thời gian dài\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T09:40:13+07:00"},{"Sha1":"59390456c00c4a15895278bf7d4371861b089254","Message":"update add huyen/tp diem dich vu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-12-07T08:56:14+07:00"},{"Sha1":"cf1ca9fa11bf6391bed4d535bc1394433bc94f50","Message":"fix add diem dich vu ko DN\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-12-07T08:43:33+07:00"},{"Sha1":"d043bd66297e3556f609f4f78026834fd10f8ee4","Message":"change argis rest url env\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-06-24T09:54:09+07:00"},{"Sha1":"9db562154c151ef4f59f53ede1beb1af8d848b59","Message":"favicon\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-10-15T14:55:15+07:00"}],"HeadCommit":{"Sha1":"eecc690536ed3f49a97cbb6bb416175b0ff4eb06","Message":"fix build lỗi sau 1 thời gian dài\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T09:40:13+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/fadd8cd3dd5fe23a597c675b4fb0c750fcd01e4c...eecc690536ed3f49a97cbb6bb416175b0ff4eb06","Len":10}', 1685933370);
INSERT INTO public.action VALUES (121, 5, 1, 5, 15, 0, false, '', false, '', 1700798589);
INSERT INTO public.action VALUES (122, 12, 1, 5, 15, 0, false, '', false, '', 1700798589);
INSERT INTO public.action VALUES (123, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"5983684e9d5976b8a5f1c302230691faf2cbcd24","Message":"init source\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-11-24T11:13:40+07:00"}],"HeadCommit":{"Sha1":"5983684e9d5976b8a5f1c302230691faf2cbcd24","Message":"init source\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-11-24T11:13:40+07:00"},"CompareURL":"Khieu-nai/backend/compare/faebefc16e6b3eeef35e781ad52e91ba9ac8aecb...5983684e9d5976b8a5f1c302230691faf2cbcd24","Len":1}', 1700799254);
INSERT INTO public.action VALUES (124, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"5983684e9d5976b8a5f1c302230691faf2cbcd24","Message":"init source\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-11-24T11:13:40+07:00"}],"HeadCommit":{"Sha1":"5983684e9d5976b8a5f1c302230691faf2cbcd24","Message":"init source\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-11-24T11:13:40+07:00"},"CompareURL":"Khieu-nai/backend/compare/faebefc16e6b3eeef35e781ad52e91ba9ac8aecb...5983684e9d5976b8a5f1c302230691faf2cbcd24","Len":1}', 1700799254);
INSERT INTO public.action VALUES (126, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"36685007ea7cb1ed55029bf25e99f8fafd0005c3","Message":"update name PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T15:30:02+07:00"}],"HeadCommit":{"Sha1":"36685007ea7cb1ed55029bf25e99f8fafd0005c3","Message":"update name PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T15:30:02+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/bf773b54733cc3351f271603748cf63fe426de36...36685007ea7cb1ed55029bf25e99f8fafd0005c3","Len":1}', 1700814613);
INSERT INTO public.action VALUES (127, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"36685007ea7cb1ed55029bf25e99f8fafd0005c3","Message":"update name PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T15:30:02+07:00"}],"HeadCommit":{"Sha1":"36685007ea7cb1ed55029bf25e99f8fafd0005c3","Message":"update name PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T15:30:02+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/bf773b54733cc3351f271603748cf63fe426de36...36685007ea7cb1ed55029bf25e99f8fafd0005c3","Len":1}', 1700814613);
INSERT INTO public.action VALUES (128, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"36685007ea7cb1ed55029bf25e99f8fafd0005c3","Message":"update name PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T15:30:02+07:00"}],"HeadCommit":{"Sha1":"36685007ea7cb1ed55029bf25e99f8fafd0005c3","Message":"update name PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T15:30:02+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/bf773b54733cc3351f271603748cf63fe426de36...36685007ea7cb1ed55029bf25e99f8fafd0005c3","Len":1}', 1700814613);
INSERT INTO public.action VALUES (417, 5, 11, 11, 21, 0, false, '', false, '5|update row nld', 1702372549);
INSERT INTO public.action VALUES (473, 1, 11, 11, 21, 0, false, '', false, '8|up code', 1702610184);
INSERT INTO public.action VALUES (53, 4, 5, 1, 10, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"6127ed198d03b85f471a9cf2fbba33b49efecad4","Message":"quan lý hồ sơ\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-07-09T13:38:14+07:00"},{"Sha1":"49c610146e4e0dd9c0cbdce4b2fe5d144a246ac1","Message":"tải phụ lục\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-06-09T16:47:40+07:00"},{"Sha1":"8f56a28d5deb2a7400964527099d00a3ce5ef7d0","Message":"dọn dẹp sạch sẽ\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T15:19:19+07:00"},{"Sha1":"a2896b6c2cc19f7c9d855c8af59fb5299f44e182","Message":"new\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-15T14:37:14+07:00"},{"Sha1":"8f7ee392c1f8dbb4dc23af6f6a36b7c58f565fa1","Message":"web.config\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-13T09:06:06+07:00"}],"HeadCommit":{"Sha1":"6127ed198d03b85f471a9cf2fbba33b49efecad4","Message":"quan lý hồ sơ\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-07-09T13:38:14+07:00"},"CompareURL":"","Len":8}', 1685933866);
INSERT INTO public.action VALUES (54, 1, 5, 1, 10, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"580251b795de3f4ab4760b74af176873ee4129d7","Message":"update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T10:13:28+07:00"}],"HeadCommit":{"Sha1":"580251b795de3f4ab4760b74af176873ee4129d7","Message":"update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T10:13:28+07:00"},"CompareURL":"buu-chinh-vien-thong/api/compare/6127ed198d03b85f471a9cf2fbba33b49efecad4...580251b795de3f4ab4760b74af176873ee4129d7","Len":1}', 1685934824);
INSERT INTO public.action VALUES (55, 8, 5, 1, 10, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"580251b795de3f4ab4760b74af176873ee4129d7","Message":"update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T10:13:28+07:00"}],"HeadCommit":{"Sha1":"580251b795de3f4ab4760b74af176873ee4129d7","Message":"update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T10:13:28+07:00"},"CompareURL":"buu-chinh-vien-thong/api/compare/6127ed198d03b85f471a9cf2fbba33b49efecad4...580251b795de3f4ab4760b74af176873ee4129d7","Len":1}', 1685934824);
INSERT INTO public.action VALUES (57, 1, 1, 1, 11, 0, false, '', true, '', 1685934907);
INSERT INTO public.action VALUES (129, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"caec7dea1404154a5d531a76760c5cf72740edf8","Message":"update url DacDiemPTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T16:17:35+07:00"}],"HeadCommit":{"Sha1":"caec7dea1404154a5d531a76760c5cf72740edf8","Message":"update url DacDiemPTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T16:17:35+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/36685007ea7cb1ed55029bf25e99f8fafd0005c3...caec7dea1404154a5d531a76760c5cf72740edf8","Len":1}', 1700817469);
INSERT INTO public.action VALUES (130, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"caec7dea1404154a5d531a76760c5cf72740edf8","Message":"update url DacDiemPTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T16:17:35+07:00"}],"HeadCommit":{"Sha1":"caec7dea1404154a5d531a76760c5cf72740edf8","Message":"update url DacDiemPTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T16:17:35+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/36685007ea7cb1ed55029bf25e99f8fafd0005c3...caec7dea1404154a5d531a76760c5cf72740edf8","Len":1}', 1700817469);
INSERT INTO public.action VALUES (131, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"caec7dea1404154a5d531a76760c5cf72740edf8","Message":"update url DacDiemPTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T16:17:35+07:00"}],"HeadCommit":{"Sha1":"caec7dea1404154a5d531a76760c5cf72740edf8","Message":"update url DacDiemPTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T16:17:35+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/36685007ea7cb1ed55029bf25e99f8fafd0005c3...caec7dea1404154a5d531a76760c5cf72740edf8","Len":1}', 1700817469);
INSERT INTO public.action VALUES (132, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"caec7dea1404154a5d531a76760c5cf72740edf8","Message":"update url DacDiemPTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T16:17:35+07:00"}],"HeadCommit":{"Sha1":"caec7dea1404154a5d531a76760c5cf72740edf8","Message":"update url DacDiemPTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T16:17:35+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/36685007ea7cb1ed55029bf25e99f8fafd0005c3...caec7dea1404154a5d531a76760c5cf72740edf8","Len":1}', 1700817469);
INSERT INTO public.action VALUES (161, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Message":"update fix loi add ptd trong danh sach tk\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:51:52+07:00"}],"HeadCommit":{"Sha1":"ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Message":"update fix loi add ptd trong danh sach tk\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:51:52+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d3f9d622311007abad8020be3259e8de092c2223...ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Len":1}', 1701078721);
INSERT INTO public.action VALUES (69, 1, 5, 1, 8, 0, false, 'refs/heads/nocms', true, '', 1686109358);
INSERT INTO public.action VALUES (70, 7, 5, 1, 8, 0, false, 'refs/heads/nocms', true, '', 1686109358);
INSERT INTO public.action VALUES (71, 4, 5, 1, 8, 0, false, 'refs/heads/nocms', true, '', 1686109358);
INSERT INTO public.action VALUES (72, 1, 5, 1, 8, 0, false, 'refs/heads/nocms', true, '{"Commits":[{"Sha1":"c76f7a74cf41fdd1c705fc9f019a697413ba8af7","Message":"fix arcgis service url\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-07T10:39:26+07:00"},{"Sha1":"f9c480a14776574e9fa018717881085801093db2","Message":"fix build\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-07T09:13:51+07:00"},{"Sha1":"6e7e608bba95346f1b99cd150f35c4535b019054","Message":"fix để lâu ngày build lỗi\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-06T17:16:19+07:00"},{"Sha1":"e6fdf64c29aa52df6eaf9e1199b06bb2ca04d56b","Message":"update doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-05-06T16:40:13+07:00"},{"Sha1":"795f2e6ecb4a953e3a6e49a49238805f3bbe113a","Message":"chỉnh giao diện\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2021-03-08T16:16:50+07:00"}],"HeadCommit":{"Sha1":"c76f7a74cf41fdd1c705fc9f019a697413ba8af7","Message":"fix arcgis service url\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-07T10:39:26+07:00"},"CompareURL":"xuc-tien-dau-tu/frontend/compare/5bbb10cce9d247b57e7dee3bcd126304c6fbd141...c76f7a74cf41fdd1c705fc9f019a697413ba8af7","Len":10}', 1686109359);
INSERT INTO public.action VALUES (162, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Message":"update fix loi add ptd trong danh sach tk\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:51:52+07:00"}],"HeadCommit":{"Sha1":"ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Message":"update fix loi add ptd trong danh sach tk\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:51:52+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d3f9d622311007abad8020be3259e8de092c2223...ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Len":1}', 1701078721);
INSERT INTO public.action VALUES (426, 11, 7, 11, 21, 0, false, '', false, '6|cmt QMTS + edit url KeHoachTuyenSinh', 1702438667);
INSERT INTO public.action VALUES (427, 14, 7, 11, 21, 0, false, '', false, '6|cmt QMTS + edit url KeHoachTuyenSinh', 1702438667);
INSERT INTO public.action VALUES (428, 1, 7, 11, 21, 0, false, '', false, '6|cmt QMTS + edit url KeHoachTuyenSinh', 1702438667);
INSERT INTO public.action VALUES (73, 7, 5, 1, 8, 0, false, 'refs/heads/nocms', true, '{"Commits":[{"Sha1":"c76f7a74cf41fdd1c705fc9f019a697413ba8af7","Message":"fix arcgis service url\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-07T10:39:26+07:00"},{"Sha1":"f9c480a14776574e9fa018717881085801093db2","Message":"fix build\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-07T09:13:51+07:00"},{"Sha1":"6e7e608bba95346f1b99cd150f35c4535b019054","Message":"fix để lâu ngày build lỗi\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-06T17:16:19+07:00"},{"Sha1":"e6fdf64c29aa52df6eaf9e1199b06bb2ca04d56b","Message":"update doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-05-06T16:40:13+07:00"},{"Sha1":"795f2e6ecb4a953e3a6e49a49238805f3bbe113a","Message":"chỉnh giao diện\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2021-03-08T16:16:50+07:00"}],"HeadCommit":{"Sha1":"c76f7a74cf41fdd1c705fc9f019a697413ba8af7","Message":"fix arcgis service url\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-07T10:39:26+07:00"},"CompareURL":"xuc-tien-dau-tu/frontend/compare/5bbb10cce9d247b57e7dee3bcd126304c6fbd141...c76f7a74cf41fdd1c705fc9f019a697413ba8af7","Len":10}', 1686109359);
INSERT INTO public.action VALUES (74, 4, 5, 1, 8, 0, false, 'refs/heads/nocms', true, '{"Commits":[{"Sha1":"c76f7a74cf41fdd1c705fc9f019a697413ba8af7","Message":"fix arcgis service url\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-07T10:39:26+07:00"},{"Sha1":"f9c480a14776574e9fa018717881085801093db2","Message":"fix build\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-07T09:13:51+07:00"},{"Sha1":"6e7e608bba95346f1b99cd150f35c4535b019054","Message":"fix để lâu ngày build lỗi\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-06T17:16:19+07:00"},{"Sha1":"e6fdf64c29aa52df6eaf9e1199b06bb2ca04d56b","Message":"update doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-05-06T16:40:13+07:00"},{"Sha1":"795f2e6ecb4a953e3a6e49a49238805f3bbe113a","Message":"chỉnh giao diện\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2021-03-08T16:16:50+07:00"}],"HeadCommit":{"Sha1":"c76f7a74cf41fdd1c705fc9f019a697413ba8af7","Message":"fix arcgis service url\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-07T10:39:26+07:00"},"CompareURL":"xuc-tien-dau-tu/frontend/compare/5bbb10cce9d247b57e7dee3bcd126304c6fbd141...c76f7a74cf41fdd1c705fc9f019a697413ba8af7","Len":10}', 1686109359);
INSERT INTO public.action VALUES (133, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ed4c25e6303e122960b503d0d3186aa6c0924866","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-26T13:36:05+07:00"}],"HeadCommit":{"Sha1":"ed4c25e6303e122960b503d0d3186aa6c0924866","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-26T13:36:05+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/caec7dea1404154a5d531a76760c5cf72740edf8...ed4c25e6303e122960b503d0d3186aa6c0924866","Len":1}', 1700980578);
INSERT INTO public.action VALUES (134, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ed4c25e6303e122960b503d0d3186aa6c0924866","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-26T13:36:05+07:00"}],"HeadCommit":{"Sha1":"ed4c25e6303e122960b503d0d3186aa6c0924866","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-26T13:36:05+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/caec7dea1404154a5d531a76760c5cf72740edf8...ed4c25e6303e122960b503d0d3186aa6c0924866","Len":1}', 1700980578);
INSERT INTO public.action VALUES (135, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ed4c25e6303e122960b503d0d3186aa6c0924866","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-26T13:36:05+07:00"}],"HeadCommit":{"Sha1":"ed4c25e6303e122960b503d0d3186aa6c0924866","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-26T13:36:05+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/caec7dea1404154a5d531a76760c5cf72740edf8...ed4c25e6303e122960b503d0d3186aa6c0924866","Len":1}', 1700980578);
INSERT INTO public.action VALUES (136, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ed4c25e6303e122960b503d0d3186aa6c0924866","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-26T13:36:05+07:00"}],"HeadCommit":{"Sha1":"ed4c25e6303e122960b503d0d3186aa6c0924866","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-26T13:36:05+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/caec7dea1404154a5d531a76760c5cf72740edf8...ed4c25e6303e122960b503d0d3186aa6c0924866","Len":1}', 1700980578);
INSERT INTO public.action VALUES (429, 5, 7, 11, 21, 0, false, '', false, '6|cmt QMTS + edit url KeHoachTuyenSinh', 1702438667);
INSERT INTO public.action VALUES (92, 9, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[],"HeadCommit":{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/98fac2b1708b47d60818e009363f5c231120e66a...7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Len":0}', 1686812494);
INSERT INTO public.action VALUES (474, 5, 11, 11, 21, 0, false, '', false, '8|up code', 1702610184);
INSERT INTO public.action VALUES (689, 11, 11, 11, 21, 0, false, '', false, '18|import hoc vien', 1702953626);
INSERT INTO public.action VALUES (137, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"93231c0c43f66b17577f50181d002e05c8fae830","Message":"fix them moi ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T08:35:27+07:00"}],"HeadCommit":{"Sha1":"93231c0c43f66b17577f50181d002e05c8fae830","Message":"fix them moi ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T08:35:27+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/ed4c25e6303e122960b503d0d3186aa6c0924866...93231c0c43f66b17577f50181d002e05c8fae830","Len":1}', 1701048937);
INSERT INTO public.action VALUES (138, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"93231c0c43f66b17577f50181d002e05c8fae830","Message":"fix them moi ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T08:35:27+07:00"}],"HeadCommit":{"Sha1":"93231c0c43f66b17577f50181d002e05c8fae830","Message":"fix them moi ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T08:35:27+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/ed4c25e6303e122960b503d0d3186aa6c0924866...93231c0c43f66b17577f50181d002e05c8fae830","Len":1}', 1701048937);
INSERT INTO public.action VALUES (139, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"93231c0c43f66b17577f50181d002e05c8fae830","Message":"fix them moi ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T08:35:27+07:00"}],"HeadCommit":{"Sha1":"93231c0c43f66b17577f50181d002e05c8fae830","Message":"fix them moi ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T08:35:27+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/ed4c25e6303e122960b503d0d3186aa6c0924866...93231c0c43f66b17577f50181d002e05c8fae830","Len":1}', 1701048937);
INSERT INTO public.action VALUES (140, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"93231c0c43f66b17577f50181d002e05c8fae830","Message":"fix them moi ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T08:35:27+07:00"}],"HeadCommit":{"Sha1":"93231c0c43f66b17577f50181d002e05c8fae830","Message":"fix them moi ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T08:35:27+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/ed4c25e6303e122960b503d0d3186aa6c0924866...93231c0c43f66b17577f50181d002e05c8fae830","Len":1}', 1701048937);
INSERT INTO public.action VALUES (163, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Message":"update fix loi add ptd trong danh sach tk\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:51:52+07:00"}],"HeadCommit":{"Sha1":"ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Message":"update fix loi add ptd trong danh sach tk\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:51:52+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d3f9d622311007abad8020be3259e8de092c2223...ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Len":1}', 1701078722);
INSERT INTO public.action VALUES (164, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Message":"update fix loi add ptd trong danh sach tk\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:51:52+07:00"}],"HeadCommit":{"Sha1":"ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Message":"update fix loi add ptd trong danh sach tk\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:51:52+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d3f9d622311007abad8020be3259e8de092c2223...ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Len":1}', 1701078722);
INSERT INTO public.action VALUES (174, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"e4a5176a30ebf1bc13a19cc272e09556838f0966","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T13:22:09+07:00"}],"HeadCommit":{"Sha1":"e4a5176a30ebf1bc13a19cc272e09556838f0966","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T13:22:09+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc...e4a5176a30ebf1bc13a19cc272e09556838f0966","Len":1}', 1701152540);
INSERT INTO public.action VALUES (60, 1, 5, 1, 11, 0, false, 'refs/heads/dev', true, '', 1685934955);
INSERT INTO public.action VALUES (81, 1, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"}],"HeadCommit":{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/a5b7c1734d5ed5f76db0664b9e6641407c521cc2...7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Len":1}', 1686802472);
INSERT INTO public.action VALUES (59, 4, 1, 1, 11, 0, false, '', true, '', 1685934907);
INSERT INTO public.action VALUES (62, 4, 5, 1, 11, 0, false, 'refs/heads/dev', true, '', 1685934955);
INSERT INTO public.action VALUES (430, 11, 11, 11, 21, 0, false, '', false, '6|cmt QMTS + edit url KeHoachTuyenSinh', 1702438682);
INSERT INTO public.action VALUES (431, 14, 11, 11, 21, 0, false, '', false, '6|cmt QMTS + edit url KeHoachTuyenSinh', 1702438682);
INSERT INTO public.action VALUES (432, 1, 11, 11, 21, 0, false, '', false, '6|cmt QMTS + edit url KeHoachTuyenSinh', 1702438682);
INSERT INTO public.action VALUES (433, 5, 11, 11, 21, 0, false, '', false, '6|cmt QMTS + edit url KeHoachTuyenSinh', 1702438682);
INSERT INTO public.action VALUES (141, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"3851a5e19d0466c9594e7a8ea754b3f9b5601594","Message":"fix ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T10:24:06+07:00"}],"HeadCommit":{"Sha1":"3851a5e19d0466c9594e7a8ea754b3f9b5601594","Message":"fix ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T10:24:06+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/93231c0c43f66b17577f50181d002e05c8fae830...3851a5e19d0466c9594e7a8ea754b3f9b5601594","Len":1}', 1701055458);
INSERT INTO public.action VALUES (142, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"3851a5e19d0466c9594e7a8ea754b3f9b5601594","Message":"fix ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T10:24:06+07:00"}],"HeadCommit":{"Sha1":"3851a5e19d0466c9594e7a8ea754b3f9b5601594","Message":"fix ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T10:24:06+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/93231c0c43f66b17577f50181d002e05c8fae830...3851a5e19d0466c9594e7a8ea754b3f9b5601594","Len":1}', 1701055458);
INSERT INTO public.action VALUES (143, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"3851a5e19d0466c9594e7a8ea754b3f9b5601594","Message":"fix ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T10:24:06+07:00"}],"HeadCommit":{"Sha1":"3851a5e19d0466c9594e7a8ea754b3f9b5601594","Message":"fix ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T10:24:06+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/93231c0c43f66b17577f50181d002e05c8fae830...3851a5e19d0466c9594e7a8ea754b3f9b5601594","Len":1}', 1701055458);
INSERT INTO public.action VALUES (144, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"3851a5e19d0466c9594e7a8ea754b3f9b5601594","Message":"fix ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T10:24:06+07:00"}],"HeadCommit":{"Sha1":"3851a5e19d0466c9594e7a8ea754b3f9b5601594","Message":"fix ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T10:24:06+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/93231c0c43f66b17577f50181d002e05c8fae830...3851a5e19d0466c9594e7a8ea754b3f9b5601594","Len":1}', 1701055458);
INSERT INTO public.action VALUES (165, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"9c57d2cf2ca0da2086e5456b2726730571563db7","Message":"fix requit\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:59:59+07:00"}],"HeadCommit":{"Sha1":"9c57d2cf2ca0da2086e5456b2726730571563db7","Message":"fix requit\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:59:59+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7...9c57d2cf2ca0da2086e5456b2726730571563db7","Len":1}', 1701079211);
INSERT INTO public.action VALUES (166, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"9c57d2cf2ca0da2086e5456b2726730571563db7","Message":"fix requit\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:59:59+07:00"}],"HeadCommit":{"Sha1":"9c57d2cf2ca0da2086e5456b2726730571563db7","Message":"fix requit\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:59:59+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7...9c57d2cf2ca0da2086e5456b2726730571563db7","Len":1}', 1701079211);
INSERT INTO public.action VALUES (167, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"9c57d2cf2ca0da2086e5456b2726730571563db7","Message":"fix requit\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:59:59+07:00"}],"HeadCommit":{"Sha1":"9c57d2cf2ca0da2086e5456b2726730571563db7","Message":"fix requit\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:59:59+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7...9c57d2cf2ca0da2086e5456b2726730571563db7","Len":1}', 1701079211);
INSERT INTO public.action VALUES (58, 8, 1, 1, 11, 0, false, '', true, '', 1685934907);
INSERT INTO public.action VALUES (61, 8, 5, 1, 11, 0, false, 'refs/heads/dev', true, '', 1685934955);
INSERT INTO public.action VALUES (168, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"9c57d2cf2ca0da2086e5456b2726730571563db7","Message":"fix requit\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:59:59+07:00"}],"HeadCommit":{"Sha1":"9c57d2cf2ca0da2086e5456b2726730571563db7","Message":"fix requit\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:59:59+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7...9c57d2cf2ca0da2086e5456b2726730571563db7","Len":1}', 1701079211);
INSERT INTO public.action VALUES (483, 11, 7, 11, 21, 0, false, '', false, '9|add PLTDDT', 1702615292);
INSERT INTO public.action VALUES (484, 14, 7, 11, 21, 0, false, '', false, '9|add PLTDDT', 1702615292);
INSERT INTO public.action VALUES (485, 1, 7, 11, 21, 0, false, '', false, '9|add PLTDDT', 1702615292);
INSERT INTO public.action VALUES (486, 5, 7, 11, 21, 0, false, '', false, '9|add PLTDDT', 1702615292);
INSERT INTO public.action VALUES (487, 11, 11, 11, 21, 0, false, '', false, '9|add PLTDDT', 1702615307);
INSERT INTO public.action VALUES (488, 14, 11, 11, 21, 0, false, '', false, '9|add PLTDDT', 1702615307);
INSERT INTO public.action VALUES (489, 1, 11, 11, 21, 0, false, '', false, '9|add PLTDDT', 1702615307);
INSERT INTO public.action VALUES (145, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T13:48:24+07:00"}],"HeadCommit":{"Sha1":"f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T13:48:24+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/3851a5e19d0466c9594e7a8ea754b3f9b5601594...f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Len":1}', 1701067729);
INSERT INTO public.action VALUES (146, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T13:48:24+07:00"}],"HeadCommit":{"Sha1":"f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T13:48:24+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/3851a5e19d0466c9594e7a8ea754b3f9b5601594...f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Len":1}', 1701067729);
INSERT INTO public.action VALUES (147, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T13:48:24+07:00"}],"HeadCommit":{"Sha1":"f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T13:48:24+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/3851a5e19d0466c9594e7a8ea754b3f9b5601594...f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Len":1}', 1701067729);
INSERT INTO public.action VALUES (148, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T13:48:24+07:00"}],"HeadCommit":{"Sha1":"f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T13:48:24+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/3851a5e19d0466c9594e7a8ea754b3f9b5601594...f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Len":1}', 1701067729);
INSERT INTO public.action VALUES (149, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"4bd5d4db6e0193f220385eb1ddd6e400398970e4","Message":"add PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:00:27+07:00"}],"HeadCommit":{"Sha1":"4bd5d4db6e0193f220385eb1ddd6e400398970e4","Message":"add PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:00:27+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/f62ca2e0feab5f1ca4d9a35de999748b5949d1d3...4bd5d4db6e0193f220385eb1ddd6e400398970e4","Len":1}', 1701068438);
INSERT INTO public.action VALUES (99, 4, 5, 4, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c","Message":"update Required email\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-06-01T08:23:22+07:00"},{"Sha1":"456cba1d9f42df2c2e89f33c39020910caa1a70a","Message":"update Required email\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-06-01T07:51:01+07:00"},{"Sha1":"16798cb6703ed5788c4ebe8c7ecb899de7bfb78d","Message":"update reply soan van ban\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-05-31T15:01:24+07:00"},{"Sha1":"2b95f61052932964a0914349390cc0d5af5fa94c","Message":"update PhamViDo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-05-31T11:01:18+07:00"},{"Sha1":"da16d0714327c73e6fa44064aa83e1db23730f82","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-05-31T08:59:28+07:00"}],"HeadCommit":{"Sha1":"9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c","Message":"update Required email\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-06-01T08:23:22+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/440a1f54ebd86fef26b1f2b4715f8c22bf04bd0e...9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c","Len":10}', 1686814497);
INSERT INTO public.action VALUES (100, 10, 5, 4, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c","Message":"update Required email\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-06-01T08:23:22+07:00"},{"Sha1":"456cba1d9f42df2c2e89f33c39020910caa1a70a","Message":"update Required email\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-06-01T07:51:01+07:00"},{"Sha1":"16798cb6703ed5788c4ebe8c7ecb899de7bfb78d","Message":"update reply soan van ban\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-05-31T15:01:24+07:00"},{"Sha1":"2b95f61052932964a0914349390cc0d5af5fa94c","Message":"update PhamViDo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-05-31T11:01:18+07:00"},{"Sha1":"da16d0714327c73e6fa44064aa83e1db23730f82","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-05-31T08:59:28+07:00"}],"HeadCommit":{"Sha1":"9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c","Message":"update Required email\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-06-01T08:23:22+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/440a1f54ebd86fef26b1f2b4715f8c22bf04bd0e...9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c","Len":10}', 1686814497);
INSERT INTO public.action VALUES (47, 4, 1, 1, 10, 0, false, '', true, '', 1685933663);
INSERT INTO public.action VALUES (48, 1, 5, 1, 10, 0, false, 'refs/heads/dev', true, '', 1685933865);
INSERT INTO public.action VALUES (79, 8, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"a5b7c1734d5ed5f76db0664b9e6641407c521cc2","Message":"convert to vite\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T16:06:36+07:00"}],"HeadCommit":{"Sha1":"a5b7c1734d5ed5f76db0664b9e6641407c521cc2","Message":"convert to vite\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T16:06:36+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/d39023ac6221ece5fcb22228c67ffb67a86162ef...a5b7c1734d5ed5f76db0664b9e6641407c521cc2","Len":1}', 1686733627);
INSERT INTO public.action VALUES (84, 9, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"}],"HeadCommit":{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/a5b7c1734d5ed5f76db0664b9e6641407c521cc2...7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Len":1}', 1686802472);
INSERT INTO public.action VALUES (490, 5, 11, 11, 21, 0, false, '', false, '9|add PLTDDT', 1702615307);
INSERT INTO public.action VALUES (690, 14, 11, 11, 21, 0, false, '', false, '18|import hoc vien', 1702953626);
INSERT INTO public.action VALUES (691, 1, 11, 11, 21, 0, false, '', false, '18|import hoc vien', 1702953626);
INSERT INTO public.action VALUES (150, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"4bd5d4db6e0193f220385eb1ddd6e400398970e4","Message":"add PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:00:27+07:00"}],"HeadCommit":{"Sha1":"4bd5d4db6e0193f220385eb1ddd6e400398970e4","Message":"add PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:00:27+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/f62ca2e0feab5f1ca4d9a35de999748b5949d1d3...4bd5d4db6e0193f220385eb1ddd6e400398970e4","Len":1}', 1701068438);
INSERT INTO public.action VALUES (151, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"4bd5d4db6e0193f220385eb1ddd6e400398970e4","Message":"add PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:00:27+07:00"}],"HeadCommit":{"Sha1":"4bd5d4db6e0193f220385eb1ddd6e400398970e4","Message":"add PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:00:27+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/f62ca2e0feab5f1ca4d9a35de999748b5949d1d3...4bd5d4db6e0193f220385eb1ddd6e400398970e4","Len":1}', 1701068438);
INSERT INTO public.action VALUES (152, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"4bd5d4db6e0193f220385eb1ddd6e400398970e4","Message":"add PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:00:27+07:00"}],"HeadCommit":{"Sha1":"4bd5d4db6e0193f220385eb1ddd6e400398970e4","Message":"add PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:00:27+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/f62ca2e0feab5f1ca4d9a35de999748b5949d1d3...4bd5d4db6e0193f220385eb1ddd6e400398970e4","Len":1}', 1701068438);
INSERT INTO public.action VALUES (169, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Message":"fix reload ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T08:30:57+07:00"}],"HeadCommit":{"Sha1":"7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Message":"fix reload ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T08:30:57+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/9c57d2cf2ca0da2086e5456b2726730571563db7...7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Len":1}', 1701135453);
INSERT INTO public.action VALUES (170, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Message":"fix reload ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T08:30:57+07:00"}],"HeadCommit":{"Sha1":"7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Message":"fix reload ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T08:30:57+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/9c57d2cf2ca0da2086e5456b2726730571563db7...7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Len":1}', 1701135453);
INSERT INTO public.action VALUES (171, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Message":"fix reload ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T08:30:57+07:00"}],"HeadCommit":{"Sha1":"7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Message":"fix reload ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T08:30:57+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/9c57d2cf2ca0da2086e5456b2726730571563db7...7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Len":1}', 1701135453);
INSERT INTO public.action VALUES (93, 4, 1, 4, 12, 0, false, '', true, '', 1686814439);
INSERT INTO public.action VALUES (94, 10, 1, 4, 12, 0, false, '', true, '', 1686814439);
INSERT INTO public.action VALUES (95, 1, 1, 4, 12, 0, false, '', true, '', 1686814439);
INSERT INTO public.action VALUES (96, 4, 5, 4, 12, 0, false, 'refs/heads/main', true, '', 1686814496);
INSERT INTO public.action VALUES (97, 10, 5, 4, 12, 0, false, 'refs/heads/main', true, '', 1686814496);
INSERT INTO public.action VALUES (98, 1, 5, 4, 12, 0, false, 'refs/heads/main', true, '', 1686814496);
INSERT INTO public.action VALUES (85, 1, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"98fac2b1708b47d60818e009363f5c231120e66a","Message":"Test empty commit\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T13:57:32+07:00"}],"HeadCommit":{"Sha1":"98fac2b1708b47d60818e009363f5c231120e66a","Message":"Test empty commit\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T13:57:32+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66...98fac2b1708b47d60818e009363f5c231120e66a","Len":1}', 1686812262);
INSERT INTO public.action VALUES (86, 8, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"98fac2b1708b47d60818e009363f5c231120e66a","Message":"Test empty commit\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T13:57:32+07:00"}],"HeadCommit":{"Sha1":"98fac2b1708b47d60818e009363f5c231120e66a","Message":"Test empty commit\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T13:57:32+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66...98fac2b1708b47d60818e009363f5c231120e66a","Len":1}', 1686812262);
INSERT INTO public.action VALUES (89, 1, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[],"HeadCommit":{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/98fac2b1708b47d60818e009363f5c231120e66a...7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Len":0}', 1686812494);
INSERT INTO public.action VALUES (101, 1, 5, 4, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c","Message":"update Required email\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-06-01T08:23:22+07:00"},{"Sha1":"456cba1d9f42df2c2e89f33c39020910caa1a70a","Message":"update Required email\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-06-01T07:51:01+07:00"},{"Sha1":"16798cb6703ed5788c4ebe8c7ecb899de7bfb78d","Message":"update reply soan van ban\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-05-31T15:01:24+07:00"},{"Sha1":"2b95f61052932964a0914349390cc0d5af5fa94c","Message":"update PhamViDo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-05-31T11:01:18+07:00"},{"Sha1":"da16d0714327c73e6fa44064aa83e1db23730f82","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-05-31T08:59:28+07:00"}],"HeadCommit":{"Sha1":"9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c","Message":"update Required email\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-06-01T08:23:22+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/440a1f54ebd86fef26b1f2b4715f8c22bf04bd0e...9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c","Len":10}', 1686814497);
INSERT INTO public.action VALUES (153, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Message":"fix issue\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:30:33+07:00"}],"HeadCommit":{"Sha1":"b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Message":"fix issue\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:30:33+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/4bd5d4db6e0193f220385eb1ddd6e400398970e4...b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Len":1}', 1701070242);
INSERT INTO public.action VALUES (154, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Message":"fix issue\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:30:33+07:00"}],"HeadCommit":{"Sha1":"b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Message":"fix issue\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:30:33+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/4bd5d4db6e0193f220385eb1ddd6e400398970e4...b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Len":1}', 1701070242);
INSERT INTO public.action VALUES (155, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Message":"fix issue\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:30:33+07:00"}],"HeadCommit":{"Sha1":"b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Message":"fix issue\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:30:33+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/4bd5d4db6e0193f220385eb1ddd6e400398970e4...b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Len":1}', 1701070242);
INSERT INTO public.action VALUES (156, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Message":"fix issue\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:30:33+07:00"}],"HeadCommit":{"Sha1":"b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Message":"fix issue\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:30:33+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/4bd5d4db6e0193f220385eb1ddd6e400398970e4...b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Len":1}', 1701070242);
INSERT INTO public.action VALUES (172, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Message":"fix reload ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T08:30:57+07:00"}],"HeadCommit":{"Sha1":"7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Message":"fix reload ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T08:30:57+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/9c57d2cf2ca0da2086e5456b2726730571563db7...7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Len":1}', 1701135453);
INSERT INTO public.action VALUES (175, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"e4a5176a30ebf1bc13a19cc272e09556838f0966","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T13:22:09+07:00"}],"HeadCommit":{"Sha1":"e4a5176a30ebf1bc13a19cc272e09556838f0966","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T13:22:09+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc...e4a5176a30ebf1bc13a19cc272e09556838f0966","Len":1}', 1701152540);
INSERT INTO public.action VALUES (102, 1, 5, 1, 9, 0, false, 'refs/heads/master', true, '', 1688616860);
INSERT INTO public.action VALUES (103, 8, 5, 1, 9, 0, false, 'refs/heads/master', true, '', 1688616860);
INSERT INTO public.action VALUES (104, 4, 5, 1, 9, 0, false, 'refs/heads/master', true, '', 1688616860);
INSERT INTO public.action VALUES (105, 9, 5, 1, 9, 0, false, 'refs/heads/master', true, '', 1688616860);
INSERT INTO public.action VALUES (176, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"e4a5176a30ebf1bc13a19cc272e09556838f0966","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T13:22:09+07:00"}],"HeadCommit":{"Sha1":"e4a5176a30ebf1bc13a19cc272e09556838f0966","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T13:22:09+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc...e4a5176a30ebf1bc13a19cc272e09556838f0966","Len":1}', 1701152540);
INSERT INTO public.action VALUES (523, 11, 11, 11, 21, 0, false, '', false, '11|thinh', 1702626248);
INSERT INTO public.action VALUES (524, 14, 11, 11, 21, 0, false, '', false, '11|thinh', 1702626248);
INSERT INTO public.action VALUES (525, 1, 11, 11, 21, 0, false, '', false, '11|thinh', 1702626248);
INSERT INTO public.action VALUES (526, 5, 11, 11, 21, 0, false, '', false, '11|thinh', 1702626248);
INSERT INTO public.action VALUES (692, 5, 11, 11, 21, 0, false, '', false, '18|import hoc vien', 1702953626);
INSERT INTO public.action VALUES (1209, 11, 7, 11, 21, 0, false, '', false, '32|thinh', 1704270128);
INSERT INTO public.action VALUES (157, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d3f9d622311007abad8020be3259e8de092c2223","Message":"update thong bao chinh sua tt co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T15:04:28+07:00"}],"HeadCommit":{"Sha1":"d3f9d622311007abad8020be3259e8de092c2223","Message":"update thong bao chinh sua tt co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T15:04:28+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/b5727ad2eac7d277d7a7a3cd78c24c798abffc65...d3f9d622311007abad8020be3259e8de092c2223","Len":1}', 1701072279);
INSERT INTO public.action VALUES (158, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d3f9d622311007abad8020be3259e8de092c2223","Message":"update thong bao chinh sua tt co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T15:04:28+07:00"}],"HeadCommit":{"Sha1":"d3f9d622311007abad8020be3259e8de092c2223","Message":"update thong bao chinh sua tt co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T15:04:28+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/b5727ad2eac7d277d7a7a3cd78c24c798abffc65...d3f9d622311007abad8020be3259e8de092c2223","Len":1}', 1701072279);
INSERT INTO public.action VALUES (42, 1, 5, 1, 9, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"eecc690536ed3f49a97cbb6bb416175b0ff4eb06","Message":"fix build lỗi sau 1 thời gian dài\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T09:40:13+07:00"},{"Sha1":"59390456c00c4a15895278bf7d4371861b089254","Message":"update add huyen/tp diem dich vu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-12-07T08:56:14+07:00"},{"Sha1":"cf1ca9fa11bf6391bed4d535bc1394433bc94f50","Message":"fix add diem dich vu ko DN\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-12-07T08:43:33+07:00"},{"Sha1":"d043bd66297e3556f609f4f78026834fd10f8ee4","Message":"change argis rest url env\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-06-24T09:54:09+07:00"},{"Sha1":"9db562154c151ef4f59f53ede1beb1af8d848b59","Message":"favicon\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-10-15T14:55:15+07:00"}],"HeadCommit":{"Sha1":"eecc690536ed3f49a97cbb6bb416175b0ff4eb06","Message":"fix build lỗi sau 1 thời gian dài\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T09:40:13+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/fadd8cd3dd5fe23a597c675b4fb0c750fcd01e4c...eecc690536ed3f49a97cbb6bb416175b0ff4eb06","Len":10}', 1685933370);
INSERT INTO public.action VALUES (106, 1, 5, 1, 9, 0, false, 'refs/heads/master', true, '{"Commits":[{"Sha1":"9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T11:13:54+07:00"},{"Sha1":"a42099afa0558efbca571dce5b7b98906a1585bb","Message":"hidden fields BTS\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-06T10:09:11+07:00"}],"HeadCommit":{"Sha1":"9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T11:13:54+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/eecc690536ed3f49a97cbb6bb416175b0ff4eb06...9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Len":2}', 1688616861);
INSERT INTO public.action VALUES (107, 8, 5, 1, 9, 0, false, 'refs/heads/master', true, '{"Commits":[{"Sha1":"9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T11:13:54+07:00"},{"Sha1":"a42099afa0558efbca571dce5b7b98906a1585bb","Message":"hidden fields BTS\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-06T10:09:11+07:00"}],"HeadCommit":{"Sha1":"9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T11:13:54+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/eecc690536ed3f49a97cbb6bb416175b0ff4eb06...9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Len":2}', 1688616861);
INSERT INTO public.action VALUES (108, 4, 5, 1, 9, 0, false, 'refs/heads/master', true, '{"Commits":[{"Sha1":"9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T11:13:54+07:00"},{"Sha1":"a42099afa0558efbca571dce5b7b98906a1585bb","Message":"hidden fields BTS\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-06T10:09:11+07:00"}],"HeadCommit":{"Sha1":"9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T11:13:54+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/eecc690536ed3f49a97cbb6bb416175b0ff4eb06...9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Len":2}', 1688616861);
INSERT INTO public.action VALUES (109, 9, 5, 1, 9, 0, false, 'refs/heads/master', true, '{"Commits":[{"Sha1":"9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T11:13:54+07:00"},{"Sha1":"a42099afa0558efbca571dce5b7b98906a1585bb","Message":"hidden fields BTS\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-06T10:09:11+07:00"}],"HeadCommit":{"Sha1":"9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T11:13:54+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/eecc690536ed3f49a97cbb6bb416175b0ff4eb06...9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Len":2}', 1688616861);
INSERT INTO public.action VALUES (708, 5, 11, 11, 21, 0, false, '', false, '19|update file excel hoc vien', 1702957100);
INSERT INTO public.action VALUES (1210, 14, 7, 11, 21, 0, false, '', false, '32|thinh', 1704270128);
INSERT INTO public.action VALUES (110, 4, 5, 4, 9, 0, false, 'refs/heads/master', true, '{"Commits":[{"Sha1":"d9808de1f02ff6939def557ccc6e2bc9e56f335d","Message":"update dashboard\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-13T10:39:13+07:00"},{"Sha1":"f1dc49846352a48d337ee3428bf78e4e500e0e2a","Message":"add web.config\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T13:26:23+07:00"}],"HeadCommit":{"Sha1":"d9808de1f02ff6939def557ccc6e2bc9e56f335d","Message":"update dashboard\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-13T10:39:13+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/9b214c9e5bb595c7b91c72d4276a0121e43c25c6...d9808de1f02ff6939def557ccc6e2bc9e56f335d","Len":2}', 1689230559);
INSERT INTO public.action VALUES (111, 8, 5, 4, 9, 0, false, 'refs/heads/master', true, '{"Commits":[{"Sha1":"d9808de1f02ff6939def557ccc6e2bc9e56f335d","Message":"update dashboard\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-13T10:39:13+07:00"},{"Sha1":"f1dc49846352a48d337ee3428bf78e4e500e0e2a","Message":"add web.config\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T13:26:23+07:00"}],"HeadCommit":{"Sha1":"d9808de1f02ff6939def557ccc6e2bc9e56f335d","Message":"update dashboard\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-13T10:39:13+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/9b214c9e5bb595c7b91c72d4276a0121e43c25c6...d9808de1f02ff6939def557ccc6e2bc9e56f335d","Len":2}', 1689230559);
INSERT INTO public.action VALUES (112, 1, 5, 4, 9, 0, false, 'refs/heads/master', true, '{"Commits":[{"Sha1":"d9808de1f02ff6939def557ccc6e2bc9e56f335d","Message":"update dashboard\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-13T10:39:13+07:00"},{"Sha1":"f1dc49846352a48d337ee3428bf78e4e500e0e2a","Message":"add web.config\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T13:26:23+07:00"}],"HeadCommit":{"Sha1":"d9808de1f02ff6939def557ccc6e2bc9e56f335d","Message":"update dashboard\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-13T10:39:13+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/9b214c9e5bb595c7b91c72d4276a0121e43c25c6...d9808de1f02ff6939def557ccc6e2bc9e56f335d","Len":2}', 1689230559);
INSERT INTO public.action VALUES (113, 9, 5, 4, 9, 0, false, 'refs/heads/master', true, '{"Commits":[{"Sha1":"d9808de1f02ff6939def557ccc6e2bc9e56f335d","Message":"update dashboard\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-13T10:39:13+07:00"},{"Sha1":"f1dc49846352a48d337ee3428bf78e4e500e0e2a","Message":"add web.config\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T13:26:23+07:00"}],"HeadCommit":{"Sha1":"d9808de1f02ff6939def557ccc6e2bc9e56f335d","Message":"update dashboard\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-13T10:39:13+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/9b214c9e5bb595c7b91c72d4276a0121e43c25c6...d9808de1f02ff6939def557ccc6e2bc9e56f335d","Len":2}', 1689230559);
INSERT INTO public.action VALUES (49, 8, 5, 1, 10, 0, false, 'refs/heads/dev', true, '', 1685933865);
INSERT INTO public.action VALUES (50, 4, 5, 1, 10, 0, false, 'refs/heads/dev', true, '', 1685933865);
INSERT INTO public.action VALUES (51, 1, 5, 1, 10, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"6127ed198d03b85f471a9cf2fbba33b49efecad4","Message":"quan lý hồ sơ\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-07-09T13:38:14+07:00"},{"Sha1":"49c610146e4e0dd9c0cbdce4b2fe5d144a246ac1","Message":"tải phụ lục\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-06-09T16:47:40+07:00"},{"Sha1":"8f56a28d5deb2a7400964527099d00a3ce5ef7d0","Message":"dọn dẹp sạch sẽ\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T15:19:19+07:00"},{"Sha1":"a2896b6c2cc19f7c9d855c8af59fb5299f44e182","Message":"new\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-15T14:37:14+07:00"},{"Sha1":"8f7ee392c1f8dbb4dc23af6f6a36b7c58f565fa1","Message":"web.config\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-13T09:06:06+07:00"}],"HeadCommit":{"Sha1":"6127ed198d03b85f471a9cf2fbba33b49efecad4","Message":"quan lý hồ sơ\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-07-09T13:38:14+07:00"},"CompareURL":"","Len":8}', 1685933866);
INSERT INTO public.action VALUES (52, 8, 5, 1, 10, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"6127ed198d03b85f471a9cf2fbba33b49efecad4","Message":"quan lý hồ sơ\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-07-09T13:38:14+07:00"},{"Sha1":"49c610146e4e0dd9c0cbdce4b2fe5d144a246ac1","Message":"tải phụ lục\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-06-09T16:47:40+07:00"},{"Sha1":"8f56a28d5deb2a7400964527099d00a3ce5ef7d0","Message":"dọn dẹp sạch sẽ\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T15:19:19+07:00"},{"Sha1":"a2896b6c2cc19f7c9d855c8af59fb5299f44e182","Message":"new\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-15T14:37:14+07:00"},{"Sha1":"8f7ee392c1f8dbb4dc23af6f6a36b7c58f565fa1","Message":"web.config\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-13T09:06:06+07:00"}],"HeadCommit":{"Sha1":"6127ed198d03b85f471a9cf2fbba33b49efecad4","Message":"quan lý hồ sơ\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-07-09T13:38:14+07:00"},"CompareURL":"","Len":8}', 1685933866);
INSERT INTO public.action VALUES (721, 11, 7, 11, 21, 0, false, '', false, '20|thinh', 1702958706);
INSERT INTO public.action VALUES (56, 4, 5, 1, 10, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"580251b795de3f4ab4760b74af176873ee4129d7","Message":"update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T10:13:28+07:00"}],"HeadCommit":{"Sha1":"580251b795de3f4ab4760b74af176873ee4129d7","Message":"update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T10:13:28+07:00"},"CompareURL":"buu-chinh-vien-thong/api/compare/6127ed198d03b85f471a9cf2fbba33b49efecad4...580251b795de3f4ab4760b74af176873ee4129d7","Len":1}', 1685934824);
INSERT INTO public.action VALUES (63, 1, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"f91352c431379dce1be028e51b3d0c99ebcff400","Message":"chỉnh sửa thông tin ok\n","AuthorEmail":"dungnthFX00443@funix.edu.vn","AuthorName":"dungnguyn","CommitterEmail":"dungnthFX00443@funix.edu.vn","CommitterName":"dungnguyn","Timestamp":"2020-08-18T08:15:49+07:00"},{"Sha1":"a6746493d8c60b12707c8869a1617f6860cb11f0","Message":"dọn dẹp admin\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T15:45:45+07:00"},{"Sha1":"fc6ab2edc380cab80d146db5ec26e2889e4c1686","Message":"clean tiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T13:27:13+07:00"},{"Sha1":"cfd082ebc123e4a3998560576f0da435d5b9c31b","Message":"clean source\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T10:06:43+07:00"},{"Sha1":"382fc58396db1bf4e29ec0024c9d1076fde5b6d7","Message":"Initial commit\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-04-25T09:21:38+07:00"}],"HeadCommit":{"Sha1":"f91352c431379dce1be028e51b3d0c99ebcff400","Message":"chỉnh sửa thông tin ok\n","AuthorEmail":"dungnthFX00443@funix.edu.vn","AuthorName":"dungnguyn","CommitterEmail":"dungnthFX00443@funix.edu.vn","CommitterName":"dungnguyn","Timestamp":"2020-08-18T08:15:49+07:00"},"CompareURL":"","Len":5}', 1685934955);
INSERT INTO public.action VALUES (66, 1, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"0af9c340bcd9d70847d5f64aa980d5690265d3ac","Message":"fix để lâu ngày build lỗi\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T14:25:21+07:00"}],"HeadCommit":{"Sha1":"0af9c340bcd9d70847d5f64aa980d5690265d3ac","Message":"fix để lâu ngày build lỗi\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T14:25:21+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/f91352c431379dce1be028e51b3d0c99ebcff400...0af9c340bcd9d70847d5f64aa980d5690265d3ac","Len":1}', 1685949973);
INSERT INTO public.action VALUES (75, 1, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"d39023ac6221ece5fcb22228c67ffb67a86162ef","Message":"change website domain\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T09:46:04+07:00"}],"HeadCommit":{"Sha1":"d39023ac6221ece5fcb22228c67ffb67a86162ef","Message":"change website domain\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T09:46:04+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/0af9c340bcd9d70847d5f64aa980d5690265d3ac...d39023ac6221ece5fcb22228c67ffb67a86162ef","Len":1}', 1686710845);
INSERT INTO public.action VALUES (78, 1, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"a5b7c1734d5ed5f76db0664b9e6641407c521cc2","Message":"convert to vite\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T16:06:36+07:00"}],"HeadCommit":{"Sha1":"a5b7c1734d5ed5f76db0664b9e6641407c521cc2","Message":"convert to vite\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T16:06:36+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/d39023ac6221ece5fcb22228c67ffb67a86162ef...a5b7c1734d5ed5f76db0664b9e6641407c521cc2","Len":1}', 1686733627);
INSERT INTO public.action VALUES (80, 4, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"a5b7c1734d5ed5f76db0664b9e6641407c521cc2","Message":"convert to vite\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T16:06:36+07:00"}],"HeadCommit":{"Sha1":"a5b7c1734d5ed5f76db0664b9e6641407c521cc2","Message":"convert to vite\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T16:06:36+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/d39023ac6221ece5fcb22228c67ffb67a86162ef...a5b7c1734d5ed5f76db0664b9e6641407c521cc2","Len":1}', 1686733627);
INSERT INTO public.action VALUES (83, 4, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"}],"HeadCommit":{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/a5b7c1734d5ed5f76db0664b9e6641407c521cc2...7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Len":1}', 1686802472);
INSERT INTO public.action VALUES (87, 4, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"98fac2b1708b47d60818e009363f5c231120e66a","Message":"Test empty commit\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T13:57:32+07:00"}],"HeadCommit":{"Sha1":"98fac2b1708b47d60818e009363f5c231120e66a","Message":"Test empty commit\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T13:57:32+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66...98fac2b1708b47d60818e009363f5c231120e66a","Len":1}', 1686812262);
INSERT INTO public.action VALUES (88, 9, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"98fac2b1708b47d60818e009363f5c231120e66a","Message":"Test empty commit\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T13:57:32+07:00"}],"HeadCommit":{"Sha1":"98fac2b1708b47d60818e009363f5c231120e66a","Message":"Test empty commit\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T13:57:32+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66...98fac2b1708b47d60818e009363f5c231120e66a","Len":1}', 1686812262);
INSERT INTO public.action VALUES (65, 4, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"f91352c431379dce1be028e51b3d0c99ebcff400","Message":"chỉnh sửa thông tin ok\n","AuthorEmail":"dungnthFX00443@funix.edu.vn","AuthorName":"dungnguyn","CommitterEmail":"dungnthFX00443@funix.edu.vn","CommitterName":"dungnguyn","Timestamp":"2020-08-18T08:15:49+07:00"},{"Sha1":"a6746493d8c60b12707c8869a1617f6860cb11f0","Message":"dọn dẹp admin\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T15:45:45+07:00"},{"Sha1":"fc6ab2edc380cab80d146db5ec26e2889e4c1686","Message":"clean tiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T13:27:13+07:00"},{"Sha1":"cfd082ebc123e4a3998560576f0da435d5b9c31b","Message":"clean source\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T10:06:43+07:00"},{"Sha1":"382fc58396db1bf4e29ec0024c9d1076fde5b6d7","Message":"Initial commit\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-04-25T09:21:38+07:00"}],"HeadCommit":{"Sha1":"f91352c431379dce1be028e51b3d0c99ebcff400","Message":"chỉnh sửa thông tin ok\n","AuthorEmail":"dungnthFX00443@funix.edu.vn","AuthorName":"dungnguyn","CommitterEmail":"dungnthFX00443@funix.edu.vn","CommitterName":"dungnguyn","Timestamp":"2020-08-18T08:15:49+07:00"},"CompareURL":"","Len":5}', 1685934955);
INSERT INTO public.action VALUES (68, 4, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"0af9c340bcd9d70847d5f64aa980d5690265d3ac","Message":"fix để lâu ngày build lỗi\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T14:25:21+07:00"}],"HeadCommit":{"Sha1":"0af9c340bcd9d70847d5f64aa980d5690265d3ac","Message":"fix để lâu ngày build lỗi\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T14:25:21+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/f91352c431379dce1be028e51b3d0c99ebcff400...0af9c340bcd9d70847d5f64aa980d5690265d3ac","Len":1}', 1685949973);
INSERT INTO public.action VALUES (77, 4, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"d39023ac6221ece5fcb22228c67ffb67a86162ef","Message":"change website domain\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T09:46:04+07:00"}],"HeadCommit":{"Sha1":"d39023ac6221ece5fcb22228c67ffb67a86162ef","Message":"change website domain\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T09:46:04+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/0af9c340bcd9d70847d5f64aa980d5690265d3ac...d39023ac6221ece5fcb22228c67ffb67a86162ef","Len":1}', 1686710845);
INSERT INTO public.action VALUES (82, 8, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"}],"HeadCommit":{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/a5b7c1734d5ed5f76db0664b9e6641407c521cc2...7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Len":1}', 1686802472);
INSERT INTO public.action VALUES (64, 8, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"f91352c431379dce1be028e51b3d0c99ebcff400","Message":"chỉnh sửa thông tin ok\n","AuthorEmail":"dungnthFX00443@funix.edu.vn","AuthorName":"dungnguyn","CommitterEmail":"dungnthFX00443@funix.edu.vn","CommitterName":"dungnguyn","Timestamp":"2020-08-18T08:15:49+07:00"},{"Sha1":"a6746493d8c60b12707c8869a1617f6860cb11f0","Message":"dọn dẹp admin\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T15:45:45+07:00"},{"Sha1":"fc6ab2edc380cab80d146db5ec26e2889e4c1686","Message":"clean tiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T13:27:13+07:00"},{"Sha1":"cfd082ebc123e4a3998560576f0da435d5b9c31b","Message":"clean source\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T10:06:43+07:00"},{"Sha1":"382fc58396db1bf4e29ec0024c9d1076fde5b6d7","Message":"Initial commit\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-04-25T09:21:38+07:00"}],"HeadCommit":{"Sha1":"f91352c431379dce1be028e51b3d0c99ebcff400","Message":"chỉnh sửa thông tin ok\n","AuthorEmail":"dungnthFX00443@funix.edu.vn","AuthorName":"dungnguyn","CommitterEmail":"dungnthFX00443@funix.edu.vn","CommitterName":"dungnguyn","Timestamp":"2020-08-18T08:15:49+07:00"},"CompareURL":"","Len":5}', 1685934955);
INSERT INTO public.action VALUES (67, 8, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"0af9c340bcd9d70847d5f64aa980d5690265d3ac","Message":"fix để lâu ngày build lỗi\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T14:25:21+07:00"}],"HeadCommit":{"Sha1":"0af9c340bcd9d70847d5f64aa980d5690265d3ac","Message":"fix để lâu ngày build lỗi\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T14:25:21+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/f91352c431379dce1be028e51b3d0c99ebcff400...0af9c340bcd9d70847d5f64aa980d5690265d3ac","Len":1}', 1685949973);
INSERT INTO public.action VALUES (76, 8, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"d39023ac6221ece5fcb22228c67ffb67a86162ef","Message":"change website domain\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T09:46:04+07:00"}],"HeadCommit":{"Sha1":"d39023ac6221ece5fcb22228c67ffb67a86162ef","Message":"change website domain\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T09:46:04+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/0af9c340bcd9d70847d5f64aa980d5690265d3ac...d39023ac6221ece5fcb22228c67ffb67a86162ef","Len":1}', 1686710845);
INSERT INTO public.action VALUES (90, 8, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[],"HeadCommit":{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/98fac2b1708b47d60818e009363f5c231120e66a...7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Len":0}', 1686812494);
INSERT INTO public.action VALUES (177, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d5ec7ac807a96042f9f830e18351bcd04f19e93f","Message":"update fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T14:35:43+07:00"}],"HeadCommit":{"Sha1":"d5ec7ac807a96042f9f830e18351bcd04f19e93f","Message":"update fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T14:35:43+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/e4a5176a30ebf1bc13a19cc272e09556838f0966...d5ec7ac807a96042f9f830e18351bcd04f19e93f","Len":1}', 1701156957);
INSERT INTO public.action VALUES (178, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d5ec7ac807a96042f9f830e18351bcd04f19e93f","Message":"update fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T14:35:43+07:00"}],"HeadCommit":{"Sha1":"d5ec7ac807a96042f9f830e18351bcd04f19e93f","Message":"update fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T14:35:43+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/e4a5176a30ebf1bc13a19cc272e09556838f0966...d5ec7ac807a96042f9f830e18351bcd04f19e93f","Len":1}', 1701156957);
INSERT INTO public.action VALUES (179, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d5ec7ac807a96042f9f830e18351bcd04f19e93f","Message":"update fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T14:35:43+07:00"}],"HeadCommit":{"Sha1":"d5ec7ac807a96042f9f830e18351bcd04f19e93f","Message":"update fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T14:35:43+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/e4a5176a30ebf1bc13a19cc272e09556838f0966...d5ec7ac807a96042f9f830e18351bcd04f19e93f","Len":1}', 1701156957);
INSERT INTO public.action VALUES (180, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d5ec7ac807a96042f9f830e18351bcd04f19e93f","Message":"update fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T14:35:43+07:00"}],"HeadCommit":{"Sha1":"d5ec7ac807a96042f9f830e18351bcd04f19e93f","Message":"update fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T14:35:43+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/e4a5176a30ebf1bc13a19cc272e09556838f0966...d5ec7ac807a96042f9f830e18351bcd04f19e93f","Len":1}', 1701156957);
INSERT INTO public.action VALUES (181, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Message":"fix ThemMoi thong tin co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T15:16:06+07:00"}],"HeadCommit":{"Sha1":"2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Message":"fix ThemMoi thong tin co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T15:16:06+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d5ec7ac807a96042f9f830e18351bcd04f19e93f...2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Len":1}', 1701159376);
INSERT INTO public.action VALUES (182, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Message":"fix ThemMoi thong tin co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T15:16:06+07:00"}],"HeadCommit":{"Sha1":"2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Message":"fix ThemMoi thong tin co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T15:16:06+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d5ec7ac807a96042f9f830e18351bcd04f19e93f...2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Len":1}', 1701159376);
INSERT INTO public.action VALUES (183, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Message":"fix ThemMoi thong tin co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T15:16:06+07:00"}],"HeadCommit":{"Sha1":"2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Message":"fix ThemMoi thong tin co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T15:16:06+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d5ec7ac807a96042f9f830e18351bcd04f19e93f...2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Len":1}', 1701159376);
INSERT INTO public.action VALUES (184, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Message":"fix ThemMoi thong tin co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T15:16:06+07:00"}],"HeadCommit":{"Sha1":"2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Message":"fix ThemMoi thong tin co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T15:16:06+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d5ec7ac807a96042f9f830e18351bcd04f19e93f...2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Len":1}', 1701159376);
INSERT INTO public.action VALUES (234, 4, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"8c427fb4de68adec3228e13f736a547a36df3b03","Message":"feat: race 50%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-11-29T10:00:14+07:00"}],"HeadCommit":{"Sha1":"8c427fb4de68adec3228e13f736a547a36df3b03","Message":"feat: race 50%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-11-29T10:00:14+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/8455cf857b1b0496fb34707f1bbd7bf2a56d19b2...8c427fb4de68adec3228e13f736a547a36df3b03","Len":1}', 1701256062);
INSERT INTO public.action VALUES (185, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"0746a90962001df31d366ad9c63eb74e04a6e3f4","Message":"update url delete donvi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T08:13:51+07:00"}],"HeadCommit":{"Sha1":"0746a90962001df31d366ad9c63eb74e04a6e3f4","Message":"update url delete donvi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T08:13:51+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/2fcd5d81544a61a5e7962ada3a735fb3bde9a441...0746a90962001df31d366ad9c63eb74e04a6e3f4","Len":1}', 1701220446);
INSERT INTO public.action VALUES (186, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"0746a90962001df31d366ad9c63eb74e04a6e3f4","Message":"update url delete donvi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T08:13:51+07:00"}],"HeadCommit":{"Sha1":"0746a90962001df31d366ad9c63eb74e04a6e3f4","Message":"update url delete donvi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T08:13:51+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/2fcd5d81544a61a5e7962ada3a735fb3bde9a441...0746a90962001df31d366ad9c63eb74e04a6e3f4","Len":1}', 1701220446);
INSERT INTO public.action VALUES (187, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"0746a90962001df31d366ad9c63eb74e04a6e3f4","Message":"update url delete donvi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T08:13:51+07:00"}],"HeadCommit":{"Sha1":"0746a90962001df31d366ad9c63eb74e04a6e3f4","Message":"update url delete donvi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T08:13:51+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/2fcd5d81544a61a5e7962ada3a735fb3bde9a441...0746a90962001df31d366ad9c63eb74e04a6e3f4","Len":1}', 1701220446);
INSERT INTO public.action VALUES (188, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"0746a90962001df31d366ad9c63eb74e04a6e3f4","Message":"update url delete donvi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T08:13:51+07:00"}],"HeadCommit":{"Sha1":"0746a90962001df31d366ad9c63eb74e04a6e3f4","Message":"update url delete donvi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T08:13:51+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/2fcd5d81544a61a5e7962ada3a735fb3bde9a441...0746a90962001df31d366ad9c63eb74e04a6e3f4","Len":1}', 1701220446);
INSERT INTO public.action VALUES (189, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7eaef6c1be4993406bce848f259583da50e14768","Message":"fix callapi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T09:14:29+07:00"}],"HeadCommit":{"Sha1":"7eaef6c1be4993406bce848f259583da50e14768","Message":"fix callapi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T09:14:29+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/0746a90962001df31d366ad9c63eb74e04a6e3f4...7eaef6c1be4993406bce848f259583da50e14768","Len":1}', 1701224083);
INSERT INTO public.action VALUES (190, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7eaef6c1be4993406bce848f259583da50e14768","Message":"fix callapi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T09:14:29+07:00"}],"HeadCommit":{"Sha1":"7eaef6c1be4993406bce848f259583da50e14768","Message":"fix callapi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T09:14:29+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/0746a90962001df31d366ad9c63eb74e04a6e3f4...7eaef6c1be4993406bce848f259583da50e14768","Len":1}', 1701224083);
INSERT INTO public.action VALUES (191, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7eaef6c1be4993406bce848f259583da50e14768","Message":"fix callapi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T09:14:29+07:00"}],"HeadCommit":{"Sha1":"7eaef6c1be4993406bce848f259583da50e14768","Message":"fix callapi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T09:14:29+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/0746a90962001df31d366ad9c63eb74e04a6e3f4...7eaef6c1be4993406bce848f259583da50e14768","Len":1}', 1701224083);
INSERT INTO public.action VALUES (192, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7eaef6c1be4993406bce848f259583da50e14768","Message":"fix callapi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T09:14:29+07:00"}],"HeadCommit":{"Sha1":"7eaef6c1be4993406bce848f259583da50e14768","Message":"fix callapi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T09:14:29+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/0746a90962001df31d366ad9c63eb74e04a6e3f4...7eaef6c1be4993406bce848f259583da50e14768","Len":1}', 1701224083);
INSERT INTO public.action VALUES (235, 13, 18, 13, 18, 0, false, 'refs/heads/test', false, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1701256062);
INSERT INTO public.action VALUES (236, 1, 18, 13, 18, 0, false, 'refs/heads/test', false, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1701256062);
INSERT INTO public.action VALUES (237, 4, 18, 13, 18, 0, false, 'refs/heads/test', false, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1701256062);
INSERT INTO public.action VALUES (238, 13, 19, 13, 18, 0, false, 'refs/heads/test', false, '', 1701256062);
INSERT INTO public.action VALUES (239, 1, 19, 13, 18, 0, false, 'refs/heads/test', false, '', 1701256062);
INSERT INTO public.action VALUES (722, 14, 7, 11, 21, 0, false, '', false, '20|thinh', 1702958706);
INSERT INTO public.action VALUES (193, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Message":"giay phep kinh doanh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T10:46:17+07:00"}],"HeadCommit":{"Sha1":"5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Message":"giay phep kinh doanh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T10:46:17+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/7eaef6c1be4993406bce848f259583da50e14768...5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Len":1}', 1701229601);
INSERT INTO public.action VALUES (194, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Message":"giay phep kinh doanh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T10:46:17+07:00"}],"HeadCommit":{"Sha1":"5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Message":"giay phep kinh doanh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T10:46:17+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/7eaef6c1be4993406bce848f259583da50e14768...5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Len":1}', 1701229601);
INSERT INTO public.action VALUES (195, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Message":"giay phep kinh doanh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T10:46:17+07:00"}],"HeadCommit":{"Sha1":"5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Message":"giay phep kinh doanh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T10:46:17+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/7eaef6c1be4993406bce848f259583da50e14768...5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Len":1}', 1701229601);
INSERT INTO public.action VALUES (196, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Message":"giay phep kinh doanh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T10:46:17+07:00"}],"HeadCommit":{"Sha1":"5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Message":"giay phep kinh doanh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T10:46:17+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/7eaef6c1be4993406bce848f259583da50e14768...5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Len":1}', 1701229601);
INSERT INTO public.action VALUES (197, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Message":"add messeger\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:00:17+07:00"}],"HeadCommit":{"Sha1":"36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Message":"add messeger\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:00:17+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b...36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Len":1}', 1701230432);
INSERT INTO public.action VALUES (198, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Message":"add messeger\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:00:17+07:00"}],"HeadCommit":{"Sha1":"36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Message":"add messeger\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:00:17+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b...36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Len":1}', 1701230432);
INSERT INTO public.action VALUES (199, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Message":"add messeger\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:00:17+07:00"}],"HeadCommit":{"Sha1":"36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Message":"add messeger\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:00:17+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b...36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Len":1}', 1701230433);
INSERT INTO public.action VALUES (200, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Message":"add messeger\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:00:17+07:00"}],"HeadCommit":{"Sha1":"36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Message":"add messeger\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:00:17+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b...36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Len":1}', 1701230433);
INSERT INTO public.action VALUES (240, 4, 19, 13, 18, 0, false, 'refs/heads/test', false, '', 1701256062);
INSERT INTO public.action VALUES (723, 1, 7, 11, 21, 0, false, '', false, '20|thinh', 1702958706);
INSERT INTO public.action VALUES (724, 5, 7, 11, 21, 0, false, '', false, '20|thinh', 1702958706);
INSERT INTO public.action VALUES (725, 11, 11, 11, 21, 0, false, '', false, '20|thinh', 1702958722);
INSERT INTO public.action VALUES (726, 14, 11, 11, 21, 0, false, '', false, '20|thinh', 1702958722);
INSERT INTO public.action VALUES (727, 1, 11, 11, 21, 0, false, '', false, '20|thinh', 1702958722);
INSERT INTO public.action VALUES (728, 5, 11, 11, 21, 0, false, '', false, '20|thinh', 1702958722);
INSERT INTO public.action VALUES (1034, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/203/head', false, '', 1704077438);
INSERT INTO public.action VALUES (201, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Message":"check duyet du lieu diachi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:11:03+07:00"}],"HeadCommit":{"Sha1":"e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Message":"check duyet du lieu diachi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:11:03+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/36bd296edbc2fd0b8d44ff94349e01bbf0b16e39...e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Len":1}', 1701231074);
INSERT INTO public.action VALUES (202, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Message":"check duyet du lieu diachi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:11:03+07:00"}],"HeadCommit":{"Sha1":"e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Message":"check duyet du lieu diachi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:11:03+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/36bd296edbc2fd0b8d44ff94349e01bbf0b16e39...e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Len":1}', 1701231074);
INSERT INTO public.action VALUES (203, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Message":"check duyet du lieu diachi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:11:03+07:00"}],"HeadCommit":{"Sha1":"e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Message":"check duyet du lieu diachi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:11:03+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/36bd296edbc2fd0b8d44ff94349e01bbf0b16e39...e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Len":1}', 1701231074);
INSERT INTO public.action VALUES (204, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Message":"check duyet du lieu diachi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:11:03+07:00"}],"HeadCommit":{"Sha1":"e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Message":"check duyet du lieu diachi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:11:03+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/36bd296edbc2fd0b8d44ff94349e01bbf0b16e39...e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Len":1}', 1701231074);
INSERT INTO public.action VALUES (205, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Message":"update orderby hoidap\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T14:31:57+07:00"}],"HeadCommit":{"Sha1":"5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Message":"update orderby hoidap\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T14:31:57+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/e9a1f3cd92ad00b063de013eb746a3d187d7c5fd...5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Len":1}', 1701243129);
INSERT INTO public.action VALUES (206, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Message":"update orderby hoidap\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T14:31:57+07:00"}],"HeadCommit":{"Sha1":"5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Message":"update orderby hoidap\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T14:31:57+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/e9a1f3cd92ad00b063de013eb746a3d187d7c5fd...5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Len":1}', 1701243129);
INSERT INTO public.action VALUES (207, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Message":"update orderby hoidap\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T14:31:57+07:00"}],"HeadCommit":{"Sha1":"5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Message":"update orderby hoidap\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T14:31:57+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/e9a1f3cd92ad00b063de013eb746a3d187d7c5fd...5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Len":1}', 1701243129);
INSERT INTO public.action VALUES (208, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Message":"update orderby hoidap\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T14:31:57+07:00"}],"HeadCommit":{"Sha1":"5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Message":"update orderby hoidap\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T14:31:57+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/e9a1f3cd92ad00b063de013eb746a3d187d7c5fd...5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Len":1}', 1701243129);
INSERT INTO public.action VALUES (741, 11, 11, 11, 21, 0, false, '', false, '21|fix giao dien', 1702979014);
INSERT INTO public.action VALUES (742, 14, 11, 11, 21, 0, false, '', false, '21|fix giao dien', 1702979014);
INSERT INTO public.action VALUES (743, 1, 11, 11, 21, 0, false, '', false, '21|fix giao dien', 1702979014);
INSERT INTO public.action VALUES (744, 5, 11, 11, 21, 0, false, '', false, '21|fix giao dien', 1702979014);
INSERT INTO public.action VALUES (1035, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/203/merge', false, '', 1704077438);
INSERT INTO public.action VALUES (1036, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/203/merge', false, '', 1704077438);
INSERT INTO public.action VALUES (209, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"538716d331bd4d8febd9047f728866193897d25c","Message":"update giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:21:41+07:00"}],"HeadCommit":{"Sha1":"538716d331bd4d8febd9047f728866193897d25c","Message":"update giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:21:41+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/5d61d18c61657832bc27a3c7955ad6eeeb74fa1d...538716d331bd4d8febd9047f728866193897d25c","Len":1}', 1701246112);
INSERT INTO public.action VALUES (210, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"538716d331bd4d8febd9047f728866193897d25c","Message":"update giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:21:41+07:00"}],"HeadCommit":{"Sha1":"538716d331bd4d8febd9047f728866193897d25c","Message":"update giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:21:41+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/5d61d18c61657832bc27a3c7955ad6eeeb74fa1d...538716d331bd4d8febd9047f728866193897d25c","Len":1}', 1701246112);
INSERT INTO public.action VALUES (211, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"538716d331bd4d8febd9047f728866193897d25c","Message":"update giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:21:41+07:00"}],"HeadCommit":{"Sha1":"538716d331bd4d8febd9047f728866193897d25c","Message":"update giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:21:41+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/5d61d18c61657832bc27a3c7955ad6eeeb74fa1d...538716d331bd4d8febd9047f728866193897d25c","Len":1}', 1701246112);
INSERT INTO public.action VALUES (212, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"538716d331bd4d8febd9047f728866193897d25c","Message":"update giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:21:41+07:00"}],"HeadCommit":{"Sha1":"538716d331bd4d8febd9047f728866193897d25c","Message":"update giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:21:41+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/5d61d18c61657832bc27a3c7955ad6eeeb74fa1d...538716d331bd4d8febd9047f728866193897d25c","Len":1}', 1701246112);
INSERT INTO public.action VALUES (213, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Message":"update hidden change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:33:04+07:00"}],"HeadCommit":{"Sha1":"d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Message":"update hidden change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:33:04+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/538716d331bd4d8febd9047f728866193897d25c...d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Len":1}', 1701246795);
INSERT INTO public.action VALUES (214, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Message":"update hidden change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:33:04+07:00"}],"HeadCommit":{"Sha1":"d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Message":"update hidden change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:33:04+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/538716d331bd4d8febd9047f728866193897d25c...d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Len":1}', 1701246795);
INSERT INTO public.action VALUES (215, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Message":"update hidden change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:33:04+07:00"}],"HeadCommit":{"Sha1":"d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Message":"update hidden change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:33:04+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/538716d331bd4d8febd9047f728866193897d25c...d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Len":1}', 1701246795);
INSERT INTO public.action VALUES (216, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Message":"update hidden change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:33:04+07:00"}],"HeadCommit":{"Sha1":"d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Message":"update hidden change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:33:04+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/538716d331bd4d8febd9047f728866193897d25c...d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Len":1}', 1701246795);
INSERT INTO public.action VALUES (267, 4, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"014019f5ab2fec0e0dc861a6e442ba162c81499e","Message":"feat: race 30%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-05T11:19:46+07:00"}],"HeadCommit":{"Sha1":"014019f5ab2fec0e0dc861a6e442ba162c81499e","Message":"feat: race 30%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-05T11:19:46+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/8c427fb4de68adec3228e13f736a547a36df3b03...014019f5ab2fec0e0dc861a6e442ba162c81499e","Len":1}', 1701755860);
INSERT INTO public.action VALUES (217, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"8acaae955fcd477ae20eeae470a10e019e660d8d","Message":"change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:39:22+07:00"}],"HeadCommit":{"Sha1":"8acaae955fcd477ae20eeae470a10e019e660d8d","Message":"change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:39:22+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d7a97478b688ab49b24c5b33d7d657ccfdffdbfe...8acaae955fcd477ae20eeae470a10e019e660d8d","Len":1}', 1701247175);
INSERT INTO public.action VALUES (218, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"8acaae955fcd477ae20eeae470a10e019e660d8d","Message":"change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:39:22+07:00"}],"HeadCommit":{"Sha1":"8acaae955fcd477ae20eeae470a10e019e660d8d","Message":"change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:39:22+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d7a97478b688ab49b24c5b33d7d657ccfdffdbfe...8acaae955fcd477ae20eeae470a10e019e660d8d","Len":1}', 1701247175);
INSERT INTO public.action VALUES (219, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"8acaae955fcd477ae20eeae470a10e019e660d8d","Message":"change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:39:22+07:00"}],"HeadCommit":{"Sha1":"8acaae955fcd477ae20eeae470a10e019e660d8d","Message":"change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:39:22+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d7a97478b688ab49b24c5b33d7d657ccfdffdbfe...8acaae955fcd477ae20eeae470a10e019e660d8d","Len":1}', 1701247175);
INSERT INTO public.action VALUES (220, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"8acaae955fcd477ae20eeae470a10e019e660d8d","Message":"change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:39:22+07:00"}],"HeadCommit":{"Sha1":"8acaae955fcd477ae20eeae470a10e019e660d8d","Message":"change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:39:22+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d7a97478b688ab49b24c5b33d7d657ccfdffdbfe...8acaae955fcd477ae20eeae470a10e019e660d8d","Len":1}', 1701247175);
INSERT INTO public.action VALUES (221, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"4efcd197e1775bb5f4326bf20dae7d6b460910dd","Message":"update form info\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:55:45+07:00"}],"HeadCommit":{"Sha1":"4efcd197e1775bb5f4326bf20dae7d6b460910dd","Message":"update form info\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:55:45+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/8acaae955fcd477ae20eeae470a10e019e660d8d...4efcd197e1775bb5f4326bf20dae7d6b460910dd","Len":1}', 1701248160);
INSERT INTO public.action VALUES (222, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"4efcd197e1775bb5f4326bf20dae7d6b460910dd","Message":"update form info\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:55:45+07:00"}],"HeadCommit":{"Sha1":"4efcd197e1775bb5f4326bf20dae7d6b460910dd","Message":"update form info\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:55:45+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/8acaae955fcd477ae20eeae470a10e019e660d8d...4efcd197e1775bb5f4326bf20dae7d6b460910dd","Len":1}', 1701248160);
INSERT INTO public.action VALUES (223, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"4efcd197e1775bb5f4326bf20dae7d6b460910dd","Message":"update form info\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:55:45+07:00"}],"HeadCommit":{"Sha1":"4efcd197e1775bb5f4326bf20dae7d6b460910dd","Message":"update form info\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:55:45+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/8acaae955fcd477ae20eeae470a10e019e660d8d...4efcd197e1775bb5f4326bf20dae7d6b460910dd","Len":1}', 1701248160);
INSERT INTO public.action VALUES (224, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"4efcd197e1775bb5f4326bf20dae7d6b460910dd","Message":"update form info\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:55:45+07:00"}],"HeadCommit":{"Sha1":"4efcd197e1775bb5f4326bf20dae7d6b460910dd","Message":"update form info\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:55:45+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/8acaae955fcd477ae20eeae470a10e019e660d8d...4efcd197e1775bb5f4326bf20dae7d6b460910dd","Len":1}', 1701248160);
INSERT INTO public.action VALUES (1382, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/207/head', false, '', 1704371439);
INSERT INTO public.action VALUES (1383, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/207/head', false, '', 1704371439);
INSERT INTO public.action VALUES (1384, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/207/head', false, '', 1704371439);
INSERT INTO public.action VALUES (1385, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/207/merge', false, '', 1704371439);
INSERT INTO public.action VALUES (1386, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/207/merge', false, '', 1704371439);
INSERT INTO public.action VALUES (1387, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/207/merge', false, '', 1704371439);
INSERT INTO public.action VALUES (1517, 11, 7, 11, 21, 0, false, '', false, '41|thinh', 1704464890);
INSERT INTO public.action VALUES (225, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Message":"format year ban do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T16:25:33+07:00"}],"HeadCommit":{"Sha1":"16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Message":"format year ban do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T16:25:33+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/4efcd197e1775bb5f4326bf20dae7d6b460910dd...16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Len":1}', 1701249946);
INSERT INTO public.action VALUES (226, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Message":"format year ban do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T16:25:33+07:00"}],"HeadCommit":{"Sha1":"16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Message":"format year ban do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T16:25:33+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/4efcd197e1775bb5f4326bf20dae7d6b460910dd...16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Len":1}', 1701249946);
INSERT INTO public.action VALUES (227, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Message":"format year ban do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T16:25:33+07:00"}],"HeadCommit":{"Sha1":"16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Message":"format year ban do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T16:25:33+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/4efcd197e1775bb5f4326bf20dae7d6b460910dd...16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Len":1}', 1701249946);
INSERT INTO public.action VALUES (228, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Message":"format year ban do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T16:25:33+07:00"}],"HeadCommit":{"Sha1":"16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Message":"format year ban do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T16:25:33+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/4efcd197e1775bb5f4326bf20dae7d6b460910dd...16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Len":1}', 1701249946);
INSERT INTO public.action VALUES (229, 13, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"}],"HeadCommit":{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},"CompareURL":"binh-dinh-f1/website/compare/9d797bd5faec016986868b1218b1c2490c049c51...efc169ce5f3f170164972cf893b10163cb8b8d1a","Len":1}', 1701256057);
INSERT INTO public.action VALUES (230, 1, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"}],"HeadCommit":{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},"CompareURL":"binh-dinh-f1/website/compare/9d797bd5faec016986868b1218b1c2490c049c51...efc169ce5f3f170164972cf893b10163cb8b8d1a","Len":1}', 1701256057);
INSERT INTO public.action VALUES (231, 4, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"}],"HeadCommit":{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},"CompareURL":"binh-dinh-f1/website/compare/9d797bd5faec016986868b1218b1c2490c049c51...efc169ce5f3f170164972cf893b10163cb8b8d1a","Len":1}', 1701256057);
INSERT INTO public.action VALUES (232, 13, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"8c427fb4de68adec3228e13f736a547a36df3b03","Message":"feat: race 50%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-11-29T10:00:14+07:00"}],"HeadCommit":{"Sha1":"8c427fb4de68adec3228e13f736a547a36df3b03","Message":"feat: race 50%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-11-29T10:00:14+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/8455cf857b1b0496fb34707f1bbd7bf2a56d19b2...8c427fb4de68adec3228e13f736a547a36df3b03","Len":1}', 1701256062);
INSERT INTO public.action VALUES (233, 1, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"8c427fb4de68adec3228e13f736a547a36df3b03","Message":"feat: race 50%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-11-29T10:00:14+07:00"}],"HeadCommit":{"Sha1":"8c427fb4de68adec3228e13f736a547a36df3b03","Message":"feat: race 50%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-11-29T10:00:14+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/8455cf857b1b0496fb34707f1bbd7bf2a56d19b2...8c427fb4de68adec3228e13f736a547a36df3b03","Len":1}', 1701256062);
INSERT INTO public.action VALUES (342, 1, 7, 1, 21, 0, false, '', false, '1|thinh', 1702096329);
INSERT INTO public.action VALUES (343, 14, 7, 1, 21, 0, false, '', false, '1|thinh', 1702096329);
INSERT INTO public.action VALUES (344, 5, 7, 1, 21, 0, false, '', false, '1|thinh', 1702096329);
INSERT INTO public.action VALUES (1037, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/203/merge', false, '', 1704077438);
INSERT INTO public.action VALUES (1038, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/204/head', false, '', 1704077438);
INSERT INTO public.action VALUES (241, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Message":"fix loi tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:29:03+07:00"},{"Sha1":"b700083fa188f320535bfe960904fe3a3a268b92","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:28:23+07:00"}],"HeadCommit":{"Sha1":"44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Message":"fix loi tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:29:03+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/16dc820b6d47c950f9cb70842af5b5031b2c9aa1...44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Len":2}', 1701412208);
INSERT INTO public.action VALUES (242, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Message":"fix loi tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:29:03+07:00"},{"Sha1":"b700083fa188f320535bfe960904fe3a3a268b92","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:28:23+07:00"}],"HeadCommit":{"Sha1":"44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Message":"fix loi tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:29:03+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/16dc820b6d47c950f9cb70842af5b5031b2c9aa1...44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Len":2}', 1701412208);
INSERT INTO public.action VALUES (243, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Message":"fix loi tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:29:03+07:00"},{"Sha1":"b700083fa188f320535bfe960904fe3a3a268b92","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:28:23+07:00"}],"HeadCommit":{"Sha1":"44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Message":"fix loi tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:29:03+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/16dc820b6d47c950f9cb70842af5b5031b2c9aa1...44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Len":2}', 1701412208);
INSERT INTO public.action VALUES (244, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Message":"fix loi tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:29:03+07:00"},{"Sha1":"b700083fa188f320535bfe960904fe3a3a268b92","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:28:23+07:00"}],"HeadCommit":{"Sha1":"44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Message":"fix loi tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:29:03+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/16dc820b6d47c950f9cb70842af5b5031b2c9aa1...44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Len":2}', 1701412208);
INSERT INTO public.action VALUES (245, 13, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},{"Sha1":"9d797bd5faec016986868b1218b1c2490c049c51","Message":"feat event detail + team f1h2o\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-28T16:32:27+07:00"}],"HeadCommit":{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},"CompareURL":"binh-dinh-f1/website/compare/9ba0bb21097d9ae80502d9fb28ed6ce0b552cd77...fefd962a14f222715a4da9ffb70c72ba14bfed2e","Len":4}', 1701432460);
INSERT INTO public.action VALUES (257, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"65964434718cceec2ee64605d0e1cba7402e8857","Message":"fix input search co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T15:22:36+07:00"},{"Sha1":"611b827f4123c4b3637ec8f8ff77188150dcf705","Message":"fix render filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T13:32:04+07:00"}],"HeadCommit":{"Sha1":"65964434718cceec2ee64605d0e1cba7402e8857","Message":"fix input search co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T15:22:36+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/44a011b23d9f9eb783476b5f15b5b5bd8bb8198e...65964434718cceec2ee64605d0e1cba7402e8857","Len":2}', 1701678173);
INSERT INTO public.action VALUES (1039, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/204/head', false, '', 1704077438);
INSERT INTO public.action VALUES (1040, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/204/head', false, '', 1704077438);
INSERT INTO public.action VALUES (246, 1, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},{"Sha1":"9d797bd5faec016986868b1218b1c2490c049c51","Message":"feat event detail + team f1h2o\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-28T16:32:27+07:00"}],"HeadCommit":{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},"CompareURL":"binh-dinh-f1/website/compare/9ba0bb21097d9ae80502d9fb28ed6ce0b552cd77...fefd962a14f222715a4da9ffb70c72ba14bfed2e","Len":4}', 1701432460);
INSERT INTO public.action VALUES (247, 4, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},{"Sha1":"9d797bd5faec016986868b1218b1c2490c049c51","Message":"feat event detail + team f1h2o\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-28T16:32:27+07:00"}],"HeadCommit":{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},"CompareURL":"binh-dinh-f1/website/compare/9ba0bb21097d9ae80502d9fb28ed6ce0b552cd77...fefd962a14f222715a4da9ffb70c72ba14bfed2e","Len":4}', 1701432460);
INSERT INTO public.action VALUES (248, 13, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"}],"HeadCommit":{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},"CompareURL":"binh-dinh-f1/website/compare/efc169ce5f3f170164972cf893b10163cb8b8d1a...f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Len":1}', 1701432461);
INSERT INTO public.action VALUES (249, 1, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"}],"HeadCommit":{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},"CompareURL":"binh-dinh-f1/website/compare/efc169ce5f3f170164972cf893b10163cb8b8d1a...f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Len":1}', 1701432461);
INSERT INTO public.action VALUES (250, 4, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"}],"HeadCommit":{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},"CompareURL":"binh-dinh-f1/website/compare/efc169ce5f3f170164972cf893b10163cb8b8d1a...f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Len":1}', 1701432461);
INSERT INTO public.action VALUES (251, 13, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!188","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:48:51Z"},{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},{"Sha1":"9d797bd5faec016986868b1218b1c2490c049c51","Message":"feat event detail + team f1h2o\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-28T16:32:27+07:00"}],"HeadCommit":{"Sha1":"e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!188","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:48:51Z"},"CompareURL":"binh-dinh-f1/website/compare/705afc6696f34de37be2b0f581d604c276fc4035...e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90","Len":5}', 1701432462);
INSERT INTO public.action VALUES (1041, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/204/merge', false, '', 1704077438);
INSERT INTO public.action VALUES (1042, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/204/merge', false, '', 1704077438);
INSERT INTO public.action VALUES (1043, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/204/merge', false, '', 1704077438);
INSERT INTO public.action VALUES (252, 1, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!188","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:48:51Z"},{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},{"Sha1":"9d797bd5faec016986868b1218b1c2490c049c51","Message":"feat event detail + team f1h2o\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-28T16:32:27+07:00"}],"HeadCommit":{"Sha1":"e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!188","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:48:51Z"},"CompareURL":"binh-dinh-f1/website/compare/705afc6696f34de37be2b0f581d604c276fc4035...e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90","Len":5}', 1701432462);
INSERT INTO public.action VALUES (253, 4, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!188","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:48:51Z"},{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},{"Sha1":"9d797bd5faec016986868b1218b1c2490c049c51","Message":"feat event detail + team f1h2o\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-28T16:32:27+07:00"}],"HeadCommit":{"Sha1":"e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!188","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:48:51Z"},"CompareURL":"binh-dinh-f1/website/compare/705afc6696f34de37be2b0f581d604c276fc4035...e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90","Len":5}', 1701432462);
INSERT INTO public.action VALUES (254, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"65964434718cceec2ee64605d0e1cba7402e8857","Message":"fix input search co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T15:22:36+07:00"},{"Sha1":"611b827f4123c4b3637ec8f8ff77188150dcf705","Message":"fix render filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T13:32:04+07:00"}],"HeadCommit":{"Sha1":"65964434718cceec2ee64605d0e1cba7402e8857","Message":"fix input search co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T15:22:36+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/44a011b23d9f9eb783476b5f15b5b5bd8bb8198e...65964434718cceec2ee64605d0e1cba7402e8857","Len":2}', 1701678173);
INSERT INTO public.action VALUES (255, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"65964434718cceec2ee64605d0e1cba7402e8857","Message":"fix input search co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T15:22:36+07:00"},{"Sha1":"611b827f4123c4b3637ec8f8ff77188150dcf705","Message":"fix render filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T13:32:04+07:00"}],"HeadCommit":{"Sha1":"65964434718cceec2ee64605d0e1cba7402e8857","Message":"fix input search co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T15:22:36+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/44a011b23d9f9eb783476b5f15b5b5bd8bb8198e...65964434718cceec2ee64605d0e1cba7402e8857","Len":2}', 1701678173);
INSERT INTO public.action VALUES (256, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"65964434718cceec2ee64605d0e1cba7402e8857","Message":"fix input search co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T15:22:36+07:00"},{"Sha1":"611b827f4123c4b3637ec8f8ff77188150dcf705","Message":"fix render filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T13:32:04+07:00"}],"HeadCommit":{"Sha1":"65964434718cceec2ee64605d0e1cba7402e8857","Message":"fix input search co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T15:22:36+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/44a011b23d9f9eb783476b5f15b5b5bd8bb8198e...65964434718cceec2ee64605d0e1cba7402e8857","Len":2}', 1701678173);
INSERT INTO public.action VALUES (1044, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/199/head', false, '', 1704106839);
INSERT INTO public.action VALUES (1045, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/199/head', false, '', 1704106839);
INSERT INTO public.action VALUES (1211, 1, 7, 11, 21, 0, false, '', false, '32|thinh', 1704270128);
INSERT INTO public.action VALUES (258, 13, 18, 13, 17, 0, false, 'refs/heads/hoang-dev', false, '{"Commits":[{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},{"Sha1":"9d797bd5faec016986868b1218b1c2490c049c51","Message":"feat event detail + team f1h2o\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-28T16:32:27+07:00"},{"Sha1":"9ba0bb21097d9ae80502d9fb28ed6ce0b552cd77","Message":"Merge branch ''dong-dev'' into ''develop''\n\ndevide riders\n\nSee merge request binh-dinh-f1/binhdinhf1-website!185","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-24T09:41:41Z"}],"HeadCommit":{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},"CompareURL":"binh-dinh-f1/website/compare/7a91090888bd26b04141cfbccfc1a5dc1680a8b0...fefd962a14f222715a4da9ffb70c72ba14bfed2e","Len":12}', 1701697059);
INSERT INTO public.action VALUES (259, 1, 18, 13, 17, 0, false, 'refs/heads/hoang-dev', false, '{"Commits":[{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},{"Sha1":"9d797bd5faec016986868b1218b1c2490c049c51","Message":"feat event detail + team f1h2o\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-28T16:32:27+07:00"},{"Sha1":"9ba0bb21097d9ae80502d9fb28ed6ce0b552cd77","Message":"Merge branch ''dong-dev'' into ''develop''\n\ndevide riders\n\nSee merge request binh-dinh-f1/binhdinhf1-website!185","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-24T09:41:41Z"}],"HeadCommit":{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},"CompareURL":"binh-dinh-f1/website/compare/7a91090888bd26b04141cfbccfc1a5dc1680a8b0...fefd962a14f222715a4da9ffb70c72ba14bfed2e","Len":12}', 1701697059);
INSERT INTO public.action VALUES (260, 4, 18, 13, 17, 0, false, 'refs/heads/hoang-dev', false, '{"Commits":[{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},{"Sha1":"9d797bd5faec016986868b1218b1c2490c049c51","Message":"feat event detail + team f1h2o\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-28T16:32:27+07:00"},{"Sha1":"9ba0bb21097d9ae80502d9fb28ed6ce0b552cd77","Message":"Merge branch ''dong-dev'' into ''develop''\n\ndevide riders\n\nSee merge request binh-dinh-f1/binhdinhf1-website!185","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-24T09:41:41Z"}],"HeadCommit":{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},"CompareURL":"binh-dinh-f1/website/compare/7a91090888bd26b04141cfbccfc1a5dc1680a8b0...fefd962a14f222715a4da9ffb70c72ba14bfed2e","Len":12}', 1701697059);
INSERT INTO public.action VALUES (261, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"a711a00e9e20635f5d9ec9e569bf566d6a844f13","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-05T11:06:14+07:00"}],"HeadCommit":{"Sha1":"a711a00e9e20635f5d9ec9e569bf566d6a844f13","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-05T11:06:14+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/65964434718cceec2ee64605d0e1cba7402e8857...a711a00e9e20635f5d9ec9e569bf566d6a844f13","Len":1}', 1701749186);
INSERT INTO public.action VALUES (262, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"a711a00e9e20635f5d9ec9e569bf566d6a844f13","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-05T11:06:14+07:00"}],"HeadCommit":{"Sha1":"a711a00e9e20635f5d9ec9e569bf566d6a844f13","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-05T11:06:14+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/65964434718cceec2ee64605d0e1cba7402e8857...a711a00e9e20635f5d9ec9e569bf566d6a844f13","Len":1}', 1701749186);
INSERT INTO public.action VALUES (263, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"a711a00e9e20635f5d9ec9e569bf566d6a844f13","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-05T11:06:14+07:00"}],"HeadCommit":{"Sha1":"a711a00e9e20635f5d9ec9e569bf566d6a844f13","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-05T11:06:14+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/65964434718cceec2ee64605d0e1cba7402e8857...a711a00e9e20635f5d9ec9e569bf566d6a844f13","Len":1}', 1701749186);
INSERT INTO public.action VALUES (264, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"a711a00e9e20635f5d9ec9e569bf566d6a844f13","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-05T11:06:14+07:00"}],"HeadCommit":{"Sha1":"a711a00e9e20635f5d9ec9e569bf566d6a844f13","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-05T11:06:14+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/65964434718cceec2ee64605d0e1cba7402e8857...a711a00e9e20635f5d9ec9e569bf566d6a844f13","Len":1}', 1701749186);
INSERT INTO public.action VALUES (265, 13, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"014019f5ab2fec0e0dc861a6e442ba162c81499e","Message":"feat: race 30%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-05T11:19:46+07:00"}],"HeadCommit":{"Sha1":"014019f5ab2fec0e0dc861a6e442ba162c81499e","Message":"feat: race 30%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-05T11:19:46+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/8c427fb4de68adec3228e13f736a547a36df3b03...014019f5ab2fec0e0dc861a6e442ba162c81499e","Len":1}', 1701755860);
INSERT INTO public.action VALUES (266, 1, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"014019f5ab2fec0e0dc861a6e442ba162c81499e","Message":"feat: race 30%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-05T11:19:46+07:00"}],"HeadCommit":{"Sha1":"014019f5ab2fec0e0dc861a6e442ba162c81499e","Message":"feat: race 30%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-05T11:19:46+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/8c427fb4de68adec3228e13f736a547a36df3b03...014019f5ab2fec0e0dc861a6e442ba162c81499e","Len":1}', 1701755860);
INSERT INTO public.action VALUES (1046, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/199/head', false, '', 1704106839);
INSERT INTO public.action VALUES (1047, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/199/merge', false, '', 1704106839);
INSERT INTO public.action VALUES (268, 13, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"5fe890433f51e82dfac0a39170aa373296b17767","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!189","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:23:40Z"},{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},{"Sha1":"9925a569938dae73448a1cb503b21b1518078a93","Message":"result \u0026 slide\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T14:29:34+07:00"}],"HeadCommit":{"Sha1":"5fe890433f51e82dfac0a39170aa373296b17767","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!189","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:23:40Z"},"CompareURL":"binh-dinh-f1/website/compare/fefd962a14f222715a4da9ffb70c72ba14bfed2e...5fe890433f51e82dfac0a39170aa373296b17767","Len":3}', 1701873458);
INSERT INTO public.action VALUES (269, 1, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"5fe890433f51e82dfac0a39170aa373296b17767","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!189","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:23:40Z"},{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},{"Sha1":"9925a569938dae73448a1cb503b21b1518078a93","Message":"result \u0026 slide\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T14:29:34+07:00"}],"HeadCommit":{"Sha1":"5fe890433f51e82dfac0a39170aa373296b17767","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!189","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:23:40Z"},"CompareURL":"binh-dinh-f1/website/compare/fefd962a14f222715a4da9ffb70c72ba14bfed2e...5fe890433f51e82dfac0a39170aa373296b17767","Len":3}', 1701873458);
INSERT INTO public.action VALUES (270, 4, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"5fe890433f51e82dfac0a39170aa373296b17767","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!189","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:23:40Z"},{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},{"Sha1":"9925a569938dae73448a1cb503b21b1518078a93","Message":"result \u0026 slide\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T14:29:34+07:00"}],"HeadCommit":{"Sha1":"5fe890433f51e82dfac0a39170aa373296b17767","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!189","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:23:40Z"},"CompareURL":"binh-dinh-f1/website/compare/fefd962a14f222715a4da9ffb70c72ba14bfed2e...5fe890433f51e82dfac0a39170aa373296b17767","Len":3}', 1701873458);
INSERT INTO public.action VALUES (271, 13, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},{"Sha1":"9925a569938dae73448a1cb503b21b1518078a93","Message":"result \u0026 slide\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T14:29:34+07:00"}],"HeadCommit":{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},"CompareURL":"binh-dinh-f1/website/compare/f3fbbaae6e9825e29a22254adeba2626a9a3cd3a...b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Len":2}', 1701873459);
INSERT INTO public.action VALUES (272, 1, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},{"Sha1":"9925a569938dae73448a1cb503b21b1518078a93","Message":"result \u0026 slide\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T14:29:34+07:00"}],"HeadCommit":{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},"CompareURL":"binh-dinh-f1/website/compare/f3fbbaae6e9825e29a22254adeba2626a9a3cd3a...b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Len":2}', 1701873459);
INSERT INTO public.action VALUES (273, 4, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},{"Sha1":"9925a569938dae73448a1cb503b21b1518078a93","Message":"result \u0026 slide\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T14:29:34+07:00"}],"HeadCommit":{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},"CompareURL":"binh-dinh-f1/website/compare/f3fbbaae6e9825e29a22254adeba2626a9a3cd3a...b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Len":2}', 1701873459);
INSERT INTO public.action VALUES (773, 4, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"}],"HeadCommit":{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"},"CompareURL":"binh-dinh-f1/website/compare/50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f...cc2ba7984c996de04607bf68b220fba28c67ec04","Len":1}', 1703166312);
INSERT INTO public.action VALUES (274, 13, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2a42e399dc69de6776a33573fec1d45a612a8ee2","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!190","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:24:09Z"},{"Sha1":"5fe890433f51e82dfac0a39170aa373296b17767","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!189","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:23:40Z"},{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},{"Sha1":"9925a569938dae73448a1cb503b21b1518078a93","Message":"result \u0026 slide\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T14:29:34+07:00"}],"HeadCommit":{"Sha1":"2a42e399dc69de6776a33573fec1d45a612a8ee2","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!190","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:24:09Z"},"CompareURL":"binh-dinh-f1/website/compare/e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90...2a42e399dc69de6776a33573fec1d45a612a8ee2","Len":4}', 1701873461);
INSERT INTO public.action VALUES (275, 1, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2a42e399dc69de6776a33573fec1d45a612a8ee2","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!190","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:24:09Z"},{"Sha1":"5fe890433f51e82dfac0a39170aa373296b17767","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!189","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:23:40Z"},{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},{"Sha1":"9925a569938dae73448a1cb503b21b1518078a93","Message":"result \u0026 slide\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T14:29:34+07:00"}],"HeadCommit":{"Sha1":"2a42e399dc69de6776a33573fec1d45a612a8ee2","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!190","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:24:09Z"},"CompareURL":"binh-dinh-f1/website/compare/e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90...2a42e399dc69de6776a33573fec1d45a612a8ee2","Len":4}', 1701873461);
INSERT INTO public.action VALUES (276, 4, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2a42e399dc69de6776a33573fec1d45a612a8ee2","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!190","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:24:09Z"},{"Sha1":"5fe890433f51e82dfac0a39170aa373296b17767","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!189","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:23:40Z"},{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},{"Sha1":"9925a569938dae73448a1cb503b21b1518078a93","Message":"result \u0026 slide\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T14:29:34+07:00"}],"HeadCommit":{"Sha1":"2a42e399dc69de6776a33573fec1d45a612a8ee2","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!190","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:24:09Z"},"CompareURL":"binh-dinh-f1/website/compare/e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90...2a42e399dc69de6776a33573fec1d45a612a8ee2","Len":4}', 1701873461);
INSERT INTO public.action VALUES (277, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:10:41+07:00"}],"HeadCommit":{"Sha1":"cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:10:41+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/a711a00e9e20635f5d9ec9e569bf566d6a844f13...cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Len":1}', 1701918662);
INSERT INTO public.action VALUES (278, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:10:41+07:00"}],"HeadCommit":{"Sha1":"cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:10:41+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/a711a00e9e20635f5d9ec9e569bf566d6a844f13...cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Len":1}', 1701918662);
INSERT INTO public.action VALUES (279, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:10:41+07:00"}],"HeadCommit":{"Sha1":"cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:10:41+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/a711a00e9e20635f5d9ec9e569bf566d6a844f13...cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Len":1}', 1701918662);
INSERT INTO public.action VALUES (280, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:10:41+07:00"}],"HeadCommit":{"Sha1":"cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:10:41+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/a711a00e9e20635f5d9ec9e569bf566d6a844f13...cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Len":1}', 1701918662);
INSERT INTO public.action VALUES (281, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"c217654d5b30d2005109204a95c6a60439957bd1","Message":"update trang chu mac dinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:13:04+07:00"}],"HeadCommit":{"Sha1":"c217654d5b30d2005109204a95c6a60439957bd1","Message":"update trang chu mac dinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:13:04+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/cda7791493467cd4cb676d6a2dd4b9580e2c7f2c...c217654d5b30d2005109204a95c6a60439957bd1","Len":1}', 1701918801);
INSERT INTO public.action VALUES (282, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"c217654d5b30d2005109204a95c6a60439957bd1","Message":"update trang chu mac dinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:13:04+07:00"}],"HeadCommit":{"Sha1":"c217654d5b30d2005109204a95c6a60439957bd1","Message":"update trang chu mac dinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:13:04+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/cda7791493467cd4cb676d6a2dd4b9580e2c7f2c...c217654d5b30d2005109204a95c6a60439957bd1","Len":1}', 1701918801);
INSERT INTO public.action VALUES (283, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"c217654d5b30d2005109204a95c6a60439957bd1","Message":"update trang chu mac dinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:13:04+07:00"}],"HeadCommit":{"Sha1":"c217654d5b30d2005109204a95c6a60439957bd1","Message":"update trang chu mac dinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:13:04+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/cda7791493467cd4cb676d6a2dd4b9580e2c7f2c...c217654d5b30d2005109204a95c6a60439957bd1","Len":1}', 1701918801);
INSERT INTO public.action VALUES (284, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"c217654d5b30d2005109204a95c6a60439957bd1","Message":"update trang chu mac dinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:13:04+07:00"}],"HeadCommit":{"Sha1":"c217654d5b30d2005109204a95c6a60439957bd1","Message":"update trang chu mac dinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:13:04+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/cda7791493467cd4cb676d6a2dd4b9580e2c7f2c...c217654d5b30d2005109204a95c6a60439957bd1","Len":1}', 1701918801);
INSERT INTO public.action VALUES (285, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"8e2a7e7c4d64b6385ada897dd2992587328c9f87","Message":"update title so hieu pd mau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:27:00+07:00"}],"HeadCommit":{"Sha1":"8e2a7e7c4d64b6385ada897dd2992587328c9f87","Message":"update title so hieu pd mau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:27:00+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/c217654d5b30d2005109204a95c6a60439957bd1...8e2a7e7c4d64b6385ada897dd2992587328c9f87","Len":1}', 1701930431);
INSERT INTO public.action VALUES (286, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"8e2a7e7c4d64b6385ada897dd2992587328c9f87","Message":"update title so hieu pd mau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:27:00+07:00"}],"HeadCommit":{"Sha1":"8e2a7e7c4d64b6385ada897dd2992587328c9f87","Message":"update title so hieu pd mau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:27:00+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/c217654d5b30d2005109204a95c6a60439957bd1...8e2a7e7c4d64b6385ada897dd2992587328c9f87","Len":1}', 1701930431);
INSERT INTO public.action VALUES (287, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"8e2a7e7c4d64b6385ada897dd2992587328c9f87","Message":"update title so hieu pd mau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:27:00+07:00"}],"HeadCommit":{"Sha1":"8e2a7e7c4d64b6385ada897dd2992587328c9f87","Message":"update title so hieu pd mau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:27:00+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/c217654d5b30d2005109204a95c6a60439957bd1...8e2a7e7c4d64b6385ada897dd2992587328c9f87","Len":1}', 1701930431);
INSERT INTO public.action VALUES (994, 6, 5, 1, 25, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"d6c2e64af79bb97a5b57cf8e173d2f2d29f3019b","Message":"Add project files.\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-29T14:27:31+07:00"}],"HeadCommit":{"Sha1":"d6c2e64af79bb97a5b57cf8e173d2f2d29f3019b","Message":"Add project files.\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-29T14:27:31+07:00"},"CompareURL":"","Len":1}', 1703835148);
INSERT INTO public.action VALUES (288, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"8e2a7e7c4d64b6385ada897dd2992587328c9f87","Message":"update title so hieu pd mau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:27:00+07:00"}],"HeadCommit":{"Sha1":"8e2a7e7c4d64b6385ada897dd2992587328c9f87","Message":"update title so hieu pd mau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:27:00+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/c217654d5b30d2005109204a95c6a60439957bd1...8e2a7e7c4d64b6385ada897dd2992587328c9f87","Len":1}', 1701930431);
INSERT INTO public.action VALUES (289, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"3657d91a96665741b6c51e61a79a18e54b38d4be","Message":"add filter tong quan\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:11:50+07:00"}],"HeadCommit":{"Sha1":"3657d91a96665741b6c51e61a79a18e54b38d4be","Message":"add filter tong quan\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:11:50+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/8e2a7e7c4d64b6385ada897dd2992587328c9f87...3657d91a96665741b6c51e61a79a18e54b38d4be","Len":1}', 1701936724);
INSERT INTO public.action VALUES (290, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"3657d91a96665741b6c51e61a79a18e54b38d4be","Message":"add filter tong quan\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:11:50+07:00"}],"HeadCommit":{"Sha1":"3657d91a96665741b6c51e61a79a18e54b38d4be","Message":"add filter tong quan\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:11:50+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/8e2a7e7c4d64b6385ada897dd2992587328c9f87...3657d91a96665741b6c51e61a79a18e54b38d4be","Len":1}', 1701936724);
INSERT INTO public.action VALUES (291, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"3657d91a96665741b6c51e61a79a18e54b38d4be","Message":"add filter tong quan\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:11:50+07:00"}],"HeadCommit":{"Sha1":"3657d91a96665741b6c51e61a79a18e54b38d4be","Message":"add filter tong quan\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:11:50+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/8e2a7e7c4d64b6385ada897dd2992587328c9f87...3657d91a96665741b6c51e61a79a18e54b38d4be","Len":1}', 1701936724);
INSERT INTO public.action VALUES (292, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"3657d91a96665741b6c51e61a79a18e54b38d4be","Message":"add filter tong quan\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:11:50+07:00"}],"HeadCommit":{"Sha1":"3657d91a96665741b6c51e61a79a18e54b38d4be","Message":"add filter tong quan\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:11:50+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/8e2a7e7c4d64b6385ada897dd2992587328c9f87...3657d91a96665741b6c51e61a79a18e54b38d4be","Len":1}', 1701936724);
INSERT INTO public.action VALUES (293, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"73801603492a19d3732296558a135c90295b4e23","Message":"add icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:48:45+07:00"}],"HeadCommit":{"Sha1":"73801603492a19d3732296558a135c90295b4e23","Message":"add icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:48:45+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/3657d91a96665741b6c51e61a79a18e54b38d4be...73801603492a19d3732296558a135c90295b4e23","Len":1}', 1701938938);
INSERT INTO public.action VALUES (294, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"73801603492a19d3732296558a135c90295b4e23","Message":"add icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:48:45+07:00"}],"HeadCommit":{"Sha1":"73801603492a19d3732296558a135c90295b4e23","Message":"add icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:48:45+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/3657d91a96665741b6c51e61a79a18e54b38d4be...73801603492a19d3732296558a135c90295b4e23","Len":1}', 1701938938);
INSERT INTO public.action VALUES (295, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"73801603492a19d3732296558a135c90295b4e23","Message":"add icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:48:45+07:00"}],"HeadCommit":{"Sha1":"73801603492a19d3732296558a135c90295b4e23","Message":"add icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:48:45+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/3657d91a96665741b6c51e61a79a18e54b38d4be...73801603492a19d3732296558a135c90295b4e23","Len":1}', 1701938938);
INSERT INTO public.action VALUES (806, 13, 18, 13, 20, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a","Message":"thanh lý\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-25T10:02:31+07:00"}],"HeadCommit":{"Sha1":"28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a","Message":"thanh lý\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-25T10:02:31+07:00"},"CompareURL":"binh-dinh-f1/webapi/compare/ccfdd34f3f3d17beddd582294bd246c0a822c5d8...28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a","Len":1}', 1703490038);
INSERT INTO public.action VALUES (296, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"73801603492a19d3732296558a135c90295b4e23","Message":"add icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:48:45+07:00"}],"HeadCommit":{"Sha1":"73801603492a19d3732296558a135c90295b4e23","Message":"add icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:48:45+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/3657d91a96665741b6c51e61a79a18e54b38d4be...73801603492a19d3732296558a135c90295b4e23","Len":1}', 1701938938);
INSERT INTO public.action VALUES (297, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"132b1688e06321da4a18a1fff334a67778165cf0","Message":"update icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:04:24+07:00"}],"HeadCommit":{"Sha1":"132b1688e06321da4a18a1fff334a67778165cf0","Message":"update icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:04:24+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/73801603492a19d3732296558a135c90295b4e23...132b1688e06321da4a18a1fff334a67778165cf0","Len":1}', 1701939873);
INSERT INTO public.action VALUES (298, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"132b1688e06321da4a18a1fff334a67778165cf0","Message":"update icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:04:24+07:00"}],"HeadCommit":{"Sha1":"132b1688e06321da4a18a1fff334a67778165cf0","Message":"update icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:04:24+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/73801603492a19d3732296558a135c90295b4e23...132b1688e06321da4a18a1fff334a67778165cf0","Len":1}', 1701939873);
INSERT INTO public.action VALUES (299, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"132b1688e06321da4a18a1fff334a67778165cf0","Message":"update icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:04:24+07:00"}],"HeadCommit":{"Sha1":"132b1688e06321da4a18a1fff334a67778165cf0","Message":"update icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:04:24+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/73801603492a19d3732296558a135c90295b4e23...132b1688e06321da4a18a1fff334a67778165cf0","Len":1}', 1701939874);
INSERT INTO public.action VALUES (300, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"132b1688e06321da4a18a1fff334a67778165cf0","Message":"update icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:04:24+07:00"}],"HeadCommit":{"Sha1":"132b1688e06321da4a18a1fff334a67778165cf0","Message":"update icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:04:24+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/73801603492a19d3732296558a135c90295b4e23...132b1688e06321da4a18a1fff334a67778165cf0","Len":1}', 1701939874);
INSERT INTO public.action VALUES (301, 14, 18, 14, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"bb4b7cde991a6d61c41c9502f88912f6184c1194","Message":"Merge branch ''thinh'' into ''dev''\n\nadd thong tin ho so nhu cau\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!270","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T07:09:21Z"},{"Sha1":"cb7989a1617457d3e1e2a32c1a381da2049f3c4b","Message":"add thong tin ho so nhu cau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:08:51+07:00"},{"Sha1":"31edd20452e53b75d4f9192248bb4938b6e8070d","Message":"Merge branch ''thinh'' into ''dev''\n\nadd drop cho nam ho so\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!269","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T06:52:51Z"},{"Sha1":"3c4e14f7251e837c538767428ac5611a20371682","Message":"add drop cho nam ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:52:00+07:00"},{"Sha1":"2ee1b375759d0d76919d65c219b7e6fe3a9bc6f9","Message":"Merge branch ''thinh'' into ''dev''\n\nupdate them nam\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!268","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T04:35:52Z"}],"HeadCommit":{"Sha1":"bb4b7cde991a6d61c41c9502f88912f6184c1194","Message":"Merge branch ''thinh'' into ''dev''\n\nadd thong tin ho so nhu cau\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!270","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T07:09:21Z"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8c594d72ad6bc552c125d09ad10cdeae937a2357...bb4b7cde991a6d61c41c9502f88912f6184c1194","Len":6}', 1701950859);
INSERT INTO public.action VALUES (302, 1, 18, 14, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"bb4b7cde991a6d61c41c9502f88912f6184c1194","Message":"Merge branch ''thinh'' into ''dev''\n\nadd thong tin ho so nhu cau\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!270","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T07:09:21Z"},{"Sha1":"cb7989a1617457d3e1e2a32c1a381da2049f3c4b","Message":"add thong tin ho so nhu cau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:08:51+07:00"},{"Sha1":"31edd20452e53b75d4f9192248bb4938b6e8070d","Message":"Merge branch ''thinh'' into ''dev''\n\nadd drop cho nam ho so\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!269","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T06:52:51Z"},{"Sha1":"3c4e14f7251e837c538767428ac5611a20371682","Message":"add drop cho nam ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:52:00+07:00"},{"Sha1":"2ee1b375759d0d76919d65c219b7e6fe3a9bc6f9","Message":"Merge branch ''thinh'' into ''dev''\n\nupdate them nam\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!268","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T04:35:52Z"}],"HeadCommit":{"Sha1":"bb4b7cde991a6d61c41c9502f88912f6184c1194","Message":"Merge branch ''thinh'' into ''dev''\n\nadd thong tin ho so nhu cau\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!270","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T07:09:21Z"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8c594d72ad6bc552c125d09ad10cdeae937a2357...bb4b7cde991a6d61c41c9502f88912f6184c1194","Len":6}', 1701950859);
INSERT INTO public.action VALUES (303, 5, 18, 14, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"bb4b7cde991a6d61c41c9502f88912f6184c1194","Message":"Merge branch ''thinh'' into ''dev''\n\nadd thong tin ho so nhu cau\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!270","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T07:09:21Z"},{"Sha1":"cb7989a1617457d3e1e2a32c1a381da2049f3c4b","Message":"add thong tin ho so nhu cau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:08:51+07:00"},{"Sha1":"31edd20452e53b75d4f9192248bb4938b6e8070d","Message":"Merge branch ''thinh'' into ''dev''\n\nadd drop cho nam ho so\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!269","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T06:52:51Z"},{"Sha1":"3c4e14f7251e837c538767428ac5611a20371682","Message":"add drop cho nam ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:52:00+07:00"},{"Sha1":"2ee1b375759d0d76919d65c219b7e6fe3a9bc6f9","Message":"Merge branch ''thinh'' into ''dev''\n\nupdate them nam\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!268","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T04:35:52Z"}],"HeadCommit":{"Sha1":"bb4b7cde991a6d61c41c9502f88912f6184c1194","Message":"Merge branch ''thinh'' into ''dev''\n\nadd thong tin ho so nhu cau\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!270","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T07:09:21Z"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8c594d72ad6bc552c125d09ad10cdeae937a2357...bb4b7cde991a6d61c41c9502f88912f6184c1194","Len":6}', 1701950859);
INSERT INTO public.action VALUES (304, 14, 18, 14, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e8d99b2c201071b5be52943550dd5d25916c08e0","Message":"update nguoi lao dong search trung cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:37:33+07:00"},{"Sha1":"ae51cc0f551ce9657addab6a0faf8c14000bff1e","Message":"update render detail ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:43:28+07:00"},{"Sha1":"5e37279435f45e05686744b8cb4cf7e7db8a6928","Message":"check rang buoc chon nguoi lao dong\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:39:24+07:00"},{"Sha1":"cb7989a1617457d3e1e2a32c1a381da2049f3c4b","Message":"add thong tin ho so nhu cau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:08:51+07:00"},{"Sha1":"3c4e14f7251e837c538767428ac5611a20371682","Message":"add drop cho nam ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:52:00+07:00"}],"HeadCommit":{"Sha1":"e8d99b2c201071b5be52943550dd5d25916c08e0","Message":"update nguoi lao dong search trung cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:37:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9468167ad7d6ee99725ebff8e396c79b536da59c...e8d99b2c201071b5be52943550dd5d25916c08e0","Len":6}', 1701950861);
INSERT INTO public.action VALUES (305, 1, 18, 14, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e8d99b2c201071b5be52943550dd5d25916c08e0","Message":"update nguoi lao dong search trung cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:37:33+07:00"},{"Sha1":"ae51cc0f551ce9657addab6a0faf8c14000bff1e","Message":"update render detail ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:43:28+07:00"},{"Sha1":"5e37279435f45e05686744b8cb4cf7e7db8a6928","Message":"check rang buoc chon nguoi lao dong\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:39:24+07:00"},{"Sha1":"cb7989a1617457d3e1e2a32c1a381da2049f3c4b","Message":"add thong tin ho so nhu cau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:08:51+07:00"},{"Sha1":"3c4e14f7251e837c538767428ac5611a20371682","Message":"add drop cho nam ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:52:00+07:00"}],"HeadCommit":{"Sha1":"e8d99b2c201071b5be52943550dd5d25916c08e0","Message":"update nguoi lao dong search trung cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:37:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9468167ad7d6ee99725ebff8e396c79b536da59c...e8d99b2c201071b5be52943550dd5d25916c08e0","Len":6}', 1701950861);
INSERT INTO public.action VALUES (306, 5, 18, 14, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e8d99b2c201071b5be52943550dd5d25916c08e0","Message":"update nguoi lao dong search trung cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:37:33+07:00"},{"Sha1":"ae51cc0f551ce9657addab6a0faf8c14000bff1e","Message":"update render detail ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:43:28+07:00"},{"Sha1":"5e37279435f45e05686744b8cb4cf7e7db8a6928","Message":"check rang buoc chon nguoi lao dong\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:39:24+07:00"},{"Sha1":"cb7989a1617457d3e1e2a32c1a381da2049f3c4b","Message":"add thong tin ho so nhu cau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:08:51+07:00"},{"Sha1":"3c4e14f7251e837c538767428ac5611a20371682","Message":"add drop cho nam ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:52:00+07:00"}],"HeadCommit":{"Sha1":"e8d99b2c201071b5be52943550dd5d25916c08e0","Message":"update nguoi lao dong search trung cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:37:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9468167ad7d6ee99725ebff8e396c79b536da59c...e8d99b2c201071b5be52943550dd5d25916c08e0","Len":6}', 1701950861);
INSERT INTO public.action VALUES (307, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c5f8da2bb3cd794e66b180dfa15b19ea56b1a430","Message":"BaoCaoNhaGiaoNhieuCoSo\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-07T15:47:54+07:00"},{"Sha1":"662662d5001c1bf3f354dbbde554d94434866e04","Message":"DanhSachNLDTheoCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T14:57:26+07:00"},{"Sha1":"af4d70f03b700a6d3572d7252ed5796ee01d6dbf","Message":"DanhSachTrungCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T14:47:12+07:00"},{"Sha1":"2b0f07552dee7839f546a52aef5cc98ed6d4b1b0","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T14:20:23+07:00"},{"Sha1":"468094890dfc7b9c9ebf45fea83c2db5d566e5b4","Message":"năm hồ sơ nhu cầu lấy theo FE\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T13:53:31+07:00"}],"HeadCommit":{"Sha1":"c5f8da2bb3cd794e66b180dfa15b19ea56b1a430","Message":"BaoCaoNhaGiaoNhieuCoSo\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-07T15:47:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/5c51a21f5890285937f6cd6ed1d945216f7d0298...c5f8da2bb3cd794e66b180dfa15b19ea56b1a430","Len":6}', 1701952058);
INSERT INTO public.action VALUES (308, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c5f8da2bb3cd794e66b180dfa15b19ea56b1a430","Message":"BaoCaoNhaGiaoNhieuCoSo\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-07T15:47:54+07:00"},{"Sha1":"662662d5001c1bf3f354dbbde554d94434866e04","Message":"DanhSachNLDTheoCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T14:57:26+07:00"},{"Sha1":"af4d70f03b700a6d3572d7252ed5796ee01d6dbf","Message":"DanhSachTrungCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T14:47:12+07:00"},{"Sha1":"2b0f07552dee7839f546a52aef5cc98ed6d4b1b0","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T14:20:23+07:00"},{"Sha1":"468094890dfc7b9c9ebf45fea83c2db5d566e5b4","Message":"năm hồ sơ nhu cầu lấy theo FE\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T13:53:31+07:00"}],"HeadCommit":{"Sha1":"c5f8da2bb3cd794e66b180dfa15b19ea56b1a430","Message":"BaoCaoNhaGiaoNhieuCoSo\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-07T15:47:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/5c51a21f5890285937f6cd6ed1d945216f7d0298...c5f8da2bb3cd794e66b180dfa15b19ea56b1a430","Len":6}', 1701952058);
INSERT INTO public.action VALUES (309, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c5f8da2bb3cd794e66b180dfa15b19ea56b1a430","Message":"BaoCaoNhaGiaoNhieuCoSo\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-07T15:47:54+07:00"},{"Sha1":"662662d5001c1bf3f354dbbde554d94434866e04","Message":"DanhSachNLDTheoCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T14:57:26+07:00"},{"Sha1":"af4d70f03b700a6d3572d7252ed5796ee01d6dbf","Message":"DanhSachTrungCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T14:47:12+07:00"},{"Sha1":"2b0f07552dee7839f546a52aef5cc98ed6d4b1b0","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T14:20:23+07:00"},{"Sha1":"468094890dfc7b9c9ebf45fea83c2db5d566e5b4","Message":"năm hồ sơ nhu cầu lấy theo FE\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T13:53:31+07:00"}],"HeadCommit":{"Sha1":"c5f8da2bb3cd794e66b180dfa15b19ea56b1a430","Message":"BaoCaoNhaGiaoNhieuCoSo\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-07T15:47:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/5c51a21f5890285937f6cd6ed1d945216f7d0298...c5f8da2bb3cd794e66b180dfa15b19ea56b1a430","Len":6}', 1701952058);
INSERT INTO public.action VALUES (1048, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/199/merge', false, '', 1704106839);
INSERT INTO public.action VALUES (1049, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/199/merge', false, '', 1704106839);
INSERT INTO public.action VALUES (1050, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/200/head', false, '', 1704106839);
INSERT INTO public.action VALUES (310, 13, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!191","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:48:51Z"},{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},{"Sha1":"c06e6bc6566f5e6faae0fa655dd006ec22ff5e96","Message":"api driver \u0026 result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:43:03+07:00"}],"HeadCommit":{"Sha1":"3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!191","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:48:51Z"},"CompareURL":"binh-dinh-f1/website/compare/5fe890433f51e82dfac0a39170aa373296b17767...3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Len":3}', 1701961659);
INSERT INTO public.action VALUES (311, 1, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!191","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:48:51Z"},{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},{"Sha1":"c06e6bc6566f5e6faae0fa655dd006ec22ff5e96","Message":"api driver \u0026 result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:43:03+07:00"}],"HeadCommit":{"Sha1":"3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!191","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:48:51Z"},"CompareURL":"binh-dinh-f1/website/compare/5fe890433f51e82dfac0a39170aa373296b17767...3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Len":3}', 1701961659);
INSERT INTO public.action VALUES (312, 4, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!191","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:48:51Z"},{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},{"Sha1":"c06e6bc6566f5e6faae0fa655dd006ec22ff5e96","Message":"api driver \u0026 result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:43:03+07:00"}],"HeadCommit":{"Sha1":"3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!191","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:48:51Z"},"CompareURL":"binh-dinh-f1/website/compare/5fe890433f51e82dfac0a39170aa373296b17767...3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Len":3}', 1701961659);
INSERT INTO public.action VALUES (313, 13, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},{"Sha1":"c06e6bc6566f5e6faae0fa655dd006ec22ff5e96","Message":"api driver \u0026 result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:43:03+07:00"}],"HeadCommit":{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},"CompareURL":"binh-dinh-f1/website/compare/b7f6abf678ce952dbd452fb3d4a6c69c28f132a9...6bd007213e90947266e4fe47035c9617e45b26ca","Len":2}', 1701961660);
INSERT INTO public.action VALUES (314, 1, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},{"Sha1":"c06e6bc6566f5e6faae0fa655dd006ec22ff5e96","Message":"api driver \u0026 result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:43:03+07:00"}],"HeadCommit":{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},"CompareURL":"binh-dinh-f1/website/compare/b7f6abf678ce952dbd452fb3d4a6c69c28f132a9...6bd007213e90947266e4fe47035c9617e45b26ca","Len":2}', 1701961660);
INSERT INTO public.action VALUES (315, 4, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},{"Sha1":"c06e6bc6566f5e6faae0fa655dd006ec22ff5e96","Message":"api driver \u0026 result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:43:03+07:00"}],"HeadCommit":{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},"CompareURL":"binh-dinh-f1/website/compare/b7f6abf678ce952dbd452fb3d4a6c69c28f132a9...6bd007213e90947266e4fe47035c9617e45b26ca","Len":2}', 1701961660);
INSERT INTO public.action VALUES (995, 5, 5, 1, 25, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"d6c2e64af79bb97a5b57cf8e173d2f2d29f3019b","Message":"Add project files.\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-29T14:27:31+07:00"}],"HeadCommit":{"Sha1":"d6c2e64af79bb97a5b57cf8e173d2f2d29f3019b","Message":"Add project files.\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-29T14:27:31+07:00"},"CompareURL":"","Len":1}', 1703835148);
INSERT INTO public.action VALUES (316, 13, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c37db185a228c9beea92be14329ba448b218579e","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!192","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:49:09Z"},{"Sha1":"3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!191","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:48:51Z"},{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},{"Sha1":"c06e6bc6566f5e6faae0fa655dd006ec22ff5e96","Message":"api driver \u0026 result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:43:03+07:00"}],"HeadCommit":{"Sha1":"c37db185a228c9beea92be14329ba448b218579e","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!192","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:49:09Z"},"CompareURL":"binh-dinh-f1/website/compare/2a42e399dc69de6776a33573fec1d45a612a8ee2...c37db185a228c9beea92be14329ba448b218579e","Len":4}', 1701961661);
INSERT INTO public.action VALUES (317, 1, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c37db185a228c9beea92be14329ba448b218579e","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!192","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:49:09Z"},{"Sha1":"3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!191","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:48:51Z"},{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},{"Sha1":"c06e6bc6566f5e6faae0fa655dd006ec22ff5e96","Message":"api driver \u0026 result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:43:03+07:00"}],"HeadCommit":{"Sha1":"c37db185a228c9beea92be14329ba448b218579e","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!192","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:49:09Z"},"CompareURL":"binh-dinh-f1/website/compare/2a42e399dc69de6776a33573fec1d45a612a8ee2...c37db185a228c9beea92be14329ba448b218579e","Len":4}', 1701961661);
INSERT INTO public.action VALUES (318, 4, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c37db185a228c9beea92be14329ba448b218579e","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!192","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:49:09Z"},{"Sha1":"3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!191","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:48:51Z"},{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},{"Sha1":"c06e6bc6566f5e6faae0fa655dd006ec22ff5e96","Message":"api driver \u0026 result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:43:03+07:00"}],"HeadCommit":{"Sha1":"c37db185a228c9beea92be14329ba448b218579e","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!192","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:49:09Z"},"CompareURL":"binh-dinh-f1/website/compare/2a42e399dc69de6776a33573fec1d45a612a8ee2...c37db185a228c9beea92be14329ba448b218579e","Len":4}', 1701961661);
INSERT INTO public.action VALUES (319, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Message":"update cap lai mat khau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T11:00:47+07:00"}],"HeadCommit":{"Sha1":"7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Message":"update cap lai mat khau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T11:00:47+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/132b1688e06321da4a18a1fff334a67778165cf0...7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Len":1}', 1702008061);
INSERT INTO public.action VALUES (320, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Message":"update cap lai mat khau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T11:00:47+07:00"}],"HeadCommit":{"Sha1":"7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Message":"update cap lai mat khau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T11:00:47+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/132b1688e06321da4a18a1fff334a67778165cf0...7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Len":1}', 1702008061);
INSERT INTO public.action VALUES (321, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Message":"update cap lai mat khau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T11:00:47+07:00"}],"HeadCommit":{"Sha1":"7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Message":"update cap lai mat khau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T11:00:47+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/132b1688e06321da4a18a1fff334a67778165cf0...7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Len":1}', 1702008061);
INSERT INTO public.action VALUES (322, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Message":"update cap lai mat khau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T11:00:47+07:00"}],"HeadCommit":{"Sha1":"7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Message":"update cap lai mat khau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T11:00:47+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/132b1688e06321da4a18a1fff334a67778165cf0...7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Len":1}', 1702008061);
INSERT INTO public.action VALUES (323, 14, 18, 14, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8ef4febd9e8c6827566c2608358e733f70f816ef","Message":"Merge branch ''thinh'' into ''dev''\n\nThinh\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!271","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T03:16:52Z"},{"Sha1":"e8d99b2c201071b5be52943550dd5d25916c08e0","Message":"update nguoi lao dong search trung cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:37:33+07:00"},{"Sha1":"ae51cc0f551ce9657addab6a0faf8c14000bff1e","Message":"update render detail ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:43:28+07:00"},{"Sha1":"5e37279435f45e05686744b8cb4cf7e7db8a6928","Message":"check rang buoc chon nguoi lao dong\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:39:24+07:00"}],"HeadCommit":{"Sha1":"8ef4febd9e8c6827566c2608358e733f70f816ef","Message":"Merge branch ''thinh'' into ''dev''\n\nThinh\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!271","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T03:16:52Z"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bb4b7cde991a6d61c41c9502f88912f6184c1194...8ef4febd9e8c6827566c2608358e733f70f816ef","Len":4}', 1702009657);
INSERT INTO public.action VALUES (324, 1, 18, 14, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8ef4febd9e8c6827566c2608358e733f70f816ef","Message":"Merge branch ''thinh'' into ''dev''\n\nThinh\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!271","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T03:16:52Z"},{"Sha1":"e8d99b2c201071b5be52943550dd5d25916c08e0","Message":"update nguoi lao dong search trung cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:37:33+07:00"},{"Sha1":"ae51cc0f551ce9657addab6a0faf8c14000bff1e","Message":"update render detail ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:43:28+07:00"},{"Sha1":"5e37279435f45e05686744b8cb4cf7e7db8a6928","Message":"check rang buoc chon nguoi lao dong\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:39:24+07:00"}],"HeadCommit":{"Sha1":"8ef4febd9e8c6827566c2608358e733f70f816ef","Message":"Merge branch ''thinh'' into ''dev''\n\nThinh\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!271","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T03:16:52Z"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bb4b7cde991a6d61c41c9502f88912f6184c1194...8ef4febd9e8c6827566c2608358e733f70f816ef","Len":4}', 1702009657);
INSERT INTO public.action VALUES (325, 5, 18, 14, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8ef4febd9e8c6827566c2608358e733f70f816ef","Message":"Merge branch ''thinh'' into ''dev''\n\nThinh\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!271","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T03:16:52Z"},{"Sha1":"e8d99b2c201071b5be52943550dd5d25916c08e0","Message":"update nguoi lao dong search trung cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:37:33+07:00"},{"Sha1":"ae51cc0f551ce9657addab6a0faf8c14000bff1e","Message":"update render detail ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:43:28+07:00"},{"Sha1":"5e37279435f45e05686744b8cb4cf7e7db8a6928","Message":"check rang buoc chon nguoi lao dong\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:39:24+07:00"}],"HeadCommit":{"Sha1":"8ef4febd9e8c6827566c2608358e733f70f816ef","Message":"Merge branch ''thinh'' into ''dev''\n\nThinh\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!271","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T03:16:52Z"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bb4b7cde991a6d61c41c9502f88912f6184c1194...8ef4febd9e8c6827566c2608358e733f70f816ef","Len":4}', 1702009657);
INSERT INTO public.action VALUES (345, 1, 5, 1, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"20a08df4682d10433b053e6660a2ef3e31127449","Message":"Merge branch ''dev'' into thinh\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:41:33+07:00"},{"Sha1":"8ef4febd9e8c6827566c2608358e733f70f816ef","Message":"Merge branch ''thinh'' into ''dev''\n\nThinh\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!271","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T03:16:52Z"},{"Sha1":"bb4b7cde991a6d61c41c9502f88912f6184c1194","Message":"Merge branch ''thinh'' into ''dev''\n\nadd thong tin ho so nhu cau\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!270","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T07:09:21Z"},{"Sha1":"31edd20452e53b75d4f9192248bb4938b6e8070d","Message":"Merge branch ''thinh'' into ''dev''\n\nadd drop cho nam ho so\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!269","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T06:52:51Z"},{"Sha1":"2ee1b375759d0d76919d65c219b7e6fe3a9bc6f9","Message":"Merge branch ''thinh'' into ''dev''\n\nupdate them nam\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!268","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T04:35:52Z"}],"HeadCommit":{"Sha1":"20a08df4682d10433b053e6660a2ef3e31127449","Message":"Merge branch ''dev'' into thinh\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:41:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/48652d228a3a50d1c85e12393961821cc62567ad...20a08df4682d10433b053e6660a2ef3e31127449","Len":8}', 1702096899);
INSERT INTO public.action VALUES (1006, 11, 7, 11, 21, 0, false, '', false, '28|thinh', 1703842272);
INSERT INTO public.action VALUES (1007, 14, 7, 11, 21, 0, false, '', false, '28|thinh', 1703842272);
INSERT INTO public.action VALUES (326, 13, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"62e440c85f8e271d4d19f042050cae22e70eb3b9","Message":"fix: auto fill into link (racer)\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:53:58+07:00"},{"Sha1":"6676a8e363c579f54c87876d5afe54e883481ae2","Message":"fix: check rule yearDebut (team)\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:35:42+07:00"},{"Sha1":"e67a83634f890cde00a6ae19c49c01a011f4594e","Message":"fix: remove some require field\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:16:13+07:00"}],"HeadCommit":{"Sha1":"62e440c85f8e271d4d19f042050cae22e70eb3b9","Message":"fix: auto fill into link (racer)\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:53:58+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/014019f5ab2fec0e0dc861a6e442ba162c81499e...62e440c85f8e271d4d19f042050cae22e70eb3b9","Len":3}', 1702020461);
INSERT INTO public.action VALUES (327, 1, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"62e440c85f8e271d4d19f042050cae22e70eb3b9","Message":"fix: auto fill into link (racer)\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:53:58+07:00"},{"Sha1":"6676a8e363c579f54c87876d5afe54e883481ae2","Message":"fix: check rule yearDebut (team)\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:35:42+07:00"},{"Sha1":"e67a83634f890cde00a6ae19c49c01a011f4594e","Message":"fix: remove some require field\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:16:13+07:00"}],"HeadCommit":{"Sha1":"62e440c85f8e271d4d19f042050cae22e70eb3b9","Message":"fix: auto fill into link (racer)\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:53:58+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/014019f5ab2fec0e0dc861a6e442ba162c81499e...62e440c85f8e271d4d19f042050cae22e70eb3b9","Len":3}', 1702020461);
INSERT INTO public.action VALUES (328, 4, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"62e440c85f8e271d4d19f042050cae22e70eb3b9","Message":"fix: auto fill into link (racer)\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:53:58+07:00"},{"Sha1":"6676a8e363c579f54c87876d5afe54e883481ae2","Message":"fix: check rule yearDebut (team)\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:35:42+07:00"},{"Sha1":"e67a83634f890cde00a6ae19c49c01a011f4594e","Message":"fix: remove some require field\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:16:13+07:00"}],"HeadCommit":{"Sha1":"62e440c85f8e271d4d19f042050cae22e70eb3b9","Message":"fix: auto fill into link (racer)\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:53:58+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/014019f5ab2fec0e0dc861a6e442ba162c81499e...62e440c85f8e271d4d19f042050cae22e70eb3b9","Len":3}', 1702020461);
INSERT INTO public.action VALUES (329, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},{"Sha1":"f7703196ec86890a5d9e2921cd7c807078eec3d7","Message":"coincide cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:39:33+07:00"}],"HeadCommit":{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e8d99b2c201071b5be52943550dd5d25916c08e0...c0319628506edaa08cc62b8102bd5e72a81b2a0f","Len":2}', 1702025409);
INSERT INTO public.action VALUES (330, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},{"Sha1":"f7703196ec86890a5d9e2921cd7c807078eec3d7","Message":"coincide cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:39:33+07:00"}],"HeadCommit":{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e8d99b2c201071b5be52943550dd5d25916c08e0...c0319628506edaa08cc62b8102bd5e72a81b2a0f","Len":2}', 1702025409);
INSERT INTO public.action VALUES (331, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},{"Sha1":"f7703196ec86890a5d9e2921cd7c807078eec3d7","Message":"coincide cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:39:33+07:00"}],"HeadCommit":{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e8d99b2c201071b5be52943550dd5d25916c08e0...c0319628506edaa08cc62b8102bd5e72a81b2a0f","Len":2}', 1702025409);
INSERT INTO public.action VALUES (1008, 1, 7, 11, 21, 0, false, '', false, '28|thinh', 1703842272);
INSERT INTO public.action VALUES (1009, 5, 7, 11, 21, 0, false, '', false, '28|thinh', 1703842272);
INSERT INTO public.action VALUES (1010, 16, 7, 11, 21, 0, false, '', false, '28|thinh', 1703842272);
INSERT INTO public.action VALUES (1051, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/200/head', false, '', 1704106839);
INSERT INTO public.action VALUES (332, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},{"Sha1":"f7703196ec86890a5d9e2921cd7c807078eec3d7","Message":"coincide cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:39:33+07:00"}],"HeadCommit":{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e8d99b2c201071b5be52943550dd5d25916c08e0...c0319628506edaa08cc62b8102bd5e72a81b2a0f","Len":2}', 1702025409);
INSERT INTO public.action VALUES (333, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"}],"HeadCommit":{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c0319628506edaa08cc62b8102bd5e72a81b2a0f...48652d228a3a50d1c85e12393961821cc62567ad","Len":1}', 1702028986);
INSERT INTO public.action VALUES (334, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"}],"HeadCommit":{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c0319628506edaa08cc62b8102bd5e72a81b2a0f...48652d228a3a50d1c85e12393961821cc62567ad","Len":1}', 1702028986);
INSERT INTO public.action VALUES (335, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"}],"HeadCommit":{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c0319628506edaa08cc62b8102bd5e72a81b2a0f...48652d228a3a50d1c85e12393961821cc62567ad","Len":1}', 1702028986);
INSERT INTO public.action VALUES (336, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"}],"HeadCommit":{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c0319628506edaa08cc62b8102bd5e72a81b2a0f...48652d228a3a50d1c85e12393961821cc62567ad","Len":1}', 1702028986);
INSERT INTO public.action VALUES (337, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Message":"NhaGiaoGDNNDayNhieuCS\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:55:51+07:00"},{"Sha1":"a0de156119c9652b01ec33d7b68cd08470703ce7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-08T16:24:03+07:00"},{"Sha1":"958029f68ee9bf07f75f4036e8f7da872f103147","Message":"bổ sung ListHoSo cho DanhSachNLDTheoCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-08T16:23:44+07:00"},{"Sha1":"e3c4b227688e1f41133fe97dce7fe7cfe1e927c2","Message":"QuanLyNhaGiaoTaiCSGDNN\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:06:37+07:00"}],"HeadCommit":{"Sha1":"0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Message":"NhaGiaoGDNNDayNhieuCS\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:55:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c5f8da2bb3cd794e66b180dfa15b19ea56b1a430...0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Len":4}', 1702040257);
INSERT INTO public.action VALUES (346, 14, 5, 1, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"20a08df4682d10433b053e6660a2ef3e31127449","Message":"Merge branch ''dev'' into thinh\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:41:33+07:00"},{"Sha1":"8ef4febd9e8c6827566c2608358e733f70f816ef","Message":"Merge branch ''thinh'' into ''dev''\n\nThinh\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!271","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T03:16:52Z"},{"Sha1":"bb4b7cde991a6d61c41c9502f88912f6184c1194","Message":"Merge branch ''thinh'' into ''dev''\n\nadd thong tin ho so nhu cau\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!270","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T07:09:21Z"},{"Sha1":"31edd20452e53b75d4f9192248bb4938b6e8070d","Message":"Merge branch ''thinh'' into ''dev''\n\nadd drop cho nam ho so\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!269","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T06:52:51Z"},{"Sha1":"2ee1b375759d0d76919d65c219b7e6fe3a9bc6f9","Message":"Merge branch ''thinh'' into ''dev''\n\nupdate them nam\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!268","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T04:35:52Z"}],"HeadCommit":{"Sha1":"20a08df4682d10433b053e6660a2ef3e31127449","Message":"Merge branch ''dev'' into thinh\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:41:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/48652d228a3a50d1c85e12393961821cc62567ad...20a08df4682d10433b053e6660a2ef3e31127449","Len":8}', 1702096899);
INSERT INTO public.action VALUES (1052, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/200/head', false, '', 1704106839);
INSERT INTO public.action VALUES (1053, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/200/merge', false, '', 1704106839);
INSERT INTO public.action VALUES (1054, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/200/merge', false, '', 1704106839);
INSERT INTO public.action VALUES (1055, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/200/merge', false, '', 1704106839);
INSERT INTO public.action VALUES (1056, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/201/head', false, '', 1704106839);
INSERT INTO public.action VALUES (338, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Message":"NhaGiaoGDNNDayNhieuCS\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:55:51+07:00"},{"Sha1":"a0de156119c9652b01ec33d7b68cd08470703ce7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-08T16:24:03+07:00"},{"Sha1":"958029f68ee9bf07f75f4036e8f7da872f103147","Message":"bổ sung ListHoSo cho DanhSachNLDTheoCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-08T16:23:44+07:00"},{"Sha1":"e3c4b227688e1f41133fe97dce7fe7cfe1e927c2","Message":"QuanLyNhaGiaoTaiCSGDNN\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:06:37+07:00"}],"HeadCommit":{"Sha1":"0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Message":"NhaGiaoGDNNDayNhieuCS\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:55:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c5f8da2bb3cd794e66b180dfa15b19ea56b1a430...0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Len":4}', 1702040257);
INSERT INTO public.action VALUES (339, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Message":"NhaGiaoGDNNDayNhieuCS\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:55:51+07:00"},{"Sha1":"a0de156119c9652b01ec33d7b68cd08470703ce7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-08T16:24:03+07:00"},{"Sha1":"958029f68ee9bf07f75f4036e8f7da872f103147","Message":"bổ sung ListHoSo cho DanhSachNLDTheoCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-08T16:23:44+07:00"},{"Sha1":"e3c4b227688e1f41133fe97dce7fe7cfe1e927c2","Message":"QuanLyNhaGiaoTaiCSGDNN\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:06:37+07:00"}],"HeadCommit":{"Sha1":"0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Message":"NhaGiaoGDNNDayNhieuCS\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:55:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c5f8da2bb3cd794e66b180dfa15b19ea56b1a430...0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Len":4}', 1702040257);
INSERT INTO public.action VALUES (340, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Message":"NhaGiaoGDNNDayNhieuCS\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:55:51+07:00"},{"Sha1":"a0de156119c9652b01ec33d7b68cd08470703ce7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-08T16:24:03+07:00"},{"Sha1":"958029f68ee9bf07f75f4036e8f7da872f103147","Message":"bổ sung ListHoSo cho DanhSachNLDTheoCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-08T16:23:44+07:00"},{"Sha1":"e3c4b227688e1f41133fe97dce7fe7cfe1e927c2","Message":"QuanLyNhaGiaoTaiCSGDNN\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:06:37+07:00"}],"HeadCommit":{"Sha1":"0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Message":"NhaGiaoGDNNDayNhieuCS\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:55:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c5f8da2bb3cd794e66b180dfa15b19ea56b1a430...0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Len":4}', 1702040257);
INSERT INTO public.action VALUES (341, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Message":"NhaGiaoGDNNDayNhieuCS\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:55:51+07:00"},{"Sha1":"a0de156119c9652b01ec33d7b68cd08470703ce7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-08T16:24:03+07:00"},{"Sha1":"958029f68ee9bf07f75f4036e8f7da872f103147","Message":"bổ sung ListHoSo cho DanhSachNLDTheoCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-08T16:23:44+07:00"},{"Sha1":"e3c4b227688e1f41133fe97dce7fe7cfe1e927c2","Message":"QuanLyNhaGiaoTaiCSGDNN\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:06:37+07:00"}],"HeadCommit":{"Sha1":"0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Message":"NhaGiaoGDNNDayNhieuCS\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:55:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c5f8da2bb3cd794e66b180dfa15b19ea56b1a430...0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Len":4}', 1702040257);
INSERT INTO public.action VALUES (1388, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/208/head', false, '', 1704371439);
INSERT INTO public.action VALUES (1389, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/208/head', false, '', 1704371439);
INSERT INTO public.action VALUES (1390, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/208/head', false, '', 1704371439);
INSERT INTO public.action VALUES (1391, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/208/merge', false, '', 1704371439);
INSERT INTO public.action VALUES (1392, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/208/merge', false, '', 1704371439);
INSERT INTO public.action VALUES (1393, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/208/merge', false, '', 1704371439);
INSERT INTO public.action VALUES (1491, 11, 7, 11, 21, 0, false, '', false, '40|add bao cao TN', 1704446446);
INSERT INTO public.action VALUES (1492, 14, 7, 11, 21, 0, false, '', false, '40|add bao cao TN', 1704446446);
INSERT INTO public.action VALUES (1493, 1, 7, 11, 21, 0, false, '', false, '40|add bao cao TN', 1704446446);
INSERT INTO public.action VALUES (1494, 5, 7, 11, 21, 0, false, '', false, '40|add bao cao TN', 1704446446);
INSERT INTO public.action VALUES (347, 5, 5, 1, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"20a08df4682d10433b053e6660a2ef3e31127449","Message":"Merge branch ''dev'' into thinh\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:41:33+07:00"},{"Sha1":"8ef4febd9e8c6827566c2608358e733f70f816ef","Message":"Merge branch ''thinh'' into ''dev''\n\nThinh\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!271","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T03:16:52Z"},{"Sha1":"bb4b7cde991a6d61c41c9502f88912f6184c1194","Message":"Merge branch ''thinh'' into ''dev''\n\nadd thong tin ho so nhu cau\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!270","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T07:09:21Z"},{"Sha1":"31edd20452e53b75d4f9192248bb4938b6e8070d","Message":"Merge branch ''thinh'' into ''dev''\n\nadd drop cho nam ho so\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!269","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T06:52:51Z"},{"Sha1":"2ee1b375759d0d76919d65c219b7e6fe3a9bc6f9","Message":"Merge branch ''thinh'' into ''dev''\n\nupdate them nam\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!268","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T04:35:52Z"}],"HeadCommit":{"Sha1":"20a08df4682d10433b053e6660a2ef3e31127449","Message":"Merge branch ''dev'' into thinh\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:41:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/48652d228a3a50d1c85e12393961821cc62567ad...20a08df4682d10433b053e6660a2ef3e31127449","Len":8}', 1702096899);
INSERT INTO public.action VALUES (348, 1, 11, 1, 21, 0, false, '', false, '1|thinh', 1702096969);
INSERT INTO public.action VALUES (349, 14, 11, 1, 21, 0, false, '', false, '1|thinh', 1702096969);
INSERT INTO public.action VALUES (350, 5, 11, 1, 21, 0, false, '', false, '1|thinh', 1702096969);
INSERT INTO public.action VALUES (351, 1, 5, 1, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802","Message":"Merge pull request ''thinh'' (#1) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/1\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:42:44+07:00"},{"Sha1":"20a08df4682d10433b053e6660a2ef3e31127449","Message":"Merge branch ''dev'' into thinh\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:41:33+07:00"},{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"},{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},{"Sha1":"f7703196ec86890a5d9e2921cd7c807078eec3d7","Message":"coincide cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:39:33+07:00"}],"HeadCommit":{"Sha1":"453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802","Message":"Merge pull request ''thinh'' (#1) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/1\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:42:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8ef4febd9e8c6827566c2608358e733f70f816ef...453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802","Len":5}', 1702096971);
INSERT INTO public.action VALUES (352, 14, 5, 1, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802","Message":"Merge pull request ''thinh'' (#1) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/1\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:42:44+07:00"},{"Sha1":"20a08df4682d10433b053e6660a2ef3e31127449","Message":"Merge branch ''dev'' into thinh\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:41:33+07:00"},{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"},{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},{"Sha1":"f7703196ec86890a5d9e2921cd7c807078eec3d7","Message":"coincide cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:39:33+07:00"}],"HeadCommit":{"Sha1":"453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802","Message":"Merge pull request ''thinh'' (#1) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/1\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:42:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8ef4febd9e8c6827566c2608358e733f70f816ef...453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802","Len":5}', 1702096971);
INSERT INTO public.action VALUES (353, 5, 5, 1, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802","Message":"Merge pull request ''thinh'' (#1) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/1\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:42:44+07:00"},{"Sha1":"20a08df4682d10433b053e6660a2ef3e31127449","Message":"Merge branch ''dev'' into thinh\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:41:33+07:00"},{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"},{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},{"Sha1":"f7703196ec86890a5d9e2921cd7c807078eec3d7","Message":"coincide cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:39:33+07:00"}],"HeadCommit":{"Sha1":"453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802","Message":"Merge pull request ''thinh'' (#1) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/1\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:42:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8ef4febd9e8c6827566c2608358e733f70f816ef...453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802","Len":5}', 1702096971);
INSERT INTO public.action VALUES (354, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},{"Sha1":"57148d20cdcbc970a17c104a386db2579c8b7684","Message":"update filter theo nam view huyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:32:52+07:00"}],"HeadCommit":{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/20a08df4682d10433b053e6660a2ef3e31127449...840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Len":2}', 1702258449);
INSERT INTO public.action VALUES (355, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},{"Sha1":"57148d20cdcbc970a17c104a386db2579c8b7684","Message":"update filter theo nam view huyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:32:52+07:00"}],"HeadCommit":{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/20a08df4682d10433b053e6660a2ef3e31127449...840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Len":2}', 1702258449);
INSERT INTO public.action VALUES (362, 11, 7, 11, 21, 0, false, '', false, '2|thinh', 1702262293);
INSERT INTO public.action VALUES (363, 14, 7, 11, 21, 0, false, '', false, '2|thinh', 1702262293);
INSERT INTO public.action VALUES (364, 1, 7, 11, 21, 0, false, '', false, '2|thinh', 1702262293);
INSERT INTO public.action VALUES (365, 5, 7, 11, 21, 0, false, '', false, '2|thinh', 1702262293);
INSERT INTO public.action VALUES (366, 11, 11, 11, 21, 0, false, '', false, '2|thinh', 1702262652);
INSERT INTO public.action VALUES (367, 14, 11, 11, 21, 0, false, '', false, '2|thinh', 1702262652);
INSERT INTO public.action VALUES (368, 1, 11, 11, 21, 0, false, '', false, '2|thinh', 1702262652);
INSERT INTO public.action VALUES (369, 5, 11, 11, 21, 0, false, '', false, '2|thinh', 1702262652);
INSERT INTO public.action VALUES (1057, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/201/head', false, '', 1704106839);
INSERT INTO public.action VALUES (1058, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/201/head', false, '', 1704106839);
INSERT INTO public.action VALUES (1059, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/201/merge', false, '', 1704106839);
INSERT INTO public.action VALUES (1060, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/201/merge', false, '', 1704106839);
INSERT INTO public.action VALUES (356, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},{"Sha1":"57148d20cdcbc970a17c104a386db2579c8b7684","Message":"update filter theo nam view huyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:32:52+07:00"}],"HeadCommit":{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/20a08df4682d10433b053e6660a2ef3e31127449...840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Len":2}', 1702258449);
INSERT INTO public.action VALUES (357, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},{"Sha1":"57148d20cdcbc970a17c104a386db2579c8b7684","Message":"update filter theo nam view huyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:32:52+07:00"}],"HeadCommit":{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/20a08df4682d10433b053e6660a2ef3e31127449...840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Len":2}', 1702258449);
INSERT INTO public.action VALUES (358, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"}],"HeadCommit":{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/840d81f0072a2dc84dcd2e592deb0ee322f2f46e...ba9ff55b3992311f8d8c8134aaebf4fa09653853","Len":1}', 1702260609);
INSERT INTO public.action VALUES (359, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"}],"HeadCommit":{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/840d81f0072a2dc84dcd2e592deb0ee322f2f46e...ba9ff55b3992311f8d8c8134aaebf4fa09653853","Len":1}', 1702260609);
INSERT INTO public.action VALUES (360, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"}],"HeadCommit":{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/840d81f0072a2dc84dcd2e592deb0ee322f2f46e...ba9ff55b3992311f8d8c8134aaebf4fa09653853","Len":1}', 1702260609);
INSERT INTO public.action VALUES (361, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"}],"HeadCommit":{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/840d81f0072a2dc84dcd2e592deb0ee322f2f46e...ba9ff55b3992311f8d8c8134aaebf4fa09653853","Len":1}', 1702260609);
INSERT INTO public.action VALUES (1394, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"da2aec3d3d8073a39a1b44aa48641e4b6141397f","Message":"RouteInfoHostedService - composite key odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T20:48:46+07:00"}],"HeadCommit":{"Sha1":"da2aec3d3d8073a39a1b44aa48641e4b6141397f","Message":"RouteInfoHostedService - composite key odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T20:48:46+07:00"},"CompareURL":"Khieu-nai/backend/compare/228d97b9fcb505875198e7887766d5424c81f9f8...da2aec3d3d8073a39a1b44aa48641e4b6141397f","Len":1}', 1704376134);
INSERT INTO public.action VALUES (1495, 16, 7, 11, 21, 0, false, '', false, '40|add bao cao TN', 1704446446);
INSERT INTO public.action VALUES (1496, 11, 11, 11, 21, 0, false, '', false, '40|add bao cao TN', 1704446463);
INSERT INTO public.action VALUES (1497, 14, 11, 11, 21, 0, false, '', false, '40|add bao cao TN', 1704446463);
INSERT INTO public.action VALUES (1498, 1, 11, 11, 21, 0, false, '', false, '40|add bao cao TN', 1704446463);
INSERT INTO public.action VALUES (1499, 5, 11, 11, 21, 0, false, '', false, '40|add bao cao TN', 1704446463);
INSERT INTO public.action VALUES (1500, 16, 11, 11, 21, 0, false, '', false, '40|add bao cao TN', 1704446463);
INSERT INTO public.action VALUES (1518, 14, 7, 11, 21, 0, false, '', false, '41|thinh', 1704464890);
INSERT INTO public.action VALUES (370, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Message":"Merge pull request ''thinh'' (#2) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/2\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T09:44:07+07:00"},{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"},{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},{"Sha1":"57148d20cdcbc970a17c104a386db2579c8b7684","Message":"update filter theo nam view huyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:32:52+07:00"}],"HeadCommit":{"Sha1":"332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Message":"Merge pull request ''thinh'' (#2) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/2\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T09:44:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802...332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Len":4}', 1702262654);
INSERT INTO public.action VALUES (371, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Message":"Merge pull request ''thinh'' (#2) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/2\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T09:44:07+07:00"},{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"},{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},{"Sha1":"57148d20cdcbc970a17c104a386db2579c8b7684","Message":"update filter theo nam view huyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:32:52+07:00"}],"HeadCommit":{"Sha1":"332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Message":"Merge pull request ''thinh'' (#2) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/2\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T09:44:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802...332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Len":4}', 1702262654);
INSERT INTO public.action VALUES (372, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Message":"Merge pull request ''thinh'' (#2) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/2\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T09:44:07+07:00"},{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"},{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},{"Sha1":"57148d20cdcbc970a17c104a386db2579c8b7684","Message":"update filter theo nam view huyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:32:52+07:00"}],"HeadCommit":{"Sha1":"332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Message":"Merge pull request ''thinh'' (#2) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/2\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T09:44:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802...332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Len":4}', 1702262654);
INSERT INTO public.action VALUES (373, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Message":"Merge pull request ''thinh'' (#2) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/2\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T09:44:07+07:00"},{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"},{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},{"Sha1":"57148d20cdcbc970a17c104a386db2579c8b7684","Message":"update filter theo nam view huyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:32:52+07:00"}],"HeadCommit":{"Sha1":"332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Message":"Merge pull request ''thinh'' (#2) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/2\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T09:44:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802...332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Len":4}', 1702262654);
INSERT INTO public.action VALUES (374, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"}],"HeadCommit":{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ba9ff55b3992311f8d8c8134aaebf4fa09653853...c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Len":1}', 1702268599);
INSERT INTO public.action VALUES (375, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"}],"HeadCommit":{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ba9ff55b3992311f8d8c8134aaebf4fa09653853...c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Len":1}', 1702268599);
INSERT INTO public.action VALUES (376, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"}],"HeadCommit":{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ba9ff55b3992311f8d8c8134aaebf4fa09653853...c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Len":1}', 1702268599);
INSERT INTO public.action VALUES (377, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"}],"HeadCommit":{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ba9ff55b3992311f8d8c8134aaebf4fa09653853...c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Len":1}', 1702268599);
INSERT INTO public.action VALUES (392, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"}],"HeadCommit":{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a...84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Len":1}', 1702366984);
INSERT INTO public.action VALUES (386, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7780a4feeb614a456ab7396ad139fb4f27cf99c5","Message":"Merge pull request ''update nguoi tao filter'' (#3) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/3\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T11:28:38+07:00"},{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"}],"HeadCommit":{"Sha1":"7780a4feeb614a456ab7396ad139fb4f27cf99c5","Message":"Merge pull request ''update nguoi tao filter'' (#3) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/3\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T11:28:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/332b7c2db9feb5c0cd39791dabb28f9f7adb999f...7780a4feeb614a456ab7396ad139fb4f27cf99c5","Len":2}', 1702268925);
INSERT INTO public.action VALUES (387, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7780a4feeb614a456ab7396ad139fb4f27cf99c5","Message":"Merge pull request ''update nguoi tao filter'' (#3) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/3\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T11:28:38+07:00"},{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"}],"HeadCommit":{"Sha1":"7780a4feeb614a456ab7396ad139fb4f27cf99c5","Message":"Merge pull request ''update nguoi tao filter'' (#3) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/3\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T11:28:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/332b7c2db9feb5c0cd39791dabb28f9f7adb999f...7780a4feeb614a456ab7396ad139fb4f27cf99c5","Len":2}', 1702268925);
INSERT INTO public.action VALUES (388, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7780a4feeb614a456ab7396ad139fb4f27cf99c5","Message":"Merge pull request ''update nguoi tao filter'' (#3) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/3\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T11:28:38+07:00"},{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"}],"HeadCommit":{"Sha1":"7780a4feeb614a456ab7396ad139fb4f27cf99c5","Message":"Merge pull request ''update nguoi tao filter'' (#3) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/3\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T11:28:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/332b7c2db9feb5c0cd39791dabb28f9f7adb999f...7780a4feeb614a456ab7396ad139fb4f27cf99c5","Len":2}', 1702268925);
INSERT INTO public.action VALUES (389, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7780a4feeb614a456ab7396ad139fb4f27cf99c5","Message":"Merge pull request ''update nguoi tao filter'' (#3) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/3\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T11:28:38+07:00"},{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"}],"HeadCommit":{"Sha1":"7780a4feeb614a456ab7396ad139fb4f27cf99c5","Message":"Merge pull request ''update nguoi tao filter'' (#3) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/3\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T11:28:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/332b7c2db9feb5c0cd39791dabb28f9f7adb999f...7780a4feeb614a456ab7396ad139fb4f27cf99c5","Len":2}', 1702268925);
INSERT INTO public.action VALUES (390, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"}],"HeadCommit":{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a...84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Len":1}', 1702366984);
INSERT INTO public.action VALUES (391, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"}],"HeadCommit":{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a...84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Len":1}', 1702366984);
INSERT INTO public.action VALUES (398, 11, 11, 11, 21, 0, false, '', false, '4|render Action NLĐ', 1702367055);
INSERT INTO public.action VALUES (399, 14, 11, 11, 21, 0, false, '', false, '4|render Action NLĐ', 1702367055);
INSERT INTO public.action VALUES (400, 1, 11, 11, 21, 0, false, '', false, '4|render Action NLĐ', 1702367055);
INSERT INTO public.action VALUES (401, 5, 11, 11, 21, 0, false, '', false, '4|render Action NLĐ', 1702367055);
INSERT INTO public.action VALUES (1061, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/201/merge', false, '', 1704106839);
INSERT INTO public.action VALUES (393, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"}],"HeadCommit":{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a...84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Len":1}', 1702366984);
INSERT INTO public.action VALUES (394, 11, 7, 11, 21, 0, false, '', false, '4|render Action NLĐ', 1702367035);
INSERT INTO public.action VALUES (395, 14, 7, 11, 21, 0, false, '', false, '4|render Action NLĐ', 1702367035);
INSERT INTO public.action VALUES (396, 1, 7, 11, 21, 0, false, '', false, '4|render Action NLĐ', 1702367035);
INSERT INTO public.action VALUES (397, 5, 7, 11, 21, 0, false, '', false, '4|render Action NLĐ', 1702367035);
INSERT INTO public.action VALUES (1395, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"da2aec3d3d8073a39a1b44aa48641e4b6141397f","Message":"RouteInfoHostedService - composite key odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T20:48:46+07:00"}],"HeadCommit":{"Sha1":"da2aec3d3d8073a39a1b44aa48641e4b6141397f","Message":"RouteInfoHostedService - composite key odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T20:48:46+07:00"},"CompareURL":"Khieu-nai/backend/compare/228d97b9fcb505875198e7887766d5424c81f9f8...da2aec3d3d8073a39a1b44aa48641e4b6141397f","Len":1}', 1704376134);
INSERT INTO public.action VALUES (1396, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"da2aec3d3d8073a39a1b44aa48641e4b6141397f","Message":"RouteInfoHostedService - composite key odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T20:48:46+07:00"}],"HeadCommit":{"Sha1":"da2aec3d3d8073a39a1b44aa48641e4b6141397f","Message":"RouteInfoHostedService - composite key odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T20:48:46+07:00"},"CompareURL":"Khieu-nai/backend/compare/228d97b9fcb505875198e7887766d5424c81f9f8...da2aec3d3d8073a39a1b44aa48641e4b6141397f","Len":1}', 1704376134);
INSERT INTO public.action VALUES (1397, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"da2aec3d3d8073a39a1b44aa48641e4b6141397f","Message":"RouteInfoHostedService - composite key odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T20:48:46+07:00"}],"HeadCommit":{"Sha1":"da2aec3d3d8073a39a1b44aa48641e4b6141397f","Message":"RouteInfoHostedService - composite key odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T20:48:46+07:00"},"CompareURL":"Khieu-nai/backend/compare/228d97b9fcb505875198e7887766d5424c81f9f8...da2aec3d3d8073a39a1b44aa48641e4b6141397f","Len":1}', 1704376134);
INSERT INTO public.action VALUES (1398, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"da2aec3d3d8073a39a1b44aa48641e4b6141397f","Message":"RouteInfoHostedService - composite key odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T20:48:46+07:00"}],"HeadCommit":{"Sha1":"da2aec3d3d8073a39a1b44aa48641e4b6141397f","Message":"RouteInfoHostedService - composite key odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T20:48:46+07:00"},"CompareURL":"Khieu-nai/backend/compare/228d97b9fcb505875198e7887766d5424c81f9f8...da2aec3d3d8073a39a1b44aa48641e4b6141397f","Len":1}', 1704376134);
INSERT INTO public.action VALUES (1501, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ae5188bd0ff0b0618b16428867ff1d4c001a580b","Message":"Merge pull request ''add bao cao TN'' (#40) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/40\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T16:20:58+07:00"},{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"}],"HeadCommit":{"Sha1":"ae5188bd0ff0b0618b16428867ff1d4c001a580b","Message":"Merge pull request ''add bao cao TN'' (#40) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/40\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T16:20:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1511625e8a850a70547c23e491168c2ac465a5e6...ae5188bd0ff0b0618b16428867ff1d4c001a580b","Len":2}', 1704446464);
INSERT INTO public.action VALUES (1502, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ae5188bd0ff0b0618b16428867ff1d4c001a580b","Message":"Merge pull request ''add bao cao TN'' (#40) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/40\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T16:20:58+07:00"},{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"}],"HeadCommit":{"Sha1":"ae5188bd0ff0b0618b16428867ff1d4c001a580b","Message":"Merge pull request ''add bao cao TN'' (#40) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/40\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T16:20:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1511625e8a850a70547c23e491168c2ac465a5e6...ae5188bd0ff0b0618b16428867ff1d4c001a580b","Len":2}', 1704446464);
INSERT INTO public.action VALUES (1519, 1, 7, 11, 21, 0, false, '', false, '41|thinh', 1704464890);
INSERT INTO public.action VALUES (1520, 5, 7, 11, 21, 0, false, '', false, '41|thinh', 1704464890);
INSERT INTO public.action VALUES (1521, 16, 7, 11, 21, 0, false, '', false, '41|thinh', 1704464890);
INSERT INTO public.action VALUES (1522, 11, 11, 11, 21, 0, false, '', false, '41|thinh', 1704464905);
INSERT INTO public.action VALUES (1523, 14, 11, 11, 21, 0, false, '', false, '41|thinh', 1704464905);
INSERT INTO public.action VALUES (1524, 1, 11, 11, 21, 0, false, '', false, '41|thinh', 1704464905);
INSERT INTO public.action VALUES (402, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"217e5489936cc894c29132432bcdb3a402d853b4","Message":"Merge pull request ''render Action NLĐ'' (#4) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/4\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T14:44:10+07:00"},{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"}],"HeadCommit":{"Sha1":"217e5489936cc894c29132432bcdb3a402d853b4","Message":"Merge pull request ''render Action NLĐ'' (#4) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/4\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T14:44:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7780a4feeb614a456ab7396ad139fb4f27cf99c5...217e5489936cc894c29132432bcdb3a402d853b4","Len":2}', 1702367055);
INSERT INTO public.action VALUES (403, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"217e5489936cc894c29132432bcdb3a402d853b4","Message":"Merge pull request ''render Action NLĐ'' (#4) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/4\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T14:44:10+07:00"},{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"}],"HeadCommit":{"Sha1":"217e5489936cc894c29132432bcdb3a402d853b4","Message":"Merge pull request ''render Action NLĐ'' (#4) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/4\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T14:44:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7780a4feeb614a456ab7396ad139fb4f27cf99c5...217e5489936cc894c29132432bcdb3a402d853b4","Len":2}', 1702367055);
INSERT INTO public.action VALUES (404, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"217e5489936cc894c29132432bcdb3a402d853b4","Message":"Merge pull request ''render Action NLĐ'' (#4) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/4\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T14:44:10+07:00"},{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"}],"HeadCommit":{"Sha1":"217e5489936cc894c29132432bcdb3a402d853b4","Message":"Merge pull request ''render Action NLĐ'' (#4) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/4\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T14:44:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7780a4feeb614a456ab7396ad139fb4f27cf99c5...217e5489936cc894c29132432bcdb3a402d853b4","Len":2}', 1702367055);
INSERT INTO public.action VALUES (405, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"217e5489936cc894c29132432bcdb3a402d853b4","Message":"Merge pull request ''render Action NLĐ'' (#4) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/4\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T14:44:10+07:00"},{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"}],"HeadCommit":{"Sha1":"217e5489936cc894c29132432bcdb3a402d853b4","Message":"Merge pull request ''render Action NLĐ'' (#4) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/4\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T14:44:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7780a4feeb614a456ab7396ad139fb4f27cf99c5...217e5489936cc894c29132432bcdb3a402d853b4","Len":2}', 1702367055);
INSERT INTO public.action VALUES (406, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"}],"HeadCommit":{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/84df5778e5198b6e1fddebc0cac9a844f2cfbafd...fd360e903f0823d329f8f01976d950865c273eee","Len":1}', 1702372297);
INSERT INTO public.action VALUES (407, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"}],"HeadCommit":{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/84df5778e5198b6e1fddebc0cac9a844f2cfbafd...fd360e903f0823d329f8f01976d950865c273eee","Len":1}', 1702372297);
INSERT INTO public.action VALUES (410, 11, 7, 11, 21, 0, false, '', false, '5|update row nld', 1702372532);
INSERT INTO public.action VALUES (411, 14, 7, 11, 21, 0, false, '', false, '5|update row nld', 1702372532);
INSERT INTO public.action VALUES (412, 1, 7, 11, 21, 0, false, '', false, '5|update row nld', 1702372532);
INSERT INTO public.action VALUES (413, 5, 7, 11, 21, 0, false, '', false, '5|update row nld', 1702372532);
INSERT INTO public.action VALUES (414, 11, 11, 11, 21, 0, false, '', false, '5|update row nld', 1702372549);
INSERT INTO public.action VALUES (415, 14, 11, 11, 21, 0, false, '', false, '5|update row nld', 1702372549);
INSERT INTO public.action VALUES (408, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"}],"HeadCommit":{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/84df5778e5198b6e1fddebc0cac9a844f2cfbafd...fd360e903f0823d329f8f01976d950865c273eee","Len":1}', 1702372297);
INSERT INTO public.action VALUES (409, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"}],"HeadCommit":{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/84df5778e5198b6e1fddebc0cac9a844f2cfbafd...fd360e903f0823d329f8f01976d950865c273eee","Len":1}', 1702372297);
INSERT INTO public.action VALUES (1399, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"}],"HeadCommit":{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3d35753a6ca494289412e6435ad81b388dce8022...2423bb737a918b32bc59efe85c222a9f3128c7ab","Len":1}', 1704422918);
INSERT INTO public.action VALUES (1400, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"}],"HeadCommit":{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3d35753a6ca494289412e6435ad81b388dce8022...2423bb737a918b32bc59efe85c222a9f3128c7ab","Len":1}', 1704422918);
INSERT INTO public.action VALUES (1401, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"}],"HeadCommit":{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3d35753a6ca494289412e6435ad81b388dce8022...2423bb737a918b32bc59efe85c222a9f3128c7ab","Len":1}', 1704422918);
INSERT INTO public.action VALUES (1402, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"}],"HeadCommit":{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3d35753a6ca494289412e6435ad81b388dce8022...2423bb737a918b32bc59efe85c222a9f3128c7ab","Len":1}', 1704422918);
INSERT INTO public.action VALUES (1403, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"}],"HeadCommit":{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3d35753a6ca494289412e6435ad81b388dce8022...2423bb737a918b32bc59efe85c222a9f3128c7ab","Len":1}', 1704422918);
INSERT INTO public.action VALUES (1404, 11, 7, 11, 21, 0, false, '', false, '37|update bao cao', 1704422991);
INSERT INTO public.action VALUES (1405, 14, 7, 11, 21, 0, false, '', false, '37|update bao cao', 1704422991);
INSERT INTO public.action VALUES (1406, 1, 7, 11, 21, 0, false, '', false, '37|update bao cao', 1704422991);
INSERT INTO public.action VALUES (1407, 5, 7, 11, 21, 0, false, '', false, '37|update bao cao', 1704422991);
INSERT INTO public.action VALUES (1408, 16, 7, 11, 21, 0, false, '', false, '37|update bao cao', 1704422991);
INSERT INTO public.action VALUES (1525, 5, 11, 11, 21, 0, false, '', false, '41|thinh', 1704464905);
INSERT INTO public.action VALUES (1533, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"}],"HeadCommit":{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a560a9bc5fc9ec190342b2afbed08fc5a252c0a9...fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Len":1}', 1704525964);
INSERT INTO public.action VALUES (1739, 1, 7, 11, 21, 0, false, '', false, '52|update fontfamily', 1704561813);
INSERT INTO public.action VALUES (418, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Message":"Merge pull request ''update row nld'' (#5) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/5\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T16:15:44+07:00"},{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"}],"HeadCommit":{"Sha1":"30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Message":"Merge pull request ''update row nld'' (#5) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/5\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T16:15:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/217e5489936cc894c29132432bcdb3a402d853b4...30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Len":2}', 1702372551);
INSERT INTO public.action VALUES (419, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Message":"Merge pull request ''update row nld'' (#5) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/5\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T16:15:44+07:00"},{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"}],"HeadCommit":{"Sha1":"30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Message":"Merge pull request ''update row nld'' (#5) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/5\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T16:15:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/217e5489936cc894c29132432bcdb3a402d853b4...30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Len":2}', 1702372551);
INSERT INTO public.action VALUES (420, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Message":"Merge pull request ''update row nld'' (#5) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/5\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T16:15:44+07:00"},{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"}],"HeadCommit":{"Sha1":"30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Message":"Merge pull request ''update row nld'' (#5) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/5\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T16:15:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/217e5489936cc894c29132432bcdb3a402d853b4...30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Len":2}', 1702372551);
INSERT INTO public.action VALUES (421, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Message":"Merge pull request ''update row nld'' (#5) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/5\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T16:15:44+07:00"},{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"}],"HeadCommit":{"Sha1":"30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Message":"Merge pull request ''update row nld'' (#5) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/5\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T16:15:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/217e5489936cc894c29132432bcdb3a402d853b4...30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Len":2}', 1702372551);
INSERT INTO public.action VALUES (422, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"}],"HeadCommit":{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fd360e903f0823d329f8f01976d950865c273eee...7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Len":1}', 1702438323);
INSERT INTO public.action VALUES (423, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"}],"HeadCommit":{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fd360e903f0823d329f8f01976d950865c273eee...7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Len":1}', 1702438323);
INSERT INTO public.action VALUES (1062, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/202/head', false, '', 1704106839);
INSERT INTO public.action VALUES (1063, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/202/head', false, '', 1704106839);
INSERT INTO public.action VALUES (1064, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/202/head', false, '', 1704106839);
INSERT INTO public.action VALUES (1065, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/202/merge', false, '', 1704106839);
INSERT INTO public.action VALUES (1212, 5, 7, 11, 21, 0, false, '', false, '32|thinh', 1704270128);
INSERT INTO public.action VALUES (424, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"}],"HeadCommit":{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fd360e903f0823d329f8f01976d950865c273eee...7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Len":1}', 1702438323);
INSERT INTO public.action VALUES (425, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"}],"HeadCommit":{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fd360e903f0823d329f8f01976d950865c273eee...7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Len":1}', 1702438323);
INSERT INTO public.action VALUES (1409, 11, 11, 11, 21, 0, false, '', false, '37|update bao cao', 1704423006);
INSERT INTO public.action VALUES (1410, 14, 11, 11, 21, 0, false, '', false, '37|update bao cao', 1704423006);
INSERT INTO public.action VALUES (1411, 1, 11, 11, 21, 0, false, '', false, '37|update bao cao', 1704423006);
INSERT INTO public.action VALUES (1412, 5, 11, 11, 21, 0, false, '', false, '37|update bao cao', 1704423006);
INSERT INTO public.action VALUES (1413, 16, 11, 11, 21, 0, false, '', false, '37|update bao cao', 1704423006);
INSERT INTO public.action VALUES (1414, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Message":"Merge pull request ''update bao cao'' (#37) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/37\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T09:50:00+07:00"},{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"}],"HeadCommit":{"Sha1":"568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Message":"Merge pull request ''update bao cao'' (#37) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/37\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T09:50:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e06ac97be44f6830d36c492759a4857e370bcb1f...568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Len":2}', 1704423007);
INSERT INTO public.action VALUES (1415, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Message":"Merge pull request ''update bao cao'' (#37) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/37\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T09:50:00+07:00"},{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"}],"HeadCommit":{"Sha1":"568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Message":"Merge pull request ''update bao cao'' (#37) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/37\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T09:50:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e06ac97be44f6830d36c492759a4857e370bcb1f...568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Len":2}', 1704423007);
INSERT INTO public.action VALUES (1416, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Message":"Merge pull request ''update bao cao'' (#37) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/37\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T09:50:00+07:00"},{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"}],"HeadCommit":{"Sha1":"568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Message":"Merge pull request ''update bao cao'' (#37) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/37\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T09:50:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e06ac97be44f6830d36c492759a4857e370bcb1f...568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Len":2}', 1704423007);
INSERT INTO public.action VALUES (1417, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Message":"Merge pull request ''update bao cao'' (#37) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/37\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T09:50:00+07:00"},{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"}],"HeadCommit":{"Sha1":"568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Message":"Merge pull request ''update bao cao'' (#37) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/37\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T09:50:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e06ac97be44f6830d36c492759a4857e370bcb1f...568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Len":2}', 1704423007);
INSERT INTO public.action VALUES (434, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f6bf8a15c6b2454168641323bb68f95fd262bfdf","Message":"Merge pull request ''cmt QMTS + edit url KeHoachTuyenSinh'' (#6) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/6\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-13T10:37:56+07:00"},{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"}],"HeadCommit":{"Sha1":"f6bf8a15c6b2454168641323bb68f95fd262bfdf","Message":"Merge pull request ''cmt QMTS + edit url KeHoachTuyenSinh'' (#6) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/6\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-13T10:37:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c...f6bf8a15c6b2454168641323bb68f95fd262bfdf","Len":2}', 1702438682);
INSERT INTO public.action VALUES (435, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f6bf8a15c6b2454168641323bb68f95fd262bfdf","Message":"Merge pull request ''cmt QMTS + edit url KeHoachTuyenSinh'' (#6) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/6\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-13T10:37:56+07:00"},{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"}],"HeadCommit":{"Sha1":"f6bf8a15c6b2454168641323bb68f95fd262bfdf","Message":"Merge pull request ''cmt QMTS + edit url KeHoachTuyenSinh'' (#6) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/6\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-13T10:37:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c...f6bf8a15c6b2454168641323bb68f95fd262bfdf","Len":2}', 1702438682);
INSERT INTO public.action VALUES (436, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f6bf8a15c6b2454168641323bb68f95fd262bfdf","Message":"Merge pull request ''cmt QMTS + edit url KeHoachTuyenSinh'' (#6) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/6\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-13T10:37:56+07:00"},{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"}],"HeadCommit":{"Sha1":"f6bf8a15c6b2454168641323bb68f95fd262bfdf","Message":"Merge pull request ''cmt QMTS + edit url KeHoachTuyenSinh'' (#6) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/6\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-13T10:37:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c...f6bf8a15c6b2454168641323bb68f95fd262bfdf","Len":2}', 1702438682);
INSERT INTO public.action VALUES (437, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f6bf8a15c6b2454168641323bb68f95fd262bfdf","Message":"Merge pull request ''cmt QMTS + edit url KeHoachTuyenSinh'' (#6) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/6\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-13T10:37:56+07:00"},{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"}],"HeadCommit":{"Sha1":"f6bf8a15c6b2454168641323bb68f95fd262bfdf","Message":"Merge pull request ''cmt QMTS + edit url KeHoachTuyenSinh'' (#6) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/6\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-13T10:37:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c...f6bf8a15c6b2454168641323bb68f95fd262bfdf","Len":2}', 1702438682);
INSERT INTO public.action VALUES (438, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"}],"HeadCommit":{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7aa25777f9721eb11360ff4de9bc32ef1fb134d5...80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Len":1}', 1702544540);
INSERT INTO public.action VALUES (439, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"}],"HeadCommit":{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7aa25777f9721eb11360ff4de9bc32ef1fb134d5...80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Len":1}', 1702544540);
INSERT INTO public.action VALUES (1066, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/202/merge', false, '', 1704106839);
INSERT INTO public.action VALUES (1067, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/202/merge', false, '', 1704106839);
INSERT INTO public.action VALUES (1149, 11, 7, 11, 21, 0, false, '', false, '30|fix stlye detail khts', 1704247790);
INSERT INTO public.action VALUES (440, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"}],"HeadCommit":{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7aa25777f9721eb11360ff4de9bc32ef1fb134d5...80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Len":1}', 1702544540);
INSERT INTO public.action VALUES (441, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"}],"HeadCommit":{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7aa25777f9721eb11360ff4de9bc32ef1fb134d5...80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Len":1}', 1702544540);
INSERT INTO public.action VALUES (442, 11, 7, 11, 21, 0, false, '', false, '7|update add nam giang day', 1702545118);
INSERT INTO public.action VALUES (443, 14, 7, 11, 21, 0, false, '', false, '7|update add nam giang day', 1702545118);
INSERT INTO public.action VALUES (444, 1, 7, 11, 21, 0, false, '', false, '7|update add nam giang day', 1702545118);
INSERT INTO public.action VALUES (445, 5, 7, 11, 21, 0, false, '', false, '7|update add nam giang day', 1702545118);
INSERT INTO public.action VALUES (446, 11, 11, 11, 21, 0, false, '', false, '7|update add nam giang day', 1702545134);
INSERT INTO public.action VALUES (447, 14, 11, 11, 21, 0, false, '', false, '7|update add nam giang day', 1702545134);
INSERT INTO public.action VALUES (448, 1, 11, 11, 21, 0, false, '', false, '7|update add nam giang day', 1702545134);
INSERT INTO public.action VALUES (449, 5, 11, 11, 21, 0, false, '', false, '7|update add nam giang day', 1702545134);
INSERT INTO public.action VALUES (450, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"055af998354057d294f13a0acd4d47817548b2b1","Message":"Merge pull request ''update add nam giang day'' (#7) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/7\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-14T16:12:09+07:00"},{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"}],"HeadCommit":{"Sha1":"055af998354057d294f13a0acd4d47817548b2b1","Message":"Merge pull request ''update add nam giang day'' (#7) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/7\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-14T16:12:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f6bf8a15c6b2454168641323bb68f95fd262bfdf...055af998354057d294f13a0acd4d47817548b2b1","Len":2}', 1702545135);
INSERT INTO public.action VALUES (451, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"055af998354057d294f13a0acd4d47817548b2b1","Message":"Merge pull request ''update add nam giang day'' (#7) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/7\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-14T16:12:09+07:00"},{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"}],"HeadCommit":{"Sha1":"055af998354057d294f13a0acd4d47817548b2b1","Message":"Merge pull request ''update add nam giang day'' (#7) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/7\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-14T16:12:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f6bf8a15c6b2454168641323bb68f95fd262bfdf...055af998354057d294f13a0acd4d47817548b2b1","Len":2}', 1702545135);
INSERT INTO public.action VALUES (452, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"055af998354057d294f13a0acd4d47817548b2b1","Message":"Merge pull request ''update add nam giang day'' (#7) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/7\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-14T16:12:09+07:00"},{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"}],"HeadCommit":{"Sha1":"055af998354057d294f13a0acd4d47817548b2b1","Message":"Merge pull request ''update add nam giang day'' (#7) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/7\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-14T16:12:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f6bf8a15c6b2454168641323bb68f95fd262bfdf...055af998354057d294f13a0acd4d47817548b2b1","Len":2}', 1702545135);
INSERT INTO public.action VALUES (460, 13, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c174188ee719efcfbaebeb22fc03753852c8a659","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!198","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:30:05Z"},{"Sha1":"ea78adedf84db5434348395594d3b8ecc721519b","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix nav\n\nSee merge request binh-dinh-f1/binhdinhf1-website!197","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:29:42Z"},{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},{"Sha1":"b44feb6e234b984261d0c9fecb578dc42e9fdce5","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!196","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T07:55:56Z"},{"Sha1":"57e08bc912ae21a5fc51102fd6ef2d67848ed4ae","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor result\n\nSee merge request binh-dinh-f1/binhdinhf1-website!195","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T07:55:34Z"}],"HeadCommit":{"Sha1":"c174188ee719efcfbaebeb22fc03753852c8a659","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!198","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:30:05Z"},"CompareURL":"binh-dinh-f1/website/compare/c37db185a228c9beea92be14329ba448b218579e...c174188ee719efcfbaebeb22fc03753852c8a659","Len":9}', 1702548915);
INSERT INTO public.action VALUES (1068, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/195/head', false, '', 1704136238);
INSERT INTO public.action VALUES (1069, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/195/head', false, '', 1704136238);
INSERT INTO public.action VALUES (453, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"055af998354057d294f13a0acd4d47817548b2b1","Message":"Merge pull request ''update add nam giang day'' (#7) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/7\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-14T16:12:09+07:00"},{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"}],"HeadCommit":{"Sha1":"055af998354057d294f13a0acd4d47817548b2b1","Message":"Merge pull request ''update add nam giang day'' (#7) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/7\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-14T16:12:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f6bf8a15c6b2454168641323bb68f95fd262bfdf...055af998354057d294f13a0acd4d47817548b2b1","Len":2}', 1702545135);
INSERT INTO public.action VALUES (454, 13, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"ea78adedf84db5434348395594d3b8ecc721519b","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix nav\n\nSee merge request binh-dinh-f1/binhdinhf1-website!197","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:29:42Z"},{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},{"Sha1":"57e08bc912ae21a5fc51102fd6ef2d67848ed4ae","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor result\n\nSee merge request binh-dinh-f1/binhdinhf1-website!195","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T07:55:34Z"},{"Sha1":"2d2b7ccc02a0191656cbb69f4983c9730f57b5ff","Message":"refactor result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T14:54:49+07:00"},{"Sha1":"bfabfb284976833a97cec250f808e7bf566f82ac","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor drivers\n\nSee merge request binh-dinh-f1/binhdinhf1-website!193","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T03:53:41Z"}],"HeadCommit":{"Sha1":"ea78adedf84db5434348395594d3b8ecc721519b","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix nav\n\nSee merge request binh-dinh-f1/binhdinhf1-website!197","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:29:42Z"},"CompareURL":"binh-dinh-f1/website/compare/3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50...ea78adedf84db5434348395594d3b8ecc721519b","Len":6}', 1702548912);
INSERT INTO public.action VALUES (455, 1, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"ea78adedf84db5434348395594d3b8ecc721519b","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix nav\n\nSee merge request binh-dinh-f1/binhdinhf1-website!197","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:29:42Z"},{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},{"Sha1":"57e08bc912ae21a5fc51102fd6ef2d67848ed4ae","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor result\n\nSee merge request binh-dinh-f1/binhdinhf1-website!195","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T07:55:34Z"},{"Sha1":"2d2b7ccc02a0191656cbb69f4983c9730f57b5ff","Message":"refactor result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T14:54:49+07:00"},{"Sha1":"bfabfb284976833a97cec250f808e7bf566f82ac","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor drivers\n\nSee merge request binh-dinh-f1/binhdinhf1-website!193","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T03:53:41Z"}],"HeadCommit":{"Sha1":"ea78adedf84db5434348395594d3b8ecc721519b","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix nav\n\nSee merge request binh-dinh-f1/binhdinhf1-website!197","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:29:42Z"},"CompareURL":"binh-dinh-f1/website/compare/3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50...ea78adedf84db5434348395594d3b8ecc721519b","Len":6}', 1702548912);
INSERT INTO public.action VALUES (456, 4, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"ea78adedf84db5434348395594d3b8ecc721519b","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix nav\n\nSee merge request binh-dinh-f1/binhdinhf1-website!197","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:29:42Z"},{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},{"Sha1":"57e08bc912ae21a5fc51102fd6ef2d67848ed4ae","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor result\n\nSee merge request binh-dinh-f1/binhdinhf1-website!195","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T07:55:34Z"},{"Sha1":"2d2b7ccc02a0191656cbb69f4983c9730f57b5ff","Message":"refactor result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T14:54:49+07:00"},{"Sha1":"bfabfb284976833a97cec250f808e7bf566f82ac","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor drivers\n\nSee merge request binh-dinh-f1/binhdinhf1-website!193","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T03:53:41Z"}],"HeadCommit":{"Sha1":"ea78adedf84db5434348395594d3b8ecc721519b","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix nav\n\nSee merge request binh-dinh-f1/binhdinhf1-website!197","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:29:42Z"},"CompareURL":"binh-dinh-f1/website/compare/3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50...ea78adedf84db5434348395594d3b8ecc721519b","Len":6}', 1702548912);
INSERT INTO public.action VALUES (457, 13, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},{"Sha1":"2d2b7ccc02a0191656cbb69f4983c9730f57b5ff","Message":"refactor result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T14:54:49+07:00"},{"Sha1":"791cf007cbc34f6fd98bb0d110c2f2c0a2187e0b","Message":"refactor drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T10:52:27+07:00"}],"HeadCommit":{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},"CompareURL":"binh-dinh-f1/website/compare/6bd007213e90947266e4fe47035c9617e45b26ca...c0c886cfbca046565e32dd45d0071b61dccd26ab","Len":3}', 1702548913);
INSERT INTO public.action VALUES (458, 1, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},{"Sha1":"2d2b7ccc02a0191656cbb69f4983c9730f57b5ff","Message":"refactor result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T14:54:49+07:00"},{"Sha1":"791cf007cbc34f6fd98bb0d110c2f2c0a2187e0b","Message":"refactor drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T10:52:27+07:00"}],"HeadCommit":{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},"CompareURL":"binh-dinh-f1/website/compare/6bd007213e90947266e4fe47035c9617e45b26ca...c0c886cfbca046565e32dd45d0071b61dccd26ab","Len":3}', 1702548913);
INSERT INTO public.action VALUES (459, 4, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},{"Sha1":"2d2b7ccc02a0191656cbb69f4983c9730f57b5ff","Message":"refactor result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T14:54:49+07:00"},{"Sha1":"791cf007cbc34f6fd98bb0d110c2f2c0a2187e0b","Message":"refactor drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T10:52:27+07:00"}],"HeadCommit":{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},"CompareURL":"binh-dinh-f1/website/compare/6bd007213e90947266e4fe47035c9617e45b26ca...c0c886cfbca046565e32dd45d0071b61dccd26ab","Len":3}', 1702548913);
INSERT INTO public.action VALUES (467, 11, 7, 11, 21, 0, false, '', false, '8|up code', 1702610170);
INSERT INTO public.action VALUES (468, 14, 7, 11, 21, 0, false, '', false, '8|up code', 1702610170);
INSERT INTO public.action VALUES (469, 1, 7, 11, 21, 0, false, '', false, '8|up code', 1702610170);
INSERT INTO public.action VALUES (470, 5, 7, 11, 21, 0, false, '', false, '8|up code', 1702610170);
INSERT INTO public.action VALUES (471, 11, 11, 11, 21, 0, false, '', false, '8|up code', 1702610184);
INSERT INTO public.action VALUES (461, 1, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c174188ee719efcfbaebeb22fc03753852c8a659","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!198","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:30:05Z"},{"Sha1":"ea78adedf84db5434348395594d3b8ecc721519b","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix nav\n\nSee merge request binh-dinh-f1/binhdinhf1-website!197","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:29:42Z"},{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},{"Sha1":"b44feb6e234b984261d0c9fecb578dc42e9fdce5","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!196","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T07:55:56Z"},{"Sha1":"57e08bc912ae21a5fc51102fd6ef2d67848ed4ae","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor result\n\nSee merge request binh-dinh-f1/binhdinhf1-website!195","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T07:55:34Z"}],"HeadCommit":{"Sha1":"c174188ee719efcfbaebeb22fc03753852c8a659","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!198","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:30:05Z"},"CompareURL":"binh-dinh-f1/website/compare/c37db185a228c9beea92be14329ba448b218579e...c174188ee719efcfbaebeb22fc03753852c8a659","Len":9}', 1702548915);
INSERT INTO public.action VALUES (462, 4, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c174188ee719efcfbaebeb22fc03753852c8a659","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!198","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:30:05Z"},{"Sha1":"ea78adedf84db5434348395594d3b8ecc721519b","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix nav\n\nSee merge request binh-dinh-f1/binhdinhf1-website!197","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:29:42Z"},{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},{"Sha1":"b44feb6e234b984261d0c9fecb578dc42e9fdce5","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!196","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T07:55:56Z"},{"Sha1":"57e08bc912ae21a5fc51102fd6ef2d67848ed4ae","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor result\n\nSee merge request binh-dinh-f1/binhdinhf1-website!195","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T07:55:34Z"}],"HeadCommit":{"Sha1":"c174188ee719efcfbaebeb22fc03753852c8a659","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!198","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:30:05Z"},"CompareURL":"binh-dinh-f1/website/compare/c37db185a228c9beea92be14329ba448b218579e...c174188ee719efcfbaebeb22fc03753852c8a659","Len":9}', 1702548915);
INSERT INTO public.action VALUES (463, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"}],"HeadCommit":{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/80dddcc1a779ef72ce358f1fe885ef56d4ea9fec...35d9e420aca16b467c2f15fe29201a908f8a50e0","Len":1}', 1702609853);
INSERT INTO public.action VALUES (464, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"}],"HeadCommit":{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/80dddcc1a779ef72ce358f1fe885ef56d4ea9fec...35d9e420aca16b467c2f15fe29201a908f8a50e0","Len":1}', 1702609853);
INSERT INTO public.action VALUES (465, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"}],"HeadCommit":{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/80dddcc1a779ef72ce358f1fe885ef56d4ea9fec...35d9e420aca16b467c2f15fe29201a908f8a50e0","Len":1}', 1702609853);
INSERT INTO public.action VALUES (466, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"}],"HeadCommit":{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/80dddcc1a779ef72ce358f1fe885ef56d4ea9fec...35d9e420aca16b467c2f15fe29201a908f8a50e0","Len":1}', 1702609853);
INSERT INTO public.action VALUES (475, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Message":"Merge pull request ''up code'' (#8) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/8\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T10:16:19+07:00"},{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"}],"HeadCommit":{"Sha1":"2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Message":"Merge pull request ''up code'' (#8) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/8\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T10:16:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/055af998354057d294f13a0acd4d47817548b2b1...2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Len":2}', 1702610185);
INSERT INTO public.action VALUES (476, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Message":"Merge pull request ''up code'' (#8) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/8\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T10:16:19+07:00"},{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"}],"HeadCommit":{"Sha1":"2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Message":"Merge pull request ''up code'' (#8) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/8\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T10:16:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/055af998354057d294f13a0acd4d47817548b2b1...2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Len":2}', 1702610185);
INSERT INTO public.action VALUES (1070, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/195/head', false, '', 1704136238);
INSERT INTO public.action VALUES (477, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Message":"Merge pull request ''up code'' (#8) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/8\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T10:16:19+07:00"},{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"}],"HeadCommit":{"Sha1":"2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Message":"Merge pull request ''up code'' (#8) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/8\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T10:16:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/055af998354057d294f13a0acd4d47817548b2b1...2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Len":2}', 1702610185);
INSERT INTO public.action VALUES (478, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Message":"Merge pull request ''up code'' (#8) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/8\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T10:16:19+07:00"},{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"}],"HeadCommit":{"Sha1":"2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Message":"Merge pull request ''up code'' (#8) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/8\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T10:16:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/055af998354057d294f13a0acd4d47817548b2b1...2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Len":2}', 1702610185);
INSERT INTO public.action VALUES (479, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"}],"HeadCommit":{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/35d9e420aca16b467c2f15fe29201a908f8a50e0...27be87b9f58af8a7c1789a168c9f824d069a8c9b","Len":1}', 1702615193);
INSERT INTO public.action VALUES (480, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"}],"HeadCommit":{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/35d9e420aca16b467c2f15fe29201a908f8a50e0...27be87b9f58af8a7c1789a168c9f824d069a8c9b","Len":1}', 1702615193);
INSERT INTO public.action VALUES (481, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"}],"HeadCommit":{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/35d9e420aca16b467c2f15fe29201a908f8a50e0...27be87b9f58af8a7c1789a168c9f824d069a8c9b","Len":1}', 1702615193);
INSERT INTO public.action VALUES (482, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"}],"HeadCommit":{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/35d9e420aca16b467c2f15fe29201a908f8a50e0...27be87b9f58af8a7c1789a168c9f824d069a8c9b","Len":1}', 1702615193);
INSERT INTO public.action VALUES (1418, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Message":"Merge pull request ''update bao cao'' (#37) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/37\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T09:50:00+07:00"},{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"}],"HeadCommit":{"Sha1":"568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Message":"Merge pull request ''update bao cao'' (#37) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/37\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T09:50:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e06ac97be44f6830d36c492759a4857e370bcb1f...568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Len":2}', 1704423007);
INSERT INTO public.action VALUES (1537, 11, 7, 11, 21, 0, false, '', false, '42|add menu bao ccao thong ke', 1704526101);
INSERT INTO public.action VALUES (1538, 14, 7, 11, 21, 0, false, '', false, '42|add menu bao ccao thong ke', 1704526101);
INSERT INTO public.action VALUES (1539, 1, 7, 11, 21, 0, false, '', false, '42|add menu bao ccao thong ke', 1704526101);
INSERT INTO public.action VALUES (491, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9a2ac98f33fd96bee643e3f6f36f36575c197232","Message":"Merge pull request ''add PLTDDT'' (#9) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/9\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T11:41:42+07:00"},{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"}],"HeadCommit":{"Sha1":"9a2ac98f33fd96bee643e3f6f36f36575c197232","Message":"Merge pull request ''add PLTDDT'' (#9) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/9\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T11:41:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88...9a2ac98f33fd96bee643e3f6f36f36575c197232","Len":2}', 1702615308);
INSERT INTO public.action VALUES (492, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9a2ac98f33fd96bee643e3f6f36f36575c197232","Message":"Merge pull request ''add PLTDDT'' (#9) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/9\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T11:41:42+07:00"},{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"}],"HeadCommit":{"Sha1":"9a2ac98f33fd96bee643e3f6f36f36575c197232","Message":"Merge pull request ''add PLTDDT'' (#9) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/9\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T11:41:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88...9a2ac98f33fd96bee643e3f6f36f36575c197232","Len":2}', 1702615308);
INSERT INTO public.action VALUES (493, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9a2ac98f33fd96bee643e3f6f36f36575c197232","Message":"Merge pull request ''add PLTDDT'' (#9) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/9\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T11:41:42+07:00"},{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"}],"HeadCommit":{"Sha1":"9a2ac98f33fd96bee643e3f6f36f36575c197232","Message":"Merge pull request ''add PLTDDT'' (#9) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/9\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T11:41:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88...9a2ac98f33fd96bee643e3f6f36f36575c197232","Len":2}', 1702615308);
INSERT INTO public.action VALUES (494, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9a2ac98f33fd96bee643e3f6f36f36575c197232","Message":"Merge pull request ''add PLTDDT'' (#9) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/9\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T11:41:42+07:00"},{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"}],"HeadCommit":{"Sha1":"9a2ac98f33fd96bee643e3f6f36f36575c197232","Message":"Merge pull request ''add PLTDDT'' (#9) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/9\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T11:41:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88...9a2ac98f33fd96bee643e3f6f36f36575c197232","Len":2}', 1702615308);
INSERT INTO public.action VALUES (495, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"}],"HeadCommit":{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/27be87b9f58af8a7c1789a168c9f824d069a8c9b...a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Len":1}', 1702625940);
INSERT INTO public.action VALUES (496, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"}],"HeadCommit":{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/27be87b9f58af8a7c1789a168c9f824d069a8c9b...a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Len":1}', 1702625940);
INSERT INTO public.action VALUES (1071, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/195/merge', false, '', 1704136238);
INSERT INTO public.action VALUES (1072, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/195/merge', false, '', 1704136238);
INSERT INTO public.action VALUES (1073, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/195/merge', false, '', 1704136238);
INSERT INTO public.action VALUES (1074, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/196/head', false, '', 1704136238);
INSERT INTO public.action VALUES (1075, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/196/head', false, '', 1704136238);
INSERT INTO public.action VALUES (497, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"}],"HeadCommit":{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/27be87b9f58af8a7c1789a168c9f824d069a8c9b...a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Len":1}', 1702625940);
INSERT INTO public.action VALUES (498, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"}],"HeadCommit":{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/27be87b9f58af8a7c1789a168c9f824d069a8c9b...a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Len":1}', 1702625940);
INSERT INTO public.action VALUES (499, 11, 7, 11, 21, 0, false, '', false, '10|update form thong tin tot nghiep', 1702625969);
INSERT INTO public.action VALUES (500, 14, 7, 11, 21, 0, false, '', false, '10|update form thong tin tot nghiep', 1702625969);
INSERT INTO public.action VALUES (501, 1, 7, 11, 21, 0, false, '', false, '10|update form thong tin tot nghiep', 1702625969);
INSERT INTO public.action VALUES (502, 5, 7, 11, 21, 0, false, '', false, '10|update form thong tin tot nghiep', 1702625969);
INSERT INTO public.action VALUES (503, 11, 11, 11, 21, 0, false, '', false, '10|update form thong tin tot nghiep', 1702625986);
INSERT INTO public.action VALUES (504, 14, 11, 11, 21, 0, false, '', false, '10|update form thong tin tot nghiep', 1702625986);
INSERT INTO public.action VALUES (505, 1, 11, 11, 21, 0, false, '', false, '10|update form thong tin tot nghiep', 1702625986);
INSERT INTO public.action VALUES (506, 5, 11, 11, 21, 0, false, '', false, '10|update form thong tin tot nghiep', 1702625986);
INSERT INTO public.action VALUES (507, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Message":"Merge pull request ''update form thong tin tot nghiep'' (#10) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/10\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:39:40+07:00"},{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"}],"HeadCommit":{"Sha1":"d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Message":"Merge pull request ''update form thong tin tot nghiep'' (#10) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/10\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:39:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9a2ac98f33fd96bee643e3f6f36f36575c197232...d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Len":2}', 1702625987);
INSERT INTO public.action VALUES (508, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Message":"Merge pull request ''update form thong tin tot nghiep'' (#10) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/10\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:39:40+07:00"},{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"}],"HeadCommit":{"Sha1":"d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Message":"Merge pull request ''update form thong tin tot nghiep'' (#10) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/10\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:39:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9a2ac98f33fd96bee643e3f6f36f36575c197232...d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Len":2}', 1702625987);
INSERT INTO public.action VALUES (509, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Message":"Merge pull request ''update form thong tin tot nghiep'' (#10) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/10\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:39:40+07:00"},{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"}],"HeadCommit":{"Sha1":"d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Message":"Merge pull request ''update form thong tin tot nghiep'' (#10) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/10\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:39:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9a2ac98f33fd96bee643e3f6f36f36575c197232...d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Len":2}', 1702625987);
INSERT INTO public.action VALUES (596, 4, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"}],"HeadCommit":{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"},"CompareURL":"binh-dinh-f1/website/compare/25e70940cbc363af75aa74e553ca316c2fd5e6d8...50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Len":1}', 1702872312);
INSERT INTO public.action VALUES (1213, 16, 7, 11, 21, 0, false, '', false, '32|thinh', 1704270128);
INSERT INTO public.action VALUES (510, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Message":"Merge pull request ''update form thong tin tot nghiep'' (#10) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/10\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:39:40+07:00"},{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"}],"HeadCommit":{"Sha1":"d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Message":"Merge pull request ''update form thong tin tot nghiep'' (#10) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/10\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:39:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9a2ac98f33fd96bee643e3f6f36f36575c197232...d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Len":2}', 1702625987);
INSERT INTO public.action VALUES (511, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"}],"HeadCommit":{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2285a074737d3cd8e28b97aa2840e0a3742f0c3...d6c6ebc49d27881b73b00c41e305a4a05553ba59","Len":1}', 1702626114);
INSERT INTO public.action VALUES (512, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"}],"HeadCommit":{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2285a074737d3cd8e28b97aa2840e0a3742f0c3...d6c6ebc49d27881b73b00c41e305a4a05553ba59","Len":1}', 1702626114);
INSERT INTO public.action VALUES (513, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"}],"HeadCommit":{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2285a074737d3cd8e28b97aa2840e0a3742f0c3...d6c6ebc49d27881b73b00c41e305a4a05553ba59","Len":1}', 1702626114);
INSERT INTO public.action VALUES (514, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"}],"HeadCommit":{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2285a074737d3cd8e28b97aa2840e0a3742f0c3...d6c6ebc49d27881b73b00c41e305a4a05553ba59","Len":1}', 1702626114);
INSERT INTO public.action VALUES (515, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"}],"HeadCommit":{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d6c6ebc49d27881b73b00c41e305a4a05553ba59...0a16148c62a86e5f2259c49170108b92db418562","Len":1}', 1702626214);
INSERT INTO public.action VALUES (516, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"}],"HeadCommit":{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d6c6ebc49d27881b73b00c41e305a4a05553ba59...0a16148c62a86e5f2259c49170108b92db418562","Len":1}', 1702626214);
INSERT INTO public.action VALUES (517, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"}],"HeadCommit":{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d6c6ebc49d27881b73b00c41e305a4a05553ba59...0a16148c62a86e5f2259c49170108b92db418562","Len":1}', 1702626214);
INSERT INTO public.action VALUES (613, 1, 11, 11, 21, 0, false, '', false, '14|import nha giao', 1702883703);
INSERT INTO public.action VALUES (614, 5, 11, 11, 21, 0, false, '', false, '14|import nha giao', 1702883703);
INSERT INTO public.action VALUES (518, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"}],"HeadCommit":{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d6c6ebc49d27881b73b00c41e305a4a05553ba59...0a16148c62a86e5f2259c49170108b92db418562","Len":1}', 1702626214);
INSERT INTO public.action VALUES (519, 11, 7, 11, 21, 0, false, '', false, '11|thinh', 1702626228);
INSERT INTO public.action VALUES (520, 14, 7, 11, 21, 0, false, '', false, '11|thinh', 1702626228);
INSERT INTO public.action VALUES (521, 1, 7, 11, 21, 0, false, '', false, '11|thinh', 1702626228);
INSERT INTO public.action VALUES (522, 5, 7, 11, 21, 0, false, '', false, '11|thinh', 1702626228);
INSERT INTO public.action VALUES (1419, 2, 1, 2, 26, 0, false, '', false, '', 1704424148);
INSERT INTO public.action VALUES (1420, 12, 1, 2, 26, 0, false, '', false, '', 1704424148);
INSERT INTO public.action VALUES (1421, 5, 1, 2, 26, 0, false, '', false, '', 1704424148);
INSERT INTO public.action VALUES (1422, 1, 1, 2, 26, 0, false, '', false, '', 1704424148);
INSERT INTO public.action VALUES (1423, 15, 1, 2, 26, 0, false, '', false, '', 1704424148);
INSERT INTO public.action VALUES (1503, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ae5188bd0ff0b0618b16428867ff1d4c001a580b","Message":"Merge pull request ''add bao cao TN'' (#40) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/40\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T16:20:58+07:00"},{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"}],"HeadCommit":{"Sha1":"ae5188bd0ff0b0618b16428867ff1d4c001a580b","Message":"Merge pull request ''add bao cao TN'' (#40) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/40\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T16:20:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1511625e8a850a70547c23e491168c2ac465a5e6...ae5188bd0ff0b0618b16428867ff1d4c001a580b","Len":2}', 1704446464);
INSERT INTO public.action VALUES (1504, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ae5188bd0ff0b0618b16428867ff1d4c001a580b","Message":"Merge pull request ''add bao cao TN'' (#40) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/40\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T16:20:58+07:00"},{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"}],"HeadCommit":{"Sha1":"ae5188bd0ff0b0618b16428867ff1d4c001a580b","Message":"Merge pull request ''add bao cao TN'' (#40) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/40\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T16:20:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1511625e8a850a70547c23e491168c2ac465a5e6...ae5188bd0ff0b0618b16428867ff1d4c001a580b","Len":2}', 1704446464);
INSERT INTO public.action VALUES (1505, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ae5188bd0ff0b0618b16428867ff1d4c001a580b","Message":"Merge pull request ''add bao cao TN'' (#40) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/40\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T16:20:58+07:00"},{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"}],"HeadCommit":{"Sha1":"ae5188bd0ff0b0618b16428867ff1d4c001a580b","Message":"Merge pull request ''add bao cao TN'' (#40) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/40\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T16:20:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1511625e8a850a70547c23e491168c2ac465a5e6...ae5188bd0ff0b0618b16428867ff1d4c001a580b","Len":2}', 1704446464);
INSERT INTO public.action VALUES (1527, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1f5dbedbc5ac086f344c259aa6523dd859e55509","Message":"Merge pull request ''thinh'' (#41) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/41\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T21:28:19+07:00"},{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},{"Sha1":"de9a1bc215d3c5c6f82b7648e8a6e063da51500f","Message":"fix disable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:26:53+07:00"}],"HeadCommit":{"Sha1":"1f5dbedbc5ac086f344c259aa6523dd859e55509","Message":"Merge pull request ''thinh'' (#41) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/41\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T21:28:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ae5188bd0ff0b0618b16428867ff1d4c001a580b...1f5dbedbc5ac086f344c259aa6523dd859e55509","Len":3}', 1704464905);
INSERT INTO public.action VALUES (1540, 5, 7, 11, 21, 0, false, '', false, '42|add menu bao ccao thong ke', 1704526101);
INSERT INTO public.action VALUES (1541, 16, 7, 11, 21, 0, false, '', false, '42|add menu bao ccao thong ke', 1704526101);
INSERT INTO public.action VALUES (1740, 5, 7, 11, 21, 0, false, '', false, '52|update fontfamily', 1704561813);
INSERT INTO public.action VALUES (1741, 16, 7, 11, 21, 0, false, '', false, '52|update fontfamily', 1704561813);
INSERT INTO public.action VALUES (527, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c85f3e0ffd126207716573905e05bc00287cfe56","Message":"Merge pull request ''thinh'' (#11) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/11\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:44:02+07:00"},{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"},{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"}],"HeadCommit":{"Sha1":"c85f3e0ffd126207716573905e05bc00287cfe56","Message":"Merge pull request ''thinh'' (#11) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/11\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:44:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d10c1afe4570b2760d435db0b189e8d4beb9e1e4...c85f3e0ffd126207716573905e05bc00287cfe56","Len":3}', 1702626249);
INSERT INTO public.action VALUES (528, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c85f3e0ffd126207716573905e05bc00287cfe56","Message":"Merge pull request ''thinh'' (#11) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/11\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:44:02+07:00"},{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"},{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"}],"HeadCommit":{"Sha1":"c85f3e0ffd126207716573905e05bc00287cfe56","Message":"Merge pull request ''thinh'' (#11) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/11\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:44:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d10c1afe4570b2760d435db0b189e8d4beb9e1e4...c85f3e0ffd126207716573905e05bc00287cfe56","Len":3}', 1702626249);
INSERT INTO public.action VALUES (529, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c85f3e0ffd126207716573905e05bc00287cfe56","Message":"Merge pull request ''thinh'' (#11) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/11\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:44:02+07:00"},{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"},{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"}],"HeadCommit":{"Sha1":"c85f3e0ffd126207716573905e05bc00287cfe56","Message":"Merge pull request ''thinh'' (#11) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/11\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:44:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d10c1afe4570b2760d435db0b189e8d4beb9e1e4...c85f3e0ffd126207716573905e05bc00287cfe56","Len":3}', 1702626249);
INSERT INTO public.action VALUES (530, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c85f3e0ffd126207716573905e05bc00287cfe56","Message":"Merge pull request ''thinh'' (#11) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/11\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:44:02+07:00"},{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"},{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"}],"HeadCommit":{"Sha1":"c85f3e0ffd126207716573905e05bc00287cfe56","Message":"Merge pull request ''thinh'' (#11) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/11\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:44:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d10c1afe4570b2760d435db0b189e8d4beb9e1e4...c85f3e0ffd126207716573905e05bc00287cfe56","Len":3}', 1702626249);
INSERT INTO public.action VALUES (539, 13, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},{"Sha1":"3ceb73095145ef6396629ad604f41ea8f1d42bc1","Message":"refactor UI\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T14:49:46+07:00"}],"HeadCommit":{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},"CompareURL":"binh-dinh-f1/website/compare/c0c886cfbca046565e32dd45d0071b61dccd26ab...25e70940cbc363af75aa74e553ca316c2fd5e6d8","Len":2}', 1702637113);
INSERT INTO public.action VALUES (630, 5, 11, 11, 21, 0, false, '', false, '15|filter QuanHuyenViewSo + Json HS/SV', 1702887118);
INSERT INTO public.action VALUES (1076, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/196/head', false, '', 1704136238);
INSERT INTO public.action VALUES (531, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"cc919bad838f517188eff6a3300c159cd046d2cf","Message":"fix CapNhatTotNghiepModel\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T15:04:55+07:00"},{"Sha1":"87eaad5a553a9d8b5f9766f68f92a5a48c50f587","Message":"cập nhật tốt nghiệp\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T14:48:02+07:00"},{"Sha1":"c438d80a5c55401beb087b92684e1f0c95490966","Message":"fix kqts theo địa phương\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:50:17+07:00"},{"Sha1":"0417e80d0438d15327d3d76f84203ca22bb6b272","Message":"Merge branch ''main'' of gitlab.com:quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:29:14+07:00"},{"Sha1":"37d8b3b4a299b9e6117e4efd1baf3c30d1cd735b","Message":"kqua ts theo dia phuong\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:29:08+07:00"}],"HeadCommit":{"Sha1":"cc919bad838f517188eff6a3300c159cd046d2cf","Message":"fix CapNhatTotNghiepModel\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T15:04:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf...cc919bad838f517188eff6a3300c159cd046d2cf","Len":10}', 1702627512);
INSERT INTO public.action VALUES (532, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"cc919bad838f517188eff6a3300c159cd046d2cf","Message":"fix CapNhatTotNghiepModel\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T15:04:55+07:00"},{"Sha1":"87eaad5a553a9d8b5f9766f68f92a5a48c50f587","Message":"cập nhật tốt nghiệp\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T14:48:02+07:00"},{"Sha1":"c438d80a5c55401beb087b92684e1f0c95490966","Message":"fix kqts theo địa phương\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:50:17+07:00"},{"Sha1":"0417e80d0438d15327d3d76f84203ca22bb6b272","Message":"Merge branch ''main'' of gitlab.com:quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:29:14+07:00"},{"Sha1":"37d8b3b4a299b9e6117e4efd1baf3c30d1cd735b","Message":"kqua ts theo dia phuong\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:29:08+07:00"}],"HeadCommit":{"Sha1":"cc919bad838f517188eff6a3300c159cd046d2cf","Message":"fix CapNhatTotNghiepModel\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T15:04:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf...cc919bad838f517188eff6a3300c159cd046d2cf","Len":10}', 1702627512);
INSERT INTO public.action VALUES (533, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"cc919bad838f517188eff6a3300c159cd046d2cf","Message":"fix CapNhatTotNghiepModel\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T15:04:55+07:00"},{"Sha1":"87eaad5a553a9d8b5f9766f68f92a5a48c50f587","Message":"cập nhật tốt nghiệp\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T14:48:02+07:00"},{"Sha1":"c438d80a5c55401beb087b92684e1f0c95490966","Message":"fix kqts theo địa phương\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:50:17+07:00"},{"Sha1":"0417e80d0438d15327d3d76f84203ca22bb6b272","Message":"Merge branch ''main'' of gitlab.com:quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:29:14+07:00"},{"Sha1":"37d8b3b4a299b9e6117e4efd1baf3c30d1cd735b","Message":"kqua ts theo dia phuong\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:29:08+07:00"}],"HeadCommit":{"Sha1":"cc919bad838f517188eff6a3300c159cd046d2cf","Message":"fix CapNhatTotNghiepModel\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T15:04:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf...cc919bad838f517188eff6a3300c159cd046d2cf","Len":10}', 1702627512);
INSERT INTO public.action VALUES (534, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"cc919bad838f517188eff6a3300c159cd046d2cf","Message":"fix CapNhatTotNghiepModel\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T15:04:55+07:00"},{"Sha1":"87eaad5a553a9d8b5f9766f68f92a5a48c50f587","Message":"cập nhật tốt nghiệp\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T14:48:02+07:00"},{"Sha1":"c438d80a5c55401beb087b92684e1f0c95490966","Message":"fix kqts theo địa phương\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:50:17+07:00"},{"Sha1":"0417e80d0438d15327d3d76f84203ca22bb6b272","Message":"Merge branch ''main'' of gitlab.com:quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:29:14+07:00"},{"Sha1":"37d8b3b4a299b9e6117e4efd1baf3c30d1cd735b","Message":"kqua ts theo dia phuong\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:29:08+07:00"}],"HeadCommit":{"Sha1":"cc919bad838f517188eff6a3300c159cd046d2cf","Message":"fix CapNhatTotNghiepModel\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T15:04:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf...cc919bad838f517188eff6a3300c159cd046d2cf","Len":10}', 1702627512);
INSERT INTO public.action VALUES (643, 11, 11, 11, 21, 0, false, '', false, '16|fix giao dien', 1702887924);
INSERT INTO public.action VALUES (535, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"cc919bad838f517188eff6a3300c159cd046d2cf","Message":"fix CapNhatTotNghiepModel\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T15:04:55+07:00"},{"Sha1":"87eaad5a553a9d8b5f9766f68f92a5a48c50f587","Message":"cập nhật tốt nghiệp\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T14:48:02+07:00"},{"Sha1":"c438d80a5c55401beb087b92684e1f0c95490966","Message":"fix kqts theo địa phương\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:50:17+07:00"},{"Sha1":"0417e80d0438d15327d3d76f84203ca22bb6b272","Message":"Merge branch ''main'' of gitlab.com:quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:29:14+07:00"},{"Sha1":"37d8b3b4a299b9e6117e4efd1baf3c30d1cd735b","Message":"kqua ts theo dia phuong\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:29:08+07:00"}],"HeadCommit":{"Sha1":"cc919bad838f517188eff6a3300c159cd046d2cf","Message":"fix CapNhatTotNghiepModel\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T15:04:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf...cc919bad838f517188eff6a3300c159cd046d2cf","Len":10}', 1702627512);
INSERT INTO public.action VALUES (536, 13, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},{"Sha1":"a6d1a8e3b7fbf575ebfcbe3435d04092927101b0","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor UI\n\nSee merge request binh-dinh-f1/binhdinhf1-website!199","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T08:22:40Z"},{"Sha1":"3ceb73095145ef6396629ad604f41ea8f1d42bc1","Message":"refactor UI\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T14:49:46+07:00"}],"HeadCommit":{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},"CompareURL":"binh-dinh-f1/website/compare/ea78adedf84db5434348395594d3b8ecc721519b...d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Len":4}', 1702637111);
INSERT INTO public.action VALUES (537, 1, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},{"Sha1":"a6d1a8e3b7fbf575ebfcbe3435d04092927101b0","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor UI\n\nSee merge request binh-dinh-f1/binhdinhf1-website!199","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T08:22:40Z"},{"Sha1":"3ceb73095145ef6396629ad604f41ea8f1d42bc1","Message":"refactor UI\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T14:49:46+07:00"}],"HeadCommit":{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},"CompareURL":"binh-dinh-f1/website/compare/ea78adedf84db5434348395594d3b8ecc721519b...d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Len":4}', 1702637111);
INSERT INTO public.action VALUES (538, 4, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},{"Sha1":"a6d1a8e3b7fbf575ebfcbe3435d04092927101b0","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor UI\n\nSee merge request binh-dinh-f1/binhdinhf1-website!199","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T08:22:40Z"},{"Sha1":"3ceb73095145ef6396629ad604f41ea8f1d42bc1","Message":"refactor UI\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T14:49:46+07:00"}],"HeadCommit":{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},"CompareURL":"binh-dinh-f1/website/compare/ea78adedf84db5434348395594d3b8ecc721519b...d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Len":4}', 1702637111);
INSERT INTO public.action VALUES (644, 14, 11, 11, 21, 0, false, '', false, '16|fix giao dien', 1702887924);
INSERT INTO public.action VALUES (645, 1, 11, 11, 21, 0, false, '', false, '16|fix giao dien', 1702887924);
INSERT INTO public.action VALUES (646, 5, 11, 11, 21, 0, false, '', false, '16|fix giao dien', 1702887924);
INSERT INTO public.action VALUES (1077, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/196/merge', false, '', 1704136238);
INSERT INTO public.action VALUES (1078, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/196/merge', false, '', 1704136238);
INSERT INTO public.action VALUES (1079, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/196/merge', false, '', 1704136238);
INSERT INTO public.action VALUES (540, 1, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},{"Sha1":"3ceb73095145ef6396629ad604f41ea8f1d42bc1","Message":"refactor UI\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T14:49:46+07:00"}],"HeadCommit":{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},"CompareURL":"binh-dinh-f1/website/compare/c0c886cfbca046565e32dd45d0071b61dccd26ab...25e70940cbc363af75aa74e553ca316c2fd5e6d8","Len":2}', 1702637113);
INSERT INTO public.action VALUES (541, 4, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},{"Sha1":"3ceb73095145ef6396629ad604f41ea8f1d42bc1","Message":"refactor UI\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T14:49:46+07:00"}],"HeadCommit":{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},"CompareURL":"binh-dinh-f1/website/compare/c0c886cfbca046565e32dd45d0071b61dccd26ab...25e70940cbc363af75aa74e553ca316c2fd5e6d8","Len":2}', 1702637113);
INSERT INTO public.action VALUES (542, 13, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ef7305d1f95de9023a96f85ea36ae1411adc6f33","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!202","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:58Z"},{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},{"Sha1":"334252fd6692445d5b12ea09563cb6240f81ff99","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!200","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T08:23:11Z"},{"Sha1":"a6d1a8e3b7fbf575ebfcbe3435d04092927101b0","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor UI\n\nSee merge request binh-dinh-f1/binhdinhf1-website!199","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T08:22:40Z"}],"HeadCommit":{"Sha1":"ef7305d1f95de9023a96f85ea36ae1411adc6f33","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!202","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:58Z"},"CompareURL":"binh-dinh-f1/website/compare/c174188ee719efcfbaebeb22fc03753852c8a659...ef7305d1f95de9023a96f85ea36ae1411adc6f33","Len":6}', 1702637114);
INSERT INTO public.action VALUES (543, 1, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ef7305d1f95de9023a96f85ea36ae1411adc6f33","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!202","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:58Z"},{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},{"Sha1":"334252fd6692445d5b12ea09563cb6240f81ff99","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!200","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T08:23:11Z"},{"Sha1":"a6d1a8e3b7fbf575ebfcbe3435d04092927101b0","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor UI\n\nSee merge request binh-dinh-f1/binhdinhf1-website!199","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T08:22:40Z"}],"HeadCommit":{"Sha1":"ef7305d1f95de9023a96f85ea36ae1411adc6f33","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!202","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:58Z"},"CompareURL":"binh-dinh-f1/website/compare/c174188ee719efcfbaebeb22fc03753852c8a659...ef7305d1f95de9023a96f85ea36ae1411adc6f33","Len":6}', 1702637114);
INSERT INTO public.action VALUES (544, 4, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ef7305d1f95de9023a96f85ea36ae1411adc6f33","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!202","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:58Z"},{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},{"Sha1":"334252fd6692445d5b12ea09563cb6240f81ff99","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!200","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T08:23:11Z"},{"Sha1":"a6d1a8e3b7fbf575ebfcbe3435d04092927101b0","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor UI\n\nSee merge request binh-dinh-f1/binhdinhf1-website!199","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T08:22:40Z"}],"HeadCommit":{"Sha1":"ef7305d1f95de9023a96f85ea36ae1411adc6f33","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!202","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:58Z"},"CompareURL":"binh-dinh-f1/website/compare/c174188ee719efcfbaebeb22fc03753852c8a659...ef7305d1f95de9023a96f85ea36ae1411adc6f33","Len":6}', 1702637114);
INSERT INTO public.action VALUES (545, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"}],"HeadCommit":{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0a16148c62a86e5f2259c49170108b92db418562...7c1c5230c30732550a59bb531e670dc4b26c1ddc","Len":1}', 1702641287);
INSERT INTO public.action VALUES (546, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"}],"HeadCommit":{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0a16148c62a86e5f2259c49170108b92db418562...7c1c5230c30732550a59bb531e670dc4b26c1ddc","Len":1}', 1702641287);
INSERT INTO public.action VALUES (547, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"}],"HeadCommit":{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0a16148c62a86e5f2259c49170108b92db418562...7c1c5230c30732550a59bb531e670dc4b26c1ddc","Len":1}', 1702641287);
INSERT INTO public.action VALUES (659, 11, 11, 11, 21, 0, false, '', false, '17|fix bang du lieu import excel', 1702891942);
INSERT INTO public.action VALUES (660, 14, 11, 11, 21, 0, false, '', false, '17|fix bang du lieu import excel', 1702891942);
INSERT INTO public.action VALUES (661, 1, 11, 11, 21, 0, false, '', false, '17|fix bang du lieu import excel', 1702891942);
INSERT INTO public.action VALUES (662, 5, 11, 11, 21, 0, false, '', false, '17|fix bang du lieu import excel', 1702891942);
INSERT INTO public.action VALUES (1080, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/197/head', false, '', 1704136238);
INSERT INTO public.action VALUES (1081, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/197/head', false, '', 1704136238);
INSERT INTO public.action VALUES (1558, 14, 7, 11, 21, 0, false, '', false, '43|add file', 1704530829);
INSERT INTO public.action VALUES (548, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"}],"HeadCommit":{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0a16148c62a86e5f2259c49170108b92db418562...7c1c5230c30732550a59bb531e670dc4b26c1ddc","Len":1}', 1702641287);
INSERT INTO public.action VALUES (549, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"}],"HeadCommit":{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7c1c5230c30732550a59bb531e670dc4b26c1ddc...e49bfa1312e27644964f043a52ca88ea71a9be89","Len":1}', 1702641359);
INSERT INTO public.action VALUES (550, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"}],"HeadCommit":{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7c1c5230c30732550a59bb531e670dc4b26c1ddc...e49bfa1312e27644964f043a52ca88ea71a9be89","Len":1}', 1702641359);
INSERT INTO public.action VALUES (551, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"}],"HeadCommit":{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7c1c5230c30732550a59bb531e670dc4b26c1ddc...e49bfa1312e27644964f043a52ca88ea71a9be89","Len":1}', 1702641359);
INSERT INTO public.action VALUES (552, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"}],"HeadCommit":{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7c1c5230c30732550a59bb531e670dc4b26c1ddc...e49bfa1312e27644964f043a52ca88ea71a9be89","Len":1}', 1702641359);
INSERT INTO public.action VALUES (553, 11, 7, 11, 21, 0, false, '', false, '12|thinh', 1702641379);
INSERT INTO public.action VALUES (554, 14, 7, 11, 21, 0, false, '', false, '12|thinh', 1702641379);
INSERT INTO public.action VALUES (555, 1, 7, 11, 21, 0, false, '', false, '12|thinh', 1702641379);
INSERT INTO public.action VALUES (556, 5, 7, 11, 21, 0, false, '', false, '12|thinh', 1702641379);
INSERT INTO public.action VALUES (557, 11, 11, 11, 21, 0, false, '', false, '12|thinh', 1702641399);
INSERT INTO public.action VALUES (558, 14, 11, 11, 21, 0, false, '', false, '12|thinh', 1702641399);
INSERT INTO public.action VALUES (559, 1, 11, 11, 21, 0, false, '', false, '12|thinh', 1702641399);
INSERT INTO public.action VALUES (560, 5, 11, 11, 21, 0, false, '', false, '12|thinh', 1702641399);
INSERT INTO public.action VALUES (561, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Message":"Merge pull request ''thinh'' (#12) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/12\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T18:56:33+07:00"},{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"},{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"}],"HeadCommit":{"Sha1":"c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Message":"Merge pull request ''thinh'' (#12) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/12\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T18:56:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c85f3e0ffd126207716573905e05bc00287cfe56...c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Len":3}', 1702641400);
INSERT INTO public.action VALUES (571, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"}],"HeadCommit":{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e49bfa1312e27644964f043a52ca88ea71a9be89...31a4a839d6a2d78343031b022b5809584d8d7ca5","Len":1}', 1702641993);
INSERT INTO public.action VALUES (562, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Message":"Merge pull request ''thinh'' (#12) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/12\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T18:56:33+07:00"},{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"},{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"}],"HeadCommit":{"Sha1":"c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Message":"Merge pull request ''thinh'' (#12) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/12\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T18:56:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c85f3e0ffd126207716573905e05bc00287cfe56...c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Len":3}', 1702641400);
INSERT INTO public.action VALUES (563, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Message":"Merge pull request ''thinh'' (#12) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/12\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T18:56:33+07:00"},{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"},{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"}],"HeadCommit":{"Sha1":"c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Message":"Merge pull request ''thinh'' (#12) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/12\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T18:56:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c85f3e0ffd126207716573905e05bc00287cfe56...c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Len":3}', 1702641400);
INSERT INTO public.action VALUES (564, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Message":"Merge pull request ''thinh'' (#12) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/12\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T18:56:33+07:00"},{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"},{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"}],"HeadCommit":{"Sha1":"c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Message":"Merge pull request ''thinh'' (#12) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/12\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T18:56:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c85f3e0ffd126207716573905e05bc00287cfe56...c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Len":3}', 1702641400);
INSERT INTO public.action VALUES (565, 11, 7, 11, 21, 0, false, '', false, '13|fix tths', 1702641474);
INSERT INTO public.action VALUES (566, 14, 7, 11, 21, 0, false, '', false, '13|fix tths', 1702641474);
INSERT INTO public.action VALUES (567, 1, 7, 11, 21, 0, false, '', false, '13|fix tths', 1702641474);
INSERT INTO public.action VALUES (568, 5, 7, 11, 21, 0, false, '', false, '13|fix tths', 1702641474);
INSERT INTO public.action VALUES (569, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"}],"HeadCommit":{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e49bfa1312e27644964f043a52ca88ea71a9be89...31a4a839d6a2d78343031b022b5809584d8d7ca5","Len":1}', 1702641993);
INSERT INTO public.action VALUES (570, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"}],"HeadCommit":{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e49bfa1312e27644964f043a52ca88ea71a9be89...31a4a839d6a2d78343031b022b5809584d8d7ca5","Len":1}', 1702641993);
INSERT INTO public.action VALUES (807, 1, 18, 13, 20, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a","Message":"thanh lý\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-25T10:02:31+07:00"}],"HeadCommit":{"Sha1":"28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a","Message":"thanh lý\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-25T10:02:31+07:00"},"CompareURL":"binh-dinh-f1/webapi/compare/ccfdd34f3f3d17beddd582294bd246c0a822c5d8...28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a","Len":1}', 1703490039);
INSERT INTO public.action VALUES (572, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"}],"HeadCommit":{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e49bfa1312e27644964f043a52ca88ea71a9be89...31a4a839d6a2d78343031b022b5809584d8d7ca5","Len":1}', 1702641993);
INSERT INTO public.action VALUES (573, 11, 11, 11, 21, 0, false, '', false, '13|fix tths', 1702642085);
INSERT INTO public.action VALUES (574, 14, 11, 11, 21, 0, false, '', false, '13|fix tths', 1702642085);
INSERT INTO public.action VALUES (575, 1, 11, 11, 21, 0, false, '', false, '13|fix tths', 1702642085);
INSERT INTO public.action VALUES (576, 5, 11, 11, 21, 0, false, '', false, '13|fix tths', 1702642085);
INSERT INTO public.action VALUES (577, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"66267b2a985da79086f96d0013f67de1c3f6cdfc","Message":"Merge pull request ''fix tths'' (#13) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/13\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T19:07:59+07:00"},{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"}],"HeadCommit":{"Sha1":"66267b2a985da79086f96d0013f67de1c3f6cdfc","Message":"Merge pull request ''fix tths'' (#13) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/13\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T19:07:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac...66267b2a985da79086f96d0013f67de1c3f6cdfc","Len":2}', 1702642086);
INSERT INTO public.action VALUES (578, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"66267b2a985da79086f96d0013f67de1c3f6cdfc","Message":"Merge pull request ''fix tths'' (#13) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/13\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T19:07:59+07:00"},{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"}],"HeadCommit":{"Sha1":"66267b2a985da79086f96d0013f67de1c3f6cdfc","Message":"Merge pull request ''fix tths'' (#13) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/13\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T19:07:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac...66267b2a985da79086f96d0013f67de1c3f6cdfc","Len":2}', 1702642086);
INSERT INTO public.action VALUES (579, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"66267b2a985da79086f96d0013f67de1c3f6cdfc","Message":"Merge pull request ''fix tths'' (#13) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/13\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T19:07:59+07:00"},{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"}],"HeadCommit":{"Sha1":"66267b2a985da79086f96d0013f67de1c3f6cdfc","Message":"Merge pull request ''fix tths'' (#13) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/13\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T19:07:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac...66267b2a985da79086f96d0013f67de1c3f6cdfc","Len":2}', 1702642086);
INSERT INTO public.action VALUES (580, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"66267b2a985da79086f96d0013f67de1c3f6cdfc","Message":"Merge pull request ''fix tths'' (#13) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/13\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T19:07:59+07:00"},{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"}],"HeadCommit":{"Sha1":"66267b2a985da79086f96d0013f67de1c3f6cdfc","Message":"Merge pull request ''fix tths'' (#13) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/13\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T19:07:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac...66267b2a985da79086f96d0013f67de1c3f6cdfc","Len":2}', 1702642086);
INSERT INTO public.action VALUES (581, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9e6c3dd369ea03357e5f5d57a28793db179a36a2","Message":"add NgayTotNghiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:43:18+07:00"},{"Sha1":"a8d98108328f05daa43820054fbf7917c41afcaf","Message":"[NgayNhapHoc]\n[NgayTotNghiep]\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:41:59+07:00"}],"HeadCommit":{"Sha1":"9e6c3dd369ea03357e5f5d57a28793db179a36a2","Message":"add NgayTotNghiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:43:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/cc919bad838f517188eff6a3300c159cd046d2cf...9e6c3dd369ea03357e5f5d57a28793db179a36a2","Len":2}', 1702656912);
INSERT INTO public.action VALUES (1082, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/197/head', false, '', 1704136238);
INSERT INTO public.action VALUES (582, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9e6c3dd369ea03357e5f5d57a28793db179a36a2","Message":"add NgayTotNghiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:43:18+07:00"},{"Sha1":"a8d98108328f05daa43820054fbf7917c41afcaf","Message":"[NgayNhapHoc]\n[NgayTotNghiep]\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:41:59+07:00"}],"HeadCommit":{"Sha1":"9e6c3dd369ea03357e5f5d57a28793db179a36a2","Message":"add NgayTotNghiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:43:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/cc919bad838f517188eff6a3300c159cd046d2cf...9e6c3dd369ea03357e5f5d57a28793db179a36a2","Len":2}', 1702656912);
INSERT INTO public.action VALUES (583, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9e6c3dd369ea03357e5f5d57a28793db179a36a2","Message":"add NgayTotNghiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:43:18+07:00"},{"Sha1":"a8d98108328f05daa43820054fbf7917c41afcaf","Message":"[NgayNhapHoc]\n[NgayTotNghiep]\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:41:59+07:00"}],"HeadCommit":{"Sha1":"9e6c3dd369ea03357e5f5d57a28793db179a36a2","Message":"add NgayTotNghiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:43:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/cc919bad838f517188eff6a3300c159cd046d2cf...9e6c3dd369ea03357e5f5d57a28793db179a36a2","Len":2}', 1702656912);
INSERT INTO public.action VALUES (584, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9e6c3dd369ea03357e5f5d57a28793db179a36a2","Message":"add NgayTotNghiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:43:18+07:00"},{"Sha1":"a8d98108328f05daa43820054fbf7917c41afcaf","Message":"[NgayNhapHoc]\n[NgayTotNghiep]\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:41:59+07:00"}],"HeadCommit":{"Sha1":"9e6c3dd369ea03357e5f5d57a28793db179a36a2","Message":"add NgayTotNghiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:43:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/cc919bad838f517188eff6a3300c159cd046d2cf...9e6c3dd369ea03357e5f5d57a28793db179a36a2","Len":2}', 1702656912);
INSERT INTO public.action VALUES (585, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9e6c3dd369ea03357e5f5d57a28793db179a36a2","Message":"add NgayTotNghiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:43:18+07:00"},{"Sha1":"a8d98108328f05daa43820054fbf7917c41afcaf","Message":"[NgayNhapHoc]\n[NgayTotNghiep]\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:41:59+07:00"}],"HeadCommit":{"Sha1":"9e6c3dd369ea03357e5f5d57a28793db179a36a2","Message":"add NgayTotNghiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:43:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/cc919bad838f517188eff6a3300c159cd046d2cf...9e6c3dd369ea03357e5f5d57a28793db179a36a2","Len":2}', 1702656912);
INSERT INTO public.action VALUES (586, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c84f074f85bba95b3cbc51e81c715a707798419c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:35+07:00"},{"Sha1":"fbc2f37f60dcdaae29b437a474a7103f636e1723","Message":"import nhà giáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:30+07:00"}],"HeadCommit":{"Sha1":"c84f074f85bba95b3cbc51e81c715a707798419c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/9e6c3dd369ea03357e5f5d57a28793db179a36a2...c84f074f85bba95b3cbc51e81c715a707798419c","Len":2}', 1702833312);
INSERT INTO public.action VALUES (587, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c84f074f85bba95b3cbc51e81c715a707798419c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:35+07:00"},{"Sha1":"fbc2f37f60dcdaae29b437a474a7103f636e1723","Message":"import nhà giáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:30+07:00"}],"HeadCommit":{"Sha1":"c84f074f85bba95b3cbc51e81c715a707798419c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/9e6c3dd369ea03357e5f5d57a28793db179a36a2...c84f074f85bba95b3cbc51e81c715a707798419c","Len":2}', 1702833312);
INSERT INTO public.action VALUES (588, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c84f074f85bba95b3cbc51e81c715a707798419c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:35+07:00"},{"Sha1":"fbc2f37f60dcdaae29b437a474a7103f636e1723","Message":"import nhà giáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:30+07:00"}],"HeadCommit":{"Sha1":"c84f074f85bba95b3cbc51e81c715a707798419c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/9e6c3dd369ea03357e5f5d57a28793db179a36a2...c84f074f85bba95b3cbc51e81c715a707798419c","Len":2}', 1702833312);
INSERT INTO public.action VALUES (1083, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/197/merge', false, '', 1704136238);
INSERT INTO public.action VALUES (1559, 1, 7, 11, 21, 0, false, '', false, '43|add file', 1704530829);
INSERT INTO public.action VALUES (589, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c84f074f85bba95b3cbc51e81c715a707798419c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:35+07:00"},{"Sha1":"fbc2f37f60dcdaae29b437a474a7103f636e1723","Message":"import nhà giáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:30+07:00"}],"HeadCommit":{"Sha1":"c84f074f85bba95b3cbc51e81c715a707798419c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/9e6c3dd369ea03357e5f5d57a28793db179a36a2...c84f074f85bba95b3cbc51e81c715a707798419c","Len":2}', 1702833312);
INSERT INTO public.action VALUES (590, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c84f074f85bba95b3cbc51e81c715a707798419c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:35+07:00"},{"Sha1":"fbc2f37f60dcdaae29b437a474a7103f636e1723","Message":"import nhà giáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:30+07:00"}],"HeadCommit":{"Sha1":"c84f074f85bba95b3cbc51e81c715a707798419c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/9e6c3dd369ea03357e5f5d57a28793db179a36a2...c84f074f85bba95b3cbc51e81c715a707798419c","Len":2}', 1702833312);
INSERT INTO public.action VALUES (591, 13, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"}],"HeadCommit":{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},"CompareURL":"binh-dinh-f1/website/compare/d3aa3cc3766957108ad87dd140e32b05fd78c8d2...6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Len":2}', 1702872311);
INSERT INTO public.action VALUES (592, 1, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"}],"HeadCommit":{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},"CompareURL":"binh-dinh-f1/website/compare/d3aa3cc3766957108ad87dd140e32b05fd78c8d2...6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Len":2}', 1702872311);
INSERT INTO public.action VALUES (593, 4, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"}],"HeadCommit":{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},"CompareURL":"binh-dinh-f1/website/compare/d3aa3cc3766957108ad87dd140e32b05fd78c8d2...6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Len":2}', 1702872311);
INSERT INTO public.action VALUES (594, 13, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"}],"HeadCommit":{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"},"CompareURL":"binh-dinh-f1/website/compare/25e70940cbc363af75aa74e553ca316c2fd5e6d8...50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Len":1}', 1702872312);
INSERT INTO public.action VALUES (595, 1, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"}],"HeadCommit":{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"},"CompareURL":"binh-dinh-f1/website/compare/25e70940cbc363af75aa74e553ca316c2fd5e6d8...50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Len":1}', 1702872312);
INSERT INTO public.action VALUES (607, 11, 7, 11, 21, 0, false, '', false, '14|import nha giao', 1702883678);
INSERT INTO public.action VALUES (608, 14, 7, 11, 21, 0, false, '', false, '14|import nha giao', 1702883678);
INSERT INTO public.action VALUES (609, 1, 7, 11, 21, 0, false, '', false, '14|import nha giao', 1702883679);
INSERT INTO public.action VALUES (610, 5, 7, 11, 21, 0, false, '', false, '14|import nha giao', 1702883679);
INSERT INTO public.action VALUES (611, 11, 11, 11, 21, 0, false, '', false, '14|import nha giao', 1702883703);
INSERT INTO public.action VALUES (612, 14, 11, 11, 21, 0, false, '', false, '14|import nha giao', 1702883703);
INSERT INTO public.action VALUES (597, 13, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"80a264dfb3cdf734dfa3e7d342d44ee124af37eb","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!204","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:43:07Z"},{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"}],"HeadCommit":{"Sha1":"80a264dfb3cdf734dfa3e7d342d44ee124af37eb","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!204","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:43:07Z"},"CompareURL":"binh-dinh-f1/website/compare/ef7305d1f95de9023a96f85ea36ae1411adc6f33...80a264dfb3cdf734dfa3e7d342d44ee124af37eb","Len":3}', 1702872313);
INSERT INTO public.action VALUES (598, 1, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"80a264dfb3cdf734dfa3e7d342d44ee124af37eb","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!204","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:43:07Z"},{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"}],"HeadCommit":{"Sha1":"80a264dfb3cdf734dfa3e7d342d44ee124af37eb","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!204","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:43:07Z"},"CompareURL":"binh-dinh-f1/website/compare/ef7305d1f95de9023a96f85ea36ae1411adc6f33...80a264dfb3cdf734dfa3e7d342d44ee124af37eb","Len":3}', 1702872313);
INSERT INTO public.action VALUES (599, 4, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"80a264dfb3cdf734dfa3e7d342d44ee124af37eb","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!204","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:43:07Z"},{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"}],"HeadCommit":{"Sha1":"80a264dfb3cdf734dfa3e7d342d44ee124af37eb","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!204","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:43:07Z"},"CompareURL":"binh-dinh-f1/website/compare/ef7305d1f95de9023a96f85ea36ae1411adc6f33...80a264dfb3cdf734dfa3e7d342d44ee124af37eb","Len":3}', 1702872313);
INSERT INTO public.action VALUES (600, 13, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"4ca0b88dfe08c31473b5b977456d58ea124e9e18","Message":"fix: result 80%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-18T10:43:15+07:00"}],"HeadCommit":{"Sha1":"4ca0b88dfe08c31473b5b977456d58ea124e9e18","Message":"fix: result 80%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-18T10:43:15+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/62e440c85f8e271d4d19f042050cae22e70eb3b9...4ca0b88dfe08c31473b5b977456d58ea124e9e18","Len":1}', 1702872318);
INSERT INTO public.action VALUES (601, 1, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"4ca0b88dfe08c31473b5b977456d58ea124e9e18","Message":"fix: result 80%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-18T10:43:15+07:00"}],"HeadCommit":{"Sha1":"4ca0b88dfe08c31473b5b977456d58ea124e9e18","Message":"fix: result 80%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-18T10:43:15+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/62e440c85f8e271d4d19f042050cae22e70eb3b9...4ca0b88dfe08c31473b5b977456d58ea124e9e18","Len":1}', 1702872318);
INSERT INTO public.action VALUES (602, 4, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"4ca0b88dfe08c31473b5b977456d58ea124e9e18","Message":"fix: result 80%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-18T10:43:15+07:00"}],"HeadCommit":{"Sha1":"4ca0b88dfe08c31473b5b977456d58ea124e9e18","Message":"fix: result 80%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-18T10:43:15+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/62e440c85f8e271d4d19f042050cae22e70eb3b9...4ca0b88dfe08c31473b5b977456d58ea124e9e18","Len":1}', 1702872318);
INSERT INTO public.action VALUES (603, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"}],"HeadCommit":{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/31a4a839d6a2d78343031b022b5809584d8d7ca5...82dc42aa48c0d98347fec8bd387a63ed36c10c59","Len":1}', 1702883497);
INSERT INTO public.action VALUES (1084, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/197/merge', false, '', 1704136238);
INSERT INTO public.action VALUES (1085, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/197/merge', false, '', 1704136238);
INSERT INTO public.action VALUES (1560, 5, 7, 11, 21, 0, false, '', false, '43|add file', 1704530829);
INSERT INTO public.action VALUES (604, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"}],"HeadCommit":{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/31a4a839d6a2d78343031b022b5809584d8d7ca5...82dc42aa48c0d98347fec8bd387a63ed36c10c59","Len":1}', 1702883497);
INSERT INTO public.action VALUES (605, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"}],"HeadCommit":{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/31a4a839d6a2d78343031b022b5809584d8d7ca5...82dc42aa48c0d98347fec8bd387a63ed36c10c59","Len":1}', 1702883497);
INSERT INTO public.action VALUES (606, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"}],"HeadCommit":{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/31a4a839d6a2d78343031b022b5809584d8d7ca5...82dc42aa48c0d98347fec8bd387a63ed36c10c59","Len":1}', 1702883497);
INSERT INTO public.action VALUES (1424, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '', 1704425275);
INSERT INTO public.action VALUES (1425, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '', 1704425275);
INSERT INTO public.action VALUES (1426, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '', 1704425275);
INSERT INTO public.action VALUES (1427, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '', 1704425275);
INSERT INTO public.action VALUES (1428, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '', 1704425275);
INSERT INTO public.action VALUES (1429, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"00cf5f9186ddbc5f46a0cdf5a670a513403947b9","Message":"feat: firt commit\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-05T10:26:32+07:00"}],"HeadCommit":{"Sha1":"00cf5f9186ddbc5f46a0cdf5a670a513403947b9","Message":"feat: firt commit\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-05T10:26:32+07:00"},"CompareURL":"","Len":1}', 1704425275);
INSERT INTO public.action VALUES (1430, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"00cf5f9186ddbc5f46a0cdf5a670a513403947b9","Message":"feat: firt commit\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-05T10:26:32+07:00"}],"HeadCommit":{"Sha1":"00cf5f9186ddbc5f46a0cdf5a670a513403947b9","Message":"feat: firt commit\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-05T10:26:32+07:00"},"CompareURL":"","Len":1}', 1704425275);
INSERT INTO public.action VALUES (1431, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"00cf5f9186ddbc5f46a0cdf5a670a513403947b9","Message":"feat: firt commit\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-05T10:26:32+07:00"}],"HeadCommit":{"Sha1":"00cf5f9186ddbc5f46a0cdf5a670a513403947b9","Message":"feat: firt commit\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-05T10:26:32+07:00"},"CompareURL":"","Len":1}', 1704425275);
INSERT INTO public.action VALUES (1432, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"00cf5f9186ddbc5f46a0cdf5a670a513403947b9","Message":"feat: firt commit\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-05T10:26:32+07:00"}],"HeadCommit":{"Sha1":"00cf5f9186ddbc5f46a0cdf5a670a513403947b9","Message":"feat: firt commit\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-05T10:26:32+07:00"},"CompareURL":"","Len":1}', 1704425275);
INSERT INTO public.action VALUES (1433, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"00cf5f9186ddbc5f46a0cdf5a670a513403947b9","Message":"feat: firt commit\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-05T10:26:32+07:00"}],"HeadCommit":{"Sha1":"00cf5f9186ddbc5f46a0cdf5a670a513403947b9","Message":"feat: firt commit\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-05T10:26:32+07:00"},"CompareURL":"","Len":1}', 1704425275);
INSERT INTO public.action VALUES (1506, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},{"Sha1":"4c6108960c727a00b1b291d94a689d23b593185a","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:46+07:00"},{"Sha1":"3e9d79fd0a7005f6192e2be88f8926e55ce52fe6","Message":"DanhSachCoSoGDNNChuaNopKHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:29+07:00"},{"Sha1":"649483f6ed3de893b50ee3ff63f45b080f939a77","Message":"BÁO CÁO SỐ LIỆU TUYỂN SINH\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-05T10:04:39+07:00"},{"Sha1":"bae5336ab933f41a1ebf2e74cb5ff70a60fff513","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-04T14:23:05+07:00"}],"HeadCommit":{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7e2dfc497da7b826f8f961d7acc5a0574f73de12...3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Len":6}', 1704450041);
INSERT INTO public.action VALUES (1561, 16, 7, 11, 21, 0, false, '', false, '43|add file', 1704530829);
INSERT INTO public.action VALUES (1562, 11, 11, 11, 21, 0, false, '', false, '43|add file', 1704530897);
INSERT INTO public.action VALUES (1563, 14, 11, 11, 21, 0, false, '', false, '43|add file', 1704530897);
INSERT INTO public.action VALUES (1564, 1, 11, 11, 21, 0, false, '', false, '43|add file', 1704530897);
INSERT INTO public.action VALUES (1565, 5, 11, 11, 21, 0, false, '', false, '43|add file', 1704530897);
INSERT INTO public.action VALUES (1566, 16, 11, 11, 21, 0, false, '', false, '43|add file', 1704530897);
INSERT INTO public.action VALUES (615, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"527e8c8156be1324b94845f5d0a29fb74e03a75e","Message":"Merge pull request ''import nha giao'' (#14) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/14\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T14:14:58+07:00"},{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"}],"HeadCommit":{"Sha1":"527e8c8156be1324b94845f5d0a29fb74e03a75e","Message":"Merge pull request ''import nha giao'' (#14) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/14\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T14:14:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/66267b2a985da79086f96d0013f67de1c3f6cdfc...527e8c8156be1324b94845f5d0a29fb74e03a75e","Len":2}', 1702883704);
INSERT INTO public.action VALUES (616, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"527e8c8156be1324b94845f5d0a29fb74e03a75e","Message":"Merge pull request ''import nha giao'' (#14) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/14\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T14:14:58+07:00"},{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"}],"HeadCommit":{"Sha1":"527e8c8156be1324b94845f5d0a29fb74e03a75e","Message":"Merge pull request ''import nha giao'' (#14) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/14\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T14:14:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/66267b2a985da79086f96d0013f67de1c3f6cdfc...527e8c8156be1324b94845f5d0a29fb74e03a75e","Len":2}', 1702883704);
INSERT INTO public.action VALUES (617, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"527e8c8156be1324b94845f5d0a29fb74e03a75e","Message":"Merge pull request ''import nha giao'' (#14) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/14\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T14:14:58+07:00"},{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"}],"HeadCommit":{"Sha1":"527e8c8156be1324b94845f5d0a29fb74e03a75e","Message":"Merge pull request ''import nha giao'' (#14) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/14\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T14:14:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/66267b2a985da79086f96d0013f67de1c3f6cdfc...527e8c8156be1324b94845f5d0a29fb74e03a75e","Len":2}', 1702883704);
INSERT INTO public.action VALUES (618, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"527e8c8156be1324b94845f5d0a29fb74e03a75e","Message":"Merge pull request ''import nha giao'' (#14) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/14\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T14:14:58+07:00"},{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"}],"HeadCommit":{"Sha1":"527e8c8156be1324b94845f5d0a29fb74e03a75e","Message":"Merge pull request ''import nha giao'' (#14) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/14\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T14:14:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/66267b2a985da79086f96d0013f67de1c3f6cdfc...527e8c8156be1324b94845f5d0a29fb74e03a75e","Len":2}', 1702883704);
INSERT INTO public.action VALUES (619, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"}],"HeadCommit":{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/82dc42aa48c0d98347fec8bd387a63ed36c10c59...556555eb7a356a27df965b962179d6296fd85b80","Len":1}', 1702887041);
INSERT INTO public.action VALUES (620, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"}],"HeadCommit":{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/82dc42aa48c0d98347fec8bd387a63ed36c10c59...556555eb7a356a27df965b962179d6296fd85b80","Len":1}', 1702887041);
INSERT INTO public.action VALUES (1086, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/198/head', false, '', 1704136238);
INSERT INTO public.action VALUES (1087, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/198/head', false, '', 1704136238);
INSERT INTO public.action VALUES (1088, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/198/head', false, '', 1704136238);
INSERT INTO public.action VALUES (1089, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/198/merge', false, '', 1704136238);
INSERT INTO public.action VALUES (621, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"}],"HeadCommit":{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/82dc42aa48c0d98347fec8bd387a63ed36c10c59...556555eb7a356a27df965b962179d6296fd85b80","Len":1}', 1702887041);
INSERT INTO public.action VALUES (622, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"}],"HeadCommit":{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/82dc42aa48c0d98347fec8bd387a63ed36c10c59...556555eb7a356a27df965b962179d6296fd85b80","Len":1}', 1702887041);
INSERT INTO public.action VALUES (623, 11, 7, 11, 21, 0, false, '', false, '15|filter QuanHuyenViewSo + Json HS/SV', 1702887103);
INSERT INTO public.action VALUES (624, 14, 7, 11, 21, 0, false, '', false, '15|filter QuanHuyenViewSo + Json HS/SV', 1702887103);
INSERT INTO public.action VALUES (625, 1, 7, 11, 21, 0, false, '', false, '15|filter QuanHuyenViewSo + Json HS/SV', 1702887103);
INSERT INTO public.action VALUES (626, 5, 7, 11, 21, 0, false, '', false, '15|filter QuanHuyenViewSo + Json HS/SV', 1702887103);
INSERT INTO public.action VALUES (627, 11, 11, 11, 21, 0, false, '', false, '15|filter QuanHuyenViewSo + Json HS/SV', 1702887118);
INSERT INTO public.action VALUES (628, 14, 11, 11, 21, 0, false, '', false, '15|filter QuanHuyenViewSo + Json HS/SV', 1702887118);
INSERT INTO public.action VALUES (629, 1, 11, 11, 21, 0, false, '', false, '15|filter QuanHuyenViewSo + Json HS/SV', 1702887118);
INSERT INTO public.action VALUES (1434, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"}],"HeadCommit":{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2423bb737a918b32bc59efe85c222a9f3128c7ab...792bcff3d21254a02cb1dc70989f44cd948b788e","Len":1}', 1704428608);
INSERT INTO public.action VALUES (1435, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"}],"HeadCommit":{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2423bb737a918b32bc59efe85c222a9f3128c7ab...792bcff3d21254a02cb1dc70989f44cd948b788e","Len":1}', 1704428608);
INSERT INTO public.action VALUES (1436, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"}],"HeadCommit":{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2423bb737a918b32bc59efe85c222a9f3128c7ab...792bcff3d21254a02cb1dc70989f44cd948b788e","Len":1}', 1704428608);
INSERT INTO public.action VALUES (1437, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"}],"HeadCommit":{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2423bb737a918b32bc59efe85c222a9f3128c7ab...792bcff3d21254a02cb1dc70989f44cd948b788e","Len":1}', 1704428608);
INSERT INTO public.action VALUES (1438, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"}],"HeadCommit":{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2423bb737a918b32bc59efe85c222a9f3128c7ab...792bcff3d21254a02cb1dc70989f44cd948b788e","Len":1}', 1704428608);
INSERT INTO public.action VALUES (1439, 11, 7, 11, 21, 0, false, '', false, '38|update bao cao tuyen sinh', 1704428628);
INSERT INTO public.action VALUES (1440, 14, 7, 11, 21, 0, false, '', false, '38|update bao cao tuyen sinh', 1704428628);
INSERT INTO public.action VALUES (1441, 1, 7, 11, 21, 0, false, '', false, '38|update bao cao tuyen sinh', 1704428628);
INSERT INTO public.action VALUES (1442, 5, 7, 11, 21, 0, false, '', false, '38|update bao cao tuyen sinh', 1704428628);
INSERT INTO public.action VALUES (1443, 16, 7, 11, 21, 0, false, '', false, '38|update bao cao tuyen sinh', 1704428628);
INSERT INTO public.action VALUES (631, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"fe2b7e3827ed06be7308235f0d4289609621e3f5","Message":"Merge pull request ''filter QuanHuyenViewSo + Json HS/SV'' (#15) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/15\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:11:53+07:00"},{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"}],"HeadCommit":{"Sha1":"fe2b7e3827ed06be7308235f0d4289609621e3f5","Message":"Merge pull request ''filter QuanHuyenViewSo + Json HS/SV'' (#15) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/15\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:11:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/527e8c8156be1324b94845f5d0a29fb74e03a75e...fe2b7e3827ed06be7308235f0d4289609621e3f5","Len":2}', 1702887118);
INSERT INTO public.action VALUES (632, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"fe2b7e3827ed06be7308235f0d4289609621e3f5","Message":"Merge pull request ''filter QuanHuyenViewSo + Json HS/SV'' (#15) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/15\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:11:53+07:00"},{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"}],"HeadCommit":{"Sha1":"fe2b7e3827ed06be7308235f0d4289609621e3f5","Message":"Merge pull request ''filter QuanHuyenViewSo + Json HS/SV'' (#15) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/15\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:11:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/527e8c8156be1324b94845f5d0a29fb74e03a75e...fe2b7e3827ed06be7308235f0d4289609621e3f5","Len":2}', 1702887118);
INSERT INTO public.action VALUES (633, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"fe2b7e3827ed06be7308235f0d4289609621e3f5","Message":"Merge pull request ''filter QuanHuyenViewSo + Json HS/SV'' (#15) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/15\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:11:53+07:00"},{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"}],"HeadCommit":{"Sha1":"fe2b7e3827ed06be7308235f0d4289609621e3f5","Message":"Merge pull request ''filter QuanHuyenViewSo + Json HS/SV'' (#15) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/15\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:11:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/527e8c8156be1324b94845f5d0a29fb74e03a75e...fe2b7e3827ed06be7308235f0d4289609621e3f5","Len":2}', 1702887118);
INSERT INTO public.action VALUES (634, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"fe2b7e3827ed06be7308235f0d4289609621e3f5","Message":"Merge pull request ''filter QuanHuyenViewSo + Json HS/SV'' (#15) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/15\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:11:53+07:00"},{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"}],"HeadCommit":{"Sha1":"fe2b7e3827ed06be7308235f0d4289609621e3f5","Message":"Merge pull request ''filter QuanHuyenViewSo + Json HS/SV'' (#15) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/15\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:11:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/527e8c8156be1324b94845f5d0a29fb74e03a75e...fe2b7e3827ed06be7308235f0d4289609621e3f5","Len":2}', 1702887118);
INSERT INTO public.action VALUES (635, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"}],"HeadCommit":{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/556555eb7a356a27df965b962179d6296fd85b80...2354be6f98057d9f214ca12779f11e288b0fcd8b","Len":1}', 1702887876);
INSERT INTO public.action VALUES (636, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"}],"HeadCommit":{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/556555eb7a356a27df965b962179d6296fd85b80...2354be6f98057d9f214ca12779f11e288b0fcd8b","Len":1}', 1702887876);
INSERT INTO public.action VALUES (1090, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/198/merge', false, '', 1704136238);
INSERT INTO public.action VALUES (1091, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/198/merge', false, '', 1704136238);
INSERT INTO public.action VALUES (1150, 14, 7, 11, 21, 0, false, '', false, '30|fix stlye detail khts', 1704247790);
INSERT INTO public.action VALUES (1151, 1, 7, 11, 21, 0, false, '', false, '30|fix stlye detail khts', 1704247790);
INSERT INTO public.action VALUES (637, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"}],"HeadCommit":{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/556555eb7a356a27df965b962179d6296fd85b80...2354be6f98057d9f214ca12779f11e288b0fcd8b","Len":1}', 1702887876);
INSERT INTO public.action VALUES (638, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"}],"HeadCommit":{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/556555eb7a356a27df965b962179d6296fd85b80...2354be6f98057d9f214ca12779f11e288b0fcd8b","Len":1}', 1702887876);
INSERT INTO public.action VALUES (639, 11, 7, 11, 21, 0, false, '', false, '16|fix giao dien', 1702887895);
INSERT INTO public.action VALUES (640, 14, 7, 11, 21, 0, false, '', false, '16|fix giao dien', 1702887895);
INSERT INTO public.action VALUES (641, 1, 7, 11, 21, 0, false, '', false, '16|fix giao dien', 1702887895);
INSERT INTO public.action VALUES (642, 5, 7, 11, 21, 0, false, '', false, '16|fix giao dien', 1702887895);
INSERT INTO public.action VALUES (1444, 11, 11, 11, 21, 0, false, '', false, '38|update bao cao tuyen sinh', 1704428656);
INSERT INTO public.action VALUES (1445, 14, 11, 11, 21, 0, false, '', false, '38|update bao cao tuyen sinh', 1704428656);
INSERT INTO public.action VALUES (1446, 1, 11, 11, 21, 0, false, '', false, '38|update bao cao tuyen sinh', 1704428656);
INSERT INTO public.action VALUES (1447, 5, 11, 11, 21, 0, false, '', false, '38|update bao cao tuyen sinh', 1704428656);
INSERT INTO public.action VALUES (1448, 16, 11, 11, 21, 0, false, '', false, '38|update bao cao tuyen sinh', 1704428656);
INSERT INTO public.action VALUES (1507, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},{"Sha1":"4c6108960c727a00b1b291d94a689d23b593185a","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:46+07:00"},{"Sha1":"3e9d79fd0a7005f6192e2be88f8926e55ce52fe6","Message":"DanhSachCoSoGDNNChuaNopKHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:29+07:00"},{"Sha1":"649483f6ed3de893b50ee3ff63f45b080f939a77","Message":"BÁO CÁO SỐ LIỆU TUYỂN SINH\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-05T10:04:39+07:00"},{"Sha1":"bae5336ab933f41a1ebf2e74cb5ff70a60fff513","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-04T14:23:05+07:00"}],"HeadCommit":{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7e2dfc497da7b826f8f961d7acc5a0574f73de12...3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Len":6}', 1704450041);
INSERT INTO public.action VALUES (1508, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},{"Sha1":"4c6108960c727a00b1b291d94a689d23b593185a","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:46+07:00"},{"Sha1":"3e9d79fd0a7005f6192e2be88f8926e55ce52fe6","Message":"DanhSachCoSoGDNNChuaNopKHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:29+07:00"},{"Sha1":"649483f6ed3de893b50ee3ff63f45b080f939a77","Message":"BÁO CÁO SỐ LIỆU TUYỂN SINH\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-05T10:04:39+07:00"},{"Sha1":"bae5336ab933f41a1ebf2e74cb5ff70a60fff513","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-04T14:23:05+07:00"}],"HeadCommit":{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7e2dfc497da7b826f8f961d7acc5a0574f73de12...3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Len":6}', 1704450041);
INSERT INTO public.action VALUES (1509, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},{"Sha1":"4c6108960c727a00b1b291d94a689d23b593185a","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:46+07:00"},{"Sha1":"3e9d79fd0a7005f6192e2be88f8926e55ce52fe6","Message":"DanhSachCoSoGDNNChuaNopKHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:29+07:00"},{"Sha1":"649483f6ed3de893b50ee3ff63f45b080f939a77","Message":"BÁO CÁO SỐ LIỆU TUYỂN SINH\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-05T10:04:39+07:00"},{"Sha1":"bae5336ab933f41a1ebf2e74cb5ff70a60fff513","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-04T14:23:05+07:00"}],"HeadCommit":{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7e2dfc497da7b826f8f961d7acc5a0574f73de12...3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Len":6}', 1704450041);
INSERT INTO public.action VALUES (1510, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},{"Sha1":"4c6108960c727a00b1b291d94a689d23b593185a","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:46+07:00"},{"Sha1":"3e9d79fd0a7005f6192e2be88f8926e55ce52fe6","Message":"DanhSachCoSoGDNNChuaNopKHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:29+07:00"},{"Sha1":"649483f6ed3de893b50ee3ff63f45b080f939a77","Message":"BÁO CÁO SỐ LIỆU TUYỂN SINH\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-05T10:04:39+07:00"},{"Sha1":"bae5336ab933f41a1ebf2e74cb5ff70a60fff513","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-04T14:23:05+07:00"}],"HeadCommit":{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7e2dfc497da7b826f8f961d7acc5a0574f73de12...3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Len":6}', 1704450041);
INSERT INTO public.action VALUES (1511, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},{"Sha1":"4c6108960c727a00b1b291d94a689d23b593185a","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:46+07:00"},{"Sha1":"3e9d79fd0a7005f6192e2be88f8926e55ce52fe6","Message":"DanhSachCoSoGDNNChuaNopKHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:29+07:00"},{"Sha1":"649483f6ed3de893b50ee3ff63f45b080f939a77","Message":"BÁO CÁO SỐ LIỆU TUYỂN SINH\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-05T10:04:39+07:00"},{"Sha1":"bae5336ab933f41a1ebf2e74cb5ff70a60fff513","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-04T14:23:05+07:00"}],"HeadCommit":{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7e2dfc497da7b826f8f961d7acc5a0574f73de12...3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Len":6}', 1704450041);
INSERT INTO public.action VALUES (1657, 11, 7, 11, 21, 0, false, '', false, '48|fix height body item menu', 1704538841);
INSERT INTO public.action VALUES (1658, 14, 7, 11, 21, 0, false, '', false, '48|fix height body item menu', 1704538841);
INSERT INTO public.action VALUES (1659, 1, 7, 11, 21, 0, false, '', false, '48|fix height body item menu', 1704538841);
INSERT INTO public.action VALUES (1660, 5, 7, 11, 21, 0, false, '', false, '48|fix height body item menu', 1704538841);
INSERT INTO public.action VALUES (1661, 16, 7, 11, 21, 0, false, '', false, '48|fix height body item menu', 1704538841);
INSERT INTO public.action VALUES (1664, 1, 11, 11, 21, 0, false, '', false, '48|fix height body item menu', 1704538859);
INSERT INTO public.action VALUES (1665, 5, 11, 11, 21, 0, false, '', false, '48|fix height body item menu', 1704538859);
INSERT INTO public.action VALUES (647, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Message":"Merge pull request ''fix giao dien'' (#16) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/16\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:25:18+07:00"},{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"}],"HeadCommit":{"Sha1":"1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Message":"Merge pull request ''fix giao dien'' (#16) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/16\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:25:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fe2b7e3827ed06be7308235f0d4289609621e3f5...1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Len":2}', 1702887925);
INSERT INTO public.action VALUES (648, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Message":"Merge pull request ''fix giao dien'' (#16) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/16\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:25:18+07:00"},{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"}],"HeadCommit":{"Sha1":"1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Message":"Merge pull request ''fix giao dien'' (#16) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/16\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:25:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fe2b7e3827ed06be7308235f0d4289609621e3f5...1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Len":2}', 1702887925);
INSERT INTO public.action VALUES (649, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Message":"Merge pull request ''fix giao dien'' (#16) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/16\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:25:18+07:00"},{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"}],"HeadCommit":{"Sha1":"1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Message":"Merge pull request ''fix giao dien'' (#16) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/16\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:25:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fe2b7e3827ed06be7308235f0d4289609621e3f5...1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Len":2}', 1702887925);
INSERT INTO public.action VALUES (650, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Message":"Merge pull request ''fix giao dien'' (#16) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/16\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:25:18+07:00"},{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"}],"HeadCommit":{"Sha1":"1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Message":"Merge pull request ''fix giao dien'' (#16) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/16\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:25:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fe2b7e3827ed06be7308235f0d4289609621e3f5...1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Len":2}', 1702887925);
INSERT INTO public.action VALUES (651, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"}],"HeadCommit":{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2354be6f98057d9f214ca12779f11e288b0fcd8b...89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Len":1}', 1702891806);
INSERT INTO public.action VALUES (652, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"}],"HeadCommit":{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2354be6f98057d9f214ca12779f11e288b0fcd8b...89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Len":1}', 1702891806);
INSERT INTO public.action VALUES (1101, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/193/head', false, '', 1704165638);
INSERT INTO public.action VALUES (1102, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/193/head', false, '', 1704165638);
INSERT INTO public.action VALUES (1103, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/193/head', false, '', 1704165638);
INSERT INTO public.action VALUES (1104, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/193/merge', false, '', 1704165638);
INSERT INTO public.action VALUES (1105, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/193/merge', false, '', 1704165638);
INSERT INTO public.action VALUES (653, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"}],"HeadCommit":{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2354be6f98057d9f214ca12779f11e288b0fcd8b...89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Len":1}', 1702891806);
INSERT INTO public.action VALUES (654, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"}],"HeadCommit":{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2354be6f98057d9f214ca12779f11e288b0fcd8b...89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Len":1}', 1702891806);
INSERT INTO public.action VALUES (655, 11, 7, 11, 21, 0, false, '', false, '17|fix bang du lieu import excel', 1702891928);
INSERT INTO public.action VALUES (656, 14, 7, 11, 21, 0, false, '', false, '17|fix bang du lieu import excel', 1702891928);
INSERT INTO public.action VALUES (657, 1, 7, 11, 21, 0, false, '', false, '17|fix bang du lieu import excel', 1702891928);
INSERT INTO public.action VALUES (658, 5, 7, 11, 21, 0, false, '', false, '17|fix bang du lieu import excel', 1702891928);
INSERT INTO public.action VALUES (667, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"8ae65abe93410c86df067ef16255d670ae62d473","Message":"import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T16:15:02+07:00"},{"Sha1":"abef7b269ae9a9c510f2734c628249041b0c3d14","Message":"update import nhà giáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T09:23:34+07:00"}],"HeadCommit":{"Sha1":"8ae65abe93410c86df067ef16255d670ae62d473","Message":"import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T16:15:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c84f074f85bba95b3cbc51e81c715a707798419c...8ae65abe93410c86df067ef16255d670ae62d473","Len":2}', 1702892111);
INSERT INTO public.action VALUES (668, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"8ae65abe93410c86df067ef16255d670ae62d473","Message":"import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T16:15:02+07:00"},{"Sha1":"abef7b269ae9a9c510f2734c628249041b0c3d14","Message":"update import nhà giáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T09:23:34+07:00"}],"HeadCommit":{"Sha1":"8ae65abe93410c86df067ef16255d670ae62d473","Message":"import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T16:15:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c84f074f85bba95b3cbc51e81c715a707798419c...8ae65abe93410c86df067ef16255d670ae62d473","Len":2}', 1702892111);
INSERT INTO public.action VALUES (669, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"8ae65abe93410c86df067ef16255d670ae62d473","Message":"import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T16:15:02+07:00"},{"Sha1":"abef7b269ae9a9c510f2734c628249041b0c3d14","Message":"update import nhà giáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T09:23:34+07:00"}],"HeadCommit":{"Sha1":"8ae65abe93410c86df067ef16255d670ae62d473","Message":"import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T16:15:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c84f074f85bba95b3cbc51e81c715a707798419c...8ae65abe93410c86df067ef16255d670ae62d473","Len":2}', 1702892111);
INSERT INTO public.action VALUES (670, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"8ae65abe93410c86df067ef16255d670ae62d473","Message":"import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T16:15:02+07:00"},{"Sha1":"abef7b269ae9a9c510f2734c628249041b0c3d14","Message":"update import nhà giáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T09:23:34+07:00"}],"HeadCommit":{"Sha1":"8ae65abe93410c86df067ef16255d670ae62d473","Message":"import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T16:15:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c84f074f85bba95b3cbc51e81c715a707798419c...8ae65abe93410c86df067ef16255d670ae62d473","Len":2}', 1702892111);
INSERT INTO public.action VALUES (671, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"8ae65abe93410c86df067ef16255d670ae62d473","Message":"import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T16:15:02+07:00"},{"Sha1":"abef7b269ae9a9c510f2734c628249041b0c3d14","Message":"update import nhà giáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T09:23:34+07:00"}],"HeadCommit":{"Sha1":"8ae65abe93410c86df067ef16255d670ae62d473","Message":"import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T16:15:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c84f074f85bba95b3cbc51e81c715a707798419c...8ae65abe93410c86df067ef16255d670ae62d473","Len":2}', 1702892111);
INSERT INTO public.action VALUES (1662, 11, 11, 11, 21, 0, false, '', false, '48|fix height body item menu', 1704538859);
INSERT INTO public.action VALUES (1663, 14, 11, 11, 21, 0, false, '', false, '48|fix height body item menu', 1704538859);
INSERT INTO public.action VALUES (1794, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/181/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1795, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/181/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1796, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/181/head', false, '', 1704577239);
INSERT INTO public.action VALUES (663, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f138f26d87044c4d2801f8c46e13b0c2cc47c806","Message":"Merge pull request ''fix bang du lieu import excel'' (#17) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/17\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T16:32:17+07:00"},{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"}],"HeadCommit":{"Sha1":"f138f26d87044c4d2801f8c46e13b0c2cc47c806","Message":"Merge pull request ''fix bang du lieu import excel'' (#17) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/17\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T16:32:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1a92e62351728bac3c7f0afd5f4c8716ad0f3a53...f138f26d87044c4d2801f8c46e13b0c2cc47c806","Len":2}', 1702891943);
INSERT INTO public.action VALUES (664, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f138f26d87044c4d2801f8c46e13b0c2cc47c806","Message":"Merge pull request ''fix bang du lieu import excel'' (#17) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/17\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T16:32:17+07:00"},{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"}],"HeadCommit":{"Sha1":"f138f26d87044c4d2801f8c46e13b0c2cc47c806","Message":"Merge pull request ''fix bang du lieu import excel'' (#17) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/17\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T16:32:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1a92e62351728bac3c7f0afd5f4c8716ad0f3a53...f138f26d87044c4d2801f8c46e13b0c2cc47c806","Len":2}', 1702891943);
INSERT INTO public.action VALUES (665, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f138f26d87044c4d2801f8c46e13b0c2cc47c806","Message":"Merge pull request ''fix bang du lieu import excel'' (#17) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/17\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T16:32:17+07:00"},{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"}],"HeadCommit":{"Sha1":"f138f26d87044c4d2801f8c46e13b0c2cc47c806","Message":"Merge pull request ''fix bang du lieu import excel'' (#17) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/17\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T16:32:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1a92e62351728bac3c7f0afd5f4c8716ad0f3a53...f138f26d87044c4d2801f8c46e13b0c2cc47c806","Len":2}', 1702891943);
INSERT INTO public.action VALUES (666, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f138f26d87044c4d2801f8c46e13b0c2cc47c806","Message":"Merge pull request ''fix bang du lieu import excel'' (#17) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/17\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T16:32:17+07:00"},{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"}],"HeadCommit":{"Sha1":"f138f26d87044c4d2801f8c46e13b0c2cc47c806","Message":"Merge pull request ''fix bang du lieu import excel'' (#17) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/17\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T16:32:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1a92e62351728bac3c7f0afd5f4c8716ad0f3a53...f138f26d87044c4d2801f8c46e13b0c2cc47c806","Len":2}', 1702891943);
INSERT INTO public.action VALUES (672, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"23232f7d8ef875160cd81cdbb25f43554066067c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:43+07:00"},{"Sha1":"cad3b23dcab32eea0b2e269de80845a51acd3224","Message":"sửa cột db nhu cầu tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:08+07:00"}],"HeadCommit":{"Sha1":"23232f7d8ef875160cd81cdbb25f43554066067c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:43+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/8ae65abe93410c86df067ef16255d670ae62d473...23232f7d8ef875160cd81cdbb25f43554066067c","Len":2}', 1702921512);
INSERT INTO public.action VALUES (680, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"}],"HeadCommit":{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/89fb4ac9700c29f0ea1d3cb0712be070cf24839b...9a1dec6bb595188538ebfd75e033724bc73ed224","Len":1}', 1702950671);
INSERT INTO public.action VALUES (681, 11, 7, 11, 21, 0, false, '', false, '18|import hoc vien', 1702950876);
INSERT INTO public.action VALUES (682, 14, 7, 11, 21, 0, false, '', false, '18|import hoc vien', 1702950876);
INSERT INTO public.action VALUES (673, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"23232f7d8ef875160cd81cdbb25f43554066067c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:43+07:00"},{"Sha1":"cad3b23dcab32eea0b2e269de80845a51acd3224","Message":"sửa cột db nhu cầu tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:08+07:00"}],"HeadCommit":{"Sha1":"23232f7d8ef875160cd81cdbb25f43554066067c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:43+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/8ae65abe93410c86df067ef16255d670ae62d473...23232f7d8ef875160cd81cdbb25f43554066067c","Len":2}', 1702921512);
INSERT INTO public.action VALUES (674, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"23232f7d8ef875160cd81cdbb25f43554066067c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:43+07:00"},{"Sha1":"cad3b23dcab32eea0b2e269de80845a51acd3224","Message":"sửa cột db nhu cầu tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:08+07:00"}],"HeadCommit":{"Sha1":"23232f7d8ef875160cd81cdbb25f43554066067c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:43+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/8ae65abe93410c86df067ef16255d670ae62d473...23232f7d8ef875160cd81cdbb25f43554066067c","Len":2}', 1702921512);
INSERT INTO public.action VALUES (675, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"23232f7d8ef875160cd81cdbb25f43554066067c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:43+07:00"},{"Sha1":"cad3b23dcab32eea0b2e269de80845a51acd3224","Message":"sửa cột db nhu cầu tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:08+07:00"}],"HeadCommit":{"Sha1":"23232f7d8ef875160cd81cdbb25f43554066067c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:43+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/8ae65abe93410c86df067ef16255d670ae62d473...23232f7d8ef875160cd81cdbb25f43554066067c","Len":2}', 1702921512);
INSERT INTO public.action VALUES (676, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"23232f7d8ef875160cd81cdbb25f43554066067c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:43+07:00"},{"Sha1":"cad3b23dcab32eea0b2e269de80845a51acd3224","Message":"sửa cột db nhu cầu tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:08+07:00"}],"HeadCommit":{"Sha1":"23232f7d8ef875160cd81cdbb25f43554066067c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:43+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/8ae65abe93410c86df067ef16255d670ae62d473...23232f7d8ef875160cd81cdbb25f43554066067c","Len":2}', 1702921512);
INSERT INTO public.action VALUES (677, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"}],"HeadCommit":{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/89fb4ac9700c29f0ea1d3cb0712be070cf24839b...9a1dec6bb595188538ebfd75e033724bc73ed224","Len":1}', 1702950671);
INSERT INTO public.action VALUES (678, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"}],"HeadCommit":{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/89fb4ac9700c29f0ea1d3cb0712be070cf24839b...9a1dec6bb595188538ebfd75e033724bc73ed224","Len":1}', 1702950671);
INSERT INTO public.action VALUES (679, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"}],"HeadCommit":{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/89fb4ac9700c29f0ea1d3cb0712be070cf24839b...9a1dec6bb595188538ebfd75e033724bc73ed224","Len":1}', 1702950671);
INSERT INTO public.action VALUES (683, 1, 7, 11, 21, 0, false, '', false, '18|import hoc vien', 1702950876);
INSERT INTO public.action VALUES (684, 5, 7, 11, 21, 0, false, '', false, '18|import hoc vien', 1702950876);
INSERT INTO public.action VALUES (1106, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/193/merge', false, '', 1704165638);
INSERT INTO public.action VALUES (685, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"}],"HeadCommit":{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9a1dec6bb595188538ebfd75e033724bc73ed224...23ad4cdb757b62bcce915abba7bd545b47297107","Len":1}', 1702953378);
INSERT INTO public.action VALUES (686, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"}],"HeadCommit":{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9a1dec6bb595188538ebfd75e033724bc73ed224...23ad4cdb757b62bcce915abba7bd545b47297107","Len":1}', 1702953378);
INSERT INTO public.action VALUES (687, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"}],"HeadCommit":{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9a1dec6bb595188538ebfd75e033724bc73ed224...23ad4cdb757b62bcce915abba7bd545b47297107","Len":1}', 1702953378);
INSERT INTO public.action VALUES (688, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"}],"HeadCommit":{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9a1dec6bb595188538ebfd75e033724bc73ed224...23ad4cdb757b62bcce915abba7bd545b47297107","Len":1}', 1702953378);
INSERT INTO public.action VALUES (693, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1209d08a6048529593be305903318410955b3285","Message":"Merge pull request ''import hoc vien'' (#18) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/18\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T09:40:21+07:00"},{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"},{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"}],"HeadCommit":{"Sha1":"1209d08a6048529593be305903318410955b3285","Message":"Merge pull request ''import hoc vien'' (#18) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/18\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T09:40:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f138f26d87044c4d2801f8c46e13b0c2cc47c806...1209d08a6048529593be305903318410955b3285","Len":3}', 1702953627);
INSERT INTO public.action VALUES (694, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1209d08a6048529593be305903318410955b3285","Message":"Merge pull request ''import hoc vien'' (#18) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/18\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T09:40:21+07:00"},{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"},{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"}],"HeadCommit":{"Sha1":"1209d08a6048529593be305903318410955b3285","Message":"Merge pull request ''import hoc vien'' (#18) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/18\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T09:40:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f138f26d87044c4d2801f8c46e13b0c2cc47c806...1209d08a6048529593be305903318410955b3285","Len":3}', 1702953627);
INSERT INTO public.action VALUES (808, 4, 18, 13, 20, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a","Message":"thanh lý\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-25T10:02:31+07:00"}],"HeadCommit":{"Sha1":"28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a","Message":"thanh lý\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-25T10:02:31+07:00"},"CompareURL":"binh-dinh-f1/webapi/compare/ccfdd34f3f3d17beddd582294bd246c0a822c5d8...28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a","Len":1}', 1703490039);
INSERT INTO public.action VALUES (695, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1209d08a6048529593be305903318410955b3285","Message":"Merge pull request ''import hoc vien'' (#18) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/18\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T09:40:21+07:00"},{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"},{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"}],"HeadCommit":{"Sha1":"1209d08a6048529593be305903318410955b3285","Message":"Merge pull request ''import hoc vien'' (#18) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/18\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T09:40:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f138f26d87044c4d2801f8c46e13b0c2cc47c806...1209d08a6048529593be305903318410955b3285","Len":3}', 1702953627);
INSERT INTO public.action VALUES (696, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1209d08a6048529593be305903318410955b3285","Message":"Merge pull request ''import hoc vien'' (#18) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/18\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T09:40:21+07:00"},{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"},{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"}],"HeadCommit":{"Sha1":"1209d08a6048529593be305903318410955b3285","Message":"Merge pull request ''import hoc vien'' (#18) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/18\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T09:40:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f138f26d87044c4d2801f8c46e13b0c2cc47c806...1209d08a6048529593be305903318410955b3285","Len":3}', 1702953627);
INSERT INTO public.action VALUES (697, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"}],"HeadCommit":{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/23ad4cdb757b62bcce915abba7bd545b47297107...a20d3725ce75fdd102fd1a0e8865f08474e1c238","Len":1}', 1702957044);
INSERT INTO public.action VALUES (698, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"}],"HeadCommit":{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/23ad4cdb757b62bcce915abba7bd545b47297107...a20d3725ce75fdd102fd1a0e8865f08474e1c238","Len":1}', 1702957044);
INSERT INTO public.action VALUES (699, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"}],"HeadCommit":{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/23ad4cdb757b62bcce915abba7bd545b47297107...a20d3725ce75fdd102fd1a0e8865f08474e1c238","Len":1}', 1702957044);
INSERT INTO public.action VALUES (700, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"}],"HeadCommit":{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/23ad4cdb757b62bcce915abba7bd545b47297107...a20d3725ce75fdd102fd1a0e8865f08474e1c238","Len":1}', 1702957044);
INSERT INTO public.action VALUES (701, 11, 7, 11, 21, 0, false, '', false, '19|update file excel hoc vien', 1702957083);
INSERT INTO public.action VALUES (702, 14, 7, 11, 21, 0, false, '', false, '19|update file excel hoc vien', 1702957083);
INSERT INTO public.action VALUES (703, 1, 7, 11, 21, 0, false, '', false, '19|update file excel hoc vien', 1702957083);
INSERT INTO public.action VALUES (704, 5, 7, 11, 21, 0, false, '', false, '19|update file excel hoc vien', 1702957083);
INSERT INTO public.action VALUES (705, 11, 11, 11, 21, 0, false, '', false, '19|update file excel hoc vien', 1702957100);
INSERT INTO public.action VALUES (706, 14, 11, 11, 21, 0, false, '', false, '19|update file excel hoc vien', 1702957100);
INSERT INTO public.action VALUES (707, 1, 11, 11, 21, 0, false, '', false, '19|update file excel hoc vien', 1702957100);
INSERT INTO public.action VALUES (709, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Message":"Merge pull request ''update file excel hoc vien'' (#19) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/19\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T10:38:15+07:00"},{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"}],"HeadCommit":{"Sha1":"2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Message":"Merge pull request ''update file excel hoc vien'' (#19) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/19\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T10:38:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1209d08a6048529593be305903318410955b3285...2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Len":2}', 1702957102);
INSERT INTO public.action VALUES (710, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Message":"Merge pull request ''update file excel hoc vien'' (#19) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/19\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T10:38:15+07:00"},{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"}],"HeadCommit":{"Sha1":"2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Message":"Merge pull request ''update file excel hoc vien'' (#19) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/19\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T10:38:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1209d08a6048529593be305903318410955b3285...2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Len":2}', 1702957102);
INSERT INTO public.action VALUES (711, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Message":"Merge pull request ''update file excel hoc vien'' (#19) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/19\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T10:38:15+07:00"},{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"}],"HeadCommit":{"Sha1":"2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Message":"Merge pull request ''update file excel hoc vien'' (#19) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/19\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T10:38:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1209d08a6048529593be305903318410955b3285...2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Len":2}', 1702957102);
INSERT INTO public.action VALUES (712, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Message":"Merge pull request ''update file excel hoc vien'' (#19) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/19\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T10:38:15+07:00"},{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"}],"HeadCommit":{"Sha1":"2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Message":"Merge pull request ''update file excel hoc vien'' (#19) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/19\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T10:38:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1209d08a6048529593be305903318410955b3285...2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Len":2}', 1702957102);
INSERT INTO public.action VALUES (713, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"}],"HeadCommit":{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a20d3725ce75fdd102fd1a0e8865f08474e1c238...54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Len":1}', 1702958381);
INSERT INTO public.action VALUES (714, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"}],"HeadCommit":{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a20d3725ce75fdd102fd1a0e8865f08474e1c238...54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Len":1}', 1702958381);
INSERT INTO public.action VALUES (1107, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/194/head', false, '', 1704165638);
INSERT INTO public.action VALUES (1108, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/194/head', false, '', 1704165638);
INSERT INTO public.action VALUES (1109, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/194/head', false, '', 1704165638);
INSERT INTO public.action VALUES (1110, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/194/merge', false, '', 1704165638);
INSERT INTO public.action VALUES (715, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"}],"HeadCommit":{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a20d3725ce75fdd102fd1a0e8865f08474e1c238...54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Len":1}', 1702958381);
INSERT INTO public.action VALUES (716, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"}],"HeadCommit":{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a20d3725ce75fdd102fd1a0e8865f08474e1c238...54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Len":1}', 1702958381);
INSERT INTO public.action VALUES (717, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"}],"HeadCommit":{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/54006ffe91d0cbce8ecbefb4219b6b76f2b4477e...7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Len":1}', 1702958684);
INSERT INTO public.action VALUES (718, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"}],"HeadCommit":{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/54006ffe91d0cbce8ecbefb4219b6b76f2b4477e...7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Len":1}', 1702958684);
INSERT INTO public.action VALUES (719, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"}],"HeadCommit":{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/54006ffe91d0cbce8ecbefb4219b6b76f2b4477e...7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Len":1}', 1702958684);
INSERT INTO public.action VALUES (720, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"}],"HeadCommit":{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/54006ffe91d0cbce8ecbefb4219b6b76f2b4477e...7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Len":1}', 1702958684);
INSERT INTO public.action VALUES (729, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"0e5cba3900c9c08060dc1e082efb182ce1d2f261","Message":"Merge pull request ''thinh'' (#20) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/20\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T11:05:16+07:00"},{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"},{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"}],"HeadCommit":{"Sha1":"0e5cba3900c9c08060dc1e082efb182ce1d2f261","Message":"Merge pull request ''thinh'' (#20) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/20\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T11:05:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2b00bcf2f6390dd90b579b59e0b0d42e617a9529...0e5cba3900c9c08060dc1e082efb182ce1d2f261","Len":3}', 1702958723);
INSERT INTO public.action VALUES (842, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Message":"update\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T08:26:43+07:00"}],"HeadCommit":{"Sha1":"210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Message":"update\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T08:26:43+07:00"},"CompareURL":"Khieu-nai/backend/compare/5983684e9d5976b8a5f1c302230691faf2cbcd24...210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Len":1}', 1703640419);
INSERT INTO public.action VALUES (730, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"0e5cba3900c9c08060dc1e082efb182ce1d2f261","Message":"Merge pull request ''thinh'' (#20) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/20\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T11:05:16+07:00"},{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"},{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"}],"HeadCommit":{"Sha1":"0e5cba3900c9c08060dc1e082efb182ce1d2f261","Message":"Merge pull request ''thinh'' (#20) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/20\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T11:05:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2b00bcf2f6390dd90b579b59e0b0d42e617a9529...0e5cba3900c9c08060dc1e082efb182ce1d2f261","Len":3}', 1702958723);
INSERT INTO public.action VALUES (731, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"0e5cba3900c9c08060dc1e082efb182ce1d2f261","Message":"Merge pull request ''thinh'' (#20) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/20\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T11:05:16+07:00"},{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"},{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"}],"HeadCommit":{"Sha1":"0e5cba3900c9c08060dc1e082efb182ce1d2f261","Message":"Merge pull request ''thinh'' (#20) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/20\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T11:05:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2b00bcf2f6390dd90b579b59e0b0d42e617a9529...0e5cba3900c9c08060dc1e082efb182ce1d2f261","Len":3}', 1702958723);
INSERT INTO public.action VALUES (732, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"0e5cba3900c9c08060dc1e082efb182ce1d2f261","Message":"Merge pull request ''thinh'' (#20) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/20\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T11:05:16+07:00"},{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"},{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"}],"HeadCommit":{"Sha1":"0e5cba3900c9c08060dc1e082efb182ce1d2f261","Message":"Merge pull request ''thinh'' (#20) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/20\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T11:05:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2b00bcf2f6390dd90b579b59e0b0d42e617a9529...0e5cba3900c9c08060dc1e082efb182ce1d2f261","Len":3}', 1702958723);
INSERT INTO public.action VALUES (733, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"}],"HeadCommit":{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7875dd1cb94f8d0563fdadfac04da1e77ef997f9...e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Len":1}', 1702978960);
INSERT INTO public.action VALUES (734, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"}],"HeadCommit":{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7875dd1cb94f8d0563fdadfac04da1e77ef997f9...e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Len":1}', 1702978960);
INSERT INTO public.action VALUES (735, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"}],"HeadCommit":{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7875dd1cb94f8d0563fdadfac04da1e77ef997f9...e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Len":1}', 1702978960);
INSERT INTO public.action VALUES (858, 11, 7, 11, 21, 0, false, '', false, '24|add bao cao tuyen sinh', 1703733085);
INSERT INTO public.action VALUES (859, 14, 7, 11, 21, 0, false, '', false, '24|add bao cao tuyen sinh', 1703733085);
INSERT INTO public.action VALUES (736, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"}],"HeadCommit":{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7875dd1cb94f8d0563fdadfac04da1e77ef997f9...e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Len":1}', 1702978960);
INSERT INTO public.action VALUES (737, 11, 7, 11, 21, 0, false, '', false, '21|fix giao dien', 1702978975);
INSERT INTO public.action VALUES (738, 14, 7, 11, 21, 0, false, '', false, '21|fix giao dien', 1702978975);
INSERT INTO public.action VALUES (739, 1, 7, 11, 21, 0, false, '', false, '21|fix giao dien', 1702978975);
INSERT INTO public.action VALUES (740, 5, 7, 11, 21, 0, false, '', false, '21|fix giao dien', 1702978975);
INSERT INTO public.action VALUES (745, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"822137c72238e461cd8224bd07bf7738c907aeed","Message":"Merge pull request ''fix giao dien'' (#21) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/21\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T16:43:28+07:00"},{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"}],"HeadCommit":{"Sha1":"822137c72238e461cd8224bd07bf7738c907aeed","Message":"Merge pull request ''fix giao dien'' (#21) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/21\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T16:43:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0e5cba3900c9c08060dc1e082efb182ce1d2f261...822137c72238e461cd8224bd07bf7738c907aeed","Len":2}', 1702979016);
INSERT INTO public.action VALUES (746, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"822137c72238e461cd8224bd07bf7738c907aeed","Message":"Merge pull request ''fix giao dien'' (#21) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/21\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T16:43:28+07:00"},{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"}],"HeadCommit":{"Sha1":"822137c72238e461cd8224bd07bf7738c907aeed","Message":"Merge pull request ''fix giao dien'' (#21) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/21\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T16:43:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0e5cba3900c9c08060dc1e082efb182ce1d2f261...822137c72238e461cd8224bd07bf7738c907aeed","Len":2}', 1702979016);
INSERT INTO public.action VALUES (747, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"822137c72238e461cd8224bd07bf7738c907aeed","Message":"Merge pull request ''fix giao dien'' (#21) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/21\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T16:43:28+07:00"},{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"}],"HeadCommit":{"Sha1":"822137c72238e461cd8224bd07bf7738c907aeed","Message":"Merge pull request ''fix giao dien'' (#21) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/21\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T16:43:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0e5cba3900c9c08060dc1e082efb182ce1d2f261...822137c72238e461cd8224bd07bf7738c907aeed","Len":2}', 1702979016);
INSERT INTO public.action VALUES (748, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"822137c72238e461cd8224bd07bf7738c907aeed","Message":"Merge pull request ''fix giao dien'' (#21) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/21\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T16:43:28+07:00"},{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"}],"HeadCommit":{"Sha1":"822137c72238e461cd8224bd07bf7738c907aeed","Message":"Merge pull request ''fix giao dien'' (#21) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/21\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T16:43:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0e5cba3900c9c08060dc1e082efb182ce1d2f261...822137c72238e461cd8224bd07bf7738c907aeed","Len":2}', 1702979016);
INSERT INTO public.action VALUES (749, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"a2a88424d7babb49292acfd12b209f68ff9ac909","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:30+07:00"},{"Sha1":"139855ba53afe44af7d772d9324e855bd821eccd","Message":"thêm [TrinhDoDaoTao_Id] vào [QLLD_DM_NganhNgheDaoTao]\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:10+07:00"},{"Sha1":"6587ec16a88c7a57bdd899e650d5b954d81abea5","Message":"Merge branch ''main'' of gitlab.com:quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-19T16:37:22+07:00"},{"Sha1":"ed99851d68901fe8f65a48340cce579ad34e5016","Message":"complete baocaots theo ngành\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-19T16:37:16+07:00"},{"Sha1":"660119ead1a21161e8bb238002943484bcaedc81","Message":"update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-19T13:38:23+07:00"}],"HeadCommit":{"Sha1":"a2a88424d7babb49292acfd12b209f68ff9ac909","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/23232f7d8ef875160cd81cdbb25f43554066067c...a2a88424d7babb49292acfd12b209f68ff9ac909","Len":9}', 1702980312);
INSERT INTO public.action VALUES (860, 1, 7, 11, 21, 0, false, '', false, '24|add bao cao tuyen sinh', 1703733085);
INSERT INTO public.action VALUES (861, 5, 7, 11, 21, 0, false, '', false, '24|add bao cao tuyen sinh', 1703733085);
INSERT INTO public.action VALUES (750, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"a2a88424d7babb49292acfd12b209f68ff9ac909","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:30+07:00"},{"Sha1":"139855ba53afe44af7d772d9324e855bd821eccd","Message":"thêm [TrinhDoDaoTao_Id] vào [QLLD_DM_NganhNgheDaoTao]\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:10+07:00"},{"Sha1":"6587ec16a88c7a57bdd899e650d5b954d81abea5","Message":"Merge branch ''main'' of gitlab.com:quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-19T16:37:22+07:00"},{"Sha1":"ed99851d68901fe8f65a48340cce579ad34e5016","Message":"complete baocaots theo ngành\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-19T16:37:16+07:00"},{"Sha1":"660119ead1a21161e8bb238002943484bcaedc81","Message":"update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-19T13:38:23+07:00"}],"HeadCommit":{"Sha1":"a2a88424d7babb49292acfd12b209f68ff9ac909","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/23232f7d8ef875160cd81cdbb25f43554066067c...a2a88424d7babb49292acfd12b209f68ff9ac909","Len":9}', 1702980312);
INSERT INTO public.action VALUES (751, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"a2a88424d7babb49292acfd12b209f68ff9ac909","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:30+07:00"},{"Sha1":"139855ba53afe44af7d772d9324e855bd821eccd","Message":"thêm [TrinhDoDaoTao_Id] vào [QLLD_DM_NganhNgheDaoTao]\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:10+07:00"},{"Sha1":"6587ec16a88c7a57bdd899e650d5b954d81abea5","Message":"Merge branch ''main'' of gitlab.com:quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-19T16:37:22+07:00"},{"Sha1":"ed99851d68901fe8f65a48340cce579ad34e5016","Message":"complete baocaots theo ngành\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-19T16:37:16+07:00"},{"Sha1":"660119ead1a21161e8bb238002943484bcaedc81","Message":"update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-19T13:38:23+07:00"}],"HeadCommit":{"Sha1":"a2a88424d7babb49292acfd12b209f68ff9ac909","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/23232f7d8ef875160cd81cdbb25f43554066067c...a2a88424d7babb49292acfd12b209f68ff9ac909","Len":9}', 1702980312);
INSERT INTO public.action VALUES (752, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"a2a88424d7babb49292acfd12b209f68ff9ac909","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:30+07:00"},{"Sha1":"139855ba53afe44af7d772d9324e855bd821eccd","Message":"thêm [TrinhDoDaoTao_Id] vào [QLLD_DM_NganhNgheDaoTao]\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:10+07:00"},{"Sha1":"6587ec16a88c7a57bdd899e650d5b954d81abea5","Message":"Merge branch ''main'' of gitlab.com:quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-19T16:37:22+07:00"},{"Sha1":"ed99851d68901fe8f65a48340cce579ad34e5016","Message":"complete baocaots theo ngành\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-19T16:37:16+07:00"},{"Sha1":"660119ead1a21161e8bb238002943484bcaedc81","Message":"update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-19T13:38:23+07:00"}],"HeadCommit":{"Sha1":"a2a88424d7babb49292acfd12b209f68ff9ac909","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/23232f7d8ef875160cd81cdbb25f43554066067c...a2a88424d7babb49292acfd12b209f68ff9ac909","Len":9}', 1702980312);
INSERT INTO public.action VALUES (753, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"a2a88424d7babb49292acfd12b209f68ff9ac909","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:30+07:00"},{"Sha1":"139855ba53afe44af7d772d9324e855bd821eccd","Message":"thêm [TrinhDoDaoTao_Id] vào [QLLD_DM_NganhNgheDaoTao]\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:10+07:00"},{"Sha1":"6587ec16a88c7a57bdd899e650d5b954d81abea5","Message":"Merge branch ''main'' of gitlab.com:quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-19T16:37:22+07:00"},{"Sha1":"ed99851d68901fe8f65a48340cce579ad34e5016","Message":"complete baocaots theo ngành\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-19T16:37:16+07:00"},{"Sha1":"660119ead1a21161e8bb238002943484bcaedc81","Message":"update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-19T13:38:23+07:00"}],"HeadCommit":{"Sha1":"a2a88424d7babb49292acfd12b209f68ff9ac909","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/23232f7d8ef875160cd81cdbb25f43554066067c...a2a88424d7babb49292acfd12b209f68ff9ac909","Len":9}', 1702980312);
INSERT INTO public.action VALUES (754, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"93959f6f02a7afed1e27377a3dae580cb6af3fd1","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:48:24+07:00"},{"Sha1":"14bfa86414984fefecda22d13c5772d49c05b303","Message":"thêm LoaiCoSoGDNN\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:47:58+07:00"},{"Sha1":"7e087bfa66507baa0eb92a29f0ec2632374e95d1","Message":"update import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-20T10:46:08+07:00"}],"HeadCommit":{"Sha1":"93959f6f02a7afed1e27377a3dae580cb6af3fd1","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:48:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/a2a88424d7babb49292acfd12b209f68ff9ac909...93959f6f02a7afed1e27377a3dae580cb6af3fd1","Len":3}', 1703068511);
INSERT INTO public.action VALUES (755, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"93959f6f02a7afed1e27377a3dae580cb6af3fd1","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:48:24+07:00"},{"Sha1":"14bfa86414984fefecda22d13c5772d49c05b303","Message":"thêm LoaiCoSoGDNN\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:47:58+07:00"},{"Sha1":"7e087bfa66507baa0eb92a29f0ec2632374e95d1","Message":"update import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-20T10:46:08+07:00"}],"HeadCommit":{"Sha1":"93959f6f02a7afed1e27377a3dae580cb6af3fd1","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:48:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/a2a88424d7babb49292acfd12b209f68ff9ac909...93959f6f02a7afed1e27377a3dae580cb6af3fd1","Len":3}', 1703068511);
INSERT INTO public.action VALUES (761, 4, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"7f7b4d64ef3e449abfeae220da08befe754154f7","Message":"Merge branch ''hoang-dev'' into ''develop''\n\nchange social link\n\nSee merge request binh-dinh-f1/binhdinhf1-website!205","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:11:58Z"},{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"}],"HeadCommit":{"Sha1":"7f7b4d64ef3e449abfeae220da08befe754154f7","Message":"Merge branch ''hoang-dev'' into ''develop''\n\nchange social link\n\nSee merge request binh-dinh-f1/binhdinhf1-website!205","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:11:58Z"},"CompareURL":"binh-dinh-f1/website/compare/6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746...7f7b4d64ef3e449abfeae220da08befe754154f7","Len":2}', 1703078112);
INSERT INTO public.action VALUES (862, 11, 11, 11, 21, 0, false, '', false, '24|add bao cao tuyen sinh', 1703733100);
INSERT INTO public.action VALUES (756, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"93959f6f02a7afed1e27377a3dae580cb6af3fd1","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:48:24+07:00"},{"Sha1":"14bfa86414984fefecda22d13c5772d49c05b303","Message":"thêm LoaiCoSoGDNN\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:47:58+07:00"},{"Sha1":"7e087bfa66507baa0eb92a29f0ec2632374e95d1","Message":"update import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-20T10:46:08+07:00"}],"HeadCommit":{"Sha1":"93959f6f02a7afed1e27377a3dae580cb6af3fd1","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:48:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/a2a88424d7babb49292acfd12b209f68ff9ac909...93959f6f02a7afed1e27377a3dae580cb6af3fd1","Len":3}', 1703068511);
INSERT INTO public.action VALUES (757, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"93959f6f02a7afed1e27377a3dae580cb6af3fd1","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:48:24+07:00"},{"Sha1":"14bfa86414984fefecda22d13c5772d49c05b303","Message":"thêm LoaiCoSoGDNN\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:47:58+07:00"},{"Sha1":"7e087bfa66507baa0eb92a29f0ec2632374e95d1","Message":"update import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-20T10:46:08+07:00"}],"HeadCommit":{"Sha1":"93959f6f02a7afed1e27377a3dae580cb6af3fd1","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:48:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/a2a88424d7babb49292acfd12b209f68ff9ac909...93959f6f02a7afed1e27377a3dae580cb6af3fd1","Len":3}', 1703068511);
INSERT INTO public.action VALUES (758, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"93959f6f02a7afed1e27377a3dae580cb6af3fd1","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:48:24+07:00"},{"Sha1":"14bfa86414984fefecda22d13c5772d49c05b303","Message":"thêm LoaiCoSoGDNN\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:47:58+07:00"},{"Sha1":"7e087bfa66507baa0eb92a29f0ec2632374e95d1","Message":"update import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-20T10:46:08+07:00"}],"HeadCommit":{"Sha1":"93959f6f02a7afed1e27377a3dae580cb6af3fd1","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:48:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/a2a88424d7babb49292acfd12b209f68ff9ac909...93959f6f02a7afed1e27377a3dae580cb6af3fd1","Len":3}', 1703068511);
INSERT INTO public.action VALUES (759, 13, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"7f7b4d64ef3e449abfeae220da08befe754154f7","Message":"Merge branch ''hoang-dev'' into ''develop''\n\nchange social link\n\nSee merge request binh-dinh-f1/binhdinhf1-website!205","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:11:58Z"},{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"}],"HeadCommit":{"Sha1":"7f7b4d64ef3e449abfeae220da08befe754154f7","Message":"Merge branch ''hoang-dev'' into ''develop''\n\nchange social link\n\nSee merge request binh-dinh-f1/binhdinhf1-website!205","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:11:58Z"},"CompareURL":"binh-dinh-f1/website/compare/6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746...7f7b4d64ef3e449abfeae220da08befe754154f7","Len":2}', 1703078112);
INSERT INTO public.action VALUES (760, 1, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"7f7b4d64ef3e449abfeae220da08befe754154f7","Message":"Merge branch ''hoang-dev'' into ''develop''\n\nchange social link\n\nSee merge request binh-dinh-f1/binhdinhf1-website!205","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:11:58Z"},{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"}],"HeadCommit":{"Sha1":"7f7b4d64ef3e449abfeae220da08befe754154f7","Message":"Merge branch ''hoang-dev'' into ''develop''\n\nchange social link\n\nSee merge request binh-dinh-f1/binhdinhf1-website!205","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:11:58Z"},"CompareURL":"binh-dinh-f1/website/compare/6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746...7f7b4d64ef3e449abfeae220da08befe754154f7","Len":2}', 1703078112);
INSERT INTO public.action VALUES (772, 1, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"}],"HeadCommit":{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"},"CompareURL":"binh-dinh-f1/website/compare/50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f...cc2ba7984c996de04607bf68b220fba28c67ec04","Len":1}', 1703166312);
INSERT INTO public.action VALUES (863, 14, 11, 11, 21, 0, false, '', false, '24|add bao cao tuyen sinh', 1703733100);
INSERT INTO public.action VALUES (864, 1, 11, 11, 21, 0, false, '', false, '24|add bao cao tuyen sinh', 1703733100);
INSERT INTO public.action VALUES (762, 13, 18, 13, 17, 0, false, 'refs/heads/hoang-dev', false, '{"Commits":[{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"},{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"},{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"}],"HeadCommit":{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"},"CompareURL":"binh-dinh-f1/website/compare/fefd962a14f222715a4da9ffb70c72ba14bfed2e...0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Len":19}', 1703078113);
INSERT INTO public.action VALUES (763, 1, 18, 13, 17, 0, false, 'refs/heads/hoang-dev', false, '{"Commits":[{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"},{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"},{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"}],"HeadCommit":{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"},"CompareURL":"binh-dinh-f1/website/compare/fefd962a14f222715a4da9ffb70c72ba14bfed2e...0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Len":19}', 1703078113);
INSERT INTO public.action VALUES (764, 4, 18, 13, 17, 0, false, 'refs/heads/hoang-dev', false, '{"Commits":[{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"},{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"},{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"}],"HeadCommit":{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"},"CompareURL":"binh-dinh-f1/website/compare/fefd962a14f222715a4da9ffb70c72ba14bfed2e...0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Len":19}', 1703078113);
INSERT INTO public.action VALUES (765, 13, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e5b04ae2899501d610120d20c6da5105bbfde55d","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!206","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:12:12Z"},{"Sha1":"7f7b4d64ef3e449abfeae220da08befe754154f7","Message":"Merge branch ''hoang-dev'' into ''develop''\n\nchange social link\n\nSee merge request binh-dinh-f1/binhdinhf1-website!205","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:11:58Z"},{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"}],"HeadCommit":{"Sha1":"e5b04ae2899501d610120d20c6da5105bbfde55d","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!206","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:12:12Z"},"CompareURL":"binh-dinh-f1/website/compare/80a264dfb3cdf734dfa3e7d342d44ee124af37eb...e5b04ae2899501d610120d20c6da5105bbfde55d","Len":3}', 1703078115);
INSERT INTO public.action VALUES (865, 5, 11, 11, 21, 0, false, '', false, '24|add bao cao tuyen sinh', 1703733100);
INSERT INTO public.action VALUES (1111, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/194/merge', false, '', 1704165638);
INSERT INTO public.action VALUES (1112, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/194/merge', false, '', 1704165638);
INSERT INTO public.action VALUES (1152, 5, 7, 11, 21, 0, false, '', false, '30|fix stlye detail khts', 1704247790);
INSERT INTO public.action VALUES (766, 1, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e5b04ae2899501d610120d20c6da5105bbfde55d","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!206","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:12:12Z"},{"Sha1":"7f7b4d64ef3e449abfeae220da08befe754154f7","Message":"Merge branch ''hoang-dev'' into ''develop''\n\nchange social link\n\nSee merge request binh-dinh-f1/binhdinhf1-website!205","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:11:58Z"},{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"}],"HeadCommit":{"Sha1":"e5b04ae2899501d610120d20c6da5105bbfde55d","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!206","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:12:12Z"},"CompareURL":"binh-dinh-f1/website/compare/80a264dfb3cdf734dfa3e7d342d44ee124af37eb...e5b04ae2899501d610120d20c6da5105bbfde55d","Len":3}', 1703078115);
INSERT INTO public.action VALUES (767, 4, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e5b04ae2899501d610120d20c6da5105bbfde55d","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!206","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:12:12Z"},{"Sha1":"7f7b4d64ef3e449abfeae220da08befe754154f7","Message":"Merge branch ''hoang-dev'' into ''develop''\n\nchange social link\n\nSee merge request binh-dinh-f1/binhdinhf1-website!205","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:11:58Z"},{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"}],"HeadCommit":{"Sha1":"e5b04ae2899501d610120d20c6da5105bbfde55d","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!206","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:12:12Z"},"CompareURL":"binh-dinh-f1/website/compare/80a264dfb3cdf734dfa3e7d342d44ee124af37eb...e5b04ae2899501d610120d20c6da5105bbfde55d","Len":3}', 1703078115);
INSERT INTO public.action VALUES (768, 13, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor code\n\nSee merge request binh-dinh-f1/binhdinhf1-website!207","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:18Z"},{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"}],"HeadCommit":{"Sha1":"4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor code\n\nSee merge request binh-dinh-f1/binhdinhf1-website!207","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:18Z"},"CompareURL":"binh-dinh-f1/website/compare/7f7b4d64ef3e449abfeae220da08befe754154f7...4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Len":2}', 1703166311);
INSERT INTO public.action VALUES (769, 1, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor code\n\nSee merge request binh-dinh-f1/binhdinhf1-website!207","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:18Z"},{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"}],"HeadCommit":{"Sha1":"4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor code\n\nSee merge request binh-dinh-f1/binhdinhf1-website!207","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:18Z"},"CompareURL":"binh-dinh-f1/website/compare/7f7b4d64ef3e449abfeae220da08befe754154f7...4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Len":2}', 1703166311);
INSERT INTO public.action VALUES (770, 4, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor code\n\nSee merge request binh-dinh-f1/binhdinhf1-website!207","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:18Z"},{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"}],"HeadCommit":{"Sha1":"4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor code\n\nSee merge request binh-dinh-f1/binhdinhf1-website!207","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:18Z"},"CompareURL":"binh-dinh-f1/website/compare/7f7b4d64ef3e449abfeae220da08befe754154f7...4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Len":2}', 1703166311);
INSERT INTO public.action VALUES (771, 13, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"}],"HeadCommit":{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"},"CompareURL":"binh-dinh-f1/website/compare/50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f...cc2ba7984c996de04607bf68b220fba28c67ec04","Len":1}', 1703166312);
INSERT INTO public.action VALUES (883, 11, 11, 11, 21, 0, false, '', false, '25|update ThuongTru_ThonXom', 1703749813);
INSERT INTO public.action VALUES (884, 14, 11, 11, 21, 0, false, '', false, '25|update ThuongTru_ThonXom', 1703749813);
INSERT INTO public.action VALUES (885, 1, 11, 11, 21, 0, false, '', false, '25|update ThuongTru_ThonXom', 1703749813);
INSERT INTO public.action VALUES (886, 5, 11, 11, 21, 0, false, '', false, '25|update ThuongTru_ThonXom', 1703749813);
INSERT INTO public.action VALUES (774, 13, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"30bf4ff4756bcc1b7811d628cf042cb550e703ad","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!208","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:45Z"},{"Sha1":"4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor code\n\nSee merge request binh-dinh-f1/binhdinhf1-website!207","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:18Z"},{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"}],"HeadCommit":{"Sha1":"30bf4ff4756bcc1b7811d628cf042cb550e703ad","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!208","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:45Z"},"CompareURL":"binh-dinh-f1/website/compare/e5b04ae2899501d610120d20c6da5105bbfde55d...30bf4ff4756bcc1b7811d628cf042cb550e703ad","Len":3}', 1703166313);
INSERT INTO public.action VALUES (775, 1, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"30bf4ff4756bcc1b7811d628cf042cb550e703ad","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!208","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:45Z"},{"Sha1":"4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor code\n\nSee merge request binh-dinh-f1/binhdinhf1-website!207","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:18Z"},{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"}],"HeadCommit":{"Sha1":"30bf4ff4756bcc1b7811d628cf042cb550e703ad","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!208","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:45Z"},"CompareURL":"binh-dinh-f1/website/compare/e5b04ae2899501d610120d20c6da5105bbfde55d...30bf4ff4756bcc1b7811d628cf042cb550e703ad","Len":3}', 1703166313);
INSERT INTO public.action VALUES (776, 4, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"30bf4ff4756bcc1b7811d628cf042cb550e703ad","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!208","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:45Z"},{"Sha1":"4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor code\n\nSee merge request binh-dinh-f1/binhdinhf1-website!207","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:18Z"},{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"}],"HeadCommit":{"Sha1":"30bf4ff4756bcc1b7811d628cf042cb550e703ad","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!208","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:45Z"},"CompareURL":"binh-dinh-f1/website/compare/e5b04ae2899501d610120d20c6da5105bbfde55d...30bf4ff4756bcc1b7811d628cf042cb550e703ad","Len":3}', 1703166313);
INSERT INTO public.action VALUES (777, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"167c6384026573f73879f1a558f396a60dbe7ace","Message":"update DB\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:21:17+07:00"},{"Sha1":"c74471659d5d2cd722c2e96f2cc256f79ca1e3a9","Message":"update download excel\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T09:58:28+07:00"}],"HeadCommit":{"Sha1":"167c6384026573f73879f1a558f396a60dbe7ace","Message":"update DB\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:21:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/93959f6f02a7afed1e27377a3dae580cb6af3fd1...167c6384026573f73879f1a558f396a60dbe7ace","Len":2}', 1703215511);
INSERT INTO public.action VALUES (778, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"167c6384026573f73879f1a558f396a60dbe7ace","Message":"update DB\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:21:17+07:00"},{"Sha1":"c74471659d5d2cd722c2e96f2cc256f79ca1e3a9","Message":"update download excel\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T09:58:28+07:00"}],"HeadCommit":{"Sha1":"167c6384026573f73879f1a558f396a60dbe7ace","Message":"update DB\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:21:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/93959f6f02a7afed1e27377a3dae580cb6af3fd1...167c6384026573f73879f1a558f396a60dbe7ace","Len":2}', 1703215511);
INSERT INTO public.action VALUES (779, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"167c6384026573f73879f1a558f396a60dbe7ace","Message":"update DB\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:21:17+07:00"},{"Sha1":"c74471659d5d2cd722c2e96f2cc256f79ca1e3a9","Message":"update download excel\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T09:58:28+07:00"}],"HeadCommit":{"Sha1":"167c6384026573f73879f1a558f396a60dbe7ace","Message":"update DB\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:21:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/93959f6f02a7afed1e27377a3dae580cb6af3fd1...167c6384026573f73879f1a558f396a60dbe7ace","Len":2}', 1703215511);
INSERT INTO public.action VALUES (896, 11, 7, 11, 21, 0, false, '', false, '26|add chi tieu tuyen sinh', 1703757400);
INSERT INTO public.action VALUES (897, 14, 7, 11, 21, 0, false, '', false, '26|add chi tieu tuyen sinh', 1703757400);
INSERT INTO public.action VALUES (898, 1, 7, 11, 21, 0, false, '', false, '26|add chi tieu tuyen sinh', 1703757400);
INSERT INTO public.action VALUES (899, 5, 7, 11, 21, 0, false, '', false, '26|add chi tieu tuyen sinh', 1703757400);
INSERT INTO public.action VALUES (900, 16, 7, 11, 21, 0, false, '', false, '26|add chi tieu tuyen sinh', 1703757400);
INSERT INTO public.action VALUES (780, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"167c6384026573f73879f1a558f396a60dbe7ace","Message":"update DB\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:21:17+07:00"},{"Sha1":"c74471659d5d2cd722c2e96f2cc256f79ca1e3a9","Message":"update download excel\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T09:58:28+07:00"}],"HeadCommit":{"Sha1":"167c6384026573f73879f1a558f396a60dbe7ace","Message":"update DB\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:21:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/93959f6f02a7afed1e27377a3dae580cb6af3fd1...167c6384026573f73879f1a558f396a60dbe7ace","Len":2}', 1703215511);
INSERT INTO public.action VALUES (781, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"167c6384026573f73879f1a558f396a60dbe7ace","Message":"update DB\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:21:17+07:00"},{"Sha1":"c74471659d5d2cd722c2e96f2cc256f79ca1e3a9","Message":"update download excel\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T09:58:28+07:00"}],"HeadCommit":{"Sha1":"167c6384026573f73879f1a558f396a60dbe7ace","Message":"update DB\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:21:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/93959f6f02a7afed1e27377a3dae580cb6af3fd1...167c6384026573f73879f1a558f396a60dbe7ace","Len":2}', 1703215511);
INSERT INTO public.action VALUES (782, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"}],"HeadCommit":{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c...2550e5ce7cff1b368a88b7e07aa9191935e579bc","Len":1}', 1703217040);
INSERT INTO public.action VALUES (783, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"}],"HeadCommit":{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c...2550e5ce7cff1b368a88b7e07aa9191935e579bc","Len":1}', 1703217040);
INSERT INTO public.action VALUES (784, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"}],"HeadCommit":{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c...2550e5ce7cff1b368a88b7e07aa9191935e579bc","Len":1}', 1703217040);
INSERT INTO public.action VALUES (785, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"}],"HeadCommit":{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c...2550e5ce7cff1b368a88b7e07aa9191935e579bc","Len":1}', 1703217040);
INSERT INTO public.action VALUES (786, 11, 7, 11, 21, 0, false, '', false, '22|update QLLD_NhuCauTuyenSinh', 1703217100);
INSERT INTO public.action VALUES (787, 14, 7, 11, 21, 0, false, '', false, '22|update QLLD_NhuCauTuyenSinh', 1703217100);
INSERT INTO public.action VALUES (788, 1, 7, 11, 21, 0, false, '', false, '22|update QLLD_NhuCauTuyenSinh', 1703217100);
INSERT INTO public.action VALUES (789, 5, 7, 11, 21, 0, false, '', false, '22|update QLLD_NhuCauTuyenSinh', 1703217100);
INSERT INTO public.action VALUES (790, 11, 11, 11, 21, 0, false, '', false, '22|update QLLD_NhuCauTuyenSinh', 1703217118);
INSERT INTO public.action VALUES (791, 14, 11, 11, 21, 0, false, '', false, '22|update QLLD_NhuCauTuyenSinh', 1703217118);
INSERT INTO public.action VALUES (792, 1, 11, 11, 21, 0, false, '', false, '22|update QLLD_NhuCauTuyenSinh', 1703217118);
INSERT INTO public.action VALUES (793, 5, 11, 11, 21, 0, false, '', false, '22|update QLLD_NhuCauTuyenSinh', 1703217118);
INSERT INTO public.action VALUES (809, 13, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"53c52ec0d6cfe41371cab3639787851006ad2433","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix count down\n\nSee merge request binh-dinh-f1/binhdinhf1-website!209","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:07Z"},{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"}],"HeadCommit":{"Sha1":"53c52ec0d6cfe41371cab3639787851006ad2433","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix count down\n\nSee merge request binh-dinh-f1/binhdinhf1-website!209","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:07Z"},"CompareURL":"binh-dinh-f1/website/compare/4bd2e42b2f2059d7c13362e981e44c37aaf05a98...53c52ec0d6cfe41371cab3639787851006ad2433","Len":2}', 1703518839);
INSERT INTO public.action VALUES (901, 11, 11, 11, 21, 0, false, '', false, '26|add chi tieu tuyen sinh', 1703757415);
INSERT INTO public.action VALUES (794, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ce4364a6eea788d602dd8008bf176dad3cee591f","Message":"Merge pull request ''update QLLD_NhuCauTuyenSinh'' (#22) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/22\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-22T10:51:53+07:00"},{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"}],"HeadCommit":{"Sha1":"ce4364a6eea788d602dd8008bf176dad3cee591f","Message":"Merge pull request ''update QLLD_NhuCauTuyenSinh'' (#22) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/22\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-22T10:51:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/822137c72238e461cd8224bd07bf7738c907aeed...ce4364a6eea788d602dd8008bf176dad3cee591f","Len":2}', 1703217119);
INSERT INTO public.action VALUES (795, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ce4364a6eea788d602dd8008bf176dad3cee591f","Message":"Merge pull request ''update QLLD_NhuCauTuyenSinh'' (#22) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/22\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-22T10:51:53+07:00"},{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"}],"HeadCommit":{"Sha1":"ce4364a6eea788d602dd8008bf176dad3cee591f","Message":"Merge pull request ''update QLLD_NhuCauTuyenSinh'' (#22) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/22\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-22T10:51:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/822137c72238e461cd8224bd07bf7738c907aeed...ce4364a6eea788d602dd8008bf176dad3cee591f","Len":2}', 1703217119);
INSERT INTO public.action VALUES (796, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ce4364a6eea788d602dd8008bf176dad3cee591f","Message":"Merge pull request ''update QLLD_NhuCauTuyenSinh'' (#22) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/22\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-22T10:51:53+07:00"},{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"}],"HeadCommit":{"Sha1":"ce4364a6eea788d602dd8008bf176dad3cee591f","Message":"Merge pull request ''update QLLD_NhuCauTuyenSinh'' (#22) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/22\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-22T10:51:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/822137c72238e461cd8224bd07bf7738c907aeed...ce4364a6eea788d602dd8008bf176dad3cee591f","Len":2}', 1703217119);
INSERT INTO public.action VALUES (797, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ce4364a6eea788d602dd8008bf176dad3cee591f","Message":"Merge pull request ''update QLLD_NhuCauTuyenSinh'' (#22) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/22\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-22T10:51:53+07:00"},{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"}],"HeadCommit":{"Sha1":"ce4364a6eea788d602dd8008bf176dad3cee591f","Message":"Merge pull request ''update QLLD_NhuCauTuyenSinh'' (#22) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/22\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-22T10:51:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/822137c72238e461cd8224bd07bf7738c907aeed...ce4364a6eea788d602dd8008bf176dad3cee591f","Len":2}', 1703217119);
INSERT INTO public.action VALUES (798, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T14:54:26+07:00"},{"Sha1":"3ca3cbda85d99140da1a89dc3aca09cdb0a32a73","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:50:36+07:00"},{"Sha1":"0e8a28b9a71c4be7d93de74cf35fcd3d80d1cae0","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:49:56+07:00"},{"Sha1":"b7bd1c1683fb4daae97ef956da0a2a8acb667b18","Message":"lay ds nganh nghe da phe duyet\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:49:26+07:00"}],"HeadCommit":{"Sha1":"2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T14:54:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/167c6384026573f73879f1a558f396a60dbe7ace...2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Len":4}', 1703244640);
INSERT INTO public.action VALUES (822, 11, 7, 11, 21, 0, false, '', false, '23|add ke hoach tuyen sinh', 1703581441);
INSERT INTO public.action VALUES (823, 14, 7, 11, 21, 0, false, '', false, '23|add ke hoach tuyen sinh', 1703581441);
INSERT INTO public.action VALUES (824, 1, 7, 11, 21, 0, false, '', false, '23|add ke hoach tuyen sinh', 1703581441);
INSERT INTO public.action VALUES (825, 5, 7, 11, 21, 0, false, '', false, '23|add ke hoach tuyen sinh', 1703581441);
INSERT INTO public.action VALUES (826, 11, 11, 11, 21, 0, false, '', false, '23|add ke hoach tuyen sinh', 1703581456);
INSERT INTO public.action VALUES (827, 14, 11, 11, 21, 0, false, '', false, '23|add ke hoach tuyen sinh', 1703581456);
INSERT INTO public.action VALUES (828, 1, 11, 11, 21, 0, false, '', false, '23|add ke hoach tuyen sinh', 1703581456);
INSERT INTO public.action VALUES (829, 5, 11, 11, 21, 0, false, '', false, '23|add ke hoach tuyen sinh', 1703581456);
INSERT INTO public.action VALUES (799, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T14:54:26+07:00"},{"Sha1":"3ca3cbda85d99140da1a89dc3aca09cdb0a32a73","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:50:36+07:00"},{"Sha1":"0e8a28b9a71c4be7d93de74cf35fcd3d80d1cae0","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:49:56+07:00"},{"Sha1":"b7bd1c1683fb4daae97ef956da0a2a8acb667b18","Message":"lay ds nganh nghe da phe duyet\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:49:26+07:00"}],"HeadCommit":{"Sha1":"2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T14:54:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/167c6384026573f73879f1a558f396a60dbe7ace...2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Len":4}', 1703244641);
INSERT INTO public.action VALUES (800, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T14:54:26+07:00"},{"Sha1":"3ca3cbda85d99140da1a89dc3aca09cdb0a32a73","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:50:36+07:00"},{"Sha1":"0e8a28b9a71c4be7d93de74cf35fcd3d80d1cae0","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:49:56+07:00"},{"Sha1":"b7bd1c1683fb4daae97ef956da0a2a8acb667b18","Message":"lay ds nganh nghe da phe duyet\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:49:26+07:00"}],"HeadCommit":{"Sha1":"2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T14:54:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/167c6384026573f73879f1a558f396a60dbe7ace...2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Len":4}', 1703244641);
INSERT INTO public.action VALUES (801, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T14:54:26+07:00"},{"Sha1":"3ca3cbda85d99140da1a89dc3aca09cdb0a32a73","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:50:36+07:00"},{"Sha1":"0e8a28b9a71c4be7d93de74cf35fcd3d80d1cae0","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:49:56+07:00"},{"Sha1":"b7bd1c1683fb4daae97ef956da0a2a8acb667b18","Message":"lay ds nganh nghe da phe duyet\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:49:26+07:00"}],"HeadCommit":{"Sha1":"2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T14:54:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/167c6384026573f73879f1a558f396a60dbe7ace...2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Len":4}', 1703244641);
INSERT INTO public.action VALUES (802, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T14:54:26+07:00"},{"Sha1":"3ca3cbda85d99140da1a89dc3aca09cdb0a32a73","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:50:36+07:00"},{"Sha1":"0e8a28b9a71c4be7d93de74cf35fcd3d80d1cae0","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:49:56+07:00"},{"Sha1":"b7bd1c1683fb4daae97ef956da0a2a8acb667b18","Message":"lay ds nganh nghe da phe duyet\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:49:26+07:00"}],"HeadCommit":{"Sha1":"2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T14:54:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/167c6384026573f73879f1a558f396a60dbe7ace...2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Len":4}', 1703244641);
INSERT INTO public.action VALUES (803, 13, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15aab07c22634b263f541cf2a5740d0fbc6e18d7","Message":"feat: result 70%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-25T08:08:26+07:00"}],"HeadCommit":{"Sha1":"15aab07c22634b263f541cf2a5740d0fbc6e18d7","Message":"feat: result 70%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-25T08:08:26+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/4ca0b88dfe08c31473b5b977456d58ea124e9e18...15aab07c22634b263f541cf2a5740d0fbc6e18d7","Len":1}', 1703489443);
INSERT INTO public.action VALUES (804, 1, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15aab07c22634b263f541cf2a5740d0fbc6e18d7","Message":"feat: result 70%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-25T08:08:26+07:00"}],"HeadCommit":{"Sha1":"15aab07c22634b263f541cf2a5740d0fbc6e18d7","Message":"feat: result 70%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-25T08:08:26+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/4ca0b88dfe08c31473b5b977456d58ea124e9e18...15aab07c22634b263f541cf2a5740d0fbc6e18d7","Len":1}', 1703489443);
INSERT INTO public.action VALUES (805, 4, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15aab07c22634b263f541cf2a5740d0fbc6e18d7","Message":"feat: result 70%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-25T08:08:26+07:00"}],"HeadCommit":{"Sha1":"15aab07c22634b263f541cf2a5740d0fbc6e18d7","Message":"feat: result 70%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-25T08:08:26+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/4ca0b88dfe08c31473b5b977456d58ea124e9e18...15aab07c22634b263f541cf2a5740d0fbc6e18d7","Len":1}', 1703489443);
INSERT INTO public.action VALUES (810, 1, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"53c52ec0d6cfe41371cab3639787851006ad2433","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix count down\n\nSee merge request binh-dinh-f1/binhdinhf1-website!209","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:07Z"},{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"}],"HeadCommit":{"Sha1":"53c52ec0d6cfe41371cab3639787851006ad2433","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix count down\n\nSee merge request binh-dinh-f1/binhdinhf1-website!209","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:07Z"},"CompareURL":"binh-dinh-f1/website/compare/4bd2e42b2f2059d7c13362e981e44c37aaf05a98...53c52ec0d6cfe41371cab3639787851006ad2433","Len":2}', 1703518839);
INSERT INTO public.action VALUES (811, 4, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"53c52ec0d6cfe41371cab3639787851006ad2433","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix count down\n\nSee merge request binh-dinh-f1/binhdinhf1-website!209","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:07Z"},{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"}],"HeadCommit":{"Sha1":"53c52ec0d6cfe41371cab3639787851006ad2433","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix count down\n\nSee merge request binh-dinh-f1/binhdinhf1-website!209","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:07Z"},"CompareURL":"binh-dinh-f1/website/compare/4bd2e42b2f2059d7c13362e981e44c37aaf05a98...53c52ec0d6cfe41371cab3639787851006ad2433","Len":2}', 1703518839);
INSERT INTO public.action VALUES (812, 13, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"}],"HeadCommit":{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"},"CompareURL":"binh-dinh-f1/website/compare/cc2ba7984c996de04607bf68b220fba28c67ec04...3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Len":1}', 1703518840);
INSERT INTO public.action VALUES (813, 1, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"}],"HeadCommit":{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"},"CompareURL":"binh-dinh-f1/website/compare/cc2ba7984c996de04607bf68b220fba28c67ec04...3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Len":1}', 1703518840);
INSERT INTO public.action VALUES (814, 4, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"}],"HeadCommit":{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"},"CompareURL":"binh-dinh-f1/website/compare/cc2ba7984c996de04607bf68b220fba28c67ec04...3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Len":1}', 1703518840);
INSERT INTO public.action VALUES (815, 13, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"24a94ddb7448d419edc28e8d69dfcb73ca0edbd1","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!210","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:27Z"},{"Sha1":"53c52ec0d6cfe41371cab3639787851006ad2433","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix count down\n\nSee merge request binh-dinh-f1/binhdinhf1-website!209","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:07Z"},{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"}],"HeadCommit":{"Sha1":"24a94ddb7448d419edc28e8d69dfcb73ca0edbd1","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!210","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:27Z"},"CompareURL":"binh-dinh-f1/website/compare/30bf4ff4756bcc1b7811d628cf042cb550e703ad...24a94ddb7448d419edc28e8d69dfcb73ca0edbd1","Len":3}', 1703518841);
INSERT INTO public.action VALUES (816, 1, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"24a94ddb7448d419edc28e8d69dfcb73ca0edbd1","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!210","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:27Z"},{"Sha1":"53c52ec0d6cfe41371cab3639787851006ad2433","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix count down\n\nSee merge request binh-dinh-f1/binhdinhf1-website!209","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:07Z"},{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"}],"HeadCommit":{"Sha1":"24a94ddb7448d419edc28e8d69dfcb73ca0edbd1","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!210","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:27Z"},"CompareURL":"binh-dinh-f1/website/compare/30bf4ff4756bcc1b7811d628cf042cb550e703ad...24a94ddb7448d419edc28e8d69dfcb73ca0edbd1","Len":3}', 1703518841);
INSERT INTO public.action VALUES (902, 14, 11, 11, 21, 0, false, '', false, '26|add chi tieu tuyen sinh', 1703757415);
INSERT INTO public.action VALUES (903, 1, 11, 11, 21, 0, false, '', false, '26|add chi tieu tuyen sinh', 1703757415);
INSERT INTO public.action VALUES (904, 5, 11, 11, 21, 0, false, '', false, '26|add chi tieu tuyen sinh', 1703757415);
INSERT INTO public.action VALUES (817, 4, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"24a94ddb7448d419edc28e8d69dfcb73ca0edbd1","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!210","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:27Z"},{"Sha1":"53c52ec0d6cfe41371cab3639787851006ad2433","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix count down\n\nSee merge request binh-dinh-f1/binhdinhf1-website!209","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:07Z"},{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"}],"HeadCommit":{"Sha1":"24a94ddb7448d419edc28e8d69dfcb73ca0edbd1","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!210","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:27Z"},"CompareURL":"binh-dinh-f1/website/compare/30bf4ff4756bcc1b7811d628cf042cb550e703ad...24a94ddb7448d419edc28e8d69dfcb73ca0edbd1","Len":3}', 1703518841);
INSERT INTO public.action VALUES (818, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"}],"HeadCommit":{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2550e5ce7cff1b368a88b7e07aa9191935e579bc...3224d74b3cd0c13e306f28eda021073d097d8b21","Len":1}', 1703581398);
INSERT INTO public.action VALUES (819, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"}],"HeadCommit":{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2550e5ce7cff1b368a88b7e07aa9191935e579bc...3224d74b3cd0c13e306f28eda021073d097d8b21","Len":1}', 1703581398);
INSERT INTO public.action VALUES (820, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"}],"HeadCommit":{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2550e5ce7cff1b368a88b7e07aa9191935e579bc...3224d74b3cd0c13e306f28eda021073d097d8b21","Len":1}', 1703581398);
INSERT INTO public.action VALUES (821, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"}],"HeadCommit":{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2550e5ce7cff1b368a88b7e07aa9191935e579bc...3224d74b3cd0c13e306f28eda021073d097d8b21","Len":1}', 1703581398);
INSERT INTO public.action VALUES (1449, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a83c5eae96d22b60f72fa4c1a88aed04b88835af","Message":"Merge pull request ''update bao cao tuyen sinh'' (#38) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/38\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T11:24:11+07:00"},{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"}],"HeadCommit":{"Sha1":"a83c5eae96d22b60f72fa4c1a88aed04b88835af","Message":"Merge pull request ''update bao cao tuyen sinh'' (#38) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/38\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T11:24:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/568299bc2fd76e6410ce6c4a6115e561e1c1aa38...a83c5eae96d22b60f72fa4c1a88aed04b88835af","Len":2}', 1704428657);
INSERT INTO public.action VALUES (1450, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a83c5eae96d22b60f72fa4c1a88aed04b88835af","Message":"Merge pull request ''update bao cao tuyen sinh'' (#38) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/38\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T11:24:11+07:00"},{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"}],"HeadCommit":{"Sha1":"a83c5eae96d22b60f72fa4c1a88aed04b88835af","Message":"Merge pull request ''update bao cao tuyen sinh'' (#38) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/38\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T11:24:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/568299bc2fd76e6410ce6c4a6115e561e1c1aa38...a83c5eae96d22b60f72fa4c1a88aed04b88835af","Len":2}', 1704428657);
INSERT INTO public.action VALUES (830, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b20e2920ff823bba807cf855b884c109ccb833e3","Message":"Merge pull request ''add ke hoach tuyen sinh'' (#23) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/23\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-26T16:04:11+07:00"},{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"}],"HeadCommit":{"Sha1":"b20e2920ff823bba807cf855b884c109ccb833e3","Message":"Merge pull request ''add ke hoach tuyen sinh'' (#23) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/23\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-26T16:04:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ce4364a6eea788d602dd8008bf176dad3cee591f...b20e2920ff823bba807cf855b884c109ccb833e3","Len":2}', 1703581457);
INSERT INTO public.action VALUES (831, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b20e2920ff823bba807cf855b884c109ccb833e3","Message":"Merge pull request ''add ke hoach tuyen sinh'' (#23) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/23\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-26T16:04:11+07:00"},{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"}],"HeadCommit":{"Sha1":"b20e2920ff823bba807cf855b884c109ccb833e3","Message":"Merge pull request ''add ke hoach tuyen sinh'' (#23) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/23\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-26T16:04:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ce4364a6eea788d602dd8008bf176dad3cee591f...b20e2920ff823bba807cf855b884c109ccb833e3","Len":2}', 1703581457);
INSERT INTO public.action VALUES (832, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b20e2920ff823bba807cf855b884c109ccb833e3","Message":"Merge pull request ''add ke hoach tuyen sinh'' (#23) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/23\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-26T16:04:11+07:00"},{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"}],"HeadCommit":{"Sha1":"b20e2920ff823bba807cf855b884c109ccb833e3","Message":"Merge pull request ''add ke hoach tuyen sinh'' (#23) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/23\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-26T16:04:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ce4364a6eea788d602dd8008bf176dad3cee591f...b20e2920ff823bba807cf855b884c109ccb833e3","Len":2}', 1703581457);
INSERT INTO public.action VALUES (833, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b20e2920ff823bba807cf855b884c109ccb833e3","Message":"Merge pull request ''add ke hoach tuyen sinh'' (#23) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/23\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-26T16:04:11+07:00"},{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"}],"HeadCommit":{"Sha1":"b20e2920ff823bba807cf855b884c109ccb833e3","Message":"Merge pull request ''add ke hoach tuyen sinh'' (#23) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/23\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-26T16:04:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ce4364a6eea788d602dd8008bf176dad3cee591f...b20e2920ff823bba807cf855b884c109ccb833e3","Len":2}', 1703581457);
INSERT INTO public.action VALUES (834, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3595c2d56992d933a4bce22f555a230eeeee4d5e","Message":"Update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:38:38+07:00"},{"Sha1":"1ada4c231214a8e12d2ca1a8f440cd5529b15b00","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:08:41+07:00"},{"Sha1":"a67e89c227d349050aba7f15a7d50b22747ff3be","Message":"baocaoTNtheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:08:36+07:00"},{"Sha1":"5dae462f15c3050ac76e516f37f9747d6375be97","Message":"sửa db QLLD_KeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-26T14:09:02+07:00"}],"HeadCommit":{"Sha1":"3595c2d56992d933a4bce22f555a230eeeee4d5e","Message":"Update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:38:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727...3595c2d56992d933a4bce22f555a230eeeee4d5e","Len":4}', 1703597440);
INSERT INTO public.action VALUES (841, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Message":"update\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T08:26:43+07:00"}],"HeadCommit":{"Sha1":"210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Message":"update\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T08:26:43+07:00"},"CompareURL":"Khieu-nai/backend/compare/5983684e9d5976b8a5f1c302230691faf2cbcd24...210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Len":1}', 1703640419);
INSERT INTO public.action VALUES (835, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3595c2d56992d933a4bce22f555a230eeeee4d5e","Message":"Update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:38:38+07:00"},{"Sha1":"1ada4c231214a8e12d2ca1a8f440cd5529b15b00","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:08:41+07:00"},{"Sha1":"a67e89c227d349050aba7f15a7d50b22747ff3be","Message":"baocaoTNtheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:08:36+07:00"},{"Sha1":"5dae462f15c3050ac76e516f37f9747d6375be97","Message":"sửa db QLLD_KeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-26T14:09:02+07:00"}],"HeadCommit":{"Sha1":"3595c2d56992d933a4bce22f555a230eeeee4d5e","Message":"Update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:38:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727...3595c2d56992d933a4bce22f555a230eeeee4d5e","Len":4}', 1703597440);
INSERT INTO public.action VALUES (836, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3595c2d56992d933a4bce22f555a230eeeee4d5e","Message":"Update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:38:38+07:00"},{"Sha1":"1ada4c231214a8e12d2ca1a8f440cd5529b15b00","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:08:41+07:00"},{"Sha1":"a67e89c227d349050aba7f15a7d50b22747ff3be","Message":"baocaoTNtheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:08:36+07:00"},{"Sha1":"5dae462f15c3050ac76e516f37f9747d6375be97","Message":"sửa db QLLD_KeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-26T14:09:02+07:00"}],"HeadCommit":{"Sha1":"3595c2d56992d933a4bce22f555a230eeeee4d5e","Message":"Update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:38:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727...3595c2d56992d933a4bce22f555a230eeeee4d5e","Len":4}', 1703597440);
INSERT INTO public.action VALUES (837, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3595c2d56992d933a4bce22f555a230eeeee4d5e","Message":"Update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:38:38+07:00"},{"Sha1":"1ada4c231214a8e12d2ca1a8f440cd5529b15b00","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:08:41+07:00"},{"Sha1":"a67e89c227d349050aba7f15a7d50b22747ff3be","Message":"baocaoTNtheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:08:36+07:00"},{"Sha1":"5dae462f15c3050ac76e516f37f9747d6375be97","Message":"sửa db QLLD_KeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-26T14:09:02+07:00"}],"HeadCommit":{"Sha1":"3595c2d56992d933a4bce22f555a230eeeee4d5e","Message":"Update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:38:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727...3595c2d56992d933a4bce22f555a230eeeee4d5e","Len":4}', 1703597440);
INSERT INTO public.action VALUES (838, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3595c2d56992d933a4bce22f555a230eeeee4d5e","Message":"Update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:38:38+07:00"},{"Sha1":"1ada4c231214a8e12d2ca1a8f440cd5529b15b00","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:08:41+07:00"},{"Sha1":"a67e89c227d349050aba7f15a7d50b22747ff3be","Message":"baocaoTNtheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:08:36+07:00"},{"Sha1":"5dae462f15c3050ac76e516f37f9747d6375be97","Message":"sửa db QLLD_KeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-26T14:09:02+07:00"}],"HeadCommit":{"Sha1":"3595c2d56992d933a4bce22f555a230eeeee4d5e","Message":"Update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:38:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727...3595c2d56992d933a4bce22f555a230eeeee4d5e","Len":4}', 1703597440);
INSERT INTO public.action VALUES (839, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Message":"update\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T08:26:43+07:00"}],"HeadCommit":{"Sha1":"210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Message":"update\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T08:26:43+07:00"},"CompareURL":"Khieu-nai/backend/compare/5983684e9d5976b8a5f1c302230691faf2cbcd24...210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Len":1}', 1703640419);
INSERT INTO public.action VALUES (840, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Message":"update\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T08:26:43+07:00"}],"HeadCommit":{"Sha1":"210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Message":"update\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T08:26:43+07:00"},"CompareURL":"Khieu-nai/backend/compare/5983684e9d5976b8a5f1c302230691faf2cbcd24...210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Len":1}', 1703640419);
INSERT INTO public.action VALUES (905, 16, 11, 11, 21, 0, false, '', false, '26|add chi tieu tuyen sinh', 1703757415);
INSERT INTO public.action VALUES (843, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Message":"update\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T08:26:43+07:00"}],"HeadCommit":{"Sha1":"210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Message":"update\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T08:26:43+07:00"},"CompareURL":"Khieu-nai/backend/compare/5983684e9d5976b8a5f1c302230691faf2cbcd24...210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Len":1}', 1703640419);
INSERT INTO public.action VALUES (844, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T15:23:45+07:00"}],"HeadCommit":{"Sha1":"6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T15:23:45+07:00"},"CompareURL":"Khieu-nai/backend/compare/210170e2b5fe572203bf3a722f6b9a5bcb3cbcac...6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Len":1}', 1703665436);
INSERT INTO public.action VALUES (845, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T15:23:45+07:00"}],"HeadCommit":{"Sha1":"6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T15:23:45+07:00"},"CompareURL":"Khieu-nai/backend/compare/210170e2b5fe572203bf3a722f6b9a5bcb3cbcac...6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Len":1}', 1703665436);
INSERT INTO public.action VALUES (846, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T15:23:45+07:00"}],"HeadCommit":{"Sha1":"6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T15:23:45+07:00"},"CompareURL":"Khieu-nai/backend/compare/210170e2b5fe572203bf3a722f6b9a5bcb3cbcac...6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Len":1}', 1703665436);
INSERT INTO public.action VALUES (847, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T15:23:45+07:00"}],"HeadCommit":{"Sha1":"6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T15:23:45+07:00"},"CompareURL":"Khieu-nai/backend/compare/210170e2b5fe572203bf3a722f6b9a5bcb3cbcac...6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Len":1}', 1703665436);
INSERT INTO public.action VALUES (848, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T15:23:45+07:00"}],"HeadCommit":{"Sha1":"6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T15:23:45+07:00"},"CompareURL":"Khieu-nai/backend/compare/210170e2b5fe572203bf3a722f6b9a5bcb3cbcac...6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Len":1}', 1703665436);
INSERT INTO public.action VALUES (849, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"de5623c80a3650844222503645efc2a12a99a504","Message":"update baocaoTntheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-27T16:28:13+07:00"}],"HeadCommit":{"Sha1":"de5623c80a3650844222503645efc2a12a99a504","Message":"update baocaoTntheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-27T16:28:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3595c2d56992d933a4bce22f555a230eeeee4d5e...de5623c80a3650844222503645efc2a12a99a504","Len":1}', 1703685639);
INSERT INTO public.action VALUES (850, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"de5623c80a3650844222503645efc2a12a99a504","Message":"update baocaoTntheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-27T16:28:13+07:00"}],"HeadCommit":{"Sha1":"de5623c80a3650844222503645efc2a12a99a504","Message":"update baocaoTntheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-27T16:28:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3595c2d56992d933a4bce22f555a230eeeee4d5e...de5623c80a3650844222503645efc2a12a99a504","Len":1}', 1703685639);
INSERT INTO public.action VALUES (851, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"de5623c80a3650844222503645efc2a12a99a504","Message":"update baocaoTntheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-27T16:28:13+07:00"}],"HeadCommit":{"Sha1":"de5623c80a3650844222503645efc2a12a99a504","Message":"update baocaoTntheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-27T16:28:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3595c2d56992d933a4bce22f555a230eeeee4d5e...de5623c80a3650844222503645efc2a12a99a504","Len":1}', 1703685639);
INSERT INTO public.action VALUES (852, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"de5623c80a3650844222503645efc2a12a99a504","Message":"update baocaoTntheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-27T16:28:13+07:00"}],"HeadCommit":{"Sha1":"de5623c80a3650844222503645efc2a12a99a504","Message":"update baocaoTntheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-27T16:28:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3595c2d56992d933a4bce22f555a230eeeee4d5e...de5623c80a3650844222503645efc2a12a99a504","Len":1}', 1703685639);
INSERT INTO public.action VALUES (1134, 11, 11, 11, 21, 0, false, '', false, '29|thinh', 1704247144);
INSERT INTO public.action VALUES (1135, 14, 11, 11, 21, 0, false, '', false, '29|thinh', 1704247144);
INSERT INTO public.action VALUES (1136, 1, 11, 11, 21, 0, false, '', false, '29|thinh', 1704247144);
INSERT INTO public.action VALUES (853, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"de5623c80a3650844222503645efc2a12a99a504","Message":"update baocaoTntheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-27T16:28:13+07:00"}],"HeadCommit":{"Sha1":"de5623c80a3650844222503645efc2a12a99a504","Message":"update baocaoTntheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-27T16:28:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3595c2d56992d933a4bce22f555a230eeeee4d5e...de5623c80a3650844222503645efc2a12a99a504","Len":1}', 1703685639);
INSERT INTO public.action VALUES (854, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"}],"HeadCommit":{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3224d74b3cd0c13e306f28eda021073d097d8b21...dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Len":1}', 1703732991);
INSERT INTO public.action VALUES (855, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"}],"HeadCommit":{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3224d74b3cd0c13e306f28eda021073d097d8b21...dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Len":1}', 1703732991);
INSERT INTO public.action VALUES (856, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"}],"HeadCommit":{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3224d74b3cd0c13e306f28eda021073d097d8b21...dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Len":1}', 1703732991);
INSERT INTO public.action VALUES (857, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"}],"HeadCommit":{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3224d74b3cd0c13e306f28eda021073d097d8b21...dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Len":1}', 1703732991);
INSERT INTO public.action VALUES (866, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"3d25992786d4defa328177d93bd82a78507ca708","Message":"Merge pull request ''add bao cao tuyen sinh'' (#24) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/24\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T10:11:35+07:00"},{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"}],"HeadCommit":{"Sha1":"3d25992786d4defa328177d93bd82a78507ca708","Message":"Merge pull request ''add bao cao tuyen sinh'' (#24) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/24\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T10:11:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b20e2920ff823bba807cf855b884c109ccb833e3...3d25992786d4defa328177d93bd82a78507ca708","Len":2}', 1703733102);
INSERT INTO public.action VALUES (867, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"3d25992786d4defa328177d93bd82a78507ca708","Message":"Merge pull request ''add bao cao tuyen sinh'' (#24) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/24\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T10:11:35+07:00"},{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"}],"HeadCommit":{"Sha1":"3d25992786d4defa328177d93bd82a78507ca708","Message":"Merge pull request ''add bao cao tuyen sinh'' (#24) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/24\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T10:11:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b20e2920ff823bba807cf855b884c109ccb833e3...3d25992786d4defa328177d93bd82a78507ca708","Len":2}', 1703733102);
INSERT INTO public.action VALUES (970, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-29T13:19:56+07:00"}],"HeadCommit":{"Sha1":"cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-29T13:19:56+07:00"},"CompareURL":"Khieu-nai/backend/compare/6f607f73f68ad7ddbf04d1d261ff5647a6f64acb...cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Len":1}', 1703830809);
INSERT INTO public.action VALUES (868, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"3d25992786d4defa328177d93bd82a78507ca708","Message":"Merge pull request ''add bao cao tuyen sinh'' (#24) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/24\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T10:11:35+07:00"},{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"}],"HeadCommit":{"Sha1":"3d25992786d4defa328177d93bd82a78507ca708","Message":"Merge pull request ''add bao cao tuyen sinh'' (#24) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/24\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T10:11:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b20e2920ff823bba807cf855b884c109ccb833e3...3d25992786d4defa328177d93bd82a78507ca708","Len":2}', 1703733102);
INSERT INTO public.action VALUES (869, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"3d25992786d4defa328177d93bd82a78507ca708","Message":"Merge pull request ''add bao cao tuyen sinh'' (#24) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/24\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T10:11:35+07:00"},{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"}],"HeadCommit":{"Sha1":"3d25992786d4defa328177d93bd82a78507ca708","Message":"Merge pull request ''add bao cao tuyen sinh'' (#24) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/24\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T10:11:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b20e2920ff823bba807cf855b884c109ccb833e3...3d25992786d4defa328177d93bd82a78507ca708","Len":2}', 1703733102);
INSERT INTO public.action VALUES (870, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c3220bfb8e88fd13b65f3b989e212931e0dba376","Message":"thêm năm tuyển sinh vào học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T11:21:19+07:00"},{"Sha1":"df5df940c784913e84b71510dd575129e966dfe9","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T10:47:47+07:00"},{"Sha1":"7c42e2b030093ce22183d65fd945530fb74e85b5","Message":"nhập lại bảng kế hoạch và chỉ tiêu tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T10:45:47+07:00"}],"HeadCommit":{"Sha1":"c3220bfb8e88fd13b65f3b989e212931e0dba376","Message":"thêm năm tuyển sinh vào học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T11:21:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/de5623c80a3650844222503645efc2a12a99a504...c3220bfb8e88fd13b65f3b989e212931e0dba376","Len":3}', 1703744439);
INSERT INTO public.action VALUES (871, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c3220bfb8e88fd13b65f3b989e212931e0dba376","Message":"thêm năm tuyển sinh vào học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T11:21:19+07:00"},{"Sha1":"df5df940c784913e84b71510dd575129e966dfe9","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T10:47:47+07:00"},{"Sha1":"7c42e2b030093ce22183d65fd945530fb74e85b5","Message":"nhập lại bảng kế hoạch và chỉ tiêu tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T10:45:47+07:00"}],"HeadCommit":{"Sha1":"c3220bfb8e88fd13b65f3b989e212931e0dba376","Message":"thêm năm tuyển sinh vào học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T11:21:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/de5623c80a3650844222503645efc2a12a99a504...c3220bfb8e88fd13b65f3b989e212931e0dba376","Len":3}', 1703744439);
INSERT INTO public.action VALUES (872, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c3220bfb8e88fd13b65f3b989e212931e0dba376","Message":"thêm năm tuyển sinh vào học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T11:21:19+07:00"},{"Sha1":"df5df940c784913e84b71510dd575129e966dfe9","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T10:47:47+07:00"},{"Sha1":"7c42e2b030093ce22183d65fd945530fb74e85b5","Message":"nhập lại bảng kế hoạch và chỉ tiêu tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T10:45:47+07:00"}],"HeadCommit":{"Sha1":"c3220bfb8e88fd13b65f3b989e212931e0dba376","Message":"thêm năm tuyển sinh vào học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T11:21:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/de5623c80a3650844222503645efc2a12a99a504...c3220bfb8e88fd13b65f3b989e212931e0dba376","Len":3}', 1703744439);
INSERT INTO public.action VALUES (978, 1, 1, 1, 25, 0, false, '', false, '', 1703834671);
INSERT INTO public.action VALUES (979, 6, 1, 1, 25, 0, false, '', false, '', 1703834671);
INSERT INTO public.action VALUES (980, 5, 1, 1, 25, 0, false, '', false, '', 1703834671);
INSERT INTO public.action VALUES (981, 1, 2, 1, 25, 0, false, '', false, 'gdt-signed', 1703834680);
INSERT INTO public.action VALUES (982, 6, 2, 1, 25, 0, false, '', false, 'gdt-signed', 1703834680);
INSERT INTO public.action VALUES (983, 5, 2, 1, 25, 0, false, '', false, 'gdt-signed', 1703834680);
INSERT INTO public.action VALUES (873, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c3220bfb8e88fd13b65f3b989e212931e0dba376","Message":"thêm năm tuyển sinh vào học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T11:21:19+07:00"},{"Sha1":"df5df940c784913e84b71510dd575129e966dfe9","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T10:47:47+07:00"},{"Sha1":"7c42e2b030093ce22183d65fd945530fb74e85b5","Message":"nhập lại bảng kế hoạch và chỉ tiêu tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T10:45:47+07:00"}],"HeadCommit":{"Sha1":"c3220bfb8e88fd13b65f3b989e212931e0dba376","Message":"thêm năm tuyển sinh vào học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T11:21:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/de5623c80a3650844222503645efc2a12a99a504...c3220bfb8e88fd13b65f3b989e212931e0dba376","Len":3}', 1703744439);
INSERT INTO public.action VALUES (874, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c3220bfb8e88fd13b65f3b989e212931e0dba376","Message":"thêm năm tuyển sinh vào học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T11:21:19+07:00"},{"Sha1":"df5df940c784913e84b71510dd575129e966dfe9","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T10:47:47+07:00"},{"Sha1":"7c42e2b030093ce22183d65fd945530fb74e85b5","Message":"nhập lại bảng kế hoạch và chỉ tiêu tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T10:45:47+07:00"}],"HeadCommit":{"Sha1":"c3220bfb8e88fd13b65f3b989e212931e0dba376","Message":"thêm năm tuyển sinh vào học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T11:21:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/de5623c80a3650844222503645efc2a12a99a504...c3220bfb8e88fd13b65f3b989e212931e0dba376","Len":3}', 1703744439);
INSERT INTO public.action VALUES (875, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"}],"HeadCommit":{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dcabae26407e5a8ebe3ee60dae45c490ebf05dc2...1686d02897942b3d60ace6745b52b898c77010f5","Len":1}', 1703749773);
INSERT INTO public.action VALUES (876, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"}],"HeadCommit":{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dcabae26407e5a8ebe3ee60dae45c490ebf05dc2...1686d02897942b3d60ace6745b52b898c77010f5","Len":1}', 1703749773);
INSERT INTO public.action VALUES (877, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"}],"HeadCommit":{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dcabae26407e5a8ebe3ee60dae45c490ebf05dc2...1686d02897942b3d60ace6745b52b898c77010f5","Len":1}', 1703749773);
INSERT INTO public.action VALUES (878, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"}],"HeadCommit":{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dcabae26407e5a8ebe3ee60dae45c490ebf05dc2...1686d02897942b3d60ace6745b52b898c77010f5","Len":1}', 1703749773);
INSERT INTO public.action VALUES (879, 11, 7, 11, 21, 0, false, '', false, '25|update ThuongTru_ThonXom', 1703749798);
INSERT INTO public.action VALUES (880, 14, 7, 11, 21, 0, false, '', false, '25|update ThuongTru_ThonXom', 1703749798);
INSERT INTO public.action VALUES (881, 1, 7, 11, 21, 0, false, '', false, '25|update ThuongTru_ThonXom', 1703749798);
INSERT INTO public.action VALUES (882, 5, 7, 11, 21, 0, false, '', false, '25|update ThuongTru_ThonXom', 1703749798);
INSERT INTO public.action VALUES (1666, 16, 11, 11, 21, 0, false, '', false, '48|fix height body item menu', 1704538859);
INSERT INTO public.action VALUES (1797, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/181/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1798, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/181/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1799, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/181/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1800, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/182/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1801, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/182/head', false, '', 1704577239);
INSERT INTO public.action VALUES (887, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Message":"Merge pull request ''update ThuongTru_ThonXom'' (#25) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/25\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T14:50:07+07:00"},{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"}],"HeadCommit":{"Sha1":"087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Message":"Merge pull request ''update ThuongTru_ThonXom'' (#25) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/25\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T14:50:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3d25992786d4defa328177d93bd82a78507ca708...087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Len":2}', 1703749814);
INSERT INTO public.action VALUES (888, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Message":"Merge pull request ''update ThuongTru_ThonXom'' (#25) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/25\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T14:50:07+07:00"},{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"}],"HeadCommit":{"Sha1":"087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Message":"Merge pull request ''update ThuongTru_ThonXom'' (#25) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/25\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T14:50:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3d25992786d4defa328177d93bd82a78507ca708...087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Len":2}', 1703749814);
INSERT INTO public.action VALUES (889, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Message":"Merge pull request ''update ThuongTru_ThonXom'' (#25) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/25\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T14:50:07+07:00"},{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"}],"HeadCommit":{"Sha1":"087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Message":"Merge pull request ''update ThuongTru_ThonXom'' (#25) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/25\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T14:50:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3d25992786d4defa328177d93bd82a78507ca708...087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Len":2}', 1703749814);
INSERT INTO public.action VALUES (890, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Message":"Merge pull request ''update ThuongTru_ThonXom'' (#25) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/25\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T14:50:07+07:00"},{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"}],"HeadCommit":{"Sha1":"087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Message":"Merge pull request ''update ThuongTru_ThonXom'' (#25) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/25\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T14:50:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3d25992786d4defa328177d93bd82a78507ca708...087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Len":2}', 1703749814);
INSERT INTO public.action VALUES (891, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"}],"HeadCommit":{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1686d02897942b3d60ace6745b52b898c77010f5...146f91e88fec6c748e4378c029300694f4599df8","Len":1}', 1703757283);
INSERT INTO public.action VALUES (892, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"}],"HeadCommit":{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1686d02897942b3d60ace6745b52b898c77010f5...146f91e88fec6c748e4378c029300694f4599df8","Len":1}', 1703757283);
INSERT INTO public.action VALUES (984, 1, 2, 1, 25, 0, false, '', false, 'GDT', 1703834692);
INSERT INTO public.action VALUES (985, 6, 2, 1, 25, 0, false, '', false, 'GDT', 1703834692);
INSERT INTO public.action VALUES (986, 5, 2, 1, 25, 0, false, '', false, 'GDT', 1703834692);
INSERT INTO public.action VALUES (987, 1, 2, 1, 25, 0, false, '', false, 'gdt-si', 1703834698);
INSERT INTO public.action VALUES (988, 6, 2, 1, 25, 0, false, '', false, 'gdt-si', 1703834698);
INSERT INTO public.action VALUES (989, 5, 2, 1, 25, 0, false, '', false, 'gdt-si', 1703834698);
INSERT INTO public.action VALUES (893, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"}],"HeadCommit":{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1686d02897942b3d60ace6745b52b898c77010f5...146f91e88fec6c748e4378c029300694f4599df8","Len":1}', 1703757283);
INSERT INTO public.action VALUES (894, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"}],"HeadCommit":{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1686d02897942b3d60ace6745b52b898c77010f5...146f91e88fec6c748e4378c029300694f4599df8","Len":1}', 1703757283);
INSERT INTO public.action VALUES (895, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"}],"HeadCommit":{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1686d02897942b3d60ace6745b52b898c77010f5...146f91e88fec6c748e4378c029300694f4599df8","Len":1}', 1703757283);
INSERT INTO public.action VALUES (906, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6cbac64de2f6655baf854915aac73011498c4afc","Message":"Merge pull request ''add chi tieu tuyen sinh'' (#26) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/26\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T16:56:49+07:00"},{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"}],"HeadCommit":{"Sha1":"6cbac64de2f6655baf854915aac73011498c4afc","Message":"Merge pull request ''add chi tieu tuyen sinh'' (#26) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/26\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T16:56:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/087ed25ee9fded2df43d96f7a624b301d0ed3bf0...6cbac64de2f6655baf854915aac73011498c4afc","Len":2}', 1703757416);
INSERT INTO public.action VALUES (907, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6cbac64de2f6655baf854915aac73011498c4afc","Message":"Merge pull request ''add chi tieu tuyen sinh'' (#26) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/26\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T16:56:49+07:00"},{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"}],"HeadCommit":{"Sha1":"6cbac64de2f6655baf854915aac73011498c4afc","Message":"Merge pull request ''add chi tieu tuyen sinh'' (#26) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/26\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T16:56:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/087ed25ee9fded2df43d96f7a624b301d0ed3bf0...6cbac64de2f6655baf854915aac73011498c4afc","Len":2}', 1703757416);
INSERT INTO public.action VALUES (908, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6cbac64de2f6655baf854915aac73011498c4afc","Message":"Merge pull request ''add chi tieu tuyen sinh'' (#26) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/26\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T16:56:49+07:00"},{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"}],"HeadCommit":{"Sha1":"6cbac64de2f6655baf854915aac73011498c4afc","Message":"Merge pull request ''add chi tieu tuyen sinh'' (#26) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/26\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T16:56:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/087ed25ee9fded2df43d96f7a624b301d0ed3bf0...6cbac64de2f6655baf854915aac73011498c4afc","Len":2}', 1703757416);
INSERT INTO public.action VALUES (916, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"}],"HeadCommit":{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c3220bfb8e88fd13b65f3b989e212931e0dba376...f25699b2b515283c5b05e4be307fc8a0bf23af8a","Len":1}', 1703773839);
INSERT INTO public.action VALUES (990, 1, 5, 1, 25, 0, false, 'refs/heads/main', false, '', 1703835148);
INSERT INTO public.action VALUES (909, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6cbac64de2f6655baf854915aac73011498c4afc","Message":"Merge pull request ''add chi tieu tuyen sinh'' (#26) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/26\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T16:56:49+07:00"},{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"}],"HeadCommit":{"Sha1":"6cbac64de2f6655baf854915aac73011498c4afc","Message":"Merge pull request ''add chi tieu tuyen sinh'' (#26) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/26\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T16:56:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/087ed25ee9fded2df43d96f7a624b301d0ed3bf0...6cbac64de2f6655baf854915aac73011498c4afc","Len":2}', 1703757416);
INSERT INTO public.action VALUES (910, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6cbac64de2f6655baf854915aac73011498c4afc","Message":"Merge pull request ''add chi tieu tuyen sinh'' (#26) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/26\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T16:56:49+07:00"},{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"}],"HeadCommit":{"Sha1":"6cbac64de2f6655baf854915aac73011498c4afc","Message":"Merge pull request ''add chi tieu tuyen sinh'' (#26) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/26\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T16:56:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/087ed25ee9fded2df43d96f7a624b301d0ed3bf0...6cbac64de2f6655baf854915aac73011498c4afc","Len":2}', 1703757416);
INSERT INTO public.action VALUES (911, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"}],"HeadCommit":{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c3220bfb8e88fd13b65f3b989e212931e0dba376...f25699b2b515283c5b05e4be307fc8a0bf23af8a","Len":1}', 1703773839);
INSERT INTO public.action VALUES (912, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"}],"HeadCommit":{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c3220bfb8e88fd13b65f3b989e212931e0dba376...f25699b2b515283c5b05e4be307fc8a0bf23af8a","Len":1}', 1703773839);
INSERT INTO public.action VALUES (913, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"}],"HeadCommit":{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c3220bfb8e88fd13b65f3b989e212931e0dba376...f25699b2b515283c5b05e4be307fc8a0bf23af8a","Len":1}', 1703773839);
INSERT INTO public.action VALUES (914, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"}],"HeadCommit":{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c3220bfb8e88fd13b65f3b989e212931e0dba376...f25699b2b515283c5b05e4be307fc8a0bf23af8a","Len":1}', 1703773839);
INSERT INTO public.action VALUES (915, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"}],"HeadCommit":{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c3220bfb8e88fd13b65f3b989e212931e0dba376...f25699b2b515283c5b05e4be307fc8a0bf23af8a","Len":1}', 1703773839);
INSERT INTO public.action VALUES (927, 11, 7, 11, 21, 0, false, '', false, '27|thinh', 1703820635);
INSERT INTO public.action VALUES (928, 14, 7, 11, 21, 0, false, '', false, '27|thinh', 1703820635);
INSERT INTO public.action VALUES (929, 1, 7, 11, 21, 0, false, '', false, '27|thinh', 1703820635);
INSERT INTO public.action VALUES (930, 5, 7, 11, 21, 0, false, '', false, '27|thinh', 1703820635);
INSERT INTO public.action VALUES (931, 16, 7, 11, 21, 0, false, '', false, '27|thinh', 1703820635);
INSERT INTO public.action VALUES (932, 11, 11, 11, 21, 0, false, '', false, '27|thinh', 1703820650);
INSERT INTO public.action VALUES (933, 14, 11, 11, 21, 0, false, '', false, '27|thinh', 1703820650);
INSERT INTO public.action VALUES (917, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"}],"HeadCommit":{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/146f91e88fec6c748e4378c029300694f4599df8...373cd26fb7e01be8e5618bf1ca310f43b25423e9","Len":1}', 1703818382);
INSERT INTO public.action VALUES (918, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"}],"HeadCommit":{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/146f91e88fec6c748e4378c029300694f4599df8...373cd26fb7e01be8e5618bf1ca310f43b25423e9","Len":1}', 1703818382);
INSERT INTO public.action VALUES (919, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"}],"HeadCommit":{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/146f91e88fec6c748e4378c029300694f4599df8...373cd26fb7e01be8e5618bf1ca310f43b25423e9","Len":1}', 1703818382);
INSERT INTO public.action VALUES (920, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"}],"HeadCommit":{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/146f91e88fec6c748e4378c029300694f4599df8...373cd26fb7e01be8e5618bf1ca310f43b25423e9","Len":1}', 1703818382);
INSERT INTO public.action VALUES (921, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"}],"HeadCommit":{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/146f91e88fec6c748e4378c029300694f4599df8...373cd26fb7e01be8e5618bf1ca310f43b25423e9","Len":1}', 1703818382);
INSERT INTO public.action VALUES (922, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"}],"HeadCommit":{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/373cd26fb7e01be8e5618bf1ca310f43b25423e9...911fdad30b51628a28e001ccf1645d9d5172e84f","Len":1}', 1703820582);
INSERT INTO public.action VALUES (923, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"}],"HeadCommit":{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/373cd26fb7e01be8e5618bf1ca310f43b25423e9...911fdad30b51628a28e001ccf1645d9d5172e84f","Len":1}', 1703820582);
INSERT INTO public.action VALUES (924, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"}],"HeadCommit":{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/373cd26fb7e01be8e5618bf1ca310f43b25423e9...911fdad30b51628a28e001ccf1645d9d5172e84f","Len":1}', 1703820582);
INSERT INTO public.action VALUES (934, 1, 11, 11, 21, 0, false, '', false, '27|thinh', 1703820650);
INSERT INTO public.action VALUES (935, 5, 11, 11, 21, 0, false, '', false, '27|thinh', 1703820650);
INSERT INTO public.action VALUES (936, 16, 11, 11, 21, 0, false, '', false, '27|thinh', 1703820650);
INSERT INTO public.action VALUES (991, 6, 5, 1, 25, 0, false, 'refs/heads/main', false, '', 1703835148);
INSERT INTO public.action VALUES (992, 5, 5, 1, 25, 0, false, 'refs/heads/main', false, '', 1703835148);
INSERT INTO public.action VALUES (1137, 5, 11, 11, 21, 0, false, '', false, '29|thinh', 1704247144);
INSERT INTO public.action VALUES (925, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"}],"HeadCommit":{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/373cd26fb7e01be8e5618bf1ca310f43b25423e9...911fdad30b51628a28e001ccf1645d9d5172e84f","Len":1}', 1703820582);
INSERT INTO public.action VALUES (926, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"}],"HeadCommit":{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/373cd26fb7e01be8e5618bf1ca310f43b25423e9...911fdad30b51628a28e001ccf1645d9d5172e84f","Len":1}', 1703820582);
INSERT INTO public.action VALUES (937, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"71da43b9b4f4ec6f2aab698e1cade5906e604d35","Message":"Merge pull request ''thinh'' (#27) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/27\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T10:30:44+07:00"},{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"},{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"}],"HeadCommit":{"Sha1":"71da43b9b4f4ec6f2aab698e1cade5906e604d35","Message":"Merge pull request ''thinh'' (#27) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/27\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T10:30:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6cbac64de2f6655baf854915aac73011498c4afc...71da43b9b4f4ec6f2aab698e1cade5906e604d35","Len":3}', 1703820651);
INSERT INTO public.action VALUES (938, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"71da43b9b4f4ec6f2aab698e1cade5906e604d35","Message":"Merge pull request ''thinh'' (#27) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/27\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T10:30:44+07:00"},{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"},{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"}],"HeadCommit":{"Sha1":"71da43b9b4f4ec6f2aab698e1cade5906e604d35","Message":"Merge pull request ''thinh'' (#27) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/27\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T10:30:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6cbac64de2f6655baf854915aac73011498c4afc...71da43b9b4f4ec6f2aab698e1cade5906e604d35","Len":3}', 1703820651);
INSERT INTO public.action VALUES (939, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"71da43b9b4f4ec6f2aab698e1cade5906e604d35","Message":"Merge pull request ''thinh'' (#27) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/27\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T10:30:44+07:00"},{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"},{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"}],"HeadCommit":{"Sha1":"71da43b9b4f4ec6f2aab698e1cade5906e604d35","Message":"Merge pull request ''thinh'' (#27) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/27\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T10:30:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6cbac64de2f6655baf854915aac73011498c4afc...71da43b9b4f4ec6f2aab698e1cade5906e604d35","Len":3}', 1703820651);
INSERT INTO public.action VALUES (942, 15, 1, 15, 24, 0, false, '', false, '', 1703824083);
INSERT INTO public.action VALUES (943, 12, 1, 15, 24, 0, false, '', false, '', 1703824083);
INSERT INTO public.action VALUES (944, 5, 1, 15, 24, 0, false, '', false, '', 1703824083);
INSERT INTO public.action VALUES (945, 1, 1, 15, 24, 0, false, '', false, '', 1703824083);
INSERT INTO public.action VALUES (946, 2, 1, 15, 24, 0, false, '', false, '', 1703824083);
INSERT INTO public.action VALUES (947, 15, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '', 1703824263);
INSERT INTO public.action VALUES (948, 12, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '', 1703824263);
INSERT INTO public.action VALUES (949, 5, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '', 1703824263);
INSERT INTO public.action VALUES (950, 1, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '', 1703824263);
INSERT INTO public.action VALUES (951, 2, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '', 1703824263);
INSERT INTO public.action VALUES (1138, 16, 11, 11, 21, 0, false, '', false, '29|thinh', 1704247144);
INSERT INTO public.action VALUES (940, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"71da43b9b4f4ec6f2aab698e1cade5906e604d35","Message":"Merge pull request ''thinh'' (#27) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/27\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T10:30:44+07:00"},{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"},{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"}],"HeadCommit":{"Sha1":"71da43b9b4f4ec6f2aab698e1cade5906e604d35","Message":"Merge pull request ''thinh'' (#27) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/27\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T10:30:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6cbac64de2f6655baf854915aac73011498c4afc...71da43b9b4f4ec6f2aab698e1cade5906e604d35","Len":3}', 1703820651);
INSERT INTO public.action VALUES (941, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"71da43b9b4f4ec6f2aab698e1cade5906e604d35","Message":"Merge pull request ''thinh'' (#27) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/27\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T10:30:44+07:00"},{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"},{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"}],"HeadCommit":{"Sha1":"71da43b9b4f4ec6f2aab698e1cade5906e604d35","Message":"Merge pull request ''thinh'' (#27) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/27\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T10:30:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6cbac64de2f6655baf854915aac73011498c4afc...71da43b9b4f4ec6f2aab698e1cade5906e604d35","Len":3}', 1703820651);
INSERT INTO public.action VALUES (1451, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a83c5eae96d22b60f72fa4c1a88aed04b88835af","Message":"Merge pull request ''update bao cao tuyen sinh'' (#38) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/38\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T11:24:11+07:00"},{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"}],"HeadCommit":{"Sha1":"a83c5eae96d22b60f72fa4c1a88aed04b88835af","Message":"Merge pull request ''update bao cao tuyen sinh'' (#38) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/38\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T11:24:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/568299bc2fd76e6410ce6c4a6115e561e1c1aa38...a83c5eae96d22b60f72fa4c1a88aed04b88835af","Len":2}', 1704428657);
INSERT INTO public.action VALUES (1452, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a83c5eae96d22b60f72fa4c1a88aed04b88835af","Message":"Merge pull request ''update bao cao tuyen sinh'' (#38) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/38\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T11:24:11+07:00"},{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"}],"HeadCommit":{"Sha1":"a83c5eae96d22b60f72fa4c1a88aed04b88835af","Message":"Merge pull request ''update bao cao tuyen sinh'' (#38) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/38\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T11:24:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/568299bc2fd76e6410ce6c4a6115e561e1c1aa38...a83c5eae96d22b60f72fa4c1a88aed04b88835af","Len":2}', 1704428657);
INSERT INTO public.action VALUES (1453, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a83c5eae96d22b60f72fa4c1a88aed04b88835af","Message":"Merge pull request ''update bao cao tuyen sinh'' (#38) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/38\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T11:24:11+07:00"},{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"}],"HeadCommit":{"Sha1":"a83c5eae96d22b60f72fa4c1a88aed04b88835af","Message":"Merge pull request ''update bao cao tuyen sinh'' (#38) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/38\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T11:24:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/568299bc2fd76e6410ce6c4a6115e561e1c1aa38...a83c5eae96d22b60f72fa4c1a88aed04b88835af","Len":2}', 1704428657);
INSERT INTO public.action VALUES (1702, 11, 11, 11, 21, 0, false, '', false, '50|fix giao dien', 1704558906);
INSERT INTO public.action VALUES (1703, 14, 11, 11, 21, 0, false, '', false, '50|fix giao dien', 1704558906);
INSERT INTO public.action VALUES (1704, 1, 11, 11, 21, 0, false, '', false, '50|fix giao dien', 1704558906);
INSERT INTO public.action VALUES (1705, 5, 11, 11, 21, 0, false, '', false, '50|fix giao dien', 1704558906);
INSERT INTO public.action VALUES (952, 15, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"65654af0b2e8104301d97ec18ce7aace6f92c4d0","Message":"redux\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T11:29:07+07:00"},{"Sha1":"6d798cb61f8811b96ded4282b836f7ebcb04ca00","Message":"add temp 2\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:19:48+07:00"},{"Sha1":"7c5000dfbcf64554472ed9ff7a5bf85d08838e20","Message":"git push origin dev-ios\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:14:02+07:00"},{"Sha1":"8b5d1c84b852925a3efd003f9b8cf5d24b5629be","Message":"fix ts\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T08:57:57+07:00"},{"Sha1":"ad7041117334027a3a9a3ec111301c229dd466eb","Message":"statitis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-28T13:50:56+07:00"}],"HeadCommit":{"Sha1":"65654af0b2e8104301d97ec18ce7aace6f92c4d0","Message":"redux\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T11:29:07+07:00"},"CompareURL":"","Len":8}', 1703824264);
INSERT INTO public.action VALUES (953, 12, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"65654af0b2e8104301d97ec18ce7aace6f92c4d0","Message":"redux\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T11:29:07+07:00"},{"Sha1":"6d798cb61f8811b96ded4282b836f7ebcb04ca00","Message":"add temp 2\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:19:48+07:00"},{"Sha1":"7c5000dfbcf64554472ed9ff7a5bf85d08838e20","Message":"git push origin dev-ios\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:14:02+07:00"},{"Sha1":"8b5d1c84b852925a3efd003f9b8cf5d24b5629be","Message":"fix ts\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T08:57:57+07:00"},{"Sha1":"ad7041117334027a3a9a3ec111301c229dd466eb","Message":"statitis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-28T13:50:56+07:00"}],"HeadCommit":{"Sha1":"65654af0b2e8104301d97ec18ce7aace6f92c4d0","Message":"redux\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T11:29:07+07:00"},"CompareURL":"","Len":8}', 1703824264);
INSERT INTO public.action VALUES (954, 5, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"65654af0b2e8104301d97ec18ce7aace6f92c4d0","Message":"redux\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T11:29:07+07:00"},{"Sha1":"6d798cb61f8811b96ded4282b836f7ebcb04ca00","Message":"add temp 2\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:19:48+07:00"},{"Sha1":"7c5000dfbcf64554472ed9ff7a5bf85d08838e20","Message":"git push origin dev-ios\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:14:02+07:00"},{"Sha1":"8b5d1c84b852925a3efd003f9b8cf5d24b5629be","Message":"fix ts\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T08:57:57+07:00"},{"Sha1":"ad7041117334027a3a9a3ec111301c229dd466eb","Message":"statitis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-28T13:50:56+07:00"}],"HeadCommit":{"Sha1":"65654af0b2e8104301d97ec18ce7aace6f92c4d0","Message":"redux\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T11:29:07+07:00"},"CompareURL":"","Len":8}', 1703824264);
INSERT INTO public.action VALUES (955, 1, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"65654af0b2e8104301d97ec18ce7aace6f92c4d0","Message":"redux\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T11:29:07+07:00"},{"Sha1":"6d798cb61f8811b96ded4282b836f7ebcb04ca00","Message":"add temp 2\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:19:48+07:00"},{"Sha1":"7c5000dfbcf64554472ed9ff7a5bf85d08838e20","Message":"git push origin dev-ios\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:14:02+07:00"},{"Sha1":"8b5d1c84b852925a3efd003f9b8cf5d24b5629be","Message":"fix ts\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T08:57:57+07:00"},{"Sha1":"ad7041117334027a3a9a3ec111301c229dd466eb","Message":"statitis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-28T13:50:56+07:00"}],"HeadCommit":{"Sha1":"65654af0b2e8104301d97ec18ce7aace6f92c4d0","Message":"redux\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T11:29:07+07:00"},"CompareURL":"","Len":8}', 1703824264);
INSERT INTO public.action VALUES (1153, 16, 7, 11, 21, 0, false, '', false, '30|fix stlye detail khts', 1704247790);
INSERT INTO public.action VALUES (1154, 11, 11, 11, 21, 0, false, '', false, '30|fix stlye detail khts', 1704247806);
INSERT INTO public.action VALUES (1155, 14, 11, 11, 21, 0, false, '', false, '30|fix stlye detail khts', 1704247806);
INSERT INTO public.action VALUES (1156, 1, 11, 11, 21, 0, false, '', false, '30|fix stlye detail khts', 1704247806);
INSERT INTO public.action VALUES (956, 2, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"65654af0b2e8104301d97ec18ce7aace6f92c4d0","Message":"redux\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T11:29:07+07:00"},{"Sha1":"6d798cb61f8811b96ded4282b836f7ebcb04ca00","Message":"add temp 2\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:19:48+07:00"},{"Sha1":"7c5000dfbcf64554472ed9ff7a5bf85d08838e20","Message":"git push origin dev-ios\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:14:02+07:00"},{"Sha1":"8b5d1c84b852925a3efd003f9b8cf5d24b5629be","Message":"fix ts\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T08:57:57+07:00"},{"Sha1":"ad7041117334027a3a9a3ec111301c229dd466eb","Message":"statitis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-28T13:50:56+07:00"}],"HeadCommit":{"Sha1":"65654af0b2e8104301d97ec18ce7aace6f92c4d0","Message":"redux\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T11:29:07+07:00"},"CompareURL":"","Len":8}', 1703824264);
INSERT INTO public.action VALUES (957, 15, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '', 1703824395);
INSERT INTO public.action VALUES (958, 12, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '', 1703824395);
INSERT INTO public.action VALUES (959, 5, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '', 1703824395);
INSERT INTO public.action VALUES (960, 1, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '', 1703824395);
INSERT INTO public.action VALUES (961, 2, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '', 1703824395);
INSERT INTO public.action VALUES (962, 15, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '{"Commits":[],"HeadCommit":{"Sha1":"6d798cb61f8811b96ded4282b836f7ebcb04ca00","Message":"add temp 2\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:19:48+07:00"},"CompareURL":"Khieu-nai/mobile/compare/dev-ios...6d798cb61f8811b96ded4282b836f7ebcb04ca00","Len":0}', 1703824395);
INSERT INTO public.action VALUES (963, 12, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '{"Commits":[],"HeadCommit":{"Sha1":"6d798cb61f8811b96ded4282b836f7ebcb04ca00","Message":"add temp 2\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:19:48+07:00"},"CompareURL":"Khieu-nai/mobile/compare/dev-ios...6d798cb61f8811b96ded4282b836f7ebcb04ca00","Len":0}', 1703824395);
INSERT INTO public.action VALUES (964, 5, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '{"Commits":[],"HeadCommit":{"Sha1":"6d798cb61f8811b96ded4282b836f7ebcb04ca00","Message":"add temp 2\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:19:48+07:00"},"CompareURL":"Khieu-nai/mobile/compare/dev-ios...6d798cb61f8811b96ded4282b836f7ebcb04ca00","Len":0}', 1703824395);
INSERT INTO public.action VALUES (965, 1, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '{"Commits":[],"HeadCommit":{"Sha1":"6d798cb61f8811b96ded4282b836f7ebcb04ca00","Message":"add temp 2\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:19:48+07:00"},"CompareURL":"Khieu-nai/mobile/compare/dev-ios...6d798cb61f8811b96ded4282b836f7ebcb04ca00","Len":0}', 1703824395);
INSERT INTO public.action VALUES (966, 2, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '{"Commits":[],"HeadCommit":{"Sha1":"6d798cb61f8811b96ded4282b836f7ebcb04ca00","Message":"add temp 2\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:19:48+07:00"},"CompareURL":"Khieu-nai/mobile/compare/dev-ios...6d798cb61f8811b96ded4282b836f7ebcb04ca00","Len":0}', 1703824395);
INSERT INTO public.action VALUES (967, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-29T13:19:56+07:00"}],"HeadCommit":{"Sha1":"cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-29T13:19:56+07:00"},"CompareURL":"Khieu-nai/backend/compare/6f607f73f68ad7ddbf04d1d261ff5647a6f64acb...cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Len":1}', 1703830809);
INSERT INTO public.action VALUES (968, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-29T13:19:56+07:00"}],"HeadCommit":{"Sha1":"cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-29T13:19:56+07:00"},"CompareURL":"Khieu-nai/backend/compare/6f607f73f68ad7ddbf04d1d261ff5647a6f64acb...cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Len":1}', 1703830809);
INSERT INTO public.action VALUES (969, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-29T13:19:56+07:00"}],"HeadCommit":{"Sha1":"cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-29T13:19:56+07:00"},"CompareURL":"Khieu-nai/backend/compare/6f607f73f68ad7ddbf04d1d261ff5647a6f64acb...cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Len":1}', 1703830809);
INSERT INTO public.action VALUES (1157, 5, 11, 11, 21, 0, false, '', false, '30|fix stlye detail khts', 1704247806);
INSERT INTO public.action VALUES (1158, 16, 11, 11, 21, 0, false, '', false, '30|fix stlye detail khts', 1704247806);
INSERT INTO public.action VALUES (1229, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/205/head', false, '', 1704283238);
INSERT INTO public.action VALUES (1230, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/205/head', false, '', 1704283238);
INSERT INTO public.action VALUES (971, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-29T13:19:56+07:00"}],"HeadCommit":{"Sha1":"cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-29T13:19:56+07:00"},"CompareURL":"Khieu-nai/backend/compare/6f607f73f68ad7ddbf04d1d261ff5647a6f64acb...cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Len":1}', 1703830809);
INSERT INTO public.action VALUES (972, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},{"Sha1":"b4705530ea7ba150a9b75d0f7c8e682fe4017299","Message":"thao tác gửi, phê duyệt, từ chối KHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:10:06+07:00"}],"HeadCommit":{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f25699b2b515283c5b05e4be307fc8a0bf23af8a...c1a723a5c031d0b78e2ce052faf2616b8419cf91","Len":2}', 1703832640);
INSERT INTO public.action VALUES (973, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},{"Sha1":"b4705530ea7ba150a9b75d0f7c8e682fe4017299","Message":"thao tác gửi, phê duyệt, từ chối KHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:10:06+07:00"}],"HeadCommit":{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f25699b2b515283c5b05e4be307fc8a0bf23af8a...c1a723a5c031d0b78e2ce052faf2616b8419cf91","Len":2}', 1703832640);
INSERT INTO public.action VALUES (974, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},{"Sha1":"b4705530ea7ba150a9b75d0f7c8e682fe4017299","Message":"thao tác gửi, phê duyệt, từ chối KHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:10:06+07:00"}],"HeadCommit":{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f25699b2b515283c5b05e4be307fc8a0bf23af8a...c1a723a5c031d0b78e2ce052faf2616b8419cf91","Len":2}', 1703832640);
INSERT INTO public.action VALUES (975, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},{"Sha1":"b4705530ea7ba150a9b75d0f7c8e682fe4017299","Message":"thao tác gửi, phê duyệt, từ chối KHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:10:06+07:00"}],"HeadCommit":{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f25699b2b515283c5b05e4be307fc8a0bf23af8a...c1a723a5c031d0b78e2ce052faf2616b8419cf91","Len":2}', 1703832640);
INSERT INTO public.action VALUES (976, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},{"Sha1":"b4705530ea7ba150a9b75d0f7c8e682fe4017299","Message":"thao tác gửi, phê duyệt, từ chối KHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:10:06+07:00"}],"HeadCommit":{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f25699b2b515283c5b05e4be307fc8a0bf23af8a...c1a723a5c031d0b78e2ce052faf2616b8419cf91","Len":2}', 1703832640);
INSERT INTO public.action VALUES (993, 1, 5, 1, 25, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"d6c2e64af79bb97a5b57cf8e173d2f2d29f3019b","Message":"Add project files.\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-29T14:27:31+07:00"}],"HeadCommit":{"Sha1":"d6c2e64af79bb97a5b57cf8e173d2f2d29f3019b","Message":"Add project files.\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-29T14:27:31+07:00"},"CompareURL":"","Len":1}', 1703835148);
INSERT INTO public.action VALUES (1184, 11, 7, 11, 21, 0, false, '', false, '31|thinh', 1704254945);
INSERT INTO public.action VALUES (1185, 14, 7, 11, 21, 0, false, '', false, '31|thinh', 1704254945);
INSERT INTO public.action VALUES (1186, 1, 7, 11, 21, 0, false, '', false, '31|thinh', 1704254945);
INSERT INTO public.action VALUES (1187, 5, 7, 11, 21, 0, false, '', false, '31|thinh', 1704254945);
INSERT INTO public.action VALUES (1188, 16, 7, 11, 21, 0, false, '', false, '31|thinh', 1704254945);
INSERT INTO public.action VALUES (977, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},{"Sha1":"b4705530ea7ba150a9b75d0f7c8e682fe4017299","Message":"thao tác gửi, phê duyệt, từ chối KHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:10:06+07:00"}],"HeadCommit":{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f25699b2b515283c5b05e4be307fc8a0bf23af8a...c1a723a5c031d0b78e2ce052faf2616b8419cf91","Len":2}', 1703832640);
INSERT INTO public.action VALUES (996, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"}],"HeadCommit":{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/911fdad30b51628a28e001ccf1645d9d5172e84f...9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Len":1}', 1703840880);
INSERT INTO public.action VALUES (997, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"}],"HeadCommit":{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/911fdad30b51628a28e001ccf1645d9d5172e84f...9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Len":1}', 1703840880);
INSERT INTO public.action VALUES (998, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"}],"HeadCommit":{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/911fdad30b51628a28e001ccf1645d9d5172e84f...9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Len":1}', 1703840880);
INSERT INTO public.action VALUES (999, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"}],"HeadCommit":{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/911fdad30b51628a28e001ccf1645d9d5172e84f...9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Len":1}', 1703840880);
INSERT INTO public.action VALUES (1000, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"}],"HeadCommit":{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/911fdad30b51628a28e001ccf1645d9d5172e84f...9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Len":1}', 1703840880);
INSERT INTO public.action VALUES (1001, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"}],"HeadCommit":{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9dfb299ec2026ff1d33acb42cda2ce8f89f40e93...77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Len":1}', 1703842244);
INSERT INTO public.action VALUES (1002, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"}],"HeadCommit":{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9dfb299ec2026ff1d33acb42cda2ce8f89f40e93...77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Len":1}', 1703842244);
INSERT INTO public.action VALUES (1189, 11, 11, 11, 21, 0, false, '', false, '31|thinh', 1704254967);
INSERT INTO public.action VALUES (1190, 14, 11, 11, 21, 0, false, '', false, '31|thinh', 1704254967);
INSERT INTO public.action VALUES (1191, 1, 11, 11, 21, 0, false, '', false, '31|thinh', 1704254967);
INSERT INTO public.action VALUES (1192, 5, 11, 11, 21, 0, false, '', false, '31|thinh', 1704254967);
INSERT INTO public.action VALUES (1003, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"}],"HeadCommit":{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9dfb299ec2026ff1d33acb42cda2ce8f89f40e93...77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Len":1}', 1703842244);
INSERT INTO public.action VALUES (1004, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"}],"HeadCommit":{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9dfb299ec2026ff1d33acb42cda2ce8f89f40e93...77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Len":1}', 1703842244);
INSERT INTO public.action VALUES (1005, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"}],"HeadCommit":{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9dfb299ec2026ff1d33acb42cda2ce8f89f40e93...77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Len":1}', 1703842244);
INSERT INTO public.action VALUES (1011, 11, 11, 11, 21, 0, false, '', false, '28|thinh', 1703842289);
INSERT INTO public.action VALUES (1012, 14, 11, 11, 21, 0, false, '', false, '28|thinh', 1703842289);
INSERT INTO public.action VALUES (1013, 1, 11, 11, 21, 0, false, '', false, '28|thinh', 1703842289);
INSERT INTO public.action VALUES (1014, 5, 11, 11, 21, 0, false, '', false, '28|thinh', 1703842289);
INSERT INTO public.action VALUES (1015, 16, 11, 11, 21, 0, false, '', false, '28|thinh', 1703842289);
INSERT INTO public.action VALUES (1016, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Message":"Merge pull request ''thinh'' (#28) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/28\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T16:31:24+07:00"},{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"},{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"}],"HeadCommit":{"Sha1":"b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Message":"Merge pull request ''thinh'' (#28) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/28\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T16:31:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/71da43b9b4f4ec6f2aab698e1cade5906e604d35...b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Len":3}', 1703842291);
INSERT INTO public.action VALUES (1017, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Message":"Merge pull request ''thinh'' (#28) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/28\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T16:31:24+07:00"},{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"},{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"}],"HeadCommit":{"Sha1":"b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Message":"Merge pull request ''thinh'' (#28) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/28\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T16:31:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/71da43b9b4f4ec6f2aab698e1cade5906e604d35...b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Len":3}', 1703842291);
INSERT INTO public.action VALUES (1024, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},{"Sha1":"b0168ee953762d1f623a490b8051b61d88af6391","Message":"thêm trường thao tác và QLLD_DM_TrangThaiKeHoach\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:19+07:00"},{"Sha1":"802b6d8f88f11dcb5868c1b9885e4fbf97769229","Message":"fix NLD thiếu thôn xóm\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T16:14:22+07:00"},{"Sha1":"d23d766ad31f47e8a13372950072f61c31b4c613","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T15:57:30+07:00"},{"Sha1":"9b19a5d67b0674d02e82b762c76e15fdf44a143f","Message":"fix lịch sử thao tác\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T14:24:11+07:00"}],"HeadCommit":{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c1a723a5c031d0b78e2ce052faf2616b8419cf91...0aa2586eb06833d603f5007d094fba54313b3595","Len":7}', 1703862041);
INSERT INTO public.action VALUES (1193, 16, 11, 11, 21, 0, false, '', false, '31|thinh', 1704254967);
INSERT INTO public.action VALUES (1231, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/205/head', false, '', 1704283238);
INSERT INTO public.action VALUES (1232, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/205/merge', false, '', 1704283238);
INSERT INTO public.action VALUES (1233, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/205/merge', false, '', 1704283238);
INSERT INTO public.action VALUES (1018, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Message":"Merge pull request ''thinh'' (#28) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/28\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T16:31:24+07:00"},{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"},{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"}],"HeadCommit":{"Sha1":"b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Message":"Merge pull request ''thinh'' (#28) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/28\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T16:31:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/71da43b9b4f4ec6f2aab698e1cade5906e604d35...b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Len":3}', 1703842291);
INSERT INTO public.action VALUES (1019, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Message":"Merge pull request ''thinh'' (#28) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/28\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T16:31:24+07:00"},{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"},{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"}],"HeadCommit":{"Sha1":"b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Message":"Merge pull request ''thinh'' (#28) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/28\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T16:31:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/71da43b9b4f4ec6f2aab698e1cade5906e604d35...b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Len":3}', 1703842291);
INSERT INTO public.action VALUES (1020, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Message":"Merge pull request ''thinh'' (#28) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/28\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T16:31:24+07:00"},{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"},{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"}],"HeadCommit":{"Sha1":"b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Message":"Merge pull request ''thinh'' (#28) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/28\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T16:31:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/71da43b9b4f4ec6f2aab698e1cade5906e604d35...b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Len":3}', 1703842291);
INSERT INTO public.action VALUES (1021, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},{"Sha1":"b0168ee953762d1f623a490b8051b61d88af6391","Message":"thêm trường thao tác và QLLD_DM_TrangThaiKeHoach\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:19+07:00"},{"Sha1":"802b6d8f88f11dcb5868c1b9885e4fbf97769229","Message":"fix NLD thiếu thôn xóm\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T16:14:22+07:00"},{"Sha1":"d23d766ad31f47e8a13372950072f61c31b4c613","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T15:57:30+07:00"},{"Sha1":"9b19a5d67b0674d02e82b762c76e15fdf44a143f","Message":"fix lịch sử thao tác\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T14:24:11+07:00"}],"HeadCommit":{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c1a723a5c031d0b78e2ce052faf2616b8419cf91...0aa2586eb06833d603f5007d094fba54313b3595","Len":7}', 1703862041);
INSERT INTO public.action VALUES (1022, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},{"Sha1":"b0168ee953762d1f623a490b8051b61d88af6391","Message":"thêm trường thao tác và QLLD_DM_TrangThaiKeHoach\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:19+07:00"},{"Sha1":"802b6d8f88f11dcb5868c1b9885e4fbf97769229","Message":"fix NLD thiếu thôn xóm\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T16:14:22+07:00"},{"Sha1":"d23d766ad31f47e8a13372950072f61c31b4c613","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T15:57:30+07:00"},{"Sha1":"9b19a5d67b0674d02e82b762c76e15fdf44a143f","Message":"fix lịch sử thao tác\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T14:24:11+07:00"}],"HeadCommit":{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c1a723a5c031d0b78e2ce052faf2616b8419cf91...0aa2586eb06833d603f5007d094fba54313b3595","Len":7}', 1703862041);
INSERT INTO public.action VALUES (1023, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},{"Sha1":"b0168ee953762d1f623a490b8051b61d88af6391","Message":"thêm trường thao tác và QLLD_DM_TrangThaiKeHoach\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:19+07:00"},{"Sha1":"802b6d8f88f11dcb5868c1b9885e4fbf97769229","Message":"fix NLD thiếu thôn xóm\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T16:14:22+07:00"},{"Sha1":"d23d766ad31f47e8a13372950072f61c31b4c613","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T15:57:30+07:00"},{"Sha1":"9b19a5d67b0674d02e82b762c76e15fdf44a143f","Message":"fix lịch sử thao tác\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T14:24:11+07:00"}],"HeadCommit":{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c1a723a5c031d0b78e2ce052faf2616b8419cf91...0aa2586eb06833d603f5007d094fba54313b3595","Len":7}', 1703862041);
INSERT INTO public.action VALUES (1032, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/203/head', false, '', 1704077438);
INSERT INTO public.action VALUES (1033, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/203/head', false, '', 1704077438);
INSERT INTO public.action VALUES (1025, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},{"Sha1":"b0168ee953762d1f623a490b8051b61d88af6391","Message":"thêm trường thao tác và QLLD_DM_TrangThaiKeHoach\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:19+07:00"},{"Sha1":"802b6d8f88f11dcb5868c1b9885e4fbf97769229","Message":"fix NLD thiếu thôn xóm\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T16:14:22+07:00"},{"Sha1":"d23d766ad31f47e8a13372950072f61c31b4c613","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T15:57:30+07:00"},{"Sha1":"9b19a5d67b0674d02e82b762c76e15fdf44a143f","Message":"fix lịch sử thao tác\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T14:24:11+07:00"}],"HeadCommit":{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c1a723a5c031d0b78e2ce052faf2616b8419cf91...0aa2586eb06833d603f5007d094fba54313b3595","Len":7}', 1703862041);
INSERT INTO public.action VALUES (1026, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},{"Sha1":"b0168ee953762d1f623a490b8051b61d88af6391","Message":"thêm trường thao tác và QLLD_DM_TrangThaiKeHoach\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:19+07:00"},{"Sha1":"802b6d8f88f11dcb5868c1b9885e4fbf97769229","Message":"fix NLD thiếu thôn xóm\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T16:14:22+07:00"},{"Sha1":"d23d766ad31f47e8a13372950072f61c31b4c613","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T15:57:30+07:00"},{"Sha1":"9b19a5d67b0674d02e82b762c76e15fdf44a143f","Message":"fix lịch sử thao tác\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T14:24:11+07:00"}],"HeadCommit":{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c1a723a5c031d0b78e2ce052faf2616b8419cf91...0aa2586eb06833d603f5007d094fba54313b3595","Len":7}', 1703862041);
INSERT INTO public.action VALUES (1027, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"}],"HeadCommit":{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a...e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Len":1}', 1703940028);
INSERT INTO public.action VALUES (1028, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"}],"HeadCommit":{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a...e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Len":1}', 1703940028);
INSERT INTO public.action VALUES (1029, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"}],"HeadCommit":{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a...e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Len":1}', 1703940028);
INSERT INTO public.action VALUES (1030, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"}],"HeadCommit":{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a...e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Len":1}', 1703940028);
INSERT INTO public.action VALUES (1031, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"}],"HeadCommit":{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a...e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Len":1}', 1703940028);
INSERT INTO public.action VALUES (1454, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/187/head', false, '', 1704430238);
INSERT INTO public.action VALUES (1455, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/187/head', false, '', 1704430239);
INSERT INTO public.action VALUES (1456, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/187/head', false, '', 1704430239);
INSERT INTO public.action VALUES (1457, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/187/merge', false, '', 1704430239);
INSERT INTO public.action VALUES (1458, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/187/merge', false, '', 1704430239);
INSERT INTO public.action VALUES (1459, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/187/merge', false, '', 1704430239);
INSERT INTO public.action VALUES (1460, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/188/head', false, '', 1704430239);
INSERT INTO public.action VALUES (1461, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/188/head', false, '', 1704430239);
INSERT INTO public.action VALUES (1462, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/188/head', false, '', 1704430239);
INSERT INTO public.action VALUES (1463, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/188/merge', false, '', 1704430239);
INSERT INTO public.action VALUES (1464, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/188/merge', false, '', 1704430239);
INSERT INTO public.action VALUES (1465, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/188/merge', false, '', 1704430239);
INSERT INTO public.action VALUES (1706, 16, 11, 11, 21, 0, false, '', false, '50|fix giao dien', 1704558906);
INSERT INTO public.action VALUES (1092, 13, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"8b79942357f0e1a362058fb81823a099385830cc","Message":"Merge branch ''dong-dev'' into ''develop''\n\nupdate next event\n\nSee merge request binh-dinh-f1/binhdinhf1-website!211","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:44:49Z"},{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"}],"HeadCommit":{"Sha1":"8b79942357f0e1a362058fb81823a099385830cc","Message":"Merge branch ''dong-dev'' into ''develop''\n\nupdate next event\n\nSee merge request binh-dinh-f1/binhdinhf1-website!211","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:44:49Z"},"CompareURL":"binh-dinh-f1/website/compare/53c52ec0d6cfe41371cab3639787851006ad2433...8b79942357f0e1a362058fb81823a099385830cc","Len":2}', 1704136239);
INSERT INTO public.action VALUES (1093, 1, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"8b79942357f0e1a362058fb81823a099385830cc","Message":"Merge branch ''dong-dev'' into ''develop''\n\nupdate next event\n\nSee merge request binh-dinh-f1/binhdinhf1-website!211","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:44:49Z"},{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"}],"HeadCommit":{"Sha1":"8b79942357f0e1a362058fb81823a099385830cc","Message":"Merge branch ''dong-dev'' into ''develop''\n\nupdate next event\n\nSee merge request binh-dinh-f1/binhdinhf1-website!211","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:44:49Z"},"CompareURL":"binh-dinh-f1/website/compare/53c52ec0d6cfe41371cab3639787851006ad2433...8b79942357f0e1a362058fb81823a099385830cc","Len":2}', 1704136239);
INSERT INTO public.action VALUES (1094, 4, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"8b79942357f0e1a362058fb81823a099385830cc","Message":"Merge branch ''dong-dev'' into ''develop''\n\nupdate next event\n\nSee merge request binh-dinh-f1/binhdinhf1-website!211","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:44:49Z"},{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"}],"HeadCommit":{"Sha1":"8b79942357f0e1a362058fb81823a099385830cc","Message":"Merge branch ''dong-dev'' into ''develop''\n\nupdate next event\n\nSee merge request binh-dinh-f1/binhdinhf1-website!211","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:44:49Z"},"CompareURL":"binh-dinh-f1/website/compare/53c52ec0d6cfe41371cab3639787851006ad2433...8b79942357f0e1a362058fb81823a099385830cc","Len":2}', 1704136239);
INSERT INTO public.action VALUES (1095, 13, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"}],"HeadCommit":{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"},"CompareURL":"binh-dinh-f1/website/compare/3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba...4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Len":1}', 1704136240);
INSERT INTO public.action VALUES (1096, 1, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"}],"HeadCommit":{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"},"CompareURL":"binh-dinh-f1/website/compare/3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba...4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Len":1}', 1704136240);
INSERT INTO public.action VALUES (1097, 4, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"}],"HeadCommit":{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"},"CompareURL":"binh-dinh-f1/website/compare/3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba...4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Len":1}', 1704136240);
INSERT INTO public.action VALUES (1098, 13, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3388156ba70abc12c5d9f57ba31b3273f2bc34ae","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!212","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:45:10Z"},{"Sha1":"8b79942357f0e1a362058fb81823a099385830cc","Message":"Merge branch ''dong-dev'' into ''develop''\n\nupdate next event\n\nSee merge request binh-dinh-f1/binhdinhf1-website!211","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:44:49Z"},{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"}],"HeadCommit":{"Sha1":"3388156ba70abc12c5d9f57ba31b3273f2bc34ae","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!212","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:45:10Z"},"CompareURL":"binh-dinh-f1/website/compare/24a94ddb7448d419edc28e8d69dfcb73ca0edbd1...3388156ba70abc12c5d9f57ba31b3273f2bc34ae","Len":3}', 1704136241);
INSERT INTO public.action VALUES (1234, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/205/merge', false, '', 1704283238);
INSERT INTO public.action VALUES (1235, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/206/head', false, '', 1704283238);
INSERT INTO public.action VALUES (1236, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/206/head', false, '', 1704283238);
INSERT INTO public.action VALUES (1237, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/206/head', false, '', 1704283238);
INSERT INTO public.action VALUES (1099, 1, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3388156ba70abc12c5d9f57ba31b3273f2bc34ae","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!212","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:45:10Z"},{"Sha1":"8b79942357f0e1a362058fb81823a099385830cc","Message":"Merge branch ''dong-dev'' into ''develop''\n\nupdate next event\n\nSee merge request binh-dinh-f1/binhdinhf1-website!211","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:44:49Z"},{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"}],"HeadCommit":{"Sha1":"3388156ba70abc12c5d9f57ba31b3273f2bc34ae","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!212","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:45:10Z"},"CompareURL":"binh-dinh-f1/website/compare/24a94ddb7448d419edc28e8d69dfcb73ca0edbd1...3388156ba70abc12c5d9f57ba31b3273f2bc34ae","Len":3}', 1704136241);
INSERT INTO public.action VALUES (1100, 4, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3388156ba70abc12c5d9f57ba31b3273f2bc34ae","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!212","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:45:10Z"},{"Sha1":"8b79942357f0e1a362058fb81823a099385830cc","Message":"Merge branch ''dong-dev'' into ''develop''\n\nupdate next event\n\nSee merge request binh-dinh-f1/binhdinhf1-website!211","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:44:49Z"},{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"}],"HeadCommit":{"Sha1":"3388156ba70abc12c5d9f57ba31b3273f2bc34ae","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!212","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:45:10Z"},"CompareURL":"binh-dinh-f1/website/compare/24a94ddb7448d419edc28e8d69dfcb73ca0edbd1...3388156ba70abc12c5d9f57ba31b3273f2bc34ae","Len":3}', 1704136241);
INSERT INTO public.action VALUES (1113, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"}],"HeadCommit":{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e...e03a51dfba325dd115c61bfabae354fc8bce8a39","Len":1}', 1704180854);
INSERT INTO public.action VALUES (1114, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"}],"HeadCommit":{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e...e03a51dfba325dd115c61bfabae354fc8bce8a39","Len":1}', 1704180854);
INSERT INTO public.action VALUES (1115, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"}],"HeadCommit":{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e...e03a51dfba325dd115c61bfabae354fc8bce8a39","Len":1}', 1704180854);
INSERT INTO public.action VALUES (1116, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"}],"HeadCommit":{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e...e03a51dfba325dd115c61bfabae354fc8bce8a39","Len":1}', 1704180854);
INSERT INTO public.action VALUES (1117, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"}],"HeadCommit":{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e...e03a51dfba325dd115c61bfabae354fc8bce8a39","Len":1}', 1704180854);
INSERT INTO public.action VALUES (1238, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/206/merge', false, '', 1704283238);
INSERT INTO public.action VALUES (1239, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/206/merge', false, '', 1704283238);
INSERT INTO public.action VALUES (1240, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/206/merge', false, '', 1704283238);
INSERT INTO public.action VALUES (1118, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},{"Sha1":"c02a6090333569afa7ad41c16ce3639ef4b93700","Message":"So sánh số kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:37:16+07:00"},{"Sha1":"584711a61d10d4fedf7faf0f8237692f9f2e2f9e","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:35+07:00"},{"Sha1":"f4c42108115e2bcb2c30189b44b299cd6795a67f","Message":" BC Tn kqua giai quyet viec lam\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:30+07:00"},{"Sha1":"05c8943512ee3a890ab4a5fc1b309998f42ef66b","Message":"YCCSKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T11:52:18+07:00"}],"HeadCommit":{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0aa2586eb06833d603f5007d094fba54313b3595...522675e664aeac01db7f9ed3b7694c7380801a45","Len":6}', 1704185440);
INSERT INTO public.action VALUES (1119, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},{"Sha1":"c02a6090333569afa7ad41c16ce3639ef4b93700","Message":"So sánh số kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:37:16+07:00"},{"Sha1":"584711a61d10d4fedf7faf0f8237692f9f2e2f9e","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:35+07:00"},{"Sha1":"f4c42108115e2bcb2c30189b44b299cd6795a67f","Message":" BC Tn kqua giai quyet viec lam\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:30+07:00"},{"Sha1":"05c8943512ee3a890ab4a5fc1b309998f42ef66b","Message":"YCCSKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T11:52:18+07:00"}],"HeadCommit":{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0aa2586eb06833d603f5007d094fba54313b3595...522675e664aeac01db7f9ed3b7694c7380801a45","Len":6}', 1704185440);
INSERT INTO public.action VALUES (1120, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},{"Sha1":"c02a6090333569afa7ad41c16ce3639ef4b93700","Message":"So sánh số kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:37:16+07:00"},{"Sha1":"584711a61d10d4fedf7faf0f8237692f9f2e2f9e","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:35+07:00"},{"Sha1":"f4c42108115e2bcb2c30189b44b299cd6795a67f","Message":" BC Tn kqua giai quyet viec lam\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:30+07:00"},{"Sha1":"05c8943512ee3a890ab4a5fc1b309998f42ef66b","Message":"YCCSKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T11:52:18+07:00"}],"HeadCommit":{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0aa2586eb06833d603f5007d094fba54313b3595...522675e664aeac01db7f9ed3b7694c7380801a45","Len":6}', 1704185440);
INSERT INTO public.action VALUES (1121, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},{"Sha1":"c02a6090333569afa7ad41c16ce3639ef4b93700","Message":"So sánh số kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:37:16+07:00"},{"Sha1":"584711a61d10d4fedf7faf0f8237692f9f2e2f9e","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:35+07:00"},{"Sha1":"f4c42108115e2bcb2c30189b44b299cd6795a67f","Message":" BC Tn kqua giai quyet viec lam\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:30+07:00"},{"Sha1":"05c8943512ee3a890ab4a5fc1b309998f42ef66b","Message":"YCCSKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T11:52:18+07:00"}],"HeadCommit":{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0aa2586eb06833d603f5007d094fba54313b3595...522675e664aeac01db7f9ed3b7694c7380801a45","Len":6}', 1704185440);
INSERT INTO public.action VALUES (1122, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},{"Sha1":"c02a6090333569afa7ad41c16ce3639ef4b93700","Message":"So sánh số kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:37:16+07:00"},{"Sha1":"584711a61d10d4fedf7faf0f8237692f9f2e2f9e","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:35+07:00"},{"Sha1":"f4c42108115e2bcb2c30189b44b299cd6795a67f","Message":" BC Tn kqua giai quyet viec lam\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:30+07:00"},{"Sha1":"05c8943512ee3a890ab4a5fc1b309998f42ef66b","Message":"YCCSKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T11:52:18+07:00"}],"HeadCommit":{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0aa2586eb06833d603f5007d094fba54313b3595...522675e664aeac01db7f9ed3b7694c7380801a45","Len":6}', 1704185440);
INSERT INTO public.action VALUES (1123, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},{"Sha1":"c02a6090333569afa7ad41c16ce3639ef4b93700","Message":"So sánh số kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:37:16+07:00"},{"Sha1":"584711a61d10d4fedf7faf0f8237692f9f2e2f9e","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:35+07:00"},{"Sha1":"f4c42108115e2bcb2c30189b44b299cd6795a67f","Message":" BC Tn kqua giai quyet viec lam\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:30+07:00"},{"Sha1":"05c8943512ee3a890ab4a5fc1b309998f42ef66b","Message":"YCCSKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T11:52:18+07:00"}],"HeadCommit":{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0aa2586eb06833d603f5007d094fba54313b3595...522675e664aeac01db7f9ed3b7694c7380801a45","Len":6}', 1704185440);
INSERT INTO public.action VALUES (1124, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"}],"HeadCommit":{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e03a51dfba325dd115c61bfabae354fc8bce8a39...93d05635290ecb9e83937118a5aa9baf089d30ac","Len":1}', 1704247094);
INSERT INTO public.action VALUES (1125, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"}],"HeadCommit":{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e03a51dfba325dd115c61bfabae354fc8bce8a39...93d05635290ecb9e83937118a5aa9baf089d30ac","Len":1}', 1704247094);
INSERT INTO public.action VALUES (1126, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"}],"HeadCommit":{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e03a51dfba325dd115c61bfabae354fc8bce8a39...93d05635290ecb9e83937118a5aa9baf089d30ac","Len":1}', 1704247094);
INSERT INTO public.action VALUES (1247, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/191/head', false, '', 1704312638);
INSERT INTO public.action VALUES (1127, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"}],"HeadCommit":{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e03a51dfba325dd115c61bfabae354fc8bce8a39...93d05635290ecb9e83937118a5aa9baf089d30ac","Len":1}', 1704247094);
INSERT INTO public.action VALUES (1128, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"}],"HeadCommit":{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e03a51dfba325dd115c61bfabae354fc8bce8a39...93d05635290ecb9e83937118a5aa9baf089d30ac","Len":1}', 1704247094);
INSERT INTO public.action VALUES (1129, 11, 7, 11, 21, 0, false, '', false, '29|thinh', 1704247128);
INSERT INTO public.action VALUES (1130, 14, 7, 11, 21, 0, false, '', false, '29|thinh', 1704247128);
INSERT INTO public.action VALUES (1131, 1, 7, 11, 21, 0, false, '', false, '29|thinh', 1704247128);
INSERT INTO public.action VALUES (1132, 5, 7, 11, 21, 0, false, '', false, '29|thinh', 1704247128);
INSERT INTO public.action VALUES (1133, 16, 7, 11, 21, 0, false, '', false, '29|thinh', 1704247128);
INSERT INTO public.action VALUES (1139, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1b4fab6a15956bae864162531765607648272383","Message":"Merge pull request ''thinh'' (#29) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/29\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T08:58:59+07:00"},{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"},{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"},{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"}],"HeadCommit":{"Sha1":"1b4fab6a15956bae864162531765607648272383","Message":"Merge pull request ''thinh'' (#29) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/29\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T08:58:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9...1b4fab6a15956bae864162531765607648272383","Len":4}', 1704247146);
INSERT INTO public.action VALUES (1140, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1b4fab6a15956bae864162531765607648272383","Message":"Merge pull request ''thinh'' (#29) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/29\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T08:58:59+07:00"},{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"},{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"},{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"}],"HeadCommit":{"Sha1":"1b4fab6a15956bae864162531765607648272383","Message":"Merge pull request ''thinh'' (#29) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/29\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T08:58:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9...1b4fab6a15956bae864162531765607648272383","Len":4}', 1704247146);
INSERT INTO public.action VALUES (1144, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"}],"HeadCommit":{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/93d05635290ecb9e83937118a5aa9baf089d30ac...97b72611674d4b7b1aef7a4ccf73d301d3b95704","Len":1}', 1704247701);
INSERT INTO public.action VALUES (1248, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/191/head', false, '', 1704312639);
INSERT INTO public.action VALUES (1249, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/191/head', false, '', 1704312639);
INSERT INTO public.action VALUES (1250, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/191/merge', false, '', 1704312639);
INSERT INTO public.action VALUES (1251, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/191/merge', false, '', 1704312639);
INSERT INTO public.action VALUES (1252, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/191/merge', false, '', 1704312639);
INSERT INTO public.action VALUES (1253, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/192/head', false, '', 1704312639);
INSERT INTO public.action VALUES (1141, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1b4fab6a15956bae864162531765607648272383","Message":"Merge pull request ''thinh'' (#29) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/29\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T08:58:59+07:00"},{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"},{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"},{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"}],"HeadCommit":{"Sha1":"1b4fab6a15956bae864162531765607648272383","Message":"Merge pull request ''thinh'' (#29) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/29\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T08:58:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9...1b4fab6a15956bae864162531765607648272383","Len":4}', 1704247146);
INSERT INTO public.action VALUES (1142, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1b4fab6a15956bae864162531765607648272383","Message":"Merge pull request ''thinh'' (#29) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/29\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T08:58:59+07:00"},{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"},{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"},{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"}],"HeadCommit":{"Sha1":"1b4fab6a15956bae864162531765607648272383","Message":"Merge pull request ''thinh'' (#29) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/29\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T08:58:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9...1b4fab6a15956bae864162531765607648272383","Len":4}', 1704247146);
INSERT INTO public.action VALUES (1143, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1b4fab6a15956bae864162531765607648272383","Message":"Merge pull request ''thinh'' (#29) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/29\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T08:58:59+07:00"},{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"},{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"},{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"}],"HeadCommit":{"Sha1":"1b4fab6a15956bae864162531765607648272383","Message":"Merge pull request ''thinh'' (#29) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/29\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T08:58:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9...1b4fab6a15956bae864162531765607648272383","Len":4}', 1704247146);
INSERT INTO public.action VALUES (1466, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"}],"HeadCommit":{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/792bcff3d21254a02cb1dc70989f44cd948b788e...abb8ae120157a6719fa9094c0b05ff6c11052efd","Len":1}', 1704444457);
INSERT INTO public.action VALUES (1467, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"}],"HeadCommit":{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/792bcff3d21254a02cb1dc70989f44cd948b788e...abb8ae120157a6719fa9094c0b05ff6c11052efd","Len":1}', 1704444457);
INSERT INTO public.action VALUES (1722, 11, 11, 11, 21, 0, false, '', false, '51|add ui screen', 1704559663);
INSERT INTO public.action VALUES (1723, 14, 11, 11, 21, 0, false, '', false, '51|add ui screen', 1704559663);
INSERT INTO public.action VALUES (1145, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"}],"HeadCommit":{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/93d05635290ecb9e83937118a5aa9baf089d30ac...97b72611674d4b7b1aef7a4ccf73d301d3b95704","Len":1}', 1704247701);
INSERT INTO public.action VALUES (1146, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"}],"HeadCommit":{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/93d05635290ecb9e83937118a5aa9baf089d30ac...97b72611674d4b7b1aef7a4ccf73d301d3b95704","Len":1}', 1704247701);
INSERT INTO public.action VALUES (1147, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"}],"HeadCommit":{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/93d05635290ecb9e83937118a5aa9baf089d30ac...97b72611674d4b7b1aef7a4ccf73d301d3b95704","Len":1}', 1704247701);
INSERT INTO public.action VALUES (1148, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"}],"HeadCommit":{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/93d05635290ecb9e83937118a5aa9baf089d30ac...97b72611674d4b7b1aef7a4ccf73d301d3b95704","Len":1}', 1704247701);
INSERT INTO public.action VALUES (1468, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"}],"HeadCommit":{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/792bcff3d21254a02cb1dc70989f44cd948b788e...abb8ae120157a6719fa9094c0b05ff6c11052efd","Len":1}', 1704444457);
INSERT INTO public.action VALUES (1469, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"}],"HeadCommit":{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/792bcff3d21254a02cb1dc70989f44cd948b788e...abb8ae120157a6719fa9094c0b05ff6c11052efd","Len":1}', 1704444457);
INSERT INTO public.action VALUES (1470, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"}],"HeadCommit":{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/792bcff3d21254a02cb1dc70989f44cd948b788e...abb8ae120157a6719fa9094c0b05ff6c11052efd","Len":1}', 1704444457);
INSERT INTO public.action VALUES (1471, 11, 7, 11, 21, 0, false, '', false, '39|update Loai hinh csgdnn', 1704444553);
INSERT INTO public.action VALUES (1472, 14, 7, 11, 21, 0, false, '', false, '39|update Loai hinh csgdnn', 1704444553);
INSERT INTO public.action VALUES (1473, 1, 7, 11, 21, 0, false, '', false, '39|update Loai hinh csgdnn', 1704444553);
INSERT INTO public.action VALUES (1474, 5, 7, 11, 21, 0, false, '', false, '39|update Loai hinh csgdnn', 1704444553);
INSERT INTO public.action VALUES (1475, 16, 7, 11, 21, 0, false, '', false, '39|update Loai hinh csgdnn', 1704444553);
INSERT INTO public.action VALUES (1476, 11, 11, 11, 21, 0, false, '', false, '39|update Loai hinh csgdnn', 1704444567);
INSERT INTO public.action VALUES (1477, 14, 11, 11, 21, 0, false, '', false, '39|update Loai hinh csgdnn', 1704444567);
INSERT INTO public.action VALUES (1478, 1, 11, 11, 21, 0, false, '', false, '39|update Loai hinh csgdnn', 1704444567);
INSERT INTO public.action VALUES (1479, 5, 11, 11, 21, 0, false, '', false, '39|update Loai hinh csgdnn', 1704444567);
INSERT INTO public.action VALUES (1480, 16, 11, 11, 21, 0, false, '', false, '39|update Loai hinh csgdnn', 1704444567);
INSERT INTO public.action VALUES (1724, 1, 11, 11, 21, 0, false, '', false, '51|add ui screen', 1704559663);
INSERT INTO public.action VALUES (1725, 5, 11, 11, 21, 0, false, '', false, '51|add ui screen', 1704559663);
INSERT INTO public.action VALUES (1726, 16, 11, 11, 21, 0, false, '', false, '51|add ui screen', 1704559663);
INSERT INTO public.action VALUES (1802, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/182/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1159, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Message":"Merge pull request ''fix stlye detail khts'' (#30) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/30\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T09:10:01+07:00"},{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"}],"HeadCommit":{"Sha1":"d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Message":"Merge pull request ''fix stlye detail khts'' (#30) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/30\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T09:10:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1b4fab6a15956bae864162531765607648272383...d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Len":2}', 1704247806);
INSERT INTO public.action VALUES (1160, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Message":"Merge pull request ''fix stlye detail khts'' (#30) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/30\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T09:10:01+07:00"},{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"}],"HeadCommit":{"Sha1":"d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Message":"Merge pull request ''fix stlye detail khts'' (#30) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/30\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T09:10:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1b4fab6a15956bae864162531765607648272383...d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Len":2}', 1704247806);
INSERT INTO public.action VALUES (1161, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Message":"Merge pull request ''fix stlye detail khts'' (#30) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/30\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T09:10:01+07:00"},{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"}],"HeadCommit":{"Sha1":"d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Message":"Merge pull request ''fix stlye detail khts'' (#30) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/30\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T09:10:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1b4fab6a15956bae864162531765607648272383...d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Len":2}', 1704247806);
INSERT INTO public.action VALUES (1162, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Message":"Merge pull request ''fix stlye detail khts'' (#30) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/30\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T09:10:01+07:00"},{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"}],"HeadCommit":{"Sha1":"d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Message":"Merge pull request ''fix stlye detail khts'' (#30) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/30\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T09:10:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1b4fab6a15956bae864162531765607648272383...d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Len":2}', 1704247806);
INSERT INTO public.action VALUES (1163, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Message":"Merge pull request ''fix stlye detail khts'' (#30) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/30\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T09:10:01+07:00"},{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"}],"HeadCommit":{"Sha1":"d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Message":"Merge pull request ''fix stlye detail khts'' (#30) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/30\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T09:10:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1b4fab6a15956bae864162531765607648272383...d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Len":2}', 1704247806);
INSERT INTO public.action VALUES (1164, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"}],"HeadCommit":{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/97b72611674d4b7b1aef7a4ccf73d301d3b95704...b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Len":1}', 1704250411);
INSERT INTO public.action VALUES (1254, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/192/head', false, '', 1704312639);
INSERT INTO public.action VALUES (1165, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"}],"HeadCommit":{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/97b72611674d4b7b1aef7a4ccf73d301d3b95704...b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Len":1}', 1704250411);
INSERT INTO public.action VALUES (1166, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"}],"HeadCommit":{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/97b72611674d4b7b1aef7a4ccf73d301d3b95704...b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Len":1}', 1704250411);
INSERT INTO public.action VALUES (1167, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"}],"HeadCommit":{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/97b72611674d4b7b1aef7a4ccf73d301d3b95704...b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Len":1}', 1704250411);
INSERT INTO public.action VALUES (1168, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"}],"HeadCommit":{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/97b72611674d4b7b1aef7a4ccf73d301d3b95704...b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Len":1}', 1704250411);
INSERT INTO public.action VALUES (1481, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1511625e8a850a70547c23e491168c2ac465a5e6","Message":"Merge pull request ''update Loai hinh csgdnn'' (#39) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/39\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T15:49:22+07:00"},{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"}],"HeadCommit":{"Sha1":"1511625e8a850a70547c23e491168c2ac465a5e6","Message":"Merge pull request ''update Loai hinh csgdnn'' (#39) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/39\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T15:49:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a83c5eae96d22b60f72fa4c1a88aed04b88835af...1511625e8a850a70547c23e491168c2ac465a5e6","Len":2}', 1704444569);
INSERT INTO public.action VALUES (1482, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1511625e8a850a70547c23e491168c2ac465a5e6","Message":"Merge pull request ''update Loai hinh csgdnn'' (#39) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/39\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T15:49:22+07:00"},{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"}],"HeadCommit":{"Sha1":"1511625e8a850a70547c23e491168c2ac465a5e6","Message":"Merge pull request ''update Loai hinh csgdnn'' (#39) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/39\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T15:49:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a83c5eae96d22b60f72fa4c1a88aed04b88835af...1511625e8a850a70547c23e491168c2ac465a5e6","Len":2}', 1704444569);
INSERT INTO public.action VALUES (1483, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1511625e8a850a70547c23e491168c2ac465a5e6","Message":"Merge pull request ''update Loai hinh csgdnn'' (#39) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/39\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T15:49:22+07:00"},{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"}],"HeadCommit":{"Sha1":"1511625e8a850a70547c23e491168c2ac465a5e6","Message":"Merge pull request ''update Loai hinh csgdnn'' (#39) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/39\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T15:49:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a83c5eae96d22b60f72fa4c1a88aed04b88835af...1511625e8a850a70547c23e491168c2ac465a5e6","Len":2}', 1704444569);
INSERT INTO public.action VALUES (1803, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/182/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1169, 15, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '{"Commits":[{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"}],"HeadCommit":{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"},"CompareURL":"Khieu-nai/mobile/compare/6d798cb61f8811b96ded4282b836f7ebcb04ca00...36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Len":1}', 1704251278);
INSERT INTO public.action VALUES (1170, 12, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '{"Commits":[{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"}],"HeadCommit":{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"},"CompareURL":"Khieu-nai/mobile/compare/6d798cb61f8811b96ded4282b836f7ebcb04ca00...36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Len":1}', 1704251278);
INSERT INTO public.action VALUES (1171, 5, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '{"Commits":[{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"}],"HeadCommit":{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"},"CompareURL":"Khieu-nai/mobile/compare/6d798cb61f8811b96ded4282b836f7ebcb04ca00...36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Len":1}', 1704251278);
INSERT INTO public.action VALUES (1172, 1, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '{"Commits":[{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"}],"HeadCommit":{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"},"CompareURL":"Khieu-nai/mobile/compare/6d798cb61f8811b96ded4282b836f7ebcb04ca00...36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Len":1}', 1704251278);
INSERT INTO public.action VALUES (1173, 2, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '{"Commits":[{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"}],"HeadCommit":{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"},"CompareURL":"Khieu-nai/mobile/compare/6d798cb61f8811b96ded4282b836f7ebcb04ca00...36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Len":1}', 1704251278);
INSERT INTO public.action VALUES (1174, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"}],"HeadCommit":{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4a6697bee6b6f16460ecbb3a85fe00d085bebe9...1f50a9600f44e3ab03f9211932cd46b5e9acf664","Len":1}', 1704251443);
INSERT INTO public.action VALUES (1175, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"}],"HeadCommit":{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4a6697bee6b6f16460ecbb3a85fe00d085bebe9...1f50a9600f44e3ab03f9211932cd46b5e9acf664","Len":1}', 1704251443);
INSERT INTO public.action VALUES (1176, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"}],"HeadCommit":{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4a6697bee6b6f16460ecbb3a85fe00d085bebe9...1f50a9600f44e3ab03f9211932cd46b5e9acf664","Len":1}', 1704251443);
INSERT INTO public.action VALUES (1177, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"}],"HeadCommit":{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4a6697bee6b6f16460ecbb3a85fe00d085bebe9...1f50a9600f44e3ab03f9211932cd46b5e9acf664","Len":1}', 1704251443);
INSERT INTO public.action VALUES (1255, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/192/head', false, '', 1704312639);
INSERT INTO public.action VALUES (1178, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"}],"HeadCommit":{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4a6697bee6b6f16460ecbb3a85fe00d085bebe9...1f50a9600f44e3ab03f9211932cd46b5e9acf664","Len":1}', 1704251443);
INSERT INTO public.action VALUES (1179, 15, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"30880c575192480eba4d0196a8c82d1212457d4d","Message":"merge android\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:26:14+07:00"},{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"}],"HeadCommit":{"Sha1":"30880c575192480eba4d0196a8c82d1212457d4d","Message":"merge android\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:26:14+07:00"},"CompareURL":"Khieu-nai/mobile/compare/65654af0b2e8104301d97ec18ce7aace6f92c4d0...30880c575192480eba4d0196a8c82d1212457d4d","Len":2}', 1704252395);
INSERT INTO public.action VALUES (1180, 12, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"30880c575192480eba4d0196a8c82d1212457d4d","Message":"merge android\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:26:14+07:00"},{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"}],"HeadCommit":{"Sha1":"30880c575192480eba4d0196a8c82d1212457d4d","Message":"merge android\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:26:14+07:00"},"CompareURL":"Khieu-nai/mobile/compare/65654af0b2e8104301d97ec18ce7aace6f92c4d0...30880c575192480eba4d0196a8c82d1212457d4d","Len":2}', 1704252395);
INSERT INTO public.action VALUES (1181, 5, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"30880c575192480eba4d0196a8c82d1212457d4d","Message":"merge android\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:26:14+07:00"},{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"}],"HeadCommit":{"Sha1":"30880c575192480eba4d0196a8c82d1212457d4d","Message":"merge android\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:26:14+07:00"},"CompareURL":"Khieu-nai/mobile/compare/65654af0b2e8104301d97ec18ce7aace6f92c4d0...30880c575192480eba4d0196a8c82d1212457d4d","Len":2}', 1704252395);
INSERT INTO public.action VALUES (1182, 1, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"30880c575192480eba4d0196a8c82d1212457d4d","Message":"merge android\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:26:14+07:00"},{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"}],"HeadCommit":{"Sha1":"30880c575192480eba4d0196a8c82d1212457d4d","Message":"merge android\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:26:14+07:00"},"CompareURL":"Khieu-nai/mobile/compare/65654af0b2e8104301d97ec18ce7aace6f92c4d0...30880c575192480eba4d0196a8c82d1212457d4d","Len":2}', 1704252395);
INSERT INTO public.action VALUES (1183, 2, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"30880c575192480eba4d0196a8c82d1212457d4d","Message":"merge android\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:26:14+07:00"},{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"}],"HeadCommit":{"Sha1":"30880c575192480eba4d0196a8c82d1212457d4d","Message":"merge android\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:26:14+07:00"},"CompareURL":"Khieu-nai/mobile/compare/65654af0b2e8104301d97ec18ce7aace6f92c4d0...30880c575192480eba4d0196a8c82d1212457d4d","Len":2}', 1704252395);
INSERT INTO public.action VALUES (1484, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1511625e8a850a70547c23e491168c2ac465a5e6","Message":"Merge pull request ''update Loai hinh csgdnn'' (#39) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/39\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T15:49:22+07:00"},{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"}],"HeadCommit":{"Sha1":"1511625e8a850a70547c23e491168c2ac465a5e6","Message":"Merge pull request ''update Loai hinh csgdnn'' (#39) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/39\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T15:49:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a83c5eae96d22b60f72fa4c1a88aed04b88835af...1511625e8a850a70547c23e491168c2ac465a5e6","Len":2}', 1704444569);
INSERT INTO public.action VALUES (1194, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8e828e6f4421b1493f308e824c9e8bdb69e3c312","Message":"Merge pull request ''thinh'' (#31) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/31\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T11:09:21+07:00"},{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"},{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"}],"HeadCommit":{"Sha1":"8e828e6f4421b1493f308e824c9e8bdb69e3c312","Message":"Merge pull request ''thinh'' (#31) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/31\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T11:09:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d478dd60abc83b3d9ca9128a2d6976b1322f2ac5...8e828e6f4421b1493f308e824c9e8bdb69e3c312","Len":3}', 1704254967);
INSERT INTO public.action VALUES (1195, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8e828e6f4421b1493f308e824c9e8bdb69e3c312","Message":"Merge pull request ''thinh'' (#31) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/31\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T11:09:21+07:00"},{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"},{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"}],"HeadCommit":{"Sha1":"8e828e6f4421b1493f308e824c9e8bdb69e3c312","Message":"Merge pull request ''thinh'' (#31) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/31\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T11:09:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d478dd60abc83b3d9ca9128a2d6976b1322f2ac5...8e828e6f4421b1493f308e824c9e8bdb69e3c312","Len":3}', 1704254967);
INSERT INTO public.action VALUES (1196, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8e828e6f4421b1493f308e824c9e8bdb69e3c312","Message":"Merge pull request ''thinh'' (#31) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/31\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T11:09:21+07:00"},{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"},{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"}],"HeadCommit":{"Sha1":"8e828e6f4421b1493f308e824c9e8bdb69e3c312","Message":"Merge pull request ''thinh'' (#31) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/31\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T11:09:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d478dd60abc83b3d9ca9128a2d6976b1322f2ac5...8e828e6f4421b1493f308e824c9e8bdb69e3c312","Len":3}', 1704254967);
INSERT INTO public.action VALUES (1197, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8e828e6f4421b1493f308e824c9e8bdb69e3c312","Message":"Merge pull request ''thinh'' (#31) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/31\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T11:09:21+07:00"},{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"},{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"}],"HeadCommit":{"Sha1":"8e828e6f4421b1493f308e824c9e8bdb69e3c312","Message":"Merge pull request ''thinh'' (#31) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/31\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T11:09:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d478dd60abc83b3d9ca9128a2d6976b1322f2ac5...8e828e6f4421b1493f308e824c9e8bdb69e3c312","Len":3}', 1704254967);
INSERT INTO public.action VALUES (1206, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"}],"HeadCommit":{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bfc5e6a2209c1af96532ae8bfd9d55874a46e39f...a0b1080d5e7d96c9e634012be07424dcb88c4418","Len":1}', 1704270037);
INSERT INTO public.action VALUES (1256, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/192/merge', false, '', 1704312639);
INSERT INTO public.action VALUES (1257, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/192/merge', false, '', 1704312639);
INSERT INTO public.action VALUES (1258, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/192/merge', false, '', 1704312639);
INSERT INTO public.action VALUES (1198, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8e828e6f4421b1493f308e824c9e8bdb69e3c312","Message":"Merge pull request ''thinh'' (#31) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/31\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T11:09:21+07:00"},{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"},{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"}],"HeadCommit":{"Sha1":"8e828e6f4421b1493f308e824c9e8bdb69e3c312","Message":"Merge pull request ''thinh'' (#31) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/31\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T11:09:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d478dd60abc83b3d9ca9128a2d6976b1322f2ac5...8e828e6f4421b1493f308e824c9e8bdb69e3c312","Len":3}', 1704254967);
INSERT INTO public.action VALUES (1199, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"}],"HeadCommit":{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1f50a9600f44e3ab03f9211932cd46b5e9acf664...bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Len":1}', 1704266494);
INSERT INTO public.action VALUES (1200, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"}],"HeadCommit":{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1f50a9600f44e3ab03f9211932cd46b5e9acf664...bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Len":1}', 1704266494);
INSERT INTO public.action VALUES (1201, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"}],"HeadCommit":{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1f50a9600f44e3ab03f9211932cd46b5e9acf664...bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Len":1}', 1704266494);
INSERT INTO public.action VALUES (1202, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"}],"HeadCommit":{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1f50a9600f44e3ab03f9211932cd46b5e9acf664...bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Len":1}', 1704266494);
INSERT INTO public.action VALUES (1203, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"}],"HeadCommit":{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1f50a9600f44e3ab03f9211932cd46b5e9acf664...bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Len":1}', 1704266494);
INSERT INTO public.action VALUES (1204, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"}],"HeadCommit":{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bfc5e6a2209c1af96532ae8bfd9d55874a46e39f...a0b1080d5e7d96c9e634012be07424dcb88c4418","Len":1}', 1704270037);
INSERT INTO public.action VALUES (1205, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"}],"HeadCommit":{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bfc5e6a2209c1af96532ae8bfd9d55874a46e39f...a0b1080d5e7d96c9e634012be07424dcb88c4418","Len":1}', 1704270037);
INSERT INTO public.action VALUES (1207, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"}],"HeadCommit":{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bfc5e6a2209c1af96532ae8bfd9d55874a46e39f...a0b1080d5e7d96c9e634012be07424dcb88c4418","Len":1}', 1704270037);
INSERT INTO public.action VALUES (1208, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"}],"HeadCommit":{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bfc5e6a2209c1af96532ae8bfd9d55874a46e39f...a0b1080d5e7d96c9e634012be07424dcb88c4418","Len":1}', 1704270037);
INSERT INTO public.action VALUES (1214, 11, 11, 11, 21, 0, false, '', false, '32|thinh', 1704270141);
INSERT INTO public.action VALUES (1215, 14, 11, 11, 21, 0, false, '', false, '32|thinh', 1704270141);
INSERT INTO public.action VALUES (1216, 1, 11, 11, 21, 0, false, '', false, '32|thinh', 1704270141);
INSERT INTO public.action VALUES (1217, 5, 11, 11, 21, 0, false, '', false, '32|thinh', 1704270141);
INSERT INTO public.action VALUES (1218, 16, 11, 11, 21, 0, false, '', false, '32|thinh', 1704270141);
INSERT INTO public.action VALUES (1485, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1511625e8a850a70547c23e491168c2ac465a5e6","Message":"Merge pull request ''update Loai hinh csgdnn'' (#39) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/39\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T15:49:22+07:00"},{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"}],"HeadCommit":{"Sha1":"1511625e8a850a70547c23e491168c2ac465a5e6","Message":"Merge pull request ''update Loai hinh csgdnn'' (#39) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/39\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T15:49:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a83c5eae96d22b60f72fa4c1a88aed04b88835af...1511625e8a850a70547c23e491168c2ac465a5e6","Len":2}', 1704444569);
INSERT INTO public.action VALUES (1512, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},{"Sha1":"de9a1bc215d3c5c6f82b7648e8a6e063da51500f","Message":"fix disable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:26:53+07:00"}],"HeadCommit":{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/984ab8bc6fa2d923599f3f1241b528745fabcf57...a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Len":2}', 1704464876);
INSERT INTO public.action VALUES (1513, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},{"Sha1":"de9a1bc215d3c5c6f82b7648e8a6e063da51500f","Message":"fix disable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:26:53+07:00"}],"HeadCommit":{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/984ab8bc6fa2d923599f3f1241b528745fabcf57...a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Len":2}', 1704464876);
INSERT INTO public.action VALUES (1514, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},{"Sha1":"de9a1bc215d3c5c6f82b7648e8a6e063da51500f","Message":"fix disable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:26:53+07:00"}],"HeadCommit":{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/984ab8bc6fa2d923599f3f1241b528745fabcf57...a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Len":2}', 1704464876);
INSERT INTO public.action VALUES (1804, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/182/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1805, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/182/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1806, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/183/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1807, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/183/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1808, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/183/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1219, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"66485a7986ab26e07dab856017d0ee7f84234a04","Message":"Merge pull request ''thinh'' (#32) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/32\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T15:22:16+07:00"},{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"},{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"}],"HeadCommit":{"Sha1":"66485a7986ab26e07dab856017d0ee7f84234a04","Message":"Merge pull request ''thinh'' (#32) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/32\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T15:22:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e828e6f4421b1493f308e824c9e8bdb69e3c312...66485a7986ab26e07dab856017d0ee7f84234a04","Len":3}', 1704270142);
INSERT INTO public.action VALUES (1220, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"66485a7986ab26e07dab856017d0ee7f84234a04","Message":"Merge pull request ''thinh'' (#32) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/32\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T15:22:16+07:00"},{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"},{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"}],"HeadCommit":{"Sha1":"66485a7986ab26e07dab856017d0ee7f84234a04","Message":"Merge pull request ''thinh'' (#32) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/32\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T15:22:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e828e6f4421b1493f308e824c9e8bdb69e3c312...66485a7986ab26e07dab856017d0ee7f84234a04","Len":3}', 1704270142);
INSERT INTO public.action VALUES (1221, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"66485a7986ab26e07dab856017d0ee7f84234a04","Message":"Merge pull request ''thinh'' (#32) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/32\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T15:22:16+07:00"},{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"},{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"}],"HeadCommit":{"Sha1":"66485a7986ab26e07dab856017d0ee7f84234a04","Message":"Merge pull request ''thinh'' (#32) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/32\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T15:22:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e828e6f4421b1493f308e824c9e8bdb69e3c312...66485a7986ab26e07dab856017d0ee7f84234a04","Len":3}', 1704270142);
INSERT INTO public.action VALUES (1222, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"66485a7986ab26e07dab856017d0ee7f84234a04","Message":"Merge pull request ''thinh'' (#32) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/32\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T15:22:16+07:00"},{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"},{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"}],"HeadCommit":{"Sha1":"66485a7986ab26e07dab856017d0ee7f84234a04","Message":"Merge pull request ''thinh'' (#32) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/32\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T15:22:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e828e6f4421b1493f308e824c9e8bdb69e3c312...66485a7986ab26e07dab856017d0ee7f84234a04","Len":3}', 1704270142);
INSERT INTO public.action VALUES (1244, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"}],"HeadCommit":{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/522675e664aeac01db7f9ed3b7694c7380801a45...b104efa75f1c2dc4158c1c6d302501db884230c9","Len":1}', 1704303038);
INSERT INTO public.action VALUES (1264, 11, 7, 11, 21, 0, false, '', false, '33|update edit location hoso', 1704337473);
INSERT INTO public.action VALUES (1265, 14, 7, 11, 21, 0, false, '', false, '33|update edit location hoso', 1704337473);
INSERT INTO public.action VALUES (1266, 1, 7, 11, 21, 0, false, '', false, '33|update edit location hoso', 1704337473);
INSERT INTO public.action VALUES (1267, 5, 7, 11, 21, 0, false, '', false, '33|update edit location hoso', 1704337473);
INSERT INTO public.action VALUES (1268, 16, 7, 11, 21, 0, false, '', false, '33|update edit location hoso', 1704337473);
INSERT INTO public.action VALUES (1223, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"66485a7986ab26e07dab856017d0ee7f84234a04","Message":"Merge pull request ''thinh'' (#32) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/32\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T15:22:16+07:00"},{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"},{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"}],"HeadCommit":{"Sha1":"66485a7986ab26e07dab856017d0ee7f84234a04","Message":"Merge pull request ''thinh'' (#32) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/32\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T15:22:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e828e6f4421b1493f308e824c9e8bdb69e3c312...66485a7986ab26e07dab856017d0ee7f84234a04","Len":3}', 1704270142);
INSERT INTO public.action VALUES (1224, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b470d39f23a4735f04b5b42d5432f7f46a1c37af","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-03T15:55:24+07:00"}],"HeadCommit":{"Sha1":"b470d39f23a4735f04b5b42d5432f7f46a1c37af","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-03T15:55:24+07:00"},"CompareURL":"Khieu-nai/backend/compare/cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4...b470d39f23a4735f04b5b42d5432f7f46a1c37af","Len":1}', 1704272134);
INSERT INTO public.action VALUES (1225, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b470d39f23a4735f04b5b42d5432f7f46a1c37af","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-03T15:55:24+07:00"}],"HeadCommit":{"Sha1":"b470d39f23a4735f04b5b42d5432f7f46a1c37af","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-03T15:55:24+07:00"},"CompareURL":"Khieu-nai/backend/compare/cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4...b470d39f23a4735f04b5b42d5432f7f46a1c37af","Len":1}', 1704272134);
INSERT INTO public.action VALUES (1226, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b470d39f23a4735f04b5b42d5432f7f46a1c37af","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-03T15:55:24+07:00"}],"HeadCommit":{"Sha1":"b470d39f23a4735f04b5b42d5432f7f46a1c37af","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-03T15:55:24+07:00"},"CompareURL":"Khieu-nai/backend/compare/cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4...b470d39f23a4735f04b5b42d5432f7f46a1c37af","Len":1}', 1704272134);
INSERT INTO public.action VALUES (1227, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b470d39f23a4735f04b5b42d5432f7f46a1c37af","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-03T15:55:24+07:00"}],"HeadCommit":{"Sha1":"b470d39f23a4735f04b5b42d5432f7f46a1c37af","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-03T15:55:24+07:00"},"CompareURL":"Khieu-nai/backend/compare/cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4...b470d39f23a4735f04b5b42d5432f7f46a1c37af","Len":1}', 1704272134);
INSERT INTO public.action VALUES (1228, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b470d39f23a4735f04b5b42d5432f7f46a1c37af","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-03T15:55:24+07:00"}],"HeadCommit":{"Sha1":"b470d39f23a4735f04b5b42d5432f7f46a1c37af","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-03T15:55:24+07:00"},"CompareURL":"Khieu-nai/backend/compare/cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4...b470d39f23a4735f04b5b42d5432f7f46a1c37af","Len":1}', 1704272134);
INSERT INTO public.action VALUES (1241, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"}],"HeadCommit":{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/522675e664aeac01db7f9ed3b7694c7380801a45...b104efa75f1c2dc4158c1c6d302501db884230c9","Len":1}', 1704303038);
INSERT INTO public.action VALUES (1242, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"}],"HeadCommit":{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/522675e664aeac01db7f9ed3b7694c7380801a45...b104efa75f1c2dc4158c1c6d302501db884230c9","Len":1}', 1704303038);
INSERT INTO public.action VALUES (1243, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"}],"HeadCommit":{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/522675e664aeac01db7f9ed3b7694c7380801a45...b104efa75f1c2dc4158c1c6d302501db884230c9","Len":1}', 1704303038);
INSERT INTO public.action VALUES (1245, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"}],"HeadCommit":{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/522675e664aeac01db7f9ed3b7694c7380801a45...b104efa75f1c2dc4158c1c6d302501db884230c9","Len":1}', 1704303039);
INSERT INTO public.action VALUES (1246, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"}],"HeadCommit":{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/522675e664aeac01db7f9ed3b7694c7380801a45...b104efa75f1c2dc4158c1c6d302501db884230c9","Len":1}', 1704303039);
INSERT INTO public.action VALUES (1259, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"}],"HeadCommit":{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a0b1080d5e7d96c9e634012be07424dcb88c4418...205a7f5347c0e379199e46265c084c9be88049dc","Len":1}', 1704337215);
INSERT INTO public.action VALUES (1260, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"}],"HeadCommit":{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a0b1080d5e7d96c9e634012be07424dcb88c4418...205a7f5347c0e379199e46265c084c9be88049dc","Len":1}', 1704337215);
INSERT INTO public.action VALUES (1261, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"}],"HeadCommit":{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a0b1080d5e7d96c9e634012be07424dcb88c4418...205a7f5347c0e379199e46265c084c9be88049dc","Len":1}', 1704337215);
INSERT INTO public.action VALUES (1262, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"}],"HeadCommit":{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a0b1080d5e7d96c9e634012be07424dcb88c4418...205a7f5347c0e379199e46265c084c9be88049dc","Len":1}', 1704337215);
INSERT INTO public.action VALUES (1263, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"}],"HeadCommit":{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a0b1080d5e7d96c9e634012be07424dcb88c4418...205a7f5347c0e379199e46265c084c9be88049dc","Len":1}', 1704337215);
INSERT INTO public.action VALUES (1294, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"3f0e55f14d544cea196d2bf018b613a7176bd7fd","Message":"Merge pull request ''update phan quyen chinh sua'' (#34) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/34\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:08:41+07:00"},{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"}],"HeadCommit":{"Sha1":"3f0e55f14d544cea196d2bf018b613a7176bd7fd","Message":"Merge pull request ''update phan quyen chinh sua'' (#34) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/34\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:08:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f34630cbea2ecac67dcb069e4e4a27967ac7b10c...3f0e55f14d544cea196d2bf018b613a7176bd7fd","Len":2}', 1704337727);
INSERT INTO public.action VALUES (1809, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/183/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1810, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/183/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1811, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/183/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1269, 11, 11, 11, 21, 0, false, '', false, '33|update edit location hoso', 1704337488);
INSERT INTO public.action VALUES (1270, 14, 11, 11, 21, 0, false, '', false, '33|update edit location hoso', 1704337488);
INSERT INTO public.action VALUES (1271, 1, 11, 11, 21, 0, false, '', false, '33|update edit location hoso', 1704337488);
INSERT INTO public.action VALUES (1272, 5, 11, 11, 21, 0, false, '', false, '33|update edit location hoso', 1704337488);
INSERT INTO public.action VALUES (1273, 16, 11, 11, 21, 0, false, '', false, '33|update edit location hoso', 1704337488);
INSERT INTO public.action VALUES (1274, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Message":"Merge pull request ''update edit location hoso'' (#33) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/33\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:04:42+07:00"},{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"}],"HeadCommit":{"Sha1":"f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Message":"Merge pull request ''update edit location hoso'' (#33) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/33\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:04:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/66485a7986ab26e07dab856017d0ee7f84234a04...f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Len":2}', 1704337489);
INSERT INTO public.action VALUES (1275, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Message":"Merge pull request ''update edit location hoso'' (#33) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/33\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:04:42+07:00"},{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"}],"HeadCommit":{"Sha1":"f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Message":"Merge pull request ''update edit location hoso'' (#33) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/33\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:04:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/66485a7986ab26e07dab856017d0ee7f84234a04...f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Len":2}', 1704337489);
INSERT INTO public.action VALUES (1276, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Message":"Merge pull request ''update edit location hoso'' (#33) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/33\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:04:42+07:00"},{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"}],"HeadCommit":{"Sha1":"f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Message":"Merge pull request ''update edit location hoso'' (#33) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/33\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:04:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/66485a7986ab26e07dab856017d0ee7f84234a04...f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Len":2}', 1704337489);
INSERT INTO public.action VALUES (1277, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Message":"Merge pull request ''update edit location hoso'' (#33) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/33\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:04:42+07:00"},{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"}],"HeadCommit":{"Sha1":"f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Message":"Merge pull request ''update edit location hoso'' (#33) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/33\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:04:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/66485a7986ab26e07dab856017d0ee7f84234a04...f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Len":2}', 1704337489);
INSERT INTO public.action VALUES (1278, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Message":"Merge pull request ''update edit location hoso'' (#33) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/33\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:04:42+07:00"},{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"}],"HeadCommit":{"Sha1":"f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Message":"Merge pull request ''update edit location hoso'' (#33) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/33\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:04:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/66485a7986ab26e07dab856017d0ee7f84234a04...f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Len":2}', 1704337489);
INSERT INTO public.action VALUES (1812, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/184/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1813, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/184/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1814, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/184/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1279, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"}],"HeadCommit":{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/205a7f5347c0e379199e46265c084c9be88049dc...f099d4b729877303d88c26254708d44fea9a6b91","Len":1}', 1704337682);
INSERT INTO public.action VALUES (1280, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"}],"HeadCommit":{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/205a7f5347c0e379199e46265c084c9be88049dc...f099d4b729877303d88c26254708d44fea9a6b91","Len":1}', 1704337682);
INSERT INTO public.action VALUES (1281, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"}],"HeadCommit":{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/205a7f5347c0e379199e46265c084c9be88049dc...f099d4b729877303d88c26254708d44fea9a6b91","Len":1}', 1704337682);
INSERT INTO public.action VALUES (1282, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"}],"HeadCommit":{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/205a7f5347c0e379199e46265c084c9be88049dc...f099d4b729877303d88c26254708d44fea9a6b91","Len":1}', 1704337682);
INSERT INTO public.action VALUES (1283, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"}],"HeadCommit":{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/205a7f5347c0e379199e46265c084c9be88049dc...f099d4b729877303d88c26254708d44fea9a6b91","Len":1}', 1704337682);
INSERT INTO public.action VALUES (1284, 11, 7, 11, 21, 0, false, '', false, '34|update phan quyen chinh sua', 1704337712);
INSERT INTO public.action VALUES (1285, 14, 7, 11, 21, 0, false, '', false, '34|update phan quyen chinh sua', 1704337712);
INSERT INTO public.action VALUES (1286, 1, 7, 11, 21, 0, false, '', false, '34|update phan quyen chinh sua', 1704337712);
INSERT INTO public.action VALUES (1287, 5, 7, 11, 21, 0, false, '', false, '34|update phan quyen chinh sua', 1704337712);
INSERT INTO public.action VALUES (1288, 16, 7, 11, 21, 0, false, '', false, '34|update phan quyen chinh sua', 1704337712);
INSERT INTO public.action VALUES (1289, 11, 11, 11, 21, 0, false, '', false, '34|update phan quyen chinh sua', 1704337726);
INSERT INTO public.action VALUES (1290, 14, 11, 11, 21, 0, false, '', false, '34|update phan quyen chinh sua', 1704337726);
INSERT INTO public.action VALUES (1291, 1, 11, 11, 21, 0, false, '', false, '34|update phan quyen chinh sua', 1704337726);
INSERT INTO public.action VALUES (1292, 5, 11, 11, 21, 0, false, '', false, '34|update phan quyen chinh sua', 1704337726);
INSERT INTO public.action VALUES (1293, 16, 11, 11, 21, 0, false, '', false, '34|update phan quyen chinh sua', 1704337726);
INSERT INTO public.action VALUES (1486, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"}],"HeadCommit":{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/abb8ae120157a6719fa9094c0b05ff6c11052efd...984ab8bc6fa2d923599f3f1241b528745fabcf57","Len":1}', 1704446412);
INSERT INTO public.action VALUES (1487, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"}],"HeadCommit":{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/abb8ae120157a6719fa9094c0b05ff6c11052efd...984ab8bc6fa2d923599f3f1241b528745fabcf57","Len":1}', 1704446412);
INSERT INTO public.action VALUES (1815, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/184/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1816, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/184/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1817, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/184/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1295, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"3f0e55f14d544cea196d2bf018b613a7176bd7fd","Message":"Merge pull request ''update phan quyen chinh sua'' (#34) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/34\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:08:41+07:00"},{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"}],"HeadCommit":{"Sha1":"3f0e55f14d544cea196d2bf018b613a7176bd7fd","Message":"Merge pull request ''update phan quyen chinh sua'' (#34) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/34\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:08:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f34630cbea2ecac67dcb069e4e4a27967ac7b10c...3f0e55f14d544cea196d2bf018b613a7176bd7fd","Len":2}', 1704337727);
INSERT INTO public.action VALUES (1296, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"3f0e55f14d544cea196d2bf018b613a7176bd7fd","Message":"Merge pull request ''update phan quyen chinh sua'' (#34) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/34\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:08:41+07:00"},{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"}],"HeadCommit":{"Sha1":"3f0e55f14d544cea196d2bf018b613a7176bd7fd","Message":"Merge pull request ''update phan quyen chinh sua'' (#34) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/34\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:08:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f34630cbea2ecac67dcb069e4e4a27967ac7b10c...3f0e55f14d544cea196d2bf018b613a7176bd7fd","Len":2}', 1704337727);
INSERT INTO public.action VALUES (1297, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"3f0e55f14d544cea196d2bf018b613a7176bd7fd","Message":"Merge pull request ''update phan quyen chinh sua'' (#34) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/34\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:08:41+07:00"},{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"}],"HeadCommit":{"Sha1":"3f0e55f14d544cea196d2bf018b613a7176bd7fd","Message":"Merge pull request ''update phan quyen chinh sua'' (#34) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/34\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:08:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f34630cbea2ecac67dcb069e4e4a27967ac7b10c...3f0e55f14d544cea196d2bf018b613a7176bd7fd","Len":2}', 1704337727);
INSERT INTO public.action VALUES (1298, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"3f0e55f14d544cea196d2bf018b613a7176bd7fd","Message":"Merge pull request ''update phan quyen chinh sua'' (#34) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/34\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:08:41+07:00"},{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"}],"HeadCommit":{"Sha1":"3f0e55f14d544cea196d2bf018b613a7176bd7fd","Message":"Merge pull request ''update phan quyen chinh sua'' (#34) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/34\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:08:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f34630cbea2ecac67dcb069e4e4a27967ac7b10c...3f0e55f14d544cea196d2bf018b613a7176bd7fd","Len":2}', 1704337727);
INSERT INTO public.action VALUES (1299, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/189/head', false, '', 1704342037);
INSERT INTO public.action VALUES (1300, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/189/head', false, '', 1704342037);
INSERT INTO public.action VALUES (1301, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/189/head', false, '', 1704342037);
INSERT INTO public.action VALUES (1302, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/189/merge', false, '', 1704342037);
INSERT INTO public.action VALUES (1303, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/189/merge', false, '', 1704342037);
INSERT INTO public.action VALUES (1304, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/189/merge', false, '', 1704342037);
INSERT INTO public.action VALUES (1305, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/190/head', false, '', 1704342037);
INSERT INTO public.action VALUES (1306, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/190/head', false, '', 1704342037);
INSERT INTO public.action VALUES (1307, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/190/head', false, '', 1704342037);
INSERT INTO public.action VALUES (1308, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/190/merge', false, '', 1704342037);
INSERT INTO public.action VALUES (1309, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/190/merge', false, '', 1704342037);
INSERT INTO public.action VALUES (1310, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/190/merge', false, '', 1704342037);
INSERT INTO public.action VALUES (1362, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"69d18c753f1ddd779264f74a810c688d109b26e4","Message":"update Init Model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T15:08:38+07:00"}],"HeadCommit":{"Sha1":"69d18c753f1ddd779264f74a810c688d109b26e4","Message":"update Init Model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T15:08:38+07:00"},"CompareURL":"Khieu-nai/backend/compare/86025176851040257b456281747dcc6f14bcd5a7...69d18c753f1ddd779264f74a810c688d109b26e4","Len":1}', 1704355729);
INSERT INTO public.action VALUES (1311, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"}],"HeadCommit":{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f099d4b729877303d88c26254708d44fea9a6b91...a765747120a51a414474b08290bd6962ad402549","Len":1}', 1704342503);
INSERT INTO public.action VALUES (1312, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"}],"HeadCommit":{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f099d4b729877303d88c26254708d44fea9a6b91...a765747120a51a414474b08290bd6962ad402549","Len":1}', 1704342503);
INSERT INTO public.action VALUES (1313, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"}],"HeadCommit":{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f099d4b729877303d88c26254708d44fea9a6b91...a765747120a51a414474b08290bd6962ad402549","Len":1}', 1704342503);
INSERT INTO public.action VALUES (1314, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"}],"HeadCommit":{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f099d4b729877303d88c26254708d44fea9a6b91...a765747120a51a414474b08290bd6962ad402549","Len":1}', 1704342503);
INSERT INTO public.action VALUES (1315, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"}],"HeadCommit":{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f099d4b729877303d88c26254708d44fea9a6b91...a765747120a51a414474b08290bd6962ad402549","Len":1}', 1704342503);
INSERT INTO public.action VALUES (1316, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"}],"HeadCommit":{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a765747120a51a414474b08290bd6962ad402549...f958d58054337a2fa79a21d97be215ab782e5ead","Len":1}', 1704349657);
INSERT INTO public.action VALUES (1317, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"}],"HeadCommit":{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a765747120a51a414474b08290bd6962ad402549...f958d58054337a2fa79a21d97be215ab782e5ead","Len":1}', 1704349657);
INSERT INTO public.action VALUES (1318, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"}],"HeadCommit":{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a765747120a51a414474b08290bd6962ad402549...f958d58054337a2fa79a21d97be215ab782e5ead","Len":1}', 1704349657);
INSERT INTO public.action VALUES (1818, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/185/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1819, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/185/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1820, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/185/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1821, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/185/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1822, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/185/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1319, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"}],"HeadCommit":{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a765747120a51a414474b08290bd6962ad402549...f958d58054337a2fa79a21d97be215ab782e5ead","Len":1}', 1704349657);
INSERT INTO public.action VALUES (1320, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"}],"HeadCommit":{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a765747120a51a414474b08290bd6962ad402549...f958d58054337a2fa79a21d97be215ab782e5ead","Len":1}', 1704349657);
INSERT INTO public.action VALUES (1321, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"86025176851040257b456281747dcc6f14bcd5a7","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T13:28:13+07:00"}],"HeadCommit":{"Sha1":"86025176851040257b456281747dcc6f14bcd5a7","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T13:28:13+07:00"},"CompareURL":"Khieu-nai/backend/compare/b470d39f23a4735f04b5b42d5432f7f46a1c37af...86025176851040257b456281747dcc6f14bcd5a7","Len":1}', 1704349706);
INSERT INTO public.action VALUES (1322, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"86025176851040257b456281747dcc6f14bcd5a7","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T13:28:13+07:00"}],"HeadCommit":{"Sha1":"86025176851040257b456281747dcc6f14bcd5a7","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T13:28:13+07:00"},"CompareURL":"Khieu-nai/backend/compare/b470d39f23a4735f04b5b42d5432f7f46a1c37af...86025176851040257b456281747dcc6f14bcd5a7","Len":1}', 1704349706);
INSERT INTO public.action VALUES (1323, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"86025176851040257b456281747dcc6f14bcd5a7","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T13:28:13+07:00"}],"HeadCommit":{"Sha1":"86025176851040257b456281747dcc6f14bcd5a7","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T13:28:13+07:00"},"CompareURL":"Khieu-nai/backend/compare/b470d39f23a4735f04b5b42d5432f7f46a1c37af...86025176851040257b456281747dcc6f14bcd5a7","Len":1}', 1704349706);
INSERT INTO public.action VALUES (1324, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"86025176851040257b456281747dcc6f14bcd5a7","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T13:28:13+07:00"}],"HeadCommit":{"Sha1":"86025176851040257b456281747dcc6f14bcd5a7","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T13:28:13+07:00"},"CompareURL":"Khieu-nai/backend/compare/b470d39f23a4735f04b5b42d5432f7f46a1c37af...86025176851040257b456281747dcc6f14bcd5a7","Len":1}', 1704349706);
INSERT INTO public.action VALUES (1325, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"86025176851040257b456281747dcc6f14bcd5a7","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T13:28:13+07:00"}],"HeadCommit":{"Sha1":"86025176851040257b456281747dcc6f14bcd5a7","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T13:28:13+07:00"},"CompareURL":"Khieu-nai/backend/compare/b470d39f23a4735f04b5b42d5432f7f46a1c37af...86025176851040257b456281747dcc6f14bcd5a7","Len":1}', 1704349706);
INSERT INTO public.action VALUES (1326, 11, 7, 11, 21, 0, false, '', false, '35|thinh', 1704349757);
INSERT INTO public.action VALUES (1327, 14, 7, 11, 21, 0, false, '', false, '35|thinh', 1704349757);
INSERT INTO public.action VALUES (1328, 1, 7, 11, 21, 0, false, '', false, '35|thinh', 1704349757);
INSERT INTO public.action VALUES (1329, 5, 7, 11, 21, 0, false, '', false, '35|thinh', 1704349757);
INSERT INTO public.action VALUES (1330, 16, 7, 11, 21, 0, false, '', false, '35|thinh', 1704349757);
INSERT INTO public.action VALUES (1331, 11, 11, 11, 21, 0, false, '', false, '35|thinh', 1704349775);
INSERT INTO public.action VALUES (1332, 14, 11, 11, 21, 0, false, '', false, '35|thinh', 1704349775);
INSERT INTO public.action VALUES (1333, 1, 11, 11, 21, 0, false, '', false, '35|thinh', 1704349775);
INSERT INTO public.action VALUES (1334, 5, 11, 11, 21, 0, false, '', false, '35|thinh', 1704349775);
INSERT INTO public.action VALUES (1335, 16, 11, 11, 21, 0, false, '', false, '35|thinh', 1704349775);
INSERT INTO public.action VALUES (1363, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"69d18c753f1ddd779264f74a810c688d109b26e4","Message":"update Init Model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T15:08:38+07:00"}],"HeadCommit":{"Sha1":"69d18c753f1ddd779264f74a810c688d109b26e4","Message":"update Init Model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T15:08:38+07:00"},"CompareURL":"Khieu-nai/backend/compare/86025176851040257b456281747dcc6f14bcd5a7...69d18c753f1ddd779264f74a810c688d109b26e4","Len":1}', 1704355729);
INSERT INTO public.action VALUES (1823, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/185/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1824, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/186/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1825, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/186/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1826, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/186/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1336, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"209d45fee56b3c30e8134399acf07f2ed034d99a","Message":"Merge pull request ''thinh'' (#35) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/35\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T13:29:29+07:00"},{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"},{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"}],"HeadCommit":{"Sha1":"209d45fee56b3c30e8134399acf07f2ed034d99a","Message":"Merge pull request ''thinh'' (#35) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/35\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T13:29:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3f0e55f14d544cea196d2bf018b613a7176bd7fd...209d45fee56b3c30e8134399acf07f2ed034d99a","Len":3}', 1704349775);
INSERT INTO public.action VALUES (1337, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"209d45fee56b3c30e8134399acf07f2ed034d99a","Message":"Merge pull request ''thinh'' (#35) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/35\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T13:29:29+07:00"},{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"},{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"}],"HeadCommit":{"Sha1":"209d45fee56b3c30e8134399acf07f2ed034d99a","Message":"Merge pull request ''thinh'' (#35) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/35\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T13:29:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3f0e55f14d544cea196d2bf018b613a7176bd7fd...209d45fee56b3c30e8134399acf07f2ed034d99a","Len":3}', 1704349775);
INSERT INTO public.action VALUES (1338, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"209d45fee56b3c30e8134399acf07f2ed034d99a","Message":"Merge pull request ''thinh'' (#35) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/35\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T13:29:29+07:00"},{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"},{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"}],"HeadCommit":{"Sha1":"209d45fee56b3c30e8134399acf07f2ed034d99a","Message":"Merge pull request ''thinh'' (#35) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/35\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T13:29:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3f0e55f14d544cea196d2bf018b613a7176bd7fd...209d45fee56b3c30e8134399acf07f2ed034d99a","Len":3}', 1704349775);
INSERT INTO public.action VALUES (1339, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"209d45fee56b3c30e8134399acf07f2ed034d99a","Message":"Merge pull request ''thinh'' (#35) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/35\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T13:29:29+07:00"},{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"},{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"}],"HeadCommit":{"Sha1":"209d45fee56b3c30e8134399acf07f2ed034d99a","Message":"Merge pull request ''thinh'' (#35) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/35\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T13:29:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3f0e55f14d544cea196d2bf018b613a7176bd7fd...209d45fee56b3c30e8134399acf07f2ed034d99a","Len":3}', 1704349775);
INSERT INTO public.action VALUES (1364, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"69d18c753f1ddd779264f74a810c688d109b26e4","Message":"update Init Model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T15:08:38+07:00"}],"HeadCommit":{"Sha1":"69d18c753f1ddd779264f74a810c688d109b26e4","Message":"update Init Model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T15:08:38+07:00"},"CompareURL":"Khieu-nai/backend/compare/86025176851040257b456281747dcc6f14bcd5a7...69d18c753f1ddd779264f74a810c688d109b26e4","Len":1}', 1704355729);
INSERT INTO public.action VALUES (1827, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/186/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1828, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/186/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1829, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/186/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1997, 11, 7, 11, 21, 0, false, '', false, '58|fix text tim kiem', 1704681576);
INSERT INTO public.action VALUES (1340, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"209d45fee56b3c30e8134399acf07f2ed034d99a","Message":"Merge pull request ''thinh'' (#35) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/35\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T13:29:29+07:00"},{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"},{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"}],"HeadCommit":{"Sha1":"209d45fee56b3c30e8134399acf07f2ed034d99a","Message":"Merge pull request ''thinh'' (#35) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/35\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T13:29:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3f0e55f14d544cea196d2bf018b613a7176bd7fd...209d45fee56b3c30e8134399acf07f2ed034d99a","Len":3}', 1704349775);
INSERT INTO public.action VALUES (1341, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"}],"HeadCommit":{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f958d58054337a2fa79a21d97be215ab782e5ead...3d35753a6ca494289412e6435ad81b388dce8022","Len":1}', 1704352522);
INSERT INTO public.action VALUES (1342, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"}],"HeadCommit":{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f958d58054337a2fa79a21d97be215ab782e5ead...3d35753a6ca494289412e6435ad81b388dce8022","Len":1}', 1704352522);
INSERT INTO public.action VALUES (1343, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"}],"HeadCommit":{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f958d58054337a2fa79a21d97be215ab782e5ead...3d35753a6ca494289412e6435ad81b388dce8022","Len":1}', 1704352522);
INSERT INTO public.action VALUES (1344, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"}],"HeadCommit":{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f958d58054337a2fa79a21d97be215ab782e5ead...3d35753a6ca494289412e6435ad81b388dce8022","Len":1}', 1704352522);
INSERT INTO public.action VALUES (1345, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"}],"HeadCommit":{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f958d58054337a2fa79a21d97be215ab782e5ead...3d35753a6ca494289412e6435ad81b388dce8022","Len":1}', 1704352522);
INSERT INTO public.action VALUES (1346, 11, 7, 11, 21, 0, false, '', false, '36|add nld change year nhucau', 1704352557);
INSERT INTO public.action VALUES (1347, 14, 7, 11, 21, 0, false, '', false, '36|add nld change year nhucau', 1704352557);
INSERT INTO public.action VALUES (1348, 1, 7, 11, 21, 0, false, '', false, '36|add nld change year nhucau', 1704352557);
INSERT INTO public.action VALUES (1349, 5, 7, 11, 21, 0, false, '', false, '36|add nld change year nhucau', 1704352557);
INSERT INTO public.action VALUES (1350, 16, 7, 11, 21, 0, false, '', false, '36|add nld change year nhucau', 1704352557);
INSERT INTO public.action VALUES (1351, 11, 11, 11, 21, 0, false, '', false, '36|add nld change year nhucau', 1704352573);
INSERT INTO public.action VALUES (1352, 14, 11, 11, 21, 0, false, '', false, '36|add nld change year nhucau', 1704352573);
INSERT INTO public.action VALUES (1353, 1, 11, 11, 21, 0, false, '', false, '36|add nld change year nhucau', 1704352573);
INSERT INTO public.action VALUES (1354, 5, 11, 11, 21, 0, false, '', false, '36|add nld change year nhucau', 1704352573);
INSERT INTO public.action VALUES (1355, 16, 11, 11, 21, 0, false, '', false, '36|add nld change year nhucau', 1704352573);
INSERT INTO public.action VALUES (1830, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/177/head', false, '', 1704606639);
INSERT INTO public.action VALUES (1831, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/177/head', false, '', 1704606639);
INSERT INTO public.action VALUES (1832, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/177/head', false, '', 1704606639);
INSERT INTO public.action VALUES (1833, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/177/merge', false, '', 1704606639);
INSERT INTO public.action VALUES (1356, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e06ac97be44f6830d36c492759a4857e370bcb1f","Message":"Merge pull request ''add nld change year nhucau'' (#36) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/36\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T14:16:08+07:00"},{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"}],"HeadCommit":{"Sha1":"e06ac97be44f6830d36c492759a4857e370bcb1f","Message":"Merge pull request ''add nld change year nhucau'' (#36) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/36\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T14:16:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/209d45fee56b3c30e8134399acf07f2ed034d99a...e06ac97be44f6830d36c492759a4857e370bcb1f","Len":2}', 1704352575);
INSERT INTO public.action VALUES (1357, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e06ac97be44f6830d36c492759a4857e370bcb1f","Message":"Merge pull request ''add nld change year nhucau'' (#36) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/36\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T14:16:08+07:00"},{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"}],"HeadCommit":{"Sha1":"e06ac97be44f6830d36c492759a4857e370bcb1f","Message":"Merge pull request ''add nld change year nhucau'' (#36) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/36\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T14:16:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/209d45fee56b3c30e8134399acf07f2ed034d99a...e06ac97be44f6830d36c492759a4857e370bcb1f","Len":2}', 1704352575);
INSERT INTO public.action VALUES (1358, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e06ac97be44f6830d36c492759a4857e370bcb1f","Message":"Merge pull request ''add nld change year nhucau'' (#36) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/36\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T14:16:08+07:00"},{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"}],"HeadCommit":{"Sha1":"e06ac97be44f6830d36c492759a4857e370bcb1f","Message":"Merge pull request ''add nld change year nhucau'' (#36) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/36\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T14:16:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/209d45fee56b3c30e8134399acf07f2ed034d99a...e06ac97be44f6830d36c492759a4857e370bcb1f","Len":2}', 1704352575);
INSERT INTO public.action VALUES (1359, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e06ac97be44f6830d36c492759a4857e370bcb1f","Message":"Merge pull request ''add nld change year nhucau'' (#36) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/36\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T14:16:08+07:00"},{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"}],"HeadCommit":{"Sha1":"e06ac97be44f6830d36c492759a4857e370bcb1f","Message":"Merge pull request ''add nld change year nhucau'' (#36) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/36\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T14:16:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/209d45fee56b3c30e8134399acf07f2ed034d99a...e06ac97be44f6830d36c492759a4857e370bcb1f","Len":2}', 1704352575);
INSERT INTO public.action VALUES (1360, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e06ac97be44f6830d36c492759a4857e370bcb1f","Message":"Merge pull request ''add nld change year nhucau'' (#36) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/36\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T14:16:08+07:00"},{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"}],"HeadCommit":{"Sha1":"e06ac97be44f6830d36c492759a4857e370bcb1f","Message":"Merge pull request ''add nld change year nhucau'' (#36) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/36\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T14:16:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/209d45fee56b3c30e8134399acf07f2ed034d99a...e06ac97be44f6830d36c492759a4857e370bcb1f","Len":2}', 1704352575);
INSERT INTO public.action VALUES (1361, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"69d18c753f1ddd779264f74a810c688d109b26e4","Message":"update Init Model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T15:08:38+07:00"}],"HeadCommit":{"Sha1":"69d18c753f1ddd779264f74a810c688d109b26e4","Message":"update Init Model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T15:08:38+07:00"},"CompareURL":"Khieu-nai/backend/compare/86025176851040257b456281747dcc6f14bcd5a7...69d18c753f1ddd779264f74a810c688d109b26e4","Len":1}', 1704355729);
INSERT INTO public.action VALUES (1834, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/177/merge', false, '', 1704606639);
INSERT INTO public.action VALUES (1365, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"69d18c753f1ddd779264f74a810c688d109b26e4","Message":"update Init Model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T15:08:38+07:00"}],"HeadCommit":{"Sha1":"69d18c753f1ddd779264f74a810c688d109b26e4","Message":"update Init Model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T15:08:38+07:00"},"CompareURL":"Khieu-nai/backend/compare/86025176851040257b456281747dcc6f14bcd5a7...69d18c753f1ddd779264f74a810c688d109b26e4","Len":1}', 1704355729);
INSERT INTO public.action VALUES (1366, 15, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Message":"login, regis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-04T16:20:30+07:00"}],"HeadCommit":{"Sha1":"f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Message":"login, regis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-04T16:20:30+07:00"},"CompareURL":"Khieu-nai/mobile/compare/30880c575192480eba4d0196a8c82d1212457d4d...f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Len":1}', 1704360043);
INSERT INTO public.action VALUES (1367, 12, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Message":"login, regis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-04T16:20:30+07:00"}],"HeadCommit":{"Sha1":"f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Message":"login, regis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-04T16:20:30+07:00"},"CompareURL":"Khieu-nai/mobile/compare/30880c575192480eba4d0196a8c82d1212457d4d...f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Len":1}', 1704360043);
INSERT INTO public.action VALUES (1368, 5, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Message":"login, regis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-04T16:20:30+07:00"}],"HeadCommit":{"Sha1":"f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Message":"login, regis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-04T16:20:30+07:00"},"CompareURL":"Khieu-nai/mobile/compare/30880c575192480eba4d0196a8c82d1212457d4d...f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Len":1}', 1704360043);
INSERT INTO public.action VALUES (1369, 1, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Message":"login, regis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-04T16:20:30+07:00"}],"HeadCommit":{"Sha1":"f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Message":"login, regis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-04T16:20:30+07:00"},"CompareURL":"Khieu-nai/mobile/compare/30880c575192480eba4d0196a8c82d1212457d4d...f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Len":1}', 1704360043);
INSERT INTO public.action VALUES (1370, 2, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Message":"login, regis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-04T16:20:30+07:00"}],"HeadCommit":{"Sha1":"f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Message":"login, regis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-04T16:20:30+07:00"},"CompareURL":"Khieu-nai/mobile/compare/30880c575192480eba4d0196a8c82d1212457d4d...f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Len":1}', 1704360043);
INSERT INTO public.action VALUES (1371, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"228d97b9fcb505875198e7887766d5424c81f9f8","Message":"add odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T16:50:21+07:00"}],"HeadCommit":{"Sha1":"228d97b9fcb505875198e7887766d5424c81f9f8","Message":"add odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T16:50:21+07:00"},"CompareURL":"Khieu-nai/backend/compare/69d18c753f1ddd779264f74a810c688d109b26e4...228d97b9fcb505875198e7887766d5424c81f9f8","Len":1}', 1704361828);
INSERT INTO public.action VALUES (1372, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"228d97b9fcb505875198e7887766d5424c81f9f8","Message":"add odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T16:50:21+07:00"}],"HeadCommit":{"Sha1":"228d97b9fcb505875198e7887766d5424c81f9f8","Message":"add odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T16:50:21+07:00"},"CompareURL":"Khieu-nai/backend/compare/69d18c753f1ddd779264f74a810c688d109b26e4...228d97b9fcb505875198e7887766d5424c81f9f8","Len":1}', 1704361828);
INSERT INTO public.action VALUES (1373, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"228d97b9fcb505875198e7887766d5424c81f9f8","Message":"add odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T16:50:21+07:00"}],"HeadCommit":{"Sha1":"228d97b9fcb505875198e7887766d5424c81f9f8","Message":"add odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T16:50:21+07:00"},"CompareURL":"Khieu-nai/backend/compare/69d18c753f1ddd779264f74a810c688d109b26e4...228d97b9fcb505875198e7887766d5424c81f9f8","Len":1}', 1704361829);
INSERT INTO public.action VALUES (1835, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/177/merge', false, '', 1704606639);
INSERT INTO public.action VALUES (1836, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/178/head', false, '', 1704606639);
INSERT INTO public.action VALUES (1837, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/178/head', false, '', 1704606639);
INSERT INTO public.action VALUES (1838, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/178/head', false, '', 1704606639);
INSERT INTO public.action VALUES (1839, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/178/merge', false, '', 1704606639);
INSERT INTO public.action VALUES (1374, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"228d97b9fcb505875198e7887766d5424c81f9f8","Message":"add odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T16:50:21+07:00"}],"HeadCommit":{"Sha1":"228d97b9fcb505875198e7887766d5424c81f9f8","Message":"add odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T16:50:21+07:00"},"CompareURL":"Khieu-nai/backend/compare/69d18c753f1ddd779264f74a810c688d109b26e4...228d97b9fcb505875198e7887766d5424c81f9f8","Len":1}', 1704361829);
INSERT INTO public.action VALUES (1375, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"228d97b9fcb505875198e7887766d5424c81f9f8","Message":"add odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T16:50:21+07:00"}],"HeadCommit":{"Sha1":"228d97b9fcb505875198e7887766d5424c81f9f8","Message":"add odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T16:50:21+07:00"},"CompareURL":"Khieu-nai/backend/compare/69d18c753f1ddd779264f74a810c688d109b26e4...228d97b9fcb505875198e7887766d5424c81f9f8","Len":1}', 1704361829);
INSERT INTO public.action VALUES (1376, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},{"Sha1":"59e755466bb935225ca4feca563f4ba25d059ec4","Message":"check thêm ngành nghề này đã có trong kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:52:46+07:00"}],"HeadCommit":{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/b104efa75f1c2dc4158c1c6d302501db884230c9...7e2dfc497da7b826f8f961d7acc5a0574f73de12","Len":2}', 1704361840);
INSERT INTO public.action VALUES (1377, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},{"Sha1":"59e755466bb935225ca4feca563f4ba25d059ec4","Message":"check thêm ngành nghề này đã có trong kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:52:46+07:00"}],"HeadCommit":{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/b104efa75f1c2dc4158c1c6d302501db884230c9...7e2dfc497da7b826f8f961d7acc5a0574f73de12","Len":2}', 1704361840);
INSERT INTO public.action VALUES (1378, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},{"Sha1":"59e755466bb935225ca4feca563f4ba25d059ec4","Message":"check thêm ngành nghề này đã có trong kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:52:46+07:00"}],"HeadCommit":{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/b104efa75f1c2dc4158c1c6d302501db884230c9...7e2dfc497da7b826f8f961d7acc5a0574f73de12","Len":2}', 1704361840);
INSERT INTO public.action VALUES (1379, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},{"Sha1":"59e755466bb935225ca4feca563f4ba25d059ec4","Message":"check thêm ngành nghề này đã có trong kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:52:46+07:00"}],"HeadCommit":{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/b104efa75f1c2dc4158c1c6d302501db884230c9...7e2dfc497da7b826f8f961d7acc5a0574f73de12","Len":2}', 1704361840);
INSERT INTO public.action VALUES (1380, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},{"Sha1":"59e755466bb935225ca4feca563f4ba25d059ec4","Message":"check thêm ngành nghề này đã có trong kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:52:46+07:00"}],"HeadCommit":{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/b104efa75f1c2dc4158c1c6d302501db884230c9...7e2dfc497da7b826f8f961d7acc5a0574f73de12","Len":2}', 1704361840);
INSERT INTO public.action VALUES (1840, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/178/merge', false, '', 1704606639);
INSERT INTO public.action VALUES (1381, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},{"Sha1":"59e755466bb935225ca4feca563f4ba25d059ec4","Message":"check thêm ngành nghề này đã có trong kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:52:46+07:00"}],"HeadCommit":{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/b104efa75f1c2dc4158c1c6d302501db884230c9...7e2dfc497da7b826f8f961d7acc5a0574f73de12","Len":2}', 1704361840);
INSERT INTO public.action VALUES (1488, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"}],"HeadCommit":{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/abb8ae120157a6719fa9094c0b05ff6c11052efd...984ab8bc6fa2d923599f3f1241b528745fabcf57","Len":1}', 1704446412);
INSERT INTO public.action VALUES (1489, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"}],"HeadCommit":{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/abb8ae120157a6719fa9094c0b05ff6c11052efd...984ab8bc6fa2d923599f3f1241b528745fabcf57","Len":1}', 1704446412);
INSERT INTO public.action VALUES (1490, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"}],"HeadCommit":{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/abb8ae120157a6719fa9094c0b05ff6c11052efd...984ab8bc6fa2d923599f3f1241b528745fabcf57","Len":1}', 1704446412);
INSERT INTO public.action VALUES (1515, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},{"Sha1":"de9a1bc215d3c5c6f82b7648e8a6e063da51500f","Message":"fix disable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:26:53+07:00"}],"HeadCommit":{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/984ab8bc6fa2d923599f3f1241b528745fabcf57...a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Len":2}', 1704464876);
INSERT INTO public.action VALUES (1516, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},{"Sha1":"de9a1bc215d3c5c6f82b7648e8a6e063da51500f","Message":"fix disable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:26:53+07:00"}],"HeadCommit":{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/984ab8bc6fa2d923599f3f1241b528745fabcf57...a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Len":2}', 1704464876);
INSERT INTO public.action VALUES (1526, 16, 11, 11, 21, 0, false, '', false, '41|thinh', 1704464905);
INSERT INTO public.action VALUES (1532, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"}],"HeadCommit":{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a560a9bc5fc9ec190342b2afbed08fc5a252c0a9...fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Len":1}', 1704525964);
INSERT INTO public.action VALUES (1841, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/178/merge', false, '', 1704606639);
INSERT INTO public.action VALUES (1998, 14, 7, 11, 21, 0, false, '', false, '58|fix text tim kiem', 1704681576);
INSERT INTO public.action VALUES (1999, 16, 7, 11, 21, 0, false, '', false, '58|fix text tim kiem', 1704681576);
INSERT INTO public.action VALUES (2000, 1, 7, 11, 21, 0, false, '', false, '58|fix text tim kiem', 1704681576);
INSERT INTO public.action VALUES (2001, 5, 7, 11, 21, 0, false, '', false, '58|fix text tim kiem', 1704681576);
INSERT INTO public.action VALUES (1528, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1f5dbedbc5ac086f344c259aa6523dd859e55509","Message":"Merge pull request ''thinh'' (#41) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/41\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T21:28:19+07:00"},{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},{"Sha1":"de9a1bc215d3c5c6f82b7648e8a6e063da51500f","Message":"fix disable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:26:53+07:00"}],"HeadCommit":{"Sha1":"1f5dbedbc5ac086f344c259aa6523dd859e55509","Message":"Merge pull request ''thinh'' (#41) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/41\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T21:28:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ae5188bd0ff0b0618b16428867ff1d4c001a580b...1f5dbedbc5ac086f344c259aa6523dd859e55509","Len":3}', 1704464905);
INSERT INTO public.action VALUES (1529, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1f5dbedbc5ac086f344c259aa6523dd859e55509","Message":"Merge pull request ''thinh'' (#41) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/41\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T21:28:19+07:00"},{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},{"Sha1":"de9a1bc215d3c5c6f82b7648e8a6e063da51500f","Message":"fix disable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:26:53+07:00"}],"HeadCommit":{"Sha1":"1f5dbedbc5ac086f344c259aa6523dd859e55509","Message":"Merge pull request ''thinh'' (#41) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/41\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T21:28:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ae5188bd0ff0b0618b16428867ff1d4c001a580b...1f5dbedbc5ac086f344c259aa6523dd859e55509","Len":3}', 1704464905);
INSERT INTO public.action VALUES (1530, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1f5dbedbc5ac086f344c259aa6523dd859e55509","Message":"Merge pull request ''thinh'' (#41) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/41\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T21:28:19+07:00"},{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},{"Sha1":"de9a1bc215d3c5c6f82b7648e8a6e063da51500f","Message":"fix disable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:26:53+07:00"}],"HeadCommit":{"Sha1":"1f5dbedbc5ac086f344c259aa6523dd859e55509","Message":"Merge pull request ''thinh'' (#41) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/41\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T21:28:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ae5188bd0ff0b0618b16428867ff1d4c001a580b...1f5dbedbc5ac086f344c259aa6523dd859e55509","Len":3}', 1704464905);
INSERT INTO public.action VALUES (1531, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1f5dbedbc5ac086f344c259aa6523dd859e55509","Message":"Merge pull request ''thinh'' (#41) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/41\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T21:28:19+07:00"},{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},{"Sha1":"de9a1bc215d3c5c6f82b7648e8a6e063da51500f","Message":"fix disable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:26:53+07:00"}],"HeadCommit":{"Sha1":"1f5dbedbc5ac086f344c259aa6523dd859e55509","Message":"Merge pull request ''thinh'' (#41) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/41\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T21:28:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ae5188bd0ff0b0618b16428867ff1d4c001a580b...1f5dbedbc5ac086f344c259aa6523dd859e55509","Len":3}', 1704464905);
INSERT INTO public.action VALUES (2936, 11, 7, 11, 21, 0, false, '', false, '85|add fuc in send gmail', 1705030727);
INSERT INTO public.action VALUES (2937, 14, 7, 11, 21, 0, false, '', false, '85|add fuc in send gmail', 1705030727);
INSERT INTO public.action VALUES (2938, 16, 7, 11, 21, 0, false, '', false, '85|add fuc in send gmail', 1705030727);
INSERT INTO public.action VALUES (2939, 5, 7, 11, 21, 0, false, '', false, '85|add fuc in send gmail', 1705030727);
INSERT INTO public.action VALUES (2940, 1, 7, 11, 21, 0, false, '', false, '85|add fuc in send gmail', 1705030727);
INSERT INTO public.action VALUES (3077, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"}],"HeadCommit":{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"},"CompareURL":"khieu-nai/backend/compare/d2affd50bad1017bfbc9d6940c7b79c6b93e7380...b91fcae669214f6410e0844cb50560d8313ec508","Len":1}', 1705050154);
INSERT INTO public.action VALUES (1534, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"}],"HeadCommit":{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a560a9bc5fc9ec190342b2afbed08fc5a252c0a9...fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Len":1}', 1704525964);
INSERT INTO public.action VALUES (1535, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"}],"HeadCommit":{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a560a9bc5fc9ec190342b2afbed08fc5a252c0a9...fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Len":1}', 1704525964);
INSERT INTO public.action VALUES (1536, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"}],"HeadCommit":{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a560a9bc5fc9ec190342b2afbed08fc5a252c0a9...fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Len":1}', 1704525964);
INSERT INTO public.action VALUES (1542, 11, 11, 11, 21, 0, false, '', false, '42|add menu bao ccao thong ke', 1704526120);
INSERT INTO public.action VALUES (1543, 14, 11, 11, 21, 0, false, '', false, '42|add menu bao ccao thong ke', 1704526120);
INSERT INTO public.action VALUES (1544, 1, 11, 11, 21, 0, false, '', false, '42|add menu bao ccao thong ke', 1704526120);
INSERT INTO public.action VALUES (1545, 5, 11, 11, 21, 0, false, '', false, '42|add menu bao ccao thong ke', 1704526120);
INSERT INTO public.action VALUES (1546, 16, 11, 11, 21, 0, false, '', false, '42|add menu bao ccao thong ke', 1704526120);
INSERT INTO public.action VALUES (1552, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"}],"HeadCommit":{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5...119cfde3f4a42038a41db374df8ff0d36954b1b8","Len":1}', 1704530814);
INSERT INTO public.action VALUES (1553, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"}],"HeadCommit":{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5...119cfde3f4a42038a41db374df8ff0d36954b1b8","Len":1}', 1704530814);
INSERT INTO public.action VALUES (1554, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"}],"HeadCommit":{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5...119cfde3f4a42038a41db374df8ff0d36954b1b8","Len":1}', 1704530814);
INSERT INTO public.action VALUES (1555, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"}],"HeadCommit":{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5...119cfde3f4a42038a41db374df8ff0d36954b1b8","Len":1}', 1704530814);
INSERT INTO public.action VALUES (1556, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"}],"HeadCommit":{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5...119cfde3f4a42038a41db374df8ff0d36954b1b8","Len":1}', 1704530814);
INSERT INTO public.action VALUES (1557, 11, 7, 11, 21, 0, false, '', false, '43|add file', 1704530829);
INSERT INTO public.action VALUES (1547, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6918848f9c759b000de2893835b5d1c027f8ba14","Message":"Merge pull request ''add menu bao ccao thong ke'' (#42) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/42\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T14:28:34+07:00"},{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"}],"HeadCommit":{"Sha1":"6918848f9c759b000de2893835b5d1c027f8ba14","Message":"Merge pull request ''add menu bao ccao thong ke'' (#42) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/42\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T14:28:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1f5dbedbc5ac086f344c259aa6523dd859e55509...6918848f9c759b000de2893835b5d1c027f8ba14","Len":2}', 1704526121);
INSERT INTO public.action VALUES (1548, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6918848f9c759b000de2893835b5d1c027f8ba14","Message":"Merge pull request ''add menu bao ccao thong ke'' (#42) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/42\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T14:28:34+07:00"},{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"}],"HeadCommit":{"Sha1":"6918848f9c759b000de2893835b5d1c027f8ba14","Message":"Merge pull request ''add menu bao ccao thong ke'' (#42) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/42\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T14:28:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1f5dbedbc5ac086f344c259aa6523dd859e55509...6918848f9c759b000de2893835b5d1c027f8ba14","Len":2}', 1704526121);
INSERT INTO public.action VALUES (1549, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6918848f9c759b000de2893835b5d1c027f8ba14","Message":"Merge pull request ''add menu bao ccao thong ke'' (#42) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/42\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T14:28:34+07:00"},{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"}],"HeadCommit":{"Sha1":"6918848f9c759b000de2893835b5d1c027f8ba14","Message":"Merge pull request ''add menu bao ccao thong ke'' (#42) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/42\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T14:28:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1f5dbedbc5ac086f344c259aa6523dd859e55509...6918848f9c759b000de2893835b5d1c027f8ba14","Len":2}', 1704526121);
INSERT INTO public.action VALUES (1550, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6918848f9c759b000de2893835b5d1c027f8ba14","Message":"Merge pull request ''add menu bao ccao thong ke'' (#42) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/42\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T14:28:34+07:00"},{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"}],"HeadCommit":{"Sha1":"6918848f9c759b000de2893835b5d1c027f8ba14","Message":"Merge pull request ''add menu bao ccao thong ke'' (#42) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/42\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T14:28:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1f5dbedbc5ac086f344c259aa6523dd859e55509...6918848f9c759b000de2893835b5d1c027f8ba14","Len":2}', 1704526121);
INSERT INTO public.action VALUES (1551, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6918848f9c759b000de2893835b5d1c027f8ba14","Message":"Merge pull request ''add menu bao ccao thong ke'' (#42) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/42\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T14:28:34+07:00"},{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"}],"HeadCommit":{"Sha1":"6918848f9c759b000de2893835b5d1c027f8ba14","Message":"Merge pull request ''add menu bao ccao thong ke'' (#42) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/42\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T14:28:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1f5dbedbc5ac086f344c259aa6523dd859e55509...6918848f9c759b000de2893835b5d1c027f8ba14","Len":2}', 1704526121);
INSERT INTO public.action VALUES (2941, 11, 11, 11, 21, 0, false, '', false, '85|add fuc in send gmail', 1705030758);
INSERT INTO public.action VALUES (2942, 14, 11, 11, 21, 0, false, '', false, '85|add fuc in send gmail', 1705030758);
INSERT INTO public.action VALUES (2943, 16, 11, 11, 21, 0, false, '', false, '85|add fuc in send gmail', 1705030758);
INSERT INTO public.action VALUES (2944, 5, 11, 11, 21, 0, false, '', false, '85|add fuc in send gmail', 1705030758);
INSERT INTO public.action VALUES (2945, 1, 11, 11, 21, 0, false, '', false, '85|add fuc in send gmail', 1705030758);
INSERT INTO public.action VALUES (3104, 13, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/3/head', false, '', 1705076173);
INSERT INTO public.action VALUES (3105, 1, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/3/head', false, '', 1705076173);
INSERT INTO public.action VALUES (3106, 4, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/3/head', false, '', 1705076173);
INSERT INTO public.action VALUES (1567, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1d296848df6920c81b2395ba376ff937f4b8849b","Message":"Merge pull request ''add file'' (#43) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/43\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T15:48:12+07:00"},{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"}],"HeadCommit":{"Sha1":"1d296848df6920c81b2395ba376ff937f4b8849b","Message":"Merge pull request ''add file'' (#43) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/43\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T15:48:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6918848f9c759b000de2893835b5d1c027f8ba14...1d296848df6920c81b2395ba376ff937f4b8849b","Len":2}', 1704530898);
INSERT INTO public.action VALUES (1568, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1d296848df6920c81b2395ba376ff937f4b8849b","Message":"Merge pull request ''add file'' (#43) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/43\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T15:48:12+07:00"},{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"}],"HeadCommit":{"Sha1":"1d296848df6920c81b2395ba376ff937f4b8849b","Message":"Merge pull request ''add file'' (#43) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/43\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T15:48:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6918848f9c759b000de2893835b5d1c027f8ba14...1d296848df6920c81b2395ba376ff937f4b8849b","Len":2}', 1704530898);
INSERT INTO public.action VALUES (1569, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1d296848df6920c81b2395ba376ff937f4b8849b","Message":"Merge pull request ''add file'' (#43) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/43\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T15:48:12+07:00"},{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"}],"HeadCommit":{"Sha1":"1d296848df6920c81b2395ba376ff937f4b8849b","Message":"Merge pull request ''add file'' (#43) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/43\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T15:48:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6918848f9c759b000de2893835b5d1c027f8ba14...1d296848df6920c81b2395ba376ff937f4b8849b","Len":2}', 1704530898);
INSERT INTO public.action VALUES (1570, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1d296848df6920c81b2395ba376ff937f4b8849b","Message":"Merge pull request ''add file'' (#43) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/43\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T15:48:12+07:00"},{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"}],"HeadCommit":{"Sha1":"1d296848df6920c81b2395ba376ff937f4b8849b","Message":"Merge pull request ''add file'' (#43) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/43\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T15:48:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6918848f9c759b000de2893835b5d1c027f8ba14...1d296848df6920c81b2395ba376ff937f4b8849b","Len":2}', 1704530898);
INSERT INTO public.action VALUES (1571, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1d296848df6920c81b2395ba376ff937f4b8849b","Message":"Merge pull request ''add file'' (#43) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/43\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T15:48:12+07:00"},{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"}],"HeadCommit":{"Sha1":"1d296848df6920c81b2395ba376ff937f4b8849b","Message":"Merge pull request ''add file'' (#43) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/43\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T15:48:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6918848f9c759b000de2893835b5d1c027f8ba14...1d296848df6920c81b2395ba376ff937f4b8849b","Len":2}', 1704530898);
INSERT INTO public.action VALUES (1572, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"}],"HeadCommit":{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/119cfde3f4a42038a41db374df8ff0d36954b1b8...617e946b080534877c3abc010d4e567d2044a504","Len":1}', 1704533540);
INSERT INTO public.action VALUES (1842, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/175/head', false, '', 1704636039);
INSERT INTO public.action VALUES (1843, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/175/head', false, '', 1704636039);
INSERT INTO public.action VALUES (1573, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"}],"HeadCommit":{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/119cfde3f4a42038a41db374df8ff0d36954b1b8...617e946b080534877c3abc010d4e567d2044a504","Len":1}', 1704533540);
INSERT INTO public.action VALUES (1574, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"}],"HeadCommit":{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/119cfde3f4a42038a41db374df8ff0d36954b1b8...617e946b080534877c3abc010d4e567d2044a504","Len":1}', 1704533540);
INSERT INTO public.action VALUES (1575, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"}],"HeadCommit":{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/119cfde3f4a42038a41db374df8ff0d36954b1b8...617e946b080534877c3abc010d4e567d2044a504","Len":1}', 1704533540);
INSERT INTO public.action VALUES (1576, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"}],"HeadCommit":{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/119cfde3f4a42038a41db374df8ff0d36954b1b8...617e946b080534877c3abc010d4e567d2044a504","Len":1}', 1704533540);
INSERT INTO public.action VALUES (1577, 11, 7, 11, 21, 0, false, '', false, '44|add 4 task bao cao', 1704533561);
INSERT INTO public.action VALUES (1578, 14, 7, 11, 21, 0, false, '', false, '44|add 4 task bao cao', 1704533561);
INSERT INTO public.action VALUES (1579, 1, 7, 11, 21, 0, false, '', false, '44|add 4 task bao cao', 1704533561);
INSERT INTO public.action VALUES (1580, 5, 7, 11, 21, 0, false, '', false, '44|add 4 task bao cao', 1704533561);
INSERT INTO public.action VALUES (1581, 16, 7, 11, 21, 0, false, '', false, '44|add 4 task bao cao', 1704533561);
INSERT INTO public.action VALUES (1582, 11, 11, 11, 21, 0, false, '', false, '44|add 4 task bao cao', 1704533602);
INSERT INTO public.action VALUES (1583, 14, 11, 11, 21, 0, false, '', false, '44|add 4 task bao cao', 1704533602);
INSERT INTO public.action VALUES (1584, 1, 11, 11, 21, 0, false, '', false, '44|add 4 task bao cao', 1704533602);
INSERT INTO public.action VALUES (1585, 5, 11, 11, 21, 0, false, '', false, '44|add 4 task bao cao', 1704533602);
INSERT INTO public.action VALUES (1586, 16, 11, 11, 21, 0, false, '', false, '44|add 4 task bao cao', 1704533602);
INSERT INTO public.action VALUES (1587, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Message":"Merge pull request ''add 4 task bao cao'' (#44) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/44\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:33:17+07:00"},{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"}],"HeadCommit":{"Sha1":"4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Message":"Merge pull request ''add 4 task bao cao'' (#44) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/44\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:33:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1d296848df6920c81b2395ba376ff937f4b8849b...4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Len":2}', 1704533603);
INSERT INTO public.action VALUES (1588, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Message":"Merge pull request ''add 4 task bao cao'' (#44) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/44\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:33:17+07:00"},{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"}],"HeadCommit":{"Sha1":"4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Message":"Merge pull request ''add 4 task bao cao'' (#44) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/44\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:33:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1d296848df6920c81b2395ba376ff937f4b8849b...4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Len":2}', 1704533603);
INSERT INTO public.action VALUES (1844, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/175/head', false, '', 1704636039);
INSERT INTO public.action VALUES (1845, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/175/merge', false, '', 1704636039);
INSERT INTO public.action VALUES (1846, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/175/merge', false, '', 1704636039);
INSERT INTO public.action VALUES (1589, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Message":"Merge pull request ''add 4 task bao cao'' (#44) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/44\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:33:17+07:00"},{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"}],"HeadCommit":{"Sha1":"4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Message":"Merge pull request ''add 4 task bao cao'' (#44) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/44\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:33:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1d296848df6920c81b2395ba376ff937f4b8849b...4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Len":2}', 1704533603);
INSERT INTO public.action VALUES (1590, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Message":"Merge pull request ''add 4 task bao cao'' (#44) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/44\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:33:17+07:00"},{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"}],"HeadCommit":{"Sha1":"4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Message":"Merge pull request ''add 4 task bao cao'' (#44) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/44\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:33:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1d296848df6920c81b2395ba376ff937f4b8849b...4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Len":2}', 1704533603);
INSERT INTO public.action VALUES (1591, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Message":"Merge pull request ''add 4 task bao cao'' (#44) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/44\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:33:17+07:00"},{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"}],"HeadCommit":{"Sha1":"4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Message":"Merge pull request ''add 4 task bao cao'' (#44) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/44\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:33:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1d296848df6920c81b2395ba376ff937f4b8849b...4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Len":2}', 1704533603);
INSERT INTO public.action VALUES (1592, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"}],"HeadCommit":{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/617e946b080534877c3abc010d4e567d2044a504...bd49447e927e089e113e894c4cecbbc57f723a98","Len":1}', 1704534463);
INSERT INTO public.action VALUES (1593, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"}],"HeadCommit":{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/617e946b080534877c3abc010d4e567d2044a504...bd49447e927e089e113e894c4cecbbc57f723a98","Len":1}', 1704534463);
INSERT INTO public.action VALUES (1594, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"}],"HeadCommit":{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/617e946b080534877c3abc010d4e567d2044a504...bd49447e927e089e113e894c4cecbbc57f723a98","Len":1}', 1704534463);
INSERT INTO public.action VALUES (1595, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"}],"HeadCommit":{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/617e946b080534877c3abc010d4e567d2044a504...bd49447e927e089e113e894c4cecbbc57f723a98","Len":1}', 1704534463);
INSERT INTO public.action VALUES (1847, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/175/merge', false, '', 1704636039);
INSERT INTO public.action VALUES (1596, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"}],"HeadCommit":{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/617e946b080534877c3abc010d4e567d2044a504...bd49447e927e089e113e894c4cecbbc57f723a98","Len":1}', 1704534463);
INSERT INTO public.action VALUES (1597, 11, 7, 11, 21, 0, false, '', false, '45|phan row bao cao nha giao', 1704534498);
INSERT INTO public.action VALUES (1598, 14, 7, 11, 21, 0, false, '', false, '45|phan row bao cao nha giao', 1704534498);
INSERT INTO public.action VALUES (1599, 1, 7, 11, 21, 0, false, '', false, '45|phan row bao cao nha giao', 1704534498);
INSERT INTO public.action VALUES (1600, 5, 7, 11, 21, 0, false, '', false, '45|phan row bao cao nha giao', 1704534498);
INSERT INTO public.action VALUES (1601, 16, 7, 11, 21, 0, false, '', false, '45|phan row bao cao nha giao', 1704534498);
INSERT INTO public.action VALUES (1602, 11, 11, 11, 21, 0, false, '', false, '45|phan row bao cao nha giao', 1704534540);
INSERT INTO public.action VALUES (1603, 14, 11, 11, 21, 0, false, '', false, '45|phan row bao cao nha giao', 1704534541);
INSERT INTO public.action VALUES (1604, 1, 11, 11, 21, 0, false, '', false, '45|phan row bao cao nha giao', 1704534541);
INSERT INTO public.action VALUES (1605, 5, 11, 11, 21, 0, false, '', false, '45|phan row bao cao nha giao', 1704534541);
INSERT INTO public.action VALUES (1606, 16, 11, 11, 21, 0, false, '', false, '45|phan row bao cao nha giao', 1704534541);
INSERT INTO public.action VALUES (1622, 11, 11, 11, 21, 0, false, '', false, '46|fix css', 1704534900);
INSERT INTO public.action VALUES (1623, 14, 11, 11, 21, 0, false, '', false, '46|fix css', 1704534900);
INSERT INTO public.action VALUES (1624, 1, 11, 11, 21, 0, false, '', false, '46|fix css', 1704534900);
INSERT INTO public.action VALUES (1625, 5, 11, 11, 21, 0, false, '', false, '46|fix css', 1704534900);
INSERT INTO public.action VALUES (1626, 16, 11, 11, 21, 0, false, '', false, '46|fix css', 1704534900);
INSERT INTO public.action VALUES (1627, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Message":"Merge pull request ''fix css'' (#46) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/46\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:54:55+07:00"},{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"}],"HeadCommit":{"Sha1":"d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Message":"Merge pull request ''fix css'' (#46) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/46\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:54:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b8964d98cd5165235ae9910046babd2b3cb7bf55...d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Len":2}', 1704534900);
INSERT INTO public.action VALUES (1628, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Message":"Merge pull request ''fix css'' (#46) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/46\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:54:55+07:00"},{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"}],"HeadCommit":{"Sha1":"d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Message":"Merge pull request ''fix css'' (#46) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/46\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:54:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b8964d98cd5165235ae9910046babd2b3cb7bf55...d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Len":2}', 1704534900);
INSERT INTO public.action VALUES (1629, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Message":"Merge pull request ''fix css'' (#46) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/46\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:54:55+07:00"},{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"}],"HeadCommit":{"Sha1":"d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Message":"Merge pull request ''fix css'' (#46) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/46\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:54:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b8964d98cd5165235ae9910046babd2b3cb7bf55...d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Len":2}', 1704534900);
INSERT INTO public.action VALUES (1630, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Message":"Merge pull request ''fix css'' (#46) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/46\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:54:55+07:00"},{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"}],"HeadCommit":{"Sha1":"d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Message":"Merge pull request ''fix css'' (#46) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/46\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:54:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b8964d98cd5165235ae9910046babd2b3cb7bf55...d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Len":2}', 1704534900);
INSERT INTO public.action VALUES (1607, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b8964d98cd5165235ae9910046babd2b3cb7bf55","Message":"Merge pull request ''phan row bao cao nha giao'' (#45) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/45\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:48:55+07:00"},{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"}],"HeadCommit":{"Sha1":"b8964d98cd5165235ae9910046babd2b3cb7bf55","Message":"Merge pull request ''phan row bao cao nha giao'' (#45) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/45\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:48:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c...b8964d98cd5165235ae9910046babd2b3cb7bf55","Len":2}', 1704534542);
INSERT INTO public.action VALUES (1608, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b8964d98cd5165235ae9910046babd2b3cb7bf55","Message":"Merge pull request ''phan row bao cao nha giao'' (#45) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/45\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:48:55+07:00"},{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"}],"HeadCommit":{"Sha1":"b8964d98cd5165235ae9910046babd2b3cb7bf55","Message":"Merge pull request ''phan row bao cao nha giao'' (#45) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/45\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:48:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c...b8964d98cd5165235ae9910046babd2b3cb7bf55","Len":2}', 1704534542);
INSERT INTO public.action VALUES (1609, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b8964d98cd5165235ae9910046babd2b3cb7bf55","Message":"Merge pull request ''phan row bao cao nha giao'' (#45) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/45\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:48:55+07:00"},{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"}],"HeadCommit":{"Sha1":"b8964d98cd5165235ae9910046babd2b3cb7bf55","Message":"Merge pull request ''phan row bao cao nha giao'' (#45) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/45\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:48:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c...b8964d98cd5165235ae9910046babd2b3cb7bf55","Len":2}', 1704534542);
INSERT INTO public.action VALUES (1610, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b8964d98cd5165235ae9910046babd2b3cb7bf55","Message":"Merge pull request ''phan row bao cao nha giao'' (#45) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/45\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:48:55+07:00"},{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"}],"HeadCommit":{"Sha1":"b8964d98cd5165235ae9910046babd2b3cb7bf55","Message":"Merge pull request ''phan row bao cao nha giao'' (#45) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/45\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:48:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c...b8964d98cd5165235ae9910046babd2b3cb7bf55","Len":2}', 1704534542);
INSERT INTO public.action VALUES (1611, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b8964d98cd5165235ae9910046babd2b3cb7bf55","Message":"Merge pull request ''phan row bao cao nha giao'' (#45) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/45\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:48:55+07:00"},{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"}],"HeadCommit":{"Sha1":"b8964d98cd5165235ae9910046babd2b3cb7bf55","Message":"Merge pull request ''phan row bao cao nha giao'' (#45) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/45\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:48:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c...b8964d98cd5165235ae9910046babd2b3cb7bf55","Len":2}', 1704534542);
INSERT INTO public.action VALUES (1612, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"}],"HeadCommit":{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bd49447e927e089e113e894c4cecbbc57f723a98...e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Len":1}', 1704534859);
INSERT INTO public.action VALUES (1613, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"}],"HeadCommit":{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bd49447e927e089e113e894c4cecbbc57f723a98...e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Len":1}', 1704534859);
INSERT INTO public.action VALUES (1614, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"}],"HeadCommit":{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bd49447e927e089e113e894c4cecbbc57f723a98...e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Len":1}', 1704534859);
INSERT INTO public.action VALUES (1615, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"}],"HeadCommit":{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bd49447e927e089e113e894c4cecbbc57f723a98...e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Len":1}', 1704534859);
INSERT INTO public.action VALUES (1616, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"}],"HeadCommit":{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bd49447e927e089e113e894c4cecbbc57f723a98...e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Len":1}', 1704534859);
INSERT INTO public.action VALUES (1617, 11, 7, 11, 21, 0, false, '', false, '46|fix css', 1704534885);
INSERT INTO public.action VALUES (1618, 14, 7, 11, 21, 0, false, '', false, '46|fix css', 1704534885);
INSERT INTO public.action VALUES (1619, 1, 7, 11, 21, 0, false, '', false, '46|fix css', 1704534885);
INSERT INTO public.action VALUES (1620, 5, 7, 11, 21, 0, false, '', false, '46|fix css', 1704534885);
INSERT INTO public.action VALUES (1621, 16, 7, 11, 21, 0, false, '', false, '46|fix css', 1704534885);
INSERT INTO public.action VALUES (1642, 11, 11, 11, 21, 0, false, '', false, '47|fix css', 1704535534);
INSERT INTO public.action VALUES (1643, 14, 11, 11, 21, 0, false, '', false, '47|fix css', 1704535534);
INSERT INTO public.action VALUES (1644, 1, 11, 11, 21, 0, false, '', false, '47|fix css', 1704535534);
INSERT INTO public.action VALUES (1645, 5, 11, 11, 21, 0, false, '', false, '47|fix css', 1704535534);
INSERT INTO public.action VALUES (1646, 16, 11, 11, 21, 0, false, '', false, '47|fix css', 1704535534);
INSERT INTO public.action VALUES (1647, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"0d37213eee90283bab8283fb75293086478de453","Message":"Merge pull request ''fix css'' (#47) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/47\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T17:05:29+07:00"},{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"}],"HeadCommit":{"Sha1":"0d37213eee90283bab8283fb75293086478de453","Message":"Merge pull request ''fix css'' (#47) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/47\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T17:05:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d3c53ffa7ca196f1375e95e6cc5d49bc461272fc...0d37213eee90283bab8283fb75293086478de453","Len":2}', 1704535535);
INSERT INTO public.action VALUES (1648, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"0d37213eee90283bab8283fb75293086478de453","Message":"Merge pull request ''fix css'' (#47) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/47\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T17:05:29+07:00"},{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"}],"HeadCommit":{"Sha1":"0d37213eee90283bab8283fb75293086478de453","Message":"Merge pull request ''fix css'' (#47) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/47\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T17:05:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d3c53ffa7ca196f1375e95e6cc5d49bc461272fc...0d37213eee90283bab8283fb75293086478de453","Len":2}', 1704535535);
INSERT INTO public.action VALUES (1848, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/176/head', false, '', 1704636039);
INSERT INTO public.action VALUES (1849, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/176/head', false, '', 1704636039);
INSERT INTO public.action VALUES (1850, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/176/head', false, '', 1704636039);
INSERT INTO public.action VALUES (1851, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/176/merge', false, '', 1704636039);
INSERT INTO public.action VALUES (1852, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/176/merge', false, '', 1704636039);
INSERT INTO public.action VALUES (1853, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/176/merge', false, '', 1704636039);
INSERT INTO public.action VALUES (1631, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Message":"Merge pull request ''fix css'' (#46) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/46\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:54:55+07:00"},{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"}],"HeadCommit":{"Sha1":"d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Message":"Merge pull request ''fix css'' (#46) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/46\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:54:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b8964d98cd5165235ae9910046babd2b3cb7bf55...d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Len":2}', 1704534900);
INSERT INTO public.action VALUES (1632, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"}],"HeadCommit":{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e5c3a3e2b2b1535da512fd85ccade301eb9e184d...df9b7ce86feb0b36c4d22201228a3e7f52791f31","Len":1}', 1704535486);
INSERT INTO public.action VALUES (1633, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"}],"HeadCommit":{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e5c3a3e2b2b1535da512fd85ccade301eb9e184d...df9b7ce86feb0b36c4d22201228a3e7f52791f31","Len":1}', 1704535486);
INSERT INTO public.action VALUES (1634, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"}],"HeadCommit":{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e5c3a3e2b2b1535da512fd85ccade301eb9e184d...df9b7ce86feb0b36c4d22201228a3e7f52791f31","Len":1}', 1704535486);
INSERT INTO public.action VALUES (1635, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"}],"HeadCommit":{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e5c3a3e2b2b1535da512fd85ccade301eb9e184d...df9b7ce86feb0b36c4d22201228a3e7f52791f31","Len":1}', 1704535486);
INSERT INTO public.action VALUES (1636, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"}],"HeadCommit":{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e5c3a3e2b2b1535da512fd85ccade301eb9e184d...df9b7ce86feb0b36c4d22201228a3e7f52791f31","Len":1}', 1704535486);
INSERT INTO public.action VALUES (1637, 11, 7, 11, 21, 0, false, '', false, '47|fix css', 1704535519);
INSERT INTO public.action VALUES (1638, 14, 7, 11, 21, 0, false, '', false, '47|fix css', 1704535519);
INSERT INTO public.action VALUES (1639, 1, 7, 11, 21, 0, false, '', false, '47|fix css', 1704535519);
INSERT INTO public.action VALUES (1640, 5, 7, 11, 21, 0, false, '', false, '47|fix css', 1704535519);
INSERT INTO public.action VALUES (1641, 16, 7, 11, 21, 0, false, '', false, '47|fix css', 1704535519);
INSERT INTO public.action VALUES (1652, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"}],"HeadCommit":{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/df9b7ce86feb0b36c4d22201228a3e7f52791f31...9748ba33191bfbf094a58a9f8070796b54ca6c95","Len":1}', 1704538654);
INSERT INTO public.action VALUES (1864, 11, 11, 11, 21, 0, false, '', false, '54|update search menu bao cao', 1704649732);
INSERT INTO public.action VALUES (1865, 14, 11, 11, 21, 0, false, '', false, '54|update search menu bao cao', 1704649732);
INSERT INTO public.action VALUES (1866, 1, 11, 11, 21, 0, false, '', false, '54|update search menu bao cao', 1704649732);
INSERT INTO public.action VALUES (1867, 5, 11, 11, 21, 0, false, '', false, '54|update search menu bao cao', 1704649732);
INSERT INTO public.action VALUES (1868, 16, 11, 11, 21, 0, false, '', false, '54|update search menu bao cao', 1704649732);
INSERT INTO public.action VALUES (1950, 11, 11, 11, 21, 0, false, '', false, '56|thinh', 1704679142);
INSERT INTO public.action VALUES (1951, 14, 11, 11, 21, 0, false, '', false, '56|thinh', 1704679142);
INSERT INTO public.action VALUES (1649, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"0d37213eee90283bab8283fb75293086478de453","Message":"Merge pull request ''fix css'' (#47) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/47\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T17:05:29+07:00"},{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"}],"HeadCommit":{"Sha1":"0d37213eee90283bab8283fb75293086478de453","Message":"Merge pull request ''fix css'' (#47) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/47\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T17:05:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d3c53ffa7ca196f1375e95e6cc5d49bc461272fc...0d37213eee90283bab8283fb75293086478de453","Len":2}', 1704535535);
INSERT INTO public.action VALUES (1650, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"0d37213eee90283bab8283fb75293086478de453","Message":"Merge pull request ''fix css'' (#47) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/47\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T17:05:29+07:00"},{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"}],"HeadCommit":{"Sha1":"0d37213eee90283bab8283fb75293086478de453","Message":"Merge pull request ''fix css'' (#47) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/47\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T17:05:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d3c53ffa7ca196f1375e95e6cc5d49bc461272fc...0d37213eee90283bab8283fb75293086478de453","Len":2}', 1704535535);
INSERT INTO public.action VALUES (1651, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"0d37213eee90283bab8283fb75293086478de453","Message":"Merge pull request ''fix css'' (#47) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/47\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T17:05:29+07:00"},{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"}],"HeadCommit":{"Sha1":"0d37213eee90283bab8283fb75293086478de453","Message":"Merge pull request ''fix css'' (#47) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/47\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T17:05:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d3c53ffa7ca196f1375e95e6cc5d49bc461272fc...0d37213eee90283bab8283fb75293086478de453","Len":2}', 1704535535);
INSERT INTO public.action VALUES (2946, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Message":"Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T10:39:12+07:00"},{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"}],"HeadCommit":{"Sha1":"6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Message":"Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T10:39:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d48e38d9a17ce739803e4e98d015c2fc443742ac...6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Len":2}', 1705030759);
INSERT INTO public.action VALUES (2947, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Message":"Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T10:39:12+07:00"},{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"}],"HeadCommit":{"Sha1":"6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Message":"Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T10:39:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d48e38d9a17ce739803e4e98d015c2fc443742ac...6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Len":2}', 1705030759);
INSERT INTO public.action VALUES (3029, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"}],"HeadCommit":{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8d033bdc680e69f37d6b0c7530e23ace16ad7ab6...8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Len":1}', 1705047285);
INSERT INTO public.action VALUES (3107, 13, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/3/merge', false, '', 1705076173);
INSERT INTO public.action VALUES (1653, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"}],"HeadCommit":{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/df9b7ce86feb0b36c4d22201228a3e7f52791f31...9748ba33191bfbf094a58a9f8070796b54ca6c95","Len":1}', 1704538654);
INSERT INTO public.action VALUES (1654, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"}],"HeadCommit":{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/df9b7ce86feb0b36c4d22201228a3e7f52791f31...9748ba33191bfbf094a58a9f8070796b54ca6c95","Len":1}', 1704538654);
INSERT INTO public.action VALUES (1655, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"}],"HeadCommit":{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/df9b7ce86feb0b36c4d22201228a3e7f52791f31...9748ba33191bfbf094a58a9f8070796b54ca6c95","Len":1}', 1704538654);
INSERT INTO public.action VALUES (1656, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"}],"HeadCommit":{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/df9b7ce86feb0b36c4d22201228a3e7f52791f31...9748ba33191bfbf094a58a9f8070796b54ca6c95","Len":1}', 1704538654);
INSERT INTO public.action VALUES (2948, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Message":"Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T10:39:12+07:00"},{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"}],"HeadCommit":{"Sha1":"6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Message":"Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T10:39:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d48e38d9a17ce739803e4e98d015c2fc443742ac...6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Len":2}', 1705030759);
INSERT INTO public.action VALUES (2949, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Message":"Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T10:39:12+07:00"},{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"}],"HeadCommit":{"Sha1":"6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Message":"Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T10:39:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d48e38d9a17ce739803e4e98d015c2fc443742ac...6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Len":2}', 1705030759);
INSERT INTO public.action VALUES (2950, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Message":"Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T10:39:12+07:00"},{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"}],"HeadCommit":{"Sha1":"6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Message":"Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T10:39:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d48e38d9a17ce739803e4e98d015c2fc443742ac...6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Len":2}', 1705030759);
INSERT INTO public.action VALUES (3108, 1, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/3/merge', false, '', 1705076173);
INSERT INTO public.action VALUES (1667, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"95f1005c26023ce855c24052f06d6e81ce780724","Message":"Merge pull request ''fix height body item menu'' (#48) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/48\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:00:53+07:00"},{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"}],"HeadCommit":{"Sha1":"95f1005c26023ce855c24052f06d6e81ce780724","Message":"Merge pull request ''fix height body item menu'' (#48) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/48\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:00:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0d37213eee90283bab8283fb75293086478de453...95f1005c26023ce855c24052f06d6e81ce780724","Len":2}', 1704538859);
INSERT INTO public.action VALUES (1668, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"95f1005c26023ce855c24052f06d6e81ce780724","Message":"Merge pull request ''fix height body item menu'' (#48) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/48\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:00:53+07:00"},{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"}],"HeadCommit":{"Sha1":"95f1005c26023ce855c24052f06d6e81ce780724","Message":"Merge pull request ''fix height body item menu'' (#48) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/48\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:00:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0d37213eee90283bab8283fb75293086478de453...95f1005c26023ce855c24052f06d6e81ce780724","Len":2}', 1704538859);
INSERT INTO public.action VALUES (1669, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"95f1005c26023ce855c24052f06d6e81ce780724","Message":"Merge pull request ''fix height body item menu'' (#48) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/48\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:00:53+07:00"},{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"}],"HeadCommit":{"Sha1":"95f1005c26023ce855c24052f06d6e81ce780724","Message":"Merge pull request ''fix height body item menu'' (#48) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/48\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:00:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0d37213eee90283bab8283fb75293086478de453...95f1005c26023ce855c24052f06d6e81ce780724","Len":2}', 1704538859);
INSERT INTO public.action VALUES (1670, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"95f1005c26023ce855c24052f06d6e81ce780724","Message":"Merge pull request ''fix height body item menu'' (#48) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/48\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:00:53+07:00"},{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"}],"HeadCommit":{"Sha1":"95f1005c26023ce855c24052f06d6e81ce780724","Message":"Merge pull request ''fix height body item menu'' (#48) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/48\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:00:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0d37213eee90283bab8283fb75293086478de453...95f1005c26023ce855c24052f06d6e81ce780724","Len":2}', 1704538859);
INSERT INTO public.action VALUES (1671, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"95f1005c26023ce855c24052f06d6e81ce780724","Message":"Merge pull request ''fix height body item menu'' (#48) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/48\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:00:53+07:00"},{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"}],"HeadCommit":{"Sha1":"95f1005c26023ce855c24052f06d6e81ce780724","Message":"Merge pull request ''fix height body item menu'' (#48) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/48\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:00:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0d37213eee90283bab8283fb75293086478de453...95f1005c26023ce855c24052f06d6e81ce780724","Len":2}', 1704538859);
INSERT INTO public.action VALUES (1672, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"}],"HeadCommit":{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9748ba33191bfbf094a58a9f8070796b54ca6c95...4d34351dde0810f72be0eb994338cf114049dace","Len":1}', 1704540477);
INSERT INTO public.action VALUES (1673, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"}],"HeadCommit":{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9748ba33191bfbf094a58a9f8070796b54ca6c95...4d34351dde0810f72be0eb994338cf114049dace","Len":1}', 1704540477);
INSERT INTO public.action VALUES (1674, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"}],"HeadCommit":{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9748ba33191bfbf094a58a9f8070796b54ca6c95...4d34351dde0810f72be0eb994338cf114049dace","Len":1}', 1704540477);
INSERT INTO public.action VALUES (1675, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"}],"HeadCommit":{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9748ba33191bfbf094a58a9f8070796b54ca6c95...4d34351dde0810f72be0eb994338cf114049dace","Len":1}', 1704540477);
INSERT INTO public.action VALUES (1676, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"}],"HeadCommit":{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9748ba33191bfbf094a58a9f8070796b54ca6c95...4d34351dde0810f72be0eb994338cf114049dace","Len":1}', 1704540477);
INSERT INTO public.action VALUES (1677, 11, 7, 11, 21, 0, false, '', false, '49|update title menu bao cao', 1704540571);
INSERT INTO public.action VALUES (1678, 14, 7, 11, 21, 0, false, '', false, '49|update title menu bao cao', 1704540571);
INSERT INTO public.action VALUES (1679, 1, 7, 11, 21, 0, false, '', false, '49|update title menu bao cao', 1704540571);
INSERT INTO public.action VALUES (1680, 5, 7, 11, 21, 0, false, '', false, '49|update title menu bao cao', 1704540571);
INSERT INTO public.action VALUES (1681, 16, 7, 11, 21, 0, false, '', false, '49|update title menu bao cao', 1704540571);
INSERT INTO public.action VALUES (1682, 11, 11, 11, 21, 0, false, '', false, '49|update title menu bao cao', 1704540616);
INSERT INTO public.action VALUES (1683, 14, 11, 11, 21, 0, false, '', false, '49|update title menu bao cao', 1704540616);
INSERT INTO public.action VALUES (1684, 1, 11, 11, 21, 0, false, '', false, '49|update title menu bao cao', 1704540616);
INSERT INTO public.action VALUES (1685, 5, 11, 11, 21, 0, false, '', false, '49|update title menu bao cao', 1704540616);
INSERT INTO public.action VALUES (1686, 16, 11, 11, 21, 0, false, '', false, '49|update title menu bao cao', 1704540616);
INSERT INTO public.action VALUES (1687, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Message":"Merge pull request ''update title menu bao cao'' (#49) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/49\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:30:10+07:00"},{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"}],"HeadCommit":{"Sha1":"b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Message":"Merge pull request ''update title menu bao cao'' (#49) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/49\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:30:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/95f1005c26023ce855c24052f06d6e81ce780724...b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Len":2}', 1704540616);
INSERT INTO public.action VALUES (1688, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Message":"Merge pull request ''update title menu bao cao'' (#49) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/49\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:30:10+07:00"},{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"}],"HeadCommit":{"Sha1":"b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Message":"Merge pull request ''update title menu bao cao'' (#49) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/49\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:30:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/95f1005c26023ce855c24052f06d6e81ce780724...b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Len":2}', 1704540616);
INSERT INTO public.action VALUES (3109, 4, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/3/merge', false, '', 1705076173);
INSERT INTO public.action VALUES (3222, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/121/head', false, '', 1705164372);
INSERT INTO public.action VALUES (1689, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Message":"Merge pull request ''update title menu bao cao'' (#49) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/49\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:30:10+07:00"},{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"}],"HeadCommit":{"Sha1":"b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Message":"Merge pull request ''update title menu bao cao'' (#49) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/49\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:30:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/95f1005c26023ce855c24052f06d6e81ce780724...b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Len":2}', 1704540616);
INSERT INTO public.action VALUES (1690, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Message":"Merge pull request ''update title menu bao cao'' (#49) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/49\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:30:10+07:00"},{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"}],"HeadCommit":{"Sha1":"b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Message":"Merge pull request ''update title menu bao cao'' (#49) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/49\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:30:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/95f1005c26023ce855c24052f06d6e81ce780724...b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Len":2}', 1704540616);
INSERT INTO public.action VALUES (1691, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Message":"Merge pull request ''update title menu bao cao'' (#49) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/49\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:30:10+07:00"},{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"}],"HeadCommit":{"Sha1":"b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Message":"Merge pull request ''update title menu bao cao'' (#49) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/49\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:30:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/95f1005c26023ce855c24052f06d6e81ce780724...b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Len":2}', 1704540616);
INSERT INTO public.action VALUES (1692, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"}],"HeadCommit":{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4d34351dde0810f72be0eb994338cf114049dace...78578129269292fceb7625c884e5ea7eed543acb","Len":1}', 1704558830);
INSERT INTO public.action VALUES (1693, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"}],"HeadCommit":{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4d34351dde0810f72be0eb994338cf114049dace...78578129269292fceb7625c884e5ea7eed543acb","Len":1}', 1704558830);
INSERT INTO public.action VALUES (1694, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"}],"HeadCommit":{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4d34351dde0810f72be0eb994338cf114049dace...78578129269292fceb7625c884e5ea7eed543acb","Len":1}', 1704558830);
INSERT INTO public.action VALUES (1695, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"}],"HeadCommit":{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4d34351dde0810f72be0eb994338cf114049dace...78578129269292fceb7625c884e5ea7eed543acb","Len":1}', 1704558830);
INSERT INTO public.action VALUES (1952, 16, 11, 11, 21, 0, false, '', false, '56|thinh', 1704679142);
INSERT INTO public.action VALUES (1953, 1, 11, 11, 21, 0, false, '', false, '56|thinh', 1704679142);
INSERT INTO public.action VALUES (1696, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"}],"HeadCommit":{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4d34351dde0810f72be0eb994338cf114049dace...78578129269292fceb7625c884e5ea7eed543acb","Len":1}', 1704558830);
INSERT INTO public.action VALUES (1697, 11, 7, 11, 21, 0, false, '', false, '50|fix giao dien', 1704558889);
INSERT INTO public.action VALUES (1698, 14, 7, 11, 21, 0, false, '', false, '50|fix giao dien', 1704558889);
INSERT INTO public.action VALUES (1699, 1, 7, 11, 21, 0, false, '', false, '50|fix giao dien', 1704558889);
INSERT INTO public.action VALUES (1700, 5, 7, 11, 21, 0, false, '', false, '50|fix giao dien', 1704558889);
INSERT INTO public.action VALUES (1701, 16, 7, 11, 21, 0, false, '', false, '50|fix giao dien', 1704558889);
INSERT INTO public.action VALUES (1707, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Message":"Merge pull request ''fix giao dien'' (#50) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/50\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:35:00+07:00"},{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"}],"HeadCommit":{"Sha1":"ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Message":"Merge pull request ''fix giao dien'' (#50) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/50\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:35:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af...ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Len":2}', 1704558907);
INSERT INTO public.action VALUES (1708, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Message":"Merge pull request ''fix giao dien'' (#50) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/50\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:35:00+07:00"},{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"}],"HeadCommit":{"Sha1":"ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Message":"Merge pull request ''fix giao dien'' (#50) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/50\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:35:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af...ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Len":2}', 1704558907);
INSERT INTO public.action VALUES (1709, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Message":"Merge pull request ''fix giao dien'' (#50) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/50\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:35:00+07:00"},{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"}],"HeadCommit":{"Sha1":"ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Message":"Merge pull request ''fix giao dien'' (#50) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/50\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:35:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af...ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Len":2}', 1704558907);
INSERT INTO public.action VALUES (1710, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Message":"Merge pull request ''fix giao dien'' (#50) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/50\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:35:00+07:00"},{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"}],"HeadCommit":{"Sha1":"ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Message":"Merge pull request ''fix giao dien'' (#50) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/50\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:35:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af...ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Len":2}', 1704558907);
INSERT INTO public.action VALUES (1733, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"}],"HeadCommit":{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b8b1e9d8ca222077ac01cd383e3f4818284508ec...5185419c13b6fec46874892354cc8730462e41f4","Len":1}', 1704561626);
INSERT INTO public.action VALUES (1954, 5, 11, 11, 21, 0, false, '', false, '56|thinh', 1704679142);
INSERT INTO public.action VALUES (1711, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Message":"Merge pull request ''fix giao dien'' (#50) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/50\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:35:00+07:00"},{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"}],"HeadCommit":{"Sha1":"ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Message":"Merge pull request ''fix giao dien'' (#50) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/50\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:35:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af...ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Len":2}', 1704558907);
INSERT INTO public.action VALUES (1712, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"}],"HeadCommit":{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/78578129269292fceb7625c884e5ea7eed543acb...b8b1e9d8ca222077ac01cd383e3f4818284508ec","Len":1}', 1704559588);
INSERT INTO public.action VALUES (1713, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"}],"HeadCommit":{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/78578129269292fceb7625c884e5ea7eed543acb...b8b1e9d8ca222077ac01cd383e3f4818284508ec","Len":1}', 1704559588);
INSERT INTO public.action VALUES (1714, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"}],"HeadCommit":{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/78578129269292fceb7625c884e5ea7eed543acb...b8b1e9d8ca222077ac01cd383e3f4818284508ec","Len":1}', 1704559588);
INSERT INTO public.action VALUES (1715, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"}],"HeadCommit":{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/78578129269292fceb7625c884e5ea7eed543acb...b8b1e9d8ca222077ac01cd383e3f4818284508ec","Len":1}', 1704559588);
INSERT INTO public.action VALUES (1716, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"}],"HeadCommit":{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/78578129269292fceb7625c884e5ea7eed543acb...b8b1e9d8ca222077ac01cd383e3f4818284508ec","Len":1}', 1704559588);
INSERT INTO public.action VALUES (1717, 11, 7, 11, 21, 0, false, '', false, '51|add ui screen', 1704559647);
INSERT INTO public.action VALUES (1718, 14, 7, 11, 21, 0, false, '', false, '51|add ui screen', 1704559647);
INSERT INTO public.action VALUES (1719, 1, 7, 11, 21, 0, false, '', false, '51|add ui screen', 1704559647);
INSERT INTO public.action VALUES (1720, 5, 7, 11, 21, 0, false, '', false, '51|add ui screen', 1704559647);
INSERT INTO public.action VALUES (1721, 16, 7, 11, 21, 0, false, '', false, '51|add ui screen', 1704559647);
INSERT INTO public.action VALUES (1742, 11, 11, 11, 21, 0, false, '', false, '52|update fontfamily', 1704561829);
INSERT INTO public.action VALUES (1743, 14, 11, 11, 21, 0, false, '', false, '52|update fontfamily', 1704561829);
INSERT INTO public.action VALUES (1744, 1, 11, 11, 21, 0, false, '', false, '52|update fontfamily', 1704561829);
INSERT INTO public.action VALUES (1745, 5, 11, 11, 21, 0, false, '', false, '52|update fontfamily', 1704561829);
INSERT INTO public.action VALUES (1746, 16, 11, 11, 21, 0, false, '', false, '52|update fontfamily', 1704561829);
INSERT INTO public.action VALUES (1753, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"}],"HeadCommit":{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5185419c13b6fec46874892354cc8730462e41f4...2a6e8489b87520d37042b61f7db2344e7af73158","Len":1}', 1704562828);
INSERT INTO public.action VALUES (1970, 11, 11, 11, 21, 0, false, '', false, '57|update search menu bao cao', 1704679845);
INSERT INTO public.action VALUES (1727, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9088ce508353da84638b2c28888657686694e6d5","Message":"Merge pull request ''add ui screen'' (#51) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/51\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:47:37+07:00"},{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"}],"HeadCommit":{"Sha1":"9088ce508353da84638b2c28888657686694e6d5","Message":"Merge pull request ''add ui screen'' (#51) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/51\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:47:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ab844c362a09a6559ca0a8a4b5d0ace86a82784b...9088ce508353da84638b2c28888657686694e6d5","Len":2}', 1704559664);
INSERT INTO public.action VALUES (1728, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9088ce508353da84638b2c28888657686694e6d5","Message":"Merge pull request ''add ui screen'' (#51) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/51\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:47:37+07:00"},{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"}],"HeadCommit":{"Sha1":"9088ce508353da84638b2c28888657686694e6d5","Message":"Merge pull request ''add ui screen'' (#51) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/51\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:47:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ab844c362a09a6559ca0a8a4b5d0ace86a82784b...9088ce508353da84638b2c28888657686694e6d5","Len":2}', 1704559664);
INSERT INTO public.action VALUES (1729, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9088ce508353da84638b2c28888657686694e6d5","Message":"Merge pull request ''add ui screen'' (#51) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/51\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:47:37+07:00"},{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"}],"HeadCommit":{"Sha1":"9088ce508353da84638b2c28888657686694e6d5","Message":"Merge pull request ''add ui screen'' (#51) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/51\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:47:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ab844c362a09a6559ca0a8a4b5d0ace86a82784b...9088ce508353da84638b2c28888657686694e6d5","Len":2}', 1704559664);
INSERT INTO public.action VALUES (1730, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9088ce508353da84638b2c28888657686694e6d5","Message":"Merge pull request ''add ui screen'' (#51) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/51\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:47:37+07:00"},{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"}],"HeadCommit":{"Sha1":"9088ce508353da84638b2c28888657686694e6d5","Message":"Merge pull request ''add ui screen'' (#51) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/51\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:47:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ab844c362a09a6559ca0a8a4b5d0ace86a82784b...9088ce508353da84638b2c28888657686694e6d5","Len":2}', 1704559664);
INSERT INTO public.action VALUES (1731, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9088ce508353da84638b2c28888657686694e6d5","Message":"Merge pull request ''add ui screen'' (#51) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/51\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:47:37+07:00"},{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"}],"HeadCommit":{"Sha1":"9088ce508353da84638b2c28888657686694e6d5","Message":"Merge pull request ''add ui screen'' (#51) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/51\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:47:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ab844c362a09a6559ca0a8a4b5d0ace86a82784b...9088ce508353da84638b2c28888657686694e6d5","Len":2}', 1704559664);
INSERT INTO public.action VALUES (1732, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"}],"HeadCommit":{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b8b1e9d8ca222077ac01cd383e3f4818284508ec...5185419c13b6fec46874892354cc8730462e41f4","Len":1}', 1704561626);
INSERT INTO public.action VALUES (1737, 11, 7, 11, 21, 0, false, '', false, '52|update fontfamily', 1704561813);
INSERT INTO public.action VALUES (1738, 14, 7, 11, 21, 0, false, '', false, '52|update fontfamily', 1704561813);
INSERT INTO public.action VALUES (1734, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"}],"HeadCommit":{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b8b1e9d8ca222077ac01cd383e3f4818284508ec...5185419c13b6fec46874892354cc8730462e41f4","Len":1}', 1704561626);
INSERT INTO public.action VALUES (1735, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"}],"HeadCommit":{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b8b1e9d8ca222077ac01cd383e3f4818284508ec...5185419c13b6fec46874892354cc8730462e41f4","Len":1}', 1704561626);
INSERT INTO public.action VALUES (1736, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"}],"HeadCommit":{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b8b1e9d8ca222077ac01cd383e3f4818284508ec...5185419c13b6fec46874892354cc8730462e41f4","Len":1}', 1704561626);
INSERT INTO public.action VALUES (2951, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"}],"HeadCommit":{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"},"CompareURL":"khieu-nai/backend/compare/f6cf877bbfc129833517eb37d42f3a51e3aa40c7...d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Len":1}', 1705033069);
INSERT INTO public.action VALUES (2952, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"}],"HeadCommit":{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"},"CompareURL":"khieu-nai/backend/compare/f6cf877bbfc129833517eb37d42f3a51e3aa40c7...d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Len":1}', 1705033069);
INSERT INTO public.action VALUES (2953, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"}],"HeadCommit":{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"},"CompareURL":"khieu-nai/backend/compare/f6cf877bbfc129833517eb37d42f3a51e3aa40c7...d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Len":1}', 1705033069);
INSERT INTO public.action VALUES (2954, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"}],"HeadCommit":{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"},"CompareURL":"khieu-nai/backend/compare/f6cf877bbfc129833517eb37d42f3a51e3aa40c7...d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Len":1}', 1705033069);
INSERT INTO public.action VALUES (2955, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"}],"HeadCommit":{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"},"CompareURL":"khieu-nai/backend/compare/f6cf877bbfc129833517eb37d42f3a51e3aa40c7...d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Len":1}', 1705033069);
INSERT INTO public.action VALUES (2956, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"}],"HeadCommit":{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"},"CompareURL":"khieu-nai/backend/compare/f6cf877bbfc129833517eb37d42f3a51e3aa40c7...d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Len":1}', 1705033069);
INSERT INTO public.action VALUES (3110, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/127/head', false, '', 1705105569);
INSERT INTO public.action VALUES (3111, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/127/head', false, '', 1705105570);
INSERT INTO public.action VALUES (3112, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/127/head', false, '', 1705105570);
INSERT INTO public.action VALUES (3113, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/127/merge', false, '', 1705105570);
INSERT INTO public.action VALUES (1747, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"06d085be3928daaed5477b3b93f0b645021dc268","Message":"Merge pull request ''update fontfamily'' (#52) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/52\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:23:44+07:00"},{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"}],"HeadCommit":{"Sha1":"06d085be3928daaed5477b3b93f0b645021dc268","Message":"Merge pull request ''update fontfamily'' (#52) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/52\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:23:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9088ce508353da84638b2c28888657686694e6d5...06d085be3928daaed5477b3b93f0b645021dc268","Len":2}', 1704561831);
INSERT INTO public.action VALUES (1748, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"06d085be3928daaed5477b3b93f0b645021dc268","Message":"Merge pull request ''update fontfamily'' (#52) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/52\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:23:44+07:00"},{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"}],"HeadCommit":{"Sha1":"06d085be3928daaed5477b3b93f0b645021dc268","Message":"Merge pull request ''update fontfamily'' (#52) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/52\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:23:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9088ce508353da84638b2c28888657686694e6d5...06d085be3928daaed5477b3b93f0b645021dc268","Len":2}', 1704561831);
INSERT INTO public.action VALUES (1749, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"06d085be3928daaed5477b3b93f0b645021dc268","Message":"Merge pull request ''update fontfamily'' (#52) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/52\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:23:44+07:00"},{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"}],"HeadCommit":{"Sha1":"06d085be3928daaed5477b3b93f0b645021dc268","Message":"Merge pull request ''update fontfamily'' (#52) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/52\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:23:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9088ce508353da84638b2c28888657686694e6d5...06d085be3928daaed5477b3b93f0b645021dc268","Len":2}', 1704561831);
INSERT INTO public.action VALUES (1750, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"06d085be3928daaed5477b3b93f0b645021dc268","Message":"Merge pull request ''update fontfamily'' (#52) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/52\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:23:44+07:00"},{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"}],"HeadCommit":{"Sha1":"06d085be3928daaed5477b3b93f0b645021dc268","Message":"Merge pull request ''update fontfamily'' (#52) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/52\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:23:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9088ce508353da84638b2c28888657686694e6d5...06d085be3928daaed5477b3b93f0b645021dc268","Len":2}', 1704561831);
INSERT INTO public.action VALUES (1751, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"06d085be3928daaed5477b3b93f0b645021dc268","Message":"Merge pull request ''update fontfamily'' (#52) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/52\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:23:44+07:00"},{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"}],"HeadCommit":{"Sha1":"06d085be3928daaed5477b3b93f0b645021dc268","Message":"Merge pull request ''update fontfamily'' (#52) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/52\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:23:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9088ce508353da84638b2c28888657686694e6d5...06d085be3928daaed5477b3b93f0b645021dc268","Len":2}', 1704561831);
INSERT INTO public.action VALUES (1752, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"}],"HeadCommit":{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5185419c13b6fec46874892354cc8730462e41f4...2a6e8489b87520d37042b61f7db2344e7af73158","Len":1}', 1704562828);
INSERT INTO public.action VALUES (1782, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/179/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1754, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"}],"HeadCommit":{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5185419c13b6fec46874892354cc8730462e41f4...2a6e8489b87520d37042b61f7db2344e7af73158","Len":1}', 1704562828);
INSERT INTO public.action VALUES (1755, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"}],"HeadCommit":{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5185419c13b6fec46874892354cc8730462e41f4...2a6e8489b87520d37042b61f7db2344e7af73158","Len":1}', 1704562828);
INSERT INTO public.action VALUES (1756, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"}],"HeadCommit":{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5185419c13b6fec46874892354cc8730462e41f4...2a6e8489b87520d37042b61f7db2344e7af73158","Len":1}', 1704562828);
INSERT INTO public.action VALUES (1757, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"}],"HeadCommit":{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2a6e8489b87520d37042b61f7db2344e7af73158...45b9c678d73d0bd0daa0fe70c719bc40055f6428","Len":1}', 1704563430);
INSERT INTO public.action VALUES (1758, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"}],"HeadCommit":{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2a6e8489b87520d37042b61f7db2344e7af73158...45b9c678d73d0bd0daa0fe70c719bc40055f6428","Len":1}', 1704563430);
INSERT INTO public.action VALUES (1759, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"}],"HeadCommit":{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2a6e8489b87520d37042b61f7db2344e7af73158...45b9c678d73d0bd0daa0fe70c719bc40055f6428","Len":1}', 1704563430);
INSERT INTO public.action VALUES (1760, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"}],"HeadCommit":{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2a6e8489b87520d37042b61f7db2344e7af73158...45b9c678d73d0bd0daa0fe70c719bc40055f6428","Len":1}', 1704563430);
INSERT INTO public.action VALUES (1761, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"}],"HeadCommit":{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2a6e8489b87520d37042b61f7db2344e7af73158...45b9c678d73d0bd0daa0fe70c719bc40055f6428","Len":1}', 1704563430);
INSERT INTO public.action VALUES (1762, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"}],"HeadCommit":{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/45b9c678d73d0bd0daa0fe70c719bc40055f6428...b4cb97cfc03652702704d947d95da87772a7267a","Len":1}', 1704563471);
INSERT INTO public.action VALUES (1763, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"}],"HeadCommit":{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/45b9c678d73d0bd0daa0fe70c719bc40055f6428...b4cb97cfc03652702704d947d95da87772a7267a","Len":1}', 1704563471);
INSERT INTO public.action VALUES (1764, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"}],"HeadCommit":{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/45b9c678d73d0bd0daa0fe70c719bc40055f6428...b4cb97cfc03652702704d947d95da87772a7267a","Len":1}', 1704563471);
INSERT INTO public.action VALUES (1765, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"}],"HeadCommit":{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/45b9c678d73d0bd0daa0fe70c719bc40055f6428...b4cb97cfc03652702704d947d95da87772a7267a","Len":1}', 1704563471);
INSERT INTO public.action VALUES (1766, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"}],"HeadCommit":{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/45b9c678d73d0bd0daa0fe70c719bc40055f6428...b4cb97cfc03652702704d947d95da87772a7267a","Len":1}', 1704563471);
INSERT INTO public.action VALUES (1767, 11, 7, 11, 21, 0, false, '', false, '53|thinh', 1704563537);
INSERT INTO public.action VALUES (1768, 14, 7, 11, 21, 0, false, '', false, '53|thinh', 1704563537);
INSERT INTO public.action VALUES (1769, 1, 7, 11, 21, 0, false, '', false, '53|thinh', 1704563537);
INSERT INTO public.action VALUES (1770, 5, 7, 11, 21, 0, false, '', false, '53|thinh', 1704563537);
INSERT INTO public.action VALUES (1771, 16, 7, 11, 21, 0, false, '', false, '53|thinh', 1704563537);
INSERT INTO public.action VALUES (1772, 11, 11, 11, 21, 0, false, '', false, '53|thinh', 1704563578);
INSERT INTO public.action VALUES (1773, 14, 11, 11, 21, 0, false, '', false, '53|thinh', 1704563578);
INSERT INTO public.action VALUES (1774, 1, 11, 11, 21, 0, false, '', false, '53|thinh', 1704563578);
INSERT INTO public.action VALUES (1775, 5, 11, 11, 21, 0, false, '', false, '53|thinh', 1704563578);
INSERT INTO public.action VALUES (1776, 16, 11, 11, 21, 0, false, '', false, '53|thinh', 1704563578);
INSERT INTO public.action VALUES (1777, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2681e6728650033a8895e8b079f6af34a88c842c","Message":"Merge pull request ''thinh'' (#53) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/53\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:52:53+07:00"},{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"},{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"},{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"}],"HeadCommit":{"Sha1":"2681e6728650033a8895e8b079f6af34a88c842c","Message":"Merge pull request ''thinh'' (#53) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/53\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:52:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/06d085be3928daaed5477b3b93f0b645021dc268...2681e6728650033a8895e8b079f6af34a88c842c","Len":4}', 1704563579);
INSERT INTO public.action VALUES (1783, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/179/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1784, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/179/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1785, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/179/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1786, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/179/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1787, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/179/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1788, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/180/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1789, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/180/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1790, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/180/head', false, '', 1704577239);
INSERT INTO public.action VALUES (1791, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/180/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1792, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/180/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1793, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/180/merge', false, '', 1704577239);
INSERT INTO public.action VALUES (1778, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2681e6728650033a8895e8b079f6af34a88c842c","Message":"Merge pull request ''thinh'' (#53) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/53\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:52:53+07:00"},{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"},{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"},{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"}],"HeadCommit":{"Sha1":"2681e6728650033a8895e8b079f6af34a88c842c","Message":"Merge pull request ''thinh'' (#53) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/53\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:52:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/06d085be3928daaed5477b3b93f0b645021dc268...2681e6728650033a8895e8b079f6af34a88c842c","Len":4}', 1704563579);
INSERT INTO public.action VALUES (2957, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},{"Sha1":"452941640be0fe4ba9d7a470d65a2dd2298f1ec7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:16+07:00"},{"Sha1":"b335b4c4867af438f52809be0436486e090bc4c5","Message":"update baocao TS dia phuong\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:10+07:00"},{"Sha1":"c1242c0cc36db357f358465b19daf6661c5a5604","Message":"check xóa ngành nghề trong kế hoạch đã gửi\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:25:16+07:00"},{"Sha1":"d60353fc6e819e577c1d0a1e119257bc185fb22b","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:17:29+07:00"}],"HeadCommit":{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2b39a2404c8800424e13d56f5702c07c9261c67b...869268d636fa17b9ae86c4f0ce751839607f6610","Len":7}', 1705037172);
INSERT INTO public.action VALUES (2958, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},{"Sha1":"452941640be0fe4ba9d7a470d65a2dd2298f1ec7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:16+07:00"},{"Sha1":"b335b4c4867af438f52809be0436486e090bc4c5","Message":"update baocao TS dia phuong\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:10+07:00"},{"Sha1":"c1242c0cc36db357f358465b19daf6661c5a5604","Message":"check xóa ngành nghề trong kế hoạch đã gửi\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:25:16+07:00"},{"Sha1":"d60353fc6e819e577c1d0a1e119257bc185fb22b","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:17:29+07:00"}],"HeadCommit":{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2b39a2404c8800424e13d56f5702c07c9261c67b...869268d636fa17b9ae86c4f0ce751839607f6610","Len":7}', 1705037172);
INSERT INTO public.action VALUES (2959, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},{"Sha1":"452941640be0fe4ba9d7a470d65a2dd2298f1ec7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:16+07:00"},{"Sha1":"b335b4c4867af438f52809be0436486e090bc4c5","Message":"update baocao TS dia phuong\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:10+07:00"},{"Sha1":"c1242c0cc36db357f358465b19daf6661c5a5604","Message":"check xóa ngành nghề trong kế hoạch đã gửi\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:25:16+07:00"},{"Sha1":"d60353fc6e819e577c1d0a1e119257bc185fb22b","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:17:29+07:00"}],"HeadCommit":{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2b39a2404c8800424e13d56f5702c07c9261c67b...869268d636fa17b9ae86c4f0ce751839607f6610","Len":7}', 1705037172);
INSERT INTO public.action VALUES (3114, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/127/merge', false, '', 1705105570);
INSERT INTO public.action VALUES (3115, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/127/merge', false, '', 1705105570);
INSERT INTO public.action VALUES (1779, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2681e6728650033a8895e8b079f6af34a88c842c","Message":"Merge pull request ''thinh'' (#53) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/53\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:52:53+07:00"},{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"},{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"},{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"}],"HeadCommit":{"Sha1":"2681e6728650033a8895e8b079f6af34a88c842c","Message":"Merge pull request ''thinh'' (#53) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/53\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:52:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/06d085be3928daaed5477b3b93f0b645021dc268...2681e6728650033a8895e8b079f6af34a88c842c","Len":4}', 1704563579);
INSERT INTO public.action VALUES (1780, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2681e6728650033a8895e8b079f6af34a88c842c","Message":"Merge pull request ''thinh'' (#53) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/53\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:52:53+07:00"},{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"},{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"},{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"}],"HeadCommit":{"Sha1":"2681e6728650033a8895e8b079f6af34a88c842c","Message":"Merge pull request ''thinh'' (#53) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/53\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:52:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/06d085be3928daaed5477b3b93f0b645021dc268...2681e6728650033a8895e8b079f6af34a88c842c","Len":4}', 1704563579);
INSERT INTO public.action VALUES (1781, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2681e6728650033a8895e8b079f6af34a88c842c","Message":"Merge pull request ''thinh'' (#53) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/53\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:52:53+07:00"},{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"},{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"},{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"}],"HeadCommit":{"Sha1":"2681e6728650033a8895e8b079f6af34a88c842c","Message":"Merge pull request ''thinh'' (#53) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/53\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:52:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/06d085be3928daaed5477b3b93f0b645021dc268...2681e6728650033a8895e8b079f6af34a88c842c","Len":4}', 1704563579);
INSERT INTO public.action VALUES (1854, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"}],"HeadCommit":{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4cb97cfc03652702704d947d95da87772a7267a...de110d6bef4e4af5e2f1749a46e5000bab208e47","Len":1}', 1704649685);
INSERT INTO public.action VALUES (1855, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"}],"HeadCommit":{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4cb97cfc03652702704d947d95da87772a7267a...de110d6bef4e4af5e2f1749a46e5000bab208e47","Len":1}', 1704649685);
INSERT INTO public.action VALUES (1971, 14, 11, 11, 21, 0, false, '', false, '57|update search menu bao cao', 1704679845);
INSERT INTO public.action VALUES (1972, 16, 11, 11, 21, 0, false, '', false, '57|update search menu bao cao', 1704679845);
INSERT INTO public.action VALUES (1856, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"}],"HeadCommit":{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4cb97cfc03652702704d947d95da87772a7267a...de110d6bef4e4af5e2f1749a46e5000bab208e47","Len":1}', 1704649685);
INSERT INTO public.action VALUES (1857, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"}],"HeadCommit":{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4cb97cfc03652702704d947d95da87772a7267a...de110d6bef4e4af5e2f1749a46e5000bab208e47","Len":1}', 1704649685);
INSERT INTO public.action VALUES (1858, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"}],"HeadCommit":{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4cb97cfc03652702704d947d95da87772a7267a...de110d6bef4e4af5e2f1749a46e5000bab208e47","Len":1}', 1704649685);
INSERT INTO public.action VALUES (1859, 11, 7, 11, 21, 0, false, '', false, '54|update search menu bao cao', 1704649713);
INSERT INTO public.action VALUES (1860, 14, 7, 11, 21, 0, false, '', false, '54|update search menu bao cao', 1704649714);
INSERT INTO public.action VALUES (1861, 1, 7, 11, 21, 0, false, '', false, '54|update search menu bao cao', 1704649714);
INSERT INTO public.action VALUES (1862, 5, 7, 11, 21, 0, false, '', false, '54|update search menu bao cao', 1704649714);
INSERT INTO public.action VALUES (1863, 16, 7, 11, 21, 0, false, '', false, '54|update search menu bao cao', 1704649714);
INSERT INTO public.action VALUES (1884, 11, 11, 11, 21, 0, false, '', false, '55|fix focus search', 1704650453);
INSERT INTO public.action VALUES (1885, 14, 11, 11, 21, 0, false, '', false, '55|fix focus search', 1704650453);
INSERT INTO public.action VALUES (1886, 1, 11, 11, 21, 0, false, '', false, '55|fix focus search', 1704650453);
INSERT INTO public.action VALUES (1887, 5, 11, 11, 21, 0, false, '', false, '55|fix focus search', 1704650453);
INSERT INTO public.action VALUES (1888, 16, 11, 11, 21, 0, false, '', false, '55|fix focus search', 1704650453);
INSERT INTO public.action VALUES (1889, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b9c768a9904229490cf45090e6edc9f229f94497","Message":"Merge pull request ''fix focus search'' (#55) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/55\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T01:00:46+07:00"},{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"}],"HeadCommit":{"Sha1":"b9c768a9904229490cf45090e6edc9f229f94497","Message":"Merge pull request ''fix focus search'' (#55) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/55\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T01:00:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/90acec64f4430f307723d76cea501291a61614f9...b9c768a9904229490cf45090e6edc9f229f94497","Len":2}', 1704650455);
INSERT INTO public.action VALUES (2960, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},{"Sha1":"452941640be0fe4ba9d7a470d65a2dd2298f1ec7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:16+07:00"},{"Sha1":"b335b4c4867af438f52809be0436486e090bc4c5","Message":"update baocao TS dia phuong\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:10+07:00"},{"Sha1":"c1242c0cc36db357f358465b19daf6661c5a5604","Message":"check xóa ngành nghề trong kế hoạch đã gửi\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:25:16+07:00"},{"Sha1":"d60353fc6e819e577c1d0a1e119257bc185fb22b","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:17:29+07:00"}],"HeadCommit":{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2b39a2404c8800424e13d56f5702c07c9261c67b...869268d636fa17b9ae86c4f0ce751839607f6610","Len":7}', 1705037172);
INSERT INTO public.action VALUES (3116, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/128/head', false, '', 1705105570);
INSERT INTO public.action VALUES (3117, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/128/head', false, '', 1705105570);
INSERT INTO public.action VALUES (3118, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/128/head', false, '', 1705105570);
INSERT INTO public.action VALUES (3119, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/128/merge', false, '', 1705105570);
INSERT INTO public.action VALUES (3120, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/128/merge', false, '', 1705105570);
INSERT INTO public.action VALUES (3121, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/128/merge', false, '', 1705105570);
INSERT INTO public.action VALUES (1869, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"90acec64f4430f307723d76cea501291a61614f9","Message":"Merge pull request ''update search menu bao cao'' (#54) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/54\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T00:48:47+07:00"},{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"}],"HeadCommit":{"Sha1":"90acec64f4430f307723d76cea501291a61614f9","Message":"Merge pull request ''update search menu bao cao'' (#54) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/54\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T00:48:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2681e6728650033a8895e8b079f6af34a88c842c...90acec64f4430f307723d76cea501291a61614f9","Len":2}', 1704649734);
INSERT INTO public.action VALUES (1870, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"90acec64f4430f307723d76cea501291a61614f9","Message":"Merge pull request ''update search menu bao cao'' (#54) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/54\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T00:48:47+07:00"},{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"}],"HeadCommit":{"Sha1":"90acec64f4430f307723d76cea501291a61614f9","Message":"Merge pull request ''update search menu bao cao'' (#54) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/54\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T00:48:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2681e6728650033a8895e8b079f6af34a88c842c...90acec64f4430f307723d76cea501291a61614f9","Len":2}', 1704649734);
INSERT INTO public.action VALUES (1871, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"90acec64f4430f307723d76cea501291a61614f9","Message":"Merge pull request ''update search menu bao cao'' (#54) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/54\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T00:48:47+07:00"},{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"}],"HeadCommit":{"Sha1":"90acec64f4430f307723d76cea501291a61614f9","Message":"Merge pull request ''update search menu bao cao'' (#54) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/54\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T00:48:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2681e6728650033a8895e8b079f6af34a88c842c...90acec64f4430f307723d76cea501291a61614f9","Len":2}', 1704649734);
INSERT INTO public.action VALUES (1872, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"90acec64f4430f307723d76cea501291a61614f9","Message":"Merge pull request ''update search menu bao cao'' (#54) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/54\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T00:48:47+07:00"},{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"}],"HeadCommit":{"Sha1":"90acec64f4430f307723d76cea501291a61614f9","Message":"Merge pull request ''update search menu bao cao'' (#54) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/54\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T00:48:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2681e6728650033a8895e8b079f6af34a88c842c...90acec64f4430f307723d76cea501291a61614f9","Len":2}', 1704649734);
INSERT INTO public.action VALUES (1873, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"90acec64f4430f307723d76cea501291a61614f9","Message":"Merge pull request ''update search menu bao cao'' (#54) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/54\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T00:48:47+07:00"},{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"}],"HeadCommit":{"Sha1":"90acec64f4430f307723d76cea501291a61614f9","Message":"Merge pull request ''update search menu bao cao'' (#54) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/54\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T00:48:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2681e6728650033a8895e8b079f6af34a88c842c...90acec64f4430f307723d76cea501291a61614f9","Len":2}', 1704649734);
INSERT INTO public.action VALUES (1874, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"}],"HeadCommit":{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/de110d6bef4e4af5e2f1749a46e5000bab208e47...1d8f88af23f789b2ede493c1d79dd803e096bb05","Len":1}', 1704650051);
INSERT INTO public.action VALUES (1875, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"}],"HeadCommit":{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/de110d6bef4e4af5e2f1749a46e5000bab208e47...1d8f88af23f789b2ede493c1d79dd803e096bb05","Len":1}', 1704650051);
INSERT INTO public.action VALUES (1876, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"}],"HeadCommit":{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/de110d6bef4e4af5e2f1749a46e5000bab208e47...1d8f88af23f789b2ede493c1d79dd803e096bb05","Len":1}', 1704650051);
INSERT INTO public.action VALUES (1877, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"}],"HeadCommit":{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/de110d6bef4e4af5e2f1749a46e5000bab208e47...1d8f88af23f789b2ede493c1d79dd803e096bb05","Len":1}', 1704650051);
INSERT INTO public.action VALUES (1878, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"}],"HeadCommit":{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/de110d6bef4e4af5e2f1749a46e5000bab208e47...1d8f88af23f789b2ede493c1d79dd803e096bb05","Len":1}', 1704650051);
INSERT INTO public.action VALUES (1879, 11, 7, 11, 21, 0, false, '', false, '55|fix focus search', 1704650082);
INSERT INTO public.action VALUES (1880, 14, 7, 11, 21, 0, false, '', false, '55|fix focus search', 1704650082);
INSERT INTO public.action VALUES (1881, 1, 7, 11, 21, 0, false, '', false, '55|fix focus search', 1704650082);
INSERT INTO public.action VALUES (1882, 5, 7, 11, 21, 0, false, '', false, '55|fix focus search', 1704650082);
INSERT INTO public.action VALUES (1883, 16, 7, 11, 21, 0, false, '', false, '55|fix focus search', 1704650082);
INSERT INTO public.action VALUES (1890, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b9c768a9904229490cf45090e6edc9f229f94497","Message":"Merge pull request ''fix focus search'' (#55) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/55\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T01:00:46+07:00"},{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"}],"HeadCommit":{"Sha1":"b9c768a9904229490cf45090e6edc9f229f94497","Message":"Merge pull request ''fix focus search'' (#55) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/55\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T01:00:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/90acec64f4430f307723d76cea501291a61614f9...b9c768a9904229490cf45090e6edc9f229f94497","Len":2}', 1704650455);
INSERT INTO public.action VALUES (1891, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b9c768a9904229490cf45090e6edc9f229f94497","Message":"Merge pull request ''fix focus search'' (#55) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/55\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T01:00:46+07:00"},{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"}],"HeadCommit":{"Sha1":"b9c768a9904229490cf45090e6edc9f229f94497","Message":"Merge pull request ''fix focus search'' (#55) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/55\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T01:00:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/90acec64f4430f307723d76cea501291a61614f9...b9c768a9904229490cf45090e6edc9f229f94497","Len":2}', 1704650455);
INSERT INTO public.action VALUES (1930, 1, 5, 1, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"a4eda163411b228d47b45cec507a829d420b9a67","Message":"Add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2024-01-08T08:16:52+07:00"}],"HeadCommit":{"Sha1":"a4eda163411b228d47b45cec507a829d420b9a67","Message":"Add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2024-01-08T08:16:52+07:00"},"CompareURL":"Khieu-nai/admin/compare/00cf5f9186ddbc5f46a0cdf5a670a513403947b9...a4eda163411b228d47b45cec507a829d420b9a67","Len":1}', 1704676617);
INSERT INTO public.action VALUES (1973, 1, 11, 11, 21, 0, false, '', false, '57|update search menu bao cao', 1704679845);
INSERT INTO public.action VALUES (1974, 5, 11, 11, 21, 0, false, '', false, '57|update search menu bao cao', 1704679845);
INSERT INTO public.action VALUES (1892, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b9c768a9904229490cf45090e6edc9f229f94497","Message":"Merge pull request ''fix focus search'' (#55) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/55\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T01:00:46+07:00"},{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"}],"HeadCommit":{"Sha1":"b9c768a9904229490cf45090e6edc9f229f94497","Message":"Merge pull request ''fix focus search'' (#55) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/55\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T01:00:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/90acec64f4430f307723d76cea501291a61614f9...b9c768a9904229490cf45090e6edc9f229f94497","Len":2}', 1704650455);
INSERT INTO public.action VALUES (1893, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b9c768a9904229490cf45090e6edc9f229f94497","Message":"Merge pull request ''fix focus search'' (#55) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/55\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T01:00:46+07:00"},{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"}],"HeadCommit":{"Sha1":"b9c768a9904229490cf45090e6edc9f229f94497","Message":"Merge pull request ''fix focus search'' (#55) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/55\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T01:00:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/90acec64f4430f307723d76cea501291a61614f9...b9c768a9904229490cf45090e6edc9f229f94497","Len":2}', 1704650455);
INSERT INTO public.action VALUES (1894, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/169/head', false, '', 1704665438);
INSERT INTO public.action VALUES (1895, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/169/head', false, '', 1704665438);
INSERT INTO public.action VALUES (1896, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/169/head', false, '', 1704665438);
INSERT INTO public.action VALUES (1897, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/169/merge', false, '', 1704665438);
INSERT INTO public.action VALUES (1898, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/169/merge', false, '', 1704665438);
INSERT INTO public.action VALUES (1899, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/169/merge', false, '', 1704665438);
INSERT INTO public.action VALUES (1900, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/170/head', false, '', 1704665438);
INSERT INTO public.action VALUES (1901, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/170/head', false, '', 1704665438);
INSERT INTO public.action VALUES (1902, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/170/head', false, '', 1704665438);
INSERT INTO public.action VALUES (1903, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/170/merge', false, '', 1704665438);
INSERT INTO public.action VALUES (1904, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/170/merge', false, '', 1704665438);
INSERT INTO public.action VALUES (1905, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/170/merge', false, '', 1704665438);
INSERT INTO public.action VALUES (1906, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/171/head', false, '', 1704665438);
INSERT INTO public.action VALUES (1907, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/171/head', false, '', 1704665438);
INSERT INTO public.action VALUES (1908, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/171/head', false, '', 1704665438);
INSERT INTO public.action VALUES (1909, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/171/merge', false, '', 1704665438);
INSERT INTO public.action VALUES (1910, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/171/merge', false, '', 1704665438);
INSERT INTO public.action VALUES (1911, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/171/merge', false, '', 1704665438);
INSERT INTO public.action VALUES (1912, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/172/head', false, '', 1704665438);
INSERT INTO public.action VALUES (1913, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/172/head', false, '', 1704665438);
INSERT INTO public.action VALUES (1914, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/172/head', false, '', 1704665438);
INSERT INTO public.action VALUES (1915, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/172/merge', false, '', 1704665438);
INSERT INTO public.action VALUES (1916, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/172/merge', false, '', 1704665438);
INSERT INTO public.action VALUES (1917, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/172/merge', false, '', 1704665438);
INSERT INTO public.action VALUES (1918, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/173/head', false, '', 1704665438);
INSERT INTO public.action VALUES (1919, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/173/head', false, '', 1704665438);
INSERT INTO public.action VALUES (1920, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/173/head', false, '', 1704665438);
INSERT INTO public.action VALUES (1921, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/173/merge', false, '', 1704665438);
INSERT INTO public.action VALUES (1922, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/173/merge', false, '', 1704665438);
INSERT INTO public.action VALUES (1923, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/173/merge', false, '', 1704665438);
INSERT INTO public.action VALUES (1924, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/174/head', false, '', 1704665438);
INSERT INTO public.action VALUES (1925, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/174/head', false, '', 1704665438);
INSERT INTO public.action VALUES (1926, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/174/head', false, '', 1704665438);
INSERT INTO public.action VALUES (1927, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/174/merge', false, '', 1704665438);
INSERT INTO public.action VALUES (1928, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/174/merge', false, '', 1704665438);
INSERT INTO public.action VALUES (1929, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/174/merge', false, '', 1704665438);
INSERT INTO public.action VALUES (3122, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/129/head', false, '', 1705105570);
INSERT INTO public.action VALUES (3123, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/129/head', false, '', 1705105570);
INSERT INTO public.action VALUES (3124, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/129/head', false, '', 1705105570);
INSERT INTO public.action VALUES (3125, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/129/merge', false, '', 1705105570);
INSERT INTO public.action VALUES (1931, 12, 5, 1, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"a4eda163411b228d47b45cec507a829d420b9a67","Message":"Add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2024-01-08T08:16:52+07:00"}],"HeadCommit":{"Sha1":"a4eda163411b228d47b45cec507a829d420b9a67","Message":"Add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2024-01-08T08:16:52+07:00"},"CompareURL":"Khieu-nai/admin/compare/00cf5f9186ddbc5f46a0cdf5a670a513403947b9...a4eda163411b228d47b45cec507a829d420b9a67","Len":1}', 1704676617);
INSERT INTO public.action VALUES (1932, 5, 5, 1, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"a4eda163411b228d47b45cec507a829d420b9a67","Message":"Add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2024-01-08T08:16:52+07:00"}],"HeadCommit":{"Sha1":"a4eda163411b228d47b45cec507a829d420b9a67","Message":"Add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2024-01-08T08:16:52+07:00"},"CompareURL":"Khieu-nai/admin/compare/00cf5f9186ddbc5f46a0cdf5a670a513403947b9...a4eda163411b228d47b45cec507a829d420b9a67","Len":1}', 1704676617);
INSERT INTO public.action VALUES (1933, 2, 5, 1, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"a4eda163411b228d47b45cec507a829d420b9a67","Message":"Add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2024-01-08T08:16:52+07:00"}],"HeadCommit":{"Sha1":"a4eda163411b228d47b45cec507a829d420b9a67","Message":"Add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2024-01-08T08:16:52+07:00"},"CompareURL":"Khieu-nai/admin/compare/00cf5f9186ddbc5f46a0cdf5a670a513403947b9...a4eda163411b228d47b45cec507a829d420b9a67","Len":1}', 1704676617);
INSERT INTO public.action VALUES (1934, 15, 5, 1, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"a4eda163411b228d47b45cec507a829d420b9a67","Message":"Add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2024-01-08T08:16:52+07:00"}],"HeadCommit":{"Sha1":"a4eda163411b228d47b45cec507a829d420b9a67","Message":"Add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2024-01-08T08:16:52+07:00"},"CompareURL":"Khieu-nai/admin/compare/00cf5f9186ddbc5f46a0cdf5a670a513403947b9...a4eda163411b228d47b45cec507a829d420b9a67","Len":1}', 1704676617);
INSERT INTO public.action VALUES (1935, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"}],"HeadCommit":{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1d8f88af23f789b2ede493c1d79dd803e096bb05...e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Len":1}', 1704678939);
INSERT INTO public.action VALUES (1936, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"}],"HeadCommit":{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1d8f88af23f789b2ede493c1d79dd803e096bb05...e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Len":1}', 1704678939);
INSERT INTO public.action VALUES (1937, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"}],"HeadCommit":{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1d8f88af23f789b2ede493c1d79dd803e096bb05...e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Len":1}', 1704678939);
INSERT INTO public.action VALUES (1938, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"}],"HeadCommit":{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1d8f88af23f789b2ede493c1d79dd803e096bb05...e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Len":1}', 1704678939);
INSERT INTO public.action VALUES (1939, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"}],"HeadCommit":{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1d8f88af23f789b2ede493c1d79dd803e096bb05...e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Len":1}', 1704678939);
INSERT INTO public.action VALUES (1980, 15, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '', 1704681340);
INSERT INTO public.action VALUES (1981, 12, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '', 1704681340);
INSERT INTO public.action VALUES (1982, 2, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '', 1704681340);
INSERT INTO public.action VALUES (1983, 1, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '', 1704681340);
INSERT INTO public.action VALUES (1940, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"}],"HeadCommit":{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30...1648b96afc95a1c2a74360ae3223ec9016b6019e","Len":1}', 1704678962);
INSERT INTO public.action VALUES (1941, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"}],"HeadCommit":{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30...1648b96afc95a1c2a74360ae3223ec9016b6019e","Len":1}', 1704678962);
INSERT INTO public.action VALUES (1942, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"}],"HeadCommit":{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30...1648b96afc95a1c2a74360ae3223ec9016b6019e","Len":1}', 1704678962);
INSERT INTO public.action VALUES (1943, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"}],"HeadCommit":{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30...1648b96afc95a1c2a74360ae3223ec9016b6019e","Len":1}', 1704678962);
INSERT INTO public.action VALUES (1944, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"}],"HeadCommit":{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30...1648b96afc95a1c2a74360ae3223ec9016b6019e","Len":1}', 1704678962);
INSERT INTO public.action VALUES (1945, 11, 7, 11, 21, 0, false, '', false, '56|thinh', 1704679122);
INSERT INTO public.action VALUES (1946, 14, 7, 11, 21, 0, false, '', false, '56|thinh', 1704679122);
INSERT INTO public.action VALUES (1947, 16, 7, 11, 21, 0, false, '', false, '56|thinh', 1704679122);
INSERT INTO public.action VALUES (1948, 1, 7, 11, 21, 0, false, '', false, '56|thinh', 1704679122);
INSERT INTO public.action VALUES (1949, 5, 7, 11, 21, 0, false, '', false, '56|thinh', 1704679122);
INSERT INTO public.action VALUES (1975, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a5dfd620c51a9baabd25312a8ee7268e03395cec","Message":"Merge pull request ''update search menu bao cao'' (#57) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/57\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:10:39+07:00"},{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"}],"HeadCommit":{"Sha1":"a5dfd620c51a9baabd25312a8ee7268e03395cec","Message":"Merge pull request ''update search menu bao cao'' (#57) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/57\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:10:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/17223a69f9d2c7982c99e9d063d7796bad0734ad...a5dfd620c51a9baabd25312a8ee7268e03395cec","Len":2}', 1704679846);
INSERT INTO public.action VALUES (1976, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a5dfd620c51a9baabd25312a8ee7268e03395cec","Message":"Merge pull request ''update search menu bao cao'' (#57) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/57\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:10:39+07:00"},{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"}],"HeadCommit":{"Sha1":"a5dfd620c51a9baabd25312a8ee7268e03395cec","Message":"Merge pull request ''update search menu bao cao'' (#57) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/57\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:10:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/17223a69f9d2c7982c99e9d063d7796bad0734ad...a5dfd620c51a9baabd25312a8ee7268e03395cec","Len":2}', 1704679846);
INSERT INTO public.action VALUES (1984, 5, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '', 1704681340);
INSERT INTO public.action VALUES (1955, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"17223a69f9d2c7982c99e9d063d7796bad0734ad","Message":"Merge pull request ''thinh'' (#56) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/56\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T08:58:56+07:00"},{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"},{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"}],"HeadCommit":{"Sha1":"17223a69f9d2c7982c99e9d063d7796bad0734ad","Message":"Merge pull request ''thinh'' (#56) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/56\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T08:58:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b9c768a9904229490cf45090e6edc9f229f94497...17223a69f9d2c7982c99e9d063d7796bad0734ad","Len":3}', 1704679144);
INSERT INTO public.action VALUES (1956, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"17223a69f9d2c7982c99e9d063d7796bad0734ad","Message":"Merge pull request ''thinh'' (#56) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/56\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T08:58:56+07:00"},{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"},{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"}],"HeadCommit":{"Sha1":"17223a69f9d2c7982c99e9d063d7796bad0734ad","Message":"Merge pull request ''thinh'' (#56) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/56\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T08:58:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b9c768a9904229490cf45090e6edc9f229f94497...17223a69f9d2c7982c99e9d063d7796bad0734ad","Len":3}', 1704679144);
INSERT INTO public.action VALUES (1957, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"17223a69f9d2c7982c99e9d063d7796bad0734ad","Message":"Merge pull request ''thinh'' (#56) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/56\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T08:58:56+07:00"},{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"},{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"}],"HeadCommit":{"Sha1":"17223a69f9d2c7982c99e9d063d7796bad0734ad","Message":"Merge pull request ''thinh'' (#56) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/56\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T08:58:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b9c768a9904229490cf45090e6edc9f229f94497...17223a69f9d2c7982c99e9d063d7796bad0734ad","Len":3}', 1704679144);
INSERT INTO public.action VALUES (1958, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"17223a69f9d2c7982c99e9d063d7796bad0734ad","Message":"Merge pull request ''thinh'' (#56) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/56\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T08:58:56+07:00"},{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"},{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"}],"HeadCommit":{"Sha1":"17223a69f9d2c7982c99e9d063d7796bad0734ad","Message":"Merge pull request ''thinh'' (#56) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/56\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T08:58:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b9c768a9904229490cf45090e6edc9f229f94497...17223a69f9d2c7982c99e9d063d7796bad0734ad","Len":3}', 1704679144);
INSERT INTO public.action VALUES (1985, 9, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '', 1704681340);
INSERT INTO public.action VALUES (1986, 15, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"}],"HeadCommit":{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...9df9ce65acd485f0315cfec4900eb5e5624123ca","Len":1}', 1704681340);
INSERT INTO public.action VALUES (2058, 5, 11, 11, 21, 0, false, '', false, '60|fix giao dien', 1704698166);
INSERT INTO public.action VALUES (2090, 1, 7, 11, 21, 0, false, '', false, '61|add detail gv nhieu co so', 1704705502);
INSERT INTO public.action VALUES (2091, 5, 7, 11, 21, 0, false, '', false, '61|add detail gv nhieu co so', 1704705502);
INSERT INTO public.action VALUES (1959, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"17223a69f9d2c7982c99e9d063d7796bad0734ad","Message":"Merge pull request ''thinh'' (#56) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/56\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T08:58:56+07:00"},{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"},{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"}],"HeadCommit":{"Sha1":"17223a69f9d2c7982c99e9d063d7796bad0734ad","Message":"Merge pull request ''thinh'' (#56) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/56\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T08:58:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b9c768a9904229490cf45090e6edc9f229f94497...17223a69f9d2c7982c99e9d063d7796bad0734ad","Len":3}', 1704679144);
INSERT INTO public.action VALUES (1960, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"}],"HeadCommit":{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1648b96afc95a1c2a74360ae3223ec9016b6019e...128401d049b3f492a8950948ee794aca9bc472e4","Len":1}', 1704679795);
INSERT INTO public.action VALUES (1961, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"}],"HeadCommit":{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1648b96afc95a1c2a74360ae3223ec9016b6019e...128401d049b3f492a8950948ee794aca9bc472e4","Len":1}', 1704679795);
INSERT INTO public.action VALUES (1962, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"}],"HeadCommit":{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1648b96afc95a1c2a74360ae3223ec9016b6019e...128401d049b3f492a8950948ee794aca9bc472e4","Len":1}', 1704679795);
INSERT INTO public.action VALUES (1963, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"}],"HeadCommit":{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1648b96afc95a1c2a74360ae3223ec9016b6019e...128401d049b3f492a8950948ee794aca9bc472e4","Len":1}', 1704679795);
INSERT INTO public.action VALUES (1964, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"}],"HeadCommit":{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1648b96afc95a1c2a74360ae3223ec9016b6019e...128401d049b3f492a8950948ee794aca9bc472e4","Len":1}', 1704679795);
INSERT INTO public.action VALUES (1965, 11, 7, 11, 21, 0, false, '', false, '57|update search menu bao cao', 1704679830);
INSERT INTO public.action VALUES (1966, 14, 7, 11, 21, 0, false, '', false, '57|update search menu bao cao', 1704679830);
INSERT INTO public.action VALUES (1967, 16, 7, 11, 21, 0, false, '', false, '57|update search menu bao cao', 1704679830);
INSERT INTO public.action VALUES (1968, 1, 7, 11, 21, 0, false, '', false, '57|update search menu bao cao', 1704679830);
INSERT INTO public.action VALUES (1969, 5, 7, 11, 21, 0, false, '', false, '57|update search menu bao cao', 1704679830);
INSERT INTO public.action VALUES (3030, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"}],"HeadCommit":{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8d033bdc680e69f37d6b0c7530e23ace16ad7ab6...8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Len":1}', 1705047285);
INSERT INTO public.action VALUES (3126, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/129/merge', false, '', 1705105570);
INSERT INTO public.action VALUES (1977, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a5dfd620c51a9baabd25312a8ee7268e03395cec","Message":"Merge pull request ''update search menu bao cao'' (#57) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/57\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:10:39+07:00"},{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"}],"HeadCommit":{"Sha1":"a5dfd620c51a9baabd25312a8ee7268e03395cec","Message":"Merge pull request ''update search menu bao cao'' (#57) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/57\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:10:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/17223a69f9d2c7982c99e9d063d7796bad0734ad...a5dfd620c51a9baabd25312a8ee7268e03395cec","Len":2}', 1704679846);
INSERT INTO public.action VALUES (1978, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a5dfd620c51a9baabd25312a8ee7268e03395cec","Message":"Merge pull request ''update search menu bao cao'' (#57) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/57\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:10:39+07:00"},{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"}],"HeadCommit":{"Sha1":"a5dfd620c51a9baabd25312a8ee7268e03395cec","Message":"Merge pull request ''update search menu bao cao'' (#57) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/57\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:10:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/17223a69f9d2c7982c99e9d063d7796bad0734ad...a5dfd620c51a9baabd25312a8ee7268e03395cec","Len":2}', 1704679846);
INSERT INTO public.action VALUES (1979, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a5dfd620c51a9baabd25312a8ee7268e03395cec","Message":"Merge pull request ''update search menu bao cao'' (#57) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/57\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:10:39+07:00"},{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"}],"HeadCommit":{"Sha1":"a5dfd620c51a9baabd25312a8ee7268e03395cec","Message":"Merge pull request ''update search menu bao cao'' (#57) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/57\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:10:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/17223a69f9d2c7982c99e9d063d7796bad0734ad...a5dfd620c51a9baabd25312a8ee7268e03395cec","Len":2}', 1704679846);
INSERT INTO public.action VALUES (2961, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},{"Sha1":"452941640be0fe4ba9d7a470d65a2dd2298f1ec7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:16+07:00"},{"Sha1":"b335b4c4867af438f52809be0436486e090bc4c5","Message":"update baocao TS dia phuong\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:10+07:00"},{"Sha1":"c1242c0cc36db357f358465b19daf6661c5a5604","Message":"check xóa ngành nghề trong kế hoạch đã gửi\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:25:16+07:00"},{"Sha1":"d60353fc6e819e577c1d0a1e119257bc185fb22b","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:17:29+07:00"}],"HeadCommit":{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2b39a2404c8800424e13d56f5702c07c9261c67b...869268d636fa17b9ae86c4f0ce751839607f6610","Len":7}', 1705037172);
INSERT INTO public.action VALUES (3007, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Message":"Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:46:16+07:00"},{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"}],"HeadCommit":{"Sha1":"1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Message":"Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:46:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6189e5347420d4bbcee5c4f550ed3cd17a77ba41...1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Len":2}', 1705045583);
INSERT INTO public.action VALUES (3127, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/129/merge', false, '', 1705105570);
INSERT INTO public.action VALUES (3128, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/130/head', false, '', 1705105570);
INSERT INTO public.action VALUES (3129, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/130/head', false, '', 1705105570);
INSERT INTO public.action VALUES (1987, 12, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"}],"HeadCommit":{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...9df9ce65acd485f0315cfec4900eb5e5624123ca","Len":1}', 1704681340);
INSERT INTO public.action VALUES (1988, 2, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"}],"HeadCommit":{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...9df9ce65acd485f0315cfec4900eb5e5624123ca","Len":1}', 1704681340);
INSERT INTO public.action VALUES (1989, 1, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"}],"HeadCommit":{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...9df9ce65acd485f0315cfec4900eb5e5624123ca","Len":1}', 1704681340);
INSERT INTO public.action VALUES (1990, 5, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"}],"HeadCommit":{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...9df9ce65acd485f0315cfec4900eb5e5624123ca","Len":1}', 1704681340);
INSERT INTO public.action VALUES (1991, 9, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"}],"HeadCommit":{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...9df9ce65acd485f0315cfec4900eb5e5624123ca","Len":1}', 1704681340);
INSERT INTO public.action VALUES (1992, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"}],"HeadCommit":{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/128401d049b3f492a8950948ee794aca9bc472e4...4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Len":1}', 1704681491);
INSERT INTO public.action VALUES (1993, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"}],"HeadCommit":{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/128401d049b3f492a8950948ee794aca9bc472e4...4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Len":1}', 1704681491);
INSERT INTO public.action VALUES (1994, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"}],"HeadCommit":{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/128401d049b3f492a8950948ee794aca9bc472e4...4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Len":1}', 1704681491);
INSERT INTO public.action VALUES (1995, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"}],"HeadCommit":{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/128401d049b3f492a8950948ee794aca9bc472e4...4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Len":1}', 1704681491);
INSERT INTO public.action VALUES (1996, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"}],"HeadCommit":{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/128401d049b3f492a8950948ee794aca9bc472e4...4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Len":1}', 1704681491);
INSERT INTO public.action VALUES (2002, 11, 11, 11, 21, 0, false, '', false, '58|fix text tim kiem', 1704681600);
INSERT INTO public.action VALUES (2003, 14, 11, 11, 21, 0, false, '', false, '58|fix text tim kiem', 1704681600);
INSERT INTO public.action VALUES (2004, 16, 11, 11, 21, 0, false, '', false, '58|fix text tim kiem', 1704681600);
INSERT INTO public.action VALUES (2005, 1, 11, 11, 21, 0, false, '', false, '58|fix text tim kiem', 1704681600);
INSERT INTO public.action VALUES (2006, 5, 11, 11, 21, 0, false, '', false, '58|fix text tim kiem', 1704681600);
INSERT INTO public.action VALUES (2007, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"480eb6217718c62029da79a52f43e3c0b31e5526","Message":"Merge pull request ''fix text tim kiem'' (#58) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/58\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:39:54+07:00"},{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"}],"HeadCommit":{"Sha1":"480eb6217718c62029da79a52f43e3c0b31e5526","Message":"Merge pull request ''fix text tim kiem'' (#58) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/58\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:39:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a5dfd620c51a9baabd25312a8ee7268e03395cec...480eb6217718c62029da79a52f43e3c0b31e5526","Len":2}', 1704681600);
INSERT INTO public.action VALUES (2008, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"480eb6217718c62029da79a52f43e3c0b31e5526","Message":"Merge pull request ''fix text tim kiem'' (#58) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/58\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:39:54+07:00"},{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"}],"HeadCommit":{"Sha1":"480eb6217718c62029da79a52f43e3c0b31e5526","Message":"Merge pull request ''fix text tim kiem'' (#58) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/58\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:39:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a5dfd620c51a9baabd25312a8ee7268e03395cec...480eb6217718c62029da79a52f43e3c0b31e5526","Len":2}', 1704681600);
INSERT INTO public.action VALUES (2009, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"480eb6217718c62029da79a52f43e3c0b31e5526","Message":"Merge pull request ''fix text tim kiem'' (#58) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/58\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:39:54+07:00"},{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"}],"HeadCommit":{"Sha1":"480eb6217718c62029da79a52f43e3c0b31e5526","Message":"Merge pull request ''fix text tim kiem'' (#58) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/58\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:39:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a5dfd620c51a9baabd25312a8ee7268e03395cec...480eb6217718c62029da79a52f43e3c0b31e5526","Len":2}', 1704681600);
INSERT INTO public.action VALUES (2010, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"480eb6217718c62029da79a52f43e3c0b31e5526","Message":"Merge pull request ''fix text tim kiem'' (#58) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/58\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:39:54+07:00"},{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"}],"HeadCommit":{"Sha1":"480eb6217718c62029da79a52f43e3c0b31e5526","Message":"Merge pull request ''fix text tim kiem'' (#58) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/58\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:39:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a5dfd620c51a9baabd25312a8ee7268e03395cec...480eb6217718c62029da79a52f43e3c0b31e5526","Len":2}', 1704681600);
INSERT INTO public.action VALUES (2020, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"}],"HeadCommit":{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4e4fdd8f67557bd5fa3129c9bad708d15b67971a...7f7c96671126ae1b236dd7b6f0ece8be147517c9","Len":1}', 1704685335);
INSERT INTO public.action VALUES (2092, 11, 11, 11, 21, 0, false, '', false, '61|add detail gv nhieu co so', 1704705564);
INSERT INTO public.action VALUES (2011, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"480eb6217718c62029da79a52f43e3c0b31e5526","Message":"Merge pull request ''fix text tim kiem'' (#58) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/58\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:39:54+07:00"},{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"}],"HeadCommit":{"Sha1":"480eb6217718c62029da79a52f43e3c0b31e5526","Message":"Merge pull request ''fix text tim kiem'' (#58) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/58\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:39:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a5dfd620c51a9baabd25312a8ee7268e03395cec...480eb6217718c62029da79a52f43e3c0b31e5526","Len":2}', 1704681600);
INSERT INTO public.action VALUES (2012, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"}],"HeadCommit":{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3dd99d415a74c6cbd11b6db0ed8ce7887bc79191...aaf721c367e86f19a4b53427293e75118b2eb03d","Len":1}', 1704684657);
INSERT INTO public.action VALUES (2013, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"}],"HeadCommit":{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3dd99d415a74c6cbd11b6db0ed8ce7887bc79191...aaf721c367e86f19a4b53427293e75118b2eb03d","Len":1}', 1704684657);
INSERT INTO public.action VALUES (2014, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"}],"HeadCommit":{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3dd99d415a74c6cbd11b6db0ed8ce7887bc79191...aaf721c367e86f19a4b53427293e75118b2eb03d","Len":1}', 1704684657);
INSERT INTO public.action VALUES (2015, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"}],"HeadCommit":{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3dd99d415a74c6cbd11b6db0ed8ce7887bc79191...aaf721c367e86f19a4b53427293e75118b2eb03d","Len":1}', 1704684657);
INSERT INTO public.action VALUES (2016, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"}],"HeadCommit":{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3dd99d415a74c6cbd11b6db0ed8ce7887bc79191...aaf721c367e86f19a4b53427293e75118b2eb03d","Len":1}', 1704684657);
INSERT INTO public.action VALUES (2017, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"}],"HeadCommit":{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3dd99d415a74c6cbd11b6db0ed8ce7887bc79191...aaf721c367e86f19a4b53427293e75118b2eb03d","Len":1}', 1704684657);
INSERT INTO public.action VALUES (2018, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"}],"HeadCommit":{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4e4fdd8f67557bd5fa3129c9bad708d15b67971a...7f7c96671126ae1b236dd7b6f0ece8be147517c9","Len":1}', 1704685335);
INSERT INTO public.action VALUES (2019, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"}],"HeadCommit":{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4e4fdd8f67557bd5fa3129c9bad708d15b67971a...7f7c96671126ae1b236dd7b6f0ece8be147517c9","Len":1}', 1704685335);
INSERT INTO public.action VALUES (2093, 14, 11, 11, 21, 0, false, '', false, '61|add detail gv nhieu co so', 1704705564);
INSERT INTO public.action VALUES (2094, 16, 11, 11, 21, 0, false, '', false, '61|add detail gv nhieu co so', 1704705565);
INSERT INTO public.action VALUES (2021, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"}],"HeadCommit":{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4e4fdd8f67557bd5fa3129c9bad708d15b67971a...7f7c96671126ae1b236dd7b6f0ece8be147517c9","Len":1}', 1704685335);
INSERT INTO public.action VALUES (2022, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"}],"HeadCommit":{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4e4fdd8f67557bd5fa3129c9bad708d15b67971a...7f7c96671126ae1b236dd7b6f0ece8be147517c9","Len":1}', 1704685335);
INSERT INTO public.action VALUES (2023, 11, 7, 11, 21, 0, false, '', false, '59|upcode rang buoc', 1704685354);
INSERT INTO public.action VALUES (2024, 14, 7, 11, 21, 0, false, '', false, '59|upcode rang buoc', 1704685354);
INSERT INTO public.action VALUES (2025, 16, 7, 11, 21, 0, false, '', false, '59|upcode rang buoc', 1704685354);
INSERT INTO public.action VALUES (2026, 1, 7, 11, 21, 0, false, '', false, '59|upcode rang buoc', 1704685354);
INSERT INTO public.action VALUES (2027, 5, 7, 11, 21, 0, false, '', false, '59|upcode rang buoc', 1704685354);
INSERT INTO public.action VALUES (2028, 11, 11, 11, 21, 0, false, '', false, '59|upcode rang buoc', 1704685372);
INSERT INTO public.action VALUES (2029, 14, 11, 11, 21, 0, false, '', false, '59|upcode rang buoc', 1704685372);
INSERT INTO public.action VALUES (2030, 16, 11, 11, 21, 0, false, '', false, '59|upcode rang buoc', 1704685372);
INSERT INTO public.action VALUES (2031, 1, 11, 11, 21, 0, false, '', false, '59|upcode rang buoc', 1704685372);
INSERT INTO public.action VALUES (2032, 5, 11, 11, 21, 0, false, '', false, '59|upcode rang buoc', 1704685372);
INSERT INTO public.action VALUES (2033, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Message":"Merge pull request ''upcode rang buoc'' (#59) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/59\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T10:42:47+07:00"},{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"}],"HeadCommit":{"Sha1":"a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Message":"Merge pull request ''upcode rang buoc'' (#59) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/59\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T10:42:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/480eb6217718c62029da79a52f43e3c0b31e5526...a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Len":2}', 1704685374);
INSERT INTO public.action VALUES (2034, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Message":"Merge pull request ''upcode rang buoc'' (#59) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/59\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T10:42:47+07:00"},{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"}],"HeadCommit":{"Sha1":"a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Message":"Merge pull request ''upcode rang buoc'' (#59) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/59\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T10:42:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/480eb6217718c62029da79a52f43e3c0b31e5526...a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Len":2}', 1704685374);
INSERT INTO public.action VALUES (2035, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Message":"Merge pull request ''upcode rang buoc'' (#59) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/59\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T10:42:47+07:00"},{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"}],"HeadCommit":{"Sha1":"a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Message":"Merge pull request ''upcode rang buoc'' (#59) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/59\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T10:42:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/480eb6217718c62029da79a52f43e3c0b31e5526...a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Len":2}', 1704685374);
INSERT INTO public.action VALUES (2044, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"}],"HeadCommit":{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7f7c96671126ae1b236dd7b6f0ece8be147517c9...d47e007a7e3bf39970904a203d5c3b50fd7c355c","Len":1}', 1704698117);
INSERT INTO public.action VALUES (2036, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Message":"Merge pull request ''upcode rang buoc'' (#59) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/59\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T10:42:47+07:00"},{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"}],"HeadCommit":{"Sha1":"a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Message":"Merge pull request ''upcode rang buoc'' (#59) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/59\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T10:42:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/480eb6217718c62029da79a52f43e3c0b31e5526...a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Len":2}', 1704685374);
INSERT INTO public.action VALUES (2037, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Message":"Merge pull request ''upcode rang buoc'' (#59) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/59\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T10:42:47+07:00"},{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"}],"HeadCommit":{"Sha1":"a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Message":"Merge pull request ''upcode rang buoc'' (#59) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/59\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T10:42:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/480eb6217718c62029da79a52f43e3c0b31e5526...a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Len":2}', 1704685374);
INSERT INTO public.action VALUES (2038, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"}],"HeadCommit":{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"},"CompareURL":"khieu-nai/backend/compare/da2aec3d3d8073a39a1b44aa48641e4b6141397f...1045a6ad6a995e5140ba86b64b81609f4bb89248","Len":1}', 1704688677);
INSERT INTO public.action VALUES (2039, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"}],"HeadCommit":{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"},"CompareURL":"khieu-nai/backend/compare/da2aec3d3d8073a39a1b44aa48641e4b6141397f...1045a6ad6a995e5140ba86b64b81609f4bb89248","Len":1}', 1704688677);
INSERT INTO public.action VALUES (2040, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"}],"HeadCommit":{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"},"CompareURL":"khieu-nai/backend/compare/da2aec3d3d8073a39a1b44aa48641e4b6141397f...1045a6ad6a995e5140ba86b64b81609f4bb89248","Len":1}', 1704688677);
INSERT INTO public.action VALUES (2041, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"}],"HeadCommit":{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"},"CompareURL":"khieu-nai/backend/compare/da2aec3d3d8073a39a1b44aa48641e4b6141397f...1045a6ad6a995e5140ba86b64b81609f4bb89248","Len":1}', 1704688677);
INSERT INTO public.action VALUES (2042, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"}],"HeadCommit":{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"},"CompareURL":"khieu-nai/backend/compare/da2aec3d3d8073a39a1b44aa48641e4b6141397f...1045a6ad6a995e5140ba86b64b81609f4bb89248","Len":1}', 1704688677);
INSERT INTO public.action VALUES (2043, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"}],"HeadCommit":{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"},"CompareURL":"khieu-nai/backend/compare/da2aec3d3d8073a39a1b44aa48641e4b6141397f...1045a6ad6a995e5140ba86b64b81609f4bb89248","Len":1}', 1704688677);
INSERT INTO public.action VALUES (2054, 11, 11, 11, 21, 0, false, '', false, '60|fix giao dien', 1704698166);
INSERT INTO public.action VALUES (2055, 14, 11, 11, 21, 0, false, '', false, '60|fix giao dien', 1704698166);
INSERT INTO public.action VALUES (2056, 16, 11, 11, 21, 0, false, '', false, '60|fix giao dien', 1704698166);
INSERT INTO public.action VALUES (2057, 1, 11, 11, 21, 0, false, '', false, '60|fix giao dien', 1704698166);
INSERT INTO public.action VALUES (2045, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"}],"HeadCommit":{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7f7c96671126ae1b236dd7b6f0ece8be147517c9...d47e007a7e3bf39970904a203d5c3b50fd7c355c","Len":1}', 1704698117);
INSERT INTO public.action VALUES (2046, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"}],"HeadCommit":{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7f7c96671126ae1b236dd7b6f0ece8be147517c9...d47e007a7e3bf39970904a203d5c3b50fd7c355c","Len":1}', 1704698117);
INSERT INTO public.action VALUES (2047, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"}],"HeadCommit":{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7f7c96671126ae1b236dd7b6f0ece8be147517c9...d47e007a7e3bf39970904a203d5c3b50fd7c355c","Len":1}', 1704698117);
INSERT INTO public.action VALUES (2048, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"}],"HeadCommit":{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7f7c96671126ae1b236dd7b6f0ece8be147517c9...d47e007a7e3bf39970904a203d5c3b50fd7c355c","Len":1}', 1704698117);
INSERT INTO public.action VALUES (2049, 11, 7, 11, 21, 0, false, '', false, '60|fix giao dien', 1704698140);
INSERT INTO public.action VALUES (2050, 14, 7, 11, 21, 0, false, '', false, '60|fix giao dien', 1704698140);
INSERT INTO public.action VALUES (2051, 16, 7, 11, 21, 0, false, '', false, '60|fix giao dien', 1704698140);
INSERT INTO public.action VALUES (2052, 1, 7, 11, 21, 0, false, '', false, '60|fix giao dien', 1704698140);
INSERT INTO public.action VALUES (2053, 5, 7, 11, 21, 0, false, '', false, '60|fix giao dien', 1704698140);
INSERT INTO public.action VALUES (2962, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},{"Sha1":"452941640be0fe4ba9d7a470d65a2dd2298f1ec7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:16+07:00"},{"Sha1":"b335b4c4867af438f52809be0436486e090bc4c5","Message":"update baocao TS dia phuong\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:10+07:00"},{"Sha1":"c1242c0cc36db357f358465b19daf6661c5a5604","Message":"check xóa ngành nghề trong kế hoạch đã gửi\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:25:16+07:00"},{"Sha1":"d60353fc6e819e577c1d0a1e119257bc185fb22b","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:17:29+07:00"}],"HeadCommit":{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2b39a2404c8800424e13d56f5702c07c9261c67b...869268d636fa17b9ae86c4f0ce751839607f6610","Len":7}', 1705037172);
INSERT INTO public.action VALUES (3008, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Message":"Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:46:16+07:00"},{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"}],"HeadCommit":{"Sha1":"1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Message":"Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:46:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6189e5347420d4bbcee5c4f550ed3cd17a77ba41...1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Len":2}', 1705045583);
INSERT INTO public.action VALUES (3009, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/133/head', false, '', 1705046771);
INSERT INTO public.action VALUES (3010, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/133/head', false, '', 1705046771);
INSERT INTO public.action VALUES (3011, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/133/head', false, '', 1705046771);
INSERT INTO public.action VALUES (3012, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/133/merge', false, '', 1705046771);
INSERT INTO public.action VALUES (2059, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Message":"Merge pull request ''fix giao dien'' (#60) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/60\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T14:16:01+07:00"},{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"}],"HeadCommit":{"Sha1":"c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Message":"Merge pull request ''fix giao dien'' (#60) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/60\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T14:16:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2ef85dd7af229c8630f60b81daea4f3a2a04c43...c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Len":2}', 1704698168);
INSERT INTO public.action VALUES (2060, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Message":"Merge pull request ''fix giao dien'' (#60) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/60\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T14:16:01+07:00"},{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"}],"HeadCommit":{"Sha1":"c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Message":"Merge pull request ''fix giao dien'' (#60) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/60\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T14:16:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2ef85dd7af229c8630f60b81daea4f3a2a04c43...c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Len":2}', 1704698168);
INSERT INTO public.action VALUES (2061, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Message":"Merge pull request ''fix giao dien'' (#60) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/60\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T14:16:01+07:00"},{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"}],"HeadCommit":{"Sha1":"c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Message":"Merge pull request ''fix giao dien'' (#60) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/60\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T14:16:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2ef85dd7af229c8630f60b81daea4f3a2a04c43...c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Len":2}', 1704698168);
INSERT INTO public.action VALUES (2062, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Message":"Merge pull request ''fix giao dien'' (#60) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/60\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T14:16:01+07:00"},{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"}],"HeadCommit":{"Sha1":"c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Message":"Merge pull request ''fix giao dien'' (#60) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/60\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T14:16:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2ef85dd7af229c8630f60b81daea4f3a2a04c43...c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Len":2}', 1704698168);
INSERT INTO public.action VALUES (2063, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Message":"Merge pull request ''fix giao dien'' (#60) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/60\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T14:16:01+07:00"},{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"}],"HeadCommit":{"Sha1":"c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Message":"Merge pull request ''fix giao dien'' (#60) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/60\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T14:16:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2ef85dd7af229c8630f60b81daea4f3a2a04c43...c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Len":2}', 1704698168);
INSERT INTO public.action VALUES (2064, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...fe703c97de68da85478ffde612c30fc6b8e34f1a","Len":2}', 1704701515);
INSERT INTO public.action VALUES (2065, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...fe703c97de68da85478ffde612c30fc6b8e34f1a","Len":2}', 1704701515);
INSERT INTO public.action VALUES (2066, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...fe703c97de68da85478ffde612c30fc6b8e34f1a","Len":2}', 1704701515);
INSERT INTO public.action VALUES (2067, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...fe703c97de68da85478ffde612c30fc6b8e34f1a","Len":2}', 1704701515);
INSERT INTO public.action VALUES (2068, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...fe703c97de68da85478ffde612c30fc6b8e34f1a","Len":2}', 1704701515);
INSERT INTO public.action VALUES (2069, 9, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...fe703c97de68da85478ffde612c30fc6b8e34f1a","Len":2}', 1704701515);
INSERT INTO public.action VALUES (2070, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"}],"HeadCommit":{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},"CompareURL":"khieu-nai/admin/compare/fe703c97de68da85478ffde612c30fc6b8e34f1a...2549a06a592bbe9d424ee2074ae32b7dca2878df","Len":1}', 1704702556);
INSERT INTO public.action VALUES (2071, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"}],"HeadCommit":{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},"CompareURL":"khieu-nai/admin/compare/fe703c97de68da85478ffde612c30fc6b8e34f1a...2549a06a592bbe9d424ee2074ae32b7dca2878df","Len":1}', 1704702556);
INSERT INTO public.action VALUES (2072, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"}],"HeadCommit":{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},"CompareURL":"khieu-nai/admin/compare/fe703c97de68da85478ffde612c30fc6b8e34f1a...2549a06a592bbe9d424ee2074ae32b7dca2878df","Len":1}', 1704702556);
INSERT INTO public.action VALUES (2095, 1, 11, 11, 21, 0, false, '', false, '61|add detail gv nhieu co so', 1704705565);
INSERT INTO public.action VALUES (2096, 5, 11, 11, 21, 0, false, '', false, '61|add detail gv nhieu co so', 1704705565);
INSERT INTO public.action VALUES (2073, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"}],"HeadCommit":{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},"CompareURL":"khieu-nai/admin/compare/fe703c97de68da85478ffde612c30fc6b8e34f1a...2549a06a592bbe9d424ee2074ae32b7dca2878df","Len":1}', 1704702556);
INSERT INTO public.action VALUES (2074, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"}],"HeadCommit":{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},"CompareURL":"khieu-nai/admin/compare/fe703c97de68da85478ffde612c30fc6b8e34f1a...2549a06a592bbe9d424ee2074ae32b7dca2878df","Len":1}', 1704702556);
INSERT INTO public.action VALUES (2075, 9, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"}],"HeadCommit":{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},"CompareURL":"khieu-nai/admin/compare/fe703c97de68da85478ffde612c30fc6b8e34f1a...2549a06a592bbe9d424ee2074ae32b7dca2878df","Len":1}', 1704702556);
INSERT INTO public.action VALUES (2076, 15, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"},{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},"CompareURL":"khieu-nai/admin/compare/9df9ce65acd485f0315cfec4900eb5e5624123ca...69d562176e46ab843c90e41309ffeab53a0b93ae","Len":5}', 1704703935);
INSERT INTO public.action VALUES (2077, 12, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"},{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},"CompareURL":"khieu-nai/admin/compare/9df9ce65acd485f0315cfec4900eb5e5624123ca...69d562176e46ab843c90e41309ffeab53a0b93ae","Len":5}', 1704703935);
INSERT INTO public.action VALUES (2082, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"}],"HeadCommit":{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d47e007a7e3bf39970904a203d5c3b50fd7c355c...dc1b5b62b753d93980b10f171b24d473d172b2c8","Len":1}', 1704705476);
INSERT INTO public.action VALUES (2083, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"}],"HeadCommit":{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d47e007a7e3bf39970904a203d5c3b50fd7c355c...dc1b5b62b753d93980b10f171b24d473d172b2c8","Len":1}', 1704705476);
INSERT INTO public.action VALUES (2078, 2, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"},{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},"CompareURL":"khieu-nai/admin/compare/9df9ce65acd485f0315cfec4900eb5e5624123ca...69d562176e46ab843c90e41309ffeab53a0b93ae","Len":5}', 1704703935);
INSERT INTO public.action VALUES (2079, 1, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"},{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},"CompareURL":"khieu-nai/admin/compare/9df9ce65acd485f0315cfec4900eb5e5624123ca...69d562176e46ab843c90e41309ffeab53a0b93ae","Len":5}', 1704703935);
INSERT INTO public.action VALUES (2080, 5, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"},{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},"CompareURL":"khieu-nai/admin/compare/9df9ce65acd485f0315cfec4900eb5e5624123ca...69d562176e46ab843c90e41309ffeab53a0b93ae","Len":5}', 1704703935);
INSERT INTO public.action VALUES (2081, 9, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"},{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},"CompareURL":"khieu-nai/admin/compare/9df9ce65acd485f0315cfec4900eb5e5624123ca...69d562176e46ab843c90e41309ffeab53a0b93ae","Len":5}', 1704703935);
INSERT INTO public.action VALUES (2087, 11, 7, 11, 21, 0, false, '', false, '61|add detail gv nhieu co so', 1704705502);
INSERT INTO public.action VALUES (2088, 14, 7, 11, 21, 0, false, '', false, '61|add detail gv nhieu co so', 1704705502);
INSERT INTO public.action VALUES (2089, 16, 7, 11, 21, 0, false, '', false, '61|add detail gv nhieu co so', 1704705502);
INSERT INTO public.action VALUES (2084, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"}],"HeadCommit":{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d47e007a7e3bf39970904a203d5c3b50fd7c355c...dc1b5b62b753d93980b10f171b24d473d172b2c8","Len":1}', 1704705476);
INSERT INTO public.action VALUES (2085, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"}],"HeadCommit":{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d47e007a7e3bf39970904a203d5c3b50fd7c355c...dc1b5b62b753d93980b10f171b24d473d172b2c8","Len":1}', 1704705476);
INSERT INTO public.action VALUES (2086, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"}],"HeadCommit":{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d47e007a7e3bf39970904a203d5c3b50fd7c355c...dc1b5b62b753d93980b10f171b24d473d172b2c8","Len":1}', 1704705476);
INSERT INTO public.action VALUES (2097, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"426a1faa2094a598744486c24ae40977eceee332","Message":"Merge pull request ''add detail gv nhieu co so'' (#61) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/61\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:19:19+07:00"},{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"}],"HeadCommit":{"Sha1":"426a1faa2094a598744486c24ae40977eceee332","Message":"Merge pull request ''add detail gv nhieu co so'' (#61) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/61\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:19:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf...426a1faa2094a598744486c24ae40977eceee332","Len":2}', 1704705566);
INSERT INTO public.action VALUES (2098, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"426a1faa2094a598744486c24ae40977eceee332","Message":"Merge pull request ''add detail gv nhieu co so'' (#61) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/61\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:19:19+07:00"},{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"}],"HeadCommit":{"Sha1":"426a1faa2094a598744486c24ae40977eceee332","Message":"Merge pull request ''add detail gv nhieu co so'' (#61) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/61\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:19:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf...426a1faa2094a598744486c24ae40977eceee332","Len":2}', 1704705566);
INSERT INTO public.action VALUES (2099, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"426a1faa2094a598744486c24ae40977eceee332","Message":"Merge pull request ''add detail gv nhieu co so'' (#61) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/61\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:19:19+07:00"},{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"}],"HeadCommit":{"Sha1":"426a1faa2094a598744486c24ae40977eceee332","Message":"Merge pull request ''add detail gv nhieu co so'' (#61) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/61\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:19:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf...426a1faa2094a598744486c24ae40977eceee332","Len":2}', 1704705566);
INSERT INTO public.action VALUES (2102, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"}],"HeadCommit":{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dc1b5b62b753d93980b10f171b24d473d172b2c8...f4e3881a081a31795d2162f9cbc281b4aba8ef27","Len":1}', 1704706347);
INSERT INTO public.action VALUES (2190, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/163/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2100, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"426a1faa2094a598744486c24ae40977eceee332","Message":"Merge pull request ''add detail gv nhieu co so'' (#61) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/61\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:19:19+07:00"},{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"}],"HeadCommit":{"Sha1":"426a1faa2094a598744486c24ae40977eceee332","Message":"Merge pull request ''add detail gv nhieu co so'' (#61) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/61\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:19:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf...426a1faa2094a598744486c24ae40977eceee332","Len":2}', 1704705566);
INSERT INTO public.action VALUES (2101, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"426a1faa2094a598744486c24ae40977eceee332","Message":"Merge pull request ''add detail gv nhieu co so'' (#61) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/61\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:19:19+07:00"},{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"}],"HeadCommit":{"Sha1":"426a1faa2094a598744486c24ae40977eceee332","Message":"Merge pull request ''add detail gv nhieu co so'' (#61) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/61\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:19:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf...426a1faa2094a598744486c24ae40977eceee332","Len":2}', 1704705566);
INSERT INTO public.action VALUES (2149, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5674ad927bb01fce2f1f31cb2bbee967c0147568","Message":"Merge pull request ''update filter year hs/sv'' (#63) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/63\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:57:57+07:00"},{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"}],"HeadCommit":{"Sha1":"5674ad927bb01fce2f1f31cb2bbee967c0147568","Message":"Merge pull request ''update filter year hs/sv'' (#63) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/63\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:57:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/59b787e85b18879fb9d8f189914021acb7746405...5674ad927bb01fce2f1f31cb2bbee967c0147568","Len":2}', 1704707883);
INSERT INTO public.action VALUES (2150, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5674ad927bb01fce2f1f31cb2bbee967c0147568","Message":"Merge pull request ''update filter year hs/sv'' (#63) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/63\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:57:57+07:00"},{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"}],"HeadCommit":{"Sha1":"5674ad927bb01fce2f1f31cb2bbee967c0147568","Message":"Merge pull request ''update filter year hs/sv'' (#63) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/63\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:57:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/59b787e85b18879fb9d8f189914021acb7746405...5674ad927bb01fce2f1f31cb2bbee967c0147568","Len":2}', 1704707883);
INSERT INTO public.action VALUES (2151, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5674ad927bb01fce2f1f31cb2bbee967c0147568","Message":"Merge pull request ''update filter year hs/sv'' (#63) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/63\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:57:57+07:00"},{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"}],"HeadCommit":{"Sha1":"5674ad927bb01fce2f1f31cb2bbee967c0147568","Message":"Merge pull request ''update filter year hs/sv'' (#63) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/63\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:57:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/59b787e85b18879fb9d8f189914021acb7746405...5674ad927bb01fce2f1f31cb2bbee967c0147568","Len":2}', 1704707883);
INSERT INTO public.action VALUES (2160, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/209/head', false, '', 1704723656);
INSERT INTO public.action VALUES (2161, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/209/head', false, '', 1704723656);
INSERT INTO public.action VALUES (2162, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/209/head', false, '', 1704723656);
INSERT INTO public.action VALUES (2163, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/209/merge', false, '', 1704723656);
INSERT INTO public.action VALUES (2164, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/209/merge', false, '', 1704723656);
INSERT INTO public.action VALUES (2165, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/209/merge', false, '', 1704723656);
INSERT INTO public.action VALUES (2166, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/210/head', false, '', 1704723656);
INSERT INTO public.action VALUES (2103, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"}],"HeadCommit":{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dc1b5b62b753d93980b10f171b24d473d172b2c8...f4e3881a081a31795d2162f9cbc281b4aba8ef27","Len":1}', 1704706347);
INSERT INTO public.action VALUES (2104, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"}],"HeadCommit":{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dc1b5b62b753d93980b10f171b24d473d172b2c8...f4e3881a081a31795d2162f9cbc281b4aba8ef27","Len":1}', 1704706347);
INSERT INTO public.action VALUES (2105, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"}],"HeadCommit":{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dc1b5b62b753d93980b10f171b24d473d172b2c8...f4e3881a081a31795d2162f9cbc281b4aba8ef27","Len":1}', 1704706347);
INSERT INTO public.action VALUES (2106, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"}],"HeadCommit":{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dc1b5b62b753d93980b10f171b24d473d172b2c8...f4e3881a081a31795d2162f9cbc281b4aba8ef27","Len":1}', 1704706347);
INSERT INTO public.action VALUES (2107, 11, 7, 11, 21, 0, false, '', false, '62|fix css', 1704706460);
INSERT INTO public.action VALUES (2108, 14, 7, 11, 21, 0, false, '', false, '62|fix css', 1704706460);
INSERT INTO public.action VALUES (2109, 16, 7, 11, 21, 0, false, '', false, '62|fix css', 1704706460);
INSERT INTO public.action VALUES (2110, 1, 7, 11, 21, 0, false, '', false, '62|fix css', 1704706460);
INSERT INTO public.action VALUES (2111, 5, 7, 11, 21, 0, false, '', false, '62|fix css', 1704706460);
INSERT INTO public.action VALUES (2112, 11, 11, 11, 21, 0, false, '', false, '62|fix css', 1704706491);
INSERT INTO public.action VALUES (2113, 14, 11, 11, 21, 0, false, '', false, '62|fix css', 1704706491);
INSERT INTO public.action VALUES (2114, 16, 11, 11, 21, 0, false, '', false, '62|fix css', 1704706491);
INSERT INTO public.action VALUES (2115, 1, 11, 11, 21, 0, false, '', false, '62|fix css', 1704706491);
INSERT INTO public.action VALUES (2116, 5, 11, 11, 21, 0, false, '', false, '62|fix css', 1704706491);
INSERT INTO public.action VALUES (2117, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"59b787e85b18879fb9d8f189914021acb7746405","Message":"Merge pull request ''fix css'' (#62) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/62\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:34:45+07:00"},{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"}],"HeadCommit":{"Sha1":"59b787e85b18879fb9d8f189914021acb7746405","Message":"Merge pull request ''fix css'' (#62) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/62\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:34:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/426a1faa2094a598744486c24ae40977eceee332...59b787e85b18879fb9d8f189914021acb7746405","Len":2}', 1704706492);
INSERT INTO public.action VALUES (2118, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"59b787e85b18879fb9d8f189914021acb7746405","Message":"Merge pull request ''fix css'' (#62) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/62\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:34:45+07:00"},{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"}],"HeadCommit":{"Sha1":"59b787e85b18879fb9d8f189914021acb7746405","Message":"Merge pull request ''fix css'' (#62) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/62\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:34:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/426a1faa2094a598744486c24ae40977eceee332...59b787e85b18879fb9d8f189914021acb7746405","Len":2}', 1704706492);
INSERT INTO public.action VALUES (2167, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/210/head', false, '', 1704723656);
INSERT INTO public.action VALUES (2168, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/210/head', false, '', 1704723656);
INSERT INTO public.action VALUES (2169, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/210/merge', false, '', 1704723656);
INSERT INTO public.action VALUES (2170, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/210/merge', false, '', 1704723656);
INSERT INTO public.action VALUES (2171, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/210/merge', false, '', 1704723656);
INSERT INTO public.action VALUES (2191, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/163/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2119, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"59b787e85b18879fb9d8f189914021acb7746405","Message":"Merge pull request ''fix css'' (#62) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/62\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:34:45+07:00"},{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"}],"HeadCommit":{"Sha1":"59b787e85b18879fb9d8f189914021acb7746405","Message":"Merge pull request ''fix css'' (#62) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/62\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:34:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/426a1faa2094a598744486c24ae40977eceee332...59b787e85b18879fb9d8f189914021acb7746405","Len":2}', 1704706492);
INSERT INTO public.action VALUES (2120, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"59b787e85b18879fb9d8f189914021acb7746405","Message":"Merge pull request ''fix css'' (#62) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/62\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:34:45+07:00"},{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"}],"HeadCommit":{"Sha1":"59b787e85b18879fb9d8f189914021acb7746405","Message":"Merge pull request ''fix css'' (#62) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/62\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:34:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/426a1faa2094a598744486c24ae40977eceee332...59b787e85b18879fb9d8f189914021acb7746405","Len":2}', 1704706492);
INSERT INTO public.action VALUES (2121, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"59b787e85b18879fb9d8f189914021acb7746405","Message":"Merge pull request ''fix css'' (#62) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/62\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:34:45+07:00"},{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"}],"HeadCommit":{"Sha1":"59b787e85b18879fb9d8f189914021acb7746405","Message":"Merge pull request ''fix css'' (#62) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/62\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:34:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/426a1faa2094a598744486c24ae40977eceee332...59b787e85b18879fb9d8f189914021acb7746405","Len":2}', 1704706492);
INSERT INTO public.action VALUES (2122, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"}],"HeadCommit":{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"},"CompareURL":"khieu-nai/backend/compare/1045a6ad6a995e5140ba86b64b81609f4bb89248...432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Len":1}', 1704707175);
INSERT INTO public.action VALUES (2123, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"}],"HeadCommit":{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"},"CompareURL":"khieu-nai/backend/compare/1045a6ad6a995e5140ba86b64b81609f4bb89248...432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Len":1}', 1704707175);
INSERT INTO public.action VALUES (2124, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"}],"HeadCommit":{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"},"CompareURL":"khieu-nai/backend/compare/1045a6ad6a995e5140ba86b64b81609f4bb89248...432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Len":1}', 1704707176);
INSERT INTO public.action VALUES (2125, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"}],"HeadCommit":{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"},"CompareURL":"khieu-nai/backend/compare/1045a6ad6a995e5140ba86b64b81609f4bb89248...432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Len":1}', 1704707176);
INSERT INTO public.action VALUES (2178, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/161/head', false, '', 1704753055);
INSERT INTO public.action VALUES (2179, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/161/head', false, '', 1704753055);
INSERT INTO public.action VALUES (2180, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/161/head', false, '', 1704753055);
INSERT INTO public.action VALUES (2181, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/161/merge', false, '', 1704753055);
INSERT INTO public.action VALUES (2182, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/161/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2126, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"}],"HeadCommit":{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"},"CompareURL":"khieu-nai/backend/compare/1045a6ad6a995e5140ba86b64b81609f4bb89248...432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Len":1}', 1704707176);
INSERT INTO public.action VALUES (2127, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"}],"HeadCommit":{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"},"CompareURL":"khieu-nai/backend/compare/1045a6ad6a995e5140ba86b64b81609f4bb89248...432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Len":1}', 1704707176);
INSERT INTO public.action VALUES (2128, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"}],"HeadCommit":{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"},"CompareURL":"khieu-nai/backend/compare/432166d5ca2c7e2c68897f7c4cd3d5c80e428db4...5f287cf162a6f7e4bac0eda6ca78603b02665568","Len":1}', 1704707611);
INSERT INTO public.action VALUES (2129, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"}],"HeadCommit":{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"},"CompareURL":"khieu-nai/backend/compare/432166d5ca2c7e2c68897f7c4cd3d5c80e428db4...5f287cf162a6f7e4bac0eda6ca78603b02665568","Len":1}', 1704707611);
INSERT INTO public.action VALUES (2130, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"}],"HeadCommit":{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"},"CompareURL":"khieu-nai/backend/compare/432166d5ca2c7e2c68897f7c4cd3d5c80e428db4...5f287cf162a6f7e4bac0eda6ca78603b02665568","Len":1}', 1704707611);
INSERT INTO public.action VALUES (2131, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"}],"HeadCommit":{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"},"CompareURL":"khieu-nai/backend/compare/432166d5ca2c7e2c68897f7c4cd3d5c80e428db4...5f287cf162a6f7e4bac0eda6ca78603b02665568","Len":1}', 1704707611);
INSERT INTO public.action VALUES (2132, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"}],"HeadCommit":{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"},"CompareURL":"khieu-nai/backend/compare/432166d5ca2c7e2c68897f7c4cd3d5c80e428db4...5f287cf162a6f7e4bac0eda6ca78603b02665568","Len":1}', 1704707611);
INSERT INTO public.action VALUES (2133, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"}],"HeadCommit":{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"},"CompareURL":"khieu-nai/backend/compare/432166d5ca2c7e2c68897f7c4cd3d5c80e428db4...5f287cf162a6f7e4bac0eda6ca78603b02665568","Len":1}', 1704707611);
INSERT INTO public.action VALUES (2134, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"}],"HeadCommit":{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f4e3881a081a31795d2162f9cbc281b4aba8ef27...efc00fcfeaafade84d8cbe9eebd39891331630c5","Len":1}', 1704707774);
INSERT INTO public.action VALUES (2135, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"}],"HeadCommit":{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f4e3881a081a31795d2162f9cbc281b4aba8ef27...efc00fcfeaafade84d8cbe9eebd39891331630c5","Len":1}', 1704707774);
INSERT INTO public.action VALUES (2136, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"}],"HeadCommit":{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f4e3881a081a31795d2162f9cbc281b4aba8ef27...efc00fcfeaafade84d8cbe9eebd39891331630c5","Len":1}', 1704707774);
INSERT INTO public.action VALUES (2137, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"}],"HeadCommit":{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f4e3881a081a31795d2162f9cbc281b4aba8ef27...efc00fcfeaafade84d8cbe9eebd39891331630c5","Len":1}', 1704707774);
INSERT INTO public.action VALUES (2138, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"}],"HeadCommit":{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f4e3881a081a31795d2162f9cbc281b4aba8ef27...efc00fcfeaafade84d8cbe9eebd39891331630c5","Len":1}', 1704707774);
INSERT INTO public.action VALUES (2139, 11, 7, 11, 21, 0, false, '', false, '63|update filter year hs/sv', 1704707849);
INSERT INTO public.action VALUES (2140, 14, 7, 11, 21, 0, false, '', false, '63|update filter year hs/sv', 1704707849);
INSERT INTO public.action VALUES (2141, 16, 7, 11, 21, 0, false, '', false, '63|update filter year hs/sv', 1704707849);
INSERT INTO public.action VALUES (2142, 1, 7, 11, 21, 0, false, '', false, '63|update filter year hs/sv', 1704707849);
INSERT INTO public.action VALUES (2143, 5, 7, 11, 21, 0, false, '', false, '63|update filter year hs/sv', 1704707849);
INSERT INTO public.action VALUES (2144, 11, 11, 11, 21, 0, false, '', false, '63|update filter year hs/sv', 1704707883);
INSERT INTO public.action VALUES (2145, 14, 11, 11, 21, 0, false, '', false, '63|update filter year hs/sv', 1704707883);
INSERT INTO public.action VALUES (2146, 16, 11, 11, 21, 0, false, '', false, '63|update filter year hs/sv', 1704707883);
INSERT INTO public.action VALUES (2147, 1, 11, 11, 21, 0, false, '', false, '63|update filter year hs/sv', 1704707883);
INSERT INTO public.action VALUES (2148, 5, 11, 11, 21, 0, false, '', false, '63|update filter year hs/sv', 1704707883);
INSERT INTO public.action VALUES (2963, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"}],"HeadCommit":{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},"CompareURL":"khieu-nai/admin/compare/94ffd4fad7e84bcd1525ff0775450354d753d78a...15e39944f15f208be7ba038d75a2f68911f1d21e","Len":1}', 1705042665);
INSERT INTO public.action VALUES (2964, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"}],"HeadCommit":{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},"CompareURL":"khieu-nai/admin/compare/94ffd4fad7e84bcd1525ff0775450354d753d78a...15e39944f15f208be7ba038d75a2f68911f1d21e","Len":1}', 1705042665);
INSERT INTO public.action VALUES (2965, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"}],"HeadCommit":{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},"CompareURL":"khieu-nai/admin/compare/94ffd4fad7e84bcd1525ff0775450354d753d78a...15e39944f15f208be7ba038d75a2f68911f1d21e","Len":1}', 1705042665);
INSERT INTO public.action VALUES (2966, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"}],"HeadCommit":{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},"CompareURL":"khieu-nai/admin/compare/94ffd4fad7e84bcd1525ff0775450354d753d78a...15e39944f15f208be7ba038d75a2f68911f1d21e","Len":1}', 1705042665);
INSERT INTO public.action VALUES (2967, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"}],"HeadCommit":{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},"CompareURL":"khieu-nai/admin/compare/94ffd4fad7e84bcd1525ff0775450354d753d78a...15e39944f15f208be7ba038d75a2f68911f1d21e","Len":1}', 1705042665);
INSERT INTO public.action VALUES (3013, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/133/merge', false, '', 1705046771);
INSERT INTO public.action VALUES (3014, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/133/merge', false, '', 1705046771);
INSERT INTO public.action VALUES (2152, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5674ad927bb01fce2f1f31cb2bbee967c0147568","Message":"Merge pull request ''update filter year hs/sv'' (#63) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/63\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:57:57+07:00"},{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"}],"HeadCommit":{"Sha1":"5674ad927bb01fce2f1f31cb2bbee967c0147568","Message":"Merge pull request ''update filter year hs/sv'' (#63) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/63\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:57:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/59b787e85b18879fb9d8f189914021acb7746405...5674ad927bb01fce2f1f31cb2bbee967c0147568","Len":2}', 1704707883);
INSERT INTO public.action VALUES (2153, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5674ad927bb01fce2f1f31cb2bbee967c0147568","Message":"Merge pull request ''update filter year hs/sv'' (#63) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/63\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:57:57+07:00"},{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"}],"HeadCommit":{"Sha1":"5674ad927bb01fce2f1f31cb2bbee967c0147568","Message":"Merge pull request ''update filter year hs/sv'' (#63) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/63\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:57:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/59b787e85b18879fb9d8f189914021acb7746405...5674ad927bb01fce2f1f31cb2bbee967c0147568","Len":2}', 1704707883);
INSERT INTO public.action VALUES (2154, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},{"Sha1":"f29b000d13072305899fb570de3abd6b7c1a2bbf","Message":"Báo cáo kết quả tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T13:48:23+07:00"}],"HeadCommit":{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/aaf721c367e86f19a4b53427293e75118b2eb03d...3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Len":2}', 1704714056);
INSERT INTO public.action VALUES (2155, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},{"Sha1":"f29b000d13072305899fb570de3abd6b7c1a2bbf","Message":"Báo cáo kết quả tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T13:48:23+07:00"}],"HeadCommit":{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/aaf721c367e86f19a4b53427293e75118b2eb03d...3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Len":2}', 1704714056);
INSERT INTO public.action VALUES (2156, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},{"Sha1":"f29b000d13072305899fb570de3abd6b7c1a2bbf","Message":"Báo cáo kết quả tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T13:48:23+07:00"}],"HeadCommit":{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/aaf721c367e86f19a4b53427293e75118b2eb03d...3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Len":2}', 1704714056);
INSERT INTO public.action VALUES (2157, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},{"Sha1":"f29b000d13072305899fb570de3abd6b7c1a2bbf","Message":"Báo cáo kết quả tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T13:48:23+07:00"}],"HeadCommit":{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/aaf721c367e86f19a4b53427293e75118b2eb03d...3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Len":2}', 1704714056);
INSERT INTO public.action VALUES (2183, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/161/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2184, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/162/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2185, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/162/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2186, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/162/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2187, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/162/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2188, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/162/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2189, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/162/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2158, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},{"Sha1":"f29b000d13072305899fb570de3abd6b7c1a2bbf","Message":"Báo cáo kết quả tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T13:48:23+07:00"}],"HeadCommit":{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/aaf721c367e86f19a4b53427293e75118b2eb03d...3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Len":2}', 1704714056);
INSERT INTO public.action VALUES (2159, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},{"Sha1":"f29b000d13072305899fb570de3abd6b7c1a2bbf","Message":"Báo cáo kết quả tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T13:48:23+07:00"}],"HeadCommit":{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/aaf721c367e86f19a4b53427293e75118b2eb03d...3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Len":2}', 1704714056);
INSERT INTO public.action VALUES (2172, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"},"CompareURL":"khieu-nai/admin/compare/2549a06a592bbe9d424ee2074ae32b7dca2878df...82db8039462498c123744f7b56fd5e5f7093ddd8","Len":1}', 1704728086);
INSERT INTO public.action VALUES (2173, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"},"CompareURL":"khieu-nai/admin/compare/2549a06a592bbe9d424ee2074ae32b7dca2878df...82db8039462498c123744f7b56fd5e5f7093ddd8","Len":1}', 1704728086);
INSERT INTO public.action VALUES (2174, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"},"CompareURL":"khieu-nai/admin/compare/2549a06a592bbe9d424ee2074ae32b7dca2878df...82db8039462498c123744f7b56fd5e5f7093ddd8","Len":1}', 1704728086);
INSERT INTO public.action VALUES (2175, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"},"CompareURL":"khieu-nai/admin/compare/2549a06a592bbe9d424ee2074ae32b7dca2878df...82db8039462498c123744f7b56fd5e5f7093ddd8","Len":1}', 1704728086);
INSERT INTO public.action VALUES (2176, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"},"CompareURL":"khieu-nai/admin/compare/2549a06a592bbe9d424ee2074ae32b7dca2878df...82db8039462498c123744f7b56fd5e5f7093ddd8","Len":1}', 1704728086);
INSERT INTO public.action VALUES (2177, 9, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"},"CompareURL":"khieu-nai/admin/compare/2549a06a592bbe9d424ee2074ae32b7dca2878df...82db8039462498c123744f7b56fd5e5f7093ddd8","Len":1}', 1704728086);
INSERT INTO public.action VALUES (2968, 9, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"}],"HeadCommit":{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},"CompareURL":"khieu-nai/admin/compare/94ffd4fad7e84bcd1525ff0775450354d753d78a...15e39944f15f208be7ba038d75a2f68911f1d21e","Len":1}', 1705042665);
INSERT INTO public.action VALUES (3015, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/134/head', false, '', 1705046771);
INSERT INTO public.action VALUES (3016, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/134/head', false, '', 1705046771);
INSERT INTO public.action VALUES (3017, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/134/head', false, '', 1705046771);
INSERT INTO public.action VALUES (3018, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/134/merge', false, '', 1705046771);
INSERT INTO public.action VALUES (2192, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/163/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2193, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/163/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2194, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/163/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2195, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/163/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2196, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/164/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2197, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/164/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2198, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/164/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2199, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/164/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2200, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/164/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2201, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/164/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2202, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/165/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2203, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/165/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2204, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/165/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2205, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/165/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2206, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/165/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2207, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/165/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2208, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/166/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2209, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/166/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2210, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/166/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2211, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/166/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2212, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/166/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2213, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/166/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2214, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/167/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2215, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/167/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2216, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/167/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2217, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/167/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2218, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/167/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2219, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/167/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2220, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/168/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2221, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/168/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2222, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/168/head', false, '', 1704753056);
INSERT INTO public.action VALUES (2223, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/168/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2224, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/168/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2225, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/168/merge', false, '', 1704753056);
INSERT INTO public.action VALUES (2226, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"}],"HeadCommit":{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/efc00fcfeaafade84d8cbe9eebd39891331630c5...cd975fd61522e19149dd713289ee1e0199a4c04d","Len":1}', 1704766171);
INSERT INTO public.action VALUES (2227, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"}],"HeadCommit":{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/efc00fcfeaafade84d8cbe9eebd39891331630c5...cd975fd61522e19149dd713289ee1e0199a4c04d","Len":1}', 1704766171);
INSERT INTO public.action VALUES (2228, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"}],"HeadCommit":{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/efc00fcfeaafade84d8cbe9eebd39891331630c5...cd975fd61522e19149dd713289ee1e0199a4c04d","Len":1}', 1704766171);
INSERT INTO public.action VALUES (2319, 11, 11, 11, 21, 0, false, '', false, '67|update check requite bao cao', 1704783867);
INSERT INTO public.action VALUES (2320, 14, 11, 11, 21, 0, false, '', false, '67|update check requite bao cao', 1704783867);
INSERT INTO public.action VALUES (2321, 16, 11, 11, 21, 0, false, '', false, '67|update check requite bao cao', 1704783867);
INSERT INTO public.action VALUES (2322, 1, 11, 11, 21, 0, false, '', false, '67|update check requite bao cao', 1704783867);
INSERT INTO public.action VALUES (2323, 5, 11, 11, 21, 0, false, '', false, '67|update check requite bao cao', 1704783867);
INSERT INTO public.action VALUES (2441, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/153/merge', false, '', 1704841256);
INSERT INTO public.action VALUES (2229, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"}],"HeadCommit":{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/efc00fcfeaafade84d8cbe9eebd39891331630c5...cd975fd61522e19149dd713289ee1e0199a4c04d","Len":1}', 1704766171);
INSERT INTO public.action VALUES (2230, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"}],"HeadCommit":{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/efc00fcfeaafade84d8cbe9eebd39891331630c5...cd975fd61522e19149dd713289ee1e0199a4c04d","Len":1}', 1704766171);
INSERT INTO public.action VALUES (2231, 11, 7, 11, 21, 0, false, '', false, '64|change zindex ModalEditTTTN', 1704766194);
INSERT INTO public.action VALUES (2232, 14, 7, 11, 21, 0, false, '', false, '64|change zindex ModalEditTTTN', 1704766194);
INSERT INTO public.action VALUES (2233, 16, 7, 11, 21, 0, false, '', false, '64|change zindex ModalEditTTTN', 1704766194);
INSERT INTO public.action VALUES (2234, 1, 7, 11, 21, 0, false, '', false, '64|change zindex ModalEditTTTN', 1704766194);
INSERT INTO public.action VALUES (2235, 5, 7, 11, 21, 0, false, '', false, '64|change zindex ModalEditTTTN', 1704766194);
INSERT INTO public.action VALUES (2236, 11, 11, 11, 21, 0, false, '', false, '64|change zindex ModalEditTTTN', 1704766275);
INSERT INTO public.action VALUES (2237, 14, 11, 11, 21, 0, false, '', false, '64|change zindex ModalEditTTTN', 1704766275);
INSERT INTO public.action VALUES (2238, 16, 11, 11, 21, 0, false, '', false, '64|change zindex ModalEditTTTN', 1704766275);
INSERT INTO public.action VALUES (2239, 1, 11, 11, 21, 0, false, '', false, '64|change zindex ModalEditTTTN', 1704766275);
INSERT INTO public.action VALUES (2240, 5, 11, 11, 21, 0, false, '', false, '64|change zindex ModalEditTTTN', 1704766275);
INSERT INTO public.action VALUES (2241, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2e4d83e639d3a02e175d16951cdb2e2654baab6a","Message":"Merge pull request ''change zindex ModalEditTTTN'' (#64) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/64\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:11:10+07:00"},{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"}],"HeadCommit":{"Sha1":"2e4d83e639d3a02e175d16951cdb2e2654baab6a","Message":"Merge pull request ''change zindex ModalEditTTTN'' (#64) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/64\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:11:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5674ad927bb01fce2f1f31cb2bbee967c0147568...2e4d83e639d3a02e175d16951cdb2e2654baab6a","Len":2}', 1704766276);
INSERT INTO public.action VALUES (2242, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2e4d83e639d3a02e175d16951cdb2e2654baab6a","Message":"Merge pull request ''change zindex ModalEditTTTN'' (#64) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/64\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:11:10+07:00"},{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"}],"HeadCommit":{"Sha1":"2e4d83e639d3a02e175d16951cdb2e2654baab6a","Message":"Merge pull request ''change zindex ModalEditTTTN'' (#64) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/64\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:11:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5674ad927bb01fce2f1f31cb2bbee967c0147568...2e4d83e639d3a02e175d16951cdb2e2654baab6a","Len":2}', 1704766276);
INSERT INTO public.action VALUES (2243, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2e4d83e639d3a02e175d16951cdb2e2654baab6a","Message":"Merge pull request ''change zindex ModalEditTTTN'' (#64) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/64\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:11:10+07:00"},{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"}],"HeadCommit":{"Sha1":"2e4d83e639d3a02e175d16951cdb2e2654baab6a","Message":"Merge pull request ''change zindex ModalEditTTTN'' (#64) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/64\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:11:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5674ad927bb01fce2f1f31cb2bbee967c0147568...2e4d83e639d3a02e175d16951cdb2e2654baab6a","Len":2}', 1704766276);
INSERT INTO public.action VALUES (2442, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/153/merge', false, '', 1704841256);
INSERT INTO public.action VALUES (2443, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/154/head', false, '', 1704841256);
INSERT INTO public.action VALUES (2444, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/154/head', false, '', 1704841256);
INSERT INTO public.action VALUES (2445, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/154/head', false, '', 1704841256);
INSERT INTO public.action VALUES (2446, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/154/merge', false, '', 1704841256);
INSERT INTO public.action VALUES (2244, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2e4d83e639d3a02e175d16951cdb2e2654baab6a","Message":"Merge pull request ''change zindex ModalEditTTTN'' (#64) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/64\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:11:10+07:00"},{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"}],"HeadCommit":{"Sha1":"2e4d83e639d3a02e175d16951cdb2e2654baab6a","Message":"Merge pull request ''change zindex ModalEditTTTN'' (#64) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/64\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:11:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5674ad927bb01fce2f1f31cb2bbee967c0147568...2e4d83e639d3a02e175d16951cdb2e2654baab6a","Len":2}', 1704766276);
INSERT INTO public.action VALUES (2969, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"}],"HeadCommit":{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c78cbbacb228029e2f7904edb91659aa06135be7...bf230208b1efd148c1dec00f3c4eb158311100bd","Len":1}', 1705044399);
INSERT INTO public.action VALUES (2970, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"}],"HeadCommit":{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c78cbbacb228029e2f7904edb91659aa06135be7...bf230208b1efd148c1dec00f3c4eb158311100bd","Len":1}', 1705044399);
INSERT INTO public.action VALUES (2971, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"}],"HeadCommit":{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c78cbbacb228029e2f7904edb91659aa06135be7...bf230208b1efd148c1dec00f3c4eb158311100bd","Len":1}', 1705044399);
INSERT INTO public.action VALUES (2972, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"}],"HeadCommit":{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c78cbbacb228029e2f7904edb91659aa06135be7...bf230208b1efd148c1dec00f3c4eb158311100bd","Len":1}', 1705044399);
INSERT INTO public.action VALUES (2973, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"}],"HeadCommit":{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c78cbbacb228029e2f7904edb91659aa06135be7...bf230208b1efd148c1dec00f3c4eb158311100bd","Len":1}', 1705044399);
INSERT INTO public.action VALUES (2979, 11, 11, 11, 21, 0, false, '', false, '86|fix icon user', 1705044537);
INSERT INTO public.action VALUES (2980, 14, 11, 11, 21, 0, false, '', false, '86|fix icon user', 1705044537);
INSERT INTO public.action VALUES (2981, 16, 11, 11, 21, 0, false, '', false, '86|fix icon user', 1705044537);
INSERT INTO public.action VALUES (2982, 5, 11, 11, 21, 0, false, '', false, '86|fix icon user', 1705044537);
INSERT INTO public.action VALUES (2983, 1, 11, 11, 21, 0, false, '', false, '86|fix icon user', 1705044537);
INSERT INTO public.action VALUES (3019, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/134/merge', false, '', 1705046771);
INSERT INTO public.action VALUES (3020, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/134/merge', false, '', 1705046771);
INSERT INTO public.action VALUES (3021, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/135/head', false, '', 1705046771);
INSERT INTO public.action VALUES (3022, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/135/head', false, '', 1705046771);
INSERT INTO public.action VALUES (3023, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/135/head', false, '', 1705046771);
INSERT INTO public.action VALUES (3024, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/135/merge', false, '', 1705046771);
INSERT INTO public.action VALUES (3025, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/135/merge', false, '', 1705046771);
INSERT INTO public.action VALUES (3026, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/135/merge', false, '', 1705046771);
INSERT INTO public.action VALUES (3130, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/130/head', false, '', 1705105570);
INSERT INTO public.action VALUES (3131, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/130/merge', false, '', 1705105570);
INSERT INTO public.action VALUES (3132, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/130/merge', false, '', 1705105570);
INSERT INTO public.action VALUES (3133, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/130/merge', false, '', 1705105570);
INSERT INTO public.action VALUES (2245, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2e4d83e639d3a02e175d16951cdb2e2654baab6a","Message":"Merge pull request ''change zindex ModalEditTTTN'' (#64) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/64\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:11:10+07:00"},{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"}],"HeadCommit":{"Sha1":"2e4d83e639d3a02e175d16951cdb2e2654baab6a","Message":"Merge pull request ''change zindex ModalEditTTTN'' (#64) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/64\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:11:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5674ad927bb01fce2f1f31cb2bbee967c0147568...2e4d83e639d3a02e175d16951cdb2e2654baab6a","Len":2}', 1704766276);
INSERT INTO public.action VALUES (2246, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"}],"HeadCommit":{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cd975fd61522e19149dd713289ee1e0199a4c04d...ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Len":1}', 1704767004);
INSERT INTO public.action VALUES (2247, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"}],"HeadCommit":{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cd975fd61522e19149dd713289ee1e0199a4c04d...ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Len":1}', 1704767004);
INSERT INTO public.action VALUES (2248, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"}],"HeadCommit":{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cd975fd61522e19149dd713289ee1e0199a4c04d...ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Len":1}', 1704767004);
INSERT INTO public.action VALUES (2249, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"}],"HeadCommit":{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cd975fd61522e19149dd713289ee1e0199a4c04d...ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Len":1}', 1704767004);
INSERT INTO public.action VALUES (2250, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"}],"HeadCommit":{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cd975fd61522e19149dd713289ee1e0199a4c04d...ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Len":1}', 1704767004);
INSERT INTO public.action VALUES (2251, 11, 7, 11, 21, 0, false, '', false, '65|fix zindex', 1704767039);
INSERT INTO public.action VALUES (2252, 14, 7, 11, 21, 0, false, '', false, '65|fix zindex', 1704767039);
INSERT INTO public.action VALUES (2253, 16, 7, 11, 21, 0, false, '', false, '65|fix zindex', 1704767039);
INSERT INTO public.action VALUES (2254, 1, 7, 11, 21, 0, false, '', false, '65|fix zindex', 1704767039);
INSERT INTO public.action VALUES (2255, 5, 7, 11, 21, 0, false, '', false, '65|fix zindex', 1704767039);
INSERT INTO public.action VALUES (2256, 11, 11, 11, 21, 0, false, '', false, '65|fix zindex', 1704767055);
INSERT INTO public.action VALUES (2257, 14, 11, 11, 21, 0, false, '', false, '65|fix zindex', 1704767055);
INSERT INTO public.action VALUES (2258, 16, 11, 11, 21, 0, false, '', false, '65|fix zindex', 1704767055);
INSERT INTO public.action VALUES (2259, 1, 11, 11, 21, 0, false, '', false, '65|fix zindex', 1704767055);
INSERT INTO public.action VALUES (2260, 5, 11, 11, 21, 0, false, '', false, '65|fix zindex', 1704767055);
INSERT INTO public.action VALUES (2273, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"}],"HeadCommit":{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150...b51394f3145212044dd5954b808a0d9543bdaf5e","Len":1}', 1704773716);
INSERT INTO public.action VALUES (2447, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/154/merge', false, '', 1704841256);
INSERT INTO public.action VALUES (2261, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Message":"Merge pull request ''fix zindex'' (#65) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/65\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:24:09+07:00"},{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"}],"HeadCommit":{"Sha1":"6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Message":"Merge pull request ''fix zindex'' (#65) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/65\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:24:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2e4d83e639d3a02e175d16951cdb2e2654baab6a...6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Len":2}', 1704767055);
INSERT INTO public.action VALUES (2262, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Message":"Merge pull request ''fix zindex'' (#65) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/65\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:24:09+07:00"},{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"}],"HeadCommit":{"Sha1":"6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Message":"Merge pull request ''fix zindex'' (#65) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/65\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:24:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2e4d83e639d3a02e175d16951cdb2e2654baab6a...6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Len":2}', 1704767055);
INSERT INTO public.action VALUES (2263, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Message":"Merge pull request ''fix zindex'' (#65) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/65\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:24:09+07:00"},{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"}],"HeadCommit":{"Sha1":"6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Message":"Merge pull request ''fix zindex'' (#65) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/65\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:24:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2e4d83e639d3a02e175d16951cdb2e2654baab6a...6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Len":2}', 1704767055);
INSERT INTO public.action VALUES (2264, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Message":"Merge pull request ''fix zindex'' (#65) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/65\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:24:09+07:00"},{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"}],"HeadCommit":{"Sha1":"6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Message":"Merge pull request ''fix zindex'' (#65) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/65\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:24:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2e4d83e639d3a02e175d16951cdb2e2654baab6a...6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Len":2}', 1704767055);
INSERT INTO public.action VALUES (2265, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Message":"Merge pull request ''fix zindex'' (#65) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/65\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:24:09+07:00"},{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"}],"HeadCommit":{"Sha1":"6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Message":"Merge pull request ''fix zindex'' (#65) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/65\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:24:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2e4d83e639d3a02e175d16951cdb2e2654baab6a...6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Len":2}', 1704767055);
INSERT INTO public.action VALUES (2272, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"}],"HeadCommit":{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150...b51394f3145212044dd5954b808a0d9543bdaf5e","Len":1}', 1704773716);
INSERT INTO public.action VALUES (2289, 16, 11, 11, 21, 0, false, '', false, '66|thinh', 1704774842);
INSERT INTO public.action VALUES (2290, 1, 11, 11, 21, 0, false, '', false, '66|thinh', 1704774842);
INSERT INTO public.action VALUES (2266, 15, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},"CompareURL":"khieu-nai/admin/compare/69d562176e46ab843c90e41309ffeab53a0b93ae...fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Len":3}', 1704769746);
INSERT INTO public.action VALUES (2267, 12, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},"CompareURL":"khieu-nai/admin/compare/69d562176e46ab843c90e41309ffeab53a0b93ae...fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Len":3}', 1704769746);
INSERT INTO public.action VALUES (2268, 2, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},"CompareURL":"khieu-nai/admin/compare/69d562176e46ab843c90e41309ffeab53a0b93ae...fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Len":3}', 1704769746);
INSERT INTO public.action VALUES (2269, 1, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},"CompareURL":"khieu-nai/admin/compare/69d562176e46ab843c90e41309ffeab53a0b93ae...fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Len":3}', 1704769746);
INSERT INTO public.action VALUES (2270, 5, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},"CompareURL":"khieu-nai/admin/compare/69d562176e46ab843c90e41309ffeab53a0b93ae...fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Len":3}', 1704769746);
INSERT INTO public.action VALUES (2291, 5, 11, 11, 21, 0, false, '', false, '66|thinh', 1704774842);
INSERT INTO public.action VALUES (2448, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/154/merge', false, '', 1704841256);
INSERT INTO public.action VALUES (2449, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/155/head', false, '', 1704841256);
INSERT INTO public.action VALUES (2450, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/155/head', false, '', 1704841256);
INSERT INTO public.action VALUES (2451, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/155/head', false, '', 1704841256);
INSERT INTO public.action VALUES (2452, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/155/merge', false, '', 1704841256);
INSERT INTO public.action VALUES (2271, 9, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},"CompareURL":"khieu-nai/admin/compare/69d562176e46ab843c90e41309ffeab53a0b93ae...fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Len":3}', 1704769746);
INSERT INTO public.action VALUES (2974, 11, 7, 11, 21, 0, false, '', false, '86|fix icon user', 1705044514);
INSERT INTO public.action VALUES (2975, 14, 7, 11, 21, 0, false, '', false, '86|fix icon user', 1705044514);
INSERT INTO public.action VALUES (2976, 16, 7, 11, 21, 0, false, '', false, '86|fix icon user', 1705044514);
INSERT INTO public.action VALUES (2977, 5, 7, 11, 21, 0, false, '', false, '86|fix icon user', 1705044514);
INSERT INTO public.action VALUES (2978, 1, 7, 11, 21, 0, false, '', false, '86|fix icon user', 1705044514);
INSERT INTO public.action VALUES (2984, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Message":"Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:28:52+07:00"},{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"}],"HeadCommit":{"Sha1":"6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Message":"Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:28:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6e16637a65f7d4d092a3cdbdbd178eb1636964e1...6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Len":2}', 1705044538);
INSERT INTO public.action VALUES (2985, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Message":"Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:28:52+07:00"},{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"}],"HeadCommit":{"Sha1":"6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Message":"Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:28:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6e16637a65f7d4d092a3cdbdbd178eb1636964e1...6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Len":2}', 1705044538);
INSERT INTO public.action VALUES (2986, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Message":"Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:28:52+07:00"},{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"}],"HeadCommit":{"Sha1":"6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Message":"Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:28:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6e16637a65f7d4d092a3cdbdbd178eb1636964e1...6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Len":2}', 1705044538);
INSERT INTO public.action VALUES (2987, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Message":"Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:28:52+07:00"},{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"}],"HeadCommit":{"Sha1":"6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Message":"Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:28:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6e16637a65f7d4d092a3cdbdbd178eb1636964e1...6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Len":2}', 1705044538);
INSERT INTO public.action VALUES (3134, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/131/head', false, '', 1705105570);
INSERT INTO public.action VALUES (3135, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/131/head', false, '', 1705105570);
INSERT INTO public.action VALUES (3136, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/131/head', false, '', 1705105570);
INSERT INTO public.action VALUES (3137, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/131/merge', false, '', 1705105570);
INSERT INTO public.action VALUES (2274, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"}],"HeadCommit":{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150...b51394f3145212044dd5954b808a0d9543bdaf5e","Len":1}', 1704773716);
INSERT INTO public.action VALUES (2275, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"}],"HeadCommit":{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150...b51394f3145212044dd5954b808a0d9543bdaf5e","Len":1}', 1704773716);
INSERT INTO public.action VALUES (2276, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"}],"HeadCommit":{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150...b51394f3145212044dd5954b808a0d9543bdaf5e","Len":1}', 1704773716);
INSERT INTO public.action VALUES (2277, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"}],"HeadCommit":{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b51394f3145212044dd5954b808a0d9543bdaf5e...f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Len":1}', 1704774778);
INSERT INTO public.action VALUES (2278, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"}],"HeadCommit":{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b51394f3145212044dd5954b808a0d9543bdaf5e...f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Len":1}', 1704774778);
INSERT INTO public.action VALUES (2279, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"}],"HeadCommit":{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b51394f3145212044dd5954b808a0d9543bdaf5e...f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Len":1}', 1704774778);
INSERT INTO public.action VALUES (2280, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"}],"HeadCommit":{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b51394f3145212044dd5954b808a0d9543bdaf5e...f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Len":1}', 1704774778);
INSERT INTO public.action VALUES (2281, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"}],"HeadCommit":{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b51394f3145212044dd5954b808a0d9543bdaf5e...f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Len":1}', 1704774778);
INSERT INTO public.action VALUES (2282, 11, 7, 11, 21, 0, false, '', false, '66|thinh', 1704774826);
INSERT INTO public.action VALUES (2283, 14, 7, 11, 21, 0, false, '', false, '66|thinh', 1704774826);
INSERT INTO public.action VALUES (2284, 16, 7, 11, 21, 0, false, '', false, '66|thinh', 1704774826);
INSERT INTO public.action VALUES (2285, 1, 7, 11, 21, 0, false, '', false, '66|thinh', 1704774826);
INSERT INTO public.action VALUES (2286, 5, 7, 11, 21, 0, false, '', false, '66|thinh', 1704774826);
INSERT INTO public.action VALUES (2287, 11, 11, 11, 21, 0, false, '', false, '66|thinh', 1704774842);
INSERT INTO public.action VALUES (2288, 14, 11, 11, 21, 0, false, '', false, '66|thinh', 1704774842);
INSERT INTO public.action VALUES (2292, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Message":"Merge pull request ''thinh'' (#66) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/66\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T11:33:56+07:00"},{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"},{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"}],"HeadCommit":{"Sha1":"4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Message":"Merge pull request ''thinh'' (#66) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/66\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T11:33:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6e09f0acfd90921544a46a80a0fa99c37c13ecd1...4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Len":3}', 1704774844);
INSERT INTO public.action VALUES (2293, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Message":"Merge pull request ''thinh'' (#66) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/66\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T11:33:56+07:00"},{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"},{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"}],"HeadCommit":{"Sha1":"4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Message":"Merge pull request ''thinh'' (#66) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/66\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T11:33:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6e09f0acfd90921544a46a80a0fa99c37c13ecd1...4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Len":3}', 1704774844);
INSERT INTO public.action VALUES (2294, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Message":"Merge pull request ''thinh'' (#66) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/66\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T11:33:56+07:00"},{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"},{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"}],"HeadCommit":{"Sha1":"4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Message":"Merge pull request ''thinh'' (#66) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/66\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T11:33:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6e09f0acfd90921544a46a80a0fa99c37c13ecd1...4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Len":3}', 1704774844);
INSERT INTO public.action VALUES (2295, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Message":"Merge pull request ''thinh'' (#66) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/66\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T11:33:56+07:00"},{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"},{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"}],"HeadCommit":{"Sha1":"4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Message":"Merge pull request ''thinh'' (#66) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/66\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T11:33:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6e09f0acfd90921544a46a80a0fa99c37c13ecd1...4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Len":3}', 1704774844);
INSERT INTO public.action VALUES (2315, 14, 7, 11, 21, 0, false, '', false, '67|update check requite bao cao', 1704783850);
INSERT INTO public.action VALUES (2316, 16, 7, 11, 21, 0, false, '', false, '67|update check requite bao cao', 1704783850);
INSERT INTO public.action VALUES (2317, 1, 7, 11, 21, 0, false, '', false, '67|update check requite bao cao', 1704783850);
INSERT INTO public.action VALUES (2318, 5, 7, 11, 21, 0, false, '', false, '67|update check requite bao cao', 1704783850);
INSERT INTO public.action VALUES (2371, 2, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/fbdf0da958a4d25cb531ddf0db3f159673cf6e5b...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":1}', 1704788024);
INSERT INTO public.action VALUES (2296, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Message":"Merge pull request ''thinh'' (#66) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/66\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T11:33:56+07:00"},{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"},{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"}],"HeadCommit":{"Sha1":"4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Message":"Merge pull request ''thinh'' (#66) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/66\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T11:33:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6e09f0acfd90921544a46a80a0fa99c37c13ecd1...4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Len":3}', 1704774844);
INSERT INTO public.action VALUES (2297, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/159/head', false, '', 1704782455);
INSERT INTO public.action VALUES (2298, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/159/head', false, '', 1704782455);
INSERT INTO public.action VALUES (2299, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/159/head', false, '', 1704782455);
INSERT INTO public.action VALUES (2300, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/159/merge', false, '', 1704782455);
INSERT INTO public.action VALUES (2301, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/159/merge', false, '', 1704782455);
INSERT INTO public.action VALUES (2302, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/159/merge', false, '', 1704782455);
INSERT INTO public.action VALUES (2303, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/160/head', false, '', 1704782455);
INSERT INTO public.action VALUES (2304, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/160/head', false, '', 1704782455);
INSERT INTO public.action VALUES (2305, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/160/head', false, '', 1704782455);
INSERT INTO public.action VALUES (2306, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/160/merge', false, '', 1704782455);
INSERT INTO public.action VALUES (2307, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/160/merge', false, '', 1704782455);
INSERT INTO public.action VALUES (2308, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/160/merge', false, '', 1704782455);
INSERT INTO public.action VALUES (2309, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"}],"HeadCommit":{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f84a3dfbb60e8522bd2a4e5b4bfc811486bce001...ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Len":1}', 1704783829);
INSERT INTO public.action VALUES (2310, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"}],"HeadCommit":{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f84a3dfbb60e8522bd2a4e5b4bfc811486bce001...ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Len":1}', 1704783829);
INSERT INTO public.action VALUES (2311, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"}],"HeadCommit":{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f84a3dfbb60e8522bd2a4e5b4bfc811486bce001...ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Len":1}', 1704783829);
INSERT INTO public.action VALUES (2312, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"}],"HeadCommit":{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f84a3dfbb60e8522bd2a4e5b4bfc811486bce001...ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Len":1}', 1704783829);
INSERT INTO public.action VALUES (2313, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"}],"HeadCommit":{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f84a3dfbb60e8522bd2a4e5b4bfc811486bce001...ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Len":1}', 1704783829);
INSERT INTO public.action VALUES (2314, 11, 7, 11, 21, 0, false, '', false, '67|update check requite bao cao', 1704783850);
INSERT INTO public.action VALUES (2324, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7d38765ee7248f74597c22ad61fac6a865a76263","Message":"Merge pull request ''update check requite bao cao'' (#67) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/67\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:04:21+07:00"},{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"}],"HeadCommit":{"Sha1":"7d38765ee7248f74597c22ad61fac6a865a76263","Message":"Merge pull request ''update check requite bao cao'' (#67) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/67\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:04:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4a1e20f14835559c8bb4f994be3bdbbaa72cdac2...7d38765ee7248f74597c22ad61fac6a865a76263","Len":2}', 1704783868);
INSERT INTO public.action VALUES (2325, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7d38765ee7248f74597c22ad61fac6a865a76263","Message":"Merge pull request ''update check requite bao cao'' (#67) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/67\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:04:21+07:00"},{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"}],"HeadCommit":{"Sha1":"7d38765ee7248f74597c22ad61fac6a865a76263","Message":"Merge pull request ''update check requite bao cao'' (#67) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/67\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:04:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4a1e20f14835559c8bb4f994be3bdbbaa72cdac2...7d38765ee7248f74597c22ad61fac6a865a76263","Len":2}', 1704783868);
INSERT INTO public.action VALUES (2326, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7d38765ee7248f74597c22ad61fac6a865a76263","Message":"Merge pull request ''update check requite bao cao'' (#67) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/67\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:04:21+07:00"},{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"}],"HeadCommit":{"Sha1":"7d38765ee7248f74597c22ad61fac6a865a76263","Message":"Merge pull request ''update check requite bao cao'' (#67) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/67\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:04:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4a1e20f14835559c8bb4f994be3bdbbaa72cdac2...7d38765ee7248f74597c22ad61fac6a865a76263","Len":2}', 1704783868);
INSERT INTO public.action VALUES (2327, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7d38765ee7248f74597c22ad61fac6a865a76263","Message":"Merge pull request ''update check requite bao cao'' (#67) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/67\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:04:21+07:00"},{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"}],"HeadCommit":{"Sha1":"7d38765ee7248f74597c22ad61fac6a865a76263","Message":"Merge pull request ''update check requite bao cao'' (#67) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/67\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:04:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4a1e20f14835559c8bb4f994be3bdbbaa72cdac2...7d38765ee7248f74597c22ad61fac6a865a76263","Len":2}', 1704783868);
INSERT INTO public.action VALUES (2328, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7d38765ee7248f74597c22ad61fac6a865a76263","Message":"Merge pull request ''update check requite bao cao'' (#67) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/67\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:04:21+07:00"},{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"}],"HeadCommit":{"Sha1":"7d38765ee7248f74597c22ad61fac6a865a76263","Message":"Merge pull request ''update check requite bao cao'' (#67) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/67\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:04:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4a1e20f14835559c8bb4f994be3bdbbaa72cdac2...7d38765ee7248f74597c22ad61fac6a865a76263","Len":2}', 1704783868);
INSERT INTO public.action VALUES (2339, 11, 11, 11, 21, 0, false, '', false, '68|add check trung chi tieu', 1704784796);
INSERT INTO public.action VALUES (2340, 14, 11, 11, 21, 0, false, '', false, '68|add check trung chi tieu', 1704784796);
INSERT INTO public.action VALUES (2341, 16, 11, 11, 21, 0, false, '', false, '68|add check trung chi tieu', 1704784796);
INSERT INTO public.action VALUES (2342, 1, 11, 11, 21, 0, false, '', false, '68|add check trung chi tieu', 1704784796);
INSERT INTO public.action VALUES (2343, 5, 11, 11, 21, 0, false, '', false, '68|add check trung chi tieu', 1704784796);
INSERT INTO public.action VALUES (2453, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/155/merge', false, '', 1704841256);
INSERT INTO public.action VALUES (2454, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/155/merge', false, '', 1704841256);
INSERT INTO public.action VALUES (2455, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/156/head', false, '', 1704841256);
INSERT INTO public.action VALUES (2329, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"}],"HeadCommit":{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb...f2389db592f2b5230471326f66fa942bbafb1ca4","Len":1}', 1704784728);
INSERT INTO public.action VALUES (2330, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"}],"HeadCommit":{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb...f2389db592f2b5230471326f66fa942bbafb1ca4","Len":1}', 1704784728);
INSERT INTO public.action VALUES (2331, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"}],"HeadCommit":{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb...f2389db592f2b5230471326f66fa942bbafb1ca4","Len":1}', 1704784728);
INSERT INTO public.action VALUES (2332, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"}],"HeadCommit":{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb...f2389db592f2b5230471326f66fa942bbafb1ca4","Len":1}', 1704784728);
INSERT INTO public.action VALUES (2333, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"}],"HeadCommit":{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb...f2389db592f2b5230471326f66fa942bbafb1ca4","Len":1}', 1704784728);
INSERT INTO public.action VALUES (2334, 11, 7, 11, 21, 0, false, '', false, '68|add check trung chi tieu', 1704784779);
INSERT INTO public.action VALUES (2335, 14, 7, 11, 21, 0, false, '', false, '68|add check trung chi tieu', 1704784779);
INSERT INTO public.action VALUES (2336, 16, 7, 11, 21, 0, false, '', false, '68|add check trung chi tieu', 1704784779);
INSERT INTO public.action VALUES (2337, 1, 7, 11, 21, 0, false, '', false, '68|add check trung chi tieu', 1704784779);
INSERT INTO public.action VALUES (2338, 5, 7, 11, 21, 0, false, '', false, '68|add check trung chi tieu', 1704784779);
INSERT INTO public.action VALUES (2344, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Message":"Merge pull request ''add check trung chi tieu'' (#68) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/68\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:19:50+07:00"},{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"}],"HeadCommit":{"Sha1":"e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Message":"Merge pull request ''add check trung chi tieu'' (#68) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/68\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:19:50+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7d38765ee7248f74597c22ad61fac6a865a76263...e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Len":2}', 1704784797);
INSERT INTO public.action VALUES (2345, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Message":"Merge pull request ''add check trung chi tieu'' (#68) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/68\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:19:50+07:00"},{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"}],"HeadCommit":{"Sha1":"e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Message":"Merge pull request ''add check trung chi tieu'' (#68) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/68\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:19:50+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7d38765ee7248f74597c22ad61fac6a865a76263...e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Len":2}', 1704784797);
INSERT INTO public.action VALUES (2346, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Message":"Merge pull request ''add check trung chi tieu'' (#68) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/68\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:19:50+07:00"},{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"}],"HeadCommit":{"Sha1":"e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Message":"Merge pull request ''add check trung chi tieu'' (#68) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/68\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:19:50+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7d38765ee7248f74597c22ad61fac6a865a76263...e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Len":2}', 1704784797);
INSERT INTO public.action VALUES (2347, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Message":"Merge pull request ''add check trung chi tieu'' (#68) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/68\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:19:50+07:00"},{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"}],"HeadCommit":{"Sha1":"e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Message":"Merge pull request ''add check trung chi tieu'' (#68) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/68\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:19:50+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7d38765ee7248f74597c22ad61fac6a865a76263...e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Len":2}', 1704784797);
INSERT INTO public.action VALUES (2348, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Message":"Merge pull request ''add check trung chi tieu'' (#68) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/68\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:19:50+07:00"},{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"}],"HeadCommit":{"Sha1":"e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Message":"Merge pull request ''add check trung chi tieu'' (#68) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/68\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:19:50+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7d38765ee7248f74597c22ad61fac6a865a76263...e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Len":2}', 1704784797);
INSERT INTO public.action VALUES (2349, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"}],"HeadCommit":{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f2389db592f2b5230471326f66fa942bbafb1ca4...ba7fc72161054e3a1085ed4b8c70d84198ce961b","Len":1}', 1704787767);
INSERT INTO public.action VALUES (2350, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"}],"HeadCommit":{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f2389db592f2b5230471326f66fa942bbafb1ca4...ba7fc72161054e3a1085ed4b8c70d84198ce961b","Len":1}', 1704787767);
INSERT INTO public.action VALUES (2351, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"}],"HeadCommit":{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f2389db592f2b5230471326f66fa942bbafb1ca4...ba7fc72161054e3a1085ed4b8c70d84198ce961b","Len":1}', 1704787767);
INSERT INTO public.action VALUES (2352, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"}],"HeadCommit":{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f2389db592f2b5230471326f66fa942bbafb1ca4...ba7fc72161054e3a1085ed4b8c70d84198ce961b","Len":1}', 1704787767);
INSERT INTO public.action VALUES (2353, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"}],"HeadCommit":{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f2389db592f2b5230471326f66fa942bbafb1ca4...ba7fc72161054e3a1085ed4b8c70d84198ce961b","Len":1}', 1704787767);
INSERT INTO public.action VALUES (2354, 11, 7, 11, 21, 0, false, '', false, '69|add required tu ngay den ngay', 1704787810);
INSERT INTO public.action VALUES (2355, 14, 7, 11, 21, 0, false, '', false, '69|add required tu ngay den ngay', 1704787810);
INSERT INTO public.action VALUES (2356, 16, 7, 11, 21, 0, false, '', false, '69|add required tu ngay den ngay', 1704787810);
INSERT INTO public.action VALUES (2357, 1, 7, 11, 21, 0, false, '', false, '69|add required tu ngay den ngay', 1704787810);
INSERT INTO public.action VALUES (2358, 5, 7, 11, 21, 0, false, '', false, '69|add required tu ngay den ngay', 1704787810);
INSERT INTO public.action VALUES (2359, 11, 11, 11, 21, 0, false, '', false, '69|add required tu ngay den ngay', 1704787825);
INSERT INTO public.action VALUES (2360, 14, 11, 11, 21, 0, false, '', false, '69|add required tu ngay den ngay', 1704787825);
INSERT INTO public.action VALUES (2361, 16, 11, 11, 21, 0, false, '', false, '69|add required tu ngay den ngay', 1704787825);
INSERT INTO public.action VALUES (2362, 1, 11, 11, 21, 0, false, '', false, '69|add required tu ngay den ngay', 1704787825);
INSERT INTO public.action VALUES (2363, 5, 11, 11, 21, 0, false, '', false, '69|add required tu ngay den ngay', 1704787825);
INSERT INTO public.action VALUES (2366, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"84e51ab1a10e1be4299a3924c9379a9732aa726b","Message":"Merge pull request ''add required tu ngay den ngay'' (#69) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/69\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T15:10:20+07:00"},{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"}],"HeadCommit":{"Sha1":"84e51ab1a10e1be4299a3924c9379a9732aa726b","Message":"Merge pull request ''add required tu ngay den ngay'' (#69) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/69\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T15:10:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e938e87dccb49b7a9c0fd0c02a54920b7ef0d925...84e51ab1a10e1be4299a3924c9379a9732aa726b","Len":2}', 1704787826);
INSERT INTO public.action VALUES (2988, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Message":"Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:28:52+07:00"},{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"}],"HeadCommit":{"Sha1":"6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Message":"Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:28:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6e16637a65f7d4d092a3cdbdbd178eb1636964e1...6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Len":2}', 1705044538);
INSERT INTO public.action VALUES (3004, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Message":"Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:46:16+07:00"},{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"}],"HeadCommit":{"Sha1":"1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Message":"Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:46:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6189e5347420d4bbcee5c4f550ed3cd17a77ba41...1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Len":2}', 1705045583);
INSERT INTO public.action VALUES (3005, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Message":"Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:46:16+07:00"},{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"}],"HeadCommit":{"Sha1":"1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Message":"Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:46:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6189e5347420d4bbcee5c4f550ed3cd17a77ba41...1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Len":2}', 1705045583);
INSERT INTO public.action VALUES (3138, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/131/merge', false, '', 1705105570);
INSERT INTO public.action VALUES (2364, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"84e51ab1a10e1be4299a3924c9379a9732aa726b","Message":"Merge pull request ''add required tu ngay den ngay'' (#69) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/69\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T15:10:20+07:00"},{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"}],"HeadCommit":{"Sha1":"84e51ab1a10e1be4299a3924c9379a9732aa726b","Message":"Merge pull request ''add required tu ngay den ngay'' (#69) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/69\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T15:10:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e938e87dccb49b7a9c0fd0c02a54920b7ef0d925...84e51ab1a10e1be4299a3924c9379a9732aa726b","Len":2}', 1704787826);
INSERT INTO public.action VALUES (2365, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"84e51ab1a10e1be4299a3924c9379a9732aa726b","Message":"Merge pull request ''add required tu ngay den ngay'' (#69) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/69\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T15:10:20+07:00"},{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"}],"HeadCommit":{"Sha1":"84e51ab1a10e1be4299a3924c9379a9732aa726b","Message":"Merge pull request ''add required tu ngay den ngay'' (#69) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/69\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T15:10:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e938e87dccb49b7a9c0fd0c02a54920b7ef0d925...84e51ab1a10e1be4299a3924c9379a9732aa726b","Len":2}', 1704787826);
INSERT INTO public.action VALUES (2367, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"84e51ab1a10e1be4299a3924c9379a9732aa726b","Message":"Merge pull request ''add required tu ngay den ngay'' (#69) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/69\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T15:10:20+07:00"},{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"}],"HeadCommit":{"Sha1":"84e51ab1a10e1be4299a3924c9379a9732aa726b","Message":"Merge pull request ''add required tu ngay den ngay'' (#69) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/69\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T15:10:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e938e87dccb49b7a9c0fd0c02a54920b7ef0d925...84e51ab1a10e1be4299a3924c9379a9732aa726b","Len":2}', 1704787826);
INSERT INTO public.action VALUES (2368, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"84e51ab1a10e1be4299a3924c9379a9732aa726b","Message":"Merge pull request ''add required tu ngay den ngay'' (#69) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/69\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T15:10:20+07:00"},{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"}],"HeadCommit":{"Sha1":"84e51ab1a10e1be4299a3924c9379a9732aa726b","Message":"Merge pull request ''add required tu ngay den ngay'' (#69) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/69\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T15:10:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e938e87dccb49b7a9c0fd0c02a54920b7ef0d925...84e51ab1a10e1be4299a3924c9379a9732aa726b","Len":2}', 1704787826);
INSERT INTO public.action VALUES (2369, 15, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/fbdf0da958a4d25cb531ddf0db3f159673cf6e5b...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":1}', 1704788024);
INSERT INTO public.action VALUES (2370, 12, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/fbdf0da958a4d25cb531ddf0db3f159673cf6e5b...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":1}', 1704788024);
INSERT INTO public.action VALUES (2456, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/156/head', false, '', 1704841256);
INSERT INTO public.action VALUES (2457, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/156/head', false, '', 1704841256);
INSERT INTO public.action VALUES (2458, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/156/merge', false, '', 1704841256);
INSERT INTO public.action VALUES (2459, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/156/merge', false, '', 1704841256);
INSERT INTO public.action VALUES (2460, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/156/merge', false, '', 1704841256);
INSERT INTO public.action VALUES (2372, 1, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/fbdf0da958a4d25cb531ddf0db3f159673cf6e5b...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":1}', 1704788024);
INSERT INTO public.action VALUES (2373, 5, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/fbdf0da958a4d25cb531ddf0db3f159673cf6e5b...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":1}', 1704788024);
INSERT INTO public.action VALUES (2374, 9, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/fbdf0da958a4d25cb531ddf0db3f159673cf6e5b...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":1}', 1704788024);
INSERT INTO public.action VALUES (2375, 15, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/82db8039462498c123744f7b56fd5e5f7093ddd8...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":6}', 1704788108);
INSERT INTO public.action VALUES (2376, 12, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/82db8039462498c123744f7b56fd5e5f7093ddd8...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":6}', 1704788108);
INSERT INTO public.action VALUES (2377, 2, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/82db8039462498c123744f7b56fd5e5f7093ddd8...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":6}', 1704788108);
INSERT INTO public.action VALUES (2378, 1, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/82db8039462498c123744f7b56fd5e5f7093ddd8...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":6}', 1704788108);
INSERT INTO public.action VALUES (2379, 5, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/82db8039462498c123744f7b56fd5e5f7093ddd8...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":6}', 1704788108);
INSERT INTO public.action VALUES (2380, 9, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/82db8039462498c123744f7b56fd5e5f7093ddd8...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":6}', 1704788108);
INSERT INTO public.action VALUES (2496, 5, 7, 11, 21, 0, false, '', false, '72|fix thong bao loi hs + nha giao', 1704854938);
INSERT INTO public.action VALUES (3139, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/131/merge', false, '', 1705105570);
INSERT INTO public.action VALUES (3140, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/132/head', false, '', 1705105570);
INSERT INTO public.action VALUES (3141, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/132/head', false, '', 1705105570);
INSERT INTO public.action VALUES (3142, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/132/head', false, '', 1705105570);
INSERT INTO public.action VALUES (2381, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...18aa26a4f2220e381af8bb873922aece59bd4ac5","Len":2}', 1704791224);
INSERT INTO public.action VALUES (2382, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...18aa26a4f2220e381af8bb873922aece59bd4ac5","Len":2}', 1704791224);
INSERT INTO public.action VALUES (2383, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...18aa26a4f2220e381af8bb873922aece59bd4ac5","Len":2}', 1704791224);
INSERT INTO public.action VALUES (2384, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...18aa26a4f2220e381af8bb873922aece59bd4ac5","Len":2}', 1704791224);
INSERT INTO public.action VALUES (2385, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...18aa26a4f2220e381af8bb873922aece59bd4ac5","Len":2}', 1704791224);
INSERT INTO public.action VALUES (2386, 9, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...18aa26a4f2220e381af8bb873922aece59bd4ac5","Len":2}', 1704791224);
INSERT INTO public.action VALUES (2408, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ca8a43c962e9597749bca9604a23617d805bae38","Message":"Merge pull request ''add list choose cs gdnn'' (#70) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/70\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T20:41:42+07:00"},{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"}],"HeadCommit":{"Sha1":"ca8a43c962e9597749bca9604a23617d805bae38","Message":"Merge pull request ''add list choose cs gdnn'' (#70) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/70\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T20:41:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/84e51ab1a10e1be4299a3924c9379a9732aa726b...ca8a43c962e9597749bca9604a23617d805bae38","Len":2}', 1704807710);
INSERT INTO public.action VALUES (2387, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},{"Sha1":"23affd0b78c2076c2baa3aefc0d18613b09f1bc7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:37+07:00"},{"Sha1":"7b8a440c77ff7429faebccbc1d1599aa34c13123","Message":"fix PheDuyetKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:10+07:00"}],"HeadCommit":{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3efeb98aa6e5f064a9ac0997551f9ef39a0c2609...11f6b26840584031c51dc4aaaaf912919fb5f87b","Len":3}', 1704802257);
INSERT INTO public.action VALUES (2388, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},{"Sha1":"23affd0b78c2076c2baa3aefc0d18613b09f1bc7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:37+07:00"},{"Sha1":"7b8a440c77ff7429faebccbc1d1599aa34c13123","Message":"fix PheDuyetKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:10+07:00"}],"HeadCommit":{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3efeb98aa6e5f064a9ac0997551f9ef39a0c2609...11f6b26840584031c51dc4aaaaf912919fb5f87b","Len":3}', 1704802257);
INSERT INTO public.action VALUES (2389, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},{"Sha1":"23affd0b78c2076c2baa3aefc0d18613b09f1bc7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:37+07:00"},{"Sha1":"7b8a440c77ff7429faebccbc1d1599aa34c13123","Message":"fix PheDuyetKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:10+07:00"}],"HeadCommit":{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3efeb98aa6e5f064a9ac0997551f9ef39a0c2609...11f6b26840584031c51dc4aaaaf912919fb5f87b","Len":3}', 1704802257);
INSERT INTO public.action VALUES (2390, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},{"Sha1":"23affd0b78c2076c2baa3aefc0d18613b09f1bc7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:37+07:00"},{"Sha1":"7b8a440c77ff7429faebccbc1d1599aa34c13123","Message":"fix PheDuyetKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:10+07:00"}],"HeadCommit":{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3efeb98aa6e5f064a9ac0997551f9ef39a0c2609...11f6b26840584031c51dc4aaaaf912919fb5f87b","Len":3}', 1704802257);
INSERT INTO public.action VALUES (2391, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},{"Sha1":"23affd0b78c2076c2baa3aefc0d18613b09f1bc7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:37+07:00"},{"Sha1":"7b8a440c77ff7429faebccbc1d1599aa34c13123","Message":"fix PheDuyetKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:10+07:00"}],"HeadCommit":{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3efeb98aa6e5f064a9ac0997551f9ef39a0c2609...11f6b26840584031c51dc4aaaaf912919fb5f87b","Len":3}', 1704802257);
INSERT INTO public.action VALUES (2431, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/152/head', false, '', 1704841256);
INSERT INTO public.action VALUES (2432, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/152/head', false, '', 1704841256);
INSERT INTO public.action VALUES (2433, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/152/head', false, '', 1704841256);
INSERT INTO public.action VALUES (2434, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/152/merge', false, '', 1704841256);
INSERT INTO public.action VALUES (2392, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},{"Sha1":"23affd0b78c2076c2baa3aefc0d18613b09f1bc7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:37+07:00"},{"Sha1":"7b8a440c77ff7429faebccbc1d1599aa34c13123","Message":"fix PheDuyetKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:10+07:00"}],"HeadCommit":{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3efeb98aa6e5f064a9ac0997551f9ef39a0c2609...11f6b26840584031c51dc4aaaaf912919fb5f87b","Len":3}', 1704802257);
INSERT INTO public.action VALUES (2393, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"}],"HeadCommit":{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ba7fc72161054e3a1085ed4b8c70d84198ce961b...18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Len":1}', 1704807655);
INSERT INTO public.action VALUES (2394, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"}],"HeadCommit":{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ba7fc72161054e3a1085ed4b8c70d84198ce961b...18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Len":1}', 1704807655);
INSERT INTO public.action VALUES (2395, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"}],"HeadCommit":{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ba7fc72161054e3a1085ed4b8c70d84198ce961b...18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Len":1}', 1704807655);
INSERT INTO public.action VALUES (2396, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"}],"HeadCommit":{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ba7fc72161054e3a1085ed4b8c70d84198ce961b...18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Len":1}', 1704807655);
INSERT INTO public.action VALUES (2397, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"}],"HeadCommit":{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ba7fc72161054e3a1085ed4b8c70d84198ce961b...18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Len":1}', 1704807655);
INSERT INTO public.action VALUES (2398, 11, 7, 11, 21, 0, false, '', false, '70|add list choose cs gdnn', 1704807691);
INSERT INTO public.action VALUES (2399, 14, 7, 11, 21, 0, false, '', false, '70|add list choose cs gdnn', 1704807691);
INSERT INTO public.action VALUES (2400, 16, 7, 11, 21, 0, false, '', false, '70|add list choose cs gdnn', 1704807691);
INSERT INTO public.action VALUES (2401, 1, 7, 11, 21, 0, false, '', false, '70|add list choose cs gdnn', 1704807691);
INSERT INTO public.action VALUES (2402, 5, 7, 11, 21, 0, false, '', false, '70|add list choose cs gdnn', 1704807691);
INSERT INTO public.action VALUES (2403, 11, 11, 11, 21, 0, false, '', false, '70|add list choose cs gdnn', 1704807708);
INSERT INTO public.action VALUES (2404, 14, 11, 11, 21, 0, false, '', false, '70|add list choose cs gdnn', 1704807708);
INSERT INTO public.action VALUES (2405, 16, 11, 11, 21, 0, false, '', false, '70|add list choose cs gdnn', 1704807708);
INSERT INTO public.action VALUES (2406, 1, 11, 11, 21, 0, false, '', false, '70|add list choose cs gdnn', 1704807708);
INSERT INTO public.action VALUES (2407, 5, 11, 11, 21, 0, false, '', false, '70|add list choose cs gdnn', 1704807708);
INSERT INTO public.action VALUES (2435, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/152/merge', false, '', 1704841256);
INSERT INTO public.action VALUES (2436, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/152/merge', false, '', 1704841256);
INSERT INTO public.action VALUES (2437, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/153/head', false, '', 1704841256);
INSERT INTO public.action VALUES (2438, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/153/head', false, '', 1704841256);
INSERT INTO public.action VALUES (2439, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/153/head', false, '', 1704841256);
INSERT INTO public.action VALUES (2440, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/153/merge', false, '', 1704841256);
INSERT INTO public.action VALUES (2409, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ca8a43c962e9597749bca9604a23617d805bae38","Message":"Merge pull request ''add list choose cs gdnn'' (#70) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/70\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T20:41:42+07:00"},{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"}],"HeadCommit":{"Sha1":"ca8a43c962e9597749bca9604a23617d805bae38","Message":"Merge pull request ''add list choose cs gdnn'' (#70) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/70\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T20:41:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/84e51ab1a10e1be4299a3924c9379a9732aa726b...ca8a43c962e9597749bca9604a23617d805bae38","Len":2}', 1704807710);
INSERT INTO public.action VALUES (2410, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ca8a43c962e9597749bca9604a23617d805bae38","Message":"Merge pull request ''add list choose cs gdnn'' (#70) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/70\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T20:41:42+07:00"},{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"}],"HeadCommit":{"Sha1":"ca8a43c962e9597749bca9604a23617d805bae38","Message":"Merge pull request ''add list choose cs gdnn'' (#70) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/70\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T20:41:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/84e51ab1a10e1be4299a3924c9379a9732aa726b...ca8a43c962e9597749bca9604a23617d805bae38","Len":2}', 1704807710);
INSERT INTO public.action VALUES (2411, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ca8a43c962e9597749bca9604a23617d805bae38","Message":"Merge pull request ''add list choose cs gdnn'' (#70) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/70\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T20:41:42+07:00"},{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"}],"HeadCommit":{"Sha1":"ca8a43c962e9597749bca9604a23617d805bae38","Message":"Merge pull request ''add list choose cs gdnn'' (#70) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/70\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T20:41:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/84e51ab1a10e1be4299a3924c9379a9732aa726b...ca8a43c962e9597749bca9604a23617d805bae38","Len":2}', 1704807710);
INSERT INTO public.action VALUES (2412, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ca8a43c962e9597749bca9604a23617d805bae38","Message":"Merge pull request ''add list choose cs gdnn'' (#70) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/70\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T20:41:42+07:00"},{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"}],"HeadCommit":{"Sha1":"ca8a43c962e9597749bca9604a23617d805bae38","Message":"Merge pull request ''add list choose cs gdnn'' (#70) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/70\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T20:41:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/84e51ab1a10e1be4299a3924c9379a9732aa726b...ca8a43c962e9597749bca9604a23617d805bae38","Len":2}', 1704807710);
INSERT INTO public.action VALUES (2413, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/157/head', false, '', 1704811855);
INSERT INTO public.action VALUES (2414, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/157/head', false, '', 1704811855);
INSERT INTO public.action VALUES (2415, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/157/head', false, '', 1704811855);
INSERT INTO public.action VALUES (2416, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/157/merge', false, '', 1704811855);
INSERT INTO public.action VALUES (2417, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/157/merge', false, '', 1704811855);
INSERT INTO public.action VALUES (2418, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/157/merge', false, '', 1704811855);
INSERT INTO public.action VALUES (2419, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/158/head', false, '', 1704811855);
INSERT INTO public.action VALUES (2420, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/158/head', false, '', 1704811855);
INSERT INTO public.action VALUES (2421, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/158/head', false, '', 1704811855);
INSERT INTO public.action VALUES (2422, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/158/merge', false, '', 1704811855);
INSERT INTO public.action VALUES (2423, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/158/merge', false, '', 1704811855);
INSERT INTO public.action VALUES (2424, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/158/merge', false, '', 1704811855);
INSERT INTO public.action VALUES (2425, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/151/head', false, '', 1704841255);
INSERT INTO public.action VALUES (2426, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/151/head', false, '', 1704841255);
INSERT INTO public.action VALUES (2427, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/151/head', false, '', 1704841255);
INSERT INTO public.action VALUES (2428, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/151/merge', false, '', 1704841256);
INSERT INTO public.action VALUES (2429, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/151/merge', false, '', 1704841256);
INSERT INTO public.action VALUES (2430, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/151/merge', false, '', 1704841256);
INSERT INTO public.action VALUES (2461, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"}],"HeadCommit":{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"},"CompareURL":"khieu-nai/backend/compare/5f287cf162a6f7e4bac0eda6ca78603b02665568...e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Len":1}', 1704849359);
INSERT INTO public.action VALUES (2462, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"}],"HeadCommit":{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"},"CompareURL":"khieu-nai/backend/compare/5f287cf162a6f7e4bac0eda6ca78603b02665568...e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Len":1}', 1704849359);
INSERT INTO public.action VALUES (2463, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"}],"HeadCommit":{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"},"CompareURL":"khieu-nai/backend/compare/5f287cf162a6f7e4bac0eda6ca78603b02665568...e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Len":1}', 1704849359);
INSERT INTO public.action VALUES (2464, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"}],"HeadCommit":{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"},"CompareURL":"khieu-nai/backend/compare/5f287cf162a6f7e4bac0eda6ca78603b02665568...e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Len":1}', 1704849359);
INSERT INTO public.action VALUES (2465, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"}],"HeadCommit":{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"},"CompareURL":"khieu-nai/backend/compare/5f287cf162a6f7e4bac0eda6ca78603b02665568...e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Len":1}', 1704849359);
INSERT INTO public.action VALUES (2466, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"}],"HeadCommit":{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"},"CompareURL":"khieu-nai/backend/compare/5f287cf162a6f7e4bac0eda6ca78603b02665568...e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Len":1}', 1704849359);
INSERT INTO public.action VALUES (2467, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"}],"HeadCommit":{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/18d73caa2573e24d8b765dbac7ddb10d036a7e2c...60913e501d422158067d25f877b8db01f2433abe","Len":1}', 1704853810);
INSERT INTO public.action VALUES (2468, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"}],"HeadCommit":{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/18d73caa2573e24d8b765dbac7ddb10d036a7e2c...60913e501d422158067d25f877b8db01f2433abe","Len":1}', 1704853810);
INSERT INTO public.action VALUES (2469, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"}],"HeadCommit":{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/18d73caa2573e24d8b765dbac7ddb10d036a7e2c...60913e501d422158067d25f877b8db01f2433abe","Len":1}', 1704853810);
INSERT INTO public.action VALUES (2556, 14, 7, 11, 21, 0, false, '', false, '74|update search menu', 1704870391);
INSERT INTO public.action VALUES (2557, 16, 7, 11, 21, 0, false, '', false, '74|update search menu', 1704870391);
INSERT INTO public.action VALUES (2558, 1, 7, 11, 21, 0, false, '', false, '74|update search menu', 1704870391);
INSERT INTO public.action VALUES (2559, 5, 7, 11, 21, 0, false, '', false, '74|update search menu', 1704870391);
INSERT INTO public.action VALUES (2560, 11, 11, 11, 21, 0, false, '', false, '74|update search menu', 1704870509);
INSERT INTO public.action VALUES (2470, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"}],"HeadCommit":{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/18d73caa2573e24d8b765dbac7ddb10d036a7e2c...60913e501d422158067d25f877b8db01f2433abe","Len":1}', 1704853810);
INSERT INTO public.action VALUES (2471, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"}],"HeadCommit":{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/18d73caa2573e24d8b765dbac7ddb10d036a7e2c...60913e501d422158067d25f877b8db01f2433abe","Len":1}', 1704853810);
INSERT INTO public.action VALUES (2472, 11, 7, 11, 21, 0, false, '', false, '71|add btn gui mail nhac nho', 1704853905);
INSERT INTO public.action VALUES (2473, 14, 7, 11, 21, 0, false, '', false, '71|add btn gui mail nhac nho', 1704853905);
INSERT INTO public.action VALUES (2474, 16, 7, 11, 21, 0, false, '', false, '71|add btn gui mail nhac nho', 1704853905);
INSERT INTO public.action VALUES (2475, 1, 7, 11, 21, 0, false, '', false, '71|add btn gui mail nhac nho', 1704853905);
INSERT INTO public.action VALUES (2476, 5, 7, 11, 21, 0, false, '', false, '71|add btn gui mail nhac nho', 1704853905);
INSERT INTO public.action VALUES (2477, 11, 11, 11, 21, 0, false, '', false, '71|add btn gui mail nhac nho', 1704853919);
INSERT INTO public.action VALUES (2478, 14, 11, 11, 21, 0, false, '', false, '71|add btn gui mail nhac nho', 1704853919);
INSERT INTO public.action VALUES (2479, 16, 11, 11, 21, 0, false, '', false, '71|add btn gui mail nhac nho', 1704853919);
INSERT INTO public.action VALUES (2480, 1, 11, 11, 21, 0, false, '', false, '71|add btn gui mail nhac nho', 1704853919);
INSERT INTO public.action VALUES (2481, 5, 11, 11, 21, 0, false, '', false, '71|add btn gui mail nhac nho', 1704853919);
INSERT INTO public.action VALUES (2482, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1669b03cec92558923e86c96f89e177f983d7e66","Message":"Merge pull request ''add btn gui mail nhac nho'' (#71) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/71\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:31:53+07:00"},{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"}],"HeadCommit":{"Sha1":"1669b03cec92558923e86c96f89e177f983d7e66","Message":"Merge pull request ''add btn gui mail nhac nho'' (#71) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/71\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:31:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ca8a43c962e9597749bca9604a23617d805bae38...1669b03cec92558923e86c96f89e177f983d7e66","Len":2}', 1704853919);
INSERT INTO public.action VALUES (2483, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1669b03cec92558923e86c96f89e177f983d7e66","Message":"Merge pull request ''add btn gui mail nhac nho'' (#71) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/71\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:31:53+07:00"},{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"}],"HeadCommit":{"Sha1":"1669b03cec92558923e86c96f89e177f983d7e66","Message":"Merge pull request ''add btn gui mail nhac nho'' (#71) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/71\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:31:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ca8a43c962e9597749bca9604a23617d805bae38...1669b03cec92558923e86c96f89e177f983d7e66","Len":2}', 1704853919);
INSERT INTO public.action VALUES (2484, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1669b03cec92558923e86c96f89e177f983d7e66","Message":"Merge pull request ''add btn gui mail nhac nho'' (#71) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/71\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:31:53+07:00"},{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"}],"HeadCommit":{"Sha1":"1669b03cec92558923e86c96f89e177f983d7e66","Message":"Merge pull request ''add btn gui mail nhac nho'' (#71) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/71\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:31:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ca8a43c962e9597749bca9604a23617d805bae38...1669b03cec92558923e86c96f89e177f983d7e66","Len":2}', 1704853919);
INSERT INTO public.action VALUES (2497, 11, 11, 11, 21, 0, false, '', false, '72|fix thong bao loi hs + nha giao', 1704854953);
INSERT INTO public.action VALUES (2498, 14, 11, 11, 21, 0, false, '', false, '72|fix thong bao loi hs + nha giao', 1704854953);
INSERT INTO public.action VALUES (2499, 16, 11, 11, 21, 0, false, '', false, '72|fix thong bao loi hs + nha giao', 1704854953);
INSERT INTO public.action VALUES (2500, 1, 11, 11, 21, 0, false, '', false, '72|fix thong bao loi hs + nha giao', 1704854953);
INSERT INTO public.action VALUES (2501, 5, 11, 11, 21, 0, false, '', false, '72|fix thong bao loi hs + nha giao', 1704854953);
INSERT INTO public.action VALUES (2561, 14, 11, 11, 21, 0, false, '', false, '74|update search menu', 1704870509);
INSERT INTO public.action VALUES (2485, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1669b03cec92558923e86c96f89e177f983d7e66","Message":"Merge pull request ''add btn gui mail nhac nho'' (#71) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/71\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:31:53+07:00"},{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"}],"HeadCommit":{"Sha1":"1669b03cec92558923e86c96f89e177f983d7e66","Message":"Merge pull request ''add btn gui mail nhac nho'' (#71) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/71\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:31:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ca8a43c962e9597749bca9604a23617d805bae38...1669b03cec92558923e86c96f89e177f983d7e66","Len":2}', 1704853919);
INSERT INTO public.action VALUES (2486, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1669b03cec92558923e86c96f89e177f983d7e66","Message":"Merge pull request ''add btn gui mail nhac nho'' (#71) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/71\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:31:53+07:00"},{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"}],"HeadCommit":{"Sha1":"1669b03cec92558923e86c96f89e177f983d7e66","Message":"Merge pull request ''add btn gui mail nhac nho'' (#71) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/71\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:31:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ca8a43c962e9597749bca9604a23617d805bae38...1669b03cec92558923e86c96f89e177f983d7e66","Len":2}', 1704853919);
INSERT INTO public.action VALUES (2487, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"}],"HeadCommit":{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/60913e501d422158067d25f877b8db01f2433abe...919d45696e37045a2346ec721738b205ccb683a6","Len":1}', 1704854911);
INSERT INTO public.action VALUES (2488, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"}],"HeadCommit":{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/60913e501d422158067d25f877b8db01f2433abe...919d45696e37045a2346ec721738b205ccb683a6","Len":1}', 1704854911);
INSERT INTO public.action VALUES (2489, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"}],"HeadCommit":{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/60913e501d422158067d25f877b8db01f2433abe...919d45696e37045a2346ec721738b205ccb683a6","Len":1}', 1704854911);
INSERT INTO public.action VALUES (2490, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"}],"HeadCommit":{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/60913e501d422158067d25f877b8db01f2433abe...919d45696e37045a2346ec721738b205ccb683a6","Len":1}', 1704854911);
INSERT INTO public.action VALUES (2491, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"}],"HeadCommit":{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/60913e501d422158067d25f877b8db01f2433abe...919d45696e37045a2346ec721738b205ccb683a6","Len":1}', 1704854911);
INSERT INTO public.action VALUES (2492, 11, 7, 11, 21, 0, false, '', false, '72|fix thong bao loi hs + nha giao', 1704854938);
INSERT INTO public.action VALUES (2493, 14, 7, 11, 21, 0, false, '', false, '72|fix thong bao loi hs + nha giao', 1704854938);
INSERT INTO public.action VALUES (2494, 16, 7, 11, 21, 0, false, '', false, '72|fix thong bao loi hs + nha giao', 1704854938);
INSERT INTO public.action VALUES (2495, 1, 7, 11, 21, 0, false, '', false, '72|fix thong bao loi hs + nha giao', 1704854938);
INSERT INTO public.action VALUES (2502, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Message":"Merge pull request ''fix thong bao loi hs + nha giao'' (#72) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/72\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:49:07+07:00"},{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"}],"HeadCommit":{"Sha1":"2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Message":"Merge pull request ''fix thong bao loi hs + nha giao'' (#72) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/72\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:49:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1669b03cec92558923e86c96f89e177f983d7e66...2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Len":2}', 1704854954);
INSERT INTO public.action VALUES (2503, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Message":"Merge pull request ''fix thong bao loi hs + nha giao'' (#72) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/72\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:49:07+07:00"},{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"}],"HeadCommit":{"Sha1":"2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Message":"Merge pull request ''fix thong bao loi hs + nha giao'' (#72) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/72\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:49:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1669b03cec92558923e86c96f89e177f983d7e66...2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Len":2}', 1704854954);
INSERT INTO public.action VALUES (2504, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Message":"Merge pull request ''fix thong bao loi hs + nha giao'' (#72) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/72\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:49:07+07:00"},{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"}],"HeadCommit":{"Sha1":"2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Message":"Merge pull request ''fix thong bao loi hs + nha giao'' (#72) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/72\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:49:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1669b03cec92558923e86c96f89e177f983d7e66...2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Len":2}', 1704854954);
INSERT INTO public.action VALUES (2505, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Message":"Merge pull request ''fix thong bao loi hs + nha giao'' (#72) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/72\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:49:07+07:00"},{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"}],"HeadCommit":{"Sha1":"2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Message":"Merge pull request ''fix thong bao loi hs + nha giao'' (#72) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/72\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:49:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1669b03cec92558923e86c96f89e177f983d7e66...2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Len":2}', 1704854954);
INSERT INTO public.action VALUES (2506, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Message":"Merge pull request ''fix thong bao loi hs + nha giao'' (#72) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/72\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:49:07+07:00"},{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"}],"HeadCommit":{"Sha1":"2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Message":"Merge pull request ''fix thong bao loi hs + nha giao'' (#72) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/72\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:49:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1669b03cec92558923e86c96f89e177f983d7e66...2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Len":2}', 1704854954);
INSERT INTO public.action VALUES (2562, 16, 11, 11, 21, 0, false, '', false, '74|update search menu', 1704870509);
INSERT INTO public.action VALUES (2563, 1, 11, 11, 21, 0, false, '', false, '74|update search menu', 1704870509);
INSERT INTO public.action VALUES (2564, 5, 11, 11, 21, 0, false, '', false, '74|update search menu', 1704870509);
INSERT INTO public.action VALUES (3143, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/132/merge', false, '', 1705105570);
INSERT INTO public.action VALUES (3144, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/132/merge', false, '', 1705105570);
INSERT INTO public.action VALUES (3145, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/132/merge', false, '', 1705105570);
INSERT INTO public.action VALUES (3223, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/121/head', false, '', 1705164372);
INSERT INTO public.action VALUES (2507, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"}],"HeadCommit":{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/919d45696e37045a2346ec721738b205ccb683a6...70f24e6d6cf607b25226c6469303429543dc99e2","Len":1}', 1704858985);
INSERT INTO public.action VALUES (2508, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"}],"HeadCommit":{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/919d45696e37045a2346ec721738b205ccb683a6...70f24e6d6cf607b25226c6469303429543dc99e2","Len":1}', 1704858985);
INSERT INTO public.action VALUES (2509, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"}],"HeadCommit":{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/919d45696e37045a2346ec721738b205ccb683a6...70f24e6d6cf607b25226c6469303429543dc99e2","Len":1}', 1704858985);
INSERT INTO public.action VALUES (2510, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"}],"HeadCommit":{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/919d45696e37045a2346ec721738b205ccb683a6...70f24e6d6cf607b25226c6469303429543dc99e2","Len":1}', 1704858985);
INSERT INTO public.action VALUES (2511, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"}],"HeadCommit":{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/919d45696e37045a2346ec721738b205ccb683a6...70f24e6d6cf607b25226c6469303429543dc99e2","Len":1}', 1704858985);
INSERT INTO public.action VALUES (2512, 15, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"},{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":4}', 1704860399);
INSERT INTO public.action VALUES (2513, 12, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"},{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":4}', 1704860399);
INSERT INTO public.action VALUES (2570, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/149/head', false, '', 1704870655);
INSERT INTO public.action VALUES (2514, 2, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"},{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":4}', 1704860399);
INSERT INTO public.action VALUES (2515, 1, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"},{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":4}', 1704860399);
INSERT INTO public.action VALUES (2516, 5, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"},{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":4}', 1704860399);
INSERT INTO public.action VALUES (2517, 9, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"},{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":4}', 1704860399);
INSERT INTO public.action VALUES (2518, 15, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/18aa26a4f2220e381af8bb873922aece59bd4ac5...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":2}', 1704860458);
INSERT INTO public.action VALUES (2571, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/149/head', false, '', 1704870655);
INSERT INTO public.action VALUES (2519, 12, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/18aa26a4f2220e381af8bb873922aece59bd4ac5...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":2}', 1704860458);
INSERT INTO public.action VALUES (2520, 2, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/18aa26a4f2220e381af8bb873922aece59bd4ac5...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":2}', 1704860458);
INSERT INTO public.action VALUES (2521, 1, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/18aa26a4f2220e381af8bb873922aece59bd4ac5...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":2}', 1704860458);
INSERT INTO public.action VALUES (2522, 5, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/18aa26a4f2220e381af8bb873922aece59bd4ac5...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":2}', 1704860458);
INSERT INTO public.action VALUES (2523, 9, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/18aa26a4f2220e381af8bb873922aece59bd4ac5...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":2}', 1704860458);
INSERT INTO public.action VALUES (2524, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},{"Sha1":"2364649e3ae48916acf9b3affbdc0cc1f63ab1dd","Message":"update baocao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:00+07:00"}],"HeadCommit":{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/11f6b26840584031c51dc4aaaaf912919fb5f87b...6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Len":2}', 1704861056);
INSERT INTO public.action VALUES (2525, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},{"Sha1":"2364649e3ae48916acf9b3affbdc0cc1f63ab1dd","Message":"update baocao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:00+07:00"}],"HeadCommit":{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/11f6b26840584031c51dc4aaaaf912919fb5f87b...6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Len":2}', 1704861056);
INSERT INTO public.action VALUES (2572, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/149/head', false, '', 1704870655);
INSERT INTO public.action VALUES (2573, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/149/merge', false, '', 1704870655);
INSERT INTO public.action VALUES (2574, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/149/merge', false, '', 1704870655);
INSERT INTO public.action VALUES (2526, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},{"Sha1":"2364649e3ae48916acf9b3affbdc0cc1f63ab1dd","Message":"update baocao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:00+07:00"}],"HeadCommit":{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/11f6b26840584031c51dc4aaaaf912919fb5f87b...6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Len":2}', 1704861056);
INSERT INTO public.action VALUES (2527, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},{"Sha1":"2364649e3ae48916acf9b3affbdc0cc1f63ab1dd","Message":"update baocao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:00+07:00"}],"HeadCommit":{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/11f6b26840584031c51dc4aaaaf912919fb5f87b...6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Len":2}', 1704861056);
INSERT INTO public.action VALUES (2528, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},{"Sha1":"2364649e3ae48916acf9b3affbdc0cc1f63ab1dd","Message":"update baocao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:00+07:00"}],"HeadCommit":{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/11f6b26840584031c51dc4aaaaf912919fb5f87b...6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Len":2}', 1704861056);
INSERT INTO public.action VALUES (2529, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},{"Sha1":"2364649e3ae48916acf9b3affbdc0cc1f63ab1dd","Message":"update baocao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:00+07:00"}],"HeadCommit":{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/11f6b26840584031c51dc4aaaaf912919fb5f87b...6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Len":2}', 1704861056);
INSERT INTO public.action VALUES (2530, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"}],"HeadCommit":{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/70f24e6d6cf607b25226c6469303429543dc99e2...a537b38790dca067cd5d107807932adb39f23a99","Len":1}', 1704868481);
INSERT INTO public.action VALUES (2531, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"}],"HeadCommit":{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/70f24e6d6cf607b25226c6469303429543dc99e2...a537b38790dca067cd5d107807932adb39f23a99","Len":1}', 1704868481);
INSERT INTO public.action VALUES (2532, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"}],"HeadCommit":{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/70f24e6d6cf607b25226c6469303429543dc99e2...a537b38790dca067cd5d107807932adb39f23a99","Len":1}', 1704868481);
INSERT INTO public.action VALUES (2533, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"}],"HeadCommit":{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/70f24e6d6cf607b25226c6469303429543dc99e2...a537b38790dca067cd5d107807932adb39f23a99","Len":1}', 1704868481);
INSERT INTO public.action VALUES (2575, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/149/merge', false, '', 1704870655);
INSERT INTO public.action VALUES (2576, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/150/head', false, '', 1704870655);
INSERT INTO public.action VALUES (2577, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/150/head', false, '', 1704870655);
INSERT INTO public.action VALUES (2578, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/150/head', false, '', 1704870655);
INSERT INTO public.action VALUES (2534, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"}],"HeadCommit":{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/70f24e6d6cf607b25226c6469303429543dc99e2...a537b38790dca067cd5d107807932adb39f23a99","Len":1}', 1704868481);
INSERT INTO public.action VALUES (2535, 11, 7, 11, 21, 0, false, '', false, '73|thinh', 1704868563);
INSERT INTO public.action VALUES (2536, 14, 7, 11, 21, 0, false, '', false, '73|thinh', 1704868563);
INSERT INTO public.action VALUES (2537, 16, 7, 11, 21, 0, false, '', false, '73|thinh', 1704868563);
INSERT INTO public.action VALUES (2538, 1, 7, 11, 21, 0, false, '', false, '73|thinh', 1704868563);
INSERT INTO public.action VALUES (2539, 5, 7, 11, 21, 0, false, '', false, '73|thinh', 1704868563);
INSERT INTO public.action VALUES (2540, 11, 11, 11, 21, 0, false, '', false, '73|thinh', 1704868579);
INSERT INTO public.action VALUES (2541, 14, 11, 11, 21, 0, false, '', false, '73|thinh', 1704868579);
INSERT INTO public.action VALUES (2542, 16, 11, 11, 21, 0, false, '', false, '73|thinh', 1704868579);
INSERT INTO public.action VALUES (2543, 1, 11, 11, 21, 0, false, '', false, '73|thinh', 1704868579);
INSERT INTO public.action VALUES (2544, 5, 11, 11, 21, 0, false, '', false, '73|thinh', 1704868579);
INSERT INTO public.action VALUES (2545, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"221a94ac133d4b35ce6145276c4094662a6fe4d1","Message":"Merge pull request ''thinh'' (#73) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/73\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T13:36:13+07:00"},{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"},{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"}],"HeadCommit":{"Sha1":"221a94ac133d4b35ce6145276c4094662a6fe4d1","Message":"Merge pull request ''thinh'' (#73) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/73\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T13:36:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2450107fb2f67f6adad8cfe8683ded6dce63a0a2...221a94ac133d4b35ce6145276c4094662a6fe4d1","Len":3}', 1704868580);
INSERT INTO public.action VALUES (2546, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"221a94ac133d4b35ce6145276c4094662a6fe4d1","Message":"Merge pull request ''thinh'' (#73) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/73\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T13:36:13+07:00"},{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"},{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"}],"HeadCommit":{"Sha1":"221a94ac133d4b35ce6145276c4094662a6fe4d1","Message":"Merge pull request ''thinh'' (#73) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/73\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T13:36:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2450107fb2f67f6adad8cfe8683ded6dce63a0a2...221a94ac133d4b35ce6145276c4094662a6fe4d1","Len":3}', 1704868580);
INSERT INTO public.action VALUES (2547, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"221a94ac133d4b35ce6145276c4094662a6fe4d1","Message":"Merge pull request ''thinh'' (#73) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/73\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T13:36:13+07:00"},{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"},{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"}],"HeadCommit":{"Sha1":"221a94ac133d4b35ce6145276c4094662a6fe4d1","Message":"Merge pull request ''thinh'' (#73) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/73\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T13:36:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2450107fb2f67f6adad8cfe8683ded6dce63a0a2...221a94ac133d4b35ce6145276c4094662a6fe4d1","Len":3}', 1704868580);
INSERT INTO public.action VALUES (2579, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/150/merge', false, '', 1704870655);
INSERT INTO public.action VALUES (2580, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/150/merge', false, '', 1704870655);
INSERT INTO public.action VALUES (2581, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/150/merge', false, '', 1704870655);
INSERT INTO public.action VALUES (3146, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/123/head', false, '', 1705134970);
INSERT INTO public.action VALUES (3147, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/123/head', false, '', 1705134970);
INSERT INTO public.action VALUES (3148, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/123/head', false, '', 1705134970);
INSERT INTO public.action VALUES (3149, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/123/merge', false, '', 1705134971);
INSERT INTO public.action VALUES (3150, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/123/merge', false, '', 1705134971);
INSERT INTO public.action VALUES (2548, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"221a94ac133d4b35ce6145276c4094662a6fe4d1","Message":"Merge pull request ''thinh'' (#73) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/73\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T13:36:13+07:00"},{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"},{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"}],"HeadCommit":{"Sha1":"221a94ac133d4b35ce6145276c4094662a6fe4d1","Message":"Merge pull request ''thinh'' (#73) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/73\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T13:36:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2450107fb2f67f6adad8cfe8683ded6dce63a0a2...221a94ac133d4b35ce6145276c4094662a6fe4d1","Len":3}', 1704868580);
INSERT INTO public.action VALUES (2549, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"221a94ac133d4b35ce6145276c4094662a6fe4d1","Message":"Merge pull request ''thinh'' (#73) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/73\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T13:36:13+07:00"},{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"},{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"}],"HeadCommit":{"Sha1":"221a94ac133d4b35ce6145276c4094662a6fe4d1","Message":"Merge pull request ''thinh'' (#73) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/73\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T13:36:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2450107fb2f67f6adad8cfe8683ded6dce63a0a2...221a94ac133d4b35ce6145276c4094662a6fe4d1","Len":3}', 1704868580);
INSERT INTO public.action VALUES (2550, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"}],"HeadCommit":{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a537b38790dca067cd5d107807932adb39f23a99...adee15cab9cef8728d2dbce1099fb43c2a2efabf","Len":1}', 1704870136);
INSERT INTO public.action VALUES (2551, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"}],"HeadCommit":{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a537b38790dca067cd5d107807932adb39f23a99...adee15cab9cef8728d2dbce1099fb43c2a2efabf","Len":1}', 1704870136);
INSERT INTO public.action VALUES (2552, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"}],"HeadCommit":{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a537b38790dca067cd5d107807932adb39f23a99...adee15cab9cef8728d2dbce1099fb43c2a2efabf","Len":1}', 1704870136);
INSERT INTO public.action VALUES (2553, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"}],"HeadCommit":{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a537b38790dca067cd5d107807932adb39f23a99...adee15cab9cef8728d2dbce1099fb43c2a2efabf","Len":1}', 1704870136);
INSERT INTO public.action VALUES (2554, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"}],"HeadCommit":{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a537b38790dca067cd5d107807932adb39f23a99...adee15cab9cef8728d2dbce1099fb43c2a2efabf","Len":1}', 1704870136);
INSERT INTO public.action VALUES (2555, 11, 7, 11, 21, 0, false, '', false, '74|update search menu', 1704870391);
INSERT INTO public.action VALUES (2565, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"07b329f3e772c8eefb2d36090487965eef74c9e4","Message":"Merge pull request ''update search menu'' (#74) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/74\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T14:08:24+07:00"},{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"}],"HeadCommit":{"Sha1":"07b329f3e772c8eefb2d36090487965eef74c9e4","Message":"Merge pull request ''update search menu'' (#74) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/74\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T14:08:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/221a94ac133d4b35ce6145276c4094662a6fe4d1...07b329f3e772c8eefb2d36090487965eef74c9e4","Len":2}', 1704870510);
INSERT INTO public.action VALUES (2566, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"07b329f3e772c8eefb2d36090487965eef74c9e4","Message":"Merge pull request ''update search menu'' (#74) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/74\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T14:08:24+07:00"},{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"}],"HeadCommit":{"Sha1":"07b329f3e772c8eefb2d36090487965eef74c9e4","Message":"Merge pull request ''update search menu'' (#74) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/74\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T14:08:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/221a94ac133d4b35ce6145276c4094662a6fe4d1...07b329f3e772c8eefb2d36090487965eef74c9e4","Len":2}', 1704870510);
INSERT INTO public.action VALUES (2567, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"07b329f3e772c8eefb2d36090487965eef74c9e4","Message":"Merge pull request ''update search menu'' (#74) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/74\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T14:08:24+07:00"},{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"}],"HeadCommit":{"Sha1":"07b329f3e772c8eefb2d36090487965eef74c9e4","Message":"Merge pull request ''update search menu'' (#74) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/74\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T14:08:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/221a94ac133d4b35ce6145276c4094662a6fe4d1...07b329f3e772c8eefb2d36090487965eef74c9e4","Len":2}', 1704870510);
INSERT INTO public.action VALUES (2568, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"07b329f3e772c8eefb2d36090487965eef74c9e4","Message":"Merge pull request ''update search menu'' (#74) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/74\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T14:08:24+07:00"},{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"}],"HeadCommit":{"Sha1":"07b329f3e772c8eefb2d36090487965eef74c9e4","Message":"Merge pull request ''update search menu'' (#74) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/74\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T14:08:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/221a94ac133d4b35ce6145276c4094662a6fe4d1...07b329f3e772c8eefb2d36090487965eef74c9e4","Len":2}', 1704870510);
INSERT INTO public.action VALUES (2569, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"07b329f3e772c8eefb2d36090487965eef74c9e4","Message":"Merge pull request ''update search menu'' (#74) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/74\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T14:08:24+07:00"},{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"}],"HeadCommit":{"Sha1":"07b329f3e772c8eefb2d36090487965eef74c9e4","Message":"Merge pull request ''update search menu'' (#74) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/74\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T14:08:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/221a94ac133d4b35ce6145276c4094662a6fe4d1...07b329f3e772c8eefb2d36090487965eef74c9e4","Len":2}', 1704870510);
INSERT INTO public.action VALUES (2582, 15, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876276);
INSERT INTO public.action VALUES (3151, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/123/merge', false, '', 1705134971);
INSERT INTO public.action VALUES (2583, 12, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876276);
INSERT INTO public.action VALUES (2584, 2, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876276);
INSERT INTO public.action VALUES (2585, 1, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876276);
INSERT INTO public.action VALUES (2586, 5, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876276);
INSERT INTO public.action VALUES (2587, 9, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876276);
INSERT INTO public.action VALUES (2588, 15, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876311);
INSERT INTO public.action VALUES (2589, 12, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876311);
INSERT INTO public.action VALUES (2590, 2, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876311);
INSERT INTO public.action VALUES (2591, 1, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876311);
INSERT INTO public.action VALUES (3152, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/124/head', false, '', 1705134971);
INSERT INTO public.action VALUES (3153, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/124/head', false, '', 1705134971);
INSERT INTO public.action VALUES (3154, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/124/head', false, '', 1705134971);
INSERT INTO public.action VALUES (2592, 5, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876311);
INSERT INTO public.action VALUES (2593, 9, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876311);
INSERT INTO public.action VALUES (2594, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"}],"HeadCommit":{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/adee15cab9cef8728d2dbce1099fb43c2a2efabf...e3e580b4e1bedadc760640fc3572e51a2a805b27","Len":1}', 1704878169);
INSERT INTO public.action VALUES (2595, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"}],"HeadCommit":{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/adee15cab9cef8728d2dbce1099fb43c2a2efabf...e3e580b4e1bedadc760640fc3572e51a2a805b27","Len":1}', 1704878169);
INSERT INTO public.action VALUES (2596, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"}],"HeadCommit":{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/adee15cab9cef8728d2dbce1099fb43c2a2efabf...e3e580b4e1bedadc760640fc3572e51a2a805b27","Len":1}', 1704878169);
INSERT INTO public.action VALUES (2597, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"}],"HeadCommit":{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/adee15cab9cef8728d2dbce1099fb43c2a2efabf...e3e580b4e1bedadc760640fc3572e51a2a805b27","Len":1}', 1704878169);
INSERT INTO public.action VALUES (2598, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"}],"HeadCommit":{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/adee15cab9cef8728d2dbce1099fb43c2a2efabf...e3e580b4e1bedadc760640fc3572e51a2a805b27","Len":1}', 1704878169);
INSERT INTO public.action VALUES (2599, 11, 7, 11, 21, 0, false, '', false, '75|add bao cao', 1704878198);
INSERT INTO public.action VALUES (2600, 14, 7, 11, 21, 0, false, '', false, '75|add bao cao', 1704878198);
INSERT INTO public.action VALUES (2601, 16, 7, 11, 21, 0, false, '', false, '75|add bao cao', 1704878198);
INSERT INTO public.action VALUES (2602, 1, 7, 11, 21, 0, false, '', false, '75|add bao cao', 1704878198);
INSERT INTO public.action VALUES (2603, 5, 7, 11, 21, 0, false, '', false, '75|add bao cao', 1704878198);
INSERT INTO public.action VALUES (2604, 11, 11, 11, 21, 0, false, '', false, '75|add bao cao', 1704878217);
INSERT INTO public.action VALUES (2605, 14, 11, 11, 21, 0, false, '', false, '75|add bao cao', 1704878217);
INSERT INTO public.action VALUES (2606, 16, 11, 11, 21, 0, false, '', false, '75|add bao cao', 1704878217);
INSERT INTO public.action VALUES (2607, 1, 11, 11, 21, 0, false, '', false, '75|add bao cao', 1704878217);
INSERT INTO public.action VALUES (2608, 5, 11, 11, 21, 0, false, '', false, '75|add bao cao', 1704878217);
INSERT INTO public.action VALUES (2638, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"}],"HeadCommit":{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/6288fef2f7b3c22aa70ba1038d18cbb1a7940c63...f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Len":1}', 1704890457);
INSERT INTO public.action VALUES (2609, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8cb811be2927c486df5dbb09a8aa0a63535709d3","Message":"Merge pull request ''add bao cao'' (#75) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/75\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:16:51+07:00"},{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"}],"HeadCommit":{"Sha1":"8cb811be2927c486df5dbb09a8aa0a63535709d3","Message":"Merge pull request ''add bao cao'' (#75) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/75\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:16:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/07b329f3e772c8eefb2d36090487965eef74c9e4...8cb811be2927c486df5dbb09a8aa0a63535709d3","Len":2}', 1704878218);
INSERT INTO public.action VALUES (2610, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8cb811be2927c486df5dbb09a8aa0a63535709d3","Message":"Merge pull request ''add bao cao'' (#75) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/75\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:16:51+07:00"},{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"}],"HeadCommit":{"Sha1":"8cb811be2927c486df5dbb09a8aa0a63535709d3","Message":"Merge pull request ''add bao cao'' (#75) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/75\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:16:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/07b329f3e772c8eefb2d36090487965eef74c9e4...8cb811be2927c486df5dbb09a8aa0a63535709d3","Len":2}', 1704878218);
INSERT INTO public.action VALUES (2611, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8cb811be2927c486df5dbb09a8aa0a63535709d3","Message":"Merge pull request ''add bao cao'' (#75) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/75\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:16:51+07:00"},{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"}],"HeadCommit":{"Sha1":"8cb811be2927c486df5dbb09a8aa0a63535709d3","Message":"Merge pull request ''add bao cao'' (#75) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/75\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:16:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/07b329f3e772c8eefb2d36090487965eef74c9e4...8cb811be2927c486df5dbb09a8aa0a63535709d3","Len":2}', 1704878218);
INSERT INTO public.action VALUES (2612, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8cb811be2927c486df5dbb09a8aa0a63535709d3","Message":"Merge pull request ''add bao cao'' (#75) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/75\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:16:51+07:00"},{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"}],"HeadCommit":{"Sha1":"8cb811be2927c486df5dbb09a8aa0a63535709d3","Message":"Merge pull request ''add bao cao'' (#75) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/75\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:16:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/07b329f3e772c8eefb2d36090487965eef74c9e4...8cb811be2927c486df5dbb09a8aa0a63535709d3","Len":2}', 1704878218);
INSERT INTO public.action VALUES (2613, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8cb811be2927c486df5dbb09a8aa0a63535709d3","Message":"Merge pull request ''add bao cao'' (#75) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/75\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:16:51+07:00"},{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"}],"HeadCommit":{"Sha1":"8cb811be2927c486df5dbb09a8aa0a63535709d3","Message":"Merge pull request ''add bao cao'' (#75) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/75\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:16:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/07b329f3e772c8eefb2d36090487965eef74c9e4...8cb811be2927c486df5dbb09a8aa0a63535709d3","Len":2}', 1704878218);
INSERT INTO public.action VALUES (2614, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"}],"HeadCommit":{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3e580b4e1bedadc760640fc3572e51a2a805b27...b72b77ce6d6441f022c666171f558d3b6ff8994f","Len":1}', 1704878615);
INSERT INTO public.action VALUES (3155, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/124/merge', false, '', 1705134971);
INSERT INTO public.action VALUES (3156, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/124/merge', false, '', 1705134971);
INSERT INTO public.action VALUES (2615, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"}],"HeadCommit":{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3e580b4e1bedadc760640fc3572e51a2a805b27...b72b77ce6d6441f022c666171f558d3b6ff8994f","Len":1}', 1704878615);
INSERT INTO public.action VALUES (2616, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"}],"HeadCommit":{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3e580b4e1bedadc760640fc3572e51a2a805b27...b72b77ce6d6441f022c666171f558d3b6ff8994f","Len":1}', 1704878615);
INSERT INTO public.action VALUES (2617, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"}],"HeadCommit":{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3e580b4e1bedadc760640fc3572e51a2a805b27...b72b77ce6d6441f022c666171f558d3b6ff8994f","Len":1}', 1704878615);
INSERT INTO public.action VALUES (2618, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"}],"HeadCommit":{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3e580b4e1bedadc760640fc3572e51a2a805b27...b72b77ce6d6441f022c666171f558d3b6ff8994f","Len":1}', 1704878615);
INSERT INTO public.action VALUES (2619, 11, 7, 11, 21, 0, false, '', false, '76|fix info hoc vien', 1704878895);
INSERT INTO public.action VALUES (2620, 14, 7, 11, 21, 0, false, '', false, '76|fix info hoc vien', 1704878895);
INSERT INTO public.action VALUES (2621, 16, 7, 11, 21, 0, false, '', false, '76|fix info hoc vien', 1704878895);
INSERT INTO public.action VALUES (2622, 1, 7, 11, 21, 0, false, '', false, '76|fix info hoc vien', 1704878895);
INSERT INTO public.action VALUES (2623, 5, 7, 11, 21, 0, false, '', false, '76|fix info hoc vien', 1704878895);
INSERT INTO public.action VALUES (2624, 11, 11, 11, 21, 0, false, '', false, '76|fix info hoc vien', 1704878912);
INSERT INTO public.action VALUES (2625, 14, 11, 11, 21, 0, false, '', false, '76|fix info hoc vien', 1704878912);
INSERT INTO public.action VALUES (2626, 16, 11, 11, 21, 0, false, '', false, '76|fix info hoc vien', 1704878912);
INSERT INTO public.action VALUES (2627, 1, 11, 11, 21, 0, false, '', false, '76|fix info hoc vien', 1704878912);
INSERT INTO public.action VALUES (2628, 5, 11, 11, 21, 0, false, '', false, '76|fix info hoc vien', 1704878912);
INSERT INTO public.action VALUES (2629, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d8568ef2cb388ffa029778d557c778ce2efa3353","Message":"Merge pull request ''fix info hoc vien'' (#76) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/76\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:28:27+07:00"},{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"}],"HeadCommit":{"Sha1":"d8568ef2cb388ffa029778d557c778ce2efa3353","Message":"Merge pull request ''fix info hoc vien'' (#76) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/76\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:28:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8cb811be2927c486df5dbb09a8aa0a63535709d3...d8568ef2cb388ffa029778d557c778ce2efa3353","Len":2}', 1704878912);
INSERT INTO public.action VALUES (2630, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d8568ef2cb388ffa029778d557c778ce2efa3353","Message":"Merge pull request ''fix info hoc vien'' (#76) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/76\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:28:27+07:00"},{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"}],"HeadCommit":{"Sha1":"d8568ef2cb388ffa029778d557c778ce2efa3353","Message":"Merge pull request ''fix info hoc vien'' (#76) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/76\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:28:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8cb811be2927c486df5dbb09a8aa0a63535709d3...d8568ef2cb388ffa029778d557c778ce2efa3353","Len":2}', 1704878912);
INSERT INTO public.action VALUES (3157, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/124/merge', false, '', 1705134971);
INSERT INTO public.action VALUES (3158, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/125/head', false, '', 1705134971);
INSERT INTO public.action VALUES (3159, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/125/head', false, '', 1705134971);
INSERT INTO public.action VALUES (3160, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/125/head', false, '', 1705134971);
INSERT INTO public.action VALUES (2631, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d8568ef2cb388ffa029778d557c778ce2efa3353","Message":"Merge pull request ''fix info hoc vien'' (#76) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/76\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:28:27+07:00"},{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"}],"HeadCommit":{"Sha1":"d8568ef2cb388ffa029778d557c778ce2efa3353","Message":"Merge pull request ''fix info hoc vien'' (#76) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/76\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:28:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8cb811be2927c486df5dbb09a8aa0a63535709d3...d8568ef2cb388ffa029778d557c778ce2efa3353","Len":2}', 1704878912);
INSERT INTO public.action VALUES (2632, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d8568ef2cb388ffa029778d557c778ce2efa3353","Message":"Merge pull request ''fix info hoc vien'' (#76) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/76\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:28:27+07:00"},{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"}],"HeadCommit":{"Sha1":"d8568ef2cb388ffa029778d557c778ce2efa3353","Message":"Merge pull request ''fix info hoc vien'' (#76) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/76\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:28:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8cb811be2927c486df5dbb09a8aa0a63535709d3...d8568ef2cb388ffa029778d557c778ce2efa3353","Len":2}', 1704878912);
INSERT INTO public.action VALUES (2633, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d8568ef2cb388ffa029778d557c778ce2efa3353","Message":"Merge pull request ''fix info hoc vien'' (#76) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/76\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:28:27+07:00"},{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"}],"HeadCommit":{"Sha1":"d8568ef2cb388ffa029778d557c778ce2efa3353","Message":"Merge pull request ''fix info hoc vien'' (#76) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/76\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:28:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8cb811be2927c486df5dbb09a8aa0a63535709d3...d8568ef2cb388ffa029778d557c778ce2efa3353","Len":2}', 1704878912);
INSERT INTO public.action VALUES (2634, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"}],"HeadCommit":{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/6288fef2f7b3c22aa70ba1038d18cbb1a7940c63...f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Len":1}', 1704890457);
INSERT INTO public.action VALUES (2635, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"}],"HeadCommit":{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/6288fef2f7b3c22aa70ba1038d18cbb1a7940c63...f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Len":1}', 1704890457);
INSERT INTO public.action VALUES (2636, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"}],"HeadCommit":{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/6288fef2f7b3c22aa70ba1038d18cbb1a7940c63...f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Len":1}', 1704890457);
INSERT INTO public.action VALUES (2637, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"}],"HeadCommit":{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/6288fef2f7b3c22aa70ba1038d18cbb1a7940c63...f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Len":1}', 1704890457);
INSERT INTO public.action VALUES (3161, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/125/merge', false, '', 1705134971);
INSERT INTO public.action VALUES (3162, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/125/merge', false, '', 1705134971);
INSERT INTO public.action VALUES (3163, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/125/merge', false, '', 1705134971);
INSERT INTO public.action VALUES (3164, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/126/head', false, '', 1705134971);
INSERT INTO public.action VALUES (3165, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/126/head', false, '', 1705134971);
INSERT INTO public.action VALUES (2639, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"}],"HeadCommit":{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/6288fef2f7b3c22aa70ba1038d18cbb1a7940c63...f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Len":1}', 1704890457);
INSERT INTO public.action VALUES (2640, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/148/head', false, '', 1704900055);
INSERT INTO public.action VALUES (2641, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/148/head', false, '', 1704900055);
INSERT INTO public.action VALUES (2642, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/148/head', false, '', 1704900055);
INSERT INTO public.action VALUES (2643, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/148/merge', false, '', 1704900055);
INSERT INTO public.action VALUES (2644, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/148/merge', false, '', 1704900055);
INSERT INTO public.action VALUES (2645, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/148/merge', false, '', 1704900055);
INSERT INTO public.action VALUES (2646, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/144/head', false, '', 1704929456);
INSERT INTO public.action VALUES (2647, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/144/head', false, '', 1704929456);
INSERT INTO public.action VALUES (2648, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/144/head', false, '', 1704929456);
INSERT INTO public.action VALUES (2649, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/144/merge', false, '', 1704929456);
INSERT INTO public.action VALUES (2650, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/144/merge', false, '', 1704929456);
INSERT INTO public.action VALUES (2651, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/144/merge', false, '', 1704929456);
INSERT INTO public.action VALUES (2652, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/145/head', false, '', 1704929456);
INSERT INTO public.action VALUES (2653, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/145/head', false, '', 1704929456);
INSERT INTO public.action VALUES (2654, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/145/head', false, '', 1704929456);
INSERT INTO public.action VALUES (2655, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/145/merge', false, '', 1704929456);
INSERT INTO public.action VALUES (2656, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/145/merge', false, '', 1704929456);
INSERT INTO public.action VALUES (2657, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/145/merge', false, '', 1704929456);
INSERT INTO public.action VALUES (2658, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/146/head', false, '', 1704929456);
INSERT INTO public.action VALUES (2659, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/146/head', false, '', 1704929456);
INSERT INTO public.action VALUES (2660, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/146/head', false, '', 1704929456);
INSERT INTO public.action VALUES (2661, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/146/merge', false, '', 1704929456);
INSERT INTO public.action VALUES (2662, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/146/merge', false, '', 1704929456);
INSERT INTO public.action VALUES (2663, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/146/merge', false, '', 1704929456);
INSERT INTO public.action VALUES (2664, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/147/head', false, '', 1704929456);
INSERT INTO public.action VALUES (2665, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/147/head', false, '', 1704929456);
INSERT INTO public.action VALUES (2666, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/147/head', false, '', 1704929456);
INSERT INTO public.action VALUES (2667, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/147/merge', false, '', 1704929456);
INSERT INTO public.action VALUES (2668, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/147/merge', false, '', 1704929456);
INSERT INTO public.action VALUES (2669, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/147/merge', false, '', 1704929456);
INSERT INTO public.action VALUES (2670, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"}],"HeadCommit":{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b72b77ce6d6441f022c666171f558d3b6ff8994f...b864b6c508a7e992ec724257ba8068066dea62c2","Len":1}', 1704937711);
INSERT INTO public.action VALUES (2671, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"}],"HeadCommit":{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b72b77ce6d6441f022c666171f558d3b6ff8994f...b864b6c508a7e992ec724257ba8068066dea62c2","Len":1}', 1704937711);
INSERT INTO public.action VALUES (2672, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"}],"HeadCommit":{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b72b77ce6d6441f022c666171f558d3b6ff8994f...b864b6c508a7e992ec724257ba8068066dea62c2","Len":1}', 1704937711);
INSERT INTO public.action VALUES (3166, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/126/head', false, '', 1705134971);
INSERT INTO public.action VALUES (3167, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/126/merge', false, '', 1705134971);
INSERT INTO public.action VALUES (3168, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/126/merge', false, '', 1705134971);
INSERT INTO public.action VALUES (3169, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/126/merge', false, '', 1705134971);
INSERT INTO public.action VALUES (2673, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"}],"HeadCommit":{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b72b77ce6d6441f022c666171f558d3b6ff8994f...b864b6c508a7e992ec724257ba8068066dea62c2","Len":1}', 1704937711);
INSERT INTO public.action VALUES (2674, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"}],"HeadCommit":{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b72b77ce6d6441f022c666171f558d3b6ff8994f...b864b6c508a7e992ec724257ba8068066dea62c2","Len":1}', 1704937711);
INSERT INTO public.action VALUES (2675, 11, 7, 11, 21, 0, false, '', false, '77|change api kq tuyen sinh', 1704937756);
INSERT INTO public.action VALUES (2676, 14, 7, 11, 21, 0, false, '', false, '77|change api kq tuyen sinh', 1704937756);
INSERT INTO public.action VALUES (2677, 16, 7, 11, 21, 0, false, '', false, '77|change api kq tuyen sinh', 1704937756);
INSERT INTO public.action VALUES (2678, 5, 7, 11, 21, 0, false, '', false, '77|change api kq tuyen sinh', 1704937756);
INSERT INTO public.action VALUES (2679, 1, 7, 11, 21, 0, false, '', false, '77|change api kq tuyen sinh', 1704937756);
INSERT INTO public.action VALUES (2680, 11, 11, 11, 21, 0, false, '', false, '77|change api kq tuyen sinh', 1704937772);
INSERT INTO public.action VALUES (2681, 14, 11, 11, 21, 0, false, '', false, '77|change api kq tuyen sinh', 1704937772);
INSERT INTO public.action VALUES (2682, 16, 11, 11, 21, 0, false, '', false, '77|change api kq tuyen sinh', 1704937772);
INSERT INTO public.action VALUES (2683, 5, 11, 11, 21, 0, false, '', false, '77|change api kq tuyen sinh', 1704937772);
INSERT INTO public.action VALUES (2684, 1, 11, 11, 21, 0, false, '', false, '77|change api kq tuyen sinh', 1704937772);
INSERT INTO public.action VALUES (2685, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5b398e4f4feead79e0fcaa363254896d4c7749c3","Message":"Merge pull request ''change api kq tuyen sinh'' (#77) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/77\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T08:49:27+07:00"},{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"}],"HeadCommit":{"Sha1":"5b398e4f4feead79e0fcaa363254896d4c7749c3","Message":"Merge pull request ''change api kq tuyen sinh'' (#77) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/77\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T08:49:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d8568ef2cb388ffa029778d557c778ce2efa3353...5b398e4f4feead79e0fcaa363254896d4c7749c3","Len":2}', 1704937772);
INSERT INTO public.action VALUES (2686, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5b398e4f4feead79e0fcaa363254896d4c7749c3","Message":"Merge pull request ''change api kq tuyen sinh'' (#77) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/77\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T08:49:27+07:00"},{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"}],"HeadCommit":{"Sha1":"5b398e4f4feead79e0fcaa363254896d4c7749c3","Message":"Merge pull request ''change api kq tuyen sinh'' (#77) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/77\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T08:49:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d8568ef2cb388ffa029778d557c778ce2efa3353...5b398e4f4feead79e0fcaa363254896d4c7749c3","Len":2}', 1704937772);
INSERT INTO public.action VALUES (2687, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5b398e4f4feead79e0fcaa363254896d4c7749c3","Message":"Merge pull request ''change api kq tuyen sinh'' (#77) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/77\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T08:49:27+07:00"},{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"}],"HeadCommit":{"Sha1":"5b398e4f4feead79e0fcaa363254896d4c7749c3","Message":"Merge pull request ''change api kq tuyen sinh'' (#77) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/77\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T08:49:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d8568ef2cb388ffa029778d557c778ce2efa3353...5b398e4f4feead79e0fcaa363254896d4c7749c3","Len":2}', 1704937772);
INSERT INTO public.action VALUES (2854, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"}],"HeadCommit":{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"},"CompareURL":"khieu-nai/backend/compare/c58b8c98ab8d407529a026238fe1273b7234d1e2...2ecfca76cd985441844a6db900b6dc707f74b60a","Len":1}', 1704966394);
INSERT INTO public.action VALUES (2688, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5b398e4f4feead79e0fcaa363254896d4c7749c3","Message":"Merge pull request ''change api kq tuyen sinh'' (#77) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/77\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T08:49:27+07:00"},{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"}],"HeadCommit":{"Sha1":"5b398e4f4feead79e0fcaa363254896d4c7749c3","Message":"Merge pull request ''change api kq tuyen sinh'' (#77) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/77\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T08:49:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d8568ef2cb388ffa029778d557c778ce2efa3353...5b398e4f4feead79e0fcaa363254896d4c7749c3","Len":2}', 1704937772);
INSERT INTO public.action VALUES (2689, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5b398e4f4feead79e0fcaa363254896d4c7749c3","Message":"Merge pull request ''change api kq tuyen sinh'' (#77) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/77\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T08:49:27+07:00"},{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"}],"HeadCommit":{"Sha1":"5b398e4f4feead79e0fcaa363254896d4c7749c3","Message":"Merge pull request ''change api kq tuyen sinh'' (#77) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/77\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T08:49:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d8568ef2cb388ffa029778d557c778ce2efa3353...5b398e4f4feead79e0fcaa363254896d4c7749c3","Len":2}', 1704937772);
INSERT INTO public.action VALUES (2690, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"}],"HeadCommit":{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"},"CompareURL":"khieu-nai/backend/compare/e28da4e943c7dcb8c90c13eed30ec05e405f6e3c...aebae52bf63dd829d4e46f007fb901420f9e70b5","Len":1}', 1704939224);
INSERT INTO public.action VALUES (2691, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"}],"HeadCommit":{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"},"CompareURL":"khieu-nai/backend/compare/e28da4e943c7dcb8c90c13eed30ec05e405f6e3c...aebae52bf63dd829d4e46f007fb901420f9e70b5","Len":1}', 1704939224);
INSERT INTO public.action VALUES (2692, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"}],"HeadCommit":{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"},"CompareURL":"khieu-nai/backend/compare/e28da4e943c7dcb8c90c13eed30ec05e405f6e3c...aebae52bf63dd829d4e46f007fb901420f9e70b5","Len":1}', 1704939224);
INSERT INTO public.action VALUES (2693, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"}],"HeadCommit":{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"},"CompareURL":"khieu-nai/backend/compare/e28da4e943c7dcb8c90c13eed30ec05e405f6e3c...aebae52bf63dd829d4e46f007fb901420f9e70b5","Len":1}', 1704939224);
INSERT INTO public.action VALUES (2694, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"}],"HeadCommit":{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"},"CompareURL":"khieu-nai/backend/compare/e28da4e943c7dcb8c90c13eed30ec05e405f6e3c...aebae52bf63dd829d4e46f007fb901420f9e70b5","Len":1}', 1704939224);
INSERT INTO public.action VALUES (2695, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"}],"HeadCommit":{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"},"CompareURL":"khieu-nai/backend/compare/e28da4e943c7dcb8c90c13eed30ec05e405f6e3c...aebae52bf63dd829d4e46f007fb901420f9e70b5","Len":1}', 1704939224);
INSERT INTO public.action VALUES (3170, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/112/head', false, '', 1705164371);
INSERT INTO public.action VALUES (3171, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/112/head', false, '', 1705164371);
INSERT INTO public.action VALUES (3172, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/112/head', false, '', 1705164371);
INSERT INTO public.action VALUES (2696, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"}],"HeadCommit":{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b864b6c508a7e992ec724257ba8068066dea62c2...d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Len":1}', 1704944048);
INSERT INTO public.action VALUES (2697, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"}],"HeadCommit":{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b864b6c508a7e992ec724257ba8068066dea62c2...d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Len":1}', 1704944048);
INSERT INTO public.action VALUES (2698, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"}],"HeadCommit":{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b864b6c508a7e992ec724257ba8068066dea62c2...d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Len":1}', 1704944048);
INSERT INTO public.action VALUES (2699, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"}],"HeadCommit":{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b864b6c508a7e992ec724257ba8068066dea62c2...d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Len":1}', 1704944048);
INSERT INTO public.action VALUES (2700, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"}],"HeadCommit":{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b864b6c508a7e992ec724257ba8068066dea62c2...d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Len":1}', 1704944048);
INSERT INTO public.action VALUES (2701, 11, 7, 11, 21, 0, false, '', false, '78|style header', 1704944129);
INSERT INTO public.action VALUES (2702, 14, 7, 11, 21, 0, false, '', false, '78|style header', 1704944129);
INSERT INTO public.action VALUES (2703, 16, 7, 11, 21, 0, false, '', false, '78|style header', 1704944129);
INSERT INTO public.action VALUES (2704, 5, 7, 11, 21, 0, false, '', false, '78|style header', 1704944129);
INSERT INTO public.action VALUES (2705, 1, 7, 11, 21, 0, false, '', false, '78|style header', 1704944129);
INSERT INTO public.action VALUES (2706, 11, 11, 11, 21, 0, false, '', false, '78|style header', 1704944215);
INSERT INTO public.action VALUES (2707, 14, 11, 11, 21, 0, false, '', false, '78|style header', 1704944215);
INSERT INTO public.action VALUES (2708, 16, 11, 11, 21, 0, false, '', false, '78|style header', 1704944215);
INSERT INTO public.action VALUES (2709, 5, 11, 11, 21, 0, false, '', false, '78|style header', 1704944215);
INSERT INTO public.action VALUES (2710, 1, 11, 11, 21, 0, false, '', false, '78|style header', 1704944215);
INSERT INTO public.action VALUES (2711, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Message":"Merge pull request ''style header'' (#78) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/78\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:36:50+07:00"},{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"}],"HeadCommit":{"Sha1":"b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Message":"Merge pull request ''style header'' (#78) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/78\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:36:50+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5b398e4f4feead79e0fcaa363254896d4c7749c3...b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Len":2}', 1704944217);
INSERT INTO public.action VALUES (2716, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"}],"HeadCommit":{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d182a2a0bf08c8ccaca3d9a68a87540beb06e085...d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Len":1}', 1704945451);
INSERT INTO public.action VALUES (3173, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/112/merge', false, '', 1705164371);
INSERT INTO public.action VALUES (2712, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Message":"Merge pull request ''style header'' (#78) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/78\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:36:50+07:00"},{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"}],"HeadCommit":{"Sha1":"b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Message":"Merge pull request ''style header'' (#78) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/78\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:36:50+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5b398e4f4feead79e0fcaa363254896d4c7749c3...b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Len":2}', 1704944217);
INSERT INTO public.action VALUES (2713, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Message":"Merge pull request ''style header'' (#78) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/78\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:36:50+07:00"},{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"}],"HeadCommit":{"Sha1":"b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Message":"Merge pull request ''style header'' (#78) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/78\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:36:50+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5b398e4f4feead79e0fcaa363254896d4c7749c3...b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Len":2}', 1704944217);
INSERT INTO public.action VALUES (2714, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Message":"Merge pull request ''style header'' (#78) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/78\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:36:50+07:00"},{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"}],"HeadCommit":{"Sha1":"b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Message":"Merge pull request ''style header'' (#78) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/78\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:36:50+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5b398e4f4feead79e0fcaa363254896d4c7749c3...b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Len":2}', 1704944217);
INSERT INTO public.action VALUES (2715, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Message":"Merge pull request ''style header'' (#78) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/78\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:36:50+07:00"},{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"}],"HeadCommit":{"Sha1":"b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Message":"Merge pull request ''style header'' (#78) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/78\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:36:50+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5b398e4f4feead79e0fcaa363254896d4c7749c3...b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Len":2}', 1704944217);
INSERT INTO public.action VALUES (2989, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"}],"HeadCommit":{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bf230208b1efd148c1dec00f3c4eb158311100bd...8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Len":1}', 1705045372);
INSERT INTO public.action VALUES (2990, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"}],"HeadCommit":{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bf230208b1efd148c1dec00f3c4eb158311100bd...8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Len":1}', 1705045372);
INSERT INTO public.action VALUES (3174, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/112/merge', false, '', 1705164371);
INSERT INTO public.action VALUES (3175, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/112/merge', false, '', 1705164371);
INSERT INTO public.action VALUES (3176, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/113/head', false, '', 1705164371);
INSERT INTO public.action VALUES (3177, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/113/head', false, '', 1705164371);
INSERT INTO public.action VALUES (3178, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/113/head', false, '', 1705164371);
INSERT INTO public.action VALUES (2717, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"}],"HeadCommit":{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d182a2a0bf08c8ccaca3d9a68a87540beb06e085...d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Len":1}', 1704945451);
INSERT INTO public.action VALUES (2718, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"}],"HeadCommit":{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d182a2a0bf08c8ccaca3d9a68a87540beb06e085...d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Len":1}', 1704945451);
INSERT INTO public.action VALUES (2719, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"}],"HeadCommit":{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d182a2a0bf08c8ccaca3d9a68a87540beb06e085...d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Len":1}', 1704945451);
INSERT INTO public.action VALUES (2720, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"}],"HeadCommit":{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d182a2a0bf08c8ccaca3d9a68a87540beb06e085...d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Len":1}', 1704945451);
INSERT INTO public.action VALUES (2721, 11, 7, 11, 21, 0, false, '', false, '79|add ty le tuyen sinh tot nghiep', 1704945580);
INSERT INTO public.action VALUES (2722, 14, 7, 11, 21, 0, false, '', false, '79|add ty le tuyen sinh tot nghiep', 1704945580);
INSERT INTO public.action VALUES (2723, 16, 7, 11, 21, 0, false, '', false, '79|add ty le tuyen sinh tot nghiep', 1704945580);
INSERT INTO public.action VALUES (2724, 5, 7, 11, 21, 0, false, '', false, '79|add ty le tuyen sinh tot nghiep', 1704945580);
INSERT INTO public.action VALUES (2725, 1, 7, 11, 21, 0, false, '', false, '79|add ty le tuyen sinh tot nghiep', 1704945580);
INSERT INTO public.action VALUES (2726, 11, 11, 11, 21, 0, false, '', false, '79|add ty le tuyen sinh tot nghiep', 1704945595);
INSERT INTO public.action VALUES (2727, 14, 11, 11, 21, 0, false, '', false, '79|add ty le tuyen sinh tot nghiep', 1704945595);
INSERT INTO public.action VALUES (2728, 16, 11, 11, 21, 0, false, '', false, '79|add ty le tuyen sinh tot nghiep', 1704945595);
INSERT INTO public.action VALUES (2729, 5, 11, 11, 21, 0, false, '', false, '79|add ty le tuyen sinh tot nghiep', 1704945595);
INSERT INTO public.action VALUES (2730, 1, 11, 11, 21, 0, false, '', false, '79|add ty le tuyen sinh tot nghiep', 1704945595);
INSERT INTO public.action VALUES (2731, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"414c6952e2434c3fc7f37c73c1309937925396c6","Message":"Merge pull request ''add ty le tuyen sinh tot nghiep'' (#79) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/79\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:59:49+07:00"},{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"}],"HeadCommit":{"Sha1":"414c6952e2434c3fc7f37c73c1309937925396c6","Message":"Merge pull request ''add ty le tuyen sinh tot nghiep'' (#79) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/79\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:59:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b39634acf119d7a5698c952dfd10dc0e1ee5bb3d...414c6952e2434c3fc7f37c73c1309937925396c6","Len":2}', 1704945596);
INSERT INTO public.action VALUES (2732, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"414c6952e2434c3fc7f37c73c1309937925396c6","Message":"Merge pull request ''add ty le tuyen sinh tot nghiep'' (#79) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/79\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:59:49+07:00"},{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"}],"HeadCommit":{"Sha1":"414c6952e2434c3fc7f37c73c1309937925396c6","Message":"Merge pull request ''add ty le tuyen sinh tot nghiep'' (#79) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/79\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:59:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b39634acf119d7a5698c952dfd10dc0e1ee5bb3d...414c6952e2434c3fc7f37c73c1309937925396c6","Len":2}', 1704945596);
INSERT INTO public.action VALUES (3179, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/113/merge', false, '', 1705164371);
INSERT INTO public.action VALUES (2733, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"414c6952e2434c3fc7f37c73c1309937925396c6","Message":"Merge pull request ''add ty le tuyen sinh tot nghiep'' (#79) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/79\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:59:49+07:00"},{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"}],"HeadCommit":{"Sha1":"414c6952e2434c3fc7f37c73c1309937925396c6","Message":"Merge pull request ''add ty le tuyen sinh tot nghiep'' (#79) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/79\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:59:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b39634acf119d7a5698c952dfd10dc0e1ee5bb3d...414c6952e2434c3fc7f37c73c1309937925396c6","Len":2}', 1704945596);
INSERT INTO public.action VALUES (2734, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"414c6952e2434c3fc7f37c73c1309937925396c6","Message":"Merge pull request ''add ty le tuyen sinh tot nghiep'' (#79) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/79\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:59:49+07:00"},{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"}],"HeadCommit":{"Sha1":"414c6952e2434c3fc7f37c73c1309937925396c6","Message":"Merge pull request ''add ty le tuyen sinh tot nghiep'' (#79) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/79\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:59:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b39634acf119d7a5698c952dfd10dc0e1ee5bb3d...414c6952e2434c3fc7f37c73c1309937925396c6","Len":2}', 1704945596);
INSERT INTO public.action VALUES (2735, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"414c6952e2434c3fc7f37c73c1309937925396c6","Message":"Merge pull request ''add ty le tuyen sinh tot nghiep'' (#79) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/79\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:59:49+07:00"},{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"}],"HeadCommit":{"Sha1":"414c6952e2434c3fc7f37c73c1309937925396c6","Message":"Merge pull request ''add ty le tuyen sinh tot nghiep'' (#79) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/79\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:59:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b39634acf119d7a5698c952dfd10dc0e1ee5bb3d...414c6952e2434c3fc7f37c73c1309937925396c6","Len":2}', 1704945596);
INSERT INTO public.action VALUES (2736, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"}],"HeadCommit":{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d...39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Len":1}', 1704947450);
INSERT INTO public.action VALUES (2737, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"}],"HeadCommit":{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d...39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Len":1}', 1704947450);
INSERT INTO public.action VALUES (2738, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"}],"HeadCommit":{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d...39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Len":1}', 1704947450);
INSERT INTO public.action VALUES (2739, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"}],"HeadCommit":{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d...39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Len":1}', 1704947450);
INSERT INTO public.action VALUES (3180, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/113/merge', false, '', 1705164371);
INSERT INTO public.action VALUES (2740, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"}],"HeadCommit":{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d...39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Len":1}', 1704947450);
INSERT INTO public.action VALUES (2741, 11, 7, 11, 21, 0, false, '', false, '80|fix bao cao', 1704947471);
INSERT INTO public.action VALUES (2742, 14, 7, 11, 21, 0, false, '', false, '80|fix bao cao', 1704947471);
INSERT INTO public.action VALUES (2743, 16, 7, 11, 21, 0, false, '', false, '80|fix bao cao', 1704947471);
INSERT INTO public.action VALUES (2744, 5, 7, 11, 21, 0, false, '', false, '80|fix bao cao', 1704947471);
INSERT INTO public.action VALUES (2745, 1, 7, 11, 21, 0, false, '', false, '80|fix bao cao', 1704947471);
INSERT INTO public.action VALUES (2746, 11, 11, 11, 21, 0, false, '', false, '80|fix bao cao', 1704947505);
INSERT INTO public.action VALUES (2747, 14, 11, 11, 21, 0, false, '', false, '80|fix bao cao', 1704947505);
INSERT INTO public.action VALUES (2748, 16, 11, 11, 21, 0, false, '', false, '80|fix bao cao', 1704947505);
INSERT INTO public.action VALUES (2749, 5, 11, 11, 21, 0, false, '', false, '80|fix bao cao', 1704947505);
INSERT INTO public.action VALUES (2750, 1, 11, 11, 21, 0, false, '', false, '80|fix bao cao', 1704947505);
INSERT INTO public.action VALUES (2751, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Message":"Merge pull request ''fix bao cao'' (#80) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/80\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T11:31:39+07:00"},{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"}],"HeadCommit":{"Sha1":"29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Message":"Merge pull request ''fix bao cao'' (#80) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/80\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T11:31:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/414c6952e2434c3fc7f37c73c1309937925396c6...29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Len":2}', 1704947505);
INSERT INTO public.action VALUES (2752, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Message":"Merge pull request ''fix bao cao'' (#80) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/80\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T11:31:39+07:00"},{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"}],"HeadCommit":{"Sha1":"29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Message":"Merge pull request ''fix bao cao'' (#80) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/80\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T11:31:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/414c6952e2434c3fc7f37c73c1309937925396c6...29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Len":2}', 1704947505);
INSERT INTO public.action VALUES (2753, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Message":"Merge pull request ''fix bao cao'' (#80) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/80\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T11:31:39+07:00"},{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"}],"HeadCommit":{"Sha1":"29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Message":"Merge pull request ''fix bao cao'' (#80) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/80\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T11:31:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/414c6952e2434c3fc7f37c73c1309937925396c6...29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Len":2}', 1704947505);
INSERT INTO public.action VALUES (2754, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Message":"Merge pull request ''fix bao cao'' (#80) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/80\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T11:31:39+07:00"},{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"}],"HeadCommit":{"Sha1":"29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Message":"Merge pull request ''fix bao cao'' (#80) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/80\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T11:31:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/414c6952e2434c3fc7f37c73c1309937925396c6...29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Len":2}', 1704947505);
INSERT INTO public.action VALUES (3181, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/113/merge', false, '', 1705164371);
INSERT INTO public.action VALUES (3182, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/114/head', false, '', 1705164371);
INSERT INTO public.action VALUES (3183, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/114/head', false, '', 1705164371);
INSERT INTO public.action VALUES (3184, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/114/head', false, '', 1705164371);
INSERT INTO public.action VALUES (2755, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Message":"Merge pull request ''fix bao cao'' (#80) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/80\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T11:31:39+07:00"},{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"}],"HeadCommit":{"Sha1":"29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Message":"Merge pull request ''fix bao cao'' (#80) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/80\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T11:31:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/414c6952e2434c3fc7f37c73c1309937925396c6...29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Len":2}', 1704947505);
INSERT INTO public.action VALUES (2756, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},{"Sha1":"c17f80c4ce844c2529e92417536f88e4497a2c2b","Message":"SendEmailAttachment\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:52:48+07:00"},{"Sha1":"8b236a248a5656622cc6bf07d70cce150c8e79cb","Message":"báo cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T09:24:42+07:00"}],"HeadCommit":{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b...e41c5e20826526291d2510b99b0d4fa8bae55484","Len":3}', 1704949257);
INSERT INTO public.action VALUES (2757, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},{"Sha1":"c17f80c4ce844c2529e92417536f88e4497a2c2b","Message":"SendEmailAttachment\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:52:48+07:00"},{"Sha1":"8b236a248a5656622cc6bf07d70cce150c8e79cb","Message":"báo cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T09:24:42+07:00"}],"HeadCommit":{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b...e41c5e20826526291d2510b99b0d4fa8bae55484","Len":3}', 1704949257);
INSERT INTO public.action VALUES (2758, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},{"Sha1":"c17f80c4ce844c2529e92417536f88e4497a2c2b","Message":"SendEmailAttachment\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:52:48+07:00"},{"Sha1":"8b236a248a5656622cc6bf07d70cce150c8e79cb","Message":"báo cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T09:24:42+07:00"}],"HeadCommit":{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b...e41c5e20826526291d2510b99b0d4fa8bae55484","Len":3}', 1704949257);
INSERT INTO public.action VALUES (2759, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},{"Sha1":"c17f80c4ce844c2529e92417536f88e4497a2c2b","Message":"SendEmailAttachment\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:52:48+07:00"},{"Sha1":"8b236a248a5656622cc6bf07d70cce150c8e79cb","Message":"báo cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T09:24:42+07:00"}],"HeadCommit":{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b...e41c5e20826526291d2510b99b0d4fa8bae55484","Len":3}', 1704949257);
INSERT INTO public.action VALUES (2855, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"}],"HeadCommit":{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"},"CompareURL":"khieu-nai/backend/compare/c58b8c98ab8d407529a026238fe1273b7234d1e2...2ecfca76cd985441844a6db900b6dc707f74b60a","Len":1}', 1704966394);
INSERT INTO public.action VALUES (2760, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},{"Sha1":"c17f80c4ce844c2529e92417536f88e4497a2c2b","Message":"SendEmailAttachment\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:52:48+07:00"},{"Sha1":"8b236a248a5656622cc6bf07d70cce150c8e79cb","Message":"báo cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T09:24:42+07:00"}],"HeadCommit":{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b...e41c5e20826526291d2510b99b0d4fa8bae55484","Len":3}', 1704949257);
INSERT INTO public.action VALUES (2761, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},{"Sha1":"c17f80c4ce844c2529e92417536f88e4497a2c2b","Message":"SendEmailAttachment\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:52:48+07:00"},{"Sha1":"8b236a248a5656622cc6bf07d70cce150c8e79cb","Message":"báo cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T09:24:42+07:00"}],"HeadCommit":{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b...e41c5e20826526291d2510b99b0d4fa8bae55484","Len":3}', 1704949257);
INSERT INTO public.action VALUES (2762, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"}],"HeadCommit":{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"},"CompareURL":"khieu-nai/backend/compare/aebae52bf63dd829d4e46f007fb901420f9e70b5...c58b8c98ab8d407529a026238fe1273b7234d1e2","Len":1}', 1704953167);
INSERT INTO public.action VALUES (2763, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"}],"HeadCommit":{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"},"CompareURL":"khieu-nai/backend/compare/aebae52bf63dd829d4e46f007fb901420f9e70b5...c58b8c98ab8d407529a026238fe1273b7234d1e2","Len":1}', 1704953167);
INSERT INTO public.action VALUES (2764, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"}],"HeadCommit":{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"},"CompareURL":"khieu-nai/backend/compare/aebae52bf63dd829d4e46f007fb901420f9e70b5...c58b8c98ab8d407529a026238fe1273b7234d1e2","Len":1}', 1704953167);
INSERT INTO public.action VALUES (2765, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"}],"HeadCommit":{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"},"CompareURL":"khieu-nai/backend/compare/aebae52bf63dd829d4e46f007fb901420f9e70b5...c58b8c98ab8d407529a026238fe1273b7234d1e2","Len":1}', 1704953167);
INSERT INTO public.action VALUES (2766, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"}],"HeadCommit":{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"},"CompareURL":"khieu-nai/backend/compare/aebae52bf63dd829d4e46f007fb901420f9e70b5...c58b8c98ab8d407529a026238fe1273b7234d1e2","Len":1}', 1704953167);
INSERT INTO public.action VALUES (2767, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"}],"HeadCommit":{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"},"CompareURL":"khieu-nai/backend/compare/aebae52bf63dd829d4e46f007fb901420f9e70b5...c58b8c98ab8d407529a026238fe1273b7234d1e2","Len":1}', 1704953167);
INSERT INTO public.action VALUES (2877, 1, 7, 11, 21, 0, false, '', false, '83|add btn gui mail', 1704990705);
INSERT INTO public.action VALUES (2878, 11, 11, 11, 21, 0, false, '', false, '83|add btn gui mail', 1704990831);
INSERT INTO public.action VALUES (2879, 14, 11, 11, 21, 0, false, '', false, '83|add btn gui mail', 1704990831);
INSERT INTO public.action VALUES (2768, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"}],"HeadCommit":{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/39cb06392b78a4b3529ef0a69ecdc485adfd1a06...f67d1811ee946b4368988f806d6c91b5161f2aca","Len":1}', 1704956438);
INSERT INTO public.action VALUES (2769, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"}],"HeadCommit":{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/39cb06392b78a4b3529ef0a69ecdc485adfd1a06...f67d1811ee946b4368988f806d6c91b5161f2aca","Len":1}', 1704956438);
INSERT INTO public.action VALUES (2770, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"}],"HeadCommit":{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/39cb06392b78a4b3529ef0a69ecdc485adfd1a06...f67d1811ee946b4368988f806d6c91b5161f2aca","Len":1}', 1704956438);
INSERT INTO public.action VALUES (2771, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"}],"HeadCommit":{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/39cb06392b78a4b3529ef0a69ecdc485adfd1a06...f67d1811ee946b4368988f806d6c91b5161f2aca","Len":1}', 1704956438);
INSERT INTO public.action VALUES (2772, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"}],"HeadCommit":{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/39cb06392b78a4b3529ef0a69ecdc485adfd1a06...f67d1811ee946b4368988f806d6c91b5161f2aca","Len":1}', 1704956438);
INSERT INTO public.action VALUES (2773, 11, 7, 11, 21, 0, false, '', false, '81|fix loi bao cao', 1704956678);
INSERT INTO public.action VALUES (2774, 14, 7, 11, 21, 0, false, '', false, '81|fix loi bao cao', 1704956678);
INSERT INTO public.action VALUES (2775, 16, 7, 11, 21, 0, false, '', false, '81|fix loi bao cao', 1704956678);
INSERT INTO public.action VALUES (2776, 5, 7, 11, 21, 0, false, '', false, '81|fix loi bao cao', 1704956678);
INSERT INTO public.action VALUES (2777, 1, 7, 11, 21, 0, false, '', false, '81|fix loi bao cao', 1704956678);
INSERT INTO public.action VALUES (2778, 11, 11, 11, 21, 0, false, '', false, '81|fix loi bao cao', 1704956851);
INSERT INTO public.action VALUES (2779, 14, 11, 11, 21, 0, false, '', false, '81|fix loi bao cao', 1704956851);
INSERT INTO public.action VALUES (2780, 16, 11, 11, 21, 0, false, '', false, '81|fix loi bao cao', 1704956851);
INSERT INTO public.action VALUES (2781, 5, 11, 11, 21, 0, false, '', false, '81|fix loi bao cao', 1704956851);
INSERT INTO public.action VALUES (2782, 1, 11, 11, 21, 0, false, '', false, '81|fix loi bao cao', 1704956851);
INSERT INTO public.action VALUES (2783, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e8b876ae81f072d85a259f7fe20b4629f98da421","Message":"Merge pull request ''fix loi bao cao'' (#81) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/81\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:07:25+07:00"},{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"}],"HeadCommit":{"Sha1":"e8b876ae81f072d85a259f7fe20b4629f98da421","Message":"Merge pull request ''fix loi bao cao'' (#81) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/81\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:07:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/29e0c4ea27c7052d9017a2b0896367a0bab5d9db...e8b876ae81f072d85a259f7fe20b4629f98da421","Len":2}', 1704956851);
INSERT INTO public.action VALUES (2790, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"}],"HeadCommit":{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f67d1811ee946b4368988f806d6c91b5161f2aca...6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Len":1}', 1704957853);
INSERT INTO public.action VALUES (2880, 16, 11, 11, 21, 0, false, '', false, '83|add btn gui mail', 1704990831);
INSERT INTO public.action VALUES (2784, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e8b876ae81f072d85a259f7fe20b4629f98da421","Message":"Merge pull request ''fix loi bao cao'' (#81) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/81\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:07:25+07:00"},{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"}],"HeadCommit":{"Sha1":"e8b876ae81f072d85a259f7fe20b4629f98da421","Message":"Merge pull request ''fix loi bao cao'' (#81) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/81\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:07:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/29e0c4ea27c7052d9017a2b0896367a0bab5d9db...e8b876ae81f072d85a259f7fe20b4629f98da421","Len":2}', 1704956851);
INSERT INTO public.action VALUES (2785, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e8b876ae81f072d85a259f7fe20b4629f98da421","Message":"Merge pull request ''fix loi bao cao'' (#81) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/81\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:07:25+07:00"},{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"}],"HeadCommit":{"Sha1":"e8b876ae81f072d85a259f7fe20b4629f98da421","Message":"Merge pull request ''fix loi bao cao'' (#81) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/81\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:07:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/29e0c4ea27c7052d9017a2b0896367a0bab5d9db...e8b876ae81f072d85a259f7fe20b4629f98da421","Len":2}', 1704956851);
INSERT INTO public.action VALUES (2786, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e8b876ae81f072d85a259f7fe20b4629f98da421","Message":"Merge pull request ''fix loi bao cao'' (#81) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/81\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:07:25+07:00"},{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"}],"HeadCommit":{"Sha1":"e8b876ae81f072d85a259f7fe20b4629f98da421","Message":"Merge pull request ''fix loi bao cao'' (#81) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/81\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:07:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/29e0c4ea27c7052d9017a2b0896367a0bab5d9db...e8b876ae81f072d85a259f7fe20b4629f98da421","Len":2}', 1704956851);
INSERT INTO public.action VALUES (2787, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e8b876ae81f072d85a259f7fe20b4629f98da421","Message":"Merge pull request ''fix loi bao cao'' (#81) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/81\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:07:25+07:00"},{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"}],"HeadCommit":{"Sha1":"e8b876ae81f072d85a259f7fe20b4629f98da421","Message":"Merge pull request ''fix loi bao cao'' (#81) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/81\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:07:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/29e0c4ea27c7052d9017a2b0896367a0bab5d9db...e8b876ae81f072d85a259f7fe20b4629f98da421","Len":2}', 1704956851);
INSERT INTO public.action VALUES (2788, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"}],"HeadCommit":{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f67d1811ee946b4368988f806d6c91b5161f2aca...6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Len":1}', 1704957853);
INSERT INTO public.action VALUES (2789, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"}],"HeadCommit":{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f67d1811ee946b4368988f806d6c91b5161f2aca...6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Len":1}', 1704957853);
INSERT INTO public.action VALUES (2881, 5, 11, 11, 21, 0, false, '', false, '83|add btn gui mail', 1704990831);
INSERT INTO public.action VALUES (2882, 1, 11, 11, 21, 0, false, '', false, '83|add btn gui mail', 1704990831);
INSERT INTO public.action VALUES (3185, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/115/head', false, '', 1705164371);
INSERT INTO public.action VALUES (3186, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/115/head', false, '', 1705164371);
INSERT INTO public.action VALUES (3187, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/115/head', false, '', 1705164371);
INSERT INTO public.action VALUES (2791, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"}],"HeadCommit":{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f67d1811ee946b4368988f806d6c91b5161f2aca...6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Len":1}', 1704957853);
INSERT INTO public.action VALUES (2792, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"}],"HeadCommit":{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f67d1811ee946b4368988f806d6c91b5161f2aca...6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Len":1}', 1704957853);
INSERT INTO public.action VALUES (2793, 11, 7, 11, 21, 0, false, '', false, '82|fix hidden err bao cao', 1704958013);
INSERT INTO public.action VALUES (2794, 14, 7, 11, 21, 0, false, '', false, '82|fix hidden err bao cao', 1704958013);
INSERT INTO public.action VALUES (2795, 16, 7, 11, 21, 0, false, '', false, '82|fix hidden err bao cao', 1704958013);
INSERT INTO public.action VALUES (2796, 5, 7, 11, 21, 0, false, '', false, '82|fix hidden err bao cao', 1704958013);
INSERT INTO public.action VALUES (2797, 1, 7, 11, 21, 0, false, '', false, '82|fix hidden err bao cao', 1704958013);
INSERT INTO public.action VALUES (2798, 11, 11, 11, 21, 0, false, '', false, '82|fix hidden err bao cao', 1704958041);
INSERT INTO public.action VALUES (2799, 14, 11, 11, 21, 0, false, '', false, '82|fix hidden err bao cao', 1704958041);
INSERT INTO public.action VALUES (2800, 16, 11, 11, 21, 0, false, '', false, '82|fix hidden err bao cao', 1704958042);
INSERT INTO public.action VALUES (2801, 5, 11, 11, 21, 0, false, '', false, '82|fix hidden err bao cao', 1704958042);
INSERT INTO public.action VALUES (2802, 1, 11, 11, 21, 0, false, '', false, '82|fix hidden err bao cao', 1704958042);
INSERT INTO public.action VALUES (2803, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"891890aa28aae52d5c4d12f2b351251d3b1be143","Message":"Merge pull request ''fix hidden err bao cao'' (#82) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/82\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:27:16+07:00"},{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"}],"HeadCommit":{"Sha1":"891890aa28aae52d5c4d12f2b351251d3b1be143","Message":"Merge pull request ''fix hidden err bao cao'' (#82) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/82\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:27:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e8b876ae81f072d85a259f7fe20b4629f98da421...891890aa28aae52d5c4d12f2b351251d3b1be143","Len":2}', 1704958042);
INSERT INTO public.action VALUES (2804, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"891890aa28aae52d5c4d12f2b351251d3b1be143","Message":"Merge pull request ''fix hidden err bao cao'' (#82) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/82\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:27:16+07:00"},{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"}],"HeadCommit":{"Sha1":"891890aa28aae52d5c4d12f2b351251d3b1be143","Message":"Merge pull request ''fix hidden err bao cao'' (#82) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/82\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:27:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e8b876ae81f072d85a259f7fe20b4629f98da421...891890aa28aae52d5c4d12f2b351251d3b1be143","Len":2}', 1704958042);
INSERT INTO public.action VALUES (2805, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"891890aa28aae52d5c4d12f2b351251d3b1be143","Message":"Merge pull request ''fix hidden err bao cao'' (#82) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/82\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:27:16+07:00"},{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"}],"HeadCommit":{"Sha1":"891890aa28aae52d5c4d12f2b351251d3b1be143","Message":"Merge pull request ''fix hidden err bao cao'' (#82) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/82\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:27:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e8b876ae81f072d85a259f7fe20b4629f98da421...891890aa28aae52d5c4d12f2b351251d3b1be143","Len":2}', 1704958042);
INSERT INTO public.action VALUES (2844, 15, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"}],"HeadCommit":{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Len":1}', 1704964458);
INSERT INTO public.action VALUES (2806, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"891890aa28aae52d5c4d12f2b351251d3b1be143","Message":"Merge pull request ''fix hidden err bao cao'' (#82) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/82\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:27:16+07:00"},{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"}],"HeadCommit":{"Sha1":"891890aa28aae52d5c4d12f2b351251d3b1be143","Message":"Merge pull request ''fix hidden err bao cao'' (#82) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/82\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:27:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e8b876ae81f072d85a259f7fe20b4629f98da421...891890aa28aae52d5c4d12f2b351251d3b1be143","Len":2}', 1704958042);
INSERT INTO public.action VALUES (2807, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"891890aa28aae52d5c4d12f2b351251d3b1be143","Message":"Merge pull request ''fix hidden err bao cao'' (#82) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/82\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:27:16+07:00"},{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"}],"HeadCommit":{"Sha1":"891890aa28aae52d5c4d12f2b351251d3b1be143","Message":"Merge pull request ''fix hidden err bao cao'' (#82) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/82\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:27:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e8b876ae81f072d85a259f7fe20b4629f98da421...891890aa28aae52d5c4d12f2b351251d3b1be143","Len":2}', 1704958042);
INSERT INTO public.action VALUES (2808, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/138/head', false, '', 1704958855);
INSERT INTO public.action VALUES (2809, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/138/head', false, '', 1704958855);
INSERT INTO public.action VALUES (2810, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/138/head', false, '', 1704958855);
INSERT INTO public.action VALUES (2811, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/138/merge', false, '', 1704958855);
INSERT INTO public.action VALUES (2812, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/138/merge', false, '', 1704958855);
INSERT INTO public.action VALUES (2813, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/138/merge', false, '', 1704958855);
INSERT INTO public.action VALUES (2814, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/139/head', false, '', 1704958855);
INSERT INTO public.action VALUES (2815, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/139/head', false, '', 1704958855);
INSERT INTO public.action VALUES (2816, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/139/head', false, '', 1704958855);
INSERT INTO public.action VALUES (2817, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/139/merge', false, '', 1704958855);
INSERT INTO public.action VALUES (2818, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/139/merge', false, '', 1704958855);
INSERT INTO public.action VALUES (2819, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/139/merge', false, '', 1704958855);
INSERT INTO public.action VALUES (2820, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/140/head', false, '', 1704958855);
INSERT INTO public.action VALUES (2821, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/140/head', false, '', 1704958855);
INSERT INTO public.action VALUES (2822, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/140/head', false, '', 1704958855);
INSERT INTO public.action VALUES (2823, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/140/merge', false, '', 1704958855);
INSERT INTO public.action VALUES (2824, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/140/merge', false, '', 1704958855);
INSERT INTO public.action VALUES (2825, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/140/merge', false, '', 1704958855);
INSERT INTO public.action VALUES (2826, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/141/head', false, '', 1704958855);
INSERT INTO public.action VALUES (2827, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/141/head', false, '', 1704958855);
INSERT INTO public.action VALUES (2828, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/141/head', false, '', 1704958855);
INSERT INTO public.action VALUES (2829, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/141/merge', false, '', 1704958855);
INSERT INTO public.action VALUES (2830, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/141/merge', false, '', 1704958855);
INSERT INTO public.action VALUES (2831, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/141/merge', false, '', 1704958855);
INSERT INTO public.action VALUES (2832, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/142/head', false, '', 1704958855);
INSERT INTO public.action VALUES (2833, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/142/head', false, '', 1704958855);
INSERT INTO public.action VALUES (2834, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/142/head', false, '', 1704958855);
INSERT INTO public.action VALUES (2835, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/142/merge', false, '', 1704958855);
INSERT INTO public.action VALUES (2836, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/142/merge', false, '', 1704958855);
INSERT INTO public.action VALUES (2837, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/142/merge', false, '', 1704958855);
INSERT INTO public.action VALUES (2838, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/143/head', false, '', 1704958855);
INSERT INTO public.action VALUES (2839, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/143/head', false, '', 1704958855);
INSERT INTO public.action VALUES (2840, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/143/head', false, '', 1704958855);
INSERT INTO public.action VALUES (2841, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/143/merge', false, '', 1704958855);
INSERT INTO public.action VALUES (2842, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/143/merge', false, '', 1704958855);
INSERT INTO public.action VALUES (2843, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/143/merge', false, '', 1704958855);
INSERT INTO public.action VALUES (3188, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/115/merge', false, '', 1705164371);
INSERT INTO public.action VALUES (3189, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/115/merge', false, '', 1705164371);
INSERT INTO public.action VALUES (3190, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/115/merge', false, '', 1705164371);
INSERT INTO public.action VALUES (3191, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/116/head', false, '', 1705164371);
INSERT INTO public.action VALUES (2845, 12, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"}],"HeadCommit":{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Len":1}', 1704964458);
INSERT INTO public.action VALUES (2846, 2, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"}],"HeadCommit":{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Len":1}', 1704964458);
INSERT INTO public.action VALUES (2847, 5, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"}],"HeadCommit":{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Len":1}', 1704964458);
INSERT INTO public.action VALUES (2848, 1, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"}],"HeadCommit":{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Len":1}', 1704964458);
INSERT INTO public.action VALUES (2849, 9, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"}],"HeadCommit":{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Len":1}', 1704964458);
INSERT INTO public.action VALUES (2850, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"}],"HeadCommit":{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"},"CompareURL":"khieu-nai/backend/compare/c58b8c98ab8d407529a026238fe1273b7234d1e2...2ecfca76cd985441844a6db900b6dc707f74b60a","Len":1}', 1704966394);
INSERT INTO public.action VALUES (2851, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"}],"HeadCommit":{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"},"CompareURL":"khieu-nai/backend/compare/c58b8c98ab8d407529a026238fe1273b7234d1e2...2ecfca76cd985441844a6db900b6dc707f74b60a","Len":1}', 1704966394);
INSERT INTO public.action VALUES (2852, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"}],"HeadCommit":{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"},"CompareURL":"khieu-nai/backend/compare/c58b8c98ab8d407529a026238fe1273b7234d1e2...2ecfca76cd985441844a6db900b6dc707f74b60a","Len":1}', 1704966394);
INSERT INTO public.action VALUES (2853, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"}],"HeadCommit":{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"},"CompareURL":"khieu-nai/backend/compare/c58b8c98ab8d407529a026238fe1273b7234d1e2...2ecfca76cd985441844a6db900b6dc707f74b60a","Len":1}', 1704966394);
INSERT INTO public.action VALUES (3192, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/116/head', false, '', 1705164371);
INSERT INTO public.action VALUES (3193, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/116/head', false, '', 1705164371);
INSERT INTO public.action VALUES (3194, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/116/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (3195, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/116/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (3196, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/116/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (2856, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"}],"HeadCommit":{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"},"CompareURL":"khieu-nai/backend/compare/2ecfca76cd985441844a6db900b6dc707f74b60a...f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Len":1}', 1704966934);
INSERT INTO public.action VALUES (2857, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"}],"HeadCommit":{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"},"CompareURL":"khieu-nai/backend/compare/2ecfca76cd985441844a6db900b6dc707f74b60a...f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Len":1}', 1704966934);
INSERT INTO public.action VALUES (2858, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"}],"HeadCommit":{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"},"CompareURL":"khieu-nai/backend/compare/2ecfca76cd985441844a6db900b6dc707f74b60a...f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Len":1}', 1704966934);
INSERT INTO public.action VALUES (2859, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"}],"HeadCommit":{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"},"CompareURL":"khieu-nai/backend/compare/2ecfca76cd985441844a6db900b6dc707f74b60a...f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Len":1}', 1704966934);
INSERT INTO public.action VALUES (2860, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"}],"HeadCommit":{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"},"CompareURL":"khieu-nai/backend/compare/2ecfca76cd985441844a6db900b6dc707f74b60a...f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Len":1}', 1704966934);
INSERT INTO public.action VALUES (2861, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"}],"HeadCommit":{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"},"CompareURL":"khieu-nai/backend/compare/2ecfca76cd985441844a6db900b6dc707f74b60a...f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Len":1}', 1704966934);
INSERT INTO public.action VALUES (2862, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},{"Sha1":"08ab43a3504694d98b6fe2925e795dbb951b25fa","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T13:52:03+07:00"}],"HeadCommit":{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e41c5e20826526291d2510b99b0d4fa8bae55484...2b39a2404c8800424e13d56f5702c07c9261c67b","Len":2}', 1704978657);
INSERT INTO public.action VALUES (2863, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},{"Sha1":"08ab43a3504694d98b6fe2925e795dbb951b25fa","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T13:52:03+07:00"}],"HeadCommit":{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e41c5e20826526291d2510b99b0d4fa8bae55484...2b39a2404c8800424e13d56f5702c07c9261c67b","Len":2}', 1704978657);
INSERT INTO public.action VALUES (2864, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},{"Sha1":"08ab43a3504694d98b6fe2925e795dbb951b25fa","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T13:52:03+07:00"}],"HeadCommit":{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e41c5e20826526291d2510b99b0d4fa8bae55484...2b39a2404c8800424e13d56f5702c07c9261c67b","Len":2}', 1704978657);
INSERT INTO public.action VALUES (3197, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/117/head', false, '', 1705164372);
INSERT INTO public.action VALUES (2865, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},{"Sha1":"08ab43a3504694d98b6fe2925e795dbb951b25fa","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T13:52:03+07:00"}],"HeadCommit":{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e41c5e20826526291d2510b99b0d4fa8bae55484...2b39a2404c8800424e13d56f5702c07c9261c67b","Len":2}', 1704978657);
INSERT INTO public.action VALUES (2866, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},{"Sha1":"08ab43a3504694d98b6fe2925e795dbb951b25fa","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T13:52:03+07:00"}],"HeadCommit":{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e41c5e20826526291d2510b99b0d4fa8bae55484...2b39a2404c8800424e13d56f5702c07c9261c67b","Len":2}', 1704978657);
INSERT INTO public.action VALUES (2867, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},{"Sha1":"08ab43a3504694d98b6fe2925e795dbb951b25fa","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T13:52:03+07:00"}],"HeadCommit":{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e41c5e20826526291d2510b99b0d4fa8bae55484...2b39a2404c8800424e13d56f5702c07c9261c67b","Len":2}', 1704978657);
INSERT INTO public.action VALUES (2868, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"}],"HeadCommit":{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6fe0578df227fb4bd84cba9bc4376c0048ba5af3...2ea9bc82fbf36de091bb11804d7a7ffae089c611","Len":1}', 1704990050);
INSERT INTO public.action VALUES (2869, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"}],"HeadCommit":{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6fe0578df227fb4bd84cba9bc4376c0048ba5af3...2ea9bc82fbf36de091bb11804d7a7ffae089c611","Len":1}', 1704990050);
INSERT INTO public.action VALUES (2870, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"}],"HeadCommit":{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6fe0578df227fb4bd84cba9bc4376c0048ba5af3...2ea9bc82fbf36de091bb11804d7a7ffae089c611","Len":1}', 1704990050);
INSERT INTO public.action VALUES (2871, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"}],"HeadCommit":{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6fe0578df227fb4bd84cba9bc4376c0048ba5af3...2ea9bc82fbf36de091bb11804d7a7ffae089c611","Len":1}', 1704990050);
INSERT INTO public.action VALUES (2872, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"}],"HeadCommit":{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6fe0578df227fb4bd84cba9bc4376c0048ba5af3...2ea9bc82fbf36de091bb11804d7a7ffae089c611","Len":1}', 1704990050);
INSERT INTO public.action VALUES (2873, 11, 7, 11, 21, 0, false, '', false, '83|add btn gui mail', 1704990705);
INSERT INTO public.action VALUES (2874, 14, 7, 11, 21, 0, false, '', false, '83|add btn gui mail', 1704990705);
INSERT INTO public.action VALUES (2875, 16, 7, 11, 21, 0, false, '', false, '83|add btn gui mail', 1704990705);
INSERT INTO public.action VALUES (2876, 5, 7, 11, 21, 0, false, '', false, '83|add btn gui mail', 1704990705);
INSERT INTO public.action VALUES (2883, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Message":"Merge pull request ''add btn gui mail'' (#83) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/83\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T23:33:45+07:00"},{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"}],"HeadCommit":{"Sha1":"50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Message":"Merge pull request ''add btn gui mail'' (#83) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/83\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T23:33:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/891890aa28aae52d5c4d12f2b351251d3b1be143...50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Len":2}', 1704990832);
INSERT INTO public.action VALUES (2884, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Message":"Merge pull request ''add btn gui mail'' (#83) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/83\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T23:33:45+07:00"},{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"}],"HeadCommit":{"Sha1":"50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Message":"Merge pull request ''add btn gui mail'' (#83) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/83\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T23:33:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/891890aa28aae52d5c4d12f2b351251d3b1be143...50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Len":2}', 1704990832);
INSERT INTO public.action VALUES (2991, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"}],"HeadCommit":{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bf230208b1efd148c1dec00f3c4eb158311100bd...8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Len":1}', 1705045372);
INSERT INTO public.action VALUES (2992, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"}],"HeadCommit":{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bf230208b1efd148c1dec00f3c4eb158311100bd...8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Len":1}', 1705045372);
INSERT INTO public.action VALUES (2993, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"}],"HeadCommit":{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bf230208b1efd148c1dec00f3c4eb158311100bd...8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Len":1}', 1705045372);
INSERT INTO public.action VALUES (2994, 11, 7, 11, 21, 0, false, '', false, '87|fix api tong hop so lieu tuyen sinh', 1705045392);
INSERT INTO public.action VALUES (2995, 14, 7, 11, 21, 0, false, '', false, '87|fix api tong hop so lieu tuyen sinh', 1705045392);
INSERT INTO public.action VALUES (2996, 16, 7, 11, 21, 0, false, '', false, '87|fix api tong hop so lieu tuyen sinh', 1705045392);
INSERT INTO public.action VALUES (2997, 5, 7, 11, 21, 0, false, '', false, '87|fix api tong hop so lieu tuyen sinh', 1705045392);
INSERT INTO public.action VALUES (2998, 1, 7, 11, 21, 0, false, '', false, '87|fix api tong hop so lieu tuyen sinh', 1705045392);
INSERT INTO public.action VALUES (3027, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"}],"HeadCommit":{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8d033bdc680e69f37d6b0c7530e23ace16ad7ab6...8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Len":1}', 1705047285);
INSERT INTO public.action VALUES (3075, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"}],"HeadCommit":{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"},"CompareURL":"khieu-nai/backend/compare/d2affd50bad1017bfbc9d6940c7b79c6b93e7380...b91fcae669214f6410e0844cb50560d8313ec508","Len":1}', 1705050154);
INSERT INTO public.action VALUES (2885, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Message":"Merge pull request ''add btn gui mail'' (#83) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/83\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T23:33:45+07:00"},{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"}],"HeadCommit":{"Sha1":"50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Message":"Merge pull request ''add btn gui mail'' (#83) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/83\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T23:33:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/891890aa28aae52d5c4d12f2b351251d3b1be143...50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Len":2}', 1704990832);
INSERT INTO public.action VALUES (2886, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Message":"Merge pull request ''add btn gui mail'' (#83) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/83\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T23:33:45+07:00"},{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"}],"HeadCommit":{"Sha1":"50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Message":"Merge pull request ''add btn gui mail'' (#83) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/83\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T23:33:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/891890aa28aae52d5c4d12f2b351251d3b1be143...50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Len":2}', 1704990832);
INSERT INTO public.action VALUES (2887, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Message":"Merge pull request ''add btn gui mail'' (#83) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/83\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T23:33:45+07:00"},{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"}],"HeadCommit":{"Sha1":"50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Message":"Merge pull request ''add btn gui mail'' (#83) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/83\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T23:33:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/891890aa28aae52d5c4d12f2b351251d3b1be143...50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Len":2}', 1704990832);
INSERT INTO public.action VALUES (2888, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/136/head', false, '', 1705017370);
INSERT INTO public.action VALUES (2889, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/136/head', false, '', 1705017370);
INSERT INTO public.action VALUES (2890, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/136/head', false, '', 1705017370);
INSERT INTO public.action VALUES (2891, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/136/merge', false, '', 1705017370);
INSERT INTO public.action VALUES (2892, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/136/merge', false, '', 1705017370);
INSERT INTO public.action VALUES (2893, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/136/merge', false, '', 1705017370);
INSERT INTO public.action VALUES (2894, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/137/head', false, '', 1705017370);
INSERT INTO public.action VALUES (2895, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/137/head', false, '', 1705017370);
INSERT INTO public.action VALUES (2896, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/137/head', false, '', 1705017370);
INSERT INTO public.action VALUES (2897, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/137/merge', false, '', 1705017370);
INSERT INTO public.action VALUES (2898, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/137/merge', false, '', 1705017370);
INSERT INTO public.action VALUES (2899, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/137/merge', false, '', 1705017370);
INSERT INTO public.action VALUES (2900, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"}],"HeadCommit":{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2ea9bc82fbf36de091bb11804d7a7ffae089c611...7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Len":1}', 1705024773);
INSERT INTO public.action VALUES (2901, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"}],"HeadCommit":{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2ea9bc82fbf36de091bb11804d7a7ffae089c611...7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Len":1}', 1705024773);
INSERT INTO public.action VALUES (2999, 11, 11, 11, 21, 0, false, '', false, '87|fix api tong hop so lieu tuyen sinh', 1705045581);
INSERT INTO public.action VALUES (3000, 14, 11, 11, 21, 0, false, '', false, '87|fix api tong hop so lieu tuyen sinh', 1705045581);
INSERT INTO public.action VALUES (3001, 16, 11, 11, 21, 0, false, '', false, '87|fix api tong hop so lieu tuyen sinh', 1705045581);
INSERT INTO public.action VALUES (2902, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"}],"HeadCommit":{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2ea9bc82fbf36de091bb11804d7a7ffae089c611...7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Len":1}', 1705024773);
INSERT INTO public.action VALUES (2903, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"}],"HeadCommit":{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2ea9bc82fbf36de091bb11804d7a7ffae089c611...7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Len":1}', 1705024773);
INSERT INTO public.action VALUES (2904, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"}],"HeadCommit":{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2ea9bc82fbf36de091bb11804d7a7ffae089c611...7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Len":1}', 1705024773);
INSERT INTO public.action VALUES (2905, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},{"Sha1":"6ddc3308160e6450d6b7a16081e12973629317a6","Message":"fix: component address + oganization\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:02:39+07:00"}],"HeadCommit":{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},"CompareURL":"khieu-nai/admin/compare/ec74b0ab70e1e48ddd32ec953e0086264cc0de94...94ffd4fad7e84bcd1525ff0775450354d753d78a","Len":2}', 1705025088);
INSERT INTO public.action VALUES (2906, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},{"Sha1":"6ddc3308160e6450d6b7a16081e12973629317a6","Message":"fix: component address + oganization\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:02:39+07:00"}],"HeadCommit":{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},"CompareURL":"khieu-nai/admin/compare/ec74b0ab70e1e48ddd32ec953e0086264cc0de94...94ffd4fad7e84bcd1525ff0775450354d753d78a","Len":2}', 1705025088);
INSERT INTO public.action VALUES (2907, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},{"Sha1":"6ddc3308160e6450d6b7a16081e12973629317a6","Message":"fix: component address + oganization\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:02:39+07:00"}],"HeadCommit":{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},"CompareURL":"khieu-nai/admin/compare/ec74b0ab70e1e48ddd32ec953e0086264cc0de94...94ffd4fad7e84bcd1525ff0775450354d753d78a","Len":2}', 1705025088);
INSERT INTO public.action VALUES (2908, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},{"Sha1":"6ddc3308160e6450d6b7a16081e12973629317a6","Message":"fix: component address + oganization\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:02:39+07:00"}],"HeadCommit":{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},"CompareURL":"khieu-nai/admin/compare/ec74b0ab70e1e48ddd32ec953e0086264cc0de94...94ffd4fad7e84bcd1525ff0775450354d753d78a","Len":2}', 1705025088);
INSERT INTO public.action VALUES (3002, 5, 11, 11, 21, 0, false, '', false, '87|fix api tong hop so lieu tuyen sinh', 1705045581);
INSERT INTO public.action VALUES (3003, 1, 11, 11, 21, 0, false, '', false, '87|fix api tong hop so lieu tuyen sinh', 1705045581);
INSERT INTO public.action VALUES (3198, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/117/head', false, '', 1705164372);
INSERT INTO public.action VALUES (3199, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/117/head', false, '', 1705164372);
INSERT INTO public.action VALUES (3200, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/117/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (3201, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/117/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (2909, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},{"Sha1":"6ddc3308160e6450d6b7a16081e12973629317a6","Message":"fix: component address + oganization\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:02:39+07:00"}],"HeadCommit":{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},"CompareURL":"khieu-nai/admin/compare/ec74b0ab70e1e48ddd32ec953e0086264cc0de94...94ffd4fad7e84bcd1525ff0775450354d753d78a","Len":2}', 1705025088);
INSERT INTO public.action VALUES (2910, 9, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},{"Sha1":"6ddc3308160e6450d6b7a16081e12973629317a6","Message":"fix: component address + oganization\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:02:39+07:00"}],"HeadCommit":{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},"CompareURL":"khieu-nai/admin/compare/ec74b0ab70e1e48ddd32ec953e0086264cc0de94...94ffd4fad7e84bcd1525ff0775450354d753d78a","Len":2}', 1705025088);
INSERT INTO public.action VALUES (2911, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"}],"HeadCommit":{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7f5f8927493694fa7b669e9f03f9b7cb95fda38b...d727cc3cd0303928173eddab019be9d9615d69da","Len":1}', 1705025943);
INSERT INTO public.action VALUES (2912, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"}],"HeadCommit":{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7f5f8927493694fa7b669e9f03f9b7cb95fda38b...d727cc3cd0303928173eddab019be9d9615d69da","Len":1}', 1705025943);
INSERT INTO public.action VALUES (2913, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"}],"HeadCommit":{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7f5f8927493694fa7b669e9f03f9b7cb95fda38b...d727cc3cd0303928173eddab019be9d9615d69da","Len":1}', 1705025943);
INSERT INTO public.action VALUES (2914, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"}],"HeadCommit":{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7f5f8927493694fa7b669e9f03f9b7cb95fda38b...d727cc3cd0303928173eddab019be9d9615d69da","Len":1}', 1705025943);
INSERT INTO public.action VALUES (2915, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"}],"HeadCommit":{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7f5f8927493694fa7b669e9f03f9b7cb95fda38b...d727cc3cd0303928173eddab019be9d9615d69da","Len":1}', 1705025943);
INSERT INTO public.action VALUES (2916, 11, 7, 11, 21, 0, false, '', false, '84|fix change so nam', 1705025961);
INSERT INTO public.action VALUES (2917, 14, 7, 11, 21, 0, false, '', false, '84|fix change so nam', 1705025961);
INSERT INTO public.action VALUES (2918, 16, 7, 11, 21, 0, false, '', false, '84|fix change so nam', 1705025961);
INSERT INTO public.action VALUES (2919, 5, 7, 11, 21, 0, false, '', false, '84|fix change so nam', 1705025961);
INSERT INTO public.action VALUES (2920, 1, 7, 11, 21, 0, false, '', false, '84|fix change so nam', 1705025961);
INSERT INTO public.action VALUES (2921, 11, 11, 11, 21, 0, false, '', false, '84|fix change so nam', 1705025976);
INSERT INTO public.action VALUES (2922, 14, 11, 11, 21, 0, false, '', false, '84|fix change so nam', 1705025976);
INSERT INTO public.action VALUES (2923, 16, 11, 11, 21, 0, false, '', false, '84|fix change so nam', 1705025976);
INSERT INTO public.action VALUES (2924, 5, 11, 11, 21, 0, false, '', false, '84|fix change so nam', 1705025976);
INSERT INTO public.action VALUES (2925, 1, 11, 11, 21, 0, false, '', false, '84|fix change so nam', 1705025976);
INSERT INTO public.action VALUES (3202, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/117/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (3203, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/118/head', false, '', 1705164372);
INSERT INTO public.action VALUES (2926, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d48e38d9a17ce739803e4e98d015c2fc443742ac","Message":"Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T09:19:30+07:00"},{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"},{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"}],"HeadCommit":{"Sha1":"d48e38d9a17ce739803e4e98d015c2fc443742ac","Message":"Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T09:19:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/50815ab17a48609b68bcfab8f7f40e59e7dcb4f3...d48e38d9a17ce739803e4e98d015c2fc443742ac","Len":3}', 1705025977);
INSERT INTO public.action VALUES (2927, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d48e38d9a17ce739803e4e98d015c2fc443742ac","Message":"Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T09:19:30+07:00"},{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"},{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"}],"HeadCommit":{"Sha1":"d48e38d9a17ce739803e4e98d015c2fc443742ac","Message":"Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T09:19:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/50815ab17a48609b68bcfab8f7f40e59e7dcb4f3...d48e38d9a17ce739803e4e98d015c2fc443742ac","Len":3}', 1705025977);
INSERT INTO public.action VALUES (2928, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d48e38d9a17ce739803e4e98d015c2fc443742ac","Message":"Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T09:19:30+07:00"},{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"},{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"}],"HeadCommit":{"Sha1":"d48e38d9a17ce739803e4e98d015c2fc443742ac","Message":"Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T09:19:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/50815ab17a48609b68bcfab8f7f40e59e7dcb4f3...d48e38d9a17ce739803e4e98d015c2fc443742ac","Len":3}', 1705025977);
INSERT INTO public.action VALUES (2929, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d48e38d9a17ce739803e4e98d015c2fc443742ac","Message":"Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T09:19:30+07:00"},{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"},{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"}],"HeadCommit":{"Sha1":"d48e38d9a17ce739803e4e98d015c2fc443742ac","Message":"Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T09:19:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/50815ab17a48609b68bcfab8f7f40e59e7dcb4f3...d48e38d9a17ce739803e4e98d015c2fc443742ac","Len":3}', 1705025977);
INSERT INTO public.action VALUES (3028, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"}],"HeadCommit":{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8d033bdc680e69f37d6b0c7530e23ace16ad7ab6...8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Len":1}', 1705047285);
INSERT INTO public.action VALUES (3204, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/118/head', false, '', 1705164372);
INSERT INTO public.action VALUES (3205, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/118/head', false, '', 1705164372);
INSERT INTO public.action VALUES (2930, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d48e38d9a17ce739803e4e98d015c2fc443742ac","Message":"Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T09:19:30+07:00"},{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"},{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"}],"HeadCommit":{"Sha1":"d48e38d9a17ce739803e4e98d015c2fc443742ac","Message":"Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T09:19:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/50815ab17a48609b68bcfab8f7f40e59e7dcb4f3...d48e38d9a17ce739803e4e98d015c2fc443742ac","Len":3}', 1705025977);
INSERT INTO public.action VALUES (2931, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"}],"HeadCommit":{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d727cc3cd0303928173eddab019be9d9615d69da...c78cbbacb228029e2f7904edb91659aa06135be7","Len":1}', 1705030268);
INSERT INTO public.action VALUES (2932, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"}],"HeadCommit":{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d727cc3cd0303928173eddab019be9d9615d69da...c78cbbacb228029e2f7904edb91659aa06135be7","Len":1}', 1705030268);
INSERT INTO public.action VALUES (2933, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"}],"HeadCommit":{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d727cc3cd0303928173eddab019be9d9615d69da...c78cbbacb228029e2f7904edb91659aa06135be7","Len":1}', 1705030268);
INSERT INTO public.action VALUES (2934, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"}],"HeadCommit":{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d727cc3cd0303928173eddab019be9d9615d69da...c78cbbacb228029e2f7904edb91659aa06135be7","Len":1}', 1705030268);
INSERT INTO public.action VALUES (2935, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"}],"HeadCommit":{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d727cc3cd0303928173eddab019be9d9615d69da...c78cbbacb228029e2f7904edb91659aa06135be7","Len":1}', 1705030268);
INSERT INTO public.action VALUES (3006, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Message":"Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:46:16+07:00"},{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"}],"HeadCommit":{"Sha1":"1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Message":"Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:46:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6189e5347420d4bbcee5c4f550ed3cd17a77ba41...1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Len":2}', 1705045583);
INSERT INTO public.action VALUES (3206, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/118/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (3207, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/118/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (3031, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"}],"HeadCommit":{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8d033bdc680e69f37d6b0c7530e23ace16ad7ab6...8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Len":1}', 1705047285);
INSERT INTO public.action VALUES (3032, 11, 7, 11, 21, 0, false, '', false, '88|fix bao cao tuyen sinh nn/nam', 1705047314);
INSERT INTO public.action VALUES (3033, 14, 7, 11, 21, 0, false, '', false, '88|fix bao cao tuyen sinh nn/nam', 1705047314);
INSERT INTO public.action VALUES (3034, 16, 7, 11, 21, 0, false, '', false, '88|fix bao cao tuyen sinh nn/nam', 1705047314);
INSERT INTO public.action VALUES (3035, 5, 7, 11, 21, 0, false, '', false, '88|fix bao cao tuyen sinh nn/nam', 1705047314);
INSERT INTO public.action VALUES (3036, 1, 7, 11, 21, 0, false, '', false, '88|fix bao cao tuyen sinh nn/nam', 1705047314);
INSERT INTO public.action VALUES (3037, 11, 11, 11, 21, 0, false, '', false, '88|fix bao cao tuyen sinh nn/nam', 1705047329);
INSERT INTO public.action VALUES (3038, 14, 11, 11, 21, 0, false, '', false, '88|fix bao cao tuyen sinh nn/nam', 1705047329);
INSERT INTO public.action VALUES (3039, 16, 11, 11, 21, 0, false, '', false, '88|fix bao cao tuyen sinh nn/nam', 1705047329);
INSERT INTO public.action VALUES (3040, 5, 11, 11, 21, 0, false, '', false, '88|fix bao cao tuyen sinh nn/nam', 1705047329);
INSERT INTO public.action VALUES (3041, 1, 11, 11, 21, 0, false, '', false, '88|fix bao cao tuyen sinh nn/nam', 1705047329);
INSERT INTO public.action VALUES (3052, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"}],"HeadCommit":{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/41e50f4abb6a643eb77c56ef5d517a3b404880ea...18d5c8f72559020069d731f9b8b1e4073a955df7","Len":1}', 1705050058);
INSERT INTO public.action VALUES (3053, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"}],"HeadCommit":{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/41e50f4abb6a643eb77c56ef5d517a3b404880ea...18d5c8f72559020069d731f9b8b1e4073a955df7","Len":1}', 1705050058);
INSERT INTO public.action VALUES (3054, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"}],"HeadCommit":{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/41e50f4abb6a643eb77c56ef5d517a3b404880ea...18d5c8f72559020069d731f9b8b1e4073a955df7","Len":1}', 1705050058);
INSERT INTO public.action VALUES (3055, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"}],"HeadCommit":{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/41e50f4abb6a643eb77c56ef5d517a3b404880ea...18d5c8f72559020069d731f9b8b1e4073a955df7","Len":1}', 1705050058);
INSERT INTO public.action VALUES (3056, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"}],"HeadCommit":{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/41e50f4abb6a643eb77c56ef5d517a3b404880ea...18d5c8f72559020069d731f9b8b1e4073a955df7","Len":1}', 1705050058);
INSERT INTO public.action VALUES (3057, 11, 7, 11, 21, 0, false, '', false, '89|thinh', 1705050072);
INSERT INTO public.action VALUES (3058, 14, 7, 11, 21, 0, false, '', false, '89|thinh', 1705050072);
INSERT INTO public.action VALUES (3059, 16, 7, 11, 21, 0, false, '', false, '89|thinh', 1705050072);
INSERT INTO public.action VALUES (3060, 5, 7, 11, 21, 0, false, '', false, '89|thinh', 1705050072);
INSERT INTO public.action VALUES (3061, 1, 7, 11, 21, 0, false, '', false, '89|thinh', 1705050072);
INSERT INTO public.action VALUES (3062, 11, 11, 11, 21, 0, false, '', false, '89|thinh', 1705050102);
INSERT INTO public.action VALUES (3063, 14, 11, 11, 21, 0, false, '', false, '89|thinh', 1705050102);
INSERT INTO public.action VALUES (3064, 16, 11, 11, 21, 0, false, '', false, '89|thinh', 1705050102);
INSERT INTO public.action VALUES (3065, 5, 11, 11, 21, 0, false, '', false, '89|thinh', 1705050102);
INSERT INTO public.action VALUES (3066, 1, 11, 11, 21, 0, false, '', false, '89|thinh', 1705050102);
INSERT INTO public.action VALUES (3042, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9dbf9d1817992c4fee7c955f584497c9faefcc50","Message":"Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T15:15:24+07:00"},{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"}],"HeadCommit":{"Sha1":"9dbf9d1817992c4fee7c955f584497c9faefcc50","Message":"Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T15:15:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1b5b07b0d95cd7b123fbc052e003045a1ea4530f...9dbf9d1817992c4fee7c955f584497c9faefcc50","Len":2}', 1705047330);
INSERT INTO public.action VALUES (3043, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9dbf9d1817992c4fee7c955f584497c9faefcc50","Message":"Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T15:15:24+07:00"},{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"}],"HeadCommit":{"Sha1":"9dbf9d1817992c4fee7c955f584497c9faefcc50","Message":"Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T15:15:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1b5b07b0d95cd7b123fbc052e003045a1ea4530f...9dbf9d1817992c4fee7c955f584497c9faefcc50","Len":2}', 1705047330);
INSERT INTO public.action VALUES (3044, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9dbf9d1817992c4fee7c955f584497c9faefcc50","Message":"Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T15:15:24+07:00"},{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"}],"HeadCommit":{"Sha1":"9dbf9d1817992c4fee7c955f584497c9faefcc50","Message":"Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T15:15:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1b5b07b0d95cd7b123fbc052e003045a1ea4530f...9dbf9d1817992c4fee7c955f584497c9faefcc50","Len":2}', 1705047330);
INSERT INTO public.action VALUES (3045, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9dbf9d1817992c4fee7c955f584497c9faefcc50","Message":"Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T15:15:24+07:00"},{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"}],"HeadCommit":{"Sha1":"9dbf9d1817992c4fee7c955f584497c9faefcc50","Message":"Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T15:15:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1b5b07b0d95cd7b123fbc052e003045a1ea4530f...9dbf9d1817992c4fee7c955f584497c9faefcc50","Len":2}', 1705047330);
INSERT INTO public.action VALUES (3046, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9dbf9d1817992c4fee7c955f584497c9faefcc50","Message":"Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T15:15:24+07:00"},{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"}],"HeadCommit":{"Sha1":"9dbf9d1817992c4fee7c955f584497c9faefcc50","Message":"Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T15:15:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1b5b07b0d95cd7b123fbc052e003045a1ea4530f...9dbf9d1817992c4fee7c955f584497c9faefcc50","Len":2}', 1705047330);
INSERT INTO public.action VALUES (3047, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"}],"HeadCommit":{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f...41e50f4abb6a643eb77c56ef5d517a3b404880ea","Len":1}', 1705049244);
INSERT INTO public.action VALUES (3048, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"}],"HeadCommit":{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f...41e50f4abb6a643eb77c56ef5d517a3b404880ea","Len":1}', 1705049244);
INSERT INTO public.action VALUES (3049, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"}],"HeadCommit":{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f...41e50f4abb6a643eb77c56ef5d517a3b404880ea","Len":1}', 1705049244);
INSERT INTO public.action VALUES (3050, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"}],"HeadCommit":{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f...41e50f4abb6a643eb77c56ef5d517a3b404880ea","Len":1}', 1705049244);
INSERT INTO public.action VALUES (3051, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"}],"HeadCommit":{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f...41e50f4abb6a643eb77c56ef5d517a3b404880ea","Len":1}', 1705049244);
INSERT INTO public.action VALUES (3067, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"773815950340a50498ed3995ebb83bdcacecc237","Message":"Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:01:38+07:00"},{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"},{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"}],"HeadCommit":{"Sha1":"773815950340a50498ed3995ebb83bdcacecc237","Message":"Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:01:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9dbf9d1817992c4fee7c955f584497c9faefcc50...773815950340a50498ed3995ebb83bdcacecc237","Len":3}', 1705050103);
INSERT INTO public.action VALUES (3068, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"773815950340a50498ed3995ebb83bdcacecc237","Message":"Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:01:38+07:00"},{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"},{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"}],"HeadCommit":{"Sha1":"773815950340a50498ed3995ebb83bdcacecc237","Message":"Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:01:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9dbf9d1817992c4fee7c955f584497c9faefcc50...773815950340a50498ed3995ebb83bdcacecc237","Len":3}', 1705050103);
INSERT INTO public.action VALUES (3076, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"}],"HeadCommit":{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"},"CompareURL":"khieu-nai/backend/compare/d2affd50bad1017bfbc9d6940c7b79c6b93e7380...b91fcae669214f6410e0844cb50560d8313ec508","Len":1}', 1705050154);
INSERT INTO public.action VALUES (3208, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/118/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (3069, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"773815950340a50498ed3995ebb83bdcacecc237","Message":"Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:01:38+07:00"},{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"},{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"}],"HeadCommit":{"Sha1":"773815950340a50498ed3995ebb83bdcacecc237","Message":"Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:01:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9dbf9d1817992c4fee7c955f584497c9faefcc50...773815950340a50498ed3995ebb83bdcacecc237","Len":3}', 1705050103);
INSERT INTO public.action VALUES (3070, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"773815950340a50498ed3995ebb83bdcacecc237","Message":"Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:01:38+07:00"},{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"},{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"}],"HeadCommit":{"Sha1":"773815950340a50498ed3995ebb83bdcacecc237","Message":"Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:01:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9dbf9d1817992c4fee7c955f584497c9faefcc50...773815950340a50498ed3995ebb83bdcacecc237","Len":3}', 1705050103);
INSERT INTO public.action VALUES (3071, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"773815950340a50498ed3995ebb83bdcacecc237","Message":"Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:01:38+07:00"},{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"},{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"}],"HeadCommit":{"Sha1":"773815950340a50498ed3995ebb83bdcacecc237","Message":"Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:01:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9dbf9d1817992c4fee7c955f584497c9faefcc50...773815950340a50498ed3995ebb83bdcacecc237","Len":3}', 1705050103);
INSERT INTO public.action VALUES (3072, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"}],"HeadCommit":{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"},"CompareURL":"khieu-nai/backend/compare/d2affd50bad1017bfbc9d6940c7b79c6b93e7380...b91fcae669214f6410e0844cb50560d8313ec508","Len":1}', 1705050154);
INSERT INTO public.action VALUES (3073, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"}],"HeadCommit":{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"},"CompareURL":"khieu-nai/backend/compare/d2affd50bad1017bfbc9d6940c7b79c6b93e7380...b91fcae669214f6410e0844cb50560d8313ec508","Len":1}', 1705050154);
INSERT INTO public.action VALUES (3074, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"}],"HeadCommit":{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"},"CompareURL":"khieu-nai/backend/compare/d2affd50bad1017bfbc9d6940c7b79c6b93e7380...b91fcae669214f6410e0844cb50560d8313ec508","Len":1}', 1705050154);
INSERT INTO public.action VALUES (3209, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/119/head', false, '', 1705164372);
INSERT INTO public.action VALUES (3210, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/119/head', false, '', 1705164372);
INSERT INTO public.action VALUES (3211, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/119/head', false, '', 1705164372);
INSERT INTO public.action VALUES (3212, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/119/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (3213, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/119/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (3078, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"}],"HeadCommit":{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/18d5c8f72559020069d731f9b8b1e4073a955df7...52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Len":1}', 1705052701);
INSERT INTO public.action VALUES (3079, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"}],"HeadCommit":{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/18d5c8f72559020069d731f9b8b1e4073a955df7...52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Len":1}', 1705052701);
INSERT INTO public.action VALUES (3080, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"}],"HeadCommit":{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/18d5c8f72559020069d731f9b8b1e4073a955df7...52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Len":1}', 1705052701);
INSERT INTO public.action VALUES (3081, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"}],"HeadCommit":{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/18d5c8f72559020069d731f9b8b1e4073a955df7...52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Len":1}', 1705052701);
INSERT INTO public.action VALUES (3082, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"}],"HeadCommit":{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/18d5c8f72559020069d731f9b8b1e4073a955df7...52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Len":1}', 1705052701);
INSERT INTO public.action VALUES (3083, 11, 7, 11, 21, 0, false, '', false, '90|hidden kehoachdapheduyet', 1705052726);
INSERT INTO public.action VALUES (3084, 14, 7, 11, 21, 0, false, '', false, '90|hidden kehoachdapheduyet', 1705052726);
INSERT INTO public.action VALUES (3085, 16, 7, 11, 21, 0, false, '', false, '90|hidden kehoachdapheduyet', 1705052726);
INSERT INTO public.action VALUES (3086, 5, 7, 11, 21, 0, false, '', false, '90|hidden kehoachdapheduyet', 1705052726);
INSERT INTO public.action VALUES (3087, 1, 7, 11, 21, 0, false, '', false, '90|hidden kehoachdapheduyet', 1705052726);
INSERT INTO public.action VALUES (3088, 11, 11, 11, 21, 0, false, '', false, '90|hidden kehoachdapheduyet', 1705052742);
INSERT INTO public.action VALUES (3089, 14, 11, 11, 21, 0, false, '', false, '90|hidden kehoachdapheduyet', 1705052742);
INSERT INTO public.action VALUES (3090, 16, 11, 11, 21, 0, false, '', false, '90|hidden kehoachdapheduyet', 1705052742);
INSERT INTO public.action VALUES (3091, 5, 11, 11, 21, 0, false, '', false, '90|hidden kehoachdapheduyet', 1705052742);
INSERT INTO public.action VALUES (3092, 1, 11, 11, 21, 0, false, '', false, '90|hidden kehoachdapheduyet', 1705052742);
INSERT INTO public.action VALUES (3093, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Message":"Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:45:37+07:00"},{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"}],"HeadCommit":{"Sha1":"4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Message":"Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:45:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/773815950340a50498ed3995ebb83bdcacecc237...4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Len":2}', 1705052744);
INSERT INTO public.action VALUES (3094, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Message":"Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:45:37+07:00"},{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"}],"HeadCommit":{"Sha1":"4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Message":"Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:45:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/773815950340a50498ed3995ebb83bdcacecc237...4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Len":2}', 1705052744);
INSERT INTO public.action VALUES (3095, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Message":"Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:45:37+07:00"},{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"}],"HeadCommit":{"Sha1":"4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Message":"Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:45:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/773815950340a50498ed3995ebb83bdcacecc237...4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Len":2}', 1705052744);
INSERT INTO public.action VALUES (3096, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Message":"Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:45:37+07:00"},{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"}],"HeadCommit":{"Sha1":"4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Message":"Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:45:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/773815950340a50498ed3995ebb83bdcacecc237...4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Len":2}', 1705052744);
INSERT INTO public.action VALUES (3097, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Message":"Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:45:37+07:00"},{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"}],"HeadCommit":{"Sha1":"4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Message":"Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:45:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/773815950340a50498ed3995ebb83bdcacecc237...4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Len":2}', 1705052744);
INSERT INTO public.action VALUES (3214, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/119/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (3215, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/120/head', false, '', 1705164372);
INSERT INTO public.action VALUES (3216, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/120/head', false, '', 1705164372);
INSERT INTO public.action VALUES (3217, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/120/head', false, '', 1705164372);
INSERT INTO public.action VALUES (3218, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/120/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (3219, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/120/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (3220, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/120/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (3098, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},{"Sha1":"bf763670dbcd04cf2d62a4351e7bd827afd8c51f","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:04:50+07:00"},{"Sha1":"2c1fcefaef32b97c209b50d4e26b254dfc876ebb","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:00:21+07:00"},{"Sha1":"2c28f28773d5b3c23e888d4e0d18be1aeeeaf91c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:51+07:00"},{"Sha1":"dc7009da3e2ca79ea7f8bc87835aa020280a81fd","Message":"fix Nhập số kế hoạch không được nhỏ hơn số đã được phê duyệt\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:31+07:00"}],"HeadCommit":{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/869268d636fa17b9ae86c4f0ce751839607f6610...e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Len":6}', 1705066573);
INSERT INTO public.action VALUES (3099, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},{"Sha1":"bf763670dbcd04cf2d62a4351e7bd827afd8c51f","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:04:50+07:00"},{"Sha1":"2c1fcefaef32b97c209b50d4e26b254dfc876ebb","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:00:21+07:00"},{"Sha1":"2c28f28773d5b3c23e888d4e0d18be1aeeeaf91c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:51+07:00"},{"Sha1":"dc7009da3e2ca79ea7f8bc87835aa020280a81fd","Message":"fix Nhập số kế hoạch không được nhỏ hơn số đã được phê duyệt\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:31+07:00"}],"HeadCommit":{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/869268d636fa17b9ae86c4f0ce751839607f6610...e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Len":6}', 1705066573);
INSERT INTO public.action VALUES (3100, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},{"Sha1":"bf763670dbcd04cf2d62a4351e7bd827afd8c51f","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:04:50+07:00"},{"Sha1":"2c1fcefaef32b97c209b50d4e26b254dfc876ebb","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:00:21+07:00"},{"Sha1":"2c28f28773d5b3c23e888d4e0d18be1aeeeaf91c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:51+07:00"},{"Sha1":"dc7009da3e2ca79ea7f8bc87835aa020280a81fd","Message":"fix Nhập số kế hoạch không được nhỏ hơn số đã được phê duyệt\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:31+07:00"}],"HeadCommit":{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/869268d636fa17b9ae86c4f0ce751839607f6610...e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Len":6}', 1705066573);
INSERT INTO public.action VALUES (3101, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},{"Sha1":"bf763670dbcd04cf2d62a4351e7bd827afd8c51f","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:04:50+07:00"},{"Sha1":"2c1fcefaef32b97c209b50d4e26b254dfc876ebb","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:00:21+07:00"},{"Sha1":"2c28f28773d5b3c23e888d4e0d18be1aeeeaf91c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:51+07:00"},{"Sha1":"dc7009da3e2ca79ea7f8bc87835aa020280a81fd","Message":"fix Nhập số kế hoạch không được nhỏ hơn số đã được phê duyệt\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:31+07:00"}],"HeadCommit":{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/869268d636fa17b9ae86c4f0ce751839607f6610...e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Len":6}', 1705066573);
INSERT INTO public.action VALUES (3221, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/121/head', false, '', 1705164372);
INSERT INTO public.action VALUES (3102, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},{"Sha1":"bf763670dbcd04cf2d62a4351e7bd827afd8c51f","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:04:50+07:00"},{"Sha1":"2c1fcefaef32b97c209b50d4e26b254dfc876ebb","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:00:21+07:00"},{"Sha1":"2c28f28773d5b3c23e888d4e0d18be1aeeeaf91c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:51+07:00"},{"Sha1":"dc7009da3e2ca79ea7f8bc87835aa020280a81fd","Message":"fix Nhập số kế hoạch không được nhỏ hơn số đã được phê duyệt\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:31+07:00"}],"HeadCommit":{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/869268d636fa17b9ae86c4f0ce751839607f6610...e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Len":6}', 1705066573);
INSERT INTO public.action VALUES (3103, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},{"Sha1":"bf763670dbcd04cf2d62a4351e7bd827afd8c51f","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:04:50+07:00"},{"Sha1":"2c1fcefaef32b97c209b50d4e26b254dfc876ebb","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:00:21+07:00"},{"Sha1":"2c28f28773d5b3c23e888d4e0d18be1aeeeaf91c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:51+07:00"},{"Sha1":"dc7009da3e2ca79ea7f8bc87835aa020280a81fd","Message":"fix Nhập số kế hoạch không được nhỏ hơn số đã được phê duyệt\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:31+07:00"}],"HeadCommit":{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/869268d636fa17b9ae86c4f0ce751839607f6610...e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Len":6}', 1705066573);
INSERT INTO public.action VALUES (3224, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/121/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (3225, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/121/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (3226, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/121/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (3227, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/122/head', false, '', 1705164372);
INSERT INTO public.action VALUES (3228, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/122/head', false, '', 1705164372);
INSERT INTO public.action VALUES (3229, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/122/head', false, '', 1705164372);
INSERT INTO public.action VALUES (3230, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/122/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (3231, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/122/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (3232, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/122/merge', false, '', 1705164372);
INSERT INTO public.action VALUES (3233, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/108/head', false, '', 1705193770);
INSERT INTO public.action VALUES (3234, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/108/head', false, '', 1705193770);
INSERT INTO public.action VALUES (3235, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/108/head', false, '', 1705193770);
INSERT INTO public.action VALUES (3236, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/108/merge', false, '', 1705193770);
INSERT INTO public.action VALUES (3237, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/108/merge', false, '', 1705193770);
INSERT INTO public.action VALUES (3238, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/108/merge', false, '', 1705193770);
INSERT INTO public.action VALUES (3239, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/109/head', false, '', 1705193770);
INSERT INTO public.action VALUES (3240, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/109/head', false, '', 1705193770);
INSERT INTO public.action VALUES (3241, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/109/head', false, '', 1705193770);
INSERT INTO public.action VALUES (3242, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/109/merge', false, '', 1705193770);
INSERT INTO public.action VALUES (3243, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/109/merge', false, '', 1705193770);
INSERT INTO public.action VALUES (3244, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/109/merge', false, '', 1705193770);
INSERT INTO public.action VALUES (3245, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/110/head', false, '', 1705193770);
INSERT INTO public.action VALUES (3246, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/110/head', false, '', 1705193770);
INSERT INTO public.action VALUES (3247, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/110/head', false, '', 1705193770);
INSERT INTO public.action VALUES (3248, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/111/head', false, '', 1705193770);
INSERT INTO public.action VALUES (3249, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/111/head', false, '', 1705193770);
INSERT INTO public.action VALUES (3250, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/111/head', false, '', 1705193770);
INSERT INTO public.action VALUES (3251, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/111/merge', false, '', 1705193770);
INSERT INTO public.action VALUES (3252, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/111/merge', false, '', 1705193770);
INSERT INTO public.action VALUES (3253, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/111/merge', false, '', 1705193770);
INSERT INTO public.action VALUES (3254, 13, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/2/head', false, '', 1705193774);
INSERT INTO public.action VALUES (3255, 1, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/2/head', false, '', 1705193774);
INSERT INTO public.action VALUES (3256, 4, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/2/head', false, '', 1705193774);
INSERT INTO public.action VALUES (3257, 13, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/2/merge', false, '', 1705193774);
INSERT INTO public.action VALUES (3258, 1, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/2/merge', false, '', 1705193774);
INSERT INTO public.action VALUES (3259, 4, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/2/merge', false, '', 1705193774);
INSERT INTO public.action VALUES (3260, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"}],"HeadCommit":{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63...11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Len":1}', 1705207776);
INSERT INTO public.action VALUES (3261, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"}],"HeadCommit":{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63...11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Len":1}', 1705207776);
INSERT INTO public.action VALUES (3262, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"}],"HeadCommit":{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63...11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Len":1}', 1705207776);
INSERT INTO public.action VALUES (3504, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/212/merge', false, '', 1705340770);
INSERT INTO public.action VALUES (3505, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/212/merge', false, '', 1705340770);
INSERT INTO public.action VALUES (3534, 1, 11, 11, 21, 0, false, '', false, '99|change login', 1705369982);
INSERT INTO public.action VALUES (3535, 5, 11, 11, 21, 0, false, '', false, '99|change login', 1705369982);
INSERT INTO public.action VALUES (3536, 16, 11, 11, 21, 0, false, '', false, '99|change login', 1705369982);
INSERT INTO public.action VALUES (3263, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"}],"HeadCommit":{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63...11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Len":1}', 1705207776);
INSERT INTO public.action VALUES (3264, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"}],"HeadCommit":{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63...11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Len":1}', 1705207776);
INSERT INTO public.action VALUES (3265, 11, 7, 11, 21, 0, false, '', false, '91|add menu thong bao', 1705207983);
INSERT INTO public.action VALUES (3266, 14, 7, 11, 21, 0, false, '', false, '91|add menu thong bao', 1705207983);
INSERT INTO public.action VALUES (3267, 16, 7, 11, 21, 0, false, '', false, '91|add menu thong bao', 1705207983);
INSERT INTO public.action VALUES (3268, 5, 7, 11, 21, 0, false, '', false, '91|add menu thong bao', 1705207983);
INSERT INTO public.action VALUES (3269, 1, 7, 11, 21, 0, false, '', false, '91|add menu thong bao', 1705207983);
INSERT INTO public.action VALUES (3270, 11, 11, 11, 21, 0, false, '', false, '91|add menu thong bao', 1705208014);
INSERT INTO public.action VALUES (3271, 14, 11, 11, 21, 0, false, '', false, '91|add menu thong bao', 1705208014);
INSERT INTO public.action VALUES (3272, 16, 11, 11, 21, 0, false, '', false, '91|add menu thong bao', 1705208014);
INSERT INTO public.action VALUES (3273, 5, 11, 11, 21, 0, false, '', false, '91|add menu thong bao', 1705208014);
INSERT INTO public.action VALUES (3274, 1, 11, 11, 21, 0, false, '', false, '91|add menu thong bao', 1705208014);
INSERT INTO public.action VALUES (3275, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7b0e4a3aa34a91347178a93361fc9e193abd595d","Message":"Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-14T11:53:27+07:00"},{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"}],"HeadCommit":{"Sha1":"7b0e4a3aa34a91347178a93361fc9e193abd595d","Message":"Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-14T11:53:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6...7b0e4a3aa34a91347178a93361fc9e193abd595d","Len":2}', 1705208015);
INSERT INTO public.action VALUES (3276, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7b0e4a3aa34a91347178a93361fc9e193abd595d","Message":"Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-14T11:53:27+07:00"},{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"}],"HeadCommit":{"Sha1":"7b0e4a3aa34a91347178a93361fc9e193abd595d","Message":"Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-14T11:53:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6...7b0e4a3aa34a91347178a93361fc9e193abd595d","Len":2}', 1705208015);
INSERT INTO public.action VALUES (3277, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7b0e4a3aa34a91347178a93361fc9e193abd595d","Message":"Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-14T11:53:27+07:00"},{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"}],"HeadCommit":{"Sha1":"7b0e4a3aa34a91347178a93361fc9e193abd595d","Message":"Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-14T11:53:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6...7b0e4a3aa34a91347178a93361fc9e193abd595d","Len":2}', 1705208015);
INSERT INTO public.action VALUES (3291, 9, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/15e39944f15f208be7ba038d75a2f68911f1d21e...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":1}', 1705285619);
INSERT INTO public.action VALUES (3278, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7b0e4a3aa34a91347178a93361fc9e193abd595d","Message":"Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-14T11:53:27+07:00"},{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"}],"HeadCommit":{"Sha1":"7b0e4a3aa34a91347178a93361fc9e193abd595d","Message":"Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-14T11:53:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6...7b0e4a3aa34a91347178a93361fc9e193abd595d","Len":2}', 1705208015);
INSERT INTO public.action VALUES (3279, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7b0e4a3aa34a91347178a93361fc9e193abd595d","Message":"Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-14T11:53:27+07:00"},{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"}],"HeadCommit":{"Sha1":"7b0e4a3aa34a91347178a93361fc9e193abd595d","Message":"Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-14T11:53:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6...7b0e4a3aa34a91347178a93361fc9e193abd595d","Len":2}', 1705208015);
INSERT INTO public.action VALUES (3280, 13, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/1/head', false, '', 1705223174);
INSERT INTO public.action VALUES (3281, 1, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/1/head', false, '', 1705223174);
INSERT INTO public.action VALUES (3282, 4, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/1/head', false, '', 1705223174);
INSERT INTO public.action VALUES (3283, 13, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/1/merge', false, '', 1705223174);
INSERT INTO public.action VALUES (3284, 1, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/1/merge', false, '', 1705223174);
INSERT INTO public.action VALUES (3285, 4, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/1/merge', false, '', 1705223174);
INSERT INTO public.action VALUES (3286, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/15e39944f15f208be7ba038d75a2f68911f1d21e...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":1}', 1705285619);
INSERT INTO public.action VALUES (3287, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/15e39944f15f208be7ba038d75a2f68911f1d21e...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":1}', 1705285619);
INSERT INTO public.action VALUES (3288, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/15e39944f15f208be7ba038d75a2f68911f1d21e...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":1}', 1705285619);
INSERT INTO public.action VALUES (3289, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/15e39944f15f208be7ba038d75a2f68911f1d21e...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":1}', 1705285619);
INSERT INTO public.action VALUES (3290, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/15e39944f15f208be7ba038d75a2f68911f1d21e...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":1}', 1705285619);
INSERT INTO public.action VALUES (3343, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/106/merge', false, '', 1705311370);
INSERT INTO public.action VALUES (3344, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/107/head', false, '', 1705311370);
INSERT INTO public.action VALUES (3345, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/107/head', false, '', 1705311370);
INSERT INTO public.action VALUES (3346, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/107/head', false, '', 1705311370);
INSERT INTO public.action VALUES (3292, 15, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"},{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"}],"HeadCommit":{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...4686dd6b75c63490b6661f85c0b1c947240ec20f","Len":7}', 1705291491);
INSERT INTO public.action VALUES (3293, 12, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"},{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"}],"HeadCommit":{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...4686dd6b75c63490b6661f85c0b1c947240ec20f","Len":7}', 1705291491);
INSERT INTO public.action VALUES (3294, 2, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"},{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"}],"HeadCommit":{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...4686dd6b75c63490b6661f85c0b1c947240ec20f","Len":7}', 1705291491);
INSERT INTO public.action VALUES (3295, 1, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"},{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"}],"HeadCommit":{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...4686dd6b75c63490b6661f85c0b1c947240ec20f","Len":7}', 1705291491);
INSERT INTO public.action VALUES (3296, 11, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"},{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"}],"HeadCommit":{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...4686dd6b75c63490b6661f85c0b1c947240ec20f","Len":7}', 1705291491);
INSERT INTO public.action VALUES (3297, 5, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"},{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"}],"HeadCommit":{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...4686dd6b75c63490b6661f85c0b1c947240ec20f","Len":7}', 1705291491);
INSERT INTO public.action VALUES (3298, 9, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"},{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"}],"HeadCommit":{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...4686dd6b75c63490b6661f85c0b1c947240ec20f","Len":7}', 1705291491);
INSERT INTO public.action VALUES (3299, 16, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"},{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"}],"HeadCommit":{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...4686dd6b75c63490b6661f85c0b1c947240ec20f","Len":7}', 1705291491);
INSERT INTO public.action VALUES (3300, 15, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/4686dd6b75c63490b6661f85c0b1c947240ec20f...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":2}', 1705291588);
INSERT INTO public.action VALUES (3301, 12, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/4686dd6b75c63490b6661f85c0b1c947240ec20f...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":2}', 1705291588);
INSERT INTO public.action VALUES (3302, 2, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/4686dd6b75c63490b6661f85c0b1c947240ec20f...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":2}', 1705291588);
INSERT INTO public.action VALUES (3303, 1, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/4686dd6b75c63490b6661f85c0b1c947240ec20f...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":2}', 1705291588);
INSERT INTO public.action VALUES (3304, 11, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/4686dd6b75c63490b6661f85c0b1c947240ec20f...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":2}', 1705291588);
INSERT INTO public.action VALUES (3305, 5, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/4686dd6b75c63490b6661f85c0b1c947240ec20f...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":2}', 1705291588);
INSERT INTO public.action VALUES (3306, 9, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/4686dd6b75c63490b6661f85c0b1c947240ec20f...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":2}', 1705291588);
INSERT INTO public.action VALUES (3347, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/107/merge', false, '', 1705311370);
INSERT INTO public.action VALUES (3348, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/107/merge', false, '', 1705311370);
INSERT INTO public.action VALUES (3307, 16, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/4686dd6b75c63490b6661f85c0b1c947240ec20f...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":2}', 1705291588);
INSERT INTO public.action VALUES (3308, 15, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/6eeb3167459d18da3f7e5738d37354a500b8c3f6...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":4}', 1705291619);
INSERT INTO public.action VALUES (3309, 12, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/6eeb3167459d18da3f7e5738d37354a500b8c3f6...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":4}', 1705291619);
INSERT INTO public.action VALUES (3310, 2, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/6eeb3167459d18da3f7e5738d37354a500b8c3f6...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":4}', 1705291620);
INSERT INTO public.action VALUES (3311, 1, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/6eeb3167459d18da3f7e5738d37354a500b8c3f6...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":4}', 1705291620);
INSERT INTO public.action VALUES (3349, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/107/merge', false, '', 1705311370);
INSERT INTO public.action VALUES (3312, 11, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/6eeb3167459d18da3f7e5738d37354a500b8c3f6...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":4}', 1705291620);
INSERT INTO public.action VALUES (3313, 5, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/6eeb3167459d18da3f7e5738d37354a500b8c3f6...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":4}', 1705291620);
INSERT INTO public.action VALUES (3314, 9, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/6eeb3167459d18da3f7e5738d37354a500b8c3f6...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":4}', 1705291620);
INSERT INTO public.action VALUES (3315, 16, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/6eeb3167459d18da3f7e5738d37354a500b8c3f6...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":4}', 1705291620);
INSERT INTO public.action VALUES (3350, 11, 11, 11, 21, 0, false, '', false, '92|add full action', 1705311410);
INSERT INTO public.action VALUES (3351, 14, 11, 11, 21, 0, false, '', false, '92|add full action', 1705311410);
INSERT INTO public.action VALUES (3352, 1, 11, 11, 21, 0, false, '', false, '92|add full action', 1705311411);
INSERT INTO public.action VALUES (3353, 5, 11, 11, 21, 0, false, '', false, '92|add full action', 1705311411);
INSERT INTO public.action VALUES (3354, 16, 11, 11, 21, 0, false, '', false, '92|add full action', 1705311411);
INSERT INTO public.action VALUES (3506, 11, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '', 1705368636);
INSERT INTO public.action VALUES (3507, 12, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '', 1705368636);
INSERT INTO public.action VALUES (3508, 2, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '', 1705368636);
INSERT INTO public.action VALUES (3509, 1, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '', 1705368636);
INSERT INTO public.action VALUES (3510, 15, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '', 1705368636);
INSERT INTO public.action VALUES (3511, 5, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '', 1705368636);
INSERT INTO public.action VALUES (3316, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},{"Sha1":"6935781437259ef8b4fbc67a932ddf11dafb1899","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:55+07:00"},{"Sha1":"69a1a8ca8f1772e4b925d1acb1f217a85d542292","Message":"gửi thông báo khi thao tác với kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:15+07:00"}],"HeadCommit":{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85...25171a94c626223b0e72c8a83ce97b2af8680282","Len":3}', 1705301771);
INSERT INTO public.action VALUES (3317, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},{"Sha1":"6935781437259ef8b4fbc67a932ddf11dafb1899","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:55+07:00"},{"Sha1":"69a1a8ca8f1772e4b925d1acb1f217a85d542292","Message":"gửi thông báo khi thao tác với kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:15+07:00"}],"HeadCommit":{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85...25171a94c626223b0e72c8a83ce97b2af8680282","Len":3}', 1705301771);
INSERT INTO public.action VALUES (3318, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},{"Sha1":"6935781437259ef8b4fbc67a932ddf11dafb1899","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:55+07:00"},{"Sha1":"69a1a8ca8f1772e4b925d1acb1f217a85d542292","Message":"gửi thông báo khi thao tác với kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:15+07:00"}],"HeadCommit":{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85...25171a94c626223b0e72c8a83ce97b2af8680282","Len":3}', 1705301771);
INSERT INTO public.action VALUES (3319, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},{"Sha1":"6935781437259ef8b4fbc67a932ddf11dafb1899","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:55+07:00"},{"Sha1":"69a1a8ca8f1772e4b925d1acb1f217a85d542292","Message":"gửi thông báo khi thao tác với kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:15+07:00"}],"HeadCommit":{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85...25171a94c626223b0e72c8a83ce97b2af8680282","Len":3}', 1705301771);
INSERT INTO public.action VALUES (3320, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},{"Sha1":"6935781437259ef8b4fbc67a932ddf11dafb1899","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:55+07:00"},{"Sha1":"69a1a8ca8f1772e4b925d1acb1f217a85d542292","Message":"gửi thông báo khi thao tác với kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:15+07:00"}],"HeadCommit":{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85...25171a94c626223b0e72c8a83ce97b2af8680282","Len":3}', 1705301771);
INSERT INTO public.action VALUES (3370, 11, 11, 11, 21, 0, false, '', false, '93|fix bug', 1705312012);
INSERT INTO public.action VALUES (3371, 14, 11, 11, 21, 0, false, '', false, '93|fix bug', 1705312012);
INSERT INTO public.action VALUES (3372, 1, 11, 11, 21, 0, false, '', false, '93|fix bug', 1705312012);
INSERT INTO public.action VALUES (3373, 5, 11, 11, 21, 0, false, '', false, '93|fix bug', 1705312012);
INSERT INTO public.action VALUES (3374, 16, 11, 11, 21, 0, false, '', false, '93|fix bug', 1705312012);
INSERT INTO public.action VALUES (3512, 9, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '', 1705368636);
INSERT INTO public.action VALUES (3513, 16, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '', 1705368636);
INSERT INTO public.action VALUES (3321, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},{"Sha1":"6935781437259ef8b4fbc67a932ddf11dafb1899","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:55+07:00"},{"Sha1":"69a1a8ca8f1772e4b925d1acb1f217a85d542292","Message":"gửi thông báo khi thao tác với kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:15+07:00"}],"HeadCommit":{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85...25171a94c626223b0e72c8a83ce97b2af8680282","Len":3}', 1705301771);
INSERT INTO public.action VALUES (3322, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"}],"HeadCommit":{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1...5562d2823f0ace47c1fca2f8fe994e65241e8bea","Len":1}', 1705311229);
INSERT INTO public.action VALUES (3323, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"}],"HeadCommit":{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1...5562d2823f0ace47c1fca2f8fe994e65241e8bea","Len":1}', 1705311229);
INSERT INTO public.action VALUES (3324, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"}],"HeadCommit":{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1...5562d2823f0ace47c1fca2f8fe994e65241e8bea","Len":1}', 1705311229);
INSERT INTO public.action VALUES (3325, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"}],"HeadCommit":{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1...5562d2823f0ace47c1fca2f8fe994e65241e8bea","Len":1}', 1705311229);
INSERT INTO public.action VALUES (3326, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"}],"HeadCommit":{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1...5562d2823f0ace47c1fca2f8fe994e65241e8bea","Len":1}', 1705311229);
INSERT INTO public.action VALUES (3327, 11, 7, 11, 21, 0, false, '', false, '92|add full action', 1705311361);
INSERT INTO public.action VALUES (3328, 14, 7, 11, 21, 0, false, '', false, '92|add full action', 1705311361);
INSERT INTO public.action VALUES (3329, 1, 7, 11, 21, 0, false, '', false, '92|add full action', 1705311361);
INSERT INTO public.action VALUES (3330, 5, 7, 11, 21, 0, false, '', false, '92|add full action', 1705311361);
INSERT INTO public.action VALUES (3331, 16, 7, 11, 21, 0, false, '', false, '92|add full action', 1705311361);
INSERT INTO public.action VALUES (3332, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/105/head', false, '', 1705311370);
INSERT INTO public.action VALUES (3333, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/105/head', false, '', 1705311370);
INSERT INTO public.action VALUES (3334, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/105/head', false, '', 1705311370);
INSERT INTO public.action VALUES (3335, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/105/merge', false, '', 1705311370);
INSERT INTO public.action VALUES (3336, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/105/merge', false, '', 1705311370);
INSERT INTO public.action VALUES (3337, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/105/merge', false, '', 1705311370);
INSERT INTO public.action VALUES (3338, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/106/head', false, '', 1705311370);
INSERT INTO public.action VALUES (3339, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/106/head', false, '', 1705311370);
INSERT INTO public.action VALUES (3340, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/106/head', false, '', 1705311370);
INSERT INTO public.action VALUES (3341, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/106/merge', false, '', 1705311370);
INSERT INTO public.action VALUES (3342, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/106/merge', false, '', 1705311370);
INSERT INTO public.action VALUES (3397, 16, 7, 11, 21, 0, false, '', false, '94|fix bug', 1705312953);
INSERT INTO public.action VALUES (3355, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9b29db610b20afcdaeec0f83db697b5c93ff5abf","Message":"Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:36:44+07:00"},{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"}],"HeadCommit":{"Sha1":"9b29db610b20afcdaeec0f83db697b5c93ff5abf","Message":"Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:36:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7b0e4a3aa34a91347178a93361fc9e193abd595d...9b29db610b20afcdaeec0f83db697b5c93ff5abf","Len":2}', 1705311411);
INSERT INTO public.action VALUES (3356, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9b29db610b20afcdaeec0f83db697b5c93ff5abf","Message":"Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:36:44+07:00"},{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"}],"HeadCommit":{"Sha1":"9b29db610b20afcdaeec0f83db697b5c93ff5abf","Message":"Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:36:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7b0e4a3aa34a91347178a93361fc9e193abd595d...9b29db610b20afcdaeec0f83db697b5c93ff5abf","Len":2}', 1705311411);
INSERT INTO public.action VALUES (3357, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9b29db610b20afcdaeec0f83db697b5c93ff5abf","Message":"Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:36:44+07:00"},{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"}],"HeadCommit":{"Sha1":"9b29db610b20afcdaeec0f83db697b5c93ff5abf","Message":"Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:36:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7b0e4a3aa34a91347178a93361fc9e193abd595d...9b29db610b20afcdaeec0f83db697b5c93ff5abf","Len":2}', 1705311411);
INSERT INTO public.action VALUES (3358, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9b29db610b20afcdaeec0f83db697b5c93ff5abf","Message":"Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:36:44+07:00"},{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"}],"HeadCommit":{"Sha1":"9b29db610b20afcdaeec0f83db697b5c93ff5abf","Message":"Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:36:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7b0e4a3aa34a91347178a93361fc9e193abd595d...9b29db610b20afcdaeec0f83db697b5c93ff5abf","Len":2}', 1705311411);
INSERT INTO public.action VALUES (3359, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9b29db610b20afcdaeec0f83db697b5c93ff5abf","Message":"Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:36:44+07:00"},{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"}],"HeadCommit":{"Sha1":"9b29db610b20afcdaeec0f83db697b5c93ff5abf","Message":"Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:36:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7b0e4a3aa34a91347178a93361fc9e193abd595d...9b29db610b20afcdaeec0f83db697b5c93ff5abf","Len":2}', 1705311411);
INSERT INTO public.action VALUES (3360, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"}],"HeadCommit":{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5562d2823f0ace47c1fca2f8fe994e65241e8bea...489a7a7fdc58d8144acd13c4cd58f66912cb341c","Len":1}', 1705311888);
INSERT INTO public.action VALUES (3361, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"}],"HeadCommit":{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5562d2823f0ace47c1fca2f8fe994e65241e8bea...489a7a7fdc58d8144acd13c4cd58f66912cb341c","Len":1}', 1705311888);
INSERT INTO public.action VALUES (3362, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"}],"HeadCommit":{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5562d2823f0ace47c1fca2f8fe994e65241e8bea...489a7a7fdc58d8144acd13c4cd58f66912cb341c","Len":1}', 1705311888);
INSERT INTO public.action VALUES (3363, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"}],"HeadCommit":{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5562d2823f0ace47c1fca2f8fe994e65241e8bea...489a7a7fdc58d8144acd13c4cd58f66912cb341c","Len":1}', 1705311888);
INSERT INTO public.action VALUES (3364, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"}],"HeadCommit":{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5562d2823f0ace47c1fca2f8fe994e65241e8bea...489a7a7fdc58d8144acd13c4cd58f66912cb341c","Len":1}', 1705311888);
INSERT INTO public.action VALUES (3365, 11, 7, 11, 21, 0, false, '', false, '93|fix bug', 1705311944);
INSERT INTO public.action VALUES (3366, 14, 7, 11, 21, 0, false, '', false, '93|fix bug', 1705311944);
INSERT INTO public.action VALUES (3367, 1, 7, 11, 21, 0, false, '', false, '93|fix bug', 1705311944);
INSERT INTO public.action VALUES (3368, 5, 7, 11, 21, 0, false, '', false, '93|fix bug', 1705311944);
INSERT INTO public.action VALUES (3369, 16, 7, 11, 21, 0, false, '', false, '93|fix bug', 1705311944);
INSERT INTO public.action VALUES (3375, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5b4556aaf08d874c598d4e9213153ede266d695d","Message":"Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:46:46+07:00"},{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"}],"HeadCommit":{"Sha1":"5b4556aaf08d874c598d4e9213153ede266d695d","Message":"Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:46:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9b29db610b20afcdaeec0f83db697b5c93ff5abf...5b4556aaf08d874c598d4e9213153ede266d695d","Len":2}', 1705312013);
INSERT INTO public.action VALUES (3376, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5b4556aaf08d874c598d4e9213153ede266d695d","Message":"Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:46:46+07:00"},{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"}],"HeadCommit":{"Sha1":"5b4556aaf08d874c598d4e9213153ede266d695d","Message":"Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:46:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9b29db610b20afcdaeec0f83db697b5c93ff5abf...5b4556aaf08d874c598d4e9213153ede266d695d","Len":2}', 1705312013);
INSERT INTO public.action VALUES (3398, 11, 11, 11, 21, 0, false, '', false, '94|fix bug', 1705312968);
INSERT INTO public.action VALUES (3399, 14, 11, 11, 21, 0, false, '', false, '94|fix bug', 1705312968);
INSERT INTO public.action VALUES (3400, 1, 11, 11, 21, 0, false, '', false, '94|fix bug', 1705312968);
INSERT INTO public.action VALUES (3401, 5, 11, 11, 21, 0, false, '', false, '94|fix bug', 1705312968);
INSERT INTO public.action VALUES (3377, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5b4556aaf08d874c598d4e9213153ede266d695d","Message":"Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:46:46+07:00"},{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"}],"HeadCommit":{"Sha1":"5b4556aaf08d874c598d4e9213153ede266d695d","Message":"Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:46:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9b29db610b20afcdaeec0f83db697b5c93ff5abf...5b4556aaf08d874c598d4e9213153ede266d695d","Len":2}', 1705312013);
INSERT INTO public.action VALUES (3378, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5b4556aaf08d874c598d4e9213153ede266d695d","Message":"Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:46:46+07:00"},{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"}],"HeadCommit":{"Sha1":"5b4556aaf08d874c598d4e9213153ede266d695d","Message":"Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:46:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9b29db610b20afcdaeec0f83db697b5c93ff5abf...5b4556aaf08d874c598d4e9213153ede266d695d","Len":2}', 1705312013);
INSERT INTO public.action VALUES (3379, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5b4556aaf08d874c598d4e9213153ede266d695d","Message":"Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:46:46+07:00"},{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"}],"HeadCommit":{"Sha1":"5b4556aaf08d874c598d4e9213153ede266d695d","Message":"Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:46:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9b29db610b20afcdaeec0f83db697b5c93ff5abf...5b4556aaf08d874c598d4e9213153ede266d695d","Len":2}', 1705312013);
INSERT INTO public.action VALUES (3380, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"}],"HeadCommit":{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"},"CompareURL":"khieu-nai/backend/compare/b91fcae669214f6410e0844cb50560d8313ec508...95bd4b83164ae2833c3b2f81776fbcd20b064e24","Len":1}', 1705312435);
INSERT INTO public.action VALUES (3381, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"}],"HeadCommit":{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"},"CompareURL":"khieu-nai/backend/compare/b91fcae669214f6410e0844cb50560d8313ec508...95bd4b83164ae2833c3b2f81776fbcd20b064e24","Len":1}', 1705312435);
INSERT INTO public.action VALUES (3382, 11, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"}],"HeadCommit":{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"},"CompareURL":"khieu-nai/backend/compare/b91fcae669214f6410e0844cb50560d8313ec508...95bd4b83164ae2833c3b2f81776fbcd20b064e24","Len":1}', 1705312435);
INSERT INTO public.action VALUES (3383, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"}],"HeadCommit":{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"},"CompareURL":"khieu-nai/backend/compare/b91fcae669214f6410e0844cb50560d8313ec508...95bd4b83164ae2833c3b2f81776fbcd20b064e24","Len":1}', 1705312435);
INSERT INTO public.action VALUES (3402, 16, 11, 11, 21, 0, false, '', false, '94|fix bug', 1705312968);
INSERT INTO public.action VALUES (3514, 11, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '{"Commits":[],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/main...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":0}', 1705368636);
INSERT INTO public.action VALUES (3527, 11, 7, 11, 21, 0, false, '', false, '99|change login', 1705369967);
INSERT INTO public.action VALUES (3384, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"}],"HeadCommit":{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"},"CompareURL":"khieu-nai/backend/compare/b91fcae669214f6410e0844cb50560d8313ec508...95bd4b83164ae2833c3b2f81776fbcd20b064e24","Len":1}', 1705312435);
INSERT INTO public.action VALUES (3385, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"}],"HeadCommit":{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"},"CompareURL":"khieu-nai/backend/compare/b91fcae669214f6410e0844cb50560d8313ec508...95bd4b83164ae2833c3b2f81776fbcd20b064e24","Len":1}', 1705312435);
INSERT INTO public.action VALUES (3386, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"}],"HeadCommit":{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"},"CompareURL":"khieu-nai/backend/compare/b91fcae669214f6410e0844cb50560d8313ec508...95bd4b83164ae2833c3b2f81776fbcd20b064e24","Len":1}', 1705312435);
INSERT INTO public.action VALUES (3387, 16, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"}],"HeadCommit":{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"},"CompareURL":"khieu-nai/backend/compare/b91fcae669214f6410e0844cb50560d8313ec508...95bd4b83164ae2833c3b2f81776fbcd20b064e24","Len":1}', 1705312435);
INSERT INTO public.action VALUES (3388, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"}],"HeadCommit":{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/489a7a7fdc58d8144acd13c4cd58f66912cb341c...7b2383b817c645ebfa98deeb3863743633d3deae","Len":1}', 1705312886);
INSERT INTO public.action VALUES (3389, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"}],"HeadCommit":{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/489a7a7fdc58d8144acd13c4cd58f66912cb341c...7b2383b817c645ebfa98deeb3863743633d3deae","Len":1}', 1705312886);
INSERT INTO public.action VALUES (3390, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"}],"HeadCommit":{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/489a7a7fdc58d8144acd13c4cd58f66912cb341c...7b2383b817c645ebfa98deeb3863743633d3deae","Len":1}', 1705312886);
INSERT INTO public.action VALUES (3391, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"}],"HeadCommit":{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/489a7a7fdc58d8144acd13c4cd58f66912cb341c...7b2383b817c645ebfa98deeb3863743633d3deae","Len":1}', 1705312886);
INSERT INTO public.action VALUES (3392, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"}],"HeadCommit":{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/489a7a7fdc58d8144acd13c4cd58f66912cb341c...7b2383b817c645ebfa98deeb3863743633d3deae","Len":1}', 1705312886);
INSERT INTO public.action VALUES (3393, 11, 7, 11, 21, 0, false, '', false, '94|fix bug', 1705312952);
INSERT INTO public.action VALUES (3394, 14, 7, 11, 21, 0, false, '', false, '94|fix bug', 1705312953);
INSERT INTO public.action VALUES (3395, 1, 7, 11, 21, 0, false, '', false, '94|fix bug', 1705312953);
INSERT INTO public.action VALUES (3396, 5, 7, 11, 21, 0, false, '', false, '94|fix bug', 1705312953);
INSERT INTO public.action VALUES (3403, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c1781de2627ad32061687b7324e88a13d1040bb1","Message":"Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T17:02:42+07:00"},{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"}],"HeadCommit":{"Sha1":"c1781de2627ad32061687b7324e88a13d1040bb1","Message":"Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T17:02:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5b4556aaf08d874c598d4e9213153ede266d695d...c1781de2627ad32061687b7324e88a13d1040bb1","Len":2}', 1705312969);
INSERT INTO public.action VALUES (3404, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c1781de2627ad32061687b7324e88a13d1040bb1","Message":"Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T17:02:42+07:00"},{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"}],"HeadCommit":{"Sha1":"c1781de2627ad32061687b7324e88a13d1040bb1","Message":"Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T17:02:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5b4556aaf08d874c598d4e9213153ede266d695d...c1781de2627ad32061687b7324e88a13d1040bb1","Len":2}', 1705312969);
INSERT INTO public.action VALUES (3405, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c1781de2627ad32061687b7324e88a13d1040bb1","Message":"Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T17:02:42+07:00"},{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"}],"HeadCommit":{"Sha1":"c1781de2627ad32061687b7324e88a13d1040bb1","Message":"Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T17:02:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5b4556aaf08d874c598d4e9213153ede266d695d...c1781de2627ad32061687b7324e88a13d1040bb1","Len":2}', 1705312969);
INSERT INTO public.action VALUES (3406, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c1781de2627ad32061687b7324e88a13d1040bb1","Message":"Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T17:02:42+07:00"},{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"}],"HeadCommit":{"Sha1":"c1781de2627ad32061687b7324e88a13d1040bb1","Message":"Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T17:02:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5b4556aaf08d874c598d4e9213153ede266d695d...c1781de2627ad32061687b7324e88a13d1040bb1","Len":2}', 1705312969);
INSERT INTO public.action VALUES (3407, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c1781de2627ad32061687b7324e88a13d1040bb1","Message":"Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T17:02:42+07:00"},{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"}],"HeadCommit":{"Sha1":"c1781de2627ad32061687b7324e88a13d1040bb1","Message":"Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T17:02:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5b4556aaf08d874c598d4e9213153ede266d695d...c1781de2627ad32061687b7324e88a13d1040bb1","Len":2}', 1705312969);
INSERT INTO public.action VALUES (3408, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"}],"HeadCommit":{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7b2383b817c645ebfa98deeb3863743633d3deae...8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Len":1}', 1705320552);
INSERT INTO public.action VALUES (3409, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"}],"HeadCommit":{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7b2383b817c645ebfa98deeb3863743633d3deae...8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Len":1}', 1705320552);
INSERT INTO public.action VALUES (3410, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"}],"HeadCommit":{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7b2383b817c645ebfa98deeb3863743633d3deae...8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Len":1}', 1705320552);
INSERT INTO public.action VALUES (3411, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"}],"HeadCommit":{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7b2383b817c645ebfa98deeb3863743633d3deae...8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Len":1}', 1705320552);
INSERT INTO public.action VALUES (3412, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"}],"HeadCommit":{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7b2383b817c645ebfa98deeb3863743633d3deae...8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Len":1}', 1705320552);
INSERT INTO public.action VALUES (3413, 11, 7, 11, 21, 0, false, '', false, '95|fix giao dien', 1705320582);
INSERT INTO public.action VALUES (3414, 14, 7, 11, 21, 0, false, '', false, '95|fix giao dien', 1705320582);
INSERT INTO public.action VALUES (3415, 1, 7, 11, 21, 0, false, '', false, '95|fix giao dien', 1705320582);
INSERT INTO public.action VALUES (3416, 5, 7, 11, 21, 0, false, '', false, '95|fix giao dien', 1705320582);
INSERT INTO public.action VALUES (3417, 16, 7, 11, 21, 0, false, '', false, '95|fix giao dien', 1705320582);
INSERT INTO public.action VALUES (3418, 11, 11, 11, 21, 0, false, '', false, '95|fix giao dien', 1705320611);
INSERT INTO public.action VALUES (3419, 14, 11, 11, 21, 0, false, '', false, '95|fix giao dien', 1705320611);
INSERT INTO public.action VALUES (3420, 1, 11, 11, 21, 0, false, '', false, '95|fix giao dien', 1705320611);
INSERT INTO public.action VALUES (3421, 5, 11, 11, 21, 0, false, '', false, '95|fix giao dien', 1705320611);
INSERT INTO public.action VALUES (3422, 16, 11, 11, 21, 0, false, '', false, '95|fix giao dien', 1705320611);
INSERT INTO public.action VALUES (3423, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Message":"Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:10:05+07:00"},{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"}],"HeadCommit":{"Sha1":"cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Message":"Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:10:05+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c1781de2627ad32061687b7324e88a13d1040bb1...cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Len":2}', 1705320611);
INSERT INTO public.action VALUES (3428, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"}],"HeadCommit":{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8f60ed32b2d8d1c029f54144b9426d2b865b6bd9...da91d00953fc86aef94866d081a1d25a46b94d02","Len":1}', 1705321086);
INSERT INTO public.action VALUES (3528, 14, 7, 11, 21, 0, false, '', false, '99|change login', 1705369967);
INSERT INTO public.action VALUES (3424, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Message":"Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:10:05+07:00"},{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"}],"HeadCommit":{"Sha1":"cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Message":"Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:10:05+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c1781de2627ad32061687b7324e88a13d1040bb1...cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Len":2}', 1705320611);
INSERT INTO public.action VALUES (3425, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Message":"Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:10:05+07:00"},{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"}],"HeadCommit":{"Sha1":"cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Message":"Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:10:05+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c1781de2627ad32061687b7324e88a13d1040bb1...cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Len":2}', 1705320611);
INSERT INTO public.action VALUES (3426, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Message":"Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:10:05+07:00"},{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"}],"HeadCommit":{"Sha1":"cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Message":"Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:10:05+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c1781de2627ad32061687b7324e88a13d1040bb1...cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Len":2}', 1705320611);
INSERT INTO public.action VALUES (3427, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Message":"Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:10:05+07:00"},{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"}],"HeadCommit":{"Sha1":"cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Message":"Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:10:05+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c1781de2627ad32061687b7324e88a13d1040bb1...cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Len":2}', 1705320611);
INSERT INTO public.action VALUES (3443, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Message":"Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:19:04+07:00"},{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"}],"HeadCommit":{"Sha1":"81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Message":"Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:19:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cebbfb98f2b56f439f19e5720eb0f1bab9f3b518...81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Len":2}', 1705321150);
INSERT INTO public.action VALUES (3450, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"}],"HeadCommit":{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/da91d00953fc86aef94866d081a1d25a46b94d02...a328fa9eb323e241b28e295cac0680456d0a1338","Len":1}', 1705321775);
INSERT INTO public.action VALUES (3529, 1, 7, 11, 21, 0, false, '', false, '99|change login', 1705369967);
INSERT INTO public.action VALUES (3530, 5, 7, 11, 21, 0, false, '', false, '99|change login', 1705369967);
INSERT INTO public.action VALUES (3429, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"}],"HeadCommit":{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8f60ed32b2d8d1c029f54144b9426d2b865b6bd9...da91d00953fc86aef94866d081a1d25a46b94d02","Len":1}', 1705321087);
INSERT INTO public.action VALUES (3430, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"}],"HeadCommit":{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8f60ed32b2d8d1c029f54144b9426d2b865b6bd9...da91d00953fc86aef94866d081a1d25a46b94d02","Len":1}', 1705321087);
INSERT INTO public.action VALUES (3431, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"}],"HeadCommit":{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8f60ed32b2d8d1c029f54144b9426d2b865b6bd9...da91d00953fc86aef94866d081a1d25a46b94d02","Len":1}', 1705321087);
INSERT INTO public.action VALUES (3432, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"}],"HeadCommit":{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8f60ed32b2d8d1c029f54144b9426d2b865b6bd9...da91d00953fc86aef94866d081a1d25a46b94d02","Len":1}', 1705321087);
INSERT INTO public.action VALUES (3433, 11, 7, 11, 21, 0, false, '', false, '96|fix loi', 1705321133);
INSERT INTO public.action VALUES (3434, 14, 7, 11, 21, 0, false, '', false, '96|fix loi', 1705321133);
INSERT INTO public.action VALUES (3435, 1, 7, 11, 21, 0, false, '', false, '96|fix loi', 1705321133);
INSERT INTO public.action VALUES (3436, 5, 7, 11, 21, 0, false, '', false, '96|fix loi', 1705321133);
INSERT INTO public.action VALUES (3437, 16, 7, 11, 21, 0, false, '', false, '96|fix loi', 1705321133);
INSERT INTO public.action VALUES (3438, 11, 11, 11, 21, 0, false, '', false, '96|fix loi', 1705321149);
INSERT INTO public.action VALUES (3439, 14, 11, 11, 21, 0, false, '', false, '96|fix loi', 1705321149);
INSERT INTO public.action VALUES (3440, 1, 11, 11, 21, 0, false, '', false, '96|fix loi', 1705321149);
INSERT INTO public.action VALUES (3441, 5, 11, 11, 21, 0, false, '', false, '96|fix loi', 1705321149);
INSERT INTO public.action VALUES (3442, 16, 11, 11, 21, 0, false, '', false, '96|fix loi', 1705321149);
INSERT INTO public.action VALUES (3444, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Message":"Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:19:04+07:00"},{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"}],"HeadCommit":{"Sha1":"81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Message":"Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:19:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cebbfb98f2b56f439f19e5720eb0f1bab9f3b518...81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Len":2}', 1705321150);
INSERT INTO public.action VALUES (3445, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Message":"Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:19:04+07:00"},{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"}],"HeadCommit":{"Sha1":"81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Message":"Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:19:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cebbfb98f2b56f439f19e5720eb0f1bab9f3b518...81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Len":2}', 1705321150);
INSERT INTO public.action VALUES (3446, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Message":"Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:19:04+07:00"},{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"}],"HeadCommit":{"Sha1":"81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Message":"Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:19:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cebbfb98f2b56f439f19e5720eb0f1bab9f3b518...81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Len":2}', 1705321150);
INSERT INTO public.action VALUES (3447, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Message":"Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:19:04+07:00"},{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"}],"HeadCommit":{"Sha1":"81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Message":"Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:19:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cebbfb98f2b56f439f19e5720eb0f1bab9f3b518...81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Len":2}', 1705321150);
INSERT INTO public.action VALUES (3448, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"}],"HeadCommit":{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/da91d00953fc86aef94866d081a1d25a46b94d02...a328fa9eb323e241b28e295cac0680456d0a1338","Len":1}', 1705321775);
INSERT INTO public.action VALUES (3449, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"}],"HeadCommit":{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/da91d00953fc86aef94866d081a1d25a46b94d02...a328fa9eb323e241b28e295cac0680456d0a1338","Len":1}', 1705321775);
INSERT INTO public.action VALUES (3479, 14, 11, 11, 21, 0, false, '', false, '98|fix search all page', 1705329330);
INSERT INTO public.action VALUES (3480, 1, 11, 11, 21, 0, false, '', false, '98|fix search all page', 1705329330);
INSERT INTO public.action VALUES (3481, 5, 11, 11, 21, 0, false, '', false, '98|fix search all page', 1705329330);
INSERT INTO public.action VALUES (3482, 16, 11, 11, 21, 0, false, '', false, '98|fix search all page', 1705329330);
INSERT INTO public.action VALUES (3531, 16, 7, 11, 21, 0, false, '', false, '99|change login', 1705369967);
INSERT INTO public.action VALUES (3532, 11, 11, 11, 21, 0, false, '', false, '99|change login', 1705369982);
INSERT INTO public.action VALUES (3533, 14, 11, 11, 21, 0, false, '', false, '99|change login', 1705369982);
INSERT INTO public.action VALUES (3451, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"}],"HeadCommit":{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/da91d00953fc86aef94866d081a1d25a46b94d02...a328fa9eb323e241b28e295cac0680456d0a1338","Len":1}', 1705321775);
INSERT INTO public.action VALUES (3452, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"}],"HeadCommit":{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/da91d00953fc86aef94866d081a1d25a46b94d02...a328fa9eb323e241b28e295cac0680456d0a1338","Len":1}', 1705321775);
INSERT INTO public.action VALUES (3453, 11, 7, 11, 21, 0, false, '', false, '97|add screen', 1705321822);
INSERT INTO public.action VALUES (3454, 14, 7, 11, 21, 0, false, '', false, '97|add screen', 1705321822);
INSERT INTO public.action VALUES (3455, 1, 7, 11, 21, 0, false, '', false, '97|add screen', 1705321822);
INSERT INTO public.action VALUES (3456, 5, 7, 11, 21, 0, false, '', false, '97|add screen', 1705321822);
INSERT INTO public.action VALUES (3457, 16, 7, 11, 21, 0, false, '', false, '97|add screen', 1705321822);
INSERT INTO public.action VALUES (3458, 11, 11, 11, 21, 0, false, '', false, '97|add screen', 1705321840);
INSERT INTO public.action VALUES (3459, 14, 11, 11, 21, 0, false, '', false, '97|add screen', 1705321840);
INSERT INTO public.action VALUES (3460, 1, 11, 11, 21, 0, false, '', false, '97|add screen', 1705321840);
INSERT INTO public.action VALUES (3461, 5, 11, 11, 21, 0, false, '', false, '97|add screen', 1705321840);
INSERT INTO public.action VALUES (3462, 16, 11, 11, 21, 0, false, '', false, '97|add screen', 1705321840);
INSERT INTO public.action VALUES (3463, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"99df42f181517ecde830cfba0d18f5bb48283de8","Message":"Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:30:34+07:00"},{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"}],"HeadCommit":{"Sha1":"99df42f181517ecde830cfba0d18f5bb48283de8","Message":"Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:30:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/81ebe9e1ea91c561cfd2d8b2778830a808e2104e...99df42f181517ecde830cfba0d18f5bb48283de8","Len":2}', 1705321842);
INSERT INTO public.action VALUES (3464, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"99df42f181517ecde830cfba0d18f5bb48283de8","Message":"Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:30:34+07:00"},{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"}],"HeadCommit":{"Sha1":"99df42f181517ecde830cfba0d18f5bb48283de8","Message":"Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:30:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/81ebe9e1ea91c561cfd2d8b2778830a808e2104e...99df42f181517ecde830cfba0d18f5bb48283de8","Len":2}', 1705321842);
INSERT INTO public.action VALUES (3465, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"99df42f181517ecde830cfba0d18f5bb48283de8","Message":"Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:30:34+07:00"},{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"}],"HeadCommit":{"Sha1":"99df42f181517ecde830cfba0d18f5bb48283de8","Message":"Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:30:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/81ebe9e1ea91c561cfd2d8b2778830a808e2104e...99df42f181517ecde830cfba0d18f5bb48283de8","Len":2}', 1705321842);
INSERT INTO public.action VALUES (3496, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/211/head', false, '', 1705340770);
INSERT INTO public.action VALUES (3497, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/211/merge', false, '', 1705340770);
INSERT INTO public.action VALUES (3498, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/211/merge', false, '', 1705340770);
INSERT INTO public.action VALUES (3499, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/211/merge', false, '', 1705340770);
INSERT INTO public.action VALUES (3500, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/212/head', false, '', 1705340770);
INSERT INTO public.action VALUES (3501, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/212/head', false, '', 1705340770);
INSERT INTO public.action VALUES (3502, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/212/head', false, '', 1705340770);
INSERT INTO public.action VALUES (3503, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/212/merge', false, '', 1705340770);
INSERT INTO public.action VALUES (3466, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"99df42f181517ecde830cfba0d18f5bb48283de8","Message":"Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:30:34+07:00"},{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"}],"HeadCommit":{"Sha1":"99df42f181517ecde830cfba0d18f5bb48283de8","Message":"Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:30:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/81ebe9e1ea91c561cfd2d8b2778830a808e2104e...99df42f181517ecde830cfba0d18f5bb48283de8","Len":2}', 1705321842);
INSERT INTO public.action VALUES (3467, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"99df42f181517ecde830cfba0d18f5bb48283de8","Message":"Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:30:34+07:00"},{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"}],"HeadCommit":{"Sha1":"99df42f181517ecde830cfba0d18f5bb48283de8","Message":"Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:30:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/81ebe9e1ea91c561cfd2d8b2778830a808e2104e...99df42f181517ecde830cfba0d18f5bb48283de8","Len":2}', 1705321842);
INSERT INTO public.action VALUES (3468, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"}],"HeadCommit":{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a328fa9eb323e241b28e295cac0680456d0a1338...67a5311e4cf2834ef7fc0b767015be48d669696d","Len":1}', 1705328901);
INSERT INTO public.action VALUES (3469, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"}],"HeadCommit":{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a328fa9eb323e241b28e295cac0680456d0a1338...67a5311e4cf2834ef7fc0b767015be48d669696d","Len":1}', 1705328901);
INSERT INTO public.action VALUES (3470, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"}],"HeadCommit":{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a328fa9eb323e241b28e295cac0680456d0a1338...67a5311e4cf2834ef7fc0b767015be48d669696d","Len":1}', 1705328901);
INSERT INTO public.action VALUES (3471, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"}],"HeadCommit":{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a328fa9eb323e241b28e295cac0680456d0a1338...67a5311e4cf2834ef7fc0b767015be48d669696d","Len":1}', 1705328901);
INSERT INTO public.action VALUES (3472, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"}],"HeadCommit":{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a328fa9eb323e241b28e295cac0680456d0a1338...67a5311e4cf2834ef7fc0b767015be48d669696d","Len":1}', 1705328901);
INSERT INTO public.action VALUES (3473, 11, 7, 11, 21, 0, false, '', false, '98|fix search all page', 1705329304);
INSERT INTO public.action VALUES (3474, 14, 7, 11, 21, 0, false, '', false, '98|fix search all page', 1705329304);
INSERT INTO public.action VALUES (3475, 1, 7, 11, 21, 0, false, '', false, '98|fix search all page', 1705329305);
INSERT INTO public.action VALUES (3476, 5, 7, 11, 21, 0, false, '', false, '98|fix search all page', 1705329305);
INSERT INTO public.action VALUES (3477, 16, 7, 11, 21, 0, false, '', false, '98|fix search all page', 1705329305);
INSERT INTO public.action VALUES (3478, 11, 11, 11, 21, 0, false, '', false, '98|fix search all page', 1705329330);
INSERT INTO public.action VALUES (3483, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ddb1e1f9c86e1477341fd41cae9b0350d5807140","Message":"Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T21:35:24+07:00"},{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"}],"HeadCommit":{"Sha1":"ddb1e1f9c86e1477341fd41cae9b0350d5807140","Message":"Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T21:35:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/99df42f181517ecde830cfba0d18f5bb48283de8...ddb1e1f9c86e1477341fd41cae9b0350d5807140","Len":2}', 1705329330);
INSERT INTO public.action VALUES (3484, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ddb1e1f9c86e1477341fd41cae9b0350d5807140","Message":"Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T21:35:24+07:00"},{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"}],"HeadCommit":{"Sha1":"ddb1e1f9c86e1477341fd41cae9b0350d5807140","Message":"Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T21:35:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/99df42f181517ecde830cfba0d18f5bb48283de8...ddb1e1f9c86e1477341fd41cae9b0350d5807140","Len":2}', 1705329330);
INSERT INTO public.action VALUES (3485, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ddb1e1f9c86e1477341fd41cae9b0350d5807140","Message":"Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T21:35:24+07:00"},{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"}],"HeadCommit":{"Sha1":"ddb1e1f9c86e1477341fd41cae9b0350d5807140","Message":"Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T21:35:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/99df42f181517ecde830cfba0d18f5bb48283de8...ddb1e1f9c86e1477341fd41cae9b0350d5807140","Len":2}', 1705329330);
INSERT INTO public.action VALUES (3486, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ddb1e1f9c86e1477341fd41cae9b0350d5807140","Message":"Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T21:35:24+07:00"},{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"}],"HeadCommit":{"Sha1":"ddb1e1f9c86e1477341fd41cae9b0350d5807140","Message":"Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T21:35:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/99df42f181517ecde830cfba0d18f5bb48283de8...ddb1e1f9c86e1477341fd41cae9b0350d5807140","Len":2}', 1705329330);
INSERT INTO public.action VALUES (3487, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ddb1e1f9c86e1477341fd41cae9b0350d5807140","Message":"Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T21:35:24+07:00"},{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"}],"HeadCommit":{"Sha1":"ddb1e1f9c86e1477341fd41cae9b0350d5807140","Message":"Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T21:35:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/99df42f181517ecde830cfba0d18f5bb48283de8...ddb1e1f9c86e1477341fd41cae9b0350d5807140","Len":2}', 1705329330);
INSERT INTO public.action VALUES (3488, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/104/head', false, '', 1705340770);
INSERT INTO public.action VALUES (3489, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/104/head', false, '', 1705340770);
INSERT INTO public.action VALUES (3490, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/104/head', false, '', 1705340770);
INSERT INTO public.action VALUES (3491, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/104/merge', false, '', 1705340770);
INSERT INTO public.action VALUES (3492, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/104/merge', false, '', 1705340770);
INSERT INTO public.action VALUES (3493, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/104/merge', false, '', 1705340770);
INSERT INTO public.action VALUES (3494, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/211/head', false, '', 1705340770);
INSERT INTO public.action VALUES (3495, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/211/head', false, '', 1705340770);
INSERT INTO public.action VALUES (3515, 12, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '{"Commits":[],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/main...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":0}', 1705368636);
INSERT INTO public.action VALUES (3516, 2, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '{"Commits":[],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/main...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":0}', 1705368636);
INSERT INTO public.action VALUES (3517, 1, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '{"Commits":[],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/main...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":0}', 1705368636);
INSERT INTO public.action VALUES (3518, 15, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '{"Commits":[],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/main...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":0}', 1705368636);
INSERT INTO public.action VALUES (3519, 5, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '{"Commits":[],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/main...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":0}', 1705368636);
INSERT INTO public.action VALUES (3520, 9, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '{"Commits":[],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/main...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":0}', 1705368636);
INSERT INTO public.action VALUES (3521, 16, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '{"Commits":[],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/main...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":0}', 1705368636);
INSERT INTO public.action VALUES (3522, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"}],"HeadCommit":{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/67a5311e4cf2834ef7fc0b767015be48d669696d...122c6ba57907664a26aac6393e0880e02d8d2610","Len":1}', 1705369942);
INSERT INTO public.action VALUES (3523, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"}],"HeadCommit":{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/67a5311e4cf2834ef7fc0b767015be48d669696d...122c6ba57907664a26aac6393e0880e02d8d2610","Len":1}', 1705369942);
INSERT INTO public.action VALUES (3524, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"}],"HeadCommit":{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/67a5311e4cf2834ef7fc0b767015be48d669696d...122c6ba57907664a26aac6393e0880e02d8d2610","Len":1}', 1705369942);
INSERT INTO public.action VALUES (3525, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"}],"HeadCommit":{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/67a5311e4cf2834ef7fc0b767015be48d669696d...122c6ba57907664a26aac6393e0880e02d8d2610","Len":1}', 1705369942);
INSERT INTO public.action VALUES (3526, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"}],"HeadCommit":{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/67a5311e4cf2834ef7fc0b767015be48d669696d...122c6ba57907664a26aac6393e0880e02d8d2610","Len":1}', 1705369942);
INSERT INTO public.action VALUES (3537, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c94f86451988d6cf98b90a9f0e74a88515b66f9a","Message":"Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T08:52:57+07:00"},{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"}],"HeadCommit":{"Sha1":"c94f86451988d6cf98b90a9f0e74a88515b66f9a","Message":"Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T08:52:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ddb1e1f9c86e1477341fd41cae9b0350d5807140...c94f86451988d6cf98b90a9f0e74a88515b66f9a","Len":2}', 1705369983);
INSERT INTO public.action VALUES (3538, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c94f86451988d6cf98b90a9f0e74a88515b66f9a","Message":"Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T08:52:57+07:00"},{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"}],"HeadCommit":{"Sha1":"c94f86451988d6cf98b90a9f0e74a88515b66f9a","Message":"Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T08:52:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ddb1e1f9c86e1477341fd41cae9b0350d5807140...c94f86451988d6cf98b90a9f0e74a88515b66f9a","Len":2}', 1705369983);
INSERT INTO public.action VALUES (3539, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c94f86451988d6cf98b90a9f0e74a88515b66f9a","Message":"Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T08:52:57+07:00"},{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"}],"HeadCommit":{"Sha1":"c94f86451988d6cf98b90a9f0e74a88515b66f9a","Message":"Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T08:52:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ddb1e1f9c86e1477341fd41cae9b0350d5807140...c94f86451988d6cf98b90a9f0e74a88515b66f9a","Len":2}', 1705369983);
INSERT INTO public.action VALUES (3540, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c94f86451988d6cf98b90a9f0e74a88515b66f9a","Message":"Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T08:52:57+07:00"},{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"}],"HeadCommit":{"Sha1":"c94f86451988d6cf98b90a9f0e74a88515b66f9a","Message":"Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T08:52:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ddb1e1f9c86e1477341fd41cae9b0350d5807140...c94f86451988d6cf98b90a9f0e74a88515b66f9a","Len":2}', 1705369983);
INSERT INTO public.action VALUES (3541, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c94f86451988d6cf98b90a9f0e74a88515b66f9a","Message":"Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T08:52:57+07:00"},{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"}],"HeadCommit":{"Sha1":"c94f86451988d6cf98b90a9f0e74a88515b66f9a","Message":"Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T08:52:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ddb1e1f9c86e1477341fd41cae9b0350d5807140...c94f86451988d6cf98b90a9f0e74a88515b66f9a","Len":2}', 1705369983);
INSERT INTO public.action VALUES (3542, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/100/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3543, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/100/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3544, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/100/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3545, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/100/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3546, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/100/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3547, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/100/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3548, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/101/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3549, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/101/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3550, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/101/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3551, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/101/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3552, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/101/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3553, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/101/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3554, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/102/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3555, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/102/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3556, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/102/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3557, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/102/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3558, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/102/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3559, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/102/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3560, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/103/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3561, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/103/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3562, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/103/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3563, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/103/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3564, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/103/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3565, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/103/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3566, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/96/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3567, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/96/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3568, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/96/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3569, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/96/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3570, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/96/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3571, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/96/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3572, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/97/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3573, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/97/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3574, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/97/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3575, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/97/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3576, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/97/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3577, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/97/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3578, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/98/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3579, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/98/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3580, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/98/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3581, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/98/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3582, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/98/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3583, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/98/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3584, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/99/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3585, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/99/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3586, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/99/head', false, '', 1705370170);
INSERT INTO public.action VALUES (3587, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/99/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3588, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/99/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3589, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/99/merge', false, '', 1705370170);
INSERT INTO public.action VALUES (3590, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"}],"HeadCommit":{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"},"CompareURL":"khieu-nai/backend/compare/95bd4b83164ae2833c3b2f81776fbcd20b064e24...15c3872b78aea42ba7c35fade600ccae5b5b9806","Len":1}', 1705373966);
INSERT INTO public.action VALUES (3591, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"}],"HeadCommit":{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"},"CompareURL":"khieu-nai/backend/compare/95bd4b83164ae2833c3b2f81776fbcd20b064e24...15c3872b78aea42ba7c35fade600ccae5b5b9806","Len":1}', 1705373966);
INSERT INTO public.action VALUES (3592, 11, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"}],"HeadCommit":{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"},"CompareURL":"khieu-nai/backend/compare/95bd4b83164ae2833c3b2f81776fbcd20b064e24...15c3872b78aea42ba7c35fade600ccae5b5b9806","Len":1}', 1705373966);
INSERT INTO public.action VALUES (3624, 11, 11, 11, 21, 0, false, '', false, '100|fix datatable', 1705389625);
INSERT INTO public.action VALUES (3625, 14, 11, 11, 21, 0, false, '', false, '100|fix datatable', 1705389625);
INSERT INTO public.action VALUES (3626, 1, 11, 11, 21, 0, false, '', false, '100|fix datatable', 1705389625);
INSERT INTO public.action VALUES (3627, 5, 11, 11, 21, 0, false, '', false, '100|fix datatable', 1705389625);
INSERT INTO public.action VALUES (3593, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"}],"HeadCommit":{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"},"CompareURL":"khieu-nai/backend/compare/95bd4b83164ae2833c3b2f81776fbcd20b064e24...15c3872b78aea42ba7c35fade600ccae5b5b9806","Len":1}', 1705373966);
INSERT INTO public.action VALUES (3594, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"}],"HeadCommit":{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"},"CompareURL":"khieu-nai/backend/compare/95bd4b83164ae2833c3b2f81776fbcd20b064e24...15c3872b78aea42ba7c35fade600ccae5b5b9806","Len":1}', 1705373966);
INSERT INTO public.action VALUES (3595, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"}],"HeadCommit":{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"},"CompareURL":"khieu-nai/backend/compare/95bd4b83164ae2833c3b2f81776fbcd20b064e24...15c3872b78aea42ba7c35fade600ccae5b5b9806","Len":1}', 1705373966);
INSERT INTO public.action VALUES (3596, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"}],"HeadCommit":{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"},"CompareURL":"khieu-nai/backend/compare/95bd4b83164ae2833c3b2f81776fbcd20b064e24...15c3872b78aea42ba7c35fade600ccae5b5b9806","Len":1}', 1705373966);
INSERT INTO public.action VALUES (3597, 16, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"}],"HeadCommit":{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"},"CompareURL":"khieu-nai/backend/compare/95bd4b83164ae2833c3b2f81776fbcd20b064e24...15c3872b78aea42ba7c35fade600ccae5b5b9806","Len":1}', 1705373966);
INSERT INTO public.action VALUES (3598, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"}],"HeadCommit":{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"},"CompareURL":"khieu-nai/backend/compare/15c3872b78aea42ba7c35fade600ccae5b5b9806...f94cc2c946b186f5829331077bc44f1b62c9901f","Len":1}', 1705379207);
INSERT INTO public.action VALUES (3599, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"}],"HeadCommit":{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"},"CompareURL":"khieu-nai/backend/compare/15c3872b78aea42ba7c35fade600ccae5b5b9806...f94cc2c946b186f5829331077bc44f1b62c9901f","Len":1}', 1705379207);
INSERT INTO public.action VALUES (3600, 11, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"}],"HeadCommit":{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"},"CompareURL":"khieu-nai/backend/compare/15c3872b78aea42ba7c35fade600ccae5b5b9806...f94cc2c946b186f5829331077bc44f1b62c9901f","Len":1}', 1705379207);
INSERT INTO public.action VALUES (3601, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"}],"HeadCommit":{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"},"CompareURL":"khieu-nai/backend/compare/15c3872b78aea42ba7c35fade600ccae5b5b9806...f94cc2c946b186f5829331077bc44f1b62c9901f","Len":1}', 1705379207);
INSERT INTO public.action VALUES (3628, 16, 11, 11, 21, 0, false, '', false, '100|fix datatable', 1705389625);
INSERT INTO public.action VALUES (3849, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/77/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3850, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/77/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3851, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/77/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3852, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/77/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3853, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/77/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3602, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"}],"HeadCommit":{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"},"CompareURL":"khieu-nai/backend/compare/15c3872b78aea42ba7c35fade600ccae5b5b9806...f94cc2c946b186f5829331077bc44f1b62c9901f","Len":1}', 1705379207);
INSERT INTO public.action VALUES (3603, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"}],"HeadCommit":{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"},"CompareURL":"khieu-nai/backend/compare/15c3872b78aea42ba7c35fade600ccae5b5b9806...f94cc2c946b186f5829331077bc44f1b62c9901f","Len":1}', 1705379207);
INSERT INTO public.action VALUES (3604, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"}],"HeadCommit":{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"},"CompareURL":"khieu-nai/backend/compare/15c3872b78aea42ba7c35fade600ccae5b5b9806...f94cc2c946b186f5829331077bc44f1b62c9901f","Len":1}', 1705379207);
INSERT INTO public.action VALUES (3605, 16, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"}],"HeadCommit":{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"},"CompareURL":"khieu-nai/backend/compare/15c3872b78aea42ba7c35fade600ccae5b5b9806...f94cc2c946b186f5829331077bc44f1b62c9901f","Len":1}', 1705379207);
INSERT INTO public.action VALUES (3606, 16, 5, 16, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},{"Sha1":"43d70a01865c5a858fa2f42d805564efa8be978d","Message":"them template\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:28:13+07:00"}],"HeadCommit":{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},"CompareURL":"khieu-nai/backend/compare/f94cc2c946b186f5829331077bc44f1b62c9901f...374020590f53026b266de0bc639429e3a2498848","Len":2}', 1705388191);
INSERT INTO public.action VALUES (3607, 12, 5, 16, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},{"Sha1":"43d70a01865c5a858fa2f42d805564efa8be978d","Message":"them template\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:28:13+07:00"}],"HeadCommit":{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},"CompareURL":"khieu-nai/backend/compare/f94cc2c946b186f5829331077bc44f1b62c9901f...374020590f53026b266de0bc639429e3a2498848","Len":2}', 1705388191);
INSERT INTO public.action VALUES (3608, 11, 5, 16, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},{"Sha1":"43d70a01865c5a858fa2f42d805564efa8be978d","Message":"them template\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:28:13+07:00"}],"HeadCommit":{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},"CompareURL":"khieu-nai/backend/compare/f94cc2c946b186f5829331077bc44f1b62c9901f...374020590f53026b266de0bc639429e3a2498848","Len":2}', 1705388191);
INSERT INTO public.action VALUES (3609, 2, 5, 16, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},{"Sha1":"43d70a01865c5a858fa2f42d805564efa8be978d","Message":"them template\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:28:13+07:00"}],"HeadCommit":{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},"CompareURL":"khieu-nai/backend/compare/f94cc2c946b186f5829331077bc44f1b62c9901f...374020590f53026b266de0bc639429e3a2498848","Len":2}', 1705388191);
INSERT INTO public.action VALUES (3854, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/78/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3855, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/78/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3856, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/78/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3610, 1, 5, 16, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},{"Sha1":"43d70a01865c5a858fa2f42d805564efa8be978d","Message":"them template\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:28:13+07:00"}],"HeadCommit":{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},"CompareURL":"khieu-nai/backend/compare/f94cc2c946b186f5829331077bc44f1b62c9901f...374020590f53026b266de0bc639429e3a2498848","Len":2}', 1705388191);
INSERT INTO public.action VALUES (3611, 15, 5, 16, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},{"Sha1":"43d70a01865c5a858fa2f42d805564efa8be978d","Message":"them template\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:28:13+07:00"}],"HeadCommit":{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},"CompareURL":"khieu-nai/backend/compare/f94cc2c946b186f5829331077bc44f1b62c9901f...374020590f53026b266de0bc639429e3a2498848","Len":2}', 1705388191);
INSERT INTO public.action VALUES (3612, 5, 5, 16, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},{"Sha1":"43d70a01865c5a858fa2f42d805564efa8be978d","Message":"them template\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:28:13+07:00"}],"HeadCommit":{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},"CompareURL":"khieu-nai/backend/compare/f94cc2c946b186f5829331077bc44f1b62c9901f...374020590f53026b266de0bc639429e3a2498848","Len":2}', 1705388191);
INSERT INTO public.action VALUES (3613, 9, 5, 16, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},{"Sha1":"43d70a01865c5a858fa2f42d805564efa8be978d","Message":"them template\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:28:13+07:00"}],"HeadCommit":{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},"CompareURL":"khieu-nai/backend/compare/f94cc2c946b186f5829331077bc44f1b62c9901f...374020590f53026b266de0bc639429e3a2498848","Len":2}', 1705388191);
INSERT INTO public.action VALUES (3614, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"}],"HeadCommit":{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/122c6ba57907664a26aac6393e0880e02d8d2610...b4fa71025f54e4fa94ba095169119fa40b06d27c","Len":1}', 1705389268);
INSERT INTO public.action VALUES (3615, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"}],"HeadCommit":{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/122c6ba57907664a26aac6393e0880e02d8d2610...b4fa71025f54e4fa94ba095169119fa40b06d27c","Len":1}', 1705389268);
INSERT INTO public.action VALUES (3616, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"}],"HeadCommit":{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/122c6ba57907664a26aac6393e0880e02d8d2610...b4fa71025f54e4fa94ba095169119fa40b06d27c","Len":1}', 1705389268);
INSERT INTO public.action VALUES (3617, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"}],"HeadCommit":{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/122c6ba57907664a26aac6393e0880e02d8d2610...b4fa71025f54e4fa94ba095169119fa40b06d27c","Len":1}', 1705389268);
INSERT INTO public.action VALUES (3618, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"}],"HeadCommit":{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/122c6ba57907664a26aac6393e0880e02d8d2610...b4fa71025f54e4fa94ba095169119fa40b06d27c","Len":1}', 1705389268);
INSERT INTO public.action VALUES (3619, 11, 7, 11, 21, 0, false, '', false, '100|fix datatable', 1705389572);
INSERT INTO public.action VALUES (3620, 14, 7, 11, 21, 0, false, '', false, '100|fix datatable', 1705389572);
INSERT INTO public.action VALUES (3621, 1, 7, 11, 21, 0, false, '', false, '100|fix datatable', 1705389572);
INSERT INTO public.action VALUES (3622, 5, 7, 11, 21, 0, false, '', false, '100|fix datatable', 1705389572);
INSERT INTO public.action VALUES (3623, 16, 7, 11, 21, 0, false, '', false, '100|fix datatable', 1705389572);
INSERT INTO public.action VALUES (3629, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Message":"Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T14:20:20+07:00"},{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"}],"HeadCommit":{"Sha1":"2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Message":"Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T14:20:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c94f86451988d6cf98b90a9f0e74a88515b66f9a...2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Len":2}', 1705389626);
INSERT INTO public.action VALUES (3630, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Message":"Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T14:20:20+07:00"},{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"}],"HeadCommit":{"Sha1":"2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Message":"Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T14:20:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c94f86451988d6cf98b90a9f0e74a88515b66f9a...2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Len":2}', 1705389626);
INSERT INTO public.action VALUES (3631, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Message":"Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T14:20:20+07:00"},{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"}],"HeadCommit":{"Sha1":"2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Message":"Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T14:20:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c94f86451988d6cf98b90a9f0e74a88515b66f9a...2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Len":2}', 1705389626);
INSERT INTO public.action VALUES (3632, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Message":"Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T14:20:20+07:00"},{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"}],"HeadCommit":{"Sha1":"2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Message":"Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T14:20:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c94f86451988d6cf98b90a9f0e74a88515b66f9a...2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Len":2}', 1705389626);
INSERT INTO public.action VALUES (3655, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"}],"HeadCommit":{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6...a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Len":1}', 1705394251);
INSERT INTO public.action VALUES (3857, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/78/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3633, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Message":"Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T14:20:20+07:00"},{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"}],"HeadCommit":{"Sha1":"2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Message":"Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T14:20:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c94f86451988d6cf98b90a9f0e74a88515b66f9a...2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Len":2}', 1705389626);
INSERT INTO public.action VALUES (3634, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"}],"HeadCommit":{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4fa71025f54e4fa94ba095169119fa40b06d27c...ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Len":1}', 1705393286);
INSERT INTO public.action VALUES (3635, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"}],"HeadCommit":{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4fa71025f54e4fa94ba095169119fa40b06d27c...ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Len":1}', 1705393286);
INSERT INTO public.action VALUES (3636, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"}],"HeadCommit":{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4fa71025f54e4fa94ba095169119fa40b06d27c...ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Len":1}', 1705393286);
INSERT INTO public.action VALUES (3637, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"}],"HeadCommit":{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4fa71025f54e4fa94ba095169119fa40b06d27c...ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Len":1}', 1705393286);
INSERT INTO public.action VALUES (3638, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"}],"HeadCommit":{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4fa71025f54e4fa94ba095169119fa40b06d27c...ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Len":1}', 1705393286);
INSERT INTO public.action VALUES (3639, 11, 7, 11, 21, 0, false, '', false, '101|fix odata QLLD_HoSo', 1705393322);
INSERT INTO public.action VALUES (3640, 14, 7, 11, 21, 0, false, '', false, '101|fix odata QLLD_HoSo', 1705393322);
INSERT INTO public.action VALUES (3641, 1, 7, 11, 21, 0, false, '', false, '101|fix odata QLLD_HoSo', 1705393322);
INSERT INTO public.action VALUES (3642, 5, 7, 11, 21, 0, false, '', false, '101|fix odata QLLD_HoSo', 1705393322);
INSERT INTO public.action VALUES (3643, 16, 7, 11, 21, 0, false, '', false, '101|fix odata QLLD_HoSo', 1705393322);
INSERT INTO public.action VALUES (3644, 11, 11, 11, 21, 0, false, '', false, '101|fix odata QLLD_HoSo', 1705393335);
INSERT INTO public.action VALUES (3645, 14, 11, 11, 21, 0, false, '', false, '101|fix odata QLLD_HoSo', 1705393335);
INSERT INTO public.action VALUES (3646, 1, 11, 11, 21, 0, false, '', false, '101|fix odata QLLD_HoSo', 1705393335);
INSERT INTO public.action VALUES (3647, 5, 11, 11, 21, 0, false, '', false, '101|fix odata QLLD_HoSo', 1705393335);
INSERT INTO public.action VALUES (3648, 16, 11, 11, 21, 0, false, '', false, '101|fix odata QLLD_HoSo', 1705393335);
INSERT INTO public.action VALUES (3664, 11, 11, 11, 21, 0, false, '', false, '102|fix hidden change year hoso', 1705394331);
INSERT INTO public.action VALUES (3665, 14, 11, 11, 21, 0, false, '', false, '102|fix hidden change year hoso', 1705394331);
INSERT INTO public.action VALUES (3666, 1, 11, 11, 21, 0, false, '', false, '102|fix hidden change year hoso', 1705394331);
INSERT INTO public.action VALUES (3667, 5, 11, 11, 21, 0, false, '', false, '102|fix hidden change year hoso', 1705394331);
INSERT INTO public.action VALUES (3668, 16, 11, 11, 21, 0, false, '', false, '102|fix hidden change year hoso', 1705394331);
INSERT INTO public.action VALUES (3913, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/87/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3914, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/88/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3649, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"53d1f72211fde4e1c022b04df50724ed8080ad37","Message":"Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:22:11+07:00"},{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"}],"HeadCommit":{"Sha1":"53d1f72211fde4e1c022b04df50724ed8080ad37","Message":"Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:22:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2...53d1f72211fde4e1c022b04df50724ed8080ad37","Len":2}', 1705393335);
INSERT INTO public.action VALUES (3650, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"53d1f72211fde4e1c022b04df50724ed8080ad37","Message":"Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:22:11+07:00"},{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"}],"HeadCommit":{"Sha1":"53d1f72211fde4e1c022b04df50724ed8080ad37","Message":"Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:22:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2...53d1f72211fde4e1c022b04df50724ed8080ad37","Len":2}', 1705393335);
INSERT INTO public.action VALUES (3651, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"53d1f72211fde4e1c022b04df50724ed8080ad37","Message":"Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:22:11+07:00"},{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"}],"HeadCommit":{"Sha1":"53d1f72211fde4e1c022b04df50724ed8080ad37","Message":"Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:22:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2...53d1f72211fde4e1c022b04df50724ed8080ad37","Len":2}', 1705393336);
INSERT INTO public.action VALUES (3652, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"53d1f72211fde4e1c022b04df50724ed8080ad37","Message":"Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:22:11+07:00"},{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"}],"HeadCommit":{"Sha1":"53d1f72211fde4e1c022b04df50724ed8080ad37","Message":"Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:22:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2...53d1f72211fde4e1c022b04df50724ed8080ad37","Len":2}', 1705393336);
INSERT INTO public.action VALUES (3653, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"53d1f72211fde4e1c022b04df50724ed8080ad37","Message":"Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:22:11+07:00"},{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"}],"HeadCommit":{"Sha1":"53d1f72211fde4e1c022b04df50724ed8080ad37","Message":"Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:22:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2...53d1f72211fde4e1c022b04df50724ed8080ad37","Len":2}', 1705393336);
INSERT INTO public.action VALUES (3654, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"}],"HeadCommit":{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6...a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Len":1}', 1705394251);
INSERT INTO public.action VALUES (3656, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"}],"HeadCommit":{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6...a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Len":1}', 1705394251);
INSERT INTO public.action VALUES (3657, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"}],"HeadCommit":{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6...a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Len":1}', 1705394251);
INSERT INTO public.action VALUES (3658, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"}],"HeadCommit":{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6...a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Len":1}', 1705394251);
INSERT INTO public.action VALUES (3659, 11, 7, 11, 21, 0, false, '', false, '102|fix hidden change year hoso', 1705394272);
INSERT INTO public.action VALUES (3660, 14, 7, 11, 21, 0, false, '', false, '102|fix hidden change year hoso', 1705394272);
INSERT INTO public.action VALUES (3661, 1, 7, 11, 21, 0, false, '', false, '102|fix hidden change year hoso', 1705394272);
INSERT INTO public.action VALUES (3662, 5, 7, 11, 21, 0, false, '', false, '102|fix hidden change year hoso', 1705394272);
INSERT INTO public.action VALUES (3663, 16, 7, 11, 21, 0, false, '', false, '102|fix hidden change year hoso', 1705394272);
INSERT INTO public.action VALUES (3669, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"},{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"}],"HeadCommit":{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/53d1f72211fde4e1c022b04df50724ed8080ad37...8eece73dc814f23997466b778c570a25145163df","Len":2}', 1705394332);
INSERT INTO public.action VALUES (3670, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"},{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"}],"HeadCommit":{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/53d1f72211fde4e1c022b04df50724ed8080ad37...8eece73dc814f23997466b778c570a25145163df","Len":2}', 1705394332);
INSERT INTO public.action VALUES (3671, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"},{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"}],"HeadCommit":{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/53d1f72211fde4e1c022b04df50724ed8080ad37...8eece73dc814f23997466b778c570a25145163df","Len":2}', 1705394332);
INSERT INTO public.action VALUES (3915, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/88/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3916, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/88/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3917, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/88/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3672, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"},{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"}],"HeadCommit":{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/53d1f72211fde4e1c022b04df50724ed8080ad37...8eece73dc814f23997466b778c570a25145163df","Len":2}', 1705394332);
INSERT INTO public.action VALUES (3673, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"},{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"}],"HeadCommit":{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/53d1f72211fde4e1c022b04df50724ed8080ad37...8eece73dc814f23997466b778c570a25145163df","Len":2}', 1705394332);
INSERT INTO public.action VALUES (3679, 11, 7, 11, 21, 0, false, '', false, '103|fix phan quyen', 1705395693);
INSERT INTO public.action VALUES (3680, 14, 7, 11, 21, 0, false, '', false, '103|fix phan quyen', 1705395693);
INSERT INTO public.action VALUES (3681, 1, 7, 11, 21, 0, false, '', false, '103|fix phan quyen', 1705395693);
INSERT INTO public.action VALUES (3682, 5, 7, 11, 21, 0, false, '', false, '103|fix phan quyen', 1705395693);
INSERT INTO public.action VALUES (3683, 16, 7, 11, 21, 0, false, '', false, '103|fix phan quyen', 1705395693);
INSERT INTO public.action VALUES (3689, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"}],"HeadCommit":{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8eece73dc814f23997466b778c570a25145163df...cf4715110a114ad27e4779af22c58cfb819d78c9","Len":2}', 1705395802);
INSERT INTO public.action VALUES (3690, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"}],"HeadCommit":{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8eece73dc814f23997466b778c570a25145163df...cf4715110a114ad27e4779af22c58cfb819d78c9","Len":2}', 1705395802);
INSERT INTO public.action VALUES (3691, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"}],"HeadCommit":{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8eece73dc814f23997466b778c570a25145163df...cf4715110a114ad27e4779af22c58cfb819d78c9","Len":2}', 1705395802);
INSERT INTO public.action VALUES (3918, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/88/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3919, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/88/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3926, 11, 7, 11, 21, 0, false, '', false, '108|fix gdnn', 1705458410);
INSERT INTO public.action VALUES (3927, 14, 7, 11, 21, 0, false, '', false, '108|fix gdnn', 1705458410);
INSERT INTO public.action VALUES (3674, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"}],"HeadCommit":{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2d31a4f4ea5f3e8278eb7a3f446302831381ddb...65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Len":1}', 1705395658);
INSERT INTO public.action VALUES (3675, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"}],"HeadCommit":{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2d31a4f4ea5f3e8278eb7a3f446302831381ddb...65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Len":1}', 1705395658);
INSERT INTO public.action VALUES (3676, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"}],"HeadCommit":{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2d31a4f4ea5f3e8278eb7a3f446302831381ddb...65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Len":1}', 1705395658);
INSERT INTO public.action VALUES (3677, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"}],"HeadCommit":{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2d31a4f4ea5f3e8278eb7a3f446302831381ddb...65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Len":1}', 1705395658);
INSERT INTO public.action VALUES (3678, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"}],"HeadCommit":{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2d31a4f4ea5f3e8278eb7a3f446302831381ddb...65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Len":1}', 1705395658);
INSERT INTO public.action VALUES (3684, 11, 11, 11, 21, 0, false, '', false, '103|fix phan quyen', 1705395800);
INSERT INTO public.action VALUES (3685, 14, 11, 11, 21, 0, false, '', false, '103|fix phan quyen', 1705395800);
INSERT INTO public.action VALUES (3686, 1, 11, 11, 21, 0, false, '', false, '103|fix phan quyen', 1705395800);
INSERT INTO public.action VALUES (3687, 5, 11, 11, 21, 0, false, '', false, '103|fix phan quyen', 1705395800);
INSERT INTO public.action VALUES (3688, 16, 11, 11, 21, 0, false, '', false, '103|fix phan quyen', 1705395800);
INSERT INTO public.action VALUES (3694, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"}],"HeadCommit":{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/65e6485ae4926938a51adf2f31db4aeb6d7e7e41...6b059fd277af151a3e10327be3a8be3e4ba084a2","Len":1}', 1705396545);
INSERT INTO public.action VALUES (3695, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"}],"HeadCommit":{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/65e6485ae4926938a51adf2f31db4aeb6d7e7e41...6b059fd277af151a3e10327be3a8be3e4ba084a2","Len":1}', 1705396545);
INSERT INTO public.action VALUES (3696, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"}],"HeadCommit":{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/65e6485ae4926938a51adf2f31db4aeb6d7e7e41...6b059fd277af151a3e10327be3a8be3e4ba084a2","Len":1}', 1705396545);
INSERT INTO public.action VALUES (3920, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/89/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3921, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/89/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3692, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"}],"HeadCommit":{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8eece73dc814f23997466b778c570a25145163df...cf4715110a114ad27e4779af22c58cfb819d78c9","Len":2}', 1705395802);
INSERT INTO public.action VALUES (3693, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"}],"HeadCommit":{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8eece73dc814f23997466b778c570a25145163df...cf4715110a114ad27e4779af22c58cfb819d78c9","Len":2}', 1705395802);
INSERT INTO public.action VALUES (3697, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"}],"HeadCommit":{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/65e6485ae4926938a51adf2f31db4aeb6d7e7e41...6b059fd277af151a3e10327be3a8be3e4ba084a2","Len":1}', 1705396545);
INSERT INTO public.action VALUES (3698, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"}],"HeadCommit":{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/65e6485ae4926938a51adf2f31db4aeb6d7e7e41...6b059fd277af151a3e10327be3a8be3e4ba084a2","Len":1}', 1705396545);
INSERT INTO public.action VALUES (3699, 11, 7, 11, 21, 0, false, '', false, '104|fix change page', 1705396611);
INSERT INTO public.action VALUES (3700, 14, 7, 11, 21, 0, false, '', false, '104|fix change page', 1705396611);
INSERT INTO public.action VALUES (3701, 1, 7, 11, 21, 0, false, '', false, '104|fix change page', 1705396611);
INSERT INTO public.action VALUES (3702, 5, 7, 11, 21, 0, false, '', false, '104|fix change page', 1705396611);
INSERT INTO public.action VALUES (3703, 16, 7, 11, 21, 0, false, '', false, '104|fix change page', 1705396611);
INSERT INTO public.action VALUES (3704, 11, 11, 11, 21, 0, false, '', false, '104|fix change page', 1705396641);
INSERT INTO public.action VALUES (3705, 14, 11, 11, 21, 0, false, '', false, '104|fix change page', 1705396641);
INSERT INTO public.action VALUES (3706, 1, 11, 11, 21, 0, false, '', false, '104|fix change page', 1705396641);
INSERT INTO public.action VALUES (3707, 5, 11, 11, 21, 0, false, '', false, '104|fix change page', 1705396641);
INSERT INTO public.action VALUES (3708, 16, 11, 11, 21, 0, false, '', false, '104|fix change page', 1705396641);
INSERT INTO public.action VALUES (3709, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"}],"HeadCommit":{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cf4715110a114ad27e4779af22c58cfb819d78c9...645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Len":2}', 1705396642);
INSERT INTO public.action VALUES (3710, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"}],"HeadCommit":{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cf4715110a114ad27e4779af22c58cfb819d78c9...645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Len":2}', 1705396642);
INSERT INTO public.action VALUES (3711, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"}],"HeadCommit":{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cf4715110a114ad27e4779af22c58cfb819d78c9...645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Len":2}', 1705396642);
INSERT INTO public.action VALUES (3719, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"}],"HeadCommit":{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3b268198277e3decd8a39c797a71e1379fc01f38...340a9c47ca2f986c9fc50a1471a84a66c36eec01","Len":1}', 1705396712);
INSERT INTO public.action VALUES (3712, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"}],"HeadCommit":{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cf4715110a114ad27e4779af22c58cfb819d78c9...645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Len":2}', 1705396642);
INSERT INTO public.action VALUES (3713, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"}],"HeadCommit":{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cf4715110a114ad27e4779af22c58cfb819d78c9...645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Len":2}', 1705396642);
INSERT INTO public.action VALUES (3714, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"}],"HeadCommit":{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6b059fd277af151a3e10327be3a8be3e4ba084a2...3b268198277e3decd8a39c797a71e1379fc01f38","Len":1}', 1705396657);
INSERT INTO public.action VALUES (3715, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"}],"HeadCommit":{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6b059fd277af151a3e10327be3a8be3e4ba084a2...3b268198277e3decd8a39c797a71e1379fc01f38","Len":1}', 1705396657);
INSERT INTO public.action VALUES (3716, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"}],"HeadCommit":{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6b059fd277af151a3e10327be3a8be3e4ba084a2...3b268198277e3decd8a39c797a71e1379fc01f38","Len":1}', 1705396657);
INSERT INTO public.action VALUES (3717, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"}],"HeadCommit":{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6b059fd277af151a3e10327be3a8be3e4ba084a2...3b268198277e3decd8a39c797a71e1379fc01f38","Len":1}', 1705396657);
INSERT INTO public.action VALUES (3718, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"}],"HeadCommit":{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6b059fd277af151a3e10327be3a8be3e4ba084a2...3b268198277e3decd8a39c797a71e1379fc01f38","Len":1}', 1705396657);
INSERT INTO public.action VALUES (3842, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/76/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3845, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/76/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3846, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/76/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3847, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/76/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3848, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/77/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3720, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"}],"HeadCommit":{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3b268198277e3decd8a39c797a71e1379fc01f38...340a9c47ca2f986c9fc50a1471a84a66c36eec01","Len":1}', 1705396712);
INSERT INTO public.action VALUES (3721, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"}],"HeadCommit":{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3b268198277e3decd8a39c797a71e1379fc01f38...340a9c47ca2f986c9fc50a1471a84a66c36eec01","Len":1}', 1705396712);
INSERT INTO public.action VALUES (3722, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"}],"HeadCommit":{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3b268198277e3decd8a39c797a71e1379fc01f38...340a9c47ca2f986c9fc50a1471a84a66c36eec01","Len":1}', 1705396712);
INSERT INTO public.action VALUES (3723, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"}],"HeadCommit":{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3b268198277e3decd8a39c797a71e1379fc01f38...340a9c47ca2f986c9fc50a1471a84a66c36eec01","Len":1}', 1705396712);
INSERT INTO public.action VALUES (3724, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"}],"HeadCommit":{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/340a9c47ca2f986c9fc50a1471a84a66c36eec01...5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Len":1}', 1705396820);
INSERT INTO public.action VALUES (3725, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"}],"HeadCommit":{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/340a9c47ca2f986c9fc50a1471a84a66c36eec01...5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Len":1}', 1705396820);
INSERT INTO public.action VALUES (3726, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"}],"HeadCommit":{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/340a9c47ca2f986c9fc50a1471a84a66c36eec01...5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Len":1}', 1705396820);
INSERT INTO public.action VALUES (3727, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"}],"HeadCommit":{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/340a9c47ca2f986c9fc50a1471a84a66c36eec01...5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Len":1}', 1705396820);
INSERT INTO public.action VALUES (3922, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/89/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3923, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/89/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3924, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/89/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3925, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/89/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (4001, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/70/head', false, '', 1705487770);
INSERT INTO public.action VALUES (4002, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/70/head', false, '', 1705487770);
INSERT INTO public.action VALUES (3728, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"}],"HeadCommit":{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/340a9c47ca2f986c9fc50a1471a84a66c36eec01...5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Len":1}', 1705396820);
INSERT INTO public.action VALUES (3729, 11, 7, 11, 21, 0, false, '', false, '105|thinh', 1705396846);
INSERT INTO public.action VALUES (3730, 14, 7, 11, 21, 0, false, '', false, '105|thinh', 1705396846);
INSERT INTO public.action VALUES (3731, 1, 7, 11, 21, 0, false, '', false, '105|thinh', 1705396846);
INSERT INTO public.action VALUES (3732, 5, 7, 11, 21, 0, false, '', false, '105|thinh', 1705396846);
INSERT INTO public.action VALUES (3733, 16, 7, 11, 21, 0, false, '', false, '105|thinh', 1705396846);
INSERT INTO public.action VALUES (3734, 11, 11, 11, 21, 0, false, '', false, '105|thinh', 1705396863);
INSERT INTO public.action VALUES (3735, 14, 11, 11, 21, 0, false, '', false, '105|thinh', 1705396863);
INSERT INTO public.action VALUES (3736, 1, 11, 11, 21, 0, false, '', false, '105|thinh', 1705396863);
INSERT INTO public.action VALUES (3737, 5, 11, 11, 21, 0, false, '', false, '105|thinh', 1705396863);
INSERT INTO public.action VALUES (3738, 16, 11, 11, 21, 0, false, '', false, '105|thinh', 1705396863);
INSERT INTO public.action VALUES (3739, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"},{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"},{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"}],"HeadCommit":{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/645b7c2b051a49e16e1ba1d5dd9af1918230b2c2...d268ef005af0e0adcc49b9b4100f0479116d31d4","Len":4}', 1705396865);
INSERT INTO public.action VALUES (3740, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"},{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"},{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"}],"HeadCommit":{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/645b7c2b051a49e16e1ba1d5dd9af1918230b2c2...d268ef005af0e0adcc49b9b4100f0479116d31d4","Len":4}', 1705396865);
INSERT INTO public.action VALUES (3741, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"},{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"},{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"}],"HeadCommit":{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/645b7c2b051a49e16e1ba1d5dd9af1918230b2c2...d268ef005af0e0adcc49b9b4100f0479116d31d4","Len":4}', 1705396865);
INSERT INTO public.action VALUES (3928, 1, 7, 11, 21, 0, false, '', false, '108|fix gdnn', 1705458410);
INSERT INTO public.action VALUES (3929, 5, 7, 11, 21, 0, false, '', false, '108|fix gdnn', 1705458410);
INSERT INTO public.action VALUES (3742, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"},{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"},{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"}],"HeadCommit":{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/645b7c2b051a49e16e1ba1d5dd9af1918230b2c2...d268ef005af0e0adcc49b9b4100f0479116d31d4","Len":4}', 1705396865);
INSERT INTO public.action VALUES (3743, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"},{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"},{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"}],"HeadCommit":{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/645b7c2b051a49e16e1ba1d5dd9af1918230b2c2...d268ef005af0e0adcc49b9b4100f0479116d31d4","Len":4}', 1705396865);
INSERT INTO public.action VALUES (3744, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"},{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"}],"HeadCommit":{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f...8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Len":106}', 1705397196);
INSERT INTO public.action VALUES (3745, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"},{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"}],"HeadCommit":{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f...8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Len":106}', 1705397196);
INSERT INTO public.action VALUES (3746, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"},{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"}],"HeadCommit":{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f...8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Len":106}', 1705397196);
INSERT INTO public.action VALUES (3747, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"},{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"}],"HeadCommit":{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f...8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Len":106}', 1705397196);
INSERT INTO public.action VALUES (3930, 16, 7, 11, 21, 0, false, '', false, '108|fix gdnn', 1705458410);
INSERT INTO public.action VALUES (4003, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/70/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (3748, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"},{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"}],"HeadCommit":{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f...8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Len":106}', 1705397196);
INSERT INTO public.action VALUES (3749, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"}],"HeadCommit":{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7...7650c10f1a92cffc96d99f4f9923dc49763c69c7","Len":1}', 1705397229);
INSERT INTO public.action VALUES (3750, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"}],"HeadCommit":{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7...7650c10f1a92cffc96d99f4f9923dc49763c69c7","Len":1}', 1705397229);
INSERT INTO public.action VALUES (3751, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"}],"HeadCommit":{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7...7650c10f1a92cffc96d99f4f9923dc49763c69c7","Len":1}', 1705397229);
INSERT INTO public.action VALUES (3752, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"}],"HeadCommit":{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7...7650c10f1a92cffc96d99f4f9923dc49763c69c7","Len":1}', 1705397229);
INSERT INTO public.action VALUES (3753, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"}],"HeadCommit":{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7...7650c10f1a92cffc96d99f4f9923dc49763c69c7","Len":1}', 1705397229);
INSERT INTO public.action VALUES (3754, 11, 7, 11, 21, 0, false, '', false, '106|thinh', 1705397254);
INSERT INTO public.action VALUES (3755, 14, 7, 11, 21, 0, false, '', false, '106|thinh', 1705397254);
INSERT INTO public.action VALUES (3756, 1, 7, 11, 21, 0, false, '', false, '106|thinh', 1705397254);
INSERT INTO public.action VALUES (3757, 5, 7, 11, 21, 0, false, '', false, '106|thinh', 1705397254);
INSERT INTO public.action VALUES (3758, 16, 7, 11, 21, 0, false, '', false, '106|thinh', 1705397254);
INSERT INTO public.action VALUES (3759, 11, 11, 11, 21, 0, false, '', false, '106|thinh', 1705397269);
INSERT INTO public.action VALUES (3760, 14, 11, 11, 21, 0, false, '', false, '106|thinh', 1705397269);
INSERT INTO public.action VALUES (3761, 1, 11, 11, 21, 0, false, '', false, '106|thinh', 1705397269);
INSERT INTO public.action VALUES (3762, 5, 11, 11, 21, 0, false, '', false, '106|thinh', 1705397269);
INSERT INTO public.action VALUES (3763, 16, 11, 11, 21, 0, false, '', false, '106|thinh', 1705397269);
INSERT INTO public.action VALUES (3766, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f0f201ffadd72a9c710659316fad0c14ed6d69c1","Message":"Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:27:43+07:00"},{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"},{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"}],"HeadCommit":{"Sha1":"f0f201ffadd72a9c710659316fad0c14ed6d69c1","Message":"Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:27:43+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d268ef005af0e0adcc49b9b4100f0479116d31d4...f0f201ffadd72a9c710659316fad0c14ed6d69c1","Len":3}', 1705397271);
INSERT INTO public.action VALUES (3764, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f0f201ffadd72a9c710659316fad0c14ed6d69c1","Message":"Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:27:43+07:00"},{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"},{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"}],"HeadCommit":{"Sha1":"f0f201ffadd72a9c710659316fad0c14ed6d69c1","Message":"Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:27:43+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d268ef005af0e0adcc49b9b4100f0479116d31d4...f0f201ffadd72a9c710659316fad0c14ed6d69c1","Len":3}', 1705397271);
INSERT INTO public.action VALUES (3765, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f0f201ffadd72a9c710659316fad0c14ed6d69c1","Message":"Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:27:43+07:00"},{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"},{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"}],"HeadCommit":{"Sha1":"f0f201ffadd72a9c710659316fad0c14ed6d69c1","Message":"Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:27:43+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d268ef005af0e0adcc49b9b4100f0479116d31d4...f0f201ffadd72a9c710659316fad0c14ed6d69c1","Len":3}', 1705397271);
INSERT INTO public.action VALUES (3769, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/92/head', false, '', 1705399569);
INSERT INTO public.action VALUES (3770, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/92/head', false, '', 1705399569);
INSERT INTO public.action VALUES (3771, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/92/head', false, '', 1705399570);
INSERT INTO public.action VALUES (3772, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/92/merge', false, '', 1705399570);
INSERT INTO public.action VALUES (3773, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/92/merge', false, '', 1705399570);
INSERT INTO public.action VALUES (3774, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/92/merge', false, '', 1705399570);
INSERT INTO public.action VALUES (3775, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/93/head', false, '', 1705399570);
INSERT INTO public.action VALUES (3776, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/93/head', false, '', 1705399570);
INSERT INTO public.action VALUES (3777, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/93/head', false, '', 1705399570);
INSERT INTO public.action VALUES (3778, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/93/merge', false, '', 1705399570);
INSERT INTO public.action VALUES (3779, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/93/merge', false, '', 1705399570);
INSERT INTO public.action VALUES (3780, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/93/merge', false, '', 1705399570);
INSERT INTO public.action VALUES (3781, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/94/head', false, '', 1705399570);
INSERT INTO public.action VALUES (3782, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/94/head', false, '', 1705399570);
INSERT INTO public.action VALUES (3783, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/94/head', false, '', 1705399570);
INSERT INTO public.action VALUES (3784, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/94/merge', false, '', 1705399570);
INSERT INTO public.action VALUES (3785, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/94/merge', false, '', 1705399570);
INSERT INTO public.action VALUES (3786, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/94/merge', false, '', 1705399570);
INSERT INTO public.action VALUES (3787, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/95/head', false, '', 1705399570);
INSERT INTO public.action VALUES (3788, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/95/head', false, '', 1705399570);
INSERT INTO public.action VALUES (3789, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/95/head', false, '', 1705399570);
INSERT INTO public.action VALUES (3790, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/95/merge', false, '', 1705399570);
INSERT INTO public.action VALUES (3791, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/95/merge', false, '', 1705399570);
INSERT INTO public.action VALUES (3792, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/95/merge', false, '', 1705399570);
INSERT INTO public.action VALUES (3767, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f0f201ffadd72a9c710659316fad0c14ed6d69c1","Message":"Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:27:43+07:00"},{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"},{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"}],"HeadCommit":{"Sha1":"f0f201ffadd72a9c710659316fad0c14ed6d69c1","Message":"Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:27:43+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d268ef005af0e0adcc49b9b4100f0479116d31d4...f0f201ffadd72a9c710659316fad0c14ed6d69c1","Len":3}', 1705397271);
INSERT INTO public.action VALUES (3768, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f0f201ffadd72a9c710659316fad0c14ed6d69c1","Message":"Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:27:43+07:00"},{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"},{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"}],"HeadCommit":{"Sha1":"f0f201ffadd72a9c710659316fad0c14ed6d69c1","Message":"Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:27:43+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d268ef005af0e0adcc49b9b4100f0479116d31d4...f0f201ffadd72a9c710659316fad0c14ed6d69c1","Len":3}', 1705397271);
INSERT INTO public.action VALUES (3793, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},{"Sha1":"9251c7d4c42a1d4339704decd8b079937f34cfb7","Message":"DanhSachTrungCMND filter SoCCCD\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:23+07:00"},{"Sha1":"a7374329a01b74fd020df75c0afc197fbdebd58f","Message":"updaate\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T15:35:17+07:00"}],"HeadCommit":{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/25171a94c626223b0e72c8a83ce97b2af8680282...7c37978908457eed35a776de122d752d008605f5","Len":3}', 1705419371);
INSERT INTO public.action VALUES (3794, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},{"Sha1":"9251c7d4c42a1d4339704decd8b079937f34cfb7","Message":"DanhSachTrungCMND filter SoCCCD\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:23+07:00"},{"Sha1":"a7374329a01b74fd020df75c0afc197fbdebd58f","Message":"updaate\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T15:35:17+07:00"}],"HeadCommit":{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/25171a94c626223b0e72c8a83ce97b2af8680282...7c37978908457eed35a776de122d752d008605f5","Len":3}', 1705419371);
INSERT INTO public.action VALUES (3795, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},{"Sha1":"9251c7d4c42a1d4339704decd8b079937f34cfb7","Message":"DanhSachTrungCMND filter SoCCCD\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:23+07:00"},{"Sha1":"a7374329a01b74fd020df75c0afc197fbdebd58f","Message":"updaate\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T15:35:17+07:00"}],"HeadCommit":{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/25171a94c626223b0e72c8a83ce97b2af8680282...7c37978908457eed35a776de122d752d008605f5","Len":3}', 1705419371);
INSERT INTO public.action VALUES (3931, 11, 11, 11, 21, 0, false, '', false, '108|fix gdnn', 1705458437);
INSERT INTO public.action VALUES (3932, 14, 11, 11, 21, 0, false, '', false, '108|fix gdnn', 1705458437);
INSERT INTO public.action VALUES (3933, 1, 11, 11, 21, 0, false, '', false, '108|fix gdnn', 1705458437);
INSERT INTO public.action VALUES (3796, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},{"Sha1":"9251c7d4c42a1d4339704decd8b079937f34cfb7","Message":"DanhSachTrungCMND filter SoCCCD\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:23+07:00"},{"Sha1":"a7374329a01b74fd020df75c0afc197fbdebd58f","Message":"updaate\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T15:35:17+07:00"}],"HeadCommit":{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/25171a94c626223b0e72c8a83ce97b2af8680282...7c37978908457eed35a776de122d752d008605f5","Len":3}', 1705419371);
INSERT INTO public.action VALUES (3797, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},{"Sha1":"9251c7d4c42a1d4339704decd8b079937f34cfb7","Message":"DanhSachTrungCMND filter SoCCCD\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:23+07:00"},{"Sha1":"a7374329a01b74fd020df75c0afc197fbdebd58f","Message":"updaate\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T15:35:17+07:00"}],"HeadCommit":{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/25171a94c626223b0e72c8a83ce97b2af8680282...7c37978908457eed35a776de122d752d008605f5","Len":3}', 1705419371);
INSERT INTO public.action VALUES (3798, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},{"Sha1":"9251c7d4c42a1d4339704decd8b079937f34cfb7","Message":"DanhSachTrungCMND filter SoCCCD\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:23+07:00"},{"Sha1":"a7374329a01b74fd020df75c0afc197fbdebd58f","Message":"updaate\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T15:35:17+07:00"}],"HeadCommit":{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/25171a94c626223b0e72c8a83ce97b2af8680282...7c37978908457eed35a776de122d752d008605f5","Len":3}', 1705419371);
INSERT INTO public.action VALUES (3799, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/90/head', false, '', 1705428971);
INSERT INTO public.action VALUES (3800, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/90/head', false, '', 1705428971);
INSERT INTO public.action VALUES (3801, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/90/head', false, '', 1705428971);
INSERT INTO public.action VALUES (3802, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/90/merge', false, '', 1705428971);
INSERT INTO public.action VALUES (3803, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/90/merge', false, '', 1705428971);
INSERT INTO public.action VALUES (3804, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/90/merge', false, '', 1705428971);
INSERT INTO public.action VALUES (3805, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/91/head', false, '', 1705428971);
INSERT INTO public.action VALUES (3806, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/91/head', false, '', 1705428971);
INSERT INTO public.action VALUES (3807, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/91/head', false, '', 1705428971);
INSERT INTO public.action VALUES (3808, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/91/merge', false, '', 1705428971);
INSERT INTO public.action VALUES (3809, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/91/merge', false, '', 1705428971);
INSERT INTO public.action VALUES (3810, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/91/merge', false, '', 1705428971);
INSERT INTO public.action VALUES (3811, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"}],"HeadCommit":{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7650c10f1a92cffc96d99f4f9923dc49763c69c7...b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Len":1}', 1705457039);
INSERT INTO public.action VALUES (3812, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"}],"HeadCommit":{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7650c10f1a92cffc96d99f4f9923dc49763c69c7...b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Len":1}', 1705457039);
INSERT INTO public.action VALUES (3934, 5, 11, 11, 21, 0, false, '', false, '108|fix gdnn', 1705458437);
INSERT INTO public.action VALUES (3935, 16, 11, 11, 21, 0, false, '', false, '108|fix gdnn', 1705458437);
INSERT INTO public.action VALUES (3813, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"}],"HeadCommit":{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7650c10f1a92cffc96d99f4f9923dc49763c69c7...b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Len":1}', 1705457039);
INSERT INTO public.action VALUES (3814, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"}],"HeadCommit":{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7650c10f1a92cffc96d99f4f9923dc49763c69c7...b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Len":1}', 1705457039);
INSERT INTO public.action VALUES (3815, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"}],"HeadCommit":{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7650c10f1a92cffc96d99f4f9923dc49763c69c7...b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Len":1}', 1705457039);
INSERT INTO public.action VALUES (3816, 11, 7, 11, 21, 0, false, '', false, '107|fix trang thai ho so', 1705457140);
INSERT INTO public.action VALUES (3817, 14, 7, 11, 21, 0, false, '', false, '107|fix trang thai ho so', 1705457140);
INSERT INTO public.action VALUES (3818, 1, 7, 11, 21, 0, false, '', false, '107|fix trang thai ho so', 1705457140);
INSERT INTO public.action VALUES (3819, 5, 7, 11, 21, 0, false, '', false, '107|fix trang thai ho so', 1705457140);
INSERT INTO public.action VALUES (3820, 16, 7, 11, 21, 0, false, '', false, '107|fix trang thai ho so', 1705457140);
INSERT INTO public.action VALUES (3821, 11, 11, 11, 21, 0, false, '', false, '107|fix trang thai ho so', 1705457157);
INSERT INTO public.action VALUES (3822, 14, 11, 11, 21, 0, false, '', false, '107|fix trang thai ho so', 1705457157);
INSERT INTO public.action VALUES (3823, 1, 11, 11, 21, 0, false, '', false, '107|fix trang thai ho so', 1705457157);
INSERT INTO public.action VALUES (3824, 5, 11, 11, 21, 0, false, '', false, '107|fix trang thai ho so', 1705457157);
INSERT INTO public.action VALUES (3825, 16, 11, 11, 21, 0, false, '', false, '107|fix trang thai ho so', 1705457157);
INSERT INTO public.action VALUES (3826, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Message":"Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:05:51+07:00"},{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"}],"HeadCommit":{"Sha1":"8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Message":"Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:05:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f0f201ffadd72a9c710659316fad0c14ed6d69c1...8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Len":2}', 1705457159);
INSERT INTO public.action VALUES (3827, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Message":"Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:05:51+07:00"},{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"}],"HeadCommit":{"Sha1":"8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Message":"Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:05:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f0f201ffadd72a9c710659316fad0c14ed6d69c1...8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Len":2}', 1705457159);
INSERT INTO public.action VALUES (3843, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"}],"HeadCommit":{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b51a2a2db8b6c480c487c33ce3cad9f3e94bb872...8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Len":1}', 1705458370);
INSERT INTO public.action VALUES (3956, 11, 11, 11, 21, 0, false, '', false, '109|thinh', 1705463232);
INSERT INTO public.action VALUES (3957, 14, 11, 11, 21, 0, false, '', false, '109|thinh', 1705463232);
INSERT INTO public.action VALUES (3958, 1, 11, 11, 21, 0, false, '', false, '109|thinh', 1705463232);
INSERT INTO public.action VALUES (3959, 5, 11, 11, 21, 0, false, '', false, '109|thinh', 1705463232);
INSERT INTO public.action VALUES (3828, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Message":"Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:05:51+07:00"},{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"}],"HeadCommit":{"Sha1":"8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Message":"Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:05:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f0f201ffadd72a9c710659316fad0c14ed6d69c1...8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Len":2}', 1705457159);
INSERT INTO public.action VALUES (3829, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Message":"Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:05:51+07:00"},{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"}],"HeadCommit":{"Sha1":"8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Message":"Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:05:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f0f201ffadd72a9c710659316fad0c14ed6d69c1...8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Len":2}', 1705457159);
INSERT INTO public.action VALUES (3830, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Message":"Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:05:51+07:00"},{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"}],"HeadCommit":{"Sha1":"8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Message":"Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:05:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f0f201ffadd72a9c710659316fad0c14ed6d69c1...8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Len":2}', 1705457159);
INSERT INTO public.action VALUES (3831, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/75/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3832, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/75/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3833, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/75/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3834, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/75/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3835, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/75/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3836, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/75/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3837, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"}],"HeadCommit":{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b51a2a2db8b6c480c487c33ce3cad9f3e94bb872...8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Len":1}', 1705458370);
INSERT INTO public.action VALUES (3838, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"}],"HeadCommit":{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b51a2a2db8b6c480c487c33ce3cad9f3e94bb872...8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Len":1}', 1705458370);
INSERT INTO public.action VALUES (3839, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/76/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3840, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/76/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3841, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"}],"HeadCommit":{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b51a2a2db8b6c480c487c33ce3cad9f3e94bb872...8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Len":1}', 1705458370);
INSERT INTO public.action VALUES (3960, 16, 11, 11, 21, 0, false, '', false, '109|thinh', 1705463232);
INSERT INTO public.action VALUES (3844, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"}],"HeadCommit":{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b51a2a2db8b6c480c487c33ce3cad9f3e94bb872...8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Len":1}', 1705458370);
INSERT INTO public.action VALUES (3858, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/78/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3859, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/78/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3860, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/79/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3861, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/79/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3862, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/79/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3863, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/79/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3864, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/79/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3865, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/79/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3866, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/80/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3867, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/80/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3868, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/80/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3869, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/80/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3870, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/80/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3871, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/80/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3872, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/81/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3873, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/81/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3874, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/81/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3875, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/81/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3876, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/81/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3877, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/81/merge', false, '', 1705458370);
INSERT INTO public.action VALUES (3878, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/82/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3879, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/82/head', false, '', 1705458370);
INSERT INTO public.action VALUES (3880, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/82/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3881, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/82/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3882, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/82/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3883, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/82/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3884, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/83/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3885, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/83/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3886, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/83/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3887, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/83/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3888, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/83/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3889, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/83/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3890, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/84/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3891, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/84/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3892, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/84/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3893, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/84/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3894, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/84/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3895, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/84/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3896, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/85/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3897, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/85/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3898, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/85/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3899, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/85/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3900, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/85/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3901, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/85/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3902, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/86/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3903, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/86/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3904, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/86/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3905, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/86/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3906, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/86/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3907, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/86/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3908, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/87/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3909, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/87/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3910, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/87/head', false, '', 1705458371);
INSERT INTO public.action VALUES (3911, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/87/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3912, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/87/merge', false, '', 1705458371);
INSERT INTO public.action VALUES (3936, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Message":"Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:27:11+07:00"},{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"}],"HeadCommit":{"Sha1":"99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Message":"Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:27:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8151ab7ce5fcfdf01ceb05db6de7cea9190aff45...99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Len":2}', 1705458437);
INSERT INTO public.action VALUES (3937, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Message":"Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:27:11+07:00"},{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"}],"HeadCommit":{"Sha1":"99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Message":"Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:27:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8151ab7ce5fcfdf01ceb05db6de7cea9190aff45...99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Len":2}', 1705458437);
INSERT INTO public.action VALUES (3938, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Message":"Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:27:11+07:00"},{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"}],"HeadCommit":{"Sha1":"99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Message":"Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:27:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8151ab7ce5fcfdf01ceb05db6de7cea9190aff45...99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Len":2}', 1705458437);
INSERT INTO public.action VALUES (3939, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Message":"Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:27:11+07:00"},{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"}],"HeadCommit":{"Sha1":"99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Message":"Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:27:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8151ab7ce5fcfdf01ceb05db6de7cea9190aff45...99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Len":2}', 1705458438);
INSERT INTO public.action VALUES (3940, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Message":"Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:27:11+07:00"},{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"}],"HeadCommit":{"Sha1":"99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Message":"Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:27:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8151ab7ce5fcfdf01ceb05db6de7cea9190aff45...99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Len":2}', 1705458438);
INSERT INTO public.action VALUES (3941, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"}],"HeadCommit":{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8...07dd78834b58c799d0db70d99f863dda643572aa","Len":1}', 1705463095);
INSERT INTO public.action VALUES (4004, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/70/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (4005, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/70/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (3942, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"}],"HeadCommit":{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8...07dd78834b58c799d0db70d99f863dda643572aa","Len":1}', 1705463095);
INSERT INTO public.action VALUES (3943, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"}],"HeadCommit":{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8...07dd78834b58c799d0db70d99f863dda643572aa","Len":1}', 1705463095);
INSERT INTO public.action VALUES (3944, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"}],"HeadCommit":{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8...07dd78834b58c799d0db70d99f863dda643572aa","Len":1}', 1705463095);
INSERT INTO public.action VALUES (3945, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"}],"HeadCommit":{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8...07dd78834b58c799d0db70d99f863dda643572aa","Len":1}', 1705463095);
INSERT INTO public.action VALUES (3946, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"}],"HeadCommit":{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/07dd78834b58c799d0db70d99f863dda643572aa...e3fb0e313b51381d7d07b910bfed3963036f3119","Len":1}', 1705463112);
INSERT INTO public.action VALUES (3947, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"}],"HeadCommit":{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/07dd78834b58c799d0db70d99f863dda643572aa...e3fb0e313b51381d7d07b910bfed3963036f3119","Len":1}', 1705463112);
INSERT INTO public.action VALUES (3948, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"}],"HeadCommit":{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/07dd78834b58c799d0db70d99f863dda643572aa...e3fb0e313b51381d7d07b910bfed3963036f3119","Len":1}', 1705463112);
INSERT INTO public.action VALUES (3949, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"}],"HeadCommit":{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/07dd78834b58c799d0db70d99f863dda643572aa...e3fb0e313b51381d7d07b910bfed3963036f3119","Len":1}', 1705463112);
INSERT INTO public.action VALUES (4006, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/71/head', false, '', 1705487770);
INSERT INTO public.action VALUES (4007, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/71/head', false, '', 1705487770);
INSERT INTO public.action VALUES (4008, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/71/head', false, '', 1705487770);
INSERT INTO public.action VALUES (4009, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/71/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (4010, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/71/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (4011, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/71/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (3950, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"}],"HeadCommit":{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/07dd78834b58c799d0db70d99f863dda643572aa...e3fb0e313b51381d7d07b910bfed3963036f3119","Len":1}', 1705463112);
INSERT INTO public.action VALUES (3951, 11, 7, 11, 21, 0, false, '', false, '109|thinh', 1705463150);
INSERT INTO public.action VALUES (3952, 14, 7, 11, 21, 0, false, '', false, '109|thinh', 1705463150);
INSERT INTO public.action VALUES (3953, 1, 7, 11, 21, 0, false, '', false, '109|thinh', 1705463150);
INSERT INTO public.action VALUES (3954, 5, 7, 11, 21, 0, false, '', false, '109|thinh', 1705463150);
INSERT INTO public.action VALUES (3955, 16, 7, 11, 21, 0, false, '', false, '109|thinh', 1705463150);
INSERT INTO public.action VALUES (3961, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d27bbd1a398cd332a453a4301f2539d4741f4829","Message":"Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T10:47:06+07:00"},{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"},{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"}],"HeadCommit":{"Sha1":"d27bbd1a398cd332a453a4301f2539d4741f4829","Message":"Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T10:47:06+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/99934589e07a2e5021fb88d8e95cd0701a3c3d8f...d27bbd1a398cd332a453a4301f2539d4741f4829","Len":3}', 1705463233);
INSERT INTO public.action VALUES (3962, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d27bbd1a398cd332a453a4301f2539d4741f4829","Message":"Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T10:47:06+07:00"},{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"},{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"}],"HeadCommit":{"Sha1":"d27bbd1a398cd332a453a4301f2539d4741f4829","Message":"Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T10:47:06+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/99934589e07a2e5021fb88d8e95cd0701a3c3d8f...d27bbd1a398cd332a453a4301f2539d4741f4829","Len":3}', 1705463233);
INSERT INTO public.action VALUES (3963, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d27bbd1a398cd332a453a4301f2539d4741f4829","Message":"Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T10:47:06+07:00"},{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"},{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"}],"HeadCommit":{"Sha1":"d27bbd1a398cd332a453a4301f2539d4741f4829","Message":"Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T10:47:06+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/99934589e07a2e5021fb88d8e95cd0701a3c3d8f...d27bbd1a398cd332a453a4301f2539d4741f4829","Len":3}', 1705463233);
INSERT INTO public.action VALUES (3964, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d27bbd1a398cd332a453a4301f2539d4741f4829","Message":"Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T10:47:06+07:00"},{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"},{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"}],"HeadCommit":{"Sha1":"d27bbd1a398cd332a453a4301f2539d4741f4829","Message":"Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T10:47:06+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/99934589e07a2e5021fb88d8e95cd0701a3c3d8f...d27bbd1a398cd332a453a4301f2539d4741f4829","Len":3}', 1705463233);
INSERT INTO public.action VALUES (3974, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},{"Sha1":"032f5653d1f00c12ee7afa5e20bfed87acf17720","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:29+07:00"}],"HeadCommit":{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7c37978908457eed35a776de122d752d008605f5...fdee172356b6f9f25ce145921047bafcb1d2e5ca","Len":2}', 1705478171);
INSERT INTO public.action VALUES (4012, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/72/head', false, '', 1705487770);
INSERT INTO public.action VALUES (3965, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d27bbd1a398cd332a453a4301f2539d4741f4829","Message":"Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T10:47:06+07:00"},{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"},{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"}],"HeadCommit":{"Sha1":"d27bbd1a398cd332a453a4301f2539d4741f4829","Message":"Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T10:47:06+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/99934589e07a2e5021fb88d8e95cd0701a3c3d8f...d27bbd1a398cd332a453a4301f2539d4741f4829","Len":3}', 1705463233);
INSERT INTO public.action VALUES (3966, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"}],"HeadCommit":{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"},"CompareURL":"khieu-nai/backend/compare/374020590f53026b266de0bc639429e3a2498848...33d9644ce9d08b8550b3ee8335c8a3024b60b342","Len":1}', 1705466286);
INSERT INTO public.action VALUES (3967, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"}],"HeadCommit":{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"},"CompareURL":"khieu-nai/backend/compare/374020590f53026b266de0bc639429e3a2498848...33d9644ce9d08b8550b3ee8335c8a3024b60b342","Len":1}', 1705466286);
INSERT INTO public.action VALUES (3968, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"}],"HeadCommit":{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"},"CompareURL":"khieu-nai/backend/compare/374020590f53026b266de0bc639429e3a2498848...33d9644ce9d08b8550b3ee8335c8a3024b60b342","Len":1}', 1705466286);
INSERT INTO public.action VALUES (3969, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"}],"HeadCommit":{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"},"CompareURL":"khieu-nai/backend/compare/374020590f53026b266de0bc639429e3a2498848...33d9644ce9d08b8550b3ee8335c8a3024b60b342","Len":1}', 1705466286);
INSERT INTO public.action VALUES (3970, 11, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"}],"HeadCommit":{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"},"CompareURL":"khieu-nai/backend/compare/374020590f53026b266de0bc639429e3a2498848...33d9644ce9d08b8550b3ee8335c8a3024b60b342","Len":1}', 1705466286);
INSERT INTO public.action VALUES (3971, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"}],"HeadCommit":{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"},"CompareURL":"khieu-nai/backend/compare/374020590f53026b266de0bc639429e3a2498848...33d9644ce9d08b8550b3ee8335c8a3024b60b342","Len":1}', 1705466286);
INSERT INTO public.action VALUES (3972, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"}],"HeadCommit":{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"},"CompareURL":"khieu-nai/backend/compare/374020590f53026b266de0bc639429e3a2498848...33d9644ce9d08b8550b3ee8335c8a3024b60b342","Len":1}', 1705466286);
INSERT INTO public.action VALUES (3973, 16, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"}],"HeadCommit":{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"},"CompareURL":"khieu-nai/backend/compare/374020590f53026b266de0bc639429e3a2498848...33d9644ce9d08b8550b3ee8335c8a3024b60b342","Len":1}', 1705466286);
INSERT INTO public.action VALUES (3975, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},{"Sha1":"032f5653d1f00c12ee7afa5e20bfed87acf17720","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:29+07:00"}],"HeadCommit":{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7c37978908457eed35a776de122d752d008605f5...fdee172356b6f9f25ce145921047bafcb1d2e5ca","Len":2}', 1705478171);
INSERT INTO public.action VALUES (3976, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},{"Sha1":"032f5653d1f00c12ee7afa5e20bfed87acf17720","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:29+07:00"}],"HeadCommit":{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7c37978908457eed35a776de122d752d008605f5...fdee172356b6f9f25ce145921047bafcb1d2e5ca","Len":2}', 1705478171);
INSERT INTO public.action VALUES (3977, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},{"Sha1":"032f5653d1f00c12ee7afa5e20bfed87acf17720","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:29+07:00"}],"HeadCommit":{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7c37978908457eed35a776de122d752d008605f5...fdee172356b6f9f25ce145921047bafcb1d2e5ca","Len":2}', 1705478171);
INSERT INTO public.action VALUES (3978, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},{"Sha1":"032f5653d1f00c12ee7afa5e20bfed87acf17720","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:29+07:00"}],"HeadCommit":{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7c37978908457eed35a776de122d752d008605f5...fdee172356b6f9f25ce145921047bafcb1d2e5ca","Len":2}', 1705478171);
INSERT INTO public.action VALUES (3979, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},{"Sha1":"032f5653d1f00c12ee7afa5e20bfed87acf17720","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:29+07:00"}],"HeadCommit":{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7c37978908457eed35a776de122d752d008605f5...fdee172356b6f9f25ce145921047bafcb1d2e5ca","Len":2}', 1705478171);
INSERT INTO public.action VALUES (3980, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},{"Sha1":"8145a6f0faa5e37075398a1f8f8ba4a0e6e9aa3b","Message":"fix: custom size\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:21+07:00"}],"HeadCommit":{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},"CompareURL":"khieu-nai/admin/compare/b8d0d925b42d717dd3206442113f99e827a2ff0f...b318e95abca38bb86e087afc220a10355787887d","Len":2}', 1705485458);
INSERT INTO public.action VALUES (3981, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},{"Sha1":"8145a6f0faa5e37075398a1f8f8ba4a0e6e9aa3b","Message":"fix: custom size\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:21+07:00"}],"HeadCommit":{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},"CompareURL":"khieu-nai/admin/compare/b8d0d925b42d717dd3206442113f99e827a2ff0f...b318e95abca38bb86e087afc220a10355787887d","Len":2}', 1705485458);
INSERT INTO public.action VALUES (3999, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/69/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (4000, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/70/head', false, '', 1705487770);
INSERT INTO public.action VALUES (3982, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},{"Sha1":"8145a6f0faa5e37075398a1f8f8ba4a0e6e9aa3b","Message":"fix: custom size\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:21+07:00"}],"HeadCommit":{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},"CompareURL":"khieu-nai/admin/compare/b8d0d925b42d717dd3206442113f99e827a2ff0f...b318e95abca38bb86e087afc220a10355787887d","Len":2}', 1705485458);
INSERT INTO public.action VALUES (3983, 11, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},{"Sha1":"8145a6f0faa5e37075398a1f8f8ba4a0e6e9aa3b","Message":"fix: custom size\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:21+07:00"}],"HeadCommit":{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},"CompareURL":"khieu-nai/admin/compare/b8d0d925b42d717dd3206442113f99e827a2ff0f...b318e95abca38bb86e087afc220a10355787887d","Len":2}', 1705485458);
INSERT INTO public.action VALUES (3984, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},{"Sha1":"8145a6f0faa5e37075398a1f8f8ba4a0e6e9aa3b","Message":"fix: custom size\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:21+07:00"}],"HeadCommit":{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},"CompareURL":"khieu-nai/admin/compare/b8d0d925b42d717dd3206442113f99e827a2ff0f...b318e95abca38bb86e087afc220a10355787887d","Len":2}', 1705485458);
INSERT INTO public.action VALUES (3985, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},{"Sha1":"8145a6f0faa5e37075398a1f8f8ba4a0e6e9aa3b","Message":"fix: custom size\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:21+07:00"}],"HeadCommit":{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},"CompareURL":"khieu-nai/admin/compare/b8d0d925b42d717dd3206442113f99e827a2ff0f...b318e95abca38bb86e087afc220a10355787887d","Len":2}', 1705485458);
INSERT INTO public.action VALUES (3986, 9, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},{"Sha1":"8145a6f0faa5e37075398a1f8f8ba4a0e6e9aa3b","Message":"fix: custom size\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:21+07:00"}],"HeadCommit":{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},"CompareURL":"khieu-nai/admin/compare/b8d0d925b42d717dd3206442113f99e827a2ff0f...b318e95abca38bb86e087afc220a10355787887d","Len":2}', 1705485458);
INSERT INTO public.action VALUES (3987, 16, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},{"Sha1":"8145a6f0faa5e37075398a1f8f8ba4a0e6e9aa3b","Message":"fix: custom size\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:21+07:00"}],"HeadCommit":{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},"CompareURL":"khieu-nai/admin/compare/b8d0d925b42d717dd3206442113f99e827a2ff0f...b318e95abca38bb86e087afc220a10355787887d","Len":2}', 1705485458);
INSERT INTO public.action VALUES (3988, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/68/head', false, '', 1705487770);
INSERT INTO public.action VALUES (3989, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/68/head', false, '', 1705487770);
INSERT INTO public.action VALUES (3990, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/68/head', false, '', 1705487770);
INSERT INTO public.action VALUES (3991, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/68/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (3992, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/68/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (3993, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/68/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (3994, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/69/head', false, '', 1705487770);
INSERT INTO public.action VALUES (3995, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/69/head', false, '', 1705487770);
INSERT INTO public.action VALUES (3996, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/69/head', false, '', 1705487770);
INSERT INTO public.action VALUES (3997, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/69/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (3998, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/69/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (4013, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/72/head', false, '', 1705487770);
INSERT INTO public.action VALUES (4014, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/72/head', false, '', 1705487770);
INSERT INTO public.action VALUES (4015, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/72/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (4016, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/72/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (4017, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/72/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (4018, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/73/head', false, '', 1705487770);
INSERT INTO public.action VALUES (4019, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/73/head', false, '', 1705487770);
INSERT INTO public.action VALUES (4020, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/73/head', false, '', 1705487770);
INSERT INTO public.action VALUES (4021, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/73/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (4022, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/73/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (4023, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/73/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (4024, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/74/head', false, '', 1705487770);
INSERT INTO public.action VALUES (4025, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/74/head', false, '', 1705487770);
INSERT INTO public.action VALUES (4026, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/74/head', false, '', 1705487770);
INSERT INTO public.action VALUES (4027, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/74/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (4028, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/74/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (4029, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/74/merge', false, '', 1705487770);
INSERT INTO public.action VALUES (4030, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/62/head', false, '', 1705517170);
INSERT INTO public.action VALUES (4031, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/62/head', false, '', 1705517170);
INSERT INTO public.action VALUES (4032, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/62/head', false, '', 1705517170);
INSERT INTO public.action VALUES (4033, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/62/merge', false, '', 1705517170);
INSERT INTO public.action VALUES (4034, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/62/merge', false, '', 1705517170);
INSERT INTO public.action VALUES (4035, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/62/merge', false, '', 1705517170);
INSERT INTO public.action VALUES (4036, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/63/head', false, '', 1705517170);
INSERT INTO public.action VALUES (4037, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/63/head', false, '', 1705517170);
INSERT INTO public.action VALUES (4038, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/63/head', false, '', 1705517170);
INSERT INTO public.action VALUES (4039, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/63/merge', false, '', 1705517170);
INSERT INTO public.action VALUES (4040, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/63/merge', false, '', 1705517170);
INSERT INTO public.action VALUES (4041, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/63/merge', false, '', 1705517170);
INSERT INTO public.action VALUES (4042, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/64/head', false, '', 1705517170);
INSERT INTO public.action VALUES (4043, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/64/head', false, '', 1705517170);
INSERT INTO public.action VALUES (4044, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/64/head', false, '', 1705517170);
INSERT INTO public.action VALUES (4045, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/64/merge', false, '', 1705517170);
INSERT INTO public.action VALUES (4046, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/64/merge', false, '', 1705517170);
INSERT INTO public.action VALUES (4047, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/64/merge', false, '', 1705517170);
INSERT INTO public.action VALUES (4048, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/65/head', false, '', 1705517170);
INSERT INTO public.action VALUES (4049, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/65/head', false, '', 1705517170);
INSERT INTO public.action VALUES (4050, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/65/head', false, '', 1705517170);
INSERT INTO public.action VALUES (4051, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/65/merge', false, '', 1705517170);
INSERT INTO public.action VALUES (4052, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/65/merge', false, '', 1705517170);
INSERT INTO public.action VALUES (4053, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/65/merge', false, '', 1705517170);
INSERT INTO public.action VALUES (4054, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/66/head', false, '', 1705517170);
INSERT INTO public.action VALUES (4055, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/66/head', false, '', 1705517170);
INSERT INTO public.action VALUES (4056, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/66/head', false, '', 1705517170);
INSERT INTO public.action VALUES (4057, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/66/merge', false, '', 1705517170);
INSERT INTO public.action VALUES (4058, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/66/merge', false, '', 1705517170);
INSERT INTO public.action VALUES (4059, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/66/merge', false, '', 1705517170);
INSERT INTO public.action VALUES (4060, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/67/head', false, '', 1705517170);
INSERT INTO public.action VALUES (4061, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/67/head', false, '', 1705517170);
INSERT INTO public.action VALUES (4062, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/67/head', false, '', 1705517170);
INSERT INTO public.action VALUES (4063, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/67/merge', false, '', 1705517170);
INSERT INTO public.action VALUES (4064, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/67/merge', false, '', 1705517170);
INSERT INTO public.action VALUES (4065, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/67/merge', false, '', 1705517170);
INSERT INTO public.action VALUES (4066, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/49/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4067, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/49/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4068, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/49/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4069, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/49/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4070, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/49/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4071, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/49/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4072, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/50/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4073, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/50/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4074, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/50/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4075, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/50/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4076, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/50/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4077, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/50/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4078, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/51/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4079, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/51/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4080, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/51/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4081, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/51/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4082, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/51/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4083, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/51/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4084, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/52/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4085, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/52/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4086, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/52/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4087, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/52/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4088, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/52/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4089, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/52/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4090, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/53/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4091, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/53/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4092, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/53/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4093, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/53/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4094, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/53/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4095, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/53/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4096, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/54/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4097, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/54/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4098, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/54/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4099, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/54/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4100, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/54/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4101, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/54/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4102, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/55/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4103, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/55/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4104, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/55/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4105, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/55/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4106, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/55/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4107, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/55/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4108, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/56/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4109, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/56/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4110, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/56/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4111, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/56/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4112, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/56/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4113, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/56/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4114, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/57/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4115, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/57/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4116, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/57/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4117, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/57/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4118, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/57/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4119, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/57/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4120, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/58/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4121, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/58/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4122, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/58/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4123, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/58/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4124, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/58/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4125, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/58/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4126, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/59/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4127, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/59/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4128, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/59/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4129, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/59/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4130, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/59/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4131, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/59/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4132, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/60/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4133, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/60/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4134, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/60/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4135, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/60/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4136, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/60/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4137, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/60/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4138, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/61/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4139, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/61/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4140, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/61/head', false, '', 1705546571);
INSERT INTO public.action VALUES (4141, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/61/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4142, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/61/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4143, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/61/merge', false, '', 1705546571);
INSERT INTO public.action VALUES (4144, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"}],"HeadCommit":{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"},"CompareURL":"khieu-nai/admin/compare/b318e95abca38bb86e087afc220a10355787887d...f9614b0b54ea4166a9274f5c737dc61322fa9933","Len":1}', 1705547171);
INSERT INTO public.action VALUES (4145, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"}],"HeadCommit":{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"},"CompareURL":"khieu-nai/admin/compare/b318e95abca38bb86e087afc220a10355787887d...f9614b0b54ea4166a9274f5c737dc61322fa9933","Len":1}', 1705547171);
INSERT INTO public.action VALUES (4146, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"}],"HeadCommit":{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"},"CompareURL":"khieu-nai/admin/compare/b318e95abca38bb86e087afc220a10355787887d...f9614b0b54ea4166a9274f5c737dc61322fa9933","Len":1}', 1705547171);
INSERT INTO public.action VALUES (4147, 11, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"}],"HeadCommit":{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"},"CompareURL":"khieu-nai/admin/compare/b318e95abca38bb86e087afc220a10355787887d...f9614b0b54ea4166a9274f5c737dc61322fa9933","Len":1}', 1705547171);
INSERT INTO public.action VALUES (4148, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"}],"HeadCommit":{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"},"CompareURL":"khieu-nai/admin/compare/b318e95abca38bb86e087afc220a10355787887d...f9614b0b54ea4166a9274f5c737dc61322fa9933","Len":1}', 1705547171);
INSERT INTO public.action VALUES (4149, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"}],"HeadCommit":{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"},"CompareURL":"khieu-nai/admin/compare/b318e95abca38bb86e087afc220a10355787887d...f9614b0b54ea4166a9274f5c737dc61322fa9933","Len":1}', 1705547171);
INSERT INTO public.action VALUES (4150, 9, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"}],"HeadCommit":{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"},"CompareURL":"khieu-nai/admin/compare/b318e95abca38bb86e087afc220a10355787887d...f9614b0b54ea4166a9274f5c737dc61322fa9933","Len":1}', 1705547171);
INSERT INTO public.action VALUES (4151, 16, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"}],"HeadCommit":{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"},"CompareURL":"khieu-nai/admin/compare/b318e95abca38bb86e087afc220a10355787887d...f9614b0b54ea4166a9274f5c737dc61322fa9933","Len":1}', 1705547171);
INSERT INTO public.action VALUES (4174, 16, 11, 11, 21, 0, false, '', false, '110|update bug', 1705561434);
INSERT INTO public.action VALUES (4239, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/37/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4240, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/37/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4152, 15, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},{"Sha1":"9f9d2ca7eb9ff7db8ca7980523254c40a6a62d62","Message":"add pp\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:08:36+07:00"},{"Sha1":"c8b7fe342b6bec24bb2301d59eb7b5001a1343fd","Message":"add form\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-17T16:57:44+07:00"}],"HeadCommit":{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},"CompareURL":"khieu-nai/admin/compare/f9614b0b54ea4166a9274f5c737dc61322fa9933...814c2834abecae300e8f733df62b8c2d0e7f835f","Len":3}', 1705547955);
INSERT INTO public.action VALUES (4153, 12, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},{"Sha1":"9f9d2ca7eb9ff7db8ca7980523254c40a6a62d62","Message":"add pp\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:08:36+07:00"},{"Sha1":"c8b7fe342b6bec24bb2301d59eb7b5001a1343fd","Message":"add form\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-17T16:57:44+07:00"}],"HeadCommit":{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},"CompareURL":"khieu-nai/admin/compare/f9614b0b54ea4166a9274f5c737dc61322fa9933...814c2834abecae300e8f733df62b8c2d0e7f835f","Len":3}', 1705547955);
INSERT INTO public.action VALUES (4154, 2, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},{"Sha1":"9f9d2ca7eb9ff7db8ca7980523254c40a6a62d62","Message":"add pp\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:08:36+07:00"},{"Sha1":"c8b7fe342b6bec24bb2301d59eb7b5001a1343fd","Message":"add form\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-17T16:57:44+07:00"}],"HeadCommit":{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},"CompareURL":"khieu-nai/admin/compare/f9614b0b54ea4166a9274f5c737dc61322fa9933...814c2834abecae300e8f733df62b8c2d0e7f835f","Len":3}', 1705547955);
INSERT INTO public.action VALUES (4155, 1, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},{"Sha1":"9f9d2ca7eb9ff7db8ca7980523254c40a6a62d62","Message":"add pp\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:08:36+07:00"},{"Sha1":"c8b7fe342b6bec24bb2301d59eb7b5001a1343fd","Message":"add form\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-17T16:57:44+07:00"}],"HeadCommit":{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},"CompareURL":"khieu-nai/admin/compare/f9614b0b54ea4166a9274f5c737dc61322fa9933...814c2834abecae300e8f733df62b8c2d0e7f835f","Len":3}', 1705547955);
INSERT INTO public.action VALUES (4156, 11, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},{"Sha1":"9f9d2ca7eb9ff7db8ca7980523254c40a6a62d62","Message":"add pp\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:08:36+07:00"},{"Sha1":"c8b7fe342b6bec24bb2301d59eb7b5001a1343fd","Message":"add form\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-17T16:57:44+07:00"}],"HeadCommit":{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},"CompareURL":"khieu-nai/admin/compare/f9614b0b54ea4166a9274f5c737dc61322fa9933...814c2834abecae300e8f733df62b8c2d0e7f835f","Len":3}', 1705547955);
INSERT INTO public.action VALUES (4157, 5, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},{"Sha1":"9f9d2ca7eb9ff7db8ca7980523254c40a6a62d62","Message":"add pp\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:08:36+07:00"},{"Sha1":"c8b7fe342b6bec24bb2301d59eb7b5001a1343fd","Message":"add form\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-17T16:57:44+07:00"}],"HeadCommit":{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},"CompareURL":"khieu-nai/admin/compare/f9614b0b54ea4166a9274f5c737dc61322fa9933...814c2834abecae300e8f733df62b8c2d0e7f835f","Len":3}', 1705547955);
INSERT INTO public.action VALUES (4230, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/36/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4158, 9, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},{"Sha1":"9f9d2ca7eb9ff7db8ca7980523254c40a6a62d62","Message":"add pp\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:08:36+07:00"},{"Sha1":"c8b7fe342b6bec24bb2301d59eb7b5001a1343fd","Message":"add form\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-17T16:57:44+07:00"}],"HeadCommit":{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},"CompareURL":"khieu-nai/admin/compare/f9614b0b54ea4166a9274f5c737dc61322fa9933...814c2834abecae300e8f733df62b8c2d0e7f835f","Len":3}', 1705547955);
INSERT INTO public.action VALUES (4159, 16, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},{"Sha1":"9f9d2ca7eb9ff7db8ca7980523254c40a6a62d62","Message":"add pp\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:08:36+07:00"},{"Sha1":"c8b7fe342b6bec24bb2301d59eb7b5001a1343fd","Message":"add form\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-17T16:57:44+07:00"}],"HeadCommit":{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},"CompareURL":"khieu-nai/admin/compare/f9614b0b54ea4166a9274f5c737dc61322fa9933...814c2834abecae300e8f733df62b8c2d0e7f835f","Len":3}', 1705547955);
INSERT INTO public.action VALUES (4160, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"}],"HeadCommit":{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3fb0e313b51381d7d07b910bfed3963036f3119...dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Len":1}', 1705561356);
INSERT INTO public.action VALUES (4161, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"}],"HeadCommit":{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3fb0e313b51381d7d07b910bfed3963036f3119...dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Len":1}', 1705561356);
INSERT INTO public.action VALUES (4162, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"}],"HeadCommit":{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3fb0e313b51381d7d07b910bfed3963036f3119...dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Len":1}', 1705561356);
INSERT INTO public.action VALUES (4163, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"}],"HeadCommit":{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3fb0e313b51381d7d07b910bfed3963036f3119...dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Len":1}', 1705561356);
INSERT INTO public.action VALUES (4164, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"}],"HeadCommit":{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3fb0e313b51381d7d07b910bfed3963036f3119...dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Len":1}', 1705561356);
INSERT INTO public.action VALUES (4165, 11, 7, 11, 21, 0, false, '', false, '110|update bug', 1705561418);
INSERT INTO public.action VALUES (4166, 14, 7, 11, 21, 0, false, '', false, '110|update bug', 1705561418);
INSERT INTO public.action VALUES (4167, 1, 7, 11, 21, 0, false, '', false, '110|update bug', 1705561418);
INSERT INTO public.action VALUES (4168, 5, 7, 11, 21, 0, false, '', false, '110|update bug', 1705561418);
INSERT INTO public.action VALUES (4169, 16, 7, 11, 21, 0, false, '', false, '110|update bug', 1705561418);
INSERT INTO public.action VALUES (4170, 11, 11, 11, 21, 0, false, '', false, '110|update bug', 1705561434);
INSERT INTO public.action VALUES (4171, 14, 11, 11, 21, 0, false, '', false, '110|update bug', 1705561434);
INSERT INTO public.action VALUES (4172, 1, 11, 11, 21, 0, false, '', false, '110|update bug', 1705561434);
INSERT INTO public.action VALUES (4173, 5, 11, 11, 21, 0, false, '', false, '110|update bug', 1705561434);
INSERT INTO public.action VALUES (4175, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6ae7b846816d579b60abebb037d74ce8e8d332df","Message":"Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:03:48+07:00"},{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"}],"HeadCommit":{"Sha1":"6ae7b846816d579b60abebb037d74ce8e8d332df","Message":"Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:03:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d27bbd1a398cd332a453a4301f2539d4741f4829...6ae7b846816d579b60abebb037d74ce8e8d332df","Len":2}', 1705561435);
INSERT INTO public.action VALUES (4176, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6ae7b846816d579b60abebb037d74ce8e8d332df","Message":"Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:03:48+07:00"},{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"}],"HeadCommit":{"Sha1":"6ae7b846816d579b60abebb037d74ce8e8d332df","Message":"Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:03:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d27bbd1a398cd332a453a4301f2539d4741f4829...6ae7b846816d579b60abebb037d74ce8e8d332df","Len":2}', 1705561435);
INSERT INTO public.action VALUES (4177, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6ae7b846816d579b60abebb037d74ce8e8d332df","Message":"Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:03:48+07:00"},{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"}],"HeadCommit":{"Sha1":"6ae7b846816d579b60abebb037d74ce8e8d332df","Message":"Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:03:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d27bbd1a398cd332a453a4301f2539d4741f4829...6ae7b846816d579b60abebb037d74ce8e8d332df","Len":2}', 1705561435);
INSERT INTO public.action VALUES (4178, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6ae7b846816d579b60abebb037d74ce8e8d332df","Message":"Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:03:48+07:00"},{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"}],"HeadCommit":{"Sha1":"6ae7b846816d579b60abebb037d74ce8e8d332df","Message":"Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:03:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d27bbd1a398cd332a453a4301f2539d4741f4829...6ae7b846816d579b60abebb037d74ce8e8d332df","Len":2}', 1705561435);
INSERT INTO public.action VALUES (4179, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6ae7b846816d579b60abebb037d74ce8e8d332df","Message":"Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:03:48+07:00"},{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"}],"HeadCommit":{"Sha1":"6ae7b846816d579b60abebb037d74ce8e8d332df","Message":"Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:03:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d27bbd1a398cd332a453a4301f2539d4741f4829...6ae7b846816d579b60abebb037d74ce8e8d332df","Len":2}', 1705561435);
INSERT INTO public.action VALUES (4180, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"}],"HeadCommit":{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dc9b1cd7ec18ad4fed9579e27f394b14858c3cde...0fcc16b3a944af679c58d4542042b1e00f05572d","Len":1}', 1705561817);
INSERT INTO public.action VALUES (4231, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/36/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4232, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/36/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4181, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"}],"HeadCommit":{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dc9b1cd7ec18ad4fed9579e27f394b14858c3cde...0fcc16b3a944af679c58d4542042b1e00f05572d","Len":1}', 1705561817);
INSERT INTO public.action VALUES (4182, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"}],"HeadCommit":{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dc9b1cd7ec18ad4fed9579e27f394b14858c3cde...0fcc16b3a944af679c58d4542042b1e00f05572d","Len":1}', 1705561817);
INSERT INTO public.action VALUES (4183, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"}],"HeadCommit":{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dc9b1cd7ec18ad4fed9579e27f394b14858c3cde...0fcc16b3a944af679c58d4542042b1e00f05572d","Len":1}', 1705561817);
INSERT INTO public.action VALUES (4184, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"}],"HeadCommit":{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dc9b1cd7ec18ad4fed9579e27f394b14858c3cde...0fcc16b3a944af679c58d4542042b1e00f05572d","Len":1}', 1705561817);
INSERT INTO public.action VALUES (4185, 11, 7, 11, 21, 0, false, '', false, '111|fix bug', 1705561837);
INSERT INTO public.action VALUES (4186, 14, 7, 11, 21, 0, false, '', false, '111|fix bug', 1705561837);
INSERT INTO public.action VALUES (4187, 1, 7, 11, 21, 0, false, '', false, '111|fix bug', 1705561837);
INSERT INTO public.action VALUES (4188, 5, 7, 11, 21, 0, false, '', false, '111|fix bug', 1705561837);
INSERT INTO public.action VALUES (4189, 16, 7, 11, 21, 0, false, '', false, '111|fix bug', 1705561837);
INSERT INTO public.action VALUES (4190, 11, 11, 11, 21, 0, false, '', false, '111|fix bug', 1705561863);
INSERT INTO public.action VALUES (4191, 14, 11, 11, 21, 0, false, '', false, '111|fix bug', 1705561863);
INSERT INTO public.action VALUES (4192, 1, 11, 11, 21, 0, false, '', false, '111|fix bug', 1705561863);
INSERT INTO public.action VALUES (4193, 5, 11, 11, 21, 0, false, '', false, '111|fix bug', 1705561863);
INSERT INTO public.action VALUES (4194, 16, 11, 11, 21, 0, false, '', false, '111|fix bug', 1705561863);
INSERT INTO public.action VALUES (4195, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e3af78fc47531563603cb74b00a581af88476433","Message":"Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:10:57+07:00"},{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"}],"HeadCommit":{"Sha1":"e3af78fc47531563603cb74b00a581af88476433","Message":"Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:10:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6ae7b846816d579b60abebb037d74ce8e8d332df...e3af78fc47531563603cb74b00a581af88476433","Len":2}', 1705561864);
INSERT INTO public.action VALUES (4196, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e3af78fc47531563603cb74b00a581af88476433","Message":"Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:10:57+07:00"},{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"}],"HeadCommit":{"Sha1":"e3af78fc47531563603cb74b00a581af88476433","Message":"Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:10:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6ae7b846816d579b60abebb037d74ce8e8d332df...e3af78fc47531563603cb74b00a581af88476433","Len":2}', 1705561864);
INSERT INTO public.action VALUES (4233, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/36/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4234, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/36/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4235, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/36/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4236, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/37/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4237, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/37/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4238, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/37/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4197, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e3af78fc47531563603cb74b00a581af88476433","Message":"Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:10:57+07:00"},{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"}],"HeadCommit":{"Sha1":"e3af78fc47531563603cb74b00a581af88476433","Message":"Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:10:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6ae7b846816d579b60abebb037d74ce8e8d332df...e3af78fc47531563603cb74b00a581af88476433","Len":2}', 1705561864);
INSERT INTO public.action VALUES (4198, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e3af78fc47531563603cb74b00a581af88476433","Message":"Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:10:57+07:00"},{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"}],"HeadCommit":{"Sha1":"e3af78fc47531563603cb74b00a581af88476433","Message":"Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:10:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6ae7b846816d579b60abebb037d74ce8e8d332df...e3af78fc47531563603cb74b00a581af88476433","Len":2}', 1705561864);
INSERT INTO public.action VALUES (4199, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e3af78fc47531563603cb74b00a581af88476433","Message":"Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:10:57+07:00"},{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"}],"HeadCommit":{"Sha1":"e3af78fc47531563603cb74b00a581af88476433","Message":"Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:10:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6ae7b846816d579b60abebb037d74ce8e8d332df...e3af78fc47531563603cb74b00a581af88476433","Len":2}', 1705561864);
INSERT INTO public.action VALUES (4200, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/31/head', false, '', 1705575512);
INSERT INTO public.action VALUES (4201, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/31/head', false, '', 1705575512);
INSERT INTO public.action VALUES (4202, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/31/head', false, '', 1705575512);
INSERT INTO public.action VALUES (4203, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/31/merge', false, '', 1705575512);
INSERT INTO public.action VALUES (4204, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/31/merge', false, '', 1705575512);
INSERT INTO public.action VALUES (4205, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/31/merge', false, '', 1705575512);
INSERT INTO public.action VALUES (4206, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/32/head', false, '', 1705575512);
INSERT INTO public.action VALUES (4207, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/32/head', false, '', 1705575512);
INSERT INTO public.action VALUES (4208, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/32/head', false, '', 1705575512);
INSERT INTO public.action VALUES (4209, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/32/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4210, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/32/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4211, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/32/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4212, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/33/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4213, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/33/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4214, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/33/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4215, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/33/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4216, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/33/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4217, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/33/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4218, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/34/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4219, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/34/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4220, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/34/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4221, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/34/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4222, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/34/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4223, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/34/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4224, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/35/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4225, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/35/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4226, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/35/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4227, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/35/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4228, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/35/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4229, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/35/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4241, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/37/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4242, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/38/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4243, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/38/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4244, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/38/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4245, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/38/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4246, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/38/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4247, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/38/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4248, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/39/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4249, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/39/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4250, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/39/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4251, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/39/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4252, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/39/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4253, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/39/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4254, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/40/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4255, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/40/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4256, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/40/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4257, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/40/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4258, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/40/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4259, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/40/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4260, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/41/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4261, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/41/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4262, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/41/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4263, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/41/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4264, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/41/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4265, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/41/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4266, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/42/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4267, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/42/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4268, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/42/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4269, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/42/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4270, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/42/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4271, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/42/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4272, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/43/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4273, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/43/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4274, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/43/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4275, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/43/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4276, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/43/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4277, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/43/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4278, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/44/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4279, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/44/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4280, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/44/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4281, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/44/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4282, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/44/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4283, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/44/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4284, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/45/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4285, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/45/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4286, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/45/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4287, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/45/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4288, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/45/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4289, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/45/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4290, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/46/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4291, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/46/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4292, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/46/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4293, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/46/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4294, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/46/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4295, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/46/merge', false, '', 1705575513);
INSERT INTO public.action VALUES (4296, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/47/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4297, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/47/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4298, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/47/head', false, '', 1705575513);
INSERT INTO public.action VALUES (4299, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/47/merge', false, '', 1705575514);
INSERT INTO public.action VALUES (4300, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/47/merge', false, '', 1705575514);
INSERT INTO public.action VALUES (4301, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/47/merge', false, '', 1705575514);
INSERT INTO public.action VALUES (4302, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/48/head', false, '', 1705575514);
INSERT INTO public.action VALUES (4303, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/48/head', false, '', 1705575514);
INSERT INTO public.action VALUES (4304, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/48/head', false, '', 1705575514);
INSERT INTO public.action VALUES (4305, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/48/merge', false, '', 1705575514);
INSERT INTO public.action VALUES (4306, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/48/merge', false, '', 1705575514);
INSERT INTO public.action VALUES (4307, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/48/merge', false, '', 1705575514);
INSERT INTO public.action VALUES (4308, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/22/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4309, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/22/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4310, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/22/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4311, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/22/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4312, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/22/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4313, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/22/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4314, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/23/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4315, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/23/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4316, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/23/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4317, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/23/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4318, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/23/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4319, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/23/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4320, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/24/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4321, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/24/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4322, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/24/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4323, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/24/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4324, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/24/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4325, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/24/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4326, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/25/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4327, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/25/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4328, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/25/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4329, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/25/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4330, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/25/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4331, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/25/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4332, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/26/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4333, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/26/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4334, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/26/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4335, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/26/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4336, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/26/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4337, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/26/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4338, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/27/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4339, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/27/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4340, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/27/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4341, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/27/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4342, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/27/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4343, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/27/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4344, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/28/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4345, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/28/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4346, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/28/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4347, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/28/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4348, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/28/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4349, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/28/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4350, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/29/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4351, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/29/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4352, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/29/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4353, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/29/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4354, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/29/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4355, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/29/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4356, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/30/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4357, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/30/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4358, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/30/head', false, '', 1705604914);
INSERT INTO public.action VALUES (4359, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/30/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4360, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/30/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4361, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/30/merge', false, '', 1705604914);
INSERT INTO public.action VALUES (4419, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/18/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4362, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"}],"HeadCommit":{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"},"CompareURL":"khieu-nai/backend/compare/33d9644ce9d08b8550b3ee8335c8a3024b60b342...35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Len":1}', 1705630613);
INSERT INTO public.action VALUES (4363, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"}],"HeadCommit":{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"},"CompareURL":"khieu-nai/backend/compare/33d9644ce9d08b8550b3ee8335c8a3024b60b342...35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Len":1}', 1705630613);
INSERT INTO public.action VALUES (4364, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"}],"HeadCommit":{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"},"CompareURL":"khieu-nai/backend/compare/33d9644ce9d08b8550b3ee8335c8a3024b60b342...35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Len":1}', 1705630613);
INSERT INTO public.action VALUES (4365, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"}],"HeadCommit":{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"},"CompareURL":"khieu-nai/backend/compare/33d9644ce9d08b8550b3ee8335c8a3024b60b342...35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Len":1}', 1705630613);
INSERT INTO public.action VALUES (4366, 11, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"}],"HeadCommit":{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"},"CompareURL":"khieu-nai/backend/compare/33d9644ce9d08b8550b3ee8335c8a3024b60b342...35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Len":1}', 1705630613);
INSERT INTO public.action VALUES (4367, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"}],"HeadCommit":{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"},"CompareURL":"khieu-nai/backend/compare/33d9644ce9d08b8550b3ee8335c8a3024b60b342...35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Len":1}', 1705630613);
INSERT INTO public.action VALUES (4368, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"}],"HeadCommit":{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"},"CompareURL":"khieu-nai/backend/compare/33d9644ce9d08b8550b3ee8335c8a3024b60b342...35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Len":1}', 1705630613);
INSERT INTO public.action VALUES (4369, 16, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"}],"HeadCommit":{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"},"CompareURL":"khieu-nai/backend/compare/33d9644ce9d08b8550b3ee8335c8a3024b60b342...35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Len":1}', 1705630613);
INSERT INTO public.action VALUES (4370, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"}],"HeadCommit":{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0fcc16b3a944af679c58d4542042b1e00f05572d...8fd1ec8092107d71cd610bc15090a66132b89ce0","Len":1}', 1705630948);
INSERT INTO public.action VALUES (4420, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/19/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4421, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/19/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4422, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/19/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4423, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/19/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4424, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/19/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4425, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/19/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4371, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"}],"HeadCommit":{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0fcc16b3a944af679c58d4542042b1e00f05572d...8fd1ec8092107d71cd610bc15090a66132b89ce0","Len":1}', 1705630948);
INSERT INTO public.action VALUES (4372, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"}],"HeadCommit":{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0fcc16b3a944af679c58d4542042b1e00f05572d...8fd1ec8092107d71cd610bc15090a66132b89ce0","Len":1}', 1705630948);
INSERT INTO public.action VALUES (4373, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"}],"HeadCommit":{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0fcc16b3a944af679c58d4542042b1e00f05572d...8fd1ec8092107d71cd610bc15090a66132b89ce0","Len":1}', 1705630948);
INSERT INTO public.action VALUES (4374, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"}],"HeadCommit":{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0fcc16b3a944af679c58d4542042b1e00f05572d...8fd1ec8092107d71cd610bc15090a66132b89ce0","Len":1}', 1705630948);
INSERT INTO public.action VALUES (4375, 11, 7, 11, 21, 0, false, '', false, '112|update phan quyen + filter', 1705631064);
INSERT INTO public.action VALUES (4376, 14, 7, 11, 21, 0, false, '', false, '112|update phan quyen + filter', 1705631064);
INSERT INTO public.action VALUES (4377, 1, 7, 11, 21, 0, false, '', false, '112|update phan quyen + filter', 1705631064);
INSERT INTO public.action VALUES (4378, 5, 7, 11, 21, 0, false, '', false, '112|update phan quyen + filter', 1705631064);
INSERT INTO public.action VALUES (4379, 16, 7, 11, 21, 0, false, '', false, '112|update phan quyen + filter', 1705631064);
INSERT INTO public.action VALUES (4380, 11, 11, 11, 21, 0, false, '', false, '112|update phan quyen + filter', 1705631135);
INSERT INTO public.action VALUES (4381, 14, 11, 11, 21, 0, false, '', false, '112|update phan quyen + filter', 1705631135);
INSERT INTO public.action VALUES (4382, 1, 11, 11, 21, 0, false, '', false, '112|update phan quyen + filter', 1705631135);
INSERT INTO public.action VALUES (4383, 5, 11, 11, 21, 0, false, '', false, '112|update phan quyen + filter', 1705631135);
INSERT INTO public.action VALUES (4384, 16, 11, 11, 21, 0, false, '', false, '112|update phan quyen + filter', 1705631135);
INSERT INTO public.action VALUES (4385, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8de6e2711f638af8b35485c887f3c10229f7fca6","Message":"Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-19T09:25:29+07:00"},{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"}],"HeadCommit":{"Sha1":"8de6e2711f638af8b35485c887f3c10229f7fca6","Message":"Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-19T09:25:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3af78fc47531563603cb74b00a581af88476433...8de6e2711f638af8b35485c887f3c10229f7fca6","Len":2}', 1705631137);
INSERT INTO public.action VALUES (4386, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8de6e2711f638af8b35485c887f3c10229f7fca6","Message":"Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-19T09:25:29+07:00"},{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"}],"HeadCommit":{"Sha1":"8de6e2711f638af8b35485c887f3c10229f7fca6","Message":"Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-19T09:25:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3af78fc47531563603cb74b00a581af88476433...8de6e2711f638af8b35485c887f3c10229f7fca6","Len":2}', 1705631137);
INSERT INTO public.action VALUES (4426, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/20/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4427, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/20/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4387, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8de6e2711f638af8b35485c887f3c10229f7fca6","Message":"Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-19T09:25:29+07:00"},{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"}],"HeadCommit":{"Sha1":"8de6e2711f638af8b35485c887f3c10229f7fca6","Message":"Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-19T09:25:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3af78fc47531563603cb74b00a581af88476433...8de6e2711f638af8b35485c887f3c10229f7fca6","Len":2}', 1705631137);
INSERT INTO public.action VALUES (4388, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8de6e2711f638af8b35485c887f3c10229f7fca6","Message":"Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-19T09:25:29+07:00"},{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"}],"HeadCommit":{"Sha1":"8de6e2711f638af8b35485c887f3c10229f7fca6","Message":"Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-19T09:25:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3af78fc47531563603cb74b00a581af88476433...8de6e2711f638af8b35485c887f3c10229f7fca6","Len":2}', 1705631137);
INSERT INTO public.action VALUES (4389, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8de6e2711f638af8b35485c887f3c10229f7fca6","Message":"Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-19T09:25:29+07:00"},{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"}],"HeadCommit":{"Sha1":"8de6e2711f638af8b35485c887f3c10229f7fca6","Message":"Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-19T09:25:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3af78fc47531563603cb74b00a581af88476433...8de6e2711f638af8b35485c887f3c10229f7fca6","Len":2}', 1705631137);
INSERT INTO public.action VALUES (4390, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/14/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4391, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/14/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4392, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/14/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4393, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/14/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4394, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/14/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4395, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/14/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4396, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/15/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4397, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/15/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4398, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/15/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4399, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/15/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4400, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/15/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4401, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/15/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4402, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/16/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4403, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/16/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4404, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/16/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4405, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/16/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4406, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/16/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4407, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/16/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4408, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/17/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4409, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/17/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4410, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/17/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4411, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/17/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4412, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/17/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4413, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/17/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4414, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/18/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4415, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/18/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4416, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/18/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4417, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/18/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4418, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/18/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4428, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/20/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4429, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/20/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4430, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/20/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4431, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/20/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4432, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/21/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4433, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/21/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4434, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/21/head', false, '', 1705634312);
INSERT INTO public.action VALUES (4435, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/21/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4436, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/21/merge', false, '', 1705634312);
INSERT INTO public.action VALUES (4437, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/21/merge', false, '', 1705634312);


--
-- Data for Name: action_artifact; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: action_run; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: action_run_index; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: action_run_job; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: action_runner; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.action_runner VALUES (1, 'd141e8c9-bdea-4b83-88d4-cebea70bddf1', 'CMC Server', 0, 0, '', 0, '', 'a75769ba030433b31c054f0286a119c74eb6ac0af23487c10962d088413f1364047a6b630043a4419b3860946cffde8c4a2e', 'S6x8JWyUOZ', 1686797641, 0, '["cmc","controller","master"]', 1685064839, 1686797641, 1686797642, NULL);


--
-- Data for Name: action_runner_token; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.action_runner_token VALUES (1, 'P2953gNgAMNPeD5opSf2vlBF9syjLfmmWcZSeUto', 0, 0, true, 1685008191, 1685064839, NULL);
INSERT INTO public.action_runner_token VALUES (2, '7OjbMiLqZ3qXfMBbxXa6SF8qlGS1IMi5FF0J0P35', 0, 0, false, 1685064846, 1685064846, NULL);
INSERT INTO public.action_runner_token VALUES (3, 'C0hapzNmOGKHOuCmW8JkTsp1ZEcITaHilsyZWQnP', 8, 0, false, 1686802984, 1704678367, NULL);
INSERT INTO public.action_runner_token VALUES (4, 'rVjPJOaL8obHo36cG5TV7uXBdxQCDhqp4O6BiA8E', 8, 0, true, 1704678367, 1704678367, NULL);


--
-- Data for Name: action_schedule; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: action_schedule_spec; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: action_task; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: action_task_output; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: action_task_step; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: action_tasks_version; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: action_variable; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: app_state; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.app_state VALUES ('runtime-state', 1, '{"last_app_path":"C:/opt/gitea/gitea.exe","last_custom_conf":"C:\\opt\\gitea\\custom\\conf\\app.ini"}');


--
-- Data for Name: attachment; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: badge; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: branch; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.branch VALUES (1, 11, 'dev', '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', 'add Jenkinsfile', 0, false, 0, 0, 1686802445, 1700192947, 1700192947);
INSERT INTO public.branch VALUES (2, 9, 'master', 'd9808de1f02ff6939def557ccc6e2bc9e56f335d', 'update dashboard', 0, false, 0, 0, 1689219553, 1700193306, 1700193306);
INSERT INTO public.branch VALUES (3, 9, 'main', 'eecc690536ed3f49a97cbb6bb416175b0ff4eb06', 'fix build lỗi sau 1 thời gian dài', 0, false, 0, 0, 1685932813, 1700193306, 1700193306);
INSERT INTO public.branch VALUES (4, 10, 'dev', '580251b795de3f4ab4760b74af176873ee4129d7', 'update', 0, false, 0, 0, 1685934808, 1700204051, 1700204051);
INSERT INTO public.branch VALUES (42, 28, 'master', '695a361dc53c28493ae1d4dfaf97a8cc147082d2', 'quên add gRPC lib vào gateway', 17, false, 0, 0, 1620696821, 1705366325, 1705366325);
INSERT INTO public.branch VALUES (43, 28, 'dev', '94169c8272994c848786971f0f5b1231c24fefd0', '.', 17, false, 0, 0, 1704205381, 1705366325, 1705366325);
INSERT INTO public.branch VALUES (8, 7, 'dev', 'db631c23c653da1f63b740d7e7814fc345df17c0', 'big update', 0, false, 0, 0, 1685678646, 1700810344, 1700810344);
INSERT INTO public.branch VALUES (9, 6, 'main', 'ea13e1d90318274180b5572fbf7d109463ce01b0', 'change session idleTimeout', 0, false, 0, 0, 1685353362, 1700810725, 1700810725);
INSERT INTO public.branch VALUES (19, 18, 'test', '90055dfd315f979871ddb29047a9171ed9ddb4a2', 'fix: slug for event', 0, false, 0, 0, 1701155549, 1701256061, 1701256061);
INSERT INTO public.branch VALUES (37, 26, 'main', '814c2834abecae300e8f733df62b8c2d0e7f835f', 'service', 15, false, 0, 0, 1705547944, 1704425275, 1705547955);
INSERT INTO public.branch VALUES (30, 5, 'main', '2f139a8e94a15b037dc31fcc30e5823857257013', 'Merge branch ''hoangdong'' into ''main''', 0, false, 0, 0, 1669774897, 1703753734, 1703753734);
INSERT INTO public.branch VALUES (28, 8, 'nocms', 'c76f7a74cf41fdd1c705fc9f019a697413ba8af7', 'fix arcgis service url', 0, false, 0, 0, 1686109166, 1703478100, 1703478100);
INSERT INTO public.branch VALUES (29, 8, 'main', '997c70fb991ad1c41df5d8dd04873f291b57becd', 'update to angular 10', 0, false, 0, 0, 1685695594, 1703478100, 1703478100);
INSERT INTO public.branch VALUES (16, 18, 'main', '15aab07c22634b263f541cf2a5740d0fbc6e18d7', 'feat: result 70%', 0, false, 0, 0, 1703466506, 1701226317, 1703489442);
INSERT INTO public.branch VALUES (18, 20, 'main', '28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a', 'thanh lý', 0, false, 0, 0, 1703473351, 1701226695, 1703490037);
INSERT INTO public.branch VALUES (38, 26, 'dev-hoa', 'b8d0d925b42d717dd3206442113f99e827a2ff0f', 'merge', 15, false, 0, 0, 1705291561, 1704681340, 1705291588);
INSERT INTO public.branch VALUES (10, 17, 'hoang-dev', '0e8975dc866ce5aaaaa26e55709615ca6ec876ec', 'change social link', 0, false, 0, 0, 1703056251, 1701226115, 1703078110);
INSERT INTO public.branch VALUES (22, 21, 'dev-tuan', '98bac7b7796147fd0301f876de79e5c28fa8b978', 'Merge branch ''dev'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/frontend into dev-tuan', 14, false, 0, 0, 1670916063, 1701832988, 1701832988);
INSERT INTO public.branch VALUES (23, 21, 'main', '8bbccb90e29c9a50d5b4cd4b69ddf590a1507613', 'Initial commit', 14, false, 0, 0, 1664769415, 1701832988, 1701832988);
INSERT INTO public.branch VALUES (11, 17, 'revert-c48ed620', 'd12bc61de3ac9a76347016ff4ca5b3e8576fcffd', 'Revert "Merge branch ''code-backup'' into ''main''"', 13, false, 0, 0, 1698050864, 1701226115, 1701226115);
INSERT INTO public.branch VALUES (12, 17, 'code-backup', '6d36df6756b0cbe99665700bff4d8b5aa89cf0ac', 'dang bai dua thuyen buom', 13, false, 0, 0, 1697942442, 1701226115, 1701226115);
INSERT INTO public.branch VALUES (17, 18, 'hoang-dev', '16eef6fffd13f1990cb565b07dd9d7cb8b4d35ad', 'update mp4', 13, false, 0, 0, 1698371112, 1701226317, 1701226317);
INSERT INTO public.branch VALUES (25, 23, 'dev-android', 'cbcd28820451d16cb8811db95926ecae10e7541a', 'java 19', 14, false, 0, 0, 1680231254, 1701833952, 1701833952);
INSERT INTO public.branch VALUES (26, 23, 'dev-ios', '21d3a28c152ea9b310f937ca559356cccb181400', 'build ios', 14, false, 0, 0, 1677138317, 1701833952, 1701833952);
INSERT INTO public.branch VALUES (27, 23, 'master', 'dff222e66d727340377ee089801d61d867450f43', 'custom du thu', 14, false, 0, 0, 1675217459, 1701833952, 1701833952);
INSERT INTO public.branch VALUES (31, 5, 'hoangdong', '292251b672ea52d126ae76c271751e7b8df40302', 'fix ui tach ghep thua', 0, false, 0, 0, 1669774809, 1703753734, 1703753734);
INSERT INTO public.branch VALUES (32, 5, 'test', 'fc00506bc188211befbe1782d788f94622cb3dbb', 'Update layers.yaml', 0, false, 0, 0, 1660899384, 1703753734, 1703753734);
INSERT INTO public.branch VALUES (35, 24, 'dev-android', '36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0', 'noti, chat', 15, false, 0, 0, 1704251247, 1703824395, 1704251278);
INSERT INTO public.branch VALUES (36, 25, 'main', 'd6c2e64af79bb97a5b57cf8e173d2f2d29f3019b', 'Add project files.', 1, false, 0, 0, 1703834851, 1703835148, 1703835148);
INSERT INTO public.branch VALUES (5, 12, 'main', '7b700cce960bebc6fad9e06adb1d76eba7ebc29f', 'update cap lai mat khau', 11, false, 0, 0, 1702008047, 1700797288, 1702008061);
INSERT INTO public.branch VALUES (33, 5, 'dev', 'd1c2fd163d6fbb249fde89014b63234da393cdcc', 'Merge branch ''main'' into ''dev''', 0, false, 0, 0, 1656036105, 1703753734, 1703753734);
INSERT INTO public.branch VALUES (15, 17, 'develop', '8b79942357f0e1a362058fb81823a099385830cc', 'Merge branch ''dong-dev'' into ''develop''', 0, false, 0, 0, 1704109489, 1701226115, 1704136237);
INSERT INTO public.branch VALUES (13, 17, 'dong-dev', '4487e3b77714fa6fa1e7446e2a6e850ad7d92587', 'update next event', 0, false, 0, 0, 1704109344, 1701226115, 1704136237);
INSERT INTO public.branch VALUES (14, 17, 'main', '3388156ba70abc12c5d9f57ba31b3273f2bc34ae', 'Merge branch ''develop'' into ''main''', 0, false, 0, 0, 1704109510, 1701226115, 1704136237);
INSERT INTO public.branch VALUES (34, 24, 'dev-ios', 'f87e57452ea8eb0c41bbdb0f03c41522f317dfb7', 'login, regis', 15, false, 0, 0, 1704360030, 1703824263, 1704360042);
INSERT INTO public.branch VALUES (7, 15, 'main', '35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5', 'update', 5, false, 0, 0, 1705630602, 1700798589, 1705630613);
INSERT INTO public.branch VALUES (24, 22, 'main', 'fdee172356b6f9f25ce145921047bafcb1d2e5ca', 'Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend', 0, false, 0, 0, 1705456653, 1701833898, 1705478169);
INSERT INTO public.branch VALUES (39, 27, 'dev', '67c62e1bb972c3731c1207adab34819d00dda8c6', 'fix: update user', 17, false, 0, 0, 1704252932, 1705366274, 1705366274);
INSERT INTO public.branch VALUES (44, 29, 'fix-ui-ada', '0635df57afcbb8c044e24acc14e80f6added0fc5', 'build android', 17, false, 0, 0, 1702889869, 1705366768, 1705366768);
INSERT INTO public.branch VALUES (45, 29, 'fix/audio_record', '85e50fce2d7420392582242fd905d8cecdd7f107', 'build ios', 17, false, 0, 0, 1667805186, 1705366768, 1705366768);
INSERT INTO public.branch VALUES (40, 27, 'MaThanhHoang', '5921c5042bf7d5e400b36e7e35f426c7207bdfe6', 'empty commit', 17, false, 0, 0, 1648193109, 1705366274, 1705366274);
INSERT INTO public.branch VALUES (41, 27, 'master', '0ec686fa7075293404805e1b9c67be056f880d53', 'dựng source', 17, false, 0, 0, 1617416050, 1705366274, 1705366274);
INSERT INTO public.branch VALUES (46, 29, 'dev', 'f48875268f70978021fd327c465baf007dd868b9', 'add template merge', 17, false, 0, 0, 1661850754, 1705366768, 1705366768);
INSERT INTO public.branch VALUES (47, 29, 'test-upgrade', '077ac7b41aef2081183c51866d829ad923ec6413', 'update 0.68.1, xcode 13', 17, false, 0, 0, 1651197003, 1705366768, 1705366768);
INSERT INTO public.branch VALUES (48, 29, 'master', 'e1bfe3b854cecef6b893800ac330388297ec15c8', 'initial commit', 17, false, 0, 0, 1617244354, 1705366768, 1705366768);
INSERT INTO public.branch VALUES (49, 29, 'dev-ios', 'a461783f04be1b7aad3b8bd9005399b1022c6118', 'audio err', 17, false, 0, 0, 1703057727, 1705366768, 1705366768);
INSERT INTO public.branch VALUES (50, 26, 'dev-thinh', '6eeb3167459d18da3f7e5738d37354a500b8c3f6', 'feat: room - organization - jobtitle', 11, false, 0, 0, 1705285358, 1705368636, 1705368636);
INSERT INTO public.branch VALUES (21, 21, 'thinh', '8fd1ec8092107d71cd610bc15090a66132b89ce0', 'update phan quyen + filter', 11, false, 0, 0, 1705630937, 1701832988, 1705630948);
INSERT INTO public.branch VALUES (20, 21, 'dev', '8de6e2711f638af8b35485c887f3c10229f7fca6', 'Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev', 11, false, 0, 0, 1705631129, 1701832988, 1705631137);


--
-- Data for Name: collaboration; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.collaboration VALUES (1, 11, 9, 2, 1686809260, 1686809260);
INSERT INTO public.collaboration VALUES (4, 24, 15, 3, 1703824082, 1703824082);
INSERT INTO public.collaboration VALUES (5, 26, 2, 3, 1704424147, 1704424147);


--
-- Data for Name: comment; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.comment VALUES (1, 0, 1, '', 0, 1, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'Test tag tên @tuan ', '', 1685071535, 1685071535, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (2, 29, 1, '', 0, 2, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["f7703196ec86890a5d9e2921cd7c807078eec3d7","c0319628506edaa08cc62b8102bd5e72a81b2a0f","48652d228a3a50d1c85e12393961821cc62567ad"]}', '', 1702096328, 1702096328, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (3, 29, 1, '', 0, 2, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["20a08df4682d10433b053e6660a2ef3e31127449"]}', '', 1702096901, 1702096901, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (4, 28, 1, '', 0, 2, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702096969, 1702096969, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (5, 4, 1, '', 0, 2, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802">Merge pull request &#39;thinh&#39; (#1) from thinh into dev</a>', '', 1702096970, 1702096970, '453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (6, 29, 11, '', 0, 3, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["57148d20cdcbc970a17c104a386db2579c8b7684","840d81f0072a2dc84dcd2e592deb0ee322f2f46e","ba9ff55b3992311f8d8c8134aaebf4fa09653853"]}', '', 1702262292, 1702262292, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (7, 28, 11, '', 0, 3, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702262651, 1702262651, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (8, 4, 11, '', 0, 3, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/332b7c2db9feb5c0cd39791dabb28f9f7adb999f">Merge pull request &#39;thinh&#39; (#2) from thinh into dev</a>', '', 1702262653, 1702262653, '332b7c2db9feb5c0cd39791dabb28f9f7adb999f', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (9, 29, 11, '', 0, 4, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a"]}', '', 1702268902, 1702268902, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (10, 28, 11, '', 0, 4, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702268923, 1702268923, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (11, 4, 11, '', 0, 4, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/7780a4feeb614a456ab7396ad139fb4f27cf99c5">Merge pull request &#39;update nguoi tao filter&#39; (#3) from thinh into dev</a>', '', 1702268924, 1702268924, '7780a4feeb614a456ab7396ad139fb4f27cf99c5', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (12, 29, 11, '', 0, 5, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["84df5778e5198b6e1fddebc0cac9a844f2cfbafd"]}', '', 1702367034, 1702367034, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (13, 28, 11, '', 0, 5, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702367054, 1702367054, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (14, 4, 11, '', 0, 5, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/217e5489936cc894c29132432bcdb3a402d853b4">Merge pull request &#39;render Action NLĐ&#39; (#4) from thinh into dev</a>', '', 1702367055, 1702367055, '217e5489936cc894c29132432bcdb3a402d853b4', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (15, 29, 11, '', 0, 6, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["fd360e903f0823d329f8f01976d950865c273eee"]}', '', 1702372531, 1702372531, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (16, 28, 11, '', 0, 6, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702372549, 1702372549, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (17, 4, 11, '', 0, 6, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c">Merge pull request &#39;update row nld&#39; (#5) from thinh into dev</a>', '', 1702372550, 1702372550, '30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (18, 29, 11, '', 0, 7, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["7aa25777f9721eb11360ff4de9bc32ef1fb134d5"]}', '', 1702438666, 1702438666, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (19, 28, 11, '', 0, 7, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702438681, 1702438681, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (20, 4, 11, '', 0, 7, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/f6bf8a15c6b2454168641323bb68f95fd262bfdf">Merge pull request &#39;cmt QMTS + edit url KeHoachTuyenSinh&#39; (#6) from thinh into dev</a>', '', 1702438682, 1702438682, 'f6bf8a15c6b2454168641323bb68f95fd262bfdf', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (21, 29, 11, '', 0, 8, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["80dddcc1a779ef72ce358f1fe885ef56d4ea9fec"]}', '', 1702545117, 1702545117, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (22, 28, 11, '', 0, 8, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702545134, 1702545134, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (23, 4, 11, '', 0, 8, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/055af998354057d294f13a0acd4d47817548b2b1">Merge pull request &#39;update add nam giang day&#39; (#7) from thinh into dev</a>', '', 1702545135, 1702545135, '055af998354057d294f13a0acd4d47817548b2b1', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (24, 29, 11, '', 0, 9, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["35d9e420aca16b467c2f15fe29201a908f8a50e0"]}', '', 1702610168, 1702610168, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (25, 28, 11, '', 0, 9, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702610183, 1702610183, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (26, 4, 11, '', 0, 9, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88">Merge pull request &#39;up code&#39; (#8) from thinh into dev</a>', '', 1702610185, 1702610185, '2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (27, 29, 11, '', 0, 10, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["27be87b9f58af8a7c1789a168c9f824d069a8c9b"]}', '', 1702615291, 1702615291, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (28, 28, 11, '', 0, 10, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702615307, 1702615307, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (29, 4, 11, '', 0, 10, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/9a2ac98f33fd96bee643e3f6f36f36575c197232">Merge pull request &#39;add PLTDDT&#39; (#9) from thinh into dev</a>', '', 1702615308, 1702615308, '9a2ac98f33fd96bee643e3f6f36f36575c197232', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (30, 29, 11, '', 0, 11, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["a2285a074737d3cd8e28b97aa2840e0a3742f0c3"]}', '', 1702625968, 1702625968, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (31, 28, 11, '', 0, 11, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702625985, 1702625985, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (32, 4, 11, '', 0, 11, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/d10c1afe4570b2760d435db0b189e8d4beb9e1e4">Merge pull request &#39;update form thong tin tot nghiep&#39; (#10) from thinh into dev</a>', '', 1702625987, 1702625987, 'd10c1afe4570b2760d435db0b189e8d4beb9e1e4', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (33, 29, 11, '', 0, 12, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["d6c6ebc49d27881b73b00c41e305a4a05553ba59","0a16148c62a86e5f2259c49170108b92db418562"]}', '', 1702626227, 1702626227, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (34, 28, 11, '', 0, 12, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702626247, 1702626247, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (35, 4, 11, '', 0, 12, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/c85f3e0ffd126207716573905e05bc00287cfe56">Merge pull request &#39;thinh&#39; (#11) from thinh into dev</a>', '', 1702626249, 1702626249, 'c85f3e0ffd126207716573905e05bc00287cfe56', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (36, 29, 11, '', 0, 13, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["7c1c5230c30732550a59bb531e670dc4b26c1ddc","e49bfa1312e27644964f043a52ca88ea71a9be89"]}', '', 1702641378, 1702641378, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (37, 28, 11, '', 0, 13, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702641398, 1702641398, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (38, 4, 11, '', 0, 13, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac">Merge pull request &#39;thinh&#39; (#12) from thinh into dev</a>', '', 1702641400, 1702641400, 'c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (39, 29, 11, '', 0, 14, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["31a4a839d6a2d78343031b022b5809584d8d7ca5"]}', '', 1702641995, 1702641995, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (40, 28, 11, '', 0, 14, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702642084, 1702642084, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (41, 4, 11, '', 0, 14, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/66267b2a985da79086f96d0013f67de1c3f6cdfc">Merge pull request &#39;fix tths&#39; (#13) from thinh into dev</a>', '', 1702642086, 1702642086, '66267b2a985da79086f96d0013f67de1c3f6cdfc', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (42, 29, 11, '', 0, 15, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["82dc42aa48c0d98347fec8bd387a63ed36c10c59"]}', '', 1702883677, 1702883677, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (43, 28, 11, '', 0, 15, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702883703, 1702883703, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (131, 28, 11, '', 0, 44, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704530897, 1704530897, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (44, 4, 11, '', 0, 15, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/527e8c8156be1324b94845f5d0a29fb74e03a75e">Merge pull request &#39;import nha giao&#39; (#14) from thinh into dev</a>', '', 1702883704, 1702883704, '527e8c8156be1324b94845f5d0a29fb74e03a75e', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (45, 29, 11, '', 0, 16, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["556555eb7a356a27df965b962179d6296fd85b80"]}', '', 1702887102, 1702887102, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (46, 28, 11, '', 0, 16, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702887117, 1702887117, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (47, 4, 11, '', 0, 16, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/fe2b7e3827ed06be7308235f0d4289609621e3f5">Merge pull request &#39;filter QuanHuyenViewSo + Json HS/SV&#39; (#15) from thinh into dev</a>', '', 1702887118, 1702887118, 'fe2b7e3827ed06be7308235f0d4289609621e3f5', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (48, 29, 11, '', 0, 17, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["2354be6f98057d9f214ca12779f11e288b0fcd8b"]}', '', 1702887894, 1702887894, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (49, 28, 11, '', 0, 17, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702887923, 1702887923, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (50, 4, 11, '', 0, 17, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/1a92e62351728bac3c7f0afd5f4c8716ad0f3a53">Merge pull request &#39;fix giao dien&#39; (#16) from thinh into dev</a>', '', 1702887924, 1702887924, '1a92e62351728bac3c7f0afd5f4c8716ad0f3a53', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (51, 29, 11, '', 0, 18, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["89fb4ac9700c29f0ea1d3cb0712be070cf24839b"]}', '', 1702891927, 1702891927, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (52, 28, 11, '', 0, 18, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702891942, 1702891942, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (53, 4, 11, '', 0, 18, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/f138f26d87044c4d2801f8c46e13b0c2cc47c806">Merge pull request &#39;fix bang du lieu import excel&#39; (#17) from thinh into dev</a>', '', 1702891943, 1702891943, 'f138f26d87044c4d2801f8c46e13b0c2cc47c806', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (54, 29, 11, '', 0, 19, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["9a1dec6bb595188538ebfd75e033724bc73ed224"]}', '', 1702950875, 1702950875, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (55, 29, 11, '', 0, 19, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["23ad4cdb757b62bcce915abba7bd545b47297107"]}', '', 1702953380, 1702953380, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (56, 28, 11, '', 0, 19, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702953625, 1702953625, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (57, 4, 11, '', 0, 19, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/1209d08a6048529593be305903318410955b3285">Merge pull request &#39;import hoc vien&#39; (#18) from thinh into dev</a>', '', 1702953627, 1702953627, '1209d08a6048529593be305903318410955b3285', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (58, 29, 11, '', 0, 20, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["a20d3725ce75fdd102fd1a0e8865f08474e1c238"]}', '', 1702957082, 1702957082, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (59, 28, 11, '', 0, 20, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702957099, 1702957099, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (60, 4, 11, '', 0, 20, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/2b00bcf2f6390dd90b579b59e0b0d42e617a9529">Merge pull request &#39;update file excel hoc vien&#39; (#19) from thinh into dev</a>', '', 1702957101, 1702957101, '2b00bcf2f6390dd90b579b59e0b0d42e617a9529', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (61, 29, 11, '', 0, 21, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","7875dd1cb94f8d0563fdadfac04da1e77ef997f9"]}', '', 1702958705, 1702958705, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (62, 28, 11, '', 0, 21, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702958721, 1702958721, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (63, 4, 11, '', 0, 21, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/0e5cba3900c9c08060dc1e082efb182ce1d2f261">Merge pull request &#39;thinh&#39; (#20) from thinh into dev</a>', '', 1702958723, 1702958723, '0e5cba3900c9c08060dc1e082efb182ce1d2f261', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (64, 29, 11, '', 0, 22, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c"]}', '', 1702978974, 1702978974, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (65, 28, 11, '', 0, 22, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702979013, 1702979013, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (66, 4, 11, '', 0, 22, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/822137c72238e461cd8224bd07bf7738c907aeed">Merge pull request &#39;fix giao dien&#39; (#21) from thinh into dev</a>', '', 1702979015, 1702979015, '822137c72238e461cd8224bd07bf7738c907aeed', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (67, 29, 11, '', 0, 23, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["2550e5ce7cff1b368a88b7e07aa9191935e579bc"]}', '', 1703217099, 1703217099, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (68, 28, 11, '', 0, 23, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1703217118, 1703217118, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (69, 4, 11, '', 0, 23, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/ce4364a6eea788d602dd8008bf176dad3cee591f">Merge pull request &#39;update QLLD_NhuCauTuyenSinh&#39; (#22) from thinh into dev</a>', '', 1703217119, 1703217119, 'ce4364a6eea788d602dd8008bf176dad3cee591f', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (70, 29, 11, '', 0, 24, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["3224d74b3cd0c13e306f28eda021073d097d8b21"]}', '', 1703581439, 1703581439, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (71, 28, 11, '', 0, 24, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1703581455, 1703581455, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (72, 4, 11, '', 0, 24, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/b20e2920ff823bba807cf855b884c109ccb833e3">Merge pull request &#39;add ke hoach tuyen sinh&#39; (#23) from thinh into dev</a>', '', 1703581457, 1703581457, 'b20e2920ff823bba807cf855b884c109ccb833e3', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (73, 29, 11, '', 0, 25, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["dcabae26407e5a8ebe3ee60dae45c490ebf05dc2"]}', '', 1703733084, 1703733084, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (74, 28, 11, '', 0, 25, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1703733100, 1703733100, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (75, 4, 11, '', 0, 25, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/3d25992786d4defa328177d93bd82a78507ca708">Merge pull request &#39;add bao cao tuyen sinh&#39; (#24) from thinh into dev</a>', '', 1703733102, 1703733102, '3d25992786d4defa328177d93bd82a78507ca708', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (76, 29, 11, '', 0, 26, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["1686d02897942b3d60ace6745b52b898c77010f5"]}', '', 1703749796, 1703749796, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (77, 28, 11, '', 0, 26, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1703749812, 1703749812, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (78, 4, 11, '', 0, 26, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/087ed25ee9fded2df43d96f7a624b301d0ed3bf0">Merge pull request &#39;update ThuongTru_ThonXom&#39; (#25) from thinh into dev</a>', '', 1703749814, 1703749814, '087ed25ee9fded2df43d96f7a624b301d0ed3bf0', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (79, 29, 11, '', 0, 27, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["146f91e88fec6c748e4378c029300694f4599df8"]}', '', 1703757399, 1703757399, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (80, 28, 11, '', 0, 27, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1703757414, 1703757414, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (81, 4, 11, '', 0, 27, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/6cbac64de2f6655baf854915aac73011498c4afc">Merge pull request &#39;add chi tieu tuyen sinh&#39; (#26) from thinh into dev</a>', '', 1703757416, 1703757416, '6cbac64de2f6655baf854915aac73011498c4afc', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (82, 29, 11, '', 0, 28, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["373cd26fb7e01be8e5618bf1ca310f43b25423e9","911fdad30b51628a28e001ccf1645d9d5172e84f"]}', '', 1703820633, 1703820633, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (83, 28, 11, '', 0, 28, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1703820649, 1703820649, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (84, 4, 11, '', 0, 28, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/71da43b9b4f4ec6f2aab698e1cade5906e604d35">Merge pull request &#39;thinh&#39; (#27) from thinh into dev</a>', '', 1703820651, 1703820651, '71da43b9b4f4ec6f2aab698e1cade5906e604d35', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (85, 29, 11, '', 0, 29, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a"]}', '', 1703842271, 1703842271, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (86, 28, 11, '', 0, 29, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1703842288, 1703842288, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (154, 29, 11, '', 0, 52, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["b8b1e9d8ca222077ac01cd383e3f4818284508ec"]}', '', 1704559646, 1704559646, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (87, 4, 11, '', 0, 29, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9">Merge pull request &#39;thinh&#39; (#28) from thinh into dev</a>', '', 1703842291, 1703842291, 'b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (88, 29, 11, '', 0, 30, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","e03a51dfba325dd115c61bfabae354fc8bce8a39","93d05635290ecb9e83937118a5aa9baf089d30ac"]}', '', 1704247127, 1704247127, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (89, 28, 11, '', 0, 30, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704247144, 1704247144, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (90, 4, 11, '', 0, 30, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/1b4fab6a15956bae864162531765607648272383">Merge pull request &#39;thinh&#39; (#29) from thinh into dev</a>', '', 1704247145, 1704247145, '1b4fab6a15956bae864162531765607648272383', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (91, 29, 11, '', 0, 31, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["97b72611674d4b7b1aef7a4ccf73d301d3b95704"]}', '', 1704247789, 1704247789, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (92, 28, 11, '', 0, 31, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704247805, 1704247805, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (93, 4, 11, '', 0, 31, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/d478dd60abc83b3d9ca9128a2d6976b1322f2ac5">Merge pull request &#39;fix stlye detail khts&#39; (#30) from thinh into dev</a>', '', 1704247806, 1704247806, 'd478dd60abc83b3d9ca9128a2d6976b1322f2ac5', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (94, 29, 11, '', 0, 32, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","1f50a9600f44e3ab03f9211932cd46b5e9acf664"]}', '', 1704254944, 1704254944, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (95, 28, 11, '', 0, 32, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704254966, 1704254966, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (96, 4, 11, '', 0, 32, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/8e828e6f4421b1493f308e824c9e8bdb69e3c312">Merge pull request &#39;thinh&#39; (#31) from thinh into dev</a>', '', 1704254967, 1704254967, '8e828e6f4421b1493f308e824c9e8bdb69e3c312', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (97, 29, 11, '', 0, 33, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","a0b1080d5e7d96c9e634012be07424dcb88c4418"]}', '', 1704270127, 1704270127, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (98, 28, 11, '', 0, 33, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704270141, 1704270141, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (99, 4, 11, '', 0, 33, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/66485a7986ab26e07dab856017d0ee7f84234a04">Merge pull request &#39;thinh&#39; (#32) from thinh into dev</a>', '', 1704270141, 1704270141, '66485a7986ab26e07dab856017d0ee7f84234a04', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (100, 29, 11, '', 0, 34, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["205a7f5347c0e379199e46265c084c9be88049dc"]}', '', 1704337471, 1704337471, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (101, 28, 11, '', 0, 34, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704337487, 1704337487, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (102, 4, 11, '', 0, 34, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/f34630cbea2ecac67dcb069e4e4a27967ac7b10c">Merge pull request &#39;update edit location hoso&#39; (#33) from thinh into dev</a>', '', 1704337488, 1704337488, 'f34630cbea2ecac67dcb069e4e4a27967ac7b10c', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (103, 29, 11, '', 0, 35, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["f099d4b729877303d88c26254708d44fea9a6b91"]}', '', 1704337711, 1704337711, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (104, 28, 11, '', 0, 35, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704337726, 1704337726, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (105, 4, 11, '', 0, 35, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/3f0e55f14d544cea196d2bf018b613a7176bd7fd">Merge pull request &#39;update phan quyen chinh sua&#39; (#34) from thinh into dev</a>', '', 1704337727, 1704337727, '3f0e55f14d544cea196d2bf018b613a7176bd7fd', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (106, 29, 11, '', 0, 36, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["a765747120a51a414474b08290bd6962ad402549","f958d58054337a2fa79a21d97be215ab782e5ead"]}', '', 1704349756, 1704349756, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (107, 28, 11, '', 0, 36, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704349774, 1704349774, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (155, 28, 11, '', 0, 52, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704559662, 1704559662, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (108, 4, 11, '', 0, 36, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/209d45fee56b3c30e8134399acf07f2ed034d99a">Merge pull request &#39;thinh&#39; (#35) from thinh into dev</a>', '', 1704349775, 1704349775, '209d45fee56b3c30e8134399acf07f2ed034d99a', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (109, 29, 11, '', 0, 37, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["3d35753a6ca494289412e6435ad81b388dce8022"]}', '', 1704352556, 1704352556, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (110, 28, 11, '', 0, 37, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704352572, 1704352572, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (111, 4, 11, '', 0, 37, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/e06ac97be44f6830d36c492759a4857e370bcb1f">Merge pull request &#39;add nld change year nhucau&#39; (#36) from thinh into dev</a>', '', 1704352574, 1704352574, 'e06ac97be44f6830d36c492759a4857e370bcb1f', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (112, 29, 11, '', 0, 38, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["2423bb737a918b32bc59efe85c222a9f3128c7ab"]}', '', 1704422990, 1704422990, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (113, 28, 11, '', 0, 38, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704423005, 1704423005, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (114, 4, 11, '', 0, 38, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/568299bc2fd76e6410ce6c4a6115e561e1c1aa38">Merge pull request &#39;update bao cao&#39; (#37) from thinh into dev</a>', '', 1704423007, 1704423007, '568299bc2fd76e6410ce6c4a6115e561e1c1aa38', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (115, 29, 11, '', 0, 39, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["792bcff3d21254a02cb1dc70989f44cd948b788e"]}', '', 1704428627, 1704428627, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (116, 28, 11, '', 0, 39, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704428655, 1704428655, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (117, 4, 11, '', 0, 39, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/a83c5eae96d22b60f72fa4c1a88aed04b88835af">Merge pull request &#39;update bao cao tuyen sinh&#39; (#38) from thinh into dev</a>', '', 1704428657, 1704428657, 'a83c5eae96d22b60f72fa4c1a88aed04b88835af', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (118, 29, 11, '', 0, 40, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["abb8ae120157a6719fa9094c0b05ff6c11052efd"]}', '', 1704444552, 1704444552, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (119, 28, 11, '', 0, 40, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704444567, 1704444567, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (120, 4, 11, '', 0, 40, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/1511625e8a850a70547c23e491168c2ac465a5e6">Merge pull request &#39;update Loai hinh csgdnn&#39; (#39) from thinh into dev</a>', '', 1704444568, 1704444568, '1511625e8a850a70547c23e491168c2ac465a5e6', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (121, 29, 11, '', 0, 41, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["984ab8bc6fa2d923599f3f1241b528745fabcf57"]}', '', 1704446445, 1704446445, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (122, 28, 11, '', 0, 41, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704446462, 1704446462, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (123, 4, 11, '', 0, 41, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/ae5188bd0ff0b0618b16428867ff1d4c001a580b">Merge pull request &#39;add bao cao TN&#39; (#40) from thinh into dev</a>', '', 1704446463, 1704446463, 'ae5188bd0ff0b0618b16428867ff1d4c001a580b', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (124, 29, 11, '', 0, 42, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["de9a1bc215d3c5c6f82b7648e8a6e063da51500f","a560a9bc5fc9ec190342b2afbed08fc5a252c0a9"]}', '', 1704464888, 1704464888, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (125, 28, 11, '', 0, 42, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704464904, 1704464904, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (126, 4, 11, '', 0, 42, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/1f5dbedbc5ac086f344c259aa6523dd859e55509">Merge pull request &#39;thinh&#39; (#41) from thinh into dev</a>', '', 1704464905, 1704464905, '1f5dbedbc5ac086f344c259aa6523dd859e55509', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (127, 29, 11, '', 0, 43, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5"]}', '', 1704526100, 1704526100, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (128, 28, 11, '', 0, 43, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704526119, 1704526119, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (130, 29, 11, '', 0, 44, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["119cfde3f4a42038a41db374df8ff0d36954b1b8"]}', '', 1704530828, 1704530828, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (129, 4, 11, '', 0, 43, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/6918848f9c759b000de2893835b5d1c027f8ba14">Merge pull request &#39;add menu bao ccao thong ke&#39; (#42) from thinh into dev</a>', '', 1704526121, 1704526121, '6918848f9c759b000de2893835b5d1c027f8ba14', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (132, 4, 11, '', 0, 44, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/1d296848df6920c81b2395ba376ff937f4b8849b">Merge pull request &#39;add file&#39; (#43) from thinh into dev</a>', '', 1704530897, 1704530897, '1d296848df6920c81b2395ba376ff937f4b8849b', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (133, 29, 11, '', 0, 45, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["617e946b080534877c3abc010d4e567d2044a504"]}', '', 1704533560, 1704533560, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (134, 28, 11, '', 0, 45, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704533602, 1704533602, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (135, 4, 11, '', 0, 45, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c">Merge pull request &#39;add 4 task bao cao&#39; (#44) from thinh into dev</a>', '', 1704533603, 1704533603, '4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (136, 29, 11, '', 0, 46, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["bd49447e927e089e113e894c4cecbbc57f723a98"]}', '', 1704534497, 1704534497, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (137, 28, 11, '', 0, 46, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704534540, 1704534540, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (138, 4, 11, '', 0, 46, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/b8964d98cd5165235ae9910046babd2b3cb7bf55">Merge pull request &#39;phan row bao cao nha giao&#39; (#45) from thinh into dev</a>', '', 1704534542, 1704534542, 'b8964d98cd5165235ae9910046babd2b3cb7bf55', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (139, 29, 11, '', 0, 47, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["e5c3a3e2b2b1535da512fd85ccade301eb9e184d"]}', '', 1704534883, 1704534883, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (140, 28, 11, '', 0, 47, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704534900, 1704534900, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (141, 4, 11, '', 0, 47, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/d3c53ffa7ca196f1375e95e6cc5d49bc461272fc">Merge pull request &#39;fix css&#39; (#46) from thinh into dev</a>', '', 1704534900, 1704534900, 'd3c53ffa7ca196f1375e95e6cc5d49bc461272fc', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (142, 29, 11, '', 0, 48, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["df9b7ce86feb0b36c4d22201228a3e7f52791f31"]}', '', 1704535518, 1704535518, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (143, 28, 11, '', 0, 48, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704535534, 1704535534, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (144, 4, 11, '', 0, 48, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/0d37213eee90283bab8283fb75293086478de453">Merge pull request &#39;fix css&#39; (#47) from thinh into dev</a>', '', 1704535535, 1704535535, '0d37213eee90283bab8283fb75293086478de453', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (145, 29, 11, '', 0, 49, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["9748ba33191bfbf094a58a9f8070796b54ca6c95"]}', '', 1704538839, 1704538839, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (146, 28, 11, '', 0, 49, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704538858, 1704538858, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (147, 4, 11, '', 0, 49, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/95f1005c26023ce855c24052f06d6e81ce780724">Merge pull request &#39;fix height body item menu&#39; (#48) from thinh into dev</a>', '', 1704538859, 1704538859, '95f1005c26023ce855c24052f06d6e81ce780724', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (148, 29, 11, '', 0, 50, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["4d34351dde0810f72be0eb994338cf114049dace"]}', '', 1704540570, 1704540570, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (149, 28, 11, '', 0, 50, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704540615, 1704540615, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (150, 4, 11, '', 0, 50, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af">Merge pull request &#39;update title menu bao cao&#39; (#49) from thinh into dev</a>', '', 1704540616, 1704540616, 'b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (151, 29, 11, '', 0, 51, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["78578129269292fceb7625c884e5ea7eed543acb"]}', '', 1704558888, 1704558888, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (152, 28, 11, '', 0, 51, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704558905, 1704558905, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (153, 4, 11, '', 0, 51, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/ab844c362a09a6559ca0a8a4b5d0ace86a82784b">Merge pull request &#39;fix giao dien&#39; (#50) from thinh into dev</a>', '', 1704558907, 1704558907, 'ab844c362a09a6559ca0a8a4b5d0ace86a82784b', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (156, 4, 11, '', 0, 52, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/9088ce508353da84638b2c28888657686694e6d5">Merge pull request &#39;add ui screen&#39; (#51) from thinh into dev</a>', '', 1704559663, 1704559663, '9088ce508353da84638b2c28888657686694e6d5', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (157, 29, 11, '', 0, 53, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["5185419c13b6fec46874892354cc8730462e41f4"]}', '', 1704561812, 1704561812, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (158, 28, 11, '', 0, 53, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704561828, 1704561828, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (159, 4, 11, '', 0, 53, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/06d085be3928daaed5477b3b93f0b645021dc268">Merge pull request &#39;update fontfamily&#39; (#52) from thinh into dev</a>', '', 1704561831, 1704561831, '06d085be3928daaed5477b3b93f0b645021dc268', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (160, 29, 11, '', 0, 54, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["2a6e8489b87520d37042b61f7db2344e7af73158","45b9c678d73d0bd0daa0fe70c719bc40055f6428","b4cb97cfc03652702704d947d95da87772a7267a"]}', '', 1704563536, 1704563536, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (161, 28, 11, '', 0, 54, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704563577, 1704563577, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (162, 4, 11, '', 0, 54, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/2681e6728650033a8895e8b079f6af34a88c842c">Merge pull request &#39;thinh&#39; (#53) from thinh into dev</a>', '', 1704563578, 1704563578, '2681e6728650033a8895e8b079f6af34a88c842c', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (163, 29, 11, '', 0, 55, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["de110d6bef4e4af5e2f1749a46e5000bab208e47"]}', '', 1704649712, 1704649712, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (164, 28, 11, '', 0, 55, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704649732, 1704649732, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (165, 4, 11, '', 0, 55, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/90acec64f4430f307723d76cea501291a61614f9">Merge pull request &#39;update search menu bao cao&#39; (#54) from thinh into dev</a>', '', 1704649734, 1704649734, '90acec64f4430f307723d76cea501291a61614f9', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (166, 29, 11, '', 0, 56, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["1d8f88af23f789b2ede493c1d79dd803e096bb05"]}', '', 1704650081, 1704650081, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (167, 28, 11, '', 0, 56, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704650452, 1704650452, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (168, 4, 11, '', 0, 56, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/b9c768a9904229490cf45090e6edc9f229f94497">Merge pull request &#39;fix focus search&#39; (#55) from thinh into dev</a>', '', 1704650455, 1704650455, 'b9c768a9904229490cf45090e6edc9f229f94497', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (169, 29, 11, '', 0, 57, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","1648b96afc95a1c2a74360ae3223ec9016b6019e"]}', '', 1704679121, 1704679121, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (170, 28, 11, '', 0, 57, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704679141, 1704679141, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (171, 4, 11, '', 0, 57, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/17223a69f9d2c7982c99e9d063d7796bad0734ad">Merge pull request &#39;thinh&#39; (#56) from thinh into dev</a>', '', 1704679143, 1704679143, '17223a69f9d2c7982c99e9d063d7796bad0734ad', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (172, 29, 11, '', 0, 58, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["128401d049b3f492a8950948ee794aca9bc472e4"]}', '', 1704679829, 1704679829, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (173, 28, 11, '', 0, 58, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704679844, 1704679844, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (174, 4, 11, '', 0, 58, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/a5dfd620c51a9baabd25312a8ee7268e03395cec">Merge pull request &#39;update search menu bao cao&#39; (#57) from thinh into dev</a>', '', 1704679846, 1704679846, 'a5dfd620c51a9baabd25312a8ee7268e03395cec', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (175, 29, 11, '', 0, 59, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["4e4fdd8f67557bd5fa3129c9bad708d15b67971a"]}', '', 1704681575, 1704681575, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (176, 28, 11, '', 0, 59, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704681599, 1704681599, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (199, 29, 11, '', 0, 67, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["b51394f3145212044dd5954b808a0d9543bdaf5e","f84a3dfbb60e8522bd2a4e5b4bfc811486bce001"]}', '', 1704774825, 1704774825, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (177, 4, 11, '', 0, 59, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/480eb6217718c62029da79a52f43e3c0b31e5526">Merge pull request &#39;fix text tim kiem&#39; (#58) from thinh into dev</a>', '', 1704681600, 1704681600, '480eb6217718c62029da79a52f43e3c0b31e5526', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (178, 29, 11, '', 0, 60, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["7f7c96671126ae1b236dd7b6f0ece8be147517c9"]}', '', 1704685353, 1704685353, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (179, 28, 11, '', 0, 60, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704685372, 1704685372, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (180, 4, 11, '', 0, 60, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/a2ef85dd7af229c8630f60b81daea4f3a2a04c43">Merge pull request &#39;upcode rang buoc&#39; (#59) from thinh into dev</a>', '', 1704685374, 1704685374, 'a2ef85dd7af229c8630f60b81daea4f3a2a04c43', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (181, 29, 11, '', 0, 61, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["d47e007a7e3bf39970904a203d5c3b50fd7c355c"]}', '', 1704698139, 1704698139, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (182, 28, 11, '', 0, 61, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704698165, 1704698165, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (183, 4, 11, '', 0, 61, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf">Merge pull request &#39;fix giao dien&#39; (#60) from thinh into dev</a>', '', 1704698168, 1704698168, 'c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (184, 29, 11, '', 0, 62, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["dc1b5b62b753d93980b10f171b24d473d172b2c8"]}', '', 1704705500, 1704705500, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (185, 28, 11, '', 0, 62, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704705564, 1704705564, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (186, 4, 11, '', 0, 62, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/426a1faa2094a598744486c24ae40977eceee332">Merge pull request &#39;add detail gv nhieu co so&#39; (#61) from thinh into dev</a>', '', 1704705565, 1704705565, '426a1faa2094a598744486c24ae40977eceee332', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (187, 29, 11, '', 0, 63, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["f4e3881a081a31795d2162f9cbc281b4aba8ef27"]}', '', 1704706459, 1704706459, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (188, 28, 11, '', 0, 63, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704706490, 1704706490, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (189, 4, 11, '', 0, 63, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/59b787e85b18879fb9d8f189914021acb7746405">Merge pull request &#39;fix css&#39; (#62) from thinh into dev</a>', '', 1704706492, 1704706492, '59b787e85b18879fb9d8f189914021acb7746405', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (190, 29, 11, '', 0, 64, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["efc00fcfeaafade84d8cbe9eebd39891331630c5"]}', '', 1704707848, 1704707848, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (191, 28, 11, '', 0, 64, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704707882, 1704707882, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (192, 4, 11, '', 0, 64, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/5674ad927bb01fce2f1f31cb2bbee967c0147568">Merge pull request &#39;update filter year hs/sv&#39; (#63) from thinh into dev</a>', '', 1704707883, 1704707883, '5674ad927bb01fce2f1f31cb2bbee967c0147568', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (193, 29, 11, '', 0, 65, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["cd975fd61522e19149dd713289ee1e0199a4c04d"]}', '', 1704766193, 1704766193, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (194, 28, 11, '', 0, 65, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704766275, 1704766275, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (195, 4, 11, '', 0, 65, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/2e4d83e639d3a02e175d16951cdb2e2654baab6a">Merge pull request &#39;change zindex ModalEditTTTN&#39; (#64) from thinh into dev</a>', '', 1704766276, 1704766276, '2e4d83e639d3a02e175d16951cdb2e2654baab6a', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (196, 29, 11, '', 0, 66, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150"]}', '', 1704767038, 1704767038, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (197, 28, 11, '', 0, 66, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704767054, 1704767054, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (198, 4, 11, '', 0, 66, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/6e09f0acfd90921544a46a80a0fa99c37c13ecd1">Merge pull request &#39;fix zindex&#39; (#65) from thinh into dev</a>', '', 1704767055, 1704767055, '6e09f0acfd90921544a46a80a0fa99c37c13ecd1', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (200, 28, 11, '', 0, 67, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704774842, 1704774842, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (201, 4, 11, '', 0, 67, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/4a1e20f14835559c8bb4f994be3bdbbaa72cdac2">Merge pull request &#39;thinh&#39; (#66) from thinh into dev</a>', '', 1704774843, 1704774843, '4a1e20f14835559c8bb4f994be3bdbbaa72cdac2', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (202, 29, 11, '', 0, 68, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb"]}', '', 1704783849, 1704783849, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (203, 28, 11, '', 0, 68, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704783866, 1704783866, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (204, 4, 11, '', 0, 68, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/7d38765ee7248f74597c22ad61fac6a865a76263">Merge pull request &#39;update check requite bao cao&#39; (#67) from thinh into dev</a>', '', 1704783868, 1704783868, '7d38765ee7248f74597c22ad61fac6a865a76263', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (205, 29, 11, '', 0, 69, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["f2389db592f2b5230471326f66fa942bbafb1ca4"]}', '', 1704784778, 1704784778, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (206, 28, 11, '', 0, 69, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704784795, 1704784795, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (207, 4, 11, '', 0, 69, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/e938e87dccb49b7a9c0fd0c02a54920b7ef0d925">Merge pull request &#39;add check trung chi tieu&#39; (#68) from thinh into dev</a>', '', 1704784796, 1704784796, 'e938e87dccb49b7a9c0fd0c02a54920b7ef0d925', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (208, 29, 11, '', 0, 70, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["ba7fc72161054e3a1085ed4b8c70d84198ce961b"]}', '', 1704787809, 1704787809, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (209, 28, 11, '', 0, 70, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704787825, 1704787825, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (210, 4, 11, '', 0, 70, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/84e51ab1a10e1be4299a3924c9379a9732aa726b">Merge pull request &#39;add required tu ngay den ngay&#39; (#69) from thinh into dev</a>', '', 1704787826, 1704787826, '84e51ab1a10e1be4299a3924c9379a9732aa726b', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (211, 29, 11, '', 0, 71, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["18d73caa2573e24d8b765dbac7ddb10d036a7e2c"]}', '', 1704807690, 1704807690, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (212, 28, 11, '', 0, 71, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704807707, 1704807707, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (213, 4, 11, '', 0, 71, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/ca8a43c962e9597749bca9604a23617d805bae38">Merge pull request &#39;add list choose cs gdnn&#39; (#70) from thinh into dev</a>', '', 1704807709, 1704807709, 'ca8a43c962e9597749bca9604a23617d805bae38', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (214, 29, 11, '', 0, 72, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["60913e501d422158067d25f877b8db01f2433abe"]}', '', 1704853903, 1704853903, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (215, 28, 11, '', 0, 72, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704853918, 1704853918, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (216, 4, 11, '', 0, 72, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/1669b03cec92558923e86c96f89e177f983d7e66">Merge pull request &#39;add btn gui mail nhac nho&#39; (#71) from thinh into dev</a>', '', 1704853919, 1704853919, '1669b03cec92558923e86c96f89e177f983d7e66', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (217, 29, 11, '', 0, 73, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["919d45696e37045a2346ec721738b205ccb683a6"]}', '', 1704854937, 1704854937, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (218, 28, 11, '', 0, 73, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704854952, 1704854952, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (219, 4, 11, '', 0, 73, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/2450107fb2f67f6adad8cfe8683ded6dce63a0a2">Merge pull request &#39;fix thong bao loi hs + nha giao&#39; (#72) from thinh into dev</a>', '', 1704854954, 1704854954, '2450107fb2f67f6adad8cfe8683ded6dce63a0a2', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (220, 29, 11, '', 0, 74, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["70f24e6d6cf607b25226c6469303429543dc99e2","a537b38790dca067cd5d107807932adb39f23a99"]}', '', 1704868562, 1704868562, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (221, 28, 11, '', 0, 74, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704868578, 1704868578, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (222, 4, 11, '', 0, 74, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/221a94ac133d4b35ce6145276c4094662a6fe4d1">Merge pull request &#39;thinh&#39; (#73) from thinh into dev</a>', '', 1704868580, 1704868580, '221a94ac133d4b35ce6145276c4094662a6fe4d1', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (223, 29, 11, '', 0, 75, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["adee15cab9cef8728d2dbce1099fb43c2a2efabf"]}', '', 1704870390, 1704870390, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (224, 28, 11, '', 0, 75, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704870508, 1704870508, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (225, 4, 11, '', 0, 75, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/07b329f3e772c8eefb2d36090487965eef74c9e4">Merge pull request &#39;update search menu&#39; (#74) from thinh into dev</a>', '', 1704870509, 1704870509, '07b329f3e772c8eefb2d36090487965eef74c9e4', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (226, 29, 11, '', 0, 76, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["e3e580b4e1bedadc760640fc3572e51a2a805b27"]}', '', 1704878197, 1704878197, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (227, 28, 11, '', 0, 76, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704878216, 1704878216, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (228, 4, 11, '', 0, 76, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/8cb811be2927c486df5dbb09a8aa0a63535709d3">Merge pull request &#39;add bao cao&#39; (#75) from thinh into dev</a>', '', 1704878218, 1704878218, '8cb811be2927c486df5dbb09a8aa0a63535709d3', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (229, 29, 11, '', 0, 77, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["b72b77ce6d6441f022c666171f558d3b6ff8994f"]}', '', 1704878894, 1704878894, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (230, 28, 11, '', 0, 77, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704878912, 1704878912, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (231, 4, 11, '', 0, 77, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/d8568ef2cb388ffa029778d557c778ce2efa3353">Merge pull request &#39;fix info hoc vien&#39; (#76) from thinh into dev</a>', '', 1704878912, 1704878912, 'd8568ef2cb388ffa029778d557c778ce2efa3353', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (232, 29, 11, '', 0, 78, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["b864b6c508a7e992ec724257ba8068066dea62c2"]}', '', 1704937755, 1704937755, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (233, 28, 11, '', 0, 78, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704937771, 1704937771, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (234, 4, 11, '', 0, 78, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/5b398e4f4feead79e0fcaa363254896d4c7749c3">Merge pull request &#39;change api kq tuyen sinh&#39; (#77) from thinh into dev</a>', '', 1704937772, 1704937772, '5b398e4f4feead79e0fcaa363254896d4c7749c3', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (235, 29, 11, '', 0, 79, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["d182a2a0bf08c8ccaca3d9a68a87540beb06e085"]}', '', 1704944128, 1704944128, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (236, 28, 11, '', 0, 79, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704944215, 1704944215, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (237, 4, 11, '', 0, 79, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/b39634acf119d7a5698c952dfd10dc0e1ee5bb3d">Merge pull request &#39;style header&#39; (#78) from thinh into dev</a>', '', 1704944217, 1704944217, 'b39634acf119d7a5698c952dfd10dc0e1ee5bb3d', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (238, 29, 11, '', 0, 80, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d"]}', '', 1704945579, 1704945579, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (239, 28, 11, '', 0, 80, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704945594, 1704945594, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (240, 4, 11, '', 0, 80, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/414c6952e2434c3fc7f37c73c1309937925396c6">Merge pull request &#39;add ty le tuyen sinh tot nghiep&#39; (#79) from thinh into dev</a>', '', 1704945596, 1704945596, '414c6952e2434c3fc7f37c73c1309937925396c6', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (241, 29, 11, '', 0, 81, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["39cb06392b78a4b3529ef0a69ecdc485adfd1a06"]}', '', 1704947470, 1704947470, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (242, 28, 11, '', 0, 81, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704947505, 1704947505, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (243, 4, 11, '', 0, 81, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/29e0c4ea27c7052d9017a2b0896367a0bab5d9db">Merge pull request &#39;fix bao cao&#39; (#80) from thinh into dev</a>', '', 1704947505, 1704947505, '29e0c4ea27c7052d9017a2b0896367a0bab5d9db', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (244, 29, 11, '', 0, 82, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["f67d1811ee946b4368988f806d6c91b5161f2aca"]}', '', 1704956677, 1704956677, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (245, 28, 11, '', 0, 82, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704956850, 1704956850, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (246, 4, 11, '', 0, 82, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/e8b876ae81f072d85a259f7fe20b4629f98da421">Merge pull request &#39;fix loi bao cao&#39; (#81) from thinh into dev</a>', '', 1704956851, 1704956851, 'e8b876ae81f072d85a259f7fe20b4629f98da421', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (247, 29, 11, '', 0, 83, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["6fe0578df227fb4bd84cba9bc4376c0048ba5af3"]}', '', 1704958012, 1704958012, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (248, 28, 11, '', 0, 83, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704958041, 1704958041, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (249, 4, 11, '', 0, 83, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/891890aa28aae52d5c4d12f2b351251d3b1be143">Merge pull request &#39;fix hidden err bao cao&#39; (#82) from thinh into dev</a>', '', 1704958042, 1704958042, '891890aa28aae52d5c4d12f2b351251d3b1be143', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (250, 29, 11, '', 0, 84, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["2ea9bc82fbf36de091bb11804d7a7ffae089c611"]}', '', 1704990704, 1704990704, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (251, 28, 11, '', 0, 84, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704990830, 1704990830, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (252, 4, 11, '', 0, 84, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/50815ab17a48609b68bcfab8f7f40e59e7dcb4f3">Merge pull request &#39;add btn gui mail&#39; (#83) from thinh into dev</a>', '', 1704990831, 1704990831, '50815ab17a48609b68bcfab8f7f40e59e7dcb4f3', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (253, 29, 11, '', 0, 85, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["7f5f8927493694fa7b669e9f03f9b7cb95fda38b","d727cc3cd0303928173eddab019be9d9615d69da"]}', '', 1705025960, 1705025960, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (254, 28, 11, '', 0, 85, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705025976, 1705025976, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (255, 4, 11, '', 0, 85, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/d48e38d9a17ce739803e4e98d015c2fc443742ac">Merge pull request &#39;fix change so nam&#39; (#84) from thinh into dev</a>', '', 1705025976, 1705025976, 'd48e38d9a17ce739803e4e98d015c2fc443742ac', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (256, 29, 11, '', 0, 86, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["c78cbbacb228029e2f7904edb91659aa06135be7"]}', '', 1705030725, 1705030725, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (257, 28, 11, '', 0, 86, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705030758, 1705030758, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (258, 4, 11, '', 0, 86, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/6e16637a65f7d4d092a3cdbdbd178eb1636964e1">Merge pull request &#39;add fuc in send gmail&#39; (#85) from thinh into dev</a>', '', 1705030759, 1705030759, '6e16637a65f7d4d092a3cdbdbd178eb1636964e1', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (259, 29, 11, '', 0, 87, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["bf230208b1efd148c1dec00f3c4eb158311100bd"]}', '', 1705044513, 1705044513, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (260, 28, 11, '', 0, 87, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705044537, 1705044537, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (261, 4, 11, '', 0, 87, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/6189e5347420d4bbcee5c4f550ed3cd17a77ba41">Merge pull request &#39;fix icon user&#39; (#86) from thinh into dev</a>', '', 1705044538, 1705044538, '6189e5347420d4bbcee5c4f550ed3cd17a77ba41', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (262, 29, 11, '', 0, 88, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["8d033bdc680e69f37d6b0c7530e23ace16ad7ab6"]}', '', 1705045391, 1705045391, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (263, 28, 11, '', 0, 88, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705045581, 1705045581, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (264, 4, 11, '', 0, 88, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/1b5b07b0d95cd7b123fbc052e003045a1ea4530f">Merge pull request &#39;fix api tong hop so lieu tuyen sinh&#39; (#87) from thinh into dev</a>', '', 1705045583, 1705045583, '1b5b07b0d95cd7b123fbc052e003045a1ea4530f', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (265, 29, 11, '', 0, 89, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f"]}', '', 1705047313, 1705047313, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (266, 28, 11, '', 0, 89, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705047329, 1705047329, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (267, 4, 11, '', 0, 89, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/9dbf9d1817992c4fee7c955f584497c9faefcc50">Merge pull request &#39;fix bao cao tuyen sinh nn/nam&#39; (#88) from thinh into dev</a>', '', 1705047330, 1705047330, '9dbf9d1817992c4fee7c955f584497c9faefcc50', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (268, 29, 11, '', 0, 90, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["41e50f4abb6a643eb77c56ef5d517a3b404880ea","18d5c8f72559020069d731f9b8b1e4073a955df7"]}', '', 1705050071, 1705050071, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (269, 28, 11, '', 0, 90, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705050102, 1705050102, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (270, 4, 11, '', 0, 90, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/773815950340a50498ed3995ebb83bdcacecc237">Merge pull request &#39;thinh&#39; (#89) from thinh into dev</a>', '', 1705050103, 1705050103, '773815950340a50498ed3995ebb83bdcacecc237', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (271, 29, 11, '', 0, 91, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63"]}', '', 1705052725, 1705052725, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (272, 28, 11, '', 0, 91, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705052742, 1705052742, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (273, 4, 11, '', 0, 91, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6">Merge pull request &#39;hidden kehoachdapheduyet&#39; (#90) from thinh into dev</a>', '', 1705052743, 1705052743, '4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (274, 29, 11, '', 0, 92, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1"]}', '', 1705207982, 1705207982, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (275, 28, 11, '', 0, 92, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705208013, 1705208013, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (276, 4, 11, '', 0, 92, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/7b0e4a3aa34a91347178a93361fc9e193abd595d">Merge pull request &#39;add menu thong bao&#39; (#91) from thinh into dev</a>', '', 1705208015, 1705208015, '7b0e4a3aa34a91347178a93361fc9e193abd595d', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (277, 29, 11, '', 0, 93, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["5562d2823f0ace47c1fca2f8fe994e65241e8bea"]}', '', 1705311360, 1705311360, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (278, 28, 11, '', 0, 93, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705311410, 1705311410, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (279, 4, 11, '', 0, 93, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/9b29db610b20afcdaeec0f83db697b5c93ff5abf">Merge pull request &#39;add full action&#39; (#92) from thinh into dev</a>', '', 1705311410, 1705311410, '9b29db610b20afcdaeec0f83db697b5c93ff5abf', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (280, 29, 11, '', 0, 94, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["489a7a7fdc58d8144acd13c4cd58f66912cb341c"]}', '', 1705311943, 1705311943, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (281, 28, 11, '', 0, 94, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705312011, 1705312011, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (282, 4, 11, '', 0, 94, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/5b4556aaf08d874c598d4e9213153ede266d695d">Merge pull request &#39;fix bug&#39; (#93) from thinh into dev</a>', '', 1705312013, 1705312013, '5b4556aaf08d874c598d4e9213153ede266d695d', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (283, 29, 11, '', 0, 95, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["7b2383b817c645ebfa98deeb3863743633d3deae"]}', '', 1705312951, 1705312951, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (284, 28, 11, '', 0, 95, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705312967, 1705312967, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (285, 4, 11, '', 0, 95, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/c1781de2627ad32061687b7324e88a13d1040bb1">Merge pull request &#39;fix bug&#39; (#94) from thinh into dev</a>', '', 1705312969, 1705312969, 'c1781de2627ad32061687b7324e88a13d1040bb1', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (286, 29, 11, '', 0, 96, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["8f60ed32b2d8d1c029f54144b9426d2b865b6bd9"]}', '', 1705320581, 1705320581, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (287, 28, 11, '', 0, 96, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705320610, 1705320610, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (288, 4, 11, '', 0, 96, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/cebbfb98f2b56f439f19e5720eb0f1bab9f3b518">Merge pull request &#39;fix giao dien&#39; (#95) from thinh into dev</a>', '', 1705320611, 1705320611, 'cebbfb98f2b56f439f19e5720eb0f1bab9f3b518', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (289, 29, 11, '', 0, 97, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["da91d00953fc86aef94866d081a1d25a46b94d02"]}', '', 1705321132, 1705321132, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (290, 28, 11, '', 0, 97, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705321148, 1705321148, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (291, 4, 11, '', 0, 97, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/81ebe9e1ea91c561cfd2d8b2778830a808e2104e">Merge pull request &#39;fix loi&#39; (#96) from thinh into dev</a>', '', 1705321149, 1705321149, '81ebe9e1ea91c561cfd2d8b2778830a808e2104e', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (292, 29, 11, '', 0, 98, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["a328fa9eb323e241b28e295cac0680456d0a1338"]}', '', 1705321821, 1705321821, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (293, 28, 11, '', 0, 98, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705321840, 1705321840, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (294, 4, 11, '', 0, 98, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/99df42f181517ecde830cfba0d18f5bb48283de8">Merge pull request &#39;add screen&#39; (#97) from thinh into dev</a>', '', 1705321842, 1705321842, '99df42f181517ecde830cfba0d18f5bb48283de8', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (295, 29, 11, '', 0, 99, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["67a5311e4cf2834ef7fc0b767015be48d669696d"]}', '', 1705329303, 1705329303, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (296, 28, 11, '', 0, 99, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705329329, 1705329329, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (297, 4, 11, '', 0, 99, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/ddb1e1f9c86e1477341fd41cae9b0350d5807140">Merge pull request &#39;fix search all page&#39; (#98) from thinh into dev</a>', '', 1705329330, 1705329330, 'ddb1e1f9c86e1477341fd41cae9b0350d5807140', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (298, 0, 1, 'dungnguyn', 5662031, 100, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Phiên họp đã bắt đầu** to **Phiên họp đã bắt đầu{+ + tài khoản thư ký+}**', '', 1637218209, 1637218209, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (299, 0, 1, 'dungnguyn', 5662031, 100, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637218410, 1637218410, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (300, 0, 1, 'cognvn', 4583524, 100, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1637218432, 1637218432, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (301, 0, 1, 'dungnguyn', 5662031, 100, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Phiên họp đã bắt đầu + tài khoản thư ký** to **{+Error - +}Phiên họp đã bắt đầu + tài khoản thư ký**', '', 1637229783, 1637229783, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (302, 0, 1, 'dungnguyn', 5662031, 100, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @dungnguyn', '', 1637572212, 1637572212, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (303, 0, 1, 'dungnguyn', 5662031, 101, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637219038, 1637219038, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (304, 0, 1, 'dungnguyn', 5662031, 101, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1637219045, 1637219045, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (305, 0, 1, 'dungnguyn', 5662031, 102, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637219516, 1637219516, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (306, 0, 1, 'dungnguyn', 5662031, 102, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637219544, 1637219544, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (307, 0, 1, 'dungnguyn', 5662031, 103, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1637228052, 1637228052, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (308, 0, 1, 'dungnguyn', 5662031, 103, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Thành viên thuộc nhóm Ủy ban nhân dân mới được biểu quyết + phát biểu còn lại chỉ được  phát biểu** to **{+Error - +}Thành viên thuộc nhóm Ủy ban nhân dân mới được biểu quyết + phát biểu còn lại chỉ được  phát biểu{+.+}**', '', 1637229616, 1637229616, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (309, 0, 1, 'dungnguyn', 5662031, 103, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637229616, 1637229616, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (310, 0, 1, 'hoatrongkylovestory1999', 8539277, 103, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @hoatrongkylovestory1999', '', 1637725900, 1637725900, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (311, 0, 1, 'dungnguyn', 5662031, 104, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tuan1996qn', '', 1637228146, 1637228146, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (312, 0, 1, 'tuan1996qn', 4584372, 104, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn and unassigned @tuan1996qn', '', 1637229688, 1637229688, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (313, 0, 1, 'dungnguyn', 5662031, 104, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **App luôn bật màn hình.** to **{+Task - +}App luôn bật màn hình.**', '', 1637229741, 1637229741, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (314, 0, 1, 'dungnguyn', 5662031, 104, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637229741, 1637229741, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (315, 0, 1, 'tuan1996qn', 4584372, 104, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'made the issue confidential', '', 1637229770, 1637229770, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (316, 0, 1, 'gdtvietnam2019', 4584319, 104, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'made the issue visible to everyone', '', 1637229827, 1637229827, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (317, 0, 1, 'tiensybinhdinh', 10245630, 105, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Error - Trong phiên họpđể ngang màn hìnhĐT không load được DS phát biểu** to **Error - Trong phiên họp{+ +}để ngang màn hình{+ +}ĐT không load được DS phát biểu**', '', 1637288278, 1637288278, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (318, 0, 1, 'tiensybinhdinh', 10245630, 105, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637289416, 1637289416, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (319, 0, 1, 'tiensybinhdinh', 10245630, 105, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637289451, 1637289451, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (320, 0, 1, 'dungnguyn', 5662031, 105, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1637304192, 1637304192, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (321, 0, 1, 'dungnguyn', 5662031, 105, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @dungnguyn', '', 1637304505, 1637304505, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (322, 0, 1, 'tiensybinhdinh', 10245630, 106, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637289679, 1637289679, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (323, 0, 1, 'tiensybinhdinh', 10245630, 106, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Error - Bấm xem trước vấn đề phiên họp hiện ra thanh rỗng** to **Error - Bấm xem trước vấn đề phiên họp hiện ra thanh rỗng{+ + Bố cục vấn đề chưa thảo luận không hài hòa+}**', '', 1637289951, 1637289951, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (324, 0, 1, 'tiensybinhdinh', 10245630, 106, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637289951, 1637289951, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (325, 0, 1, 'dungnguyn', 5662031, 106, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1637291636, 1637291636, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (326, 0, 1, 'tiensybinhdinh', 10245630, 106, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Error - Bấm xem trước vấn đề phiên họp hiện ra thanh rỗng + Bố cục vấn đề chưa thảo luận không hài hòa** to **Error - Bấm xem trước vấn đề phiên họp hiện ra thanh rỗng {+(phiên họp chưa diễn ra) +}+ Bố cục vấn đề chưa thảo luận không hài hòa**', '', 1637291707, 1637291707, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (327, 0, 1, 'hoatrongkylovestory1999', 8539277, 106, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @hoatrongkylovestory1999', '', 1637567475, 1637567475, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (328, 0, 1, 'tiensybinhdinh', 10245630, 106, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Error - {-Bấm xem trước vấn đề phiên họp hiện ra thanh rỗng (phiên họp chưa diễn ra) + Bố cụ-}c vấn đề {-chưa -}thảo luận {-không hài hòa-}** to **Error - {+Chủ trì mở đượ+}c vấn đề thảo luận {+từ bên ngoài xem+}**', '', 1637573700, 1637573700, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (329, 0, 1, 'tiensybinhdinh', 10245630, 106, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637573700, 1637573700, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (330, 0, 1, 'tiensybinhdinh', 10245630, 106, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @tiensybinhdinh', '', 1637573729, 1637573729, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (331, 0, 1, 'hoatrongkylovestory1999', 8539277, 106, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @hoatrongkylovestory1999', '', 1637573999, 1637573999, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (332, 0, 1, 'dungnguyn', 5662031, 107, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1637290626, 1637290626, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (333, 0, 1, 'dungnguyn', 5662031, 107, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234 and unassigned @dungnguyn', '', 1637304342, 1637304342, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (334, 0, 1, 'datqn1234', 8343428, 107, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637315760, 1637315760, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (335, 0, 1, 'dungnguyn', 5662031, 108, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637295489, 1637295489, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (336, 0, 1, 'datqn1234', 8343428, 108, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637574878, 1637574878, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (337, 0, 1, 'dungnguyn', 5662031, 109, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637295642, 1637295642, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (338, 0, 1, 'datqn1234', 8343428, 109, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637564401, 1637564401, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (339, 0, 1, 'datqn1234', 8343428, 109, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn and unassigned @datqn1234', '', 1637574794, 1637574794, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (340, 0, 1, 'datqn1234', 8343428, 109, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @dungnguyn', '', 1637574798, 1637574798, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (341, 0, 1, 'tiensybinhdinh', 10245630, 110, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637306136, 1637306136, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (342, 0, 1, 'datqn1234', 8343428, 110, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1638426007, 1638426007, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (343, 0, 1, 'tiensybinhdinh', 10245630, 111, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1637305948, 1637305948, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (344, 0, 1, 'dungnguyn', 5662031, 111, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @dungnguyn', '', 1637546793, 1637546793, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (345, 0, 1, 'tiensybinhdinh', 10245630, 112, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637306375, 1637306375, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (346, 0, 1, 'gdtvietnam2019', 4584319, 112, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @gdtvietnam2019', '', 1637307440, 1637307440, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (347, 0, 1, 'gdtvietnam2019', 4584319, 112, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'unassigned @gdtvietnam2019', '', 1637307446, 1637307446, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (348, 0, 1, 'datqn1234', 8343428, 112, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637307500, 1637307500, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (349, 0, 1, 'datqn1234', 8343428, 112, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637315776, 1637315776, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (350, 0, 1, 'tiensybinhdinh', 10245630, 112, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Error - Tại phiên họp khung Xác nhận và Báo Vắng đè chen phần khác** to **Error - Tại phiên họp khung Xác nhận và Báo Vắng đè chen phần khác{+ + (XÁC NHẬN BẮT ĐẦU PHIÊN HỌP BỊ ĐÈ)+}**', '', 1637551295, 1637551295, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (351, 0, 1, 'datqn1234', 8343428, 112, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234 and unassigned @tiensybinhdinh', '', 1637554500, 1637554500, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (352, 0, 1, 'tiensybinhdinh', 10245630, 112, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637561821, 1637561821, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (353, 0, 1, 'tiensybinhdinh', 10245630, 112, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Error - Tại phiên họp khung {-Xác nhận và Báo Vắng đè chen phần khác + (XÁC NHẬN BẮT ĐẦU PHIÊN HỌP BỊ ĐÈ)-}** to **Error - Tại phiên họp khung {+ XÁC NHẬN BẮT ĐẦU PHIÊN HỌP BỊ ĐÈ + Hiển thị ủy quyền giúp từ thư ký cho chủ trì  lỗi+}**', '', 1637561928, 1637561928, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (354, 0, 1, 'datqn1234', 8343428, 112, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637574857, 1637574857, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (355, 0, 1, 'tiensybinhdinh', 10245630, 113, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637307914, 1637307914, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (356, 0, 1, 'datqn1234', 8343428, 113, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637307947, 1637307947, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (357, 0, 1, 'datqn1234', 8343428, 113, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637315796, 1637315796, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (358, 0, 1, 'tiensybinhdinh', 10245630, 113, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Error - Trong kho tài liệu hiễn thị lỗi rỗng (Phiên 18/11/2021 2) + Nên làm sao để biết được đó là phiên nào** to **Error - {+(+}Trong kho tài liệu hiễn thị lỗi rỗng (Phiên 18/11/2021 2) {+XONG)) +}+ {+(+}Nên làm sao để biết được đó là phiên nào{+ (XONG)) Bổ sung Hiển bị cắt chữ mất chữ+}**', '', 1637551601, 1637551601, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (359, 0, 1, 'tiensybinhdinh', 10245630, 113, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637551601, 1637551601, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (360, 0, 1, 'datqn1234', 8343428, 113, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234 and unassigned @tiensybinhdinh', '', 1637571019, 1637571019, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (361, 0, 1, 'datqn1234', 8343428, 113, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637575150, 1637575150, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (362, 0, 1, 'tiensybinhdinh', 10245630, 114, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637309503, 1637309503, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (363, 0, 1, 'datqn1234', 8343428, 114, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637309642, 1637309642, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (364, 0, 1, 'datqn1234', 8343428, 114, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637315808, 1637315808, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (365, 0, 1, 'tiensybinhdinh', 10245630, 114, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637566066, 1637566066, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (366, 0, 1, 'tiensybinhdinh', 10245630, 114, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637566183, 1637566183, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (367, 0, 1, 'dungnguyn', 5662031, 114, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234 and unassigned @tiensybinhdinh', '', 1637566193, 1637566193, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (368, 0, 1, 'datqn1234', 8343428, 114, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637574760, 1637574760, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (369, 0, 1, 'tiensybinhdinh', 10245630, 115, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637313449, 1637313449, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (370, 0, 1, 'tiensybinhdinh', 10245630, 115, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637313498, 1637313498, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (371, 0, 1, 'datqn1234', 8343428, 115, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637315818, 1637315818, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (372, 0, 1, 'datqn1234', 8343428, 115, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637574819, 1637574819, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (373, 0, 1, 'tiensybinhdinh', 10245630, 116, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637313718, 1637313718, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (374, 0, 1, 'datqn1234', 8343428, 116, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637315856, 1637315856, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (375, 0, 1, 'datqn1234', 8343428, 116, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637574776, 1637574776, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (376, 0, 1, 'dungnguyn', 5662031, 117, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637544051, 1637544051, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (377, 0, 1, 'datqn1234', 8343428, 117, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637574839, 1637574839, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (378, 0, 1, 'dungnguyn', 5662031, 118, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1637564793, 1637564793, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (379, 0, 1, 'hoatrongkylovestory1999', 8539277, 118, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @hoatrongkylovestory1999', '', 1637574037, 1637574037, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (380, 0, 1, 'tiensybinhdinh', 10245630, 119, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637550710, 1637550710, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (381, 0, 1, 'tiensybinhdinh', 10245630, 119, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **ERROR - Hiển thị vấn đề thảo luận trong phiên họp** to **ERROR - {+Chọn ý kiến thảo luận (Phiên họp vào từ thông báo) không được + +}Hiển thị vấn đề thảo luận trong phiên họp**', '', 1637550903, 1637550903, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (382, 0, 1, 'dungnguyn', 5662031, 119, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1637565704, 1637565704, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (383, 0, 1, 'dungnguyn', 5662031, 119, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @dungnguyn', '', 1638513156, 1638513156, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (384, 0, 1, 'dungnguyn', 5662031, 120, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637565966, 1637565966, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (385, 0, 1, 'gdtvietnam2019', 4584319, 120, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 15, 2021', '', 1639559567, 1639559567, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (386, 0, 1, 'gdtvietnam2019', 4584319, 120, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639559587, 1639559587, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (387, 0, 1, 'gdtvietnam2019', 4584319, 120, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'removed due date', '', 1639559591, 1639559591, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (388, 0, 1, 'gdtvietnam2019', 4584319, 120, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'locked this issue', '', 1639559648, 1639559648, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (389, 0, 1, 'gdtvietnam2019', 4584319, 120, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'unlocked this issue', '', 1639559779, 1639559779, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (390, 0, 1, 'dungnguyn', 5662031, 121, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1637567959, 1637567959, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (391, 0, 1, 'dungnguyn', 5662031, 121, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @dungnguyn', '', 1637829611, 1637829611, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (392, 0, 1, 'tiensybinhdinh', 10245630, 122, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637570967, 1637570967, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (393, 0, 1, 'tiensybinhdinh', 10245630, 122, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637570988, 1637570988, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (394, 0, 1, 'dungnguyn', 5662031, 122, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1638429841, 1638429841, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (395, 0, 1, 'dungnguyn', 5662031, 122, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1640224781, 1640224781, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (396, 0, 1, 'dungnguyn', 5662031, 123, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1641886518, 1641886518, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (397, 0, 1, 'datqn1234', 8343428, 124, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637640782, 1637640782, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (398, 0, 1, 'hoatrongkylovestory1999', 8539277, 124, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @datqn1234', '', 1638234592, 1638234592, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (399, 0, 1, 'hoatrongkylovestory1999', 8539277, 124, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @hoatrongkylovestory1999', '', 1638256285, 1638256285, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (400, 0, 1, 'datqn1234', 8343428, 125, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637640813, 1637640813, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (401, 0, 1, 'datqn1234', 8343428, 125, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1638176656, 1638176656, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (402, 0, 1, 'dungnguyn', 5662031, 126, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637716188, 1637716188, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (403, 0, 1, 'dungnguyn', 5662031, 126, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637716195, 1637716195, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (404, 0, 1, 'datqn1234', 8343428, 126, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1638176639, 1638176639, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (405, 0, 1, 'dungnguyn', 5662031, 127, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637744795, 1637744795, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (406, 0, 1, 'dungnguyn', 5662031, 127, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637744799, 1637744799, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (407, 0, 1, 'hoatrongkylovestory1999', 8539277, 127, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @datqn1234', '', 1637813781, 1637813781, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (408, 0, 1, 'hoatrongkylovestory1999', 8539277, 127, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @hoatrongkylovestory1999', '', 1637933809, 1637933809, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (409, 0, 1, 'dungnguyn', 5662031, 128, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638413583, 1638413583, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (410, 0, 1, 'dungnguyn', 5662031, 128, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'added [1 design](/gdt_hophanh/meet-react-native/-/issues/31/designs?version=302918)', '', 1638413614, 1638413614, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (411, 0, 1, 'dungnguyn', 5662031, 128, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'added [1 design](/gdt_hophanh/meet-react-native/-/issues/31/designs?version=302919)', '', 1638413626, 1638413626, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (412, 0, 1, 'dungnguyn', 5662031, 128, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638413745, 1638413745, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (413, 0, 1, 'dungnguyn', 5662031, 128, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638413790, 1638413790, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (414, 0, 1, 'dungnguyn', 5662031, 128, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1638413807, 1638413807, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (415, 0, 1, 'datqn1234', 8343428, 128, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1638518694, 1638518694, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (416, 0, 1, 'datqn1234', 8343428, 129, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1638425964, 1638425964, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (417, 0, 1, 'dungnguyn', 5662031, 129, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638425987, 1638425987, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (418, 0, 1, 'datqn1234', 8343428, 129, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1638518705, 1638518705, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (419, 0, 1, 'dungnguyn', 5662031, 130, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1638426579, 1638426579, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (420, 0, 1, 'dungnguyn', 5662031, 130, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638426664, 1638426664, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (421, 0, 1, 'dungnguyn', 5662031, 130, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @dungnguyn', '', 1638783504, 1638783504, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (422, 0, 1, 'dungnguyn', 5662031, 131, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1638427819, 1638427819, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (423, 0, 1, 'dungnguyn', 5662031, 131, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @dungnguyn', '', 1638427823, 1638427823, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (424, 0, 1, 'dungnguyn', 5662031, 131, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638427898, 1638427898, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (425, 0, 1, 'hoatrongkylovestory1999', 8539277, 131, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @hoatrongkylovestory1999', '', 1638520267, 1638520267, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (426, 0, 1, 'tiensybinhdinh', 10245630, 131, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'Chọn ý kiến khác không được báo xác nhận lỗi![348e539d416a8a34d37b](/uploads/d639d190d55379a27ce5dbd56749b881/348e539d416a8a34d37b.jpg)', '', 1638758866, 1638758866, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (427, 0, 1, 'hoatrongkylovestory1999', 8539277, 131, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'unassigned @tiensybinhdinh', '', 1638849160, 1638849160, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (428, 0, 1, 'hoatrongkylovestory1999', 8539277, 131, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh', '', 1638849164, 1638849164, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (429, 0, 1, 'dungnguyn', 5662031, 132, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1638428676, 1638428676, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (430, 0, 1, 'dungnguyn', 5662031, 132, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @dungnguyn', '', 1638513229, 1638513229, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (431, 0, 1, 'dungnguyn', 5662031, 133, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1638429893, 1638429893, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (432, 0, 1, 'dungnguyn', 5662031, 133, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @dungnguyn', '', 1638513237, 1638513237, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (433, 0, 1, 'dungnguyn', 5662031, 134, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1638499944, 1638499944, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (434, 0, 1, 'dungnguyn', 5662031, 134, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @dungnguyn', '', 1638513218, 1638513218, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (435, 0, 1, 'tiensybinhdinh', 10245630, 135, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638761034, 1638761034, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (436, 0, 1, 'hoatrongkylovestory1999', 8539277, 135, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'này do chuyển phiên họp từ trong api từ hoàn thành sang đăng kí lại nó lỗi chứ hk do người dùng', '', 1638838712, 1638838712, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (437, 0, 1, 'tiensybinhdinh', 10245630, 136, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638761386, 1638761386, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (438, 0, 1, 'dungnguyn', 5662031, 136, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1638783710, 1638783710, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (439, 0, 1, 'hoatrongkylovestory1999', 8539277, 136, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @datqn1234', '', 1638844381, 1638844381, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (440, 0, 1, 'hoatrongkylovestory1999', 8539277, 136, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'Xem lại hộ e', '', 1638850039, 1638850039, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (441, 0, 1, 'hoatrongkylovestory1999', 8539277, 136, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @hoatrongkylovestory1999', '', 1638850045, 1638850045, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (442, 0, 1, 'tiensybinhdinh', 10245630, 136, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638936153, 1638936153, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (443, 0, 1, 'tiensybinhdinh', 10245630, 137, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Tính năng - Giao diện thống kê ý kiến thảo luận (số thập phân quá dài)** to **Tính năng - {+ Load xem lại ý kiến bị chậm + +}Giao diện thống kê ý kiến thảo luận (số thập phân quá dài)**', '', 1638761653, 1638761653, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (444, 0, 1, 'tiensybinhdinh', 10245630, 137, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638761653, 1638761653, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (445, 0, 1, 'dungnguyn', 5662031, 137, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1638783762, 1638783762, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (446, 0, 1, 'hoatrongkylovestory1999', 8539277, 137, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @hoatrongkylovestory1999', '', 1638850208, 1638850208, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (447, 0, 1, 'dungnguyn', 5662031, 138, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1638784104, 1638784104, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (448, 0, 1, 'dungnguyn', 5662031, 138, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Tài khoản chủ trì, từ dashboard vào bắt đầu phiên họp vào th{-ằ-}ng diễn biến phiên họp, bấm quay lại vẫn còn thông báo bắt đầu phiên họp.** to **Tài khoản chủ trì, từ dashboard vào bắt đầu phiên họp vào th{+ẳ+}ng diễn biến phiên họp, bấm quay lại vẫn còn thông báo bắt đầu phiên họp.**', '', 1638784107, 1638784107, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (449, 0, 1, 'dungnguyn', 5662031, 138, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638784107, 1638784107, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (450, 0, 1, 'datqn1234', 8343428, 138, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1639032045, 1639032045, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (451, 0, 1, 'dungnguyn', 5662031, 139, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1638784265, 1638784265, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (452, 0, 1, 'datqn1234', 8343428, 139, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1639122774, 1639122774, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (453, 0, 1, 'dungnguyn', 5662031, 140, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1638784672, 1638784672, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (454, 0, 1, 'datqn1234', 8343428, 140, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1639032012, 1639032012, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (455, 0, 1, 'tiensybinhdinh', 10245630, 141, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638935461, 1638935461, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (456, 0, 1, 'dungnguyn', 5662031, 141, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1638944634, 1638944634, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (457, 0, 1, 'dungnguyn', 5662031, 142, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1638934836, 1638934836, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (458, 0, 1, 'dungnguyn', 5662031, 142, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638934900, 1638934900, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (459, 0, 1, 'tiensybinhdinh', 10245630, 143, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638936789, 1638936789, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (460, 0, 1, 'tiensybinhdinh', 10245630, 143, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638937471, 1638937471, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (461, 0, 1, 'hoatrongkylovestory1999', 8539277, 143, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1638945456, 1638945456, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (462, 0, 1, 'hoatrongkylovestory1999', 8539277, 143, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @hoatrongkylovestory1999', '', 1638947061, 1638947061, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (463, 0, 1, 'datqn1234', 8343428, 145, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639122095, 1639122095, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (464, 0, 1, 'datqn1234', 8343428, 145, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1639123298, 1639123298, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (465, 0, 1, 'dungnguyn', 5662031, 146, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639117779, 1639117779, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (466, 0, 1, 'dungnguyn', 5662031, 146, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639118590, 1639118590, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (467, 0, 1, 'dungnguyn', 5662031, 146, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639121131, 1639121131, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (468, 0, 1, 'tiensybinhdinh', 10245630, 146, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639560204, 1639560204, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (469, 0, 1, 'dungnguyn', 5662031, 146, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639618180, 1639618180, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (470, 0, 1, 'dungnguyn', 5662031, 147, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639117940, 1639117940, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (471, 0, 1, 'datqn1234', 8343428, 147, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639122176, 1639122176, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (472, 0, 1, 'dungnguyn', 5662031, 148, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639121144, 1639121144, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (473, 0, 1, 'hoatrongkylovestory1999', 8539277, 148, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @dungnguyn', '', 1641885093, 1641885093, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (474, 0, 1, 'dungnguyn', 5662031, 149, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639121165, 1639121165, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (475, 0, 1, 'dungnguyn', 5662031, 149, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @dungnguyn', '', 1641783874, 1641783874, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (476, 0, 1, 'dungnguyn', 5662031, 150, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639121172, 1639121172, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (477, 0, 1, 'datqn1234', 8343428, 151, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639122727, 1639122727, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (478, 0, 1, 'datqn1234', 8343428, 151, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639562671, 1639562671, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (479, 0, 1, 'gdtvietnam2019', 4584319, 151, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639620681, 1639620681, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (480, 0, 1, 'dungnguyn', 5662031, 152, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639121180, 1639121180, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (481, 0, 1, 'dungnguyn', 5662031, 153, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639121202, 1639121202, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (482, 0, 1, 'dungnguyn', 5662031, 154, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Kiểm tralại GRPC của vấn đề đối với tài khoản chủ trì và thư ký.** to **Kiểm tra{+ +}lại GRPC của vấn đề đối với tài khoản chủ trì và thư ký.**', '', 1639119956, 1639119956, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (483, 0, 1, 'dungnguyn', 5662031, 154, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639121218, 1639121218, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (484, 0, 1, 'dungnguyn', 5662031, 156, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639121238, 1639121238, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (485, 0, 1, 'dungnguyn', 5662031, 157, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639121252, 1639121252, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (486, 0, 1, 'hoatrongkylovestory1999', 8539277, 157, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'Tiêu đề vấn đề,tiêu đề nội dung có thể xem ở ''Test giao diện 10/12/2021''
Đã khóa xoay màn hình', '', 1639125239, 1639125239, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (487, 0, 1, 'dungnguyn', 5662031, 158, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639120571, 1639120571, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (488, 0, 1, 'dungnguyn', 5662031, 158, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639121260, 1639121260, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (489, 0, 1, 'dungnguyn', 5662031, 159, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639121268, 1639121268, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (490, 0, 1, 'dungnguyn', 5662031, 160, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639121002, 1639121002, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (491, 0, 1, 'dungnguyn', 5662031, 161, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639368365, 1639368365, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (492, 0, 1, 'dungnguyn', 5662031, 162, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639368440, 1639368440, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (493, 0, 1, 'tiensybinhdinh', 10245630, 162, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'Mất luôn chữ vào họp (Phiên họp của tớ ngày 16/12)', '', 1639624363, 1639624363, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (494, 0, 1, 'datqn1234', 8343428, 162, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639714934, 1639714934, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (495, 0, 1, 'datqn1234', 8343428, 163, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639445853, 1639445853, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (496, 0, 1, 'datqn1234', 8343428, 163, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639468459, 1639468459, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (497, 0, 1, 'dungnguyn', 5662031, 164, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639390291, 1639390291, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (498, 0, 1, 'datqn1234', 8343428, 165, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639445848, 1639445848, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (499, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639557210, 1639557210, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (500, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Đăng ký phát biểu{-, chỉ định phát biểu cho khách mời-}.** to **Đăng ký phát biểu.**', '', 1639561237, 1639561237, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (501, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639561237, 1639561237, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (502, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639561822, 1639561822, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (503, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639562790, 1639562790, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (504, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639563030, 1639563030, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (505, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639563061, 1639563061, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (506, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639563406, 1639563406, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (507, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639618206, 1639618206, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (508, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639627164, 1639627164, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (509, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639627299, 1639627299, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (510, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Chỉ định phát biểu cho khách mời.** as completed', '', 1639627312, 1639627312, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (511, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Chỉ định phát biểu cho khách mời.** as incomplete', '', 1639627315, 1639627315, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (512, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639628745, 1639628745, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (513, 0, 1, 'cognvn', 4583524, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đăng ký phát biểu cho khách mời.** as completed', '', 1639628761, 1639628761, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (582, 0, 1, 'gdtvietnam2019', 4584319, 171, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639649811, 1639649811, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (514, 0, 1, 'cognvn', 4583524, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đăng ký phát biểu cho khách mời.** as incomplete', '', 1639628763, 1639628763, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (515, 0, 1, 'cognvn', 4583524, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đăng ký phát biểu cho khách mời.** as completed', '', 1639628765, 1639628765, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (516, 0, 1, 'cognvn', 4583524, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đăng ký phát biểu cho khách mời.** as incomplete', '', 1639628768, 1639628768, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (517, 0, 1, 'cognvn', 4583524, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Hiển thị thông báo cán bộ đã hoàn thành thu âm cho tất cả mọi người.** as completed', '', 1639628931, 1639628931, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (518, 0, 1, 'cognvn', 4583524, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Hiển thị thông báo cán bộ đã hoàn thành thu âm cho tất cả mọi người.** as incomplete', '', 1639628937, 1639628937, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (519, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đăng ký phát biểu cho khách mời.** as completed', '', 1639630637, 1639630637, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (520, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đăng ký phát biểu cho khách mời.** as incomplete', '', 1639630638, 1639630638, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (521, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1640080497, 1640080497, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (522, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Hiển thị thông báo cán bộ đã hoàn thành thu âm cho tất cả mọi người.** as completed', '', 1640330740, 1640330740, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (523, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1640331864, 1640331864, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (524, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Bắt đầu vấn đề, nếu còn ai đăng ký phát biểu thì hiển thị thông báo có muốn dừng phát biểu không.(Không cần làm đã hỏi anh Vũ).** as completed', '', 1640331880, 1640331880, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (525, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đổi api hủy đăng ký phát biểu từ hai thành một.** as completed', '', 1640332914, 1640332914, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (526, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Cảnh báo của đăng ký phát biểu vào từ contentmeeting bị đè.** as completed', '', 1640535346, 1640535346, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (527, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Cảnh báo của đăng ký phát biểu vào từ contentmeeting bị đè.** as incomplete', '', 1640535348, 1640535348, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (528, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thêm chủ trì,thư ký được dừng đăng ký phát biểu của cán bộ.** as completed', '', 1640653764, 1640653764, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (529, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1640653853, 1640653853, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (530, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thêm lable để thể hiện đó là đăng ký phát biểu được chỉ định.** as completed', '', 1640653855, 1640653855, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (531, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Cảnh báo của đăng ký phát biểu vào từ contentmeeting bị đè.** as completed', '', 1640657446, 1640657446, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (532, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sửa nội dung bị tràn trong đăng ký phát biểu.** as completed', '', 1640658996, 1640658996, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (533, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thống kê đăng ký phát biểu chuyển thành biểu đồ tròn.** as completed', '', 1640682935, 1640682935, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (534, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Chỉ định phát biểu cho khách mời.** as completed', '', 1640830516, 1640830516, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (535, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đăng ký phát biểu cho khách mời.** as completed', '', 1640830517, 1640830517, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (536, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thứ tự danh sách đăng ký phát biểu là đang phát biểu, chờ, xong.** as completed', '', 1640830523, 1640830523, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (537, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đăng ký phát biểu cho khách mời.** as incomplete', '', 1640832133, 1640832133, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (538, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Chỉ định phát biểu cho khách mời.** as incomplete', '', 1640832135, 1640832135, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (539, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đăng ký phát biểu cho khách mời.** as completed', '', 1641195275, 1641195275, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (540, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Chỉ định phát biểu cho khách mời.** as completed', '', 1641204157, 1641204157, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (541, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1641257385, 1641257385, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (542, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Hiển thị cho dù cán bộ ở bất kì vị trí nào trong nội dung phiên họp.** as completed', '', 1641262451, 1641262451, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (543, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1642154382, 1642154382, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (544, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1642154610, 1642154610, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (545, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Hiển thị trên tất cả các nội dung thông báo hoặc ghi âm phát biểu.** as completed', '', 1643102484, 1643102484, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (546, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sửa biểu đồ đăng ký phát biểu (màu của biểu đồ).** as completed', '', 1643102487, 1643102487, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (547, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sửa biểu đồ đăng ký phát biểu (màu của biểu đồ).** as incomplete', '', 1643102490, 1643102490, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (548, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sửa biểu đồ đăng ký phát biểu (màu của biểu đồ).** as completed', '', 1643102494, 1643102494, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (549, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639557253, 1639557253, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (550, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639629216, 1639629216, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (551, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639705563, 1639705563, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (552, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639706873, 1639706873, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (553, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639712750, 1639712750, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (554, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thông báo chỉ trả về tên của phiên họp, tên của phiếu lấy ý kiến.** as completed', '', 1639712820, 1639712820, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (555, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thông báo chỉ trả về tên của phiên họp, tên của phiếu lấy ý kiến.** as incomplete', '', 1639712822, 1639712822, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (556, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639712837, 1639712837, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (557, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639734231, 1639734231, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (558, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Trong thông báo, thêm loại ủy quyền duyệt.** as completed', '', 1639985863, 1639985863, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (559, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thông báo chỉ trả về tên của phiên họp, tên của phiếu lấy ý kiến.** as completed', '', 1639985865, 1639985865, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (560, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Hiển thị được thông báo trên app lúc mở app.** as completed', '', 1639985867, 1639985867, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (561, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Click vào chi tiết của từng thông báo.** as completed', '', 1639985868, 1639985868, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (562, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Phiên họp được duyệt cũng sẽ gửi thông báo về cho thành phần tham dự.** as completed', '', 1639985871, 1639985871, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (563, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thông baó của bà thư ký, kiểm tra lại.** as completed', '', 1639985874, 1639985874, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (564, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1640136484, 1640136484, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (565, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Nhận thông báo fetch lại các compent.** as completed', '', 1640137071, 1640137071, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (566, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Kiểm tra thông báo lần đầu tiên.** as completed', '', 1641289184, 1641289184, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (567, 0, 1, 'dungnguyn', 5662031, 168, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639557288, 1639557288, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (568, 0, 1, 'datqn1234', 8343428, 168, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639560113, 1639560113, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (569, 0, 1, 'datqn1234', 8343428, 168, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639560124, 1639560124, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (570, 0, 1, 'datqn1234', 8343428, 168, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639560629, 1639560629, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (571, 0, 1, 'datqn1234', 8343428, 168, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'removed due date', '', 1639561878, 1639561878, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (572, 0, 1, 'datqn1234', 8343428, 168, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639714979, 1639714979, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (573, 0, 1, 'datqn1234', 8343428, 168, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **thay đổi message thông báo lỗi khi bắt đầu phiên họp không có nội dung** as completed', '', 1639714981, 1639714981, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (574, 0, 1, 'dungnguyn', 5662031, 169, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639557374, 1639557374, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (575, 0, 1, 'dungnguyn', 5662031, 170, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **{-Thống kê trong đăng ký phát biểu mất tên cán bộ-}.** to **{+Hiển thị thông báo nội dung nào được bắt đầu họp cho tất cả mọi người+}.**', '', 1639615215, 1639615215, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (576, 0, 1, 'dungnguyn', 5662031, 170, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639615215, 1639615215, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (577, 0, 1, 'dungnguyn', 5662031, 170, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639615220, 1639615220, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (578, 0, 1, 'dungnguyn', 5662031, 170, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639615267, 1639615267, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (579, 0, 1, 'dungnguyn', 5662031, 171, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639557480, 1639557480, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (580, 0, 1, 'dungnguyn', 5662031, 171, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639557695, 1639557695, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (581, 0, 1, 'datqn1234', 8343428, 171, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639560788, 1639560788, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (583, 0, 1, 'dungnguyn', 5662031, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639557788, 1639557788, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (584, 0, 1, 'dungnguyn', 5662031, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639558299, 1639558299, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (585, 0, 1, 'dungnguyn', 5662031, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639560290, 1639560290, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (586, 0, 1, 'dungnguyn', 5662031, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639561269, 1639561269, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (587, 0, 1, 'dungnguyn', 5662031, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639563192, 1639563192, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (588, 0, 1, 'dungnguyn', 5662031, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639733206, 1639733206, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (589, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Tiêu đề của vấn đề.** as completed', '', 1639733223, 1639733223, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (590, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Tiêu đề của vấn đề.** as incomplete', '', 1639733225, 1639733225, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (591, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Tiêu đề của vấn đề.** as completed', '', 1639733281, 1639733281, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (592, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Làm sao để xem hết tên của vấn đề.** as completed', '', 1639733287, 1639733287, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (593, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Text trong phần thêm ý kiến khác mặc định màu đen.** as completed', '', 1639733289, 1639733289, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (594, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Khi có cán bộ thêm ý kiến khác, thì ý kiến đó phải được cập nhật lại cho những cán bộ khác đều thấy.** as completed', '', 1639733292, 1639733292, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (595, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đồng bộ thông báo hoàn thành trong vấn đề, cho tên vấn đề ngắn lại khi hiển thị trong thông báo.** as completed', '', 1639733295, 1639733295, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (596, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Kết quả biểu quyết chú thích phải nằm gần cái biểu đồ để dễ biết.** as completed', '', 1639733302, 1639733302, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (597, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Cho chủ trì không cần chọn ý kiến biểu quyết vẫn có thể hoàn thành.** as completed', '', 1639733306, 1639733306, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (598, 0, 1, 'dungnguyn', 5662031, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639734382, 1639734382, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (599, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Vấn đề vào lần đầu thì xuất hiện skeleton, những lần sau không xuất hiện skeleton nhưng vẫn cập nhật dữ liệu.** as completed', '', 1639877611, 1639877611, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (600, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đổi nội dung thông báo chọn của cán bộ trong vấn đề.** as completed', '', 1639878665, 1639878665, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (601, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Chủ trì vào vấn đề hoàn thành trong phiên họp đã kết thúc không xem được biểu quyết.** as completed', '', 1639879156, 1639879156, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (602, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thư ký vào vấn đề chưa hoàn thành thì không được hiển thị kết quả biểu quyết.** as completed', '', 1639886159, 1639886159, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (603, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Hiển thị thông báo khi một vấn đề đang mở thì không mở vấn đề khác.** as completed', '', 1639886166, 1639886166, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (604, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Vấn đề vào lần đầu thì xuất hiện skeleton, những lần sau không xuất hiện skeleton nhưng vẫn cập nhật dữ liệu.** as incomplete', '', 1639960427, 1639960427, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (605, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thêm một component khi vấn đề ở trạng thái chưa thảo luận, cả chủ trì, cán bộ và thư ký đều hiển thị thông tin chung.** as completed', '', 1639968561, 1639968561, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (606, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Vấn đề vào lần đầu thì xuất hiện skeleton, những lần sau không xuất hiện skeleton nhưng vẫn cập nhật dữ liệu.** as completed', '', 1641289294, 1641289294, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (607, 0, 1, 'dungnguyn', 5662031, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639559574, 1639559574, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (608, 0, 1, 'datqn1234', 8343428, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639561843, 1639561843, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (609, 0, 1, 'tiensybinhdinh', 10245630, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639708232, 1639708232, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (610, 0, 1, 'datqn1234', 8343428, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639713704, 1639713704, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (611, 0, 1, 'datqn1234', 8343428, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639713723, 1639713723, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (612, 0, 1, 'datqn1234', 8343428, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sau khi nhấn tới hoặc quay lại tên tháng load lâu** as completed', '', 1639713728, 1639713728, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (613, 0, 1, 'datqn1234', 8343428, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sau khi nhấn tới hoặc quay lại tên tháng load lâu** as incomplete', '', 1639713730, 1639713730, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (614, 0, 1, 'datqn1234', 8343428, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639713839, 1639713839, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (615, 0, 1, 'datqn1234', 8343428, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639713847, 1639713847, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (616, 0, 1, 'tiensybinhdinh', 10245630, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639713925, 1639713925, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (617, 0, 1, 'datqn1234', 8343428, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Lịch Tháng hiển thị ngày bên dưới kéo bị đè - Hình minh họa (17/12/2021)![loi_2](/uploads/258c4372aad606e3e2bd6d82a1a6f5cf/loi_2.PNG)** as completed', '', 1639714480, 1639714480, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (618, 0, 1, 'datqn1234', 8343428, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639732293, 1639732293, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (619, 0, 1, 'dungnguyn', 5662031, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639734457, 1639734457, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (620, 0, 1, 'hoatrongkylovestory1999', 8539277, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @datqn1234', '', 1640135067, 1640135067, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (621, 0, 1, 'dungnguyn', 5662031, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1640158109, 1640158109, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (622, 0, 1, 'hoatrongkylovestory1999', 8539277, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thêm reload và refresh.** as completed', '', 1640234366, 1640234366, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (623, 0, 1, 'hoatrongkylovestory1999', 8539277, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sửa màu xanh nhạt đi một chút xíu.** as completed', '', 1640234367, 1640234367, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (624, 0, 1, 'hoatrongkylovestory1999', 8539277, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Lịch hôm nay dữ liệu trống (Thông báo đưa vào giữa) (17/12/2021)** as completed', '', 1640252409, 1640252409, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (625, 0, 1, 'hoatrongkylovestory1999', 8539277, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sau khi nhấn tới hoặc quay lại tên tháng load lâu** as completed', '', 1640661130, 1640661130, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (650, 0, 1, 'dungnguyn', 5662031, 182, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639561861, 1639561861, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (626, 0, 1, 'hoatrongkylovestory1999', 8539277, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Lọc những tháng nào chỉ hiện thị lịch những tháng đó** as completed', '', 1640661132, 1640661132, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (627, 0, 1, 'hoatrongkylovestory1999', 8539277, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sau khi lọc phiên họp 2 tháng , rồi nhấn trên lịch 2-3 tháng nhấn hôm nay không load lại danh sách phiên họp** as completed', '', 1640661138, 1640661138, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (628, 0, 1, 'hoatrongkylovestory1999', 8539277, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Lọc lịch tháng (Từ ngày đến ngày không có ngày hôm nay thì nên ẩn đến ngày hôm nay) (17/12/2021)** as completed', '', 1640661150, 1640661150, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (629, 0, 1, 'hoatrongkylovestory1999', 8539277, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Lỗi rerender (loading lại nhiều lần) (17/12/2021)** as completed', '', 1641179712, 1641179712, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (630, 0, 1, 'hoatrongkylovestory1999', 8539277, 174, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Làm sao để xem hết tên của vấn đề.** to **Làm sao để xem hết tên của vấn {+đề,Tiêu đề của vấn +}đề.**', '', 1639560159, 1639560159, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (631, 0, 1, 'hoatrongkylovestory1999', 8539277, 174, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639560159, 1639560159, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (632, 0, 1, 'hoatrongkylovestory1999', 8539277, 174, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639560581, 1639560581, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (633, 0, 1, 'gdtvietnam2019', 4584319, 174, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639561375, 1639561375, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (634, 0, 1, 'hoatrongkylovestory1999', 8539277, 175, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639560596, 1639560596, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (635, 0, 1, 'gdtvietnam2019', 4584319, 175, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639561381, 1639561381, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (636, 0, 1, 'hoatrongkylovestory1999', 8539277, 176, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639560614, 1639560614, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (637, 0, 1, 'gdtvietnam2019', 4584319, 176, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639562011, 1639562011, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (638, 0, 1, 'hoatrongkylovestory1999', 8539277, 177, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639560659, 1639560659, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (639, 0, 1, 'gdtvietnam2019', 4584319, 177, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639562052, 1639562052, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (640, 0, 1, 'hoatrongkylovestory1999', 8539277, 177, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639722062, 1639722062, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (641, 0, 1, 'hoatrongkylovestory1999', 8539277, 178, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639560698, 1639560698, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (642, 0, 1, 'gdtvietnam2019', 4584319, 178, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639562078, 1639562078, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (643, 0, 1, 'hoatrongkylovestory1999', 8539277, 179, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639560564, 1639560564, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (644, 0, 1, 'gdtvietnam2019', 4584319, 179, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639562087, 1639562087, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (645, 0, 1, 'datqn1234', 8343428, 180, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639561919, 1639561919, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (646, 0, 1, 'gdtvietnam2019', 4584319, 180, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639562096, 1639562096, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (647, 0, 1, 'hoatrongkylovestory1999', 8539277, 181, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639560834, 1639560834, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (648, 0, 1, 'gdtvietnam2019', 4584319, 181, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639562115, 1639562115, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (649, 0, 1, 'hoatrongkylovestory1999', 8539277, 181, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 22, 2021', '', 1640147413, 1640147413, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (651, 0, 1, 'dungnguyn', 5662031, 182, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639562729, 1639562729, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (652, 0, 1, 'dungnguyn', 5662031, 182, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639562988, 1639562988, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (653, 0, 1, 'dungnguyn', 5662031, 182, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639629424, 1639629424, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (654, 0, 1, 'dungnguyn', 5662031, 182, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Khi hoàn thành nội dung, nếu vấn đề còn mở hoặc có cán bộ đang phát biểu thì hiển thị thông báo hỏi có muốn hoàn thành nội dung không, nếu hoàn thành thì tự động đóng vấn đề và hoàn thành phát biểu.** as completed', '', 1640326373, 1640326373, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (655, 0, 1, 'dungnguyn', 5662031, 182, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Hiển thị thông báo nội dung nào được bắt đầu họp cho tất cả mọi người.** as completed', '', 1640326376, 1640326376, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (656, 0, 1, 'dungnguyn', 5662031, 182, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thông báo hoàn thành nội dung phải được hiển thị trên tất cả modal.** as completed', '', 1641455819, 1641455819, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (657, 0, 1, 'datqn1234', 8343428, 183, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639562452, 1639562452, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (658, 0, 1, 'gdtvietnam2019', 4584319, 183, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639620659, 1639620659, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (659, 0, 1, 'gdtvietnam2019', 4584319, 183, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'made the issue confidential', '', 1639648293, 1639648293, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (660, 0, 1, 'gdtvietnam2019', 4584319, 183, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'made the issue visible to everyone', '', 1639648302, 1639648302, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (661, 0, 1, 'datqn1234', 8343428, 184, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639562501, 1639562501, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (662, 0, 1, 'gdtvietnam2019', 4584319, 184, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639620672, 1639620672, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (663, 0, 1, 'datqn1234', 8343428, 185, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639562512, 1639562512, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (664, 0, 1, 'gdtvietnam2019', 4584319, 185, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639620687, 1639620687, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (665, 0, 1, 'datqn1234', 8343428, 186, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639563277, 1639563277, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (666, 0, 1, 'gdtvietnam2019', 4584319, 186, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639620696, 1639620696, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (667, 0, 1, 'dungnguyn', 5662031, 187, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639615312, 1639615312, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (668, 0, 1, 'dungnguyn', 5662031, 187, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639615318, 1639615318, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (669, 0, 1, 'dungnguyn', 5662031, 188, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639615352, 1639615352, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (670, 0, 1, 'dungnguyn', 5662031, 188, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639615355, 1639615355, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (671, 0, 1, 'dungnguyn', 5662031, 188, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Thông báo hoàn thành nội dung phải {-được-} hi{-ể-}n {-thị trên tất cả modal-}.** to **Thông báo hoàn thành nội dung phải {+tắt hết những cái đang+} hi{+ệ+}n {+rồi chuyển sang nội dung mới+}.**', '', 1639619626, 1639619626, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (672, 0, 1, 'dungnguyn', 5662031, 188, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639619626, 1639619626, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (673, 0, 1, 'dungnguyn', 5662031, 188, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Thông báo hoàn thành nội dung phải {-tắt hết những cái đang hiện rồi chuyển sang nội dung mới-}.** to **Thông báo hoàn thành nội dung phải {+hiển thị trên tất cả modal+}.**', '', 1639622040, 1639622040, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (674, 0, 1, 'hoatrongkylovestory1999', 8539277, 189, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639622924, 1639622924, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (675, 0, 1, 'hoatrongkylovestory1999', 8539277, 189, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Vấnđề có hoặc không thời gian** to **Vấn{+ +}đề có hoặc không thời gian**', '', 1639649146, 1639649146, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (676, 0, 1, 'hoatrongkylovestory1999', 8539277, 189, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639649146, 1639649146, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (677, 0, 1, 'gdtvietnam2019', 4584319, 189, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639649779, 1639649779, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (678, 0, 1, 'hoatrongkylovestory1999', 8539277, 189, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 18, 2021', '', 1639722022, 1639722022, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (679, 0, 1, 'hoatrongkylovestory1999', 8539277, 189, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 20, 2021', '', 1639729075, 1639729075, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (680, 0, 1, 'hoatrongkylovestory1999', 8539277, 190, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1641461416, 1641461416, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (681, 0, 1, 'dungnguyn', 5662031, 191, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639628884, 1639628884, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (682, 0, 1, 'dungnguyn', 5662031, 191, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639628951, 1639628951, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (683, 0, 1, 'dungnguyn', 5662031, 191, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1640653802, 1640653802, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (684, 0, 1, 'dungnguyn', 5662031, 191, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đổi hai api báo vắng một cái là update thành phần tham dự một cái là PhienHop/DiThay thành mộ api.** as completed', '', 1640749147, 1640749147, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (685, 0, 1, 'dungnguyn', 5662031, 191, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1640749158, 1640749158, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (686, 0, 1, 'dungnguyn', 5662031, 191, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Báo vắng có người đi thay và không có người đi thay nếu người đó đã đăng ký phát biểu rồi thì phải tự động xóa hết đăng ký phát biểu.** as completed', '', 1640759668, 1640759668, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (687, 0, 1, 'datqn1234', 8343428, 192, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639648926, 1639648926, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (688, 0, 1, 'gdtvietnam2019', 4584319, 192, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639649833, 1639649833, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (689, 0, 1, 'datqn1234', 8343428, 193, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639648988, 1639648988, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (690, 0, 1, 'gdtvietnam2019', 4584319, 193, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639649845, 1639649845, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (691, 0, 1, 'hoatrongkylovestory1999', 8539277, 194, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639649079, 1639649079, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (692, 0, 1, 'gdtvietnam2019', 4584319, 194, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639649853, 1639649853, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (693, 0, 1, 'dungnguyn', 5662031, 195, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tuan1996qn', '', 1639709459, 1639709459, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (694, 0, 1, 'datqn1234', 8343428, 196, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639714376, 1639714376, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (695, 0, 1, 'gdtvietnam2019', 4584319, 196, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639983003, 1639983003, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (696, 0, 1, 'datqn1234', 8343428, 197, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639714404, 1639714404, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (697, 0, 1, 'gdtvietnam2019', 4584319, 197, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639981718, 1639981718, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (698, 0, 1, 'datqn1234', 8343428, 198, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639714556, 1639714556, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (699, 0, 1, 'gdtvietnam2019', 4584319, 198, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639981658, 1639981658, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (700, 0, 1, 'dungnguyn', 5662031, 199, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1641272254, 1641272254, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (701, 0, 1, 'dungnguyn', 5662031, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639730418, 1639730418, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (702, 0, 1, 'dungnguyn', 5662031, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Giảm spinner trong trang chủ.** as completed', '', 1639730422, 1639730422, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (703, 0, 1, 'dungnguyn', 5662031, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Giảm spinner trong trang chủ.** as incomplete', '', 1639730433, 1639730433, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (704, 0, 1, 'dungnguyn', 5662031, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639730737, 1639730737, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (705, 0, 1, 'dungnguyn', 5662031, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Giảm spinner trong trang chủ.** as completed', '', 1639730753, 1639730753, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (706, 0, 1, 'dungnguyn', 5662031, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Giảm spinner trong trang chủ.** as incomplete', '', 1639730757, 1639730757, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (707, 0, 1, 'dungnguyn', 5662031, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639730992, 1639730992, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (708, 0, 1, 'dungnguyn', 5662031, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639731158, 1639731158, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (709, 0, 1, 'datqn1234', 8343428, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Trạng thái trong phiên họp của phiên duyệt một là bỏ hai là đổi.** as completed', '', 1640048429, 1640048429, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (710, 0, 1, 'datqn1234', 8343428, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Cho chữ tham gia từ chối nhỏ lại bằng font chữ header của dashboard.** as completed', '', 1640048433, 1640048433, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (711, 0, 1, 'dungnguyn', 5662031, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1640157958, 1640157958, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (712, 0, 1, 'hoatrongkylovestory1999', 8539277, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @datqn1234', '', 1641349249, 1641349249, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (713, 0, 1, 'hoatrongkylovestory1999', 8539277, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sửa nút di chuyển, khi nào kéo danh sách phiên họp xuống dưới mới hiện cái nút ra, còn lăn lên trên thì không có nút đó.** as completed', '', 1641350971, 1641350971, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (714, 0, 1, 'hoatrongkylovestory1999', 8539277, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Giảm spinner trong trang chủ.** as completed', '', 1641351051, 1641351051, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (715, 0, 1, 'dungnguyn', 5662031, 201, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639731177, 1639731177, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (716, 0, 1, 'datqn1234', 8343428, 201, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639732233, 1639732233, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (717, 0, 1, 'dungnguyn', 5662031, 202, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639734295, 1639734295, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (718, 0, 1, 'dungnguyn', 5662031, 203, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639733789, 1639733789, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (719, 0, 1, 'hoatrongkylovestory1999', 8539277, 204, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639971709, 1639971709, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (720, 0, 1, 'hoatrongkylovestory1999', 8539277, 204, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 21, 2021', '', 1640081222, 1640081222, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (721, 0, 1, 'hoatrongkylovestory1999', 8539277, 204, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 22, 2021', '', 1640081243, 1640081243, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (722, 0, 1, 'datqn1234', 8343428, 205, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639989402, 1639989402, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (723, 0, 1, 'datqn1234', 8343428, 206, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639989400, 1639989400, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (724, 0, 1, 'gdtvietnam2019', 4584319, 206, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 21, 2021', '', 1640081309, 1640081309, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (725, 0, 1, 'datqn1234', 8343428, 207, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1640074413, 1640074413, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (726, 0, 1, 'datqn1234', 8343428, 207, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1640074632, 1640074632, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (727, 0, 1, 'hoatrongkylovestory1999', 8539277, 207, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @datqn1234', '', 1641356687, 1641356687, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (728, 0, 1, 'hoatrongkylovestory1999', 8539277, 207, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sửa search** as completed', '', 1641373139, 1641373139, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (729, 0, 1, 'hoatrongkylovestory1999', 8539277, 207, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Load thêm bị lỗi key** as completed', '', 1641436451, 1641436451, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (730, 0, 1, 'dungnguyn', 5662031, 208, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1641886473, 1641886473, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (731, 0, 1, 'dungnguyn', 5662031, 208, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1641886509, 1641886509, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (732, 0, 1, 'dungnguyn', 5662031, 208, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @dungnguyn', '', 1641886687, 1641886687, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (733, 0, 1, 'hoatrongkylovestory1999', 8539277, 208, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thêm link pdf.** as completed', '', 1642140879, 1642140879, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (734, 0, 1, 'hoatrongkylovestory1999', 8539277, 210, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1640252496, 1640252496, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (735, 0, 1, 'hoatrongkylovestory1999', 8539277, 210, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 23, 2021', '', 1640252502, 1640252502, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (736, 0, 1, 'hoatrongkylovestory1999', 8539277, 211, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1640252465, 1640252465, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (737, 0, 1, 'hoatrongkylovestory1999', 8539277, 211, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 23, 2021', '', 1640252473, 1640252473, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (738, 0, 1, 'hoatrongkylovestory1999', 8539277, 212, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1641461363, 1641461363, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (739, 0, 1, 'hoatrongkylovestory1999', 8539277, 213, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1642142012, 1642142012, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (740, 0, 1, 'hoatrongkylovestory1999', 8539277, 214, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1643166368, 1643166368, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (741, 0, 1, 'hoatrongkylovestory1999', 8539277, 214, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'created branch [`117-loading-trang-home-danh-sach-phien-b-che`](/gdt_hophanh/meet-react-native/-/compare/dev...117-loading-trang-home-danh-sach-phien-b-che) to address this issue', '', 1644282243, 1644282243, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (742, 29, 11, '', 0, 215, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["122c6ba57907664a26aac6393e0880e02d8d2610"]}', '', 1705369966, 1705369966, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (743, 28, 11, '', 0, 215, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705369982, 1705369982, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (744, 4, 11, '', 0, 215, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/c94f86451988d6cf98b90a9f0e74a88515b66f9a">Merge pull request &#39;change login&#39; (#99) from thinh into dev</a>', '', 1705369982, 1705369982, 'c94f86451988d6cf98b90a9f0e74a88515b66f9a', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (745, 29, 11, '', 0, 216, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["b4fa71025f54e4fa94ba095169119fa40b06d27c"]}', '', 1705389571, 1705389571, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (746, 28, 11, '', 0, 216, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705389625, 1705389625, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (747, 4, 11, '', 0, 216, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2">Merge pull request &#39;fix datatable&#39; (#100) from thinh into dev</a>', '', 1705389625, 1705389625, '2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (748, 29, 11, '', 0, 217, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6"]}', '', 1705393321, 1705393321, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (749, 28, 11, '', 0, 217, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705393335, 1705393335, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (752, 28, 11, '', 0, 218, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705394331, 1705394331, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (755, 28, 11, '', 0, 219, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705395799, 1705395799, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (759, 4, 11, '', 0, 220, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/645b7c2b051a49e16e1ba1d5dd9af1918230b2c2">Merge pull request &#39;fix change page&#39; (#104) from thinh into dev</a>', '', 1705396642, 1705396642, '645b7c2b051a49e16e1ba1d5dd9af1918230b2c2', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (760, 29, 11, '', 0, 221, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["3b268198277e3decd8a39c797a71e1379fc01f38","340a9c47ca2f986c9fc50a1471a84a66c36eec01","5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f"]}', '', 1705396844, 1705396844, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (761, 28, 11, '', 0, 221, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705396862, 1705396862, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (763, 29, 11, '', 0, 222, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","7650c10f1a92cffc96d99f4f9923dc49763c69c7"]}', '', 1705397253, 1705397253, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (764, 28, 11, '', 0, 222, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705397268, 1705397268, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (750, 4, 11, '', 0, 217, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/53d1f72211fde4e1c022b04df50724ed8080ad37">Merge pull request &#39;fix odata QLLD_HoSo&#39; (#101) from thinh into dev</a>', '', 1705393335, 1705393335, '53d1f72211fde4e1c022b04df50724ed8080ad37', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (751, 29, 11, '', 0, 218, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["a2d31a4f4ea5f3e8278eb7a3f446302831381ddb"]}', '', 1705394271, 1705394271, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (753, 4, 11, '', 0, 218, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/8eece73dc814f23997466b778c570a25145163df">Merge pull request &#39;fix hidden change year hoso&#39; (#102) from thinh into dev</a>', '', 1705394332, 1705394332, '8eece73dc814f23997466b778c570a25145163df', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (754, 29, 11, '', 0, 219, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["65e6485ae4926938a51adf2f31db4aeb6d7e7e41"]}', '', 1705395692, 1705395692, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (756, 4, 11, '', 0, 219, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/cf4715110a114ad27e4779af22c58cfb819d78c9">Merge pull request &#39;fix phan quyen&#39; (#103) from thinh into dev</a>', '', 1705395801, 1705395801, 'cf4715110a114ad27e4779af22c58cfb819d78c9', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (757, 29, 11, '', 0, 220, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["6b059fd277af151a3e10327be3a8be3e4ba084a2"]}', '', 1705396610, 1705396610, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (758, 28, 11, '', 0, 220, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705396640, 1705396640, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (762, 4, 11, '', 0, 221, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/d268ef005af0e0adcc49b9b4100f0479116d31d4">Merge pull request &#39;thinh&#39; (#105) from thinh into dev</a>', '', 1705396865, 1705396865, 'd268ef005af0e0adcc49b9b4100f0479116d31d4', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (765, 4, 11, '', 0, 222, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/f0f201ffadd72a9c710659316fad0c14ed6d69c1">Merge pull request &#39;thinh&#39; (#106) from thinh into dev</a>', '', 1705397270, 1705397270, 'f0f201ffadd72a9c710659316fad0c14ed6d69c1', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (766, 29, 11, '', 0, 223, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["b51a2a2db8b6c480c487c33ce3cad9f3e94bb872"]}', '', 1705457139, 1705457139, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (767, 28, 11, '', 0, 223, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705457156, 1705457156, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (768, 4, 11, '', 0, 223, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/8151ab7ce5fcfdf01ceb05db6de7cea9190aff45">Merge pull request &#39;fix trang thai ho so&#39; (#107) from thinh into dev</a>', '', 1705457158, 1705457158, '8151ab7ce5fcfdf01ceb05db6de7cea9190aff45', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (769, 29, 11, '', 0, 224, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8"]}', '', 1705458409, 1705458409, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (770, 28, 11, '', 0, 224, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705458436, 1705458436, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (771, 4, 11, '', 0, 224, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/99934589e07a2e5021fb88d8e95cd0701a3c3d8f">Merge pull request &#39;fix gdnn&#39; (#108) from thinh into dev</a>', '', 1705458437, 1705458437, '99934589e07a2e5021fb88d8e95cd0701a3c3d8f', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (772, 29, 11, '', 0, 225, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["07dd78834b58c799d0db70d99f863dda643572aa","e3fb0e313b51381d7d07b910bfed3963036f3119"]}', '', 1705463149, 1705463149, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (773, 28, 11, '', 0, 225, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705463231, 1705463231, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (774, 4, 11, '', 0, 225, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/d27bbd1a398cd332a453a4301f2539d4741f4829">Merge pull request &#39;thinh&#39; (#109) from thinh into dev</a>', '', 1705463233, 1705463233, 'd27bbd1a398cd332a453a4301f2539d4741f4829', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (775, 29, 11, '', 0, 226, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["dc9b1cd7ec18ad4fed9579e27f394b14858c3cde"]}', '', 1705561417, 1705561417, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (776, 28, 11, '', 0, 226, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705561433, 1705561433, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (777, 4, 11, '', 0, 226, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/6ae7b846816d579b60abebb037d74ce8e8d332df">Merge pull request &#39;update bug&#39; (#110) from thinh into dev</a>', '', 1705561435, 1705561435, '6ae7b846816d579b60abebb037d74ce8e8d332df', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (778, 29, 11, '', 0, 227, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["0fcc16b3a944af679c58d4542042b1e00f05572d"]}', '', 1705561836, 1705561836, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (779, 28, 11, '', 0, 227, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705561862, 1705561862, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (780, 4, 11, '', 0, 227, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/e3af78fc47531563603cb74b00a581af88476433">Merge pull request &#39;fix bug&#39; (#111) from thinh into dev</a>', '', 1705561864, 1705561864, 'e3af78fc47531563603cb74b00a581af88476433', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (781, 29, 11, '', 0, 228, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["8fd1ec8092107d71cd610bc15090a66132b89ce0"]}', '', 1705631063, 1705631063, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (782, 28, 11, '', 0, 228, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705631135, 1705631135, '', 0, false, 0, 0, 0, 0, false);
INSERT INTO public.comment VALUES (783, 4, 11, '', 0, 228, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/8de6e2711f638af8b35485c887f3c10229f7fca6">Merge pull request &#39;update phan quyen + filter&#39; (#112) from thinh into dev</a>', '', 1705631137, 1705631137, '8de6e2711f638af8b35485c887f3c10229f7fca6', 0, false, 0, 0, 0, 0, false);


--
-- Data for Name: commit_status; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.commit_status VALUES (1, 1, 11, 'pending', '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-admin/job/dev/display/redirect', 'Build queued...', '3dc770e1f015f96c6fc2f5e2e1cbc25249d72cc1', 'buu-chinh-vien-thong/web-admin/pipeline/head', 9, 1686811490, 1686811490);
INSERT INTO public.commit_status VALUES (2, 2, 11, 'pending', '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-admin/job/dev/1/display/redirect', 'Build started...', '3dc770e1f015f96c6fc2f5e2e1cbc25249d72cc1', 'buu-chinh-vien-thong/web-admin/pipeline/head', 9, 1686811521, 1686811521);
INSERT INTO public.commit_status VALUES (3, 3, 11, 'success', '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-admin/job/dev/1/display/redirect', 'This commit looks good', '3dc770e1f015f96c6fc2f5e2e1cbc25249d72cc1', 'buu-chinh-vien-thong/web-admin/pipeline/head', 9, 1686811660, 1686811660);
INSERT INTO public.commit_status VALUES (4, 1, 11, 'pending', '98fac2b1708b47d60818e009363f5c231120e66a', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-admin/job/dev/display/redirect', 'Build queued...', '3dc770e1f015f96c6fc2f5e2e1cbc25249d72cc1', 'buu-chinh-vien-thong/web-admin/pipeline/head', 9, 1686812265, 1686812265);
INSERT INTO public.commit_status VALUES (5, 2, 11, 'pending', '98fac2b1708b47d60818e009363f5c231120e66a', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-admin/job/dev/2/display/redirect', 'Build started...', '3dc770e1f015f96c6fc2f5e2e1cbc25249d72cc1', 'buu-chinh-vien-thong/web-admin/pipeline/head', 9, 1686812281, 1686812281);
INSERT INTO public.commit_status VALUES (6, 3, 11, 'success', '98fac2b1708b47d60818e009363f5c231120e66a', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-admin/job/dev/2/display/redirect', 'This commit looks good', '3dc770e1f015f96c6fc2f5e2e1cbc25249d72cc1', 'buu-chinh-vien-thong/web-admin/pipeline/head', 9, 1686812306, 1686812306);
INSERT INTO public.commit_status VALUES (7, 4, 11, 'pending', '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-admin/job/dev/display/redirect', 'Build queued...', '3dc770e1f015f96c6fc2f5e2e1cbc25249d72cc1', 'buu-chinh-vien-thong/web-admin/pipeline/head', 9, 1686812497, 1686812497);
INSERT INTO public.commit_status VALUES (8, 5, 11, 'pending', '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-admin/job/dev/3/display/redirect', 'Build started...', '3dc770e1f015f96c6fc2f5e2e1cbc25249d72cc1', 'buu-chinh-vien-thong/web-admin/pipeline/head', 9, 1686812511, 1686812511);
INSERT INTO public.commit_status VALUES (9, 6, 11, 'success', '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-admin/job/dev/3/display/redirect', 'This commit looks good', '3dc770e1f015f96c6fc2f5e2e1cbc25249d72cc1', 'buu-chinh-vien-thong/web-admin/pipeline/head', 9, 1686812533, 1686812533);
INSERT INTO public.commit_status VALUES (10, 1, 9, 'pending', '9b214c9e5bb595c7b91c72d4276a0121e43c25c6', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/display/redirect', 'Build queued...', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1688616868, 1688616868);
INSERT INTO public.commit_status VALUES (11, 2, 9, 'pending', '9b214c9e5bb595c7b91c72d4276a0121e43c25c6', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/1/display/redirect', 'Build started...', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1688616885, 1688616885);
INSERT INTO public.commit_status VALUES (12, 3, 9, 'pending', '9b214c9e5bb595c7b91c72d4276a0121e43c25c6', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/1/display/redirect', 'Build started...', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1688616910, 1688616910);
INSERT INTO public.commit_status VALUES (13, 4, 9, 'failure', '9b214c9e5bb595c7b91c72d4276a0121e43c25c6', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/1/display/redirect', 'There was a failure building this commit', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1688617303, 1688617303);
INSERT INTO public.commit_status VALUES (14, 5, 9, 'pending', '9b214c9e5bb595c7b91c72d4276a0121e43c25c6', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/display/redirect', 'Build queued...', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1688617484, 1688617484);
INSERT INTO public.commit_status VALUES (15, 6, 9, 'pending', '9b214c9e5bb595c7b91c72d4276a0121e43c25c6', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/2/display/redirect', 'Build started...', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1688617492, 1688617492);
INSERT INTO public.commit_status VALUES (16, 7, 9, 'pending', '9b214c9e5bb595c7b91c72d4276a0121e43c25c6', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/2/display/redirect', 'Build started...', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1688617497, 1688617497);
INSERT INTO public.commit_status VALUES (17, 8, 9, 'success', '9b214c9e5bb595c7b91c72d4276a0121e43c25c6', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/2/display/redirect', 'This commit looks good', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1688617848, 1688617848);
INSERT INTO public.commit_status VALUES (18, 1, 9, 'pending', 'd9808de1f02ff6939def557ccc6e2bc9e56f335d', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/display/redirect', 'Build queued...', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1689230563, 1689230563);
INSERT INTO public.commit_status VALUES (19, 2, 9, 'pending', 'd9808de1f02ff6939def557ccc6e2bc9e56f335d', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/3/display/redirect', 'Build started...', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1689230579, 1689230579);
INSERT INTO public.commit_status VALUES (20, 3, 9, 'pending', 'd9808de1f02ff6939def557ccc6e2bc9e56f335d', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/3/display/redirect', 'Build started...', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1689230605, 1689230605);
INSERT INTO public.commit_status VALUES (21, 4, 9, 'success', 'd9808de1f02ff6939def557ccc6e2bc9e56f335d', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/3/display/redirect', 'This commit looks good', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1689230899, 1689230899);
INSERT INTO public.commit_status VALUES (22, 1, 26, 'pending', '9df9ce65acd485f0315cfec4900eb5e5624123ca', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/dev-hoa/display/redirect', 'Build queued...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704686836, 1704686836);
INSERT INTO public.commit_status VALUES (23, 1, 26, 'pending', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/display/redirect', 'Build queued...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704686836, 1704686836);
INSERT INTO public.commit_status VALUES (24, 2, 26, 'pending', '9df9ce65acd485f0315cfec4900eb5e5624123ca', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/dev-hoa/1/display/redirect', 'Build started...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704686850, 1704686850);
INSERT INTO public.commit_status VALUES (25, 2, 26, 'pending', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/1/display/redirect', 'Build started...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704686855, 1704686855);
INSERT INTO public.commit_status VALUES (26, 3, 26, 'failure', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/1/display/redirect', 'There was a failure building this commit', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704686989, 1704686989);
INSERT INTO public.commit_status VALUES (27, 3, 26, 'failure', '9df9ce65acd485f0315cfec4900eb5e5624123ca', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/dev-hoa/1/display/redirect', 'There was a failure building this commit', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704686989, 1704686989);
INSERT INTO public.commit_status VALUES (28, 4, 26, 'pending', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/display/redirect', 'Build queued...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704687102, 1704687102);
INSERT INTO public.commit_status VALUES (29, 5, 26, 'pending', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/1/display/redirect', 'Build started...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704687120, 1704687120);
INSERT INTO public.commit_status VALUES (30, 6, 26, 'failure', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/1/display/redirect', 'There was a failure building this commit', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704687255, 1704687255);
INSERT INTO public.commit_status VALUES (31, 7, 26, 'pending', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/display/redirect', 'Build queued...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704697409, 1704697409);
INSERT INTO public.commit_status VALUES (32, 8, 26, 'pending', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/2/display/redirect', 'Build started...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704697418, 1704697418);
INSERT INTO public.commit_status VALUES (33, 9, 26, 'failure', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/2/display/redirect', 'There was a failure building this commit', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704697522, 1704697522);
INSERT INTO public.commit_status VALUES (34, 10, 26, 'pending', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/display/redirect', 'Build queued...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704697579, 1704697579);
INSERT INTO public.commit_status VALUES (35, 11, 26, 'pending', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/3/display/redirect', 'Build started...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704697587, 1704697587);
INSERT INTO public.commit_status VALUES (36, 12, 26, 'failure', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/3/display/redirect', 'There was a failure building this commit', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704697591, 1704697591);
INSERT INTO public.commit_status VALUES (37, 13, 26, 'pending', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/4/display/redirect', 'Build started...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704697869, 1704697869);
INSERT INTO public.commit_status VALUES (38, 14, 26, 'pending', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/4/display/redirect', 'Build started...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704697878, 1704697878);
INSERT INTO public.commit_status VALUES (39, 15, 26, 'failure', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/4/display/redirect', 'There was a failure building this commit', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704698125, 1704698125);


--
-- Data for Name: commit_status_index; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.commit_status_index VALUES (4, 11, '98fac2b1708b47d60818e009363f5c231120e66a', 3);
INSERT INTO public.commit_status_index VALUES (1, 11, '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', 6);
INSERT INTO public.commit_status_index VALUES (10, 9, '9b214c9e5bb595c7b91c72d4276a0121e43c25c6', 8);
INSERT INTO public.commit_status_index VALUES (18, 9, 'd9808de1f02ff6939def557ccc6e2bc9e56f335d', 4);
INSERT INTO public.commit_status_index VALUES (22, 26, '9df9ce65acd485f0315cfec4900eb5e5624123ca', 3);
INSERT INTO public.commit_status_index VALUES (23, 26, 'a4eda163411b228d47b45cec507a829d420b9a67', 15);


--
-- Data for Name: dbfs_data; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: dbfs_meta; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: deploy_key; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: email_address; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.email_address VALUES (2, 2, 'tuan1996qn@gmail.com', 'tuan1996qn@gmail.com', true, true);
INSERT INTO public.email_address VALUES (3, 4, 'dongvntran@gmail.com', 'dongvntran@gmail.com', true, true);
INSERT INTO public.email_address VALUES (4, 5, 'nguyentrananhvu88@gmail.com', 'nguyentrananhvu88@gmail.com', true, true);
INSERT INTO public.email_address VALUES (1, 1, 'lhngoc@gdtvietnam.com', 'lhngoc@gdtvietnam.com', true, false);
INSERT INTO public.email_address VALUES (5, 1, 'cognvn@gmail.com', 'cognvn@gmail.com', true, true);
INSERT INTO public.email_address VALUES (6, 9, 'jenkins@gdtvietnam.com', 'jenkins@gdtvietnam.com', true, true);
INSERT INTO public.email_address VALUES (7, 4, 'dongtv2510@gmail.com', 'dongtv2510@gmail.com', true, false);
INSERT INTO public.email_address VALUES (8, 11, 'hungthinh11122000@gmail.com', 'hungthinh11122000@gmail.com', true, true);
INSERT INTO public.email_address VALUES (9, 11, '92719909+hungthinhne@users.noreply.github.com', '92719909+hungthinhne@users.noreply.github.com', true, false);
INSERT INTO public.email_address VALUES (10, 15, 'it.nguyenchihoa@gmail.com', 'it.nguyenchihoa@gmail.com', true, true);
INSERT INTO public.email_address VALUES (11, 16, 'datqn1234@gmail.com', 'datqn1234@gmail.com', true, true);


--
-- Data for Name: email_hash; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.email_hash VALUES ('72404617e72722d4a0cbfd40e8c74fa3', 'lhngoc@gdtvietnam.com');
INSERT INTO public.email_hash VALUES ('6b3e3b0d2d9332916e3fbd7de18ca488', 'cognvn@gmail.com');
INSERT INTO public.email_hash VALUES ('0fcf1932f74bc61d2e6141a15e9653ba', 'tuan1996qn@gmail.com');
INSERT INTO public.email_hash VALUES ('90dc3cb77f419dfc1398f3a227b166b2', 'tuan1996n@gmail.com');
INSERT INTO public.email_hash VALUES ('f3659a81ad67fc4dcba62fedbf0f79dc', 'dongvntran@gmail.com');
INSERT INTO public.email_hash VALUES ('c37041b38c70dcc002a687c3310ea10b', 'dongtv2510@gmail.com');
INSERT INTO public.email_hash VALUES ('009e520c8a20ee8d22d0087b59f6496f', 'nguyentrananhvu88@gmail.com');


--
-- Data for Name: external_login_user; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: follow; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: gpg_key; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.gpg_key VALUES (1, 1, '97BDD5E3682BBB1A', '                ', 'xsFNBGSBlnQBEADYxO+hIUJq0SHH+VEoKhSZ2lWGQzmNL9+kEJwgARBcc2mmnvlqkULxnqM6LRrZVusU4AlqzbjwZusaIwLb899db18F3o7m8F1iSbzFsKp+zChCkFt0rXdrYUiqh+BFP7+l9Qv77sePT9jzcbL6fZ+ICOpMFGcQJVtPuWIl6vmo2WXQE/yeh/RLBB8uDtPf1pep1324bAfw/djVG8HHKQCk6PUfkDc8lyNL/SO60gVCVMwgrzWI1Eew7GO4R6x0s0h1Z3eclW1K69f3U3qSwZNreXRB1AgOrr4jVY3fauiCYTqSVY1zhSh3yL6X0i4TavCeF6P9E5dySCOBYFvhHfzyPpTBkwhrDh4GVs9j6hBfQiVuCpsgt2GH17oD9vQKaQip4iesF7uc2mEOT7flvlQRi4NNJNmU7E7NkzK71XT9vc756wyrjzTPqqlpL62BUUrI7h/3iLQLwpKXo6zfwh8CFny3L6yF4XCgrT0RMqU87r3llX9LJ7XBOYmMq7bibIaSaW/aPCNigAW0UzrCXSCmOuOW41Pa3/+Oq4DU7Lu5SwbZEmUCRXLr2+KL7F5eeu6uzNlH6kRy6aQ2nt3W6g5q2b73LborXwk7V0/1Is5sYENrwACdK5a1X23TXVPBf2GCnH48g7HoANS7tDMFP0GmUY+FGbl4GvCYqH6YHC1VjwARAQAB', 1686711215, -62135596800, 1686711215, '[]', true, true, true, true, true);
INSERT INTO public.gpg_key VALUES (2, 1, '2ABD04C9AA95CDD4', '97BDD5E3682BBB1A', 'zsFNBGSBlnQBEACiVn9t3bKuCoMAr2doV4tdhmLTBuEP3cOojQtrUnN5o8tpdJR0VHC7/FiYzNuyuJwVWKWddm4kQ1WI4SYIlk7r5j9tgzNvARQHzF99VhQfh3jbzFUxfBhC1CQmpZwwK5dW6oEz9T05s2aZcXJcseDWsFiJPHZNpZf7UATcV5UW6Qrllg1noh0ukUOiDW+cEx7nbE8f333cJldm9B+ExCM780EKDdzzN5LA9UCVNXeRI6jYCqAJ4hsiwhGyCSbZpv4pJC3EEf5JqT4MEuOkGgvQcU/y4lNrR1ORh5jvN8YtnDemYm7uAweaAF2SU85Ov42K2W3iWaysDGuHFAWmVLgN09Xja4TVwB9B6LGjY703stRsE/XNTozWn6BrN6UbY4W/hu6q4i/kZS8ttjt+hDNs7Ie9eZ2Rxu0Yhd3LiS/9Dt9vybkeUWfZK4EIL0Vpk4QxcvVPTs6pkWqjLRVKdE7XhC9PHxl6BUSXCS96KYEh+vwqTK5fvZ2eBXkN3rozTuTaZ4hRYMz5poJy54femyABeQw/rbX1hFY0OW322D/EOn2TLFaYLFOY17+7oEHwp/klsH4YJ7vLBUpVjaYiCCpnxxTJIHKhMr3TVGoKmawabu+kjrNce7xVCMMYbXeE95+8IbmElM+HO6h3Xbyd8bSlT79XSF4Dq/LDEWSKkob4mQARAQAB', 1686711215, -62135596800, 1686711215, 'null', false, true, true, true, true);


--
-- Data for Name: gpg_key_import; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.gpg_key_import VALUES ('97BDD5E3682BBB1A', '-----BEGIN PGP PUBLIC KEY BLOCK-----

mQINBGSBlnQBEADYxO+hIUJq0SHH+VEoKhSZ2lWGQzmNL9+kEJwgARBcc2mmnvlq
kULxnqM6LRrZVusU4AlqzbjwZusaIwLb899db18F3o7m8F1iSbzFsKp+zChCkFt0
rXdrYUiqh+BFP7+l9Qv77sePT9jzcbL6fZ+ICOpMFGcQJVtPuWIl6vmo2WXQE/ye
h/RLBB8uDtPf1pep1324bAfw/djVG8HHKQCk6PUfkDc8lyNL/SO60gVCVMwgrzWI
1Eew7GO4R6x0s0h1Z3eclW1K69f3U3qSwZNreXRB1AgOrr4jVY3fauiCYTqSVY1z
hSh3yL6X0i4TavCeF6P9E5dySCOBYFvhHfzyPpTBkwhrDh4GVs9j6hBfQiVuCpsg
t2GH17oD9vQKaQip4iesF7uc2mEOT7flvlQRi4NNJNmU7E7NkzK71XT9vc756wyr
jzTPqqlpL62BUUrI7h/3iLQLwpKXo6zfwh8CFny3L6yF4XCgrT0RMqU87r3llX9L
J7XBOYmMq7bibIaSaW/aPCNigAW0UzrCXSCmOuOW41Pa3/+Oq4DU7Lu5SwbZEmUC
RXLr2+KL7F5eeu6uzNlH6kRy6aQ2nt3W6g5q2b73LborXwk7V0/1Is5sYENrwACd
K5a1X23TXVPBf2GCnH48g7HoANS7tDMFP0GmUY+FGbl4GvCYqH6YHC1VjwARAQAB
tB9MZSBIb25nIE5nb2MgPGNvZ252bkBnbWFpbC5jb20+iQJOBBMBCAA4FiEEUnbV
ZTS1t9y07y5Kl73V42gruxoFAmSBlnQCGwMFCwkIBwIGFQoJCAsCBBYCAwECHgEC
F4AACgkQl73V42gruxoi4g/+MexTsxJnyiOH7U75HB8vP0Wzj2WE0Xelhq5jW1Hj
CJQMrA8kd06ZtYKgGCWHp+2HPAcUc3FCH8o5pS/C7lpmwRHKq5LQ89rdcK0mnCiF
gTkiiI4XVRGFGAhFPfnI/ExvxMA1W3t0CZr91CQKtty/hfPTreo+mTi0uePlXhOo
GnbFATak2LJdfOa2C5RV3sMIdWx7mfakBc6jJTBmgJBfBpHUS7F3wbFdTqxRIbEB
TSHE5n0pluAH8oT9JEX8V5r4y4GNUwuS5dxdvPmMNzTdRBqV8pWr5cVPs5cvw7ud
5/Uwj3Mmv0jRYmldVZPmzaTPSktUXo/B+XupElig4a/yJzgfB5L4JXesNTvHTHYb
wUfB2c1eozh67o7ot+HFpVsBJ96uNYwKtnpc0IlH3s0/QoMudZ86ck6urQxnu2l7
gzMhwK9Z/pN4gm9RpBZ1mvRhZQJuSTfaZAagudSYu9EoAfOta0ZrTDC0YDEapCml
jd6izzZ8gXSBkD751prOWa+KXexmoNm4FLFEAZhXPns7suRDujmQqfOXAHU3GDXZ
UwWJh67j+GvnrEvWT1FpLm+1s2WFMIGWZ/BaAEEkxxo3U2mjjg4JnfH7SBRz6gOe
Yg+iphWYCIfY11tBPSTLQ6OaPdY43CQcqfjwhYyaTg/3J1jQtwq6yzt43HvAkE6m
VFO5Ag0EZIGWdAEQAKJWf23dsq4KgwCvZ2hXi12GYtMG4Q/dw6iNC2tSc3mjy2l0
lHRUcLv8WJjM27K4nBVYpZ12biRDVYjhJgiWTuvmP22DM28BFAfMX31WFB+HeNvM
VTF8GELUJCalnDArl1bqgTP1PTmzZplxclyx4NawWIk8dk2ll/tQBNxXlRbpCuWW
DWeiHS6RQ6INb5wTHudsTx/ffdwmV2b0H4TEIzvzQQoN3PM3ksD1QJU1d5EjqNgK
oAniGyLCEbIJJtmm/ikkLcQR/kmpPgwS46QaC9BxT/LiU2tHU5GHmO83xi2cN6Zi
bu4DB5oAXZJTzk6/jYrZbeJZrKwMa4cUBaZUuA3T1eNrhNXAH0HosaNjvTey1GwT
9c1OjNafoGs3pRtjhb+G7qriL+RlLy22O36EM2zsh715nZHG7RiF3cuJL/0O32/J
uR5RZ9krgQgvRWmThDFy9U9OzqmRaqMtFUp0TteEL08fGXoFRJcJL3opgSH6/CpM
rl+9nZ4FeQ3eujNO5NpniFFgzPmmgnLnh96bIAF5DD+ttfWEVjQ5bfbYP8Q6fZMs
VpgsU5jXv7ugQfCn+SWwfhgnu8sFSlWNpiIIKmfHFMkgcqEyvdNUagqZrBpu76SO
s1x7vFUIwxhtd4T3n7whuYSUz4c7qHddvJ3xtKVPv1dIXgOr8sMRZIqShviZABEB
AAGJAjYEGAEIACAWIQRSdtVlNLW33LTvLkqXvdXjaCu7GgUCZIGWdAIbDAAKCRCX
vdXjaCu7GuQ/EACAZ6KtXNY899cNVc47S3aDqVJYMg8PZp0r0Wsi302XjS17+pnw
lETcPn713jlouH7IsYpuUK8MVNdrjRpqdSQdCOIpLwWubYLGa7UHh3lV0gzp+7Om
N3wM5NAKpggbch+yYVtKCywkHC+ua0RqnrtLuwgWKJ0qZiLjEvO3xAURwF3P+wTO
g4ag0bmnkn4BKOCZyshVLQ1PmnmpA0ToRs9AYFhQAnPO+vXXU22PeED+lkIzC5vg
gUayqgmd0tSrtPXmTWsfzQsVX4svtHbuFvxJnkkbPDIKMrT+yJVbVTBlAMrdi5iC
aK9TiUvEYhCx3NH+Ip9n6CdIepkRQPn6xmpOONW5AHSIncO5NZXF0C6D/x1Qs2Nx
TT/P3NCG2coD99q7Vp6X9cYwD3rvowm6tshZTpuzeUw3ite4XyJOEd5SJcS2iwvr
/eC6hbebMcMGeEaX+Ka/KaCM0NcJ+YBf2ymhviSYqEnNNaxjdYZ5Z1C5iHb2Abke
MOclc2o1L+QOnLr1B+EvA/DtVM+Qa85YIUgtawCwfgMnmimoCq6eMB4bCQDeb1ep
SCRVkzyhKoy2x6/NP7JGupe5BArnPut17ib8k5ILA+C8M3UO7iSWBBOsCII/E8Fx
fk/ESq1EcRvrjG7OF9ZkbvlX6a46qhR34I9N6WV5xXCTdLnq4oe7CdXSaw==
=GLL0
-----END PGP PUBLIC KEY BLOCK-----');


--
-- Data for Name: hook_task; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.hook_task VALUES (838, 1, 'cf970b4e-ac8c-4490-bb9c-dd15a25265be', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/121/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/121/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164381555534100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"cf970b4e-ac8c-4490-bb9c-dd15a25265be","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"cf970b4e-ac8c-4490-bb9c-dd15a25265be","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"cf970b4e-ac8c-4490-bb9c-dd15a25265be","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d657dbe5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:21 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=pgzYYVSpDFuupDRZZKBl1kAbG6gcPP15GZoiCQc3O5UeY1%2BmErEelUxqHjNAR4niKKGNoubFtXjloxmynaNgg9kcedL2Rg3cTtUYFjLWn3deQYXk%2BAdXdY6AY952\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=47e48ef6b23311ee8f7162bbcfaf3972; Expires=Thu, 11-Jan-2029 16:46:21 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=47e48ef6b23311ee8f7162bbcfaf39721363667b1a8f2ca473a55f1955ba7049dadcfa8da2ff516431da8b43ad7c9feb; Expires=Thu, 11-Jan-2029 16:46:21 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=dcae332e7487af0be07b0b1568620ef6909cf1d7-1705164381; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=zCATWAfYryZb0eiZvVIlM_GpBLQhfT4Z4szswP2TZUA-1705164381540-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164382","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (812, 1, '82af1514-c91a-45ef-936f-d433dc114514', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/132/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/132/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705105577202720800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"82af1514-c91a-45ef-936f-d433dc114514","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"82af1514-c91a-45ef-936f-d433dc114514","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"82af1514-c91a-45ef-936f-d433dc114514","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844981bf0d135e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=OodcVQjyOx81oOnMvtV0WNr%2FBH2nEytwmT70yo0WO4R6qwej8YpuQ67kwJjvFeuaq%2B6A20SmGRcV64qpwh4ECaB%2F4uPgbZ3fCLaZEBFMN2w2ei7WeIco3%2FGUy6Lk\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5dc65530b1aa11eeb9107e16d0383502; Expires=Thu, 11-Jan-2029 00:26:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5dc65530b1aa11eeb9107e16d0383502e02848ccd573e0504ee6cbc87c220f7d0b455c89669cf57815082c18b1d71425; Expires=Thu, 11-Jan-2029 00:26:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5f9285fa0b38b9f90f057b63572381b7a7d6493b-1705105577; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=5mD8LgYjuDPrHpg98kHiOcuenuhQHmahFROqNzefQRA-1705105577200-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705105578","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1010, 1, '7219c155-d8e9-4ea6-80e3-23c7f9384ab2', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #108 fix gdnn",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705458438186260600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7219c155-d8e9-4ea6-80e3-23c7f9384ab2","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"7219c155-d8e9-4ea6-80e3-23c7f9384ab2","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"7219c155-d8e9-4ea6-80e3-23c7f9384ab2","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b288498f15e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:27:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ny90t5MvlqZN4teqedRv8t6Z%2Fz%2BZ9YV2ln3QTaLmNT1Gt7Foh1qUk9GKXQD%2BNv6zQKOcTUqB7mNWQEWr8K%2F2%2BCMJAvW18MYzuLwdGh7ht1bjA9yN0wiPaXx9aymg\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ef4bcd2cb4df11ee85ddbe224d97a722; Expires=Mon, 15-Jan-2029 02:27:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ef4bcd2cb4df11ee85ddbe224d97a7223df1821fc43222bb8b5c7afefc699fd4e36c9825f637eeb59be7d93aab942179; Expires=Mon, 15-Jan-2029 02:27:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a140baaea124a673fc88f463e6278894dd7ab897-1705458438; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=caWwq0SZqqhLTbaPs72YbG3GEaYPqJhzuMURuTIg1nY-1705458438162-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705458439","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (811, 1, '0aa78f7a-c546-476d-bf1a-bab2bf6611dd', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/132/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/132/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705105576769749000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"0aa78f7a-c546-476d-bf1a-bab2bf6611dd","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"0aa78f7a-c546-476d-bf1a-bab2bf6611dd","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"0aa78f7a-c546-476d-bf1a-bab2bf6611dd","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844981bc3c9d5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2Bc49QHuhrcA394qz0EIW2WY0GMa9Bz3VR0iGOPkWXI3viq5LPXunVB9rqfBCWjlU6RuKuyxIzCpo2dQnfytqANju4RHmaH5D5UcBe2puM3iOB7tH3ai5k88%2FQAqH\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5d841b5cb1aa11ee93ed0655eed2b56d; Expires=Thu, 11-Jan-2029 00:26:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5d841b5cb1aa11ee93ed0655eed2b56dff99f3aafd5555ccc985027b32f9d4a8e747191a88c633a914a7006d3254aa3c; Expires=Thu, 11-Jan-2029 00:26:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3ce427b3043bf87068a32b89bc75c423ba698dfc-1705105576; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=vuNL.jCbZ4Xg2.3qkrdtPiMGZmswP1TnYfbs9W921XY-1705105576767-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705105577","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (900, 1, 'e216d82b-29c4-4cf1-aa0f-b9038208b9ca', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/211/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/211/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705340774728014900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e216d82b-29c4-4cf1-aa0f-b9038208b9ca","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"e216d82b-29c4-4cf1-aa0f-b9038208b9ca","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"e216d82b-29c4-4cf1-aa0f-b9038208b9ca","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845fefdf48e35e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 17:46:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=vACnhCMsJBdmu%2BzXW4BEeqpWC4zSstg%2BPsi1yOM08PB%2BCh1LOUjTih3UKOsylR%2B2Nhe60vIgaS39Eu%2FTurob2ja4Aa7kJr7j5oBLANiR%2BrQV9nqzdODJE%2FF6OgMg\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fa5ce0bab3cd11eead53f6be5e3459f9; Expires=Sat, 13-Jan-2029 17:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fa5ce0bab3cd11eead53f6be5e3459f9203c22cf5952337c2b2c8ec39f884759c045100479395323d2067c09f545c293; Expires=Sat, 13-Jan-2029 17:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=03fe8984b7cb08f62d28792e7bcbcc19b331df03-1705340774; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=5xYRpFbdufeWWM5F0ENxwtk52inNPUuL82zOxzeVHmo-1705340774625-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705340775","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (832, 1, '6cc28f61-674a-4d7f-b18e-781427dc1696', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/118/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/118/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164378818453700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6cc28f61-674a-4d7f-b18e-781427dc1696","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"6cc28f61-674a-4d7f-b18e-781427dc1696","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"6cc28f61-674a-4d7f-b18e-781427dc1696","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d53f9f05e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=TuqRMaDmHobOT01mfVX8jc60wDDbKumzdxYn%2B7E0QfxSTulUd%2FsoBMUBcKoa3e77HpVxPB4lWDrdNSj3dcq26pSwmLY%2FEwAes%2FQOshJVS5GsK%2FJLZN8y1cK26DSI\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=4642cedcb23311ee94af660cddb791b6; Expires=Thu, 11-Jan-2029 16:46:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=4642cedcb23311ee94af660cddb791b670feb7fcf432684ae6781261b30c22a85cfd58147be08a405b6bf9bb481a95e4; Expires=Thu, 11-Jan-2029 16:46:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=60a89a735aaeccd09754b1f1de8e55819c59fa44-1705164378; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=bp3X9_ZGgUi2hS3qRzPW5bqHE2w5IlWLLr0yKLdAKWs-1705164378802-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164379","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (833, 1, 'f94d7678-bac3-49a1-b55c-5d92cd53c0ed', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/118/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/118/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164379279179800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f94d7678-bac3-49a1-b55c-5d92cd53c0ed","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f94d7678-bac3-49a1-b55c-5d92cd53c0ed","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f94d7678-bac3-49a1-b55c-5d92cd53c0ed","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d57cb115e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:19 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=PFTjAeD%2BeFqpP1%2FxY5p8nhwnvgWhblXrnuju1NX%2FNmnRzI%2BuQVsRwdDULb7ckOAQwy5vz4XrdXUGafhC3IyZONb3LmSLa0wMxPF%2Bg0Umt3Tfff38K1w3OUXtmNuG\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=46894a10b23311ee916a22952daeb20f; Expires=Thu, 11-Jan-2029 16:46:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=46894a10b23311ee916a22952daeb20f9f35f9cff0689d94e9df77c355abeab4915fd4e9b2b08b95dc1aaf30efa16088; Expires=Thu, 11-Jan-2029 16:46:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e7431dfcec9461afb76d57836667a9dbdd0523bd-1705164379; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=PYs5r.doztuaG7tI.ugszkO1Wa8wC1mAWspU9UY0eCU-1705164379264-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164380","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (839, 1, '930e59d1-15a8-452f-82e2-8f9237e07b31', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/121/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/121/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164382946402400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"930e59d1-15a8-452f-82e2-8f9237e07b31","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"930e59d1-15a8-452f-82e2-8f9237e07b31","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"930e59d1-15a8-452f-82e2-8f9237e07b31","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d68fe775e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:22 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ptZdcIa1Cy0hrCZNoh09bampZaEUld7cnvaALLwJaQP%2FLodxDmbqEImseGLhjhB11YPEEd%2Bwj7eFITBNqNtA5rFUaEcNJd7HjR%2BfQV0RaiFfHzfmzm9y3zsthAvf\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=48b8cf40b23311eea3ec2aac14c70eb7; Expires=Thu, 11-Jan-2029 16:46:22 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=48b8cf40b23311eea3ec2aac14c70eb7ec2a31a8212a600b944f695433d7ef7a4d6447e22b744d76014861521c2b5ebb; Expires=Thu, 11-Jan-2029 16:46:22 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=dcbdf9a5aaffbb6cea30003ea30a919e0f85e046-1705164382; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=0pfG4GcUmGJxGaA14lRCWQ21QpCQgItQhJVQTVzpUSw-1705164382931-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164383","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (797, 1, '677afaf9-0f2f-445b-91c8-db7760b10023', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[4733d86](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6) Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90 - hungthinhne\n[52c909b](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63) hidden kehoachdapheduyet - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/773815950340a50498ed3995ebb83bdcacecc237...4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705052744974943800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"677afaf9-0f2f-445b-91c8-db7760b10023","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"677afaf9-0f2f-445b-91c8-db7760b10023","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"677afaf9-0f2f-445b-91c8-db7760b10023","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844477e5cf225e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 09:45:44 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=dvb70LTv2gFFSivM7ZxIA%2BLz9yDWhchGTrHpYl%2BJ8s8una8m7gSf0RdeOF9nCkHnjdSfY95OMpuJ9ort7ApCVHLB%2FMAAMPBGzL%2B9bwmgVeBHBGjFUxRFebmakJlH\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5b4da068b12f11ee901bea12b872d272; Expires=Wed, 10-Jan-2029 09:45:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5b4da068b12f11ee901bea12b872d272909f1e285826ad089d5c991c6639cb8e0de37ee6e8db4d4013295007466b954d; Expires=Wed, 10-Jan-2029 09:45:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3720796a4dce851f95be33b615bfff0787264a74-1705052744; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=pegVnIiIjFVcnGwYNjF.oBUEWYWWlusEcTv6U78GWSM-1705052744956-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705052746","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (793, 1, '1adb6dae-2578-4bda-89e2-d4347239e9ed', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[khieu-nai/backend:main] 1 new commit",
      "description": "[b91fcae](https://git.gdtsolutions.vn/khieu-nai/backend/commit/b91fcae669214f6410e0844cb50560d8313ec508) update - vu nguyen",
      "url": "https://git.gdtsolutions.vn/khieu-nai/backend/commit/b91fcae669214f6410e0844cb50560d8313ec508",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "git_for_dev",
        "url": "https://git.gdtsolutions.vn/git_for_dev",
        "icon_url": "https://git.gdtsolutions.vn/avatars/009e520c8a20ee8d22d0087b59f6496f"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705050155551195400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1adb6dae-2578-4bda-89e2-d4347239e9ed","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"1adb6dae-2578-4bda-89e2-d4347239e9ed","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"1adb6dae-2578-4bda-89e2-d4347239e9ed","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844438addb775e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 09:02:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WGOxMO9wZ3kCSJtU5RQAH5Q8pOvZlWzQPP2VGdK7RFKaHWUbDkw5atUv%2BFnieqtX%2F%2F9H766hfsHM01%2BM2bQV1u7UBTpXDXvryp%2FN4FCKnzushAjFKm9UfBcK3PRC\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=53e2714cb12911ee9c14c26d5c517933; Expires=Wed, 10-Jan-2029 09:02:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=53e2714cb12911ee9c14c26d5c51793300bff64cdd341c9cef46cdbe894ea94204ea129030724679a4fa277d0e5adee9; Expires=Wed, 10-Jan-2029 09:02:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=275bd361fd49fd59c2ec0b14f1ffb41337808482-1705050155; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=i0wGxmaXpU0BWTbrYa8RQdd8NkF0VE4cBSi5hRDaUYA-1705050155529-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705050156","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (901, 1, '6a6c3c1e-d8c1-4e88-bb93-bdd2435e61b1', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/212/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/212/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705340775113981400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6a6c3c1e-d8c1-4e88-bb93-bdd2435e61b1","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"6a6c3c1e-d8c1-4e88-bb93-bdd2435e61b1","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"6a6c3c1e-d8c1-4e88-bb93-bdd2435e61b1","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845fefe209665e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 17:46:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=o66qUUnX1Ge3ypLCPX91MarDWZx0lp1awTmrITGWkVzHOYzYttSlNNdKzuqAIDl72VdnK9n3k2%2FqICQrQV9%2F0X3Sq7MyZUPtWRYSQ9YHlRVuOFt%2FTokRFJ8P6cVQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=faa0d7b6b3cd11eea7e28ebd24e73379; Expires=Sat, 13-Jan-2029 17:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=faa0d7b6b3cd11eea7e28ebd24e733793088983e306330bb1cb7bb79cc756eb1018be3bdba1c2b1b0b13a4b60396c508; Expires=Sat, 13-Jan-2029 17:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=4c15f6a096b554beea3e05749c5b130322f0c3e4-1705340775; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=wIAo_6acTH0x2zhWwJnhc7Bn9vnqxitr7vX_kTX6Lww-1705340775067-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705340776","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (902, 1, '080851a2-a491-4dd9-8308-d4faefcac4d0', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/212/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/212/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705340775516382500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"080851a2-a491-4dd9-8308-d4faefcac4d0","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"080851a2-a491-4dd9-8308-d4faefcac4d0","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"080851a2-a491-4dd9-8308-d4faefcac4d0","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845fefe469dd5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 17:46:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=86%2BAgdJn0hLVZEp3PqW7rswF%2FMIahcBE%2FrgQ04r5kjapEz11ADPYIml4md6en30KnS1HPio2Hs1QEdjbSE3RlsVdbJ%2F3Kgn3lwtQlZeATcHzk%2Fkz4L0mNbXpBuvW\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fade4678b3cd11eea787323056eea780; Expires=Sat, 13-Jan-2029 17:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fade4678b3cd11eea787323056eea7808443d0e515c87c27337eca05e824682508b0077212f3f46be4c91c48a366c9e9; Expires=Sat, 13-Jan-2029 17:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=4c15f6a096b554beea3e05749c5b130322f0c3e4-1705340775; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=iLKQ2.STOFdn03pBZjtrAI5BAZNbTRH9BTyd7dKGDtI-1705340775469-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705340776","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (813, 1, '045fa2ce-1ff3-4abe-8029-729e1c8f745b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/123/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/123/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705134972631724000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"045fa2ce-1ff3-4abe-8029-729e1c8f745b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"045fa2ce-1ff3-4abe-8029-729e1c8f745b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"045fa2ce-1ff3-4abe-8029-729e1c8f745b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844c4f66cf755e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 08:36:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=6LEmy%2FdT2N3RlVgv%2BQBZpzCGIYHyFIkRUxZQn4n0oWvBFn4N991AlOybPZ5hSDdW6uyAzkzuAHmMNIpvGcG1z66jDkiXVl6Qfp%2FkWr7bJsM6ennoCcXDmvLvg0%2F%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cecfa42cb1ee11ee8d466ad93de91fd8; Expires=Thu, 11-Jan-2029 08:36:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cecfa42cb1ee11ee8d466ad93de91fd898db00406e675b6b515867da5f4d551ee669d1428435589e90cf1bc882ea2e87; Expires=Thu, 11-Jan-2029 08:36:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d46606db0248f5df459bbae89f8b74efea3c371c-1705134972; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=FRC3qvkGPSLPw7W_mPdBGFcrztV9whTHx0woUk8Y2Qg-1705134972621-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705134973","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1120, 1, '3cb339fc-3bc9-46bb-a447-5b0e137f15cf', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/23/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/23/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705604917462875200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3cb339fc-3bc9-46bb-a447-5b0e137f15cf","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"3cb339fc-3bc9-46bb-a447-5b0e137f15cf","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"3cb339fc-3bc9-46bb-a447-5b0e137f15cf","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920ab1c225cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:37 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=gN6RJwuWioEF6NzJ5dk78yHhuDPfm8BZX1dror8IjyPybd1AUqLo085QU10BvoXRhhrr2r8QxKOCUAWmPENXdFOFxvoKJifkWFYcAFjsOfUQ4QQKOshguKw%2FyOXv\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fbbc7d44b63411ee9f173e3f533a43e6; Expires=Tue, 16-Jan-2029 19:08:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fbbc7d44b63411ee9f173e3f533a43e6cc3f7b7d45d8ca8d3e9e39d34df6f56d7cffd9cc15bfb9620f8f68b892d510df; Expires=Tue, 16-Jan-2029 19:08:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0f675e9ee5c6376fa052456d1221ffa35ce572d1-1705604917; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=AwDeA58o3AZnb_pobgTg2WbvZJpmOEpWvi82TbI_kA8-1705604917418-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604918","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (897, 1, 'a7d9530c-744a-4a9d-851a-db361c639a63', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/104/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/104/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705340773233704600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a7d9530c-744a-4a9d-851a-db361c639a63","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a7d9530c-744a-4a9d-851a-db361c639a63","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a7d9530c-744a-4a9d-851a-db361c639a63","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845fefd54ef15e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 17:46:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=DbDwbGGRV%2FR%2FzAWanpp7u4qZYsKRAzTafpDfWLH6NLyDmWWEOJFkoNVGblA6xeco9jMbbfAh1Amcjq7NEJuV0SjtLSd7flhBySwkqgE%2B89PFey2Q9kIovDHLW9sB\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=f9803692b3cd11eea2c8dad289a1f012; Expires=Sat, 13-Jan-2029 17:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=f9803692b3cd11eea2c8dad289a1f0123c95c80f4a86837282eb563aec9484171bbddb845f73209e90763024b63a5350; Expires=Sat, 13-Jan-2029 17:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=81b8be85a9a073145cba7882c76eb13d0fb7deb1-1705340773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=pAogVMes44scviON1QLS7X5aP.Syxx8r.bihTkIyPwc-1705340773186-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705340774","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (898, 1, '44ee3657-8211-4c6c-a2d9-2638aa891eea', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/104/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/104/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705340773768092700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"44ee3657-8211-4c6c-a2d9-2638aa891eea","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"44ee3657-8211-4c6c-a2d9-2638aa891eea","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"44ee3657-8211-4c6c-a2d9-2638aa891eea","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845fefd8bf7d5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 17:46:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4iDsOIZYYdtHW69YLbe8hJN6jc5a8xo9WMjAhBA0vdWJyFjUM0AozgYMRogTZ9XM8rK8llO8p7V%2BDUuE%2Fd%2FUCo8jb%2FBFJH6l5IN0B5o8VxWd6X1bPzDy4GweQ6el\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=f9d25feeb3cd11ee89d126f75c34e25e; Expires=Sat, 13-Jan-2029 17:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=f9d25feeb3cd11ee89d126f75c34e25e22a75ca118cc36b07fe627be26d30a03a74d34b65c07486775cdcc25269478ad; Expires=Sat, 13-Jan-2029 17:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=81b8be85a9a073145cba7882c76eb13d0fb7deb1-1705340773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=8wux8XWGGZCJ_DaNdAkHp8Ik574em_PiKmdiJ2dVyKc-1705340773718-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705340774","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (899, 1, 'f5618244-68e0-4d66-9d86-b80953449331', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/211/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/211/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705340774291086400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f5618244-68e0-4d66-9d86-b80953449331","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f5618244-68e0-4d66-9d86-b80953449331","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f5618244-68e0-4d66-9d86-b80953449331","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845fefdbf8135e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 17:46:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=iteWEFsO4TRCL9okUskGU7Gj%2FuEK78dSKh5V%2BbHvbcgSELICu39RnDwRlgtREC%2BQuIGydrH8QfHmoogyH6yRtU7O6j8ytoFsaRuN5KFln9t%2BBux05t9qJs7irsYR\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fa2340bcb3cd11eeb8cb9e73320b8e84; Expires=Sat, 13-Jan-2029 17:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fa2340bcb3cd11eeb8cb9e73320b8e842092c89e7778bbf8ba732dd5512336d21a103942909fabc1e74098d63b20994d; Expires=Sat, 13-Jan-2029 17:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=03fe8984b7cb08f62d28792e7bcbcc19b331df03-1705340774; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ipIS5ZKiF_Tu4SRNX.T0Xj.VqRZt6Nh7HqfkcA2d24E-1705340774244-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705340775","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (842, 1, '5ec6d1b3-3e66-480c-b471-da9ac704d59f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/108/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/108/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705193772300699600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5ec6d1b3-3e66-480c-b471-da9ac704d59f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"5ec6d1b3-3e66-480c-b471-da9ac704d59f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"5ec6d1b3-3e66-480c-b471-da9ac704d59f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8451eaf2bce25e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 00:56:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=mWcvnZri6O2JVTiRsf2UGLNquP5W8n%2BvLuOc1z%2ByS34n4asX7gb6udUBdcTcixyCkLHU8TpHvNKedhjYPyyW%2B0mnF2rd5zh1EwUyHkY%2BGFiRUll%2F8X9MmiimYUQw\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b623a2dcb27711ee90f69a5b94cb3f6f; Expires=Fri, 12-Jan-2029 00:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b623a2dcb27711ee90f69a5b94cb3f6f089ea9474d3809ce14a13f12c06aa6c6a6a96445c383e6cca31a9113b7c53daf; Expires=Fri, 12-Jan-2029 00:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=17952d0a11b64e100f321547fbbd38d0041e4f3b-1705193772; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=EEr6K5ph05PEotNOxVF98yjpazaQREoWNirFpfUC7Ko-1705193772280-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705193773","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (844, 1, '01e43c98-d4cc-4c59-b16c-64957db98b9e', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/109/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/109/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705193773125826900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"01e43c98-d4cc-4c59-b16c-64957db98b9e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"01e43c98-d4cc-4c59-b16c-64957db98b9e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"01e43c98-d4cc-4c59-b16c-64957db98b9e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8451eaf7ae355e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 00:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4M9lVs0m2eupACprLg7oEln18QD9vrLB0UIQI6ZJcJow0zDugylVb%2BJapaLemG%2Fr4JDq7vDTe85WYG1IZsXZMaalL55pr0AOwiQr0LBYPSmLSmrAoqr7I6PhhaN%2B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b6a1cb4eb27711eebb23aef83fe71131; Expires=Fri, 12-Jan-2029 00:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b6a1cb4eb27711eebb23aef83fe71131a7138db14c77189fa0fbfe7aab28b4f88315b7f7f02284434ef3140ebcddf558; Expires=Fri, 12-Jan-2029 00:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=54b0950a9939813bfe4def9819cd0284c357630a-1705193773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=LQ52VMK7_jaa0766eNzledgsm8bV3B0SqTWHdQ23tDg-1705193773107-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705193774","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (843, 1, '316b070e-1af1-46bf-a6c1-a163ebbfe248', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/108/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/108/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705193772722634300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"316b070e-1af1-46bf-a6c1-a163ebbfe248","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"316b070e-1af1-46bf-a6c1-a163ebbfe248","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"316b070e-1af1-46bf-a6c1-a163ebbfe248","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8451eaf50d6a5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 00:56:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=eLbjoxkK5yQpLjdmSW5B0uWwEnDBqva4lrKwRI0A1WppgbCSdonjllxrXzPZKVMk7REitZCdS6M6Qbc1tydVqIZjCEHXcWU7nK2%2BqMg4rXeu2Z1z8MT05JMejGpg\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b6641e52b27711eea5c52a1cb95f86bf; Expires=Fri, 12-Jan-2029 00:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b6641e52b27711eea5c52a1cb95f86bf7d7d885e9ee7522461a30ae7ce1841860607a3db56756087b8edfae368e4e641; Expires=Fri, 12-Jan-2029 00:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=17952d0a11b64e100f321547fbbd38d0041e4f3b-1705193772; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=0qyvX.aGzb910wweJwQ9CSIWrjJnbyGMjFUgTm207ZY-1705193772703-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705193773","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (987, 1, 'f676a1bc-a8ae-42d6-824f-ecb748716b3f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/79/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/79/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458375287883800, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f676a1bc-a8ae-42d6-824f-ecb748716b3f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f676a1bc-a8ae-42d6-824f-ecb748716b3f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f676a1bc-a8ae-42d6-824f-ecb748716b3f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26fbba245e3b-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Wed, 17 Jan 2024 02:26:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=kvRXR9%2F5YDRXnp%2FyDJTWS284tlRgxXX3H13OyFIyRBX3ixkWU%2FNYvnKvvutH5E6zZFLQgD0rCK%2BCpW0xzj33fS3lnsQPgJq4lWi5sNwTk1y5ZZxLN%2BOTgSG7a9wo\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2208","Server":"cloudflare","Set-Cookie":"__dcfduid=c9ce7aeab4df11eeb83d1ec9afb677e3; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c9ce7aeab4df11eeb83d1ec9afb677e3aadea7844b9ca755c40fdae9a61d8e30c2dddb9944dd42c42552d646eee709f9; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ee00da139899552a197be1f5a7b8047a86e0a748-1705458375; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=NluuAQqZD_io3JA7FIBB_EZRb4odXTLCWIPpT8s5cJk-1705458375266-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458378","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (904, 1, '9d8bad17-a96d-4555-bab8-07d336fa5792', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[eCabinet/backend] Repository created",
      "description": "",
      "url": "https://git.gdtsolutions.vn/eCabinet/backend",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "lhngoc",
        "url": "https://git.gdtsolutions.vn/lhngoc",
        "icon_url": "https://git.gdtsolutions.vn/avatars/51fb7a1b5abc6465f0237197e57ec12f5d9f4aac5d951fc8d53422b7397b6287"
      },
      "fields": null
    }
  ]
}', 'repository', true, 1705366329294809200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9d8bad17-a96d-4555-bab8-07d336fa5792","X-GitHub-Event":"repository","X-GitHub-Event-Type":"repository","X-Gitea-Delivery":"9d8bad17-a96d-4555-bab8-07d336fa5792","X-Gitea-Event":"repository","X-Gitea-Event-Type":"repository","X-Gitea-Signature":"","X-Gogs-Delivery":"9d8bad17-a96d-4555-bab8-07d336fa5792","X-Gogs-Event":"repository","X-Gogs-Event-Type":"repository","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84625fc319c55e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 00:52:09 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=aLOcr7NnbpJs%2F9EXnq6I6%2B%2F%2B9XXaBoSsRYAGjEYS1wQYe5MSMBrqZgBonpg5Z87ouWPSz5q%2BG8gCK%2BWXLRxz4xg5Uv8oo5fq%2BseYO%2BuZb1JWfsznqQmVVwfjOrNE\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=7a1b3abeb40911eea8c72aefc8414a83; Expires=Sun, 14-Jan-2029 00:52:09 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=7a1b3abeb40911eea8c72aefc8414a8362ed33ffef979e5a80cb1346f42a502de64496a4221f0c7c99701c58eff204c8; Expires=Sun, 14-Jan-2029 00:52:09 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=35d96b4446820cc0a67cf44b3c3a9ff71e3f3c93-1705366329; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=gPorvXlFuJS87Ou1VqvYNfA5e3pfxACscboO6sWmf3M-1705366329249-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705366330","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (903, 1, '38079236-3b9d-44d5-9a7b-c59b6846e15c', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[eCabinet/admin] Repository created",
      "description": "",
      "url": "https://git.gdtsolutions.vn/eCabinet/admin",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "lhngoc",
        "url": "https://git.gdtsolutions.vn/lhngoc",
        "icon_url": "https://git.gdtsolutions.vn/avatars/51fb7a1b5abc6465f0237197e57ec12f5d9f4aac5d951fc8d53422b7397b6287"
      },
      "fields": null
    }
  ]
}', 'repository', true, 1705366278843015100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"38079236-3b9d-44d5-9a7b-c59b6846e15c","X-GitHub-Event":"repository","X-GitHub-Event-Type":"repository","X-Gitea-Delivery":"38079236-3b9d-44d5-9a7b-c59b6846e15c","X-Gitea-Event":"repository","X-Gitea-Event-Type":"repository","X-Gitea-Signature":"","X-Gogs-Delivery":"38079236-3b9d-44d5-9a7b-c59b6846e15c","X-Gogs-Event":"repository","X-Gogs-Event-Type":"repository","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84625e852d295e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 00:51:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=c91bwtHI45LyHswS9f0sI93p7oKmS60CGQMWLT%2BVGc%2FGsn08dgexqiXnFG2EsgEIPqIbBtjl3C4vtFHEOH2nOiFLE1DpJoz%2BZU7cLbBamrgOnzup91h6o5d5XFtr\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5c0834beb40911ee9222c66384e17581; Expires=Sun, 14-Jan-2029 00:51:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5c0834beb40911ee9222c66384e1758186c5ebd9863fe297c253232179419ecd61d49d6360d2e809eb8d84e7f0461dcf; Expires=Sun, 14-Jan-2029 00:51:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1534d6711b0be7846d8c80d430aa60c0b9cf3e3c-1705366278; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=PlxWZgTXVnjgq0msAoTDrjupLTDSSKBq4Ek4DLxN_0g-1705366278792-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705366279","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (846, 1, '222bb2af-7f66-4d24-bbac-a0b986f2183d', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/110/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/110/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705193773929409300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"222bb2af-7f66-4d24-bbac-a0b986f2183d","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"222bb2af-7f66-4d24-bbac-a0b986f2183d","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"222bb2af-7f66-4d24-bbac-a0b986f2183d","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8451eafc8fe05e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 00:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=sKJBcKtS7MliFpj0%2F9Sg9QhypWnKXeBIRKClHkG7MYkD92IFgS8TPu7JZ4dhh4BfER9k%2Fzqp7Cm6N%2FgfoxG87X90iquSf1aEMl%2Fs7Wb6kyJD%2BuJB0cXf7AcMQIss\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b71c5a9eb27711eeadaef6ae5b42f42d; Expires=Fri, 12-Jan-2029 00:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b71c5a9eb27711eeadaef6ae5b42f42d8463710ffd3f03cf91e43e5f1de80d93f7005aca4272c2c0860e155020263d30; Expires=Fri, 12-Jan-2029 00:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=54b0950a9939813bfe4def9819cd0284c357630a-1705193773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=D19LPY0vMJjNBEQGPO6O0gKrtNBhHTyOVpP59wTdKGg-1705193773910-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705193775","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (845, 1, '77d59857-411b-4044-bdcf-a63e972a993d', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/109/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/109/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705193773507227700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"77d59857-411b-4044-bdcf-a63e972a993d","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"77d59857-411b-4044-bdcf-a63e972a993d","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"77d59857-411b-4044-bdcf-a63e972a993d","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8451eafa2ec35e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 00:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=FX5r343u0A63h3%2BXF8qfS0olJMkjIMLQvjclz1w8zcwe43XFXNS88ioxrOcMf%2BIeWYkHoE30OoOs8hO3UQBSLjmrLP0RVhw2hd%2Bh%2FisH89Uh9HWo0r0odasjniFg\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b6dbcb78b27711ee8c662a1cb95f86bf; Expires=Fri, 12-Jan-2029 00:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b6dbcb78b27711ee8c662a1cb95f86bf4157bb8c5a5e91e7ea4256f486c097e30c4ba45f31cdedb615f53ba947cb4db0; Expires=Fri, 12-Jan-2029 00:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=54b0950a9939813bfe4def9819cd0284c357630a-1705193773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=SsvskWesjuAHsT5Usaawz03PFYr4J0GFDOuK7p6nbo4-1705193773488-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705193774","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (847, 1, '39bfa69a-fa71-486f-8b03-ac5e3f6e7ddb', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/111/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/111/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705193774308940600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"39bfa69a-fa71-486f-8b03-ac5e3f6e7ddb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"39bfa69a-fa71-486f-8b03-ac5e3f6e7ddb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"39bfa69a-fa71-486f-8b03-ac5e3f6e7ddb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8451eaff28c15e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 00:56:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=o0%2Fb1fQajEZ5rUc1PaqjLeMclwKLoXsRWg2dJbVSuPJ0XbvOw%2F%2Fy3n4OD4QuMObGlE7cQhEkLEW6qdsMqqURMcnH2jFddZfxsKCL0AFtFThXnp7gKnQ9hBoszzTf\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b7563674b27711eebb1cb2f6ae5c622d; Expires=Fri, 12-Jan-2029 00:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b7563674b27711eebb1cb2f6ae5c622d25264fe2867ba5b6618f4c236cd73be07018dc73d34c2b85bd0961890af053fe; Expires=Fri, 12-Jan-2029 00:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1b84d2fed152a835bc02216017ce111cbc07e659-1705193774; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=WkmqutAi_aTbftG65M2FJwhDsDsEgP6SOri5SEclps8-1705193774289-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705193775","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (905, 1, 'e1a2e5e3-20fc-4c6e-84b2-3c549078d7ca', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[eCabinet/mobile] Repository created",
      "description": "",
      "url": "https://git.gdtsolutions.vn/eCabinet/mobile",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "lhngoc",
        "url": "https://git.gdtsolutions.vn/lhngoc",
        "icon_url": "https://git.gdtsolutions.vn/avatars/51fb7a1b5abc6465f0237197e57ec12f5d9f4aac5d951fc8d53422b7397b6287"
      },
      "fields": null
    }
  ]
}', 'repository', true, 1705366922903976100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e1a2e5e3-20fc-4c6e-84b2-3c549078d7ca","X-GitHub-Event":"repository","X-GitHub-Event-Type":"repository","X-Gitea-Delivery":"e1a2e5e3-20fc-4c6e-84b2-3c549078d7ca","X-Gitea-Event":"repository","X-Gitea-Event-Type":"repository","X-Gitea-Signature":"","X-Gogs-Delivery":"e1a2e5e3-20fc-4c6e-84b2-3c549078d7ca","X-Gogs-Event":"repository","X-Gogs-Event-Type":"repository","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84626e40d96b5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:02:02 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=NBTIybeWE1TG88MQrYliBNQu6eypUUyL57FfL9O8is9zoKWM8hKWogwKpAqkP%2BV%2B2BeHf2Iv7LAcjdBd8O37LaFvuXV43eRHqxTUaziw7jI6MqCSs11Y0CebSSOT\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=dbeef0a4b40a11eea9c7d6595ffbcd9c; Expires=Sun, 14-Jan-2029 01:02:02 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=dbeef0a4b40a11eea9c7d6595ffbcd9c8678b647be8cb4e8c1443c3d94a92c928368ac517a629b4f8c032d45c86c8487; Expires=Sun, 14-Jan-2029 01:02:02 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e983ec8fe8c343d0140ae6c77cd3507fb6fbf44f-1705366922; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=1KRmK16zIo5UZfWH.oHTvwa.FNVvdpyuEu6Im4p04KI-1705366922871-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705366923","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1123, 1, '56dcc4bb-7fb8-46e0-988b-9a783354b7c0', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/24/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/24/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705604918882568700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"56dcc4bb-7fb8-46e0-988b-9a783354b7c0","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"56dcc4bb-7fb8-46e0-988b-9a783354b7c0","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"56dcc4bb-7fb8-46e0-988b-9a783354b7c0","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920b43e2e5cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=MQRZ8HDBQ97XxwrhzalubvAhMzUHOsc4VRj7Sr3Te2hVJ%2B3gBrQmPejbt4kfW4tJ6eOxXy7LSVLFsk2snFOjl9Cu5tWwnggp3Stf618eYQG44xOfx87mixozwkEX\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fc94eadab63411ee99696a056392ddd6; Expires=Tue, 16-Jan-2029 19:08:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fc94eadab63411ee99696a056392ddd6ae833d0542a52474c86c56d0cfd79474c333a0826207e3b73b8651623e9377a8; Expires=Tue, 16-Jan-2029 19:08:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b0430083c284c3dd0cf80e4b130b9fdcb8bf41b1-1705604918; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=CxmfsFjSOhBxFAOqI3KmPg6od74PTX1YSsnOgta5PVk-1705604918837-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604920","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1011, 1, 'dbd37521-c95e-4af7-8f6a-b455705b86fb', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[9993458](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/99934589e07a2e5021fb88d8e95cd0701a3c3d8f) Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108 - hungthinhne\n[8f0bc90](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8) fix gdnn - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/8151ab7ce5fcfdf01ceb05db6de7cea9190aff45...99934589e07a2e5021fb88d8e95cd0701a3c3d8f",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705458438644104600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"dbd37521-c95e-4af7-8f6a-b455705b86fb","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"dbd37521-c95e-4af7-8f6a-b455705b86fb","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"dbd37521-c95e-4af7-8f6a-b455705b86fb","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b2886c9bd5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:27:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=yfHN%2FUQabLqaD7urubnCzr%2Bh%2Brjr4Nde1VZA%2FxsOjtLPFulOonHvTJqvmxzyiCYL3DGz6FQAzHuDoPiq%2B5PCdvpAmtthT%2B43qdCt3Uh1oo4Zxb9his8okzywEiEK\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ef920814b4df11eeb00dba83cb99b81e; Expires=Mon, 15-Jan-2029 02:27:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ef920814b4df11eeb00dba83cb99b81eba4027aca8ec67072b0ea2e6cb5c17f07866987163bb983f2d6f025f4a3c884c; Expires=Mon, 15-Jan-2029 02:27:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a140baaea124a673fc88f463e6278894dd7ab897-1705458438; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=RSTWxUNhnWFd3gmRiTcg5sEKaXM_4qOQDNI5AANf71s-1705458438623-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705458439","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (848, 1, '2f598e3b-6de4-41ef-bf14-742d355f01f9', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/111/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/111/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705193774671445400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"2f598e3b-6de4-41ef-bf14-742d355f01f9","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"2f598e3b-6de4-41ef-bf14-742d355f01f9","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"2f598e3b-6de4-41ef-bf14-742d355f01f9","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8451eb01895d5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 00:56:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=cefzP8D2eKVLaqy91QMpv2geZBKEKh2zgDQripz6bpQtIDPUmzWJII7OL3zmfUMYYSJLpWHh3c0h%2FuD7Rn1X3TC34wXnJ21OMIaY%2FCUWrDGZVQPSBjWQgPUz37vs\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b78db68ab27711ee9e6ef6ae5b42f42d; Expires=Fri, 12-Jan-2029 00:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b78db68ab27711ee9e6ef6ae5b42f42d66beadb1d905dd70fd44cc626edf4a5362a20eeed96ac4ab38f479e2fe25f116; Expires=Fri, 12-Jan-2029 00:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1b84d2fed152a835bc02216017ce111cbc07e659-1705193774; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=uZuser5J3OQI4UlYtmEPWM_7y4qrCT6bdeAIEOWzX7k-1705193774653-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705193775","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (906, 1, '7168c219-36f6-4aa1-bc38-b0438a6bffb4', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[khieu-nai/admin] branch dev-thinh created",
      "description": "",
      "url": "https://git.gdtsolutions.vn/khieu-nai/admin/src/dev-thinh",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'create', true, 1705368636843724400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7168c219-36f6-4aa1-bc38-b0438a6bffb4","X-GitHub-Event":"create","X-GitHub-Event-Type":"create","X-Gitea-Delivery":"7168c219-36f6-4aa1-bc38-b0438a6bffb4","X-Gitea-Event":"create","X-Gitea-Event-Type":"create","X-Gitea-Signature":"","X-Gogs-Delivery":"7168c219-36f6-4aa1-bc38-b0438a6bffb4","X-Gogs-Event":"create","X-Gogs-Event-Type":"create","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84629818fea05e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:30:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=bntaab4HtlEq6bxqlbsgTijsGn74vO83DamsfxZ9UywuBDRCyB74TQwNgm5RBfMnjtLeFd%2BDa6Oupl4ZGZF7TPNwOqaR260OC721F15IBjHdCUtYye2G9oWsckPM\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=d985a34ab40e11eea814725130698809; Expires=Sun, 14-Jan-2029 01:30:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=d985a34ab40e11eea814725130698809dcdd2df0ea8acfd8d2d4bbfe9993bba98c4b79f9726f37b803aac1c6bd833c0b; Expires=Sun, 14-Jan-2029 01:30:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=594289a435e84f6821a65b4919fe7fd2232359a3-1705368636; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ysECrVE39MYOh.FA1DmVPy0qeBJQxbK.PgU5YkQnFDQ-1705368636812-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705368637","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (850, 1, 'c36710ae-c909-4c54-a6dd-54506cbb14fb', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/admin] tag refs/merge-requests/2/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/admin/src/refs/merge-requests/2/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705193775748218800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c36710ae-c909-4c54-a6dd-54506cbb14fb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c36710ae-c909-4c54-a6dd-54506cbb14fb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c36710ae-c909-4c54-a6dd-54506cbb14fb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8451eb07eaf05e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 00:56:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=kInBZr9BamvX5PUZz8HI1odLCeNH9YAGMC7CFXWHv%2FEDh7PWjFndXYgKgRqBlrsd1fhW0ahADj6qjusPz%2Fy8A5opMd%2BpjuRIcmqOjT9R4kebn7NtO%2FKteWgYI6yV\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b831584eb27711ee9f728a072c3c2665; Expires=Fri, 12-Jan-2029 00:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b831584eb27711ee9f728a072c3c26651e330f9e8090664f97c47267e0c9b80ce2ae9d27e4a4bd32b3a2ef390b9b8438; Expires=Fri, 12-Jan-2029 00:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=df3a9460d770db838dc5a1087b6a946f271db99e-1705193775; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ukKPYt4aelClmU6NYzXAt7X_RusC0t0srBELBSruxN4-1705193775729-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705193776","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (849, 1, 'abdf2efd-2340-47bc-a198-43b0d9558d31', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/admin] tag refs/merge-requests/2/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/admin/src/refs/merge-requests/2/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705193775330144900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"abdf2efd-2340-47bc-a198-43b0d9558d31","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"abdf2efd-2340-47bc-a198-43b0d9558d31","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"abdf2efd-2340-47bc-a198-43b0d9558d31","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8451eb055a235e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 00:56:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=UhJFf%2FsiGjeeQ8UZjWy1%2FMT%2FShzYb55SkigLN605ZhPiQbniZJZUi8r5AttS3ia1C4icpOAvQQV36xw7ZDihAOUurnPaf2x4bshK92a4YIlFqDxy%2F3zg6BfLa3ji\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b7f1e4f2b27711eeb38f465adf3428fb; Expires=Fri, 12-Jan-2029 00:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b7f1e4f2b27711eeb38f465adf3428fba9be9e6bd243383a3fba93de9f3af1cb5e9ea7d38ce46b19eb8a281f9f1d8848; Expires=Fri, 12-Jan-2029 00:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=df3a9460d770db838dc5a1087b6a946f271db99e-1705193775; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=O6KdLMUlI9GxkViAP8QyY2OnVCOTdhasRctTm0xpDWM-1705193775310-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705193776","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1103, 1, 'b265b285-b27f-4aae-9bad-6ceff78a7304', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/41/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/41/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575515134269400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b265b285-b27f-4aae-9bad-6ceff78a7304","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b265b285-b27f-4aae-9bad-6ceff78a7304","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b265b285-b27f-4aae-9bad-6ceff78a7304","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652d6fb025e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=rx%2B0nfBDbrEcJqkd%2B4W6PTKCEGCsdz5Kpw%2BcWbwu%2FqOvhM3uwzYPHs1iLrxJaOrXwFzbNxAYr2UjNwBjgE84tgsln53QuFo44wTPVF7o7nvQhCy4TdvIqbCQYlTR\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=869767deb5f011eeb5bd2ef1960fe1ba; Expires=Tue, 16-Jan-2029 10:58:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=869767deb5f011eeb5bd2ef1960fe1ba7e7f02fbe8a4556ffa973fcf2ab0564dc96af6fd0c216e614677f6542fb41936; Expires=Tue, 16-Jan-2029 10:58:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=489313edd043864583f510989b87c9b49a3a1ccd-1705575515; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=VNZiVvFMykZvv9BwpQCp8T88FhAeKvz.5hxTRz3mBFU-1705575515104-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705575516","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1104, 1, '7307d394-7b72-4a66-9c70-ebb2eb6758f9', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/42/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/42/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575515514761600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7307d394-7b72-4a66-9c70-ebb2eb6758f9","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"7307d394-7b72-4a66-9c70-ebb2eb6758f9","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"7307d394-7b72-4a66-9c70-ebb2eb6758f9","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652d9ab7a5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=iGBrKwR%2F%2B8c9MpjAPQOao3l%2FoTWHAenLlouYhfAO1E%2BlDta1MMUlaT4Yf%2FxunxQwm77zBnWUtNsbNpcK5etV%2FWxSE3yW2%2BRnZ3J7KD7%2FncDtDS%2B%2B0NeuJl3ea4G3\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=86d1b29ab5f011ee8102c6320791c346; Expires=Tue, 16-Jan-2029 10:58:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=86d1b29ab5f011ee8102c6320791c34665c33b96fdd26a45047ef95bd42b4d0c8dc1e8f5c0f9fdaf77d513eef16b28de; Expires=Tue, 16-Jan-2029 10:58:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=489313edd043864583f510989b87c9b49a3a1ccd-1705575515; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ooLGYGPlTAJ5bLZmqA_JQVsEZT9Ydh7yAbCxU0SLpBY-1705575515485-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575518","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (853, 1, '66db32be-ef73-420b-bad8-78a3eced8114', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #91 add menu thong bao",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705208015423187800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"66db32be-ef73-420b-bad8-78a3eced8114","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"66db32be-ef73-420b-bad8-78a3eced8114","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"66db32be-ef73-420b-bad8-78a3eced8114","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845346ade8a85e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 04:53:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=f4ohHyHNPlzw79tPRTPwWziafPUtSKE3w1jDRx7uzrQxNdhx6%2FplNStUYeayEor3LVg9Wa5y5aXk1gvinVqlmJE4P7rBqEhHLpO4V07cuiE7rRC2xce2gtRJV1At\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=dfb3cdaeb29811ee8b552aa5ff753884; Expires=Fri, 12-Jan-2029 04:53:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=dfb3cdaeb29811ee8b552aa5ff753884f410aab79fad9ebe461884ba69bbf46d30213963578bbab8ce33ff65f45eadcb; Expires=Fri, 12-Jan-2029 04:53:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=df8a196c5a2f8eca5c8a14f29106407153ccef14-1705208015; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=7k6S1gbyUtvFhJwvgNHe6_VvyPYY6HVGfC2tMFHkC9w-1705208015404-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705208016","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (851, 1, '1512b925-8d0f-4630-b4df-a5c1d60b1540', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[11ad5c0](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1) add menu thong bao - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705207777131300900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1512b925-8d0f-4630-b4df-a5c1d60b1540","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"1512b925-8d0f-4630-b4df-a5c1d60b1540","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"1512b925-8d0f-4630-b4df-a5c1d60b1540","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845340dcc9e55e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 04:49:37 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=qBZDcJXs7zCFYbreV9OjKkXx2djHf14yXN%2BeAq9PwzxWJ%2BqEbLBMNg%2F0bzZlzkEihYeaRkXzK1%2BWF%2BSNjEvMV7gpYiGcumJ7UEJyT9NRka6r%2BARfKQJoVNxOSUM3\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=51aafcdab29811ee8af692972145665e; Expires=Fri, 12-Jan-2029 04:49:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=51aafcdab29811ee8af692972145665e3df112c91f07c801c1b473b9fbf6be5513e259816ad14fa0612fbcb87a64b1d0; Expires=Fri, 12-Jan-2029 04:49:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1bb06b9c6aa94d308b7d03b15a1ef518ec1b13db-1705207777; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=pjtYoAKpsAL0dQQZsjVBA3TpBojzOADsDVEHbXA88Y8-1705207777112-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705207778","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (907, 1, '5215d015-1484-49fc-aad6-ad605f4f9de6', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[122c6ba](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/122c6ba57907664a26aac6393e0880e02d8d2610) change login - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/122c6ba57907664a26aac6393e0880e02d8d2610",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705369944628445100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5215d015-1484-49fc-aad6-ad605f4f9de6","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"5215d015-1484-49fc-aad6-ad605f4f9de6","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"5215d015-1484-49fc-aad6-ad605f4f9de6","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462b806ff4f5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:52:24 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fBAYSennY1AMG9%2BqiQiw9OSMtWXJ5Cc1LOPb0Rvy9HJ2gCTFSv92xognnMfC0pPRWl8JXvxpuLIP0Bnv0MV0Grh3D0N4JQo8WDjry6J35rXDoxVPB0cnmMeKxTKs\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e506eeceb41111ee965a1ada573ed41d; Expires=Sun, 14-Jan-2029 01:52:24 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e506eeceb41111ee965a1ada573ed41d02e6aca23ff4376f1132ef2977af59f0f8e053cde7dce3cb7581244bb641b87b; Expires=Sun, 14-Jan-2029 01:52:24 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=88334c4adf95c55d1bc6c6672cb09146c054dea7-1705369944; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=wt1c2auADX8OWQYEefQ0qgUHu.geIWLIWeAFiVSOlb8-1705369944605-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705369945","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1012, 1, '0d9f8e91-b4d5-4a8c-b6de-e6ce23af8bcb', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[07dd788](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/07dd78834b58c799d0db70d99f863dda643572aa) fĩ loi info nld - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/07dd78834b58c799d0db70d99f863dda643572aa",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705463096619610200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"0d9f8e91-b4d5-4a8c-b6de-e6ce23af8bcb","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"0d9f8e91-b4d5-4a8c-b6de-e6ce23af8bcb","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"0d9f8e91-b4d5-4a8c-b6de-e6ce23af8bcb","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b9a3bbf0f5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 03:44:56 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=EBnRiUdsQu5eMQKc2r%2FMxRTZX4RiR3i7hO8lzn%2BlbIDDh5Tv6xTfbmWzrLjprZ346%2FxO83uM%2BVAG4%2B5pFK%2BqH%2BlJ5RhPKdWkIcb8Io%2BizXF8KwA0DEkh7ogFVSep\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c7ef3718b4ea11eebcb9724a245f1f0c; Expires=Mon, 15-Jan-2029 03:44:56 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c7ef3718b4ea11eebcb9724a245f1f0cedd6dbc7a78b1b6bcc49673f91cda9cedfb7e31f0a02c9649d4f2e5c1441d1dd; Expires=Mon, 15-Jan-2029 03:44:56 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1b11ecc136a87023187dc5181ab689cbab2fc7e2-1705463096; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=7IP.73vXaKLb.rgLb15WkZe2pWynlg2HtIdz5ZFujy0-1705463096588-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705463097","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1128, 1, 'ec3e59d7-2111-483b-ae81-143eea55fce4', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/27/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/27/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705604921223269800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ec3e59d7-2111-483b-ae81-143eea55fce4","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"ec3e59d7-2111-483b-ae81-143eea55fce4","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"ec3e59d7-2111-483b-ae81-143eea55fce4","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920c2ae815cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:41 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=PaW7vCLSyQYzQUIeTzEqlVPKQJfecwai%2BOZjITqOhSJSCA7nIQ5cLV70dvyjyNvxFEqc%2Fbju8WB4c6xJpyLLaBDVS5F3Is4Asrv3GJOMYHOBZED4EAf8T2anaxiB\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fdfa3ea2b63411ee9ddb5648c341bb60; Expires=Tue, 16-Jan-2029 19:08:41 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fdfa3ea2b63411ee9ddb5648c341bb605a4ccbc5333dc57a725209d31f9e629851661eb4dfed9540def130af675846f2; Expires=Tue, 16-Jan-2029 19:08:41 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=468deb9d6b013ea29e22254acc336f4d25dbb39e-1705604921; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=KnNjDcpXTuWztEALbZ11KDJ7Eu5rScMknl8P4dEH6Yg-1705604921178-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604922","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1129, 1, '00c47700-6a50-426e-8669-2bf60e75b00d', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/27/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/27/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705604921613643800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"00c47700-6a50-426e-8669-2bf60e75b00d","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"00c47700-6a50-426e-8669-2bf60e75b00d","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"00c47700-6a50-426e-8669-2bf60e75b00d","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920c5d9ad5cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:41 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=GDbD8j0Y4mCaLJnZjF%2FTw5demr8rG0FLOWdK7nEaeAA7YjCXEPSVMVN8xZjqd%2FQ1iRAqZ%2FijTslWhJb5QpTr8VTKgpjCKyChGm0TNJ7tC8d1EWf%2BwqrqaSiPkkD%2B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fe35e344b63411eeb4e7ea086674d6f0; Expires=Tue, 16-Jan-2029 19:08:41 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fe35e344b63411eeb4e7ea086674d6f061a4bbc3dd4f7f56668b8c9c564a4094ed05ce382defed0503e06dcdeab0d739; Expires=Tue, 16-Jan-2029 19:08:41 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=468deb9d6b013ea29e22254acc336f4d25dbb39e-1705604921; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=sACBHD2z.1DDs0KSyiRwcTwJYIOG3lEyr95mPsz_wgI-1705604921568-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604922","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (908, 1, 'c76498a8-6749-4e23-9f95-88b2963ec04c', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #99 change login",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705369969773784500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c76498a8-6749-4e23-9f95-88b2963ec04c","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"c76498a8-6749-4e23-9f95-88b2963ec04c","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"c76498a8-6749-4e23-9f95-88b2963ec04c","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462b8a4dbdf5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:52:49 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Uz1yZsvHIOyKgtjm66%2Fl3kKfBZScu1ey03EhprJGDd8B5DOEhB6wo3%2BkOaoOlGNe5bLvQVmEou9FgceV5haB4GPJqMAGfR0E03IMgOnNLLYrNHwilu0Kl0lHbPmg\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=f402a580b41111eea97dae81745b42dc; Expires=Sun, 14-Jan-2029 01:52:49 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=f402a580b41111eea97dae81745b42dc986cf44af68ce9d17eedef2a92f5429f7bc3967528d7304bb5a0154e66cb485a; Expires=Sun, 14-Jan-2029 01:52:49 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=c0c318c7547f791cae39c923687e7f0ae1a86fec-1705369969; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=SFvBU1BpuH1YWoJn2ecJzoAin_XyWdp.LsoSnr4voPM-1705369969750-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705369970","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1013, 1, 'ced1c437-d11f-4460-baea-f05c0ad344f9', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[e3fb0e3](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/e3fb0e313b51381d7d07b910bfed3963036f3119) fix info nld - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/e3fb0e313b51381d7d07b910bfed3963036f3119",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705463113055983200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ced1c437-d11f-4460-baea-f05c0ad344f9","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"ced1c437-d11f-4460-baea-f05c0ad344f9","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"ced1c437-d11f-4460-baea-f05c0ad344f9","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b9aa62db25e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 03:45:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=VSZivZY%2FUytobVJdKBGfnSGNK9f2MjKf38Q1AsgErFcYQ5E33C93AyMCbigik1kbE5eBQRyurNOZ9eVKiNtlwATbr3bOPWcgt2CicD7o2V5nRpq0z%2FbmEoxPW8s%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=d1bb38dcb4ea11eebbdb7ee961ac5d4c; Expires=Mon, 15-Jan-2029 03:45:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=d1bb38dcb4ea11eebbdb7ee961ac5d4cfe0c12558acc725f24c06a0f1bda452b770e560e49e7778b5c28d1c2718cb538; Expires=Mon, 15-Jan-2029 03:45:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8dccfdf55322340274bee304ac95a3c31935c9d7-1705463113; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=OBTN42lrhxsJT1H.8T9vnONjHMNoUwflUXvaAWlL8kU-1705463113025-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705463114","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (814, 1, '80e0aa71-c65a-4ae3-a86e-6b1f5c5e81f1', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/123/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/123/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705134973198951000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"80e0aa71-c65a-4ae3-a86e-6b1f5c5e81f1","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"80e0aa71-c65a-4ae3-a86e-6b1f5c5e81f1","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"80e0aa71-c65a-4ae3-a86e-6b1f5c5e81f1","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844c4f6b386c5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 08:36:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Ca73S01%2FTk8Uv6lE%2BpC9t%2F7bL0qar2U%2BRrhWPNcaXbdB6ziexF5OpxhVBCJ1WB%2BIQSN8B9JDnoYa4F9BSOLUQaCxZkOTrdK7zWrzDufyceiAwVlBJC8IO%2Fku6%2F2O\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cf2636b6b1ee11ee9633b2f6ae5c622d; Expires=Thu, 11-Jan-2029 08:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cf2636b6b1ee11ee9633b2f6ae5c622d70d3a5b0c0f2c02bb80bb8006308e40d0f34f6c61b33758afb0d2db4d4367a7a; Expires=Thu, 11-Jan-2029 08:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=982f74dca252a8a1f5c5d4130bedcaf9a81135c2-1705134973; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=cZNHLQr.4CKYTJ_EAbGEDCH88cSn7v1u7jfmZeKsrPI-1705134973188-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705134974","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1131, 1, 'da8aa58a-f677-4c1b-ab51-a593d16be7be', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/28/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/28/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705604922866228900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"da8aa58a-f677-4c1b-ab51-a593d16be7be","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"da8aa58a-f677-4c1b-ab51-a593d16be7be","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"da8aa58a-f677-4c1b-ab51-a593d16be7be","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920cd09665cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:42 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=atfl7v5%2FxPD%2Bi%2BExM3Wu6DqDbFBsXsZZAIJWCCT8%2FnsKJoDku9SeVZaK1gJmYumf2l%2Fr7C83dxPeccIJHq2EFLJnN60AfpJ40UDQdzcLPxRpestNIZcTDv2O45Oc\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fef4bf58b63411ee9d983e3f533a43e6; Expires=Tue, 16-Jan-2029 19:08:42 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fef4bf58b63411ee9d983e3f533a43e607b987227b247f153402ec65190a9c8b9c606092f58cbb07e5cb662db528215a; Expires=Tue, 16-Jan-2029 19:08:42 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1300305a62346cd53ee329e85017c6f2a1badc74-1705604922; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=QSDyDihyW2LC05rGrlbDfEnyeUUrp4i5VHhWwBivb_o-1705604922821-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604923","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1134, 1, '167f6324-4414-461f-b91f-e19d9b42df8f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/30/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/30/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705604924356824500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"167f6324-4414-461f-b91f-e19d9b42df8f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"167f6324-4414-461f-b91f-e19d9b42df8f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"167f6324-4414-461f-b91f-e19d9b42df8f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920d64bec5cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:44 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=EdKbPo6EFJsUCX3aC0VaiNLEf4dOZ3cnescatD3M2qLghdl%2FqB8bjhghAX02FzkanU5vAlM2lfuH5ve61X%2Bx0isIf0%2F9Aecjb1NGy0c9g414Y9CU%2B1%2BVjoBB9hRL\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ffd88120b63411eeb1f3eab035d06da5; Expires=Tue, 16-Jan-2029 19:08:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ffd88120b63411eeb1f3eab035d06da5898e5dfd0940486ed118cfb295e65607d83d1dd45e0ffb3ab0f762dc15fbe070; Expires=Tue, 16-Jan-2029 19:08:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=663b3955d49173ba3a80aaa2b099f88748185bfc-1705604924; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=3UR_NKBV3mkcuYBDPE5CykF1IyPlShm0B.GSwwQjFsk-1705604924313-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604925","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1135, 1, '324c702d-580b-46c0-a619-c1a97bd3e38f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/30/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/30/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705604924893187700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"324c702d-580b-46c0-a619-c1a97bd3e38f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"324c702d-580b-46c0-a619-c1a97bd3e38f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"324c702d-580b-46c0-a619-c1a97bd3e38f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920d97f625cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:44 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=CKHKxhcp16vAO1QKTKoUibcrwuwm4LDOL8bgyD3lp3ZxReD9OoyllEWygwDhbE3B7AgnR2bWF9UEAr2eS9AS5r7w3tXAtWortwm9dmvM4Iz9O67GMPGvyzbbH1sd\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=0029e7feb63511eeb528e60aab2d176d; Expires=Tue, 16-Jan-2029 19:08:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=0029e7feb63511eeb528e60aab2d176dea4b31c1355f7cc3383287e27a40f9a86e4772744ab71c00b619eae022127adb; Expires=Tue, 16-Jan-2029 19:08:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=663b3955d49173ba3a80aaa2b099f88748185bfc-1705604924; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=.d7AgjUve8OmL2XKU6hVuxVSq.mJeLCyyv0df0zcrYc-1705604924847-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604925","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1118, 1, 'de15a64e-ade2-4540-bd02-049564321a92', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/22/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/22/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705604916429587400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"de15a64e-ade2-4540-bd02-049564321a92","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"de15a64e-ade2-4540-bd02-049564321a92","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"de15a64e-ade2-4540-bd02-049564321a92","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920a26bb15cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fNEqUiHtqawovA2yHvLwmvU8Dk%2FU4N%2B%2Bv%2F5aGEvYYhigcb76%2Br6fQDV81oGAKnnKfXehWAL4evhzzRBUcIZn2JuHuP9Rxz%2FOc3ZG1RojciDp%2FO%2BvniZPnEgQ32h%2B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fb1e8120b63411ee99d3b6209d6b78f1; Expires=Tue, 16-Jan-2029 19:08:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fb1e8120b63411ee99d3b6209d6b78f1792ea89f2a0193356fa0639ee36b7359c95e52596eba05decaa9a2f6ce5e18f9; Expires=Tue, 16-Jan-2029 19:08:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ec3b325b8b37cfd94a9dd345d15a31592aa0a6be-1705604916; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=oSpxvJIQIRr79_tODsshU8A1CrnqLfVRNWiAV6UrqSk-1705604916384-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604917","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1119, 1, '77631600-4fb7-42ca-9f23-0b29afd0ede2', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/22/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/22/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705604916941113300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"77631600-4fb7-42ca-9f23-0b29afd0ede2","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"77631600-4fb7-42ca-9f23-0b29afd0ede2","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"77631600-4fb7-42ca-9f23-0b29afd0ede2","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920a7f8ed5cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=yNjynnt2vibe2tRAJYYQ8zo6mYwuCaazxF3mMnZIayVMyYpgJW0D7fie4guFlOanxn7jN6h6HGQpGp%2F61fgn6gnxnIYGPrYVPECFr0s%2BCFCY%2FSLBoBBZenc%2FuPa4\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fb6c8eb0b63411eebf4046b32fad4c9e; Expires=Tue, 16-Jan-2029 19:08:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fb6c8eb0b63411eebf4046b32fad4c9ef7f6209c58f154fbd5eeee76a1716a6f821ca0277d4fc1df885823ece5804c0a; Expires=Tue, 16-Jan-2029 19:08:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ec3b325b8b37cfd94a9dd345d15a31592aa0a6be-1705604916; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=V78TlVm_YCU6STZrj56skTh7zw8xOSYUQ7IsYMVsVYI-1705604916895-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604918","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (852, 1, '3136be74-2c0e-4641-9375-cc687504fee6', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #91 add menu thong bao",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705207984337163400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3136be74-2c0e-4641-9375-cc687504fee6","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"3136be74-2c0e-4641-9375-cc687504fee6","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"3136be74-2c0e-4641-9375-cc687504fee6","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845345eb2a335e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 04:53:04 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=EI1AeEgG2vr4v8Yv%2FeKc9y3o2pzROrAf9B9kAGM2tm%2BS%2FmX6sWQdEurDXQPNQoaiLeqgXlpk5L5Olz7PPpUkkyRNOZDNXog%2BF9sC%2F7R3I3xbzfMFcywLJxECIN8%2B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cd2c3c5cb29811ee8f6a7e16d0383502; Expires=Fri, 12-Jan-2029 04:53:04 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cd2c3c5cb29811ee8f6a7e16d03835020052959344088f91838b0c9ea2a422df1043ada3bc7f98d9ef27e67ec8714b48; Expires=Fri, 12-Jan-2029 04:53:04 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cda29e2190ae903102763aaece81f5bb73e6efbe-1705207984; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=.un_NB0LKjL8yUZVxocinnWVAlkU8ipel.qpuTmBtko-1705207984317-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705207985","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1014, 1, 'd0285db0-6f72-4920-bb5c-9cb853259917', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #109 thinh",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705463152256302200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d0285db0-6f72-4920-bb5c-9cb853259917","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"d0285db0-6f72-4920-bb5c-9cb853259917","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"d0285db0-6f72-4920-bb5c-9cb853259917","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b9b9afc745e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 03:45:52 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=YxVo13jnwPQ3iKzGmLqZCJSUvB%2F5tAM64xdbPMHOTZVI9odWiQ2TCOlaGJNBkBell4QExh8I0s1aEV3Khlc065jRsMaD1f90xZKZTObidzQNSReBWbgfwbGZu3mK\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e91900c2b4ea11ee84792e67be318690; Expires=Mon, 15-Jan-2029 03:45:52 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e91900c2b4ea11ee84792e67be3186901f58a4f28bef5040f9a42729b2ce3a9ad423f814c60dfbb1267c008ee0d97cf6; Expires=Mon, 15-Jan-2029 03:45:52 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=51e965bf9a83c345c6aab228c6d21aa9170238b3-1705463152; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=9UCV84dTKJ8CurD3_Zd5olCoDTBto3N0sSdrS7NbJAU-1705463152226-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705463153","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1105, 1, '702b6d65-823c-4400-9696-17c2ed6ff666', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/42/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/42/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575515898656900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"702b6d65-823c-4400-9696-17c2ed6ff666","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"702b6d65-823c-4400-9696-17c2ed6ff666","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"702b6d65-823c-4400-9696-17c2ed6ff666","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652dc0bec5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fkC3JqEy%2FvHofxX7Ay60lF3vDhgz6GR1kzHED%2BXZrf81%2FqZFF9DWehEGSW%2Fd%2BA99iUro2tJEIWRCK9GSj1dNlWThMM6qHWVN8jrHBqftgIo7z%2Bkv%2FZOpCeoHn09O\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=870be6f4b5f011eea798ea7aae3f5f4e; Expires=Tue, 16-Jan-2029 10:58:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=870be6f4b5f011eea798ea7aae3f5f4ebb5b661b1d27628f157123eb6d6d3a3917c3402b40ce50820a16c80837483ee5; Expires=Tue, 16-Jan-2029 10:58:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=489313edd043864583f510989b87c9b49a3a1ccd-1705575515; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=773je7_8yMJSfFT59DjmuK2H3wdjBcc6OFeqGQeK05U-1705575515869-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575518","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1121, 1, 'c10306c6-616a-4891-b2cb-ee439c9394d1', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/23/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/23/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705604917908175900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c10306c6-616a-4891-b2cb-ee439c9394d1","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c10306c6-616a-4891-b2cb-ee439c9394d1","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c10306c6-616a-4891-b2cb-ee439c9394d1","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920ae6fba5cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:37 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=J5ZN7MeSWN9QGpNJ%2BWB%2BxckptxI3i4Guq2FXx5M6wd6g06%2Fk4M3aLe0Q3YcrNSZ7x3pTRZWqDkB%2BnzQlzQ%2FVl7xX9YhQ5tv%2Bnyeg0%2FPGyobmxh%2BtDGaZmAiJql3V\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fc00413cb63411eead4552f578155fce; Expires=Tue, 16-Jan-2029 19:08:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fc00413cb63411eead4552f578155fcee4044a95601d1d4456ed5a0f0dfd24bcdcee27d10708e027d50f4659c7267b58; Expires=Tue, 16-Jan-2029 19:08:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0f675e9ee5c6376fa052456d1221ffa35ce572d1-1705604917; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=mbXJ4auctnN6a_PnQc1LDZKAYiY4yY4vKCC4qkAZo7U-1705604917863-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604919","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (910, 1, '8adaa2b8-a439-4963-b4cf-5999e8adc39c', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[c94f864](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/c94f86451988d6cf98b90a9f0e74a88515b66f9a) Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99 - hungthinhne\n[122c6ba](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/122c6ba57907664a26aac6393e0880e02d8d2610) change login - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/ddb1e1f9c86e1477341fd41cae9b0350d5807140...c94f86451988d6cf98b90a9f0e74a88515b66f9a",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705369985236081400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"8adaa2b8-a439-4963-b4cf-5999e8adc39c","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"8adaa2b8-a439-4963-b4cf-5999e8adc39c","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"8adaa2b8-a439-4963-b4cf-5999e8adc39c","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462b90508295e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:53:05 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4qz6k6HPIE8aPrMXpH3PeFL7dH3KJEUXubNgL5ftOEfizeO0jgjcZIa6oafGVx6XnhrJPnnIt0sm%2BLZq7z9Nng9a6qIF%2BFxwVWDrCzIZDj8YCpQwxtMgxZxoD2k2\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fd38fb40b41111ee8438b2ea5e1f90bd; Expires=Sun, 14-Jan-2029 01:53:05 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fd38fb40b41111ee8438b2ea5e1f90bd2b598586fb3ad4258af1d327bb8b1c004a521f68bb239dffc4c1bf3189eaa6dc; Expires=Sun, 14-Jan-2029 01:53:05 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=9ac63c7198c9a8ffe00ad9cd0cd9ee295700a828-1705369985; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=UV2BQGTONEdyXwVn_48pOfcABL9FStm64lOlxig2e18-1705369985209-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705369986","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (794, 1, '13746a46-dd69-4bf1-bd3a-290eb78c0476', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[52c909b](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63) hidden kehoachdapheduyet - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705052702137463200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"13746a46-dd69-4bf1-bd3a-290eb78c0476","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"13746a46-dd69-4bf1-bd3a-290eb78c0476","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"13746a46-dd69-4bf1-bd3a-290eb78c0476","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844476d94ff75e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 09:45:02 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=AUYIVMKfOpba%2BykgZyYsvYe7xoJUrwdDAnHldukiRz0iWHmTnURxAX6dL%2Fc8czEljXFozCBBkqbIGBERLXr1z0c7EE0YjbfTdEFdktDnLFTYd9L8dIlxRdGmzafv\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=41c506b8b12f11ee8fbc5e96e0cb35c1; Expires=Wed, 10-Jan-2029 09:45:02 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=41c506b8b12f11ee8fbc5e96e0cb35c126d43e0a5e20a5093fd3595e1f54fcc1bc1cb214a7e5e019afeb6a5de17f6d51; Expires=Wed, 10-Jan-2029 09:45:02 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=16e4a214ef1a825d5f043100cdbd1ed7cb082937-1705052702; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=7HQZUakYlnUg9yCSly70Oe3CjxMlDcW9EmznM51mnU4-1705052702119-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705052703","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (990, 1, '9870e817-db9e-449f-a702-32930d3f9436', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/80/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/80/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458376206691100, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9870e817-db9e-449f-a702-32930d3f9436","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"9870e817-db9e-449f-a702-32930d3f9436","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"9870e817-db9e-449f-a702-32930d3f9436","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b27015c6a5e3b-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Wed, 17 Jan 2024 02:26:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=yUCBFF1f%2BlLLk3grthGbJoeB7u4M6drXjqjV442XXa1F%2BDpNR3f%2FMA9Z68ehWYtpxsIz8FWoK%2FYNBhadT1BKfPho27xQ61UxsbD4wg72u7f%2FLkXq0OR2Q%2FnwDmdd\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2089","Server":"cloudflare","Set-Cookie":"__dcfduid=ca5a7c2ab4df11ee98f52e2a7a6582de; Expires=Mon, 15-Jan-2029 02:26:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ca5a7c2ab4df11ee98f52e2a7a6582de5dc7ca5f39e9b809f873d68b6a728686539a85ceac27e7fcb34c70fd2466ea99; Expires=Mon, 15-Jan-2029 02:26:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0857e29f549ca84f5de42c0b917ad1fc8191b910-1705458376; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=T26DLyutLcYwIoatkVhLj.L.FC2vkSqBgbQkhjIwHx0-1705458376184-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458379","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (795, 1, '45259b54-ef90-400e-95cb-3cb66c3a961f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #90 hidden kehoachdapheduyet",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705052729121256700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"45259b54-ef90-400e-95cb-3cb66c3a961f","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"45259b54-ef90-400e-95cb-3cb66c3a961f","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"45259b54-ef90-400e-95cb-3cb66c3a961f","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844477824f905e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 09:45:29 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=zA%2BjZ0fftVrepC6%2Fpgb30P0JCauhZD%2FT11L9aWx6by%2FdAAgXoFfRuF05p2WQI8Psd5Q66l%2B0sP2kxzuWQ3jS1bQ1DJS%2BXWooAlrVCGNk1DGypR6TyheOUSVQY0Xd\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=51da7b1eb12f11ee919c66eb8e9a6333; Expires=Wed, 10-Jan-2029 09:45:28 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=51da7b1eb12f11ee919c66eb8e9a6333cc019f10afdcb8ed418d6b163de1fefd8d37334d36cbe854795f9fe9896ba3dd; Expires=Wed, 10-Jan-2029 09:45:28 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d6cdfd147024b6c847fbffb87948ca1d5a077ffc-1705052729; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=LUM1qkPllmVjLSKsktfIhcFF9JtxdpMk01gqKrm77Uc-1705052729102-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705052730","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (796, 1, '9b4ee144-773f-4324-aa06-56e7e94c4f1c', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #90 hidden kehoachdapheduyet",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705052744225702200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9b4ee144-773f-4324-aa06-56e7e94c4f1c","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"9b4ee144-773f-4324-aa06-56e7e94c4f1c","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"9b4ee144-773f-4324-aa06-56e7e94c4f1c","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844477e10d775e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 09:45:44 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=h%2FSUO%2F%2FTuIbxZgVU7OPM4KZRICxCqUM5Nrxos5HRjBUIpVNqlja2ESxGguQlRCgxuHUzPFeIPphq5MlwlOgvx5czEKXwynRaH9Qi5oe1u4m6%2BVXbncbzb3a9CdZb\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5adb6e80b12f11eeaabf367b405f8641; Expires=Wed, 10-Jan-2029 09:45:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5adb6e80b12f11eeaabf367b405f8641bf16cf11b1f9efee293d7ae95f9169415f1e1da469510a2d048442a8cfce8d7a; Expires=Wed, 10-Jan-2029 09:45:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3720796a4dce851f95be33b615bfff0787264a74-1705052744; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=U.UZY_EtdQPexdxAmP5naihIoHyI1avmalnwFRz_9Cg-1705052744207-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705052745","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (815, 1, '6736e12f-9807-4aed-ba55-5e756de23dbf', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/124/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/124/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705134973597988200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6736e12f-9807-4aed-ba55-5e756de23dbf","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"6736e12f-9807-4aed-ba55-5e756de23dbf","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"6736e12f-9807-4aed-ba55-5e756de23dbf","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844c4f6eb9265e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 08:36:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=NOFiPykX2pORDqOOgaKC6FFglUYY4VBjam4G7PKG50aZyrHuZc6eHiRN0EcLU%2Brul5cDn%2BnUdO7anE%2BIJFfUEAw1t9EJgTUU520r%2FQK7O%2F%2Fmhwf3h5KlqKx43D2Z\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cf6338c2b1ee11ee8af78a072c3c2665; Expires=Thu, 11-Jan-2029 08:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cf6338c2b1ee11ee8af78a072c3c266526934f05b18994cd94afbaa969db5737acec4a91055cc7491c1930bb61a4d3dc; Expires=Thu, 11-Jan-2029 08:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=982f74dca252a8a1f5c5d4130bedcaf9a81135c2-1705134973; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=1Bas1zq38Hz_OstOUXJ2bFv2w3k_ko.5.ziNPgiE5.I-1705134973588-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705134974","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1122, 1, 'dc1bb239-ac9f-4c8f-8951-ee2a68d8a114', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/24/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/24/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705604918394848900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"dc1bb239-ac9f-4c8f-8951-ee2a68d8a114","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"dc1bb239-ac9f-4c8f-8951-ee2a68d8a114","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"dc1bb239-ac9f-4c8f-8951-ee2a68d8a114","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920b13a895cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=JQGefjOmbBJteVm7qslp2u%2Fw56xOtl5m2OCuRI2fXNL5kWJK3%2FKLwNLGR4NdNZvCFdVbkoOoSDYFaK7AOitwmQbch8%2BJqlsCK49QMoROLC2aqjGOrQ4EbWKFPCro\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fc4a7400b63411eebdf8eab035d06da5; Expires=Tue, 16-Jan-2029 19:08:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fc4a7400b63411eebdf8eab035d06da565b10ffbf4aa019d474bfa8c107c23b13d950208177850a15aaab1e39ce8bc6f; Expires=Tue, 16-Jan-2029 19:08:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b0430083c284c3dd0cf80e4b130b9fdcb8bf41b1-1705604918; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=OZN4USC7jn4CBfa7gQhUs0tu1ccqfFGSn9B9aNSwoUo-1705604918350-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604919","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (909, 1, '932e7336-d08b-4857-be83-83555c4b1a7d', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #99 change login",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705369984787284300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"932e7336-d08b-4857-be83-83555c4b1a7d","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"932e7336-d08b-4857-be83-83555c4b1a7d","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"932e7336-d08b-4857-be83-83555c4b1a7d","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462b9022f1f5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:53:04 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=i4kzgOZB9znN6LaCANx9CrhpG8VvhU61wKfqFRS9jaD7JncwXtaGsOGqq%2BzJPkAILUVmGqM%2BqdjwWJT4fTT1Kr6wSKuFzj0y8FeitskxquTyFfhZQouQf8vukuoN\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fcf6b76cb41111ee91571ada573ed41d; Expires=Sun, 14-Jan-2029 01:53:04 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fcf6b76cb41111ee91571ada573ed41d73fcf9b10e5c1c2bc309531edbae38a39c2b405a07f86480f2136233501b0cdd; Expires=Sun, 14-Jan-2029 01:53:04 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d0616cef1a0fca2183a0f9fa3863c5595df0b7f2-1705369984; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=pJ3t6E3KVTSR1B2V8mW03byxbOC8VLM78ThxNVmb1SU-1705369984764-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705369985","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (854, 1, 'c6913e59-ecd3-4a8e-8065-c79dd5eb4728', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[7b0e4a3](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/7b0e4a3aa34a91347178a93361fc9e193abd595d) Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91 - hungthinhne\n[11ad5c0](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1) add menu thong bao - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6...7b0e4a3aa34a91347178a93361fc9e193abd595d",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705208016149978400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c6913e59-ecd3-4a8e-8065-c79dd5eb4728","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"c6913e59-ecd3-4a8e-8065-c79dd5eb4728","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"c6913e59-ecd3-4a8e-8065-c79dd5eb4728","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845346b2a9c65e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 04:53:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=dLj%2BAI1Iejv6kq3CJGoYM26fKnAXfrt95lh2aIWe0YYvPP8iC44T%2FjMdmZultxZEAiDpMg39gXaJYlkIwIe1tbnLoLAqQIN4RdoqLRyjLlHT3CWWJvtl3UyioUMb\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e0228f32b29811eea2f802445d3d6a7d; Expires=Fri, 12-Jan-2029 04:53:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e0228f32b29811eea2f802445d3d6a7d92dbd796473f8062eaf59014a9ca8457247c6d437f9f2daadfa230c7cc0ff964; Expires=Fri, 12-Jan-2029 04:53:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=60b749b47fafa569536d4b52992a513136c97d44-1705208016; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=xR.j7th0cRVKhtJuMk84_JYWgd7orSUsXdWz0iskUHs-1705208016131-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705208017","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (816, 1, '7d0d961c-f84d-4800-b8cc-d0b26ab40d38', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/124/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/124/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705134973996402400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7d0d961c-f84d-4800-b8cc-d0b26ab40d38","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"7d0d961c-f84d-4800-b8cc-d0b26ab40d38","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"7d0d961c-f84d-4800-b8cc-d0b26ab40d38","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844c4f7129b85e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 08:36:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=xwtTkmr6tDXin1BMdTCzaSAciwFIfwkd58mBhF83NCMpR%2Btkd88mjcjQzcJ5IkaPba2F3OlbywJ%2Fveg6NPTqT8guwCdhdXMkAvKMRpbVeqAy37i1vA44ZWyoi0z%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cf9f41beb1ee11ee9a6c465adf3428fb; Expires=Thu, 11-Jan-2029 08:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cf9f41beb1ee11ee9a6c465adf3428fb9de46324a06acfb9d7c4b0917bf025567a817c333aed43897cf5d890804aabee; Expires=Thu, 11-Jan-2029 08:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=982f74dca252a8a1f5c5d4130bedcaf9a81135c2-1705134973; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=zML0zH.Jc0XKLAK1IgIEGbKtuMctbyyi1FQpgRkI8fk-1705134973986-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705134975","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1015, 1, '9f2471a0-fd58-4fcd-bf84-7c0e47babf26', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #109 thinh",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705463233439877000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9f2471a0-fd58-4fcd-bf84-7c0e47babf26","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"9f2471a0-fd58-4fcd-bf84-7c0e47babf26","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"9f2471a0-fd58-4fcd-bf84-7c0e47babf26","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b9d966d205e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 03:47:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=vJa%2F%2Flofb23MW7udmkGamS8WnH8bO9pHQ4x%2FCPycz8nSCyud5Jsx6y1dG3H09t3x%2FFuVxTCBwKNU7M4wkJWQSHdVGR0DLM%2FPHeHzvADk1NJH85H6jr3QppLqZkE8\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=197cb6e6b4eb11eea7ee926f935a2c26; Expires=Mon, 15-Jan-2029 03:47:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=197cb6e6b4eb11eea7ee926f935a2c2651e2be42231304b3e6094605a19d9ed462a2a1e82ee4daa26dd9dffdbcce4e55; Expires=Mon, 15-Jan-2029 03:47:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6657c41b98eaebf52bdf017be3c576992853c3fe-1705463233; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ZffflH4EMixD8qI7s01cTWZPcgd.XoSJDKCQquEkSS8-1705463233412-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705463234","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (991, 1, 'fa997a52-4671-474f-8dd7-507fcdbfbeab', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/81/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/81/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458376719437700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"fa997a52-4671-474f-8dd7-507fcdbfbeab","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"fa997a52-4671-474f-8dd7-507fcdbfbeab","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"fa997a52-4671-474f-8dd7-507fcdbfbeab","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b27036daa5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=krEPHhPTmsXw6MSLuzZLCc5H87G72w52obrF%2BJZNvFOjDuywu5GhFyz%2FUu%2FVFzeVPEvCNIXmvXrc9YmoYo6n6rBoZV%2BGLe0Ax%2FK82Hr%2FJhwVoYVaJviiiF59cQnx\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=caa8f38cb4df11eeb7f8aea555614008; Expires=Mon, 15-Jan-2029 02:26:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=caa8f38cb4df11eeb7f8aea555614008feca93951493f440a9c32ac67d178d0dfc95733ec634b8b77bd373a7c02a2455; Expires=Mon, 15-Jan-2029 02:26:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0857e29f549ca84f5de42c0b917ad1fc8191b910-1705458376; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=F.WQ08xBqj5grXVFP5Yx9WaDfub0tpP5AmzkXAqjNtc-1705458376697-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458379","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (992, 1, '3a624d26-50f1-40c6-b423-e44d00ab225c', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/81/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/81/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458377209674100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3a624d26-50f1-40c6-b423-e44d00ab225c","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"3a624d26-50f1-40c6-b423-e44d00ab225c","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"3a624d26-50f1-40c6-b423-e44d00ab225c","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b27069f215e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=qi5hspN4uyDYHPjFF9AKMidrONfGkQ8sVit415GnEtiDNNYJiM2tZMXY2xAgqpTc%2BKVmxeHUH8bbdMzgJeB5%2FCjAnrN%2FbFUhP0%2BytjvnPO8zeiAZOVst9CHSIKqa\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=caf3bc32b4df11ee85bede2a850d5ce0; Expires=Mon, 15-Jan-2029 02:26:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=caf3bc32b4df11ee85bede2a850d5ce049507c6c121c7e35b297f4535339624318d028bb80fb38c0d3c471bdac618885; Expires=Mon, 15-Jan-2029 02:26:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=66e246971898b39cf1c1690abe9435991130522d-1705458377; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=QrTmSQtO4oG9J9sUpF7JGW1UmVHoIZdY6Va3RkUceYE-1705458377187-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458379","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1124, 1, '5358f0b4-012e-4896-a12d-6847cae94e44', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/25/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/25/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705604919406530600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5358f0b4-012e-4896-a12d-6847cae94e44","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"5358f0b4-012e-4896-a12d-6847cae94e44","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"5358f0b4-012e-4896-a12d-6847cae94e44","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920b7498e5cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:39 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=vxE85rLYr%2B%2F63oWhJPwTAcxe8y%2BnPrFwvgutYA8ZHhvkjeNwYB7olPhNXd8tNjve%2FRuuv1IQj%2FbWiA30OliCiA5ghelarhtZkspjqsrO9mp00SBcmDfLxF592AGK\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fce4b326b63411eebd253e82259c5009; Expires=Tue, 16-Jan-2029 19:08:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fce4b326b63411eebd253e82259c50090047503a6e1cf31f28bf27f39dcda4d944d511f71671cb3d0428704051ee2885; Expires=Tue, 16-Jan-2029 19:08:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=92f88cd06d48fc01dc6f366af22c117a862310c8-1705604919; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=koi7ANAz2mp7hP4xub1eTkDmlZQq4NE1nml6I1TYKiI-1705604919361-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604920","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (818, 1, '0a3ab23d-ed77-4657-87bd-b05e2908e5d6', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/125/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/125/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705134974843011400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"0a3ab23d-ed77-4657-87bd-b05e2908e5d6","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"0a3ab23d-ed77-4657-87bd-b05e2908e5d6","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"0a3ab23d-ed77-4657-87bd-b05e2908e5d6","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844c4f76cb165e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 08:36:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=jKQHzo6ZO5f4xilBuzXRNtQOGUFaV9ZNDRC7WmaxQXUbGG4VmGAML4cKNMXo%2BXs630WZBaYDJyaDbWdhrnByFG10L%2Fv0vj3e%2Bj%2FZFHR6oKw%2FnC7SrMsybD4tu5Oh\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=d0213bceb1ee11eebe2bf6b29dbd0d54; Expires=Thu, 11-Jan-2029 08:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=d0213bceb1ee11eebe2bf6b29dbd0d54a1da2be838bfcafe5eca1141c30f4d8110a0573db6f63b04652a45bb84d03a9b; Expires=Thu, 11-Jan-2029 08:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5ed7196f0db80872b14c3df87e9920491bd3bf00-1705134974; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=zXhS0rf.51IjQwhH5rqUdVNrjklWoR9Fuy0Of4d8EfU-1705134974833-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705134976","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1125, 1, 'c4dfd714-c53d-471b-9180-dbd33dcd02c1', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/25/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/25/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705604919835496000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c4dfd714-c53d-471b-9180-dbd33dcd02c1","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c4dfd714-c53d-471b-9180-dbd33dcd02c1","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c4dfd714-c53d-471b-9180-dbd33dcd02c1","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920ba8d285cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:39 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=6PWXQetK7WnyVHU02sLI4TW7Uj0uVniAfx2dyBFI9xWAW5j17mqKpLl9L6%2Bqf0ZXPhFUoBNp2UARgCosztDZuumc6dh8LR98JPAvVFUmGElex1VbtUnyxuCxJuld\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fd266b86b63411ee9f9712a1a10ed0a9; Expires=Tue, 16-Jan-2029 19:08:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fd266b86b63411ee9f9712a1a10ed0a903f36aa1ba61c4eff72b4f1197ab1119f5dae32e0562e3e0941d3112d09ccb24; Expires=Tue, 16-Jan-2029 19:08:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=92f88cd06d48fc01dc6f366af22c117a862310c8-1705604919; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Uc69vPg_92E6SrrDuD9sb0qVuULbxe9jYEpm2w46dT8-1705604919790-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604920","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (817, 1, '360e66a4-a6cf-4b9c-b2b5-aa0f56fb0921', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/125/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/125/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705134974495313400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"360e66a4-a6cf-4b9c-b2b5-aa0f56fb0921","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"360e66a4-a6cf-4b9c-b2b5-aa0f56fb0921","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"360e66a4-a6cf-4b9c-b2b5-aa0f56fb0921","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844c4f73aa535e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 08:36:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=yLExaPWa2WAifd5cdw4uyYRF5aZFM4KQwUaovO7j31Offom3SyVo5cfp0Nd9X75IChuErCFGyyFStbINKkObY26S7sQ4XnKwckwWP9eoa0l0bqCz37hQ%2BDfahymS\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cfe9416ab1ee11eea228c2101416ae4d; Expires=Thu, 11-Jan-2029 08:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cfe9416ab1ee11eea228c2101416ae4da8c07556b78d1f6f7ddddeb2dc867be0d79b0e3149020707518da02426a4d79e; Expires=Thu, 11-Jan-2029 08:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5ed7196f0db80872b14c3df87e9920491bd3bf00-1705134974; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=aJfcZTkqFQKzTIoLCIR7aypYODMkZWChR2oEMqAFIq4-1705134974486-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705134975","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (856, 1, 'c1b9bd24-92a1-415e-b461-de55b37d0c0d', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/admin] tag refs/merge-requests/1/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/admin/src/refs/merge-requests/1/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705223176999566900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c1b9bd24-92a1-415e-b461-de55b37d0c0d","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c1b9bd24-92a1-415e-b461-de55b37d0c0d","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c1b9bd24-92a1-415e-b461-de55b37d0c0d","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8454b8d5add45e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 09:06:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2BZfVdg2%2BIrwTSUOzvNywRuZZpQiTuCJ95HgFAM7Ir2iL%2FN4bsYCtFs%2BXSFlM%2FMHtJcs5SsCQzcZmk4iIRw7OwJ0JdjW9lEUQ7eCYyltDOLUkjUw%2FbZtDj2xMX1W6\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=2cb11a30b2bc11ee94a4deb1b7e0c94e; Expires=Fri, 12-Jan-2029 09:06:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=2cb11a30b2bc11ee94a4deb1b7e0c94ef06dac6a883451ecbc4504cc84c248f893d00c6d0cbf8df5e74b687cde1697ac; Expires=Fri, 12-Jan-2029 09:06:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3d207fed4dd1075f6a5fa5b0ab5e8daad592da8d-1705223176; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=VG0QACT0ugoq2FJCq95.RQBCIVEAuW1zvlEShEIvXUY-1705223176980-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705223178","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (855, 1, '99e22207-85b4-4294-bc44-53dd7982f248', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/admin] tag refs/merge-requests/1/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/admin/src/refs/merge-requests/1/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705223176566053000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"99e22207-85b4-4294-bc44-53dd7982f248","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"99e22207-85b4-4294-bc44-53dd7982f248","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"99e22207-85b4-4294-bc44-53dd7982f248","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8454b8d37cc95e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 09:06:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=oF9gYvYP4dTjRUGrox2iBjjan5w9mKZlTBpqfZOKXKvX7dqCADvKGKBs596HEtEEFTYShczn6rPxvWLZLF1WSnFhTvOy6bwdhghGSOZ86t77c8STwzLgXfBSJMLV\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=2c7212f4b2bc11ee89cc4a93754fc4d5; Expires=Fri, 12-Jan-2029 09:06:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=2c7212f4b2bc11ee89cc4a93754fc4d5d8da7093b9412e1c0049da697f33b97b08292c0bc1aee18bda1153550db36950; Expires=Fri, 12-Jan-2029 09:06:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3d207fed4dd1075f6a5fa5b0ab5e8daad592da8d-1705223176; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=jE7VPZjy6TVDcwYti6W4g_VBC0YafKAEmXVIT2Jv0WE-1705223176545-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705223177","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1126, 1, 'd8faa2ce-9df9-4148-86ee-751fdb51938b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/26/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/26/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705604920313998100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d8faa2ce-9df9-4148-86ee-751fdb51938b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"d8faa2ce-9df9-4148-86ee-751fdb51938b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"d8faa2ce-9df9-4148-86ee-751fdb51938b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920bd38c15cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:40 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=dQPDGUsqbuFoT8F27m%2Fx5m45lm%2Fgmr9tn6hX%2BhMk6iHwx%2BMRVnzi0UDqyQK1NKLFhQOJqjBdhyKeEppBSHJzbqoXT1Y3kQSGX%2FWJUoFDsnviLF0YUMkgFjb1BxI1\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fd6f6e12b63411eea72052b38bd5b15c; Expires=Tue, 16-Jan-2029 19:08:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fd6f6e12b63411eea72052b38bd5b15c889535ce9ee0f6e9ae75eec4fd554750854bcb932e6f00cb83eeb4d43c637a3d; Expires=Tue, 16-Jan-2029 19:08:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a4eb7449297eebee0dfad37f632e0015dc62af69-1705604920; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=O5CiJeBe2kKMNNYzCi7NFYWtGn5puqMB4tVN4iqZ9IY-1705604920268-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604921","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1127, 1, 'beccf5c2-56f6-4cbc-88df-b5bed30e8edd', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/26/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/26/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705604920707812700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"beccf5c2-56f6-4cbc-88df-b5bed30e8edd","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"beccf5c2-56f6-4cbc-88df-b5bed30e8edd","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"beccf5c2-56f6-4cbc-88df-b5bed30e8edd","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920c03c205cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:40 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=o1bkI6NnOsBcR%2BFfyo7yPq%2FRZvS58fEH1QGE2LOp1FR9trBUFSy0OBzxtuuDz9by0jcyj6VBjzpnpKZxg1jK7bNwLxqbik0IH5%2B3YPteDNfsKhaV%2By6Dt4jrItVe\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fdab643ab63411eeb41d2e39c5b39257; Expires=Tue, 16-Jan-2029 19:08:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fdab643ab63411eeb41d2e39c5b39257fe3d60d2449fe4b39ff8c76bf8caf5aa79cfcc79014099436d7e2a0874c6af58; Expires=Tue, 16-Jan-2029 19:08:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a4eb7449297eebee0dfad37f632e0015dc62af69-1705604920; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=qrRO83Xlr0b2qKR9y.SPC319RfJkNAeKv..3EbbAvVc-1705604920662-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604921","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (857, 1, '7d3dceda-552e-4f35-a091-b42ed2d1848f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[khieu-nai/admin:main] 1 new commit",
      "description": "[6eeb316](https://git.gdtsolutions.vn/khieu-nai/admin/commit/6eeb3167459d18da3f7e5738d37354a500b8c3f6) feat: room - organization - jobtitle - vantuan",
      "url": "https://git.gdtsolutions.vn/khieu-nai/admin/commit/6eeb3167459d18da3f7e5738d37354a500b8c3f6",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "tuan",
        "url": "https://git.gdtsolutions.vn/tuan",
        "icon_url": "https://git.gdtsolutions.vn/avatars/ef8cb8091e07736d503797a3fd007bb52d58ce27f461213703866d303da8e9a0"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705285620897078600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7d3dceda-552e-4f35-a091-b42ed2d1848f","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"7d3dceda-552e-4f35-a091-b42ed2d1848f","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"7d3dceda-552e-4f35-a091-b42ed2d1848f","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845aad584e635e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 02:27:00 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=qS9JvcU6PTSvblFISV1ArN5UmKrdetjlhJPyNWu9K81dArq4kuGeGvdwmmUXtWwOXd1j0l0qI72tw4MWMWNN5srs1OexIkaLlvl6Tmz6BL8NxYS%2FQeo9UxYIUNak\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=902ac99eb34d11eeab7746d3f7970317; Expires=Sat, 13-Jan-2029 02:27:00 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=902ac99eb34d11eeab7746d3f7970317aa5b693e1088cef92685be7c2b0f4d3ae1eef8d8e5a1783d99f910e18b31bb81; Expires=Sat, 13-Jan-2029 02:27:00 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5629ac51ba36bbc945fc3d553dac79cf53270927-1705285620; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=fk8KJzdEDSe8pVr1b67FsyR6I8MptqwUQhEfhUcbNnQ-1705285620874-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705285622","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (858, 1, '8daa2ed6-e716-49ab-8db1-a6506d3e719c', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[khieu-nai/admin:dev-hoa] 7 new commits",
      "description": "[4686dd6](https://git.gdtsolutions.vn/khieu-nai/admin/commit/4686dd6b75c63490b6661f85c0b1c947240ec20f) update userDungDonuserDungDon - Nguyễn Chí Hoà\n[6b8740b](https://git.gdtsolutions.vn/khieu-nai/admin/commit/6b8740b31e995f14081083ba03bd0f1f4c40e3e3) adress - Nguyễn Chí Hoà\n[15e3994](https://git.gdtsolutions.vn/khieu-nai/admin/commit/15e39944f15f208be7ba038d75a2f68911f1d21e) feat: organization 100% - vantuan\n[266e86f](https://git.gdtsolutions.vn/khieu-nai/admin/commit/266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9) list - Nguyễn Chí Hoà\n[94ffd4f](https://git.gdtsolutions.vn/khieu-nai/admin/commit/94ffd4fad7e84bcd1525ff0775450354d753d78a) Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin - vantuan",
      "url": "https://git.gdtsolutions.vn/khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...4686dd6b75c63490b6661f85c0b1c947240ec20f",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "Hoagdt",
        "url": "https://git.gdtsolutions.vn/Hoagdt",
        "icon_url": "https://git.gdtsolutions.vn/avatars/71955e5d26ad26c5d213888a1d650773566d606fea1b0ea0ed6cc85e4b347bcc"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705291493192547600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"8daa2ed6-e716-49ab-8db1-a6506d3e719c","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"8daa2ed6-e716-49ab-8db1-a6506d3e719c","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"8daa2ed6-e716-49ab-8db1-a6506d3e719c","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845b3cb399fd5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 04:04:53 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4ajLaEY9y8I%2BexzmSpe2YZJRlZuQVSSJ%2BY%2FUWNWHNtO0H3DU0Dltf7oCjndcU4pq%2BONhS82E55xUR15OmJ%2F8S5XpO3x5rJ47VNIhbMwms5jOgxgl56Q2rtvkxcRK\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3c53f0dab35b11eea28c52c1b981c921; Expires=Sat, 13-Jan-2029 04:04:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3c53f0dab35b11eea28c52c1b981c921bb1d1dbfa2bd9f1e892a5479f09617e9309ff470dab9a22271cb28a7fcfac7fb; Expires=Sat, 13-Jan-2029 04:04:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=701d1fc3e07426c9e9a6db0362aca8debf89732c-1705291493; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=GHFf3kcl8_TBpM2B7XaXhgNHhoscNXZ07tuTlN0kjAc-1705291493170-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705291494","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (819, 1, '1eb193af-9950-4967-8ec7-edd5997a9061', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/126/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/126/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705134975317746200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1eb193af-9950-4967-8ec7-edd5997a9061","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"1eb193af-9950-4967-8ec7-edd5997a9061","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"1eb193af-9950-4967-8ec7-edd5997a9061","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844c4f78fb8a5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 08:36:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=VX2Qa0UtAOXaYQWhhMmTP4KYE%2FdR%2FBnEXM0daLmb6dnFPXlTeDrEZnb3%2Fg5YO0IdzQZjfAn07IpqUem8AvFJITgo3PQQ7gF7KrlIz%2FxwRy589JeL1fcEofhXkMQY\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=d0696890b1ee11ee89cc4a93754fc4d5; Expires=Thu, 11-Jan-2029 08:36:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=d0696890b1ee11ee89cc4a93754fc4d513a2ed74db724481023557c3009e0bb47844754c607837c29a7f858bec145aa2; Expires=Thu, 11-Jan-2029 08:36:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b2e0fa87212ee4bf59cea6813fbf284f87aa352e-1705134975; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=lAbWkflo9FUSZyrRXA4WA7BdFiJfCMuqq3zcS6QZf1k-1705134975308-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705134976","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (820, 1, 'f7afdd79-dc45-4889-b452-609c044d8841', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/126/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/126/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705134975737823000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f7afdd79-dc45-4889-b452-609c044d8841","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f7afdd79-dc45-4889-b452-609c044d8841","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f7afdd79-dc45-4889-b452-609c044d8841","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844c4f7bec515e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 08:36:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=2xSAvV%2FVdLJZEVoTr1ma6b1xYIc7qypm0NbU95ZtFajWy0cZciE0h7b1Et9oy7WUXnotbqsTPHyJzQMHklfGFq0VtTOKsIJh44G9lXLiHMRRqXiD06FnPrvwgkV9\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=d0a9453cb1ee11eeb56c465adf3428fb; Expires=Thu, 11-Jan-2029 08:36:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=d0a9453cb1ee11eeb56c465adf3428fb88706accd0b5af9c4be0fc4c71ae07db8c867a6d3642627d41cd179423893ba1; Expires=Thu, 11-Jan-2029 08:36:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b2e0fa87212ee4bf59cea6813fbf284f87aa352e-1705134975; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Dy9XCHPSjDMtMYz8sHZTq7mSsx49YXBMTiyRRBNdhQc-1705134975729-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705134976","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (859, 1, 'fbc5790c-158e-466f-bfdb-b31c5ddd52b8', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[khieu-nai/admin:dev-hoa] 2 new commits",
      "description": "[b8d0d92](https://git.gdtsolutions.vn/khieu-nai/admin/commit/b8d0d925b42d717dd3206442113f99e827a2ff0f) merge - Nguyễn Chí Hoà\n[6eeb316](https://git.gdtsolutions.vn/khieu-nai/admin/commit/6eeb3167459d18da3f7e5738d37354a500b8c3f6) feat: room - organization - jobtitle - vantuan",
      "url": "https://git.gdtsolutions.vn/khieu-nai/admin/compare/4686dd6b75c63490b6661f85c0b1c947240ec20f...b8d0d925b42d717dd3206442113f99e827a2ff0f",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "Hoagdt",
        "url": "https://git.gdtsolutions.vn/Hoagdt",
        "icon_url": "https://git.gdtsolutions.vn/avatars/71955e5d26ad26c5d213888a1d650773566d606fea1b0ea0ed6cc85e4b347bcc"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705291589819230300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"fbc5790c-158e-466f-bfdb-b31c5ddd52b8","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"fbc5790c-158e-466f-bfdb-b31c5ddd52b8","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"fbc5790c-158e-466f-bfdb-b31c5ddd52b8","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845b3f122ffa5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 04:06:29 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Mz5N0i9eJhHiQvke7gWdVZXCNmm7o8gMy8wB%2Bjnpm4TnrNlXQhbDKfBrO9%2FOB6kE1DaHT08pBKSUOMbGKImJM2u2RqTxF5Agv1uuQNQUuLfFU19UI%2FeWlG2FxOO2\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=75ec2150b35b11ee8bbd629927f5bd50; Expires=Sat, 13-Jan-2029 04:06:29 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=75ec2150b35b11ee8bbd629927f5bd50f21b0b3ef144a694b75c8e139887ea9c7f7c143005d9e9816b49c9e9e2227848; Expires=Sat, 13-Jan-2029 04:06:29 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ef6bc0644ac686b352b4b719cecb3d92c8a88043-1705291589; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=WNoLonVCXg0Z4.Fk3YEDKwKPQFHX_3U8LSeVJpfnNNA-1705291589796-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705291591","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1016, 1, '136514e1-2b68-45e3-962e-f998b529057b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 3 new commits",
      "description": "[d27bbd1](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/d27bbd1a398cd332a453a4301f2539d4741f4829) Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109 - hungthinhne\n[e3fb0e3](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/e3fb0e313b51381d7d07b910bfed3963036f3119) fix info nld - Lê Hùng Thịnh\n[07dd788](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/07dd78834b58c799d0db70d99f863dda643572aa) fĩ loi info nld - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/99934589e07a2e5021fb88d8e95cd0701a3c3d8f...d27bbd1a398cd332a453a4301f2539d4741f4829",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705463235061943100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"136514e1-2b68-45e3-962e-f998b529057b","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"136514e1-2b68-45e3-962e-f998b529057b","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"136514e1-2b68-45e3-962e-f998b529057b","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b9da018975e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 03:47:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=lUenSRvxUXx2XXzxJaSMT3gkcgWLtjeiwwtSgbmGpByHPocEPMRmtWFHbpKhPI60zApGaKPep%2BZLhennra4bwb6vS%2BUjxPJ%2B3WyD0FuqLu6Y%2FhVkk3WgtK9goyAo\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=1a741602b4eb11eeacccb6dda4bc4c92; Expires=Mon, 15-Jan-2029 03:47:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=1a741602b4eb11eeacccb6dda4bc4c925a826fcf2bd99e15b15add172158126a51366cfa718d8e322246bbfaea096242; Expires=Mon, 15-Jan-2029 03:47:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ad57fc4d0a12028310e143a846296e64ce4d3a0d-1705463235; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=cM6nBNrbvv8C58eLz1QwHspYez7fSWWQZsFmQb.Up_g-1705463235034-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705463236","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1130, 1, 'b8941e2b-3a66-49fa-994f-0f0017f91643', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/28/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/28/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705604922371964200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b8941e2b-3a66-49fa-994f-0f0017f91643","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b8941e2b-3a66-49fa-994f-0f0017f91643","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b8941e2b-3a66-49fa-994f-0f0017f91643","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920c84c755cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:42 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=l%2BnnWJpcl3BPInJl%2FZ5aURD3KC4kyH8jzA23lYhbVIyGz1SrwwV4GKpaqSrqZxH9r7sd%2BDMIzVEk3hNjIRACcYaN8O%2FD9BBB2lfmPLStaOjOhx0XeuL3gMWxa4Ss\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fea96cd8b63411eebca47ec363a92f08; Expires=Tue, 16-Jan-2029 19:08:42 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fea96cd8b63411eebca47ec363a92f08455fdc9e521f1ca7f427428549e237f9c4aab28d09178d5aab650bc37f35dbca; Expires=Tue, 16-Jan-2029 19:08:42 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1300305a62346cd53ee329e85017c6f2a1badc74-1705604922; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ei6FQ1hwtU_cdBGBBA8SnIjvwd90k2X_PwC6dySsORk-1705604922326-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705604923","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1132, 1, '03e7513c-9851-416e-bdfc-c6c320f0a879', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/29/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/29/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705604923338477000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"03e7513c-9851-416e-bdfc-c6c320f0a879","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"03e7513c-9851-416e-bdfc-c6c320f0a879","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"03e7513c-9851-416e-bdfc-c6c320f0a879","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920d02e005cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:43 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=CVs7FiEckYXavaN2X%2BabnCK2PJFxg6mDZK5QcGHn8ZZF3j4YhAO72vfBVD%2FKKS041JuzsLOa%2FKZc%2FfeDJgB9JbGORS4UNEMcbmKNlnCnud3UGcI%2FXmcXG5fze2rA\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ff3cf1ceb63411eebf09ba9b36c2a54e; Expires=Tue, 16-Jan-2029 19:08:43 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ff3cf1ceb63411eebf09ba9b36c2a54e29a5094eaf05863d7ed54f4cfc417ffdbec7555fe628259609f3d11459c21b81; Expires=Tue, 16-Jan-2029 19:08:43 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca1dae7e57e61739857cd1fd2718aeed1e2cbaf7-1705604923; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=dLohCDSM6AXYpfQ_WbRdmehfogSjZ35NMpnulYwPQG0-1705604923293-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604924","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1133, 1, 'ffb5a422-c602-4bd4-8d6d-ad93e341acb9', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/29/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/29/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705604923849341300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ffb5a422-c602-4bd4-8d6d-ad93e341acb9","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"ffb5a422-c602-4bd4-8d6d-ad93e341acb9","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"ffb5a422-c602-4bd4-8d6d-ad93e341acb9","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920d319075cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:43 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=mRd9KqsDwdGFsQwxoL6xwwbkD%2F5P8Br5wKToCts0RnTvFw%2Ffbq%2Fc14f5BaLlXs0yMBSwxIinYOB58keWSDYg5jFbOa3MjQhICWFR4FGh3BpiePBmtVLJRePHdBK7\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ff8afab8b63411eebb463eccf601600b; Expires=Tue, 16-Jan-2029 19:08:43 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ff8afab8b63411eebb463eccf601600b0cf221547579ca96b75aa6fd54dcaeecd6f38bac1c3a52f46ad07a96054e5d51; Expires=Tue, 16-Jan-2029 19:08:43 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca1dae7e57e61739857cd1fd2718aeed1e2cbaf7-1705604923; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=gJvaqUFw977XMp3dTSwoM6G_jjdfdXeWWoBjOZtX9Z8-1705604923804-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604924","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (821, 1, 'e3fab108-da93-48f4-9bcc-39536d8d0adb', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/112/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/112/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164373511261400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e3fab108-da93-48f4-9bcc-39536d8d0adb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"e3fab108-da93-48f4-9bcc-39536d8d0adb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"e3fab108-da93-48f4-9bcc-39536d8d0adb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d328cc95e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=hw963xAPsPTtVL03VMUFnHzmoc43yQ1FF0eY95HKGg5eBGUxrWHU4SOfPjiZZSHYmuvSjPWZtpPQb0r4cgxmqUZxFK6RqIyyz7t%2Fo2m%2FEfnWb1Jzm21iC6J92IpV\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=4318fa06b23311eeae0712eaec767ce3; Expires=Thu, 11-Jan-2029 16:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=4318fa06b23311eeae0712eaec767ce32e20c0b9ae5f4ac82f51e8a9bed5b74b3650f2f96fa87091d1ae21d82ac3429b; Expires=Thu, 11-Jan-2029 16:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=440f5ddaf878039441a550fc0c10193e8c6aad10-1705164373; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=E80GuoPSd27RZRNkB2agW2HTh2DfAEV3cPvkArcZBB4-1705164373495-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164374","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (916, 1, 'd207ac59-b90a-41d9-8db0-e3ab958d036d', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/102/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/102/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705370175200790300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d207ac59-b90a-41d9-8db0-e3ab958d036d","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"d207ac59-b90a-41d9-8db0-e3ab958d036d","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"d207ac59-b90a-41d9-8db0-e3ab958d036d","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bda889ad5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=7H7%2BumZCg9YARuT%2BsTbaIQordIfVwO95%2BTF%2FEQRP8JyPp7pJry%2BQVrUvNTZh7Q5vXYZJL3S6DLq1nVZCbKJ1zIVa3bt8AdUCNHy4NIQ5a%2Bz03ViN%2F3R6%2BN8znCGI\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6e75a6d2b41211eeabd9e2de1b7ded09; Expires=Sun, 14-Jan-2029 01:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6e75a6d2b41211eeabd9e2de1b7ded0922eb21adf696e53864ac88324a42a7121aaeb8ee400d2b551456e8592e913685; Expires=Sun, 14-Jan-2029 01:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e806122d4484df8b3dbb107622fc001a5de61769-1705370175; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=uqp38wP0X68FIN534Wkk6msLyjjBNavoej8909OMUVI-1705370175178-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705370176","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (917, 1, '56c26f17-232d-4e3f-992f-64e235a52e4f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/103/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/103/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705370175633352700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"56c26f17-232d-4e3f-992f-64e235a52e4f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"56c26f17-232d-4e3f-992f-64e235a52e4f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"56c26f17-232d-4e3f-992f-64e235a52e4f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bdab1a865e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=M9%2B%2BwQoioLZEWFk9PW5atOzIZQqFlsO7M3sQWN32xq%2F0aysN0iBYv8G4fq5Lk7QMIyYw0jbJBwqefTKrmc7WFrdZoPw%2Bm8rX3%2BlZbRat7%2BUPg4583xrQYiz1V2hm\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6eb79b8cb41211ee806db226af899a7c; Expires=Sun, 14-Jan-2029 01:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6eb79b8cb41211ee806db226af899a7c09a685929f2906a9b1ddda1cb9af71f9357a0d84afcf31a11ea044511d7e7b29; Expires=Sun, 14-Jan-2029 01:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e806122d4484df8b3dbb107622fc001a5de61769-1705370175; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=7g0NF7koDE0wDGya2gDNZEjuhFuqf8hieT.UZppLJ0c-1705370175610-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705370176","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (918, 1, 'b6dd1258-fb46-4ea5-a844-8df8cbb6ef00', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/103/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/103/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705370176025157400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b6dd1258-fb46-4ea5-a844-8df8cbb6ef00","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b6dd1258-fb46-4ea5-a844-8df8cbb6ef00","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b6dd1258-fb46-4ea5-a844-8df8cbb6ef00","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bdadcb885e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Iviy01LpcbiQ%2Fj2LZgQB4mDtKvrHhhx%2FKZYYG2fOUSD99iNu2fMqQoeogAQLxXDzPfNOJ2FNDyevnY95SQMNvuBJfTfnGVdhdKmIXySyy1lOZRgSwsLDW86kPvlE\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6ef275a4b41211eeb6a252836d2a6559; Expires=Sun, 14-Jan-2029 01:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6ef275a4b41211eeb6a252836d2a6559e9bd6d129cacca314dbe7e13c5fd00c7f8f18a819b45f850d2bcbc637d675ff0; Expires=Sun, 14-Jan-2029 01:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5ad7e984a110d86f31ba6b463c5faa38019dc679-1705370176; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=SoRhIoDLAS7xNgR_CsGYExXRKnygYimefvGNLjfzSpw-1705370176002-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705370177","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (860, 1, '1bc9ad93-3c98-4b31-a0ee-2929b76c7401', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[khieu-nai/admin:main] 4 new commits",
      "description": "[b8d0d92](https://git.gdtsolutions.vn/khieu-nai/admin/commit/b8d0d925b42d717dd3206442113f99e827a2ff0f) merge - Nguyễn Chí Hoà\n[4686dd6](https://git.gdtsolutions.vn/khieu-nai/admin/commit/4686dd6b75c63490b6661f85c0b1c947240ec20f) update userDungDonuserDungDon - Nguyễn Chí Hoà\n[6b8740b](https://git.gdtsolutions.vn/khieu-nai/admin/commit/6b8740b31e995f14081083ba03bd0f1f4c40e3e3) adress - Nguyễn Chí Hoà\n[266e86f](https://git.gdtsolutions.vn/khieu-nai/admin/commit/266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9) list - Nguyễn Chí Hoà",
      "url": "https://git.gdtsolutions.vn/khieu-nai/admin/compare/6eeb3167459d18da3f7e5738d37354a500b8c3f6...b8d0d925b42d717dd3206442113f99e827a2ff0f",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "Hoagdt",
        "url": "https://git.gdtsolutions.vn/Hoagdt",
        "icon_url": "https://git.gdtsolutions.vn/avatars/71955e5d26ad26c5d213888a1d650773566d606fea1b0ea0ed6cc85e4b347bcc"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705291621239889600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1bc9ad93-3c98-4b31-a0ee-2929b76c7401","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"1bc9ad93-3c98-4b31-a0ee-2929b76c7401","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"1bc9ad93-3c98-4b31-a0ee-2929b76c7401","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845b3fd4fe755e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 04:07:01 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=PV3qwbjWhM%2Bcb77cDyr9vaW86NYc%2FqyOXQpgWXH6MEkqJMBxnULwTXYPeWlQGrvA03G6HiW8P11ydNWEnNwUj9SiKYWilIwfQbvJ33J1gdmvO2z8qoSvqIRDtl9X\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=88a66256b35b11eebfa746547f05e5a0; Expires=Sat, 13-Jan-2029 04:07:01 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=88a66256b35b11eebfa746547f05e5a0fca1056837019ecf500d9f75fd96a77d0df4c362b390a26b7272dbbb19ca0697; Expires=Sat, 13-Jan-2029 04:07:01 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ec4174024525e73cecbe19ed7219f6ed9251d08f-1705291621; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=NIxBmXJEgZ..XF8rHDfpaSU1R.eicI0I8XXzJeCyl0s-1705291621218-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705291622","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (920, 1, '7e5d8267-514e-4964-a152-5629094a6284', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/96/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/96/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705370176920563200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7e5d8267-514e-4964-a152-5629094a6284","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"7e5d8267-514e-4964-a152-5629094a6284","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"7e5d8267-514e-4964-a152-5629094a6284","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bdb2ad4f5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WrvoeNh6ARhf%2BGMDO9k0n%2FKxn%2FJWUsdYd0CnT0SkOmIqNnER2dou%2FeCbuzYU6%2FMZmik%2F%2B14SkqCa4pernISElPxi77L%2B7u26vKHxKy3AQzm%2FCbMgSujty6yhoj3%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6f7bbf4eb41211ee97bde2de1b7ded09; Expires=Sun, 14-Jan-2029 01:56:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6f7bbf4eb41211ee97bde2de1b7ded091d76b8b57a779fb5762bcb86fe4f01c4ebe4c641bee0aa99daf4749acdcff60f; Expires=Sun, 14-Jan-2029 01:56:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5ad7e984a110d86f31ba6b463c5faa38019dc679-1705370176; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=gwOFQLnnDXOA_D4yG8ggnDw.6wksZGL7GEvbbNaZYIg-1705370176897-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705370178","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (753, 1, '55e32529-bd89-4230-801d-c905f1f085b4', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/136/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/136/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705017371551354000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"55e32529-bd89-4230-801d-c905f1f085b4","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"55e32529-bd89-4230-801d-c905f1f085b4","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"55e32529-bd89-4230-801d-c905f1f085b4","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84411849384c5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 11 Jan 2024 23:56:11 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=w3gJYDcIdSDbi7WwX8PmrsoxwcQMmNhcYcLc%2FXBJ7ZGw5Y2SugrN3QMtyA9U28%2FPPtYeY7eE%2BKsG1UqMsUSYqpcuiCeNlpM%2FcNOApj5cYwX2x6GGvoLRmaRbtd8g\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ff196716b0dc11ee8bf18e16abe24ee2; Expires=Tue, 09-Jan-2029 23:56:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ff196716b0dc11ee8bf18e16abe24ee2e214ad8319a0304cbedfd28b111418d2686c643597ea43104963342c740e25c8; Expires=Tue, 09-Jan-2029 23:56:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cd8dd4cf80cc79ec1f1cb6437acecc2d8e5c1576-1705017371; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=IQwEETZf0QqwXIdwWHWSarxBl0AOhWx9IsUAXwwp0UM-1705017371530-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705017372","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (755, 1, '4308a006-092b-44eb-a467-ec12bb4ac2d9', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/137/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/137/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705017372366140400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"4308a006-092b-44eb-a467-ec12bb4ac2d9","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"4308a006-092b-44eb-a467-ec12bb4ac2d9","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"4308a006-092b-44eb-a467-ec12bb4ac2d9","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8441184ee94a5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 11 Jan 2024 23:56:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=YiMNGSI9LRAlDWLpLIXUPrFb9Ba4Oo%2F8our%2B7bJ86LaCl972ZowjMiS4hvitpLS2RsdvivXicRdenFQEoAZuOlDzPNKYluNcFRtX2WbsD7T%2BlxEpUNPe4KLzDzqD\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ff95971eb0dc11eea547be5ffd869c31; Expires=Tue, 09-Jan-2029 23:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ff95971eb0dc11eea547be5ffd869c313d00663f6335c0e07163716bed639a6eece2a7cc8e88be731ce02304ef318e9b; Expires=Tue, 09-Jan-2029 23:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=dadfff3282a619be26f1f9a0916675a4a65faf67-1705017372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=CWU4ABxnvtO_y1s7optiQvzgsmYBaUS4BNHdeVR.ZWo-1705017372345-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705017373","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (754, 1, '05fce7b7-41de-460a-8591-484cf0c6de4b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/136/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/136/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705017371971537200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"05fce7b7-41de-460a-8591-484cf0c6de4b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"05fce7b7-41de-460a-8591-484cf0c6de4b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"05fce7b7-41de-460a-8591-484cf0c6de4b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8441184c68e95e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 11 Jan 2024 23:56:11 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=spiwc7s1wft5a4NM2%2Bh1OnKShpnAtipNkDkulfhEyfOzkXLQ9wysBGlyGns8f5ZePGVf6fJiNorPd7ElA36wf%2B%2FFpx6z5L7oUH2l15mJIyc30Pwp15424FusDkA6\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ff59540cb0dc11ee81e916488926765d; Expires=Tue, 09-Jan-2029 23:56:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ff59540cb0dc11ee81e916488926765d0cab5be14ef688bdd8298378d3a9ec95b3b16feec7c42eb28f1e36bbf39b5c91; Expires=Tue, 09-Jan-2029 23:56:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cd8dd4cf80cc79ec1f1cb6437acecc2d8e5c1576-1705017371; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=1LG.bQdUchwI.9RKyI.Iy0XKozbjNAfWUnxNSfrksvo-1705017371950-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705017373","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (921, 1, '6f87c0c5-bdc8-40cc-a608-973c5f51eba9', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/97/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/97/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705370177341573000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6f87c0c5-bdc8-40cc-a608-973c5f51eba9","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"6f87c0c5-bdc8-40cc-a608-973c5f51eba9","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"6f87c0c5-bdc8-40cc-a608-973c5f51eba9","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bdb5ded05e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=wewNGaVM6VKwcK87Z%2FGVKzBCwvgeHaw5Cwcs3v%2B%2FBedwZmFcUgKbnwpNWxXo%2BKbNNEi7%2Fs3I4zfiu24yhfMXxsUw4dEuW6xtZCkcaqTJVSz8v8%2BXHAsZxlAPtFDc\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6fbc1dd2b41211ee956336d042aa6da5; Expires=Sun, 14-Jan-2029 01:56:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6fbc1dd2b41211ee956336d042aa6da52a46c9040875deb3e828dad8800be33a673ce77a73a7e99b7b964d6b5a130a4d; Expires=Sun, 14-Jan-2029 01:56:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=c4877b22ea882bff27687245eb767429efa8e202-1705370177; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=YYYl.JvFULSlj4QuLCgiJ89vgLHVt_7uUptdPesNalo-1705370177318-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705370178","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (756, 1, '43f795ea-cb4b-42e3-b4ab-f921793b24b3', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/137/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/137/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705017372783107600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"43f795ea-cb4b-42e3-b4ab-f921793b24b3","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"43f795ea-cb4b-42e3-b4ab-f921793b24b3","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"43f795ea-cb4b-42e3-b4ab-f921793b24b3","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8441185169f75e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 11 Jan 2024 23:56:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=uYrJpwdUc47u1xMTmOZUxxXDWbCYhJGj7SEUKN%2BSCwyMTMRMqTBtCiN7DljTshudhEh7PLonCsyD9WnW52urnNfcYKcam040jJPExoNrZFE1psV3ngHPHr4RY1%2F8\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ffd54b48b0dc11eeb85056f32716712c; Expires=Tue, 09-Jan-2029 23:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ffd54b48b0dc11eeb85056f32716712c2bba39c8b143aae2b48b2bd75fcb3d519ead2a5e09d7d7825f5f6a912a8b5d99; Expires=Tue, 09-Jan-2029 23:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=dadfff3282a619be26f1f9a0916675a4a65faf67-1705017372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ZOwd9XzqnmRrZcKB5rullsIjQHIclYcEqaufS3ygcXw-1705017372762-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705017373","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1017, 1, '482a94e9-c26b-4f4b-8143-e337a9102a3a', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[khieu-nai/backend:main] 1 new commit",
      "description": "[33d9644](https://git.gdtsolutions.vn/khieu-nai/backend/commit/33d9644ce9d08b8550b3ee8335c8a3024b60b342) update model - vu nguyen",
      "url": "https://git.gdtsolutions.vn/khieu-nai/backend/commit/33d9644ce9d08b8550b3ee8335c8a3024b60b342",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "git_for_dev",
        "url": "https://git.gdtsolutions.vn/git_for_dev",
        "icon_url": "https://git.gdtsolutions.vn/avatars/009e520c8a20ee8d22d0087b59f6496f"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705466287854304300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"482a94e9-c26b-4f4b-8143-e337a9102a3a","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"482a94e9-c26b-4f4b-8143-e337a9102a3a","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"482a94e9-c26b-4f4b-8143-e337a9102a3a","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846be827ba695e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 04:38:07 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=LpecFoqR5RPnUpVuZY%2FDlJK%2Bpqd4UusZqn%2BblieklllLiaf0DaTDBQ6dPXZcQaCIPbXb5z3eo9CHlaoFsl2xTbaJGXj1vuLo%2BjPgGC5otpKAdTPMoi1zF20lkAJ0\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=360fd322b4f211ee8b05e2972f98ad0e; Expires=Mon, 15-Jan-2029 04:38:07 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=360fd322b4f211ee8b05e2972f98ad0ea33133a62e4f41a5e72f3c81cc0a49ec0c2ee368afb2f8236fb017e1d10484bc; Expires=Mon, 15-Jan-2029 04:38:07 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=de69e9ec133bd790a0a781079769a84c03d6af37-1705466287; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ee6pFrgl2Q0YKJCwpHz86ZQyTXEauWPcYVPvCOnE.n0-1705466287829-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705466288","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (757, 1, 'c3198f80-0366-4397-981d-6335b6e73443', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[7f5f892](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/7f5f8927493694fa7b669e9f03f9b7cb95fda38b) fix change so nam - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/7f5f8927493694fa7b669e9f03f9b7cb95fda38b",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705024774248332600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c3198f80-0366-4397-981d-6335b6e73443","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"c3198f80-0366-4397-981d-6335b6e73443","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"c3198f80-0366-4397-981d-6335b6e73443","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8441cd041a725e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 01:59:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=xIAA%2BHOSbrTgUv5kzC5tbhFKflDT9Uv46RgzhBLys3GsuHkeIBg1wxyN7e6EiYhw52An%2FQGuHebVaNBMkxDwbh9eWBqAjGTR63yteTBHjeRqglm9bUmCVxYVmiV0\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3b6e810eb0ee11eea826d2890ffc9a2d; Expires=Wed, 10-Jan-2029 01:59:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3b6e810eb0ee11eea826d2890ffc9a2d9f458ee0e9bf04a9e56a76434b78670aecf489390ee11a981693c616f06e93b1; Expires=Wed, 10-Jan-2029 01:59:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0f871ab1207992dd6d7d198527462e59786c8d58-1705024774; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=vhUbsGBiZseTOHAcOURHRDmuT4URNNoEiNBSZQERtuI-1705024774226-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705024775","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (822, 1, '285c7159-fec7-4fbf-b474-492f6191fe58', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/112/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/112/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164374047465200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"285c7159-fec7-4fbf-b474-492f6191fe58","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"285c7159-fec7-4fbf-b474-492f6191fe58","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"285c7159-fec7-4fbf-b474-492f6191fe58","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d369bb35e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=m4nFqzZnwkKnXKsa40Y2IbLHiJcccoXGD%2F9rflE4GuvASt1DoXy35D0fXc2wWQpbGl%2FqVg%2FTS2a5vykNRXiCCXXrRRyOcnWtBEfxQ%2BUBgVIPohvhneuOSJ2p46mN\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=436ac142b23311ee89930ef8e0e10094; Expires=Thu, 11-Jan-2029 16:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=436ac142b23311ee89930ef8e0e1009458de342886dc1c4860a134b2539e58c2ba10daf59eff9052c2232468dbe6f9af; Expires=Thu, 11-Jan-2029 16:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8e168380d93d5f2447c0d3e1d02f6eac14ab3736-1705164374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=RCML_STDWG7Brmk1eudTXF_gDkive31BHjmt6r2o56E-1705164374031-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705164375","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (861, 1, 'd556a6ff-d71a-40ee-bcb8-c0bfb3e66cf8', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/backend:main] 3 new commits",
      "description": "[25171a9](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/25171a94c626223b0e72c8a83ce97b2af8680282) f - Nguyễn Khánh Nghĩa\n[6935781](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/6935781437259ef8b4fbc67a932ddf11dafb1899) Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend - Nguyễn Khánh Nghĩa\n[69a1a8c](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/69a1a8ca8f1772e4b925d1acb1f217a85d542292) gửi thông báo khi thao tác với kế hoạch tuyển sinh - Nguyễn Khánh Nghĩa",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/compare/e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85...25171a94c626223b0e72c8a83ce97b2af8680282",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "giao-duc-nghe-nghiep",
        "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep",
        "icon_url": "https://git.gdtsolutions.vn/avatars/802cdf8532d94c10cd481e4e3983c194bc5f4fc5742e4a5d699a740361409a4c"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705301773871064300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d556a6ff-d71a-40ee-bcb8-c0bfb3e66cf8","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"d556a6ff-d71a-40ee-bcb8-c0bfb3e66cf8","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"d556a6ff-d71a-40ee-bcb8-c0bfb3e66cf8","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845c37af7e665e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 06:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Pwag20AYl3B8KBGsxJJhLWvVOutRboXIZHptK%2FH7HdJRgTdzlzoeP5FHoyzAZLlzh7O3ZvPZDiN4PIGkjRQ2B5P5FcUFpAmk6B3k0D89vG4AYbbUnPxsOSIs5CNZ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=2c171c48b37311eea71a3215ea8fca8e; Expires=Sat, 13-Jan-2029 06:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=2c171c48b37311eea71a3215ea8fca8e96a32d44f8b1385a00cc4badb51be54d692deca4553fc3186c863863ac04bd72; Expires=Sat, 13-Jan-2029 06:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cd34d69c7b0bbf97cadafd1a0f93ce2580e4e935-1705301773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=h99kzYZczu7x6CY.KEpaEjabR4Vub3ARy7OITDNao8Q-1705301773848-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705301774","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (923, 1, '98a69b1c-479c-45cb-a760-bc8e42bb12e2', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/98/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/98/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705370178115050700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"98a69b1c-479c-45cb-a760-bc8e42bb12e2","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"98a69b1c-479c-45cb-a760-bc8e42bb12e2","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"98a69b1c-479c-45cb-a760-bc8e42bb12e2","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bdbad8d85e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=eUAa%2BqHFUroWPjdq%2BIJu5xVrYySr0zpf4sL%2FgWgQREZvMx2pUp1nZ8heGwnIQ2R5DzpZk02fUYxYr2huWDkhgKVs2AQuthh20gIPpfW162SjmjIHXK85%2FA7j%2Frsi\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=7032232eb41211ee93d82aefc8414a83; Expires=Sun, 14-Jan-2029 01:56:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=7032232eb41211ee93d82aefc8414a83c46f4443968c8b2864b048853a308527b60eeed38b4460d458208aa1fef4a7da; Expires=Sun, 14-Jan-2029 01:56:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6343232e0afa809f8f2972c8f9b09e4c138f686c-1705370178; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=qb9owbAcE93TFwbucH2FjCkJy5LvpDxCHXnQzyFpxZE-1705370178091-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705370179","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (924, 1, '73507e62-5183-420b-b2de-1bafefbe982e', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/98/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/98/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705370178482009200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"73507e62-5183-420b-b2de-1bafefbe982e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"73507e62-5183-420b-b2de-1bafefbe982e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"73507e62-5183-420b-b2de-1bafefbe982e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bdbd59dc5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=3L1XLtp6ad6CsHDvdr%2BUmp7nztogl4GjhM1BVMRuhf8Ir%2FiQtHreOg2igCHlUCl74SfAsgdx%2BQuNtLmBdr9IYph6VxB7lQ0pL4jC%2FI5JgX6Np1GBK%2BflBexPFJoZ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=706a7feeb41211eeb15dca8da208398d; Expires=Sun, 14-Jan-2029 01:56:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=706a7feeb41211eeb15dca8da208398da49aaa9ff53b2ffc72bfb20d3396e0427e47fcefec24ae00da576cab0bb5919b; Expires=Sun, 14-Jan-2029 01:56:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6343232e0afa809f8f2972c8f9b09e4c138f686c-1705370178; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=pv.baUkbF88_rjaBJyUJBQSLVzrS0u3kMtDnz5eGGhY-1705370178460-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705370179","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (925, 1, '0ecf4b5b-fb98-4309-bd76-50d86a8663c6', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/99/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/99/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705370178921507400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"0ecf4b5b-fb98-4309-bd76-50d86a8663c6","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"0ecf4b5b-fb98-4309-bd76-50d86a8663c6","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"0ecf4b5b-fb98-4309-bd76-50d86a8663c6","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bdbf9aa85e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=kQ5UDoAT79fkf3WuN30kghvdNUQ2Z%2BsFX9OWOMnU9LvPoLfdjup8p%2FrAwO05Lf7eO7G3q1KLyto%2B14KqkCkVFrKdIFLQpUj2S%2BiMbJWKy7mQGcbU3SHOQ3yIDFVH\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=70ad4c98b41211eeb464c27c7797be79; Expires=Sun, 14-Jan-2029 01:56:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=70ad4c98b41211eeb464c27c7797be79c4b0043d2b56570cfda811677baeef9922c934b4122d0bb96c8ffbfbd3b5ac9e; Expires=Sun, 14-Jan-2029 01:56:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6343232e0afa809f8f2972c8f9b09e4c138f686c-1705370178; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Ag9jd90rq5st4IGWOs0ZPD6vOOszjyldvFESw6Nmae0-1705370178898-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705370180","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1136, 1, '257404b8-195e-4abb-885c-987dce928279', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[khieu-nai/backend:main] 1 new commit",
      "description": "[35db819](https://git.gdtsolutions.vn/khieu-nai/backend/commit/35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5) update - vu nguyen",
      "url": "https://git.gdtsolutions.vn/khieu-nai/backend/commit/35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "git_for_dev",
        "url": "https://git.gdtsolutions.vn/git_for_dev",
        "icon_url": "https://git.gdtsolutions.vn/avatars/009e520c8a20ee8d22d0087b59f6496f"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705630615465216500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"257404b8-195e-4abb-885c-987dce928279","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"257404b8-195e-4abb-885c-987dce928279","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"257404b8-195e-4abb-885c-987dce928279","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847b940f4ec15e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 02:16:55 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=bVp7T%2BUKL%2F3Qr4dEId3vkLF%2BuAgJXcErveIHGpTK8nNJeZk8sB8O9fN%2BmKvScO3H5kFpjRLZ%2BJiHgBsGt2iRQL4VFArm8FK1armdc7bNRJAWJFb75N5lByNrZPWP\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=d0f5131eb67011ee8687d6801a3f4226; Expires=Wed, 17-Jan-2029 02:16:55 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=d0f5131eb67011ee8687d6801a3f42262c7fa8413905951747fb09e8e138a95db4941e79c030d92c8b51937082408f23; Expires=Wed, 17-Jan-2029 02:16:55 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=960405ddce76e42ec79e92a0c812a326a03f6772-1705630615; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=lxLSmrJzmWU5ZN6odKlawy19JM82d1wd9AJycO6RZMs-1705630615451-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705630616","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (760, 1, '732238d1-947f-4dbb-9be9-677807a51c05', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #84 fix change so nam",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705025964017957800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"732238d1-947f-4dbb-9be9-677807a51c05","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"732238d1-947f-4dbb-9be9-677807a51c05","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"732238d1-947f-4dbb-9be9-677807a51c05","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8441ea10be535e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 02:19:23 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=EIOAlyRQiHGRcOICmRCp3EfbEVmQ2SrekRksVuH9tjZNN5Ko5Qfuccb48VHYXROqEup1A80bVZvSJ6QeEhP8AQs899Fi74wFybGlT5LXtXEuWyb1nYoDcEMoH6fI\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=009b7e58b0f111ee8e36227065d8f77c; Expires=Wed, 10-Jan-2029 02:19:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=009b7e58b0f111ee8e36227065d8f77cfba7264217b33c4e7816207a64e7a39c894a3cad0277b90373d0207c8a7298f0; Expires=Wed, 10-Jan-2029 02:19:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=53471e3b016f98600ab84080221ac070cf455b6e-1705025963; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ajx7KJsM2QIVDLrzO6UoVKiFn_J7nlIBxd82ALlKHxI-1705025963996-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705025965","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (759, 1, 'f9733e1a-5fa0-42cb-b5bb-af898c96076f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[d727cc3](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/d727cc3cd0303928173eddab019be9d9615d69da) fix loi - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/d727cc3cd0303928173eddab019be9d9615d69da",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705025945194749000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f9733e1a-5fa0-42cb-b5bb-af898c96076f","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"f9733e1a-5fa0-42cb-b5bb-af898c96076f","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"f9733e1a-5fa0-42cb-b5bb-af898c96076f","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8441e999eb0e5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 02:19:05 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=FpQcdGj5f301gG%2BrPaizKyimwyh8b15LVjZWR1MXdXdkj7Fls8eM95p7g8VQ5yDSnmmrooiGCrM71p8hQQEaRvEZbJMFMEzgio45w9CXRqN0QjB%2FBXCj7PFCLqQs\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=f561ebbcb0f011ee8a3f8a6fde772b1a; Expires=Wed, 10-Jan-2029 02:19:05 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=f561ebbcb0f011ee8a3f8a6fde772b1a43651453490835a84a57b549694cd3208e4d11daa3647736ac4241bcfce1b16d; Expires=Wed, 10-Jan-2029 02:19:05 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=86a7d10c7587ca62554aac4bd7841da62d25ff8d-1705025945; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=otgbkb7MQwshPc9Gylv7mWYLxf3u..Ikis5omk0_wTg-1705025945164-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705025946","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (862, 1, '64076443-b94a-4f49-b2a4-5f2bf2744518', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[5562d28](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/5562d2823f0ace47c1fca2f8fe994e65241e8bea) add full action - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/5562d2823f0ace47c1fca2f8fe994e65241e8bea",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705311230839795300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"64076443-b94a-4f49-b2a4-5f2bf2744518","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"64076443-b94a-4f49-b2a4-5f2bf2744518","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"64076443-b94a-4f49-b2a4-5f2bf2744518","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d1e955d5c5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:33:50 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4FuxW5xhDIdYwegf1stbsKO%2Fh61cMSPuDMoD8jnha0U77cZFw6sHDkT1Be7AGq%2FAIF%2B78OomZPADJG8J4ghuf8X%2BUEKH7XIY3T3F00FK7ACoIQCG7pWFj4Uv%2F5QV\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=30e178deb38911ee8ad90ef8e0e10094; Expires=Sat, 13-Jan-2029 09:33:50 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=30e178deb38911ee8ad90ef8e0e10094f16c9fc42897f381c0dd5c26d1bc1298b5fcd9743acf88dfbed0a07663519ed0; Expires=Sat, 13-Jan-2029 09:33:50 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ee919ee86b0c9eb0387b71b51b5135fecfa98ae5-1705311230; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Sr7sNKr39wPlpN_CrtqcwY.LfdPIREUuaMkkB_pJTn4-1705311230814-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311231","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (926, 1, '378bb0d9-5ba1-43f1-a285-cdae9d0432d6', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/99/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/99/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705370179298360500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"378bb0d9-5ba1-43f1-a285-cdae9d0432d6","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"378bb0d9-5ba1-43f1-a285-cdae9d0432d6","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"378bb0d9-5ba1-43f1-a285-cdae9d0432d6","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bdc25b945e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:19 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=A02WyW%2BNavB0l38ysOanMvvMr%2BgbEm9pfVVqu3DzqfK623Mu22zkkufSfSV9jgNBc41berTiSsqHRHq63xU8LP%2FF3zc6H%2F2I4hfkuLegA9U%2FUc0be0NMJXBQGKfP\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=70e6439ab41211ee90b0ae81745b42dc; Expires=Sun, 14-Jan-2029 01:56:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=70e6439ab41211ee90b0ae81745b42dce5177e3f88272f986d21c9bc4a581b0806e82c7c11ab05247aca494299d8689a; Expires=Sun, 14-Jan-2029 01:56:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ea9bc430c872836b654be2c3adda9b27a14b3c8f-1705370179; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=XaembEPn7XyM9sDXW7ihn277ehCk5H5ZtzJ343bYNhk-1705370179275-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705370180","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (824, 1, 'a0b0f596-a302-4bb1-b51e-b9d171b3cbc0', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/113/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/113/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164374987025900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a0b0f596-a302-4bb1-b51e-b9d171b3cbc0","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a0b0f596-a302-4bb1-b51e-b9d171b3cbc0","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a0b0f596-a302-4bb1-b51e-b9d171b3cbc0","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d3d3d3a5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=0EnksEkaBBHRwqMgrlyMK%2FainmcIaWVN8drUAYZEsvW3wHjo3dUOhVBw6NpVJ522%2BJRw6fT%2Fr39ODFDgahuIyijM9lGG9Zcn3zv6Hmuc6fFimnwdZ2px5jq9xiX%2B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=43f9e08eb23311ee8b23323056eea780; Expires=Thu, 11-Jan-2029 16:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=43f9e08eb23311ee8b23323056eea78059c2c0a30ff42853acc2df0ff8ab5b9322fcc9c92dbd74a69359fe4eddba9e81; Expires=Thu, 11-Jan-2029 16:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8e168380d93d5f2447c0d3e1d02f6eac14ab3736-1705164374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=0PAQI3wVHGCBhwB8WEO5pfdqCqtEwD7KJk7UWfao4qc-1705164374971-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164376","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (825, 1, '42a34637-d728-4c7c-aa5e-74f35bc31c9a', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/114/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/114/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164375402148100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"42a34637-d728-4c7c-aa5e-74f35bc31c9a","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"42a34637-d728-4c7c-aa5e-74f35bc31c9a","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"42a34637-d728-4c7c-aa5e-74f35bc31c9a","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d3fddad5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=tmF8Q9LK7UQHykftslrfgP5sr9OsNuQ3mKLZcAmrupKd2%2FI9kSU5yK0BHhdr1H%2BzWUy2NO6FyGfUD%2B5fGfijVOWkoFZx1BrE79lnmix8q0mE10Ls4eMT3cQvxieN\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=44398e6eb23311ee9176feae4a9c08f0; Expires=Thu, 11-Jan-2029 16:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=44398e6eb23311ee9176feae4a9c08f089bf2770db212f841fd09c3c08a47218c43fe7143ad3ed0c8877a7b6cfbb5701; Expires=Thu, 11-Jan-2029 16:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=79ab1ef4be4d4523e6e35a7c89bce78eb36e6f50-1705164375; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=6TU7KiD2HIc9Cjd6gHU7ORO8zncnDoPA6Yx112pZI5k-1705164375387-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705164376","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (758, 1, '14ca8f8f-d665-4041-be36-1a6ff056a03e', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[khieu-nai/admin:main] 2 new commits",
      "description": "[94ffd4f](https://git.gdtsolutions.vn/khieu-nai/admin/commit/94ffd4fad7e84bcd1525ff0775450354d753d78a) Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin - vantuan\n[6ddc330](https://git.gdtsolutions.vn/khieu-nai/admin/commit/6ddc3308160e6450d6b7a16081e12973629317a6) fix: component address + oganization - vantuan",
      "url": "https://git.gdtsolutions.vn/khieu-nai/admin/compare/ec74b0ab70e1e48ddd32ec953e0086264cc0de94...94ffd4fad7e84bcd1525ff0775450354d753d78a",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "tuan",
        "url": "https://git.gdtsolutions.vn/tuan",
        "icon_url": "https://git.gdtsolutions.vn/avatars/ef8cb8091e07736d503797a3fd007bb52d58ce27f461213703866d303da8e9a0"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705025089307076200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"14ca8f8f-d665-4041-be36-1a6ff056a03e","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"14ca8f8f-d665-4041-be36-1a6ff056a03e","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"14ca8f8f-d665-4041-be36-1a6ff056a03e","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8441d4b5db355e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 02:04:49 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=7jrG5fh0gUa85AWI7nnDew7w%2BY0p3Y4WJWOAaG25%2B9x%2FSzsuDgHpyDHlUh0St6Wh3wI%2FDbVL6Ac6Tuge9gnp6a%2Btfiyg0UL7%2BFf2rakhXqwBc0b%2BDqDHD2a0Gfg%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=f73c4e0cb0ee11ee972bea1835bc0607; Expires=Wed, 10-Jan-2029 02:04:49 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=f73c4e0cb0ee11ee972bea1835bc0607103a9af2e14333425058ec358d2dcd2eb5b2f6841b8100b046dbfd433c337eff; Expires=Wed, 10-Jan-2029 02:04:49 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=2c17610a1da6c25cee7628ef843539691e039c20-1705025089; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Y0qnzgUD9CXH9hmYSwCjP6iIY5wmJdQF.Spb_wtwYP4-1705025089284-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705025090","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (911, 1, 'a9690564-6082-4dc6-b844-7183b0b28d01', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/100/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/100/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705370172248491400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a9690564-6082-4dc6-b844-7183b0b28d01","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a9690564-6082-4dc6-b844-7183b0b28d01","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a9690564-6082-4dc6-b844-7183b0b28d01","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bd946a3e5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Gfbkbp%2Fdlh4RAyrtdbLQqb%2F4T7yPPAJnZnO%2FdZf8kcYOlED6Ch8bzg5wCCZ3Vlji0QwXQCzsre8XZAoC%2FSaMHAa9LO9SncxXiSmlF5FOE99jxsKXaalGh%2BHUUZ4x\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6cb2db94b41211ee91461ada573ed41d; Expires=Sun, 14-Jan-2029 01:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6cb2db94b41211ee91461ada573ed41d8bead1e1f5b8a535b87e10a91ee60dbe1804309e0ee2b777ed417d0ddafb6d0a; Expires=Sun, 14-Jan-2029 01:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6468c595ba3207773998ffb7e5ca2873d0955bcf-1705370172; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Fpk4f605vsq8SeUNv7f9AG0rZJ_df_PtDyJ6bN2_wBA-1705370172224-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705370173","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (761, 1, 'b4b842a4-0d1a-44c1-861e-46829d9c7475', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #84 fix change so nam",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705025979202969900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b4b842a4-0d1a-44c1-861e-46829d9c7475","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"b4b842a4-0d1a-44c1-861e-46829d9c7475","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"b4b842a4-0d1a-44c1-861e-46829d9c7475","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8441ea6f7fa65e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 02:19:39 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=swwgjRdzyGqjvZVW2HjFHb8V4Vxi2tyo3UcuSFaNJrvqxL8398UrBtmhuYfjGs%2FOl3ltjPZDZIV2O%2FIwUSnchPt3CLj4Idpru3a0fsqEcQw4k18CRe6FTqlV2kMQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=09a6ba3ab0f111eeafa0d2890ffc9a2d; Expires=Wed, 10-Jan-2029 02:19:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=09a6ba3ab0f111eeafa0d2890ffc9a2d43e91dcf038c5e0e4d1eaa24391a27a992d5af6ca9fa853ed1d87f9deb5123a1; Expires=Wed, 10-Jan-2029 02:19:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=de9cb41c1cb9296ff4a97bb3689cf93762f6253b-1705025979; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=236D1G0D_DkyJtUGw3oCNdGuhXja7uV8QfN9ZhqrfUQ-1705025979181-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705025980","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (798, 1, 'b325fd87-ee20-4fdc-a6ac-d5f0155b146b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/backend:main] 6 new commits",
      "description": "[e229e9e](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85) update - lqdat\n[bf76367](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/bf763670dbcd04cf2d62a4351e7bd827afd8c51f) update bao cao - lqdat\n[2c1fcef](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/2c1fcefaef32b97c209b50d4e26b254dfc876ebb) Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend - lqdat\n[2c28f28](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/2c28f28773d5b3c23e888d4e0d18be1aeeeaf91c) Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend - Nguyễn Khánh Nghĩa\n[dc7009d](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/dc7009da3e2ca79ea7f8bc87835aa020280a81fd) fix Nhập số kế hoạch không được nhỏ hơn số đã được phê duyệt - Nguyễn Khánh Nghĩa",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/compare/869268d636fa17b9ae86c4f0ce751839607f6610...e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "giao-duc-nghe-nghiep",
        "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep",
        "icon_url": "https://git.gdtsolutions.vn/avatars/802cdf8532d94c10cd481e4e3983c194bc5f4fc5742e4a5d699a740361409a4c"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705066575050242400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b325fd87-ee20-4fdc-a6ac-d5f0155b146b","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"b325fd87-ee20-4fdc-a6ac-d5f0155b146b","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"b325fd87-ee20-4fdc-a6ac-d5f0155b146b","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8445c98a4fa55e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 13:36:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=LSblvgcaTLn4CeODgv8LC2EzAZWiArvbVEBV6aBuBrnJb8rygH4btJDVp7fjMN39zo8Q%2FYrW7VPQOD5pGLg4PXSuqv9s62WgejqIWrhkkE3JDnMqQRXQ%2B2hcEjKl\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=8eab13eeb14f11ee8f92b2f1f8ff99d6; Expires=Wed, 10-Jan-2029 13:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8eab13eeb14f11ee8f92b2f1f8ff99d677b4778d245f8a3c3b1a6b1f88a1ef11b7e587e4e2cbdfad765c143e98dc6ea4; Expires=Wed, 10-Jan-2029 13:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5564df5d5dfbc99cba1b62cb4b94ecd67183bdf6-1705066575; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=5lz8gXcuZbFtGzWjKEH8j.0IwetCQqr.09NBETsuVgU-1705066575027-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705066576","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (863, 1, 'c6094487-546a-4ef0-9b60-e0c85957e0a8', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #92 add full action",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705311363712930600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c6094487-546a-4ef0-9b60-e0c85957e0a8","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"c6094487-546a-4ef0-9b60-e0c85957e0a8","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"c6094487-546a-4ef0-9b60-e0c85957e0a8","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d21d4f9b55e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:36:03 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=uu8XDq76f3%2BfC9AsmSbwygdynf26sWryuEfAJjSGg8vDqLsnK2Gj6ZG7qGDG9UTZY38SM7nSyqqwZ427Dv6B3o7eZap7dbjx9POEoRKtUVb53oWYWXJnIS6AxsiN\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=801442bab38911ee862026f75c34e25e; Expires=Sat, 13-Jan-2029 09:36:03 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=801442bab38911ee862026f75c34e25ee117e091497ca40c46e9a5b45de4556d800b03aa936eb2cf62bf6596cb5ca7ae; Expires=Sat, 13-Jan-2029 09:36:03 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5c8ba93b13f1419474df25a83dbb2df19d563e8c-1705311363; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=kSwYiqCTBMfo.S9Sfmi1GE2ndq3SCFxk265ZQO5umNI-1705311363686-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311364","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (912, 1, '581cec99-005d-42ce-a438-bf402400c4e4', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/100/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/100/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705370173520902200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"581cec99-005d-42ce-a438-bf402400c4e4","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"581cec99-005d-42ce-a438-bf402400c4e4","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"581cec99-005d-42ce-a438-bf402400c4e4","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bd98abd95e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Pio7kMNpnsnoqRmCzWXtLhGEVLK7G9vd43C9VxTM4pUoFts1DUH2bc%2BUC5z6sS7TgnhQkVAEBjMxx3ulc3o6wqE2BFfj3EbD3CJJjYcjgfgpqGTy1DJaK%2FVQgloL\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6d7512feb41211eeb707cacdc54b0cd4; Expires=Sun, 14-Jan-2029 01:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6d7512feb41211eeb707cacdc54b0cd4d2be45c5ef908b7e124256ce8b08201e84ef15d921b955a873569ea980387897; Expires=Sun, 14-Jan-2029 01:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=69f1685ddd2f72342ad4b6d7471205885d458559-1705370173; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=xqbk59ZSe6S.XC0N.ofAEmPP45HjwkiJbpJGGKgdoXM-1705370173497-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705370174","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1018, 1, '5179980f-090b-4643-83f7-a43310ea196e', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/backend:main] 2 new commits",
      "description": "[fdee172](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/fdee172356b6f9f25ce145921047bafcb1d2e5ca) Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend - lqdat\n[032f565](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/032f5653d1f00c12ee7afa5e20bfed87acf17720) update - lqdat",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/compare/7c37978908457eed35a776de122d752d008605f5...fdee172356b6f9f25ce145921047bafcb1d2e5ca",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "giao-duc-nghe-nghiep",
        "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep",
        "icon_url": "https://git.gdtsolutions.vn/avatars/802cdf8532d94c10cd481e4e3983c194bc5f4fc5742e4a5d699a740361409a4c"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705478172418749100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5179980f-090b-4643-83f7-a43310ea196e","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"5179980f-090b-4643-83f7-a43310ea196e","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"5179980f-090b-4643-83f7-a43310ea196e","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846d0a4e38ba5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 07:56:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=mFHpYfTEmnEQD8%2BnbwNdHSYZbJIi6uzvaBJgJ9QtLhp%2FvW3Ao23CqsrbVb4cdTVrYNGuxYPMfEVDr3wtJtH2bWKx28n45rCRiqoyWcljLraaIQ7tfG2efy1oAt6h\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e1ce26d0b50d11eebfa70ed9ba29d9fc; Expires=Mon, 15-Jan-2029 07:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e1ce26d0b50d11eebfa70ed9ba29d9fc8ac6cca63e8c1f7d2c9fb21622bc39140424e51cad218ec8b3a26ae85db89594; Expires=Mon, 15-Jan-2029 07:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b9c382e964e4dec636848bec906aaa0e81d1920a-1705478172; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=E9kUNT4AZFUOuToDZgtdUgrJCjvcK8R9DXDnqGcsS3o-1705478172396-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705478173","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (762, 1, '2d4ec3a3-ba0f-443d-b3fe-7e45686bffbc', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 3 new commits",
      "description": "[d48e38d](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/d48e38d9a17ce739803e4e98d015c2fc443742ac) Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84 - hungthinhne\n[d727cc3](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/d727cc3cd0303928173eddab019be9d9615d69da) fix loi - Lê Hùng Thịnh\n[7f5f892](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/7f5f8927493694fa7b669e9f03f9b7cb95fda38b) fix change so nam - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/50815ab17a48609b68bcfab8f7f40e59e7dcb4f3...d48e38d9a17ce739803e4e98d015c2fc443742ac",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705025979586129400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"2d4ec3a3-ba0f-443d-b3fe-7e45686bffbc","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"2d4ec3a3-ba0f-443d-b3fe-7e45686bffbc","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"2d4ec3a3-ba0f-443d-b3fe-7e45686bffbc","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8441ea7218515e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 02:19:39 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=0XN1CkxoXZIbQPzyiphT7w0W6BU9%2B%2BYZadECZ6oLGYBvrYj8rj3WcFmZmTR3bu532zi9RpBj%2FBuugobdUFAXSNYy5l3L3xcDC4%2Bkx8t784FLwteV8RTpV%2FazJnQs\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=09e2bd8cb0f111eebfaa5e96e0cb35c1; Expires=Wed, 10-Jan-2029 02:19:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=09e2bd8cb0f111eebfaa5e96e0cb35c1d5fd572cc9e11a05a447d25ed42134ecdbb999eddbfe44756a6b2a9f9ee3a16e; Expires=Wed, 10-Jan-2029 02:19:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=de9cb41c1cb9296ff4a97bb3689cf93762f6253b-1705025979; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=jGTy8Zi6dmKwpsQ2OWqKztRQ5JmoaIDBMSkRG5bG4jM-1705025979565-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705025980","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (913, 1, 'ebcc8ff5-e6f2-4c7f-a01d-5822122aa4de', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/101/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/101/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705370173971430000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ebcc8ff5-e6f2-4c7f-a01d-5822122aa4de","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"ebcc8ff5-e6f2-4c7f-a01d-5822122aa4de","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"ebcc8ff5-e6f2-4c7f-a01d-5822122aa4de","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bda09ec95e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=xwECbOp8Rgwphpjp7sTgl6knC%2BBm1vLxHthL6rLDuwml9zmzSnEbPFrJBJunFXeqXJ1yV8refRbrP97ekKI4wmBIUJZ%2FwfKNG4bSyccXQSRHRWcDTSmM%2BPKyLc8B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6db9cbe2b41211ee9a4f3ecc425d0a0e; Expires=Sun, 14-Jan-2029 01:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6db9cbe2b41211ee9a4f3ecc425d0a0e7a91bdabe016a96325b27a980336551951625f92c408ddc7df9d788fd98f6247; Expires=Sun, 14-Jan-2029 01:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=69f1685ddd2f72342ad4b6d7471205885d458559-1705370173; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=LqTSq2OL8OtSIJuVYL6LgKd3wialU.tCxc4Q4Xc0X0Q-1705370173948-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705370175","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (864, 1, '60646165-0eb7-4057-a4bb-35be767dab86', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/105/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/105/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705311373007691200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"60646165-0eb7-4057-a4bb-35be767dab86","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"60646165-0eb7-4057-a4bb-35be767dab86","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"60646165-0eb7-4057-a4bb-35be767dab86","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d220e49f05e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:36:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2BSbcDEFcOYWEdHrXMHEpGAFuSsXXNokJcBUG512KjtrRzKG7Sl%2FwmOxLDZdgfq%2Bx9CU6oJM7aAK0JOEYsrjCMdRDdIwmFTxCgClBBcf6VozaCoPReVEne9zeKtd5\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=859ea2a2b38911eebd846ef5a4795949; Expires=Sat, 13-Jan-2029 09:36:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=859ea2a2b38911eebd846ef5a47959490ba6ffa86311dda72696206f654178a19fa7c14510fc20e225e008a0dc040fda; Expires=Sat, 13-Jan-2029 09:36:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a0c6e23b3c7b993c1f3db16a61bdca7f3e8ec3ff-1705311372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=3S.gXpEX860pChm7dZOZtdQcwxsXNeofkEBy7ZAhqDQ-1705311372982-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311374","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (865, 1, 'b9f21476-a0cf-4210-8b1a-d229e3bd6dec', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/105/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/105/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705311373596581200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b9f21476-a0cf-4210-8b1a-d229e3bd6dec","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b9f21476-a0cf-4210-8b1a-d229e3bd6dec","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b9f21476-a0cf-4210-8b1a-d229e3bd6dec","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d22116bb15e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:36:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=cMyNKyKgWeo2LPso%2FTHb9FIMTtSjfMUq%2BX%2BVmw2PXJ4yZTXew%2FThs9KEB%2FzZEXYiqK5uIjQ5gh%2BeuyAzXmyqWrbGwWemDPjcl%2F8ahg0ztrnM0rrUgbsij6XrROcn\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=85f89a14b38911eebf39faa855ff95e7; Expires=Sat, 13-Jan-2029 09:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=85f89a14b38911eebf39faa855ff95e7855d7b78d4b7a16dfcd05a2256075d280fe933d3ace823cecb8cd64eafa1bffe; Expires=Sat, 13-Jan-2029 09:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cf1a8476a8df83cff19d7a35921a7097204ef541-1705311373; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Qve6dTY_SuAgwcMdZZSdm6WF24Q_FR0J0PFgi5DmPB0-1705311373571-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311374","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (866, 1, 'a55539c8-0ad1-4fb3-a13a-65ab67cc4a0d', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/106/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/106/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705311374032779600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a55539c8-0ad1-4fb3-a13a-65ab67cc4a0d","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a55539c8-0ad1-4fb3-a13a-65ab67cc4a0d","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a55539c8-0ad1-4fb3-a13a-65ab67cc4a0d","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d22151d675e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:36:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=FevNdmm3VXXxifwHKPdLwX0Uam2E06W%2BDLA6S4FLlPldCElgSfGfDIPSr1yss1KEYHN%2Bimb1V5VtHbVgmH%2Bq2ThtB7r%2FWfJTbeyr0CKAEc3Ukamf0JmkZ64rG4f5\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=863b2b7cb38911ee9f53aafc74f5fb1c; Expires=Sat, 13-Jan-2029 09:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=863b2b7cb38911ee9f53aafc74f5fb1c0fb1ecc3a0cff7031d361ceb5a27a5d16f7bf3261ab9f03d861328a6bf3ca8b1; Expires=Sat, 13-Jan-2029 09:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=f590149157ae6f731c6d4be3f2660471148bad45-1705311374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=kEVyyL.yCVarDUIb8Pj.BGZdE1lyKHuEkQRPqO_gOd8-1705311374008-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311375","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (914, 1, 'a0163db1-5b90-4d69-9b20-186a54570151', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/101/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/101/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705370174397567000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a0163db1-5b90-4d69-9b20-186a54570151","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a0163db1-5b90-4d69-9b20-186a54570151","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a0163db1-5b90-4d69-9b20-186a54570151","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bda36fa65e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=RSnWbo%2BBH6lITlSTojWLIjLmZ4Quu9mN19qJU3ASDDU5a1DXP65I%2BKCf2rs3Ss2ld%2Fm5SSLN%2BVZ206EQSy0duBV30RAPcX6%2FByBDWR8yrpvv%2FokzzBBolANb6jyA\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6dfb21f0b41211ee808e1e2d12791016; Expires=Sun, 14-Jan-2029 01:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6dfb21f0b41211ee808e1e2d12791016b1236b7e0bd0ca37b04321e40d1f0b3ca3c866f9e545cb330a40b30a71a69a7e; Expires=Sun, 14-Jan-2029 01:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0e18a1c25fefeaf0f2596f0106d076032278fc0f-1705370174; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=FBW_t_yhxdEAt3Nohxv6sv4ajRvyJ99jjg1ouv1Du0w-1705370174374-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705370175","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (915, 1, '8bcbd9fd-7472-4827-9efd-564a4bf7da75', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/102/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/102/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705370174794513100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"8bcbd9fd-7472-4827-9efd-564a4bf7da75","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"8bcbd9fd-7472-4827-9efd-564a4bf7da75","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"8bcbd9fd-7472-4827-9efd-564a4bf7da75","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bda618a95e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Yob2G6gPUjSqO2%2BFKd2QjjyKUWobtPQ2waGftbAnxw5AcJra2uikW6TTBeiZ6sXtIAUaem3y%2FjIWb5aSdUZxj7TPjg%2BlLTVcZm3kaoZC2wTgsU%2BAUdZOI3ISRg0W\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6e377f10b41211eea08646547f05e5a0; Expires=Sun, 14-Jan-2029 01:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6e377f10b41211eea08646547f05e5a0bcae0b5f68f78b1f2259e5e5cdcd6a64e0c12c380f0c647d7e45b8eed9c976f5; Expires=Sun, 14-Jan-2029 01:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0e18a1c25fefeaf0f2596f0106d076032278fc0f-1705370174; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=pFP1uIO0b5Ezqt7YHKxYK0n53PrZScDh9wX5HDi4cMg-1705370174771-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705370175","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (763, 1, 'bfdf84fb-b8f6-42ed-b53e-e2d5e03d919a', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[c78cbba](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/c78cbbacb228029e2f7904edb91659aa06135be7) add fuc in send gmail - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/c78cbbacb228029e2f7904edb91659aa06135be7",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705030270978065300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"bfdf84fb-b8f6-42ed-b53e-e2d5e03d919a","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"bfdf84fb-b8f6-42ed-b53e-e2d5e03d919a","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"bfdf84fb-b8f6-42ed-b53e-e2d5e03d919a","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84425333fa8f5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 03:31:10 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=hCbzrVZo12pyHAcf%2BQM8eagzHIklkgGVEAaIBK4SQPq%2FW%2BrUsOds%2F9MP8B55BT8cm5zpu%2BppWJ9P0%2Bxzi6tTIxI7Ul3ESog3oDT4jn%2FOQbE7UxTWGodG30zMGq9U\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=07c178b8b0fb11eead25768d246128ae; Expires=Wed, 10-Jan-2029 03:31:10 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=07c178b8b0fb11eead25768d246128aedc37225eb39d321ffa1b3d661276fed29bbd731c3915b2f99f99fde5f82f4b65; Expires=Wed, 10-Jan-2029 03:31:10 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b39d08d7abda7de167c69e3e421c6064789d1e63-1705030270; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ikQjHv_ZpDXpOkD4Dq4sLl4b08xANfUejQ5OQ7uZ0DA-1705030270956-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705030271","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (867, 1, '056b9dc2-3492-4291-8fb1-5792be03eb3f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/106/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/106/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705311374439441600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"056b9dc2-3492-4291-8fb1-5792be03eb3f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"056b9dc2-3492-4291-8fb1-5792be03eb3f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"056b9dc2-3492-4291-8fb1-5792be03eb3f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d2217ceb95e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:36:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=6F1F8QwnUyq7WGydAjRIJnSIJPFhhEjVmvjel%2BthfvuofnCKXSRmv6a%2FpKRT0hQdZ2lBJaojuVUZzhyRSuHgaWEAtf5qPIBvSlqaJEbF3IOwWHJthFc7Dtn3n32Z\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=867941e6b38911eebfa746547f05e5a0; Expires=Sat, 13-Jan-2029 09:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=867941e6b38911eebfa746547f05e5a00d8284a29237ee62a11c1dda2f6e75f64a970cbf07b3be844612c8cf8bd9336e; Expires=Sat, 13-Jan-2029 09:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=f590149157ae6f731c6d4be3f2660471148bad45-1705311374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=9qz3qbh6vFKZZ9B.ce3ne17EZQoP5yJA6KBU7LaNR8Q-1705311374415-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311375","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (869, 1, '90781d7c-cc28-443a-a0d5-0aa1bd9118f6', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/107/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/107/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705311375327504800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"90781d7c-cc28-443a-a0d5-0aa1bd9118f6","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"90781d7c-cc28-443a-a0d5-0aa1bd9118f6","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"90781d7c-cc28-443a-a0d5-0aa1bd9118f6","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d221d39915e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:36:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=nPSMhmDSrYsoHdPs%2BZmpqtR5ChvrmXUfTwIhN85fdiykfZ5BuAwMCzmifSMknxMcaYg6ogbzj4eerbEfG%2B%2FJPdUZQjLIwgrXFhzyiVgDUje3N8wvrHxx%2BDSQ%2BwT8\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=86f9c082b38911ee9fc0ce3d12ff1fe5; Expires=Sat, 13-Jan-2029 09:36:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=86f9c082b38911ee9fc0ce3d12ff1fe54efc2bf057d9130cf188fedbba2451b3c078ee7a813333a8c0a40f651e9dd541; Expires=Sat, 13-Jan-2029 09:36:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=488811ceaf6a7bf46abc0dba827ee5335addf86b-1705311375; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=bV9fXCeRMTsspP1fBlcmvFxNuDvOLMFJevCfIq1yF08-1705311375301-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311376","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (868, 1, 'edd061cc-8be2-4864-b554-df35c24d895c', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/107/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/107/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705311374902147800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"edd061cc-8be2-4864-b554-df35c24d895c","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"edd061cc-8be2-4864-b554-df35c24d895c","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"edd061cc-8be2-4864-b554-df35c24d895c","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d221a58275e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:36:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Zq6vxwLnNIM%2F%2FnhUWg9C%2F1G1ojYheE9kXn6tUCezgbFfu39DU6lF3zv89f7snhzc3j3vDy3g6WTdWPz9PiFzhwdbMMAXkqzDqAZvuvpnWqorKvokihTbDLqXZy7s\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=86bfe204b38911ee97c85619581d3564; Expires=Sat, 13-Jan-2029 09:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=86bfe204b38911ee97c85619581d3564541123d610f7dc338376f2c587cb783903ed33396fd72352e6ab076c8514768c; Expires=Sat, 13-Jan-2029 09:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=f590149157ae6f731c6d4be3f2660471148bad45-1705311374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=8GHyRmovZ8cTp5r81x67gdEIbRqrSuBYcKUTLPqZkMw-1705311374877-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311376","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (870, 1, 'c34c74f5-07cc-4db5-89fe-3c23522afe1d', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #92 add full action",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705311412208786900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c34c74f5-07cc-4db5-89fe-3c23522afe1d","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"c34c74f5-07cc-4db5-89fe-3c23522afe1d","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"c34c74f5-07cc-4db5-89fe-3c23522afe1d","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d23030adf5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:36:52 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ZpYd8d2ACKWwtKcIsfw5h3Hf%2FP%2B78CoUPfo2RQXJiJbI5Ko%2FlH46hQJJVhddtcWxt3JuX0Frk7okYjHB%2BFrs81M2cYrdw%2Ba0Eco%2BmmuzwUbcmET5nAMoSxjJp%2FHo\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=9cfc5f70b38911eea1f0ea1b2870da27; Expires=Sat, 13-Jan-2029 09:36:52 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=9cfc5f70b38911eea1f0ea1b2870da27e39a185fcf4dc58fa24a69f79ec1fafb5c62a6bd9b16d1b175efd048de09b33e; Expires=Sat, 13-Jan-2029 09:36:52 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b4c426505c73add57cd10a5b3a87311e4743bc84-1705311412; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=bJ53LnwJ3FFAy4gQkuL3u_wtDmoeE9dtp0_7NJ8N58E-1705311412184-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311413","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (871, 1, '7ab93d6d-e967-4257-8427-b6733d12d1fe', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[9b29db6](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/9b29db610b20afcdaeec0f83db697b5c93ff5abf) Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92 - hungthinhne\n[5562d28](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/5562d2823f0ace47c1fca2f8fe994e65241e8bea) add full action - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/7b0e4a3aa34a91347178a93361fc9e193abd595d...9b29db610b20afcdaeec0f83db697b5c93ff5abf",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705311412671059000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7ab93d6d-e967-4257-8427-b6733d12d1fe","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"7ab93d6d-e967-4257-8427-b6733d12d1fe","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"7ab93d6d-e967-4257-8427-b6733d12d1fe","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d23065cb35e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:36:52 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=X6o1Vy4SQSJcVt1APBFp%2FzOp6a7ZKdD01uXYoY1%2FMZTrm7lJmxuScb6%2F2wMDCFfyNayB5h9lCtJogfP1VAYAZR6%2F8NNFkdyHstizTP9P%2Fudl5Xb8onneJE0hLJ21\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=9d42dea0b38911eea8e8fa445db29513; Expires=Sat, 13-Jan-2029 09:36:52 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=9d42dea0b38911eea8e8fa445db295134aed18e851081363468403d9df3c60a03292d57246a0ad2055504e2cf8108a79; Expires=Sat, 13-Jan-2029 09:36:52 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b4c426505c73add57cd10a5b3a87311e4743bc84-1705311412; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=cGDKKpvvo3Yab.71ka6bZ3ni5afYXT32vBgWN9oudHo-1705311412646-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311413","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (919, 1, 'f6c0b5f7-d9ef-45b1-a150-789ac2c1249d', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/96/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/96/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705370176405832800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f6c0b5f7-d9ef-45b1-a150-789ac2c1249d","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f6c0b5f7-d9ef-45b1-a150-789ac2c1249d","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f6c0b5f7-d9ef-45b1-a150-789ac2c1249d","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bdb04c485e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=5G7a60m2qYNrb2lsuAJUIpgVaE%2FAPZJxwtS8SKcfBp3nm0kwErb%2BKfd0c9ztevf%2Fo2kk8T%2B3a0iy%2BjO6kPIcFi%2BgW5oWfI6FhKc0nJLi%2F0RrO5890J4oCoa%2BCGdc\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6f2ce888b41211ee88bafa3ef0f9c788; Expires=Sun, 14-Jan-2029 01:56:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6f2ce888b41211ee88bafa3ef0f9c78806d584bea0b7f5cd673c2eb3f6941fc7e81ab27a005a851c44398a5e05aea567; Expires=Sun, 14-Jan-2029 01:56:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5ad7e984a110d86f31ba6b463c5faa38019dc679-1705370176; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=WjSF17F.hDsW17aNbTpjraQ5cvqL825gRDO4ugvSm6U-1705370176383-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705370177","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (875, 1, 'e9a1002a-0a71-4730-befc-417346421b0d', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[5b4556a](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/5b4556aaf08d874c598d4e9213153ede266d695d) Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93 - hungthinhne\n[489a7a7](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/489a7a7fdc58d8144acd13c4cd58f66912cb341c) fix bug - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/9b29db610b20afcdaeec0f83db697b5c93ff5abf...5b4556aaf08d874c598d4e9213153ede266d695d",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705312014552912300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e9a1002a-0a71-4730-befc-417346421b0d","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"e9a1002a-0a71-4730-befc-417346421b0d","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"e9a1002a-0a71-4730-befc-417346421b0d","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d31b8aa045e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:46:54 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=bkiWvU2XSUlMOdzmZ0E00dmpdeHsDLzic7S7Bi0o5TnDHPlftkPbbScAfOdq%2FfZ%2BAXX8fKFrLqxLiQQr%2Fl4alL5MTB6bT9EJc0%2FrioaBt%2F6itbbV1G4ypKEjuWlQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=0402aa70b38b11ee9730deb1b7e0c94e; Expires=Sat, 13-Jan-2029 09:46:54 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=0402aa70b38b11ee9730deb1b7e0c94e0236ffcfbdc2386141ec38bf3e74faae10d3f80825fc48c579a2575c4ea21a37; Expires=Sat, 13-Jan-2029 09:46:54 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d30be13d9cf5f06fc5abc64030aaa2d68466d19c-1705312014; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Lz3FpUJHbVFnHLtGdS1F4KyS2FddmmuONpPPD8H9njU-1705312014527-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705312015","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (764, 1, 'd2ed7b2d-d0ab-4d46-a3de-016b25a61291', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #85 add fuc in send gmail",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705030727761869700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d2ed7b2d-d0ab-4d46-a3de-016b25a61291","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"d2ed7b2d-d0ab-4d46-a3de-016b25a61291","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"d2ed7b2d-d0ab-4d46-a3de-016b25a61291","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84425e5e4a495e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 03:38:47 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=HbKRBsqu97hZVxxL9gR6ODN188rLVpmHngQdP4qsVIlpMOlmDWpy2%2FFCsN6uG%2BDwyR3mQPsZN%2FBscbhZbpSLkZfDUuD2RnvcF7hEa7%2FiFcP25WiuDlJPGNZDYWIc\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=180558bab0fc11ee879fa2c9bd3edab6; Expires=Wed, 10-Jan-2029 03:38:47 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=180558bab0fc11ee879fa2c9bd3edab663ae1ced4baf355a9661b80c836891c5c47f6bce84931fe8b1fc2f5de7e97cdf; Expires=Wed, 10-Jan-2029 03:38:47 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=72e1a91ef5334767c77311b5052b14c826fbba6d-1705030727; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Ejb2AkkxJvtCNy3jdxscbjP5XdW9hwTIYFnveK.qatA-1705030727742-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705030728","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (872, 1, 'acc32a4b-2d2d-4de4-90a4-3a69f3ddaddf', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[489a7a7](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/489a7a7fdc58d8144acd13c4cd58f66912cb341c) fix bug - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/489a7a7fdc58d8144acd13c4cd58f66912cb341c",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705311889573808200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"acc32a4b-2d2d-4de4-90a4-3a69f3ddaddf","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"acc32a4b-2d2d-4de4-90a4-3a69f3ddaddf","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"acc32a4b-2d2d-4de4-90a4-3a69f3ddaddf","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d2eab4daa5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:44:49 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=QSpUPpRCZ5xdhGfpNNqww%2FGl9VAUsXARVXdVkQ3KMZEDIsj%2Bw19ZgbjUvSafxQ%2B7RIThvQHLpeON3AeTjFsbHYN7JA%2B1%2F2e1iHRdzrZhxw0lOHPB5r%2FDnLVnkJsP\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b983e6d0b38a11ee9c8446d3f7970317; Expires=Sat, 13-Jan-2029 09:44:49 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b983e6d0b38a11ee9c8446d3f79703178edbdae6f83a79780ec699449a32c42f56052906e21691d3b70be8e789f4fb69; Expires=Sat, 13-Jan-2029 09:44:49 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e612d4c7c6330ea760ca9febad1e3100d7221faa-1705311889; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=12_okTRkZvU0nvXCVqYtZyoodYiiTHS_b8HkOMxD2uA-1705311889546-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311890","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (799, 1, '9572ba5b-3e71-40b0-aab1-6fc1112d6da0', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/admin] tag refs/merge-requests/3/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/admin/src/refs/merge-requests/3/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705076174421839500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9572ba5b-3e71-40b0-aab1-6fc1112d6da0","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"9572ba5b-3e71-40b0-aab1-6fc1112d6da0","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"9572ba5b-3e71-40b0-aab1-6fc1112d6da0","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8446b3e7c8a45e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 16:16:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=UsPxabaQLpLQHIWXTXAddUQhwyftKVkpgo%2FwAqbYOeslDVJG9WsbWE2rzPSwtGT6s3xvmneLhYN%2BhLmbTJyAMYgcx97GskvjuCfA2IA4MBsg8S4VnL585YJv5uki\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e856ba90b16511eea251f60d09edbba6; Expires=Wed, 10-Jan-2029 16:16:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e856ba90b16511eea251f60d09edbba63fb5ec637db3dc885628568c435942f82ff75beae4f9eea8206a439e2c0f74d7; Expires=Wed, 10-Jan-2029 16:16:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cc82c848489849ff2b3083958f85be4c924b843c-1705076174; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=5Fq65ECiirjt7iOZ2CcXC.4lNnlmgDfdVia8d89g26Y-1705076174397-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705076175","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (873, 1, '42019104-7aac-4909-b113-4963a09095bb', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #93 fix bug",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705311946576001000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"42019104-7aac-4909-b113-4963a09095bb","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"42019104-7aac-4909-b113-4963a09095bb","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"42019104-7aac-4909-b113-4963a09095bb","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d30100b0f5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:45:46 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fk3wbugdstvcyrok8S1jGz8S9M%2BDMx2UVzmj9NWweeubh15%2BUGi7iMYFVrRh4z%2BY7zs0bS2qCtWk2jmvLwqyPSz4W2Fsxiu%2BIg%2B%2FxTYc0Hff9Hvx2RMhSwDEMFFt\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=db7e3268b38a11eea8c03e914bfcdb9e; Expires=Sat, 13-Jan-2029 09:45:46 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=db7e3268b38a11eea8c03e914bfcdb9e2ba2c93a19d4ffc01df919140d0e3d11e55069953eb074e600023bd6ab28a35f; Expires=Sat, 13-Jan-2029 09:45:46 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=4de56c38056f6dfe996653a694b43eb466e088df-1705311946; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=PCeLDoKFK8qLhYpZSfJ6JA6.RLtUI0Aaoz.G45bX6VA-1705311946550-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311947","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (922, 1, 'c2dd650e-5472-48e5-8b18-d60f24e64403', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/97/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/97/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705370177715891700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c2dd650e-5472-48e5-8b18-d60f24e64403","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c2dd650e-5472-48e5-8b18-d60f24e64403","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c2dd650e-5472-48e5-8b18-d60f24e64403","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bdb87fdd5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=zz1BikBBH824RA79%2BRxKWdRkF00yC64vloW1f%2BOjrIV4v5DBBy%2BvXJTyvt5aJ1yLqTvNVvAoim8nqmtczgW9J2esgHzGKeG8zWkuJUFWIHkWz5FwbA%2Fjawu%2FWc9v\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6ff551bab41211ee8a4c2a9498a7652f; Expires=Sun, 14-Jan-2029 01:56:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6ff551bab41211ee8a4c2a9498a7652f80c9e16e8284e98b8603448263796c3d39711f8c30741314567b22b6794dad8f; Expires=Sun, 14-Jan-2029 01:56:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=c4877b22ea882bff27687245eb767429efa8e202-1705370177; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=c7sGY39QWA.PmAa3JKAd.qQeoKLThBhcQ6MhXxZuDvY-1705370177693-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705370178","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1137, 1, '76466acc-b229-4f35-9705-59d0537f0af8', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[8fd1ec8](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8fd1ec8092107d71cd610bc15090a66132b89ce0) update phan quyen + filter - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8fd1ec8092107d71cd610bc15090a66132b89ce0",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705630950656409100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"76466acc-b229-4f35-9705-59d0537f0af8","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"76466acc-b229-4f35-9705-59d0537f0af8","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"76466acc-b229-4f35-9705-59d0537f0af8","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847b9c3e09cc5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 02:22:30 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=3pSPPN3W2pFqFCmFcJdIc9jmMTUggCEuKgVKc2BnJUx81CAtgW5z6y6VsDiJhaJa2Mar0%2Bx14fIiS%2FS7eP5dbpfAcLzAug2DfXScbPYjfrFZH%2B%2BRIDtPazLHmzvk\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=98bf20e2b67111ee90a8128d374b524d; Expires=Wed, 17-Jan-2029 02:22:30 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=98bf20e2b67111ee90a8128d374b524d1c4349833a5be6340e1421dc6eeaf3ca95b103dae78014f146a81eefafebdd3b; Expires=Wed, 17-Jan-2029 02:22:30 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=afcbeec954d0f58f76ac47e21cd5590c9bef3e1c-1705630950; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=QHWBgsN7OtQYCASMCHZBXTbOJ2bvLs.WRV7_5qiqQQo-1705630950641-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705630951","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (800, 1, 'bf049c40-98b5-43ad-9367-d287c42ac02d', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/admin] tag refs/merge-requests/3/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/admin/src/refs/merge-requests/3/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705076174856792300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"bf049c40-98b5-43ad-9367-d287c42ac02d","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"bf049c40-98b5-43ad-9367-d287c42ac02d","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"bf049c40-98b5-43ad-9367-d287c42ac02d","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8446b3ea49425e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 16:16:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2FXTa2N7sKxhGzMnIto9b10vWUW8aOgTWfI%2BNwBFoxhjY6vZeVFQKv6U%2BADygo3Rszlu%2B1yOenPrawSYD3RFJEaH6Wwph2DW5TJy6gXrAo%2FedrDdUNJAqOqeTMrEX\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e8990684b16511eeae839a565f60d1d1; Expires=Wed, 10-Jan-2029 16:16:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e8990684b16511eeae839a565f60d1d1ce568898a3e0b576c72d488e6389fbbf7ae7f9df457f717a77d4985ac5ccb2ee; Expires=Wed, 10-Jan-2029 16:16:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cc82c848489849ff2b3083958f85be4c924b843c-1705076174; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=jxDsF9yqWnODqVd472zwsLJ1e6gNy33lNw220bx4Y1c-1705076174832-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705076176","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (765, 1, '39e6ffa7-8e6c-43dd-b4ba-33d5c616e54a', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #85 add fuc in send gmail",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705030760879798000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"39e6ffa7-8e6c-43dd-b4ba-33d5c616e54a","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"39e6ffa7-8e6c-43dd-b4ba-33d5c616e54a","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"39e6ffa7-8e6c-43dd-b4ba-33d5c616e54a","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84425f2cd82e5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 03:39:20 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=DJ2p2Vo65RdQU3LfuJEcRWIGR5kaTrJVTBSRJzeGeDkOi7Pe1sAuL43FWLZ3%2FGeJbo6xtV6p0SeRbw6uE%2BFEaK0c4LAWPiEfSw74LyfjrVNk%2FIwTSXKskfMIPRve\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=2bc314b4b0fc11ee943f367b405f8641; Expires=Wed, 10-Jan-2029 03:39:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=2bc314b4b0fc11ee943f367b405f86410ebc0d1253456eacfd7f69a37b08216e30f057a446e0869220c9cb6b08bbb77b; Expires=Wed, 10-Jan-2029 03:39:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=c4a63672b58b994fc64bdcd87a3e11cac04346ba-1705030760; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=.OvapUidcUDXP1w5YKy72bJ6n_bo12r2gLbHIGl2mzE-1705030760861-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705030762","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (766, 1, '6771ce9a-eaf9-4077-b1e4-be7fcdc72e50', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[6e16637](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/6e16637a65f7d4d092a3cdbdbd178eb1636964e1) Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85 - hungthinhne\n[c78cbba](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/c78cbbacb228029e2f7904edb91659aa06135be7) add fuc in send gmail - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/d48e38d9a17ce739803e4e98d015c2fc443742ac...6e16637a65f7d4d092a3cdbdbd178eb1636964e1",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705030761249598300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6771ce9a-eaf9-4077-b1e4-be7fcdc72e50","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"6771ce9a-eaf9-4077-b1e4-be7fcdc72e50","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"6771ce9a-eaf9-4077-b1e4-be7fcdc72e50","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84425f2fa9285e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 03:39:21 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=5vPN851qjGuSrEvl4LBPMVUv8k4ncuEQKRgmSJBSnbqT3HPiBYYzTMpN21qNho6NPcxZYcOTYQ37spuAmLjJk6mMcnSAmotcBW2cnH0pK4ZYb0DlPkt6HNA25tAr\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=2bfb6aeeb0fc11ee8f68deb0fb2add20; Expires=Wed, 10-Jan-2029 03:39:21 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=2bfb6aeeb0fc11ee8f68deb0fb2add20ccd4cec35f2169c923d2fe8fa5487f4a29b67b3e5a81545171dbc3dba7b0a571; Expires=Wed, 10-Jan-2029 03:39:21 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=390a52dc7f8349f0b04da4be9373fda92ce535ea-1705030761; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=UnjDD1Q4ryNSUr4HVxGGwZM8yBmD.m6YOXYc.3tU8K0-1705030761231-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705030762","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (874, 1, '79b6113e-e099-4d82-9989-7a281a36b560', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #93 fix bug",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705312013802351800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"79b6113e-e099-4d82-9989-7a281a36b560","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"79b6113e-e099-4d82-9989-7a281a36b560","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"79b6113e-e099-4d82-9989-7a281a36b560","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d31b3e8555e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:46:53 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=IR4rfS0bwUt1usEkGNDoh9BHD4y9CHeTUmQHTsc254EPKfR%2FI7M8sxPA8UBQmNB%2BRgBAfrW1BlYFORs1V9kYpuhGoByYiWCwqYRQfOIN%2FpDUqgvYAJqOBEhbni4j\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=03902d88b38b11ee8bab7a04e244bb22; Expires=Sat, 13-Jan-2029 09:46:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=03902d88b38b11ee8bab7a04e244bb2299492991ed52a5f7fe44975f979d7c7b4b0db980d1680234eaa5a1589fab687c; Expires=Sat, 13-Jan-2029 09:46:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=53b1eff2216a33e00382a0dc3ac444ed232f1eae-1705312013; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=zSBgoyIHJHR3VtN3pK1iCFaWbEDqRtVL5WlqVLEZX3k-1705312013777-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705312014","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (829, 1, '4ce8be71-2878-4fa9-a186-0ea679a273fa', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/116/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/116/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164377202399300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"4ce8be71-2878-4fa9-a186-0ea679a273fa","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"4ce8be71-2878-4fa9-a186-0ea679a273fa","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"4ce8be71-2878-4fa9-a186-0ea679a273fa","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d4adfcc5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=S26e84vhZGnyqg1mNZtUQAVI%2BAyKrFbIUldgFOHcC%2Byp0RnaSjr9eJXCPgpJzWy0BSAAFxpPZWk7%2F3Th%2FMHKnGlx1f%2F4l%2FSYuTUaKm9CV2eR5o9dqtq1aB2sOq5%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=454b1f20b23311eebb79daf1e1161cd9; Expires=Thu, 11-Jan-2029 16:46:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=454b1f20b23311eebb79daf1e1161cd95b52a43b5eb3395190010a14edfd3ce8cb5c078afcc30de367d628b1c0ccf31f; Expires=Thu, 11-Jan-2029 16:46:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=04dd2825eb088dcf1890fcdaffd362a27ce975dc-1705164377; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=VXF9FdeFEnut_.W.dUE.WZowyE4awk_Y3ldxjxSK0fY-1705164377186-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164378","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (830, 1, '5eefcf47-34d1-4fba-998a-1d749848a5a0', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/117/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/117/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164377656867600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5eefcf47-34d1-4fba-998a-1d749848a5a0","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"5eefcf47-34d1-4fba-998a-1d749848a5a0","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"5eefcf47-34d1-4fba-998a-1d749848a5a0","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d4da8645e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=G4mJM3Tn2KNpL6%2BkhXcQmdMRGLIuTqVhPBPxMM%2FRKKrmmy8t2P1PV2s6LftAlPQOqKRCpQ1kq6GQ0RYMNS93Txt%2Fmc%2FvYUf%2F4Wq9kW7SKDav01AreiZMc5oDw2ik\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=45918582b23311eebf511e7a71ddcda8; Expires=Thu, 11-Jan-2029 16:46:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=45918582b23311eebf511e7a71ddcda8708cfd9ac3470fc06e41037768b10327941a10549b8c4e4f086f9c2053f56747; Expires=Thu, 11-Jan-2029 16:46:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=04dd2825eb088dcf1890fcdaffd362a27ce975dc-1705164377; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=w8GQj55cKKkDvX60yhEDuos5lYszPbpY0f30XZLxTaM-1705164377641-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164378","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (831, 1, 'c2876eb1-3808-41f6-8746-481e3f8c175e', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/117/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/117/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164378209281200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c2876eb1-3808-41f6-8746-481e3f8c175e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c2876eb1-3808-41f6-8746-481e3f8c175e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c2876eb1-3808-41f6-8746-481e3f8c175e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d5089175e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=DuBtRxocr8myTUg3POgd7K0qRu2gA1HEE3rRc7EUjaIHdOtFOED8P%2BJFqw%2FbWXryRuEPtSqGpMCDPSvASWa27CfNXCwFL5kUWFQ2gwIwtgF6Mg%2FyZiYgmgVQFCcd\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=45e5e8c0b23311eeba2ef60d09edbba6; Expires=Thu, 11-Jan-2029 16:46:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=45e5e8c0b23311eeba2ef60d09edbba6750e47f49b8b11b5265a1e7afaf493b5d824c1d9a2778014f8d1d0d3607b25f7; Expires=Thu, 11-Jan-2029 16:46:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=60a89a735aaeccd09754b1f1de8e55819c59fa44-1705164378; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=2PX0pMotRFLqwPOaVDROLguy2n9.LzyQ0XfzdBplr0E-1705164378193-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705164379","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (767, 1, 'b128c739-7645-4910-8c33-6476da4eca56', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[khieu-nai/backend:main] 1 new commit",
      "description": "[d2affd5](https://git.gdtsolutions.vn/khieu-nai/backend/commit/d2affd50bad1017bfbc9d6940c7b79c6b93e7380) update model - vu nguyen",
      "url": "https://git.gdtsolutions.vn/khieu-nai/backend/commit/d2affd50bad1017bfbc9d6940c7b79c6b93e7380",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "git_for_dev",
        "url": "https://git.gdtsolutions.vn/git_for_dev",
        "icon_url": "https://git.gdtsolutions.vn/avatars/009e520c8a20ee8d22d0087b59f6496f"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705033071829513100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b128c739-7645-4910-8c33-6476da4eca56","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"b128c739-7645-4910-8c33-6476da4eca56","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"b128c739-7645-4910-8c33-6476da4eca56","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844297944a095e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 04:17:51 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=AOL0G446RndgPa0mCjqhHHCcsMZPmnlfyYKr%2B1xwNorrkcjI6YOhs9oSXCgGOixWNSPw8TISQwy67Oi%2F4OOm6zmfjNfABHSdy1HW4%2FX6F6mF%2FEsMVeggMF53NPer\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=8ccd9e46b10111ee8be5567d1d7731ed; Expires=Wed, 10-Jan-2029 04:17:51 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8ccd9e46b10111ee8be5567d1d7731ed74e2f5da54adb4b9c3cef0fc1898fc226a43d4fd7b1056a83d9badbca1677475; Expires=Wed, 10-Jan-2029 04:17:51 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d7aab6a19abcd85fedadaf130ea3e08e83af2edc-1705033071; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ptgmHN7iSvopb1L72fA5Ti2I923o7YuKjYKerLkfkyg-1705033071808-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705033072","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (802, 1, 'abbeb230-5f57-4a18-9d58-dd2c0bc93599', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/127/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/127/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705105572923272100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"abbeb230-5f57-4a18-9d58-dd2c0bc93599","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"abbeb230-5f57-4a18-9d58-dd2c0bc93599","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"abbeb230-5f57-4a18-9d58-dd2c0bc93599","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8449819e1f785e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=KXwf7ld1FKjw9i5YSnwwvQRI%2FcKbpx0tKkMad0LmMTUiXY2gEDCn%2FBtvweKwNj1%2FVGhuW7cxEffUo3PZVWef%2BynLykMFyo6YUykneYY0d%2Fpg4UTvFyGMkS4ABFhQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5b394692b1aa11ee947b4220e35d5d6f; Expires=Thu, 11-Jan-2029 00:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5b394692b1aa11ee947b4220e35d5d6f33a6a2054606fa2ea509781dd576281ab49e7f5383a35c8cced16c7786088790; Expires=Thu, 11-Jan-2029 00:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8fe29ba2d501d819f094ec6add3ede1942d073e7-1705105572; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=TlGPp5VZ6Hg9rt7McOOs3EQmL9718EeRpRaA8bgPApE-1705105572920-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705105573","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (876, 1, 'b9662f12-245a-42d9-8a0c-81f28237f01a', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[khieu-nai/backend:main] 1 new commit",
      "description": "[95bd4b8](https://git.gdtsolutions.vn/khieu-nai/backend/commit/95bd4b83164ae2833c3b2f81776fbcd20b064e24) update storage - vu nguyen",
      "url": "https://git.gdtsolutions.vn/khieu-nai/backend/commit/95bd4b83164ae2833c3b2f81776fbcd20b064e24",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "git_for_dev",
        "url": "https://git.gdtsolutions.vn/git_for_dev",
        "icon_url": "https://git.gdtsolutions.vn/avatars/009e520c8a20ee8d22d0087b59f6496f"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705312436054190200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b9662f12-245a-42d9-8a0c-81f28237f01a","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"b9662f12-245a-42d9-8a0c-81f28237f01a","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"b9662f12-245a-42d9-8a0c-81f28237f01a","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d3c02a9925e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:53:56 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Nzx6bPlV01a%2Bro6ijB3XHe77U7T6PNOCZarLWFo8I%2FVXW5a4wstL2OMcp9z77VUmavt3v5dEza1b3NWtFlkQNIDGKYiZXDZ0Ge07iWpBwXYcPGNvLUjuqgczOTA5\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ff3a65d6b38b11ee849f9a3461edaed7; Expires=Sat, 13-Jan-2029 09:53:55 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ff3a65d6b38b11ee849f9a3461edaed7d329295403389c04e10cca7e91fdb59db12b18e9b7b7c73c4be3011169a668be; Expires=Sat, 13-Jan-2029 09:53:55 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0faa3b76e090b523f99c3842c3e65b021f6f1def-1705312436; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=QgrFaeycBvuzPpwHpf7XPT0UL5XFu0DYn_hI5Lk1Fbw-1705312436003-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705312437","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (927, 1, 'a5bfe149-83ce-420e-90c3-34553bfd528a', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[khieu-nai/backend:main] 1 new commit",
      "description": "[15c3872](https://git.gdtsolutions.vn/khieu-nai/backend/commit/15c3872b78aea42ba7c35fade600ccae5b5b9806) update dm loai van ban - vu nguyen",
      "url": "https://git.gdtsolutions.vn/khieu-nai/backend/commit/15c3872b78aea42ba7c35fade600ccae5b5b9806",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "git_for_dev",
        "url": "https://git.gdtsolutions.vn/git_for_dev",
        "icon_url": "https://git.gdtsolutions.vn/avatars/009e520c8a20ee8d22d0087b59f6496f"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705373967077827400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a5bfe149-83ce-420e-90c3-34553bfd528a","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"a5bfe149-83ce-420e-90c3-34553bfd528a","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"a5bfe149-83ce-420e-90c3-34553bfd528a","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84631a3bcfb95e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 02:59:27 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=j6kjKc4%2F7wLEbTPuKKZr2OTbLB8EZoS750Kize6LQ6fN8DlC2IArWgLIUjEJNzy5p45li47JBr6dXCIhmpfeNl2XA2etBhvOVBXF6bZYWqOJ7NwfcoJiPtEeBPDW\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=4296cf92b41b11eea4b296288be59e6e; Expires=Sun, 14-Jan-2029 02:59:26 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=4296cf92b41b11eea4b296288be59e6e66b8fabdab59fdfb93f0d67853c97688daf50767964b42d8b07e885654dd9616; Expires=Sun, 14-Jan-2029 02:59:26 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ed1fa31d8d005fc085e1a9100c60ab4b0f3555e2-1705373967; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=R5dmYez2XxIEnYKQyQ7Ze8zASIbMneua6dEm93UzHDE-1705373967051-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705373968","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (801, 1, 'ed9117d4-3903-4300-91e7-d16b47567605', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/127/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/127/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705105571482655300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ed9117d4-3903-4300-91e7-d16b47567605","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"ed9117d4-3903-4300-91e7-d16b47567605","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"ed9117d4-3903-4300-91e7-d16b47567605","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8449819aaf085e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:11 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=tssmAx3zyq7%2BNck1s1AjwGiLgqvtYPdi58hcM3Yb4jv4Gh8DAEaMEt0YRsfjYb2j%2Fibt3rhNoFNFpdOVIyILdbp4UkbfyyQhe7%2B9SuKzfLFo%2BAb9O7JtXGzrh3RC\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5a5d41d8b1aa11ee8b9752c1b981c921; Expires=Thu, 11-Jan-2029 00:26:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5a5d41d8b1aa11ee8b9752c1b981c921ea7d9bea8e79d1b953dd57e0ac93599243758d183ee9890583e8ca848e2481a0; Expires=Thu, 11-Jan-2029 00:26:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0d6c1a222625898780716e74f67b14204aacdbde-1705105571; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=xY3hgwWEvucT6NTSJfuQGVLA3_bPCXRzHqxCCW9sB.s-1705105571478-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705105572","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (994, 1, '179ec727-0f11-48a3-9841-108b7b347e2e', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/82/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/82/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458377962894500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"179ec727-0f11-48a3-9841-108b7b347e2e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"179ec727-0f11-48a3-9841-108b7b347e2e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"179ec727-0f11-48a3-9841-108b7b347e2e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b270c09b45e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=D5pODG%2FtZ5hsQUYPMrhf5ox1pS6suQx5mopmlTOB9tlLPI9EYdvzIm%2FfJ3%2FoyeliH5SUCrhaZ671npkMOlezjjGLK2Hyxpd8SBksMLlNjxMW88qzMGiVXgQ3Kchk\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cb668744b4df11eea1f9a2dbf69cb58b; Expires=Mon, 15-Jan-2029 02:26:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cb668744b4df11eea1f9a2dbf69cb58b5c6437bf06dee1a3115df79fe322e75e4c02c357140234f6a153bdcf1641fdc6; Expires=Mon, 15-Jan-2029 02:26:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=66e246971898b39cf1c1690abe9435991130522d-1705458377; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=duU9vt3SHsupY2OnG6aPQGgjt79g_mOzzyc52eNmSP0-1705458377939-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705458380","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (803, 1, '64ff4e2e-22bf-44d6-84da-b75498af85f9', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/128/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/128/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705105573404640400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"64ff4e2e-22bf-44d6-84da-b75498af85f9","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"64ff4e2e-22bf-44d6-84da-b75498af85f9","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"64ff4e2e-22bf-44d6-84da-b75498af85f9","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844981a709215e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fsQuXNiIc3%2BVAVzj5Z003N9rcNeq9WQ5fyvBBM%2B%2BhSUyGyog3gP6%2FOoFaz%2B6u%2Fhppwkp6nIHQHjz%2B6av%2FODyASLuy79wJCuXK6lbHeOcJA%2Fksc6jfD6zKzUpgQ2J\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5b82af12b1aa11eebb3552c1b981c921; Expires=Thu, 11-Jan-2029 00:26:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5b82af12b1aa11eebb3552c1b981c921d69de0387e880054ccae2d42b15651d1e6440850247d84d43b0ae6f17f196332; Expires=Thu, 11-Jan-2029 00:26:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=40494552aff1b23ad6ba7715e1887ba37f206461-1705105573; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=pt37vgsoIlAxOXwU1uNn4lhz_jVG0t.OYBtmf9k2fXs-1705105573401-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705105574","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (877, 1, 'cc8b5107-249f-4d34-b08e-3399fa4d007c', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[7b2383b](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/7b2383b817c645ebfa98deeb3863743633d3deae) fix bug - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/7b2383b817c645ebfa98deeb3863743633d3deae",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705312887601708200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"cc8b5107-249f-4d34-b08e-3399fa4d007c","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"cc8b5107-249f-4d34-b08e-3399fa4d007c","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"cc8b5107-249f-4d34-b08e-3399fa4d007c","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d4707fbff5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 10:01:27 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=hwutNjcNcB1BbTY16sxMymJe3VULj1JS62U%2FITDcNypDlzMzWnhNqDS%2BweYnTUH4oz2lOJd65IRJIlv1dcIZrMmEAya%2Ba0S%2Bd7qKQW4QVfml5XIe768AD%2BfeeVVQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=0c635898b38d11eeb5f98a01b54beb88; Expires=Sat, 13-Jan-2029 10:01:27 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=0c635898b38d11eeb5f98a01b54beb881be718d6e50f04a3544115f7cd71497acd3aba01667ee56ad214c4bf3246e2b8; Expires=Sat, 13-Jan-2029 10:01:27 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=4380f72c7c7cf7bf22d29d66c12b1962b21e18df-1705312887; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=GwUjLyGcqYZkVxMwFWI2bRHVHovYXj6ZS3tl7kkxZXc-1705312887576-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705312888","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (878, 1, '1dd89cf6-c487-414b-b459-c987fdd63230', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #94 fix bug",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705312954496528600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1dd89cf6-c487-414b-b459-c987fdd63230","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"1dd89cf6-c487-414b-b459-c987fdd63230","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"1dd89cf6-c487-414b-b459-c987fdd63230","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d48aafe275e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 10:02:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=VI6kgoNcLMxwFDFHucfuha2fqJen6Pel5Op%2Fe%2FJi14ncOFDyiveeNrWMrwLLozgArIJ7PKBtSP6pYavmgWGvYiN8vl1JxZwF%2FIElZFMMDyfnmiQYhlPMfYzyALic\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3442ae86b38d11ee80b32aefc8414a83; Expires=Sat, 13-Jan-2029 10:02:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3442ae86b38d11ee80b32aefc8414a83e576e14f98e332927e0b8c3ff677758b4255d844ecab29d47d04a02271a2bc42; Expires=Sat, 13-Jan-2029 10:02:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=84f1a92ebb45f1f87320fc11a6ece52cd8013193-1705312954; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ihgopxQAyaCBQDJsbFtD6HDGr2niKaMEvhPmmZ4z140-1705312954471-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705312955","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (881, 1, '579ebfa0-2861-473c-808c-b648d1ddaf62', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[8f60ed3](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8f60ed32b2d8d1c029f54144b9426d2b865b6bd9) fix giao dien - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8f60ed32b2d8d1c029f54144b9426d2b865b6bd9",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705320553589560000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"579ebfa0-2861-473c-808c-b648d1ddaf62","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"579ebfa0-2861-473c-808c-b648d1ddaf62","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"579ebfa0-2861-473c-808c-b648d1ddaf62","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e022fca745e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:09:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ALTMEPAuTphzABjYij6nQPFAKANU4%2B3Vyg9xcqB6Wt0b3%2BdDd5Ee6VwQpFT80djtZfsMhxW%2BR6B9LhhQs7TOKDj1PVg4cbmbCle%2BnBApPRPgE5fyyr0OdKvxON4y\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e5a8b81cb39e11ee985ea66ccfd9e42d; Expires=Sat, 13-Jan-2029 12:09:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e5a8b81cb39e11ee985ea66ccfd9e42dd9496082aedf58e7310382a70adf5b16fc8d4425c27a48375b9b157f1cafabf1; Expires=Sat, 13-Jan-2029 12:09:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cdfeb0e50928c66916bad85677d92ea36661a4c5-1705320553; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=7zicpUvxyx.eyoN.kuw1a4OZw1z.VySOEVKxYe4PEUE-1705320553541-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705320554","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (928, 1, '3e829c8c-2daf-4301-8982-5aaf397d10d8', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[khieu-nai/backend:main] 1 new commit",
      "description": "[f94cc2c](https://git.gdtsolutions.vn/khieu-nai/backend/commit/f94cc2c946b186f5829331077bc44f1b62c9901f) update s3 storage - vu nguyen",
      "url": "https://git.gdtsolutions.vn/khieu-nai/backend/commit/f94cc2c946b186f5829331077bc44f1b62c9901f",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "git_for_dev",
        "url": "https://git.gdtsolutions.vn/git_for_dev",
        "icon_url": "https://git.gdtsolutions.vn/avatars/009e520c8a20ee8d22d0087b59f6496f"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705379209191903300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3e829c8c-2daf-4301-8982-5aaf397d10d8","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"3e829c8c-2daf-4301-8982-5aaf397d10d8","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"3e829c8c-2daf-4301-8982-5aaf397d10d8","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84639a33c9d45e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 04:26:49 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Ma67TSFZ4HVD28HQcdKwhodPq1MHTyJlaG60CZwke%2Fog1ISWym%2FFFbQ9vVsgn3H5QtF9f%2FXxun3F9JmnF15khJOHUjiONURkGDP4s7J7M4TlL9wbChoeRc3f7BUc\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=77224b2cb42711ee9aa5cacdc54b0cd4; Expires=Sun, 14-Jan-2029 04:26:49 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=77224b2cb42711ee9aa5cacdc54b0cd4b8bebf7c83789bb4a1956a81bd8d5cf05524a48a30b9793cdf96b6a05878efaf; Expires=Sun, 14-Jan-2029 04:26:49 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=404be525aeb0c2fbf5ab5661b3598473d07943c0-1705379209; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=5bmopRMmw6ExesA2BtLrQy.Qe4rh0aEGWGeqOFXljj0-1705379209167-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705379209","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1138, 1, '7bc61da7-67cd-4b3c-855b-0fcb638f32dd', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #112 update phan quyen + filter",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705631065634321200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7bc61da7-67cd-4b3c-855b-0fcb638f32dd","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"7bc61da7-67cd-4b3c-855b-0fcb638f32dd","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"7bc61da7-67cd-4b3c-855b-0fcb638f32dd","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847b9f0e29305e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 02:24:25 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=YztkTHNrCir1RQUuC9z2yxciF7kUCD6JMeS8IupxNUoMSaHS0FrpRhMds3OCLFYvrlxmrB3V5BDPleWATxHRJQAczX6LbjdX1C1zPd7u60ernI%2Bh1AIfOyfowWRL\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=dd47302eb67111ee9228ba6fc0595349; Expires=Wed, 17-Jan-2029 02:24:25 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=dd47302eb67111ee9228ba6fc059534924dbb867a34253a6af60bad1c4b2fe6629938a1f404d0042a0ea103a48e175d8; Expires=Wed, 17-Jan-2029 02:24:25 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8bbf15da2fc1629281789ac404a530f2ecf7461b-1705631065; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=f7F6nbQGCUPhPKLDBzwj01ZhdcwIozrXzxjUb0WY44Q-1705631065618-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705631066","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (879, 1, 'e511599a-aedd-4585-81cf-cf0e9b589613', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #94 fix bug",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705312969684902300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e511599a-aedd-4585-81cf-cf0e9b589613","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"e511599a-aedd-4585-81cf-cf0e9b589613","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"e511599a-aedd-4585-81cf-cf0e9b589613","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d4909cdbd5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 10:02:49 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=MRFpVByY7BJ6ftHvteWKOG24TPyfiLJSrPRgq%2BzdK9tYTEOX1aQnkkUF%2FB5oCyV%2FGvZVkAp2QbirQnwQQoIQjoxtPkCU8x6KXusvzZkN7YS2Jbo%2Fv2epuEek5jxf\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3d4f8468b38d11eea653d6b969ef144a; Expires=Sat, 13-Jan-2029 10:02:49 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3d4f8468b38d11eea653d6b969ef144acd2405b69b5b126eda60ee1be5c2199ab54fe728875d12c7a9fc2038fc83a840; Expires=Sat, 13-Jan-2029 10:02:49 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=47ce31a59cf781d541ae86d24de0eda477c41686-1705312969; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=YX3XQZiGsxOKR6vRQCFN1m5LQmucT6geFs2Ztq5qAxA-1705312969654-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705312970","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (882, 1, '1103c89e-80b1-4100-8e28-753df48e676a', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #95 fix giao dien",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705320584380615700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1103c89e-80b1-4100-8e28-753df48e676a","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"1103c89e-80b1-4100-8e28-753df48e676a","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"1103c89e-80b1-4100-8e28-753df48e676a","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e02f1ef355e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:09:44 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2BIDFRjG4E6fhYaT5wR0v7hPct1tNbOtQgW0TdFY7rlaAL6EPhUA2nijTHK3O4zM%2Fiw4i0upsBUS2M7nHpUN%2B98o74WRLDuWgvJPiTr0nl7sy%2Fa0qLTTwWbNmk1TK\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=f8034004b39e11ee9af5627f5ba0fa82; Expires=Sat, 13-Jan-2029 12:09:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=f8034004b39e11ee9af5627f5ba0fa82563483ec51ae977e8b30415252883c7df5d7947283f42594d164d9e0ce99d99d; Expires=Sat, 13-Jan-2029 12:09:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3f91192fcb8d3544e1734c2a913691024dbbdf99-1705320584; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=cGBsK5F7KI8uNO1DcNAuOgX1XeVKhiRKbySojL7DLHk-1705320584333-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705320585","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (995, 1, '8f97f17d-11a5-478b-9cb6-65e5d7cc0538', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/83/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/83/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458378400856500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"8f97f17d-11a5-478b-9cb6-65e5d7cc0538","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"8f97f17d-11a5-478b-9cb6-65e5d7cc0538","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"8f97f17d-11a5-478b-9cb6-65e5d7cc0538","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b270e5a6b5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=dbdtBf3p5xb3izabmwPtTf0eqYVstIuALqygDql5GLTaQQcMdMfC%2BCYvsVX5If6RMOu5sQqBiTA%2B7f5E2HJ2X6xw5A9DFb26IrbpkEGSYF62cnNOuZDYwcl35ONO\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cba94480b4df11ee96f6de9aa7554518; Expires=Mon, 15-Jan-2029 02:26:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cba94480b4df11ee96f6de9aa75545186fe44104921e7c400384097d91ed268ffa21f352a36ff49251c09f582224e3fd; Expires=Mon, 15-Jan-2029 02:26:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=425322b008be8bfe4cb32c0a565fd591571781f6-1705458378; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=D8CLc.BJ47EmdtP.m6Yvj1HJDTVjwplOUO_XG7Xeo8g-1705458378377-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705458380","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (880, 1, '9c4b71ae-8e88-4b62-933e-64de58ab7c2c', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[c1781de](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/c1781de2627ad32061687b7324e88a13d1040bb1) Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94 - hungthinhne\n[7b2383b](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/7b2383b817c645ebfa98deeb3863743633d3deae) fix bug - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/5b4556aaf08d874c598d4e9213153ede266d695d...c1781de2627ad32061687b7324e88a13d1040bb1",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705312970438039300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9c4b71ae-8e88-4b62-933e-64de58ab7c2c","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"9c4b71ae-8e88-4b62-933e-64de58ab7c2c","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"9c4b71ae-8e88-4b62-933e-64de58ab7c2c","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d490e6f1c5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 10:02:50 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=9L4kH5Q3nVVcE3wbWkw8urZzSq27EPpPyQraXm%2F0jYy2CYX9LkVCk20fLuKiDIGzdbn5wOOSuNfW2gQl8xOuA4o0u0IfDec7U14FUZuZIw0pd52wNW9mFbRBD%2BRH\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3dc31b1cb38d11eeaefd5619581d3564; Expires=Sat, 13-Jan-2029 10:02:50 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3dc31b1cb38d11eeaefd5619581d35646ff12111f6b7086c7a00055eb475877e674004c6780fe3f6a997beabe894c8cc; Expires=Sat, 13-Jan-2029 10:02:50 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=9b562b5b2b620e15c5352367be57a5125a15f2f9-1705312970; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=6Z1v11bwBUDgl6BoWelMdcMKNsMkEelK55vzdiJhTrA-1705312970412-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705312971","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1019, 1, '689526fe-7463-498c-89b6-ccb8f1a97a07', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[khieu-nai/admin:main] 2 new commits",
      "description": "[b318e95](https://git.gdtsolutions.vn/khieu-nai/admin/commit/b318e95abca38bb86e087afc220a10355787887d) Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin - vantuan\n[8145a6f](https://git.gdtsolutions.vn/khieu-nai/admin/commit/8145a6f0faa5e37075398a1f8f8ba4a0e6e9aa3b) fix: custom size - vantuan",
      "url": "https://git.gdtsolutions.vn/khieu-nai/admin/compare/b8d0d925b42d717dd3206442113f99e827a2ff0f...b318e95abca38bb86e087afc220a10355787887d",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "tuan",
        "url": "https://git.gdtsolutions.vn/tuan",
        "icon_url": "https://git.gdtsolutions.vn/avatars/ef8cb8091e07736d503797a3fd007bb52d58ce27f461213703866d303da8e9a0"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705485460975227900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"689526fe-7463-498c-89b6-ccb8f1a97a07","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"689526fe-7463-498c-89b6-ccb8f1a97a07","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"689526fe-7463-498c-89b6-ccb8f1a97a07","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846dbc3fab1b5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 09:57:40 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2F%2FVdVtzjD%2BbhinSjF%2FOjEbW9QgdF5alsxGRbqktBQiZeirF61NzAlAtbqSGK56c2LTU5JzORVYUm3iDqkO9NnXMDQZOoze2VQkjU8cP2uwFjqV79blWe2uIYtxnA\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=da20df8eb51e11eea2033a6fd8d37444; Expires=Mon, 15-Jan-2029 09:57:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=da20df8eb51e11eea2033a6fd8d374445a16a1845aba213b4b094360b01ff17674f1b22c04feec88cbebb7cf02ce35d2; Expires=Mon, 15-Jan-2029 09:57:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b7e35eb9df24022970ef9d0029be50b0c0b4c4b9-1705485460; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=LYcJ1YpwYLgnq1wjS.eBt.yRmzKmvVVkcjiaolP4kdU-1705485460954-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705485461","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (804, 1, '81fa37e8-4d0d-4c4d-a385-8a9a910dfb1b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/128/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/128/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705105573818986500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"81fa37e8-4d0d-4c4d-a385-8a9a910dfb1b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"81fa37e8-4d0d-4c4d-a385-8a9a910dfb1b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"81fa37e8-4d0d-4c4d-a385-8a9a910dfb1b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844981aa19ab5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=rTm%2FOaJFS9srLJfvZYL8%2FRQKrfUcLZ7F2tan703cV36MW7tf9JPnqCHWYf%2F2IdcLRdBwsgUExu%2BS3gowVgn1sianNmd%2BPiVG8voj9x3Iy1fmaFI%2FebZ4Wim7wlXA\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5bc1fb4ab1aa11ee98ea323056eea780; Expires=Thu, 11-Jan-2029 00:26:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5bc1fb4ab1aa11ee98ea323056eea78066a3b08bca4b208d5c9e02919e3744aec5d887d147c874a434694afb1f9f5f2f; Expires=Thu, 11-Jan-2029 00:26:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=40494552aff1b23ad6ba7715e1887ba37f206461-1705105573; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=WjQTOXTBXvyPsZdTUkQc2JXzrhU16LEE8A6O3heXL0M-1705105573816-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705105575","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (929, 1, 'c457c077-09fc-48c8-b0cc-07c3a775fb3f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[khieu-nai/backend:main] 2 new commits",
      "description": "[3740205](https://git.gdtsolutions.vn/khieu-nai/backend/commit/374020590f53026b266de0bc639429e3a2498848) Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend - lqdat\n[43d70a0](https://git.gdtsolutions.vn/khieu-nai/backend/commit/43d70a01865c5a858fa2f42d805564efa8be978d) them template - lqdat",
      "url": "https://git.gdtsolutions.vn/khieu-nai/backend/compare/f94cc2c946b186f5829331077bc44f1b62c9901f...374020590f53026b266de0bc639429e3a2498848",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "lqdat",
        "url": "https://git.gdtsolutions.vn/lqdat",
        "icon_url": "https://git.gdtsolutions.vn/avatars/887f94f8c1ddc165ff3f51dd5e1691f71fd981dc5d0a182f7e97ce6070501322"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705388192336174500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c457c077-09fc-48c8-b0cc-07c3a775fb3f","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"c457c077-09fc-48c8-b0cc-07c3a775fb3f","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"c457c077-09fc-48c8-b0cc-07c3a775fb3f","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846475862e2b5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 06:56:32 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=lns9DEzZZ45c8nJW1puDjqPJOKhUQW0oIU74sbQjpU3NpENsdE707d%2B5DrnMiNBVCJiOQOEu8T14SnzlNJCMkcOraaW26ZBFb5YwUsuKzzMgizzqoeCt0%2Fv6wvQs\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=617e8b40b43c11eea0dfa2f2ff32aaa9; Expires=Sun, 14-Jan-2029 06:56:32 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=617e8b40b43c11eea0dfa2f2ff32aaa9a9cbf408702c033e4c54914719816a19e977b6930e49b71451171f51a0be1ce0; Expires=Sun, 14-Jan-2029 06:56:32 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=f03a573a179fa07afa8432715b4b6aa8541558a4-1705388192; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=lzjebGivvq35rtgXPIaTVsrrxmGE.WaE1LnBDTHOeoI-1705388192313-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705388193","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (932, 1, '54d7b13d-a823-4b24-b893-05225b020d96', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #100 fix datatable",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705389627953721800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"54d7b13d-a823-4b24-b893-05225b020d96","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"54d7b13d-a823-4b24-b893-05225b020d96","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"54d7b13d-a823-4b24-b893-05225b020d96","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846498947bf15e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 07:20:27 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=1NC%2F9fhk6EUucFVS4NOe694%2BTtTxk3duRTdFzj0rO3X0Itnww2WTb2Hu104HI1W9TA1jGCyQt%2FfvI8v5uOqWjXCd4qbPI8YYNTU3dY5fLDx%2B11GTON%2Bq7NbEbxYX\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b933e580b43f11eeb1c0dec40f2a0279; Expires=Sun, 14-Jan-2029 07:20:27 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b933e580b43f11eeb1c0dec40f2a02793d0befa2ff794c15c8839c3049fb931cee6f7a62ab4436b4f06f29e95366cffc; Expires=Sun, 14-Jan-2029 07:20:27 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8b60fa09566ddbdf784f5c5e6e490dcda3b97c8e-1705389627; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=lrT07wT_40LFW.KZz28HHiGa9eN5U1NtsaOth3.LAzk-1705389627931-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705389629","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1113, 1, '074e35e1-4c1f-46d8-84bb-bd53a20bd117', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/46/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/46/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575519426853700, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"074e35e1-4c1f-46d8-84bb-bd53a20bd117","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"074e35e1-4c1f-46d8-84bb-bd53a20bd117","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"074e35e1-4c1f-46d8-84bb-bd53a20bd117","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652f2786b5e38-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:39 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=X0UilPzWCAc%2Fse2ALQUfaxUx%2F%2FONZ30iWEnFUkyjdvNT2qjB0%2FloFWEH5fnag9%2FI%2Bk%2Bq2X%2BYYK2XKlgd%2FD%2BknSd4rEIRDUenL4OrBxgv8xnX3wI1ne%2FkvQd%2BoyhF\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2267","Server":"cloudflare","Set-Cookie":"__dcfduid=89261126b5f011eea17ebe8ae9f11b6d; Expires=Tue, 16-Jan-2029 10:58:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=89261126b5f011eea17ebe8ae9f11b6df83489bc142d25f0e58357dffda4fbd0e570ec2e812ffad7ba075373a3677843; Expires=Tue, 16-Jan-2029 10:58:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5b611484b7450f44bd88935639e49cb7c04d7032-1705575519; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ZnWX5Z3aGRaoSsLG8k6M.Bazgcjt8dQoEApEzTCBgiY-1705575519393-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575522","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (883, 1, 'd8c288e8-c6c4-4183-8fe5-b0f125ba109b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #95 fix giao dien",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705320613535194400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d8c288e8-c6c4-4183-8fe5-b0f125ba109b","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"d8c288e8-c6c4-4183-8fe5-b0f125ba109b","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"d8c288e8-c6c4-4183-8fe5-b0f125ba109b","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e03a83f275e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:10:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=7GHVXBn5JqtK34433Hvse8oBJKXJZ6X5myCk727Htva2EZ58HWkwJR5QjMgIhUlnG4k8jjbf3mVZxBCNWoHbS1bUFTQR4i%2BCTu6s157TECbHmzw18pmtdoJgTDMA\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=096423eab39f11ee86c0e2de1b7ded09; Expires=Sat, 13-Jan-2029 12:10:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=096423eab39f11ee86c0e2de1b7ded09b390ac040f37c546df811fe175b2681a8d42cd481f53563620e7f67d08da6284; Expires=Sat, 13-Jan-2029 12:10:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5131a530eaa0c4ac9be1e77000e5b3803f1e1fc2-1705320613; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=CeEmlg2gzw.cmMiw4cGqiw45w2R9Oai47JOjdxKu5jw-1705320613489-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705320614","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (885, 1, 'b1c5e990-386e-40c1-8a76-3282b4654c24', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[da91d00](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/da91d00953fc86aef94866d081a1d25a46b94d02) fix loi - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/da91d00953fc86aef94866d081a1d25a46b94d02",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705321088998141900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b1c5e990-386e-40c1-8a76-3282b4654c24","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"b1c5e990-386e-40c1-8a76-3282b4654c24","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"b1c5e990-386e-40c1-8a76-3282b4654c24","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e0f43d9c45e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:18:08 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WOie57MgzYONeIyfDaSSZElNoi%2FBA%2FkncSe9lXMjTCmNFiltUh3%2B%2F3Xi%2FHrtXfmQqBuHX0B4ZFtHV6SIZ1chfdkOqp5yevEHxzaayQWmqIPGdrYDn2gUjg5JEH4Z\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=24c9ae06b3a011ee83a4daf1e1161cd9; Expires=Sat, 13-Jan-2029 12:18:08 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=24c9ae06b3a011ee83a4daf1e1161cd909ee64a313dab15a464a58f7209b2deefda2d14c9e884cee98566fee0d83605e; Expires=Sat, 13-Jan-2029 12:18:08 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=4bb553af1850874f81c381cbbb46ab376eeea87c-1705321088; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=9f7VA3QGYxfL7xjQIYQ0qPmrxia4E1mkiNgXkTqWYoc-1705321088950-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705321090","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (887, 1, '0927e2a3-aa1f-4e68-be20-77c899128f2c', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #96 fix loi",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705321151240806700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"0927e2a3-aa1f-4e68-be20-77c899128f2c","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"0927e2a3-aa1f-4e68-be20-77c899128f2c","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"0927e2a3-aa1f-4e68-be20-77c899128f2c","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e10c8c8665e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:19:11 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=I18RFupBtMv58Q%2BDtPO9%2FBU9aa%2FI1Qkudn6aOJm8gPgcHEYFfrafYfT54sxCMYJZvvuA7Vaj5rR%2FTsF%2BWECpJvzHXYIAfAzHLII5WYPQfh0ijJCZVzcThQ9GFuqi\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=49e33b3ab3a011ee90baaaaf9c221465; Expires=Sat, 13-Jan-2029 12:19:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=49e33b3ab3a011ee90baaaaf9c221465ac6a1a811cae29722de8ca2d9bbc7d41211f1891423b4e36736175a427ca8700; Expires=Sat, 13-Jan-2029 12:19:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=670b552d6802ced930d73923a90e17acc09fca0d-1705321151; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=KLeQuU0MM1Vdf80jRNwbBNAwlT14yvAP39yFtHL6xNI-1705321151194-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705321152","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (930, 1, '0662d46f-2239-464f-8a18-7b11d23a2f06', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[b4fa710](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/b4fa71025f54e4fa94ba095169119fa40b06d27c) fix datatable - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/b4fa71025f54e4fa94ba095169119fa40b06d27c",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705389270212119800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"0662d46f-2239-464f-8a18-7b11d23a2f06","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"0662d46f-2239-464f-8a18-7b11d23a2f06","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"0662d46f-2239-464f-8a18-7b11d23a2f06","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84648fd81d7f5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 07:14:30 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=oxcv34CC8ktG1ZgcHzJFBS5YIe0uHa2DxgoWnyIVpXCepIledYSUMJ0HZAo%2F5xPBBLkvCemXoXB%2FGLvqVlba9n8dWpnzbi6AOG7mmEF%2F0%2FxdGerthrz1JYVP2UdF\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e3f88740b43e11ee803fa277f8d54ed5; Expires=Sun, 14-Jan-2029 07:14:30 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e3f88740b43e11ee803fa277f8d54ed56c48b6355a628a4aa3d84b312ecc6dd1a253fc70366bfcd0450aeddd79f8464e; Expires=Sun, 14-Jan-2029 07:14:30 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3d2e14ecb636c201dcc7da20c022c065d056b0ba-1705389270; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=iRoPESKqv9UF5y8ssb9ZXUSuvmqoPajWJ05ziMNfRTc-1705389270189-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705389271","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (886, 1, '6343d851-358f-4cb2-8415-57a10178af4a', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #96 fix loi",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705321136118471500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6343d851-358f-4cb2-8415-57a10178af4a","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"6343d851-358f-4cb2-8415-57a10178af4a","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"6343d851-358f-4cb2-8415-57a10178af4a","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e106a1c995e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:18:56 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4nt%2F92Xn7QunXTT%2FSKNeANcFPkfeAsO%2F8WF3O14%2Br9%2FT00A2r1I9qrNrVuKUC41VKyr2%2Fycqk7mSr62koNNiS%2F9OF6UI%2Fwo6ZHGELA0N3CfMhGq%2F63VU9g%2Bgz1AC\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=40dfe3dab3a011ee87cba68d905ebfa4; Expires=Sat, 13-Jan-2029 12:18:55 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=40dfe3dab3a011ee87cba68d905ebfa487f28986e21bc4cebb98efec22e1567e37cfdaa84e9b0136329bf0c51dc0fe05; Expires=Sat, 13-Jan-2029 12:18:55 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=4cea6203b075207374922032f9b665f4a0a75ec9-1705321136; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=QAHhwVf7CVinApOUR_EL8dhkQJ2UVq0Cbjv__8.2qBI-1705321136071-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705321137","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1139, 1, 'd7a8c68f-7c09-496d-94ff-0e677848f28f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #112 update phan quyen + filter",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705631136941317200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d7a8c68f-7c09-496d-94ff-0e677848f28f","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"d7a8c68f-7c09-496d-94ff-0e677848f28f","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"d7a8c68f-7c09-496d-94ff-0e677848f28f","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847ba0cb0b0a5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 02:25:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=NKIAshj0BFYKkgoh3YUEcYupiYeefABxf7TeECxQNT2xEIj7VanlJm8JV4yKKff1r2ejXzvhm7BUyx2XWEHmSjZe5qsEWJnKZhT50amrJb6B2%2B3TL02G5UysrA71\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=07c80396b67211eeb2eaa6c69d53f7d5; Expires=Wed, 17-Jan-2029 02:25:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=07c80396b67211eeb2eaa6c69d53f7d5734a8e7ae5427c8855d7e038af29db3ce6bd8adec33f2626395330a4c4e539c1; Expires=Wed, 17-Jan-2029 02:25:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b39045803b95b31f8ad9e9aa58269a7e4bc123c4-1705631136; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=jg8PLHHu1g_F6IcD2Gqw03NSEsXXeBnHC1dgMTin._Y-1705631136926-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705631138","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (996, 1, '74b411e1-e3b9-4931-b0e2-4ac16a312acd', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/83/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/83/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458378822998800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"74b411e1-e3b9-4931-b0e2-4ac16a312acd","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"74b411e1-e3b9-4931-b0e2-4ac16a312acd","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"74b411e1-e3b9-4931-b0e2-4ac16a312acd","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b27111b785e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=r9eQxiEijIexeXoO3tnRU3vrr9zBpMGUM1p1v8jwg2FtbDIjKHULVjFnfQlgkt21DiWwPujFfREu2%2Fz7P71hNci2DvlPORTi%2FIavxesPTZKWbMkauT36LW5a4WAY\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cbe9b272b4df11eeb9512aa9ac4ac79c; Expires=Mon, 15-Jan-2029 02:26:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cbe9b272b4df11eeb9512aa9ac4ac79c8ffb85dcfb175f5413f4e8b23ad5f67de9c6967e3ac128bd62115039f45cded9; Expires=Mon, 15-Jan-2029 02:26:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=425322b008be8bfe4cb32c0a565fd591571781f6-1705458378; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=NMWVG0M1oHQQIBjdc4UwfiRAcDfiViEi7GcHnHlI8vo-1705458378800-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705458381","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (997, 1, 'df4393a3-0977-46eb-943f-7a24f5445f35', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/84/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/84/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458379201225600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"df4393a3-0977-46eb-943f-7a24f5445f35","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"df4393a3-0977-46eb-943f-7a24f5445f35","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"df4393a3-0977-46eb-943f-7a24f5445f35","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b2713bc935e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:19 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=gUnARUY1JkaYIbWvdhc4eRIJ0%2Frl8J9NxU253gqcyO%2B0PQEqHkWr2EE%2FXpZsA6S%2FPS%2Fqb0oMELmUxsNHbH4aFVxMYzAShbW%2BiLBpFhXzxT1ZJjJae%2F%2FBnvmIcMTB\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cc22e1fab4df11eeb0161ec9afb677e3; Expires=Mon, 15-Jan-2029 02:26:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cc22e1fab4df11eeb0161ec9afb677e3ed8fe84094735dc46c5efa5be0cb2df0e6bc1bbf26e186b341cb39e4b724b614; Expires=Mon, 15-Jan-2029 02:26:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=86167887d9be5810e595eca653f88926184e98fa-1705458379; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=xlra_JuT_Ob4EywhMDp6Qhb3BppwKqSaXZrcYsdWUrc-1705458379174-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705458381","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (884, 1, '96c876ae-220c-46ab-961c-9c5d62f95f47', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[cebbfb9](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/cebbfb98f2b56f439f19e5720eb0f1bab9f3b518) Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95 - hungthinhne\n[8f60ed3](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8f60ed32b2d8d1c029f54144b9426d2b865b6bd9) fix giao dien - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/c1781de2627ad32061687b7324e88a13d1040bb1...cebbfb98f2b56f439f19e5720eb0f1bab9f3b518",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705320614597471100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"96c876ae-220c-46ab-961c-9c5d62f95f47","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"96c876ae-220c-46ab-961c-9c5d62f95f47","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"96c876ae-220c-46ab-961c-9c5d62f95f47","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e03aa9ffb5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:10:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=X9qW1GJvdTDoPrRPdg82csjBU7NUlJnFk%2FXcRkXaMCpjLSAE2kDbiIAoHQ9CUNviNj7m7JhhVSS4lU2CDmBbITiR%2B2dXSnxny%2BSWDBXrquO8TdPAO32r80yu1xbp\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=0a0604b2b39f11eeb48e3afca39ff1dc; Expires=Sat, 13-Jan-2029 12:10:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=0a0604b2b39f11eeb48e3afca39ff1dcf5d4a729fe804513cefa76fbc2bb6c6e04670fafe23316dd2bcd365aadc8695a; Expires=Sat, 13-Jan-2029 12:10:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3b1965604d4989b6e2fb50b9ea81694958f5f29f-1705320614; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ZpTAARSeR4_6KweS2fcR_X0LjrhHhO3AAynjwckmUdU-1705320614550-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705320615","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (805, 1, '2c2d50c0-f764-4aaf-ba83-3b1491072754', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/129/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/129/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705105574372431000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"2c2d50c0-f764-4aaf-ba83-3b1491072754","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"2c2d50c0-f764-4aaf-ba83-3b1491072754","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"2c2d50c0-f764-4aaf-ba83-3b1491072754","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844981ac9a195e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=S4181kygr5N6tP42LJUqYjSSSQFrvd%2FyKrNAxrOLbeAaRl5BA4QZtMDr44hJL2eX8hC6NROia90VX6l5lB9Dh3qOTmk76cBHq72823%2BwMpuEwN8perlVB1drFTYi\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5c1659bab1aa11ee8903fe42a647276a; Expires=Thu, 11-Jan-2029 00:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5c1659bab1aa11ee8903fe42a647276ac2964682f812d7a73d9b6f62935bec2aabd3b03d5045d802a16ce4fe819f01f6; Expires=Thu, 11-Jan-2029 00:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8257e88aa9dd8bd7ef2933ef16e04f21988b5e2e-1705105574; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=zHo3G5rfjt6GYkB7Y0MOi_WLQxYWTUNktGuCsFp7T70-1705105574369-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705105575","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (931, 1, 'ae5e35c7-b67d-44e8-87e7-6e9edb6c8846', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #100 fix datatable",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705389574972994100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ae5e35c7-b67d-44e8-87e7-6e9edb6c8846","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"ae5e35c7-b67d-44e8-87e7-6e9edb6c8846","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"ae5e35c7-b67d-44e8-87e7-6e9edb6c8846","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84649748084f5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 07:19:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=1EOL397l3bJsGLSgmtyY0jyEZ9AYuHky0zT7gghJ2yJE6jBvbkPxc3q3dxxNlf%2BZ%2FttOLRxLf9AJwtgDQdOYN8zsQhG06nm5yprbA%2F8ab17rVHf7CSX029AUmOiS\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=999f66c2b43f11ee8c954a09ee82c223; Expires=Sun, 14-Jan-2029 07:19:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=999f66c2b43f11ee8c954a09ee82c2236d9a77a6eadd769b045690bdccb556981666de07f1c0f2d8bd3eefad117c58e4; Expires=Sun, 14-Jan-2029 07:19:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3e87420484b1a3f492c52a6a56efb7e90781803c-1705389574; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=fz8m6Evf_TAylZZ5WPAhnnqUaIfKaJT9Ed6ZnMxLhHA-1705389574949-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705389575","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (888, 1, '99bd01f0-5fe8-4fa8-aea4-f7871509f54c', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[81ebe9e](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/81ebe9e1ea91c561cfd2d8b2778830a808e2104e) Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96 - hungthinhne\n[da91d00](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/da91d00953fc86aef94866d081a1d25a46b94d02) fix loi - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/cebbfb98f2b56f439f19e5720eb0f1bab9f3b518...81ebe9e1ea91c561cfd2d8b2778830a808e2104e",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705321151771710600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"99bd01f0-5fe8-4fa8-aea4-f7871509f54c","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"99bd01f0-5fe8-4fa8-aea4-f7871509f54c","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"99bd01f0-5fe8-4fa8-aea4-f7871509f54c","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e10cb29385e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:19:11 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fL%2B9Ji4CGVGd%2BcDz%2Fdjm8QJwdk0LSNCrBMc31CDU1vNGuhqWUZh09dhGLjdP619Ar1Cvxd03Pzc1dE4AFDZCagN%2FdtAiDoOC2jJ9LgNOW3HEF9%2Bs5j9%2FIC5mtB%2Bm\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=4a33a732b3a011ee908cdaf1e1161cd9; Expires=Sat, 13-Jan-2029 12:19:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=4a33a732b3a011ee908cdaf1e1161cd9dea8de38fd55c9b6640e6d1361edef1f7455321008b9cb44187bb8f0b332dac8; Expires=Sat, 13-Jan-2029 12:19:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=670b552d6802ced930d73923a90e17acc09fca0d-1705321151; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=FKa379aMtCDtSTVWZ2iYGOqX3pQwJeXCC1HV9hN1DpM-1705321151723-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705321152","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (999, 1, 'e2f59cd8-095d-4787-98ae-d7081ad332ab', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/85/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/85/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458372274408000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e2f59cd8-095d-4787-98ae-d7081ad332ab","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"e2f59cd8-095d-4787-98ae-d7081ad332ab","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"e2f59cd8-095d-4787-98ae-d7081ad332ab","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26e7b9e15e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=CA4GSKQC2nW9mZHGFt4i8Ei4KyK7TlBLtpJBNrNpOQ5eWnzlR6nIIb4VZOLElaAGe9zJrCffeke3kWquPRcFiR76jACqKZ6tZAFiYeBWqdU%2Bvcr%2FtwshkXH0i4Ys\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c8007696b4df11ee82e20634ea8ae222; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c8007696b4df11ee82e20634ea8ae222b2fb9770d1679a0912f6888e0e76f1c78d6d619860098caf5f313c15d2278267; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bd5a5f1ad8d93c86de1dea4d99f89a3fbc5115c8-1705458372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=6eq0xjVxIiadeFjWBBDCmvCkkCkply3pSkk.N74Rzd0-1705458372252-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705458373","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1000, 1, '97a3b6ff-89b4-4bfd-b8bf-b9c03c1425d6', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/85/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/85/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458372711866300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"97a3b6ff-89b4-4bfd-b8bf-b9c03c1425d6","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"97a3b6ff-89b4-4bfd-b8bf-b9c03c1425d6","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"97a3b6ff-89b4-4bfd-b8bf-b9c03c1425d6","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26eadb5c5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=l8M3RRhEx1kFvjdZd3S3cBwLaIP9IKlJesv5F9Mhj%2FJmIitZfW5z82eCvk5n4iCXCE1H6OlV%2BZOBKAKRh6N49OAU5NjujIYY1WI4MZZ5tQK1bEgd%2BU6oKBftOfmx\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c84588eeb4df11eea2077a759910781b; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c84588eeb4df11eea2077a759910781b30dc89f9393ae4597a5cdf0630f66e56c50ff8f774b63d53cee616ee91ce8fba; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bd5a5f1ad8d93c86de1dea4d99f89a3fbc5115c8-1705458372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=T5LaMy6YYAbWzmsrgGums88OeuBh9Rbqs6ugVNMCQMk-1705458372690-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458375","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1001, 1, '3823f56f-be6f-4419-b8e1-34749029db12', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/86/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/86/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458373035014000, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3823f56f-be6f-4419-b8e1-34749029db12","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"3823f56f-be6f-4419-b8e1-34749029db12","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"3823f56f-be6f-4419-b8e1-34749029db12","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26ed8ca65e3b-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Wed, 17 Jan 2024 02:26:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=hrUq2FFl%2BKaLibneEGGfteyR15lcON%2FztHda4kJstPGX3hjkRMAtVyT12X4kEb3ZfkRBYQlkaRJ4%2FkIy7tUKjKKfCEbn3neUPbJQziHISy8mhD%2Fs1960idB4z7yi\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2054","Server":"cloudflare","Set-Cookie":"__dcfduid=c876a0e6b4df11ee8d427e6f3128f203; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c876a0e6b4df11ee8d427e6f3128f2036d1eb70ec0e637e34f59455f4d2e4524fae14f32911077099b9fbcc6635fc790; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=09dc058170902ab28690be97da7bafeeafef5fc1-1705458373; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ZfXjZLmV1491FpnF1IlwkTF6CJRhNKGdPPQPZJ8BX3c-1705458373012-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458375","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (933, 1, 'c1e03b9f-1308-4f32-8393-ecf2bfc03d03', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[2e4bbd1](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2) Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100 - hungthinhne\n[b4fa710](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/b4fa71025f54e4fa94ba095169119fa40b06d27c) fix datatable - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/c94f86451988d6cf98b90a9f0e74a88515b66f9a...2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705389628443594400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c1e03b9f-1308-4f32-8393-ecf2bfc03d03","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"c1e03b9f-1308-4f32-8393-ecf2bfc03d03","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"c1e03b9f-1308-4f32-8393-ecf2bfc03d03","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84649896dd635e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 07:20:28 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=MexjPSb5TwSdHZWy3yS9DWn3yezlTo6RbBjYyJtd7g274XrcLul5%2BFm3PC1sLh6WLOATQPxWoxxEzEjtkjlqtBaRj8Pu8vb4S2SonRBOBJEe5RMVTUN5%2BT03D70A\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b97d4accb43f11ee864b723ce7eaa014; Expires=Sun, 14-Jan-2029 07:20:28 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b97d4accb43f11ee864b723ce7eaa01489ed4354bf1a6b48450212e490c65065bb92231d7244c012f14cd696f9417702; Expires=Sun, 14-Jan-2029 07:20:28 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=37eaf654f8246645c0cd1fd7e4320d38af10c320-1705389628; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=1HqDBp.BT6WI4Q0DUzvL8G2G6_3V7xvQye8phq6hjHo-1705389628421-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705389629","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (934, 1, '980d76e7-028e-4523-b49a-4add1a4c9ada', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[ac54e07](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6) fix odata QLLD_HoSo - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705393289230183000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"980d76e7-028e-4523-b49a-4add1a4c9ada","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"980d76e7-028e-4523-b49a-4add1a4c9ada","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"980d76e7-028e-4523-b49a-4add1a4c9ada","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8464f1f5be8b5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 08:21:29 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=OIgqNoocSXbDQ6SzfFF%2FOJRslILepAGN8SvOFXYGVC1pBQjiY9eXKOxk6EMB4VZ0ZPNfJl5HLVcfLdavO5O8MuPNGG4N1uKdiR9CFNjbudyBGVb%2FnUIfNr3xoUxh\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3f7e267ab44811ee8afa06df9c094639; Expires=Sun, 14-Jan-2029 08:21:29 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3f7e267ab44811ee8afa06df9c0946396b778270d2fc860d51ae62096baf6789c17a5aeea450b459b0f46609084873e2; Expires=Sun, 14-Jan-2029 08:21:29 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=298f231eccdd703b18d52e09429b5a92debbff98-1705393289; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ULH2KpJe_8ZCyTiHWhoh.xMZ6MO2dgTqrqSBr8LT5ho-1705393289207-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705393290","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (935, 1, 'fa62e752-64f7-49d1-a14b-ff36a5f596e8', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #101 fix odata QLLD_HoSo",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705393323981098300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"fa62e752-64f7-49d1-a14b-ff36a5f596e8","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"fa62e752-64f7-49d1-a14b-ff36a5f596e8","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"fa62e752-64f7-49d1-a14b-ff36a5f596e8","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8464f2d0aee55e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 08:22:03 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=MSZ5urzTYbLHBx0yBG3Vyhg1zhw%2FvRIyJAEJc1PEFafx9Z8mvY3P%2F2Lvyhq2OhZiXYOHbrDZ0WJs%2FaZK%2FjJT%2FOxDDt5jNYfS%2FqHYi5EHmUeqR71QhoYrEjDtToeD\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5434a314b44811eeba2d0ec3a1f1c6bb; Expires=Sun, 14-Jan-2029 08:22:03 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5434a314b44811eeba2d0ec3a1f1c6bbed2d3797cb811cb2a825e13074b64b9f64cb655af14a2c5538581a62f07bb359; Expires=Sun, 14-Jan-2029 08:22:03 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=37dcb6fb16fcdbc8da0f022913cfc4b0e89729ef-1705393323; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=jRYYKib7_.T.bKCi9o8RULU67fsSt5LjPB8VfGWA86Y-1705393323957-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705393325","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1025, 1, 'd4201835-6f9b-4a84-b976-ed8c9a89fd87', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/70/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/70/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705487775697929000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d4201835-6f9b-4a84-b976-ed8c9a89fd87","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"d4201835-6f9b-4a84-b976-ed8c9a89fd87","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"d4201835-6f9b-4a84-b976-ed8c9a89fd87","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4c37b9a5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2B7x6Jzjz0azubiU5u0%2F52fp8rZHfkArIWrKOlCxO1y8%2BQWNPpzWJqYtvzhQ8CMbq3PZRgDEUpbHI%2BboCIk01Bg%2FHeh%2BtXYtt1%2B5YueMblDYiPKqJgWNgYRVcpZj%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3dd06d56b52411ee95653e6ff7734c00; Expires=Mon, 15-Jan-2029 10:36:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3dd06d56b52411ee95653e6ff7734c00e2983fdeea60206b070c5db554aa0d831d85f5324eff0291e735197687974f3f; Expires=Mon, 15-Jan-2029 10:36:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=9efe3440a514a6bec2ba81a1ea903b69889ee622-1705487775; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=tZ0CGeSm2f9iPsLxA87ldY.UOnCWKq0uXV8wejBdPgA-1705487775670-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705487776","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1026, 1, '7cc4afd8-c265-4bfb-aad4-e7330264d1e5', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/71/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/71/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705487776234495200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7cc4afd8-c265-4bfb-aad4-e7330264d1e5","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"7cc4afd8-c265-4bfb-aad4-e7330264d1e5","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"7cc4afd8-c265-4bfb-aad4-e7330264d1e5","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4c63c945e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=HW46zu%2BFx00Bbh%2FyAMTybBQwoRQ7pmdpi1xvAw3sGjY0WTLVpv69ytRWun0CigwTDdnEBXahNB%2BMyvBz%2FYG4UCinjWHkJ4g%2FpBn%2Fu5jRvnbKrs4GN0lZoXNVgaT2\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3e22388eb52411eeb6579233c3b543aa; Expires=Mon, 15-Jan-2029 10:36:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3e22388eb52411eeb6579233c3b543aa0618281e692bc125f32b095bdbd61d6b30b674da27d51877c8dad13c944dcd9c; Expires=Mon, 15-Jan-2029 10:36:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d7edeca7264d47096c724fb5273d3ca9b34ebf74-1705487776; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=kQ8TAwq.fUO4sfPWz.fT0uDN9IdpNjBCwePcOc2f1u0-1705487776208-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705487777","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1027, 1, '758e7030-4035-483a-9919-4bd216f69729', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/71/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/71/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705487776657941800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"758e7030-4035-483a-9919-4bd216f69729","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"758e7030-4035-483a-9919-4bd216f69729","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"758e7030-4035-483a-9919-4bd216f69729","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4c98da35e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=B7M%2B5HC4vkrhbhcZ33fOlnUbZufRUIN97NQpHOJTn6EbQiFwbLMPiNrMX0%2BV5atVuoX9uWjxVIOz1G5Et3yzMYUJgrDZRtiUpbNBdD%2Fo%2BLrAYellqzYvzOREM00T\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3e621652b52411ee8854a67136ec2dcb; Expires=Mon, 15-Jan-2029 10:36:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3e621652b52411ee8854a67136ec2dcb4bd47be946dbf6bba7e1b38e8cab53950bd2a0ba7cd3f7e8ea81a19dadcf131c; Expires=Mon, 15-Jan-2029 10:36:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d7edeca7264d47096c724fb5273d3ca9b34ebf74-1705487776; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=JyehBRnkwHhv.0NOm6n4P5SSA_RH7sPs2SGJZLeZVZw-1705487776627-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705487777","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (942, 1, '6e660160-2844-4a60-aae8-0dac943c5fca', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[65e6485](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/65e6485ae4926938a51adf2f31db4aeb6d7e7e41) fix phan quyen - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/65e6485ae4926938a51adf2f31db4aeb6d7e7e41",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705395661372769300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6e660160-2844-4a60-aae8-0dac943c5fca","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"6e660160-2844-4a60-aae8-0dac943c5fca","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"6e660160-2844-4a60-aae8-0dac943c5fca","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84652be0e84a5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:01:01 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=jUSjqegRJ1STQ320XJ04dxfo1x2C%2BInUNwYiJun5lokfkWRJF2MzN7%2BA6F8gHqq26daGRQbxXeh79WG%2FwbyLrPucslbbErfibe8lfALhpQGxgTRep4igKQJTEDxf\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c563144eb44d11ee82e10e966388855e; Expires=Sun, 14-Jan-2029 09:01:01 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c563144eb44d11ee82e10e966388855ee2a326dc65197fb197d3ede1ba75ae5aa5a963b2975cb0c83cd1d8345166ce1f; Expires=Sun, 14-Jan-2029 09:01:01 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b0146ca0bba395a1eb2323c2e14b599817656ed7-1705395661; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=7.5W6C0FzZIPlVFyWRqI_a6fXPgZ8OS6bNfU1k4_TeU-1705395661329-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705395662","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (936, 1, '5336c1a2-a3e7-4ee7-a8a7-0751ce297f88', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #101 fix odata QLLD_HoSo",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705393337146741400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5336c1a2-a3e7-4ee7-a8a7-0751ce297f88","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"5336c1a2-a3e7-4ee7-a8a7-0751ce297f88","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"5336c1a2-a3e7-4ee7-a8a7-0751ce297f88","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8464f322ea995e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 08:22:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=OfRsIaq%2BcGkG47dERnB%2FBAr%2FCFjJATfZTltrNncw8ydCKjUnxOL6rI0HnPt0JQwCYnpRnHxBAAKXxzhXjHpk8XVKmruh7GnGcXBhiqPBQZXMXNrsefSiGL6J67BO\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5c0cec9ab44811eeaa15d261dcddec30; Expires=Sun, 14-Jan-2029 08:22:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5c0cec9ab44811eeaa15d261dcddec30237970857c8ba6f0e99bf71185e527a05f0b02641a9ce3b720b284ccde4d6d9c; Expires=Sun, 14-Jan-2029 08:22:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=645c7ddc92afe51034d6182aa400c432965ff810-1705393337; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=2PR80SF8BCB6hK8mz0g5a4KHmCXXKW8vHRaxgVwK8x8-1705393337122-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705393338","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (940, 1, '2e3b0409-a441-4bc2-a8c1-c4c524d2fb84', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #102 fix hidden change year hoso",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705394333194236300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"2e3b0409-a441-4bc2-a8c1-c4c524d2fb84","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"2e3b0409-a441-4bc2-a8c1-c4c524d2fb84","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"2e3b0409-a441-4bc2-a8c1-c4c524d2fb84","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84650b737ff95e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 08:38:53 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=OK6pW%2B%2B82N949cR8YhaW6uA2tYREc36zKgmGDG6P2RzAaDFrUJt1nsi02eF%2BBX2gYTCxqMqeM6rvi1ktCyMDQ%2FR2vunNylFSJ4TDdVAJUj1TRZE7NcDgofy96VqT\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=adbe5bbcb44a11eeae45eee78652220f; Expires=Sun, 14-Jan-2029 08:38:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=adbe5bbcb44a11eeae45eee78652220f664be93684e429447087c91544973870b7dd49d0962d83eb54132232a66adf96; Expires=Sun, 14-Jan-2029 08:38:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ab02a3c7659d651a70412f3bb160bfaf84cf9d02-1705394333; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=__pdGE.tgIJna8YGnywWxwcz_ZrvqEGZQ9Pl2h0U86Y-1705394333171-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705394334","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (944, 1, '1223f962-156f-4d9a-888a-20ac20d9ca48', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #103 fix phan quyen",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705395801645061200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1223f962-156f-4d9a-888a-20ac20d9ca48","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"1223f962-156f-4d9a-888a-20ac20d9ca48","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"1223f962-156f-4d9a-888a-20ac20d9ca48","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84652f4d8bab5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:03:21 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=zbKs8jRAyYovrDfgZvbgW8CtL3%2F8LGbqki%2FIDDdV0zuJqJujuCKV9Ld5WEWqP7y1KDaS9ZZZDbdwMNHYQS6BIytH3GXZ2F%2FL9VemRUUd5ORZ%2BXqd19YxaV%2F3Ofw%2B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=1901956cb44e11ee8e9372504a0565f2; Expires=Sun, 14-Jan-2029 09:03:21 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=1901956cb44e11ee8e9372504a0565f2010c70373858e48ca219d6a9b62e7691fefcbb8894aaa59953574746a031a711; Expires=Sun, 14-Jan-2029 09:03:21 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=32c7d860eb576260fc351cbe4d6411af41b92d32-1705395801; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=1QQMxOOg3MNdF0m2Im5a3wY93ZTCOYFOkWXVkSAIufY-1705395801621-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705395802","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1031, 1, '4898c4ec-968a-4209-ba02-49f0e53034f5', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/73/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/73/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705487778175097700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"4898c4ec-968a-4209-ba02-49f0e53034f5","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"4898c4ec-968a-4209-ba02-49f0e53034f5","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"4898c4ec-968a-4209-ba02-49f0e53034f5","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4d348d75e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=1TTKpS41kM6en2FqofujmeEcWbcu6rcvJNqjb%2FUdVNoKMoSmJRvYOz2AIf0eyC1ImuzvIQ4vFYyZ7tbomJW80fSl0yloMTlsCu8GJZzLIKx7USuJ%2FJZBDoG%2BfYa%2B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3f4aa96cb52411ee9546b233d0379b24; Expires=Mon, 15-Jan-2029 10:36:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3f4aa96cb52411ee9546b233d0379b2468d24feddbe712827e2a4bc22e20c4fed9e9f4362a1ace34e27dc800c4fa9118; Expires=Mon, 15-Jan-2029 10:36:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=92d751a0796e27456926fba8b5304494926ee90f-1705487778; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=FWpF_VCMQWdSEFlDW3ww9Vq7ivebcPR.BagwAtHd.lg-1705487778147-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705487779","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1032, 1, '50834ad4-c0a8-4b33-a963-bfacbf4b2041', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/74/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/74/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705487778600508800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"50834ad4-c0a8-4b33-a963-bfacbf4b2041","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"50834ad4-c0a8-4b33-a963-bfacbf4b2041","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"50834ad4-c0a8-4b33-a963-bfacbf4b2041","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4d5a9a55e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=a7nnp2AP2kxQGtlugKh63T8F5ZauhJ6qyRlI%2B7JjDfTnyHzHd%2FAgvTeXsHIbW0cqtZdkmZ7oevtu9AU4bPYSPAg%2FL%2BwyEajZcLOdBm4zPOfr1xIhLMj%2FY3PSeBgL\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3f8b41f2b52411ee806f1a295101e320; Expires=Mon, 15-Jan-2029 10:36:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3f8b41f2b52411ee806f1a295101e3200e0115ab659ef87183c1eaf19e590d04f1529569850b4fe39d517a23c98757ff; Expires=Mon, 15-Jan-2029 10:36:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=92d751a0796e27456926fba8b5304494926ee90f-1705487778; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=cOZf9k._ctaS4VjB2QEUey1aZG7XilzmGvpd9Kta81E-1705487778572-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705487779","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1005, 1, '9a0ee768-786e-4f44-b932-5806751b953c', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/88/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/88/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458374871277600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9a0ee768-786e-4f44-b932-5806751b953c","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"9a0ee768-786e-4f44-b932-5806751b953c","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"9a0ee768-786e-4f44-b932-5806751b953c","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26f7f8ab5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=hCO4hREMZc75fJN0IInWhQag3%2ButNG3mmlhFlEi3bPFNiel%2F935fn6dQtVuqWcc4jy0yKdu0T03wFD7XOhvTckfuB4KTgUmK05bC6gUcmNmbNnc3fsc%2FhTc13m2S\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c98efcb2b4df11eea1e96a17374275bd; Expires=Mon, 15-Jan-2029 02:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c98efcb2b4df11eea1e96a17374275bda19f7eb62d73f96b768135b995f39d64e505d2bbb97f4b2a293dd62a6dbf222a; Expires=Mon, 15-Jan-2029 02:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=46208b8d2b61a76951114a5231d0bdf6b88819f4-1705458374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=mVmv1Kxkzy4YArKPQsYcVEfYebmzSTGCjqCBHVOpUnM-1705458374849-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458377","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (937, 1, '10af494e-fbd3-40a7-b76c-66913ba57f6f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[53d1f72](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/53d1f72211fde4e1c022b04df50724ed8080ad37) Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101 - hungthinhne\n[ac54e07](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6) fix odata QLLD_HoSo - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2...53d1f72211fde4e1c022b04df50724ed8080ad37",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705393337614015500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"10af494e-fbd3-40a7-b76c-66913ba57f6f","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"10af494e-fbd3-40a7-b76c-66913ba57f6f","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"10af494e-fbd3-40a7-b76c-66913ba57f6f","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8464f3254b765e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 08:22:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=NiaFaEUl03rUis8xcU7NRbmVSm4PjTHdJaVGOLzdpdIx2S0hHPwNeJ%2B4OXvDGXK7JXzgF79JdNIUQDYP6hIyNHhaMFP7Ua4ODyu%2FXSxGADEQp6R3tWXP7x8ZIsJQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5c54da96b44811ee91ea2a9498a7652f; Expires=Sun, 14-Jan-2029 08:22:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5c54da96b44811ee91ea2a9498a7652f3a7500c8319f282df699ca38a7cc4031c83a168a5da1e944ef751b1e420d7865; Expires=Sun, 14-Jan-2029 08:22:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=645c7ddc92afe51034d6182aa400c432965ff810-1705393337; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=chxf1wp.jwXK0P8Deia1cqsRLabUkr.ttFnGjMxursY-1705393337591-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705393338","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1002, 1, 'dfc3dfe3-ad1d-42de-a9e4-fd12b4fce779', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/86/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/86/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458372274969800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"dfc3dfe3-ad1d-42de-a9e4-fd12b4fce779","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"dfc3dfe3-ad1d-42de-a9e4-fd12b4fce779","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"dfc3dfe3-ad1d-42de-a9e4-fd12b4fce779","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26e579175e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=LOxqO3tqozHGDf%2F7KOQuNytSDls%2B3woTzC8KaKYLNSr5CMhlTWB1wQbqb%2Fjn2eEZIMaGZV9Mm%2BSzvGss6L9f7RqXn5aF7OQmg0V22s%2Fm4DdEo%2BdBTZsZeF0kB6rK\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c8015840b4df11ee9142a2dbf69cb58b; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c8015840b4df11ee9142a2dbf69cb58bd2bc4924622140525060cef6acb66cce50c00aa3fdca444fd20eeb4665956777; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bd5a5f1ad8d93c86de1dea4d99f89a3fbc5115c8-1705458372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=6eq0xjVxIiadeFjWBBDCmvCkkCkply3pSkk.N74Rzd0-1705458372252-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705458373","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1004, 1, '313cad19-0e5f-4736-bb60-74fcbbf022b3', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/87/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/87/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458374370679200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"313cad19-0e5f-4736-bb60-74fcbbf022b3","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"313cad19-0e5f-4736-bb60-74fcbbf022b3","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"313cad19-0e5f-4736-bb60-74fcbbf022b3","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26ee7d365e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=HBf5dnn%2F27W2BIjcrcTT%2Fw58URH8neyNUrlhC7DEEf5WVViA%2FIvvrhDHf%2B75sP32ZGaSr8oANjYV4qSGswKbgxCCBd5jChCjz%2FDm7nvkvJvns79hVlV1uYbYCyHd\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c94285eeb4df11eebe6eba83cb99b81e; Expires=Mon, 15-Jan-2029 02:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c94285eeb4df11eebe6eba83cb99b81eb2c82b407531ada97317f045e63dd7043bee689fba606d5549348ea32210d64e; Expires=Mon, 15-Jan-2029 02:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=46208b8d2b61a76951114a5231d0bdf6b88819f4-1705458374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=TiwIqd5gMB94F0Z5G_wLCZmyQlLOUrNB_w5Vz.e30CI-1705458374348-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458376","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1003, 1, '031dfef1-db5d-4148-9ebc-4cc5cba0fe27', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/87/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/87/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458372863187200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"031dfef1-db5d-4148-9ebc-4cc5cba0fe27","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"031dfef1-db5d-4148-9ebc-4cc5cba0fe27","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"031dfef1-db5d-4148-9ebc-4cc5cba0fe27","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26ec3beb5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=exSkh1DPzNmjYwP30GTYgr8Ketfl%2F%2FFP%2BdaQuydIR4qQEzVc2pVe4PXgW%2FPjNjdgHngngYmI70%2FV0x60MV33%2BFLhwU7SwL6y9Xoy6PrjfXbGFR2spQcbtQ5sPOOi\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c85c3706b4df11eebaaf8a8ffccdf47f; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c85c3706b4df11eebaaf8a8ffccdf47f5136d2b85d1189b424142941d7662decd2b366c1a2049da878f4bf67bbde88cb; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bd5a5f1ad8d93c86de1dea4d99f89a3fbc5115c8-1705458372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=FofjEWWPBG_lG.78Uxak_S10t2TNPbSEn46vrJPntCU-1705458372839-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458375","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1020, 1, 'e08bac48-a316-49f1-889d-20b1be1e67aa', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/68/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/68/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705487773175310100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e08bac48-a316-49f1-889d-20b1be1e67aa","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"e08bac48-a316-49f1-889d-20b1be1e67aa","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"e08bac48-a316-49f1-889d-20b1be1e67aa","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4b2ee9e5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=rn3NkDKsC%2BhbtAqdscX02th2%2BEfAcdGcgF4IYVn%2B5R%2FXEZ2DJjsViN0zHQnyQygtO4H9zKzjU6IzKHHWhRyZp2ApE9T2y%2FfD2tkjJZg2mG2jaqIqjhKPZOgs1CND\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3c4f90ecb52411ee99202678b8edd28c; Expires=Mon, 15-Jan-2029 10:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3c4f90ecb52411ee99202678b8edd28c7fc2b258b55102c0e1bf483ce26902293fd4d9f020018a9579971216c96595ad; Expires=Mon, 15-Jan-2029 10:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=fb1656dd544894f3c5f855a08048097f541e96f5-1705487773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=TcAdhpS7sLF6Qkg4FhUz4jgpTCuL1vXrfMS5K4mu5.U-1705487773149-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705487774","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1033, 1, '91d42868-c626-4e5f-81e3-aa193c69463e', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/74/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/74/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705487778964091900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"91d42868-c626-4e5f-81e3-aa193c69463e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"91d42868-c626-4e5f-81e3-aa193c69463e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"91d42868-c626-4e5f-81e3-aa193c69463e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4d85a7f5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=mZfJ%2FKHGzYqN7tTmtL1bc3IGLPpy13G3Yi5%2F4GYinp%2BkG3d7EmOuPzN5skRfPk2i8Tk9MLfc4rl4aiD4LZDINIAA6gYx7%2BjQZ71d794z5MY9NGRJbWc5nOg28TYm\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3fc37414b52411ee93ce0e58d162e08e; Expires=Mon, 15-Jan-2029 10:36:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3fc37414b52411ee93ce0e58d162e08e3cce087940497e6419793f8160e2779a29a8a410251387e64a0d32b061f647b3; Expires=Mon, 15-Jan-2029 10:36:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=92d751a0796e27456926fba8b5304494926ee90f-1705487778; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=1Mx0vNYwyL03OVVtU6zYrOHR72PaiSgs7n4KIR8AaY0-1705487778939-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705487780","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (939, 1, 'f9e674a7-f3de-4dad-a27c-f547c1b24a8e', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #102 fix hidden change year hoso",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705394273889333700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f9e674a7-f3de-4dad-a27c-f547c1b24a8e","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"f9e674a7-f3de-4dad-a27c-f547c1b24a8e","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"f9e674a7-f3de-4dad-a27c-f547c1b24a8e","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84650a01aa1a5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 08:37:53 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=xKnOjzQcjG6s1XusUmFMZzvzwH9Kl0HK6i2NM2cj6cCVSuQzZft84oR1EAMO7pRhp42xJUCXqGfWK22eIwR463VaLVMFTnr%2F9WAv1W6iJdo6vTQT9TrS48SEc0nx\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=8a654950b44a11eeaab33afb09e1874b; Expires=Sun, 14-Jan-2029 08:37:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8a654950b44a11eeaab33afb09e1874b28925824d413c9d1280525bb800845cadc07f9f5c6c16cb440ef1a239e5eaf6f; Expires=Sun, 14-Jan-2029 08:37:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5f2f9802d5c3ccda5d2f29347d4f6999f0e2a117-1705394273; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=WFuEtJdXmunc17BUSMdRSmcAPqqNLiSjxoCgvqU4vLM-1705394273866-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705394275","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (890, 1, 'e7d68f34-4c04-405a-bf57-ce84f9a88238', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #97 add screen",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705321824127203600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e7d68f34-4c04-405a-bf57-ce84f9a88238","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"e7d68f34-4c04-405a-bf57-ce84f9a88238","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"e7d68f34-4c04-405a-bf57-ce84f9a88238","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e2134ad0c5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:30:24 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=zj%2FxuZdkU2HjqwckbgK%2FScwuWJNjnevqv86LQ37BSeuQ7XGZ0KgyAj5U0gQLMVuvxUpKGEJEA4VmcSo8B9%2Fhlc%2B2shIB%2BKVCUQvyx0JR1vV8QLMqxaU4ZpOYYVkm\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=daf57ea2b3a111ee9f16da25aaf1dbea; Expires=Sat, 13-Jan-2029 12:30:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=daf57ea2b3a111ee9f16da25aaf1dbea57ef783a7eef713ef155142fccb553ca65e05cdff888bd46a4cc82bb81651bfb; Expires=Sat, 13-Jan-2029 12:30:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=dc99cbe2db55f734758e943674c1fa3ddfe39c85-1705321824; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=zec8bjKHw9YmRI.L4JPjbp5cZQ8lJFKiATNerQQe6T4-1705321824079-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705321825","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (938, 1, 'cf7913d7-7be5-4ef1-9b33-1b7e3aa7084c', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[a2d31a4](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/a2d31a4f4ea5f3e8278eb7a3f446302831381ddb) fix hidden change year hoso - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/a2d31a4f4ea5f3e8278eb7a3f446302831381ddb",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705394252966423700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"cf7913d7-7be5-4ef1-9b33-1b7e3aa7084c","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"cf7913d7-7be5-4ef1-9b33-1b7e3aa7084c","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"cf7913d7-7be5-4ef1-9b33-1b7e3aa7084c","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8465097e19195e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 08:37:32 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=GLEfWBVRN2Rc6HKb1WiWAYtAbdzOXxSUj9E4eqEwQgCfx16zyCkeGZdZ2fnjx6NiYT5Vzp2B8v%2FfCzmqwVqXBCdDx0ii5s4bcAYAb6JVw%2FID2lunVoMs5sPjEqMZ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=7dec752cb44a11ee9e2d3afb09e1874b; Expires=Sun, 14-Jan-2029 08:37:32 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=7dec752cb44a11ee9e2d3afb09e1874bda6f682de9b345a89224551ae0dee871490a70dc6277c6a6aa03c27e5ff4ce0d; Expires=Sun, 14-Jan-2029 08:37:32 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=41ec56c927364305b067c339df11128847e591d2-1705394252; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=_uuTOvKrHHoiN4rk_AZb_pBVcncsCKTWFceoaSeFKd0-1705394252942-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705394254","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (889, 1, '13db0ad7-fc00-42a3-9469-0fd3f207f501', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[a328fa9](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/a328fa9eb323e241b28e295cac0680456d0a1338) add screen - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/a328fa9eb323e241b28e295cac0680456d0a1338",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705321776991099300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"13db0ad7-fc00-42a3-9469-0fd3f207f501","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"13db0ad7-fc00-42a3-9469-0fd3f207f501","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"13db0ad7-fc00-42a3-9469-0fd3f207f501","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e200e9eb95e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:29:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=J0dOGgyVgT2YCXPqBcYOFs4%2FKyobVVGD0xUkbDN9b8n5DVEdvqpt6nlJbxeO5ovdcwdaLWMpZFibOpCwOJLDl8Cj5L%2FE5CxL8dvsX8nRqENSJaSf4D3xduX7P%2FY0\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=bedd3886b3a111ee8bfe16c7d1e4e898; Expires=Sat, 13-Jan-2029 12:29:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=bedd3886b3a111ee8bfe16c7d1e4e89879b5f6cc337b92608320171a4d70d4cf65724b3d94a33bd87cc2f848ad109f23; Expires=Sat, 13-Jan-2029 12:29:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b5381f24161610811b23eb229746756bd67fecee-1705321776; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=bnNegPcSoYN2bR7_Ic9VcPC.BzHuWj21OBIjBrW6TWw-1705321776943-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705321777","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1140, 1, 'a6c3929b-ff1d-42c8-a894-09f090303b09', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[8de6e27](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8de6e2711f638af8b35485c887f3c10229f7fca6) Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112 - hungthinhne\n[8fd1ec8](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8fd1ec8092107d71cd610bc15090a66132b89ce0) update phan quyen + filter - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/e3af78fc47531563603cb74b00a581af88476433...8de6e2711f638af8b35485c887f3c10229f7fca6",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705631138399124800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a6c3929b-ff1d-42c8-a894-09f090303b09","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"a6c3929b-ff1d-42c8-a894-09f090303b09","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"a6c3929b-ff1d-42c8-a894-09f090303b09","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847ba0d4bdd45e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 02:25:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Tbp4O75Z6a2CBiMwoMqweJ%2BQR7OzFSQZTX9YpxwTSLW5xLPkw4nDsu8ohSxflMvmGSTP%2FE7C8NNy8I%2Bt6A528yPYH%2FGEKkseCWAjfmlzeHFYHa7n8akrFBHZtDoT\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=08a6a254b67211ee8ade1a3f0e99ee16; Expires=Wed, 17-Jan-2029 02:25:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=08a6a254b67211ee8ade1a3f0e99ee1620f19a86755db889e7c3dd2bc059d8800fb4332a2e350cf4f8253fdd39b14486; Expires=Wed, 17-Jan-2029 02:25:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ce806657460e75666357a45c72ae42086cb385d4-1705631138; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=kKBzSLvHAvAx5Ni9neEibGBXbu4rW7UH6Ymgz_DkSzs-1705631138385-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705631139","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (891, 1, '7e274705-8f4a-457e-9179-8dab622d19f5', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #97 add screen",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705321843006133100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7e274705-8f4a-457e-9179-8dab622d19f5","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"7e274705-8f4a-457e-9179-8dab622d19f5","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"7e274705-8f4a-457e-9179-8dab622d19f5","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e21ac68f35e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:30:42 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=35RN6Vp2dqXx1Bqq0OiDkzrThdNQY1NI5gMafF0kYFxgQorLkhegTtWIusysrNHz894EJrkL3U7QOJlYd7473MhbXzer6wX0p5mLAcha27R27Jg8IZLp%2F%2Bb47Yb%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e636354ab3a111ee819f0655eed2b56d; Expires=Sat, 13-Jan-2029 12:30:42 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e636354ab3a111ee819f0655eed2b56d593ee9e83ce1ffee9e10c2be509955a09a8420e996d539e564173e12a758bf23; Expires=Sat, 13-Jan-2029 12:30:42 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=9d887214d103cd62dec326cd28c905ac2805b724-1705321842; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=AYA7tUtkVMvxCXEOE8PVjkB7RN8vooVSk6FymBLn83o-1705321842958-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705321844","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (998, 1, '84e8bad9-e376-4fd7-872d-d1433b3ce047', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/84/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/84/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458371778955800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"84e8bad9-e376-4fd7-872d-d1433b3ce047","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"84e8bad9-e376-4fd7-872d-d1433b3ce047","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"84e8bad9-e376-4fd7-872d-d1433b3ce047","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26e518ef5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:11 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=PI%2FOPND6n6dziKJ8sQ5xwcCuIvINEBQp%2FfztonE7M2ybbk7HQQe%2FEBOUjjOTuMeKmlXINGBJR%2Bl3jbqo6%2BemjPmXvoNPjaV9eOcUJKNTg47HEEKSSbTt9QC%2BY1dG\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c7b70d26b4df11eeb7a3a67136ec2dcb; Expires=Mon, 15-Jan-2029 02:26:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c7b70d26b4df11eeb7a3a67136ec2dcb4cbc865996228721539c079f7f2a1874e6df2a4175c452eda346845d31005c51; Expires=Mon, 15-Jan-2029 02:26:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6c51969f63e30c2114ea6fdde5339f04489968e9-1705458371; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=gKRfgO7PIL9yGmtVDQKH4i3tH8BGP2FSHHD8X9l0Urs-1705458371756-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705458373","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1008, 1, 'b1d0bd49-38ed-4584-a220-3e63b8c538b7', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/89/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/89/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458376120998400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b1d0bd49-38ed-4584-a220-3e63b8c538b7","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b1d0bd49-38ed-4584-a220-3e63b8c538b7","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b1d0bd49-38ed-4584-a220-3e63b8c538b7","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26ffdbbc5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=bMsP6zNQS%2FqGG6bonBModhlcJ6%2Bd%2FJfmfxIYaXkXRK41zNdMKZQuTqSsEcE0te77cCgUG2w6e2safHU%2BR%2BE4YfRO9Zwd6EAw1oFDRFbpr%2FFuFAEDxFJajZhUthOx\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ca4da252b4df11ee9c9e3a6fd8d37444; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ca4da252b4df11ee9c9e3a6fd8d374447bd3ccbe550e9753bdb3284adce2afa1c07923f50c488102b9466b55a0f5e0b8; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0857e29f549ca84f5de42c0b917ad1fc8191b910-1705458376; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=LkpEsbmSp36g7rmFPdaXmJpS0hP_hWtWpTzIJBpR3sY-1705458376098-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458378","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (941, 1, 'f29a8495-7e47-4fd3-8dcf-43730bfb36cb', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[8eece73](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8eece73dc814f23997466b778c570a25145163df) Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102 - hungthinhne\n[a2d31a4](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/a2d31a4f4ea5f3e8278eb7a3f446302831381ddb) fix hidden change year hoso - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/53d1f72211fde4e1c022b04df50724ed8080ad37...8eece73dc814f23997466b778c570a25145163df",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705394333546121500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f29a8495-7e47-4fd3-8dcf-43730bfb36cb","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"f29a8495-7e47-4fd3-8dcf-43730bfb36cb","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"f29a8495-7e47-4fd3-8dcf-43730bfb36cb","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84650b7639b55e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 08:38:53 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=r8CYnJkWVm4a6xj9RBRwSqCED78zoQu8XAL%2FwNb1dBDDy9HQIExBVvwBQaXaOW04ZuWlpREUTs8wS92DpqRZGykHh8LeiLypSV0DNvYqpz083sbhd7bvRSA1vDjr\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=adf224e2b44a11ee8aa0ca8da208398d; Expires=Sun, 14-Jan-2029 08:38:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=adf224e2b44a11ee8aa0ca8da208398d4cd6f0c14882acc9ce0a8edaddc518859506275e27176591563218cf382f6460; Expires=Sun, 14-Jan-2029 08:38:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ab02a3c7659d651a70412f3bb160bfaf84cf9d02-1705394333; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=KCawKg8uo5_9T6WPshJbtey7BnyXNLqGrS6uJcWFK_s-1705394333520-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705394334","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1007, 1, '5613eca2-0e77-48a6-95ce-0be97018db34', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/89/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/89/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458375636756800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5613eca2-0e77-48a6-95ce-0be97018db34","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"5613eca2-0e77-48a6-95ce-0be97018db34","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"5613eca2-0e77-48a6-95ce-0be97018db34","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26fd8b0e5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Qp%2BWliE9%2B1I06bGDcR7tcC7eB2Yx7kh%2Bv6PBcywnnesa7yWwaa9lDDujnnyUzgZ%2BG4iS8nTUXmGpHZ1%2FeVlcTKDlwf48rb6q%2Bs61u%2FLRd9SjbqcXgCJY9AfOAngo\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ca03a490b4df11eea744fab81e5cd2bf; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ca03a490b4df11eea744fab81e5cd2bf7604f69a4e1a3284eac761ac1105e6b1aa0d062d176c46f7e8d07564231868bf; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ee00da139899552a197be1f5a7b8047a86e0a748-1705458375; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=XF4WLZGqiJPZGP_uamhTZA6px.Qo7RhXO3t4IupT7pA-1705458375614-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458378","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (943, 1, 'ff9f1ce0-bdf8-4e41-80d5-ecf7d0260f92', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #103 fix phan quyen",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705395694393209900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ff9f1ce0-bdf8-4e41-80d5-ecf7d0260f92","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"ff9f1ce0-bdf8-4e41-80d5-ecf7d0260f92","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"ff9f1ce0-bdf8-4e41-80d5-ecf7d0260f92","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84652caf7da45e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:01:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=aJexeWTZClQvsWXsVV%2Bh8EDP9yFBNLDbZMiIrzCtEHG3rO8w0sSc%2FTBhyQnJiG5oITNsER7JuH5yVPkVsa9GhMrk51HKzU1VzflT%2FBNGcgiBZugWJ9zbLrCIUgMj\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=d914b006b44d11eea66642c9ff97cbfd; Expires=Sun, 14-Jan-2029 09:01:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=d914b006b44d11eea66642c9ff97cbfdb4e5159d5a0eccbe1b35ce2188f17bb35790e81ee14e4f57f55d54ce27bfb79f; Expires=Sun, 14-Jan-2029 09:01:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=298a00b8fbcbeec02c60c3e4e9d7d0aad7791e0a-1705395694; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=H1Jhwm.w8JreRs542.gmgeGLQR_OPCMKoWfyyodS44M-1705395694369-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705395695","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1006, 1, '84a0cf97-005b-4d0a-92f1-c1566944b00a', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/88/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/88/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458375272599200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"84a0cf97-005b-4d0a-92f1-c1566944b00a","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"84a0cf97-005b-4d0a-92f1-c1566944b00a","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"84a0cf97-005b-4d0a-92f1-c1566944b00a","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26fb09e95e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=OBbBcJnJK35bnbzWg0Lpb1%2BKdXwkW05wZqVp0%2Bsk3T1ys%2B83psDQA%2BZ0oQzUss8qsQMguIEJVKWYRMPF0Vh7bx1EVjvrxZ1ECTjs6Pxk8pw%2Brbt1tScaWbX2Mk3%2B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c9cc288ab4df11ee8c2e9234c1e8a3c2; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c9cc288ab4df11ee8c2e9234c1e8a3c27642643664fb0f9c2ffb21493601df153497c7a4bf8b1db7b60322aa1fd94311; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ee00da139899552a197be1f5a7b8047a86e0a748-1705458375; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=bE4M.rvPccg140WYW4bUZCrbDG555_YVt2tdao2WlHA-1705458375250-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458377","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1021, 1, '03eb0a0e-31a1-41c4-9616-76a71fe2e7ca', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/68/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/68/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705487773633552100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"03eb0a0e-31a1-41c4-9616-76a71fe2e7ca","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"03eb0a0e-31a1-41c4-9616-76a71fe2e7ca","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"03eb0a0e-31a1-41c4-9616-76a71fe2e7ca","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4b67fe45e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Hmedq668MLwKo4JSCj6AjnzfwhUgi50IxQwtFj5fwazTEwvTE%2FLW7jOMWANaOsqdgTa5HpSsN4aAPFXamYGqbT0esO%2FRqTllvc7EoqKqxGqx2H9pz24aunxaxT6b\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3c95ca30b52411eeafda9eddbf71ef79; Expires=Mon, 15-Jan-2029 10:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3c95ca30b52411eeafda9eddbf71ef799adf661a6d58542513796cae679e1773a30b122a20b16edd5d8f597d5d2fdef4; Expires=Mon, 15-Jan-2029 10:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=fb1656dd544894f3c5f855a08048097f541e96f5-1705487773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=wYuF3sVzFAiAjS3yMprYPoetI.eAkxiEFIhk2lwdd5I-1705487773607-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705487774","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1022, 1, '3af20d85-b3cf-4be4-ba18-77387e8cf019', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/69/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/69/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705487774114436700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3af20d85-b3cf-4be4-ba18-77387e8cf019","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"3af20d85-b3cf-4be4-ba18-77387e8cf019","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"3af20d85-b3cf-4be4-ba18-77387e8cf019","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4b948be5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=7TPLwSzCSPZf21tMYL6k4MceTKZEMhFOPfEg4HU%2F0LpXpTfjhgUi0xujsgDvsz3IEhTDdXTChJCVm%2F%2FCIyKYi2CgLzcnVjbUj6Ic9jIMuReahaOOLnBD%2BHQrt23I\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3cdee666b52411ee9f5a9ead7ba824a6; Expires=Mon, 15-Jan-2029 10:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3cdee666b52411ee9f5a9ead7ba824a6c23a522b942a66e12639bcf37e28fd730cea0ebc8283c65458a3db95d0a4859e; Expires=Mon, 15-Jan-2029 10:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=40ceccc4061e317d617b3e41722e5ec0eacc9a50-1705487774; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=AjAzZVhZv0XoArx9hkEkksCIDyPEjh2CdF.XTkz6nJw-1705487774086-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705487775","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1142, 1, 'cf7dab4e-5c85-4217-8d1d-431656755212', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/14/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/14/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705634314223368300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"cf7dab4e-5c85-4217-8d1d-431656755212","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"cf7dab4e-5c85-4217-8d1d-431656755212","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"cf7dab4e-5c85-4217-8d1d-431656755212","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee5dab955e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=NGb8M%2BYnDn3MuPaC5qNIAggm3tRrvk031AjjmjltKuiYNUf1UupoE9BO5L4DEsKMqfAg%2FJ6v1BslqFc%2FCAax3keyi2uUsGRxXecqXSYafVhatQGCjRz1beZqy6NL\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6d939562b67911eeba0d6e2617c6ef69; Expires=Wed, 17-Jan-2029 03:18:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6d939562b67911eeba0d6e2617c6ef692beaedb8ee67c89687cf5bdca0ec85c4051e81db64cc8dce556f5f08718d2f84; Expires=Wed, 17-Jan-2029 03:18:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a89671599320554b03e98fe4aa326edcd33b0d36-1705634314; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=P7IjIkI6W7hp9dlK8iRcgW317YaopVhfQy0v_cp3RDU-1705634314209-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705634316","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1023, 1, '1bbe0b2b-6d83-4433-b123-5c3ade76bffe', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/69/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/69/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705487774544269200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1bbe0b2b-6d83-4433-b123-5c3ade76bffe","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"1bbe0b2b-6d83-4433-b123-5c3ade76bffe","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"1bbe0b2b-6d83-4433-b123-5c3ade76bffe","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4bc49865e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=XXgvh8xy%2BAOGVg23mRZdIO%2BFvDBTyD%2BSZztBUePuokeQ389vuoudn1OJpSSFqYfOnCNv4Oonsnj1YCb0Q2jFnkYpxN19x1IxrRyI8DlHQ%2BWMGtDDRajvU6cop5hH\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3d20736ab52411ee9e48f2b244d65091; Expires=Mon, 15-Jan-2029 10:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3d20736ab52411ee9e48f2b244d650913427817af1737860fc447105de3d078fd237e96e797b879fe1eeba09526a818f; Expires=Mon, 15-Jan-2029 10:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=40ceccc4061e317d617b3e41722e5ec0eacc9a50-1705487774; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=FPT68f.gHfAhavZVnvWDO2Eoms8Jw4XvhaisJmniGwg-1705487774515-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705487775","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (945, 1, '427da8e4-d6bb-4e0b-af2c-c3368324fffb', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[cf47151](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/cf4715110a114ad27e4779af22c58cfb819d78c9) Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103 - hungthinhne\n[65e6485](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/65e6485ae4926938a51adf2f31db4aeb6d7e7e41) fix phan quyen - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/8eece73dc814f23997466b778c570a25145163df...cf4715110a114ad27e4779af22c58cfb819d78c9",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705395803789531500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"427da8e4-d6bb-4e0b-af2c-c3368324fffb","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"427da8e4-d6bb-4e0b-af2c-c3368324fffb","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"427da8e4-d6bb-4e0b-af2c-c3368324fffb","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84652f573fd45e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:03:23 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=unMsof9Twgvpp%2BZuDPFsZVhCpYs3TuRiXtvYllmx%2BU9Yfbv1WM2pdQXbVXMbRswnzPPB4cLYJrLm2TbNLLh%2BPgdWWwn1xtv%2BRPMrK8atXWwFct8pxa65N%2B6b1Fyv\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=1a494a00b44e11ee9e3a8231d09e3c17; Expires=Sun, 14-Jan-2029 09:03:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=1a494a00b44e11ee9e3a8231d09e3c179a1d43a04a4805f28d0c2956b39cb030bf49bf22b99c02f053895d2a0525b7ee; Expires=Sun, 14-Jan-2029 09:03:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d7390ad49990987d77bdacb066c60a56c36c4cb3-1705395803; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=yu1Bk2RNgnzNhKrWCsA_59Ff1f_G51HNsULW4Y4q5Y0-1705395803765-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705395804","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (946, 1, '08743293-4407-45ca-a39a-6cad34e4f939', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[6b059fd](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/6b059fd277af151a3e10327be3a8be3e4ba084a2) fix change page - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/6b059fd277af151a3e10327be3a8be3e4ba084a2",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705396546858307900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"08743293-4407-45ca-a39a-6cad34e4f939","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"08743293-4407-45ca-a39a-6cad34e4f939","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"08743293-4407-45ca-a39a-6cad34e4f939","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8465417ea8335e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:15:46 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=MLNsczyqLcLMFW9iyC%2B%2FPifPm7VWjqloyOOyw7Z1R0%2BlIq2g%2BMxBXbJR31nKTro8PUY7q2VaxdX42zI6TBYPz6Eka2F%2Fx6mJYclWrOM9rT1hZkUjr8826PWRz3nk\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=d5302c8eb44f11ee963f8e996d667f8a; Expires=Sun, 14-Jan-2029 09:15:46 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=d5302c8eb44f11ee963f8e996d667f8a2ae94a0aa61eadd25560a0c03b0392292aa2d5fa245bc6ae5b4fa39f1ada84de; Expires=Sun, 14-Jan-2029 09:15:46 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=51c73c547473ced584bfe2f9153cddc940f4d168-1705396546; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=SgDCJfg_yh3W4xMrBbm8gurlBcQkjZKTOPtL6QtY2hg-1705396546833-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705396547","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (978, 1, '5f43fba7-eb7a-4696-a182-32f7c88158f1', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/75/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/75/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458371780837100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5f43fba7-eb7a-4696-a182-32f7c88158f1","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"5f43fba7-eb7a-4696-a182-32f7c88158f1","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"5f43fba7-eb7a-4696-a182-32f7c88158f1","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26e4188c5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:11 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Y320dsNXgVokOSjB1W05XxxWqlpiuYd43cMH23XOMBzvzN6QBDH4%2Ben0b9GdzcueuclYMSTeXSE59U0kWGO0wlfrCuKVgVr5Ar65AYvRbljZZsB91Ls8DyD4NRH5\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c7b76294b4df11ee89d02ae31a3acd98; Expires=Mon, 15-Jan-2029 02:26:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c7b76294b4df11ee89d02ae31a3acd981883fffc90dc6a9efbb7e02181d86d6c231b03ff75121d8b0f6e2b8c5bd8eeea; Expires=Mon, 15-Jan-2029 02:26:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6c51969f63e30c2114ea6fdde5339f04489968e9-1705458371; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=5n6iZ4fsx8_EOZQU9zC71dDNI5XEePpEU5JSfp1vO_s-1705458371759-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705458372","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1024, 1, '243d7ebf-c90a-4ab7-b336-8fb62fcfd8af', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/70/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/70/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705487775263115100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"243d7ebf-c90a-4ab7-b336-8fb62fcfd8af","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"243d7ebf-c90a-4ab7-b336-8fb62fcfd8af","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"243d7ebf-c90a-4ab7-b336-8fb62fcfd8af","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4c08aba5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=rtFtCAhthFmaA5ipO4HeYyBqPwLu48dp8jLXZ9%2BlE1SJHnGi2Tb3W1zFfbfTtj4vqUEGFvNRQ5CI3AePoh87gLB9MpEoiYgx%2F2h34aCmr%2Fa4P5WMULB2w0x3M5K5\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3d8d23f2b52411ee932f2a05e9bd6524; Expires=Mon, 15-Jan-2029 10:36:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3d8d23f2b52411ee932f2a05e9bd652491b6b90619782bb6033243f2c6172907b014af45c21295fa551d682c51eb7739; Expires=Mon, 15-Jan-2029 10:36:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=9efe3440a514a6bec2ba81a1ea903b69889ee622-1705487775; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=W_OY.rPlXxQApshYEzLCOtYkOKM6zl7.9jd7rqQuXOE-1705487775231-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705487776","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1144, 1, '62af45e1-fffb-4a5c-9769-279142523dc4', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/15/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/15/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705634314972754000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"62af45e1-fffb-4a5c-9769-279142523dc4","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"62af45e1-fffb-4a5c-9769-279142523dc4","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"62af45e1-fffb-4a5c-9769-279142523dc4","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee627f755e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=cN%2BFC0cZBUcuQHN2M%2BgfnC4nEryT0mCKklzR0KaUe7XauCV64bqddz575uDOlFL%2B90Lt30OtdFEVTFjqRB4vsh126ZAcNvsZqjNNxPqDWQFv9LIwuziCyyYjSj5F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6e0911e8b67911ee978b426cfa02c273; Expires=Wed, 17-Jan-2029 03:18:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6e0911e8b67911ee978b426cfa02c273423e0f48578459b804d6463991c7af43980fefef7cb0c966ed7dfa5e34e6345f; Expires=Wed, 17-Jan-2029 03:18:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a89671599320554b03e98fe4aa326edcd33b0d36-1705634314; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=cj0NvPOI_TDmvkt.ykwSaEfHR_QVt_ZroZL_W6QGzqc-1705634314958-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705634317","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1145, 1, 'bfdcaa6e-384e-4494-b47a-8f52caa63238', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/16/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/16/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705634315507187600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"bfdcaa6e-384e-4494-b47a-8f52caa63238","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"bfdcaa6e-384e-4494-b47a-8f52caa63238","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"bfdcaa6e-384e-4494-b47a-8f52caa63238","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee64c8e45e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=xhAVOWZT%2B3FoDHhjTdWE7KouAyQ6JPZJWsKcpyuaYynyvsEFgcoyVhwYu%2BuLSpA3FVVpP%2BvkJZJZ%2B4imROBSvklUQqmFpaxTjDzp8rn4zYYlD9HSqEnaW8mCpR0W\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6e5ac0bab67911eea58db23833843642; Expires=Wed, 17-Jan-2029 03:18:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6e5ac0bab67911eea58db23833843642e64f373a94394e3b85c15856d83e3e6d9cbd4d0260d8443525c305e3c6a60660; Expires=Wed, 17-Jan-2029 03:18:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=30421bde8cd26aef6f13886be7fc3ffe8587b7d9-1705634315; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=EpBE0uyA1WGJ3y26JN.fYk6EMtMnWJUt5XLqIBuzO28-1705634315493-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705634318","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (979, 1, '7153bfba-16fa-4848-8c7e-f9ff372740f8', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/75/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/75/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458372273242500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7153bfba-16fa-4848-8c7e-f9ff372740f8","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"7153bfba-16fa-4848-8c7e-f9ff372740f8","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"7153bfba-16fa-4848-8c7e-f9ff372740f8","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26e7b9e45e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=gMSqaRvMdbCsRI8Txw%2Bb9SwVQUmgGcjW5fYc7%2BPvzu8JFRcZYXCd44n8xMkJQNcdc2fMe9hHdzsNlPQYLqHoWuf1RJBwczkXTz%2BFYci4CT%2B%2BkAkm%2B98tLOLive%2BV\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c8012b68b4df11eeafd59e297551b993; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c8012b68b4df11eeafd59e297551b993a4fe68b8a0f9f2d2c9ec9d29096f02b4d754a620857079d60a55fe7fe54d6b4f; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bd5a5f1ad8d93c86de1dea4d99f89a3fbc5115c8-1705458372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=sMSToqxZKBzAo2ngBbbwlq8_mR5ib80h_HgCYDcN54c-1705458372250-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705458374","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (947, 1, '47c394a7-e4b5-458e-b051-c9f7131f3444', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #104 fix change page",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705396613939107200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"47c394a7-e4b5-458e-b051-c9f7131f3444","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"47c394a7-e4b5-458e-b051-c9f7131f3444","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"47c394a7-e4b5-458e-b051-c9f7131f3444","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84654321f8f25e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:16:53 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=xu%2FL4nsUtO2LqjPVmFfQECFMEeCWxywHPQbJsVhW4qp6YvHpWu7oQFcZK2J9k4DTUKm%2F6ECUd2sw4zP%2Bi5jnBhGsAQNSxBPYoF%2FihXHZDHzqoYlqyI5z4b%2FlZBgP\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fd1eb256b44f11ee9eccc27c7797be79; Expires=Sun, 14-Jan-2029 09:16:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fd1eb256b44f11ee9eccc27c7797be790e4d64c71d3a58d9e7ac88859e701f25d5883702c7d54320b46539002c1525b1; Expires=Sun, 14-Jan-2029 09:16:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0a27ca34b09015b408bd2f939be5b96b4b54fad9-1705396613; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=AHjBp6XPDfcaisNgToMD2Q9OzfwMjlTfG3JhMFgSrrk-1705396613825-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705396615","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (948, 1, '506cd0fe-1ac6-4ca5-9321-a014a4114754', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #104 fix change page",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705396643041439500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"506cd0fe-1ac6-4ca5-9321-a014a4114754","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"506cd0fe-1ac6-4ca5-9321-a014a4114754","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"506cd0fe-1ac6-4ca5-9321-a014a4114754","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846543d82b9d5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:17:23 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=3tfDE%2BnhW0RIddbvQol8g1hXJzHarY9PQibn7yEXHD0WCG9CFpt7pP0W0CpO3lbp3fM%2FMceuNlaeDh2oWioN1fx5ZK2NvxN2mH4UbLC2HuNXManVG%2FKriR5HODQW\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=0e819bdab45011eea89fb6acc0b24d65; Expires=Sun, 14-Jan-2029 09:17:22 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=0e819bdab45011eea89fb6acc0b24d65f0da66049f7dccf30302ac241e39ed9bcdc362c2df5e224920417e0547ba7bd2; Expires=Sun, 14-Jan-2029 09:17:22 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=dfba080d7b2f6aed25777d2aefaab8bb4a49efde-1705396643; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=HZrMDj7AMQyIYPm4QFT_X4GKeP52PX5NFcE_5_ilorQ-1705396643014-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705396644","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (980, 1, '7bc5bdc6-7ece-4897-a001-0c07b7b8ecbf', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/76/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/76/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458372684306100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7bc5bdc6-7ece-4897-a001-0c07b7b8ecbf","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"7bc5bdc6-7ece-4897-a001-0c07b7b8ecbf","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"7bc5bdc6-7ece-4897-a001-0c07b7b8ecbf","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26eacb5b5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=8f2NPocFPRLtIDwLV5tFe0uzRtjPWk6acWeBKH1gAK3j3wmDmUdXMPr2drsdEeB8PcFGdXsc9%2Fvd3UaghJqZUVdFexB8WFl7bpEK5qpJ7hyykTl2jS4AK8yC90en\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c841515cb4df11ee86f5f6e5aaa6e048; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c841515cb4df11ee86f5f6e5aaa6e048916152652a6088ff0b6a421846497fcb296433c256e417ec4b1c95e51e1d5fc2; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bd5a5f1ad8d93c86de1dea4d99f89a3fbc5115c8-1705458372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=_LNGllyc..hkrZ0GggKoBkmIOxYB2p3pxD7TcB7QfaQ-1705458372663-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705458374","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1028, 1, '0eb1e8bd-be1f-4c22-a421-265ccdae0d3e', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/72/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/72/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705487777059643700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"0eb1e8bd-be1f-4c22-a421-265ccdae0d3e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"0eb1e8bd-be1f-4c22-a421-265ccdae0d3e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"0eb1e8bd-be1f-4c22-a421-265ccdae0d3e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4cc3edb5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=BYcVtQmQ7g5AXB0cRp80tYKHiwZd%2Bnq9Cu3POH56qGR%2FAnb83d9HJF7hsmESI9IrH1VTnJln4NTEBkhGwCi1cjwJNDyKwGImNylx93UlpuzT67TED6o3MhYvoSnN\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3ea0e440b52411ee8fb12e67be318690; Expires=Mon, 15-Jan-2029 10:36:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3ea0e440b52411ee8fb12e67be3186902d6cc7e891be2cb03a0b2234199df60d310ae5f696183fb6718f9625398a31ae; Expires=Mon, 15-Jan-2029 10:36:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b64d326c70686d648d6e53136bf4fe61d22cc855-1705487777; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=V8wUEdoDQ9b2zP7s98ExZ1yG2oIiwY3X9E4Zw0Bz2Eg-1705487777035-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705487778","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1149, 1, 'ea850323-d1b0-4aec-95f3-5df3fbd020fb', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/18/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/18/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705634317225590100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ea850323-d1b0-4aec-95f3-5df3fbd020fb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"ea850323-d1b0-4aec-95f3-5df3fbd020fb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"ea850323-d1b0-4aec-95f3-5df3fbd020fb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee6ffc685e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:37 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=07ezi9YsWm94YGGsiVuNFEMyLajYp1zIq8vUw6g%2F74TtkIYtmXPTw%2Fus4GmM4PthZhtuComRvrQIZjnSf3MeSZExcXDTEpMsOk88k62KWBEUN7odPqUM936P07KD\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6f60c6dab67911ee8b6f669a4a706839; Expires=Wed, 17-Jan-2029 03:18:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6f60c6dab67911ee8b6f669a4a706839cc62f42d5d7a769791dc0deaf448da34551140c3a08aeb1e73edf67a322a7604; Expires=Wed, 17-Jan-2029 03:18:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=204725e8364e5c21b9bd4109ce6919793439dae7-1705634317; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=25G8_Cwm4C0ch_zwUhj4zTWMF1NnJjAXodx9pM0cmII-1705634317210-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705634319","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1029, 1, '8a7f259b-e371-4661-b2d5-e4c04c4f60b9', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/72/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/72/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705487777420018000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"8a7f259b-e371-4661-b2d5-e4c04c4f60b9","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"8a7f259b-e371-4661-b2d5-e4c04c4f60b9","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"8a7f259b-e371-4661-b2d5-e4c04c4f60b9","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4cebfa05e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=NQa%2FghPAjBpTGcU%2FSL%2FFoT%2FQrH5IcPz3Dhv8ZVVJxpnU4scilsOwoTvTr%2BDCmGOLR13Wc2gReQKW76515drbY%2F5TbyE4IMUsobefx7pELDCA6EjUHeeiFqI5j%2FvX\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3ed7a6f6b52411ee81b972b9691a0c4c; Expires=Mon, 15-Jan-2029 10:36:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3ed7a6f6b52411ee81b972b9691a0c4c47f35e5c85f5074171a5b83efbee10711f58bcb69a7b1bf16d7a68c7135dbede; Expires=Mon, 15-Jan-2029 10:36:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b64d326c70686d648d6e53136bf4fe61d22cc855-1705487777; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=96GexSuMaa7CTUQQAq_B4nqVjVKEupApId_LJFj4dIc-1705487777394-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705487778","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (949, 1, 'e3e8a5a8-3dbb-44b5-85ce-9204bce51f5b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[645b7c2](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/645b7c2b051a49e16e1ba1d5dd9af1918230b2c2) Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104 - hungthinhne\n[6b059fd](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/6b059fd277af151a3e10327be3a8be3e4ba084a2) fix change page - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/cf4715110a114ad27e4779af22c58cfb819d78c9...645b7c2b051a49e16e1ba1d5dd9af1918230b2c2",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705396643420125900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e3e8a5a8-3dbb-44b5-85ce-9204bce51f5b","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"e3e8a5a8-3dbb-44b5-85ce-9204bce51f5b","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"e3e8a5a8-3dbb-44b5-85ce-9204bce51f5b","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846543daec8f5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:17:23 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=X%2FreDOjxxZlPJ5ZQHGIJbQfztpdUZJ1Yfo8SMiVxut1wHwAXiOfB3MpDRjyDELB7RZXyznmeWJJEx7xA3fp4GiAL3EolwaSljK1Uu8vlXO0BzNOFiMXquHl7HH2T\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=0ebf0ac4b45011ee932d46547f05e5a0; Expires=Sun, 14-Jan-2029 09:17:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=0ebf0ac4b45011ee932d46547f05e5a00efe8de841ed4cd855e9240fcf09ee3a41a5461899dfd146329337c580345692; Expires=Sun, 14-Jan-2029 09:17:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=dfba080d7b2f6aed25777d2aefaab8bb4a49efde-1705396643; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=l.9VXD3ViJEvGdmQUFB6bv_rSzAmqEcXvu5fEDZCiwY-1705396643397-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705396644","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1030, 1, 'c55a9f71-4cb3-4cc2-8846-5e1a4c77eefb', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/73/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/73/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705487777792890200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c55a9f71-4cb3-4cc2-8846-5e1a4c77eefb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c55a9f71-4cb3-4cc2-8846-5e1a4c77eefb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c55a9f71-4cb3-4cc2-8846-5e1a4c77eefb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4d0f8425e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=JjZqETpKb%2FFzwbkDPYmCA0gEog7atcF76cJ14pBpONePawxZzTjDbJ%2BptWn7H0zbFX0gXv8W5EYCQiw8AH8%2FIn56JeXiAUZhVLD2e8DZyptJ471gGMNFffrX%2FeFQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3f108502b52411ee965d1a295101e320; Expires=Mon, 15-Jan-2029 10:36:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3f108502b52411ee965d1a295101e320c05776ed5f27cc21847965f149b67516eed23e7b8943215a863fda97c2ad8091; Expires=Mon, 15-Jan-2029 10:36:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b64d326c70686d648d6e53136bf4fe61d22cc855-1705487777; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=nNyDKhXsNxh.1qSIjGrdKdyVVfbOLawOFODaTxqpd.o-1705487777766-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705487779","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1082, 1, 'dd98c303-65cf-41e7-bfc8-4e72d6892f1b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/31/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/31/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575514741519600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"dd98c303-65cf-41e7-bfc8-4e72d6892f1b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"dd98c303-65cf-41e7-bfc8-4e72d6892f1b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"dd98c303-65cf-41e7-bfc8-4e72d6892f1b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652d3ac9f5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=KS44ws2qnNGNAAoxUWi6IPtFkvXl9x6gJJbdZNH8B9I2tJN5zrZa6HNGdmk1l1AQ4r2EcPqvCHm8BbXhhyL6btYnEchGoy7cTkZRDF8hfd2hmfN%2FkUQPcbT7CIcN\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=865ae570b5f011eeb85fb21ce3eda698; Expires=Tue, 16-Jan-2029 10:58:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=865ae570b5f011eeb85fb21ce3eda698ccf280d4a136b97d1389c652fe8bf60be8bec018fa6bea676c4d61e00b9fb500; Expires=Tue, 16-Jan-2029 10:58:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca423c3252c1691b4410cdb36bc56c9775c55e7d-1705575514; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=6fbw0Y0brCXcS3lvLjCoIMC8ZK3zOxlJrc78dZNbKbY-1705575514712-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705575515","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1153, 1, '77b4b2e3-1282-4a98-8bfc-5ae12cbf4921', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/20/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/20/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705634313770483100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"77b4b2e3-1282-4a98-8bfc-5ae12cbf4921","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"77b4b2e3-1282-4a98-8bfc-5ae12cbf4921","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"77b4b2e3-1282-4a98-8bfc-5ae12cbf4921","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee5aed1c5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:33 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Xi8LggX7zDNeGwW%2BW47%2F%2B5V4BNi3KU%2Bp7ubBmYWAA7cBxtE3%2B5qnhH72SXj1QztCt0itkCGbgyI%2Fk0IqKdcEiKJHkN7Gn4re2gioeoUaIMN0%2BgIzFE9ZgpBwlJ0y\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6d513be0b67911eebe113651b66a10a6; Expires=Wed, 17-Jan-2029 03:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6d513be0b67911eebe113651b66a10a6a1d7a8be5af31c3e7d6b4c439f631f0396dc8f5c5079e6e82a305dad53b5dcbe; Expires=Wed, 17-Jan-2029 03:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=00f105666c48a8ede0894f91a771a8da70ed8a9e-1705634313; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=3rA49OlCGS82MX3mF0ygN0AePTGbfRMGMkSYxxt.J5M-1705634313755-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705634315","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1150, 1, '830c6dff-4690-43c6-bf67-8f89fc0b4039', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/18/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/18/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705634317840161800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"830c6dff-4690-43c6-bf67-8f89fc0b4039","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"830c6dff-4690-43c6-bf67-8f89fc0b4039","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"830c6dff-4690-43c6-bf67-8f89fc0b4039","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee72cd265e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:37 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=QSpUIOb%2BniK3abX9AzEuW3%2B9SU6z0u7QqpdTdOdYBXX5SnTDHQ7qEH1M0hLJRSj%2FZQkKz%2BH2%2Fxd6qTLW%2BHcV24w3ZssKrs7DUtv5TW%2Bh58%2BVcW%2B7OCbhg9PSNJ8T\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6fbe9896b67911ee8d5f6a9ca49d77b5; Expires=Wed, 17-Jan-2029 03:18:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6fbe9896b67911ee8d5f6a9ca49d77b5a4e764be3695dabbfaaec58e8e3bc353b9379d1087f84b8212e90b407ac5c1d2; Expires=Wed, 17-Jan-2029 03:18:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=204725e8364e5c21b9bd4109ce6919793439dae7-1705634317; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=tIEutl4OwypiSRHdAFyps0UzFSBxt27uAnpnbs7huRk-1705634317825-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705634320","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1151, 1, '1bea1a73-3419-4537-90ae-2adc10ce0577', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/19/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/19/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705634318214411000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1bea1a73-3419-4537-90ae-2adc10ce0577","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"1bea1a73-3419-4537-90ae-2adc10ce0577","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"1bea1a73-3419-4537-90ae-2adc10ce0577","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee76adca5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=kKjlJA6UVSiTNnDr%2Br8N55kMRXjvg3JEWWxMq3djlhSznrHo5jft2ihQMmc0Ecc2%2FUYpsdg1eMUZoAxg7UpSlgxfbZsrCqd0jMN%2BBE1gakss7Vfh8K8AQ%2B6zhMTa\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6ff7e9f2b67911eeb62cb2a9a40c5b16; Expires=Wed, 17-Jan-2029 03:18:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6ff7e9f2b67911eeb62cb2a9a40c5b163cbc81d7b0c6582f69aef1ff9b7e333738288c04a735b58dcd577efdcbe2b35d; Expires=Wed, 17-Jan-2029 03:18:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1bffab90c3e6dba4b2d73adabf06026818608738-1705634318; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=9BH9roy2WgIKCYduP4iJlkrA3FCzFIO5XYfIA.kvwBs-1705634318200-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705634320","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (950, 1, 'a1bf7810-77c5-40b2-b073-b49bc7cab750', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[3b26819](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/3b268198277e3decd8a39c797a71e1379fc01f38) hidden file login - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/3b268198277e3decd8a39c797a71e1379fc01f38",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705396658557004500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a1bf7810-77c5-40b2-b073-b49bc7cab750","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"a1bf7810-77c5-40b2-b073-b49bc7cab750","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"a1bf7810-77c5-40b2-b073-b49bc7cab750","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846544392cbf5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:17:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=1U1G5j1cLLFvH4W2SdA93nirSiXw%2BH8qt6DIL4vBZxjqGnnJi4%2FBTQbZ3hXUVDFzJoHODHaU%2Flp%2FK1gqYBXs1RxLSyk4VeLyS33389afgqNGpljbG0VvG680rkji\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=17c4a160b45011ee859426f75c34e25e; Expires=Sun, 14-Jan-2029 09:17:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=17c4a160b45011ee859426f75c34e25ee8790fb7007f0a51b045caa033591811fcee09368022bd8b0f76d97560688ae0; Expires=Sun, 14-Jan-2029 09:17:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e47b93eea8448854fbd8ba80fdc0a3d8037947ef-1705396658; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=AoXx9KRec.vVBQAPxcAWnhLc1ip3eTZXh59Q7cZ40LA-1705396658533-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705396659","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (951, 1, '63a3ad61-54f4-4d5e-8519-08f51c384b5b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[340a9c4](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/340a9c47ca2f986c9fc50a1471a84a66c36eec01) hidden login - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/340a9c47ca2f986c9fc50a1471a84a66c36eec01",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705396713697525700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"63a3ad61-54f4-4d5e-8519-08f51c384b5b","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"63a3ad61-54f4-4d5e-8519-08f51c384b5b","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"63a3ad61-54f4-4d5e-8519-08f51c384b5b","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846545920be35e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:18:33 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2Bk4axjDO3yhKJAJoWyqvLQISGvPTnrvvZW%2Bz3jlSDFelC%2BxTJQ%2BA86biAAj6aNyzVz6xyaQkAvnpkyQs3SYhuzhbsLu5eB%2FC%2Bd5RxpuS7t37noUbD%2FXJPqlJrYuQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=38a24ee6b45011ee8d21e2e184415874; Expires=Sun, 14-Jan-2029 09:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=38a24ee6b45011ee8d21e2e1844158742a0f8b6b4d5afc4d1cd96ec621b3f36a99db50fdc886d85e5637d7a963cf9e43; Expires=Sun, 14-Jan-2029 09:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ea7e2d4be2956cdfab6affd1f9fdaf4d42a29305-1705396713; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=7uYwqSyoOzMcepoGKDPtYmNouVYQYLEK.FS9qvxI84E-1705396713674-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705396714","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1141, 1, 'b0bded64-9f41-4bc7-8532-9d18970d329f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/14/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/14/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705634313835571200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b0bded64-9f41-4bc7-8532-9d18970d329f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b0bded64-9f41-4bc7-8532-9d18970d329f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b0bded64-9f41-4bc7-8532-9d18970d329f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee5779e75e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:33 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=znkFPYN0UKuBolutSp1DPtcJvKgap6RJO88ZJhpvAlE4%2BAg5QljkDdfRKu3wpkSXjlf7ouQjKj0xzgO3DYagBMYt0N125hrS1D44DBiAdyCevt%2FqXCLE8bOiV6fp\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6d5b83a2b67911eeba3c6a99a9080b65; Expires=Wed, 17-Jan-2029 03:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6d5b83a2b67911eeba3c6a99a9080b65d3b72f0cf8f38b7dd63f78dcf66fd56f94bd81af70a009e8ce36247199705efc; Expires=Wed, 17-Jan-2029 03:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=00f105666c48a8ede0894f91a771a8da70ed8a9e-1705634313; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=K82HpWdxCvogVc4q3kervSrzJQvfMbHo_ZCvE6zQA1s-1705634313821-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705634315","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1034, 1, 'f219d8a8-1b9b-471e-81f1-c6ec2e755bee', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/62/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/62/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705517171855492900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f219d8a8-1b9b-471e-81f1-c6ec2e755bee","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f219d8a8-1b9b-471e-81f1-c6ec2e755bee","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f219d8a8-1b9b-471e-81f1-c6ec2e755bee","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c2708ce85e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:11 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2BMlYrTCWfYRdiPRlzrMeGLIlEaLXGk8pQLaawnuAFlT4oCgmOtTuA22KZ0l4YUDOYaYY53cbj1xVS2xuZJhSXcOEzz%2BCklBhVt113G1oYcuvNBKKmGqBW1gOE60V\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=af4ae22eb56811eea153c2239e8f3031; Expires=Mon, 15-Jan-2029 18:46:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=af4ae22eb56811eea153c2239e8f3031d4aeaa8641e03e669e3bf5188baed64c0faa2b703a46869cc2535c8f6b3bb67c; Expires=Mon, 15-Jan-2029 18:46:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=43df4d516252b79a622e1d3fbda27c1bc87f2aa8-1705517171; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=NnfZ9hjjy_UZpTfHR6lXPNU9BbaaeU9TcdSXZ8NYoIY-1705517171831-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705517172","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1035, 1, '458bbd54-b821-4a10-8a2c-af07701943c4', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/62/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/62/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705517172336303000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"458bbd54-b821-4a10-8a2c-af07701943c4","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"458bbd54-b821-4a10-8a2c-af07701943c4","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"458bbd54-b821-4a10-8a2c-af07701943c4","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c2743d7e5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=22B4W4%2Fxcb%2FtGp3Bv%2FioiQS6C5Juca8SQkzegsgzv4xDUfF4RW9eUpB2IfAe%2FZGTSzaDY%2BwYw9EojiuydBC2Ja49KE%2BgqmZtuj4AT%2BRQSL7q5YU5OPFv2l5jMrmS\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=af943d66b56811ee8373523b6d8dcf74; Expires=Mon, 15-Jan-2029 18:46:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=af943d66b56811ee8373523b6d8dcf74f842456b2ce92558ce9c715779452f7dc1f54516cd46d466dc528a1c36ecd55c; Expires=Mon, 15-Jan-2029 18:46:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=718b8055051c43f4b62a83fb5b90091e129668e2-1705517172; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=xGxwczUbEKRKq2KHfnPDALD.hOtvH7qydH9zm7b7H98-1705517172312-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705517173","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1037, 1, 'a3723e2c-da06-4fe4-8669-88af8a884d38', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/63/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/63/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705517173145363200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a3723e2c-da06-4fe4-8669-88af8a884d38","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a3723e2c-da06-4fe4-8669-88af8a884d38","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a3723e2c-da06-4fe4-8669-88af8a884d38","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c2799e405e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=brEpwyScifxd%2BmvWCEtlnK%2BLB%2FiUxCxCZ00VH70FyiI5u60Zl0NjwrUoKgk0fmrnkWN7W07%2FAF%2BsgH0%2FOLSCvKOPjo13rjKURRnb6Hj4LRTbEOmeOWK%2B2gvr9yFZ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b00fc882b56811ee88d682329442766b; Expires=Mon, 15-Jan-2029 18:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b00fc882b56811ee88d682329442766b987d73640efb265a6978fe4a24dbd2c705ef03678b34663eed4565731d1cf483; Expires=Mon, 15-Jan-2029 18:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=14f64afd62d57a99dbcb1ce277d6f1ba37b5d699-1705517173; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=XZpX3LE5s8XNLG3XbIOWpnMMbK0HPovdMgSdX8PJ4FA-1705517173121-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705517174","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1038, 1, 'b374c164-19df-4ca5-ab0e-6472e0dacc12', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/64/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/64/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705517173514483300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b374c164-19df-4ca5-ab0e-6472e0dacc12","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b374c164-19df-4ca5-ab0e-6472e0dacc12","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b374c164-19df-4ca5-ab0e-6472e0dacc12","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c27c3ea45e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WAnGSbFh3BVRsP%2FjbY8I5uJfAU8Lx32TMur5GBZ8vWfqYs6SV0iLDmHMNblkwLbJygozG5bZumRCEIEil82NOFGSbr2iolrNHiCPqTcrsFsC473WgYCvrwXNGx7d\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b048293eb56811ee8e435e5e4920c9c5; Expires=Mon, 15-Jan-2029 18:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b048293eb56811ee8e435e5e4920c9c5b4159673c454b10e45d600582a4be045e7f66b64e3c229ddd1dceb9071dfe795; Expires=Mon, 15-Jan-2029 18:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=14f64afd62d57a99dbcb1ce277d6f1ba37b5d699-1705517173; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=65bxT.zZU1Up3xkTDgva8gTwNxHqSeCgnk9wzcuVv8A-1705517173491-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705517174","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (952, 1, '1f888547-74f0-4536-9df8-73288258ed29', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[5d51a3e](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f) hiddenLogin - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705396820966004800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1f888547-74f0-4536-9df8-73288258ed29","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"1f888547-74f0-4536-9df8-73288258ed29","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"1f888547-74f0-4536-9df8-73288258ed29","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846548302a3c5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:20:20 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=HkZM5ODkwAPxXODHdPAGdQ4qZ8HmPFPbJRNuilODy6nRFF%2F9mz1ULLZiJMm0q8Id%2Begz%2BJbRsIwy89GN6yrNPySRsehzDtJ%2F1gnLMv7Zr6c7%2FteYaaC2ukZYM5we\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=7891e3f4b45011eeb0bc62d2e79627d7; Expires=Sun, 14-Jan-2029 09:20:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=7891e3f4b45011eeb0bc62d2e79627d79c54e3a2e6453873aaae8dfa015225718c17afd003ccd04f4bdf7c53e8db0eb6; Expires=Sun, 14-Jan-2029 09:20:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3e87579cabc7df3826698593d725f2a797d73137-1705396820; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=9hMn.hA..6YAI4THXEddae8.vk9yR323a5OHOxBdpbo-1705396820943-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705396822","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (953, 1, 'f4735578-19e6-4b11-80f3-98207a84b1d2', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #105 thinh",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705396848042220900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f4735578-19e6-4b11-80f3-98207a84b1d2","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"f4735578-19e6-4b11-80f3-98207a84b1d2","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"f4735578-19e6-4b11-80f3-98207a84b1d2","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846548d9fd765e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:20:48 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=CYMn5xc5n4mc8mA15ID0vrYF03zN7n6Html36nnl1Fnp9Yc%2FtAAwAtg6g7o%2FZj0VI3oV4ZxUx%2FsJPOLMuk5CSgaZqTS1jOPBbdgoM9yrhbtDSdyqHNZ36B6CcpHv\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=88b5a874b45011eea20fe2e184415874; Expires=Sun, 14-Jan-2029 09:20:47 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=88b5a874b45011eea20fe2e18441587452cd84f4bb90f156fee0ba060e240caf202a38898ac04fdec2732cf14042e8d8; Expires=Sun, 14-Jan-2029 09:20:47 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=eba76b630a961612166160ec521da09cd02f1756-1705396848; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=3xj5c98BF7oirQT53dRjYHwRs6aJReGZKmD89Mc7UYQ-1705396848018-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705396849","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (954, 1, '7aee527c-509c-496f-aff6-fcac53499a49', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #105 thinh",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705396865257342700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7aee527c-509c-496f-aff6-fcac53499a49","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"7aee527c-509c-496f-aff6-fcac53499a49","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"7aee527c-509c-496f-aff6-fcac53499a49","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846549454cb35e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:21:05 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=sskG5JCkyPl%2B6dR5NKjasBMKjmnXcW%2BtB%2BGB9RRO8dCLyXOnDbnj7jDGpaPiDDZ7dtBwN0PP1uuu0bsNE2Kbk7F84berP4EI5RH7qCLvFZQaCjJAh18sAIc%2FeLTm\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=92f89f1cb45011eea08646547f05e5a0; Expires=Sun, 14-Jan-2029 09:21:05 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=92f89f1cb45011eea08646547f05e5a0aa62260e8c79ad4899030fba5fd3d146473ea3d78633ce8e598b48d1a0324856; Expires=Sun, 14-Jan-2029 09:21:05 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=781366f3a1d095e8aadb9871255a9906db5e87ed-1705396865; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=neMPSQpWZFNHbdqZcjgZcg8YjrFumfLwZnuy_STy6Zk-1705396865234-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705396866","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1040, 1, 'de09da91-b1b7-4879-ba82-3847757bb16b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/65/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/65/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705517174347923300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"de09da91-b1b7-4879-ba82-3847757bb16b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"de09da91-b1b7-4879-ba82-3847757bb16b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"de09da91-b1b7-4879-ba82-3847757bb16b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c2814f545e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=bLJUu7Lvth0etDxlULdS1GcZwiFlAaGdPTdxHPqszyzo2zmV5J9tMxUPuQkYEbQJPCvuOFLVONgMvtIZFw51VRNhiPwLEnQZaTnFX3%2B3jsxvvmmjwiY32taUWjiP\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b0c73c7eb56811ee92c7ae7425d96d51; Expires=Mon, 15-Jan-2029 18:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b0c73c7eb56811ee92c7ae7425d96d51df440f6487df2499e4a165a892bce4e6b25fcc5b6baf31042d455cfc9e2eccd9; Expires=Mon, 15-Jan-2029 18:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cb0a4764b099394a6dfd9bc37d9bc5fa369464ac-1705517174; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=SQNasTJcACjqiOqK9cR_aCHhsZdpHLBcmRG0fDORfOM-1705517174324-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705517175","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1041, 1, 'f036a788-68ac-4d23-bb4d-9730a788a756', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/65/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/65/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705517174793678400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f036a788-68ac-4d23-bb4d-9730a788a756","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f036a788-68ac-4d23-bb4d-9730a788a756","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f036a788-68ac-4d23-bb4d-9730a788a756","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c283cf955e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=vdqqCSDxODetJVx8yuDu8DKxhkGzVemB79ZCKmww7eztrhdg6bx77k%2BhpIMk%2F2K2z9kK29NsuDaZjxlhdKGhUb5Unq5QYfPyd1Vo%2B36aE%2BDvAWaQzqKGkmJUIFgi\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b10b3e42b56811ee92c7ae7425d96d51; Expires=Mon, 15-Jan-2029 18:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b10b3e42b56811ee92c7ae7425d96d51e0d1b261b4fb239f41b826da87c557b1132aef53a042c2cc444b5a0e3693e876; Expires=Mon, 15-Jan-2029 18:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cb0a4764b099394a6dfd9bc37d9bc5fa369464ac-1705517174; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=xpTv7SVlUmCyotB.c2VvIFarzcb7K.vPU_eFuuUasc8-1705517174770-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705517175","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1043, 1, '6391693b-dbe9-434e-bd86-a08477767a3a', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/66/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/66/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705517175551944500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6391693b-dbe9-434e-bd86-a08477767a3a","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"6391693b-dbe9-434e-bd86-a08477767a3a","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"6391693b-dbe9-434e-bd86-a08477767a3a","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c288e83e5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=AI%2Bi6l1aYhfzTYCV6c40R1D5iPTBKCYWexYCPXNdJctrG5yM2vBJvA3LCbwslQBCrIbREnAVLevJi%2F63DCZCZmILgPYWgmNbx9QLxJhdNuuysuklP7w1Ljo0o3z4\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b17f0ab6b56811eea32b22180435f247; Expires=Mon, 15-Jan-2029 18:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b17f0ab6b56811eea32b22180435f2479d0a64ebfa88bf03a5fed508f36c17bc1269630a2b0bdd086b23b960c32258c6; Expires=Mon, 15-Jan-2029 18:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=f8d1f22042a8cb755254153999f8108d76954fe5-1705517175; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=yOB_O9zQ0s6ukCQcWYTabfwe.1Hgtg13ZFPgyuBZmFk-1705517175528-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705517176","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1044, 1, 'a9853367-1f34-45fa-9c06-93cbc3cd34f1', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/67/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/67/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705517175935029400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a9853367-1f34-45fa-9c06-93cbc3cd34f1","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a9853367-1f34-45fa-9c06-93cbc3cd34f1","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a9853367-1f34-45fa-9c06-93cbc3cd34f1","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c28b48d05e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=nk9wC%2BeqDVB1s9Q9d%2FRUxXPT5d3%2BQ63UFqSlmhlGa6a3tlI2k7zjFyMv3yFtnaX3MqS1I66BZNcDWPscvWdyfUl20TqWucw2L4rCOOhR6F7sugEN9kO%2B5rkGIIER\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b1b9697cb56811eeb6e8f2bfbd1a820a; Expires=Mon, 15-Jan-2029 18:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b1b9697cb56811eeb6e8f2bfbd1a820a476e20ca1d36279c7e481f0b5e6df3ef44930e4bba071f6696d76e198557622d; Expires=Mon, 15-Jan-2029 18:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=f8d1f22042a8cb755254153999f8108d76954fe5-1705517175; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=8eQ3C03QiU1Lz73dWhnMbaafNkT2rTdK6396OEyXskQ-1705517175911-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705517177","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (955, 1, 'a0bd0df0-3e2e-438d-8206-0c6e12822967', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 4 new commits",
      "description": "[d268ef0](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/d268ef005af0e0adcc49b9b4100f0479116d31d4) Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105 - hungthinhne\n[5d51a3e](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f) hiddenLogin - Lê Hùng Thịnh\n[340a9c4](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/340a9c47ca2f986c9fc50a1471a84a66c36eec01) hidden login - Lê Hùng Thịnh\n[3b26819](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/3b268198277e3decd8a39c797a71e1379fc01f38) hidden file login - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/645b7c2b051a49e16e1ba1d5dd9af1918230b2c2...d268ef005af0e0adcc49b9b4100f0479116d31d4",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705396866769388200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a0bd0df0-3e2e-438d-8206-0c6e12822967","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"a0bd0df0-3e2e-438d-8206-0c6e12822967","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"a0bd0df0-3e2e-438d-8206-0c6e12822967","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8465494ee97f5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:21:06 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=7urete7OcRMuZealtf6cpukaBHN841RaRCrHsm9DWOYrlqSp6FNVLDlbSmrJlngfohXOsWKFpVeBNxY7nN9nNBTgj%2BDxZ6JKOJoBJyu7JO%2B6BM2tzDSU1xwX%2FJZn\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=93de9b0cb45011eebd2f36d042aa6da5; Expires=Sun, 14-Jan-2029 09:21:06 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=93de9b0cb45011eebd2f36d042aa6da53a33a951c69aa08e06fee0c8410936e8babb5d876f854444a6ee14d2fd1d4ebd; Expires=Sun, 14-Jan-2029 09:21:06 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=4fa65d32e9ae07c7bb532189000810b045170d55-1705396866; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=krPGx0jTBeHGWX1QkFn0IVmNQcA.eXgOxudFj3gjjOo-1705396866746-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705396867","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (981, 1, 'b0579944-3e30-4754-8ce5-de1262801016', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[8f0bc90](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8) fix gdnn - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705458372980419900, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b0579944-3e30-4754-8ce5-de1262801016","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"b0579944-3e30-4754-8ce5-de1262801016","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"b0579944-3e30-4754-8ce5-de1262801016","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26ed5c9d5e3b-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Wed, 17 Jan 2024 02:26:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WQeZ2ctLlrAuJT%2BLkKD20EjLbvh8hmlvrhnL5zse5euLHNNhlij0QWq7d2tIlhUVoW7okTjal0WkwY9BQ%2BtKCy1Ha2a0Q3xN%2BzPwwsZkpHN4qg8K6S%2FNGWFMPCjo\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2107","Server":"cloudflare","Set-Cookie":"__dcfduid=c86e844cb4df11ee91bd1ec9afb677e3; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c86e844cb4df11ee91bd1ec9afb677e338b16ce0925c38e90cb54fc1c85c5f76a29ec67ef6f9b89dfa88b2f092bdc29c; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bd5a5f1ad8d93c86de1dea4d99f89a3fbc5115c8-1705458372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=RIgGf4vXdFfdysvG0E2wxbaghLEqM2w.RH3bqxLpFjk-1705458372959-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458375","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (1036, 1, 'd0456ef3-e66d-4636-baa9-7eeb230f5311', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/63/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/63/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705517172719987400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d0456ef3-e66d-4636-baa9-7eeb230f5311","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"d0456ef3-e66d-4636-baa9-7eeb230f5311","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"d0456ef3-e66d-4636-baa9-7eeb230f5311","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c2772dec5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=QVDdfUa2YmZ3h7fVRbAUmp%2FTihYjexRPvACrVW27U4RWhoLaGFwjqKupuiUQUovKsFqIYm6rV34Pk2dqIXp8SVdvzajjHbQ56DVcZSxCp8wN%2BWvQ5hBZ7sBD6tag\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=afcecc10b56811ee84d986cb4622b2d4; Expires=Mon, 15-Jan-2029 18:46:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=afcecc10b56811ee84d986cb4622b2d427bbe1dfd5adb7e3a0995c986696b687bb5c9b5a6acdaae819e76f24d4f628a5; Expires=Mon, 15-Jan-2029 18:46:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=718b8055051c43f4b62a83fb5b90091e129668e2-1705517172; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=YNOecYoGXL5uzbOB.fGv0MgsNEoreX4Jhi6hp8WcfYM-1705517172695-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705517173","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (768, 1, '5d017ff1-ea95-445f-bbf3-7e649a466c62', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/backend:main] 7 new commits",
      "description": "[869268d](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/869268d636fa17b9ae86c4f0ce751839607f6610) . - lqdat\n[4529416](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/452941640be0fe4ba9d7a470d65a2dd2298f1ec7) Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend - lqdat\n[b335b4c](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/b335b4c4867af438f52809be0436486e090bc4c5) update baocao TS dia phuong - lqdat\n[c1242c0](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/c1242c0cc36db357f358465b19daf6661c5a5604) check xóa ngành nghề trong kế hoạch đã gửi - Nguyễn Khánh Nghĩa\n[d60353f](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/d60353fc6e819e577c1d0a1e119257bc185fb22b) Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend - Nguyễn Khánh Nghĩa",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/compare/2b39a2404c8800424e13d56f5702c07c9261c67b...869268d636fa17b9ae86c4f0ce751839607f6610",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "giao-duc-nghe-nghiep",
        "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep",
        "icon_url": "https://git.gdtsolutions.vn/avatars/802cdf8532d94c10cd481e4e3983c194bc5f4fc5742e4a5d699a740361409a4c"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705037174591255900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5d017ff1-ea95-445f-bbf3-7e649a466c62","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"5d017ff1-ea95-445f-bbf3-7e649a466c62","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"5d017ff1-ea95-445f-bbf3-7e649a466c62","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8442fbc2bf481e53-FRA","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 05:26:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fpvd81DKpBNgTEWefFlKTj3zE7g2MLZEbdLPIPIFr1KtMPTavmLRtLzJeBgIHyYkUK%2FYm6mFnpTHOcVdsoKYm22w6%2B8Kn3%2FR%2FT%2F64TPvL5%2BK6ahA2QGVQ3z3GI%2BJ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=1aa058b8b10b11eea9b3365101b1105b; Expires=Wed, 10-Jan-2029 05:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=1aa058b8b10b11eea9b3365101b1105bce38614f49271fec208d0a81a911edda0369341751f2d67e441a36410744bfec; Expires=Wed, 10-Jan-2029 05:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b4387101c96f2aaf8c4efd460c84eeaa18941498-1705037174; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=6bGkOboDxjzof3QFb3McomGAbxwXvzatapGVOq31adA-1705037174506-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705037175","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1039, 1, '463cb2a5-d4eb-4e96-a1e4-79ccd06977cb', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/64/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/64/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705517173954701000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"463cb2a5-d4eb-4e96-a1e4-79ccd06977cb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"463cb2a5-d4eb-4e96-a1e4-79ccd06977cb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"463cb2a5-d4eb-4e96-a1e4-79ccd06977cb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c27e8eeb5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=14R%2B2sgaQCjLOYS%2FshsLE6k6ysFQP8bhIHNUlDwWiiVYE3pse7DoZX4B5AcEht7%2BZs3hx5%2FuJZ0CX6vPX0DzYbozLvMLbxuO90GYkN4reNMqZiM8LoSz2ai4gqhA\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b08b467eb56811ee9538663ebc741ef3; Expires=Mon, 15-Jan-2029 18:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b08b467eb56811ee9538663ebc741ef330ec5311e4985840370a33ffe6a1dc21b85a94ed09236ffadcc52bdec4dfcabc; Expires=Mon, 15-Jan-2029 18:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=14f64afd62d57a99dbcb1ce277d6f1ba37b5d699-1705517173; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=yZNmWABrGNC1chShF7fYnle4Qb649bordeyZIQddbqk-1705517173931-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705517175","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1045, 1, 'eef6ce09-ce66-4ef7-b308-c46db54af303', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/67/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/67/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705517176414654100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"eef6ce09-ce66-4ef7-b308-c46db54af303","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"eef6ce09-ce66-4ef7-b308-c46db54af303","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"eef6ce09-ce66-4ef7-b308-c46db54af303","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c28da9215e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=HosneTcAKKAEekcdqEAGVIjZ%2B%2B2Lh1%2BBjhFktlXwbd35A1YHudka1rvDBmJG1X6fU5n890d1yElvDh5nGHhAwYHncio4ARNPpoOvt3K8SE1lg6387aw8aygQjQek\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b20283f0b56811eeb8d7523b6d8dcf74; Expires=Mon, 15-Jan-2029 18:46:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b20283f0b56811eeb8d7523b6d8dcf743691a232aa5970636dd6a8572611ece0a107266be1fc22f72adebf021cbdc6a0; Expires=Mon, 15-Jan-2029 18:46:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bd3af02578662ba133d3a10d5028a029f478a6a5-1705517176; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=hMxk7s4AcWPKSGEkY34B_u_NwllTTneLHIejd5ubfxA-1705517176390-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705517177","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (957, 1, '0b6c4865-cf7f-4320-ada0-ceac2512c9e7', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[7650c10](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/7650c10f1a92cffc96d99f4f9923dc49763c69c7) hidenn - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/7650c10f1a92cffc96d99f4f9923dc49763c69c7",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705397231349850200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"0b6c4865-cf7f-4320-ada0-ceac2512c9e7","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"0b6c4865-cf7f-4320-ada0-ceac2512c9e7","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"0b6c4865-cf7f-4320-ada0-ceac2512c9e7","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846552356ed45e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:27:11 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ucH70ZixnwLwINMnzQh%2FNhSCEy6UNZxl7EXziEzRq6m5uvI0CUxuyeYnUo1XKy9eRvOiQUmDr32GtEDLes%2FPK03RgTi5vYp4g7ykzTiCmJGZ6xGeus%2BPWRDxeWtq\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6d2d9282b45111ee97c85619581d3564; Expires=Sun, 14-Jan-2029 09:27:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6d2d9282b45111ee97c85619581d3564ce00a271d2884a82344d1871d0725cb4d3afeb1c0abb1eea27a20f5305b838b3; Expires=Sun, 14-Jan-2029 09:27:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=928520f9652ea0c3ae7e2a133b50dc2d1fb2c141-1705397231; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=QSOCM.SpDJxFsHBnTaTnUdQsB7QNS7a7kH2c9Qj3UD0-1705397231326-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705397232","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (956, 1, '896c78a7-5fc3-4bb6-b29f-a3b622630134', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 106 new commits",
      "description": "[8e3640b](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7) hidden login - Lê Hùng Thịnh\n[d268ef0](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/d268ef005af0e0adcc49b9b4100f0479116d31d4) Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105 - hungthinhne\n[645b7c2](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/645b7c2b051a49e16e1ba1d5dd9af1918230b2c2) Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104 - hungthinhne\n[cf47151](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/cf4715110a114ad27e4779af22c58cfb819d78c9) Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103 - hungthinhne\n[8eece73](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8eece73dc814f23997466b778c570a25145163df) Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102 - hungthinhne",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f...8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705397198349302700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"896c78a7-5fc3-4bb6-b29f-a3b622630134","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"896c78a7-5fc3-4bb6-b29f-a3b622630134","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"896c78a7-5fc3-4bb6-b29f-a3b622630134","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8465516628045e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:26:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fS7qKdSAQD%2B8U44b6ctdv6lflJMzidFqVSllM2Yh22WWWJxGYpyh1Lw9D7JaR7yQgG21IQXPjlvsJkud4SvtUcVBvoWYyVOn8P7N883LvZA7%2FNAe7rUVZW3rxaYk\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=59824c3cb45111ee88a6d261dcddec30; Expires=Sun, 14-Jan-2029 09:26:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=59824c3cb45111ee88a6d261dcddec3093008d1d8d722fd70d51996dfa7992d3d97ed30711b2ee7f0753ea3edb06e70e; Expires=Sun, 14-Jan-2029 09:26:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ceb59b5eddb190cb1efc1087767af46d91eef1a5-1705397198; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=nHK.QXBKWzQjKoMpTz14mvnBz4QIiQQye2MVL_ZqjdU-1705397198326-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705397199","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1042, 1, '299dd4a9-5161-4865-a8b6-977d0931e924', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/66/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/66/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705517175171657500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"299dd4a9-5161-4865-a8b6-977d0931e924","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"299dd4a9-5161-4865-a8b6-977d0931e924","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"299dd4a9-5161-4865-a8b6-977d0931e924","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c2868ffc5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=86fHJGWuxnHAHdtnDDvyuD9%2B0IFKCVM4Aq3dL%2FqIbPD4h8De7k7ZPLiyFzsjHfBVTnEyrmCtLFFaaSlMXZA6NEX4uRVfwdg2AVraXK%2FYFNCjDSN%2FDEgt6XRz%2F9AR\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b14338e2b56811eeac471e98c9c7a94a; Expires=Mon, 15-Jan-2029 18:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b14338e2b56811eeac471e98c9c7a94a56e1492c0e2a3e287913eafb6146a1bf63c5fb94d5f6f61fc0470fc707806117; Expires=Mon, 15-Jan-2029 18:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=f8d1f22042a8cb755254153999f8108d76954fe5-1705517175; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=2K0hsGMK6GjKDmDPhA5_VHpJ7TgtxOAkWrP7oGsGQyg-1705517175147-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705517176","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (958, 1, 'd76bdf03-d20a-4b05-b92a-2c82b91eb678', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #106 thinh",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705397257703075000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d76bdf03-d20a-4b05-b92a-2c82b91eb678","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"d76bdf03-d20a-4b05-b92a-2c82b91eb678","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"d76bdf03-d20a-4b05-b92a-2c82b91eb678","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846552d2baf95e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:27:37 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=46yQlkdjdsHtriZrnBey8dJXksaxs5ufdIzerygarXjQrxmY%2BliWDU9cj6DWfyIR4jpWW7qmmiGoNGnAIux5%2BxUPsxozKnVujCcXAoKgTiJlNicIcAVZ6SMhlRT%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=7cdf5508b45111ee9f2602f4a08a5271; Expires=Sun, 14-Jan-2029 09:27:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=7cdf5508b45111ee9f2602f4a08a5271a05aafb77474c5bb1b493ce68a6d03bce0915aa1c694633813d2243af6e71fe7; Expires=Sun, 14-Jan-2029 09:27:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=edda4582097c0b707a7294608d72244d185efb5d-1705397257; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=jEQ0Pf4FIKFfGV4959Upr3SbEOokJKjAFxYE7lE2IiQ-1705397257679-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705397258","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1116, 1, 'd7aece2e-9bc1-472f-9607-62db9e6715ed', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/48/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/48/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575514700102800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d7aece2e-9bc1-472f-9607-62db9e6715ed","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"d7aece2e-9bc1-472f-9607-62db9e6715ed","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"d7aece2e-9bc1-472f-9607-62db9e6715ed","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652d3ea375e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=wxNRy61kObjUtr6tPzOpzFW59ee8FU1s0aUR%2FP5LaK20Ahn34Tlby6nkCU60NFrfXDAeJuexVSQs9rOMQT0tEZmORE6OI0Rd7n0IvUGmjvHKQcc0PyAXHk%2FjVZo7\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=86552c2ab5f011ee95c42ef1960fe1ba; Expires=Tue, 16-Jan-2029 10:58:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=86552c2ab5f011ee95c42ef1960fe1ba8543649f39e795cc57fde1c7bb341514e947e065b5f5a52230e0d56065e406e3; Expires=Tue, 16-Jan-2029 10:58:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca423c3252c1691b4410cdb36bc56c9775c55e7d-1705575514; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=EchfrizBnm_DSNxnqwHzmBmRhVqQpuJGriosUNgxMg0-1705575514669-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705575516","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1115, 1, 'b4e861eb-633d-4d1d-9486-0be909ede29c', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/47/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/47/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575520291736800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b4e861eb-633d-4d1d-9486-0be909ede29c","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b4e861eb-633d-4d1d-9486-0be909ede29c","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b4e861eb-633d-4d1d-9486-0be909ede29c","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652f6d9515e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:40 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=1TykbFBcByxcaQJ8d9xtl8RG9KnbZnTAi7rCjFq7Ns%2FSvK%2B%2BY8%2B%2BXye4f%2F9SCrTegFQlxm6M5MMwW3ay3S4RH4IonZPti6dbPKa%2BQhUyLyZrZ4qk4mkegqOOaEnm\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=89a9fec8b5f011eeb9ef0a2c805842b8; Expires=Tue, 16-Jan-2029 10:58:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=89a9fec8b5f011eeb9ef0a2c805842b8198e084305247403bd79f84bca67b7a9268a458b979a2c7daa8f8719a413c6ca; Expires=Tue, 16-Jan-2029 10:58:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=60f1d629456b607e0e01ba464460e82b3d90026e-1705575520; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Pdfi3qn07xviy0GjZrK.dA13OEql15u98c2KkiL3Lyk-1705575520261-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575522","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1156, 1, 'a94aa61a-2ea2-4d08-9827-e9f40a837568', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/21/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/21/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705634314010986300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a94aa61a-2ea2-4d08-9827-e9f40a837568","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a94aa61a-2ea2-4d08-9827-e9f40a837568","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a94aa61a-2ea2-4d08-9827-e9f40a837568","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee5c29fe5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:33 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=U2zQAIqIwOkE%2FfZvQvV%2B8SGx6v%2FTRl3X0DTrQ7y7r%2BkA9LUxyD%2FD0tXxXW0u1IMnZix%2B6bnazwSVua1VMoFJ3%2BivhARsdIhl6FAcAdoKb15HAmkBO7nbAXGuGwes\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6d752b5eb67911eea9ed22aeaa99ccf4; Expires=Wed, 17-Jan-2029 03:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6d752b5eb67911eea9ed22aeaa99ccf4f496c6eec0769e733516c638d14bb308e529d27d26b5b1b4686fe837665cbb5f; Expires=Wed, 17-Jan-2029 03:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=00f105666c48a8ede0894f91a771a8da70ed8a9e-1705634313; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=UYcDHRtcb18Rkwetq2MAfzxPu_2rjGGi5dluSxAl9ZM-1705634313996-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705634316","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1152, 1, '90ed8ad7-97cd-4e28-be2a-9ec73553f512', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/19/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/19/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705634313389792800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"90ed8ad7-97cd-4e28-be2a-9ec73553f512","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"90ed8ad7-97cd-4e28-be2a-9ec73553f512","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"90ed8ad7-97cd-4e28-be2a-9ec73553f512","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee577c285e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:33 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WhRcirmvhG7zpM9YIqegjiw6gL50WTF88679bcuQx%2Fx%2F2fc%2Ffu29b3hrDVI3jrdFB11B%2BXDhte%2BtFXBD3aVJvCXPFvIlFzpG12f%2FT1MhHhxco7SAjQ4ukrqAlxOV\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6d171618b67911ee8abd96a52dc9509a; Expires=Wed, 17-Jan-2029 03:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6d171618b67911ee8abd96a52dc9509a8df5913090db115d0c298a217668ed05629bfe8c57aef502efd60d2313bee142; Expires=Wed, 17-Jan-2029 03:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=00f105666c48a8ede0894f91a771a8da70ed8a9e-1705634313; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=vq9D__ObUmnXqOCyWDDdLv25NbPFf0VrWgfzAfpJau0-1705634313374-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705634314","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (959, 1, '419a7fc7-017f-4513-ad08-71ecd8d97220', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #106 thinh",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705397271821313500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"419a7fc7-017f-4513-ad08-71ecd8d97220","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"419a7fc7-017f-4513-ad08-71ecd8d97220","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"419a7fc7-017f-4513-ad08-71ecd8d97220","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84655331782c5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:27:51 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=psn1%2FcxsKBzWtQKumfbLP4TCgK%2BuOMOwgg11Icwm8QpWcZW7ua33qQkWsz4YrgQYI4FVNG4%2FX0O4RwE7hg75u2BhP%2FbJDxKGGWt2anVJSiRnaznL7mLdCZIdjYd3\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=854cd490b45111ee898442c9ff97cbfd; Expires=Sun, 14-Jan-2029 09:27:51 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=854cd490b45111ee898442c9ff97cbfd3cac0354aae686076d9b154b7ff832698797380268103068cf77369e310a5bd4; Expires=Sun, 14-Jan-2029 09:27:51 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=86188356e3305dc3d4e0b3590c3480e118336a15-1705397271; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=rG3RJgPIn0k9NOHyEOr1fjfkhJoRY5mUlE8L2zNcfKU-1705397271798-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705397272","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (984, 1, '29c41cc0-1d91-48ba-a02d-9bcfd7d52544', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/77/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/77/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458374203413800, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"29c41cc0-1d91-48ba-a02d-9bcfd7d52544","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"29c41cc0-1d91-48ba-a02d-9bcfd7d52544","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"29c41cc0-1d91-48ba-a02d-9bcfd7d52544","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26f4cfa95e3b-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Wed, 17 Jan 2024 02:26:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2B62tq0I5%2FBq7EpgbtaQ342EFNGPvUF7wR4aNtaAws9ZJzvLytcHtD8DXgwejM1Of51TBmH0puKVTT01opaifIU1idORWWyD8uBuEOyk7yMsiye0bQLDrhFlS1RKF\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2094","Server":"cloudflare","Set-Cookie":"__dcfduid=c929025eb4df11eeb77fbe224d97a722; Expires=Mon, 15-Jan-2029 02:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c929025eb4df11eeb77fbe224d97a722f9728202cdacc5ce20f8454426d5a59cfd65080ef35db1a8cbe596139a032702; Expires=Mon, 15-Jan-2029 02:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=46208b8d2b61a76951114a5231d0bdf6b88819f4-1705458374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=i8PYHva3MwVjVPkeXZGrPafYblzaM3Q3ymH7JKoTQgM-1705458374181-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458377","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (985, 1, '6229e7bb-d347-4117-9973-35cb2792e6fb', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/78/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/78/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458374659271400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6229e7bb-d347-4117-9973-35cb2792e6fb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"6229e7bb-d347-4117-9973-35cb2792e6fb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"6229e7bb-d347-4117-9973-35cb2792e6fb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26f6e85b5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=UagZ%2FnfE%2FNXamAMnO%2F0j7ZxDE16Rd6zbFMxzPvoxsfWNKiI0b2pFJXUyFfcpPRWns0BRVPmdbjccNeOhjvbPekdQKyDqVsvOoClCGYzX01sELD%2B3eogzNgDJlu5f\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c96e7fb4b4df11eebfc5da7e1965fa36; Expires=Mon, 15-Jan-2029 02:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c96e7fb4b4df11eebfc5da7e1965fa36d8a2a92b1a26b120711f7afdd7b6511bd96d09e0c4473e5a34ab5dd9a29e3a3d; Expires=Mon, 15-Jan-2029 02:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=46208b8d2b61a76951114a5231d0bdf6b88819f4-1705458374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=28vQvGRHcJhJVwU_sm7W6ewT25rHbA_q.Yxxcb53p9U-1705458374636-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458377","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1046, 1, '9c63396c-8952-4cae-806a-8f236d7b54d8', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/49/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/49/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546572552377500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9c63396c-8952-4cae-806a-8f236d7b54d8","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"9c63396c-8952-4cae-806a-8f236d7b54d8","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"9c63396c-8952-4cae-806a-8f236d7b54d8","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473903a98285e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=sewyjdGaOwpJu7MuIO3BmyzdJlLcR4wrOuqahlzxTIzEyCYZLqCDEWF17BCAa%2BFY0M7I34BLHevd5a1jBixruT9Mgxz5obwXk3HcipHPSsJQbTjaMPFObZ2%2Br6wy\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=2379de7cb5ad11ee89e912438b7fc607; Expires=Tue, 16-Jan-2029 02:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=2379de7cb5ad11ee89e912438b7fc607aa521f488fec567beba5dc3f445ed3f4c3dee8aad1258aacd1132a69426fc646; Expires=Tue, 16-Jan-2029 02:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d33ec70d4b0a6ce0210d6697c1a7cc0ab27b5660-1705546572; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=RueIK0GwwMlTRt5ZoTTXuk.SDglg4bWc6Srhs6HXfak-1705546572549-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705546573","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1047, 1, '5d568487-2b5c-402e-8c54-5b71dd42758b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/49/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/49/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546573121825000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5d568487-2b5c-402e-8c54-5b71dd42758b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"5d568487-2b5c-402e-8c54-5b71dd42758b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"5d568487-2b5c-402e-8c54-5b71dd42758b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473903ebd905e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WHflhBiwhyTPTxQb1vAApW0vO0Y1vNG0HWLk4E6fJXpy%2FIxLwcu3rfgvI%2BNr2p0FrOY8xlvaIXOLb%2FJFAnJfz9MwXN15AymHUTYnif%2BUavygWBILWlHctLttTFpC\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=23d33774b5ad11eea95f92f6d3391228; Expires=Tue, 16-Jan-2029 02:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=23d33774b5ad11eea95f92f6d33912283f5e66552d7fd7432fc960839ab8a26a286beb74269743136bc8868a5fdf736b; Expires=Tue, 16-Jan-2029 02:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=330cd3a417f747ee9b5818c4fbb5755cc4a86e76-1705546573; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=sVyW.B_qnQzRyCDxqFv8ubzJpZ3PuUVMHz6Ox6dymoY-1705546573126-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705546574","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (806, 1, '21e689a6-bd45-45c5-873a-02cd64d62558', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/129/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/129/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705105574765118000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"21e689a6-bd45-45c5-873a-02cd64d62558","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"21e689a6-bd45-45c5-873a-02cd64d62558","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"21e689a6-bd45-45c5-873a-02cd64d62558","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844981b01abb5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=sVOJduf5THjxrzgpmYMEdzlP9nCk8WuJaCKt66T0MrEGqM0ZIIhd%2FCCN6OhOPx9hQuqCm57%2FsOyA20VvJ%2FrIG4X%2F2I5kwQCI5cgStNzeCgYxvtKlN83cnYf50E5i\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5c527896b1aa11ee90ef7eb3793fecbf; Expires=Thu, 11-Jan-2029 00:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5c527896b1aa11ee90ef7eb3793fecbfb0113a99d6829e1a7f4e8325e48ddea997204666effa1af3f0e4b7f5fb49228a; Expires=Thu, 11-Jan-2029 00:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8257e88aa9dd8bd7ef2933ef16e04f21988b5e2e-1705105574; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=M3ymYfbSHLeP35hqYSe_ICFILr7kyDMfGJONGnqqCkk-1705105574763-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705105575","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (769, 1, '14c6df24-0ad6-43b3-a78b-fa2deaf3a2bf', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[khieu-nai/admin:main] 1 new commit",
      "description": "[15e3994](https://git.gdtsolutions.vn/khieu-nai/admin/commit/15e39944f15f208be7ba038d75a2f68911f1d21e) feat: organization 100% - vantuan",
      "url": "https://git.gdtsolutions.vn/khieu-nai/admin/commit/15e39944f15f208be7ba038d75a2f68911f1d21e",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "tuan",
        "url": "https://git.gdtsolutions.vn/tuan",
        "icon_url": "https://git.gdtsolutions.vn/avatars/ef8cb8091e07736d503797a3fd007bb52d58ce27f461213703866d303da8e9a0"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705042668327388500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"14c6df24-0ad6-43b3-a78b-fa2deaf3a2bf","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"14c6df24-0ad6-43b3-a78b-fa2deaf3a2bf","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"14c6df24-0ad6-43b3-a78b-fa2deaf3a2bf","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844381e25c23371c-FRA","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 06:57:48 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=bDuBxmRUQ3jzN6kezfTDzQOfJCU7O%2F7lZUeAxKbSE2WwsXQAzRLbY81SI0tZjTPbfDdkffbTaBcJmLHt6j%2BTzK1BcyLFg%2BAlrPC5t1Y9dH5iIWdlQrIv2lWMXi%2Bu\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e525ec9ab11711eea85316488926765d; Expires=Wed, 10-Jan-2029 06:57:48 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e525ec9ab11711eea85316488926765d9c38e9c92e745a31f1af6141c8b7ac88c0e908fe61af618aeff568daa3b7c9f8; Expires=Wed, 10-Jan-2029 06:57:48 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=92dacd4a3bb73daf17b82662d067baf7c32ed6ff-1705042668; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=8xhrrNmlempaKXw_NFEOVsoDcnplzVm.1C3GaznqCtI-1705042668241-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705042669","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1155, 1, 'e0aa5e05-2c81-4bfe-8a01-547035234aee', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/21/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/21/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705634313602906500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e0aa5e05-2c81-4bfe-8a01-547035234aee","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"e0aa5e05-2c81-4bfe-8a01-547035234aee","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"e0aa5e05-2c81-4bfe-8a01-547035234aee","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee5979855e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:33 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=rqn46KN8USH8NLU0dzFQm2Fc5bIs42EWdL966IRxj5tTOe6mWnF8oFH7H31CKC6xhMbqDPMtkXCxfbQwsq%2BMuXAcMIFz6iRv9iGCxfIQhiJGjURJa7yrc8Y6fD4a\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6d383352b67911eeade8e628930e5cdb; Expires=Wed, 17-Jan-2029 03:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6d383352b67911eeade8e628930e5cdb9561f8b625d18de8a001563992ed48cbadd15a544f1fd638e61212cb73a0b4e0; Expires=Wed, 17-Jan-2029 03:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=00f105666c48a8ede0894f91a771a8da70ed8a9e-1705634313; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=1Y1QVNuOz1Vva7eolNGGW56nXtiUFXtA4NaR1HhBSX0-1705634313588-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705634314","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (960, 1, '97e8c896-622c-4b5e-bdda-e3e5cbe19893', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 3 new commits",
      "description": "[f0f201f](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/f0f201ffadd72a9c710659316fad0c14ed6d69c1) Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106 - hungthinhne\n[7650c10](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/7650c10f1a92cffc96d99f4f9923dc49763c69c7) hidenn - Lê Hùng Thịnh\n[8e3640b](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7) hidden login - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/d268ef005af0e0adcc49b9b4100f0479116d31d4...f0f201ffadd72a9c710659316fad0c14ed6d69c1",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705397272247341100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"97e8c896-622c-4b5e-bdda-e3e5cbe19893","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"97e8c896-622c-4b5e-bdda-e3e5cbe19893","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"97e8c896-622c-4b5e-bdda-e3e5cbe19893","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846553330b065e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:27:52 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=cf6Xgkrgj7VXvzO%2BubfmwuiOFjbvG8ee7gYvvfCuLdX9TGYQkZQVNUDRAZv4V2CBCbgixLFw1xpXAoNb8eqrPRrHPbPtGnqDZjjF%2FDSx%2FxF8Z%2FjtyvAFhV5j2OQ4\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=858e0582b45111eebab816756648c95a; Expires=Sun, 14-Jan-2029 09:27:52 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=858e0582b45111eebab816756648c95a79045664c6c581e53d6dcd35b2cc257723870eb8290c93f51e8d48201b25d22c; Expires=Sun, 14-Jan-2029 09:27:52 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=f3611b3a87947832b19c6316bd94525189f0d2e2-1705397272; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=g.0EJqGvh5KaAWGrjeu95nK7IyaXkqZlIkLQyRbVVbs-1705397272224-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705397273","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (961, 1, '159f04f0-e196-45f4-a1cc-e019a5d5d14c', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/92/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/92/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705399572254590600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"159f04f0-e196-45f4-a1cc-e019a5d5d14c","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"159f04f0-e196-45f4-a1cc-e019a5d5d14c","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"159f04f0-e196-45f4-a1cc-e019a5d5d14c","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84658b5b0f355e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 10:06:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ZvgfPTJQ5rRloFx%2FEdq%2Fvsx%2BKW2ShLJtlh2Ja%2F41Q5zBcPQ43v7xCgF7%2FABhao6qupZddkiYtiHrR5alHAPHiR8SKPsQCuALGMSoQ9U6pkgonGMjkrtcTt7mmZmk\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e0773a5eb45611ee984e0aa24d88ea9e; Expires=Sun, 14-Jan-2029 10:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e0773a5eb45611ee984e0aa24d88ea9ef19d9fafb5e725cf4bed812d9968957984838a91b2617cfe594efa502ddcf427; Expires=Sun, 14-Jan-2029 10:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=69da9e3a8d38bf7b4ae806ec215b723707e02daa-1705399572; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Q09HwJakP.Z1LkuYzXyElNb3f4mVpGD0t.xyk.lFqq8-1705399572230-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705399573","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1048, 1, 'e6c856a1-a622-405d-8d97-41846f2f64fb', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/50/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/50/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546573505711000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e6c856a1-a622-405d-8d97-41846f2f64fb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"e6c856a1-a622-405d-8d97-41846f2f64fb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"e6c856a1-a622-405d-8d97-41846f2f64fb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847390424efe5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=6DPC8wIuvKHaE7rh8zyqDcMb%2F4zZ8zw3YmXQTZjiz%2Fg47ixHW0ElkFllKQycrIT%2BeeAarFjn3viCManRMLJNxQdSV3EE5K16djxg7mQ%2BhBPXPYUd5AXKiNB94TB6\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=240e2c80b5ad11eebaeb7a34482fb976; Expires=Tue, 16-Jan-2029 02:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=240e2c80b5ad11eebaeb7a34482fb9768377fd54c631c8d9070996cf0cd2ed97cb3939b6b4d95d7ab911c86579417f03; Expires=Tue, 16-Jan-2029 02:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=330cd3a417f747ee9b5818c4fbb5755cc4a86e76-1705546573; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=U_1AI2aYaLWvpCRxUe44EJGCR6YECqHAqjqNiEo2u6A-1705546573510-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705546576","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1154, 1, 'da26ce45-245b-4bf8-81f5-8b5c2ea1d3bb', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/20/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/20/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705634314187737500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"da26ce45-245b-4bf8-81f5-8b5c2ea1d3bb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"da26ce45-245b-4bf8-81f5-8b5c2ea1d3bb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"da26ce45-245b-4bf8-81f5-8b5c2ea1d3bb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee5d3e0e5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=DydF6HcKPOmTX%2FlRm6jY1G7PM3%2FD%2BW3LhDQKO8t4J0w6i%2FOueq1D1gPPGr83L%2BXn5y4cSGdrvxxUIFdUNBlSVhAF3GEIkrxEnXwtAdv3xAoapvl7GGaZ7ecJc6Xt\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6d8e2bc2b67911ee9db0b2a9a40c5b16; Expires=Wed, 17-Jan-2029 03:18:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6d8e2bc2b67911ee9db0b2a9a40c5b16fcabf4ebd60249ffb88ea6d05e33cd4db232b97838e2ea8ead65f3e845f65989; Expires=Wed, 17-Jan-2029 03:18:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a89671599320554b03e98fe4aa326edcd33b0d36-1705634314; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=nEHgrD3_qqEEFuSAyC59RUGUCVljxnzOtUTR54yfk.M-1705634314173-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705634316","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1050, 1, 'feac3b0f-37d7-468c-8864-e9fa1dd4c66f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/51/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/51/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546574205120200, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"feac3b0f-37d7-468c-8864-e9fa1dd4c66f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"feac3b0f-37d7-468c-8864-e9fa1dd4c66f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"feac3b0f-37d7-468c-8864-e9fa1dd4c66f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847390470eeb5e36-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 02:56:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=OP7CPG6yHa14jusMefcrIGKDudvJfv08p6q3wBQoqxoQ6fjkQBpeXfv23W6XuqwfUdPCXV5tUf7IQOv9bgVhduFr%2FbufQFisGlqGHP6Mkij5TpFe7kwa7U59BSQv\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2021","Server":"cloudflare","Set-Cookie":"__dcfduid=2478cf18b5ad11eea1770a271164bc0e; Expires=Tue, 16-Jan-2029 02:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=2478cf18b5ad11eea1770a271164bc0e8a59cdf17c74f1b615b1d9e20793bbf9314eae2bbc3312d07ab9ffcf42eb2db4; Expires=Tue, 16-Jan-2029 02:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=976f352afc996ae6d9bb34d9359e3962448bbb36-1705546574; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=PeysOQHqRdIbtdD1XQsEviiTE2f1HfyGxt8UCWMTe5Q-1705546574209-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705546577","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (1143, 1, '3e485058-0e0c-4a5e-aab8-d08e95842302', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/15/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/15/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705634314610140900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3e485058-0e0c-4a5e-aab8-d08e95842302","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"3e485058-0e0c-4a5e-aab8-d08e95842302","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"3e485058-0e0c-4a5e-aab8-d08e95842302","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee600ec95e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Qn%2FHNDXBvhc9fvp2EQT2%2BS%2BIVc%2FoNvWERkO8VlKtEle6BonJY28OSJG1YLEP2rl57FjO9eDBJhOh2LA1dp%2FsY0eeIt%2BSJLqrzfrxMtPbMrJziXyuAEgto81Knj8U\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6dd1bbd0b67911eebddaf2f90f29a615; Expires=Wed, 17-Jan-2029 03:18:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6dd1bbd0b67911eebddaf2f90f29a615290d66e452b093e5a293e72ce6347d16b1a808bc4029cfa24874a3098414b857; Expires=Wed, 17-Jan-2029 03:18:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a89671599320554b03e98fe4aa326edcd33b0d36-1705634314; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=RS29Mfw_nJDcLn.P_8BPvziEX0Aea_kgiltqz8kJlg0-1705634314595-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705634317","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1146, 1, 'a8819fa0-1b9b-428b-8c37-46cfa16b76ac', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/16/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/16/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705634316000664800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a8819fa0-1b9b-428b-8c37-46cfa16b76ac","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a8819fa0-1b9b-428b-8c37-46cfa16b76ac","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a8819fa0-1b9b-428b-8c37-46cfa16b76ac","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee6819935e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fh0OWItx52XKbYlyIg7Nkk1vJKtsJvCkci7Lt1VnbqgVbKXLCzgCBi8m%2F2%2Bv5q9W%2BAXLHqJS1VF2629aN44kFB6Zdxm39Ff4U2J2Tern9SerZJ4mjqimqg3%2F%2BtO1\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6ea5bbc4b67911eea4f0f67882ae1ab2; Expires=Wed, 17-Jan-2029 03:18:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6ea5bbc4b67911eea4f0f67882ae1ab24a2ac91e9d020fec523d58a87896c78b4c171b5c83dcf75665b77311bd875554; Expires=Wed, 17-Jan-2029 03:18:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=30421bde8cd26aef6f13886be7fc3ffe8587b7d9-1705634315; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ZumWoVlJvw_yPNR.aGxoLvknI3TQhorg00UWkz3FzdE-1705634315984-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705634318","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (963, 1, '49ba2015-1d3e-4b87-8461-d904410b8884', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/93/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/93/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705399573005430100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"49ba2015-1d3e-4b87-8461-d904410b8884","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"49ba2015-1d3e-4b87-8461-d904410b8884","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"49ba2015-1d3e-4b87-8461-d904410b8884","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84658b60f9605e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 10:06:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ADwAfQebDhvd7iRmnDQql3XTLCtFF3H98eQhdym4nHLBx0EYT0KZQTbDN4DuS15x3JwzB73QxukRUpSxV4Hwg2VKcK9ENuKl15%2FvjAkZj7T7oyV19RrxZuzg5NiJ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e0ea0d04b45611ee906cfa9c027b806f; Expires=Sun, 14-Jan-2029 10:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e0ea0d04b45611ee906cfa9c027b806f6aee05622b283ce17fb907da15df714744ffa850be09fc10c01786110b38a512; Expires=Sun, 14-Jan-2029 10:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=69da9e3a8d38bf7b4ae806ec215b723707e02daa-1705399572; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=93G8YSkwBZri2kvApW5twn2V2VgR.qVlEA8QM8NxzUM-1705399572982-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705399574","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (964, 1, '2387efd1-cec9-48f5-8b7c-92ab72056854', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/93/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/93/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705399574321337600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"2387efd1-cec9-48f5-8b7c-92ab72056854","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"2387efd1-cec9-48f5-8b7c-92ab72056854","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"2387efd1-cec9-48f5-8b7c-92ab72056854","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84658b636a2c5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 10:06:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=sLxV%2FPpPhVPLKS7Hj%2BGDxzIh58PkIjLO1wOEx7lYrNY3g22LnUowr97pGb%2BwJgDdKm8vggUkO0ZZZaBqpdc6qTgg9PjazD92XGBCP%2B1fNIb9OsFdrB%2BUC3HK8b78\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e1b2c1b8b45611ee84ac7642f5424dcd; Expires=Sun, 14-Jan-2029 10:06:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e1b2c1b8b45611ee84ac7642f5424dcd98f14a93bd6522e81073f9f68f340225440ac192c74d19c2e861be48a6a1b508; Expires=Sun, 14-Jan-2029 10:06:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=629625efa201b3b81ec02b44fff7c0e1567a122a-1705399574; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=D3y7_Z1feKpGkyRc5VF4xsyTKN2z9RPIRfJ.trxPx6I-1705399574297-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705399574","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (770, 1, 'ce75f3cc-7313-4851-a2e6-bd4f6725e220', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[bf23020](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/bf230208b1efd148c1dec00f3c4eb158311100bd) fix icon user - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/bf230208b1efd148c1dec00f3c4eb158311100bd",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705044402002355700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ce75f3cc-7313-4851-a2e6-bd4f6725e220","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"ce75f3cc-7313-4851-a2e6-bd4f6725e220","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"ce75f3cc-7313-4851-a2e6-bd4f6725e220","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443ac351df65e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 07:26:41 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=1aMt6kcNU6YAQYjhlEXo4LI7M5l5%2Bq0BNgHcUO50FyJv2TsHUjKlQyuhA020DfsPBGCf4Qwxc4HyuV%2F9j0rcQ9cRkK45dmoeUHva5FLO6bjdpthbLghOLhBVQbJi\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ee80a3b2b11b11eebe6322ab75833ff8; Expires=Wed, 10-Jan-2029 07:26:41 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ee80a3b2b11b11eebe6322ab75833ff8c30fdde55453cd118c17976ec753c0be91df78751c91feff94545c90fb63e08e; Expires=Wed, 10-Jan-2029 07:26:41 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a72912347f31169bd1559871969bf2f3a0323db1-1705044401; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ptItgBcH6VQwDUURMMeaHgfCZTvDK7uhGk3dnyQEHI0-1705044401980-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705044403","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (892, 1, '55184915-9324-4b5d-81af-5f0e146fe3de', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[99df42f](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/99df42f181517ecde830cfba0d18f5bb48283de8) Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97 - hungthinhne\n[a328fa9](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/a328fa9eb323e241b28e295cac0680456d0a1338) add screen - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/81ebe9e1ea91c561cfd2d8b2778830a808e2104e...99df42f181517ecde830cfba0d18f5bb48283de8",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705321843411668600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"55184915-9324-4b5d-81af-5f0e146fe3de","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"55184915-9324-4b5d-81af-5f0e146fe3de","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"55184915-9324-4b5d-81af-5f0e146fe3de","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e21aea95f5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:30:43 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=FPYhamvpOVn5jGhMyW5FnhH2BdNpANEKSf1qpVqFuFXrHVE9Eh4fAStDdW70JelOFzT%2FxmZtOuuzQLjM5lIGpVcbwStx0ilwKyV1cgM%2BaLXxsoVn4Lvkxc4cnIuY\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e6740988b3a111ee931cfe4d44bed9dd; Expires=Sat, 13-Jan-2029 12:30:43 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e6740988b3a111ee931cfe4d44bed9dd96ecf028a0c6b3eec993b27ff99238dc278c7c48a9212e6ddf27018d61b3312e; Expires=Sat, 13-Jan-2029 12:30:43 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=95045ce0b21df3f7454dd78f955a3a81f70b7f55-1705321843; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=.Y2edaSOtHg2nHqOW2iMHJSUGCrnsEaqPvHQJWcbU7w-1705321843363-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705321844","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (965, 1, '56ad21dd-a1db-466d-b90b-5e66dcb030bb', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/94/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/94/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705399574671479600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"56ad21dd-a1db-466d-b90b-5e66dcb030bb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"56ad21dd-a1db-466d-b90b-5e66dcb030bb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"56ad21dd-a1db-466d-b90b-5e66dcb030bb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84658b6bad7e5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 10:06:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=B0W%2FY6wPqVDv9Ct6hxhva8x28%2BGIfKwuFZJ96eMOXUrpAYid4WiHTt2fw7MzEKtIxSNpYHigByp19aVjeb%2BsBup1gbfy0Wa7lM2IFG%2FK99SU9HVTQUTKziOKB9k%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e1e83a78b45611ee8dfad241f5824d28; Expires=Sun, 14-Jan-2029 10:06:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e1e83a78b45611ee8dfad241f5824d28a09e204164c3ddf4204db1d2efee47945c9aff79d53da7b1ccc783ced999a83e; Expires=Sun, 14-Jan-2029 10:06:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=629625efa201b3b81ec02b44fff7c0e1567a122a-1705399574; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=CtCNkZ3ulgy.p4JBTbaaPrtjOyuskhYpGwujyf_.tAc-1705399574649-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705399575","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (966, 1, '7315e402-4180-4fc5-a407-3d72f0344495', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/94/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/94/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705399575113801400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7315e402-4180-4fc5-a407-3d72f0344495","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"7315e402-4180-4fc5-a407-3d72f0344495","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"7315e402-4180-4fc5-a407-3d72f0344495","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84658b6dce6d5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 10:06:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=R44dyvsLj8gA3CCrGIy5%2F8iS83G0ankSLJxJEOHqSRWwoYO8u7XXJQ0zIz7jZ67%2BdCvzUVczRMViXelq58fvD47kPTWtN%2F4S8ssWpVs81%2Bb7I3JEwGcxRmPMxwlP\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e22bb208b45611ee8c3fcab077bfe12c; Expires=Sun, 14-Jan-2029 10:06:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e22bb208b45611ee8c3fcab077bfe12c65ea795f2dde6abf6ea4a0644e52fffc9abe0fc7661628b7e42b05300f1be74d; Expires=Sun, 14-Jan-2029 10:06:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e9e95c1d88f90684008a26c20aa2659d4f60d3e8-1705399575; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=UAVG9Bma3UIyAFtvU8_w5kYakva2fzTEZF5kdlFzPdQ-1705399575090-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705399576","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1147, 1, '30bc01b4-8d4d-4968-aa14-67d0fb0b93bc', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/17/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/17/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705634316380928200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"30bc01b4-8d4d-4968-aa14-67d0fb0b93bc","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"30bc01b4-8d4d-4968-aa14-67d0fb0b93bc","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"30bc01b4-8d4d-4968-aa14-67d0fb0b93bc","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee6b2b085e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=V4VKZfjaySbclrMzralVnpW6um0U8CHj56bLWgBto4NsJePx0yBi2xkQtGUPoWQzWYPXCLAPTk9li%2BvLEp9PdN9Z%2B%2F8MNf8Gew%2FYF169RcnHj6TzeCS8o2BtYBqG\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6edff97eb67911eeb81bbe48a66aa619; Expires=Wed, 17-Jan-2029 03:18:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6edff97eb67911eeb81bbe48a66aa6192d9ad71a2375807bae6480ce167311fededd142253fd07d428aece69b0b884d7; Expires=Wed, 17-Jan-2029 03:18:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1f4195b57d96336391e513c828fb7edd2221800c-1705634316; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=zlj7Oic3e03OSDprHyCGbOdy9nmnKOslS6sKz8P0.x0-1705634316366-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705634318","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1148, 1, '293441dc-3188-437b-801b-85ab578fcbba', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/17/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/17/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705634316774020400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"293441dc-3188-437b-801b-85ab578fcbba","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"293441dc-3188-437b-801b-85ab578fcbba","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"293441dc-3188-437b-801b-85ab578fcbba","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee6d8baa5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=iQLQvI8kT3LYDZ1xZGHShRaAyPYaDASYLZyezIaAHLLd%2BzjgIbhdOgK63UpFk%2FRCp6%2B0D2u1iTzIiMNERcHRCX6sQ9In1ViYr5nxx%2BZ3ekAe%2FmHAB5ROtAPfRpQe\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6f1aaf60b67911ee98800ea29fee96a6; Expires=Wed, 17-Jan-2029 03:18:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6f1aaf60b67911ee98800ea29fee96a6e9af1b13f5fab2dec6918b9096504a485b6c12e8e55b8206d5d994109a0a1833; Expires=Wed, 17-Jan-2029 03:18:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1f4195b57d96336391e513c828fb7edd2221800c-1705634316; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=3eUp13ehCniGY0l.irwVS0j7NxCNMP7hONQgguzCwlE-1705634316759-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705634319","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1051, 1, '9479afec-20b0-4aaf-9ef0-a02687fa7518', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/51/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/51/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546574758963700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9479afec-20b0-4aaf-9ef0-a02687fa7518","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"9479afec-20b0-4aaf-9ef0-a02687fa7518","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"9479afec-20b0-4aaf-9ef0-a02687fa7518","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847390490fc35e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=QdS190gvMKF%2BaRgjIexxjrBR3RMzUB64x1%2F76dEeEf1B0KSj2HopKNpL8xC3Dkcqwhe%2FAv0KXHUXf%2FND9iYZH84MKFqzrJdkaOfEbi1pJ4ysWWNxBiM%2BT9GsCo%2Fx\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=24cdb96ab5ad11eeaab70267d10d6995; Expires=Tue, 16-Jan-2029 02:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=24cdb96ab5ad11eeaab70267d10d69956adea039cbeaf1b9c4db82fbcd1830818e1a46a492f374f886120104c9ca115e; Expires=Tue, 16-Jan-2029 02:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=976f352afc996ae6d9bb34d9359e3962448bbb36-1705546574; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=FO6gG7gWNlaA2tNPRYmM843twbecIACoatHvk.AUFBM-1705546574762-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705546577","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (968, 1, '98079310-76a5-4583-b1af-efb3331201d7', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/95/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/95/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705399576028600700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"98079310-76a5-4583-b1af-efb3331201d7","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"98079310-76a5-4583-b1af-efb3331201d7","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"98079310-76a5-4583-b1af-efb3331201d7","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84658b73b8d25e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 10:06:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=nbHSk9gIpmnyEYJ6HL4PhCzBtEqg4kJjo1bqsCRY3p02DXU4A2mzEy80mq1%2FezAGG%2BUtdAbu5Cw2JKzdmH4jx8DlQFpV8DF2ns%2BWYQYLlZlfxWFLekvV1%2F5VQEOa\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e2b76e06b45611eeb8c46657dc0f68be; Expires=Sun, 14-Jan-2029 10:06:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e2b76e06b45611eeb8c46657dc0f68bec24578a785071774ae1189c8d0d529a64fcecd9dc0e5295ea57233f833fbb4cd; Expires=Sun, 14-Jan-2029 10:06:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a0ac98e23dedb1f03405746fb5b7a60b86a19553-1705399576; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=8nxrQjXk8bNKtOYxcW0o63YvAQyRe22Gz7MzCnB3euE-1705399576006-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705399577","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (962, 1, '5eeeb213-28ea-4331-a6f0-8c79cab2f048', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/92/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/92/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705399572624535100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5eeeb213-28ea-4331-a6f0-8c79cab2f048","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"5eeeb213-28ea-4331-a6f0-8c79cab2f048","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"5eeeb213-28ea-4331-a6f0-8c79cab2f048","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84658b5eb8815e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 10:06:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=3QN%2FdUGOkgrW3E5JDy1F0aKXPHHOgVSmvSo9nTs%2Fjx45J8nDXDvdT1HB0bJbnb7at2nU663BbMtJqW37nL2ogmJA9VySIDQoGNuDLIWYp5FwO3X2dbKsuJvg5JNM\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e0afe4d0b45611eea0ef8ad7f358db02; Expires=Sun, 14-Jan-2029 10:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e0afe4d0b45611eea0ef8ad7f358db02d3a4eb4475e121b602a514610ed57bf648a4c7e6503d4a225d93e183f3bad24d; Expires=Sun, 14-Jan-2029 10:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=69da9e3a8d38bf7b4ae806ec215b723707e02daa-1705399572; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=BTj4qfE4qjLcUTY7dsVWsQRYdpqho6LMPhDAsGNxWUE-1705399572600-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705399573","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (967, 1, '1906ae98-627c-40a7-8f4c-41427917a6dc', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/95/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/95/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705399575619350100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1906ae98-627c-40a7-8f4c-41427917a6dc","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"1906ae98-627c-40a7-8f4c-41427917a6dc","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"1906ae98-627c-40a7-8f4c-41427917a6dc","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84658b708fce5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 10:06:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Xh%2BD8F8LhASqGT9otLrhdJcbjuT9TM5yOp7isOg9AVILqZsqCSCCml8c3yts6i87QqYHHfXu8i%2FCx8QCV8dsz4tS9jltijZx%2F6SnVfjGmjKGA8pKwmnpSAQdZ81Q\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e278e154b45611ee8862725130698809; Expires=Sun, 14-Jan-2029 10:06:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e278e154b45611ee8862725130698809b761315ecb4cded3351aaf3fda22884a56c54cb00e7513e58a44fbfa56e1b359; Expires=Sun, 14-Jan-2029 10:06:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e9e95c1d88f90684008a26c20aa2659d4f60d3e8-1705399575; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=BTVvQh4s9rIRXNJkBKWBbgq57apQEJ15Q2DAB1uXBwU-1705399575594-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705399576","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1052, 1, 'e5bfe05d-8827-48b0-8583-9d0172ee5ece', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/52/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/52/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546575199580400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e5bfe05d-8827-48b0-8583-9d0172ee5ece","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"e5bfe05d-8827-48b0-8583-9d0172ee5ece","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"e5bfe05d-8827-48b0-8583-9d0172ee5ece","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473904c798e5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=CQUrDwvmclINvuFiY6tP7UjfXrZ5biilLXSVihUmP4dLhXZ4P35mTaex2PxKBDJOvXsJvrzjYVqBOYqx7bl2fJYHMddkNkqXI3V39o4Fj7xv0unpnxTGX%2FQParAy\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=250de2ecb5ad11ee8c66f21a2a653613; Expires=Tue, 16-Jan-2029 02:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=250de2ecb5ad11ee8c66f21a2a65361345408e39a5198317ff99994396bfdb38a7326be86874130c48c05b54dd9e2a77; Expires=Tue, 16-Jan-2029 02:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a58a80d6f72b88414b2a50e33e49507a1f007baf-1705546575; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=hn_uvSdLCwWfENPc3sadRQ0EmIwPa0BRQN1Ugh9lkUs-1705546575184-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705546577","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (771, 1, '1e654c8e-8c4f-40d2-ac1a-8bd0b4bb27cc', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #86 fix icon user",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705044516939370200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1e654c8e-8c4f-40d2-ac1a-8bd0b4bb27cc","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"1e654c8e-8c4f-40d2-ac1a-8bd0b4bb27cc","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"1e654c8e-8c4f-40d2-ac1a-8bd0b4bb27cc","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443af045e765e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 07:28:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=XocUD0BG7RI9CmM%2BEYE545%2B%2FU9%2FsoAgfKBKUtG5P25IMQSziBDjUY9S85gFuyrh1T9Ry%2Berib781QO0S4JwG0naxl8krWwm3S75zIj0nO9M%2FfOY9rnOXKiQiyDK%2B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=32ff3058b11c11ee8980cece6137c334; Expires=Wed, 10-Jan-2029 07:28:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=32ff3058b11c11ee8980cece6137c3347f0d8bc311d306c1d4fde236fbff4c5df9ffbfa9eb16aa666b118d7e12f97704; Expires=Wed, 10-Jan-2029 07:28:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=045be112947cbf959c7bd80438610a9293236303-1705044516; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=oFPNgvpEYxRtUNJTqNBB1.MBU4kW8xPUet9NRVpzPBY-1705044516900-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705044518","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (772, 1, '9ea344b1-2546-45c0-b60c-50f9b0cd4e8f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #86 fix icon user",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705044540095051200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9ea344b1-2546-45c0-b60c-50f9b0cd4e8f","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"9ea344b1-2546-45c0-b60c-50f9b0cd4e8f","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"9ea344b1-2546-45c0-b60c-50f9b0cd4e8f","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443af951f875e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 07:29:00 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ZII%2Fnovcli%2B4x4MlLL8z56IsUM5fREaY2mD%2BB9B1WtXNcGZWcv1qbwlZXOQwgySD20b9AQMxvJxHZlXbnmOI6VxC%2B6Z30bVAC1Dsc4leUv5NlA2cIfjtAhobHMje\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=40cfbe28b11c11eea586a6f2414153ff; Expires=Wed, 10-Jan-2029 07:28:59 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=40cfbe28b11c11eea586a6f2414153ffd37fedb49fbb75e5a3bf1b46d2a7e6afab3a480bebf2a7f87aedd04e3fc4bb92; Expires=Wed, 10-Jan-2029 07:28:59 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a515bc305c374aee257566912b0a7e5ef5dfeb59-1705044540; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=eEoEyXwaYxhmdJl7Ov8E1YIDde_5vlE_k3jznWVmMNA-1705044540072-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705044541","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (988, 1, 'f2decfa3-42c0-41fe-bb55-1517af33b9a3', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/79/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/79/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458375588765000, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f2decfa3-42c0-41fe-bb55-1517af33b9a3","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f2decfa3-42c0-41fe-bb55-1517af33b9a3","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f2decfa3-42c0-41fe-bb55-1517af33b9a3","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26fdab165e3b-HAN","Connection":"keep-alive","Content-Length":"81","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Wed, 17 Jan 2024 02:26:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=yQvMs68PZQSR881D%2BKwzi60pLEjij5ez2yorSFw7kTOBa6uywIXIXVzDkhwtFadPJGuCA%2F7ExFv0alyaSB8KmIFAzvAr2psKD2Rh342rlWuhXISu3tcW8ciS5USj\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2302","Server":"cloudflare","Set-Cookie":"__dcfduid=c9fc41a0b4df11ee9cce5ad44740a9e7; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c9fc41a0b4df11ee9cce5ad44740a9e76f3d2ada6945610a8000f8a5d6647355dad2fbd4212257ca4aa5053c1da2ec2e; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ee00da139899552a197be1f5a7b8047a86e0a748-1705458375; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ygjXDq6QJwBoo5O17OC6PhBR.V3GKGKMJxVwXWq2L50-1705458375566-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458378","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.302, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (969, 1, '5668d954-47d6-4e14-a81f-949b8870b014', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/backend:main] 3 new commits",
      "description": "[7c37978](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/7c37978908457eed35a776de122d752d008605f5) Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend - Nguyễn Khánh Nghĩa\n[9251c7d](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/9251c7d4c42a1d4339704decd8b079937f34cfb7) DanhSachTrungCMND filter SoCCCD - Nguyễn Khánh Nghĩa\n[a737432](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/a7374329a01b74fd020df75c0afc197fbdebd58f) updaate - lqdat",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/compare/25171a94c626223b0e72c8a83ce97b2af8680282...7c37978908457eed35a776de122d752d008605f5",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "giao-duc-nghe-nghiep",
        "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep",
        "icon_url": "https://git.gdtsolutions.vn/avatars/802cdf8532d94c10cd481e4e3983c194bc5f4fc5742e4a5d699a740361409a4c"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705419372338466300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5668d954-47d6-4e14-a81f-949b8870b014","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"5668d954-47d6-4e14-a81f-949b8870b014","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"5668d954-47d6-4e14-a81f-949b8870b014","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84676ec27bdf5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 15:36:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=tpporGYJsKlDApCD%2FZzdiQ7i%2B%2F1pX9z0aPYz75ldSg71iQu6%2By8hf8k%2F1eVi91sbKZudyj6d%2BJYqKFlpQMXpZnrJ5AiicW%2BSEgIYHXmavhme2RTBc6QiKHyiXFg6\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fa397528b48411ee883fe2de1b7ded09; Expires=Sun, 14-Jan-2029 15:36:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fa397528b48411ee883fe2de1b7ded0970a327c94bf1600203013d9f5699c287b9a6d683a850ceffc1cfbd37e195795a; Expires=Sun, 14-Jan-2029 15:36:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=aa4d7a431c9a1367b7347215a9241971362ec8c6-1705419372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=kvDHiLfYZUvArZ8DBOUUP11sD4N6A8eJYdIG2ZVYjD4-1705419372291-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705419373","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (989, 1, 'a6e97568-989c-4533-b75b-1667c29d171f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/80/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/80/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458375876750600, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a6e97568-989c-4533-b75b-1667c29d171f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a6e97568-989c-4533-b75b-1667c29d171f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a6e97568-989c-4533-b75b-1667c29d171f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26ff8ba95e3b-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Wed, 17 Jan 2024 02:26:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2BIk8ooIIv%2FVwHII1mMJ4QKx0chwz%2BbU46EuqXHaqIGwE%2ByerLWpwcfu%2ByqNtTx%2FAArWAVPPui6WABvkAeh3X5HjXfqjSgfU91cgzupKi%2BmRI%2BhF7k8z4XkknszUn\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2015","Server":"cloudflare","Set-Cookie":"__dcfduid=ca283954b4df11eeb606aea555614008; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ca283954b4df11eeb606aea55561400807bf869358ba1200529958734dd60e88111a9d94231311ba653abb8eb627508e; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ee00da139899552a197be1f5a7b8047a86e0a748-1705458375; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=8TCGtgcc_WDFKuCWAgxPAVDvViuX2D3sLaTgBxUNvU0-1705458375854-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458378","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (993, 1, '6e8c6d1b-81a9-4ae6-8f23-4f586b19ceb4', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/82/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/82/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458377595228600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6e8c6d1b-81a9-4ae6-8f23-4f586b19ceb4","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"6e8c6d1b-81a9-4ae6-8f23-4f586b19ceb4","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"6e8c6d1b-81a9-4ae6-8f23-4f586b19ceb4","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b2709a84b5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=uszGYuwPhFN7ydMBnzlUzf1grDAmWDJJN0IqJ%2BBFm2dHedckYAjKP9szci%2FDrcJCDoKel18xl71EchzRGxFQyLbb8cOHS8l5tDHOeccsC15FkKc0AZhlha8kg6Ev\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cb2e142cb4df11eea521161d509cf8e2; Expires=Mon, 15-Jan-2029 02:26:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cb2e142cb4df11eea521161d509cf8e2fecad03b1bda408624d1b322d037d66536d8c232ebd44076cafad63df45bbbcd; Expires=Mon, 15-Jan-2029 02:26:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=66e246971898b39cf1c1690abe9435991130522d-1705458377; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=W3yi7YQ5q0sDugrdTbT2dcEuJ8H395vUEZzXIXTLGGs-1705458377572-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705458379","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (893, 1, '9963322a-29eb-4b15-b30b-e1143b308d25', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[67a5311](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/67a5311e4cf2834ef7fc0b767015be48d669696d) fix search all page - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/67a5311e4cf2834ef7fc0b767015be48d669696d",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705328904013891700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9963322a-29eb-4b15-b30b-e1143b308d25","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"9963322a-29eb-4b15-b30b-e1143b308d25","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"9963322a-29eb-4b15-b30b-e1143b308d25","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845ece0f8c0a5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 14:28:23 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=P83vxDtWcW1TBM3V1kII%2Fixzo4MMvNClcHmIUPHpxmqmLoq9HBHWnEMQfP0h6OHJA7c2dFTg2SO1Nn4M4FiRNhC6EpvqE0KOyAJ9peY8W8XvyT1WNi3iZfJc9mPe\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=56e92b66b3b211ee9daca277f8d54ed5; Expires=Sat, 13-Jan-2029 14:28:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=56e92b66b3b211ee9daca277f8d54ed5ffddf3d2f9ac91466d7583577f3df75bec33e28950ead58d91a2a4b0e1426688; Expires=Sat, 13-Jan-2029 14:28:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=264e394e67b93cb56f5a27985cb4664e7af8c809-1705328903; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=0h.OU6CFx4WEmJbaCuEqEbkIvMerc_SDZBnhM3JTRzs-1705328903983-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705328905","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1009, 1, '8a80a6a6-7852-4e64-866f-50ff110e5865', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #108 fix gdnn",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705458411052510100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"8a80a6a6-7852-4e64-866f-50ff110e5865","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"8a80a6a6-7852-4e64-866f-50ff110e5865","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"8a80a6a6-7852-4e64-866f-50ff110e5865","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b27dadc2b5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:51 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4Yn8aGnjQmt5CzQLBZugn2yrPPnKs%2BetKAB9JylSXxcqrMO89A3jaRnsqD2UZQBSDHlTV2N4S%2FnHQWEAfgUQ9y%2FNlIby7C%2FB5Kmgg9fhThou4Ch23oRN66dofLH1\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=df1fb882b4df11eea5533e4bcd08e31e; Expires=Mon, 15-Jan-2029 02:26:50 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=df1fb882b4df11eea5533e4bcd08e31e5e253b48d91268b05453a2c6fb824201534c99d0442ede3e847af90e5b8e5532; Expires=Mon, 15-Jan-2029 02:26:50 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=9ed0b66d0add1eab7ad22ed19acc096319cf5fdd-1705458411; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=MoKqZFVfdWsaGJOWfl1tovbfRTzbzWMkEFT3tZT5_zk-1705458411030-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705458412","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1053, 1, 'fb240ed8-9033-4bf6-ae3f-e534e2ec61a7', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/52/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/52/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546575752590300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"fb240ed8-9033-4bf6-ae3f-e534e2ec61a7","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"fb240ed8-9033-4bf6-ae3f-e534e2ec61a7","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"fb240ed8-9033-4bf6-ae3f-e534e2ec61a7","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473904f4b1d5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=LxR2Pghf3obyVZ%2BPn4EjlQodp%2BaB80xKZWbn7yEouq1mZNu%2Bln8Xtq%2BR%2F4Hf4pg40fZSujzqH2msgzrNwNkhp5MdueWbhhQFObU9VT5CaxeQz%2BaaQ9kNU7fTCu%2BA\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=25541352b5ad11ee80510267d10d6995; Expires=Tue, 16-Jan-2029 02:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=25541352b5ad11ee80510267d10d6995bd5775fd1de6e4e66db60929c0593a2cee8a94a509b57c862b0c5b2172890122; Expires=Tue, 16-Jan-2029 02:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a58a80d6f72b88414b2a50e33e49507a1f007baf-1705546575; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=QLMQpvAt.OPd5bWSUxX4yEWdHKz6bdUXEHyJvzIiqg8-1705546575650-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705546577","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1054, 1, '9f645c40-a517-4697-bc62-b47a17586154', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/53/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/53/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546576171751400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9f645c40-a517-4697-bc62-b47a17586154","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"9f645c40-a517-4697-bc62-b47a17586154","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"9f645c40-a517-4697-bc62-b47a17586154","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84739052bc965e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=CMfji364I%2B%2FO5dV39voead1DQrkqxNFk6V3KE033FrUD5a8N6QYJPDNhQCx%2BMixtZ9Avn1Sd%2FwEJQPCgos1gdC1AJs588LwIgTX0HBMr6VvEBfpAe5wLCbndM%2BYs\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=25a4df26b5ad11eea81b66ff5d7cf0f1; Expires=Tue, 16-Jan-2029 02:56:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=25a4df26b5ad11eea81b66ff5d7cf0f1b69524f59c317680e0cf3d36eab3f6f56bb461bbebe28a22f223354c3f4927a2; Expires=Tue, 16-Jan-2029 02:56:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cc6445bf7fb4ca1e4b8cf5a57dac70ab3e143fa8-1705546576; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=_DokPYiOZhSMzvThd8hKBz9MsDhb39wwbe4Pv4mHsjg-1705546576173-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705546578","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (773, 1, '2657c80e-d28e-4997-a16d-4291102cc164', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[6189e53](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/6189e5347420d4bbcee5c4f550ed3cd17a77ba41) Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86 - hungthinhne\n[bf23020](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/bf230208b1efd148c1dec00f3c4eb158311100bd) fix icon user - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/6e16637a65f7d4d092a3cdbdbd178eb1636964e1...6189e5347420d4bbcee5c4f550ed3cd17a77ba41",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705044540476163300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"2657c80e-d28e-4997-a16d-4291102cc164","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"2657c80e-d28e-4997-a16d-4291102cc164","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"2657c80e-d28e-4997-a16d-4291102cc164","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443af97c8075e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 07:29:00 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ph4%2FbHqclyotIk4v4J%2F5YNR%2FchFLLAjYXC75XaMZK3tQPTffLHSkoxfIw8xKpufV%2F7eU7VP7juAs2HB4sN7uSc3FQPHErFVMv4ZKr55WC7zQ01xc%2FdBASASUayex\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=410a29dcb11c11ee8a537effd249f8e5; Expires=Wed, 10-Jan-2029 07:29:00 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=410a29dcb11c11ee8a537effd249f8e57db71b4b3b84f9376524104a4b3d5731b461c9c806a80435e2ad9f5f02178993; Expires=Wed, 10-Jan-2029 07:29:00 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a515bc305c374aee257566912b0a7e5ef5dfeb59-1705044540; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=gwCFlaEPB0AADmKVRNmVK1Jh6VKA92AxN1.Tp0McFsI-1705044540455-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705044541","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (970, 1, '9ed05c27-602d-4197-b286-3fa27923ad3b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/90/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/90/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705428972455731400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9ed05c27-602d-4197-b286-3fa27923ad3b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"9ed05c27-602d-4197-b286-3fa27923ad3b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"9ed05c27-602d-4197-b286-3fa27923ad3b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8468591f9b8c5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 18:16:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=AEdsxsp8PESWXX58fFY6mcA%2B5YYnhmu6fDmBBDKyHkCTq5fJLNqR%2F4QwVZFNsXnvq%2BZ%2FIfkA5Etks3VC78kDiKA1rF9siz72A5t6jhCL6Mocepa7dT3Ci%2Br1%2B4sB\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=545a33bab49b11eeb17862d2e79627d7; Expires=Sun, 14-Jan-2029 18:16:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=545a33bab49b11eeb17862d2e79627d7b122dcc897b295a2468324fabd93a8e02b01cc0ed50dfbeb60ab85193dc27a3d; Expires=Sun, 14-Jan-2029 18:16:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=81fa241183d19ccba8653fafdfecfc417d1e5e6f-1705428972; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=jNCUN95OYIPZPZzvTqYka1qY9AuoOF0A85pZt5VQuzY-1705428972429-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705428973","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1058, 1, 'f5f63c41-c2b0-483a-be89-93938db93984', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/55/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/55/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546578257110800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f5f63c41-c2b0-483a-be89-93938db93984","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f5f63c41-c2b0-483a-be89-93938db93984","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f5f63c41-c2b0-483a-be89-93938db93984","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473905ffaae5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=rNdMwHH%2FXYzcKobchgkGR60VEyoKlhpXVqKyauVk8gDisIcI%2BtwMv%2B%2BiER46khYn%2Fu0x%2BaJI5IJXxcVXbwjf%2FFWPR2h7Qk8pAN2FTu4cUXIELtAzVcVFs%2FGXQlcQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=26e29a2cb5ad11ee82eb0ae314152ccb; Expires=Tue, 16-Jan-2029 02:56:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=26e29a2cb5ad11ee82eb0ae314152ccbd454241808e71cbfa868b1c6719721c18821ab6d895ab43123abd6dffbffda08; Expires=Tue, 16-Jan-2029 02:56:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=2c883d758d2197326e99a7b0caa93d1d6d9a9c85-1705546578; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=sO4ChKJ4PG4MrMqzpZ1vGrOlXPLAmaeWwviUB3sqfm4-1705546578258-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705546579","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1059, 1, 'b02fccfd-a7f5-43da-94d6-6831839dca50', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/55/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/55/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546578634473900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b02fccfd-a7f5-43da-94d6-6831839dca50","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b02fccfd-a7f5-43da-94d6-6831839dca50","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b02fccfd-a7f5-43da-94d6-6831839dca50","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847390626b855e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=dJKCYsMZ%2FZjRJOk09qteq11FczIMyEoZAVnNAn%2FCCPUFv2dRqiQ%2F65uVVIwkDgxcVxiCea6gOXLWPY1ufYH7Mo3x9FuFXMduKNsi7mtQVnxqe%2FsOXrNfH33O%2FqtY\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=271c9286b5ad11ee86b066ff5d7cf0f1; Expires=Tue, 16-Jan-2029 02:56:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=271c9286b5ad11ee86b066ff5d7cf0f12699af66bbca107bf973aadd6a09da1b8f2e9e262bb69571f4f01bb173860d04; Expires=Tue, 16-Jan-2029 02:56:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=2c883d758d2197326e99a7b0caa93d1d6d9a9c85-1705546578; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=xjbrf6PFACksN7tl8REaZOz0EHEZ7YFdkNFCAo3asMg-1705546578634-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705546580","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1060, 1, 'c241d53b-4b88-4c42-9b79-3f788e281c7b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/56/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/56/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546579056193200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c241d53b-4b88-4c42-9b79-3f788e281c7b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c241d53b-4b88-4c42-9b79-3f788e281c7b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c241d53b-4b88-4c42-9b79-3f788e281c7b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84739064bc4b5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:19 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=KYUZk6P4vA00gne%2FWs%2F4Vyk0owcQKcG4hmDjDYriNhVz8YUMItbVuy3Aspvyd%2FxvszOOzxxsDgFGYF3Azknrclu2PAawws3zkJxKzdRZq6mB8EtMFy%2FJOsy83Rka\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=275bee36b5ad11eeb3d53a49086b5590; Expires=Tue, 16-Jan-2029 02:56:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=275bee36b5ad11eeb3d53a49086b5590ee17512d97ca96bc79c9cb1720b65d49f8667411919e931eaef8b34fb4eecbc9; Expires=Tue, 16-Jan-2029 02:56:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca21a85b72691596131074c68ea1ec44fbd9654e-1705546579; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Ws3cu4gTlbl0uMJXhuvbpE8BdsLyO2H1GHRnUWkblis-1705546579053-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705546580","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (971, 1, 'f8f2f787-6bfb-4f48-97ae-da28497231c6', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/90/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/90/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705428973501515100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f8f2f787-6bfb-4f48-97ae-da28497231c6","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f8f2f787-6bfb-4f48-97ae-da28497231c6","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f8f2f787-6bfb-4f48-97ae-da28497231c6","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84685925fce65e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 18:16:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=AEIabhsRvtBdIpMincAy%2BYQc1HfbAMIXn5wre9QBKBaqr0qdq6dawsJShoAskc8GRY2r4t8Lch0Z1eeNizf7ShB8HKhrdYeIoTsX9knmM7TGfVKf6dgR9HGDhgZd\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=54f9e018b49b11eea9caa223830e53dc; Expires=Sun, 14-Jan-2029 18:16:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=54f9e018b49b11eea9caa223830e53dcfb05aaec838069c673cdaccdfc859c44f67ab8d539a6bb88ef961c959f12a2da; Expires=Sun, 14-Jan-2029 18:16:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=686fd7fe1b92f9ac4e6ed49a4002da0753d91d12-1705428973; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=h3cLQZbx5C_y7SM7tGWJOipfZiTBCuTFnv_.vGKuyRI-1705428973475-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705428974","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1067, 1, '5e0b3b56-d255-424d-9e2e-276cd9cdcf31', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/59/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/59/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546573026451500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5e0b3b56-d255-424d-9e2e-276cd9cdcf31","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"5e0b3b56-d255-424d-9e2e-276cd9cdcf31","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"5e0b3b56-d255-424d-9e2e-276cd9cdcf31","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473903f0dae5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=9tfOAEpBs8pu7RI7gG80ahzM%2Fwv0SG5caQttgEw6D4oPDl6%2FiF%2F4d0%2FkMXUdHeybUiKZA51YYvRGG6KQbWlUjCtpEhy5Eh4gn%2BZP3gziO3RdRKkR3J6Wqj25eEgA\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=23c42b26b5ad11ee9d6932177206e909; Expires=Tue, 16-Jan-2029 02:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=23c42b26b5ad11ee9d6932177206e909fd1f25fca249ac429107747094078f3345dbc12216df044a9ca113325fd3dc9b; Expires=Tue, 16-Jan-2029 02:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=330cd3a417f747ee9b5818c4fbb5755cc4a86e76-1705546573; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=yeC24aOh9IhVg7aRROxuZos6Rc6KTpqZg9uh_vaxQeY-1705546573030-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705546575","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1061, 1, '274090c7-db90-4cc7-8a52-1ceb99a6c473', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/56/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/56/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546579503913600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"274090c7-db90-4cc7-8a52-1ceb99a6c473","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"274090c7-db90-4cc7-8a52-1ceb99a6c473","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"274090c7-db90-4cc7-8a52-1ceb99a6c473","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847390676d675e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:19 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2Bsy0sYbZHRJAVrh4Shc2m%2F4wcwsQG7x77EiwG6DBjrM%2FfVssxydzZJthLXiJX7fgCYFHd%2BYCYohXA1zHvSu8KjXI1EkattIrqKv3gpzdK1s%2B6QNqHpE6etXP6bex\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=27a12f82b5ad11ee8f306623e0a83c3c; Expires=Tue, 16-Jan-2029 02:56:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=27a12f82b5ad11ee8f306623e0a83c3ccab9ea389345b57fc25848a9dd5c4435266e42861c716c8ce84023e5b82b80c8; Expires=Tue, 16-Jan-2029 02:56:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca21a85b72691596131074c68ea1ec44fbd9654e-1705546579; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=kzHRCsZkN8wXpx.0jJxBv5XWP8xUh451u4f.q3a9DIU-1705546579504-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705546581","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1062, 1, '32b758d0-c309-438e-a7b1-8b1eb85be29d', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/57/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/57/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546579932079800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"32b758d0-c309-438e-a7b1-8b1eb85be29d","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"32b758d0-c309-438e-a7b1-8b1eb85be29d","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"32b758d0-c309-438e-a7b1-8b1eb85be29d","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473906a2e815e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:19 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=nvqLtE8xbeEom%2F%2Fk940MY2J%2FinhdkMCfCSiaW%2BEOOthIRnWgH9fgS3T0Pnk8j9%2BuEbuDCNWBetVmiPqLtej6E8OLbjAymqqUera3%2BnjffV8JghPzSrMCrafm%2FkPD\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=27e24076b5ad11eea382ba626bf69b97; Expires=Tue, 16-Jan-2029 02:56:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=27e24076b5ad11eea382ba626bf69b9739a832c8212e81b6103d63980efc7de2d6435122260e97d25f9b518bb5d22e57; Expires=Tue, 16-Jan-2029 02:56:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca21a85b72691596131074c68ea1ec44fbd9654e-1705546579; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=DZuJJ0W.fX0sOTZWgpX7CKg5WDBKioVJaRvQP1ngyq4-1705546579932-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705546581","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1064, 1, 'da1ed0d4-278d-46d0-9775-625078a2a515', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/58/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/58/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546580774259800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"da1ed0d4-278d-46d0-9775-625078a2a515","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"da1ed0d4-278d-46d0-9775-625078a2a515","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"da1ed0d4-278d-46d0-9775-625078a2a515","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473906f69815e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:20 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=9Y3570nN53v9Qk1E9DjYqRvaL8pjc1fGzM42zeTenIz1G2qLt%2Bw2ptwh%2FVAk0q8ppfsd2aQBu7X5Y5DrTrMccisEi%2FaNYiWf7ru%2FjGfUlzKI3Pk1iYl4wyNB5GD6\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=28626dbeb5ad11ee9b9cce7502e4b1ca; Expires=Tue, 16-Jan-2029 02:56:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=28626dbeb5ad11ee9b9cce7502e4b1ca7a06ee7d2784533fd8b3f1f91921e44ea9754eb65b487ef54daaa67a9f9101eb; Expires=Tue, 16-Jan-2029 02:56:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ac6fc27052bf8506e162a0e8e5e81a79f67a5360-1705546580; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=5963sl1f0UJ7CKDWqYqsgCdttuvy0MLlJLTqZXw2LLg-1705546580773-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705546582","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1065, 1, 'acafdacc-d430-4c84-b029-f4f1e86836e1', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/58/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/58/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546581294935500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"acafdacc-d430-4c84-b029-f4f1e86836e1","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"acafdacc-d430-4c84-b029-f4f1e86836e1","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"acafdacc-d430-4c84-b029-f4f1e86836e1","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847390721b005e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:21 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=r3%2F3lOdrQ%2BvP5Sijw7WoRdrYLaSI4vl6t%2BDQXoLL43pLj1Inx0iNep2TLqdvwlchwNqJdvel0d0o%2FXV9%2FDxIPf%2Fdvvq6SJuhMk5oZZTlQfOHJrjbx6a8GwNIq4bj\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=28b2ec1cb5ad11ee9bc16e3d676c7fd9; Expires=Tue, 16-Jan-2029 02:56:21 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=28b2ec1cb5ad11ee9bc16e3d676c7fd9e3c951b2caf8d82c3ec8f63ca2c790f634735ffc3d810b0548a620b51c89653b; Expires=Tue, 16-Jan-2029 02:56:21 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ba2df7e40a51d42df42b9d3aceab4b89561685db-1705546581; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ST6QIEQRml.QGk5DBLU1PH.Xjek_SnCF327ZYeiVuyw-1705546581298-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705546582","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1068, 1, '9618fb76-cb1c-4d9e-9720-c6878d79aa0e', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/60/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/60/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546573400151800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9618fb76-cb1c-4d9e-9720-c6878d79aa0e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"9618fb76-cb1c-4d9e-9720-c6878d79aa0e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"9618fb76-cb1c-4d9e-9720-c6878d79aa0e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84739041aec75e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Kcz1S4dK2MH09JackwPAi2vA%2BbGyOC6nyba7UtI9X2fQ%2BOahA7Sg5MmWqR6a4rVftydK%2BwQ4lEv7sAQ6jKExGnWRf5qwFxpkbcsaLpplAyAYKc7GjhnC2K2EqbyC\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=23fdee6ab5ad11ee93a5ba51d2688d93; Expires=Tue, 16-Jan-2029 02:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=23fdee6ab5ad11ee93a5ba51d2688d9340e254a9f6f8ffd7e096f5c263f86889a36d65aa4e69d8ee16c84c7ca5e74adc; Expires=Tue, 16-Jan-2029 02:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=330cd3a417f747ee9b5818c4fbb5755cc4a86e76-1705546573; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=UseeuKhMTMQuhG7mpYqNr8jlBLW6_bSrkwhdSBNdFy4-1705546573404-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705546575","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (972, 1, 'a5bdc3ee-6f35-475b-877d-599ace4db7e6', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/91/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/91/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705428973890507200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a5bdc3ee-6f35-475b-877d-599ace4db7e6","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a5bdc3ee-6f35-475b-877d-599ace4db7e6","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a5bdc3ee-6f35-475b-877d-599ace4db7e6","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8468592c7e875e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 18:16:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=58tkbbJIHm3XaRpGv5RspoyaAHc%2FBkd7faIlIpE4zWJcnMg%2FHLJc%2Bdzgn4vvSCmvN1i%2F4t4YSRBH3GbbVAaFCu4dgqXNuTAUJ0IZw%2B9caI%2FkyZrKIo%2FfwRLHd8gH\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=553535fab49b11eeb913ded0d289fb79; Expires=Sun, 14-Jan-2029 18:16:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=553535fab49b11eeb913ded0d289fb7909b78ade4eb1cda31bc05c85c9bad914cec2f11624a75f4767ac58d94bf8df9e; Expires=Sun, 14-Jan-2029 18:16:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=686fd7fe1b92f9ac4e6ed49a4002da0753d91d12-1705428973; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=sw0nScD03r6XnOJoKjHT4kIuqNgQUSTRmlr1YVQU7hk-1705428973864-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705428975","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1069, 1, '60843d50-6c1e-4458-bbf1-4d4d3b8080d8', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/60/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/60/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546572566867600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"60843d50-6c1e-4458-bbf1-4d4d3b8080d8","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"60843d50-6c1e-4458-bbf1-4d4d3b8080d8","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"60843d50-6c1e-4458-bbf1-4d4d3b8080d8","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473903b8c725e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4JQTBob%2F9Fbcnho91KxRemdeqcfTKybbTxox11iuh4rf7CybILm4KQMdDxRtFtATtE7kMzH66MTsFZWjiEYd0nDNlZMDWQKJ%2FZ3u%2F5HK9jxdN00il%2FW9Y%2FVSBhLi\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=237ca170b5ad11ee93117a34482fb976; Expires=Tue, 16-Jan-2029 02:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=237ca170b5ad11ee93117a34482fb976d76fd90869fbffbf63ce5f076698de47e01d80009c6ccdf5210166ecca621d6c; Expires=Tue, 16-Jan-2029 02:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d33ec70d4b0a6ce0210d6697c1a7cc0ab27b5660-1705546572; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=o8xZ78vCVZs.y0733w2STPmKGk3GwsRuiqQh.jVgt68-1705546572571-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705546573","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1070, 1, '8475752e-7fdb-42fa-bd6e-cf564b6b0843', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/61/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/61/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546572990700000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"8475752e-7fdb-42fa-bd6e-cf564b6b0843","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"8475752e-7fdb-42fa-bd6e-cf564b6b0843","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"8475752e-7fdb-42fa-bd6e-cf564b6b0843","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473903edadb5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WEV7ZaekdZry9AKqO%2FtC%2FGSGnn1FSoL63JfzoW0awwT8MIO7eHicr%2Fx3NNy2gyGYASBV4KjC%2Fq8LjNRI%2BdBLGukAvOHYCsYP0Hy1Io70yHiVyFpBUBzKX0OdRxwt\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=23bf9dc2b5ad11ee9b7ad2329e47154a; Expires=Tue, 16-Jan-2029 02:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=23bf9dc2b5ad11ee9b7ad2329e47154a519be729d4ec4aa6cc8604d70c1714db471de742abc922160081ba6b601c175c; Expires=Tue, 16-Jan-2029 02:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d33ec70d4b0a6ce0210d6697c1a7cc0ab27b5660-1705546572; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=xMIKlke2CcoD9QJnFvmQVm4Jm7xpSKS9RiorwKVqSiM-1705546572992-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705546575","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1106, 1, '3eacee16-a14a-43a3-911d-336034f40171', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/43/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/43/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575516221527800, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3eacee16-a14a-43a3-911d-336034f40171","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"3eacee16-a14a-43a3-911d-336034f40171","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"3eacee16-a14a-43a3-911d-336034f40171","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652de6c625e38-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4tuzRoEpF9wwUTk3%2BsvrjBBTg7Sw8Jk3UYh9CD7oj86cxuJHwzF4XjgBLJ%2FCTl87P%2Bh1zbHyF9UIhoTgQ4l0PAmDbhkKIfdpgEYTKJ%2BEmo02xqcn63fzW2tJAF0M\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2272","Server":"cloudflare","Set-Cookie":"__dcfduid=873d8bbeb5f011ee9e09366a902dd69c; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=873d8bbeb5f011ee9e09366a902dd69c4dca2ce945fcf0b1c40e3023123d5b4f8f17cd85b8ced098129aec91e3098658; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=275b3facf7ca33ba2f76f12672a9f3bf186b6f99-1705575516; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=2boarErg_XQby6E6BcBdwNWPxicI2aco6AsdueZqqIc-1705575516192-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575519","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (1107, 1, '06f77d32-0fd2-427f-ab7e-e5f479585903', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/43/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/43/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575516560455400, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"06f77d32-0fd2-427f-ab7e-e5f479585903","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"06f77d32-0fd2-427f-ab7e-e5f479585903","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"06f77d32-0fd2-427f-ab7e-e5f479585903","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652e06ca65e38-HAN","Connection":"keep-alive","Content-Length":"81","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=sShaRgxJakEqQv57qVWmjtVyJItoiHg%2BMjeLGbch%2F5itjKI0y1lkexjrseoeNBnO%2FCSw8aSgBIJ7TT%2FZ%2BqQ2ebnnmBpkQFs%2FON6tmmih8Q4GOpiCBeRARpxim9J3\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2351","Server":"cloudflare","Set-Cookie":"__dcfduid=8770dfbeb5f011eea735c63f4a2b7744; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8770dfbeb5f011eea735c63f4a2b77445dbf1595eba92f047856f13ac33f24ad5e8daf5cb801f23967ea02672c69cd08; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=275b3facf7ca33ba2f76f12672a9f3bf186b6f99-1705575516; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=bsito1py.fNCDC7Q9XeMdtr5KlpwyE4kMlZPFTCTn2Y-1705575516531-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575519","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.351, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (1071, 1, '5de1ed3b-5f52-4bfc-9740-62e734769da2', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/61/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/61/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546573562863500, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5de1ed3b-5f52-4bfc-9740-62e734769da2","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"5de1ed3b-5f52-4bfc-9740-62e734769da2","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"5de1ed3b-5f52-4bfc-9740-62e734769da2","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84739042fcf25e36-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 02:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ZCqG0QPJVeUNdjyCMKx0uvBGFcXjNQi8HcZSQp%2F1cIHaTDgwULkKopAOmJ%2FJhAwkU5nDKUvUsD0SiN5Hiy4x44gcGXgEXvZ0JwUUoTm6P6JLYUJwxPKr8Gu2xmWa\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2267","Server":"cloudflare","Set-Cookie":"__dcfduid=24164fa0b5ad11eeb356ce7502e4b1ca; Expires=Tue, 16-Jan-2029 02:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=24164fa0b5ad11eeb356ce7502e4b1cad62b944d09ee236f39c81a505039b6bc9dc985edc9ef6dbf5d5e24d7b83cfcc5; Expires=Tue, 16-Jan-2029 02:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=330cd3a417f747ee9b5818c4fbb5755cc4a86e76-1705546573; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=BfMHyY3N3WGOVHISLzFndMv1COoZUp6gjcqq1KXliJk-1705546573566-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705546576","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (1066, 1, '47ce355e-7103-4d41-b13c-3239d957bb80', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/59/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/59/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546572602623500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"47ce355e-7103-4d41-b13c-3239d957bb80","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"47ce355e-7103-4d41-b13c-3239d957bb80","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"47ce355e-7103-4d41-b13c-3239d957bb80","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473903aec355e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=QBGd5S3DiimyoB5jc0SSWN53OwM3%2BowgYAKMOk%2FO07r3YXRZG4NxWLOgvjVTtta7UFZt29uCzwR9d%2BUZKbegbr3aHnnmxrq38CaoAqLDXtDDhFUChGWhoaBYczs4\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=23845000b5ad11eeb5a7ae5ae1096b78; Expires=Tue, 16-Jan-2029 02:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=23845000b5ad11eeb5a7ae5ae1096b78b2f51adc70a96adb82740817796d4b03df28888dbebf1898caa88f04f29f29f4; Expires=Tue, 16-Jan-2029 02:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d33ec70d4b0a6ce0210d6697c1a7cc0ab27b5660-1705546572; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=vZQNH6aEIXkaIgslDwIfE3lN6Ur0oXX0s6Ux9PyGoao-1705546572607-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705546574","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1049, 1, '1bdf0e68-70b4-4bf8-9cb1-f60b2fae7566', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/50/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/50/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546573882341100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1bdf0e68-70b4-4bf8-9cb1-f60b2fae7566","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"1bdf0e68-70b4-4bf8-9cb1-f60b2fae7566","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"1bdf0e68-70b4-4bf8-9cb1-f60b2fae7566","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84739044bfed5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=0dlNeYocN2eITUok4Yzr%2FQGkGFM7XRdS%2FGpqIrWYMhNn1cD4gGw%2BjNtpZRHMbjULB6S3HFBcAdvAP4xtK7EYe%2By7mMEWHI9umk16qgHcIbqLIOTD%2FpIU40nhbICd\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=2447ed08b5ad11ee89c03eb069a881f7; Expires=Tue, 16-Jan-2029 02:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=2447ed08b5ad11ee89c03eb069a881f72d5fc7c96f1f7c851f36d4f999e597ab476aaf66074fbeb362e2fb3e940ac645; Expires=Tue, 16-Jan-2029 02:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=330cd3a417f747ee9b5818c4fbb5755cc4a86e76-1705546573; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=70wf8f5JS6tnwy8fp0KShgbh0KRLo5tZiMQ77MCEz84-1705546573886-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705546576","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (894, 1, 'ff7473fc-550a-48c4-8f49-15a8c52ffe91', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #98 fix search all page",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705329307305764300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ff7473fc-550a-48c4-8f49-15a8c52ffe91","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"ff7473fc-550a-48c4-8f49-15a8c52ffe91","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"ff7473fc-550a-48c4-8f49-15a8c52ffe91","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845ed7e84e5b5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 14:35:07 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=IBV3JmcpOfy%2B9OHO5%2BNunlCxUxIMfC34QpRcVK%2BB2gd3IW96YSltIVD38Hu%2Fxxa8jIpDUDJLx2gAW%2BRbZ3gyZNCkNE4oDOdTg5qLBb%2BNlOZFxBr6PJH1sPOjZHdV\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=474b9364b3b311eeb6d552c1b981c921; Expires=Sat, 13-Jan-2029 14:35:07 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=474b9364b3b311eeb6d552c1b981c92197f452fb428e643efa92f04ee0229eeba452a4ea8a115c879bf376ca37a123d3; Expires=Sat, 13-Jan-2029 14:35:07 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=4298981b8726102ecb5b3a1c0f5147d6c02a2b82-1705329307; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=4mGwbw8CdBAgAaPQdH3B2QAQSifScsNoLmjXR.B6WfA-1705329307281-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705329308","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1055, 1, '6bddb4bc-c144-4a7c-a268-3d94082f8889', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/53/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/53/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546576739601500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6bddb4bc-c144-4a7c-a268-3d94082f8889","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"6bddb4bc-c144-4a7c-a268-3d94082f8889","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"6bddb4bc-c144-4a7c-a268-3d94082f8889","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847390555dd15e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=0XcTuKiJm8Kd9CgBHAg9tZ4DwfemlKDiIQfWxSD8RAL%2Bb4mKT8HNGMLjvHm5TaITumQAhOAzZI0OC6AgrEfVSIm9QGSF7V1gTOfiLGqCLIITOSErsjBrKi8jSaM5\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=25e00308b5ad11eeb1728a64968c9927; Expires=Tue, 16-Jan-2029 02:56:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=25e00308b5ad11eeb1728a64968c99270787165ac987231beaa0dada0961c7600e7a4e7e3fed89ee314eaf5da59af671; Expires=Tue, 16-Jan-2029 02:56:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cc6445bf7fb4ca1e4b8cf5a57dac70ab3e143fa8-1705546576; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=7_SbKM4uZPPneX7iKfEPGxF5k1MP6WYc0pb3wD3GdUw-1705546576573-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705546578","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1056, 1, 'd0107dcf-5c1b-42f6-bfc8-1f98b3eb40b0', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/54/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/54/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546577303526800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d0107dcf-5c1b-42f6-bfc8-1f98b3eb40b0","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"d0107dcf-5c1b-42f6-bfc8-1f98b3eb40b0","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"d0107dcf-5c1b-42f6-bfc8-1f98b3eb40b0","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84739058ef495e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4ecEP90JdOfRXfafDyyOfol7t1Jp9jcwxIcjHe2sQsZGHkSIdOgIantkPCMOfvj%2BcWitq1TQaq825g7nkSKfqgaGbF6xDeqvATugmhQBJKB%2Bd1ziPPeZvG0FBWwk\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=26513320b5ad11ee81a66eee6087a04c; Expires=Tue, 16-Jan-2029 02:56:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=26513320b5ad11ee81a66eee6087a04cc54b35007d74d72b73e51a9ec8c0f736d521e91992df4a6171c734db0129a62d; Expires=Tue, 16-Jan-2029 02:56:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=76a273c341917f8039b9d61afbdc7f0974c5a21c-1705546577; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=hMTVxqffSSvBjmrjR8nnEWPTvyXwSvYem0Lrpwkct4w-1705546577305-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705546579","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1057, 1, '7f392adc-0216-42f5-ad9b-4f5ce8d16a2e', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/54/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/54/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546577878282200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7f392adc-0216-42f5-ad9b-4f5ce8d16a2e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"7f392adc-0216-42f5-ad9b-4f5ce8d16a2e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"7f392adc-0216-42f5-ad9b-4f5ce8d16a2e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473905c68f55e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2BAtdtoH5mKIqWFUJEGgRc94QblGUbAosvHJPn7p%2FXPERwPmqw1EvhmAe2jBT4IGGeDgPQZGLiKzOD6jiOnmGjJQPNKWqiQxVrfRSNjPgucU8Ag86FdNCYf1PRgxl\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=268fd378b5ad11eebb817a3ec876a4e7; Expires=Tue, 16-Jan-2029 02:56:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=268fd378b5ad11eebb817a3ec876a4e7d8da928433ab310597be2fa685f7e2ea1657c635e3dc01f4c9f44cb5d1e1bec3; Expires=Tue, 16-Jan-2029 02:56:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=76a273c341917f8039b9d61afbdc7f0974c5a21c-1705546577; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=46wvNgbLPW1AsrkXZ2qtdfDEt67df4fuebzv.pn9Jy0-1705546577715-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705546579","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1063, 1, 'ac4ada65-f0a8-4bd5-a6fd-c971615ff8d2', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/57/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/57/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705546580341144700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ac4ada65-f0a8-4bd5-a6fd-c971615ff8d2","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"ac4ada65-f0a8-4bd5-a6fd-c971615ff8d2","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"ac4ada65-f0a8-4bd5-a6fd-c971615ff8d2","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473906ce84c5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:20 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=oR6Px%2BqNavsQ90RG%2FHFz8z95SaAN5RkPUbVoryo6QG5JlKQONvkhX1nucZolMCk%2FXnx6HkJ2VOwRmc8%2BydhGR9BtPcSkah4NAVIXlO18WhP1NpQNeBtFj42M5006\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=282055e6b5ad11eebe2b4e94dd5143dd; Expires=Tue, 16-Jan-2029 02:56:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=282055e6b5ad11eebe2b4e94dd5143ddad662acf8d0d4a2840b16652a2f8019686ca04334c37d14512c96321d0dc9fdb; Expires=Tue, 16-Jan-2029 02:56:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ac6fc27052bf8506e162a0e8e5e81a79f67a5360-1705546580; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=LyZwbVywrl44ioUiZksTz9ckyIpv8wG2eBL0C7dk3WA-1705546580345-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705546581","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1072, 1, 'a222a884-9e8f-4bc5-aaaf-33359a53e001', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[khieu-nai/admin:main] 1 new commit",
      "description": "[f9614b0](https://git.gdtsolutions.vn/khieu-nai/admin/commit/f9614b0b54ea4166a9274f5c737dc61322fa9933) feat: update model, service for CanBo - vantuan",
      "url": "https://git.gdtsolutions.vn/khieu-nai/admin/commit/f9614b0b54ea4166a9274f5c737dc61322fa9933",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "tuan",
        "url": "https://git.gdtsolutions.vn/tuan",
        "icon_url": "https://git.gdtsolutions.vn/avatars/ef8cb8091e07736d503797a3fd007bb52d58ce27f461213703866d303da8e9a0"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705547174143202100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a222a884-9e8f-4bc5-aaaf-33359a53e001","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"a222a884-9e8f-4bc5-aaaf-33359a53e001","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"a222a884-9e8f-4bc5-aaaf-33359a53e001","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84739eebbfdc5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 03:06:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=nYNVbqfKv%2BYVMvvsqDKDMOjICqKg5WuBa9uUZekuIkCKWuAA%2BlCvysqlFJocOVxtbFC2Vmi8dOVrVE1zV1xCpUCKqQ08vQoKAvM7YM730KYba5A4FRM7TwgcAoAP\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=8a103e14b5ae11ee9c2f6e3d676c7fd9; Expires=Tue, 16-Jan-2029 03:06:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8a103e14b5ae11ee9c2f6e3d676c7fd91137eeda7070c5eac98053a99aace88936da1423891f3573dd5ea68a8352037a; Expires=Tue, 16-Jan-2029 03:06:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=556627d1bb69adf25c61c3568c0f2e21c28ecfa0-1705547174; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ZQUE0OSot4ayqa_vh3jfHYTnjz4LbtzjUPDa87GtUHs-1705547174148-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705547175","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1074, 1, 'd967c719-f0f7-4d12-a9fc-7a43777ec0b4', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[dc9b1cd](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/dc9b1cd7ec18ad4fed9579e27f394b14858c3cde) update bug - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/dc9b1cd7ec18ad4fed9579e27f394b14858c3cde",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705561358722274800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d967c719-f0f7-4d12-a9fc-7a43777ec0b4","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"d967c719-f0f7-4d12-a9fc-7a43777ec0b4","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"d967c719-f0f7-4d12-a9fc-7a43777ec0b4","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8474f939e81a5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 07:02:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ettPPsP4sEV%2BJ%2FaTofvrttRG5YevutQRXLOqEXTqcIHhVruH4AOZEqDraBR9YYZ7uKj%2FQJfHaBpYlF8pkx6KLY3%2BLn6dqoWrTCtAzgSn0948jE38RRYrwONnYlbm\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=90ba93a6b5cf11ee8e183a9588d6bd29; Expires=Tue, 16-Jan-2029 07:02:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=90ba93a6b5cf11ee8e183a9588d6bd290cca4fe9abe4c76052b068510270844eb97e2a4246701386b48715e02dcc1e1f; Expires=Tue, 16-Jan-2029 07:02:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=708ef1a42e457d64467debe327c8c03f9adb1415-1705561358; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=lrolrkmSAnfEscJZG4Mn7MxsCd_8CDIeM341VOXz6f4-1705561358720-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705561359","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (774, 1, 'af356db1-15ed-49c5-a6f5-c9baed8041d6', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[8d033bd](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8d033bdc680e69f37d6b0c7530e23ace16ad7ab6) fix api tong hop so lieu tuyen sinh - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8d033bdc680e69f37d6b0c7530e23ace16ad7ab6",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705045373859613800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"af356db1-15ed-49c5-a6f5-c9baed8041d6","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"af356db1-15ed-49c5-a6f5-c9baed8041d6","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"af356db1-15ed-49c5-a6f5-c9baed8041d6","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443c3ef9b245e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 07:42:53 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=jxeFsSm21brBKvzLMAy15X9u7y9MnNqNVcFdxsujCEOP9A66tK71lR150difU9IMrr755hkCguwxjoHlDqqGgAYUdZpbeZo%2B1r%2FsMXDwGGaAxmHCSFbkcmfqBaT6\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=31c5e784b11e11ee97be32949a41b151; Expires=Wed, 10-Jan-2029 07:42:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=31c5e784b11e11ee97be32949a41b151e638c42c87732646affb63b483d0f5a4652ef8b4845c8e8662eb5a621a48624d; Expires=Wed, 10-Jan-2029 07:42:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=695ee145190eeb32bf4441154b1ede19d384a22b-1705045373; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=cF5u58d1csoFdGMybSM9TWtcJs4aOFe03s0aJSuOuGA-1705045373838-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705045374","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1075, 1, 'b969a4f6-8f30-407f-87ec-16659af4bb2b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #110 update bug",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705561419867245800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b969a4f6-8f30-407f-87ec-16659af4bb2b","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"b969a4f6-8f30-407f-87ec-16659af4bb2b","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"b969a4f6-8f30-407f-87ec-16659af4bb2b","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8474fab78c195e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 07:03:39 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=zQxPQAt5k%2FHN6wxegwJVm1Ec0ySPDTsB%2Bug3ieZ2am0yM4veGZR2i7NeUPY%2F%2FD1kp%2BSZQD7dvDxkLAO51k%2BW2l%2B9ZKjpyK70lTwoiYNYopMdo%2B6P5QmqYY6EUhSh\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b52c80d2b5cf11eeb243fab697dde37f; Expires=Tue, 16-Jan-2029 07:03:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b52c80d2b5cf11eeb243fab697dde37f3a0625b71169cda4ac16a4fddfe5608ceee69611dcf106c235488bc189a653ed; Expires=Tue, 16-Jan-2029 07:03:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=19be1d090dd9988e95efc0bc9e7cfdb0c5bbfe79-1705561419; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=oPMwgscltJI7hiWSUjYC.vfmmKLhpCqKFXPKkNvnu0w-1705561419865-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705561421","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1073, 1, '0be88f5a-6217-46f4-8d67-5e37e3f26de9', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[khieu-nai/admin:main] 3 new commits",
      "description": "[814c283](https://git.gdtsolutions.vn/khieu-nai/admin/commit/814c2834abecae300e8f733df62b8c2d0e7f835f) service - Nguyen Chi Hoa\n[9f9d2ca](https://git.gdtsolutions.vn/khieu-nai/admin/commit/9f9d2ca7eb9ff7db8ca7980523254c40a6a62d62) add pp - Nguyen Chi Hoa\n[c8b7fe3](https://git.gdtsolutions.vn/khieu-nai/admin/commit/c8b7fe342b6bec24bb2301d59eb7b5001a1343fd) add form - Nguyen Chi Hoa",
      "url": "https://git.gdtsolutions.vn/khieu-nai/admin/compare/f9614b0b54ea4166a9274f5c737dc61322fa9933...814c2834abecae300e8f733df62b8c2d0e7f835f",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "Hoagdt",
        "url": "https://git.gdtsolutions.vn/Hoagdt",
        "icon_url": "https://git.gdtsolutions.vn/avatars/71955e5d26ad26c5d213888a1d650773566d606fea1b0ea0ed6cc85e4b347bcc"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705547957926705700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"0be88f5a-6217-46f4-8d67-5e37e3f26de9","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"0be88f5a-6217-46f4-8d67-5e37e3f26de9","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"0be88f5a-6217-46f4-8d67-5e37e3f26de9","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473b20c5f765e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 03:19:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=0tYx0XcYbS2gIG5s4d3Iv1ZxURMLYyfxsvjfCemzX%2FUjyeNl2%2FLPGx1M%2FtGQWFyc0YaNOIyUCDEzl6G9ELhUyQx%2BYjgSRD5OS5MZ2mnQzFNQT7Vuz6Gbl%2B6IuoHY\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5d181ddab5b011eeb9292e727e9f0112; Expires=Tue, 16-Jan-2029 03:19:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5d181ddab5b011eeb9292e727e9f0112e243cb8cd78236842e3c9bf78f63a8248fa81ef0c52703edebe1bf093266435c; Expires=Tue, 16-Jan-2029 03:19:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=2043be92d88ba1f25b1d5e2f750f085034865784-1705547957; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=vzepgp1Adgv_qMAkqUCtzRJwyy3DFNrkmyGZGN94lMo-1705547957697-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705547958","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (973, 1, '317ab564-b0ea-463c-8ca2-d3f3daea4c1b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/91/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/91/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705428974259381400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"317ab564-b0ea-463c-8ca2-d3f3daea4c1b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"317ab564-b0ea-463c-8ca2-d3f3daea4c1b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"317ab564-b0ea-463c-8ca2-d3f3daea4c1b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8468592eef2f5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 18:16:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=banUU7v9pAPGPde8yXbBONfTaVzQV%2Frmzd55AukxPLkJ2O33SUVgiX7laVosjLLXUTjYlNoqXK9DobceKARX2oLUEUOVeV4UqHxKdvdhlwPoWTc2ht9h2dSP4Kqj\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=556d929cb49b11ee96c0b6acc0b24d65; Expires=Sun, 14-Jan-2029 18:16:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=556d929cb49b11ee96c0b6acc0b24d656ea129041e2607ade0ccdde940c447ff0c7a2b0f745cd461cbcd8e711d6c29e0; Expires=Sun, 14-Jan-2029 18:16:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=c2db0e70687340898f8240cec174dd747b127ab6-1705428974; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=20vw1NXTZBjEimTCR5H2rhWVr4rYusBs32rBolYZ1oM-1705428974233-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705428975","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1076, 1, 'c24f4e26-8169-47a4-8071-0ed0d5c7c629', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #110 update bug",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705561435211277900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c24f4e26-8169-47a4-8071-0ed0d5c7c629","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"c24f4e26-8169-47a4-8071-0ed0d5c7c629","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"c24f4e26-8169-47a4-8071-0ed0d5c7c629","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8474fb164f575e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 07:03:55 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=gopy%2FD2Hjw7dG%2FX09dYL45Xm%2FcxC8cyF1xhG9b4hO8BCV7TMnkXVgJ%2Bfu0MPuUQflmK5W8V0%2BUUs3YvhlBuznlPem2EB3he8GJY0YUyH7uq9Owl8eCLmrDeW7uYJ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=be51d0a4b5cf11eeb26e5ef977b950fb; Expires=Tue, 16-Jan-2029 07:03:55 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=be51d0a4b5cf11eeb26e5ef977b950fb94305930d71631ea0c9b0bc804009a4536ccbf420933bb2a197acb1b7c35002f; Expires=Tue, 16-Jan-2029 07:03:55 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=af83a0415a98f1f451b40bc8084dc3fe3fbd1bbf-1705561435; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=EP1vdzFHZ.e8U_wwNXyX7oVzLvsY3oBcJwUFAI798go-1705561435210-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705561436","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1102, 1, '3c2ea272-3e0c-4f7a-adc6-970fbcbc2fdb', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/41/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/41/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575514699978400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3c2ea272-3e0c-4f7a-adc6-970fbcbc2fdb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"3c2ea272-3e0c-4f7a-adc6-970fbcbc2fdb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"3c2ea272-3e0c-4f7a-adc6-970fbcbc2fdb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652d3a8715e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=swMVUIIVzPNY3T99wxg5SFU1zX68RydNNIoMQBhmysTOGD9%2B%2Fmp5IrwA4LfUcv8Hju8VZYx5tmNbgdCMGoTWuG4YGTOXCaodVrB8OQOlh33%2FdsZlxDqz9MkEPU7V\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=865545c0b5f011eeb081cab431a3d395; Expires=Tue, 16-Jan-2029 10:58:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=865545c0b5f011eeb081cab431a3d395e0e302ee6e269c1fd05b50570f3b9a0dce4a0dd6e5208b830add0259ed990044; Expires=Tue, 16-Jan-2029 10:58:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca423c3252c1691b4410cdb36bc56c9775c55e7d-1705575514; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=7AKh_MdNNVonncGK8nxJUw_uGoOCkvFALt4ZjZor4yA-1705575514670-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705575516","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1108, 1, '1953cae3-1748-4628-85fd-0afeb079c527', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/44/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/44/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575516884078300, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1953cae3-1748-4628-85fd-0afeb079c527","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"1953cae3-1748-4628-85fd-0afeb079c527","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"1953cae3-1748-4628-85fd-0afeb079c527","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652e29d205e38-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=D%2FQT8YSwL4edQWcoeMrztu7E5sF%2Bp%2BLNNjBVkBh%2BXGdH9HSUycNbAJ7acerxAVfxg92GkyQlddMs6SDDOy%2BXzGwXRbfGnsXCHL%2FyV4PwvgRwGmFiHgwRcV1NjYcg\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2007","Server":"cloudflare","Set-Cookie":"__dcfduid=87a2a332b5f011ee89d91ae43748c451; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=87a2a332b5f011ee89d91ae43748c451e78700ad23429ac8911148763c3b5924e24b403f87b4fc1d7f1a6f9c8a6087d0; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=275b3facf7ca33ba2f76f12672a9f3bf186b6f99-1705575516; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=rgRMY08ytJQEQh9LLAAhJ3XaN669UtZCbDMyZuSFEEs-1705575516855-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575519","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (1077, 1, 'a8e9f974-1616-48a0-b09b-32b5c622ed5b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[6ae7b84](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/6ae7b846816d579b60abebb037d74ce8e8d332df) Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110 - hungthinhne\n[dc9b1cd](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/dc9b1cd7ec18ad4fed9579e27f394b14858c3cde) update bug - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/d27bbd1a398cd332a453a4301f2539d4741f4829...6ae7b846816d579b60abebb037d74ce8e8d332df",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705561436527809000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a8e9f974-1616-48a0-b09b-32b5c622ed5b","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"a8e9f974-1616-48a0-b09b-32b5c622ed5b","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"a8e9f974-1616-48a0-b09b-32b5c622ed5b","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8474fb201b4b5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 07:03:56 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=y86WbMmKZ5Jlh1cFXrZZp7SnehLN8Ys3cSRm57HRN6MK4DeYMIOirBeoO4yzehEE7fME4gqF9DIZwZILeU0IgY%2BmIgQkk15Cg%2FHIOozyvt5Zgm%2F6X4Fn3zrEaohz\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=bf1ae02ab5cf11eebd0a6eee6087a04c; Expires=Tue, 16-Jan-2029 07:03:56 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=bf1ae02ab5cf11eebd0a6eee6087a04c8007e4c225899275f59030adfc94d696651bcdb5572c34f5ef9508658e78f41b; Expires=Tue, 16-Jan-2029 07:03:56 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=c7eb05f18ff4badb60065e4fb15bdb27a8c66cd0-1705561436; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=USVkQGFY6N.gAUmeNkYYV35ZFtuWQ6gtgZjxlBgOw9E-1705561436526-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705561437","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1117, 1, 'b5fa6325-408f-4f46-8d0e-aaf75da70f75', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/48/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/48/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575515102144900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b5fa6325-408f-4f46-8d0e-aaf75da70f75","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b5fa6325-408f-4f46-8d0e-aaf75da70f75","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b5fa6325-408f-4f46-8d0e-aaf75da70f75","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652d6f9135e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ZNRs2QPQyr39iNtP1h8tyLp7rZKCyysTx7OeewXjL%2Bt096zygSMPJ2Y2kywi6orTFkNfK8gzHbzunhwpxB0Wc%2FX%2BC8l%2Fzpfmq5TY8Afx8pClG5L%2B6%2F11NfOOvF7g\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=86929f92b5f011eea8ee0249eb5f9c84; Expires=Tue, 16-Jan-2029 10:58:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=86929f92b5f011eea8ee0249eb5f9c84ebce4f1a792dfed02ad0e494bb2b424ba0c65751f53fec2cbf62b40f684b5a0a; Expires=Tue, 16-Jan-2029 10:58:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=489313edd043864583f510989b87c9b49a3a1ccd-1705575515; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=AC9iRTzT5FAcrBFB6BWjRECFxiXXX7hhVSmxBEYOl5w-1705575515071-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705575517","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1109, 1, 'cf8483f4-716d-4ac1-a66b-23e22d7861c7', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/44/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/44/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575517798580500, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"cf8483f4-716d-4ac1-a66b-23e22d7861c7","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"cf8483f4-716d-4ac1-a66b-23e22d7861c7","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"cf8483f4-716d-4ac1-a66b-23e22d7861c7","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652e49da25e38-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:37 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=BkhGKFkOupzSsxOtgSN%2BqDveAqYvAgbNV%2FXGp1udfdLuHHjOO4mRl%2FCUrYqS1bAjUyD%2BrEusVzeCdx26oiwgbisRO9ACeyV9HIgpA44w5ZR3p0RICog9jrTQ%2Bsio\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2295","Server":"cloudflare","Set-Cookie":"__dcfduid=882d6526b5f011ee8016a2e9572a1122; Expires=Tue, 16-Jan-2029 10:58:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=882d6526b5f011ee8016a2e9572a1122398f8e02c59ee12620383921650af7878b6c079d2de4626c5280d5adf81c0465; Expires=Tue, 16-Jan-2029 10:58:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bc39108a9b48925b015ae1ea9c62da2f86d41bc2-1705575517; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=g5LwPRaayZP0MQSWRM1ScudJ11KQtEqTX9N0_8s9c2k-1705575517765-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575520","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (895, 1, '4a3451e0-e847-445e-bb74-b4d434d14d39', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #98 fix search all page",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705329332350251200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"4a3451e0-e847-445e-bb74-b4d434d14d39","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"4a3451e0-e847-445e-bb74-b4d434d14d39","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"4a3451e0-e847-445e-bb74-b4d434d14d39","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845ed884ba4c5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 14:35:32 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fGpBMRGMzr%2BNxBe2fRQSnsd0BoUiBnvr0MEaLMxLB%2Fd5WWUnme1ocsJ4rqVJCvpeNSG4YxIyZVTL%2B7W%2B3y8njLeKFDSy7X%2FwEmzjvS47CQygV9c4Ju6ixP5ELQJS\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=56391d6ab3b311eeb8ab02445d3d6a7d; Expires=Sat, 13-Jan-2029 14:35:32 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=56391d6ab3b311eeb8ab02445d3d6a7d783a05c80047af0fcad5fdf3d1ec899b3518b2385efe6ae05f87855537b76dba; Expires=Sat, 13-Jan-2029 14:35:32 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5f1e117240a873c3e96308a95e62212abccf9fb3-1705329332; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=jDFY9WWguvtHyBjlA2OUwJDPrQrcaLxD8kHLlvbH_eE-1705329332325-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705329333","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1079, 1, 'd520abe4-9715-4742-ad38-6967794d5d4a', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #111 fix bug",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705561838997665700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d520abe4-9715-4742-ad38-6967794d5d4a","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"d520abe4-9715-4742-ad38-6967794d5d4a","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"d520abe4-9715-4742-ad38-6967794d5d4a","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847504f39e5e5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 07:10:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=be3J%2FFp3wU8beT5RAuWSYDahYoyHRPNsc%2BD9PaEA8Cu12ZsEf7ydfX%2Fx%2BYkluHOsG27irurG7%2BsOmWrgg6eQxOtHKgl0VEQfi2PY3KmBlpoZX%2FcuAkd9jV1ZsYzV\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=aefdfb72b5d011ee8200868431f5278c; Expires=Tue, 16-Jan-2029 07:10:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=aefdfb72b5d011ee8200868431f5278c157b119546d943f2b4b5d1562c7baf790043d0c5088fb1041ac1d5c32099d5fc; Expires=Tue, 16-Jan-2029 07:10:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5a28ffba09de758612b7a621202f321dbca570ee-1705561838; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=UREt8ol1AO3qXlMHimH6x5uvNDfTHoCLT9pkEH2SdeM-1705561838996-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705561840","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1078, 1, '3025d533-bdad-4c98-853b-e1711de99750', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[0fcc16b](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/0fcc16b3a944af679c58d4542042b1e00f05572d) fix bug - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/0fcc16b3a944af679c58d4542042b1e00f05572d",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705561817951060400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3025d533-bdad-4c98-853b-e1711de99750","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"3025d533-bdad-4c98-853b-e1711de99750","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"3025d533-bdad-4c98-853b-e1711de99750","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8475046f6fd55e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 07:10:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=xKe1m5lupHp3m%2FvL7jmaTQQ76R3sZXWHbYtNeXEkkPqIibF6paejr2MFZJcW%2BEC8x8ohIFivgHm5AP0NX2fmy2bnGQsh40saD2L2iQECiAoIsh64CDugsReV%2FlEu\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=a272c220b5d011eeb862366a902dd69c; Expires=Tue, 16-Jan-2029 07:10:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=a272c220b5d011eeb862366a902dd69c893e48047a84e4721822e3a6f45894eb3e03acf934f01a99c2ff83d071fa168d; Expires=Tue, 16-Jan-2029 07:10:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8ef660c7a0ec378b13fb154fd6b58db033146f37-1705561817; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=vmaTQ.DbLbuT7qG7Uf1KTeaUke1wBVceF_Sn1JA8GEw-1705561817949-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705561819","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1081, 1, '48564def-0ee9-4e12-a342-2ae495cca495', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[e3af78f](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/e3af78fc47531563603cb74b00a581af88476433) Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111 - hungthinhne\n[0fcc16b](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/0fcc16b3a944af679c58d4542042b1e00f05572d) fix bug - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/6ae7b846816d579b60abebb037d74ce8e8d332df...e3af78fc47531563603cb74b00a581af88476433",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705561864952875700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"48564def-0ee9-4e12-a342-2ae495cca495","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"48564def-0ee9-4e12-a342-2ae495cca495","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"48564def-0ee9-4e12-a342-2ae495cca495","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84750595af875e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 07:11:04 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=xEr1iTwA06S3wMK69BFoBoqGnrKotj9L3W326TLgo8lkA58jwvfwqczPVhr92WU2%2B2pFw1s42SiYVD%2FYGihpIfqSMVQzeFktuD2vQbfmZTJFjUDYOvN3hhCs33gq\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=be776f66b5d011ee92da6e3d676c7fd9; Expires=Tue, 16-Jan-2029 07:11:04 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=be776f66b5d011ee92da6e3d676c7fd96b96f6c688cc34cc4e14c986ea3629beff39cf9e2a9d430182d0e4b23f7adefb; Expires=Tue, 16-Jan-2029 07:11:04 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=593ad299353f91715060e751d21e902ac2bcdc7b-1705561864; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=IDiJJ6VBiEM4uSUk7XcXmZ5RMap0IVsweNlGYXFcZ7k-1705561864951-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705561866","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1080, 1, '9a137898-07ab-4593-af5b-603e7ef5052e', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #111 fix bug",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705561864246260400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9a137898-07ab-4593-af5b-603e7ef5052e","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"9a137898-07ab-4593-af5b-603e7ef5052e","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"9a137898-07ab-4593-af5b-603e7ef5052e","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84750590fe305e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 07:11:04 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=62HbmAp8tpHVgqBFG9M5dpsUo3nfayfx0GhLFx3IgHZd0KzmExouCAZDSxbX0BhDTa4Ps%2BPHBJMZS7RLpYUJLgB93th309myDWY84HNc%2FaxPLu0b%2BxFXfKxmc9R%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=be0b7e46b5d011ee95846eee6087a04c; Expires=Tue, 16-Jan-2029 07:11:04 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=be0b7e46b5d011ee95846eee6087a04c94812d7e8ebece50eb1035bdee96a0f6a8c51519da236a0e7d1d1bbb6f697519; Expires=Tue, 16-Jan-2029 07:11:04 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=593ad299353f91715060e751d21e902ac2bcdc7b-1705561864; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Ba3ondZEjSHBemzCGDy3XvIkAC1OowjYrI.Sv14c._8-1705561864245-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705561865","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1083, 1, '7c9a8ed6-a67b-4528-a193-1e9b70ce7ba3', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/31/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/31/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575515192041300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7c9a8ed6-a67b-4528-a193-1e9b70ce7ba3","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"7c9a8ed6-a67b-4528-a193-1e9b70ce7ba3","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"7c9a8ed6-a67b-4528-a193-1e9b70ce7ba3","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652d73df05e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=i9R3tyiwbaqvtyGZoa7EY6spSYFSZuhLgZMMqxTXHehOHmzQWjLBmqejiQ5m921S92fPyybXfKoXvEjMOQf9sUkA43C8Ow1g0BlFT8%2FlXZrZ%2BKhSdN%2BpektQMB3E\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=86a04da4b5f011ee8dc36276fb41f11b; Expires=Tue, 16-Jan-2029 10:58:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=86a04da4b5f011ee8dc36276fb41f11b47b7ac1b534029294f47cf81fb722e7deac804e92ba2a741732832c7d97e5cf3; Expires=Tue, 16-Jan-2029 10:58:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=489313edd043864583f510989b87c9b49a3a1ccd-1705575515; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=iBZphe7sJBeCdzVYbXcu4LFkzhjZDqOoEPXZ3cNAZMc-1705575515162-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575517","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1084, 1, '20e60599-ad86-42c7-a129-1b39b523ac7d', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/32/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/32/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575515518434800, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"20e60599-ad86-42c7-a129-1b39b523ac7d","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"20e60599-ad86-42c7-a129-1b39b523ac7d","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"20e60599-ad86-42c7-a129-1b39b523ac7d","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652da0e735e36-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=DAmRMTGgavZb9KsNWqQ8FrbhPh6nC6e0y3sXg92Y7rDylP%2FdUQEWC50h7bLatHAIPxm82cpX0ya4rY%2Bj27XktnW5QkLeN0%2FMbkhjX%2FhaV%2FdhE2t9CBau%2FjLgyH69\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2178","Server":"cloudflare","Set-Cookie":"__dcfduid=86d23a44b5f011ee92df9a86981690bf; Expires=Tue, 16-Jan-2029 10:58:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=86d23a44b5f011ee92df9a86981690bf35921d4699ef24c8f62c3320bf0687ee45f0096ff5d2a0f2d1c36bdefa06f089; Expires=Tue, 16-Jan-2029 10:58:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=489313edd043864583f510989b87c9b49a3a1ccd-1705575515; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ilWMMCI2EGmzpKpP9Hf48eX0pDOs4epRphhgFhnaZ7I-1705575515489-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575518","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (1085, 1, 'ef80a04c-486d-4e65-a630-3af02be35433', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/32/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/32/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575515840504700, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ef80a04c-486d-4e65-a630-3af02be35433","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"ef80a04c-486d-4e65-a630-3af02be35433","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"ef80a04c-486d-4e65-a630-3af02be35433","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652dc1a1b5e3a-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=oKWFiKye3%2FBj4WV6y%2FbcuSRmIQuZb1Qzf696%2FruEOn34NijjQCJOH7jXKtUy9RpNfQIqneLB%2FnYwQ3WHDWw6Y8fToRdZidkoJGU8D894Hmj%2B1Zcuf6%2FGuVuvXVDX\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2253","Server":"cloudflare","Set-Cookie":"__dcfduid=87030c3cb5f011eea624a6f80312d7e9; Expires=Tue, 16-Jan-2029 10:58:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=87030c3cb5f011eea624a6f80312d7e913c000b80cf4cf4465b83378d5afb1ef873ec7ffec6c2197a7abd8d1a19cc449; Expires=Tue, 16-Jan-2029 10:58:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=489313edd043864583f510989b87c9b49a3a1ccd-1705575515; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=DJyAwewNRLrY1._qOxx_mk0hLT05BGuM_Nnc84Lm5Dc-1705575515811-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575518","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (1087, 1, 'dd691a27-1065-444f-a9e8-29405c9627c0', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/33/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/33/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575516618106600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"dd691a27-1065-444f-a9e8-29405c9627c0","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"dd691a27-1065-444f-a9e8-29405c9627c0","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"dd691a27-1065-444f-a9e8-29405c9627c0","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652e08bb35e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=uUYmHfbMu5Omu0oamOcfiErZdcj4Rcn3YBU%2F1IcKMMaQorafEHzXayKRlgklfYWPi0HR3moxukzcjKebFNAGomomAl8kx3Ez%2BP35AGvvCf3qPX2sZBN6vSNomAyN\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=8779ff54b5f011eeb6f11ae43748c451; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8779ff54b5f011eeb6f11ae43748c451b8219dd62bdcfb7611262596c76b2776bef4529c5ae3829229914647425db9f3; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=275b3facf7ca33ba2f76f12672a9f3bf186b6f99-1705575516; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Yhs6RcKimQUxk77ixvghZgfc62vo92tWtiagXUKyIHA-1705575516589-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575519","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1086, 1, 'bc5abef1-b3ab-4516-a42a-af0bdff75d31', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/33/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/33/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575516239649500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"bc5abef1-b3ab-4516-a42a-af0bdff75d31","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"bc5abef1-b3ab-4516-a42a-af0bdff75d31","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"bc5abef1-b3ab-4516-a42a-af0bdff75d31","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652de1ab75e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=qQ5uGjds6BvXNSGmhSub8MmBCBiaxiCjucByP%2FIXQjacsPZFzAHGfmQkXzcTBN2ILguCdojNZA%2F5K4%2BjoWbVPjXlq9YtM7KX4%2FxeTPIxuXj8Sckq16%2BjXQfHipD6\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=87405268b5f011eeaa0376510d710415; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=87405268b5f011eeaa0376510d7104157b396347416d82badff387b7ecaa9d07ada88c234fd50d3fd73ce4b321dcef17; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=275b3facf7ca33ba2f76f12672a9f3bf186b6f99-1705575516; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=8jjIfCUz0du6CsdToN58ZnpeScHxuCSBh.6BwzXWZu4-1705575516210-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575518","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (775, 1, '922112a4-1287-4095-9234-e9ee86a8820b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #87 fix api tong hop so lieu tuyen sinh",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705045392833107900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"922112a4-1287-4095-9234-e9ee86a8820b","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"922112a4-1287-4095-9234-e9ee86a8820b","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"922112a4-1287-4095-9234-e9ee86a8820b","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443c4668fa35e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 07:43:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=0HselafVjllg7CK%2BfH3LZPbUUt4cMumQ2muucB9cgmxyeVXDoz8y6%2Fw5NFTQwhE3f%2BawgAuwMCU8KZLYmEaoY49pCLUscYFMGzpAOpm8FYaMYeYmGhpSoA1cVvaR\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3d117388b11e11ee8b179e08466f6aaf; Expires=Wed, 10-Jan-2029 07:43:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3d117388b11e11ee8b179e08466f6aafe25b11b0a5c350ea0a7c30efcda879670c4bc66ef2cc55c8a306fe3f46b4a6a4; Expires=Wed, 10-Jan-2029 07:43:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=9c9fb709f81b02ae558d93e44b1120a6785e9ce4-1705045392; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=_paYOmeTaO5M64krt0esMCR1FbCyUyjdZBuMW8V4ktQ-1705045392787-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705045393","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (807, 1, '697a499c-88d2-4c16-be8c-ee928d36c112', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/130/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/130/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705105575175004100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"697a499c-88d2-4c16-be8c-ee928d36c112","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"697a499c-88d2-4c16-be8c-ee928d36c112","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"697a499c-88d2-4c16-be8c-ee928d36c112","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844981b28b305e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=nqnELPaO2HV8uQhYlxfeBqSTZXhdBeIMNTPlK%2B1kcqVhzU7ArmAuQ59QUuxBCO8lO8IonBXfNycraPuwZSA5JBUv7EIXsAkXl76Uqln2Tse%2BPRQ37Bl6GiddJICa\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5c90cb3cb1aa11eea39502445d3d6a7d; Expires=Thu, 11-Jan-2029 00:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5c90cb3cb1aa11eea39502445d3d6a7d0b319dd6b4620cf3ad31c238857dddb62a473dfc18acb2d4bd0408149fa3a279; Expires=Thu, 11-Jan-2029 00:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d8ec5e18c29648b7aa44157c9588f770e0a9c1fd-1705105575; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=qUH0eJtnaUsdmufnEHkk9BnKLgaokmIFvDZKE.tkB64-1705105575172-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705105576","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1088, 1, 'f025ff25-dd95-439d-931b-9ec24449c416', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/34/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/34/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575517039806400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f025ff25-dd95-439d-931b-9ec24449c416","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f025ff25-dd95-439d-931b-9ec24449c416","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f025ff25-dd95-439d-931b-9ec24449c416","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652e2ec755e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:37 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=jbcY%2B6xNmzes8%2Bs3nIqpJK4GpYstp2gw7MVM%2F65u3pbySa2tvYE4YFscE4ArLISns3Nl%2BQRpbtsBhHl2Y3Yzi0lJ5IbdsKlSsxN5aM2FG0ipFh12B9HiMTK8G%2BVS\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=87ba4d3eb5f011ee8ec706af0c42466a; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=87ba4d3eb5f011ee8ec706af0c42466ad660df7c56265403ffe7e64f3ef76d1dbfc3aa111ca0d3fed00e51df094684db; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bc39108a9b48925b015ae1ea9c62da2f86d41bc2-1705575517; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=1xs7HJJmklrQMUCYGLiqKJj9taBY6NmEIgmhsPtf5_4-1705575517010-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575519","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (974, 1, 'b7c62bf6-dea0-42d7-bb77-f3f6f5b1e168', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[b51a2a2](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/b51a2a2db8b6c480c487c33ce3cad9f3e94bb872) fix trang thai ho so - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/b51a2a2db8b6c480c487c33ce3cad9f3e94bb872",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705457042562986500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b7c62bf6-dea0-42d7-bb77-f3f6f5b1e168","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"b7c62bf6-dea0-42d7-bb77-f3f6f5b1e168","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"b7c62bf6-dea0-42d7-bb77-f3f6f5b1e168","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b066e9bbd5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:04:02 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=czXgBciMQDWrUvjOx45yZyrrpS3fpwSgJIFEzTJcsDaRHMKMn7ODzE2ceu83x7n%2FuQVD%2FbLFZyTPSaaroeDbV9kYtdDggu%2FIEpjjO3gkSlTUXS8bNskAt9d7utHA\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=af70b3c8b4dc11eeb231fab1098452f6; Expires=Mon, 15-Jan-2029 02:04:02 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=af70b3c8b4dc11eeb231fab1098452f63c1a94a02d308162451ee2c933ddbf4cd30721923225a47d346503f342fefaeb; Expires=Mon, 15-Jan-2029 02:04:02 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=2adfb888e128b4751bbbf366a36a2b74dd005ddd-1705457042; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=1Opc3lL0ARjyneX0hN2ssCodRq6NxEJaPD7FAklT_j8-1705457042540-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705457043","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (975, 1, '699f49e9-35fc-4526-bae5-a281376618f8', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #107 fix trang thai ho so",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705457143149744700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"699f49e9-35fc-4526-bae5-a281376618f8","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"699f49e9-35fc-4526-bae5-a281376618f8","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"699f49e9-35fc-4526-bae5-a281376618f8","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b08e63a325e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:05:43 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=DPIXSgyyq65jLDtqTHXO8I%2BKxZrOL85geEkUROU%2Fz76B5cfda6VqzeB7gsp8A%2FIhdwTZl1a%2BJkZC4D1LZNQ8D7eU8NM99J0Yb4j4VNNuunCdb7ZPbDXCa2WH8Xs8\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=eb64d576b4dc11eeb84e2e67be318690; Expires=Mon, 15-Jan-2029 02:05:43 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=eb64d576b4dc11eeb84e2e67be318690305713482f6f6e5c4de0c1e920a5a42aa06b81df3610e7b5c4401caad2c31213; Expires=Mon, 15-Jan-2029 02:05:43 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=30637bfa4fdfacf92b45a2bee7e55f25c95d7b72-1705457143; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=JDBrkUSsr6gNTutE2RM9ilujysJkXi8yecMOAsPbxaQ-1705457143126-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705457144","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (976, 1, '3f03d2c3-03fa-4ce3-b446-61eee68f3600', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #107 fix trang thai ho so",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705457158277674700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3f03d2c3-03fa-4ce3-b446-61eee68f3600","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"3f03d2c3-03fa-4ce3-b446-61eee68f3600","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"3f03d2c3-03fa-4ce3-b446-61eee68f3600","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b0944edd75e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:05:58 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=5yh9wHjGI7MBAq0Zt%2BL%2FnL%2BztQqoWq6MoGjtNEjNPBiHnnKd4t4YFgcvO9KnRQNi7i62lRjqiqx6PQDnLV6sopXv3mvLgBPuZbcJE34uPFHcNNLX4KSsmVsetR06\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=f4692fe6b4dc11eeb1d5a26eb94e4ebc; Expires=Mon, 15-Jan-2029 02:05:58 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=f4692fe6b4dc11eeb1d5a26eb94e4ebc1c6d0640db7d80b92a9e1c0c0895cdd6e0e3f17f7a9ea7137b4e7674297fbba2; Expires=Mon, 15-Jan-2029 02:05:58 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=37207ed7b5074fc61852229b07c57792f0b29d41-1705457158; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=A9w_hHBVHP8cPfd4c8ICaaJRMg4UeW61.uoBeYmAPnk-1705457158254-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705457159","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1089, 1, '52def884-c4d2-4268-96c9-8cbac6adace0', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/34/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/34/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575517443394900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"52def884-c4d2-4268-96c9-8cbac6adace0","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"52def884-c4d2-4268-96c9-8cbac6adace0","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"52def884-c4d2-4268-96c9-8cbac6adace0","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652e58d3f5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:37 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=bupKLqeia%2B4zragJf8oeLwhmeIuhmSVouS%2BEOq%2BjS2behZZ5NWorUG6unwilSZQm1JeugBkJK3EZcubbo1iMAVQF5JYMyamWpEwJAZZ05oE%2BvziLCn6JFB8YlypP\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=87f8111eb5f011eeaadbbe8ae9f11b6d; Expires=Tue, 16-Jan-2029 10:58:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=87f8111eb5f011eeaadbbe8ae9f11b6d6ffb261c2b2584e94119c791c46cc4179160196f9cb19febb2c4c16aa91ac691; Expires=Tue, 16-Jan-2029 10:58:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bc39108a9b48925b015ae1ea9c62da2f86d41bc2-1705575517; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=JlYskVhbiojO_26.1G6Ghjp06z40p45A5fanu3fk4ZU-1705575517414-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575520","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1091, 1, 'a3667e64-1e73-4ff0-9ea6-abb1ec9aa5f5', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/35/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/35/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575518139964600, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a3667e64-1e73-4ff0-9ea6-abb1ec9aa5f5","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a3667e64-1e73-4ff0-9ea6-abb1ec9aa5f5","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a3667e64-1e73-4ff0-9ea6-abb1ec9aa5f5","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652ea7e835e3a-HAN","Connection":"keep-alive","Content-Length":"81","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=NR6JRhx4drXOrSEbwYQRZ0kgyLfGNIVDNtMMkMILiTndRuyffobdfw4fino1JzPKe1Qt0soeQXaFPPVTtJGgcumHTJH1PVtdHApE0xS20XfzfZR0Rp1DAVI3CwzY\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2352","Server":"cloudflare","Set-Cookie":"__dcfduid=8861ed3cb5f011ee9c224e94dd5143dd; Expires=Tue, 16-Jan-2029 10:58:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8861ed3cb5f011ee9c224e94dd5143dd09ce798020931fb9d267a046d4b5c84d9e9e029cfdb42a6c218b11f285eac9aa; Expires=Tue, 16-Jan-2029 10:58:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d4f94a86facdc66ea2f2cb7b0f4ffcc488bc5db8-1705575518; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=4NcM81V4rovIoiPYdPa474gQRCFOpvchJVBePiiCmqI-1705575518111-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575521","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.352, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (1090, 1, 'dee9b8cd-6533-41f5-9eb7-664e508d56f5', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/35/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/35/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575517823499900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"dee9b8cd-6533-41f5-9eb7-664e508d56f5","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"dee9b8cd-6533-41f5-9eb7-664e508d56f5","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"dee9b8cd-6533-41f5-9eb7-664e508d56f5","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652e81dff5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:37 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=kMl5beIemSlXK11D0xxx%2B9FQGLbjcfRZOQ322COKEe%2BXM1Q4npzcUbE901fIVPHj7ahpH%2BMVd%2Bawo2U87m%2BRZZ5ytG6EIqq3eOn7P4tx1p2EqQurFmDifDohOkcy\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=8831efd8b5f011ee8b7ea28dff5ea8b6; Expires=Tue, 16-Jan-2029 10:58:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8831efd8b5f011ee8b7ea28dff5ea8b642cb0576b30f50c752c54ee29ac49f17435bd3de6650fe9699178150534f4821; Expires=Tue, 16-Jan-2029 10:58:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bc39108a9b48925b015ae1ea9c62da2f86d41bc2-1705575517; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=MN8QoJKapdg3amAbaUvB13_KCC5RkhyIVp69YeDVkYc-1705575517794-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575520","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (776, 1, '5520aa99-553c-4e59-8d33-f70e63e7ec3f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #87 fix api tong hop so lieu tuyen sinh",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705045584025941100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5520aa99-553c-4e59-8d33-f70e63e7ec3f","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"5520aa99-553c-4e59-8d33-f70e63e7ec3f","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"5520aa99-553c-4e59-8d33-f70e63e7ec3f","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443c911dc255e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 07:46:24 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=8wCjLQvQ0sEuKpvKvcdpwyPgJQJsXuez358WOXmskQe4fJN7gVeSVdbvEYSwUsjaDUT7KcihwWfQw64%2Fg9PGRcFSG1khfucqgvqanwO13cZAzVxQRjmGc8mr26hk\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=af0b3816b11e11eeac510e042939db81; Expires=Wed, 10-Jan-2029 07:46:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=af0b3816b11e11eeac510e042939db81103babd958790d38d469a607a31871135d39c05977009ec99d28725be2218db7; Expires=Wed, 10-Jan-2029 07:46:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d7624d10c450ad992ec49ffedc399b65af81bd90-1705045584; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ij5_Hgd4K68m7LBOP45rbb0DbLDMejZN5VwEre5Qvgg-1705045584005-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705045585","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (777, 1, 'b7a62f6d-b803-4828-998a-e1a409c2df0d', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[1b5b07b](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/1b5b07b0d95cd7b123fbc052e003045a1ea4530f) Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87 - hungthinhne\n[8d033bd](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8d033bdc680e69f37d6b0c7530e23ace16ad7ab6) fix api tong hop so lieu tuyen sinh - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/6189e5347420d4bbcee5c4f550ed3cd17a77ba41...1b5b07b0d95cd7b123fbc052e003045a1ea4530f",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705045584562233400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b7a62f6d-b803-4828-998a-e1a409c2df0d","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"b7a62f6d-b803-4828-998a-e1a409c2df0d","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"b7a62f6d-b803-4828-998a-e1a409c2df0d","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443c9144d465e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 07:46:24 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=k9NW1IWBJdAcIhowHWpVgMKWtxSbJ5idJbMQ57Pcl8uxV5SO8tHCS0gdgZkmdWQHy9Z64tGlAZOligt975%2BuZZnIsq4cMJ8lzpoZH%2BT3%2BjKQQlwJOswcvvQnnxLN\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=af520480b11e11ee87f8768d246128ae; Expires=Wed, 10-Jan-2029 07:46:24 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=af520480b11e11ee87f8768d246128aeb2bc59c93733e41c77c37f5586697de6dea705042e18b4a8612a299ddce1f11e; Expires=Wed, 10-Jan-2029 07:46:24 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d7624d10c450ad992ec49ffedc399b65af81bd90-1705045584; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=skY1UupMa134DaJ8ziarShChEHbeVkFE6a22Y9Dmi.Q-1705045584468-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705045585","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (896, 1, '4b6995be-a5be-4319-860c-f05dd11b63d9', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[ddb1e1f](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/ddb1e1f9c86e1477341fd41cae9b0350d5807140) Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98 - hungthinhne\n[67a5311](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/67a5311e4cf2834ef7fc0b767015be48d669696d) fix search all page - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/99df42f181517ecde830cfba0d18f5bb48283de8...ddb1e1f9c86e1477341fd41cae9b0350d5807140",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705329332742669200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"4b6995be-a5be-4319-860c-f05dd11b63d9","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"4b6995be-a5be-4319-860c-f05dd11b63d9","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"4b6995be-a5be-4319-860c-f05dd11b63d9","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845ed8874b435e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 14:35:32 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=kMBKmE0aBFY9jDl6XxJVB6gkTwh0XBusg4PfdmSdTT2LQqbpB5KfyvJsukJFaG0IToDcyK0Q8PDkIF0rmU7So1Ay3oyobHhJjObmPV637RepoeJ%2BO%2FD5I6qI6cny\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5674be6ab3b311ee83ce7eec8dd9bb47; Expires=Sat, 13-Jan-2029 14:35:32 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5674be6ab3b311ee83ce7eec8dd9bb47c22b1be3b12951d5a020b17314fa5cde34d7e45206c2c27a7824b65395612ded; Expires=Sat, 13-Jan-2029 14:35:32 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5f1e117240a873c3e96308a95e62212abccf9fb3-1705329332; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=VpGLrLFPyBmANQQmyiIJ4fVRgxmHN_rW6h3fUXq9XFI-1705329332718-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705329333","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (778, 1, '5e2ed865-2f08-4b4b-bb2c-009128524e0b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/133/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/133/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705046772188623300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5e2ed865-2f08-4b4b-bb2c-009128524e0b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"5e2ed865-2f08-4b4b-bb2c-009128524e0b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"5e2ed865-2f08-4b4b-bb2c-009128524e0b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443e612c8625e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:06:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=r60kl6yw5Q2eJmGDAJyIU65FI5Z2DnDJLzk0LgZ9dCTlx5re1JuMtr%2BUs30rvXNG3Ury1ZLqiC%2FUYGd2Ofd%2FJktjHfEZGzbNpNJ5o7LHkVLDlIaVTl339mq4VIO7\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=733ec976b12111eebb0566b021acb8a6; Expires=Wed, 10-Jan-2029 08:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=733ec976b12111eebb0566b021acb8a6d16cac1b7f978c3129706e1ee1b31841b3db061a7645af5db1626ee617a09ab1; Expires=Wed, 10-Jan-2029 08:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e3b52418f740ccbd0af2f8eaa0acb729e653b416-1705046772; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=VLOFwSM11uUd7YsjXZmxcoeL88FiXETk78L7PsnU14g-1705046772170-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705046773","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (781, 1, 'b7f2ccbe-fd54-46c8-b00c-6c37ba11b8ca', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/134/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/134/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705046773510492500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b7f2ccbe-fd54-46c8-b00c-6c37ba11b8ca","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b7f2ccbe-fd54-46c8-b00c-6c37ba11b8ca","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b7f2ccbe-fd54-46c8-b00c-6c37ba11b8ca","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443e61bbc9d5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:06:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=7Od9JXFac6fj3vu2Ku%2FKzqa5WEB2UHjewPREHnMXcNX22xeZFibhF8qSLtSpiClCCSd9SRmy6ULz%2BmtSu4lFv2ppYEb%2BotFFSfwIJRnP4mcqpp8pE1xqUmwCxW47\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=74086a10b12111eeb8b07effd249f8e5; Expires=Wed, 10-Jan-2029 08:06:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=74086a10b12111eeb8b07effd249f8e516fb47517f483fd0baffc328be176e580495af88b59f57063bf71dc0e65088af; Expires=Wed, 10-Jan-2029 08:06:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca367d091ea5e68208c0bbd3437560eafd3b48b3-1705046773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=tjxtqaYkYZn10BqjAZFhYGIYUo1I73rZ6_0LiHa8uaA-1705046773491-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705046774","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (782, 1, 'f2084301-3e89-436d-940f-8e8f02db1b02', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/135/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/135/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705046773916171100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f2084301-3e89-436d-940f-8e8f02db1b02","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f2084301-3e89-436d-940f-8e8f02db1b02","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f2084301-3e89-436d-940f-8e8f02db1b02","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443e61e9da45e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:06:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=0uV21gMxTfPEL4gPyMI%2Bp9dkoK1ixpMGWdjxefknQg7kz%2BxH5mnTBs%2BhE6zoI%2BGFbWhrxjZPmlwmZ3S%2B36DenwzZ%2BcFv3qSJ1B%2FVvEnPI0Kym%2BRDL8fWXnSJ6IxU\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=7444ddf6b12111ee87b1365101b1105b; Expires=Wed, 10-Jan-2029 08:06:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=7444ddf6b12111ee87b1365101b1105b75e854572ba7c17552bb7d9961924fc04eeb1b8796bca522256d223ce68b5f53; Expires=Wed, 10-Jan-2029 08:06:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca367d091ea5e68208c0bbd3437560eafd3b48b3-1705046773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=UNPmeFgCbuXt.iRj9Xgwg0CWL1cH5ZVQPH5EY7Rt55E-1705046773898-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705046775","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (783, 1, 'dcb9d091-9607-45a5-9632-e07e306bcecd', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/135/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/135/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705046774327615900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"dcb9d091-9607-45a5-9632-e07e306bcecd","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"dcb9d091-9607-45a5-9632-e07e306bcecd","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"dcb9d091-9607-45a5-9632-e07e306bcecd","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443e6211ec15e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:06:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=tZzks166Hh5eb6YdHkJKzdGGlSONVvMwJYRhxeeVD0JqgFdLwIKyu9vwJ2sKyWE4TUTQf3zDjVAgvXRxBe%2FOhqMddORqnCKgT8G9XK7EcYL1YkxP5bzoB8RHwYtP\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=7484dc58b12111eeaf0f2a224ac988cf; Expires=Wed, 10-Jan-2029 08:06:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=7484dc58b12111eeaf0f2a224ac988cfe87fe50f06919d593ac09913ffc629e60747ff9f67a218b102b5ad33f8410d46; Expires=Wed, 10-Jan-2029 08:06:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6a2012c8b51d320f7b7aa1cb14e422badbdc1d7a-1705046774; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=WOh0pMOT_pRBFVDAiEgj9Y58UmHQu28Vls4mH8ijLVc-1705046774310-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705046775","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1093, 1, 'fb5cf073-554a-43c2-a75e-d2d47cba3a14', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/36/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/36/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575518764318100, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"fb5cf073-554a-43c2-a75e-d2d47cba3a14","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"fb5cf073-554a-43c2-a75e-d2d47cba3a14","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"fb5cf073-554a-43c2-a75e-d2d47cba3a14","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652ee6f755e3a-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=urMmp%2FP62ogUpqsAg8uEDK4nDBgcSSS5Qo%2BgX43ABhzcOCHyeQG8I61bfsVAZB%2BCORj7VFE7i4J2gAuXOgASTgoGlYx%2BX44WND0Iib%2Bwdv4f5ttnVPdCf%2Fa58UIc\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2125","Server":"cloudflare","Set-Cookie":"__dcfduid=88c16e60b5f011ee8dcba25405702787; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=88c16e60b5f011ee8dcba25405702787007543f4485b4dfc6ff283e7313382218fdafa59f08efe810cfef5174c074987; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d4f94a86facdc66ea2f2cb7b0f4ffcc488bc5db8-1705575518; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=O0.fGns.bQH4DTfiZT0TRPBxdpRNFoOQssJp23XpEc4-1705575518735-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575521","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (779, 1, '55e29bf2-558c-43ff-996c-f8cda2d00a97', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/133/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/133/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705046772631186400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"55e29bf2-558c-43ff-996c-f8cda2d00a97","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"55e29bf2-558c-43ff-996c-f8cda2d00a97","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"55e29bf2-558c-43ff-996c-f8cda2d00a97","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443e6165a0a5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:06:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=780rCTI3pbfDKt6GjjAvOHrHhosTenTVsdYsEicO7BDUlurCHlT5yHxcb%2FRstZ2zUZO3kRS9EQW4I5Bg06i%2BUQ0PE%2BYqNPYrVhgqdyNuAPnDDBHFvA7xPbObyHmb\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=73816632b12111eeb4e666efb2ec04ff; Expires=Wed, 10-Jan-2029 08:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=73816632b12111eeb4e666efb2ec04ffe6de6ff0beffde42ade3917151f476096455c22af11cac69282902d86c640afa; Expires=Wed, 10-Jan-2029 08:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e3b52418f740ccbd0af2f8eaa0acb729e653b416-1705046772; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=dWW9Qt0tTc2MGDp3jEd4Y9YzVi0fugN9IRQ_353eTC4-1705046772612-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705046773","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (780, 1, 'e8a08b6d-36f6-4f5c-bda3-7ddbd3a097f3', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/134/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/134/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705046773057799000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e8a08b6d-36f6-4f5c-bda3-7ddbd3a097f3","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"e8a08b6d-36f6-4f5c-bda3-7ddbd3a097f3","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"e8a08b6d-36f6-4f5c-bda3-7ddbd3a097f3","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443e6191b8a5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:06:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=wbP31L1fRgpqGy98ESVYV2g3efSO5qkxq62EPEupi5UCj8pq9EYR%2FhP%2BbQ2a3hoKohXLNi8%2FCHxjhMrRhwnLTlu15aLiLEfsmnOfW5R7BmTKmE%2FY3t%2BmZ9XwAjlO\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=73c27e6ab12111eea1b9921419c1e8e3; Expires=Wed, 10-Jan-2029 08:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=73c27e6ab12111eea1b9921419c1e8e38c5cf76590c57b0df819a99952b1fd63c8808762b35af7ce4a2495e0577a3964; Expires=Wed, 10-Jan-2029 08:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca367d091ea5e68208c0bbd3437560eafd3b48b3-1705046773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=npvXRUQbAqPe.i2v4S2YrHluk2JC3zY3OvnHmkRfjV0-1705046773040-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705046774","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (784, 1, 'fd9ead82-bbc8-4a49-815d-e15b7839eb7f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[8e450b4](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f) fix bao cao tuyen sinh nn/nam - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705047287429258800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"fd9ead82-bbc8-4a49-815d-e15b7839eb7f","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"fd9ead82-bbc8-4a49-815d-e15b7839eb7f","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"fd9ead82-bbc8-4a49-815d-e15b7839eb7f","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443f2a7eee05e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:14:47 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=hPvHoPReo6AI82a9%2FfZ%2BMtJPEbIA6NrValrf2fnN5P6wlkR%2Ft2e%2BRP9TqkbRIg8UjGQoMwxfZUsqvKjEjYUHScnD2kMdxNVbbzYT7B9r3i7IKKMS1Ba4glT1Dj%2Bl\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=a65a1224b12211eeba4a32ce797e5360; Expires=Wed, 10-Jan-2029 08:14:47 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=a65a1224b12211eeba4a32ce797e536096759c624717f1bcca00a74ad0e79143cbfa1ffa41f9eec703c565aabc6e41a2; Expires=Wed, 10-Jan-2029 08:14:47 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1d967bd5dfe53c9ad3de37099f020b8a3e39d07c-1705047287; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=gfTkBngbeKbklglvzb2HkexEX0Nvh5Bdk3rVzT4qFCs-1705047287409-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705047288","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (785, 1, '9c5a1bfb-aea1-4b50-9310-0c41c1d2368a', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #88 fix bao cao tuyen sinh nn/nam",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705047316632781300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9c5a1bfb-aea1-4b50-9310-0c41c1d2368a","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"9c5a1bfb-aea1-4b50-9310-0c41c1d2368a","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"9c5a1bfb-aea1-4b50-9310-0c41c1d2368a","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443f35d99495e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:15:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=rgsqtdo6vj4ZFX5mPbUNL%2FbbJyr6p0MD5pdKxZ5fqsTXauE7TLD23ypPqIR6qMrO2YjrNkLD%2BD1cfuLWz9PXQOCqqdRdFBRaDKMohPybeqN8zMTy9Ky9NMZLC24x\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b7a55b10b12211ee901066b021acb8a6; Expires=Wed, 10-Jan-2029 08:15:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b7a55b10b12211ee901066b021acb8a6fd15165f40cc3d23a479a4572c93f78393737b996d86ab24586b15d966d31da8; Expires=Wed, 10-Jan-2029 08:15:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8d76914c5a973d25986e9b4c9ee2ee26566d4d22-1705047316; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=vVLClhQ91t_xnUVbwGEoNj75Bhgnl_UhMw6DRpW7J6g-1705047316423-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705047317","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1095, 1, '1b65bd92-8347-4353-a33f-7c6081fda2ec', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/37/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/37/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575519503248800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1b65bd92-8347-4353-a33f-7c6081fda2ec","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"1b65bd92-8347-4353-a33f-7c6081fda2ec","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"1b65bd92-8347-4353-a33f-7c6081fda2ec","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652f268715e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:39 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=L8oiou%2BG0PYW8ZhsmXRlvDH3r%2BWs%2BZzjkPolLIHysew2G2%2B7NCqN6s2PsShJv2xWIo3qF1dU%2BfN6FK7p3n4hqCYCM8RcgrcmoTX1VAzZaPX46b5iJtlbRvHL%2Fgp6\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=89324234b5f011ee88f2fab697dde37f; Expires=Tue, 16-Jan-2029 10:58:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=89324234b5f011ee88f2fab697dde37f8b62d807aa07d9ecd5752227d90024332871b94ab03c004e14b12e8e0b8b2678; Expires=Tue, 16-Jan-2029 10:58:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5b611484b7450f44bd88935639e49cb7c04d7032-1705575519; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=fa6N3pme8nJpTSvKD9WY13NNkokrt0WDZdxttC_c7oI-1705575519474-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575522","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (977, 1, 'cc70629b-aee6-4572-a4bb-ce3b13ac7dbc', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[8151ab7](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8151ab7ce5fcfdf01ceb05db6de7cea9190aff45) Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107 - hungthinhne\n[b51a2a2](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/b51a2a2db8b6c480c487c33ce3cad9f3e94bb872) fix trang thai ho so - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/f0f201ffadd72a9c710659316fad0c14ed6d69c1...8151ab7ce5fcfdf01ceb05db6de7cea9190aff45",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705457159876974100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"cc70629b-aee6-4572-a4bb-ce3b13ac7dbc","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"cc70629b-aee6-4572-a4bb-ce3b13ac7dbc","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"cc70629b-aee6-4572-a4bb-ce3b13ac7dbc","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b094eab1d5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:05:59 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=a3xT3w99TvS7aN9YFEPMVym9TBYPX1SB7Sb4YBG%2FT2JHiBwqdbkbsjNldkcggW7Ovp6oex5rlRkWh6%2BRH9GOZT4aJQlweO1si3MUdP4Rvhr8sJemgRoD8dFegUqp\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=f55d44fab4dc11eebdf0c2cc1201aa3c; Expires=Mon, 15-Jan-2029 02:05:59 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=f55d44fab4dc11eebdf0c2cc1201aa3cc65d01b87f8ff2aab3188505326a8ef0eaa44c68338a9d42ff2232b0fc1676e2; Expires=Mon, 15-Jan-2029 02:05:59 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b0dba9a0e9fd6b943979bf88014b10c1650330a0-1705457159; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=g61xWw1Pz4gwe1iUGCJwxeO8trOsvLl_TORYJOHrk6I-1705457159853-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705457161","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (786, 1, '28978dff-eb91-4cad-a163-165247b494ce', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #88 fix bao cao tuyen sinh nn/nam",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705047331620050400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"28978dff-eb91-4cad-a163-165247b494ce","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"28978dff-eb91-4cad-a163-165247b494ce","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"28978dff-eb91-4cad-a163-165247b494ce","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443f3bc4ac95e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:15:31 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=NIySUQK64gbNvz%2Bq6VRz8OnPkV5C9wHk2HVUStjXQbQ5mVa6%2BuUQMolN62NDs9538dS6TzrirErDHw%2BbofiykSkMbaUmiB7113CHsSnSSOM9q9ASwJ7BQyNvXhrE\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c0b196e2b12211ee9293529e980364c9; Expires=Wed, 10-Jan-2029 08:15:31 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c0b196e2b12211ee9293529e980364c9611bce49ba9e49d5a22448be14bea18478e15a60eaf9707b32b489537134f92a; Expires=Wed, 10-Jan-2029 08:15:31 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3508e7534d44645fb063e90b19277a92d172022f-1705047331; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=0OgekANQ8aAxsx2_Wf9byhyAFnuwCHRKFqnQ2BRNFxo-1705047331603-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705047332","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (787, 1, 'c1f4c089-75fb-455f-a8c6-e1d254f7869f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits",
      "description": "[9dbf9d1](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/9dbf9d1817992c4fee7c955f584497c9faefcc50) Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88 - hungthinhne\n[8e450b4](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f) fix bao cao tuyen sinh nn/nam - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/1b5b07b0d95cd7b123fbc052e003045a1ea4530f...9dbf9d1817992c4fee7c955f584497c9faefcc50",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705047331983952900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c1f4c089-75fb-455f-a8c6-e1d254f7869f","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"c1f4c089-75fb-455f-a8c6-e1d254f7869f","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"c1f4c089-75fb-455f-a8c6-e1d254f7869f","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443f3becc085e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:15:31 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=3qu0%2FEKoa21IELZG5L%2B728cozpinCEJAl9kFk%2BykBMXzFpAKrOm4cZgFmkZgjmtNSKPeahx4cWu%2B6CSGPMMwv7QZ%2FB1gg%2FShMqCr6tbF4Kttx3W28iQQJ2dYcXsJ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c0e8743cb12211ee9c5322ab75833ff8; Expires=Wed, 10-Jan-2029 08:15:31 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c0e8743cb12211ee9c5322ab75833ff87dd868e2f41e762c47fdb2e0c9ce5301c7ae1805278dfbeb0cf08aff1c37b3e2; Expires=Wed, 10-Jan-2029 08:15:31 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3508e7534d44645fb063e90b19277a92d172022f-1705047331; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=IE4U7Z9u2bjZc5_TrfK_gf5xRIZUKb.JdD50EGTLljs-1705047331962-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705047333","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (808, 1, 'c89f1ab5-074d-4304-8965-0827cc88b3f8', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/130/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/130/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705105575586591300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c89f1ab5-074d-4304-8965-0827cc88b3f8","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c89f1ab5-074d-4304-8965-0827cc88b3f8","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c89f1ab5-074d-4304-8965-0827cc88b3f8","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844981b51baa5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=oknVA%2FQ9BjSWHaAGEIsURmSeDBMuw9RQa8xgPn9le6FRNcqwzw93HteQCwrdHV76Nuu7j5rXhkfoAo0p0qPLOR24S1cDwqjwu7ltJmJbaxfmGXLLI4AMByh%2Bnuce\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5ccfc378b1aa11eeb661ea1a3d7f5781; Expires=Thu, 11-Jan-2029 00:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5ccfc378b1aa11eeb661ea1a3d7f57819b35ca008f01258b532269f41eca64502b463e07bd436876f3cb2a9553ee0635; Expires=Thu, 11-Jan-2029 00:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d8ec5e18c29648b7aa44157c9588f770e0a9c1fd-1705105575; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=BBXJo.VOP2o96uhq6u6n2gQAiu.I_fSotK2J8yr1ZOM-1705105575584-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705105576","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (788, 1, '48142697-e344-4ea6-af0c-7e901172a7e8', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[41e50f4](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/41e50f4abb6a643eb77c56ef5d517a3b404880ea) add reload infohocvien - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/41e50f4abb6a643eb77c56ef5d517a3b404880ea",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705049245992751100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"48142697-e344-4ea6-af0c-7e901172a7e8","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"48142697-e344-4ea6-af0c-7e901172a7e8","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"48142697-e344-4ea6-af0c-7e901172a7e8","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84442278684b5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:47:25 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=RdyI7cWJEODh7NjpaKgU%2FUnd9eXewAp41ho9csBRlLewe7ZaHYL%2B952sIY3gdXzfLpH0ivNS71AhWzPe2kuEVFNTOoxwQg15jVAZRtQT52%2B6We8PhmRWLo%2F2rpdQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=35bc4ba4b12711eeb987e2fd756561f0; Expires=Wed, 10-Jan-2029 08:47:25 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=35bc4ba4b12711eeb987e2fd756561f015468dc2dd06bd3e5b286a330b05d35e18cdf9b28ca1d9ec60c1c0943cce7158; Expires=Wed, 10-Jan-2029 08:47:25 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6dc79a5b52d9104c34425e5cee95f442313c99bc-1705049245; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=IPyEQf1HP.pKeDiiHK20mLxfAGaWfMBvWLy1zCOFgaA-1705049245955-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705049247","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (792, 1, '460e0af9-8f2c-4615-84bb-28f17de5b45f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:dev] 3 new commits",
      "description": "[7738159](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/773815950340a50498ed3995ebb83bdcacecc237) Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89 - hungthinhne\n[18d5c8f](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/18d5c8f72559020069d731f9b8b1e4073a955df7) fix ke hoach - Lê Hùng Thịnh\n[41e50f4](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/41e50f4abb6a643eb77c56ef5d517a3b404880ea) add reload infohocvien - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/9dbf9d1817992c4fee7c955f584497c9faefcc50...773815950340a50498ed3995ebb83bdcacecc237",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705050104355641100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"460e0af9-8f2c-4615-84bb-28f17de5b45f","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"460e0af9-8f2c-4615-84bb-28f17de5b45f","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"460e0af9-8f2c-4615-84bb-28f17de5b45f","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8444376dffc05e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 09:01:44 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=qPNDxfyrZK9P6oUa1DB7qWtVLJ1cRPNSb6OorJtEXAZq%2FjOJvFs3H32ObQF9qJM2ygXBf2XVtszHtGiF%2F%2BVQJgmd%2Bu4kR1K1hZjdYB7jQZeehNFE1UBVs0lYBsCj\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=355d20a0b12911ee8f0aa62b7971ed64; Expires=Wed, 10-Jan-2029 09:01:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=355d20a0b12911ee8f0aa62b7971ed6486c65491347eb92a249185d9ca93592278200f22012fc9fbe423fb5bbf0c56f7; Expires=Wed, 10-Jan-2029 09:01:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=7185669f10f0948c24481179f338f3b8eebeaadd-1705050104; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=thP702pvWn3vzwQo2LlnoVY2DNc_TnaFZr_cK4aR5PE-1705050104324-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705050105","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (809, 1, '857dbe03-dfb9-4c8f-b482-77c768becd6f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/131/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/131/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705105575947114200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"857dbe03-dfb9-4c8f-b482-77c768becd6f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"857dbe03-dfb9-4c8f-b482-77c768becd6f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"857dbe03-dfb9-4c8f-b482-77c768becd6f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844981b7ac125e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=cG6Tx4yy%2Bdc0mJeQyV0Xu6kP8Iw4VDTirG0PG%2BMtT4ibqwQuzV%2FZyYcdApUSKjR8zxcLHFUlo8lPbDMta%2F1arloPrA%2BdqEgC3s82RH7GJQ6Qvlgt06%2BSCRTFQaB%2B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5d06f190b1aa11eeb7c102445d3d6a7d; Expires=Thu, 11-Jan-2029 00:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5d06f190b1aa11eeb7c102445d3d6a7defcaac471cfa2b714be1db6348da3217567af3c9cb8e10cd186f07c240dc9b49; Expires=Thu, 11-Jan-2029 00:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d8ec5e18c29648b7aa44157c9588f770e0a9c1fd-1705105575; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=g83MTD0y2.OU4YU..ej3NEWDTD9OxFZANEYbNPA6JF4-1705105575945-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705105577","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (789, 1, '78b21121-79a1-4161-8c90-bfa4d0e45d7c', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit",
      "description": "[18d5c8f](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/18d5c8f72559020069d731f9b8b1e4073a955df7) fix ke hoach - Lê Hùng Thịnh",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/18d5c8f72559020069d731f9b8b1e4073a955df7",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'push', true, 1705050059520921200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"78b21121-79a1-4161-8c90-bfa4d0e45d7c","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"78b21121-79a1-4161-8c90-bfa4d0e45d7c","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"78b21121-79a1-4161-8c90-bfa4d0e45d7c","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84443654f8485e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 09:00:59 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=OJ%2F6Cjif9%2BClTfZRUKQ7fZYvWdsDHhUqbqZXNKJGy31owgtKJkvc6d88POyp1gGPjklikiHmq9znf3%2Beuw%2FZidw5u%2B3pr6aOoKuoQNd8CYEsVfJA7EkINmU0gCm6\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=1aa55dc2b12911ee9f7c56f32716712c; Expires=Wed, 10-Jan-2029 09:00:59 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=1aa55dc2b12911ee9f7c56f32716712c5aa6190a22ff01012a34025e2430322631ee6cbeffd82dacc878dc0a263aacbd; Expires=Wed, 10-Jan-2029 09:00:59 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=397b5fac892a33f606c89809379510f3b22502cd-1705050059; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=GW70bcX4F7u5FrLRfV9.2cW6kkefyGy7sa9Kb.JSzSI-1705050059498-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705050060","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (791, 1, 'a501f9fc-e9e8-4f88-9e29-121727b4e907', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #89 thinh",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89",
      "color": 7506394,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705050103671017000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a501f9fc-e9e8-4f88-9e29-121727b4e907","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"a501f9fc-e9e8-4f88-9e29-121727b4e907","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"a501f9fc-e9e8-4f88-9e29-121727b4e907","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844437694e515e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 09:01:43 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=AzLrM9%2FzG%2FnVPE5Ge1pJ5mZN%2FHr7Y9UMLenxPqzrTDaC%2Fv3RTFcILL2myxqnEhE71RyyYDvlopyJDwOQBWO6dAGYqzSfxMPhnT9WyZhjUWStEiEkD1GkwBGkLWT1\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=34f615aeb12911eeb34b02c02fe66669; Expires=Wed, 10-Jan-2029 09:01:43 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=34f615aeb12911eeb34b02c02fe66669f3fce61ca2022d4271df0ffa11a5b27698b0e0dff69b4d8b3bea7d366162eb05; Expires=Wed, 10-Jan-2029 09:01:43 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d5ce0ae0c843294ae7c4af3916f9e8d934a9cff8-1705050103; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=FNP68dqhHGAoDLTtGbWb5b98tZIMqdstxsy7CvoQr4M-1705050103648-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705050104","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (790, 1, 'c61f7954-4793-449e-937a-d80fae36eef4', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #89 thinh",
      "description": "",
      "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89",
      "color": 1754624,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "hungthinhne",
        "url": "https://git.gdtsolutions.vn/hungthinhne",
        "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3"
      },
      "fields": null
    }
  ]
}', 'pull_request', true, 1705050074582985300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c61f7954-4793-449e-937a-d80fae36eef4","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"c61f7954-4793-449e-937a-d80fae36eef4","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"c61f7954-4793-449e-937a-d80fae36eef4","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844436b2fade5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 09:01:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=LocjgFdCI9WhvIxXn9VPSbvGzNKkPI3dtkhr56Tx490STqLa%2F38Dj2AN4Q3cwHO3CVI1CV8BKlJ4fKIn0%2BIY2sjgol60elC63nV4ZRpesaWwUGVDRGmu8W7lTKBB\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=239f8c22b12911eeade9ae6cb625c7c5; Expires=Wed, 10-Jan-2029 09:01:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=239f8c22b12911eeade9ae6cb625c7c58e60b394f93ace53e4efa4a7201b96e6da403ce5b67cd5cefa3c487b5833b545; Expires=Wed, 10-Jan-2029 09:01:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d03b99d625156f31d0c397ebc13c93ee20d9dbd3-1705050074; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=77M5B1RRYjX6P9S_0VG0NDGZHEdaDKcri4OyAI..aRY-1705050074560-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705050075","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (810, 1, '300631a3-192f-4a03-ba4c-229d61b0fd1f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/131/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/131/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705105576321091800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"300631a3-192f-4a03-ba4c-229d61b0fd1f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"300631a3-192f-4a03-ba4c-229d61b0fd1f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"300631a3-192f-4a03-ba4c-229d61b0fd1f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844981b9ec585e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=1sRlOlHxQJMoBqAUmbuxaX%2BnYKaJiTVbvKvBdpBaG1xsp5T%2F%2FaqeLHUuyq82B9cbbZgr4CUi%2BqH%2FFM7lTKehnc4z9l0suWb5OvDWwXgsnSA2xu%2FMpdzWn%2BHypHFU\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5d3fb98ab1aa11eebbb8323056eea780; Expires=Thu, 11-Jan-2029 00:26:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5d3fb98ab1aa11eebbb8323056eea780ca36be0eb6c38c39816d50fac2cd264b285a52ad2037b2c57782ad94966e1321; Expires=Thu, 11-Jan-2029 00:26:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3ce427b3043bf87068a32b89bc75c423ba698dfc-1705105576; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=JWQk8mgNLIxi1DVoAktKu4D3NyGQh18Xzc.GgI86WZQ-1705105576318-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705105577","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (841, 1, '16704ba0-2513-4ec4-bd72-1219f139977f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/122/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/122/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164373511261400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"16704ba0-2513-4ec4-bd72-1219f139977f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"16704ba0-2513-4ec4-bd72-1219f139977f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"16704ba0-2513-4ec4-bd72-1219f139977f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d340b3e5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=SGuRTV6JWYrw4XuRR%2BbitZRlOggsYOreKLf0PFlRROQV%2BaMgKtrY5pG2N8FtsG0V7%2BU0%2BRzSf%2BVHJtUsFp2WDyCCMQzVAS4ENYshlSziUTbuLCJUWU%2By0mg0Cp4P\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=431933c2b23311eebfb906fa656c1647; Expires=Thu, 11-Jan-2029 16:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=431933c2b23311eebfb906fa656c16477fa743325075369a24ef714f8270d1799e1c33accd1e5eab04d791be0e7ca372; Expires=Thu, 11-Jan-2029 16:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=440f5ddaf878039441a550fc0c10193e8c6aad10-1705164373; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=uXFbMq8X0NXT1VdAC1vZUY8Her9BM9m6dbR0zTfP_LY-1705164373496-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705164374","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (834, 1, 'c4d6f40b-2d54-4a84-b8be-d3e02c96969e', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/119/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/119/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164379674482700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c4d6f40b-2d54-4a84-b8be-d3e02c96969e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c4d6f40b-2d54-4a84-b8be-d3e02c96969e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c4d6f40b-2d54-4a84-b8be-d3e02c96969e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d5aab955e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:19 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2FbZTOD%2B3tjz3i%2Fg4mRn%2FbpYfJK63JahN367jBnMIbyjSzTjq%2FDPHchUd1EtkDueQcL8umjsBPYEx4ln1ieakJ9klgiVIbh1dT%2FzUXFVBC5QcMf7GFgT5Th6jjy9j\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=46c54f38b23311eeb17e02445d3d6a7d; Expires=Thu, 11-Jan-2029 16:46:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=46c54f38b23311eeb17e02445d3d6a7df633bf9bfa31d8db4f57639919d6a63c6d581eb6f6605b752feeb043faa698c6; Expires=Thu, 11-Jan-2029 16:46:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e7431dfcec9461afb76d57836667a9dbdd0523bd-1705164379; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Txb691NECXjpXEk_dRrG26Jpqp8gOHRC15IvGToVcfk-1705164379658-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164380","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (835, 1, '658902a0-b4cc-4c05-a373-2c2372812bc8', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/119/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/119/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164380187483500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"658902a0-b4cc-4c05-a373-2c2372812bc8","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"658902a0-b4cc-4c05-a373-2c2372812bc8","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"658902a0-b4cc-4c05-a373-2c2372812bc8","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d5d1c1b5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:20 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=9F4HiC67mtEjcdvYvfURALZ3pc8S71LGU5TUr84fk05ZH7B9ICHRM4sggJCkekJvs4cp4G1Jv9LaRUJeQZ3E9z8A%2FMqomod9ToLDORZvbxfnKdzODuW8NFVA3MuK\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=4713c032b23311ee80b4f6b29dbd0d54; Expires=Thu, 11-Jan-2029 16:46:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=4713c032b23311ee80b4f6b29dbd0d543a8a19ec57fa2e1f9bff9c357181f67778229502a0ec47370a433c6e6867fb15; Expires=Thu, 11-Jan-2029 16:46:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6ba39b49312977138f7011672e3f14450a375cc3-1705164380; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=5W9TKWYPwhv7T30kxK88j4pIXJ_ldQg4sRl693EItoY-1705164380172-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705164381","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (836, 1, '3b32a00f-251b-4d84-adeb-5c96f07b06d1', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/120/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/120/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164380614940200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3b32a00f-251b-4d84-adeb-5c96f07b06d1","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"3b32a00f-251b-4d84-adeb-5c96f07b06d1","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"3b32a00f-251b-4d84-adeb-5c96f07b06d1","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d605cbb5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:20 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=TSAqoccod%2BvIj7FDuKkEuN6hwWcX0Ng2dA%2B8AgfhcO48uR5trnmoNCTN56h%2BC9LgijGVKzBTfHroatC9MK8RgY3GcItcxpx4BtESWReqEVXmbtz0firL8hBhC4my\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=47550164b23311eeaeb82ebbdd16f95b; Expires=Thu, 11-Jan-2029 16:46:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=47550164b23311eeaeb82ebbdd16f95bb501f5fb56e0a11a1b058f49449b0270acbf4b8a136b99844df9c8ad7efd07f0; Expires=Thu, 11-Jan-2029 16:46:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6ba39b49312977138f7011672e3f14450a375cc3-1705164380; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=a512e6JmeVJxNCg364gXZNX66ZGlUTPmPRqTl9XM3_E-1705164380599-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164381","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (837, 1, '54613c75-f86c-48dc-b76a-6a5ed68e5ea9', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/120/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/120/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164381003931700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"54613c75-f86c-48dc-b76a-6a5ed68e5ea9","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"54613c75-f86c-48dc-b76a-6a5ed68e5ea9","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"54613c75-f86c-48dc-b76a-6a5ed68e5ea9","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d630d4a5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:20 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=dLXpU8ed%2Fi2sf1A%2BFvLBL8M9gUX%2FI0LkTEoZcWD8Do0Rp87DPAuzDcNVtIsff%2FPtAsQlV5VHXjyJebS%2BLBiugNUEhXJer3OIl5isJ28u%2FrCYhir%2FBis92z5cepXM\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=479043a0b23311eea427ea10a25c610b; Expires=Thu, 11-Jan-2029 16:46:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=479043a0b23311eea427ea10a25c610b6d8a33b060d7eba72830cbbe6c243d74842eba5321afeab61aec9545e5853063; Expires=Thu, 11-Jan-2029 16:46:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6ba39b49312977138f7011672e3f14450a375cc3-1705164380; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=GkguHQC.KA1gZI_JocwOrxYYsoWRJkyg7_7EvWfEXyw-1705164380988-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164382","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (840, 1, '2f38e132-62c4-4a15-b831-5efadd96e1e6', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/122/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/122/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164383327418600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"2f38e132-62c4-4a15-b831-5efadd96e1e6","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"2f38e132-62c4-4a15-b831-5efadd96e1e6","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"2f38e132-62c4-4a15-b831-5efadd96e1e6","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d7198245e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:23 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=c%2BKvfxvcrbDNZMvr0JMbAwVf5DHuu31xFCG4vXaKnJ3dYa3%2BH2lKrWoa37gK2MHdQo3HpsfteBiQ%2BRRqm80ljiS2wPjYL%2FUzkLsoTeDy64NxEGFQTZMkT8WKVOie\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=48f2d398b23311eeb72eea10a25c610b; Expires=Thu, 11-Jan-2029 16:46:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=48f2d398b23311eeb72eea10a25c610bfcad9c6cc4603d181aed54715c282ebe7bb06d7566ff3e462bc9f6f7519f49fd; Expires=Thu, 11-Jan-2029 16:46:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=2c1b84e7fe9407d37bf13583c37fb38b270f7720-1705164383; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=2xt9r91bFDe7C2gOusZoFufoGZsJZ0VGQxhUXx7qnF4-1705164383312-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164384","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (982, 1, 'add8279b-73a0-4a7f-9a1b-ea712ea62da3', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/76/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/76/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458373412892100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"add8279b-73a0-4a7f-9a1b-ea712ea62da3","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"add8279b-73a0-4a7f-9a1b-ea712ea62da3","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"add8279b-73a0-4a7f-9a1b-ea712ea62da3","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26ef3d815e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=5sffJnQqhtYrsMbbA16XtQDKai0kOAOrEKdR1p13ELQDsdbnbS1wmpcnfmbn4CsxvXEfb1vtr2ZVGfpweK%2FVr1tVD5BpuxoeX50tzEhGu9bbBnmIhyKrfMj4bTQI\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c8b0404eb4df11ee9477dae1b841d91e; Expires=Mon, 15-Jan-2029 02:26:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c8b0404eb4df11ee9477dae1b841d91ef6e1df9e77124a5552faf835a1cb3f2e355ef182fc79930d223b5b573b7e6576; Expires=Mon, 15-Jan-2029 02:26:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=09dc058170902ab28690be97da7bafeeafef5fc1-1705458373; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Vi1Eyg8Z4QaFrFT6I6nFP32aTDM45O50syhaWxcHP8M-1705458373390-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458375","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (823, 1, '656f7374-ca79-4f2f-a014-f947b5162f7b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/113/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/113/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164374570031400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"656f7374-ca79-4f2f-a014-f947b5162f7b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"656f7374-ca79-4f2f-a014-f947b5162f7b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"656f7374-ca79-4f2f-a014-f947b5162f7b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d3a0c645e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=P3p3PlXO0OZDJ6cn%2F5U3gM7XbxJnxDN%2FtsxcDztYldxRwAfWP8%2FTv980I0eokl%2BylaPuHa9Hi9LT3D%2ByRkUzbt5DCodgIC%2Fo6qLi0CgXmGP%2B%2BYXIgjdF5qeASmId\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=43baabbcb23311eeb1c6fe34e9621588; Expires=Thu, 11-Jan-2029 16:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=43baabbcb23311eeb1c6fe34e962158882677a60d7fe5e47c4db9d6736ebf816f4af849a6248f721a6ab55d9417d36ac; Expires=Thu, 11-Jan-2029 16:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8e168380d93d5f2447c0d3e1d02f6eac14ab3736-1705164374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=xKZXKHokfdrNPE3BniaszpMkdsaIJ2mEMvF2ikZrAg4-1705164374554-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164375","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (826, 1, '4259aae2-bf63-4845-a621-9fa5d31cc701', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/115/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/115/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164375917821400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"4259aae2-bf63-4845-a621-9fa5d31cc701","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"4259aae2-bf63-4845-a621-9fa5d31cc701","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"4259aae2-bf63-4845-a621-9fa5d31cc701","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d426e205e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=tLX0ZaAv7aeHjuygdCMi8E8wZFT5oNA4brnkfXegbUz07sWkPzAbn8%2F41jft210L7ymwsNBG3lYQyqrS9C1DoapCh%2B7ifijCVOVnwzAf1T33sGcAX9IM5Ys1dRFf\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=44883e38b23311ee8ffc16a8a718f508; Expires=Thu, 11-Jan-2029 16:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=44883e38b23311ee8ffc16a8a718f508493c604cb4825e4cb869530c494b480d189694e6e219e174ae35dc6c3110a7ea; Expires=Thu, 11-Jan-2029 16:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=79ab1ef4be4d4523e6e35a7c89bce78eb36e6f50-1705164375; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=TANpBZJIPQxW8zX9EK.RhDQ0d.RXtesoMCcQNUl25p8-1705164375902-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164377","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (827, 1, '1b1d5227-be56-41ad-a4e0-0b1602c1325e', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/115/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/115/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164376345657700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1b1d5227-be56-41ad-a4e0-0b1602c1325e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"1b1d5227-be56-41ad-a4e0-0b1602c1325e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"1b1d5227-be56-41ad-a4e0-0b1602c1325e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d45aec75e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=pZ8scOOs53ciGBkgh4CtP3njlZJswOGTQQjR6YD1YM9S%2FeH5Iyz8zCal%2ByJMT0kD5eUIq2WRLYw6%2FG44slacLd4eQUL1X9wZ7JG%2F8L9st9k3ydSc7GVykDDTDFGh\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=44c97a38b23311ee99c506fa656c1647; Expires=Thu, 11-Jan-2029 16:46:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=44c97a38b23311ee99c506fa656c164761160c03b1f782fca331b7aab75c252c00e3809d755127c010aaa3b9bb9b7dec; Expires=Thu, 11-Jan-2029 16:46:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5790be6600fc0ebd23d0de15d55dbcdec8ca69f7-1705164376; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=yQzmpXWQgraTxG5mcA8N_9asvyJ.8pY8pSs6KTs5H4I-1705164376330-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164377","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (828, 1, 'd37079ab-dbad-4632-b632-bca21c97c050', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/116/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/116/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705164376742616500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d37079ab-dbad-4632-b632-bca21c97c050","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"d37079ab-dbad-4632-b632-bca21c97c050","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"d37079ab-dbad-4632-b632-bca21c97c050","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d485f555e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2FVDIphmuWrWDSuo%2FGIXR1WFLDYmou1AP7NGUXn7KuOQCO9OLtlKMjKGFakD30MqDofmzwMmmPyXK7J4LDRaXUfWMt62qSbH0M0M7WlmJIAq7nQOSNVpS19g0%2BRo9\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=4506053eb23311ee99f4f60d09edbba6; Expires=Thu, 11-Jan-2029 16:46:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=4506053eb23311ee99f4f60d09edbba6757724e66a6869f3a3f56ee8f30507e95f92e544a3bd78cf208aa9ea26a8b93f; Expires=Thu, 11-Jan-2029 16:46:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5790be6600fc0ebd23d0de15d55dbcdec8ca69f7-1705164376; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=0bMIl46L2GeNcZdNgoNR.DOGptoAdT8QSBWM216TWrw-1705164376727-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164377","X-Ratelimit-Reset-After":"1"},"body":""}');
INSERT INTO public.hook_task VALUES (1101, 1, '476e1cdd-aae6-4b9d-a86e-c57577ec87b1', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/40/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/40/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575522783012900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"476e1cdd-aae6-4b9d-a86e-c57577ec87b1","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"476e1cdd-aae6-4b9d-a86e-c57577ec87b1","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"476e1cdd-aae6-4b9d-a86e-c57577ec87b1","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847653066d3f5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:42 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=3k824hQiVFMcUELKWLrea2eIl0PL3d9jJVlONrezPsuv8PXXW8rqcJYhM0kAJLKseg%2F3Ae%2BGP%2F2olKMwmZYoC6jtVuqQGbvYcAsO2UP9P5Y1i3%2Bt9EuCCyVxi5Up\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=8b26df64b5f011ee810832177206e909; Expires=Tue, 16-Jan-2029 10:58:42 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8b26df64b5f011ee810832177206e90916608ff6f40143945443263b1538849ab50700f3a361efe17081b6bb4489aa2f; Expires=Tue, 16-Jan-2029 10:58:42 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=aa34770d24dbaa26e1e391448df171ca591bd482-1705575522; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Qtzq_.uuroipz08c5FQQsg8AzpVBFgWXOOjYTCpegJc-1705575522754-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705575524","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (983, 1, 'ab1e67a8-494f-4344-9d1e-9711bbb8ba3c', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/77/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/77/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458373865368200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ab1e67a8-494f-4344-9d1e-9711bbb8ba3c","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"ab1e67a8-494f-4344-9d1e-9711bbb8ba3c","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"ab1e67a8-494f-4344-9d1e-9711bbb8ba3c","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26f1ee725e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=TvVt1Nz3Kx7JFlkdhF3Q%2FbejhvuGPGbLiZv7jWZjyPBipXeKP4z6oS%2FlbkU%2Fvej59koj8hdakYPiSyfo5Vp2CfX9iD9PzenWIAetQwRengw6Xg%2BD5fUkmoYM4vIJ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c8f56340b4df11eea65b2678b8edd28c; Expires=Mon, 15-Jan-2029 02:26:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c8f56340b4df11eea65b2678b8edd28c95a50f1b5073185fd49dc6dbde42299e5f6a8b9ae68674f70454369e6038323e; Expires=Mon, 15-Jan-2029 02:26:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=09dc058170902ab28690be97da7bafeeafef5fc1-1705458373; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Wzwmn0lcoZxPhwon9VtD.71P7WYnA7GsSlo13vqp28g-1705458373842-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458376","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (986, 1, 'e858616d-eaac-4f10-843d-ebabdf3c8ec6', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/78/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/78/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705458374975171500, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e858616d-eaac-4f10-843d-ebabdf3c8ec6","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"e858616d-eaac-4f10-843d-ebabdf3c8ec6","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"e858616d-eaac-4f10-843d-ebabdf3c8ec6","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26f9b9375e3b-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Wed, 17 Jan 2024 02:26:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=wQxKR%2BWV41E2EXERmTSdK3S40hgb8ORjmKSIGNRQZluPsbUl2aVJWBfA%2FoD4xyhWAEmDUqrOa%2BSxT7hqoadYvGDSgrkEFumawjZIryFS%2FBp1Gb%2F9w5vNW1izXNrL\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2111","Server":"cloudflare","Set-Cookie":"__dcfduid=c99ed4d4b4df11ee9cad8a8ffccdf47f; Expires=Mon, 15-Jan-2029 02:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c99ed4d4b4df11ee9cad8a8ffccdf47f170af79de4a6314c9d51dd075fdc728202c37949ac60e222e96dd626b608bab6; Expires=Mon, 15-Jan-2029 02:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=46208b8d2b61a76951114a5231d0bdf6b88819f4-1705458374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=i7dkgKWOmITQ_vUwdkePtOjahOMysW7vtBq7vNw9v6o-1705458374953-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458377","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (1110, 1, 'c5f1f109-6d79-4a0b-995e-1a72fe83c932', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/45/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/45/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575518260109000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c5f1f109-6d79-4a0b-995e-1a72fe83c932","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c5f1f109-6d79-4a0b-995e-1a72fe83c932","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c5f1f109-6d79-4a0b-995e-1a72fe83c932","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652ea5ed65e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=qS4AjJO3y5589r26%2FCPIR%2FnFeJQYBH9MvXCE9%2BfkOJc6g61teQuada43vXSRCzx0aCZ58NyvXShlwjq5L84jsjHJ3UBpwK7Q9cMDUR0cmeJDSKkz1kGUl4yXRzRR\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=887478e4b5f011eebd02c63f4a2b7744; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=887478e4b5f011eebd02c63f4a2b7744ab443b25092aa7c0a128a3f31af5f9c0680e417604616515cb96f0e9ad7b1505; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d4f94a86facdc66ea2f2cb7b0f4ffcc488bc5db8-1705575518; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=vkJs_3A_VmDYduTklSthfATmla6QccYKiIeTsNSJMRQ-1705575518231-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575520","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1111, 1, '4621952b-f3cf-4add-aaaa-77a179942a78', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/45/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/45/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575518663930600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"4621952b-f3cf-4add-aaaa-77a179942a78","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"4621952b-f3cf-4add-aaaa-77a179942a78","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"4621952b-f3cf-4add-aaaa-77a179942a78","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652ed2f715e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=DnRApLDItGcMyyNMxrKoyMNLlXezCnCQBCn2e0vDNxVdR8vpBhyNLCSVQ%2B%2Bx6sjYZI4xBpkZ4ROADODG10oJfU5zJqqBerH0H4QB1qwWSjssxY7OxioO7OI8piGi\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=88b1c708b5f011eea31eb21ce3eda698; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=88b1c708b5f011eea31eb21ce3eda698a905507fba63e3848da74292c33fd361bd1b30e33f6ecfc5f63cf3b6d85880ad; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d4f94a86facdc66ea2f2cb7b0f4ffcc488bc5db8-1705575518; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=uj.SMsSJzdtCzjQaJBHJLSlT5N1u46blnWJfkS4jd50-1705575518632-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575521","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1094, 1, '1d408150-31fc-441f-b48a-13aad6d61c0b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/37/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/37/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575519091439200, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1d408150-31fc-441f-b48a-13aad6d61c0b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"1d408150-31fc-441f-b48a-13aad6d61c0b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"1d408150-31fc-441f-b48a-13aad6d61c0b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652f058015e3a-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:39 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=L19U1yqp67Iy1bqJMuIGPcRLuq5xZqbP8o5%2B7KQgCV22JHQus%2BSrL%2B1pq4RTBQ%2Fl1YKkQiCfEniCmPYGpRo1%2FWXrIT%2FAoBn67kpxjLwODDzgHqVXuwSd0jCOUOU0\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2203","Server":"cloudflare","Set-Cookie":"__dcfduid=88f3417eb5f011ee8c750267d10d6995; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=88f3417eb5f011ee8c750267d10d6995f3ecf1a510159adffb42d52976e153a54f4a8c2692870f30b672fc55541fa9a4; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5b611484b7450f44bd88935639e49cb7c04d7032-1705575519; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Z67InkmzrRGWOixngCjnb2XHqtOvqYLJJCnsLpzrwmc-1705575519061-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575522","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (1112, 1, '30ce78cb-0a54-4a98-8345-378fd620ab52', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/46/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/46/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575519110231200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"30ce78cb-0a54-4a98-8345-378fd620ab52","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"30ce78cb-0a54-4a98-8345-378fd620ab52","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"30ce78cb-0a54-4a98-8345-378fd620ab52","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652efbfea5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:39 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=kbDmsiZi5jyPKvhFACs4pXbSbR5RGry20FoUuGhZWzSUJ9e8T05T7aG1Vd3Bm7jTt46PBW8BfV3PfqF%2BmMKJuGzIG%2BoheuMC%2F9UkJnQ%2FP%2Bja3eVtfLHZax8FkJ70\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=88f5e320b5f011ee956e5e6ac2312080; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=88f5e320b5f011ee956e5e6ac2312080ca7908a11c9ee558bcee110efc25c283ab7419986db87dd883250c9172f440d7; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5b611484b7450f44bd88935639e49cb7c04d7032-1705575519; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=zQle4kfQ7lvn6Unz_4mQl97Jhla6n9.UpDe39mEHobA-1705575519078-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575521","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1096, 1, 'd1fa753f-51e5-4826-b36c-007a7eea257b', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/38/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/38/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575520436993900, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d1fa753f-51e5-4826-b36c-007a7eea257b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"d1fa753f-51e5-4826-b36c-007a7eea257b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"d1fa753f-51e5-4826-b36c-007a7eea257b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652f4f9445e3a-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:40 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=uIuw5Gt6P3AoMgfHPCE%2BNJJIaTQfLmePp4ZhQpej7S7wkAfUz4Acs4Y%2B6PGAW8e%2FyzbkPD5uWwlKuApFc3Kb0jdnoEDLQWfgTbxmx9L11scNvoqr2qXyfIT%2FPqe3\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2063","Server":"cloudflare","Set-Cookie":"__dcfduid=89c0a01ab5f011ee86defa061f2ac903; Expires=Tue, 16-Jan-2029 10:58:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=89c0a01ab5f011ee86defa061f2ac9033e8fb857a44595ece5ff374d4d8cfe25a117867b505a1cbb3c3866cc5a0cf708; Expires=Tue, 16-Jan-2029 10:58:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=60f1d629456b607e0e01ba464460e82b3d90026e-1705575520; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=MWmFPLIoId8PfWjAUme00VlroGzvLzwFXn0qL.hpRMw-1705575520407-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575523","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (1092, 1, '1f3555ca-ef47-402b-abbf-2b3c9f4ac7e5', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/36/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/36/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575518457372100, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1f3555ca-ef47-402b-abbf-2b3c9f4ac7e5","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"1f3555ca-ef47-402b-abbf-2b3c9f4ac7e5","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"1f3555ca-ef47-402b-abbf-2b3c9f4ac7e5","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652ec7efb5e3a-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=v6P%2B3CGvWzu5lW6gogD2rjM%2Fq7YfA8hRbSSfnfLHsYNVSY%2BiR8oicZJZGebMV%2FD0rbyG7%2Fu3%2BH%2FM5F0tJqeBjwBwEteJ0dZneJ79Rl66xgK2cLsqU2m8cLeEgiUH\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2036","Server":"cloudflare","Set-Cookie":"__dcfduid=88929e8cb5f011eeb29566eceb6731eb; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=88929e8cb5f011eeb29566eceb6731ebd50291806bb8a8a53cd277e81a3f974d7e051a83d6a34eb3280d70982c410e9c; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d4f94a86facdc66ea2f2cb7b0f4ffcc488bc5db8-1705575518; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=mNlFN0uI8ERcEeSyvma76k1dOlIVM1zS64zRtoTU1s4-1705575518428-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575521","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}');
INSERT INTO public.hook_task VALUES (1114, 1, 'cd408923-03d2-4d3b-9918-efad963ff18e', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/47/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/47/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575519806249300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"cd408923-03d2-4d3b-9918-efad963ff18e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"cd408923-03d2-4d3b-9918-efad963ff18e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"cd408923-03d2-4d3b-9918-efad963ff18e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652f478d25e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:39 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=PZF4eOXEN80D7mBGl55m8mw1UvoD%2BiJ4KaO%2FEgGO%2B7Kj4PRPVKLLcJXyN5Y2wBosnKsHrIo0Njmv3%2Bq%2FyhpO2YWhQFBhSpb5VSs4XN%2Fwuy03kou8ET9VjrX1mmpk\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=896080ccb5f011ee9cfab21ce3eda698; Expires=Tue, 16-Jan-2029 10:58:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=896080ccb5f011ee9cfab21ce3eda69852d4ef23cc78bf6263887bf2b9cc1a42736255e962454afb34e8244a75767a4b; Expires=Tue, 16-Jan-2029 10:58:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5b611484b7450f44bd88935639e49cb7c04d7032-1705575519; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=F8xNCB0x9yQv7ZclqNzx_a_.eOlT3rpaax7nhi7B.TM-1705575519777-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575522","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1097, 1, '067b2222-ffe3-4cbf-bf4b-b8e600437ba1', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/38/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/38/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575520838167100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"067b2222-ffe3-4cbf-bf4b-b8e600437ba1","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"067b2222-ffe3-4cbf-bf4b-b8e600437ba1","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"067b2222-ffe3-4cbf-bf4b-b8e600437ba1","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652faca915e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:40 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=KLkNIh2vqp4xdQ4v%2B8CvIgXT7kQYjU6fARqM4IRCThmSHCDCZsvNZeL8Hg%2BaNZCxtvSWtx14LrBTriYRQ0%2FwNjVgGscWQuC9BT1kCeXs%2FqS2MOtqryR8f6kTX%2FyR\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=89fce0b6b5f011eea65666eceb6731eb; Expires=Tue, 16-Jan-2029 10:58:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=89fce0b6b5f011eea65666eceb6731eb6858bb392de0a52262ae3df0c0126cd01c99d4f38fc243237181e4ed0e9f0997; Expires=Tue, 16-Jan-2029 10:58:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=60f1d629456b607e0e01ba464460e82b3d90026e-1705575520; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=qH4av4F3a_d.Mt6h.3yN6qbFz.OpU1WOS9PwvfzLUrU-1705575520808-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575523","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1098, 1, '3ff6eda8-619e-43ec-ac33-9114492ece29', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/39/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/39/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575521232037300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3ff6eda8-619e-43ec-ac33-9114492ece29","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"3ff6eda8-619e-43ec-ac33-9114492ece29","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"3ff6eda8-619e-43ec-ac33-9114492ece29","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652fd4b3d5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:41 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ilIcj6jIO8MoBe8Ubba5rAcEhMOhE%2BfBuj5ongLmbSPwto3t5d94B8IrNtgf1uVHnDjnjkskOV4evaqGgXstYHItWV9oCRb10yg3ZXok%2BcHssTvQc7jDSB241dBw\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=8a3a0eb4b5f011ee81a97e2692e27cb8; Expires=Tue, 16-Jan-2029 10:58:41 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8a3a0eb4b5f011ee81a97e2692e27cb81e5bc9d6032a24647964a11477078d27f8bb46a58acdfdc3e64ce3cec12f6c7c; Expires=Tue, 16-Jan-2029 10:58:41 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=623760edcba99010ea034b192cdec1eabdce3e78-1705575521; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=iOwnJJ_PhHosznl2tIDnnko7ifCyhhzhL4STKYCMeOQ-1705575521202-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575523","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1099, 1, 'd1051309-ab15-471c-874d-8ba39d4a076f', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/39/merge deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/39/merge",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575521658431500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d1051309-ab15-471c-874d-8ba39d4a076f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"d1051309-ab15-471c-874d-8ba39d4a076f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"d1051309-ab15-471c-874d-8ba39d4a076f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652ffdbda5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:41 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=TSSvoDRPlk5I%2Fmdziu1dC%2F8UEwZcje1eUoi8pQCFkRT%2F1gXcNyOnxeSpWLv%2F%2BiMO4eeNdxi5F5Mb10ISgs07jmLqrJwW%2Bc1j5PnoNz1%2BL3B1EwYxLo4W6HuP5pEl\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=8a7abfd6b5f011eeb5bd2ef1960fe1ba; Expires=Tue, 16-Jan-2029 10:58:41 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8a7abfd6b5f011eeb5bd2ef1960fe1baa6ce839da15e780d01ce161cc309dfa3e76ae95df0e71fb28a0d71f15f1aa8b6; Expires=Tue, 16-Jan-2029 10:58:41 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=623760edcba99010ea034b192cdec1eabdce3e78-1705575521; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=0cK9FtfGW1s2..496Wo8Fo0XCxzrX5ieEphvRk31C9Y-1705575521629-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575524","X-Ratelimit-Reset-After":"2"},"body":""}');
INSERT INTO public.hook_task VALUES (1100, 1, '2c59c25b-437f-401b-84ec-8286fbbaa4bb', '{
  "wait": false,
  "content": "",
  "username": "Gitea",
  "avatar_url": "https://try.gitea.io/assets/img/logo.png",
  "tts": false,
  "embeds": [
    {
      "title": "[binh-dinh-f1/website] tag refs/merge-requests/40/head deleted",
      "description": "",
      "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/40/head",
      "color": 16724530,
      "footer": {
        "text": ""
      },
      "author": {
        "name": "binh-dinh-f1",
        "url": "https://git.gdtsolutions.vn/binh-dinh-f1",
        "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2"
      },
      "fields": null
    }
  ]
}', 'delete', true, 1705575522298455100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"2c59c25b-437f-401b-84ec-8286fbbaa4bb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"2c59c25b-437f-401b-84ec-8286fbbaa4bb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"2c59c25b-437f-401b-84ec-8286fbbaa4bb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847653027c6d5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:42 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=I1EI8txd4Bby4s%2B7KAy%2ByI%2F489yJwFQB4SO50MaANOQHYsM9TD21IGETFAgWmN7jUHaRSbE9Rl6ervy2R0YQlSNtxTw%2BYDkz0lP5eZjx1ZFIaSyEyxkuhomQJDpH\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=8ad61f84b5f011ee92b97e2692e27cb8; Expires=Tue, 16-Jan-2029 10:58:42 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8ad61f84b5f011ee92b97e2692e27cb805739c3a02f415bc5712b268b7518e4d2211e74d3b46cfafda9ae39dbcf851cd; Expires=Tue, 16-Jan-2029 10:58:42 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=aa34770d24dbaa26e1e391448df171ca591bd482-1705575522; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=07eGgHkUGRiM3sleVYFGtn0yswnnjp_WVA5Ey28nwEk-1705575522269-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575524","X-Ratelimit-Reset-After":"2"},"body":""}');


--
-- Data for Name: issue; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.issue VALUES (8, 21, 7, 11, '', 0, 'update add nam giang day', '', 0, 0, true, true, 0, '', 0, 1702545113, 1702545135, 1702545133, false, 0);
INSERT INTO public.issue VALUES (1, 1, 1, 1, '', 0, 'Test tạo issue', 'Test tạo issue trên repo test của **Tuấn**', 0, 0, false, false, 1, '', 0, 1685071485, 1685071535, 0, false, 0);
INSERT INTO public.issue VALUES (19, 21, 18, 11, '', 0, 'import hoc vien', '', 0, 0, true, true, 0, '', 0, 1702950871, 1702953627, 1702953625, false, 0);
INSERT INTO public.issue VALUES (35, 21, 34, 11, '', 0, 'update phan quyen chinh sua', '', 0, 0, true, true, 0, '', 0, 1704337707, 1704337727, 1704337726, false, 0);
INSERT INTO public.issue VALUES (15, 21, 14, 11, '', 0, 'import nha giao', '', 0, 0, true, true, 0, '', 0, 1702883674, 1702883704, 1702883703, false, 0);
INSERT INTO public.issue VALUES (2, 21, 1, 1, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1702096324, 1702096970, 1702096969, false, 0);
INSERT INTO public.issue VALUES (34, 21, 33, 11, '', 0, 'update edit location hoso', '', 0, 0, true, true, 0, '', 0, 1704337467, 1704337488, 1704337487, false, 0);
INSERT INTO public.issue VALUES (16, 21, 15, 11, '', 0, 'filter QuanHuyenViewSo + Json HS/SV', '', 0, 0, true, true, 0, '', 0, 1702887099, 1702887118, 1702887117, false, 0);
INSERT INTO public.issue VALUES (3, 21, 2, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1702262288, 1702262653, 1702262651, false, 0);
INSERT INTO public.issue VALUES (37, 21, 36, 11, '', 0, 'add nld change year nhucau', '', 0, 0, true, true, 0, '', 0, 1704352552, 1704352574, 1704352572, false, 0);
INSERT INTO public.issue VALUES (4, 21, 3, 11, '', 0, 'update nguoi tao filter', '', 0, 0, true, true, 0, '', 0, 1702268898, 1702268924, 1702268923, false, 0);
INSERT INTO public.issue VALUES (17, 21, 16, 11, '', 0, 'fix giao dien', '', 0, 0, true, true, 0, '', 0, 1702887891, 1702887924, 1702887923, false, 0);
INSERT INTO public.issue VALUES (36, 21, 35, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1704349752, 1704349775, 1704349774, false, 0);
INSERT INTO public.issue VALUES (9, 21, 8, 11, '', 0, 'up code', '', 0, 0, true, true, 0, '', 0, 1702610165, 1702610185, 1702610183, false, 0);
INSERT INTO public.issue VALUES (20, 21, 19, 11, '', 0, 'update file excel hoc vien', '', 0, 0, true, true, 0, '', 0, 1702957079, 1702957101, 1702957099, false, 0);
INSERT INTO public.issue VALUES (5, 21, 4, 11, '', 0, 'render Action NLĐ', '', 0, 0, true, true, 0, '', 0, 1702367030, 1702367055, 1702367054, false, 0);
INSERT INTO public.issue VALUES (38, 21, 37, 11, '', 0, 'update bao cao', '', 0, 0, true, true, 0, '', 0, 1704422986, 1704423007, 1704423005, false, 0);
INSERT INTO public.issue VALUES (18, 21, 17, 11, '', 0, 'fix bang du lieu import excel', '', 0, 0, true, true, 0, '', 0, 1702891923, 1702891943, 1702891942, false, 0);
INSERT INTO public.issue VALUES (6, 21, 5, 11, '', 0, 'update row nld', '', 0, 0, true, true, 0, '', 0, 1702372528, 1702372550, 1702372549, false, 0);
INSERT INTO public.issue VALUES (40, 21, 39, 11, '', 0, 'update Loai hinh csgdnn', '', 0, 0, true, true, 0, '', 0, 1704444548, 1704444568, 1704444567, false, 0);
INSERT INTO public.issue VALUES (7, 21, 6, 11, '', 0, 'cmt QMTS + edit url KeHoachTuyenSinh', '', 0, 0, true, true, 0, '', 0, 1702438663, 1702438682, 1702438681, false, 0);
INSERT INTO public.issue VALUES (39, 21, 38, 11, '', 0, 'update bao cao tuyen sinh', '', 0, 0, true, true, 0, '', 0, 1704428623, 1704428657, 1704428655, false, 0);
INSERT INTO public.issue VALUES (24, 21, 23, 11, '', 0, 'add ke hoach tuyen sinh', '', 0, 0, true, true, 0, '', 0, 1703581435, 1703581457, 1703581455, false, 0);
INSERT INTO public.issue VALUES (10, 21, 9, 11, '', 0, 'add PLTDDT', '', 0, 0, true, true, 0, '', 0, 1702615287, 1702615308, 1702615307, false, 0);
INSERT INTO public.issue VALUES (21, 21, 20, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1702958702, 1702958723, 1702958721, false, 0);
INSERT INTO public.issue VALUES (22, 21, 21, 11, '', 0, 'fix giao dien', '', 0, 0, true, true, 0, '', 0, 1702978970, 1702979015, 1702979013, false, 0);
INSERT INTO public.issue VALUES (11, 21, 10, 11, '', 0, 'update form thong tin tot nghiep', '', 0, 0, true, true, 0, '', 0, 1702625965, 1702625987, 1702625985, false, 0);
INSERT INTO public.issue VALUES (27, 21, 26, 11, '', 0, 'add chi tieu tuyen sinh', '', 0, 0, true, true, 0, '', 0, 1703757395, 1703757416, 1703757414, false, 0);
INSERT INTO public.issue VALUES (41, 21, 40, 11, '', 0, 'add bao cao TN', '', 0, 0, true, true, 0, '', 0, 1704446441, 1704446463, 1704446462, false, 0);
INSERT INTO public.issue VALUES (12, 21, 11, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1702626224, 1702626249, 1702626247, false, 0);
INSERT INTO public.issue VALUES (23, 21, 22, 11, '', 0, 'update QLLD_NhuCauTuyenSinh', '', 0, 0, true, true, 0, '', 0, 1703217095, 1703217119, 1703217118, false, 0);
INSERT INTO public.issue VALUES (42, 21, 41, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1704464885, 1704464905, 1704464904, false, 0);
INSERT INTO public.issue VALUES (25, 21, 24, 11, '', 0, 'add bao cao tuyen sinh', '', 0, 0, true, true, 0, '', 0, 1703733080, 1703733102, 1703733100, false, 0);
INSERT INTO public.issue VALUES (13, 21, 12, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1702641375, 1702641400, 1702641398, false, 0);
INSERT INTO public.issue VALUES (43, 21, 42, 11, '', 0, 'add menu bao ccao thong ke', '', 0, 0, true, true, 0, '', 0, 1704526096, 1704526121, 1704526119, false, 0);
INSERT INTO public.issue VALUES (26, 21, 25, 11, '', 0, 'update ThuongTru_ThonXom', '', 0, 0, true, true, 0, '', 0, 1703749792, 1703749814, 1703749812, false, 0);
INSERT INTO public.issue VALUES (14, 21, 13, 11, '', 0, 'fix tths', '', 0, 0, true, true, 0, '', 0, 1702641469, 1702642086, 1702642084, false, 0);
INSERT INTO public.issue VALUES (30, 21, 29, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1704247123, 1704247145, 1704247144, false, 0);
INSERT INTO public.issue VALUES (44, 21, 43, 11, '', 0, 'add file', '', 0, 0, true, true, 0, '', 0, 1704530824, 1704530897, 1704530897, false, 0);
INSERT INTO public.issue VALUES (28, 21, 27, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1703820630, 1703820651, 1703820649, false, 0);
INSERT INTO public.issue VALUES (45, 21, 44, 11, '', 0, 'add 4 task bao cao', '', 0, 0, true, true, 0, '', 0, 1704533556, 1704533603, 1704533602, false, 0);
INSERT INTO public.issue VALUES (29, 21, 28, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1703842267, 1703842291, 1703842288, false, 0);
INSERT INTO public.issue VALUES (46, 21, 45, 11, '', 0, 'phan row bao cao nha giao', '', 0, 0, true, true, 0, '', 0, 1704534493, 1704534542, 1704534540, false, 0);
INSERT INTO public.issue VALUES (31, 21, 30, 11, '', 0, 'fix stlye detail khts', '', 0, 0, true, true, 0, '', 0, 1704247785, 1704247806, 1704247805, false, 0);
INSERT INTO public.issue VALUES (47, 21, 46, 11, '', 0, 'fix css', '', 0, 0, true, true, 0, '', 0, 1704534880, 1704534900, 1704534900, false, 0);
INSERT INTO public.issue VALUES (33, 21, 32, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1704270123, 1704270141, 1704270141, false, 0);
INSERT INTO public.issue VALUES (32, 21, 31, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1704254940, 1704254967, 1704254966, false, 0);
INSERT INTO public.issue VALUES (48, 21, 47, 11, '', 0, 'fix css', '', 0, 0, true, true, 0, '', 0, 1704535514, 1704535535, 1704535534, false, 0);
INSERT INTO public.issue VALUES (49, 21, 48, 11, '', 0, 'fix height body item menu', '', 0, 0, true, true, 0, '', 0, 1704538836, 1704538859, 1704538858, false, 0);
INSERT INTO public.issue VALUES (53, 21, 52, 11, '', 0, 'update fontfamily', '', 0, 0, true, true, 0, '', 0, 1704561808, 1704561831, 1704561828, false, 0);
INSERT INTO public.issue VALUES (73, 21, 72, 11, '', 0, 'fix thong bao loi hs + nha giao', '', 0, 0, true, true, 0, '', 0, 1704854933, 1704854954, 1704854952, false, 0);
INSERT INTO public.issue VALUES (76, 21, 75, 11, '', 0, 'add bao cao', '', 0, 0, true, true, 0, '', 0, 1704878193, 1704878218, 1704878216, false, 0);
INSERT INTO public.issue VALUES (50, 21, 49, 11, '', 0, 'update title menu bao cao', '', 0, 0, true, true, 0, '', 0, 1704540566, 1704540616, 1704540615, false, 0);
INSERT INTO public.issue VALUES (65, 21, 64, 11, '', 0, 'change zindex ModalEditTTTN', '', 0, 0, true, true, 0, '', 0, 1704766189, 1704766276, 1704766275, false, 0);
INSERT INTO public.issue VALUES (54, 21, 53, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1704563532, 1704563578, 1704563577, false, 0);
INSERT INTO public.issue VALUES (60, 21, 59, 11, '', 0, 'upcode rang buoc', '', 0, 0, true, true, 0, '', 0, 1704685350, 1704685374, 1704685372, false, 0);
INSERT INTO public.issue VALUES (51, 21, 50, 11, '', 0, 'fix giao dien', '', 0, 0, true, true, 0, '', 0, 1704558884, 1704558907, 1704558905, false, 0);
INSERT INTO public.issue VALUES (74, 21, 73, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1704868558, 1704868580, 1704868578, false, 0);
INSERT INTO public.issue VALUES (55, 21, 54, 11, '', 0, 'update search menu bao cao', '', 0, 0, true, true, 0, '', 0, 1704649708, 1704649734, 1704649732, false, 0);
INSERT INTO public.issue VALUES (52, 21, 51, 11, '', 0, 'add ui screen', '', 0, 0, true, true, 0, '', 0, 1704559642, 1704559663, 1704559662, false, 0);
INSERT INTO public.issue VALUES (75, 21, 74, 11, '', 0, 'update search menu', '', 0, 0, true, true, 0, '', 0, 1704870386, 1704870509, 1704870508, false, 0);
INSERT INTO public.issue VALUES (56, 21, 55, 11, '', 0, 'fix focus search', '', 0, 0, true, true, 0, '', 0, 1704650077, 1704650455, 1704650452, false, 0);
INSERT INTO public.issue VALUES (57, 21, 56, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1704679116, 1704679143, 1704679141, false, 0);
INSERT INTO public.issue VALUES (77, 21, 76, 11, '', 0, 'fix info hoc vien', '', 0, 0, true, true, 0, '', 0, 1704878890, 1704878912, 1704878912, false, 0);
INSERT INTO public.issue VALUES (61, 21, 60, 11, '', 0, 'fix giao dien', '', 0, 0, true, true, 0, '', 0, 1704698135, 1704698168, 1704698165, false, 0);
INSERT INTO public.issue VALUES (79, 21, 78, 11, '', 0, 'style header', '', 0, 0, true, true, 0, '', 0, 1704944124, 1704944217, 1704944215, false, 0);
INSERT INTO public.issue VALUES (58, 21, 57, 11, '', 0, 'update search menu bao cao', '', 0, 0, true, true, 0, '', 0, 1704679825, 1704679846, 1704679844, false, 0);
INSERT INTO public.issue VALUES (78, 21, 77, 11, '', 0, 'change api kq tuyen sinh', '', 0, 0, true, true, 0, '', 0, 1704937750, 1704937772, 1704937771, false, 0);
INSERT INTO public.issue VALUES (59, 21, 58, 11, '', 0, 'fix text tim kiem', '', 0, 0, true, true, 0, '', 0, 1704681571, 1704681600, 1704681599, false, 0);
INSERT INTO public.issue VALUES (81, 21, 80, 11, '', 0, 'fix bao cao', '', 0, 0, true, true, 0, '', 0, 1704947466, 1704947505, 1704947505, false, 0);
INSERT INTO public.issue VALUES (62, 21, 61, 11, '', 0, 'add detail gv nhieu co so', '', 0, 0, true, true, 0, '', 0, 1704705497, 1704705565, 1704705564, false, 0);
INSERT INTO public.issue VALUES (80, 21, 79, 11, '', 0, 'add ty le tuyen sinh tot nghiep', '', 0, 0, true, true, 0, '', 0, 1704945575, 1704945596, 1704945594, false, 0);
INSERT INTO public.issue VALUES (66, 21, 65, 11, '', 0, 'fix zindex', '', 0, 0, true, true, 0, '', 0, 1704767034, 1704767055, 1704767054, false, 0);
INSERT INTO public.issue VALUES (63, 21, 62, 11, '', 0, 'fix css', '', 0, 0, true, true, 0, '', 0, 1704706455, 1704706492, 1704706490, false, 0);
INSERT INTO public.issue VALUES (84, 21, 83, 11, '', 0, 'add btn gui mail', '', 0, 0, true, true, 0, '', 0, 1704990699, 1704990831, 1704990830, false, 0);
INSERT INTO public.issue VALUES (82, 21, 81, 11, '', 0, 'fix loi bao cao', '', 0, 0, true, true, 0, '', 0, 1704956673, 1704956851, 1704956850, false, 0);
INSERT INTO public.issue VALUES (64, 21, 63, 11, '', 0, 'update filter year hs/sv', '', 0, 0, true, true, 0, '', 0, 1704707844, 1704707883, 1704707882, false, 0);
INSERT INTO public.issue VALUES (83, 21, 82, 11, '', 0, 'fix hidden err bao cao', '', 0, 0, true, true, 0, '', 0, 1704958007, 1704958042, 1704958041, false, 0);
INSERT INTO public.issue VALUES (70, 21, 69, 11, '', 0, 'add required tu ngay den ngay', '', 0, 0, true, true, 0, '', 0, 1704787806, 1704787826, 1704787825, false, 0);
INSERT INTO public.issue VALUES (67, 21, 66, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1704774821, 1704774843, 1704774842, false, 0);
INSERT INTO public.issue VALUES (68, 21, 67, 11, '', 0, 'update check requite bao cao', '', 0, 0, true, true, 0, '', 0, 1704783845, 1704783868, 1704783866, false, 0);
INSERT INTO public.issue VALUES (85, 21, 84, 11, '', 0, 'fix change so nam', '', 0, 0, true, true, 0, '', 0, 1705025955, 1705025976, 1705025976, false, 0);
INSERT INTO public.issue VALUES (86, 21, 85, 11, '', 0, 'add fuc in send gmail', '', 0, 0, true, true, 0, '', 0, 1705030721, 1705030759, 1705030758, false, 0);
INSERT INTO public.issue VALUES (69, 21, 68, 11, '', 0, 'add check trung chi tieu', '', 0, 0, true, true, 0, '', 0, 1704784774, 1704784796, 1704784795, false, 0);
INSERT INTO public.issue VALUES (71, 21, 70, 11, '', 0, 'add list choose cs gdnn', '', 0, 0, true, true, 0, '', 0, 1704807686, 1704807709, 1704807707, false, 0);
INSERT INTO public.issue VALUES (87, 21, 86, 11, '', 0, 'fix icon user', '', 0, 0, true, true, 0, '', 0, 1705044509, 1705044538, 1705044537, false, 0);
INSERT INTO public.issue VALUES (88, 21, 87, 11, '', 0, 'fix api tong hop so lieu tuyen sinh', '', 0, 0, true, true, 0, '', 0, 1705045387, 1705045583, 1705045581, false, 0);
INSERT INTO public.issue VALUES (72, 21, 71, 11, '', 0, 'add btn gui mail nhac nho', '', 0, 0, true, true, 0, '', 0, 1704853899, 1704853919, 1704853918, false, 0);
INSERT INTO public.issue VALUES (89, 21, 88, 11, '', 0, 'fix bao cao tuyen sinh nn/nam', '', 0, 0, true, true, 0, '', 0, 1705047309, 1705047330, 1705047329, false, 0);
INSERT INTO public.issue VALUES (90, 21, 89, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1705050067, 1705050103, 1705050102, false, 0);
INSERT INTO public.issue VALUES (91, 21, 90, 11, '', 0, 'hidden kehoachdapheduyet', '', 0, 0, true, true, 0, '', 0, 1705052721, 1705052743, 1705052742, false, 0);
INSERT INTO public.issue VALUES (92, 21, 91, 11, '', 0, 'add menu thong bao', '', 0, 0, true, true, 0, '', 0, 1705207976, 1705208015, 1705208013, false, 0);
INSERT INTO public.issue VALUES (93, 21, 92, 11, '', 0, 'add full action', '', 0, 0, true, true, 0, '', 0, 1705311355, 1705311410, 1705311410, false, 0);
INSERT INTO public.issue VALUES (94, 21, 93, 11, '', 0, 'fix bug', '', 0, 0, true, true, 0, '', 0, 1705311938, 1705312013, 1705312011, false, 0);
INSERT INTO public.issue VALUES (95, 21, 94, 11, '', 0, 'fix bug', '', 0, 0, true, true, 0, '', 0, 1705312948, 1705312969, 1705312967, false, 0);
INSERT INTO public.issue VALUES (100, 29, 2, 1, 'dungnguyn', 5662031, 'Error - Phiên họp đã bắt đầu + tài khoản thư ký', '+ Hoàn thành vấn đề đang thảo luận.
+ Hoàn thành nội dung đang họp.
+ Kết thúc phiên họp.', 0, 0, false, false, 5, '', 0, 1637218187, 1639562456, 0, false, 0);
INSERT INTO public.issue VALUES (97, 21, 96, 11, '', 0, 'fix loi', '', 0, 0, true, true, 0, '', 0, 1705321128, 1705321149, 1705321148, false, 0);
INSERT INTO public.issue VALUES (96, 21, 95, 11, '', 0, 'fix giao dien', '', 0, 0, true, true, 0, '', 0, 1705320577, 1705320611, 1705320610, false, 0);
INSERT INTO public.issue VALUES (225, 21, 109, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1705463145, 1705463233, 1705463231, false, 0);
INSERT INTO public.issue VALUES (101, 29, 3, 1, 'dungnguyn', 5662031, 'Tài khoản chuyên viên không được truy cập', 'Lúc login, kiểm tra nếu là chuyên viên thì hiển thị thông báo không được vào.', 0, 0, true, false, 2, '', 0, 1637218994, 1637229597, 1637229007, false, 0);
INSERT INTO public.issue VALUES (102, 29, 4, 1, 'dungnguyn', 5662031, 'Trong phiên họp không biết mình đang dư phiên nào', 'Nên ghi rõ tên phiên ra.', 0, 0, true, false, 2, '', 0, 1637219116, 1637229799, 1637229799, false, 0);
INSERT INTO public.issue VALUES (98, 21, 97, 11, '', 0, 'add screen', '', 0, 0, true, true, 0, '', 0, 1705321817, 1705321842, 1705321840, false, 0);
INSERT INTO public.issue VALUES (103, 29, 5, 1, 'dungnguyn', 5662031, 'Error - Thành viên thuộc nhóm Ủy ban nhân dân mới được biểu quyết + phát biểu còn lại chỉ được  phát biểu.', '', 0, 0, false, false, 4, '', 0, 1637227978, 1639965253, 0, false, 0);
INSERT INTO public.issue VALUES (104, 29, 6, 1, 'dungnguyn', 5662031, 'Task - App luôn bật màn hình.', '', 0, 0, false, false, 6, '', 0, 1637228137, 1640137118, 0, false, 0);
INSERT INTO public.issue VALUES (99, 21, 98, 11, '', 0, 'fix search all page', '', 0, 0, true, true, 0, '', 0, 1705329299, 1705329330, 1705329329, false, 0);
INSERT INTO public.issue VALUES (105, 29, 8, 1, 'tiensybinhdinh', 10245630, 'Error - Trong phiên họp để ngang màn hình ĐT không load được DS phát biểu', '![e716c97d613eaa60f32f](/uploads/1d31daf2ccaba50f2169163a6d6272c7/e716c97d613eaa60f32f.jpg)', 0, 0, false, false, 5, '', 0, 1637288258, 1637545508, 0, false, 0);
INSERT INTO public.issue VALUES (107, 29, 10, 1, 'tiensybinhdinh', 10245630, 'Error - Thoát phiên họp từ thông báo bị crassh', '', 0, 0, false, false, 3, '', 0, 1637290355, 1637551128, 0, false, 0);
INSERT INTO public.issue VALUES (108, 29, 11, 1, 'dungnguyn', 5662031, 'Error -Tất cả những file đính kèm không có file thì hiển thị thông báo không cần hiển thị cái bảng.', '', 0, 0, false, false, 2, '', 0, 1637295442, 1639562364, 0, false, 0);
INSERT INTO public.issue VALUES (109, 29, 12, 1, 'dungnguyn', 5662031, 'Error -Danh sách nội dung trong meeting detail không hiển thị loading.', 'Không hiển thị loading chỉ hiển thị Chưa có dữ liệu xong giật một cái xuất hiện danh sách nội dung.', 0, 0, false, false, 4, '', 0, 1637295568, 1637574794, 0, false, 0);
INSERT INTO public.issue VALUES (110, 29, 13, 1, 'tiensybinhdinh', 10245630, 'Error - Tải lên tài liệu thư viện cá nhân không có trạng thái load gì hết', '', 0, 0, false, false, 2, '', 0, 1637304315, 1638760298, 0, false, 0);
INSERT INTO public.issue VALUES (111, 29, 14, 1, 'tiensybinhdinh', 10245630, 'Error - Tham gia phiên họp thì tự động điểm danh', '', 0, 0, false, false, 2, '', 0, 1637305929, 1637569535, 0, false, 0);
INSERT INTO public.issue VALUES (226, 21, 110, 11, '', 0, 'update bug', '', 0, 0, true, true, 0, '', 0, 1705561412, 1705561435, 1705561433, false, 0);
INSERT INTO public.issue VALUES (112, 29, 15, 1, 'tiensybinhdinh', 10245630, 'Error - Tại phiên họp khung  XÁC NHẬN BẮT ĐẦU PHIÊN HỌP BỊ ĐÈ + Hiển thị ủy quyền giúp từ thư ký cho chủ trì  lỗi', '![8a3c377e4f1d8443dd0c](/uploads/ac3e88178b98a8a357b8aa4c1aa9310d/8a3c377e4f1d8443dd0c.jpg)', 0, 0, false, false, 10, '', 0, 1637306145, 1639562438, 0, false, 0);
INSERT INTO public.issue VALUES (113, 29, 16, 1, 'tiensybinhdinh', 10245630, 'Error - (Trong kho tài liệu hiễn thị lỗi rỗng (Phiên 18/11/2021 2) XONG)) + (Nên làm sao để biết được đó là phiên nào (XONG)) Bổ sung Hiển bị cắt chữ mất chữ', '![4cbb1c3d90725b2c0263](/uploads/c00d8fd602dbc8c29f6c427e2a4c4cc2/4cbb1c3d90725b2c0263.jpg)![fdb13370b211794f2000](/uploads/b54e4c053e4c8061c26528be0ef50b09/fdb13370b211794f2000.jpg)', 0, 0, false, false, 7, '', 0, 1637307886, 1638760524, 0, false, 0);
INSERT INTO public.issue VALUES (114, 29, 17, 1, 'tiensybinhdinh', 10245630, 'Error - Chủ trì ủy quyền thư ký xác nhận nhưng bị báo vắng có thể bắt đầu phiên họp nhưng không tham gia họp được', 'Đã check thử phiên S21111 vẫn không vào được (Phải vào thông báo xác nhận mới vào được)', 0, 0, false, false, 7, '', 0, 1637309432, 1639562498, 0, false, 0);
INSERT INTO public.issue VALUES (115, 29, 18, 1, 'tiensybinhdinh', 10245630, 'Tính năng - Thay đổi trạng thái lịch cá nhân', 'Thư ký: 
- Phiên họp đã duyệt chưa bắt đầu: Để 1 trạng thái "Chờ bắt đầu".
- Phiên họp đã bắt đầu: Để 1 trạng thái "Đang họp".

Quản lý họp: 
- CHỉ để trạng thái: "Đang họp", "Đã duyệt".

Chủ trì: 
- Để 1 trạng thái: "Chờ duyệt", "Chờ bắt đầu", "Đang họp".
Cán bộ: Giữ nguyên trạng thái phiên họp, đưa trạng thái cán bộ lên trên.', 0, 0, false, false, 4, '', 0, 1637313429, 1638760544, 0, false, 0);
INSERT INTO public.issue VALUES (228, 21, 112, 11, '', 0, 'update phan quyen + filter', '', 0, 0, true, true, 0, '', 0, 1705631058, 1705631137, 1705631135, false, 0);
INSERT INTO public.issue VALUES (227, 21, 111, 11, '', 0, 'fix bug', '', 0, 0, true, true, 0, '', 0, 1705561832, 1705561864, 1705561862, false, 0);
INSERT INTO public.issue VALUES (117, 29, 20, 1, 'dungnguyn', 5662031, 'Thông tin cá nhân - sửa chữ bị tràn.', '', 0, 0, false, false, 2, '', 0, 1637544038, 1638243189, 0, false, 0);
INSERT INTO public.issue VALUES (119, 29, 22, 1, 'tiensybinhdinh', 10245630, 'ERROR - Chọn ý kiến thảo luận (Phiên họp vào từ thông báo) không được + Hiển thị vấn đề thảo luận trong phiên họp', '![966dee319b50500e0941](/uploads/3594e3406f3792dc07b5cba2d12f36de/966dee319b50500e0941.jpg)', 0, 0, false, false, 4, '', 0, 1637550699, 1639562306, 0, false, 0);
INSERT INTO public.issue VALUES (129, 29, 32, 1, 'dungnguyn', 5662031, 'Trong tab phiên họp, tài khoản chủ trì, phiên họp đã ủy quyền thì vẫn có hiện nút xác nhận, ủy quyền, từ chối. Phiên họp đăng ký lại báo đã  chuyển họp cho ......', '![image](/uploads/afecf30c2912ec6a9f53d9436a21ba39/image.png)![image](/uploads/2f1e6c2831a700cf516d73e38ba22432/image.png)![image](/uploads/268a80b7d77d26a1d302beaa2b180f21/image.png)', 0, 0, false, false, 3, '', 0, 1638425602, 1639561586, 0, false, 0);
INSERT INTO public.issue VALUES (130, 29, 33, 1, 'dungnguyn', 5662031, 'Thêm trường hợp thông báo cán bộ được ủy quyền.', '- Phiên họp đã được bắt đầu, cán bộ được ủy quyền sẽ nhấn vào thông báo xác nhận tham gia và vào thẳng diễn biến phiên họp.
- Phiên họp chưa bắt đầu, cán bộ được ủy quyền nhấn vào thông báo sẽ ra màng hình meeting detail.', 0, 0, false, false, 3, '', 0, 1638426571, 1639625224, 0, false, 0);
INSERT INTO public.issue VALUES (131, 29, 34, 1, 'dungnguyn', 5662031, 'Sửa api kết quả biểu quyết trong Vấn đề của phiên họp (Phần chọn ý kiến khác).', 'Trước là lúc tạo ý kiến khác sẽ call api post phương án bổ sung, rồi lấy id phương án bổ sung mới tạo để call api patch kết quả biểu quyết. Hiện tại, sẽ làm cả hai trong cùng một api.', 0, 0, false, false, 7, '', 0, 1638427751, 1638936268, 0, false, 0);
INSERT INTO public.issue VALUES (132, 29, 35, 1, 'dungnguyn', 5662031, 'Sửa api kết quả kiến trong vấn đề của phiếu lấy ý kiến.', '', 0, 0, false, false, 2, '', 0, 1638428201, 1639965245, 0, false, 0);
INSERT INTO public.issue VALUES (133, 29, 36, 1, 'dungnguyn', 5662031, 'KIểm tra cả chủ trì, tổ trưởng kiểm phiếu thì như Quản lý họp trong phiếu lấy ý kiến.', '', 0, 0, false, false, 2, '', 0, 1638429744, 1638513237, 0, false, 0);
INSERT INTO public.issue VALUES (128, 29, 31, 1, 'dungnguyn', 5662031, 'Lỗi khi xác nhận tham gia phiên họp.', 'Chọn Xác nhận, hiển thị lỗi bên dưới nhưng vẫn xác nhận tham gia thành công.
![cca33fca0004cb5a9215](/uploads/e8a77de8d93dec050a77c6e9808c412c/cca33fca0004cb5a9215.jpg)![6ab85053699da2c3fb8c](/uploads/7c88c7c2906606b641155efcc08ecf79/6ab85053699da2c3fb8c.jpg)', 0, 0, false, false, 7, '', 0, 1638413536, 1639561294, 0, false, 0);
INSERT INTO public.issue VALUES (139, 29, 42, 1, 'dungnguyn', 5662031, 'Những thông báo thuộc dạng cảnh báo, sửa thành màu cam.', '', 0, 0, false, false, 2, '', 0, 1638784251, 1639560966, 0, false, 0);
INSERT INTO public.issue VALUES (134, 29, 37, 1, 'dungnguyn', 5662031, 'Sửa giao diện danh sách tham gia ý kiến trong phiếu lấy ý kiến.', '', 0, 0, false, false, 2, '', 0, 1638499937, 1639625605, 0, false, 0);
INSERT INTO public.issue VALUES (136, 29, 39, 1, 'tiensybinhdinh', 10245630, 'Tính năng - Giao diện thư viện phiên họp không ổn', 'Nên thêm khung như bên ngoài như bên ngoài kho tài liệu![z3003384301823_ccf8aa06fecad31889981e363301cec5](/uploads/741786f6676091a81e3cbf8a3af68f86/z3003384301823_ccf8aa06fecad31889981e363301cec5.jpg)   ![image](/uploads/a9af3f5f261d5bb6497f783480c59303/image.png)', 0, 0, false, false, 6, '', 0, 1638761276, 1639562198, 0, false, 0);
INSERT INTO public.issue VALUES (137, 29, 40, 1, 'tiensybinhdinh', 10245630, 'Tính năng -  Load xem lại ý kiến bị chậm + Giao diện thống kê ý kiến thảo luận (số thập phân quá dài)', '![543a1fdf7f28b476ed39](/uploads/7d41e0fde93c618c31256cfdcb5e0f72/543a1fdf7f28b476ed39.jpg)![7658929cf26b3935607a](/uploads/27c065fc43098ebcfc84439cd3705230/7658929cf26b3935607a.jpg)', 0, 0, false, false, 4, '', 0, 1638761485, 1638935451, 0, false, 0);
INSERT INTO public.issue VALUES (138, 29, 41, 1, 'dungnguyn', 5662031, 'Tài khoản chủ trì, từ dashboard vào bắt đầu phiên họp vào thẳng diễn biến phiên họp, bấm quay lại vẫn còn thông báo bắt đầu phiên họp.', '', 0, 0, false, false, 4, '', 0, 1638784061, 1639626777, 0, false, 0);
INSERT INTO public.issue VALUES (135, 29, 38, 1, 'tiensybinhdinh', 10245630, 'ERROR - 2 Nội dung trong cùng  1 phiền cùng đang diễn ra', '![f19f8d5feda826f67fb9](/uploads/d24df1d74be37600f365e6a4938d71f9/f19f8d5feda826f67fb9.jpg)', 0, 0, false, false, 2, '', 0, 1638761008, 1639562455, 0, false, 0);
INSERT INTO public.issue VALUES (210, 29, 113, 1, 'hoatrongkylovestory1999', 8539277, 'Thêm reload và refresh. Sửa màu xanh nhạt đi một chút xíu.', '', 0, 0, false, false, 2, '', 0, 1640167505, 1640253597, 0, false, 0);
INSERT INTO public.issue VALUES (211, 29, 114, 1, 'hoatrongkylovestory1999', 8539277, 'Lịch hôm nay dữ liệu trống (Thông báo đưa vào giữa) (17/12/2021)', '', 0, 0, false, false, 2, '', 0, 1640252436, 1640253597, 0, false, 0);
INSERT INTO public.issue VALUES (212, 29, 115, 1, 'hoatrongkylovestory1999', 8539277, 'Phân trang cho cá nhân và đơn vị', '', 0, 0, false, false, 1, '', 0, 1641461354, 1641782670, 0, false, 0);
INSERT INTO public.issue VALUES (144, 29, 47, 1, 'dungnguyn', 5662031, 'Từ lịch họp cá nhân, xác nhận tham gia thành công nhưng thông báo bị đè.', '', 0, 0, true, false, 0, '', 0, 1639117295, 1639117620, 1639117620, false, 0);
INSERT INTO public.issue VALUES (106, 29, 9, 1, 'tiensybinhdinh', 10245630, 'Error - Chủ trì mở được vấn đề thảo luận từ bên ngoài xem', '', 0, 0, false, false, 10, '', 0, 1637289630, 1639626594, 0, false, 0);
INSERT INTO public.issue VALUES (116, 29, 19, 1, 'tiensybinhdinh', 10245630, 'Error (IOS) -Danh sách xác nhận phiên họp các góc trắng không cong theo', '![b5a36de1b3af78f121be](/uploads/51ef8ef5be44b37d15624388ff250239/b5a36de1b3af78f121be.jpg)', 0, 0, false, false, 3, '', 0, 1637313686, 1638243289, 0, false, 0);
INSERT INTO public.issue VALUES (120, 29, 23, 1, 'tiensybinhdinh', 10245630, 'ERROR - Xem file PDF từ mục Phiên Họp lỗi kéo không được sài các công cụ không được', '', 0, 0, false, false, 6, '', 0, 1637562564, 1641353201, 0, false, 0);
INSERT INTO public.issue VALUES (121, 29, 24, 1, 'tiensybinhdinh', 10245630, 'ERROR -Đăng ký phát biểu lỗi chính tả thông báo thành công + Hủyđăng ký trong phiên họp không thành công', '', 0, 0, false, false, 2, '', 0, 1637567534, 1639626644, 0, false, 0);
INSERT INTO public.issue VALUES (123, 29, 26, 1, 'dungnguyn', 5662031, 'Đồng bộ header.', '', 0, 0, false, false, 1, '', 0, 1637640502, 1641886518, 0, false, 0);
INSERT INTO public.issue VALUES (125, 29, 28, 1, 'datqn1234', 8343428, 'Thêm thông tin cán bộ phụ trách nội dung', '', 0, 0, false, false, 2, '', 0, 1637640812, 1639562374, 0, false, 0);
INSERT INTO public.issue VALUES (126, 29, 29, 1, 'dungnguyn', 5662031, 'Thêm tính năng từ chối cho tài khoản chủ trì.', 'Chủ trì từ chối, tức phiên họp đó chưa đủ điều kiện để được duyệt cần bổ sung thêm, chuyển trạng thái phiên họp sang bổ sung.', 0, 0, false, false, 3, '', 0, 1637716083, 1639562401, 0, false, 0);
INSERT INTO public.issue VALUES (118, 29, 21, 1, 'tiensybinhdinh', 10245630, 'ERROR - Trong phiên họp nhấn chọn ý kiến khác trong thảo luận mà không nhập ý kiến vẫn được', '', 0, 0, false, false, 2, '', 0, 1637545490, 1638760426, 0, false, 0);
INSERT INTO public.issue VALUES (122, 29, 25, 1, 'tiensybinhdinh', 10245630, 'Tính năng - Thu âm phiên họp nên cho bấm nút bự là kết thúc ghi âm luôn + Thời gian phát lại ghi âm lỗi', '![486dddaaecc727997ed6](/uploads/ac5c502eeb202ba73c2b01643176cd2f/486dddaaecc727997ed6.jpg)![0cc7f2650b07c0599916](/uploads/d9780092276e462bc76f59c16bac1bb2/0cc7f2650b07c0599916.jpg)

{{image.png}}', 0, 0, false, false, 4, '', 0, 1637570950, 1641349225, 0, false, 0);
INSERT INTO public.issue VALUES (124, 29, 27, 1, 'datqn1234', 8343428, 'Sửa giao diện thư viện phiên họp', '', 0, 0, false, false, 3, '', 0, 1637640771, 1639562263, 0, false, 0);
INSERT INTO public.issue VALUES (127, 29, 30, 1, 'dungnguyn', 5662031, 'Sửa trạng thái tham gia cho cán bộ, chủ trì, thư ký đối với phiên họp ở trạng thái bổ sung.', 'Đối với cán bộ, không hiển thị phiên họp ở trạng thái bổ sung; với chủ trì + thư ký trạng thái tham dự đổi thành ''Chờ bổ sung tài liệu''.', 0, 0, false, false, 4, '', 0, 1637744697, 1639617897, 0, false, 0);
INSERT INTO public.issue VALUES (142, 29, 45, 1, 'dungnguyn', 5662031, 'ERROR - Không thể bắt đầu phiên họp.', '{{image.png}}', 0, 0, true, false, 2, '', 0, 1638934829, 1638949649, 1638949649, false, 0);
INSERT INTO public.issue VALUES (149, 29, 52, 1, 'dungnguyn', 5662031, 'Tách nội dung phiên họp ra một trang riêng, chi tiết nội dung một trang riêng.', '', 0, 0, false, false, 2, '', 0, 1639118748, 1646614349, 0, false, 0);
INSERT INTO public.issue VALUES (140, 29, 43, 1, 'dungnguyn', 5662031, 'Chủ trì không ủy quyền được cho QLH, chỉ được ủy quyền cho thư ký của phiên họp.', '', 0, 0, false, false, 2, '', 0, 1638784656, 1639562135, 0, false, 0);
INSERT INTO public.issue VALUES (141, 29, 44, 1, 'tiensybinhdinh', 10245630, 'ERROR- Phiên họp kết thúc vẫn đẩy ra xong vẫn vào lại được', '![z3003321008689_530aebe518ef2f0d3cc01c795b8c7b71](/uploads/f9a5e485fca57ec9da56f2253c6b2cff/z3003321008689_530aebe518ef2f0d3cc01c795b8c7b71.jpg)', 0, 0, false, false, 2, '', 0, 1638934757, 1639620175, 0, false, 0);
INSERT INTO public.issue VALUES (143, 29, 46, 1, 'tiensybinhdinh', 10245630, 'ERROR- Khoảng Trống cách thiếu + Canh Đầu dòng không hài hòa', '![1](/uploads/2c109e6de273cc39e39ddf4793209814/1.jpg)![2](/uploads/04c72434b21fe584eec0b531f6a453bd/2.jpg)', 0, 0, false, false, 4, '', 0, 1638936715, 1639560442, 0, false, 0);
INSERT INTO public.issue VALUES (145, 29, 48, 1, 'dungnguyn', 5662031, 'Từ lịch họp cá nhân, xác nhận tham gia thành công nhưng thông báo bị đè.', '', 0, 0, false, false, 2, '', 0, 1639117334, 1639560670, 0, false, 0);
INSERT INTO public.issue VALUES (146, 29, 49, 1, 'dungnguyn', 5662031, 'Sửa giao diện đăng ký phát biểu.', '- Tách chữ với ảnh đại diện ra. ok
- Đưa file ghi âm ra sau trạng thái. ok', 0, 0, false, false, 5, '', 0, 1639117699, 1639618571, 0, false, 0);
INSERT INTO public.issue VALUES (147, 29, 50, 1, 'dungnguyn', 5662031, 'Sửa ngày trong lịch họp cá nhân.', '- Có từ ngày đến ngày thì giữ lại, còn có ngày tháng (10/12) thì không cần.', 0, 0, false, false, 2, '', 0, 1639117841, 1639561228, 0, false, 0);
INSERT INTO public.issue VALUES (148, 29, 51, 1, 'dungnguyn', 5662031, 'Tách list phiên họp ra thành một trang, chi tiết phiên họp thành một trang.', '', 0, 0, false, false, 2, '', 0, 1639118505, 1642140867, 0, false, 0);
INSERT INTO public.issue VALUES (150, 29, 53, 1, 'dungnguyn', 5662031, 'Hủy đăng ký phát biểu dành cho thứ ký chủ trì loại chỉ định.', '', 0, 0, false, false, 1, '', 0, 1639118895, 1639560297, 0, false, 0);
INSERT INTO public.issue VALUES (151, 29, 54, 1, 'dungnguyn', 5662031, 'Sửa giao diện ghi chú.', '- Sửa giao diện ghi chú thành 1 textarea', 0, 0, false, false, 3, '', 0, 1639119002, 1639714235, 0, false, 0);
INSERT INTO public.issue VALUES (152, 29, 55, 1, 'dungnguyn', 5662031, 'Từ thông báo vào thêm điểm danh.', '', 0, 0, false, false, 1, '', 0, 1639119143, 1639560274, 0, false, 0);
INSERT INTO public.issue VALUES (155, 29, 58, 1, 'dungnguyn', 5662031, 'Kiểm tra thông báo kết thúc phiên họp.', '', 0, 0, true, false, 0, '', 0, 1639120002, 1639121290, 1639121290, false, 0);
INSERT INTO public.issue VALUES (169, 29, 72, 1, 'dungnguyn', 5662031, 'Khi chủ trì hoặc thư ký cho phép cán bộ phát biểu, hiển thị thông báo nếu có cán bộ khác đang phát biểu.', '', 0, 0, true, false, 1, '', 0, 1639557371, 1639630381, 1639630381, false, 0);
INSERT INTO public.issue VALUES (170, 29, 73, 1, 'dungnguyn', 5662031, 'Hiển thị thông báo nội dung nào được bắt đầu họp cho tất cả mọi người.', '', 0, 0, true, false, 4, '', 0, 1639557427, 1639630547, 1639630547, false, 0);
INSERT INTO public.issue VALUES (167, 29, 70, 1, 'dungnguyn', 5662031, 'Notification.', '- [x] Trong thông báo, thêm loại ủy quyền duyệt.
- [x] Thông báo chỉ trả về tên của phiên họp, tên của phiếu lấy ý kiến.
- [ ] Thông báo chạy ngầm.
- [x] Hiển thị được thông báo trên app lúc mở app.
- [x] Click vào chi tiết của từng thông báo.
- [x] Phiên họp được duyệt cũng sẽ gửi thông báo về cho thành phần tham dự.
- [x] Thông baó của bà thư ký, kiểm tra lại.
- [x] Nhận thông báo fetch lại các compent.
- [x] Kiểm tra thông báo lần đầu tiên.', 0, 0, false, false, 18, '', 0, 1639557249, 1641289184, 0, false, 0);
INSERT INTO public.issue VALUES (168, 29, 71, 1, 'dungnguyn', 5662031, 'Hiển thị message của lỗi ra ngoài.', '- [x] thay đổi message thông báo lỗi khi bắt đầu phiên họp không có nội dung', 0, 0, false, false, 7, '', 0, 1639557282, 1641351139, 0, false, 0);
INSERT INTO public.issue VALUES (171, 29, 74, 1, 'dungnguyn', 5662031, 'Ghi âm phát biểu.', '- Kết thúc thu âm cho hiện loading để biết đang đẩy file thu âm.
- Fix lỗi ghi âm nút tiếp tục và tạm dừng lỗi khi ghi đang ghi âm mà icon tiếp tục
- Cho nút giao diện và nút thu âm nhỏ xuống.', 0, 0, false, false, 4, '', 0, 1639557468, 1639714412, 0, false, 0);
INSERT INTO public.issue VALUES (158, 29, 61, 1, 'dungnguyn', 5662031, 'Vào họp hoặc đứng trong nội dung phiên họp, màn hình vấn đề tự bật lên (xem hìnhảnh kèm theo).', '{{image.png}}', 0, 0, false, false, 2, '', 0, 1639120477, 1639362244, 0, false, 0);
INSERT INTO public.issue VALUES (161, 29, 64, 1, 'dungnguyn', 5662031, 'Duyệt phiên họp thông báo bị đè. (Vào thừ lịch họp cá nhân)', '', 0, 0, false, false, 1, '', 0, 1639368355, 1639560865, 0, false, 0);
INSERT INTO public.issue VALUES (175, 29, 78, 1, 'hoatrongkylovestory1999', 8539277, 'Text trong phần thêm ý kiến khác mặc định màu đen.', '', 0, 0, false, false, 2, '', 0, 1639560230, 1639702516, 0, false, 0);
INSERT INTO public.issue VALUES (174, 29, 77, 1, 'hoatrongkylovestory1999', 8539277, 'Làm sao để xem hết tên của vấn đề,Tiêu đề của vấn đề.', '', 0, 0, false, false, 4, '', 0, 1639560110, 1639702541, 0, false, 0);
INSERT INTO public.issue VALUES (179, 29, 82, 1, 'hoatrongkylovestory1999', 8539277, 'Hiển thị thông báo khi một vấn đề đang mở thì không mở vấn đề khác.', '', 0, 0, false, false, 2, '', 0, 1639560548, 1639702523, 0, false, 0);
INSERT INTO public.issue VALUES (180, 29, 83, 1, 'datqn1234', 8343428, 'thay đổi message thông báo lỗi khi bắt đầu phiên họp không có nội dung', '', 0, 0, false, false, 2, '', 0, 1639560656, 1639648191, 0, false, 0);
INSERT INTO public.issue VALUES (182, 29, 85, 1, 'dungnguyn', 5662031, 'Nội dung trong phiên họp.', '- [x] Thông báo hoàn thành nội dung phải được hiển thị trên tất cả modal.
- [x] Khi hoàn thành nội dung, nếu vấn đề còn mở hoặc có cán bộ đang phát biểu thì hiển thị thông báo hỏi có muốn hoàn thành nội dung không, nếu hoàn thành thì tự động đóng vấn đề và hoàn thành phát biểu.
- [x] Hiển thị thông báo nội dung nào được bắt đầu họp cho tất cả mọi người.', 0, 0, false, false, 7, '', 0, 1639561850, 1643102465, 0, false, 0);
INSERT INTO public.issue VALUES (192, 29, 95, 1, 'datqn1234', 8343428, 'Fix hiển thị đính kèm, diễn biến, kết luận', '', 0, 0, false, false, 2, '', 0, 1639648922, 1639982972, 0, false, 0);
INSERT INTO public.issue VALUES (186, 29, 89, 1, 'datqn1234', 8343428, 'chặn lăn ở lịch cá nhân', '', 0, 0, false, false, 2, '', 0, 1639563274, 1639648183, 0, false, 0);
INSERT INTO public.issue VALUES (187, 29, 90, 1, 'dungnguyn', 5662031, 'Khi hoàn thành nội dung, nếu vấn đề còn mở hoặc có cán bộ đang phát biểu thì hiển thị thông báo hỏi có muốn hoàn thành nội dung không, nếu hoàn thành thì tự động đóng vấn đề và hoàn thành phát biểu.', '', 0, 0, true, false, 2, '', 0, 1639615292, 1639630564, 1639630564, false, 0);
INSERT INTO public.issue VALUES (188, 29, 91, 1, 'dungnguyn', 5662031, 'Thông báo hoàn thành nội dung phải hiển thị trên tất cả modal.', '', 0, 0, true, false, 5, '', 0, 1639615345, 1639630584, 1639630584, false, 0);
INSERT INTO public.issue VALUES (191, 29, 94, 1, 'dungnguyn', 5662031, 'Báo vắng.', '- [x] Báo vắng có người đi thay và không có người đi thay nếu người đó đã đăng ký phát biểu rồi thì phải tự động xóa hết đăng ký phát biểu.
- [x] Đổi hai api báo vắng một cái là update thành phần tham dự một cái là PhienHop/DiThay thành một api.', 0, 0, false, false, 6, '', 0, 1639628872, 1640830658, 0, false, 0);
INSERT INTO public.issue VALUES (185, 29, 88, 1, 'datqn1234', 8343428, 'Cho nút giao diện và nút thu âm nhỏ xuống.', '', 0, 0, false, false, 2, '', 0, 1639562510, 1639648186, 0, false, 0);
INSERT INTO public.issue VALUES (189, 29, 92, 1, 'hoatrongkylovestory1999', 8539277, 'Vấn đề có hoặc không thời gian', '', 0, 0, false, false, 6, '', 0, 1639622909, 1640016994, 0, false, 0);
INSERT INTO public.issue VALUES (190, 29, 93, 1, 'hoatrongkylovestory1999', 8539277, 'Loại biểu quyếtđể xem kết quả vấn đề', '', 0, 0, false, false, 1, '', 0, 1639623367, 1641461416, 0, false, 0);
INSERT INTO public.issue VALUES (195, 29, 98, 1, 'dungnguyn', 5662031, 'Lỗi anh Tiến gán cho anh Tuấn.', '', 0, 0, false, false, 1, '', 0, 1639709435, 1639709612, 0, false, 0);
INSERT INTO public.issue VALUES (196, 29, 99, 1, 'datqn1234', 8343428, 'lỗi ghi chú nhấn phía dưới không ghi đươc', '', 0, 0, false, false, 2, '', 0, 1639714367, 1639983003, 0, false, 0);
INSERT INTO public.issue VALUES (197, 29, 100, 1, 'datqn1234', 8343428, 'xóa ghi chú không xóa hoàn toàn', '', 0, 0, false, false, 2, '', 0, 1639714399, 1639981718, 0, false, 0);
INSERT INTO public.issue VALUES (193, 29, 96, 1, 'datqn1234', 8343428, 'kéo ghi chú bên details phiên họp', '', 0, 0, false, false, 2, '', 0, 1639648983, 1639982978, 0, false, 0);
INSERT INTO public.issue VALUES (194, 29, 97, 1, 'hoatrongkylovestory1999', 8539277, 'Cho chủ trì không cần chọn ý kiến biểu quyết vẫn có thể hoàn thành.', '', 0, 0, false, false, 2, '', 0, 1639649046, 1639721625, 0, false, 0);
INSERT INTO public.issue VALUES (213, 29, 116, 1, 'hoatrongkylovestory1999', 8539277, 'Check mất kết nối mạng', '', 0, 0, true, false, 1, '', 0, 1642142002, 1642147348, 1642147348, false, 0);
INSERT INTO public.issue VALUES (214, 29, 117, 1, 'dungnguyn', 5662031, 'Loading ở trang home + danh sách phiên bị che.', '', 0, 0, false, false, 2, '', 0, 1643102294, 1647402285, 0, false, 0);
INSERT INTO public.issue VALUES (162, 29, 65, 1, 'dungnguyn', 5662031, 'Bắt đầu phiên họp, quay lại nút vào họp lúc có lúc không (Vào từ lịch họp cá nhân).', '', 0, 0, false, false, 3, '', 0, 1639368428, 1639714934, 0, false, 0);
INSERT INTO public.issue VALUES (163, 29, 66, 1, 'datqn1234', 8343428, 'Sửa trạng thái huy thư kí phien họp ( giao diện+reload)', 'Sửa trạng thái huy thư kí phien họp không load lại trạng thái ở meetingdetail', 0, 0, false, false, 2, '', 0, 1639390088, 1639707616, 0, false, 0);
INSERT INTO public.issue VALUES (153, 29, 56, 1, 'dungnguyn', 5662031, 'Vấn đề, tài khoản thư ký chỗ cán bộ chưa biểu quyết bị undefined.', '', 0, 0, false, false, 1, '', 0, 1639119770, 1639625438, 0, false, 0);
INSERT INTO public.issue VALUES (154, 29, 57, 1, 'dungnguyn', 5662031, 'Kiểm tra lại GRPC của vấn đề đối với tài khoản chủ trì và thư ký.', '', 0, 0, false, false, 2, '', 0, 1639119903, 1639387677, 0, false, 0);
INSERT INTO public.issue VALUES (157, 29, 60, 1, 'dungnguyn', 5662031, 'Sửa tiêu đề của vấn đề.', '', 0, 0, false, false, 2, '', 0, 1639120124, 1639125239, 0, false, 0);
INSERT INTO public.issue VALUES (156, 29, 59, 1, 'dungnguyn', 5662031, 'Kiểm tra thông báo kết thúc phiên họp.', '', 0, 0, false, false, 1, '', 0, 1639120029, 1639560474, 0, false, 0);
INSERT INTO public.issue VALUES (159, 29, 62, 1, 'dungnguyn', 5662031, 'Từ tab vấn đề chọn biểu quyết có thông báo thành công, như từ tab đăng ký chọn biểu quyết không có thông báo.', '', 0, 0, false, false, 1, '', 0, 1639120838, 1639369357, 0, false, 0);
INSERT INTO public.issue VALUES (160, 29, 63, 1, 'dungnguyn', 5662031, 'Thêm thông báo khi hoàn thành nội dung phiên họp.', '', 0, 0, false, false, 1, '', 0, 1639120918, 1639620204, 0, false, 0);
INSERT INTO public.issue VALUES (164, 29, 67, 1, 'dungnguyn', 5662031, 'Thêm trạng thái ủy quyền trong lịch họp cá nhân.', '', 0, 0, false, false, 1, '', 0, 1639390279, 1639624133, 0, false, 0);
INSERT INTO public.issue VALUES (165, 29, 68, 1, 'datqn1234', 8343428, 'Danh sách thư ký ủy quyền hiện tất cả thư ký khi không có thư ký phiên họp , ngoài ra hiện thư ký phiên họp', '', 0, 0, false, false, 1, '', 0, 1639445839, 1639562152, 0, false, 0);
INSERT INTO public.issue VALUES (166, 29, 69, 1, 'dungnguyn', 5662031, 'Đăng ký phát biểu.', '- [x] Đăng ký phát biểu cho khách mời.
- [x] Chỉ định phát biểu cho khách mời.
- [x] Hiển thị thông báo cán bộ đã hoàn thành thu âm cho tất cả mọi người.
- [x] Sửa nội dung bị tràn trong đăng ký phát biểu.
- [x] Thêm chủ trì,thư ký được dừng đăng ký phát biểu của cán bộ.
- [x] Cảnh báo của đăng ký phát biểu vào từ contentmeeting bị đè.
- [x] Bắt đầu vấn đề, nếu còn ai đăng ký phát biểu thì hiển thị thông báo có muốn dừng phát biểu không.(Không cần làm đã hỏi anh Vũ).
- [x] Thứ tự danh sách đăng ký phát biểu là đang phát biểu, chờ, xong.
- [x] Thống kê đăng ký phát biểu chuyển thành biểu đồ tròn.
- [x] Đổi api hủy đăng ký phát biểu từ hai thành một.
- [x] Thêm lable để thể hiện đó là đăng ký phát biểu được chỉ định.
- [x] Hiển thị cho dù cán bộ ở bất kì vị trí nào trong nội dung phiên họp.
- [x] Hiển thị trên tất cả các nội dung thông báo hoặc ghi âm phát biểu.
- [x] Sửa biểu đồ đăng ký phát biểu (màu của biểu đồ).', 0, 0, false, false, 50, '', 0, 1639557203, 1643102494, 0, false, 0);
INSERT INTO public.issue VALUES (172, 29, 75, 1, 'dungnguyn', 5662031, 'Vấn đề biểu quyết.', '- [x] Tiêu đề của vấn đề.
- [x] Làm sao để xem hết tên của vấn đề.
- [x] Text trong phần thêm ý kiến khác mặc định màu đen.
- [x] Vấn đề vào lần đầu thì xuất hiện skeleton, những lần sau không xuất hiện skeleton nhưng vẫn cập nhật dữ liệu.
- [x] Khi có cán bộ thêm ý kiến khác, thì ý kiến đó phải được cập nhật lại cho những cán bộ khác đều thấy.
- [x] Đồng bộ thông báo hoàn thành trong vấn đề, cho tên vấn đề ngắn lại khi hiển thị trong thông báo.
- [x] Hiển thị thông báo khi một vấn đề đang mở thì không mở vấn đề khác.
- [x] Kết quả biểu quyết chú thích phải nằm gần cái biểu đồ để dễ biết.
- [x] Cho chủ trì không cần chọn ý kiến biểu quyết vẫn có thể hoàn thành.
- [x] Thêm một component khi vấn đề ở trạng thái chưa thảo luận, cả chủ trì, cán bộ và thư ký đều hiển thị thông tin chung.
- [x] Chủ trì vào vấn đề hoàn thành trong phiên họp đã kết thúc không xem được biểu quyết.
- [x] Thư ký vào vấn đề chưa hoàn thành thì không được hiển thị kết quả biểu quyết.
- [x] Đổi nội dung thông báo chọn của cán bộ trong vấn đề.', 0, 0, false, false, 24, '', 0, 1639557780, 1641289294, 0, false, 0);
INSERT INTO public.issue VALUES (173, 29, 76, 1, 'dungnguyn', 5662031, 'Lịch họp đơn vị.', '- [x]  Sau khi nhấn tới hoặc quay lại tên tháng load lâu 
- [x] Lọc những tháng nào chỉ hiện thị lịch những tháng đó
- [x] Sau khi lọc phiên họp 2 tháng , rồi nhấn trên lịch 2-3 tháng nhấn hôm nay không load lại danh sách phiên họp
- [x]  Lịch hôm nay dữ liệu trống (Thông báo đưa vào giữa) (17/12/2021)
- [x] Lọc lịch tháng (Từ ngày đến ngày không có ngày hôm nay thì nên ẩn đến ngày hôm nay) (17/12/2021)
- [x] Lỗi rerender (loading lại nhiều lần) (17/12/2021)
- [x] Lịch Tháng hiển thị ngày bên dưới kéo bị đè - Hình minh họa (17/12/2021)![loi_2](/uploads/258c4372aad606e3e2bd6d82a1a6f5cf/loi_2.PNG)
- [x] Thêm reload và refresh.
- [x] Sửa màu xanh nhạt đi một chút xíu.', 0, 0, false, false, 23, '', 0, 1639559566, 1641289349, 0, false, 0);
INSERT INTO public.issue VALUES (183, 29, 86, 1, 'datqn1234', 8343428, 'Kết thúc thu âm cho hiện loading để biết đang đẩy file thu âm.', '', 0, 0, true, false, 4, '', 0, 1639562450, 1639648369, 1639648369, false, 0);
INSERT INTO public.issue VALUES (184, 29, 87, 1, 'datqn1234', 8343428, 'Kết thúc thu âm cho hiện loading để biết đang đẩy file thu âm.', '', 0, 0, false, false, 2, '', 0, 1639562497, 1639712024, 0, false, 0);
INSERT INTO public.issue VALUES (176, 29, 79, 1, 'hoatrongkylovestory1999', 8539277, 'Hiển thị thông báo khi một vấn đề đang mở thì không mở vấn đề khác.', '', 0, 0, false, false, 2, '', 0, 1639560331, 1639702519, 0, false, 0);
INSERT INTO public.issue VALUES (177, 29, 80, 1, 'hoatrongkylovestory1999', 8539277, 'Khi có cán bộ thêm ý kiến khác, thì ý kiến đó phải được cập nhật lại cho những cán bộ khác đều thấy.', '', 0, 0, false, false, 3, '', 0, 1639560456, 1639723448, 0, false, 0);
INSERT INTO public.issue VALUES (178, 29, 81, 1, 'hoatrongkylovestory1999', 8539277, 'Đồng bộ thông báo hoàn thành trong vấn đề, cho tên vấn đề ngắn lại khi hiển thị trong thông báo.', '', 0, 0, false, false, 2, '', 0, 1639560506, 1639702525, 0, false, 0);
INSERT INTO public.issue VALUES (181, 29, 84, 1, 'hoatrongkylovestory1999', 8539277, 'Vấn đề vào lần đầu thì xuất hiện skeleton, những lần sau không xuất hiện skeleton nhưng vẫn cập nhật dữ liệu.', '', 0, 0, false, false, 3, '', 0, 1639560824, 1640314260, 0, false, 0);
INSERT INTO public.issue VALUES (209, 29, 112, 1, 'hoatrongkylovestory1999', 8539277, 'Lọc những tháng nào chỉ hiện thị lịch những tháng đó', '', 0, 0, true, false, 0, '', 0, 1640167467, 1640661112, 1640661112, false, 0);
INSERT INTO public.issue VALUES (206, 29, 109, 1, 'datqn1234', 8343428, 'Trang chủ-Trạng thái trong phiên họp của phiên duyệt một là bỏ hai là đổi.', '', 0, 0, false, false, 2, '', 0, 1639983046, 1640081309, 0, false, 0);
INSERT INTO public.issue VALUES (199, 29, 102, 1, 'tiensybinhdinh', 10245630, 'FEATURE-Ủy quyền duyệt cho thư ký cố định 1 thứ ký nên không cần chọn', '', 0, 0, false, false, 1, '', 0, 1639722877, 1641455959, 0, false, 0);
INSERT INTO public.issue VALUES (201, 29, 104, 1, 'dungnguyn', 5662031, 'MeetingDetails.', '- [ ] Sửa thành phần tham dự thành cái nút trong meetingdetails.', 0, 0, false, false, 2, '', 0, 1639731038, 1639994798, 0, false, 0);
INSERT INTO public.issue VALUES (204, 29, 107, 1, 'hoatrongkylovestory1999', 8539277, 'Vấn đề trong và ngoài biểu quyết', '', 0, 0, false, false, 3, '', 0, 1639971687, 1640165972, 0, false, 0);
INSERT INTO public.issue VALUES (208, 29, 111, 1, 'dungnguyn', 5662031, 'Phiếu lấy ý kiến.', '- [x] Thêm link pdf.', 0, 0, false, false, 4, '', 0, 1640158258, 1642140879, 0, false, 0);
INSERT INTO public.issue VALUES (207, 29, 110, 1, 'datqn1234', 8343428, 'Kho tài liệu', '- [x] Sửa search 
- [x] Load thêm bị lỗi key', 0, 0, false, false, 5, '', 0, 1640074407, 1641436450, 0, false, 0);
INSERT INTO public.issue VALUES (200, 29, 103, 1, 'dungnguyn', 5662031, 'Trang chủ.', '- [x] Giảm spinner trong trang chủ.
- [x] Cho chữ tham gia từ chối nhỏ lại bằng font chữ header của dashboard.
- [x] Trạng thái trong phiên họp của phiên duyệt một là bỏ hai là đổi.
- [x] Sửa nút di chuyển, khi nào kéo danh sách phiên họp xuống dưới mới hiện cái nút ra, còn lăn lên trên thì không có nút đó.', 0, 0, false, false, 14, '', 0, 1639730384, 1641351119, 0, false, 0);
INSERT INTO public.issue VALUES (205, 29, 108, 1, 'datqn1234', 8343428, 'Trangchủ-Cho chữ tham gia từ chối nhỏ lại bằng font chữ header của dashboard.', '', 0, 0, false, false, 1, '', 0, 1639983019, 1639994802, 0, false, 0);
INSERT INTO public.issue VALUES (198, 29, 101, 1, 'datqn1234', 8343428, 'Lịch đơn vị-Lịch Tháng hiển thị ngày bên dưới kéo bị đè', '', 0, 0, false, false, 2, '', 0, 1639714547, 1639981657, 0, false, 0);
INSERT INTO public.issue VALUES (202, 29, 105, 1, 'dungnguyn', 5662031, 'Kiểm tra connect GRPC khi mất mạng.', '', 0, 0, false, false, 1, '', 0, 1639731500, 1641455844, 0, false, 0);
INSERT INTO public.issue VALUES (203, 29, 106, 1, 'dungnguyn', 5662031, 'Chỉnh toàn bộ thời gian thành giờ ngày.', '', 0, 0, false, false, 1, '', 0, 1639733777, 1639994800, 0, false, 0);
INSERT INTO public.issue VALUES (215, 21, 99, 11, '', 0, 'change login', '', 0, 0, true, true, 0, '', 0, 1705369961, 1705369982, 1705369982, false, 0);
INSERT INTO public.issue VALUES (216, 21, 100, 11, '', 0, 'fix datatable', '', 0, 0, true, true, 0, '', 0, 1705389567, 1705389625, 1705389625, false, 0);
INSERT INTO public.issue VALUES (221, 21, 105, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1705396840, 1705396865, 1705396862, false, 0);
INSERT INTO public.issue VALUES (217, 21, 101, 11, '', 0, 'fix odata QLLD_HoSo', '', 0, 0, true, true, 0, '', 0, 1705393318, 1705393335, 1705393335, false, 0);
INSERT INTO public.issue VALUES (218, 21, 102, 11, '', 0, 'fix hidden change year hoso', '', 0, 0, true, true, 0, '', 0, 1705394267, 1705394332, 1705394331, false, 0);
INSERT INTO public.issue VALUES (219, 21, 103, 11, '', 0, 'fix phan quyen', '', 0, 0, true, true, 0, '', 0, 1705395688, 1705395801, 1705395799, false, 0);
INSERT INTO public.issue VALUES (222, 21, 106, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1705397249, 1705397270, 1705397268, false, 0);
INSERT INTO public.issue VALUES (220, 21, 104, 11, '', 0, 'fix change page', '', 0, 0, true, true, 0, '', 0, 1705396606, 1705396642, 1705396640, false, 0);
INSERT INTO public.issue VALUES (223, 21, 107, 11, '', 0, 'fix trang thai ho so', '', 0, 0, true, true, 0, '', 0, 1705457134, 1705457158, 1705457156, false, 0);
INSERT INTO public.issue VALUES (224, 21, 108, 11, '', 0, 'fix gdnn', '', 0, 0, true, true, 0, '', 0, 1705458405, 1705458437, 1705458436, false, 0);


--
-- Data for Name: issue_assignees; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: issue_content_history; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: issue_dependency; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: issue_index; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.issue_index VALUES (5, 0);
INSERT INTO public.issue_index VALUES (1, 1);
INSERT INTO public.issue_index VALUES (17, 0);
INSERT INTO public.issue_index VALUES (18, 0);
INSERT INTO public.issue_index VALUES (20, 0);
INSERT INTO public.issue_index VALUES (22, 0);
INSERT INTO public.issue_index VALUES (23, 0);
INSERT INTO public.issue_index VALUES (21, 112);
INSERT INTO public.issue_index VALUES (27, 0);
INSERT INTO public.issue_index VALUES (28, 0);
INSERT INTO public.issue_index VALUES (29, 117);


--
-- Data for Name: issue_label; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.issue_label VALUES (1, 100, 1);
INSERT INTO public.issue_label VALUES (2, 100, 2);
INSERT INTO public.issue_label VALUES (3, 101, 1);
INSERT INTO public.issue_label VALUES (4, 102, 1);
INSERT INTO public.issue_label VALUES (5, 103, 1);
INSERT INTO public.issue_label VALUES (6, 103, 2);
INSERT INTO public.issue_label VALUES (7, 104, 6);
INSERT INTO public.issue_label VALUES (8, 105, 1);
INSERT INTO public.issue_label VALUES (9, 105, 2);
INSERT INTO public.issue_label VALUES (10, 106, 1);
INSERT INTO public.issue_label VALUES (11, 106, 2);
INSERT INTO public.issue_label VALUES (12, 107, 1);
INSERT INTO public.issue_label VALUES (13, 107, 2);
INSERT INTO public.issue_label VALUES (14, 108, 1);
INSERT INTO public.issue_label VALUES (15, 108, 2);
INSERT INTO public.issue_label VALUES (16, 109, 2);
INSERT INTO public.issue_label VALUES (17, 109, 6);
INSERT INTO public.issue_label VALUES (18, 110, 1);
INSERT INTO public.issue_label VALUES (19, 110, 2);
INSERT INTO public.issue_label VALUES (20, 111, 1);
INSERT INTO public.issue_label VALUES (21, 111, 2);
INSERT INTO public.issue_label VALUES (22, 112, 1);
INSERT INTO public.issue_label VALUES (23, 112, 2);
INSERT INTO public.issue_label VALUES (24, 113, 1);
INSERT INTO public.issue_label VALUES (25, 113, 2);
INSERT INTO public.issue_label VALUES (26, 114, 1);
INSERT INTO public.issue_label VALUES (27, 114, 2);
INSERT INTO public.issue_label VALUES (28, 115, 1);
INSERT INTO public.issue_label VALUES (29, 116, 1);
INSERT INTO public.issue_label VALUES (30, 117, 1);
INSERT INTO public.issue_label VALUES (31, 117, 2);
INSERT INTO public.issue_label VALUES (32, 118, 1);
INSERT INTO public.issue_label VALUES (33, 119, 1);
INSERT INTO public.issue_label VALUES (34, 119, 2);
INSERT INTO public.issue_label VALUES (35, 120, 2);
INSERT INTO public.issue_label VALUES (36, 120, 6);
INSERT INTO public.issue_label VALUES (37, 121, 1);
INSERT INTO public.issue_label VALUES (38, 122, 3);
INSERT INTO public.issue_label VALUES (39, 122, 6);
INSERT INTO public.issue_label VALUES (40, 123, 5);
INSERT INTO public.issue_label VALUES (41, 124, 1);
INSERT INTO public.issue_label VALUES (42, 125, 1);
INSERT INTO public.issue_label VALUES (43, 126, 1);
INSERT INTO public.issue_label VALUES (44, 126, 3);
INSERT INTO public.issue_label VALUES (45, 127, 1);
INSERT INTO public.issue_label VALUES (46, 128, 1);
INSERT INTO public.issue_label VALUES (47, 128, 2);
INSERT INTO public.issue_label VALUES (48, 129, 1);
INSERT INTO public.issue_label VALUES (49, 129, 2);
INSERT INTO public.issue_label VALUES (50, 130, 1);
INSERT INTO public.issue_label VALUES (51, 131, 1);
INSERT INTO public.issue_label VALUES (52, 132, 1);
INSERT INTO public.issue_label VALUES (53, 133, 3);
INSERT INTO public.issue_label VALUES (54, 133, 6);
INSERT INTO public.issue_label VALUES (55, 134, 1);
INSERT INTO public.issue_label VALUES (56, 134, 2);
INSERT INTO public.issue_label VALUES (57, 135, 1);
INSERT INTO public.issue_label VALUES (58, 136, 1);
INSERT INTO public.issue_label VALUES (59, 136, 3);
INSERT INTO public.issue_label VALUES (60, 137, 1);
INSERT INTO public.issue_label VALUES (61, 138, 1);
INSERT INTO public.issue_label VALUES (62, 138, 2);
INSERT INTO public.issue_label VALUES (63, 139, 1);
INSERT INTO public.issue_label VALUES (64, 140, 1);
INSERT INTO public.issue_label VALUES (65, 141, 1);
INSERT INTO public.issue_label VALUES (66, 142, 2);
INSERT INTO public.issue_label VALUES (67, 142, 5);
INSERT INTO public.issue_label VALUES (68, 143, 1);
INSERT INTO public.issue_label VALUES (69, 144, 5);
INSERT INTO public.issue_label VALUES (70, 145, 1);
INSERT INTO public.issue_label VALUES (71, 145, 2);
INSERT INTO public.issue_label VALUES (72, 146, 1);
INSERT INTO public.issue_label VALUES (73, 146, 2);
INSERT INTO public.issue_label VALUES (74, 147, 1);
INSERT INTO public.issue_label VALUES (75, 147, 2);
INSERT INTO public.issue_label VALUES (76, 148, 3);
INSERT INTO public.issue_label VALUES (77, 148, 6);
INSERT INTO public.issue_label VALUES (78, 149, 3);
INSERT INTO public.issue_label VALUES (79, 149, 6);
INSERT INTO public.issue_label VALUES (80, 150, 1);
INSERT INTO public.issue_label VALUES (81, 150, 2);
INSERT INTO public.issue_label VALUES (82, 151, 2);
INSERT INTO public.issue_label VALUES (83, 151, 6);
INSERT INTO public.issue_label VALUES (84, 152, 1);
INSERT INTO public.issue_label VALUES (85, 152, 2);
INSERT INTO public.issue_label VALUES (86, 153, 1);
INSERT INTO public.issue_label VALUES (87, 153, 2);
INSERT INTO public.issue_label VALUES (88, 154, 2);
INSERT INTO public.issue_label VALUES (89, 154, 6);
INSERT INTO public.issue_label VALUES (90, 155, 5);
INSERT INTO public.issue_label VALUES (91, 156, 1);
INSERT INTO public.issue_label VALUES (92, 156, 2);
INSERT INTO public.issue_label VALUES (93, 157, 2);
INSERT INTO public.issue_label VALUES (94, 157, 6);
INSERT INTO public.issue_label VALUES (95, 158, 2);
INSERT INTO public.issue_label VALUES (96, 158, 6);
INSERT INTO public.issue_label VALUES (97, 159, 2);
INSERT INTO public.issue_label VALUES (98, 159, 6);
INSERT INTO public.issue_label VALUES (99, 160, 1);
INSERT INTO public.issue_label VALUES (100, 160, 2);
INSERT INTO public.issue_label VALUES (101, 161, 1);
INSERT INTO public.issue_label VALUES (102, 161, 2);
INSERT INTO public.issue_label VALUES (103, 162, 2);
INSERT INTO public.issue_label VALUES (104, 162, 6);
INSERT INTO public.issue_label VALUES (105, 163, 1);
INSERT INTO public.issue_label VALUES (106, 164, 1);
INSERT INTO public.issue_label VALUES (107, 165, 1);
INSERT INTO public.issue_label VALUES (108, 166, 6);
INSERT INTO public.issue_label VALUES (109, 167, 3);
INSERT INTO public.issue_label VALUES (110, 167, 5);
INSERT INTO public.issue_label VALUES (111, 168, 2);
INSERT INTO public.issue_label VALUES (112, 168, 6);
INSERT INTO public.issue_label VALUES (113, 169, 5);
INSERT INTO public.issue_label VALUES (114, 170, 7);
INSERT INTO public.issue_label VALUES (115, 171, 6);
INSERT INTO public.issue_label VALUES (116, 172, 6);
INSERT INTO public.issue_label VALUES (117, 173, 6);
INSERT INTO public.issue_label VALUES (118, 174, 6);
INSERT INTO public.issue_label VALUES (119, 175, 6);
INSERT INTO public.issue_label VALUES (120, 176, 6);
INSERT INTO public.issue_label VALUES (121, 177, 6);
INSERT INTO public.issue_label VALUES (122, 178, 6);
INSERT INTO public.issue_label VALUES (123, 179, 6);
INSERT INTO public.issue_label VALUES (124, 180, 6);
INSERT INTO public.issue_label VALUES (125, 181, 6);
INSERT INTO public.issue_label VALUES (126, 182, 6);
INSERT INTO public.issue_label VALUES (127, 183, 7);
INSERT INTO public.issue_label VALUES (128, 184, 1);
INSERT INTO public.issue_label VALUES (129, 185, 6);
INSERT INTO public.issue_label VALUES (130, 186, 6);
INSERT INTO public.issue_label VALUES (131, 187, 7);
INSERT INTO public.issue_label VALUES (132, 188, 7);
INSERT INTO public.issue_label VALUES (133, 189, 6);
INSERT INTO public.issue_label VALUES (134, 190, 6);
INSERT INTO public.issue_label VALUES (135, 191, 6);
INSERT INTO public.issue_label VALUES (136, 192, 6);
INSERT INTO public.issue_label VALUES (137, 193, 6);
INSERT INTO public.issue_label VALUES (138, 194, 6);
INSERT INTO public.issue_label VALUES (139, 195, 5);
INSERT INTO public.issue_label VALUES (140, 196, 6);
INSERT INTO public.issue_label VALUES (141, 197, 6);
INSERT INTO public.issue_label VALUES (142, 198, 6);
INSERT INTO public.issue_label VALUES (143, 199, 6);
INSERT INTO public.issue_label VALUES (144, 200, 6);
INSERT INTO public.issue_label VALUES (145, 201, 6);
INSERT INTO public.issue_label VALUES (146, 202, 6);
INSERT INTO public.issue_label VALUES (147, 203, 6);
INSERT INTO public.issue_label VALUES (148, 204, 6);
INSERT INTO public.issue_label VALUES (149, 205, 6);
INSERT INTO public.issue_label VALUES (150, 206, 6);
INSERT INTO public.issue_label VALUES (151, 207, 6);
INSERT INTO public.issue_label VALUES (152, 208, 6);
INSERT INTO public.issue_label VALUES (153, 210, 6);
INSERT INTO public.issue_label VALUES (154, 211, 6);
INSERT INTO public.issue_label VALUES (155, 212, 6);
INSERT INTO public.issue_label VALUES (156, 214, 2);
INSERT INTO public.issue_label VALUES (157, 214, 6);


--
-- Data for Name: issue_user; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.issue_user VALUES (100, 11, 26, true, false);
INSERT INTO public.issue_user VALUES (103, 5, 27, false, false);
INSERT INTO public.issue_user VALUES (1, 2, 1, false, true);
INSERT INTO public.issue_user VALUES (29, 1, 8, true, false);
INSERT INTO public.issue_user VALUES (31, 5, 9, false, false);
INSERT INTO public.issue_user VALUES (33, 1, 9, false, false);
INSERT INTO public.issue_user VALUES (34, 2, 9, false, false);
INSERT INTO public.issue_user VALUES (2, 1, 1, true, false);
INSERT INTO public.issue_user VALUES (3, 5, 2, false, false);
INSERT INTO public.issue_user VALUES (4, 11, 2, false, false);
INSERT INTO public.issue_user VALUES (6, 2, 2, false, false);
INSERT INTO public.issue_user VALUES (60, 11, 16, true, false);
INSERT INTO public.issue_user VALUES (67, 5, 18, false, false);
INSERT INTO public.issue_user VALUES (69, 1, 18, false, false);
INSERT INTO public.issue_user VALUES (32, 11, 9, true, false);
INSERT INTO public.issue_user VALUES (35, 5, 10, false, false);
INSERT INTO public.issue_user VALUES (37, 1, 10, false, false);
INSERT INTO public.issue_user VALUES (38, 2, 10, false, false);
INSERT INTO public.issue_user VALUES (70, 2, 18, false, false);
INSERT INTO public.issue_user VALUES (105, 1, 27, false, false);
INSERT INTO public.issue_user VALUES (5, 1, 2, true, false);
INSERT INTO public.issue_user VALUES (7, 5, 3, false, false);
INSERT INTO public.issue_user VALUES (9, 1, 3, false, false);
INSERT INTO public.issue_user VALUES (10, 2, 3, false, false);
INSERT INTO public.issue_user VALUES (88, 11, 23, true, false);
INSERT INTO public.issue_user VALUES (36, 11, 10, true, false);
INSERT INTO public.issue_user VALUES (39, 5, 11, false, false);
INSERT INTO public.issue_user VALUES (41, 1, 11, false, false);
INSERT INTO public.issue_user VALUES (42, 2, 11, false, false);
INSERT INTO public.issue_user VALUES (91, 5, 24, false, false);
INSERT INTO public.issue_user VALUES (8, 11, 3, true, false);
INSERT INTO public.issue_user VALUES (11, 5, 4, false, false);
INSERT INTO public.issue_user VALUES (13, 1, 4, false, false);
INSERT INTO public.issue_user VALUES (14, 2, 4, false, false);
INSERT INTO public.issue_user VALUES (68, 11, 18, true, false);
INSERT INTO public.issue_user VALUES (71, 5, 19, false, false);
INSERT INTO public.issue_user VALUES (40, 11, 11, true, false);
INSERT INTO public.issue_user VALUES (12, 11, 4, true, false);
INSERT INTO public.issue_user VALUES (15, 5, 5, false, false);
INSERT INTO public.issue_user VALUES (17, 1, 5, false, false);
INSERT INTO public.issue_user VALUES (18, 2, 5, false, false);
INSERT INTO public.issue_user VALUES (43, 5, 12, false, false);
INSERT INTO public.issue_user VALUES (45, 1, 12, false, false);
INSERT INTO public.issue_user VALUES (46, 2, 12, false, false);
INSERT INTO public.issue_user VALUES (16, 11, 5, true, false);
INSERT INTO public.issue_user VALUES (19, 5, 6, false, false);
INSERT INTO public.issue_user VALUES (21, 1, 6, false, false);
INSERT INTO public.issue_user VALUES (22, 2, 6, false, false);
INSERT INTO public.issue_user VALUES (73, 1, 19, false, false);
INSERT INTO public.issue_user VALUES (74, 2, 19, false, false);
INSERT INTO public.issue_user VALUES (93, 1, 24, false, false);
INSERT INTO public.issue_user VALUES (20, 11, 6, true, false);
INSERT INTO public.issue_user VALUES (23, 5, 7, false, false);
INSERT INTO public.issue_user VALUES (25, 1, 7, false, false);
INSERT INTO public.issue_user VALUES (26, 2, 7, false, false);
INSERT INTO public.issue_user VALUES (44, 11, 12, true, false);
INSERT INTO public.issue_user VALUES (47, 5, 13, false, false);
INSERT INTO public.issue_user VALUES (49, 1, 13, false, false);
INSERT INTO public.issue_user VALUES (24, 11, 7, true, false);
INSERT INTO public.issue_user VALUES (27, 5, 8, false, false);
INSERT INTO public.issue_user VALUES (30, 2, 8, false, false);
INSERT INTO public.issue_user VALUES (50, 2, 13, false, false);
INSERT INTO public.issue_user VALUES (94, 2, 24, false, false);
INSERT INTO public.issue_user VALUES (106, 16, 27, false, false);
INSERT INTO public.issue_user VALUES (107, 2, 27, false, false);
INSERT INTO public.issue_user VALUES (28, 11, 8, true, false);
INSERT INTO public.issue_user VALUES (119, 11, 30, true, false);
INSERT INTO public.issue_user VALUES (72, 11, 19, true, false);
INSERT INTO public.issue_user VALUES (75, 5, 20, false, false);
INSERT INTO public.issue_user VALUES (48, 11, 13, true, false);
INSERT INTO public.issue_user VALUES (51, 5, 14, false, false);
INSERT INTO public.issue_user VALUES (53, 1, 14, false, false);
INSERT INTO public.issue_user VALUES (54, 2, 14, false, false);
INSERT INTO public.issue_user VALUES (77, 1, 20, false, false);
INSERT INTO public.issue_user VALUES (78, 2, 20, false, false);
INSERT INTO public.issue_user VALUES (109, 11, 28, true, false);
INSERT INTO public.issue_user VALUES (92, 11, 24, true, false);
INSERT INTO public.issue_user VALUES (95, 5, 25, false, false);
INSERT INTO public.issue_user VALUES (52, 11, 14, true, false);
INSERT INTO public.issue_user VALUES (55, 5, 15, false, false);
INSERT INTO public.issue_user VALUES (57, 1, 15, false, false);
INSERT INTO public.issue_user VALUES (58, 2, 15, false, false);
INSERT INTO public.issue_user VALUES (97, 1, 25, false, false);
INSERT INTO public.issue_user VALUES (98, 2, 25, false, false);
INSERT INTO public.issue_user VALUES (76, 11, 20, true, false);
INSERT INTO public.issue_user VALUES (79, 5, 21, false, false);
INSERT INTO public.issue_user VALUES (56, 11, 15, true, false);
INSERT INTO public.issue_user VALUES (59, 5, 16, false, false);
INSERT INTO public.issue_user VALUES (61, 1, 16, false, false);
INSERT INTO public.issue_user VALUES (62, 2, 16, false, false);
INSERT INTO public.issue_user VALUES (81, 1, 21, false, false);
INSERT INTO public.issue_user VALUES (82, 2, 21, false, false);
INSERT INTO public.issue_user VALUES (113, 5, 29, false, false);
INSERT INTO public.issue_user VALUES (63, 5, 17, false, false);
INSERT INTO public.issue_user VALUES (65, 1, 17, false, false);
INSERT INTO public.issue_user VALUES (66, 2, 17, false, false);
INSERT INTO public.issue_user VALUES (104, 11, 27, true, false);
INSERT INTO public.issue_user VALUES (108, 5, 28, false, false);
INSERT INTO public.issue_user VALUES (96, 11, 25, true, false);
INSERT INTO public.issue_user VALUES (80, 11, 21, true, false);
INSERT INTO public.issue_user VALUES (83, 5, 22, false, false);
INSERT INTO public.issue_user VALUES (85, 1, 22, false, false);
INSERT INTO public.issue_user VALUES (64, 11, 17, true, false);
INSERT INTO public.issue_user VALUES (86, 2, 22, false, false);
INSERT INTO public.issue_user VALUES (99, 5, 26, false, false);
INSERT INTO public.issue_user VALUES (101, 1, 26, false, false);
INSERT INTO public.issue_user VALUES (102, 2, 26, false, false);
INSERT INTO public.issue_user VALUES (84, 11, 22, true, false);
INSERT INTO public.issue_user VALUES (87, 5, 23, false, false);
INSERT INTO public.issue_user VALUES (89, 1, 23, false, false);
INSERT INTO public.issue_user VALUES (90, 2, 23, false, false);
INSERT INTO public.issue_user VALUES (110, 1, 28, false, false);
INSERT INTO public.issue_user VALUES (111, 16, 28, false, false);
INSERT INTO public.issue_user VALUES (115, 1, 29, false, false);
INSERT INTO public.issue_user VALUES (112, 2, 28, false, false);
INSERT INTO public.issue_user VALUES (116, 16, 29, false, false);
INSERT INTO public.issue_user VALUES (117, 2, 29, false, false);
INSERT INTO public.issue_user VALUES (124, 11, 31, true, false);
INSERT INTO public.issue_user VALUES (123, 5, 31, false, false);
INSERT INTO public.issue_user VALUES (114, 11, 29, true, false);
INSERT INTO public.issue_user VALUES (118, 5, 30, false, false);
INSERT INTO public.issue_user VALUES (120, 1, 30, false, false);
INSERT INTO public.issue_user VALUES (121, 16, 30, false, false);
INSERT INTO public.issue_user VALUES (122, 2, 30, false, false);
INSERT INTO public.issue_user VALUES (125, 1, 31, false, false);
INSERT INTO public.issue_user VALUES (126, 16, 31, false, false);
INSERT INTO public.issue_user VALUES (127, 2, 31, false, false);
INSERT INTO public.issue_user VALUES (128, 5, 32, false, false);
INSERT INTO public.issue_user VALUES (130, 1, 32, false, false);
INSERT INTO public.issue_user VALUES (131, 16, 32, false, false);
INSERT INTO public.issue_user VALUES (132, 2, 32, false, false);
INSERT INTO public.issue_user VALUES (129, 11, 32, true, false);
INSERT INTO public.issue_user VALUES (133, 5, 33, false, false);
INSERT INTO public.issue_user VALUES (135, 1, 33, false, false);
INSERT INTO public.issue_user VALUES (136, 16, 33, false, false);
INSERT INTO public.issue_user VALUES (137, 2, 33, false, false);
INSERT INTO public.issue_user VALUES (249, 11, 56, true, false);
INSERT INTO public.issue_user VALUES (254, 11, 57, true, false);
INSERT INTO public.issue_user VALUES (253, 5, 57, false, false);
INSERT INTO public.issue_user VALUES (244, 11, 55, true, false);
INSERT INTO public.issue_user VALUES (134, 11, 33, true, false);
INSERT INTO public.issue_user VALUES (138, 5, 34, false, false);
INSERT INTO public.issue_user VALUES (140, 1, 34, false, false);
INSERT INTO public.issue_user VALUES (141, 16, 34, false, false);
INSERT INTO public.issue_user VALUES (142, 2, 34, false, false);
INSERT INTO public.issue_user VALUES (194, 11, 45, true, false);
INSERT INTO public.issue_user VALUES (198, 5, 46, false, false);
INSERT INTO public.issue_user VALUES (200, 1, 46, false, false);
INSERT INTO public.issue_user VALUES (139, 11, 34, true, false);
INSERT INTO public.issue_user VALUES (143, 5, 35, false, false);
INSERT INTO public.issue_user VALUES (145, 1, 35, false, false);
INSERT INTO public.issue_user VALUES (146, 16, 35, false, false);
INSERT INTO public.issue_user VALUES (147, 2, 35, false, false);
INSERT INTO public.issue_user VALUES (201, 16, 46, false, false);
INSERT INTO public.issue_user VALUES (202, 2, 46, false, false);
INSERT INTO public.issue_user VALUES (224, 11, 51, true, false);
INSERT INTO public.issue_user VALUES (228, 5, 52, false, false);
INSERT INTO public.issue_user VALUES (144, 11, 35, true, false);
INSERT INTO public.issue_user VALUES (148, 5, 36, false, false);
INSERT INTO public.issue_user VALUES (150, 1, 36, false, false);
INSERT INTO public.issue_user VALUES (151, 16, 36, false, false);
INSERT INTO public.issue_user VALUES (152, 2, 36, false, false);
INSERT INTO public.issue_user VALUES (199, 11, 46, true, false);
INSERT INTO public.issue_user VALUES (203, 5, 47, false, false);
INSERT INTO public.issue_user VALUES (149, 11, 36, true, false);
INSERT INTO public.issue_user VALUES (153, 5, 37, false, false);
INSERT INTO public.issue_user VALUES (155, 1, 37, false, false);
INSERT INTO public.issue_user VALUES (156, 16, 37, false, false);
INSERT INTO public.issue_user VALUES (157, 2, 37, false, false);
INSERT INTO public.issue_user VALUES (205, 1, 47, false, false);
INSERT INTO public.issue_user VALUES (206, 16, 47, false, false);
INSERT INTO public.issue_user VALUES (207, 2, 47, false, false);
INSERT INTO public.issue_user VALUES (230, 1, 52, false, false);
INSERT INTO public.issue_user VALUES (154, 11, 37, true, false);
INSERT INTO public.issue_user VALUES (158, 5, 38, false, false);
INSERT INTO public.issue_user VALUES (160, 1, 38, false, false);
INSERT INTO public.issue_user VALUES (161, 16, 38, false, false);
INSERT INTO public.issue_user VALUES (162, 2, 38, false, false);
INSERT INTO public.issue_user VALUES (231, 16, 52, false, false);
INSERT INTO public.issue_user VALUES (232, 2, 52, false, false);
INSERT INTO public.issue_user VALUES (239, 11, 54, true, false);
INSERT INTO public.issue_user VALUES (204, 11, 47, true, false);
INSERT INTO public.issue_user VALUES (159, 11, 38, true, false);
INSERT INTO public.issue_user VALUES (163, 5, 39, false, false);
INSERT INTO public.issue_user VALUES (165, 1, 39, false, false);
INSERT INTO public.issue_user VALUES (166, 16, 39, false, false);
INSERT INTO public.issue_user VALUES (167, 2, 39, false, false);
INSERT INTO public.issue_user VALUES (208, 5, 48, false, false);
INSERT INTO public.issue_user VALUES (210, 1, 48, false, false);
INSERT INTO public.issue_user VALUES (211, 16, 48, false, false);
INSERT INTO public.issue_user VALUES (164, 11, 39, true, false);
INSERT INTO public.issue_user VALUES (168, 5, 40, false, false);
INSERT INTO public.issue_user VALUES (170, 1, 40, false, false);
INSERT INTO public.issue_user VALUES (171, 16, 40, false, false);
INSERT INTO public.issue_user VALUES (172, 2, 40, false, false);
INSERT INTO public.issue_user VALUES (212, 2, 48, false, false);
INSERT INTO public.issue_user VALUES (243, 5, 55, false, false);
INSERT INTO public.issue_user VALUES (245, 1, 55, false, false);
INSERT INTO public.issue_user VALUES (169, 11, 40, true, false);
INSERT INTO public.issue_user VALUES (173, 5, 41, false, false);
INSERT INTO public.issue_user VALUES (175, 1, 41, false, false);
INSERT INTO public.issue_user VALUES (176, 16, 41, false, false);
INSERT INTO public.issue_user VALUES (177, 2, 41, false, false);
INSERT INTO public.issue_user VALUES (229, 11, 52, true, false);
INSERT INTO public.issue_user VALUES (209, 11, 48, true, false);
INSERT INTO public.issue_user VALUES (213, 5, 49, false, false);
INSERT INTO public.issue_user VALUES (174, 11, 41, true, false);
INSERT INTO public.issue_user VALUES (178, 5, 42, false, false);
INSERT INTO public.issue_user VALUES (180, 1, 42, false, false);
INSERT INTO public.issue_user VALUES (181, 16, 42, false, false);
INSERT INTO public.issue_user VALUES (182, 2, 42, false, false);
INSERT INTO public.issue_user VALUES (215, 1, 49, false, false);
INSERT INTO public.issue_user VALUES (216, 16, 49, false, false);
INSERT INTO public.issue_user VALUES (217, 2, 49, false, false);
INSERT INTO public.issue_user VALUES (233, 5, 53, false, false);
INSERT INTO public.issue_user VALUES (179, 11, 42, true, false);
INSERT INTO public.issue_user VALUES (183, 5, 43, false, false);
INSERT INTO public.issue_user VALUES (185, 1, 43, false, false);
INSERT INTO public.issue_user VALUES (186, 16, 43, false, false);
INSERT INTO public.issue_user VALUES (187, 2, 43, false, false);
INSERT INTO public.issue_user VALUES (235, 1, 53, false, false);
INSERT INTO public.issue_user VALUES (236, 16, 53, false, false);
INSERT INTO public.issue_user VALUES (214, 11, 49, true, false);
INSERT INTO public.issue_user VALUES (184, 11, 43, true, false);
INSERT INTO public.issue_user VALUES (188, 5, 44, false, false);
INSERT INTO public.issue_user VALUES (190, 1, 44, false, false);
INSERT INTO public.issue_user VALUES (191, 16, 44, false, false);
INSERT INTO public.issue_user VALUES (192, 2, 44, false, false);
INSERT INTO public.issue_user VALUES (218, 5, 50, false, false);
INSERT INTO public.issue_user VALUES (220, 1, 50, false, false);
INSERT INTO public.issue_user VALUES (221, 16, 50, false, false);
INSERT INTO public.issue_user VALUES (189, 11, 44, true, false);
INSERT INTO public.issue_user VALUES (193, 5, 45, false, false);
INSERT INTO public.issue_user VALUES (195, 1, 45, false, false);
INSERT INTO public.issue_user VALUES (196, 16, 45, false, false);
INSERT INTO public.issue_user VALUES (197, 2, 45, false, false);
INSERT INTO public.issue_user VALUES (222, 2, 50, false, false);
INSERT INTO public.issue_user VALUES (237, 2, 53, false, false);
INSERT INTO public.issue_user VALUES (246, 16, 55, false, false);
INSERT INTO public.issue_user VALUES (247, 2, 55, false, false);
INSERT INTO public.issue_user VALUES (219, 11, 50, true, false);
INSERT INTO public.issue_user VALUES (223, 5, 51, false, false);
INSERT INTO public.issue_user VALUES (225, 1, 51, false, false);
INSERT INTO public.issue_user VALUES (226, 16, 51, false, false);
INSERT INTO public.issue_user VALUES (227, 2, 51, false, false);
INSERT INTO public.issue_user VALUES (248, 5, 56, false, false);
INSERT INTO public.issue_user VALUES (234, 11, 53, true, false);
INSERT INTO public.issue_user VALUES (238, 5, 54, false, false);
INSERT INTO public.issue_user VALUES (240, 1, 54, false, false);
INSERT INTO public.issue_user VALUES (241, 16, 54, false, false);
INSERT INTO public.issue_user VALUES (242, 2, 54, false, false);
INSERT INTO public.issue_user VALUES (250, 1, 56, false, false);
INSERT INTO public.issue_user VALUES (251, 16, 56, false, false);
INSERT INTO public.issue_user VALUES (252, 2, 56, false, false);
INSERT INTO public.issue_user VALUES (255, 1, 57, false, false);
INSERT INTO public.issue_user VALUES (256, 16, 57, false, false);
INSERT INTO public.issue_user VALUES (257, 2, 57, false, false);
INSERT INTO public.issue_user VALUES (259, 11, 58, true, false);
INSERT INTO public.issue_user VALUES (258, 5, 58, false, false);
INSERT INTO public.issue_user VALUES (260, 1, 58, false, false);
INSERT INTO public.issue_user VALUES (261, 16, 58, false, false);
INSERT INTO public.issue_user VALUES (262, 2, 58, false, false);
INSERT INTO public.issue_user VALUES (264, 11, 59, true, false);
INSERT INTO public.issue_user VALUES (263, 5, 59, false, false);
INSERT INTO public.issue_user VALUES (265, 1, 59, false, false);
INSERT INTO public.issue_user VALUES (266, 16, 59, false, false);
INSERT INTO public.issue_user VALUES (267, 2, 59, false, false);
INSERT INTO public.issue_user VALUES (268, 5, 60, false, false);
INSERT INTO public.issue_user VALUES (270, 1, 60, false, false);
INSERT INTO public.issue_user VALUES (271, 16, 60, false, false);
INSERT INTO public.issue_user VALUES (272, 2, 60, false, false);
INSERT INTO public.issue_user VALUES (379, 11, 82, true, false);
INSERT INTO public.issue_user VALUES (383, 5, 83, false, false);
INSERT INTO public.issue_user VALUES (384, 11, 83, true, false);
INSERT INTO public.issue_user VALUES (269, 11, 60, true, false);
INSERT INTO public.issue_user VALUES (273, 5, 61, false, false);
INSERT INTO public.issue_user VALUES (275, 1, 61, false, false);
INSERT INTO public.issue_user VALUES (276, 16, 61, false, false);
INSERT INTO public.issue_user VALUES (277, 2, 61, false, false);
INSERT INTO public.issue_user VALUES (329, 11, 72, true, false);
INSERT INTO public.issue_user VALUES (333, 5, 73, false, false);
INSERT INTO public.issue_user VALUES (335, 1, 73, false, false);
INSERT INTO public.issue_user VALUES (274, 11, 61, true, false);
INSERT INTO public.issue_user VALUES (278, 5, 62, false, false);
INSERT INTO public.issue_user VALUES (280, 1, 62, false, false);
INSERT INTO public.issue_user VALUES (281, 16, 62, false, false);
INSERT INTO public.issue_user VALUES (282, 2, 62, false, false);
INSERT INTO public.issue_user VALUES (336, 16, 73, false, false);
INSERT INTO public.issue_user VALUES (337, 2, 73, false, false);
INSERT INTO public.issue_user VALUES (359, 11, 78, true, false);
INSERT INTO public.issue_user VALUES (363, 5, 79, false, false);
INSERT INTO public.issue_user VALUES (279, 11, 62, true, false);
INSERT INTO public.issue_user VALUES (283, 5, 63, false, false);
INSERT INTO public.issue_user VALUES (285, 1, 63, false, false);
INSERT INTO public.issue_user VALUES (286, 16, 63, false, false);
INSERT INTO public.issue_user VALUES (287, 2, 63, false, false);
INSERT INTO public.issue_user VALUES (365, 1, 79, false, false);
INSERT INTO public.issue_user VALUES (334, 11, 73, true, false);
INSERT INTO public.issue_user VALUES (338, 5, 74, false, false);
INSERT INTO public.issue_user VALUES (284, 11, 63, true, false);
INSERT INTO public.issue_user VALUES (288, 5, 64, false, false);
INSERT INTO public.issue_user VALUES (290, 1, 64, false, false);
INSERT INTO public.issue_user VALUES (291, 16, 64, false, false);
INSERT INTO public.issue_user VALUES (292, 2, 64, false, false);
INSERT INTO public.issue_user VALUES (340, 1, 74, false, false);
INSERT INTO public.issue_user VALUES (341, 16, 74, false, false);
INSERT INTO public.issue_user VALUES (342, 2, 74, false, false);
INSERT INTO public.issue_user VALUES (289, 11, 64, true, false);
INSERT INTO public.issue_user VALUES (293, 5, 65, false, false);
INSERT INTO public.issue_user VALUES (295, 1, 65, false, false);
INSERT INTO public.issue_user VALUES (296, 16, 65, false, false);
INSERT INTO public.issue_user VALUES (297, 2, 65, false, false);
INSERT INTO public.issue_user VALUES (366, 16, 79, false, false);
INSERT INTO public.issue_user VALUES (367, 2, 79, false, false);
INSERT INTO public.issue_user VALUES (374, 11, 81, true, false);
INSERT INTO public.issue_user VALUES (378, 5, 82, false, false);
INSERT INTO public.issue_user VALUES (294, 11, 65, true, false);
INSERT INTO public.issue_user VALUES (298, 5, 66, false, false);
INSERT INTO public.issue_user VALUES (300, 1, 66, false, false);
INSERT INTO public.issue_user VALUES (301, 16, 66, false, false);
INSERT INTO public.issue_user VALUES (302, 2, 66, false, false);
INSERT INTO public.issue_user VALUES (339, 11, 74, true, false);
INSERT INTO public.issue_user VALUES (343, 5, 75, false, false);
INSERT INTO public.issue_user VALUES (345, 1, 75, false, false);
INSERT INTO public.issue_user VALUES (299, 11, 66, true, false);
INSERT INTO public.issue_user VALUES (303, 5, 67, false, false);
INSERT INTO public.issue_user VALUES (305, 1, 67, false, false);
INSERT INTO public.issue_user VALUES (306, 16, 67, false, false);
INSERT INTO public.issue_user VALUES (307, 2, 67, false, false);
INSERT INTO public.issue_user VALUES (346, 16, 75, false, false);
INSERT INTO public.issue_user VALUES (347, 2, 75, false, false);
INSERT INTO public.issue_user VALUES (380, 1, 82, false, false);
INSERT INTO public.issue_user VALUES (304, 11, 67, true, false);
INSERT INTO public.issue_user VALUES (308, 5, 68, false, false);
INSERT INTO public.issue_user VALUES (310, 1, 68, false, false);
INSERT INTO public.issue_user VALUES (311, 16, 68, false, false);
INSERT INTO public.issue_user VALUES (312, 2, 68, false, false);
INSERT INTO public.issue_user VALUES (364, 11, 79, true, false);
INSERT INTO public.issue_user VALUES (368, 5, 80, false, false);
INSERT INTO public.issue_user VALUES (344, 11, 75, true, false);
INSERT INTO public.issue_user VALUES (348, 5, 76, false, false);
INSERT INTO public.issue_user VALUES (309, 11, 68, true, false);
INSERT INTO public.issue_user VALUES (313, 5, 69, false, false);
INSERT INTO public.issue_user VALUES (315, 1, 69, false, false);
INSERT INTO public.issue_user VALUES (316, 16, 69, false, false);
INSERT INTO public.issue_user VALUES (317, 2, 69, false, false);
INSERT INTO public.issue_user VALUES (350, 1, 76, false, false);
INSERT INTO public.issue_user VALUES (351, 16, 76, false, false);
INSERT INTO public.issue_user VALUES (352, 2, 76, false, false);
INSERT INTO public.issue_user VALUES (314, 11, 69, true, false);
INSERT INTO public.issue_user VALUES (318, 5, 70, false, false);
INSERT INTO public.issue_user VALUES (320, 1, 70, false, false);
INSERT INTO public.issue_user VALUES (321, 16, 70, false, false);
INSERT INTO public.issue_user VALUES (322, 2, 70, false, false);
INSERT INTO public.issue_user VALUES (370, 1, 80, false, false);
INSERT INTO public.issue_user VALUES (371, 16, 80, false, false);
INSERT INTO public.issue_user VALUES (372, 2, 80, false, false);
INSERT INTO public.issue_user VALUES (319, 11, 70, true, false);
INSERT INTO public.issue_user VALUES (323, 5, 71, false, false);
INSERT INTO public.issue_user VALUES (325, 1, 71, false, false);
INSERT INTO public.issue_user VALUES (326, 16, 71, false, false);
INSERT INTO public.issue_user VALUES (327, 2, 71, false, false);
INSERT INTO public.issue_user VALUES (349, 11, 76, true, false);
INSERT INTO public.issue_user VALUES (353, 5, 77, false, false);
INSERT INTO public.issue_user VALUES (355, 1, 77, false, false);
INSERT INTO public.issue_user VALUES (324, 11, 71, true, false);
INSERT INTO public.issue_user VALUES (328, 5, 72, false, false);
INSERT INTO public.issue_user VALUES (330, 1, 72, false, false);
INSERT INTO public.issue_user VALUES (331, 16, 72, false, false);
INSERT INTO public.issue_user VALUES (332, 2, 72, false, false);
INSERT INTO public.issue_user VALUES (356, 16, 77, false, false);
INSERT INTO public.issue_user VALUES (357, 2, 77, false, false);
INSERT INTO public.issue_user VALUES (381, 16, 82, false, false);
INSERT INTO public.issue_user VALUES (382, 2, 82, false, false);
INSERT INTO public.issue_user VALUES (385, 1, 83, false, false);
INSERT INTO public.issue_user VALUES (386, 16, 83, false, false);
INSERT INTO public.issue_user VALUES (354, 11, 77, true, false);
INSERT INTO public.issue_user VALUES (358, 5, 78, false, false);
INSERT INTO public.issue_user VALUES (360, 1, 78, false, false);
INSERT INTO public.issue_user VALUES (361, 16, 78, false, false);
INSERT INTO public.issue_user VALUES (362, 2, 78, false, false);
INSERT INTO public.issue_user VALUES (369, 11, 80, true, false);
INSERT INTO public.issue_user VALUES (373, 5, 81, false, false);
INSERT INTO public.issue_user VALUES (375, 1, 81, false, false);
INSERT INTO public.issue_user VALUES (376, 16, 81, false, false);
INSERT INTO public.issue_user VALUES (377, 2, 81, false, false);
INSERT INTO public.issue_user VALUES (387, 2, 83, false, false);
INSERT INTO public.issue_user VALUES (389, 11, 84, true, false);
INSERT INTO public.issue_user VALUES (388, 5, 84, false, false);
INSERT INTO public.issue_user VALUES (390, 1, 84, false, false);
INSERT INTO public.issue_user VALUES (391, 16, 84, false, false);
INSERT INTO public.issue_user VALUES (392, 2, 84, false, false);
INSERT INTO public.issue_user VALUES (394, 11, 85, true, false);
INSERT INTO public.issue_user VALUES (393, 5, 85, false, false);
INSERT INTO public.issue_user VALUES (395, 1, 85, false, false);
INSERT INTO public.issue_user VALUES (396, 16, 85, false, false);
INSERT INTO public.issue_user VALUES (397, 2, 85, false, false);
INSERT INTO public.issue_user VALUES (398, 5, 86, false, false);
INSERT INTO public.issue_user VALUES (400, 1, 86, false, false);
INSERT INTO public.issue_user VALUES (401, 16, 86, false, false);
INSERT INTO public.issue_user VALUES (402, 2, 86, false, false);
INSERT INTO public.issue_user VALUES (514, 11, 224, true, false);
INSERT INTO public.issue_user VALUES (509, 11, 223, true, false);
INSERT INTO public.issue_user VALUES (513, 5, 224, false, false);
INSERT INTO public.issue_user VALUES (399, 11, 86, true, false);
INSERT INTO public.issue_user VALUES (403, 5, 87, false, false);
INSERT INTO public.issue_user VALUES (405, 1, 87, false, false);
INSERT INTO public.issue_user VALUES (406, 16, 87, false, false);
INSERT INTO public.issue_user VALUES (407, 2, 87, false, false);
INSERT INTO public.issue_user VALUES (459, 11, 98, true, false);
INSERT INTO public.issue_user VALUES (463, 5, 99, false, false);
INSERT INTO public.issue_user VALUES (465, 1, 99, false, false);
INSERT INTO public.issue_user VALUES (404, 11, 87, true, false);
INSERT INTO public.issue_user VALUES (408, 5, 88, false, false);
INSERT INTO public.issue_user VALUES (410, 1, 88, false, false);
INSERT INTO public.issue_user VALUES (411, 16, 88, false, false);
INSERT INTO public.issue_user VALUES (412, 2, 88, false, false);
INSERT INTO public.issue_user VALUES (466, 16, 99, false, false);
INSERT INTO public.issue_user VALUES (467, 2, 99, false, false);
INSERT INTO public.issue_user VALUES (489, 11, 219, true, false);
INSERT INTO public.issue_user VALUES (493, 5, 220, false, false);
INSERT INTO public.issue_user VALUES (409, 11, 88, true, false);
INSERT INTO public.issue_user VALUES (413, 5, 89, false, false);
INSERT INTO public.issue_user VALUES (415, 1, 89, false, false);
INSERT INTO public.issue_user VALUES (416, 16, 89, false, false);
INSERT INTO public.issue_user VALUES (417, 2, 89, false, false);
INSERT INTO public.issue_user VALUES (495, 1, 220, false, false);
INSERT INTO public.issue_user VALUES (464, 11, 99, true, false);
INSERT INTO public.issue_user VALUES (468, 5, 215, false, false);
INSERT INTO public.issue_user VALUES (414, 11, 89, true, false);
INSERT INTO public.issue_user VALUES (418, 5, 90, false, false);
INSERT INTO public.issue_user VALUES (420, 1, 90, false, false);
INSERT INTO public.issue_user VALUES (421, 16, 90, false, false);
INSERT INTO public.issue_user VALUES (422, 2, 90, false, false);
INSERT INTO public.issue_user VALUES (470, 1, 215, false, false);
INSERT INTO public.issue_user VALUES (471, 16, 215, false, false);
INSERT INTO public.issue_user VALUES (472, 2, 215, false, false);
INSERT INTO public.issue_user VALUES (419, 11, 90, true, false);
INSERT INTO public.issue_user VALUES (423, 5, 91, false, false);
INSERT INTO public.issue_user VALUES (425, 1, 91, false, false);
INSERT INTO public.issue_user VALUES (426, 16, 91, false, false);
INSERT INTO public.issue_user VALUES (427, 2, 91, false, false);
INSERT INTO public.issue_user VALUES (496, 16, 220, false, false);
INSERT INTO public.issue_user VALUES (497, 2, 220, false, false);
INSERT INTO public.issue_user VALUES (504, 11, 222, true, false);
INSERT INTO public.issue_user VALUES (508, 5, 223, false, false);
INSERT INTO public.issue_user VALUES (424, 11, 91, true, false);
INSERT INTO public.issue_user VALUES (428, 5, 92, false, false);
INSERT INTO public.issue_user VALUES (430, 1, 92, false, false);
INSERT INTO public.issue_user VALUES (431, 16, 92, false, false);
INSERT INTO public.issue_user VALUES (432, 2, 92, false, false);
INSERT INTO public.issue_user VALUES (469, 11, 215, true, false);
INSERT INTO public.issue_user VALUES (473, 5, 216, false, false);
INSERT INTO public.issue_user VALUES (475, 1, 216, false, false);
INSERT INTO public.issue_user VALUES (429, 11, 92, true, false);
INSERT INTO public.issue_user VALUES (433, 5, 93, false, false);
INSERT INTO public.issue_user VALUES (435, 1, 93, false, false);
INSERT INTO public.issue_user VALUES (436, 16, 93, false, false);
INSERT INTO public.issue_user VALUES (437, 2, 93, false, false);
INSERT INTO public.issue_user VALUES (476, 16, 216, false, false);
INSERT INTO public.issue_user VALUES (477, 2, 216, false, false);
INSERT INTO public.issue_user VALUES (510, 1, 223, false, false);
INSERT INTO public.issue_user VALUES (434, 11, 93, true, false);
INSERT INTO public.issue_user VALUES (438, 5, 94, false, false);
INSERT INTO public.issue_user VALUES (440, 1, 94, false, false);
INSERT INTO public.issue_user VALUES (441, 16, 94, false, false);
INSERT INTO public.issue_user VALUES (442, 2, 94, false, false);
INSERT INTO public.issue_user VALUES (494, 11, 220, true, false);
INSERT INTO public.issue_user VALUES (498, 5, 221, false, false);
INSERT INTO public.issue_user VALUES (474, 11, 216, true, false);
INSERT INTO public.issue_user VALUES (478, 5, 217, false, false);
INSERT INTO public.issue_user VALUES (439, 11, 94, true, false);
INSERT INTO public.issue_user VALUES (443, 5, 95, false, false);
INSERT INTO public.issue_user VALUES (445, 1, 95, false, false);
INSERT INTO public.issue_user VALUES (446, 16, 95, false, false);
INSERT INTO public.issue_user VALUES (447, 2, 95, false, false);
INSERT INTO public.issue_user VALUES (480, 1, 217, false, false);
INSERT INTO public.issue_user VALUES (481, 16, 217, false, false);
INSERT INTO public.issue_user VALUES (482, 2, 217, false, false);
INSERT INTO public.issue_user VALUES (444, 11, 95, true, false);
INSERT INTO public.issue_user VALUES (448, 5, 96, false, false);
INSERT INTO public.issue_user VALUES (450, 1, 96, false, false);
INSERT INTO public.issue_user VALUES (451, 16, 96, false, false);
INSERT INTO public.issue_user VALUES (452, 2, 96, false, false);
INSERT INTO public.issue_user VALUES (500, 1, 221, false, false);
INSERT INTO public.issue_user VALUES (501, 16, 221, false, false);
INSERT INTO public.issue_user VALUES (502, 2, 221, false, false);
INSERT INTO public.issue_user VALUES (449, 11, 96, true, false);
INSERT INTO public.issue_user VALUES (453, 5, 97, false, false);
INSERT INTO public.issue_user VALUES (455, 1, 97, false, false);
INSERT INTO public.issue_user VALUES (456, 16, 97, false, false);
INSERT INTO public.issue_user VALUES (457, 2, 97, false, false);
INSERT INTO public.issue_user VALUES (479, 11, 217, true, false);
INSERT INTO public.issue_user VALUES (483, 5, 218, false, false);
INSERT INTO public.issue_user VALUES (485, 1, 218, false, false);
INSERT INTO public.issue_user VALUES (454, 11, 97, true, false);
INSERT INTO public.issue_user VALUES (458, 5, 98, false, false);
INSERT INTO public.issue_user VALUES (460, 1, 98, false, false);
INSERT INTO public.issue_user VALUES (461, 16, 98, false, false);
INSERT INTO public.issue_user VALUES (462, 2, 98, false, false);
INSERT INTO public.issue_user VALUES (486, 16, 218, false, false);
INSERT INTO public.issue_user VALUES (487, 2, 218, false, false);
INSERT INTO public.issue_user VALUES (511, 16, 223, false, false);
INSERT INTO public.issue_user VALUES (512, 2, 223, false, false);
INSERT INTO public.issue_user VALUES (515, 1, 224, false, false);
INSERT INTO public.issue_user VALUES (516, 16, 224, false, false);
INSERT INTO public.issue_user VALUES (484, 11, 218, true, false);
INSERT INTO public.issue_user VALUES (488, 5, 219, false, false);
INSERT INTO public.issue_user VALUES (490, 1, 219, false, false);
INSERT INTO public.issue_user VALUES (491, 16, 219, false, false);
INSERT INTO public.issue_user VALUES (492, 2, 219, false, false);
INSERT INTO public.issue_user VALUES (499, 11, 221, true, false);
INSERT INTO public.issue_user VALUES (503, 5, 222, false, false);
INSERT INTO public.issue_user VALUES (505, 1, 222, false, false);
INSERT INTO public.issue_user VALUES (506, 16, 222, false, false);
INSERT INTO public.issue_user VALUES (507, 2, 222, false, false);
INSERT INTO public.issue_user VALUES (518, 5, 225, false, false);
INSERT INTO public.issue_user VALUES (517, 2, 224, false, false);
INSERT INTO public.issue_user VALUES (519, 11, 225, true, false);
INSERT INTO public.issue_user VALUES (520, 1, 225, false, false);
INSERT INTO public.issue_user VALUES (521, 16, 225, false, false);
INSERT INTO public.issue_user VALUES (522, 2, 225, false, false);
INSERT INTO public.issue_user VALUES (524, 11, 226, true, false);
INSERT INTO public.issue_user VALUES (523, 5, 226, false, false);
INSERT INTO public.issue_user VALUES (525, 1, 226, false, false);
INSERT INTO public.issue_user VALUES (526, 16, 226, false, false);
INSERT INTO public.issue_user VALUES (527, 2, 226, false, false);
INSERT INTO public.issue_user VALUES (529, 11, 227, true, false);
INSERT INTO public.issue_user VALUES (528, 5, 227, false, false);
INSERT INTO public.issue_user VALUES (530, 1, 227, false, false);
INSERT INTO public.issue_user VALUES (531, 16, 227, false, false);
INSERT INTO public.issue_user VALUES (532, 2, 227, false, false);
INSERT INTO public.issue_user VALUES (533, 5, 228, false, false);
INSERT INTO public.issue_user VALUES (535, 1, 228, false, false);
INSERT INTO public.issue_user VALUES (536, 16, 228, false, false);
INSERT INTO public.issue_user VALUES (537, 2, 228, false, false);
INSERT INTO public.issue_user VALUES (534, 11, 228, true, false);


--
-- Data for Name: issue_watch; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: label; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.label VALUES (1, 29, 0, 'DONE', false, '', '#00b140', 50, 2, 1705366770, 1705366770, 0);
INSERT INTO public.label VALUES (2, 29, 0, 'ERROR', false, 'Lỗi ứng dụng', '#ff0000', 37, 1, 1705366770, 1705366770, 0);
INSERT INTO public.label VALUES (3, 29, 0, 'FEATURE', false, 'Tính năng ứng dụng', '#6699cc', 7, 0, 1705366770, 1705366770, 0);
INSERT INTO public.label VALUES (4, 29, 0, 'MISS DEADLINE', false, '', '#9400d3', 0, 0, 1705366770, 1705366770, 0);
INSERT INTO public.label VALUES (5, 29, 0, 'TASK', false, '', '#f59f00', 7, 4, 1705366770, 1705366770, 0);
INSERT INTO public.label VALUES (6, 29, 0, 'TESTING', false, '', '#0000ff', 52, 0, 1705366770, 1705366770, 0);
INSERT INTO public.label VALUES (7, 29, 0, 'TODAY', false, '', '#dc143c', 4, 4, 1705366770, 1705366770, 0);


--
-- Data for Name: language_stat; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.language_stat VALUES (1, 1, '69239c62fdf7a0f80d409af5ec5be9fdacb7f57c', false, 'Kotlin', 138, 1685008696);
INSERT INTO public.language_stat VALUES (2, 1, '69239c62fdf7a0f80d409af5ec5be9fdacb7f57c', false, 'Swift', 1728, 1685008696);
INSERT INTO public.language_stat VALUES (3, 1, '69239c62fdf7a0f80d409af5ec5be9fdacb7f57c', false, 'Objective-C', 38, 1685008696);
INSERT INTO public.language_stat VALUES (4, 1, '69239c62fdf7a0f80d409af5ec5be9fdacb7f57c', false, 'Dart', 6038, 1685008696);
INSERT INTO public.language_stat VALUES (5, 1, '69239c62fdf7a0f80d409af5ec5be9fdacb7f57c', false, 'CMake', 18794, 1685008696);
INSERT INTO public.language_stat VALUES (6, 1, '69239c62fdf7a0f80d409af5ec5be9fdacb7f57c', true, 'C++', 22813, 1685008696);
INSERT INTO public.language_stat VALUES (7, 1, '69239c62fdf7a0f80d409af5ec5be9fdacb7f57c', false, 'C', 1425, 1685008696);
INSERT INTO public.language_stat VALUES (8, 1, '69239c62fdf7a0f80d409af5ec5be9fdacb7f57c', false, 'HTML', 1867, 1685008696);
INSERT INTO public.language_stat VALUES (9, 5, '2f139a8e94a15b037dc31fcc30e5823857257013', false, 'JavaScript', 362, 1685070684);
INSERT INTO public.language_stat VALUES (10, 5, '2f139a8e94a15b037dc31fcc30e5823857257013', false, 'HTML', 1756, 1685070684);
INSERT INTO public.language_stat VALUES (11, 5, '2f139a8e94a15b037dc31fcc30e5823857257013', false, 'CSS', 43462, 1685070684);
INSERT INTO public.language_stat VALUES (12, 5, '2f139a8e94a15b037dc31fcc30e5823857257013', true, 'TypeScript', 364017, 1685070684);
INSERT INTO public.language_stat VALUES (13, 6, 'ea13e1d90318274180b5572fbf7d109463ce01b0', false, 'PowerShell', 67, 1685353383);
INSERT INTO public.language_stat VALUES (14, 6, 'ea13e1d90318274180b5572fbf7d109463ce01b0', true, 'C#', 7735, 1685353383);
INSERT INTO public.language_stat VALUES (15, 7, 'db631c23c653da1f63b740d7e7814fc345df17c0', true, 'TypeScript', 143623, 1685678671);
INSERT INTO public.language_stat VALUES (19, 8, '997c70fb991ad1c41df5d8dd04873f291b57becd', true, 'TypeScript', 801888, 1685679008);
INSERT INTO public.language_stat VALUES (16, 8, '997c70fb991ad1c41df5d8dd04873f291b57becd', false, 'HTML', 369483, 1685679008);
INSERT INTO public.language_stat VALUES (17, 8, '997c70fb991ad1c41df5d8dd04873f291b57becd', false, 'SCSS', 131998, 1685679008);
INSERT INTO public.language_stat VALUES (18, 8, '997c70fb991ad1c41df5d8dd04873f291b57becd', false, 'JavaScript', 13170, 1685679008);
INSERT INTO public.language_stat VALUES (20, 9, 'eecc690536ed3f49a97cbb6bb416175b0ff4eb06', true, 'TypeScript', 405901, 1685933371);
INSERT INTO public.language_stat VALUES (21, 9, 'eecc690536ed3f49a97cbb6bb416175b0ff4eb06', false, 'HTML', 94550, 1685933371);
INSERT INTO public.language_stat VALUES (22, 9, 'eecc690536ed3f49a97cbb6bb416175b0ff4eb06', false, 'SCSS', 275515, 1685933371);
INSERT INTO public.language_stat VALUES (23, 9, 'eecc690536ed3f49a97cbb6bb416175b0ff4eb06', false, 'JavaScript', 18417, 1685933371);
INSERT INTO public.language_stat VALUES (24, 10, '580251b795de3f4ab4760b74af176873ee4129d7', true, 'C#', 774055, 1685933867);
INSERT INTO public.language_stat VALUES (27, 10, '580251b795de3f4ab4760b74af176873ee4129d7', false, 'Dockerfile', 384, 1685933867);
INSERT INTO public.language_stat VALUES (28, 10, '580251b795de3f4ab4760b74af176873ee4129d7', false, 'ASP.NET', 107, 1685933867);
INSERT INTO public.language_stat VALUES (26, 10, '580251b795de3f4ab4760b74af176873ee4129d7', false, 'HTML', 20694, 1685933867);
INSERT INTO public.language_stat VALUES (48, 18, '15aab07c22634b263f541cf2a5740d0fbc6e18d7', false, 'TypeScript', 508452, 1701226321);
INSERT INTO public.language_stat VALUES (44, 18, '15aab07c22634b263f541cf2a5740d0fbc6e18d7', true, 'JavaScript', 510348, 1701226321);
INSERT INTO public.language_stat VALUES (43, 17, '3388156ba70abc12c5d9f57ba31b3273f2bc34ae', false, 'JavaScript', 626, 1701226117);
INSERT INTO public.language_stat VALUES (40, 17, '3388156ba70abc12c5d9f57ba31b3273f2bc34ae', true, 'TypeScript', 447025, 1701226117);
INSERT INTO public.language_stat VALUES (34, 12, '7b700cce960bebc6fad9e06adb1d76eba7ebc29f', false, 'HTML', 1162, 1686814498);
INSERT INTO public.language_stat VALUES (35, 12, '7b700cce960bebc6fad9e06adb1d76eba7ebc29f', false, 'CSS', 557404, 1686814498);
INSERT INTO public.language_stat VALUES (45, 18, '15aab07c22634b263f541cf2a5740d0fbc6e18d7', false, 'SCSS', 9229, 1701226321);
INSERT INTO public.language_stat VALUES (46, 18, '15aab07c22634b263f541cf2a5740d0fbc6e18d7', false, 'CSS', 29606, 1701226321);
INSERT INTO public.language_stat VALUES (51, 22, 'fdee172356b6f9f25ce145921047bafcb1d2e5ca', false, 'HTML', 199854, 1701833901);
INSERT INTO public.language_stat VALUES (38, 15, '35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5', true, 'C#', 1067690, 1700799256);
INSERT INTO public.language_stat VALUES (39, 15, '35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5', false, 'HTML', 19443, 1700799256);
INSERT INTO public.language_stat VALUES (49, 20, '28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a', true, 'C#', 210506, 1701226697);
INSERT INTO public.language_stat VALUES (31, 11, '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', false, 'HTML', 781, 1685934957);
INSERT INTO public.language_stat VALUES (30, 11, '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', true, 'JavaScript', 2465944, 1685934957);
INSERT INTO public.language_stat VALUES (32, 11, '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', false, 'SCSS', 300976, 1685934957);
INSERT INTO public.language_stat VALUES (33, 11, '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', false, 'CSS', 549, 1685934957);
INSERT INTO public.language_stat VALUES (52, 22, 'fdee172356b6f9f25ce145921047bafcb1d2e5ca', true, 'C#', 2368414, 1701833901);
INSERT INTO public.language_stat VALUES (53, 22, 'fdee172356b6f9f25ce145921047bafcb1d2e5ca', false, 'Dockerfile', 384, 1701833901);
INSERT INTO public.language_stat VALUES (41, 17, '3388156ba70abc12c5d9f57ba31b3273f2bc34ae', false, 'CSS', 10529, 1701226117);
INSERT INTO public.language_stat VALUES (54, 22, 'fdee172356b6f9f25ce145921047bafcb1d2e5ca', false, 'ASP.NET', 103, 1701833901);
INSERT INTO public.language_stat VALUES (36, 12, '7b700cce960bebc6fad9e06adb1d76eba7ebc29f', false, 'SCSS', 333352, 1686814498);
INSERT INTO public.language_stat VALUES (37, 12, '7b700cce960bebc6fad9e06adb1d76eba7ebc29f', true, 'JavaScript', 3206605, 1686814498);
INSERT INTO public.language_stat VALUES (47, 18, '15aab07c22634b263f541cf2a5740d0fbc6e18d7', false, 'HTML', 7404, 1701226321);
INSERT INTO public.language_stat VALUES (50, 22, 'fdee172356b6f9f25ce145921047bafcb1d2e5ca', false, 'TSQL', 2778, 1701833901);
INSERT INTO public.language_stat VALUES (55, 23, 'dff222e66d727340377ee089801d61d867450f43', false, 'Starlark', 602, 1701833954);
INSERT INTO public.language_stat VALUES (56, 23, 'dff222e66d727340377ee089801d61d867450f43', false, 'Objective-C++', 4441, 1701833954);
INSERT INTO public.language_stat VALUES (57, 23, 'dff222e66d727340377ee089801d61d867450f43', false, 'C++', 7283, 1701833954);
INSERT INTO public.language_stat VALUES (58, 23, 'dff222e66d727340377ee089801d61d867450f43', false, 'JavaScript', 775, 1701833954);
INSERT INTO public.language_stat VALUES (59, 23, 'dff222e66d727340377ee089801d61d867450f43', false, 'Objective-C', 2379, 1701833954);
INSERT INTO public.language_stat VALUES (60, 23, 'dff222e66d727340377ee089801d61d867450f43', false, 'Ruby', 1610, 1701833954);
INSERT INTO public.language_stat VALUES (61, 23, 'dff222e66d727340377ee089801d61d867450f43', false, 'Java', 15538, 1701833954);
INSERT INTO public.language_stat VALUES (42, 17, '3388156ba70abc12c5d9f57ba31b3273f2bc34ae', false, 'HTML', 141258, 1701226117);
INSERT INTO public.language_stat VALUES (62, 23, 'dff222e66d727340377ee089801d61d867450f43', false, 'CMake', 268, 1701833954);
INSERT INTO public.language_stat VALUES (63, 23, 'dff222e66d727340377ee089801d61d867450f43', true, 'TypeScript', 19576, 1701833954);
INSERT INTO public.language_stat VALUES (70, 25, 'd6c2e64af79bb97a5b57cf8e173d2f2d29f3019b', true, 'C#', 48730, 1703835150);
INSERT INTO public.language_stat VALUES (71, 25, 'd6c2e64af79bb97a5b57cf8e173d2f2d29f3019b', false, 'Rich Text Format', 253, 1703835150);
INSERT INTO public.language_stat VALUES (64, 24, 'f87e57452ea8eb0c41bbdb0f03c41522f317dfb7', false, 'JavaScript', 652, 1703824266);
INSERT INTO public.language_stat VALUES (65, 24, 'f87e57452ea8eb0c41bbdb0f03c41522f317dfb7', false, 'Objective-C', 2289, 1703824266);
INSERT INTO public.language_stat VALUES (66, 24, 'f87e57452ea8eb0c41bbdb0f03c41522f317dfb7', false, 'Objective-C++', 806, 1703824266);
INSERT INTO public.language_stat VALUES (67, 24, 'f87e57452ea8eb0c41bbdb0f03c41522f317dfb7', true, 'TypeScript', 271088, 1703824266);
INSERT INTO public.language_stat VALUES (68, 24, 'f87e57452ea8eb0c41bbdb0f03c41522f317dfb7', false, 'Ruby', 2205, 1703824266);
INSERT INTO public.language_stat VALUES (69, 24, 'f87e57452ea8eb0c41bbdb0f03c41522f317dfb7', false, 'Kotlin', 2570, 1703824266);
INSERT INTO public.language_stat VALUES (75, 26, '814c2834abecae300e8f733df62b8c2d0e7f835f', false, 'SCSS', 9229, 1704425277);
INSERT INTO public.language_stat VALUES (76, 26, '814c2834abecae300e8f733df62b8c2d0e7f835f', false, 'CSS', 29606, 1704425277);
INSERT INTO public.language_stat VALUES (72, 26, '814c2834abecae300e8f733df62b8c2d0e7f835f', false, 'HTML', 7508, 1704425277);
INSERT INTO public.language_stat VALUES (73, 26, '814c2834abecae300e8f733df62b8c2d0e7f835f', true, 'TypeScript', 608155, 1704425277);
INSERT INTO public.language_stat VALUES (74, 26, '814c2834abecae300e8f733df62b8c2d0e7f835f', false, 'JavaScript', 516039, 1704425277);
INSERT INTO public.language_stat VALUES (77, 27, '67c62e1bb972c3731c1207adab34819d00dda8c6', true, 'JavaScript', 6988714, 1705366279);
INSERT INTO public.language_stat VALUES (78, 27, '67c62e1bb972c3731c1207adab34819d00dda8c6', false, 'SCSS', 331196, 1705366279);
INSERT INTO public.language_stat VALUES (79, 27, '67c62e1bb972c3731c1207adab34819d00dda8c6', false, 'CSS', 80771, 1705366279);
INSERT INTO public.language_stat VALUES (80, 27, '67c62e1bb972c3731c1207adab34819d00dda8c6', false, 'HTML', 2634, 1705366279);
INSERT INTO public.language_stat VALUES (81, 28, '94169c8272994c848786971f0f5b1231c24fefd0', false, 'Dockerfile', 1278, 1705366330);
INSERT INTO public.language_stat VALUES (82, 28, '94169c8272994c848786971f0f5b1231c24fefd0', false, 'Shell', 2037, 1705366330);
INSERT INTO public.language_stat VALUES (83, 28, '94169c8272994c848786971f0f5b1231c24fefd0', false, 'PowerShell', 853, 1705366330);
INSERT INTO public.language_stat VALUES (84, 28, '94169c8272994c848786971f0f5b1231c24fefd0', true, 'C#', 1540598, 1705366330);
INSERT INTO public.language_stat VALUES (85, 28, '94169c8272994c848786971f0f5b1231c24fefd0', false, 'HTML', 10953, 1705366330);
INSERT INTO public.language_stat VALUES (86, 29, 'f48875268f70978021fd327c465baf007dd868b9', false, 'JavaScript', 340230, 1705366923);
INSERT INTO public.language_stat VALUES (87, 29, 'f48875268f70978021fd327c465baf007dd868b9', false, 'Swift', 101, 1705366923);
INSERT INTO public.language_stat VALUES (88, 29, 'f48875268f70978021fd327c465baf007dd868b9', false, 'Lua', 257, 1705366923);
INSERT INTO public.language_stat VALUES (89, 29, 'f48875268f70978021fd327c465baf007dd868b9', false, 'Objective-C', 4803, 1705366923);
INSERT INTO public.language_stat VALUES (90, 29, 'f48875268f70978021fd327c465baf007dd868b9', false, 'Ruby', 1345, 1705366923);
INSERT INTO public.language_stat VALUES (91, 29, 'f48875268f70978021fd327c465baf007dd868b9', true, 'TypeScript', 989771, 1705366923);
INSERT INTO public.language_stat VALUES (92, 29, 'f48875268f70978021fd327c465baf007dd868b9', false, 'Java', 9119, 1705366923);
INSERT INTO public.language_stat VALUES (93, 29, 'f48875268f70978021fd327c465baf007dd868b9', false, 'HTML', 4130, 1705366923);
INSERT INTO public.language_stat VALUES (94, 29, 'f48875268f70978021fd327c465baf007dd868b9', false, 'Starlark', 602, 1705366923);
INSERT INTO public.language_stat VALUES (95, 29, 'f48875268f70978021fd327c465baf007dd868b9', false, 'C', 227, 1705366923);


--
-- Data for Name: lfs_lock; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: lfs_meta_object; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: login_source; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: milestone; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: mirror; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.mirror VALUES (4, 20, 28800000000000, true, 1705634913, 1705663713, false, '', 'https://gitlab.com/binh-dinh-f1/webapi.git');
INSERT INTO public.mirror VALUES (1, 5, 28800000000000, true, 1705644510, 1687677422, false, '', 'https://gitlab.com/dongtv2510/quanly-datdai.git');
INSERT INTO public.mirror VALUES (6, 22, 28800000000000, true, 1705624712, 1705653512, false, '', 'https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend.git');
INSERT INTO public.mirror VALUES (7, 23, 28800000000000, true, 1705624716, 1705653516, false, '', 'https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/mobile.git');
INSERT INTO public.mirror VALUES (2, 17, 28800000000000, true, 1705634312, 1705663112, false, '', 'https://gitlab.com/binh-dinh-f1/binhdinhf1-website.git');
INSERT INTO public.mirror VALUES (3, 18, 28800000000000, true, 1705634316, 1705663116, false, '', 'https://gitlab.com/binh-dinh-f1/admin.git');


--
-- Data for Name: notice; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.notice VALUES (1, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687678021);
INSERT INTO public.notice VALUES (2, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687678619);
INSERT INTO public.notice VALUES (3, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687679220);
INSERT INTO public.notice VALUES (4, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687679820);
INSERT INTO public.notice VALUES (5, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687680421);
INSERT INTO public.notice VALUES (6, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687681020);
INSERT INTO public.notice VALUES (7, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687681619);
INSERT INTO public.notice VALUES (8, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687682219);
INSERT INTO public.notice VALUES (9, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687682820);
INSERT INTO public.notice VALUES (10, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687683420);
INSERT INTO public.notice VALUES (11, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687684020);
INSERT INTO public.notice VALUES (12, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687684620);
INSERT INTO public.notice VALUES (13, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687685222);
INSERT INTO public.notice VALUES (14, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687685820);
INSERT INTO public.notice VALUES (15, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687686420);
INSERT INTO public.notice VALUES (25, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687692419);
INSERT INTO public.notice VALUES (1218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688408219);
INSERT INTO public.notice VALUES (1219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688408820);
INSERT INTO public.notice VALUES (1221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688410020);
INSERT INTO public.notice VALUES (1372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688500620);
INSERT INTO public.notice VALUES (1440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688541420);
INSERT INTO public.notice VALUES (1441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688542020);
INSERT INTO public.notice VALUES (1442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688542619);
INSERT INTO public.notice VALUES (1443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688543219);
INSERT INTO public.notice VALUES (1444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688543820);
INSERT INTO public.notice VALUES (1478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688564220);
INSERT INTO public.notice VALUES (1479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688564820);
INSERT INTO public.notice VALUES (1482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688566619);
INSERT INTO public.notice VALUES (16, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687687019);
INSERT INTO public.notice VALUES (17, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687687619);
INSERT INTO public.notice VALUES (18, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687688220);
INSERT INTO public.notice VALUES (19, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687688820);
INSERT INTO public.notice VALUES (20, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687689420);
INSERT INTO public.notice VALUES (21, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687690020);
INSERT INTO public.notice VALUES (22, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687690620);
INSERT INTO public.notice VALUES (23, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687691220);
INSERT INTO public.notice VALUES (24, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687691820);
INSERT INTO public.notice VALUES (26, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687693020);
INSERT INTO public.notice VALUES (27, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687693623);
INSERT INTO public.notice VALUES (28, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687694220);
INSERT INTO public.notice VALUES (29, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687694821);
INSERT INTO public.notice VALUES (30, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687695419);
INSERT INTO public.notice VALUES (31, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687696020);
INSERT INTO public.notice VALUES (32, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687696620);
INSERT INTO public.notice VALUES (33, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687697220);
INSERT INTO public.notice VALUES (34, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687697820);
INSERT INTO public.notice VALUES (41, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687702020);
INSERT INTO public.notice VALUES (42, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687702620);
INSERT INTO public.notice VALUES (1220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688409420);
INSERT INTO public.notice VALUES (1222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688410620);
INSERT INTO public.notice VALUES (1223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688411219);
INSERT INTO public.notice VALUES (1224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688411820);
INSERT INTO public.notice VALUES (1225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688412420);
INSERT INTO public.notice VALUES (1226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688413019);
INSERT INTO public.notice VALUES (1227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688413620);
INSERT INTO public.notice VALUES (1228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688414219);
INSERT INTO public.notice VALUES (35, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687698420);
INSERT INTO public.notice VALUES (36, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687699020);
INSERT INTO public.notice VALUES (37, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687699620);
INSERT INTO public.notice VALUES (38, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687700220);
INSERT INTO public.notice VALUES (39, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687700820);
INSERT INTO public.notice VALUES (40, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687701421);
INSERT INTO public.notice VALUES (43, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687703220);
INSERT INTO public.notice VALUES (44, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687703820);
INSERT INTO public.notice VALUES (45, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687704420);
INSERT INTO public.notice VALUES (46, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687705020);
INSERT INTO public.notice VALUES (47, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687705620);
INSERT INTO public.notice VALUES (48, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687706220);
INSERT INTO public.notice VALUES (49, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687706819);
INSERT INTO public.notice VALUES (50, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687707420);
INSERT INTO public.notice VALUES (51, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687708021);
INSERT INTO public.notice VALUES (52, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687708620);
INSERT INTO public.notice VALUES (53, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687709220);
INSERT INTO public.notice VALUES (54, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687709820);
INSERT INTO public.notice VALUES (55, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687710422);
INSERT INTO public.notice VALUES (56, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687711021);
INSERT INTO public.notice VALUES (57, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687711620);
INSERT INTO public.notice VALUES (58, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687712220);
INSERT INTO public.notice VALUES (59, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687712820);
INSERT INTO public.notice VALUES (60, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687713419);
INSERT INTO public.notice VALUES (61, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687714019);
INSERT INTO public.notice VALUES (62, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687714620);
INSERT INTO public.notice VALUES (63, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687715220);
INSERT INTO public.notice VALUES (64, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687715820);
INSERT INTO public.notice VALUES (65, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687716420);
INSERT INTO public.notice VALUES (66, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687717019);
INSERT INTO public.notice VALUES (67, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687717620);
INSERT INTO public.notice VALUES (71, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687720019);
INSERT INTO public.notice VALUES (72, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687720620);
INSERT INTO public.notice VALUES (73, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687721220);
INSERT INTO public.notice VALUES (1229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688414820);
INSERT INTO public.notice VALUES (1231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688416019);
INSERT INTO public.notice VALUES (1235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688418419);
INSERT INTO public.notice VALUES (1236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688419019);
INSERT INTO public.notice VALUES (1239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688420822);
INSERT INTO public.notice VALUES (1373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688501221);
INSERT INTO public.notice VALUES (1374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688501821);
INSERT INTO public.notice VALUES (1445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688544420);
INSERT INTO public.notice VALUES (68, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687718220);
INSERT INTO public.notice VALUES (69, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687718820);
INSERT INTO public.notice VALUES (70, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687719420);
INSERT INTO public.notice VALUES (74, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687721820);
INSERT INTO public.notice VALUES (75, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687722420);
INSERT INTO public.notice VALUES (76, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687723019);
INSERT INTO public.notice VALUES (77, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687723619);
INSERT INTO public.notice VALUES (78, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687724220);
INSERT INTO public.notice VALUES (79, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687724820);
INSERT INTO public.notice VALUES (80, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687725420);
INSERT INTO public.notice VALUES (81, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687726020);
INSERT INTO public.notice VALUES (82, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687726619);
INSERT INTO public.notice VALUES (83, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687727221);
INSERT INTO public.notice VALUES (84, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687727824);
INSERT INTO public.notice VALUES (85, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687728420);
INSERT INTO public.notice VALUES (86, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687729019);
INSERT INTO public.notice VALUES (1230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688415419);
INSERT INTO public.notice VALUES (1232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688416619);
INSERT INTO public.notice VALUES (1233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688417220);
INSERT INTO public.notice VALUES (1234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688417820);
INSERT INTO public.notice VALUES (1237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688419619);
INSERT INTO public.notice VALUES (1238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688420219);
INSERT INTO public.notice VALUES (1246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688425019);
INSERT INTO public.notice VALUES (1249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688426820);
INSERT INTO public.notice VALUES (1375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688502420);
INSERT INTO public.notice VALUES (1376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688503020);
INSERT INTO public.notice VALUES (1446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688545019);
INSERT INTO public.notice VALUES (1451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688548020);
INSERT INTO public.notice VALUES (87, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687729619);
INSERT INTO public.notice VALUES (88, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687730220);
INSERT INTO public.notice VALUES (89, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687730819);
INSERT INTO public.notice VALUES (90, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687731420);
INSERT INTO public.notice VALUES (91, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687732020);
INSERT INTO public.notice VALUES (92, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687732619);
INSERT INTO public.notice VALUES (93, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687733220);
INSERT INTO public.notice VALUES (94, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687733820);
INSERT INTO public.notice VALUES (95, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687734419);
INSERT INTO public.notice VALUES (96, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687735020);
INSERT INTO public.notice VALUES (97, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687735620);
INSERT INTO public.notice VALUES (98, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687736219);
INSERT INTO public.notice VALUES (99, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687736820);
INSERT INTO public.notice VALUES (100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687737419);
INSERT INTO public.notice VALUES (101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687738019);
INSERT INTO public.notice VALUES (102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687738620);
INSERT INTO public.notice VALUES (103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687739220);
INSERT INTO public.notice VALUES (104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687739819);
INSERT INTO public.notice VALUES (105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687740420);
INSERT INTO public.notice VALUES (106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687741021);
INSERT INTO public.notice VALUES (107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687741620);
INSERT INTO public.notice VALUES (108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687742220);
INSERT INTO public.notice VALUES (109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687742821);
INSERT INTO public.notice VALUES (110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687743420);
INSERT INTO public.notice VALUES (111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687744019);
INSERT INTO public.notice VALUES (112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687744619);
INSERT INTO public.notice VALUES (113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687745219);
INSERT INTO public.notice VALUES (114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687745820);
INSERT INTO public.notice VALUES (115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687746420);
INSERT INTO public.notice VALUES (116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687747021);
INSERT INTO public.notice VALUES (117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687747620);
INSERT INTO public.notice VALUES (118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687748220);
INSERT INTO public.notice VALUES (119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687748821);
INSERT INTO public.notice VALUES (135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687758419);
INSERT INTO public.notice VALUES (138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687760219);
INSERT INTO public.notice VALUES (1240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688421420);
INSERT INTO public.notice VALUES (1241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688422020);
INSERT INTO public.notice VALUES (1377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688503620);
INSERT INTO public.notice VALUES (1378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688504220);
INSERT INTO public.notice VALUES (1381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688506020);
INSERT INTO public.notice VALUES (1382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688506619);
INSERT INTO public.notice VALUES (1383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688507219);
INSERT INTO public.notice VALUES (120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687749420);
INSERT INTO public.notice VALUES (121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687750020);
INSERT INTO public.notice VALUES (122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687750620);
INSERT INTO public.notice VALUES (123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687751221);
INSERT INTO public.notice VALUES (124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687751820);
INSERT INTO public.notice VALUES (125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687752420);
INSERT INTO public.notice VALUES (126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687753020);
INSERT INTO public.notice VALUES (127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687753627);
INSERT INTO public.notice VALUES (128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687754221);
INSERT INTO public.notice VALUES (129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687754821);
INSERT INTO public.notice VALUES (130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687755420);
INSERT INTO public.notice VALUES (131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687756022);
INSERT INTO public.notice VALUES (132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687756620);
INSERT INTO public.notice VALUES (133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687757220);
INSERT INTO public.notice VALUES (134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687757820);
INSERT INTO public.notice VALUES (136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687759021);
INSERT INTO public.notice VALUES (137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687759619);
INSERT INTO public.notice VALUES (139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687760820);
INSERT INTO public.notice VALUES (140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687761420);
INSERT INTO public.notice VALUES (141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687762020);
INSERT INTO public.notice VALUES (142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687762623);
INSERT INTO public.notice VALUES (143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687763224);
INSERT INTO public.notice VALUES (144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687763820);
INSERT INTO public.notice VALUES (145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687764420);
INSERT INTO public.notice VALUES (146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687765020);
INSERT INTO public.notice VALUES (147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687765620);
INSERT INTO public.notice VALUES (148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687766220);
INSERT INTO public.notice VALUES (149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687766820);
INSERT INTO public.notice VALUES (150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687767420);
INSERT INTO public.notice VALUES (151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687768021);
INSERT INTO public.notice VALUES (152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687768620);
INSERT INTO public.notice VALUES (153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687769221);
INSERT INTO public.notice VALUES (154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687769820);
INSERT INTO public.notice VALUES (155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687770420);
INSERT INTO public.notice VALUES (156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687771021);
INSERT INTO public.notice VALUES (157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687771619);
INSERT INTO public.notice VALUES (158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687772220);
INSERT INTO public.notice VALUES (159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687772821);
INSERT INTO public.notice VALUES (160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687773419);
INSERT INTO public.notice VALUES (161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687774021);
INSERT INTO public.notice VALUES (162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687774621);
INSERT INTO public.notice VALUES (163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687775219);
INSERT INTO public.notice VALUES (164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687775820);
INSERT INTO public.notice VALUES (165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687776420);
INSERT INTO public.notice VALUES (166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687777020);
INSERT INTO public.notice VALUES (167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687777620);
INSERT INTO public.notice VALUES (168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687778220);
INSERT INTO public.notice VALUES (169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687778820);
INSERT INTO public.notice VALUES (170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687779419);
INSERT INTO public.notice VALUES (171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687780019);
INSERT INTO public.notice VALUES (172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687780619);
INSERT INTO public.notice VALUES (173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687781220);
INSERT INTO public.notice VALUES (174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687781820);
INSERT INTO public.notice VALUES (175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687782420);
INSERT INTO public.notice VALUES (176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687783019);
INSERT INTO public.notice VALUES (177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687783621);
INSERT INTO public.notice VALUES (178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687784220);
INSERT INTO public.notice VALUES (179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687784820);
INSERT INTO public.notice VALUES (180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687785419);
INSERT INTO public.notice VALUES (181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687786020);
INSERT INTO public.notice VALUES (182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687786620);
INSERT INTO public.notice VALUES (183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687787220);
INSERT INTO public.notice VALUES (184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687787820);
INSERT INTO public.notice VALUES (201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687798019);
INSERT INTO public.notice VALUES (202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687798620);
INSERT INTO public.notice VALUES (1242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688422620);
INSERT INTO public.notice VALUES (1380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688505420);
INSERT INTO public.notice VALUES (1389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688510819);
INSERT INTO public.notice VALUES (1392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688512619);
INSERT INTO public.notice VALUES (1452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688548620);
INSERT INTO public.notice VALUES (185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687788421);
INSERT INTO public.notice VALUES (186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687789020);
INSERT INTO public.notice VALUES (187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687789620);
INSERT INTO public.notice VALUES (188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687790220);
INSERT INTO public.notice VALUES (189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687790820);
INSERT INTO public.notice VALUES (190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687791420);
INSERT INTO public.notice VALUES (191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687792020);
INSERT INTO public.notice VALUES (192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687792620);
INSERT INTO public.notice VALUES (193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687793220);
INSERT INTO public.notice VALUES (194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687793820);
INSERT INTO public.notice VALUES (195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687794421);
INSERT INTO public.notice VALUES (196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687795021);
INSERT INTO public.notice VALUES (197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687795620);
INSERT INTO public.notice VALUES (198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687796220);
INSERT INTO public.notice VALUES (199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687796820);
INSERT INTO public.notice VALUES (200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687797420);
INSERT INTO public.notice VALUES (203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687799220);
INSERT INTO public.notice VALUES (204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687799820);
INSERT INTO public.notice VALUES (205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687800420);
INSERT INTO public.notice VALUES (206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687801021);
INSERT INTO public.notice VALUES (207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687801620);
INSERT INTO public.notice VALUES (208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687802220);
INSERT INTO public.notice VALUES (209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687802820);
INSERT INTO public.notice VALUES (210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687803419);
INSERT INTO public.notice VALUES (211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687804020);
INSERT INTO public.notice VALUES (212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687804620);
INSERT INTO public.notice VALUES (213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687805220);
INSERT INTO public.notice VALUES (214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687805820);
INSERT INTO public.notice VALUES (215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687806419);
INSERT INTO public.notice VALUES (216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687807020);
INSERT INTO public.notice VALUES (217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687807620);
INSERT INTO public.notice VALUES (219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687808820);
INSERT INTO public.notice VALUES (1243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688423220);
INSERT INTO public.notice VALUES (1244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688423820);
INSERT INTO public.notice VALUES (1245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688424419);
INSERT INTO public.notice VALUES (1247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688425621);
INSERT INTO public.notice VALUES (1248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688426219);
INSERT INTO public.notice VALUES (1384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688507820);
INSERT INTO public.notice VALUES (1385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688508419);
INSERT INTO public.notice VALUES (1454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688549820);
INSERT INTO public.notice VALUES (1455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688550419);
INSERT INTO public.notice VALUES (1460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688553420);
INSERT INTO public.notice VALUES (218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687808220);
INSERT INTO public.notice VALUES (220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687809420);
INSERT INTO public.notice VALUES (221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687810020);
INSERT INTO public.notice VALUES (222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687810620);
INSERT INTO public.notice VALUES (223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687811219);
INSERT INTO public.notice VALUES (224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687811820);
INSERT INTO public.notice VALUES (225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687812420);
INSERT INTO public.notice VALUES (226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687813019);
INSERT INTO public.notice VALUES (227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687813620);
INSERT INTO public.notice VALUES (228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687814220);
INSERT INTO public.notice VALUES (229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687814820);
INSERT INTO public.notice VALUES (230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687815420);
INSERT INTO public.notice VALUES (231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687816020);
INSERT INTO public.notice VALUES (232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687816621);
INSERT INTO public.notice VALUES (233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687817220);
INSERT INTO public.notice VALUES (1250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688427420);
INSERT INTO public.notice VALUES (1251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688428020);
INSERT INTO public.notice VALUES (1252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688428619);
INSERT INTO public.notice VALUES (1253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688429220);
INSERT INTO public.notice VALUES (1386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688509020);
INSERT INTO public.notice VALUES (1387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688509619);
INSERT INTO public.notice VALUES (1388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688510219);
INSERT INTO public.notice VALUES (1390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688511420);
INSERT INTO public.notice VALUES (1391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688512019);
INSERT INTO public.notice VALUES (1394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688513820);
INSERT INTO public.notice VALUES (1396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688515020);
INSERT INTO public.notice VALUES (1457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688551620);
INSERT INTO public.notice VALUES (1458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688552220);
INSERT INTO public.notice VALUES (234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687817820);
INSERT INTO public.notice VALUES (235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687818420);
INSERT INTO public.notice VALUES (236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687819020);
INSERT INTO public.notice VALUES (237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687819620);
INSERT INTO public.notice VALUES (238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687820221);
INSERT INTO public.notice VALUES (239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687820819);
INSERT INTO public.notice VALUES (240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687821420);
INSERT INTO public.notice VALUES (241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687822020);
INSERT INTO public.notice VALUES (242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687822620);
INSERT INTO public.notice VALUES (243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687823220);
INSERT INTO public.notice VALUES (244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687823820);
INSERT INTO public.notice VALUES (245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687824420);
INSERT INTO public.notice VALUES (246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687825020);
INSERT INTO public.notice VALUES (247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687825620);
INSERT INTO public.notice VALUES (248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687826220);
INSERT INTO public.notice VALUES (249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687826820);
INSERT INTO public.notice VALUES (250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687827420);
INSERT INTO public.notice VALUES (259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687832819);
INSERT INTO public.notice VALUES (260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687833420);
INSERT INTO public.notice VALUES (1254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688429820);
INSERT INTO public.notice VALUES (1255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688430419);
INSERT INTO public.notice VALUES (1256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688431020);
INSERT INTO public.notice VALUES (1261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688434019);
INSERT INTO public.notice VALUES (1269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688438820);
INSERT INTO public.notice VALUES (1270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688439419);
INSERT INTO public.notice VALUES (1271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688440019);
INSERT INTO public.notice VALUES (1276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688443021);
INSERT INTO public.notice VALUES (1277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688443619);
INSERT INTO public.notice VALUES (251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687828020);
INSERT INTO public.notice VALUES (252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687828620);
INSERT INTO public.notice VALUES (253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687829219);
INSERT INTO public.notice VALUES (254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687829820);
INSERT INTO public.notice VALUES (255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687830420);
INSERT INTO public.notice VALUES (256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687831020);
INSERT INTO public.notice VALUES (257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687831620);
INSERT INTO public.notice VALUES (258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687832219);
INSERT INTO public.notice VALUES (261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687834020);
INSERT INTO public.notice VALUES (262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687834621);
INSERT INTO public.notice VALUES (263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687835219);
INSERT INTO public.notice VALUES (264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687835819);
INSERT INTO public.notice VALUES (265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687836419);
INSERT INTO public.notice VALUES (266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687837020);
INSERT INTO public.notice VALUES (267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687837620);
INSERT INTO public.notice VALUES (268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687838220);
INSERT INTO public.notice VALUES (269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687838819);
INSERT INTO public.notice VALUES (270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687839419);
INSERT INTO public.notice VALUES (281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687846020);
INSERT INTO public.notice VALUES (283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687847221);
INSERT INTO public.notice VALUES (1257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688431619);
INSERT INTO public.notice VALUES (1258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688432219);
INSERT INTO public.notice VALUES (1259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688432819);
INSERT INTO public.notice VALUES (1260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688433419);
INSERT INTO public.notice VALUES (1393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688513221);
INSERT INTO public.notice VALUES (1395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688514419);
INSERT INTO public.notice VALUES (1397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688515620);
INSERT INTO public.notice VALUES (1398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688516220);
INSERT INTO public.notice VALUES (271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687840020);
INSERT INTO public.notice VALUES (272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687840620);
INSERT INTO public.notice VALUES (273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687841221);
INSERT INTO public.notice VALUES (274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687841821);
INSERT INTO public.notice VALUES (275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687842419);
INSERT INTO public.notice VALUES (276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687843020);
INSERT INTO public.notice VALUES (277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687843620);
INSERT INTO public.notice VALUES (278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687844219);
INSERT INTO public.notice VALUES (279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687844820);
INSERT INTO public.notice VALUES (280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687845420);
INSERT INTO public.notice VALUES (282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687846620);
INSERT INTO public.notice VALUES (284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687847820);
INSERT INTO public.notice VALUES (285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687848419);
INSERT INTO public.notice VALUES (286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687849024);
INSERT INTO public.notice VALUES (287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687849621);
INSERT INTO public.notice VALUES (288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687850220);
INSERT INTO public.notice VALUES (289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687850820);
INSERT INTO public.notice VALUES (292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687852620);
INSERT INTO public.notice VALUES (1262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688434620);
INSERT INTO public.notice VALUES (1263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688435220);
INSERT INTO public.notice VALUES (1264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688435819);
INSERT INTO public.notice VALUES (1265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688436420);
INSERT INTO public.notice VALUES (1266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688437019);
INSERT INTO public.notice VALUES (1267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688437619);
INSERT INTO public.notice VALUES (1268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688438220);
INSERT INTO public.notice VALUES (1272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688440621);
INSERT INTO public.notice VALUES (1273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688441220);
INSERT INTO public.notice VALUES (1274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688441820);
INSERT INTO public.notice VALUES (290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687851420);
INSERT INTO public.notice VALUES (291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687852024);
INSERT INTO public.notice VALUES (293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687853220);
INSERT INTO public.notice VALUES (294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687853819);
INSERT INTO public.notice VALUES (295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687854423);
INSERT INTO public.notice VALUES (296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687855019);
INSERT INTO public.notice VALUES (297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687855621);
INSERT INTO public.notice VALUES (298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687856219);
INSERT INTO public.notice VALUES (299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687856821);
INSERT INTO public.notice VALUES (300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687857420);
INSERT INTO public.notice VALUES (301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687858020);
INSERT INTO public.notice VALUES (302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687858621);
INSERT INTO public.notice VALUES (303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687859220);
INSERT INTO public.notice VALUES (304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687859820);
INSERT INTO public.notice VALUES (305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687860420);
INSERT INTO public.notice VALUES (306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687861020);
INSERT INTO public.notice VALUES (307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687861620);
INSERT INTO public.notice VALUES (308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687862220);
INSERT INTO public.notice VALUES (309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687862820);
INSERT INTO public.notice VALUES (310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687863420);
INSERT INTO public.notice VALUES (311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687864020);
INSERT INTO public.notice VALUES (312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687864620);
INSERT INTO public.notice VALUES (313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687865220);
INSERT INTO public.notice VALUES (314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687865820);
INSERT INTO public.notice VALUES (315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687866420);
INSERT INTO public.notice VALUES (316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687867020);
INSERT INTO public.notice VALUES (317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687867621);
INSERT INTO public.notice VALUES (318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687868219);
INSERT INTO public.notice VALUES (319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687868820);
INSERT INTO public.notice VALUES (320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687869420);
INSERT INTO public.notice VALUES (321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687870020);
INSERT INTO public.notice VALUES (322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687870620);
INSERT INTO public.notice VALUES (323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687871221);
INSERT INTO public.notice VALUES (324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687871820);
INSERT INTO public.notice VALUES (325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687872420);
INSERT INTO public.notice VALUES (326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687873020);
INSERT INTO public.notice VALUES (327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687873620);
INSERT INTO public.notice VALUES (328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687874219);
INSERT INTO public.notice VALUES (329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687874820);
INSERT INTO public.notice VALUES (330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687875419);
INSERT INTO public.notice VALUES (331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687876021);
INSERT INTO public.notice VALUES (332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687876621);
INSERT INTO public.notice VALUES (333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687877220);
INSERT INTO public.notice VALUES (334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687877821);
INSERT INTO public.notice VALUES (337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687879619);
INSERT INTO public.notice VALUES (1275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688442419);
INSERT INTO public.notice VALUES (1279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688444819);
INSERT INTO public.notice VALUES (1280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688445420);
INSERT INTO public.notice VALUES (1281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688446020);
INSERT INTO public.notice VALUES (1286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688449020);
INSERT INTO public.notice VALUES (1287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688449620);
INSERT INTO public.notice VALUES (1288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688450221);
INSERT INTO public.notice VALUES (1289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688450819);
INSERT INTO public.notice VALUES (1290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688451420);
INSERT INTO public.notice VALUES (1292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688452621);
INSERT INTO public.notice VALUES (1297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688455619);
INSERT INTO public.notice VALUES (335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687878421);
INSERT INTO public.notice VALUES (336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687879020);
INSERT INTO public.notice VALUES (338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687880221);
INSERT INTO public.notice VALUES (339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687880820);
INSERT INTO public.notice VALUES (340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687881420);
INSERT INTO public.notice VALUES (341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687882019);
INSERT INTO public.notice VALUES (342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687882620);
INSERT INTO public.notice VALUES (343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687883219);
INSERT INTO public.notice VALUES (344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687883820);
INSERT INTO public.notice VALUES (345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687884420);
INSERT INTO public.notice VALUES (346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687885020);
INSERT INTO public.notice VALUES (347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687885619);
INSERT INTO public.notice VALUES (348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687886220);
INSERT INTO public.notice VALUES (349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687886819);
INSERT INTO public.notice VALUES (350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687887421);
INSERT INTO public.notice VALUES (351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687888021);
INSERT INTO public.notice VALUES (352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687888620);
INSERT INTO public.notice VALUES (353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687889220);
INSERT INTO public.notice VALUES (357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687891619);
INSERT INTO public.notice VALUES (358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687892219);
INSERT INTO public.notice VALUES (1278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688444219);
INSERT INTO public.notice VALUES (1282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688446620);
INSERT INTO public.notice VALUES (1283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688447219);
INSERT INTO public.notice VALUES (1284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688447820);
INSERT INTO public.notice VALUES (1285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688448420);
INSERT INTO public.notice VALUES (1291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688452020);
INSERT INTO public.notice VALUES (1293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688453220);
INSERT INTO public.notice VALUES (1294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688453819);
INSERT INTO public.notice VALUES (354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687889819);
INSERT INTO public.notice VALUES (355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687890419);
INSERT INTO public.notice VALUES (356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687891019);
INSERT INTO public.notice VALUES (359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687892820);
INSERT INTO public.notice VALUES (360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687893419);
INSERT INTO public.notice VALUES (361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687894020);
INSERT INTO public.notice VALUES (362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687894620);
INSERT INTO public.notice VALUES (363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687895220);
INSERT INTO public.notice VALUES (364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687895820);
INSERT INTO public.notice VALUES (365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687896423);
INSERT INTO public.notice VALUES (366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687897020);
INSERT INTO public.notice VALUES (367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687897620);
INSERT INTO public.notice VALUES (368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687898219);
INSERT INTO public.notice VALUES (369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687898820);
INSERT INTO public.notice VALUES (370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687899420);
INSERT INTO public.notice VALUES (378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687904219);
INSERT INTO public.notice VALUES (386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687909021);
INSERT INTO public.notice VALUES (1295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688454419);
INSERT INTO public.notice VALUES (1399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688516819);
INSERT INTO public.notice VALUES (1400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688517420);
INSERT INTO public.notice VALUES (1401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688518019);
INSERT INTO public.notice VALUES (1402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688518619);
INSERT INTO public.notice VALUES (1403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688519219);
INSERT INTO public.notice VALUES (1404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688519819);
INSERT INTO public.notice VALUES (1405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688520420);
INSERT INTO public.notice VALUES (1406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688521020);
INSERT INTO public.notice VALUES (1411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688524020);
INSERT INTO public.notice VALUES (1412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688524620);
INSERT INTO public.notice VALUES (371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687900020);
INSERT INTO public.notice VALUES (372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687900619);
INSERT INTO public.notice VALUES (373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687901220);
INSERT INTO public.notice VALUES (374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687901819);
INSERT INTO public.notice VALUES (375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687902421);
INSERT INTO public.notice VALUES (376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687903020);
INSERT INTO public.notice VALUES (377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687903620);
INSERT INTO public.notice VALUES (379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687904820);
INSERT INTO public.notice VALUES (380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687905419);
INSERT INTO public.notice VALUES (381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687906021);
INSERT INTO public.notice VALUES (382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687906620);
INSERT INTO public.notice VALUES (383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687907220);
INSERT INTO public.notice VALUES (384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687907820);
INSERT INTO public.notice VALUES (385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687908419);
INSERT INTO public.notice VALUES (387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687909619);
INSERT INTO public.notice VALUES (388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687910220);
INSERT INTO public.notice VALUES (389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687910820);
INSERT INTO public.notice VALUES (390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687911421);
INSERT INTO public.notice VALUES (391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687912020);
INSERT INTO public.notice VALUES (392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687912620);
INSERT INTO public.notice VALUES (393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687913220);
INSERT INTO public.notice VALUES (394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687913820);
INSERT INTO public.notice VALUES (395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687914419);
INSERT INTO public.notice VALUES (396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687915020);
INSERT INTO public.notice VALUES (397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687915619);
INSERT INTO public.notice VALUES (398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687916220);
INSERT INTO public.notice VALUES (399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687916819);
INSERT INTO public.notice VALUES (400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687917420);
INSERT INTO public.notice VALUES (401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687918021);
INSERT INTO public.notice VALUES (402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687918621);
INSERT INTO public.notice VALUES (403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687919220);
INSERT INTO public.notice VALUES (404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687919823);
INSERT INTO public.notice VALUES (405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687920420);
INSERT INTO public.notice VALUES (406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687921019);
INSERT INTO public.notice VALUES (409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687922821);
INSERT INTO public.notice VALUES (1296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688455021);
INSERT INTO public.notice VALUES (1303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688459220);
INSERT INTO public.notice VALUES (1304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688459820);
INSERT INTO public.notice VALUES (1313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688465219);
INSERT INTO public.notice VALUES (1314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688465819);
INSERT INTO public.notice VALUES (1315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688466421);
INSERT INTO public.notice VALUES (1316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688467019);
INSERT INTO public.notice VALUES (407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687921619);
INSERT INTO public.notice VALUES (408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687922220);
INSERT INTO public.notice VALUES (410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687923420);
INSERT INTO public.notice VALUES (411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687924020);
INSERT INTO public.notice VALUES (412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687924620);
INSERT INTO public.notice VALUES (413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687925220);
INSERT INTO public.notice VALUES (414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687925820);
INSERT INTO public.notice VALUES (415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687926420);
INSERT INTO public.notice VALUES (416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687927020);
INSERT INTO public.notice VALUES (417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687927620);
INSERT INTO public.notice VALUES (418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687928224);
INSERT INTO public.notice VALUES (419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687928820);
INSERT INTO public.notice VALUES (420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687929420);
INSERT INTO public.notice VALUES (421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687930020);
INSERT INTO public.notice VALUES (422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687930619);
INSERT INTO public.notice VALUES (423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687931220);
INSERT INTO public.notice VALUES (424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687931821);
INSERT INTO public.notice VALUES (425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687932420);
INSERT INTO public.notice VALUES (426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687933020);
INSERT INTO public.notice VALUES (427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687933621);
INSERT INTO public.notice VALUES (428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687934220);
INSERT INTO public.notice VALUES (429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687934822);
INSERT INTO public.notice VALUES (430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687935420);
INSERT INTO public.notice VALUES (431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687936020);
INSERT INTO public.notice VALUES (432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687936619);
INSERT INTO public.notice VALUES (433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687937220);
INSERT INTO public.notice VALUES (434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687937819);
INSERT INTO public.notice VALUES (435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687938423);
INSERT INTO public.notice VALUES (436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687939020);
INSERT INTO public.notice VALUES (437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687939619);
INSERT INTO public.notice VALUES (1298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688456220);
INSERT INTO public.notice VALUES (1299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688456820);
INSERT INTO public.notice VALUES (1300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688457421);
INSERT INTO public.notice VALUES (1407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688521621);
INSERT INTO public.notice VALUES (1408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688522220);
INSERT INTO public.notice VALUES (1409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688522821);
INSERT INTO public.notice VALUES (1410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688523419);
INSERT INTO public.notice VALUES (1413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688525221);
INSERT INTO public.notice VALUES (1459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688552819);
INSERT INTO public.notice VALUES (1481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688566020);
INSERT INTO public.notice VALUES (1484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688567820);
INSERT INTO public.notice VALUES (1485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688568423);
INSERT INTO public.notice VALUES (438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687940220);
INSERT INTO public.notice VALUES (439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687940819);
INSERT INTO public.notice VALUES (440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687941419);
INSERT INTO public.notice VALUES (441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687942020);
INSERT INTO public.notice VALUES (442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687942619);
INSERT INTO public.notice VALUES (443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687943221);
INSERT INTO public.notice VALUES (444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687943819);
INSERT INTO public.notice VALUES (445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687944420);
INSERT INTO public.notice VALUES (446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687945021);
INSERT INTO public.notice VALUES (447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687945620);
INSERT INTO public.notice VALUES (448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687946221);
INSERT INTO public.notice VALUES (449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687946819);
INSERT INTO public.notice VALUES (450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687947420);
INSERT INTO public.notice VALUES (451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687948020);
INSERT INTO public.notice VALUES (452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687948620);
INSERT INTO public.notice VALUES (453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687949220);
INSERT INTO public.notice VALUES (454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687949819);
INSERT INTO public.notice VALUES (461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687954021);
INSERT INTO public.notice VALUES (462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687954619);
INSERT INTO public.notice VALUES (463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687955220);
INSERT INTO public.notice VALUES (464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687955820);
INSERT INTO public.notice VALUES (465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687956421);
INSERT INTO public.notice VALUES (466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687957020);
INSERT INTO public.notice VALUES (467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687957619);
INSERT INTO public.notice VALUES (468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687958221);
INSERT INTO public.notice VALUES (469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687958820);
INSERT INTO public.notice VALUES (470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687959419);
INSERT INTO public.notice VALUES (472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687960620);
INSERT INTO public.notice VALUES (455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687950420);
INSERT INTO public.notice VALUES (456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687951023);
INSERT INTO public.notice VALUES (457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687951619);
INSERT INTO public.notice VALUES (458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687952220);
INSERT INTO public.notice VALUES (459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687952819);
INSERT INTO public.notice VALUES (460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687953420);
INSERT INTO public.notice VALUES (471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687960020);
INSERT INTO public.notice VALUES (478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687964220);
INSERT INTO public.notice VALUES (480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687965420);
INSERT INTO public.notice VALUES (1301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688458019);
INSERT INTO public.notice VALUES (1302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688458619);
INSERT INTO public.notice VALUES (1414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688525821);
INSERT INTO public.notice VALUES (1461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688554020);
INSERT INTO public.notice VALUES (1462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688554620);
INSERT INTO public.notice VALUES (473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687961219);
INSERT INTO public.notice VALUES (474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687961821);
INSERT INTO public.notice VALUES (475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687962419);
INSERT INTO public.notice VALUES (476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687963019);
INSERT INTO public.notice VALUES (477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687963619);
INSERT INTO public.notice VALUES (479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687964820);
INSERT INTO public.notice VALUES (481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687966019);
INSERT INTO public.notice VALUES (482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687966620);
INSERT INTO public.notice VALUES (483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687967223);
INSERT INTO public.notice VALUES (484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687967820);
INSERT INTO public.notice VALUES (485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687968419);
INSERT INTO public.notice VALUES (486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687969020);
INSERT INTO public.notice VALUES (487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687969619);
INSERT INTO public.notice VALUES (488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687970221);
INSERT INTO public.notice VALUES (489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687970820);
INSERT INTO public.notice VALUES (490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687971420);
INSERT INTO public.notice VALUES (491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687972020);
INSERT INTO public.notice VALUES (492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687972621);
INSERT INTO public.notice VALUES (498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687976220);
INSERT INTO public.notice VALUES (499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687976820);
INSERT INTO public.notice VALUES (500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687977419);
INSERT INTO public.notice VALUES (501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687978020);
INSERT INTO public.notice VALUES (502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687978620);
INSERT INTO public.notice VALUES (503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687979220);
INSERT INTO public.notice VALUES (504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687979820);
INSERT INTO public.notice VALUES (505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687980420);
INSERT INTO public.notice VALUES (506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687981020);
INSERT INTO public.notice VALUES (507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687981621);
INSERT INTO public.notice VALUES (493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687973219);
INSERT INTO public.notice VALUES (494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687973820);
INSERT INTO public.notice VALUES (495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687974421);
INSERT INTO public.notice VALUES (496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687975020);
INSERT INTO public.notice VALUES (497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687975619);
INSERT INTO public.notice VALUES (521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687990020);
INSERT INTO public.notice VALUES (522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687990619);
INSERT INTO public.notice VALUES (1305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688460420);
INSERT INTO public.notice VALUES (1415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688526420);
INSERT INTO public.notice VALUES (1416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688527023);
INSERT INTO public.notice VALUES (1421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688530019);
INSERT INTO public.notice VALUES (1422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688530620);
INSERT INTO public.notice VALUES (1423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688531221);
INSERT INTO public.notice VALUES (1424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688531820);
INSERT INTO public.notice VALUES (508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687982220);
INSERT INTO public.notice VALUES (509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687982820);
INSERT INTO public.notice VALUES (510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687983420);
INSERT INTO public.notice VALUES (511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687984019);
INSERT INTO public.notice VALUES (512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687984619);
INSERT INTO public.notice VALUES (513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687985220);
INSERT INTO public.notice VALUES (514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687985819);
INSERT INTO public.notice VALUES (515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687986419);
INSERT INTO public.notice VALUES (516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687987020);
INSERT INTO public.notice VALUES (517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687987620);
INSERT INTO public.notice VALUES (518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687988219);
INSERT INTO public.notice VALUES (519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687988820);
INSERT INTO public.notice VALUES (520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687989421);
INSERT INTO public.notice VALUES (523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687991220);
INSERT INTO public.notice VALUES (524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687991820);
INSERT INTO public.notice VALUES (525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687992419);
INSERT INTO public.notice VALUES (526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687993020);
INSERT INTO public.notice VALUES (527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687993620);
INSERT INTO public.notice VALUES (528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687994219);
INSERT INTO public.notice VALUES (529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687994820);
INSERT INTO public.notice VALUES (530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687995420);
INSERT INTO public.notice VALUES (531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687996020);
INSERT INTO public.notice VALUES (532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687996620);
INSERT INTO public.notice VALUES (533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687997220);
INSERT INTO public.notice VALUES (534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687997820);
INSERT INTO public.notice VALUES (535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687998420);
INSERT INTO public.notice VALUES (536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687999019);
INSERT INTO public.notice VALUES (537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1687999619);
INSERT INTO public.notice VALUES (538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688000219);
INSERT INTO public.notice VALUES (539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688000819);
INSERT INTO public.notice VALUES (540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688001419);
INSERT INTO public.notice VALUES (541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688002019);
INSERT INTO public.notice VALUES (542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688002620);
INSERT INTO public.notice VALUES (543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688003220);
INSERT INTO public.notice VALUES (550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688007420);
INSERT INTO public.notice VALUES (562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688014620);
INSERT INTO public.notice VALUES (566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688017020);
INSERT INTO public.notice VALUES (567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688017620);
INSERT INTO public.notice VALUES (568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688018220);
INSERT INTO public.notice VALUES (569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688018821);
INSERT INTO public.notice VALUES (570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688019420);
INSERT INTO public.notice VALUES (571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688020019);
INSERT INTO public.notice VALUES (544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688003820);
INSERT INTO public.notice VALUES (545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688004421);
INSERT INTO public.notice VALUES (546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688005019);
INSERT INTO public.notice VALUES (547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688005620);
INSERT INTO public.notice VALUES (548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688006220);
INSERT INTO public.notice VALUES (549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688006825);
INSERT INTO public.notice VALUES (551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688008020);
INSERT INTO public.notice VALUES (552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688008620);
INSERT INTO public.notice VALUES (553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688009220);
INSERT INTO public.notice VALUES (554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688009819);
INSERT INTO public.notice VALUES (555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688010420);
INSERT INTO public.notice VALUES (556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688011020);
INSERT INTO public.notice VALUES (557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688011619);
INSERT INTO public.notice VALUES (558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688012220);
INSERT INTO public.notice VALUES (559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688012820);
INSERT INTO public.notice VALUES (560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688013424);
INSERT INTO public.notice VALUES (561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688014019);
INSERT INTO public.notice VALUES (563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688015221);
INSERT INTO public.notice VALUES (564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688015819);
INSERT INTO public.notice VALUES (565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688016420);
INSERT INTO public.notice VALUES (572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688020619);
INSERT INTO public.notice VALUES (573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688021224);
INSERT INTO public.notice VALUES (574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688021820);
INSERT INTO public.notice VALUES (575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688022420);
INSERT INTO public.notice VALUES (576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688023020);
INSERT INTO public.notice VALUES (1306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688461020);
INSERT INTO public.notice VALUES (1307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688461619);
INSERT INTO public.notice VALUES (1308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688462220);
INSERT INTO public.notice VALUES (577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688023619);
INSERT INTO public.notice VALUES (578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688024219);
INSERT INTO public.notice VALUES (579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688024820);
INSERT INTO public.notice VALUES (580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688025420);
INSERT INTO public.notice VALUES (581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688026020);
INSERT INTO public.notice VALUES (582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688026619);
INSERT INTO public.notice VALUES (583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688027220);
INSERT INTO public.notice VALUES (584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688027819);
INSERT INTO public.notice VALUES (585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688028420);
INSERT INTO public.notice VALUES (586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688029020);
INSERT INTO public.notice VALUES (587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688029620);
INSERT INTO public.notice VALUES (588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688030220);
INSERT INTO public.notice VALUES (589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688030819);
INSERT INTO public.notice VALUES (590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688031420);
INSERT INTO public.notice VALUES (591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688032020);
INSERT INTO public.notice VALUES (592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688032619);
INSERT INTO public.notice VALUES (593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688033219);
INSERT INTO public.notice VALUES (594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688033819);
INSERT INTO public.notice VALUES (595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688034419);
INSERT INTO public.notice VALUES (596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688035019);
INSERT INTO public.notice VALUES (597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688035619);
INSERT INTO public.notice VALUES (598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688036221);
INSERT INTO public.notice VALUES (604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688039820);
INSERT INTO public.notice VALUES (605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688040419);
INSERT INTO public.notice VALUES (606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688041020);
INSERT INTO public.notice VALUES (607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688041619);
INSERT INTO public.notice VALUES (608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688042219);
INSERT INTO public.notice VALUES (609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688042819);
INSERT INTO public.notice VALUES (599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688036821);
INSERT INTO public.notice VALUES (600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688037420);
INSERT INTO public.notice VALUES (601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688038020);
INSERT INTO public.notice VALUES (602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688038620);
INSERT INTO public.notice VALUES (603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688039223);
INSERT INTO public.notice VALUES (610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688043420);
INSERT INTO public.notice VALUES (611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688044019);
INSERT INTO public.notice VALUES (612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688044620);
INSERT INTO public.notice VALUES (613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688045219);
INSERT INTO public.notice VALUES (614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688045819);
INSERT INTO public.notice VALUES (615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688046420);
INSERT INTO public.notice VALUES (616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688047020);
INSERT INTO public.notice VALUES (617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688047620);
INSERT INTO public.notice VALUES (618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688048220);
INSERT INTO public.notice VALUES (619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688048820);
INSERT INTO public.notice VALUES (623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688051220);
INSERT INTO public.notice VALUES (624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688051819);
INSERT INTO public.notice VALUES (625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688052419);
INSERT INTO public.notice VALUES (626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688053020);
INSERT INTO public.notice VALUES (627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688053619);
INSERT INTO public.notice VALUES (1309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688462821);
INSERT INTO public.notice VALUES (1310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688463419);
INSERT INTO public.notice VALUES (1417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688527619);
INSERT INTO public.notice VALUES (1418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688528221);
INSERT INTO public.notice VALUES (1419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688528819);
INSERT INTO public.notice VALUES (1420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688529420);
INSERT INTO public.notice VALUES (1425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688532420);
INSERT INTO public.notice VALUES (1463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688555220);
INSERT INTO public.notice VALUES (620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688049420);
INSERT INTO public.notice VALUES (621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688050020);
INSERT INTO public.notice VALUES (622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688050620);
INSERT INTO public.notice VALUES (628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688054220);
INSERT INTO public.notice VALUES (629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688054821);
INSERT INTO public.notice VALUES (630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688055421);
INSERT INTO public.notice VALUES (631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688056020);
INSERT INTO public.notice VALUES (632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688056620);
INSERT INTO public.notice VALUES (633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688057221);
INSERT INTO public.notice VALUES (634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688057820);
INSERT INTO public.notice VALUES (635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688058420);
INSERT INTO public.notice VALUES (636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688059020);
INSERT INTO public.notice VALUES (637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688059621);
INSERT INTO public.notice VALUES (638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688060220);
INSERT INTO public.notice VALUES (639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688060820);
INSERT INTO public.notice VALUES (640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688061420);
INSERT INTO public.notice VALUES (641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688062020);
INSERT INTO public.notice VALUES (642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688062620);
INSERT INTO public.notice VALUES (643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688063219);
INSERT INTO public.notice VALUES (644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688063820);
INSERT INTO public.notice VALUES (645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688064419);
INSERT INTO public.notice VALUES (646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688065019);
INSERT INTO public.notice VALUES (649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688066820);
INSERT INTO public.notice VALUES (656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688071019);
INSERT INTO public.notice VALUES (657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688071619);
INSERT INTO public.notice VALUES (658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688072219);
INSERT INTO public.notice VALUES (659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688072820);
INSERT INTO public.notice VALUES (660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688073420);
INSERT INTO public.notice VALUES (647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688065620);
INSERT INTO public.notice VALUES (648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688066220);
INSERT INTO public.notice VALUES (650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688067420);
INSERT INTO public.notice VALUES (651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688068020);
INSERT INTO public.notice VALUES (652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688068619);
INSERT INTO public.notice VALUES (653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688069221);
INSERT INTO public.notice VALUES (654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688069819);
INSERT INTO public.notice VALUES (655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688070419);
INSERT INTO public.notice VALUES (666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688077020);
INSERT INTO public.notice VALUES (667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688077619);
INSERT INTO public.notice VALUES (668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688078220);
INSERT INTO public.notice VALUES (669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688078819);
INSERT INTO public.notice VALUES (670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688079419);
INSERT INTO public.notice VALUES (1311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688464020);
INSERT INTO public.notice VALUES (661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688074019);
INSERT INTO public.notice VALUES (662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688074620);
INSERT INTO public.notice VALUES (663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688075220);
INSERT INTO public.notice VALUES (664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688075819);
INSERT INTO public.notice VALUES (665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688076420);
INSERT INTO public.notice VALUES (671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688080020);
INSERT INTO public.notice VALUES (672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688080620);
INSERT INTO public.notice VALUES (673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688081219);
INSERT INTO public.notice VALUES (674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688081820);
INSERT INTO public.notice VALUES (675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688082419);
INSERT INTO public.notice VALUES (676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688083019);
INSERT INTO public.notice VALUES (677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688083620);
INSERT INTO public.notice VALUES (678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688084219);
INSERT INTO public.notice VALUES (679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688084820);
INSERT INTO public.notice VALUES (680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688085420);
INSERT INTO public.notice VALUES (682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688086620);
INSERT INTO public.notice VALUES (683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688087219);
INSERT INTO public.notice VALUES (684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688087820);
INSERT INTO public.notice VALUES (1312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688464620);
INSERT INTO public.notice VALUES (1323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688471220);
INSERT INTO public.notice VALUES (1324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688471820);
INSERT INTO public.notice VALUES (1325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688472419);
INSERT INTO public.notice VALUES (1326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688473020);
INSERT INTO public.notice VALUES (1426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688533020);
INSERT INTO public.notice VALUES (1428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688534219);
INSERT INTO public.notice VALUES (1429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688534819);
INSERT INTO public.notice VALUES (1464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688555821);
INSERT INTO public.notice VALUES (1465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688556420);
INSERT INTO public.notice VALUES (681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688086020);
INSERT INTO public.notice VALUES (685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688088420);
INSERT INTO public.notice VALUES (686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688089020);
INSERT INTO public.notice VALUES (687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688089619);
INSERT INTO public.notice VALUES (688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688090219);
INSERT INTO public.notice VALUES (689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688090820);
INSERT INTO public.notice VALUES (690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688091419);
INSERT INTO public.notice VALUES (691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688092019);
INSERT INTO public.notice VALUES (692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688092619);
INSERT INTO public.notice VALUES (693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688093219);
INSERT INTO public.notice VALUES (694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688093819);
INSERT INTO public.notice VALUES (695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688094419);
INSERT INTO public.notice VALUES (696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688095019);
INSERT INTO public.notice VALUES (697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688095620);
INSERT INTO public.notice VALUES (698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688096221);
INSERT INTO public.notice VALUES (699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688096820);
INSERT INTO public.notice VALUES (700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688097420);
INSERT INTO public.notice VALUES (704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688099819);
INSERT INTO public.notice VALUES (705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688100420);
INSERT INTO public.notice VALUES (706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688101020);
INSERT INTO public.notice VALUES (709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688102819);
INSERT INTO public.notice VALUES (710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688103419);
INSERT INTO public.notice VALUES (1317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688467620);
INSERT INTO public.notice VALUES (1318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688468220);
INSERT INTO public.notice VALUES (1319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688468819);
INSERT INTO public.notice VALUES (1320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688469420);
INSERT INTO public.notice VALUES (1321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688470019);
INSERT INTO public.notice VALUES (1322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688470619);
INSERT INTO public.notice VALUES (701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688098020);
INSERT INTO public.notice VALUES (702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688098621);
INSERT INTO public.notice VALUES (703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688099219);
INSERT INTO public.notice VALUES (707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688101620);
INSERT INTO public.notice VALUES (708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688102225);
INSERT INTO public.notice VALUES (711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688104020);
INSERT INTO public.notice VALUES (712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688104620);
INSERT INTO public.notice VALUES (713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688105220);
INSERT INTO public.notice VALUES (714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688105820);
INSERT INTO public.notice VALUES (715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688106421);
INSERT INTO public.notice VALUES (716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688107020);
INSERT INTO public.notice VALUES (717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688107619);
INSERT INTO public.notice VALUES (718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688108221);
INSERT INTO public.notice VALUES (719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688108820);
INSERT INTO public.notice VALUES (720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688109420);
INSERT INTO public.notice VALUES (721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688110019);
INSERT INTO public.notice VALUES (726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688113021);
INSERT INTO public.notice VALUES (728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688114220);
INSERT INTO public.notice VALUES (729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688114819);
INSERT INTO public.notice VALUES (730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688115420);
INSERT INTO public.notice VALUES (731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688116020);
INSERT INTO public.notice VALUES (732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688116620);
INSERT INTO public.notice VALUES (736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688119020);
INSERT INTO public.notice VALUES (737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688119620);
INSERT INTO public.notice VALUES (738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688120219);
INSERT INTO public.notice VALUES (739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688120819);
INSERT INTO public.notice VALUES (740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688121419);
INSERT INTO public.notice VALUES (741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688122021);
INSERT INTO public.notice VALUES (722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688110620);
INSERT INTO public.notice VALUES (723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688111220);
INSERT INTO public.notice VALUES (724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688111820);
INSERT INTO public.notice VALUES (725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688112421);
INSERT INTO public.notice VALUES (727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688113619);
INSERT INTO public.notice VALUES (733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688117219);
INSERT INTO public.notice VALUES (734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688117820);
INSERT INTO public.notice VALUES (735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688118419);
INSERT INTO public.notice VALUES (742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688122619);
INSERT INTO public.notice VALUES (743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688123220);
INSERT INTO public.notice VALUES (744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688123820);
INSERT INTO public.notice VALUES (745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688124419);
INSERT INTO public.notice VALUES (746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688125019);
INSERT INTO public.notice VALUES (747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688125620);
INSERT INTO public.notice VALUES (748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688126220);
INSERT INTO public.notice VALUES (749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688126820);
INSERT INTO public.notice VALUES (750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688127419);
INSERT INTO public.notice VALUES (751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688128020);
INSERT INTO public.notice VALUES (752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688128620);
INSERT INTO public.notice VALUES (753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688129222);
INSERT INTO public.notice VALUES (754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688129821);
INSERT INTO public.notice VALUES (755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688130420);
INSERT INTO public.notice VALUES (756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688131020);
INSERT INTO public.notice VALUES (757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688131619);
INSERT INTO public.notice VALUES (758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688132220);
INSERT INTO public.notice VALUES (760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688133420);
INSERT INTO public.notice VALUES (762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688134620);
INSERT INTO public.notice VALUES (763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688135219);
INSERT INTO public.notice VALUES (759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688132819);
INSERT INTO public.notice VALUES (761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688134020);
INSERT INTO public.notice VALUES (765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688136419);
INSERT INTO public.notice VALUES (770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688139420);
INSERT INTO public.notice VALUES (771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688140019);
INSERT INTO public.notice VALUES (772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688140620);
INSERT INTO public.notice VALUES (773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688141220);
INSERT INTO public.notice VALUES (774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688141820);
INSERT INTO public.notice VALUES (775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688142420);
INSERT INTO public.notice VALUES (776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688143020);
INSERT INTO public.notice VALUES (778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688144220);
INSERT INTO public.notice VALUES (1327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688473619);
INSERT INTO public.notice VALUES (1328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688474221);
INSERT INTO public.notice VALUES (1329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688474820);
INSERT INTO public.notice VALUES (764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688135819);
INSERT INTO public.notice VALUES (766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688137019);
INSERT INTO public.notice VALUES (767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688137621);
INSERT INTO public.notice VALUES (768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688138220);
INSERT INTO public.notice VALUES (769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688138819);
INSERT INTO public.notice VALUES (777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688143620);
INSERT INTO public.notice VALUES (779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688144820);
INSERT INTO public.notice VALUES (780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688145420);
INSERT INTO public.notice VALUES (781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688146019);
INSERT INTO public.notice VALUES (782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688146620);
INSERT INTO public.notice VALUES (783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688147220);
INSERT INTO public.notice VALUES (784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688147820);
INSERT INTO public.notice VALUES (785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688148420);
INSERT INTO public.notice VALUES (786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688149019);
INSERT INTO public.notice VALUES (787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688149619);
INSERT INTO public.notice VALUES (788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688150219);
INSERT INTO public.notice VALUES (789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688150820);
INSERT INTO public.notice VALUES (790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688151420);
INSERT INTO public.notice VALUES (794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688153819);
INSERT INTO public.notice VALUES (795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688154420);
INSERT INTO public.notice VALUES (796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688155019);
INSERT INTO public.notice VALUES (797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688155620);
INSERT INTO public.notice VALUES (803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688159220);
INSERT INTO public.notice VALUES (804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688159819);
INSERT INTO public.notice VALUES (805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688160420);
INSERT INTO public.notice VALUES (1330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688475421);
INSERT INTO public.notice VALUES (1331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688476020);
INSERT INTO public.notice VALUES (1333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688477219);
INSERT INTO public.notice VALUES (791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688152020);
INSERT INTO public.notice VALUES (792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688152619);
INSERT INTO public.notice VALUES (793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688153220);
INSERT INTO public.notice VALUES (798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688156220);
INSERT INTO public.notice VALUES (799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688156819);
INSERT INTO public.notice VALUES (800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688157420);
INSERT INTO public.notice VALUES (801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688158019);
INSERT INTO public.notice VALUES (802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688158620);
INSERT INTO public.notice VALUES (806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688161021);
INSERT INTO public.notice VALUES (807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688161620);
INSERT INTO public.notice VALUES (808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688162220);
INSERT INTO public.notice VALUES (809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688162820);
INSERT INTO public.notice VALUES (810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688163420);
INSERT INTO public.notice VALUES (811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688164019);
INSERT INTO public.notice VALUES (812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688164620);
INSERT INTO public.notice VALUES (813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688165220);
INSERT INTO public.notice VALUES (814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688165819);
INSERT INTO public.notice VALUES (815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688166419);
INSERT INTO public.notice VALUES (816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688167019);
INSERT INTO public.notice VALUES (817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688167619);
INSERT INTO public.notice VALUES (818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688168219);
INSERT INTO public.notice VALUES (819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688168819);
INSERT INTO public.notice VALUES (820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688169419);
INSERT INTO public.notice VALUES (821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688170020);
INSERT INTO public.notice VALUES (822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688170620);
INSERT INTO public.notice VALUES (823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688171219);
INSERT INTO public.notice VALUES (824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688171819);
INSERT INTO public.notice VALUES (825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688172419);
INSERT INTO public.notice VALUES (826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688173020);
INSERT INTO public.notice VALUES (827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688173619);
INSERT INTO public.notice VALUES (828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688174221);
INSERT INTO public.notice VALUES (831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688176020);
INSERT INTO public.notice VALUES (1332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688476620);
INSERT INTO public.notice VALUES (1335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688478420);
INSERT INTO public.notice VALUES (1336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688479020);
INSERT INTO public.notice VALUES (1427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688533621);
INSERT INTO public.notice VALUES (1466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688557020);
INSERT INTO public.notice VALUES (1467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688557620);
INSERT INTO public.notice VALUES (1468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688558220);
INSERT INTO public.notice VALUES (1474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688561820);
INSERT INTO public.notice VALUES (1476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688563019);
INSERT INTO public.notice VALUES (1483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688567219);
INSERT INTO public.notice VALUES (829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688174820);
INSERT INTO public.notice VALUES (830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688175419);
INSERT INTO public.notice VALUES (832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688176622);
INSERT INTO public.notice VALUES (833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688177220);
INSERT INTO public.notice VALUES (834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688177819);
INSERT INTO public.notice VALUES (835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688178420);
INSERT INTO public.notice VALUES (836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688179020);
INSERT INTO public.notice VALUES (837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688179621);
INSERT INTO public.notice VALUES (838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688180219);
INSERT INTO public.notice VALUES (839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688180819);
INSERT INTO public.notice VALUES (840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688181419);
INSERT INTO public.notice VALUES (841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688182019);
INSERT INTO public.notice VALUES (842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688182620);
INSERT INTO public.notice VALUES (843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688183219);
INSERT INTO public.notice VALUES (844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688183820);
INSERT INTO public.notice VALUES (845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688184420);
INSERT INTO public.notice VALUES (846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688185020);
INSERT INTO public.notice VALUES (847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688185619);
INSERT INTO public.notice VALUES (848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688186221);
INSERT INTO public.notice VALUES (849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688186820);
INSERT INTO public.notice VALUES (850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688187419);
INSERT INTO public.notice VALUES (851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688188020);
INSERT INTO public.notice VALUES (863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688195219);
INSERT INTO public.notice VALUES (864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688195819);
INSERT INTO public.notice VALUES (865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688196420);
INSERT INTO public.notice VALUES (866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688197020);
INSERT INTO public.notice VALUES (867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688197621);
INSERT INTO public.notice VALUES (876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688203019);
INSERT INTO public.notice VALUES (852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688188620);
INSERT INTO public.notice VALUES (853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688189220);
INSERT INTO public.notice VALUES (854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688189820);
INSERT INTO public.notice VALUES (855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688190420);
INSERT INTO public.notice VALUES (856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688191020);
INSERT INTO public.notice VALUES (857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688191620);
INSERT INTO public.notice VALUES (858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688192219);
INSERT INTO public.notice VALUES (859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688192823);
INSERT INTO public.notice VALUES (860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688193420);
INSERT INTO public.notice VALUES (861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688194019);
INSERT INTO public.notice VALUES (862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688194620);
INSERT INTO public.notice VALUES (868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688198220);
INSERT INTO public.notice VALUES (869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688198819);
INSERT INTO public.notice VALUES (870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688199419);
INSERT INTO public.notice VALUES (871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688200020);
INSERT INTO public.notice VALUES (872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688200620);
INSERT INTO public.notice VALUES (873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688201220);
INSERT INTO public.notice VALUES (874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688201820);
INSERT INTO public.notice VALUES (875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688202420);
INSERT INTO public.notice VALUES (888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688210220);
INSERT INTO public.notice VALUES (889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688210820);
INSERT INTO public.notice VALUES (898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688216220);
INSERT INTO public.notice VALUES (899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688216820);
INSERT INTO public.notice VALUES (900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688217421);
INSERT INTO public.notice VALUES (901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688218020);
INSERT INTO public.notice VALUES (902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688218619);
INSERT INTO public.notice VALUES (903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688219220);
INSERT INTO public.notice VALUES (904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688219821);
INSERT INTO public.notice VALUES (877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688203620);
INSERT INTO public.notice VALUES (878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688204219);
INSERT INTO public.notice VALUES (879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688204820);
INSERT INTO public.notice VALUES (880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688205420);
INSERT INTO public.notice VALUES (881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688206020);
INSERT INTO public.notice VALUES (882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688206620);
INSERT INTO public.notice VALUES (883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688207220);
INSERT INTO public.notice VALUES (884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688207820);
INSERT INTO public.notice VALUES (885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688208421);
INSERT INTO public.notice VALUES (886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688209019);
INSERT INTO public.notice VALUES (887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688209619);
INSERT INTO public.notice VALUES (890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688211420);
INSERT INTO public.notice VALUES (891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688212019);
INSERT INTO public.notice VALUES (892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688212620);
INSERT INTO public.notice VALUES (893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688213220);
INSERT INTO public.notice VALUES (894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688213820);
INSERT INTO public.notice VALUES (895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688214420);
INSERT INTO public.notice VALUES (896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688215020);
INSERT INTO public.notice VALUES (897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688215620);
INSERT INTO public.notice VALUES (905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688220419);
INSERT INTO public.notice VALUES (906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688221019);
INSERT INTO public.notice VALUES (907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688221620);
INSERT INTO public.notice VALUES (908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688222220);
INSERT INTO public.notice VALUES (909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688222819);
INSERT INTO public.notice VALUES (910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688223419);
INSERT INTO public.notice VALUES (911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688224020);
INSERT INTO public.notice VALUES (912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688224620);
INSERT INTO public.notice VALUES (913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688225220);
INSERT INTO public.notice VALUES (914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688225820);
INSERT INTO public.notice VALUES (926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688233020);
INSERT INTO public.notice VALUES (927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688233619);
INSERT INTO public.notice VALUES (928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688234223);
INSERT INTO public.notice VALUES (929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688234819);
INSERT INTO public.notice VALUES (930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688235419);
INSERT INTO public.notice VALUES (931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688236019);
INSERT INTO public.notice VALUES (937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688239620);
INSERT INTO public.notice VALUES (1334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688477820);
INSERT INTO public.notice VALUES (1339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688480820);
INSERT INTO public.notice VALUES (1340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688481420);
INSERT INTO public.notice VALUES (1341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688482020);
INSERT INTO public.notice VALUES (1342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688482620);
INSERT INTO public.notice VALUES (1346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688485021);
INSERT INTO public.notice VALUES (915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688226421);
INSERT INTO public.notice VALUES (916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688227020);
INSERT INTO public.notice VALUES (917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688227620);
INSERT INTO public.notice VALUES (918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688228220);
INSERT INTO public.notice VALUES (919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688228819);
INSERT INTO public.notice VALUES (920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688229420);
INSERT INTO public.notice VALUES (921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688230019);
INSERT INTO public.notice VALUES (922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688230619);
INSERT INTO public.notice VALUES (923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688231220);
INSERT INTO public.notice VALUES (924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688231819);
INSERT INTO public.notice VALUES (925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688232420);
INSERT INTO public.notice VALUES (932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688236620);
INSERT INTO public.notice VALUES (933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688237219);
INSERT INTO public.notice VALUES (934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688237820);
INSERT INTO public.notice VALUES (935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688238420);
INSERT INTO public.notice VALUES (936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688239020);
INSERT INTO public.notice VALUES (938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688240220);
INSERT INTO public.notice VALUES (939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688240820);
INSERT INTO public.notice VALUES (940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688241420);
INSERT INTO public.notice VALUES (941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688242020);
INSERT INTO public.notice VALUES (942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688242620);
INSERT INTO public.notice VALUES (943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688243220);
INSERT INTO public.notice VALUES (944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688243820);
INSERT INTO public.notice VALUES (945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688244420);
INSERT INTO public.notice VALUES (946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688245021);
INSERT INTO public.notice VALUES (947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688245620);
INSERT INTO public.notice VALUES (948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688246220);
INSERT INTO public.notice VALUES (949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688246819);
INSERT INTO public.notice VALUES (950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688247420);
INSERT INTO public.notice VALUES (951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688248019);
INSERT INTO public.notice VALUES (952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688248619);
INSERT INTO public.notice VALUES (953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688249220);
INSERT INTO public.notice VALUES (954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688249820);
INSERT INTO public.notice VALUES (955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688250420);
INSERT INTO public.notice VALUES (956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688251020);
INSERT INTO public.notice VALUES (957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688251620);
INSERT INTO public.notice VALUES (958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688252220);
INSERT INTO public.notice VALUES (959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688252819);
INSERT INTO public.notice VALUES (960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688253420);
INSERT INTO public.notice VALUES (961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688254019);
INSERT INTO public.notice VALUES (962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688254620);
INSERT INTO public.notice VALUES (963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688255220);
INSERT INTO public.notice VALUES (964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688255820);
INSERT INTO public.notice VALUES (965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688256419);
INSERT INTO public.notice VALUES (966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688257020);
INSERT INTO public.notice VALUES (967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688257620);
INSERT INTO public.notice VALUES (968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688258220);
INSERT INTO public.notice VALUES (969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688258819);
INSERT INTO public.notice VALUES (970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688259420);
INSERT INTO public.notice VALUES (971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688260019);
INSERT INTO public.notice VALUES (972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688260621);
INSERT INTO public.notice VALUES (973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688261219);
INSERT INTO public.notice VALUES (974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688261819);
INSERT INTO public.notice VALUES (975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688262420);
INSERT INTO public.notice VALUES (976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688263021);
INSERT INTO public.notice VALUES (977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688263619);
INSERT INTO public.notice VALUES (978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688264220);
INSERT INTO public.notice VALUES (979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688264819);
INSERT INTO public.notice VALUES (981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688266019);
INSERT INTO public.notice VALUES (982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688266619);
INSERT INTO public.notice VALUES (991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688272020);
INSERT INTO public.notice VALUES (992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688272619);
INSERT INTO public.notice VALUES (1011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688284020);
INSERT INTO public.notice VALUES (1012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688284619);
INSERT INTO public.notice VALUES (1337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688479621);
INSERT INTO public.notice VALUES (1338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688480219);
INSERT INTO public.notice VALUES (1343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688483220);
INSERT INTO public.notice VALUES (1430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688535420);
INSERT INTO public.notice VALUES (1431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688536020);
INSERT INTO public.notice VALUES (1432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688536620);
INSERT INTO public.notice VALUES (980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688265420);
INSERT INTO public.notice VALUES (983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688267220);
INSERT INTO public.notice VALUES (984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688267820);
INSERT INTO public.notice VALUES (985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688268420);
INSERT INTO public.notice VALUES (986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688269020);
INSERT INTO public.notice VALUES (987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688269620);
INSERT INTO public.notice VALUES (988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688270220);
INSERT INTO public.notice VALUES (989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688270820);
INSERT INTO public.notice VALUES (990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688271420);
INSERT INTO public.notice VALUES (993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688273221);
INSERT INTO public.notice VALUES (994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688273819);
INSERT INTO public.notice VALUES (995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688274419);
INSERT INTO public.notice VALUES (996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688275020);
INSERT INTO public.notice VALUES (997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688275619);
INSERT INTO public.notice VALUES (998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688276219);
INSERT INTO public.notice VALUES (999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688276819);
INSERT INTO public.notice VALUES (1000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688277419);
INSERT INTO public.notice VALUES (1001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688278020);
INSERT INTO public.notice VALUES (1002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688278619);
INSERT INTO public.notice VALUES (1003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688279219);
INSERT INTO public.notice VALUES (1004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688279820);
INSERT INTO public.notice VALUES (1005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688280419);
INSERT INTO public.notice VALUES (1006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688281020);
INSERT INTO public.notice VALUES (1007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688281620);
INSERT INTO public.notice VALUES (1008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688282220);
INSERT INTO public.notice VALUES (1009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688282819);
INSERT INTO public.notice VALUES (1010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688283419);
INSERT INTO public.notice VALUES (1013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688285219);
INSERT INTO public.notice VALUES (1014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688285820);
INSERT INTO public.notice VALUES (1015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688286420);
INSERT INTO public.notice VALUES (1016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688287020);
INSERT INTO public.notice VALUES (1017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688287620);
INSERT INTO public.notice VALUES (1018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688288220);
INSERT INTO public.notice VALUES (1019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688288820);
INSERT INTO public.notice VALUES (1020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688289420);
INSERT INTO public.notice VALUES (1021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688290020);
INSERT INTO public.notice VALUES (1033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688297219);
INSERT INTO public.notice VALUES (1034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688297820);
INSERT INTO public.notice VALUES (1035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688298419);
INSERT INTO public.notice VALUES (1036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688299022);
INSERT INTO public.notice VALUES (1037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688299620);
INSERT INTO public.notice VALUES (1038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688300220);
INSERT INTO public.notice VALUES (1022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688290620);
INSERT INTO public.notice VALUES (1023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688291221);
INSERT INTO public.notice VALUES (1024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688291820);
INSERT INTO public.notice VALUES (1025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688292421);
INSERT INTO public.notice VALUES (1026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688293020);
INSERT INTO public.notice VALUES (1027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688293619);
INSERT INTO public.notice VALUES (1028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688294220);
INSERT INTO public.notice VALUES (1029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688294820);
INSERT INTO public.notice VALUES (1030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688295419);
INSERT INTO public.notice VALUES (1031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688296019);
INSERT INTO public.notice VALUES (1032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688296619);
INSERT INTO public.notice VALUES (1039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688300820);
INSERT INTO public.notice VALUES (1040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688301420);
INSERT INTO public.notice VALUES (1042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688302619);
INSERT INTO public.notice VALUES (1041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688302020);
INSERT INTO public.notice VALUES (1043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688303219);
INSERT INTO public.notice VALUES (1044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688303820);
INSERT INTO public.notice VALUES (1045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688304420);
INSERT INTO public.notice VALUES (1046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688305020);
INSERT INTO public.notice VALUES (1047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688305620);
INSERT INTO public.notice VALUES (1048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688306220);
INSERT INTO public.notice VALUES (1049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688306819);
INSERT INTO public.notice VALUES (1050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688307420);
INSERT INTO public.notice VALUES (1051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688308020);
INSERT INTO public.notice VALUES (1052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688308620);
INSERT INTO public.notice VALUES (1053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688309220);
INSERT INTO public.notice VALUES (1054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688309821);
INSERT INTO public.notice VALUES (1055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688310420);
INSERT INTO public.notice VALUES (1056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688311021);
INSERT INTO public.notice VALUES (1057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688311619);
INSERT INTO public.notice VALUES (1058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688312221);
INSERT INTO public.notice VALUES (1059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688312820);
INSERT INTO public.notice VALUES (1060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688313420);
INSERT INTO public.notice VALUES (1061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688314020);
INSERT INTO public.notice VALUES (1062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688314620);
INSERT INTO public.notice VALUES (1063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688315219);
INSERT INTO public.notice VALUES (1067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688317620);
INSERT INTO public.notice VALUES (1068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688318220);
INSERT INTO public.notice VALUES (1069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688318819);
INSERT INTO public.notice VALUES (1344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688483820);
INSERT INTO public.notice VALUES (1345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688484419);
INSERT INTO public.notice VALUES (1349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688486820);
INSERT INTO public.notice VALUES (1064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688315820);
INSERT INTO public.notice VALUES (1065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688316421);
INSERT INTO public.notice VALUES (1066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688317021);
INSERT INTO public.notice VALUES (1070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688319420);
INSERT INTO public.notice VALUES (1071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688320019);
INSERT INTO public.notice VALUES (1072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688320620);
INSERT INTO public.notice VALUES (1073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688321221);
INSERT INTO public.notice VALUES (1074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688321820);
INSERT INTO public.notice VALUES (1075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688322420);
INSERT INTO public.notice VALUES (1076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688323019);
INSERT INTO public.notice VALUES (1077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688323619);
INSERT INTO public.notice VALUES (1078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688324219);
INSERT INTO public.notice VALUES (1079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688324819);
INSERT INTO public.notice VALUES (1080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688325419);
INSERT INTO public.notice VALUES (1081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688326020);
INSERT INTO public.notice VALUES (1082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688326620);
INSERT INTO public.notice VALUES (1083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688327219);
INSERT INTO public.notice VALUES (1084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688327819);
INSERT INTO public.notice VALUES (1085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688328420);
INSERT INTO public.notice VALUES (1086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688329019);
INSERT INTO public.notice VALUES (1087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688329619);
INSERT INTO public.notice VALUES (1088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688330220);
INSERT INTO public.notice VALUES (1089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688330819);
INSERT INTO public.notice VALUES (1090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688331419);
INSERT INTO public.notice VALUES (1091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688332019);
INSERT INTO public.notice VALUES (1092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688332619);
INSERT INTO public.notice VALUES (1093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688333219);
INSERT INTO public.notice VALUES (1094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688333819);
INSERT INTO public.notice VALUES (1095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688334420);
INSERT INTO public.notice VALUES (1096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688335020);
INSERT INTO public.notice VALUES (1097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688335619);
INSERT INTO public.notice VALUES (1098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688336220);
INSERT INTO public.notice VALUES (1099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688336819);
INSERT INTO public.notice VALUES (1100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688337419);
INSERT INTO public.notice VALUES (1101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688338019);
INSERT INTO public.notice VALUES (1102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688338619);
INSERT INTO public.notice VALUES (1103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688339220);
INSERT INTO public.notice VALUES (1104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688339819);
INSERT INTO public.notice VALUES (1105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688340419);
INSERT INTO public.notice VALUES (1106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688341019);
INSERT INTO public.notice VALUES (1107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688341619);
INSERT INTO public.notice VALUES (1108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688342220);
INSERT INTO public.notice VALUES (1109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688342819);
INSERT INTO public.notice VALUES (1110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688343420);
INSERT INTO public.notice VALUES (1111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688344020);
INSERT INTO public.notice VALUES (1112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688344619);
INSERT INTO public.notice VALUES (1347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688485621);
INSERT INTO public.notice VALUES (1348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688486220);
INSERT INTO public.notice VALUES (1351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688488019);
INSERT INTO public.notice VALUES (1352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688488619);
INSERT INTO public.notice VALUES (1355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688490421);
INSERT INTO public.notice VALUES (1356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688491020);
INSERT INTO public.notice VALUES (1358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688492220);
INSERT INTO public.notice VALUES (1359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688492825);
INSERT INTO public.notice VALUES (1360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Failed to connect to gitlab.com port 443 after 28132 ms: Couldn''t connect to server
error: could not fetch origin
', 1688493447);
INSERT INTO public.notice VALUES (1433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688537219);
INSERT INTO public.notice VALUES (1434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688537820);
INSERT INTO public.notice VALUES (1113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688345219);
INSERT INTO public.notice VALUES (1114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688345820);
INSERT INTO public.notice VALUES (1115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688346421);
INSERT INTO public.notice VALUES (1116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688347020);
INSERT INTO public.notice VALUES (1117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688347620);
INSERT INTO public.notice VALUES (1118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688348220);
INSERT INTO public.notice VALUES (1119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688348819);
INSERT INTO public.notice VALUES (1120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688349420);
INSERT INTO public.notice VALUES (1121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688350021);
INSERT INTO public.notice VALUES (1122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688350619);
INSERT INTO public.notice VALUES (1123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688351222);
INSERT INTO public.notice VALUES (1124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688351820);
INSERT INTO public.notice VALUES (1125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688352419);
INSERT INTO public.notice VALUES (1126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688353031);
INSERT INTO public.notice VALUES (1127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688353619);
INSERT INTO public.notice VALUES (1133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688357221);
INSERT INTO public.notice VALUES (1136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688359020);
INSERT INTO public.notice VALUES (1137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688359620);
INSERT INTO public.notice VALUES (1138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688360220);
INSERT INTO public.notice VALUES (1350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688487419);
INSERT INTO public.notice VALUES (1435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688538420);
INSERT INTO public.notice VALUES (1436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688539022);
INSERT INTO public.notice VALUES (1447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688545619);
INSERT INTO public.notice VALUES (1448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688546220);
INSERT INTO public.notice VALUES (1449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688546820);
INSERT INTO public.notice VALUES (1450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688547420);
INSERT INTO public.notice VALUES (1453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688549219);
INSERT INTO public.notice VALUES (1456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688551019);
INSERT INTO public.notice VALUES (1128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688354221);
INSERT INTO public.notice VALUES (1129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688354819);
INSERT INTO public.notice VALUES (1130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688355419);
INSERT INTO public.notice VALUES (1131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688356023);
INSERT INTO public.notice VALUES (1132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688356621);
INSERT INTO public.notice VALUES (1134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688357820);
INSERT INTO public.notice VALUES (1135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688358419);
INSERT INTO public.notice VALUES (1139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688360820);
INSERT INTO public.notice VALUES (1140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688361420);
INSERT INTO public.notice VALUES (1141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688362020);
INSERT INTO public.notice VALUES (1142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688362621);
INSERT INTO public.notice VALUES (1143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688363219);
INSERT INTO public.notice VALUES (1144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688363820);
INSERT INTO public.notice VALUES (1145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688364419);
INSERT INTO public.notice VALUES (1146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688365020);
INSERT INTO public.notice VALUES (1147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688365619);
INSERT INTO public.notice VALUES (1148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688366220);
INSERT INTO public.notice VALUES (1149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688366819);
INSERT INTO public.notice VALUES (1150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688367419);
INSERT INTO public.notice VALUES (1160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688373419);
INSERT INTO public.notice VALUES (1161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688374019);
INSERT INTO public.notice VALUES (1172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688380620);
INSERT INTO public.notice VALUES (1353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688489220);
INSERT INTO public.notice VALUES (1354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688489820);
INSERT INTO public.notice VALUES (1437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688539620);
INSERT INTO public.notice VALUES (1469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688558820);
INSERT INTO public.notice VALUES (1470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688559419);
INSERT INTO public.notice VALUES (1471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688560019);
INSERT INTO public.notice VALUES (1151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688368020);
INSERT INTO public.notice VALUES (1152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688368620);
INSERT INTO public.notice VALUES (1153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688369219);
INSERT INTO public.notice VALUES (1154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688369820);
INSERT INTO public.notice VALUES (1155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688370420);
INSERT INTO public.notice VALUES (1156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688371019);
INSERT INTO public.notice VALUES (1157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688371619);
INSERT INTO public.notice VALUES (1158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688372220);
INSERT INTO public.notice VALUES (1159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688372819);
INSERT INTO public.notice VALUES (1162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688374619);
INSERT INTO public.notice VALUES (1163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688375220);
INSERT INTO public.notice VALUES (1164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688375819);
INSERT INTO public.notice VALUES (1165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688376420);
INSERT INTO public.notice VALUES (1166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688377019);
INSERT INTO public.notice VALUES (1167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688377620);
INSERT INTO public.notice VALUES (1168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688378219);
INSERT INTO public.notice VALUES (1169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688378820);
INSERT INTO public.notice VALUES (1170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688379419);
INSERT INTO public.notice VALUES (1171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688380019);
INSERT INTO public.notice VALUES (1173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688381220);
INSERT INTO public.notice VALUES (1174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688381820);
INSERT INTO public.notice VALUES (1175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688382420);
INSERT INTO public.notice VALUES (1176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688383020);
INSERT INTO public.notice VALUES (1177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688383620);
INSERT INTO public.notice VALUES (1178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688384219);
INSERT INTO public.notice VALUES (1179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688384821);
INSERT INTO public.notice VALUES (1180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688385420);
INSERT INTO public.notice VALUES (1181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688386020);
INSERT INTO public.notice VALUES (1182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688386620);
INSERT INTO public.notice VALUES (1184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688387820);
INSERT INTO public.notice VALUES (1357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688491620);
INSERT INTO public.notice VALUES (1363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688495220);
INSERT INTO public.notice VALUES (1364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688495819);
INSERT INTO public.notice VALUES (1365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688496419);
INSERT INTO public.notice VALUES (1366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688497019);
INSERT INTO public.notice VALUES (1368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688498220);
INSERT INTO public.notice VALUES (1369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688498821);
INSERT INTO public.notice VALUES (1370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688499419);
INSERT INTO public.notice VALUES (1438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688540221);
INSERT INTO public.notice VALUES (1472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688560620);
INSERT INTO public.notice VALUES (1473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688561220);
INSERT INTO public.notice VALUES (1475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688562419);
INSERT INTO public.notice VALUES (1183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688387219);
INSERT INTO public.notice VALUES (1185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688388421);
INSERT INTO public.notice VALUES (1186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688389020);
INSERT INTO public.notice VALUES (1187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688389620);
INSERT INTO public.notice VALUES (1188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688390219);
INSERT INTO public.notice VALUES (1189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688390820);
INSERT INTO public.notice VALUES (1190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688391419);
INSERT INTO public.notice VALUES (1191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688392019);
INSERT INTO public.notice VALUES (1192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688392620);
INSERT INTO public.notice VALUES (1193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688393220);
INSERT INTO public.notice VALUES (1194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688393820);
INSERT INTO public.notice VALUES (1195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688394420);
INSERT INTO public.notice VALUES (1196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688395020);
INSERT INTO public.notice VALUES (1197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688395619);
INSERT INTO public.notice VALUES (1198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688396220);
INSERT INTO public.notice VALUES (1199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688396820);
INSERT INTO public.notice VALUES (1200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688397420);
INSERT INTO public.notice VALUES (1201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688398020);
INSERT INTO public.notice VALUES (1213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688405219);
INSERT INTO public.notice VALUES (1214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688405819);
INSERT INTO public.notice VALUES (1216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688407020);
INSERT INTO public.notice VALUES (1217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688407619);
INSERT INTO public.notice VALUES (1361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688494020);
INSERT INTO public.notice VALUES (1362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688494621);
INSERT INTO public.notice VALUES (1367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688497620);
INSERT INTO public.notice VALUES (1439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688540820);
INSERT INTO public.notice VALUES (1477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688563619);
INSERT INTO public.notice VALUES (1480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688565420);
INSERT INTO public.notice VALUES (1202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688398620);
INSERT INTO public.notice VALUES (1203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688399220);
INSERT INTO public.notice VALUES (1204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688399820);
INSERT INTO public.notice VALUES (1205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688400419);
INSERT INTO public.notice VALUES (1206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688401019);
INSERT INTO public.notice VALUES (1207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688401620);
INSERT INTO public.notice VALUES (1208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688402220);
INSERT INTO public.notice VALUES (1209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688402820);
INSERT INTO public.notice VALUES (1210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688403421);
INSERT INTO public.notice VALUES (1211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688404019);
INSERT INTO public.notice VALUES (1212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688404620);
INSERT INTO public.notice VALUES (1215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688406419);
INSERT INTO public.notice VALUES (1371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688500020);
INSERT INTO public.notice VALUES (1379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688504820);
INSERT INTO public.notice VALUES (1486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688569020);
INSERT INTO public.notice VALUES (1487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688569620);
INSERT INTO public.notice VALUES (1493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688573219);
INSERT INTO public.notice VALUES (1494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688573820);
INSERT INTO public.notice VALUES (1495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688574420);
INSERT INTO public.notice VALUES (1496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688575020);
INSERT INTO public.notice VALUES (1499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688576819);
INSERT INTO public.notice VALUES (1500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688577419);
INSERT INTO public.notice VALUES (1501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688578020);
INSERT INTO public.notice VALUES (1504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688579819);
INSERT INTO public.notice VALUES (1505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688580420);
INSERT INTO public.notice VALUES (1509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688582819);
INSERT INTO public.notice VALUES (1511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688584019);
INSERT INTO public.notice VALUES (1512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688584621);
INSERT INTO public.notice VALUES (1488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688570220);
INSERT INTO public.notice VALUES (1489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688570820);
INSERT INTO public.notice VALUES (1490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688571420);
INSERT INTO public.notice VALUES (1491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688572020);
INSERT INTO public.notice VALUES (1492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688572620);
INSERT INTO public.notice VALUES (1497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688575619);
INSERT INTO public.notice VALUES (1498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688576220);
INSERT INTO public.notice VALUES (1502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688578619);
INSERT INTO public.notice VALUES (1503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688579219);
INSERT INTO public.notice VALUES (1506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688581020);
INSERT INTO public.notice VALUES (1507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688581619);
INSERT INTO public.notice VALUES (1508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688582220);
INSERT INTO public.notice VALUES (1510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688583419);
INSERT INTO public.notice VALUES (1513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688585221);
INSERT INTO public.notice VALUES (1514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688585820);
INSERT INTO public.notice VALUES (1515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688586420);
INSERT INTO public.notice VALUES (1516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688587019);
INSERT INTO public.notice VALUES (1517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688587619);
INSERT INTO public.notice VALUES (1518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688588219);
INSERT INTO public.notice VALUES (1522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688590620);
INSERT INTO public.notice VALUES (1523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688591219);
INSERT INTO public.notice VALUES (2740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689322404);
INSERT INTO public.notice VALUES (2745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689325403);
INSERT INTO public.notice VALUES (2747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689326604);
INSERT INTO public.notice VALUES (2748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689327203);
INSERT INTO public.notice VALUES (2751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689329004);
INSERT INTO public.notice VALUES (2754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689330804);
INSERT INTO public.notice VALUES (2756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689332003);
INSERT INTO public.notice VALUES (2757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689332603);
INSERT INTO public.notice VALUES (1519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688588819);
INSERT INTO public.notice VALUES (1520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688589419);
INSERT INTO public.notice VALUES (1521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688590020);
INSERT INTO public.notice VALUES (1524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688591820);
INSERT INTO public.notice VALUES (1525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688592420);
INSERT INTO public.notice VALUES (1526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688593020);
INSERT INTO public.notice VALUES (1527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688593619);
INSERT INTO public.notice VALUES (1528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688594220);
INSERT INTO public.notice VALUES (1529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688594820);
INSERT INTO public.notice VALUES (1530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688595419);
INSERT INTO public.notice VALUES (1531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688596020);
INSERT INTO public.notice VALUES (1532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688596619);
INSERT INTO public.notice VALUES (1533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688597219);
INSERT INTO public.notice VALUES (1534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688597820);
INSERT INTO public.notice VALUES (1535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688598420);
INSERT INTO public.notice VALUES (1536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688599020);
INSERT INTO public.notice VALUES (1537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688599619);
INSERT INTO public.notice VALUES (1538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688600221);
INSERT INTO public.notice VALUES (1539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688600819);
INSERT INTO public.notice VALUES (1540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688601420);
INSERT INTO public.notice VALUES (1541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688602019);
INSERT INTO public.notice VALUES (1542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688602625);
INSERT INTO public.notice VALUES (1543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688603219);
INSERT INTO public.notice VALUES (1544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688603823);
INSERT INTO public.notice VALUES (1545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688604419);
INSERT INTO public.notice VALUES (1546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688605019);
INSERT INTO public.notice VALUES (1547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688605619);
INSERT INTO public.notice VALUES (1548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688606221);
INSERT INTO public.notice VALUES (1549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688606820);
INSERT INTO public.notice VALUES (1552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688608620);
INSERT INTO public.notice VALUES (2741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689323003);
INSERT INTO public.notice VALUES (2742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689323603);
INSERT INTO public.notice VALUES (2743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689324204);
INSERT INTO public.notice VALUES (2861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689395004);
INSERT INTO public.notice VALUES (2864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689396803);
INSERT INTO public.notice VALUES (2865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689397404);
INSERT INTO public.notice VALUES (2935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689439404);
INSERT INTO public.notice VALUES (2964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689456804);
INSERT INTO public.notice VALUES (2967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689458605);
INSERT INTO public.notice VALUES (2968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689459203);
INSERT INTO public.notice VALUES (2969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689459803);
INSERT INTO public.notice VALUES (2970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689460404);
INSERT INTO public.notice VALUES (2972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689461603);
INSERT INTO public.notice VALUES (1550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688607424);
INSERT INTO public.notice VALUES (1551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688608019);
INSERT INTO public.notice VALUES (1553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688609219);
INSERT INTO public.notice VALUES (1554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688609820);
INSERT INTO public.notice VALUES (1555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688610420);
INSERT INTO public.notice VALUES (1556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688611020);
INSERT INTO public.notice VALUES (1557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688611621);
INSERT INTO public.notice VALUES (1558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688612221);
INSERT INTO public.notice VALUES (1559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688612821);
INSERT INTO public.notice VALUES (1560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688613420);
INSERT INTO public.notice VALUES (1561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688614020);
INSERT INTO public.notice VALUES (1562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688614620);
INSERT INTO public.notice VALUES (1563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688615220);
INSERT INTO public.notice VALUES (1564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688615820);
INSERT INTO public.notice VALUES (1565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688616420);
INSERT INTO public.notice VALUES (1566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688617020);
INSERT INTO public.notice VALUES (1567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688617620);
INSERT INTO public.notice VALUES (1568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688618220);
INSERT INTO public.notice VALUES (1569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688618821);
INSERT INTO public.notice VALUES (1570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688619419);
INSERT INTO public.notice VALUES (1571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688620020);
INSERT INTO public.notice VALUES (1572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688620621);
INSERT INTO public.notice VALUES (1573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688621220);
INSERT INTO public.notice VALUES (1574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688621820);
INSERT INTO public.notice VALUES (1575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688622420);
INSERT INTO public.notice VALUES (1576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688623020);
INSERT INTO public.notice VALUES (1577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688623620);
INSERT INTO public.notice VALUES (1578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688624220);
INSERT INTO public.notice VALUES (1579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688624820);
INSERT INTO public.notice VALUES (1580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688625419);
INSERT INTO public.notice VALUES (1581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688626020);
INSERT INTO public.notice VALUES (1584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688627820);
INSERT INTO public.notice VALUES (1585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688628421);
INSERT INTO public.notice VALUES (1586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688629019);
INSERT INTO public.notice VALUES (1587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688629620);
INSERT INTO public.notice VALUES (1590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688631421);
INSERT INTO public.notice VALUES (1591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688632019);
INSERT INTO public.notice VALUES (1592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688632620);
INSERT INTO public.notice VALUES (1593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688633220);
INSERT INTO public.notice VALUES (1595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688634420);
INSERT INTO public.notice VALUES (1597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688635620);
INSERT INTO public.notice VALUES (1598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688636221);
INSERT INTO public.notice VALUES (1582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688626620);
INSERT INTO public.notice VALUES (1583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688627219);
INSERT INTO public.notice VALUES (1588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688630221);
INSERT INTO public.notice VALUES (1589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688630819);
INSERT INTO public.notice VALUES (1594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688633820);
INSERT INTO public.notice VALUES (1596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688635019);
INSERT INTO public.notice VALUES (1599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688636820);
INSERT INTO public.notice VALUES (1605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688640419);
INSERT INTO public.notice VALUES (1606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688641019);
INSERT INTO public.notice VALUES (1607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688641620);
INSERT INTO public.notice VALUES (2744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689324804);
INSERT INTO public.notice VALUES (2746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689326002);
INSERT INTO public.notice VALUES (2749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689327806);
INSERT INTO public.notice VALUES (2750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689328405);
INSERT INTO public.notice VALUES (2863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689396203);
INSERT INTO public.notice VALUES (1600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688637420);
INSERT INTO public.notice VALUES (1601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688638020);
INSERT INTO public.notice VALUES (1602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688638621);
INSERT INTO public.notice VALUES (1603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688639219);
INSERT INTO public.notice VALUES (1604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688639823);
INSERT INTO public.notice VALUES (1608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688642221);
INSERT INTO public.notice VALUES (1609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688642820);
INSERT INTO public.notice VALUES (1610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688643420);
INSERT INTO public.notice VALUES (1611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688644019);
INSERT INTO public.notice VALUES (1612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688644620);
INSERT INTO public.notice VALUES (1613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688645219);
INSERT INTO public.notice VALUES (1614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688645819);
INSERT INTO public.notice VALUES (1615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688646419);
INSERT INTO public.notice VALUES (1616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688647020);
INSERT INTO public.notice VALUES (1617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688647620);
INSERT INTO public.notice VALUES (1618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688648219);
INSERT INTO public.notice VALUES (1619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688648820);
INSERT INTO public.notice VALUES (1620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688649420);
INSERT INTO public.notice VALUES (1621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688650019);
INSERT INTO public.notice VALUES (1622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688650620);
INSERT INTO public.notice VALUES (1623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688651220);
INSERT INTO public.notice VALUES (1624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688651819);
INSERT INTO public.notice VALUES (1625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688652420);
INSERT INTO public.notice VALUES (1626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688653020);
INSERT INTO public.notice VALUES (1627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Failed to connect to gitlab.com port 443 after 21109 ms: Couldn''t connect to server
error: could not fetch origin
', 1688653640);
INSERT INTO public.notice VALUES (1628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688654220);
INSERT INTO public.notice VALUES (1629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688654819);
INSERT INTO public.notice VALUES (1630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688655420);
INSERT INTO public.notice VALUES (1631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688656021);
INSERT INTO public.notice VALUES (1632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688656619);
INSERT INTO public.notice VALUES (1633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688657221);
INSERT INTO public.notice VALUES (1634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688657820);
INSERT INTO public.notice VALUES (1635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688658420);
INSERT INTO public.notice VALUES (1636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688659021);
INSERT INTO public.notice VALUES (1637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688659620);
INSERT INTO public.notice VALUES (1638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688660220);
INSERT INTO public.notice VALUES (1639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688660819);
INSERT INTO public.notice VALUES (1640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688661420);
INSERT INTO public.notice VALUES (1641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688662021);
INSERT INTO public.notice VALUES (1642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688662620);
INSERT INTO public.notice VALUES (1643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688663219);
INSERT INTO public.notice VALUES (1644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688663819);
INSERT INTO public.notice VALUES (1645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688664420);
INSERT INTO public.notice VALUES (1646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688665021);
INSERT INTO public.notice VALUES (1647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688665619);
INSERT INTO public.notice VALUES (1648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688666220);
INSERT INTO public.notice VALUES (1649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688666820);
INSERT INTO public.notice VALUES (1651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688668020);
INSERT INTO public.notice VALUES (1652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688668620);
INSERT INTO public.notice VALUES (1653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688669219);
INSERT INTO public.notice VALUES (1654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688669819);
INSERT INTO public.notice VALUES (1655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688670419);
INSERT INTO public.notice VALUES (1656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688671019);
INSERT INTO public.notice VALUES (1657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688671620);
INSERT INTO public.notice VALUES (1658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688672220);
INSERT INTO public.notice VALUES (1659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688672820);
INSERT INTO public.notice VALUES (1660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688673419);
INSERT INTO public.notice VALUES (1650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688667420);
INSERT INTO public.notice VALUES (1661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688674020);
INSERT INTO public.notice VALUES (1662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688674619);
INSERT INTO public.notice VALUES (1664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688675821);
INSERT INTO public.notice VALUES (1665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688676419);
INSERT INTO public.notice VALUES (1666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688677020);
INSERT INTO public.notice VALUES (1667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688677620);
INSERT INTO public.notice VALUES (1668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688678220);
INSERT INTO public.notice VALUES (1669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688678820);
INSERT INTO public.notice VALUES (1670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688679420);
INSERT INTO public.notice VALUES (1671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688680019);
INSERT INTO public.notice VALUES (2752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689329603);
INSERT INTO public.notice VALUES (2753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689330203);
INSERT INTO public.notice VALUES (2866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689398004);
INSERT INTO public.notice VALUES (2867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689398603);
INSERT INTO public.notice VALUES (1663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688675219);
INSERT INTO public.notice VALUES (1672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688680620);
INSERT INTO public.notice VALUES (1673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688681220);
INSERT INTO public.notice VALUES (1674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688681820);
INSERT INTO public.notice VALUES (1675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688682419);
INSERT INTO public.notice VALUES (1676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688683020);
INSERT INTO public.notice VALUES (1677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688683619);
INSERT INTO public.notice VALUES (1678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688684219);
INSERT INTO public.notice VALUES (1679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688684819);
INSERT INTO public.notice VALUES (1680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688685420);
INSERT INTO public.notice VALUES (1681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688686019);
INSERT INTO public.notice VALUES (1682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688686620);
INSERT INTO public.notice VALUES (1683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688687220);
INSERT INTO public.notice VALUES (1684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688687819);
INSERT INTO public.notice VALUES (1685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688688420);
INSERT INTO public.notice VALUES (1686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688689020);
INSERT INTO public.notice VALUES (1687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688689619);
INSERT INTO public.notice VALUES (1688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688690221);
INSERT INTO public.notice VALUES (1689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688690821);
INSERT INTO public.notice VALUES (1690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688691420);
INSERT INTO public.notice VALUES (1691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688692021);
INSERT INTO public.notice VALUES (1692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688692619);
INSERT INTO public.notice VALUES (1693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688693220);
INSERT INTO public.notice VALUES (1694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688693820);
INSERT INTO public.notice VALUES (1695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688694419);
INSERT INTO public.notice VALUES (1696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688695019);
INSERT INTO public.notice VALUES (1697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688695619);
INSERT INTO public.notice VALUES (1698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688696220);
INSERT INTO public.notice VALUES (1699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688696820);
INSERT INTO public.notice VALUES (1700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688697420);
INSERT INTO public.notice VALUES (1701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688698020);
INSERT INTO public.notice VALUES (1710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688703419);
INSERT INTO public.notice VALUES (2755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689331404);
INSERT INTO public.notice VALUES (2759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689333804);
INSERT INTO public.notice VALUES (2868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689399203);
INSERT INTO public.notice VALUES (2870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689400404);
INSERT INTO public.notice VALUES (2871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689401003);
INSERT INTO public.notice VALUES (2873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689402204);
INSERT INTO public.notice VALUES (2874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689402803);
INSERT INTO public.notice VALUES (2875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689403403);
INSERT INTO public.notice VALUES (2878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689405203);
INSERT INTO public.notice VALUES (2879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689405803);
INSERT INTO public.notice VALUES (2880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689406404);
INSERT INTO public.notice VALUES (1702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688698620);
INSERT INTO public.notice VALUES (1703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688699219);
INSERT INTO public.notice VALUES (1704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688699820);
INSERT INTO public.notice VALUES (1705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688700420);
INSERT INTO public.notice VALUES (1706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688701019);
INSERT INTO public.notice VALUES (1707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688701620);
INSERT INTO public.notice VALUES (1708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688702221);
INSERT INTO public.notice VALUES (1709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688702820);
INSERT INTO public.notice VALUES (1711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688704422);
INSERT INTO public.notice VALUES (1712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688705028);
INSERT INTO public.notice VALUES (1713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688705622);
INSERT INTO public.notice VALUES (1714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688706220);
INSERT INTO public.notice VALUES (1715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688706821);
INSERT INTO public.notice VALUES (1716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688707420);
INSERT INTO public.notice VALUES (1717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688708023);
INSERT INTO public.notice VALUES (1718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688708621);
INSERT INTO public.notice VALUES (1719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688709221);
INSERT INTO public.notice VALUES (1720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688709821);
INSERT INTO public.notice VALUES (1721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688710420);
INSERT INTO public.notice VALUES (1722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688711021);
INSERT INTO public.notice VALUES (1723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688711620);
INSERT INTO public.notice VALUES (1724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688712221);
INSERT INTO public.notice VALUES (1725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688712820);
INSERT INTO public.notice VALUES (1726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688713421);
INSERT INTO public.notice VALUES (1727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688714021);
INSERT INTO public.notice VALUES (1728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688714621);
INSERT INTO public.notice VALUES (1729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688715221);
INSERT INTO public.notice VALUES (1730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688715822);
INSERT INTO public.notice VALUES (1731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688716421);
INSERT INTO public.notice VALUES (1734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688718222);
INSERT INTO public.notice VALUES (1735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688718820);
INSERT INTO public.notice VALUES (2758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689333204);
INSERT INTO public.notice VALUES (2762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689335604);
INSERT INTO public.notice VALUES (2763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689336203);
INSERT INTO public.notice VALUES (2765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689337404);
INSERT INTO public.notice VALUES (2768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689339202);
INSERT INTO public.notice VALUES (2770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689340404);
INSERT INTO public.notice VALUES (2771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689341003);
INSERT INTO public.notice VALUES (2773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689342204);
INSERT INTO public.notice VALUES (2869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689399804);
INSERT INTO public.notice VALUES (2872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689401604);
INSERT INTO public.notice VALUES (2876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689404004);
INSERT INTO public.notice VALUES (2877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689404604);
INSERT INTO public.notice VALUES (1732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688717020);
INSERT INTO public.notice VALUES (1733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688717622);
INSERT INTO public.notice VALUES (1736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688719422);
INSERT INTO public.notice VALUES (1737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688720020);
INSERT INTO public.notice VALUES (1738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688720621);
INSERT INTO public.notice VALUES (1739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688721220);
INSERT INTO public.notice VALUES (1740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688721820);
INSERT INTO public.notice VALUES (1741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688722421);
INSERT INTO public.notice VALUES (1742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688723020);
INSERT INTO public.notice VALUES (1743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688723620);
INSERT INTO public.notice VALUES (1744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688724221);
INSERT INTO public.notice VALUES (1745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688724821);
INSERT INTO public.notice VALUES (1746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688725421);
INSERT INTO public.notice VALUES (1747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688726021);
INSERT INTO public.notice VALUES (1748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688726620);
INSERT INTO public.notice VALUES (1749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688727220);
INSERT INTO public.notice VALUES (1755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688730821);
INSERT INTO public.notice VALUES (1756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688731421);
INSERT INTO public.notice VALUES (1757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688732020);
INSERT INTO public.notice VALUES (1759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688733220);
INSERT INTO public.notice VALUES (1760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688733821);
INSERT INTO public.notice VALUES (1763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688735620);
INSERT INTO public.notice VALUES (1766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688737421);
INSERT INTO public.notice VALUES (1767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688738020);
INSERT INTO public.notice VALUES (1777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688744021);
INSERT INTO public.notice VALUES (1778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688744621);
INSERT INTO public.notice VALUES (1779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688745221);
INSERT INTO public.notice VALUES (1780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688745820);
INSERT INTO public.notice VALUES (1750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688727821);
INSERT INTO public.notice VALUES (1751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688728420);
INSERT INTO public.notice VALUES (1752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688729021);
INSERT INTO public.notice VALUES (1753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688729620);
INSERT INTO public.notice VALUES (1754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688730221);
INSERT INTO public.notice VALUES (1758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688732621);
INSERT INTO public.notice VALUES (1761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688734421);
INSERT INTO public.notice VALUES (1762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688735022);
INSERT INTO public.notice VALUES (1764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688736220);
INSERT INTO public.notice VALUES (1765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688736821);
INSERT INTO public.notice VALUES (1768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688738620);
INSERT INTO public.notice VALUES (1769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688739221);
INSERT INTO public.notice VALUES (1770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688739821);
INSERT INTO public.notice VALUES (1771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688740420);
INSERT INTO public.notice VALUES (1772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688741021);
INSERT INTO public.notice VALUES (1773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688741621);
INSERT INTO public.notice VALUES (1774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688742220);
INSERT INTO public.notice VALUES (1775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688742821);
INSERT INTO public.notice VALUES (1776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688743420);
INSERT INTO public.notice VALUES (1788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688750620);
INSERT INTO public.notice VALUES (2760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689334403);
INSERT INTO public.notice VALUES (2881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689407003);
INSERT INTO public.notice VALUES (2936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689440003);
INSERT INTO public.notice VALUES (2965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689457403);
INSERT INTO public.notice VALUES (2966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689458002);
INSERT INTO public.notice VALUES (2971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689461004);
INSERT INTO public.notice VALUES (2976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689464003);
INSERT INTO public.notice VALUES (2978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689465204);
INSERT INTO public.notice VALUES (2982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689467604);
INSERT INTO public.notice VALUES (1781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688746420);
INSERT INTO public.notice VALUES (1782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688747022);
INSERT INTO public.notice VALUES (1783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688747621);
INSERT INTO public.notice VALUES (1784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688748222);
INSERT INTO public.notice VALUES (1785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688748821);
INSERT INTO public.notice VALUES (1786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688749420);
INSERT INTO public.notice VALUES (1787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688750020);
INSERT INTO public.notice VALUES (1789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688751221);
INSERT INTO public.notice VALUES (1790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688751822);
INSERT INTO public.notice VALUES (1791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688752420);
INSERT INTO public.notice VALUES (1792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688753020);
INSERT INTO public.notice VALUES (1793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688753621);
INSERT INTO public.notice VALUES (1794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688754221);
INSERT INTO public.notice VALUES (1795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688754821);
INSERT INTO public.notice VALUES (1796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688755420);
INSERT INTO public.notice VALUES (1797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688756020);
INSERT INTO public.notice VALUES (1798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688756620);
INSERT INTO public.notice VALUES (1805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688760820);
INSERT INTO public.notice VALUES (1806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688761420);
INSERT INTO public.notice VALUES (1813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688765620);
INSERT INTO public.notice VALUES (1814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688766221);
INSERT INTO public.notice VALUES (1820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688769821);
INSERT INTO public.notice VALUES (2761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689335004);
INSERT INTO public.notice VALUES (2882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689407603);
INSERT INTO public.notice VALUES (2883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689408203);
INSERT INTO public.notice VALUES (2885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689409403);
INSERT INTO public.notice VALUES (2888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689411203);
INSERT INTO public.notice VALUES (2889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689411803);
INSERT INTO public.notice VALUES (2890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689412402);
INSERT INTO public.notice VALUES (1799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688757220);
INSERT INTO public.notice VALUES (1800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688757821);
INSERT INTO public.notice VALUES (1801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688758421);
INSERT INTO public.notice VALUES (1802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688759021);
INSERT INTO public.notice VALUES (1803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688759621);
INSERT INTO public.notice VALUES (1804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688760221);
INSERT INTO public.notice VALUES (1807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688762021);
INSERT INTO public.notice VALUES (1808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688762621);
INSERT INTO public.notice VALUES (1809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688763220);
INSERT INTO public.notice VALUES (1810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688763821);
INSERT INTO public.notice VALUES (1811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688764421);
INSERT INTO public.notice VALUES (1812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688765021);
INSERT INTO public.notice VALUES (1815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688766821);
INSERT INTO public.notice VALUES (1816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688767421);
INSERT INTO public.notice VALUES (1817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688768021);
INSERT INTO public.notice VALUES (1818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688768620);
INSERT INTO public.notice VALUES (1819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688769220);
INSERT INTO public.notice VALUES (1821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688770421);
INSERT INTO public.notice VALUES (1822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688771021);
INSERT INTO public.notice VALUES (1823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688771621);
INSERT INTO public.notice VALUES (1824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688772221);
INSERT INTO public.notice VALUES (1825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688772820);
INSERT INTO public.notice VALUES (1826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688773420);
INSERT INTO public.notice VALUES (1827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688774020);
INSERT INTO public.notice VALUES (1828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688774620);
INSERT INTO public.notice VALUES (1829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688775221);
INSERT INTO public.notice VALUES (1830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688775821);
INSERT INTO public.notice VALUES (1831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688776420);
INSERT INTO public.notice VALUES (1832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688777021);
INSERT INTO public.notice VALUES (1833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688777621);
INSERT INTO public.notice VALUES (2764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689336803);
INSERT INTO public.notice VALUES (2766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689338004);
INSERT INTO public.notice VALUES (2767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689338603);
INSERT INTO public.notice VALUES (2769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689339804);
INSERT INTO public.notice VALUES (2884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689408804);
INSERT INTO public.notice VALUES (2886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689410003);
INSERT INTO public.notice VALUES (2887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689410604);
INSERT INTO public.notice VALUES (2937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689440602);
INSERT INTO public.notice VALUES (2939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689441804);
INSERT INTO public.notice VALUES (2941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689443004);
INSERT INTO public.notice VALUES (2945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689445404);
INSERT INTO public.notice VALUES (2946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689446003);
INSERT INTO public.notice VALUES (2948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689447202);
INSERT INTO public.notice VALUES (1834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688778221);
INSERT INTO public.notice VALUES (1835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688778821);
INSERT INTO public.notice VALUES (1836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688779421);
INSERT INTO public.notice VALUES (1837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688780022);
INSERT INTO public.notice VALUES (1838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688780620);
INSERT INTO public.notice VALUES (1839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688781220);
INSERT INTO public.notice VALUES (1840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688781820);
INSERT INTO public.notice VALUES (1841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688782420);
INSERT INTO public.notice VALUES (1842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688783021);
INSERT INTO public.notice VALUES (1843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688783620);
INSERT INTO public.notice VALUES (1844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688784220);
INSERT INTO public.notice VALUES (1845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688784821);
INSERT INTO public.notice VALUES (1846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688785421);
INSERT INTO public.notice VALUES (1847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688786021);
INSERT INTO public.notice VALUES (1848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688786622);
INSERT INTO public.notice VALUES (1849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688787221);
INSERT INTO public.notice VALUES (1850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688787821);
INSERT INTO public.notice VALUES (1855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688790821);
INSERT INTO public.notice VALUES (1856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688791420);
INSERT INTO public.notice VALUES (1857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688792020);
INSERT INTO public.notice VALUES (1859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688793222);
INSERT INTO public.notice VALUES (1860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688793821);
INSERT INTO public.notice VALUES (1864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688796221);
INSERT INTO public.notice VALUES (1865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688796821);
INSERT INTO public.notice VALUES (1866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688797421);
INSERT INTO public.notice VALUES (1904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688820220);
INSERT INTO public.notice VALUES (1905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688820821);
INSERT INTO public.notice VALUES (2772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689341604);
INSERT INTO public.notice VALUES (1851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688788420);
INSERT INTO public.notice VALUES (1852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688789020);
INSERT INTO public.notice VALUES (1853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688789620);
INSERT INTO public.notice VALUES (1854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688790221);
INSERT INTO public.notice VALUES (1858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688792621);
INSERT INTO public.notice VALUES (1861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688794421);
INSERT INTO public.notice VALUES (1862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688795024);
INSERT INTO public.notice VALUES (1863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688795621);
INSERT INTO public.notice VALUES (1867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688798021);
INSERT INTO public.notice VALUES (1868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688798621);
INSERT INTO public.notice VALUES (1869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688799221);
INSERT INTO public.notice VALUES (1870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688799821);
INSERT INTO public.notice VALUES (1871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688800421);
INSERT INTO public.notice VALUES (1872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688801021);
INSERT INTO public.notice VALUES (1873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688801622);
INSERT INTO public.notice VALUES (1874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688802220);
INSERT INTO public.notice VALUES (1875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688802821);
INSERT INTO public.notice VALUES (1876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688803421);
INSERT INTO public.notice VALUES (1877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688804021);
INSERT INTO public.notice VALUES (1878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688804621);
INSERT INTO public.notice VALUES (1879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688805220);
INSERT INTO public.notice VALUES (1880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688805821);
INSERT INTO public.notice VALUES (1881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688806421);
INSERT INTO public.notice VALUES (1882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688807020);
INSERT INTO public.notice VALUES (1883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688807620);
INSERT INTO public.notice VALUES (1884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688808221);
INSERT INTO public.notice VALUES (1885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688808824);
INSERT INTO public.notice VALUES (1886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688809421);
INSERT INTO public.notice VALUES (1887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688810021);
INSERT INTO public.notice VALUES (1888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688810621);
INSERT INTO public.notice VALUES (1889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688811220);
INSERT INTO public.notice VALUES (1890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688811821);
INSERT INTO public.notice VALUES (1891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688812420);
INSERT INTO public.notice VALUES (1892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688813022);
INSERT INTO public.notice VALUES (1893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688813620);
INSERT INTO public.notice VALUES (1894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688814220);
INSERT INTO public.notice VALUES (1895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688814820);
INSERT INTO public.notice VALUES (1896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688815421);
INSERT INTO public.notice VALUES (1897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688816021);
INSERT INTO public.notice VALUES (1898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688816620);
INSERT INTO public.notice VALUES (1899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688817220);
INSERT INTO public.notice VALUES (1900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688817820);
INSERT INTO public.notice VALUES (1901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688818420);
INSERT INTO public.notice VALUES (1902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688819021);
INSERT INTO public.notice VALUES (1903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688819621);
INSERT INTO public.notice VALUES (1906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688821421);
INSERT INTO public.notice VALUES (1907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688822020);
INSERT INTO public.notice VALUES (1908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688822620);
INSERT INTO public.notice VALUES (1909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688823221);
INSERT INTO public.notice VALUES (1910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688823821);
INSERT INTO public.notice VALUES (1911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688824421);
INSERT INTO public.notice VALUES (1912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688825020);
INSERT INTO public.notice VALUES (1913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688825620);
INSERT INTO public.notice VALUES (1914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688826222);
INSERT INTO public.notice VALUES (1915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688826820);
INSERT INTO public.notice VALUES (1916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688827421);
INSERT INTO public.notice VALUES (1917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688828021);
INSERT INTO public.notice VALUES (1918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688828621);
INSERT INTO public.notice VALUES (1919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688829222);
INSERT INTO public.notice VALUES (1920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688829821);
INSERT INTO public.notice VALUES (1930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688835820);
INSERT INTO public.notice VALUES (1935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688838821);
INSERT INTO public.notice VALUES (1936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688839420);
INSERT INTO public.notice VALUES (1937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688840020);
INSERT INTO public.notice VALUES (1938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688840620);
INSERT INTO public.notice VALUES (2774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689342803);
INSERT INTO public.notice VALUES (2776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689344004);
INSERT INTO public.notice VALUES (2777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689344603);
INSERT INTO public.notice VALUES (2891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689413004);
INSERT INTO public.notice VALUES (2938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689441204);
INSERT INTO public.notice VALUES (2940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689442403);
INSERT INTO public.notice VALUES (1921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688830420);
INSERT INTO public.notice VALUES (1922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688831021);
INSERT INTO public.notice VALUES (1923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688831620);
INSERT INTO public.notice VALUES (1924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688832221);
INSERT INTO public.notice VALUES (1925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688832820);
INSERT INTO public.notice VALUES (1926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688833421);
INSERT INTO public.notice VALUES (1927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688834020);
INSERT INTO public.notice VALUES (1928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688834621);
INSERT INTO public.notice VALUES (1929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688835221);
INSERT INTO public.notice VALUES (1931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688836420);
INSERT INTO public.notice VALUES (1932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688837020);
INSERT INTO public.notice VALUES (1933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688837620);
INSERT INTO public.notice VALUES (1934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688838221);
INSERT INTO public.notice VALUES (1939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688841221);
INSERT INTO public.notice VALUES (1940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688841821);
INSERT INTO public.notice VALUES (1941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688842420);
INSERT INTO public.notice VALUES (1942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688843020);
INSERT INTO public.notice VALUES (1943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688843621);
INSERT INTO public.notice VALUES (1944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688844221);
INSERT INTO public.notice VALUES (1945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688844821);
INSERT INTO public.notice VALUES (1946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688845421);
INSERT INTO public.notice VALUES (1947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688846022);
INSERT INTO public.notice VALUES (1948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688846621);
INSERT INTO public.notice VALUES (1949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688847221);
INSERT INTO public.notice VALUES (1950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688847828);
INSERT INTO public.notice VALUES (1951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688848421);
INSERT INTO public.notice VALUES (1952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688849020);
INSERT INTO public.notice VALUES (1953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688849620);
INSERT INTO public.notice VALUES (1954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688850221);
INSERT INTO public.notice VALUES (1955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688850821);
INSERT INTO public.notice VALUES (1956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688851420);
INSERT INTO public.notice VALUES (1957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688852020);
INSERT INTO public.notice VALUES (1958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688852620);
INSERT INTO public.notice VALUES (1959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688853220);
INSERT INTO public.notice VALUES (1960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688853820);
INSERT INTO public.notice VALUES (1970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688859821);
INSERT INTO public.notice VALUES (1971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688860421);
INSERT INTO public.notice VALUES (1972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688861020);
INSERT INTO public.notice VALUES (1978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688864621);
INSERT INTO public.notice VALUES (1983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688867621);
INSERT INTO public.notice VALUES (2775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689343403);
INSERT INTO public.notice VALUES (2778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689345203);
INSERT INTO public.notice VALUES (2781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689347003);
INSERT INTO public.notice VALUES (1961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688854421);
INSERT INTO public.notice VALUES (1962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688855020);
INSERT INTO public.notice VALUES (1963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688855621);
INSERT INTO public.notice VALUES (1964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688856221);
INSERT INTO public.notice VALUES (1965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688856821);
INSERT INTO public.notice VALUES (1966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688857421);
INSERT INTO public.notice VALUES (1967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688858020);
INSERT INTO public.notice VALUES (1968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688858621);
INSERT INTO public.notice VALUES (1969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688859220);
INSERT INTO public.notice VALUES (1973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688861620);
INSERT INTO public.notice VALUES (1974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688862222);
INSERT INTO public.notice VALUES (1975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688862820);
INSERT INTO public.notice VALUES (1976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688863421);
INSERT INTO public.notice VALUES (1977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688864021);
INSERT INTO public.notice VALUES (1979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688865221);
INSERT INTO public.notice VALUES (1980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688865821);
INSERT INTO public.notice VALUES (1981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688866421);
INSERT INTO public.notice VALUES (1982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688867021);
INSERT INTO public.notice VALUES (1984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688868221);
INSERT INTO public.notice VALUES (1985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688868821);
INSERT INTO public.notice VALUES (1986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688869421);
INSERT INTO public.notice VALUES (1987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688870021);
INSERT INTO public.notice VALUES (1988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688870620);
INSERT INTO public.notice VALUES (1989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688871221);
INSERT INTO public.notice VALUES (1990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688871821);
INSERT INTO public.notice VALUES (1991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688872421);
INSERT INTO public.notice VALUES (1992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688873021);
INSERT INTO public.notice VALUES (1993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688873621);
INSERT INTO public.notice VALUES (1994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688874220);
INSERT INTO public.notice VALUES (1995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688874821);
INSERT INTO public.notice VALUES (1996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688875421);
INSERT INTO public.notice VALUES (1997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688876021);
INSERT INTO public.notice VALUES (1998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688876621);
INSERT INTO public.notice VALUES (1999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688877221);
INSERT INTO public.notice VALUES (2003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688879620);
INSERT INTO public.notice VALUES (2004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688880221);
INSERT INTO public.notice VALUES (2007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688882021);
INSERT INTO public.notice VALUES (2779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689345804);
INSERT INTO public.notice VALUES (2780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689346405);
INSERT INTO public.notice VALUES (2892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689413603);
INSERT INTO public.notice VALUES (2893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689414203);
INSERT INTO public.notice VALUES (2896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689416003);
INSERT INTO public.notice VALUES (2942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689443604);
INSERT INTO public.notice VALUES (2000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688877820);
INSERT INTO public.notice VALUES (2001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688878421);
INSERT INTO public.notice VALUES (2002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688879021);
INSERT INTO public.notice VALUES (2005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688880821);
INSERT INTO public.notice VALUES (2006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688881421);
INSERT INTO public.notice VALUES (2008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688882621);
INSERT INTO public.notice VALUES (2009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688883220);
INSERT INTO public.notice VALUES (2010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688883821);
INSERT INTO public.notice VALUES (2011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688884421);
INSERT INTO public.notice VALUES (2012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688885021);
INSERT INTO public.notice VALUES (2013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688885621);
INSERT INTO public.notice VALUES (2014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688886221);
INSERT INTO public.notice VALUES (2015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688886820);
INSERT INTO public.notice VALUES (2016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688887421);
INSERT INTO public.notice VALUES (2017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688888021);
INSERT INTO public.notice VALUES (2018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688888621);
INSERT INTO public.notice VALUES (2019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688889224);
INSERT INTO public.notice VALUES (2020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688889821);
INSERT INTO public.notice VALUES (2021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688890421);
INSERT INTO public.notice VALUES (2022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688891021);
INSERT INTO public.notice VALUES (2023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688891621);
INSERT INTO public.notice VALUES (2024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688892224);
INSERT INTO public.notice VALUES (2025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688892820);
INSERT INTO public.notice VALUES (2026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688893421);
INSERT INTO public.notice VALUES (2027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688894021);
INSERT INTO public.notice VALUES (2028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688894621);
INSERT INTO public.notice VALUES (2029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688895221);
INSERT INTO public.notice VALUES (2030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688895820);
INSERT INTO public.notice VALUES (2031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688896420);
INSERT INTO public.notice VALUES (2032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688897020);
INSERT INTO public.notice VALUES (2040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688901821);
INSERT INTO public.notice VALUES (2041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688902420);
INSERT INTO public.notice VALUES (2782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689347603);
INSERT INTO public.notice VALUES (2785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689349404);
INSERT INTO public.notice VALUES (2788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689351203);
INSERT INTO public.notice VALUES (2789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689351803);
INSERT INTO public.notice VALUES (2793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689354203);
INSERT INTO public.notice VALUES (2794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689354804);
INSERT INTO public.notice VALUES (2795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689355404);
INSERT INTO public.notice VALUES (2796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689356003);
INSERT INTO public.notice VALUES (2797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689356605);
INSERT INTO public.notice VALUES (2799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689357804);
INSERT INTO public.notice VALUES (2800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689358403);
INSERT INTO public.notice VALUES (2033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688897620);
INSERT INTO public.notice VALUES (2034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688898221);
INSERT INTO public.notice VALUES (2035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688898821);
INSERT INTO public.notice VALUES (2036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688899421);
INSERT INTO public.notice VALUES (2037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688900021);
INSERT INTO public.notice VALUES (2038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688900621);
INSERT INTO public.notice VALUES (2039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688901221);
INSERT INTO public.notice VALUES (2042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688903021);
INSERT INTO public.notice VALUES (2043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688903621);
INSERT INTO public.notice VALUES (2044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688904221);
INSERT INTO public.notice VALUES (2045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688904821);
INSERT INTO public.notice VALUES (2046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688905420);
INSERT INTO public.notice VALUES (2047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688906021);
INSERT INTO public.notice VALUES (2048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688906621);
INSERT INTO public.notice VALUES (2049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688907221);
INSERT INTO public.notice VALUES (2053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688909621);
INSERT INTO public.notice VALUES (2054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688910221);
INSERT INTO public.notice VALUES (2056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688911421);
INSERT INTO public.notice VALUES (2059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688913221);
INSERT INTO public.notice VALUES (2060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688913822);
INSERT INTO public.notice VALUES (2061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688914421);
INSERT INTO public.notice VALUES (2783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689348204);
INSERT INTO public.notice VALUES (2784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689348804);
INSERT INTO public.notice VALUES (2786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689350005);
INSERT INTO public.notice VALUES (2894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689414804);
INSERT INTO public.notice VALUES (2895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689415404);
INSERT INTO public.notice VALUES (2897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689416603);
INSERT INTO public.notice VALUES (2899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689417803);
INSERT INTO public.notice VALUES (2901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689419002);
INSERT INTO public.notice VALUES (2050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688907821);
INSERT INTO public.notice VALUES (2051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688908421);
INSERT INTO public.notice VALUES (2052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688909021);
INSERT INTO public.notice VALUES (2055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688910821);
INSERT INTO public.notice VALUES (2057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688912021);
INSERT INTO public.notice VALUES (2058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688912621);
INSERT INTO public.notice VALUES (2062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688915022);
INSERT INTO public.notice VALUES (2063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688915621);
INSERT INTO public.notice VALUES (2064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688916222);
INSERT INTO public.notice VALUES (2065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688916822);
INSERT INTO public.notice VALUES (2066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688917421);
INSERT INTO public.notice VALUES (2067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688918021);
INSERT INTO public.notice VALUES (2068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688918620);
INSERT INTO public.notice VALUES (2069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688919221);
INSERT INTO public.notice VALUES (2070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688919820);
INSERT INTO public.notice VALUES (2071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688920420);
INSERT INTO public.notice VALUES (2072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688921020);
INSERT INTO public.notice VALUES (2073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688921621);
INSERT INTO public.notice VALUES (2074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688922220);
INSERT INTO public.notice VALUES (2075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688922820);
INSERT INTO public.notice VALUES (2076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688923420);
INSERT INTO public.notice VALUES (2077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688924021);
INSERT INTO public.notice VALUES (2078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688924621);
INSERT INTO public.notice VALUES (2079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688925220);
INSERT INTO public.notice VALUES (2080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688925820);
INSERT INTO public.notice VALUES (2081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688926421);
INSERT INTO public.notice VALUES (2082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688927021);
INSERT INTO public.notice VALUES (2083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688927620);
INSERT INTO public.notice VALUES (2084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688928220);
INSERT INTO public.notice VALUES (2085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688928820);
INSERT INTO public.notice VALUES (2086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688929420);
INSERT INTO public.notice VALUES (2087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688930020);
INSERT INTO public.notice VALUES (2088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688930620);
INSERT INTO public.notice VALUES (2094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688934221);
INSERT INTO public.notice VALUES (2095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688934820);
INSERT INTO public.notice VALUES (2096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688935420);
INSERT INTO public.notice VALUES (2097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688936022);
INSERT INTO public.notice VALUES (2103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688939620);
INSERT INTO public.notice VALUES (2104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688940220);
INSERT INTO public.notice VALUES (2105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688940820);
INSERT INTO public.notice VALUES (2106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688941420);
INSERT INTO public.notice VALUES (2107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688942020);
INSERT INTO public.notice VALUES (2089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688931221);
INSERT INTO public.notice VALUES (2090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688931820);
INSERT INTO public.notice VALUES (2091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688932420);
INSERT INTO public.notice VALUES (2092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688933021);
INSERT INTO public.notice VALUES (2093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688933620);
INSERT INTO public.notice VALUES (2098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688936620);
INSERT INTO public.notice VALUES (2099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688937220);
INSERT INTO public.notice VALUES (2100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688937820);
INSERT INTO public.notice VALUES (2101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688938420);
INSERT INTO public.notice VALUES (2102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688939020);
INSERT INTO public.notice VALUES (2109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688943220);
INSERT INTO public.notice VALUES (2124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688952220);
INSERT INTO public.notice VALUES (2127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688954021);
INSERT INTO public.notice VALUES (2128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688954621);
INSERT INTO public.notice VALUES (2108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688942620);
INSERT INTO public.notice VALUES (2110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688943820);
INSERT INTO public.notice VALUES (2111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688944420);
INSERT INTO public.notice VALUES (2112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688945021);
INSERT INTO public.notice VALUES (2113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688945620);
INSERT INTO public.notice VALUES (2114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688946221);
INSERT INTO public.notice VALUES (2115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688946820);
INSERT INTO public.notice VALUES (2116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688947420);
INSERT INTO public.notice VALUES (2117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688948020);
INSERT INTO public.notice VALUES (2118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688948620);
INSERT INTO public.notice VALUES (2119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688949221);
INSERT INTO public.notice VALUES (2120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688949820);
INSERT INTO public.notice VALUES (2121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688950420);
INSERT INTO public.notice VALUES (2122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688951020);
INSERT INTO public.notice VALUES (2123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688951620);
INSERT INTO public.notice VALUES (2125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688952821);
INSERT INTO public.notice VALUES (2126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688953421);
INSERT INTO public.notice VALUES (2129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688955220);
INSERT INTO public.notice VALUES (2130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688955822);
INSERT INTO public.notice VALUES (2131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688956421);
INSERT INTO public.notice VALUES (2132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688957021);
INSERT INTO public.notice VALUES (2133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688957620);
INSERT INTO public.notice VALUES (2134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688958221);
INSERT INTO public.notice VALUES (2135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688958823);
INSERT INTO public.notice VALUES (2136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688959420);
INSERT INTO public.notice VALUES (2137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688960244);
INSERT INTO public.notice VALUES (2138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688960844);
INSERT INTO public.notice VALUES (2139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688961444);
INSERT INTO public.notice VALUES (2140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688962044);
INSERT INTO public.notice VALUES (2141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688962644);
INSERT INTO public.notice VALUES (2142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688963244);
INSERT INTO public.notice VALUES (2143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688963843);
INSERT INTO public.notice VALUES (2144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688964443);
INSERT INTO public.notice VALUES (2145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688965044);
INSERT INTO public.notice VALUES (2146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688965644);
INSERT INTO public.notice VALUES (2147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688966244);
INSERT INTO public.notice VALUES (2148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688966844);
INSERT INTO public.notice VALUES (2149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688967443);
INSERT INTO public.notice VALUES (2150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688968044);
INSERT INTO public.notice VALUES (2787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689350604);
INSERT INTO public.notice VALUES (2790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689352404);
INSERT INTO public.notice VALUES (2791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689353004);
INSERT INTO public.notice VALUES (2792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689353603);
INSERT INTO public.notice VALUES (2151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688968644);
INSERT INTO public.notice VALUES (2152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688969244);
INSERT INTO public.notice VALUES (2153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688969844);
INSERT INTO public.notice VALUES (2154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688970444);
INSERT INTO public.notice VALUES (2155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688971044);
INSERT INTO public.notice VALUES (2156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688971644);
INSERT INTO public.notice VALUES (2157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688972244);
INSERT INTO public.notice VALUES (2158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688972844);
INSERT INTO public.notice VALUES (2159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688973443);
INSERT INTO public.notice VALUES (2160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688974044);
INSERT INTO public.notice VALUES (2161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688974643);
INSERT INTO public.notice VALUES (2162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688975244);
INSERT INTO public.notice VALUES (2163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688975844);
INSERT INTO public.notice VALUES (2164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688976443);
INSERT INTO public.notice VALUES (2165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688977043);
INSERT INTO public.notice VALUES (2166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688977644);
INSERT INTO public.notice VALUES (2167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688978244);
INSERT INTO public.notice VALUES (2168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688978844);
INSERT INTO public.notice VALUES (2169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688979444);
INSERT INTO public.notice VALUES (2170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688980044);
INSERT INTO public.notice VALUES (2171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688980644);
INSERT INTO public.notice VALUES (2172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688981244);
INSERT INTO public.notice VALUES (2173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688981844);
INSERT INTO public.notice VALUES (2194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688994445);
INSERT INTO public.notice VALUES (2195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688995044);
INSERT INTO public.notice VALUES (2196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688995644);
INSERT INTO public.notice VALUES (2197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688996244);
INSERT INTO public.notice VALUES (2198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688996844);
INSERT INTO public.notice VALUES (2174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688982444);
INSERT INTO public.notice VALUES (2175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688983043);
INSERT INTO public.notice VALUES (2176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688983643);
INSERT INTO public.notice VALUES (2177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688984244);
INSERT INTO public.notice VALUES (2178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688984844);
INSERT INTO public.notice VALUES (2179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688985444);
INSERT INTO public.notice VALUES (2180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688986044);
INSERT INTO public.notice VALUES (2181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688986643);
INSERT INTO public.notice VALUES (2182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688987244);
INSERT INTO public.notice VALUES (2183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688987844);
INSERT INTO public.notice VALUES (2184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688988444);
INSERT INTO public.notice VALUES (2185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688989044);
INSERT INTO public.notice VALUES (2186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688989644);
INSERT INTO public.notice VALUES (2187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688990244);
INSERT INTO public.notice VALUES (2188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688990843);
INSERT INTO public.notice VALUES (2189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688991444);
INSERT INTO public.notice VALUES (2190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688992044);
INSERT INTO public.notice VALUES (2191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688992644);
INSERT INTO public.notice VALUES (2192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688993244);
INSERT INTO public.notice VALUES (2193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688993844);
INSERT INTO public.notice VALUES (2200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688998044);
INSERT INTO public.notice VALUES (2201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688998644);
INSERT INTO public.notice VALUES (2207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689002244);
INSERT INTO public.notice VALUES (2208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689002844);
INSERT INTO public.notice VALUES (2209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689003444);
INSERT INTO public.notice VALUES (2210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689004044);
INSERT INTO public.notice VALUES (2211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689004644);
INSERT INTO public.notice VALUES (2212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689005244);
INSERT INTO public.notice VALUES (2199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688997444);
INSERT INTO public.notice VALUES (2202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688999244);
INSERT INTO public.notice VALUES (2203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1688999844);
INSERT INTO public.notice VALUES (2204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689000444);
INSERT INTO public.notice VALUES (2205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689001045);
INSERT INTO public.notice VALUES (2206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689001644);
INSERT INTO public.notice VALUES (2214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689006444);
INSERT INTO public.notice VALUES (2798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689357204);
INSERT INTO public.notice VALUES (2801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689359004);
INSERT INTO public.notice VALUES (2802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689359604);
INSERT INTO public.notice VALUES (2898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689417204);
INSERT INTO public.notice VALUES (2900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689418403);
INSERT INTO public.notice VALUES (2903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689420203);
INSERT INTO public.notice VALUES (2904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689420803);
INSERT INTO public.notice VALUES (2905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689421404);
INSERT INTO public.notice VALUES (2213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689005844);
INSERT INTO public.notice VALUES (2215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689007044);
INSERT INTO public.notice VALUES (2216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689007644);
INSERT INTO public.notice VALUES (2217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689008244);
INSERT INTO public.notice VALUES (2218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689008844);
INSERT INTO public.notice VALUES (2219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689009444);
INSERT INTO public.notice VALUES (2220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689010044);
INSERT INTO public.notice VALUES (2221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689010644);
INSERT INTO public.notice VALUES (2222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689011244);
INSERT INTO public.notice VALUES (2223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689011844);
INSERT INTO public.notice VALUES (2224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689012444);
INSERT INTO public.notice VALUES (2225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689013044);
INSERT INTO public.notice VALUES (2226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689013644);
INSERT INTO public.notice VALUES (2227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689014244);
INSERT INTO public.notice VALUES (2228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689014844);
INSERT INTO public.notice VALUES (2229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689015444);
INSERT INTO public.notice VALUES (2230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689016044);
INSERT INTO public.notice VALUES (2231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689016645);
INSERT INTO public.notice VALUES (2232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689017244);
INSERT INTO public.notice VALUES (2233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689017844);
INSERT INTO public.notice VALUES (2236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689019644);
INSERT INTO public.notice VALUES (2237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689020244);
INSERT INTO public.notice VALUES (2238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689020843);
INSERT INTO public.notice VALUES (2241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689022644);
INSERT INTO public.notice VALUES (2246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689025644);
INSERT INTO public.notice VALUES (2250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689028044);
INSERT INTO public.notice VALUES (2803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689360204);
INSERT INTO public.notice VALUES (2806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689362003);
INSERT INTO public.notice VALUES (2807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689362603);
INSERT INTO public.notice VALUES (2234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689018444);
INSERT INTO public.notice VALUES (2235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689019044);
INSERT INTO public.notice VALUES (2239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689021444);
INSERT INTO public.notice VALUES (2240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689022044);
INSERT INTO public.notice VALUES (2242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689023244);
INSERT INTO public.notice VALUES (2243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689023844);
INSERT INTO public.notice VALUES (2244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689024444);
INSERT INTO public.notice VALUES (2245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689025044);
INSERT INTO public.notice VALUES (2247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689026244);
INSERT INTO public.notice VALUES (2248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689026844);
INSERT INTO public.notice VALUES (2249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689027444);
INSERT INTO public.notice VALUES (2251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689028644);
INSERT INTO public.notice VALUES (2252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689029244);
INSERT INTO public.notice VALUES (2253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689029844);
INSERT INTO public.notice VALUES (2254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689030444);
INSERT INTO public.notice VALUES (2255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689031044);
INSERT INTO public.notice VALUES (2257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689032244);
INSERT INTO public.notice VALUES (2261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689034644);
INSERT INTO public.notice VALUES (2271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689040644);
INSERT INTO public.notice VALUES (2272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689041244);
INSERT INTO public.notice VALUES (2273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689041843);
INSERT INTO public.notice VALUES (2274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689042444);
INSERT INTO public.notice VALUES (2804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689360804);
INSERT INTO public.notice VALUES (2805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689361404);
INSERT INTO public.notice VALUES (2809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689363805);
INSERT INTO public.notice VALUES (2811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689365003);
INSERT INTO public.notice VALUES (2812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689365605);
INSERT INTO public.notice VALUES (2814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689366803);
INSERT INTO public.notice VALUES (2816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689368004);
INSERT INTO public.notice VALUES (2256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689031644);
INSERT INTO public.notice VALUES (2258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689032844);
INSERT INTO public.notice VALUES (2259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689033444);
INSERT INTO public.notice VALUES (2260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689034044);
INSERT INTO public.notice VALUES (2262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689035244);
INSERT INTO public.notice VALUES (2263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689035844);
INSERT INTO public.notice VALUES (2264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689036444);
INSERT INTO public.notice VALUES (2265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689037044);
INSERT INTO public.notice VALUES (2266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689037644);
INSERT INTO public.notice VALUES (2267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689038244);
INSERT INTO public.notice VALUES (2268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689038844);
INSERT INTO public.notice VALUES (2269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689039444);
INSERT INTO public.notice VALUES (2270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689040044);
INSERT INTO public.notice VALUES (2275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689043044);
INSERT INTO public.notice VALUES (2276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689043644);
INSERT INTO public.notice VALUES (2277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689044244);
INSERT INTO public.notice VALUES (2278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689044844);
INSERT INTO public.notice VALUES (2279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689045444);
INSERT INTO public.notice VALUES (2280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689046044);
INSERT INTO public.notice VALUES (2281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689046644);
INSERT INTO public.notice VALUES (2282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689047244);
INSERT INTO public.notice VALUES (2283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689047844);
INSERT INTO public.notice VALUES (2284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689048444);
INSERT INTO public.notice VALUES (2285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689049044);
INSERT INTO public.notice VALUES (2286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689049644);
INSERT INTO public.notice VALUES (2287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689050244);
INSERT INTO public.notice VALUES (2288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689050844);
INSERT INTO public.notice VALUES (2289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689051444);
INSERT INTO public.notice VALUES (2290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689052044);
INSERT INTO public.notice VALUES (2808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689363204);
INSERT INTO public.notice VALUES (2810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689364403);
INSERT INTO public.notice VALUES (2902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689419604);
INSERT INTO public.notice VALUES (2907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689422603);
INSERT INTO public.notice VALUES (2910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689424403);
INSERT INTO public.notice VALUES (2912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689425602);
INSERT INTO public.notice VALUES (2913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689426204);
INSERT INTO public.notice VALUES (2943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689444203);
INSERT INTO public.notice VALUES (2944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689444803);
INSERT INTO public.notice VALUES (2947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689446604);
INSERT INTO public.notice VALUES (2949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689447804);
INSERT INTO public.notice VALUES (2950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689448403);
INSERT INTO public.notice VALUES (2951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689449003);
INSERT INTO public.notice VALUES (2952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689449604);
INSERT INTO public.notice VALUES (2291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689052644);
INSERT INTO public.notice VALUES (2292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689053245);
INSERT INTO public.notice VALUES (2293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689053844);
INSERT INTO public.notice VALUES (2294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689054443);
INSERT INTO public.notice VALUES (2295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689055043);
INSERT INTO public.notice VALUES (2296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689055644);
INSERT INTO public.notice VALUES (2297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689056245);
INSERT INTO public.notice VALUES (2298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689056844);
INSERT INTO public.notice VALUES (2299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689057444);
INSERT INTO public.notice VALUES (2300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689058044);
INSERT INTO public.notice VALUES (2301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689058644);
INSERT INTO public.notice VALUES (2302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689059244);
INSERT INTO public.notice VALUES (2303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689059844);
INSERT INTO public.notice VALUES (2304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689060450);
INSERT INTO public.notice VALUES (2305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689061044);
INSERT INTO public.notice VALUES (2306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689061644);
INSERT INTO public.notice VALUES (2307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689062245);
INSERT INTO public.notice VALUES (2308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689062844);
INSERT INTO public.notice VALUES (2309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689063444);
INSERT INTO public.notice VALUES (2310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689064044);
INSERT INTO public.notice VALUES (2311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689064644);
INSERT INTO public.notice VALUES (2312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689065244);
INSERT INTO public.notice VALUES (2313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689065844);
INSERT INTO public.notice VALUES (2314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689066444);
INSERT INTO public.notice VALUES (2315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689067044);
INSERT INTO public.notice VALUES (2316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689067644);
INSERT INTO public.notice VALUES (2317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689068244);
INSERT INTO public.notice VALUES (2318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689068844);
INSERT INTO public.notice VALUES (2319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689069444);
INSERT INTO public.notice VALUES (2320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689070044);
INSERT INTO public.notice VALUES (2322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689071244);
INSERT INTO public.notice VALUES (2323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689071844);
INSERT INTO public.notice VALUES (2326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689073644);
INSERT INTO public.notice VALUES (2813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689366203);
INSERT INTO public.notice VALUES (2906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689422003);
INSERT INTO public.notice VALUES (2908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689423202);
INSERT INTO public.notice VALUES (2909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689423804);
INSERT INTO public.notice VALUES (2911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689425003);
INSERT INTO public.notice VALUES (2914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689426803);
INSERT INTO public.notice VALUES (2916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689428004);
INSERT INTO public.notice VALUES (2953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689450204);
INSERT INTO public.notice VALUES (2954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689450803);
INSERT INTO public.notice VALUES (2973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689462202);
INSERT INTO public.notice VALUES (2321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689070643);
INSERT INTO public.notice VALUES (2324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689072444);
INSERT INTO public.notice VALUES (2325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689073044);
INSERT INTO public.notice VALUES (2327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689074244);
INSERT INTO public.notice VALUES (2328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689074846);
INSERT INTO public.notice VALUES (2329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689075444);
INSERT INTO public.notice VALUES (2330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689076044);
INSERT INTO public.notice VALUES (2331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689076644);
INSERT INTO public.notice VALUES (2332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689077244);
INSERT INTO public.notice VALUES (2333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689077844);
INSERT INTO public.notice VALUES (2334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689078444);
INSERT INTO public.notice VALUES (2335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689079044);
INSERT INTO public.notice VALUES (2336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689079644);
INSERT INTO public.notice VALUES (2337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689080244);
INSERT INTO public.notice VALUES (2338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689080844);
INSERT INTO public.notice VALUES (2339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689081444);
INSERT INTO public.notice VALUES (2340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689082044);
INSERT INTO public.notice VALUES (2341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689082644);
INSERT INTO public.notice VALUES (2342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689083244);
INSERT INTO public.notice VALUES (2343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689083844);
INSERT INTO public.notice VALUES (2344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689084444);
INSERT INTO public.notice VALUES (2345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689085044);
INSERT INTO public.notice VALUES (2356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689091644);
INSERT INTO public.notice VALUES (2357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689092244);
INSERT INTO public.notice VALUES (2368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689098844);
INSERT INTO public.notice VALUES (2369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689099444);
INSERT INTO public.notice VALUES (2370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689100044);
INSERT INTO public.notice VALUES (2371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689100644);
INSERT INTO public.notice VALUES (2346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689085644);
INSERT INTO public.notice VALUES (2347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689086244);
INSERT INTO public.notice VALUES (2348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689086844);
INSERT INTO public.notice VALUES (2349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689087444);
INSERT INTO public.notice VALUES (2350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689088044);
INSERT INTO public.notice VALUES (2351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689088644);
INSERT INTO public.notice VALUES (2352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689089244);
INSERT INTO public.notice VALUES (2353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689089845);
INSERT INTO public.notice VALUES (2354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689090444);
INSERT INTO public.notice VALUES (2355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689091044);
INSERT INTO public.notice VALUES (2358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689092844);
INSERT INTO public.notice VALUES (2359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689093443);
INSERT INTO public.notice VALUES (2360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689094044);
INSERT INTO public.notice VALUES (2361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689094644);
INSERT INTO public.notice VALUES (2362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689095244);
INSERT INTO public.notice VALUES (2363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689095843);
INSERT INTO public.notice VALUES (2364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689096444);
INSERT INTO public.notice VALUES (2365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689097044);
INSERT INTO public.notice VALUES (2366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689097644);
INSERT INTO public.notice VALUES (2367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689098244);
INSERT INTO public.notice VALUES (2815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689367404);
INSERT INTO public.notice VALUES (2915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689427403);
INSERT INTO public.notice VALUES (2917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689428604);
INSERT INTO public.notice VALUES (2918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689429203);
INSERT INTO public.notice VALUES (2955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689451402);
INSERT INTO public.notice VALUES (2956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689452004);
INSERT INTO public.notice VALUES (2957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689452603);
INSERT INTO public.notice VALUES (2974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689462804);
INSERT INTO public.notice VALUES (2975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689463404);
INSERT INTO public.notice VALUES (2372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689101244);
INSERT INTO public.notice VALUES (2373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689101844);
INSERT INTO public.notice VALUES (2374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689102444);
INSERT INTO public.notice VALUES (2375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689103044);
INSERT INTO public.notice VALUES (2376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689103645);
INSERT INTO public.notice VALUES (2377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689104244);
INSERT INTO public.notice VALUES (2378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689104844);
INSERT INTO public.notice VALUES (2379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689105444);
INSERT INTO public.notice VALUES (2380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689106044);
INSERT INTO public.notice VALUES (2381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689106644);
INSERT INTO public.notice VALUES (2382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689107244);
INSERT INTO public.notice VALUES (2383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689107844);
INSERT INTO public.notice VALUES (2384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689108444);
INSERT INTO public.notice VALUES (2385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689109044);
INSERT INTO public.notice VALUES (2386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689109644);
INSERT INTO public.notice VALUES (2387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689110244);
INSERT INTO public.notice VALUES (2388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689110844);
INSERT INTO public.notice VALUES (2396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689115644);
INSERT INTO public.notice VALUES (2397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689116244);
INSERT INTO public.notice VALUES (2400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689118044);
INSERT INTO public.notice VALUES (2401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689118644);
INSERT INTO public.notice VALUES (2403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689119844);
INSERT INTO public.notice VALUES (2817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689368603);
INSERT INTO public.notice VALUES (2819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689369804);
INSERT INTO public.notice VALUES (2823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689372204);
INSERT INTO public.notice VALUES (2824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689372803);
INSERT INTO public.notice VALUES (2825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689373403);
INSERT INTO public.notice VALUES (2919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689429805);
INSERT INTO public.notice VALUES (2922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689431603);
INSERT INTO public.notice VALUES (2389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689111444);
INSERT INTO public.notice VALUES (2390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689112044);
INSERT INTO public.notice VALUES (2391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689112644);
INSERT INTO public.notice VALUES (2392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689113244);
INSERT INTO public.notice VALUES (2393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689113844);
INSERT INTO public.notice VALUES (2394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689114444);
INSERT INTO public.notice VALUES (2395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689115044);
INSERT INTO public.notice VALUES (2398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689116844);
INSERT INTO public.notice VALUES (2399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689117444);
INSERT INTO public.notice VALUES (2402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689119244);
INSERT INTO public.notice VALUES (2404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689120444);
INSERT INTO public.notice VALUES (2405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689121044);
INSERT INTO public.notice VALUES (2406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689121644);
INSERT INTO public.notice VALUES (2407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689122244);
INSERT INTO public.notice VALUES (2408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689122844);
INSERT INTO public.notice VALUES (2410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689124044);
INSERT INTO public.notice VALUES (2411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689124644);
INSERT INTO public.notice VALUES (2412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689125244);
INSERT INTO public.notice VALUES (2413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689125844);
INSERT INTO public.notice VALUES (2414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689126444);
INSERT INTO public.notice VALUES (2415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689127044);
INSERT INTO public.notice VALUES (2416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689127644);
INSERT INTO public.notice VALUES (2417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689128244);
INSERT INTO public.notice VALUES (2418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689128844);
INSERT INTO public.notice VALUES (2818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689369203);
INSERT INTO public.notice VALUES (2820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689370403);
INSERT INTO public.notice VALUES (2821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689371003);
INSERT INTO public.notice VALUES (2822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689371604);
INSERT INTO public.notice VALUES (2826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689374004);
INSERT INTO public.notice VALUES (2409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689123444);
INSERT INTO public.notice VALUES (2419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689129445);
INSERT INTO public.notice VALUES (2420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689130044);
INSERT INTO public.notice VALUES (2421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689130644);
INSERT INTO public.notice VALUES (2422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689131244);
INSERT INTO public.notice VALUES (2423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689131847);
INSERT INTO public.notice VALUES (2424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689132444);
INSERT INTO public.notice VALUES (2425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689133044);
INSERT INTO public.notice VALUES (2426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689133645);
INSERT INTO public.notice VALUES (2427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689134244);
INSERT INTO public.notice VALUES (2428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689134844);
INSERT INTO public.notice VALUES (2429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689135444);
INSERT INTO public.notice VALUES (2430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689136044);
INSERT INTO public.notice VALUES (2431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689136644);
INSERT INTO public.notice VALUES (2432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689137244);
INSERT INTO public.notice VALUES (2433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689137844);
INSERT INTO public.notice VALUES (2434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689138444);
INSERT INTO public.notice VALUES (2435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689139044);
INSERT INTO public.notice VALUES (2436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689139644);
INSERT INTO public.notice VALUES (2437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689140244);
INSERT INTO public.notice VALUES (2438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689140844);
INSERT INTO public.notice VALUES (2439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689141444);
INSERT INTO public.notice VALUES (2443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689143844);
INSERT INTO public.notice VALUES (2446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689145644);
INSERT INTO public.notice VALUES (2447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689146243);
INSERT INTO public.notice VALUES (2448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689146844);
INSERT INTO public.notice VALUES (2449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689147444);
INSERT INTO public.notice VALUES (2450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689148044);
INSERT INTO public.notice VALUES (2440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689142044);
INSERT INTO public.notice VALUES (2441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689142644);
INSERT INTO public.notice VALUES (2442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689143244);
INSERT INTO public.notice VALUES (2444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689144444);
INSERT INTO public.notice VALUES (2445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689145044);
INSERT INTO public.notice VALUES (2452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689149244);
INSERT INTO public.notice VALUES (2453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689149844);
INSERT INTO public.notice VALUES (2454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689150451);
INSERT INTO public.notice VALUES (2455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689151044);
INSERT INTO public.notice VALUES (2456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689151644);
INSERT INTO public.notice VALUES (2457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689152244);
INSERT INTO public.notice VALUES (2458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689152844);
INSERT INTO public.notice VALUES (2827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689374604);
INSERT INTO public.notice VALUES (2829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689375803);
INSERT INTO public.notice VALUES (2831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689377003);
INSERT INTO public.notice VALUES (2451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689148644);
INSERT INTO public.notice VALUES (2459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689153445);
INSERT INTO public.notice VALUES (2460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689154044);
INSERT INTO public.notice VALUES (2461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689154644);
INSERT INTO public.notice VALUES (2462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689155244);
INSERT INTO public.notice VALUES (2463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689155844);
INSERT INTO public.notice VALUES (2464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689156444);
INSERT INTO public.notice VALUES (2465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689157044);
INSERT INTO public.notice VALUES (2466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689157644);
INSERT INTO public.notice VALUES (2467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689158244);
INSERT INTO public.notice VALUES (2468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689158844);
INSERT INTO public.notice VALUES (2469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689159444);
INSERT INTO public.notice VALUES (2470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689160044);
INSERT INTO public.notice VALUES (2471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689160644);
INSERT INTO public.notice VALUES (2472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689161244);
INSERT INTO public.notice VALUES (2475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689163044);
INSERT INTO public.notice VALUES (2476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689163644);
INSERT INTO public.notice VALUES (2477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689164244);
INSERT INTO public.notice VALUES (2478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689164844);
INSERT INTO public.notice VALUES (2479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689165444);
INSERT INTO public.notice VALUES (2828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689375203);
INSERT INTO public.notice VALUES (2920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689430404);
INSERT INTO public.notice VALUES (2921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689431004);
INSERT INTO public.notice VALUES (2923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689432204);
INSERT INTO public.notice VALUES (2924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689432804);
INSERT INTO public.notice VALUES (2925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689433403);
INSERT INTO public.notice VALUES (2958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689453203);
INSERT INTO public.notice VALUES (2959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689453804);
INSERT INTO public.notice VALUES (2960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689454404);
INSERT INTO public.notice VALUES (2473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689161844);
INSERT INTO public.notice VALUES (2474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689162444);
INSERT INTO public.notice VALUES (2480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689166044);
INSERT INTO public.notice VALUES (2481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689166644);
INSERT INTO public.notice VALUES (2482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689167244);
INSERT INTO public.notice VALUES (2483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689167844);
INSERT INTO public.notice VALUES (2484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689168444);
INSERT INTO public.notice VALUES (2485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689169044);
INSERT INTO public.notice VALUES (2486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689169644);
INSERT INTO public.notice VALUES (2487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689170244);
INSERT INTO public.notice VALUES (2488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689170844);
INSERT INTO public.notice VALUES (2489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689171444);
INSERT INTO public.notice VALUES (2490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689172044);
INSERT INTO public.notice VALUES (2491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689172644);
INSERT INTO public.notice VALUES (2492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689173505);
INSERT INTO public.notice VALUES (2493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689174105);
INSERT INTO public.notice VALUES (2494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689174705);
INSERT INTO public.notice VALUES (2495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689175305);
INSERT INTO public.notice VALUES (2496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689175905);
INSERT INTO public.notice VALUES (2497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689176505);
INSERT INTO public.notice VALUES (2498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689177105);
INSERT INTO public.notice VALUES (2499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689177705);
INSERT INTO public.notice VALUES (2500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689178305);
INSERT INTO public.notice VALUES (2501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689178905);
INSERT INTO public.notice VALUES (2502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689179505);
INSERT INTO public.notice VALUES (2503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689180106);
INSERT INTO public.notice VALUES (2504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689180705);
INSERT INTO public.notice VALUES (2505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689181305);
INSERT INTO public.notice VALUES (2506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689181905);
INSERT INTO public.notice VALUES (2511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689184905);
INSERT INTO public.notice VALUES (2512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689185505);
INSERT INTO public.notice VALUES (2513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689186105);
INSERT INTO public.notice VALUES (2514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689186705);
INSERT INTO public.notice VALUES (2515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689187305);
INSERT INTO public.notice VALUES (2516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689187905);
INSERT INTO public.notice VALUES (2517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689188505);
INSERT INTO public.notice VALUES (2520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689190305);
INSERT INTO public.notice VALUES (2521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689190905);
INSERT INTO public.notice VALUES (2531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689196905);
INSERT INTO public.notice VALUES (2532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689197505);
INSERT INTO public.notice VALUES (2533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689198105);
INSERT INTO public.notice VALUES (2534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689198704);
INSERT INTO public.notice VALUES (2507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689182505);
INSERT INTO public.notice VALUES (2508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689183105);
INSERT INTO public.notice VALUES (2509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689183705);
INSERT INTO public.notice VALUES (2510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689184305);
INSERT INTO public.notice VALUES (2518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689189105);
INSERT INTO public.notice VALUES (2519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689189705);
INSERT INTO public.notice VALUES (2522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689191505);
INSERT INTO public.notice VALUES (2523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689192105);
INSERT INTO public.notice VALUES (2524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689192705);
INSERT INTO public.notice VALUES (2525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689193304);
INSERT INTO public.notice VALUES (2526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689193905);
INSERT INTO public.notice VALUES (2527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689194504);
INSERT INTO public.notice VALUES (2528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689195105);
INSERT INTO public.notice VALUES (2529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689195705);
INSERT INTO public.notice VALUES (2530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689196305);
INSERT INTO public.notice VALUES (2535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689199305);
INSERT INTO public.notice VALUES (2536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689199905);
INSERT INTO public.notice VALUES (2537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689200505);
INSERT INTO public.notice VALUES (2538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689201104);
INSERT INTO public.notice VALUES (2539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689201705);
INSERT INTO public.notice VALUES (2540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689202304);
INSERT INTO public.notice VALUES (2541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689202905);
INSERT INTO public.notice VALUES (2542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689203505);
INSERT INTO public.notice VALUES (2543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689204105);
INSERT INTO public.notice VALUES (2544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689204705);
INSERT INTO public.notice VALUES (2545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689205305);
INSERT INTO public.notice VALUES (2546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689205904);
INSERT INTO public.notice VALUES (2547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689206505);
INSERT INTO public.notice VALUES (2548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689207105);
INSERT INTO public.notice VALUES (2549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689207705);
INSERT INTO public.notice VALUES (2550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689208305);
INSERT INTO public.notice VALUES (2551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689208905);
INSERT INTO public.notice VALUES (2552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689209504);
INSERT INTO public.notice VALUES (2553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689210104);
INSERT INTO public.notice VALUES (2554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689210704);
INSERT INTO public.notice VALUES (2555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689211305);
INSERT INTO public.notice VALUES (2556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689211905);
INSERT INTO public.notice VALUES (2557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689212505);
INSERT INTO public.notice VALUES (2558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689213105);
INSERT INTO public.notice VALUES (2559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689213705);
INSERT INTO public.notice VALUES (2560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689214304);
INSERT INTO public.notice VALUES (2561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689214904);
INSERT INTO public.notice VALUES (2562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689215505);
INSERT INTO public.notice VALUES (2563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689216105);
INSERT INTO public.notice VALUES (2564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689216705);
INSERT INTO public.notice VALUES (2565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689217305);
INSERT INTO public.notice VALUES (2566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689217905);
INSERT INTO public.notice VALUES (2567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689218505);
INSERT INTO public.notice VALUES (2568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689219105);
INSERT INTO public.notice VALUES (2569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689219705);
INSERT INTO public.notice VALUES (2584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689228705);
INSERT INTO public.notice VALUES (2585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689229305);
INSERT INTO public.notice VALUES (2830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689376404);
INSERT INTO public.notice VALUES (2834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689378804);
INSERT INTO public.notice VALUES (2926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689434002);
INSERT INTO public.notice VALUES (2928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689435203);
INSERT INTO public.notice VALUES (2929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689435803);
INSERT INTO public.notice VALUES (2570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689220304);
INSERT INTO public.notice VALUES (2571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689220905);
INSERT INTO public.notice VALUES (2572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689221505);
INSERT INTO public.notice VALUES (2573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689222105);
INSERT INTO public.notice VALUES (2574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689222706);
INSERT INTO public.notice VALUES (2575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689223305);
INSERT INTO public.notice VALUES (2576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689223905);
INSERT INTO public.notice VALUES (2577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689224505);
INSERT INTO public.notice VALUES (2578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689225105);
INSERT INTO public.notice VALUES (2579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689225705);
INSERT INTO public.notice VALUES (2580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689226304);
INSERT INTO public.notice VALUES (2581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689226905);
INSERT INTO public.notice VALUES (2582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689227505);
INSERT INTO public.notice VALUES (2583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689228105);
INSERT INTO public.notice VALUES (2586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689229905);
INSERT INTO public.notice VALUES (2587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689230508);
INSERT INTO public.notice VALUES (2588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689231105);
INSERT INTO public.notice VALUES (2589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689231705);
INSERT INTO public.notice VALUES (2590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689232305);
INSERT INTO public.notice VALUES (2591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689232904);
INSERT INTO public.notice VALUES (2592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689233506);
INSERT INTO public.notice VALUES (2593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689234105);
INSERT INTO public.notice VALUES (2594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689234705);
INSERT INTO public.notice VALUES (2595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689235305);
INSERT INTO public.notice VALUES (2596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689235905);
INSERT INTO public.notice VALUES (2597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689236505);
INSERT INTO public.notice VALUES (2598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689237105);
INSERT INTO public.notice VALUES (2599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689237705);
INSERT INTO public.notice VALUES (2600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689238305);
INSERT INTO public.notice VALUES (2605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689241305);
INSERT INTO public.notice VALUES (2832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689377603);
INSERT INTO public.notice VALUES (2833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689378204);
INSERT INTO public.notice VALUES (2842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689383623);
INSERT INTO public.notice VALUES (2846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689386003);
INSERT INTO public.notice VALUES (2849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689387803);
INSERT INTO public.notice VALUES (2850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': The requested URL returned error: 502
', 1689388432);
INSERT INTO public.notice VALUES (2851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689389037);
INSERT INTO public.notice VALUES (2852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689389613);
INSERT INTO public.notice VALUES (2853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689390203);
INSERT INTO public.notice VALUES (2855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689391404);
INSERT INTO public.notice VALUES (2857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689392603);
INSERT INTO public.notice VALUES (2860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689394403);
INSERT INTO public.notice VALUES (2862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689395604);
INSERT INTO public.notice VALUES (2601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689238905);
INSERT INTO public.notice VALUES (2602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689239505);
INSERT INTO public.notice VALUES (2603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689240105);
INSERT INTO public.notice VALUES (2604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689240704);
INSERT INTO public.notice VALUES (2606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
error: could not fetch origin
', 1689241904);
INSERT INTO public.notice VALUES (2607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689242602);
INSERT INTO public.notice VALUES (2608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689243205);
INSERT INTO public.notice VALUES (2609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689243803);
INSERT INTO public.notice VALUES (2610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689244403);
INSERT INTO public.notice VALUES (2611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689245004);
INSERT INTO public.notice VALUES (2612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689245604);
INSERT INTO public.notice VALUES (2613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689246203);
INSERT INTO public.notice VALUES (2614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689246803);
INSERT INTO public.notice VALUES (2615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689247404);
INSERT INTO public.notice VALUES (2616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689248003);
INSERT INTO public.notice VALUES (2617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689248603);
INSERT INTO public.notice VALUES (2619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689249804);
INSERT INTO public.notice VALUES (2620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689250403);
INSERT INTO public.notice VALUES (2622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689251604);
INSERT INTO public.notice VALUES (2625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689253404);
INSERT INTO public.notice VALUES (2627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689254603);
INSERT INTO public.notice VALUES (2632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689257603);
INSERT INTO public.notice VALUES (2635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689259403);
INSERT INTO public.notice VALUES (2636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689260005);
INSERT INTO public.notice VALUES (2637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689260604);
INSERT INTO public.notice VALUES (2639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689261802);
INSERT INTO public.notice VALUES (2640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689262404);
INSERT INTO public.notice VALUES (2641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689263003);
INSERT INTO public.notice VALUES (2835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689379403);
INSERT INTO public.notice VALUES (2927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689434604);
INSERT INTO public.notice VALUES (2618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689249205);
INSERT INTO public.notice VALUES (2621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689251002);
INSERT INTO public.notice VALUES (2623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689252204);
INSERT INTO public.notice VALUES (2624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689252803);
INSERT INTO public.notice VALUES (2626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689254004);
INSERT INTO public.notice VALUES (2628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689255203);
INSERT INTO public.notice VALUES (2629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689255804);
INSERT INTO public.notice VALUES (2630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689256403);
INSERT INTO public.notice VALUES (2631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689257003);
INSERT INTO public.notice VALUES (2633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689258204);
INSERT INTO public.notice VALUES (2634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689258803);
INSERT INTO public.notice VALUES (2638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689261203);
INSERT INTO public.notice VALUES (2642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689263603);
INSERT INTO public.notice VALUES (2643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689264204);
INSERT INTO public.notice VALUES (2644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689264804);
INSERT INTO public.notice VALUES (2645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689265403);
INSERT INTO public.notice VALUES (2646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689266006);
INSERT INTO public.notice VALUES (2647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689266604);
INSERT INTO public.notice VALUES (2648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689267204);
INSERT INTO public.notice VALUES (2649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689267803);
INSERT INTO public.notice VALUES (2650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689268402);
INSERT INTO public.notice VALUES (2651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689269003);
INSERT INTO public.notice VALUES (2652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689269604);
INSERT INTO public.notice VALUES (2653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689270203);
INSERT INTO public.notice VALUES (2654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689270804);
INSERT INTO public.notice VALUES (2655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689271403);
INSERT INTO public.notice VALUES (2656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689272003);
INSERT INTO public.notice VALUES (2657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689272602);
INSERT INTO public.notice VALUES (2658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689273204);
INSERT INTO public.notice VALUES (2659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689273804);
INSERT INTO public.notice VALUES (2660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689274403);
INSERT INTO public.notice VALUES (2661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689275005);
INSERT INTO public.notice VALUES (2836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689380003);
INSERT INTO public.notice VALUES (2837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689380604);
INSERT INTO public.notice VALUES (2838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689381203);
INSERT INTO public.notice VALUES (2839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689381803);
INSERT INTO public.notice VALUES (2840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': The requested URL returned error: 502
', 1689382434);
INSERT INTO public.notice VALUES (2841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': The requested URL returned error: 502
', 1689383034);
INSERT INTO public.notice VALUES (2843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689384203);
INSERT INTO public.notice VALUES (2930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689436404);
INSERT INTO public.notice VALUES (2931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689437004);
INSERT INTO public.notice VALUES (2933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689438203);
INSERT INTO public.notice VALUES (2961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689455003);
INSERT INTO public.notice VALUES (2963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689456204);
INSERT INTO public.notice VALUES (2977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689464604);
INSERT INTO public.notice VALUES (2979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689465803);
INSERT INTO public.notice VALUES (2662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689275604);
INSERT INTO public.notice VALUES (2663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689276203);
INSERT INTO public.notice VALUES (2664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689276802);
INSERT INTO public.notice VALUES (2665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689277404);
INSERT INTO public.notice VALUES (2666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689278003);
INSERT INTO public.notice VALUES (2667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689278603);
INSERT INTO public.notice VALUES (2668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689279204);
INSERT INTO public.notice VALUES (2669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689279804);
INSERT INTO public.notice VALUES (2670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689280403);
INSERT INTO public.notice VALUES (2671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689281004);
INSERT INTO public.notice VALUES (2672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689281604);
INSERT INTO public.notice VALUES (2673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689282203);
INSERT INTO public.notice VALUES (2674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689282803);
INSERT INTO public.notice VALUES (2675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689283404);
INSERT INTO public.notice VALUES (2676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689284004);
INSERT INTO public.notice VALUES (2677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689284603);
INSERT INTO public.notice VALUES (2678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689285202);
INSERT INTO public.notice VALUES (2679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689285804);
INSERT INTO public.notice VALUES (2680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689286404);
INSERT INTO public.notice VALUES (2682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689287602);
INSERT INTO public.notice VALUES (2683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689288204);
INSERT INTO public.notice VALUES (2685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689289403);
INSERT INTO public.notice VALUES (2686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689290004);
INSERT INTO public.notice VALUES (2687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689290603);
INSERT INTO public.notice VALUES (2689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689291802);
INSERT INTO public.notice VALUES (2844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689384807);
INSERT INTO public.notice VALUES (2845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689385403);
INSERT INTO public.notice VALUES (2847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689386602);
INSERT INTO public.notice VALUES (2848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': The requested URL returned error: 503
', 1689387329);
INSERT INTO public.notice VALUES (2854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689390803);
INSERT INTO public.notice VALUES (2856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689392003);
INSERT INTO public.notice VALUES (2681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689287003);
INSERT INTO public.notice VALUES (2684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689288804);
INSERT INTO public.notice VALUES (2688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689291203);
INSERT INTO public.notice VALUES (2690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689292404);
INSERT INTO public.notice VALUES (2691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689293003);
INSERT INTO public.notice VALUES (2692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689293603);
INSERT INTO public.notice VALUES (2693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689294204);
INSERT INTO public.notice VALUES (2694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689294804);
INSERT INTO public.notice VALUES (2695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689295403);
INSERT INTO public.notice VALUES (2696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689296002);
INSERT INTO public.notice VALUES (2697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689296604);
INSERT INTO public.notice VALUES (2698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689297203);
INSERT INTO public.notice VALUES (2699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689297803);
INSERT INTO public.notice VALUES (2700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689298404);
INSERT INTO public.notice VALUES (2701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689299004);
INSERT INTO public.notice VALUES (2702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689299603);
INSERT INTO public.notice VALUES (2703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689300203);
INSERT INTO public.notice VALUES (2704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689300804);
INSERT INTO public.notice VALUES (2706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689302003);
INSERT INTO public.notice VALUES (2707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689302605);
INSERT INTO public.notice VALUES (2708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689303204);
INSERT INTO public.notice VALUES (2709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689303803);
INSERT INTO public.notice VALUES (2715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689307404);
INSERT INTO public.notice VALUES (2717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689308603);
INSERT INTO public.notice VALUES (2719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689309803);
INSERT INTO public.notice VALUES (2858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689393204);
INSERT INTO public.notice VALUES (2932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689437603);
INSERT INTO public.notice VALUES (2962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689455604);
INSERT INTO public.notice VALUES (2980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689466403);
INSERT INTO public.notice VALUES (2981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689467005);
INSERT INTO public.notice VALUES (2705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689301403);
INSERT INTO public.notice VALUES (2710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689304403);
INSERT INTO public.notice VALUES (2711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689305004);
INSERT INTO public.notice VALUES (2712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689305604);
INSERT INTO public.notice VALUES (2713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689306203);
INSERT INTO public.notice VALUES (2714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689306804);
INSERT INTO public.notice VALUES (2716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689308003);
INSERT INTO public.notice VALUES (2718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689309204);
INSERT INTO public.notice VALUES (2720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689310403);
INSERT INTO public.notice VALUES (2721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689311005);
INSERT INTO public.notice VALUES (2722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689311604);
INSERT INTO public.notice VALUES (2723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689312203);
INSERT INTO public.notice VALUES (2724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689312803);
INSERT INTO public.notice VALUES (2725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689313404);
INSERT INTO public.notice VALUES (2726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689314003);
INSERT INTO public.notice VALUES (2727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689314603);
INSERT INTO public.notice VALUES (2728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689315204);
INSERT INTO public.notice VALUES (2729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689315804);
INSERT INTO public.notice VALUES (2730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689316403);
INSERT INTO public.notice VALUES (2731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689317003);
INSERT INTO public.notice VALUES (2732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689317604);
INSERT INTO public.notice VALUES (2733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689318205);
INSERT INTO public.notice VALUES (2734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689318803);
INSERT INTO public.notice VALUES (2735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689319405);
INSERT INTO public.notice VALUES (2736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689320004);
INSERT INTO public.notice VALUES (2737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689320603);
INSERT INTO public.notice VALUES (2738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689321203);
INSERT INTO public.notice VALUES (2739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689321804);
INSERT INTO public.notice VALUES (2859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689393804);
INSERT INTO public.notice VALUES (2934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689438804);
INSERT INTO public.notice VALUES (2983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689468203);
INSERT INTO public.notice VALUES (2984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689468804);
INSERT INTO public.notice VALUES (2987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689470603);
INSERT INTO public.notice VALUES (4646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690467239);
INSERT INTO public.notice VALUES (4647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690467838);
INSERT INTO public.notice VALUES (4648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690468438);
INSERT INTO public.notice VALUES (4649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690469039);
INSERT INTO public.notice VALUES (4918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690630439);
INSERT INTO public.notice VALUES (5072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690722837);
INSERT INTO public.notice VALUES (5075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690724638);
INSERT INTO public.notice VALUES (5076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690725239);
INSERT INTO public.notice VALUES (5078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690726438);
INSERT INTO public.notice VALUES (5079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690727038);
INSERT INTO public.notice VALUES (5083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690729440);
INSERT INTO public.notice VALUES (5084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690730039);
INSERT INTO public.notice VALUES (2985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689469404);
INSERT INTO public.notice VALUES (2986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689470003);
INSERT INTO public.notice VALUES (2988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689471204);
INSERT INTO public.notice VALUES (2989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689471804);
INSERT INTO public.notice VALUES (2990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689472403);
INSERT INTO public.notice VALUES (2991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689473003);
INSERT INTO public.notice VALUES (2992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689473604);
INSERT INTO public.notice VALUES (2993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689474203);
INSERT INTO public.notice VALUES (2994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689474803);
INSERT INTO public.notice VALUES (2995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689475404);
INSERT INTO public.notice VALUES (2996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689476004);
INSERT INTO public.notice VALUES (2997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689476603);
INSERT INTO public.notice VALUES (2998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689477203);
INSERT INTO public.notice VALUES (2999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689477804);
INSERT INTO public.notice VALUES (3000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689478403);
INSERT INTO public.notice VALUES (3001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689479003);
INSERT INTO public.notice VALUES (3003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689480204);
INSERT INTO public.notice VALUES (4650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690469639);
INSERT INTO public.notice VALUES (4655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690472638);
INSERT INTO public.notice VALUES (4660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690475640);
INSERT INTO public.notice VALUES (4662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690476839);
INSERT INTO public.notice VALUES (4924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690634038);
INSERT INTO public.notice VALUES (4925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690634637);
INSERT INTO public.notice VALUES (4927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690635838);
INSERT INTO public.notice VALUES (4928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690636438);
INSERT INTO public.notice VALUES (4931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690638238);
INSERT INTO public.notice VALUES (4933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690639439);
INSERT INTO public.notice VALUES (4936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690641240);
INSERT INTO public.notice VALUES (4937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690641839);
INSERT INTO public.notice VALUES (4939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690643038);
INSERT INTO public.notice VALUES (3002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689479604);
INSERT INTO public.notice VALUES (3004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689480803);
INSERT INTO public.notice VALUES (3005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689481403);
INSERT INTO public.notice VALUES (3006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689482004);
INSERT INTO public.notice VALUES (3007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689482604);
INSERT INTO public.notice VALUES (3008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689483203);
INSERT INTO public.notice VALUES (3009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689483803);
INSERT INTO public.notice VALUES (3010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689484404);
INSERT INTO public.notice VALUES (3011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689485003);
INSERT INTO public.notice VALUES (3012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689485603);
INSERT INTO public.notice VALUES (3013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689486205);
INSERT INTO public.notice VALUES (3014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689486804);
INSERT INTO public.notice VALUES (3015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689487403);
INSERT INTO public.notice VALUES (3016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689488003);
INSERT INTO public.notice VALUES (3017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689488605);
INSERT INTO public.notice VALUES (3018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689489203);
INSERT INTO public.notice VALUES (3024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689492805);
INSERT INTO public.notice VALUES (3025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689493404);
INSERT INTO public.notice VALUES (3027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689494603);
INSERT INTO public.notice VALUES (3029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689495803);
INSERT INTO public.notice VALUES (4651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690470239);
INSERT INTO public.notice VALUES (4652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690470837);
INSERT INTO public.notice VALUES (4929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690637039);
INSERT INTO public.notice VALUES (4930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690637639);
INSERT INTO public.notice VALUES (4932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690638838);
INSERT INTO public.notice VALUES (4934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690640038);
INSERT INTO public.notice VALUES (4935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690640638);
INSERT INTO public.notice VALUES (4938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690642438);
INSERT INTO public.notice VALUES (4941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690644239);
INSERT INTO public.notice VALUES (4942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690644838);
INSERT INTO public.notice VALUES (3019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689489803);
INSERT INTO public.notice VALUES (3020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689490404);
INSERT INTO public.notice VALUES (3021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689491004);
INSERT INTO public.notice VALUES (3022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689491604);
INSERT INTO public.notice VALUES (3023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689492203);
INSERT INTO public.notice VALUES (3026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689494003);
INSERT INTO public.notice VALUES (3028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689495204);
INSERT INTO public.notice VALUES (3030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689496403);
INSERT INTO public.notice VALUES (3031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689497004);
INSERT INTO public.notice VALUES (3032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689497604);
INSERT INTO public.notice VALUES (3033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689498203);
INSERT INTO public.notice VALUES (3034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689498803);
INSERT INTO public.notice VALUES (3035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689499404);
INSERT INTO public.notice VALUES (3036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689500003);
INSERT INTO public.notice VALUES (3037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689500603);
INSERT INTO public.notice VALUES (3038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689501204);
INSERT INTO public.notice VALUES (3039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689501804);
INSERT INTO public.notice VALUES (3040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689502403);
INSERT INTO public.notice VALUES (3044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689504803);
INSERT INTO public.notice VALUES (3046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689506004);
INSERT INTO public.notice VALUES (3047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689506603);
INSERT INTO public.notice VALUES (3049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689507804);
INSERT INTO public.notice VALUES (3050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689508404);
INSERT INTO public.notice VALUES (3051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689509003);
INSERT INTO public.notice VALUES (3055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689511403);
INSERT INTO public.notice VALUES (3056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689512004);
INSERT INTO public.notice VALUES (3059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689513803);
INSERT INTO public.notice VALUES (3062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689515603);
INSERT INTO public.notice VALUES (3066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689518003);
INSERT INTO public.notice VALUES (4653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690471439);
INSERT INTO public.notice VALUES (3041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689503003);
INSERT INTO public.notice VALUES (3042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689503604);
INSERT INTO public.notice VALUES (3043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689504204);
INSERT INTO public.notice VALUES (3045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689505404);
INSERT INTO public.notice VALUES (3048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689507203);
INSERT INTO public.notice VALUES (3052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689509602);
INSERT INTO public.notice VALUES (3053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689510204);
INSERT INTO public.notice VALUES (3054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689510803);
INSERT INTO public.notice VALUES (3057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689512604);
INSERT INTO public.notice VALUES (3058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689513204);
INSERT INTO public.notice VALUES (3060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689514404);
INSERT INTO public.notice VALUES (3061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689515004);
INSERT INTO public.notice VALUES (3063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689516203);
INSERT INTO public.notice VALUES (3064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689516804);
INSERT INTO public.notice VALUES (3065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689517403);
INSERT INTO public.notice VALUES (3067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689518604);
INSERT INTO public.notice VALUES (3071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689521004);
INSERT INTO public.notice VALUES (3077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689524603);
INSERT INTO public.notice VALUES (3079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689525804);
INSERT INTO public.notice VALUES (3080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689526403);
INSERT INTO public.notice VALUES (4654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690472038);
INSERT INTO public.notice VALUES (4656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690473239);
INSERT INTO public.notice VALUES (4657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690473839);
INSERT INTO public.notice VALUES (4658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690474438);
INSERT INTO public.notice VALUES (4659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690475037);
INSERT INTO public.notice VALUES (4661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690476238);
INSERT INTO public.notice VALUES (4663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690477439);
INSERT INTO public.notice VALUES (4665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690478638);
INSERT INTO public.notice VALUES (4666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690479238);
INSERT INTO public.notice VALUES (4667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690479839);
INSERT INTO public.notice VALUES (3068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689519204);
INSERT INTO public.notice VALUES (3069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689519803);
INSERT INTO public.notice VALUES (3070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689520403);
INSERT INTO public.notice VALUES (3072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689521604);
INSERT INTO public.notice VALUES (3073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689522203);
INSERT INTO public.notice VALUES (3074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689522804);
INSERT INTO public.notice VALUES (3075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689523404);
INSERT INTO public.notice VALUES (3076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689524003);
INSERT INTO public.notice VALUES (3078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689525204);
INSERT INTO public.notice VALUES (3081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689527002);
INSERT INTO public.notice VALUES (3082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689527604);
INSERT INTO public.notice VALUES (3083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689528204);
INSERT INTO public.notice VALUES (3084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689528803);
INSERT INTO public.notice VALUES (3085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689529404);
INSERT INTO public.notice VALUES (3086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689530004);
INSERT INTO public.notice VALUES (3087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689530603);
INSERT INTO public.notice VALUES (3088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689531202);
INSERT INTO public.notice VALUES (3090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689532403);
INSERT INTO public.notice VALUES (3093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689534204);
INSERT INTO public.notice VALUES (3094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689534803);
INSERT INTO public.notice VALUES (3095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689535403);
INSERT INTO public.notice VALUES (3100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689538404);
INSERT INTO public.notice VALUES (3104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689540804);
INSERT INTO public.notice VALUES (3105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689541403);
INSERT INTO public.notice VALUES (3106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689542002);
INSERT INTO public.notice VALUES (3107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689542604);
INSERT INTO public.notice VALUES (3112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689545603);
INSERT INTO public.notice VALUES (3114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689546804);
INSERT INTO public.notice VALUES (4664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690478039);
INSERT INTO public.notice VALUES (4671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690482239);
INSERT INTO public.notice VALUES (3089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689531804);
INSERT INTO public.notice VALUES (3091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689533004);
INSERT INTO public.notice VALUES (3092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689533604);
INSERT INTO public.notice VALUES (3096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689536004);
INSERT INTO public.notice VALUES (3097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689536603);
INSERT INTO public.notice VALUES (3098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689537203);
INSERT INTO public.notice VALUES (3099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689537805);
INSERT INTO public.notice VALUES (3101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689539003);
INSERT INTO public.notice VALUES (3102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689539603);
INSERT INTO public.notice VALUES (3103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689540204);
INSERT INTO public.notice VALUES (3108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689543203);
INSERT INTO public.notice VALUES (3109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689543803);
INSERT INTO public.notice VALUES (3110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689544404);
INSERT INTO public.notice VALUES (3111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689545004);
INSERT INTO public.notice VALUES (3113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689546203);
INSERT INTO public.notice VALUES (3115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689547404);
INSERT INTO public.notice VALUES (3116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689548003);
INSERT INTO public.notice VALUES (3117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689548605);
INSERT INTO public.notice VALUES (3118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689549204);
INSERT INTO public.notice VALUES (3119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689549803);
INSERT INTO public.notice VALUES (3120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689550403);
INSERT INTO public.notice VALUES (3121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689551004);
INSERT INTO public.notice VALUES (3122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689551604);
INSERT INTO public.notice VALUES (3123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689552203);
INSERT INTO public.notice VALUES (3124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689552803);
INSERT INTO public.notice VALUES (3125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689553404);
INSERT INTO public.notice VALUES (3126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689554003);
INSERT INTO public.notice VALUES (3127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689554603);
INSERT INTO public.notice VALUES (3128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689555202);
INSERT INTO public.notice VALUES (3129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689555804);
INSERT INTO public.notice VALUES (3130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689556403);
INSERT INTO public.notice VALUES (4668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690480438);
INSERT INTO public.notice VALUES (4669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690481038);
INSERT INTO public.notice VALUES (4670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690481637);
INSERT INTO public.notice VALUES (4677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690485837);
INSERT INTO public.notice VALUES (4679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690487038);
INSERT INTO public.notice VALUES (4680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690487638);
INSERT INTO public.notice VALUES (4681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690488239);
INSERT INTO public.notice VALUES (4683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690489438);
INSERT INTO public.notice VALUES (4685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690490639);
INSERT INTO public.notice VALUES (4686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690491238);
INSERT INTO public.notice VALUES (4689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690493039);
INSERT INTO public.notice VALUES (4690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690493638);
INSERT INTO public.notice VALUES (4691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690494238);
INSERT INTO public.notice VALUES (4693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690495439);
INSERT INTO public.notice VALUES (3131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689557002);
INSERT INTO public.notice VALUES (3132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689557604);
INSERT INTO public.notice VALUES (3133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689558204);
INSERT INTO public.notice VALUES (3134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689558803);
INSERT INTO public.notice VALUES (3135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689559402);
INSERT INTO public.notice VALUES (3136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689560004);
INSERT INTO public.notice VALUES (3137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689560603);
INSERT INTO public.notice VALUES (3138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689561203);
INSERT INTO public.notice VALUES (3139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689561804);
INSERT INTO public.notice VALUES (3140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689562404);
INSERT INTO public.notice VALUES (3141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689563003);
INSERT INTO public.notice VALUES (3142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689563603);
INSERT INTO public.notice VALUES (3143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689564204);
INSERT INTO public.notice VALUES (3144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689564803);
INSERT INTO public.notice VALUES (3145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689565403);
INSERT INTO public.notice VALUES (3146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689566004);
INSERT INTO public.notice VALUES (3147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689566604);
INSERT INTO public.notice VALUES (3148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689567203);
INSERT INTO public.notice VALUES (3149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689567803);
INSERT INTO public.notice VALUES (3150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689568404);
INSERT INTO public.notice VALUES (3151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689569004);
INSERT INTO public.notice VALUES (3152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689569603);
INSERT INTO public.notice VALUES (3153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689570205);
INSERT INTO public.notice VALUES (3154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689570804);
INSERT INTO public.notice VALUES (3155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689571403);
INSERT INTO public.notice VALUES (3156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689572003);
INSERT INTO public.notice VALUES (3157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689572605);
INSERT INTO public.notice VALUES (3158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689573204);
INSERT INTO public.notice VALUES (3159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689573803);
INSERT INTO public.notice VALUES (3160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689574403);
INSERT INTO public.notice VALUES (3161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689575004);
INSERT INTO public.notice VALUES (3162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689575604);
INSERT INTO public.notice VALUES (3164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689576804);
INSERT INTO public.notice VALUES (3166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689578003);
INSERT INTO public.notice VALUES (3167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689578604);
INSERT INTO public.notice VALUES (3168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689579204);
INSERT INTO public.notice VALUES (3169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689579803);
INSERT INTO public.notice VALUES (3172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689581604);
INSERT INTO public.notice VALUES (3173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689582203);
INSERT INTO public.notice VALUES (3175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689583404);
INSERT INTO public.notice VALUES (3176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689584003);
INSERT INTO public.notice VALUES (3177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689584603);
INSERT INTO public.notice VALUES (3178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689585205);
INSERT INTO public.notice VALUES (3182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689587604);
INSERT INTO public.notice VALUES (3183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689588204);
INSERT INTO public.notice VALUES (3163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689576203);
INSERT INTO public.notice VALUES (3165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689577404);
INSERT INTO public.notice VALUES (3170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689580403);
INSERT INTO public.notice VALUES (3171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689581004);
INSERT INTO public.notice VALUES (3174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689582803);
INSERT INTO public.notice VALUES (3179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689585804);
INSERT INTO public.notice VALUES (3180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689586403);
INSERT INTO public.notice VALUES (3181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689587003);
INSERT INTO public.notice VALUES (3185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689589403);
INSERT INTO public.notice VALUES (3186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689590004);
INSERT INTO public.notice VALUES (3192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689593603);
INSERT INTO public.notice VALUES (3196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689596004);
INSERT INTO public.notice VALUES (3199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689597803);
INSERT INTO public.notice VALUES (3204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689600804);
INSERT INTO public.notice VALUES (3207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689602604);
INSERT INTO public.notice VALUES (3184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689588804);
INSERT INTO public.notice VALUES (3187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689590603);
INSERT INTO public.notice VALUES (3188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689591203);
INSERT INTO public.notice VALUES (3189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689591804);
INSERT INTO public.notice VALUES (3190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689592404);
INSERT INTO public.notice VALUES (3191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689593003);
INSERT INTO public.notice VALUES (3193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689594204);
INSERT INTO public.notice VALUES (3194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689594804);
INSERT INTO public.notice VALUES (3195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689595403);
INSERT INTO public.notice VALUES (3197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689596604);
INSERT INTO public.notice VALUES (3198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689597203);
INSERT INTO public.notice VALUES (3200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689598404);
INSERT INTO public.notice VALUES (3201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689599004);
INSERT INTO public.notice VALUES (3202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689599604);
INSERT INTO public.notice VALUES (3203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689600202);
INSERT INTO public.notice VALUES (3205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689601403);
INSERT INTO public.notice VALUES (3206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689602003);
INSERT INTO public.notice VALUES (3208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689603204);
INSERT INTO public.notice VALUES (3209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689603804);
INSERT INTO public.notice VALUES (4672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690482838);
INSERT INTO public.notice VALUES (4673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690483438);
INSERT INTO public.notice VALUES (4674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690484039);
INSERT INTO public.notice VALUES (4675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690484639);
INSERT INTO public.notice VALUES (4940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690643639);
INSERT INTO public.notice VALUES (4943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690645437);
INSERT INTO public.notice VALUES (4945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690646638);
INSERT INTO public.notice VALUES (4946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690647238);
INSERT INTO public.notice VALUES (4948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690648438);
INSERT INTO public.notice VALUES (4949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690649038);
INSERT INTO public.notice VALUES (4950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690649638);
INSERT INTO public.notice VALUES (3210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689604403);
INSERT INTO public.notice VALUES (3211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689605004);
INSERT INTO public.notice VALUES (3212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689605604);
INSERT INTO public.notice VALUES (3213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689606203);
INSERT INTO public.notice VALUES (3214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689606802);
INSERT INTO public.notice VALUES (3215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689607404);
INSERT INTO public.notice VALUES (3216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689608004);
INSERT INTO public.notice VALUES (3217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689608603);
INSERT INTO public.notice VALUES (3218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689609204);
INSERT INTO public.notice VALUES (3219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689609804);
INSERT INTO public.notice VALUES (3220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689610403);
INSERT INTO public.notice VALUES (3221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689611002);
INSERT INTO public.notice VALUES (3222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689611604);
INSERT INTO public.notice VALUES (3223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689612204);
INSERT INTO public.notice VALUES (3224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689612803);
INSERT INTO public.notice VALUES (3225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689613402);
INSERT INTO public.notice VALUES (3226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689614004);
INSERT INTO public.notice VALUES (3228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689615203);
INSERT INTO public.notice VALUES (3229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689615804);
INSERT INTO public.notice VALUES (3230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689616404);
INSERT INTO public.notice VALUES (3231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689617003);
INSERT INTO public.notice VALUES (3237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689620604);
INSERT INTO public.notice VALUES (4676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690485238);
INSERT INTO public.notice VALUES (4678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690486439);
INSERT INTO public.notice VALUES (4682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690488839);
INSERT INTO public.notice VALUES (4684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690490038);
INSERT INTO public.notice VALUES (4944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690646039);
INSERT INTO public.notice VALUES (4947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690647839);
INSERT INTO public.notice VALUES (4952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690650838);
INSERT INTO public.notice VALUES (4953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690651438);
INSERT INTO public.notice VALUES (3227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689614603);
INSERT INTO public.notice VALUES (3232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689617602);
INSERT INTO public.notice VALUES (3233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689618204);
INSERT INTO public.notice VALUES (3234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689618803);
INSERT INTO public.notice VALUES (3235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689619403);
INSERT INTO public.notice VALUES (3236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689620004);
INSERT INTO public.notice VALUES (3238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689621203);
INSERT INTO public.notice VALUES (3239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689621804);
INSERT INTO public.notice VALUES (3240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689622404);
INSERT INTO public.notice VALUES (3241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689623003);
INSERT INTO public.notice VALUES (3242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689623603);
INSERT INTO public.notice VALUES (3243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689624204);
INSERT INTO public.notice VALUES (3244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689624804);
INSERT INTO public.notice VALUES (3245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689625403);
INSERT INTO public.notice VALUES (3246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689626003);
INSERT INTO public.notice VALUES (3247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689626604);
INSERT INTO public.notice VALUES (3249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689627803);
INSERT INTO public.notice VALUES (3250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689628403);
INSERT INTO public.notice VALUES (3251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689629004);
INSERT INTO public.notice VALUES (3252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689629603);
INSERT INTO public.notice VALUES (4687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690491838);
INSERT INTO public.notice VALUES (4688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690492438);
INSERT INTO public.notice VALUES (4951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690650239);
INSERT INTO public.notice VALUES (4954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690652039);
INSERT INTO public.notice VALUES (4959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690655038);
INSERT INTO public.notice VALUES (4960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690655638);
INSERT INTO public.notice VALUES (4962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690656839);
INSERT INTO public.notice VALUES (4963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690657438);
INSERT INTO public.notice VALUES (4965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690658639);
INSERT INTO public.notice VALUES (4966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690659239);
INSERT INTO public.notice VALUES (3248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689627203);
INSERT INTO public.notice VALUES (3253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689630203);
INSERT INTO public.notice VALUES (3254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689630804);
INSERT INTO public.notice VALUES (3255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689631404);
INSERT INTO public.notice VALUES (3256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689632003);
INSERT INTO public.notice VALUES (3257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689632602);
INSERT INTO public.notice VALUES (3258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689633204);
INSERT INTO public.notice VALUES (3259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689633803);
INSERT INTO public.notice VALUES (3260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689634403);
INSERT INTO public.notice VALUES (3261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689635004);
INSERT INTO public.notice VALUES (3262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689635604);
INSERT INTO public.notice VALUES (3263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689636203);
INSERT INTO public.notice VALUES (3264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689636803);
INSERT INTO public.notice VALUES (3265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689637404);
INSERT INTO public.notice VALUES (3266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689638003);
INSERT INTO public.notice VALUES (3267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689638603);
INSERT INTO public.notice VALUES (3268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689639204);
INSERT INTO public.notice VALUES (3271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689641003);
INSERT INTO public.notice VALUES (3273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689642204);
INSERT INTO public.notice VALUES (4692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690494839);
INSERT INTO public.notice VALUES (4694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690496038);
INSERT INTO public.notice VALUES (4955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690652639);
INSERT INTO public.notice VALUES (4956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690653238);
INSERT INTO public.notice VALUES (4957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690653837);
INSERT INTO public.notice VALUES (4958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690654439);
INSERT INTO public.notice VALUES (4961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690656237);
INSERT INTO public.notice VALUES (4964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690658038);
INSERT INTO public.notice VALUES (4968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690660438);
INSERT INTO public.notice VALUES (5081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690728238);
INSERT INTO public.notice VALUES (5082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690728838);
INSERT INTO public.notice VALUES (3269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689639804);
INSERT INTO public.notice VALUES (3270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689640403);
INSERT INTO public.notice VALUES (3272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689641604);
INSERT INTO public.notice VALUES (3274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689642803);
INSERT INTO public.notice VALUES (3275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689643404);
INSERT INTO public.notice VALUES (3276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689644004);
INSERT INTO public.notice VALUES (3277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689644603);
INSERT INTO public.notice VALUES (3278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689645203);
INSERT INTO public.notice VALUES (3279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689645804);
INSERT INTO public.notice VALUES (3280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689646403);
INSERT INTO public.notice VALUES (3281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689647003);
INSERT INTO public.notice VALUES (3282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689647603);
INSERT INTO public.notice VALUES (3283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689648204);
INSERT INTO public.notice VALUES (3284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689648804);
INSERT INTO public.notice VALUES (3285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689649403);
INSERT INTO public.notice VALUES (3286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689650004);
INSERT INTO public.notice VALUES (3287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689650603);
INSERT INTO public.notice VALUES (3288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689651203);
INSERT INTO public.notice VALUES (3289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689651806);
INSERT INTO public.notice VALUES (3290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689652404);
INSERT INTO public.notice VALUES (3293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689654204);
INSERT INTO public.notice VALUES (3295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689655403);
INSERT INTO public.notice VALUES (3296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689656003);
INSERT INTO public.notice VALUES (3297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689656604);
INSERT INTO public.notice VALUES (3298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689657204);
INSERT INTO public.notice VALUES (3299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689657803);
INSERT INTO public.notice VALUES (3302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689659604);
INSERT INTO public.notice VALUES (3306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689662003);
INSERT INTO public.notice VALUES (3308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689663204);
INSERT INTO public.notice VALUES (3309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689663803);
INSERT INTO public.notice VALUES (3291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689653003);
INSERT INTO public.notice VALUES (3292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689653603);
INSERT INTO public.notice VALUES (3294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689654804);
INSERT INTO public.notice VALUES (3300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689658403);
INSERT INTO public.notice VALUES (3301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689659004);
INSERT INTO public.notice VALUES (3303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689660203);
INSERT INTO public.notice VALUES (3304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689660804);
INSERT INTO public.notice VALUES (3305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689661404);
INSERT INTO public.notice VALUES (3307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689662603);
INSERT INTO public.notice VALUES (3311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689665002);
INSERT INTO public.notice VALUES (3312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689665604);
INSERT INTO public.notice VALUES (3313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689666203);
INSERT INTO public.notice VALUES (3314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689666803);
INSERT INTO public.notice VALUES (4695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690496638);
INSERT INTO public.notice VALUES (4696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690497239);
INSERT INTO public.notice VALUES (3310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689664403);
INSERT INTO public.notice VALUES (3315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689667404);
INSERT INTO public.notice VALUES (3316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689668004);
INSERT INTO public.notice VALUES (3317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689668603);
INSERT INTO public.notice VALUES (3318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689669205);
INSERT INTO public.notice VALUES (3319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689669804);
INSERT INTO public.notice VALUES (3320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689670403);
INSERT INTO public.notice VALUES (3321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689671003);
INSERT INTO public.notice VALUES (3322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689671603);
INSERT INTO public.notice VALUES (3323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689672204);
INSERT INTO public.notice VALUES (3324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689673560);
INSERT INTO public.notice VALUES (3325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689674159);
INSERT INTO public.notice VALUES (3326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689674759);
INSERT INTO public.notice VALUES (3327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689675359);
INSERT INTO public.notice VALUES (3328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689675960);
INSERT INTO public.notice VALUES (3329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689676559);
INSERT INTO public.notice VALUES (3330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689677159);
INSERT INTO public.notice VALUES (3331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689677760);
INSERT INTO public.notice VALUES (3332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689678360);
INSERT INTO public.notice VALUES (3334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689679559);
INSERT INTO public.notice VALUES (3335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689680160);
INSERT INTO public.notice VALUES (3337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689681359);
INSERT INTO public.notice VALUES (3339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689682561);
INSERT INTO public.notice VALUES (3343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689684959);
INSERT INTO public.notice VALUES (3344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689685559);
INSERT INTO public.notice VALUES (3345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689686160);
INSERT INTO public.notice VALUES (3347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689687359);
INSERT INTO public.notice VALUES (3348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689687959);
INSERT INTO public.notice VALUES (4697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690497838);
INSERT INTO public.notice VALUES (4698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690498438);
INSERT INTO public.notice VALUES (3333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689678959);
INSERT INTO public.notice VALUES (3336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689680760);
INSERT INTO public.notice VALUES (3338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689681960);
INSERT INTO public.notice VALUES (3340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689683159);
INSERT INTO public.notice VALUES (3341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689683759);
INSERT INTO public.notice VALUES (3342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689684361);
INSERT INTO public.notice VALUES (3346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689686761);
INSERT INTO public.notice VALUES (3349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689688560);
INSERT INTO public.notice VALUES (3350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689689161);
INSERT INTO public.notice VALUES (3351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689689759);
INSERT INTO public.notice VALUES (3352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689690358);
INSERT INTO public.notice VALUES (3353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689690960);
INSERT INTO public.notice VALUES (3354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689691559);
INSERT INTO public.notice VALUES (3355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689692160);
INSERT INTO public.notice VALUES (3356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689692760);
INSERT INTO public.notice VALUES (3357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689693360);
INSERT INTO public.notice VALUES (3358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689693959);
INSERT INTO public.notice VALUES (3359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689694561);
INSERT INTO public.notice VALUES (3360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689695160);
INSERT INTO public.notice VALUES (3361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689695760);
INSERT INTO public.notice VALUES (3362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689696359);
INSERT INTO public.notice VALUES (3363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689696961);
INSERT INTO public.notice VALUES (3364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689697560);
INSERT INTO public.notice VALUES (3365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689698159);
INSERT INTO public.notice VALUES (3366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689698758);
INSERT INTO public.notice VALUES (3367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689699360);
INSERT INTO public.notice VALUES (3368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689699959);
INSERT INTO public.notice VALUES (3369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689700559);
INSERT INTO public.notice VALUES (3370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689701160);
INSERT INTO public.notice VALUES (3371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689701760);
INSERT INTO public.notice VALUES (3372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689702359);
INSERT INTO public.notice VALUES (3377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689705358);
INSERT INTO public.notice VALUES (3378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689705960);
INSERT INTO public.notice VALUES (3379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689706559);
INSERT INTO public.notice VALUES (3383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689708959);
INSERT INTO public.notice VALUES (3384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689709558);
INSERT INTO public.notice VALUES (3385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689710160);
INSERT INTO public.notice VALUES (3386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689710759);
INSERT INTO public.notice VALUES (3387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689711359);
INSERT INTO public.notice VALUES (3390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689713159);
INSERT INTO public.notice VALUES (3393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689714960);
INSERT INTO public.notice VALUES (3395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689716160);
INSERT INTO public.notice VALUES (3397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689717359);
INSERT INTO public.notice VALUES (3399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689718560);
INSERT INTO public.notice VALUES (4699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690499039);
INSERT INTO public.notice VALUES (3373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689702959);
INSERT INTO public.notice VALUES (3374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689703560);
INSERT INTO public.notice VALUES (3375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689704160);
INSERT INTO public.notice VALUES (3376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689704759);
INSERT INTO public.notice VALUES (3380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689707159);
INSERT INTO public.notice VALUES (3381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689707760);
INSERT INTO public.notice VALUES (3382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689708360);
INSERT INTO public.notice VALUES (3388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689711960);
INSERT INTO public.notice VALUES (3389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689712560);
INSERT INTO public.notice VALUES (3391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689713759);
INSERT INTO public.notice VALUES (3392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689714361);
INSERT INTO public.notice VALUES (3394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689715559);
INSERT INTO public.notice VALUES (3396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689716760);
INSERT INTO public.notice VALUES (3398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689717959);
INSERT INTO public.notice VALUES (3400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689719159);
INSERT INTO public.notice VALUES (3401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689719759);
INSERT INTO public.notice VALUES (3403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689720960);
INSERT INTO public.notice VALUES (4700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690499639);
INSERT INTO public.notice VALUES (4701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690500238);
INSERT INTO public.notice VALUES (4967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690659838);
INSERT INTO public.notice VALUES (4969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690661039);
INSERT INTO public.notice VALUES (4970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690661638);
INSERT INTO public.notice VALUES (4971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690662238);
INSERT INTO public.notice VALUES (4974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690664038);
INSERT INTO public.notice VALUES (4975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690664639);
INSERT INTO public.notice VALUES (4976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690665239);
INSERT INTO public.notice VALUES (4977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690665838);
INSERT INTO public.notice VALUES (4978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690666438);
INSERT INTO public.notice VALUES (4981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690668238);
INSERT INTO public.notice VALUES (5085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690730638);
INSERT INTO public.notice VALUES (3402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689720358);
INSERT INTO public.notice VALUES (3404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689721560);
INSERT INTO public.notice VALUES (3405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689722159);
INSERT INTO public.notice VALUES (3406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689722760);
INSERT INTO public.notice VALUES (3407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689723359);
INSERT INTO public.notice VALUES (3408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689723959);
INSERT INTO public.notice VALUES (3409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689724560);
INSERT INTO public.notice VALUES (3410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689725160);
INSERT INTO public.notice VALUES (3411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689725759);
INSERT INTO public.notice VALUES (3412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689726359);
INSERT INTO public.notice VALUES (3413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689726960);
INSERT INTO public.notice VALUES (3414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689727563);
INSERT INTO public.notice VALUES (3415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689728160);
INSERT INTO public.notice VALUES (3416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689728759);
INSERT INTO public.notice VALUES (3417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689729360);
INSERT INTO public.notice VALUES (3418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689729960);
INSERT INTO public.notice VALUES (4702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690500838);
INSERT INTO public.notice VALUES (4703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690501439);
INSERT INTO public.notice VALUES (4706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690503239);
INSERT INTO public.notice VALUES (4708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690504438);
INSERT INTO public.notice VALUES (4972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690662839);
INSERT INTO public.notice VALUES (4973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690663439);
INSERT INTO public.notice VALUES (5086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690731238);
INSERT INTO public.notice VALUES (5109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690745039);
INSERT INTO public.notice VALUES (5111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690746238);
INSERT INTO public.notice VALUES (5112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690746839);
INSERT INTO public.notice VALUES (5113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690747439);
INSERT INTO public.notice VALUES (5114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690748038);
INSERT INTO public.notice VALUES (5115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690748638);
INSERT INTO public.notice VALUES (5117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690749838);
INSERT INTO public.notice VALUES (3419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689730559);
INSERT INTO public.notice VALUES (3420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689731158);
INSERT INTO public.notice VALUES (3421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689731760);
INSERT INTO public.notice VALUES (3422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689732359);
INSERT INTO public.notice VALUES (3423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689732959);
INSERT INTO public.notice VALUES (3424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689733560);
INSERT INTO public.notice VALUES (3425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689734160);
INSERT INTO public.notice VALUES (3426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689734759);
INSERT INTO public.notice VALUES (3427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689735359);
INSERT INTO public.notice VALUES (3428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689735961);
INSERT INTO public.notice VALUES (3429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689736560);
INSERT INTO public.notice VALUES (3430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689737159);
INSERT INTO public.notice VALUES (3431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689737761);
INSERT INTO public.notice VALUES (3432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689738361);
INSERT INTO public.notice VALUES (3433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689738959);
INSERT INTO public.notice VALUES (3434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689739558);
INSERT INTO public.notice VALUES (3438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689741961);
INSERT INTO public.notice VALUES (3439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689742560);
INSERT INTO public.notice VALUES (4704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690502038);
INSERT INTO public.notice VALUES (4705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690502638);
INSERT INTO public.notice VALUES (4707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690503839);
INSERT INTO public.notice VALUES (4709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690505038);
INSERT INTO public.notice VALUES (4710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690505639);
INSERT INTO public.notice VALUES (4712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690506838);
INSERT INTO public.notice VALUES (4713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690507437);
INSERT INTO public.notice VALUES (4714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690508039);
INSERT INTO public.notice VALUES (4715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690508638);
INSERT INTO public.notice VALUES (4716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690509238);
INSERT INTO public.notice VALUES (4718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690510440);
INSERT INTO public.notice VALUES (4719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690511038);
INSERT INTO public.notice VALUES (3435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689740160);
INSERT INTO public.notice VALUES (3436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689740760);
INSERT INTO public.notice VALUES (3437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689741359);
INSERT INTO public.notice VALUES (3440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689743159);
INSERT INTO public.notice VALUES (3441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689743759);
INSERT INTO public.notice VALUES (3442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689744361);
INSERT INTO public.notice VALUES (3443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689744960);
INSERT INTO public.notice VALUES (3444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689745559);
INSERT INTO public.notice VALUES (3445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689746158);
INSERT INTO public.notice VALUES (3446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689746760);
INSERT INTO public.notice VALUES (3447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689747359);
INSERT INTO public.notice VALUES (3448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689747959);
INSERT INTO public.notice VALUES (3449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689748560);
INSERT INTO public.notice VALUES (3450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689749160);
INSERT INTO public.notice VALUES (3451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689749759);
INSERT INTO public.notice VALUES (3452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689750359);
INSERT INTO public.notice VALUES (3453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689750960);
INSERT INTO public.notice VALUES (3454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689751559);
INSERT INTO public.notice VALUES (3455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689752159);
INSERT INTO public.notice VALUES (3456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689752760);
INSERT INTO public.notice VALUES (3459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689754560);
INSERT INTO public.notice VALUES (4711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690506239);
INSERT INTO public.notice VALUES (4717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690509839);
INSERT INTO public.notice VALUES (4722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690512839);
INSERT INTO public.notice VALUES (4723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690513439);
INSERT INTO public.notice VALUES (4724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690514038);
INSERT INTO public.notice VALUES (4725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690514639);
INSERT INTO public.notice VALUES (4727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690515838);
INSERT INTO public.notice VALUES (4732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690518839);
INSERT INTO public.notice VALUES (4733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690519438);
INSERT INTO public.notice VALUES (3457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689753360);
INSERT INTO public.notice VALUES (3458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689753960);
INSERT INTO public.notice VALUES (3460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689755160);
INSERT INTO public.notice VALUES (3461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689755759);
INSERT INTO public.notice VALUES (3462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689756360);
INSERT INTO public.notice VALUES (3463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689756959);
INSERT INTO public.notice VALUES (3464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689757560);
INSERT INTO public.notice VALUES (3465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689758159);
INSERT INTO public.notice VALUES (3466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689758759);
INSERT INTO public.notice VALUES (3467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689759360);
INSERT INTO public.notice VALUES (3468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689759960);
INSERT INTO public.notice VALUES (3469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689760559);
INSERT INTO public.notice VALUES (3470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689761158);
INSERT INTO public.notice VALUES (3471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689761760);
INSERT INTO public.notice VALUES (3472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689762359);
INSERT INTO public.notice VALUES (3473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689762959);
INSERT INTO public.notice VALUES (3475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689764160);
INSERT INTO public.notice VALUES (3477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689765359);
INSERT INTO public.notice VALUES (3479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689766560);
INSERT INTO public.notice VALUES (3480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689767159);
INSERT INTO public.notice VALUES (3481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689767758);
INSERT INTO public.notice VALUES (3483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689768959);
INSERT INTO public.notice VALUES (3485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689770160);
INSERT INTO public.notice VALUES (3486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689770760);
INSERT INTO public.notice VALUES (3490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689773160);
INSERT INTO public.notice VALUES (3491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689773759);
INSERT INTO public.notice VALUES (3493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689774960);
INSERT INTO public.notice VALUES (3494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689775559);
INSERT INTO public.notice VALUES (3495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689776159);
INSERT INTO public.notice VALUES (3496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689776761);
INSERT INTO public.notice VALUES (3474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689763560);
INSERT INTO public.notice VALUES (3476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689764759);
INSERT INTO public.notice VALUES (3478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689765960);
INSERT INTO public.notice VALUES (3482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689768360);
INSERT INTO public.notice VALUES (3484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689769559);
INSERT INTO public.notice VALUES (3487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689771359);
INSERT INTO public.notice VALUES (3488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689771959);
INSERT INTO public.notice VALUES (3489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689772560);
INSERT INTO public.notice VALUES (3492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689774358);
INSERT INTO public.notice VALUES (3497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689777359);
INSERT INTO public.notice VALUES (3498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689777959);
INSERT INTO public.notice VALUES (3499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689778559);
INSERT INTO public.notice VALUES (3501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689779759);
INSERT INTO public.notice VALUES (3502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689780359);
INSERT INTO public.notice VALUES (3503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689780963);
INSERT INTO public.notice VALUES (3500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689779160);
INSERT INTO public.notice VALUES (3505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689782159);
INSERT INTO public.notice VALUES (3507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689783360);
INSERT INTO public.notice VALUES (3510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689785160);
INSERT INTO public.notice VALUES (4720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690511638);
INSERT INTO public.notice VALUES (4721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690512239);
INSERT INTO public.notice VALUES (4979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690667039);
INSERT INTO public.notice VALUES (4980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690667639);
INSERT INTO public.notice VALUES (4984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690670038);
INSERT INTO public.notice VALUES (4985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690670638);
INSERT INTO public.notice VALUES (4986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690671237);
INSERT INTO public.notice VALUES (4989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690673038);
INSERT INTO public.notice VALUES (4992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690674838);
INSERT INTO public.notice VALUES (4993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690675438);
INSERT INTO public.notice VALUES (4999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690679038);
INSERT INTO public.notice VALUES (3504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689781560);
INSERT INTO public.notice VALUES (3506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689782760);
INSERT INTO public.notice VALUES (3508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689783959);
INSERT INTO public.notice VALUES (3509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689784559);
INSERT INTO public.notice VALUES (3511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689785760);
INSERT INTO public.notice VALUES (3512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689786359);
INSERT INTO public.notice VALUES (3513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689786959);
INSERT INTO public.notice VALUES (3514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689787560);
INSERT INTO public.notice VALUES (3515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689788160);
INSERT INTO public.notice VALUES (3516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689788759);
INSERT INTO public.notice VALUES (3517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689789359);
INSERT INTO public.notice VALUES (3518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689789961);
INSERT INTO public.notice VALUES (3519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689790559);
INSERT INTO public.notice VALUES (3520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689791160);
INSERT INTO public.notice VALUES (3521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689791760);
INSERT INTO public.notice VALUES (3522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689792361);
INSERT INTO public.notice VALUES (3526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689794760);
INSERT INTO public.notice VALUES (3530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689797159);
INSERT INTO public.notice VALUES (4726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690515238);
INSERT INTO public.notice VALUES (4728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690516439);
INSERT INTO public.notice VALUES (4729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690517038);
INSERT INTO public.notice VALUES (4730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690517638);
INSERT INTO public.notice VALUES (4731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690518237);
INSERT INTO public.notice VALUES (4734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690520038);
INSERT INTO public.notice VALUES (4735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690520640);
INSERT INTO public.notice VALUES (4736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690521239);
INSERT INTO public.notice VALUES (4737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690521838);
INSERT INTO public.notice VALUES (4738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690522438);
INSERT INTO public.notice VALUES (4982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690668838);
INSERT INTO public.notice VALUES (4983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690669439);
INSERT INTO public.notice VALUES (3523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689792959);
INSERT INTO public.notice VALUES (3524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689793561);
INSERT INTO public.notice VALUES (3525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689794160);
INSERT INTO public.notice VALUES (3527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689795359);
INSERT INTO public.notice VALUES (3528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689795961);
INSERT INTO public.notice VALUES (3529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689796560);
INSERT INTO public.notice VALUES (3531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689797759);
INSERT INTO public.notice VALUES (3532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689798360);
INSERT INTO public.notice VALUES (3533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689798960);
INSERT INTO public.notice VALUES (3534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689799559);
INSERT INTO public.notice VALUES (3535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689800158);
INSERT INTO public.notice VALUES (3536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689800760);
INSERT INTO public.notice VALUES (3537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689801360);
INSERT INTO public.notice VALUES (3538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689801959);
INSERT INTO public.notice VALUES (3539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689802560);
INSERT INTO public.notice VALUES (3540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689803160);
INSERT INTO public.notice VALUES (3541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689803759);
INSERT INTO public.notice VALUES (3542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689804358);
INSERT INTO public.notice VALUES (3544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689805559);
INSERT INTO public.notice VALUES (3545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689806159);
INSERT INTO public.notice VALUES (3547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689807360);
INSERT INTO public.notice VALUES (3548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689807959);
INSERT INTO public.notice VALUES (3550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689809160);
INSERT INTO public.notice VALUES (3554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689811560);
INSERT INTO public.notice VALUES (3555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689812159);
INSERT INTO public.notice VALUES (3557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689813360);
INSERT INTO public.notice VALUES (3558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689813961);
INSERT INTO public.notice VALUES (3563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689816959);
INSERT INTO public.notice VALUES (3564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689817560);
INSERT INTO public.notice VALUES (3566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689818759);
INSERT INTO public.notice VALUES (3543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689804960);
INSERT INTO public.notice VALUES (3546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689806760);
INSERT INTO public.notice VALUES (3549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689808558);
INSERT INTO public.notice VALUES (3551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689809759);
INSERT INTO public.notice VALUES (3552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689810359);
INSERT INTO public.notice VALUES (3553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689810960);
INSERT INTO public.notice VALUES (3556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689812759);
INSERT INTO public.notice VALUES (3559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689814559);
INSERT INTO public.notice VALUES (3560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689815159);
INSERT INTO public.notice VALUES (3561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689815760);
INSERT INTO public.notice VALUES (3562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689816359);
INSERT INTO public.notice VALUES (3565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689818160);
INSERT INTO public.notice VALUES (3570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689821159);
INSERT INTO public.notice VALUES (3572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689822364);
INSERT INTO public.notice VALUES (4739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690523039);
INSERT INTO public.notice VALUES (3567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689819360);
INSERT INTO public.notice VALUES (3568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689819960);
INSERT INTO public.notice VALUES (3569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689820559);
INSERT INTO public.notice VALUES (3571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689821761);
INSERT INTO public.notice VALUES (3573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689822960);
INSERT INTO public.notice VALUES (3574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689823560);
INSERT INTO public.notice VALUES (3575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689824160);
INSERT INTO public.notice VALUES (3576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689824760);
INSERT INTO public.notice VALUES (3577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689825359);
INSERT INTO public.notice VALUES (3578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689825959);
INSERT INTO public.notice VALUES (3579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689826559);
INSERT INTO public.notice VALUES (3580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689827160);
INSERT INTO public.notice VALUES (3581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689827760);
INSERT INTO public.notice VALUES (3582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689828359);
INSERT INTO public.notice VALUES (3583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689828961);
INSERT INTO public.notice VALUES (3584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689829560);
INSERT INTO public.notice VALUES (3587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689831360);
INSERT INTO public.notice VALUES (4740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690523639);
INSERT INTO public.notice VALUES (4743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690525439);
INSERT INTO public.notice VALUES (4744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690526038);
INSERT INTO public.notice VALUES (4987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690671839);
INSERT INTO public.notice VALUES (4988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690672439);
INSERT INTO public.notice VALUES (4990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690673639);
INSERT INTO public.notice VALUES (4991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690674239);
INSERT INTO public.notice VALUES (4994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690676039);
INSERT INTO public.notice VALUES (4995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690676638);
INSERT INTO public.notice VALUES (4996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690677238);
INSERT INTO public.notice VALUES (4997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690677840);
INSERT INTO public.notice VALUES (4998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690678439);
INSERT INTO public.notice VALUES (5087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690731839);
INSERT INTO public.notice VALUES (3585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689830159);
INSERT INTO public.notice VALUES (3586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689830759);
INSERT INTO public.notice VALUES (3588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689831959);
INSERT INTO public.notice VALUES (3589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689832559);
INSERT INTO public.notice VALUES (3590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689833160);
INSERT INTO public.notice VALUES (3591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689833760);
INSERT INTO public.notice VALUES (3592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689834359);
INSERT INTO public.notice VALUES (3593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689834959);
INSERT INTO public.notice VALUES (3594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689835560);
INSERT INTO public.notice VALUES (3595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689836160);
INSERT INTO public.notice VALUES (3596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689836759);
INSERT INTO public.notice VALUES (3597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689837358);
INSERT INTO public.notice VALUES (3598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689837960);
INSERT INTO public.notice VALUES (3599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689838559);
INSERT INTO public.notice VALUES (3600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689839160);
INSERT INTO public.notice VALUES (3601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689839760);
INSERT INTO public.notice VALUES (3604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689841558);
INSERT INTO public.notice VALUES (3606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689842759);
INSERT INTO public.notice VALUES (3609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689844560);
INSERT INTO public.notice VALUES (3610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689845159);
INSERT INTO public.notice VALUES (4741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690524238);
INSERT INTO public.notice VALUES (5000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690679637);
INSERT INTO public.notice VALUES (5001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690680239);
INSERT INTO public.notice VALUES (5006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690683238);
INSERT INTO public.notice VALUES (5009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690685039);
INSERT INTO public.notice VALUES (5010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690685638);
INSERT INTO public.notice VALUES (5013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690687438);
INSERT INTO public.notice VALUES (5015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690688639);
INSERT INTO public.notice VALUES (5017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690689838);
INSERT INTO public.notice VALUES (5019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690691039);
INSERT INTO public.notice VALUES (3602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689840360);
INSERT INTO public.notice VALUES (3603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689840959);
INSERT INTO public.notice VALUES (3605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689842160);
INSERT INTO public.notice VALUES (3607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689843359);
INSERT INTO public.notice VALUES (3608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689843960);
INSERT INTO public.notice VALUES (3611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689845759);
INSERT INTO public.notice VALUES (3612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689846360);
INSERT INTO public.notice VALUES (3613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689846959);
INSERT INTO public.notice VALUES (3614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689847559);
INSERT INTO public.notice VALUES (3615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689848160);
INSERT INTO public.notice VALUES (3616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689848760);
INSERT INTO public.notice VALUES (3617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689849359);
INSERT INTO public.notice VALUES (3618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689849961);
INSERT INTO public.notice VALUES (3619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689850560);
INSERT INTO public.notice VALUES (3620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689851159);
INSERT INTO public.notice VALUES (3621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689851759);
INSERT INTO public.notice VALUES (3622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689852360);
INSERT INTO public.notice VALUES (3623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689852960);
INSERT INTO public.notice VALUES (3624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689853559);
INSERT INTO public.notice VALUES (3625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689854159);
INSERT INTO public.notice VALUES (3627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689855359);
INSERT INTO public.notice VALUES (4742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690524840);
INSERT INTO public.notice VALUES (4747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690527838);
INSERT INTO public.notice VALUES (4752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690530838);
INSERT INTO public.notice VALUES (4753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690531439);
INSERT INTO public.notice VALUES (4754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690532039);
INSERT INTO public.notice VALUES (5002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690680838);
INSERT INTO public.notice VALUES (5088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690732439);
INSERT INTO public.notice VALUES (5089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690733038);
INSERT INTO public.notice VALUES (5092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690734838);
INSERT INTO public.notice VALUES (3626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689854760);
INSERT INTO public.notice VALUES (3628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689855959);
INSERT INTO public.notice VALUES (3629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689856561);
INSERT INTO public.notice VALUES (3630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689857160);
INSERT INTO public.notice VALUES (3631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689857759);
INSERT INTO public.notice VALUES (3632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689858359);
INSERT INTO public.notice VALUES (3633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689858960);
INSERT INTO public.notice VALUES (3634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689859559);
INSERT INTO public.notice VALUES (3635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689860159);
INSERT INTO public.notice VALUES (3636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689860758);
INSERT INTO public.notice VALUES (3637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689861360);
INSERT INTO public.notice VALUES (3638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689861959);
INSERT INTO public.notice VALUES (3639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689862559);
INSERT INTO public.notice VALUES (3640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689863160);
INSERT INTO public.notice VALUES (3641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689863761);
INSERT INTO public.notice VALUES (3642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689864360);
INSERT INTO public.notice VALUES (3643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689864960);
INSERT INTO public.notice VALUES (3644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689865560);
INSERT INTO public.notice VALUES (3645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689866160);
INSERT INTO public.notice VALUES (3646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689866759);
INSERT INTO public.notice VALUES (3647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689867360);
INSERT INTO public.notice VALUES (3648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689867960);
INSERT INTO public.notice VALUES (3649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689868559);
INSERT INTO public.notice VALUES (3650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689869162);
INSERT INTO public.notice VALUES (3651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689869760);
INSERT INTO public.notice VALUES (3652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689870360);
INSERT INTO public.notice VALUES (3653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689870959);
INSERT INTO public.notice VALUES (3654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689871562);
INSERT INTO public.notice VALUES (3655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689872160);
INSERT INTO public.notice VALUES (3656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689872760);
INSERT INTO public.notice VALUES (3657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689873359);
INSERT INTO public.notice VALUES (3658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689873958);
INSERT INTO public.notice VALUES (3660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689875160);
INSERT INTO public.notice VALUES (3661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689875759);
INSERT INTO public.notice VALUES (3665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689878160);
INSERT INTO public.notice VALUES (3666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689878761);
INSERT INTO public.notice VALUES (3667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689879359);
INSERT INTO public.notice VALUES (3669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689880561);
INSERT INTO public.notice VALUES (3674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689883560);
INSERT INTO public.notice VALUES (3675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689884159);
INSERT INTO public.notice VALUES (3676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689884759);
INSERT INTO public.notice VALUES (3680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689887160);
INSERT INTO public.notice VALUES (3682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689888359);
INSERT INTO public.notice VALUES (3686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689890759);
INSERT INTO public.notice VALUES (3687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689891362);
INSERT INTO public.notice VALUES (3659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689874560);
INSERT INTO public.notice VALUES (3662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689876360);
INSERT INTO public.notice VALUES (3663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689876960);
INSERT INTO public.notice VALUES (3664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689877559);
INSERT INTO public.notice VALUES (3668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689879959);
INSERT INTO public.notice VALUES (3670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689881160);
INSERT INTO public.notice VALUES (3671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689881759);
INSERT INTO public.notice VALUES (3672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689882359);
INSERT INTO public.notice VALUES (3673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689882960);
INSERT INTO public.notice VALUES (3677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689885360);
INSERT INTO public.notice VALUES (3678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689885959);
INSERT INTO public.notice VALUES (3679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689886559);
INSERT INTO public.notice VALUES (3681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689887760);
INSERT INTO public.notice VALUES (3683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689888961);
INSERT INTO public.notice VALUES (3684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689889560);
INSERT INTO public.notice VALUES (3685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689890159);
INSERT INTO public.notice VALUES (3690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689893159);
INSERT INTO public.notice VALUES (3692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689894360);
INSERT INTO public.notice VALUES (4745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690526638);
INSERT INTO public.notice VALUES (4746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690527239);
INSERT INTO public.notice VALUES (4748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690528438);
INSERT INTO public.notice VALUES (4749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690529038);
INSERT INTO public.notice VALUES (4750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690529639);
INSERT INTO public.notice VALUES (4751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690530238);
INSERT INTO public.notice VALUES (4758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690534439);
INSERT INTO public.notice VALUES (4760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690535637);
INSERT INTO public.notice VALUES (4762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690536838);
INSERT INTO public.notice VALUES (4763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690537438);
INSERT INTO public.notice VALUES (4765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690538639);
INSERT INTO public.notice VALUES (4766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690539238);
INSERT INTO public.notice VALUES (3688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689891960);
INSERT INTO public.notice VALUES (3689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689892559);
INSERT INTO public.notice VALUES (3691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689893760);
INSERT INTO public.notice VALUES (3693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689894959);
INSERT INTO public.notice VALUES (3694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689895558);
INSERT INTO public.notice VALUES (3695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689896160);
INSERT INTO public.notice VALUES (3696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689896759);
INSERT INTO public.notice VALUES (3697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689897359);
INSERT INTO public.notice VALUES (3698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689897961);
INSERT INTO public.notice VALUES (3699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689898559);
INSERT INTO public.notice VALUES (3700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689899159);
INSERT INTO public.notice VALUES (3701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689899761);
INSERT INTO public.notice VALUES (3702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689900360);
INSERT INTO public.notice VALUES (3703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689900962);
INSERT INTO public.notice VALUES (3704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689901559);
INSERT INTO public.notice VALUES (3705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689902160);
INSERT INTO public.notice VALUES (3706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689902760);
INSERT INTO public.notice VALUES (3711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689905759);
INSERT INTO public.notice VALUES (3712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689906361);
INSERT INTO public.notice VALUES (3716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689908761);
INSERT INTO public.notice VALUES (3719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689910561);
INSERT INTO public.notice VALUES (3720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689911160);
INSERT INTO public.notice VALUES (3723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689912961);
INSERT INTO public.notice VALUES (3724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689913567);
INSERT INTO public.notice VALUES (3725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689914160);
INSERT INTO public.notice VALUES (3726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689914762);
INSERT INTO public.notice VALUES (3727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689915361);
INSERT INTO public.notice VALUES (3731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689917764);
INSERT INTO public.notice VALUES (3732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689918359);
INSERT INTO public.notice VALUES (3734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689919565);
INSERT INTO public.notice VALUES (3707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689903359);
INSERT INTO public.notice VALUES (3708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689903959);
INSERT INTO public.notice VALUES (3709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689904561);
INSERT INTO public.notice VALUES (3710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689905160);
INSERT INTO public.notice VALUES (3713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689906965);
INSERT INTO public.notice VALUES (3714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689907563);
INSERT INTO public.notice VALUES (3715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689908159);
INSERT INTO public.notice VALUES (3717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689909363);
INSERT INTO public.notice VALUES (3718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689909968);
INSERT INTO public.notice VALUES (3721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689911760);
INSERT INTO public.notice VALUES (3722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689912360);
INSERT INTO public.notice VALUES (3728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689915959);
INSERT INTO public.notice VALUES (3729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689916559);
INSERT INTO public.notice VALUES (3730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689917161);
INSERT INTO public.notice VALUES (3733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689918959);
INSERT INTO public.notice VALUES (3735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689920160);
INSERT INTO public.notice VALUES (3736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689920761);
INSERT INTO public.notice VALUES (3737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689921363);
INSERT INTO public.notice VALUES (3738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689921963);
INSERT INTO public.notice VALUES (3739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689922559);
INSERT INTO public.notice VALUES (3741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689923761);
INSERT INTO public.notice VALUES (3745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689926161);
INSERT INTO public.notice VALUES (4755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690532638);
INSERT INTO public.notice VALUES (4756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690533238);
INSERT INTO public.notice VALUES (4757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690533839);
INSERT INTO public.notice VALUES (4759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690535038);
INSERT INTO public.notice VALUES (4761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690536239);
INSERT INTO public.notice VALUES (4764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690538039);
INSERT INTO public.notice VALUES (4768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690540439);
INSERT INTO public.notice VALUES (4769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690541038);
INSERT INTO public.notice VALUES (3740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689923159);
INSERT INTO public.notice VALUES (3742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689924362);
INSERT INTO public.notice VALUES (3743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689924959);
INSERT INTO public.notice VALUES (3744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689925566);
INSERT INTO public.notice VALUES (3746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689926760);
INSERT INTO public.notice VALUES (3747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689927359);
INSERT INTO public.notice VALUES (3748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689927959);
INSERT INTO public.notice VALUES (3749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689928563);
INSERT INTO public.notice VALUES (3750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689929159);
INSERT INTO public.notice VALUES (3751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689929759);
INSERT INTO public.notice VALUES (3752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689930360);
INSERT INTO public.notice VALUES (3753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689930960);
INSERT INTO public.notice VALUES (3754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689931560);
INSERT INTO public.notice VALUES (3755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689932160);
INSERT INTO public.notice VALUES (3756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689932760);
INSERT INTO public.notice VALUES (3757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689933359);
INSERT INTO public.notice VALUES (3759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689934560);
INSERT INTO public.notice VALUES (3764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689937559);
INSERT INTO public.notice VALUES (3767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689939360);
INSERT INTO public.notice VALUES (3769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689940559);
INSERT INTO public.notice VALUES (3772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689942359);
INSERT INTO public.notice VALUES (3773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689942961);
INSERT INTO public.notice VALUES (3774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689943560);
INSERT INTO public.notice VALUES (3776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689944759);
INSERT INTO public.notice VALUES (3778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689945960);
INSERT INTO public.notice VALUES (3782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689948360);
INSERT INTO public.notice VALUES (4767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690539838);
INSERT INTO public.notice VALUES (4770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690541638);
INSERT INTO public.notice VALUES (4771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690542239);
INSERT INTO public.notice VALUES (4772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690542839);
INSERT INTO public.notice VALUES (3758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689933959);
INSERT INTO public.notice VALUES (3760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689935160);
INSERT INTO public.notice VALUES (3761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689935759);
INSERT INTO public.notice VALUES (3762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689936359);
INSERT INTO public.notice VALUES (3763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689936960);
INSERT INTO public.notice VALUES (3765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689938159);
INSERT INTO public.notice VALUES (3766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689938759);
INSERT INTO public.notice VALUES (3768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689939959);
INSERT INTO public.notice VALUES (3770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689941160);
INSERT INTO public.notice VALUES (3771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689941759);
INSERT INTO public.notice VALUES (3775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689944160);
INSERT INTO public.notice VALUES (3777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689945361);
INSERT INTO public.notice VALUES (3779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689946559);
INSERT INTO public.notice VALUES (3780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689947158);
INSERT INTO public.notice VALUES (3781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689947760);
INSERT INTO public.notice VALUES (3783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689948959);
INSERT INTO public.notice VALUES (3784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689949559);
INSERT INTO public.notice VALUES (3785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689950160);
INSERT INTO public.notice VALUES (3786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689950760);
INSERT INTO public.notice VALUES (3787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689951367);
INSERT INTO public.notice VALUES (3788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689951962);
INSERT INTO public.notice VALUES (3789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689952560);
INSERT INTO public.notice VALUES (3790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689953159);
INSERT INTO public.notice VALUES (3791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689953759);
INSERT INTO public.notice VALUES (3792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689954361);
INSERT INTO public.notice VALUES (3793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689954960);
INSERT INTO public.notice VALUES (3794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689955559);
INSERT INTO public.notice VALUES (3795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689956160);
INSERT INTO public.notice VALUES (3796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689956760);
INSERT INTO public.notice VALUES (3797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689957361);
INSERT INTO public.notice VALUES (3798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689957959);
INSERT INTO public.notice VALUES (3799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689958560);
INSERT INTO public.notice VALUES (3800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689959160);
INSERT INTO public.notice VALUES (3801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689959759);
INSERT INTO public.notice VALUES (3802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689960359);
INSERT INTO public.notice VALUES (3803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689960960);
INSERT INTO public.notice VALUES (3804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689961559);
INSERT INTO public.notice VALUES (3805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689962159);
INSERT INTO public.notice VALUES (3806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689962760);
INSERT INTO public.notice VALUES (3807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689963360);
INSERT INTO public.notice VALUES (3808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689963959);
INSERT INTO public.notice VALUES (3809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689964559);
INSERT INTO public.notice VALUES (3810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689965161);
INSERT INTO public.notice VALUES (3811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689965760);
INSERT INTO public.notice VALUES (3812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689966359);
INSERT INTO public.notice VALUES (3813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689966958);
INSERT INTO public.notice VALUES (3814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689967560);
INSERT INTO public.notice VALUES (3820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689971159);
INSERT INTO public.notice VALUES (3823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689972959);
INSERT INTO public.notice VALUES (3825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689974160);
INSERT INTO public.notice VALUES (3826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689974759);
INSERT INTO public.notice VALUES (3831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689977759);
INSERT INTO public.notice VALUES (3832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689978360);
INSERT INTO public.notice VALUES (3833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689978959);
INSERT INTO public.notice VALUES (3835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689980160);
INSERT INTO public.notice VALUES (3836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689980760);
INSERT INTO public.notice VALUES (3837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689981359);
INSERT INTO public.notice VALUES (3838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689981959);
INSERT INTO public.notice VALUES (4773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690543438);
INSERT INTO public.notice VALUES (4774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690544038);
INSERT INTO public.notice VALUES (3815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689968159);
INSERT INTO public.notice VALUES (3816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689968759);
INSERT INTO public.notice VALUES (3817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689969360);
INSERT INTO public.notice VALUES (3818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689969960);
INSERT INTO public.notice VALUES (3819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689970559);
INSERT INTO public.notice VALUES (3821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689971760);
INSERT INTO public.notice VALUES (3822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689972360);
INSERT INTO public.notice VALUES (3824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689973560);
INSERT INTO public.notice VALUES (3827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689975359);
INSERT INTO public.notice VALUES (3828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689975960);
INSERT INTO public.notice VALUES (3829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689976560);
INSERT INTO public.notice VALUES (3830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689977159);
INSERT INTO public.notice VALUES (3834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689979559);
INSERT INTO public.notice VALUES (3839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689982560);
INSERT INTO public.notice VALUES (3840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689983160);
INSERT INTO public.notice VALUES (3841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689983760);
INSERT INTO public.notice VALUES (3842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689984358);
INSERT INTO public.notice VALUES (3843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689984960);
INSERT INTO public.notice VALUES (3844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689985559);
INSERT INTO public.notice VALUES (3845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689986159);
INSERT INTO public.notice VALUES (3846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689986760);
INSERT INTO public.notice VALUES (3847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689987360);
INSERT INTO public.notice VALUES (3848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689987959);
INSERT INTO public.notice VALUES (3849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689988559);
INSERT INTO public.notice VALUES (3850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689989160);
INSERT INTO public.notice VALUES (3851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689989759);
INSERT INTO public.notice VALUES (3852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689990359);
INSERT INTO public.notice VALUES (3853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689990961);
INSERT INTO public.notice VALUES (3854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689991560);
INSERT INTO public.notice VALUES (3855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689992159);
INSERT INTO public.notice VALUES (3856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689992759);
INSERT INTO public.notice VALUES (3857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689993360);
INSERT INTO public.notice VALUES (3859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689994559);
INSERT INTO public.notice VALUES (4775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690544639);
INSERT INTO public.notice VALUES (4778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690546437);
INSERT INTO public.notice VALUES (4779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690547039);
INSERT INTO public.notice VALUES (4780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690547638);
INSERT INTO public.notice VALUES (4781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690548238);
INSERT INTO public.notice VALUES (4783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690549439);
INSERT INTO public.notice VALUES (5003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690681438);
INSERT INTO public.notice VALUES (5004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690682039);
INSERT INTO public.notice VALUES (5005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690682639);
INSERT INTO public.notice VALUES (5007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690683838);
INSERT INTO public.notice VALUES (5008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690684439);
INSERT INTO public.notice VALUES (5011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690686237);
INSERT INTO public.notice VALUES (3858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689993960);
INSERT INTO public.notice VALUES (3860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689995160);
INSERT INTO public.notice VALUES (3861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689995760);
INSERT INTO public.notice VALUES (3862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689996359);
INSERT INTO public.notice VALUES (3863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689996959);
INSERT INTO public.notice VALUES (3864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689997560);
INSERT INTO public.notice VALUES (3865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689998160);
INSERT INTO public.notice VALUES (3866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689998759);
INSERT INTO public.notice VALUES (3867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689999358);
INSERT INTO public.notice VALUES (3868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1689999961);
INSERT INTO public.notice VALUES (3869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690000559);
INSERT INTO public.notice VALUES (3870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690001159);
INSERT INTO public.notice VALUES (3871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690001761);
INSERT INTO public.notice VALUES (3872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690002360);
INSERT INTO public.notice VALUES (3873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690002959);
INSERT INTO public.notice VALUES (3874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690003559);
INSERT INTO public.notice VALUES (3878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690005961);
INSERT INTO public.notice VALUES (3883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690008960);
INSERT INTO public.notice VALUES (3884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690009559);
INSERT INTO public.notice VALUES (3885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690010159);
INSERT INTO public.notice VALUES (3886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690010760);
INSERT INTO public.notice VALUES (3888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690011959);
INSERT INTO public.notice VALUES (3889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690012560);
INSERT INTO public.notice VALUES (3890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690013160);
INSERT INTO public.notice VALUES (3891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690013759);
INSERT INTO public.notice VALUES (3892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690014359);
INSERT INTO public.notice VALUES (3893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690014960);
INSERT INTO public.notice VALUES (3894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690015560);
INSERT INTO public.notice VALUES (3895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690016159);
INSERT INTO public.notice VALUES (3897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690017360);
INSERT INTO public.notice VALUES (3875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690004160);
INSERT INTO public.notice VALUES (3876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690004760);
INSERT INTO public.notice VALUES (3877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690005359);
INSERT INTO public.notice VALUES (3879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690006560);
INSERT INTO public.notice VALUES (3880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690007160);
INSERT INTO public.notice VALUES (3881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690007759);
INSERT INTO public.notice VALUES (3882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690008360);
INSERT INTO public.notice VALUES (3887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690011359);
INSERT INTO public.notice VALUES (3896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690016761);
INSERT INTO public.notice VALUES (3899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690018559);
INSERT INTO public.notice VALUES (3900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690019160);
INSERT INTO public.notice VALUES (3902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690020359);
INSERT INTO public.notice VALUES (4776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690545239);
INSERT INTO public.notice VALUES (4777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690545838);
INSERT INTO public.notice VALUES (4782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690548839);
INSERT INTO public.notice VALUES (3898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690017960);
INSERT INTO public.notice VALUES (3901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690019760);
INSERT INTO public.notice VALUES (3903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690020960);
INSERT INTO public.notice VALUES (3904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690021561);
INSERT INTO public.notice VALUES (3905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690022160);
INSERT INTO public.notice VALUES (3906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690022759);
INSERT INTO public.notice VALUES (3907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690023360);
INSERT INTO public.notice VALUES (3908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690023960);
INSERT INTO public.notice VALUES (3909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690024559);
INSERT INTO public.notice VALUES (3910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690025159);
INSERT INTO public.notice VALUES (3911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690025760);
INSERT INTO public.notice VALUES (3912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690026359);
INSERT INTO public.notice VALUES (3913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690026959);
INSERT INTO public.notice VALUES (3914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690027560);
INSERT INTO public.notice VALUES (3915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690028160);
INSERT INTO public.notice VALUES (3916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690028759);
INSERT INTO public.notice VALUES (3919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690030559);
INSERT INTO public.notice VALUES (3920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690031159);
INSERT INTO public.notice VALUES (3923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690032960);
INSERT INTO public.notice VALUES (3925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690034160);
INSERT INTO public.notice VALUES (3926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690034760);
INSERT INTO public.notice VALUES (3929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690036561);
INSERT INTO public.notice VALUES (3931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690037760);
INSERT INTO public.notice VALUES (3932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690038360);
INSERT INTO public.notice VALUES (4784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690550038);
INSERT INTO public.notice VALUES (4785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690550638);
INSERT INTO public.notice VALUES (4788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690552439);
INSERT INTO public.notice VALUES (5012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690686839);
INSERT INTO public.notice VALUES (5090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690733637);
INSERT INTO public.notice VALUES (5118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690750438);
INSERT INTO public.notice VALUES (3917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690029359);
INSERT INTO public.notice VALUES (3918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690029960);
INSERT INTO public.notice VALUES (3921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690031758);
INSERT INTO public.notice VALUES (3922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690032360);
INSERT INTO public.notice VALUES (3924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690033559);
INSERT INTO public.notice VALUES (3927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690035359);
INSERT INTO public.notice VALUES (3928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690035958);
INSERT INTO public.notice VALUES (3930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690037159);
INSERT INTO public.notice VALUES (3933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690038960);
INSERT INTO public.notice VALUES (3934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690039559);
INSERT INTO public.notice VALUES (3935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690040160);
INSERT INTO public.notice VALUES (3936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690040760);
INSERT INTO public.notice VALUES (3937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690041359);
INSERT INTO public.notice VALUES (3938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690041959);
INSERT INTO public.notice VALUES (3939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690042560);
INSERT INTO public.notice VALUES (3940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690043160);
INSERT INTO public.notice VALUES (3942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690044359);
INSERT INTO public.notice VALUES (3944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690045559);
INSERT INTO public.notice VALUES (3946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690046759);
INSERT INTO public.notice VALUES (3949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690048559);
INSERT INTO public.notice VALUES (3953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690050959);
INSERT INTO public.notice VALUES (3954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690051561);
INSERT INTO public.notice VALUES (3956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690052759);
INSERT INTO public.notice VALUES (3957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to gitlab.com:443 
', 1690053388);
INSERT INTO public.notice VALUES (3959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690054559);
INSERT INTO public.notice VALUES (3961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690055761);
INSERT INTO public.notice VALUES (3962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690056360);
INSERT INTO public.notice VALUES (3964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690057559);
INSERT INTO public.notice VALUES (3966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690058759);
INSERT INTO public.notice VALUES (3968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690059960);
INSERT INTO public.notice VALUES (3971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690061759);
INSERT INTO public.notice VALUES (3941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690043759);
INSERT INTO public.notice VALUES (3943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690044960);
INSERT INTO public.notice VALUES (3945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690046162);
INSERT INTO public.notice VALUES (3947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690047360);
INSERT INTO public.notice VALUES (3948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690047960);
INSERT INTO public.notice VALUES (3950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690049160);
INSERT INTO public.notice VALUES (3951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690049766);
INSERT INTO public.notice VALUES (3952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690050359);
INSERT INTO public.notice VALUES (3955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690052159);
INSERT INTO public.notice VALUES (3958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690054031);
INSERT INTO public.notice VALUES (3960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690055159);
INSERT INTO public.notice VALUES (3963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690056959);
INSERT INTO public.notice VALUES (3965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690058160);
INSERT INTO public.notice VALUES (3967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690059359);
INSERT INTO public.notice VALUES (3969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690060560);
INSERT INTO public.notice VALUES (3970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690061160);
INSERT INTO public.notice VALUES (3973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690062959);
INSERT INTO public.notice VALUES (3974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690063559);
INSERT INTO public.notice VALUES (3975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690064165);
INSERT INTO public.notice VALUES (3977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690065359);
INSERT INTO public.notice VALUES (3979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690066560);
INSERT INTO public.notice VALUES (3980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690067160);
INSERT INTO public.notice VALUES (3983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690068960);
INSERT INTO public.notice VALUES (3985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690070159);
INSERT INTO public.notice VALUES (3986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690070760);
INSERT INTO public.notice VALUES (3987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690071360);
INSERT INTO public.notice VALUES (3988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690071959);
INSERT INTO public.notice VALUES (3990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690073160);
INSERT INTO public.notice VALUES (3992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690074360);
INSERT INTO public.notice VALUES (3994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690075560);
INSERT INTO public.notice VALUES (3972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690062360);
INSERT INTO public.notice VALUES (3976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690064760);
INSERT INTO public.notice VALUES (3978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690065959);
INSERT INTO public.notice VALUES (3981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690067760);
INSERT INTO public.notice VALUES (3982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690068359);
INSERT INTO public.notice VALUES (3984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690069560);
INSERT INTO public.notice VALUES (3989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690072559);
INSERT INTO public.notice VALUES (3991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690073760);
INSERT INTO public.notice VALUES (3993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690074958);
INSERT INTO public.notice VALUES (3998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690077960);
INSERT INTO public.notice VALUES (3999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690078559);
INSERT INTO public.notice VALUES (4786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690551239);
INSERT INTO public.notice VALUES (4787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690551838);
INSERT INTO public.notice VALUES (4789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690553039);
INSERT INTO public.notice VALUES (4790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690553639);
INSERT INTO public.notice VALUES (3995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690076159);
INSERT INTO public.notice VALUES (3996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690076759);
INSERT INTO public.notice VALUES (3997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690077359);
INSERT INTO public.notice VALUES (4000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690079159);
INSERT INTO public.notice VALUES (4001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690079760);
INSERT INTO public.notice VALUES (4002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690080360);
INSERT INTO public.notice VALUES (4003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690080963);
INSERT INTO public.notice VALUES (4004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690081559);
INSERT INTO public.notice VALUES (4005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690082164);
INSERT INTO public.notice VALUES (4006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690082760);
INSERT INTO public.notice VALUES (4007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690083359);
INSERT INTO public.notice VALUES (4008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690083960);
INSERT INTO public.notice VALUES (4009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690084560);
INSERT INTO public.notice VALUES (4010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690085159);
INSERT INTO public.notice VALUES (4011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690085759);
INSERT INTO public.notice VALUES (4012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690086360);
INSERT INTO public.notice VALUES (4016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690088760);
INSERT INTO public.notice VALUES (4017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690089359);
INSERT INTO public.notice VALUES (4018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690089959);
INSERT INTO public.notice VALUES (4020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690091160);
INSERT INTO public.notice VALUES (4029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690096559);
INSERT INTO public.notice VALUES (4034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690099558);
INSERT INTO public.notice VALUES (4791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690554238);
INSERT INTO public.notice VALUES (4793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690555439);
INSERT INTO public.notice VALUES (4794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690556039);
INSERT INTO public.notice VALUES (5014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690688038);
INSERT INTO public.notice VALUES (5016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690689239);
INSERT INTO public.notice VALUES (5018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690690437);
INSERT INTO public.notice VALUES (5020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690691639);
INSERT INTO public.notice VALUES (5021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690692238);
INSERT INTO public.notice VALUES (4013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690086960);
INSERT INTO public.notice VALUES (4014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690087560);
INSERT INTO public.notice VALUES (4015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690088158);
INSERT INTO public.notice VALUES (4019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690090559);
INSERT INTO public.notice VALUES (4021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690091759);
INSERT INTO public.notice VALUES (4022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690092359);
INSERT INTO public.notice VALUES (4023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690092960);
INSERT INTO public.notice VALUES (4024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690093560);
INSERT INTO public.notice VALUES (4025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690094159);
INSERT INTO public.notice VALUES (4026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690094759);
INSERT INTO public.notice VALUES (4027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690095360);
INSERT INTO public.notice VALUES (4028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690095960);
INSERT INTO public.notice VALUES (4030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690097160);
INSERT INTO public.notice VALUES (4031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690097760);
INSERT INTO public.notice VALUES (4032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690098359);
INSERT INTO public.notice VALUES (4033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690098959);
INSERT INTO public.notice VALUES (4035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690100161);
INSERT INTO public.notice VALUES (4036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690100759);
INSERT INTO public.notice VALUES (4037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690101359);
INSERT INTO public.notice VALUES (4038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690101960);
INSERT INTO public.notice VALUES (4039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690102560);
INSERT INTO public.notice VALUES (4040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690103159);
INSERT INTO public.notice VALUES (4041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690103759);
INSERT INTO public.notice VALUES (4042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690104360);
INSERT INTO public.notice VALUES (4043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690104959);
INSERT INTO public.notice VALUES (4044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690105559);
INSERT INTO public.notice VALUES (4045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690106158);
INSERT INTO public.notice VALUES (4046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690106760);
INSERT INTO public.notice VALUES (4047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690107359);
INSERT INTO public.notice VALUES (4048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690107959);
INSERT INTO public.notice VALUES (4049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690108560);
INSERT INTO public.notice VALUES (4050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690109160);
INSERT INTO public.notice VALUES (4051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690109759);
INSERT INTO public.notice VALUES (4052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690110358);
INSERT INTO public.notice VALUES (4057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690113360);
INSERT INTO public.notice VALUES (4058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690113959);
INSERT INTO public.notice VALUES (4059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690114559);
INSERT INTO public.notice VALUES (4792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690554838);
INSERT INTO public.notice VALUES (4795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690556638);
INSERT INTO public.notice VALUES (4796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690557238);
INSERT INTO public.notice VALUES (5022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690692840);
INSERT INTO public.notice VALUES (5023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690693439);
INSERT INTO public.notice VALUES (5024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690694038);
INSERT INTO public.notice VALUES (5026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690695239);
INSERT INTO public.notice VALUES (5027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690695839);
INSERT INTO public.notice VALUES (4053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690110960);
INSERT INTO public.notice VALUES (4054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690111559);
INSERT INTO public.notice VALUES (4055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690112159);
INSERT INTO public.notice VALUES (4056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690112761);
INSERT INTO public.notice VALUES (4060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690115160);
INSERT INTO public.notice VALUES (4061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690115760);
INSERT INTO public.notice VALUES (4062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690116359);
INSERT INTO public.notice VALUES (4063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690116961);
INSERT INTO public.notice VALUES (4064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690117561);
INSERT INTO public.notice VALUES (4065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690118159);
INSERT INTO public.notice VALUES (4066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690118759);
INSERT INTO public.notice VALUES (4067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690119360);
INSERT INTO public.notice VALUES (4068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690119960);
INSERT INTO public.notice VALUES (4069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690120559);
INSERT INTO public.notice VALUES (4070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690121158);
INSERT INTO public.notice VALUES (4071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690121760);
INSERT INTO public.notice VALUES (4072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690122359);
INSERT INTO public.notice VALUES (4073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690122974);
INSERT INTO public.notice VALUES (4074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690123560);
INSERT INTO public.notice VALUES (4075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690124161);
INSERT INTO public.notice VALUES (4076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690124759);
INSERT INTO public.notice VALUES (4077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690125359);
INSERT INTO public.notice VALUES (4078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690125960);
INSERT INTO public.notice VALUES (4079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690126560);
INSERT INTO public.notice VALUES (4080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690127159);
INSERT INTO public.notice VALUES (4081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690127759);
INSERT INTO public.notice VALUES (4082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690128360);
INSERT INTO public.notice VALUES (4083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690128959);
INSERT INTO public.notice VALUES (4084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690129559);
INSERT INTO public.notice VALUES (4085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690130161);
INSERT INTO public.notice VALUES (4086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690130760);
INSERT INTO public.notice VALUES (4087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690131359);
INSERT INTO public.notice VALUES (4797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690557839);
INSERT INTO public.notice VALUES (5025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690694638);
INSERT INTO public.notice VALUES (5029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690697037);
INSERT INTO public.notice VALUES (5030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690697639);
INSERT INTO public.notice VALUES (5031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690698238);
INSERT INTO public.notice VALUES (5032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690698838);
INSERT INTO public.notice VALUES (5033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690699439);
INSERT INTO public.notice VALUES (5034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690700039);
INSERT INTO public.notice VALUES (5091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690734239);
INSERT INTO public.notice VALUES (5119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690751039);
INSERT INTO public.notice VALUES (5120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690751639);
INSERT INTO public.notice VALUES (5121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690752238);
INSERT INTO public.notice VALUES (5123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690753439);
INSERT INTO public.notice VALUES (4088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690131959);
INSERT INTO public.notice VALUES (4089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690132560);
INSERT INTO public.notice VALUES (4090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690133160);
INSERT INTO public.notice VALUES (4091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690133759);
INSERT INTO public.notice VALUES (4092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690134360);
INSERT INTO public.notice VALUES (4093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690134960);
INSERT INTO public.notice VALUES (4094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690135559);
INSERT INTO public.notice VALUES (4095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690136159);
INSERT INTO public.notice VALUES (4096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690136760);
INSERT INTO public.notice VALUES (4097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690137360);
INSERT INTO public.notice VALUES (4098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690137960);
INSERT INTO public.notice VALUES (4099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690138559);
INSERT INTO public.notice VALUES (4100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690139160);
INSERT INTO public.notice VALUES (4101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690139759);
INSERT INTO public.notice VALUES (4102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690140359);
INSERT INTO public.notice VALUES (4103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690140960);
INSERT INTO public.notice VALUES (4104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690141560);
INSERT INTO public.notice VALUES (4108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690143960);
INSERT INTO public.notice VALUES (4798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690558438);
INSERT INTO public.notice VALUES (4805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690562639);
INSERT INTO public.notice VALUES (4806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690563238);
INSERT INTO public.notice VALUES (4807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690563840);
INSERT INTO public.notice VALUES (4808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690564439);
INSERT INTO public.notice VALUES (4809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690565038);
INSERT INTO public.notice VALUES (4813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690567438);
INSERT INTO public.notice VALUES (5028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690696438);
INSERT INTO public.notice VALUES (5035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690700638);
INSERT INTO public.notice VALUES (5093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690735438);
INSERT INTO public.notice VALUES (5094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690736040);
INSERT INTO public.notice VALUES (5098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690738439);
INSERT INTO public.notice VALUES (4105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690142159);
INSERT INTO public.notice VALUES (4106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690142758);
INSERT INTO public.notice VALUES (4107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690143360);
INSERT INTO public.notice VALUES (4109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690144559);
INSERT INTO public.notice VALUES (4110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690145160);
INSERT INTO public.notice VALUES (4111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690145760);
INSERT INTO public.notice VALUES (4112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690146359);
INSERT INTO public.notice VALUES (4113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690146959);
INSERT INTO public.notice VALUES (4114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690147560);
INSERT INTO public.notice VALUES (4115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690148160);
INSERT INTO public.notice VALUES (4116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690148759);
INSERT INTO public.notice VALUES (4117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690149358);
INSERT INTO public.notice VALUES (4118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690149960);
INSERT INTO public.notice VALUES (4119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690150559);
INSERT INTO public.notice VALUES (4120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690151159);
INSERT INTO public.notice VALUES (4121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690151760);
INSERT INTO public.notice VALUES (4124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690153560);
INSERT INTO public.notice VALUES (4799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690559038);
INSERT INTO public.notice VALUES (4800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690559639);
INSERT INTO public.notice VALUES (4801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690560239);
INSERT INTO public.notice VALUES (4802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690560838);
INSERT INTO public.notice VALUES (5036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690701238);
INSERT INTO public.notice VALUES (5038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690702438);
INSERT INTO public.notice VALUES (5095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690736638);
INSERT INTO public.notice VALUES (5096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690737238);
INSERT INTO public.notice VALUES (5097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690737838);
INSERT INTO public.notice VALUES (5099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690739038);
INSERT INTO public.notice VALUES (5100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690739638);
INSERT INTO public.notice VALUES (5101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690740237);
INSERT INTO public.notice VALUES (5106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690743239);
INSERT INTO public.notice VALUES (4122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690152360);
INSERT INTO public.notice VALUES (4123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690152959);
INSERT INTO public.notice VALUES (4125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690154160);
INSERT INTO public.notice VALUES (4126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690154759);
INSERT INTO public.notice VALUES (4127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690155359);
INSERT INTO public.notice VALUES (4128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690155960);
INSERT INTO public.notice VALUES (4129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690156560);
INSERT INTO public.notice VALUES (4130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690157159);
INSERT INTO public.notice VALUES (4131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690157759);
INSERT INTO public.notice VALUES (4132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690158360);
INSERT INTO public.notice VALUES (4133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690158959);
INSERT INTO public.notice VALUES (4134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690159559);
INSERT INTO public.notice VALUES (4135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690160160);
INSERT INTO public.notice VALUES (4136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690160760);
INSERT INTO public.notice VALUES (4137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690161359);
INSERT INTO public.notice VALUES (4138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690161959);
INSERT INTO public.notice VALUES (4139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690162560);
INSERT INTO public.notice VALUES (4140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690163159);
INSERT INTO public.notice VALUES (4142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690164361);
INSERT INTO public.notice VALUES (4803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690561439);
INSERT INTO public.notice VALUES (4804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690562039);
INSERT INTO public.notice VALUES (4810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690565637);
INSERT INTO public.notice VALUES (4811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690566239);
INSERT INTO public.notice VALUES (4812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690566839);
INSERT INTO public.notice VALUES (4816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690569238);
INSERT INTO public.notice VALUES (4817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690569838);
INSERT INTO public.notice VALUES (4819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690571038);
INSERT INTO public.notice VALUES (4820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690571639);
INSERT INTO public.notice VALUES (4822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690572839);
INSERT INTO public.notice VALUES (5037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690701839);
INSERT INTO public.notice VALUES (4141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690163759);
INSERT INTO public.notice VALUES (4143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690164960);
INSERT INTO public.notice VALUES (4144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690165559);
INSERT INTO public.notice VALUES (4145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690166159);
INSERT INTO public.notice VALUES (4146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690166760);
INSERT INTO public.notice VALUES (4147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690167360);
INSERT INTO public.notice VALUES (4148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690167959);
INSERT INTO public.notice VALUES (4149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690168559);
INSERT INTO public.notice VALUES (4150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690169160);
INSERT INTO public.notice VALUES (4151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690169759);
INSERT INTO public.notice VALUES (4152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690170359);
INSERT INTO public.notice VALUES (4153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690170960);
INSERT INTO public.notice VALUES (4154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690171560);
INSERT INTO public.notice VALUES (4155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690172159);
INSERT INTO public.notice VALUES (4156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690172760);
INSERT INTO public.notice VALUES (4157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690173360);
INSERT INTO public.notice VALUES (4158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690173961);
INSERT INTO public.notice VALUES (4159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690174559);
INSERT INTO public.notice VALUES (4160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690175158);
INSERT INTO public.notice VALUES (4162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690176359);
INSERT INTO public.notice VALUES (4163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690176959);
INSERT INTO public.notice VALUES (4165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690178160);
INSERT INTO public.notice VALUES (4166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690178759);
INSERT INTO public.notice VALUES (4167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690179358);
INSERT INTO public.notice VALUES (4814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690568039);
INSERT INTO public.notice VALUES (4815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690568639);
INSERT INTO public.notice VALUES (4818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690570439);
INSERT INTO public.notice VALUES (4821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690572237);
INSERT INTO public.notice VALUES (4825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690574639);
INSERT INTO public.notice VALUES (4827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690575839);
INSERT INTO public.notice VALUES (4161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690175760);
INSERT INTO public.notice VALUES (4164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690177561);
INSERT INTO public.notice VALUES (4168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690179960);
INSERT INTO public.notice VALUES (4169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690180559);
INSERT INTO public.notice VALUES (4170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690181160);
INSERT INTO public.notice VALUES (4171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690181761);
INSERT INTO public.notice VALUES (4172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690182360);
INSERT INTO public.notice VALUES (4173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690182960);
INSERT INTO public.notice VALUES (4174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690183559);
INSERT INTO public.notice VALUES (4175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690184160);
INSERT INTO public.notice VALUES (4176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690184759);
INSERT INTO public.notice VALUES (4177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690185359);
INSERT INTO public.notice VALUES (4178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690185959);
INSERT INTO public.notice VALUES (4179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690186560);
INSERT INTO public.notice VALUES (4180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690187160);
INSERT INTO public.notice VALUES (4181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690187759);
INSERT INTO public.notice VALUES (4182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690188360);
INSERT INTO public.notice VALUES (4183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690188961);
INSERT INTO public.notice VALUES (4184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690189560);
INSERT INTO public.notice VALUES (4185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690190159);
INSERT INTO public.notice VALUES (4186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690190760);
INSERT INTO public.notice VALUES (4187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690191360);
INSERT INTO public.notice VALUES (4188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690191959);
INSERT INTO public.notice VALUES (4189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690192560);
INSERT INTO public.notice VALUES (4190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690193160);
INSERT INTO public.notice VALUES (4191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690193759);
INSERT INTO public.notice VALUES (4192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690194359);
INSERT INTO public.notice VALUES (4193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690194960);
INSERT INTO public.notice VALUES (4194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690195560);
INSERT INTO public.notice VALUES (4195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690196159);
INSERT INTO public.notice VALUES (4196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690196761);
INSERT INTO public.notice VALUES (4197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690197360);
INSERT INTO public.notice VALUES (4198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690197959);
INSERT INTO public.notice VALUES (4201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690199759);
INSERT INTO public.notice VALUES (4207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690203360);
INSERT INTO public.notice VALUES (4209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690204559);
INSERT INTO public.notice VALUES (4212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690206360);
INSERT INTO public.notice VALUES (4213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690206959);
INSERT INTO public.notice VALUES (4217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690209359);
INSERT INTO public.notice VALUES (4219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690210560);
INSERT INTO public.notice VALUES (4223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690212959);
INSERT INTO public.notice VALUES (4227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690215359);
INSERT INTO public.notice VALUES (4823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690573438);
INSERT INTO public.notice VALUES (5039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690703038);
INSERT INTO public.notice VALUES (5042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690704838);
INSERT INTO public.notice VALUES (4199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690198559);
INSERT INTO public.notice VALUES (4200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690199160);
INSERT INTO public.notice VALUES (4202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690200359);
INSERT INTO public.notice VALUES (4203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690200959);
INSERT INTO public.notice VALUES (4204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690201560);
INSERT INTO public.notice VALUES (4205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690202159);
INSERT INTO public.notice VALUES (4206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690202759);
INSERT INTO public.notice VALUES (4208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690203960);
INSERT INTO public.notice VALUES (4210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690205159);
INSERT INTO public.notice VALUES (4211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690205760);
INSERT INTO public.notice VALUES (4214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690207560);
INSERT INTO public.notice VALUES (4215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690208160);
INSERT INTO public.notice VALUES (4216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690208759);
INSERT INTO public.notice VALUES (4218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690209960);
INSERT INTO public.notice VALUES (4220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690211160);
INSERT INTO public.notice VALUES (4221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690211759);
INSERT INTO public.notice VALUES (4222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690212360);
INSERT INTO public.notice VALUES (4224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690213559);
INSERT INTO public.notice VALUES (4225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690214160);
INSERT INTO public.notice VALUES (4226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690214760);
INSERT INTO public.notice VALUES (4228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690215959);
INSERT INTO public.notice VALUES (4229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690216560);
INSERT INTO public.notice VALUES (4230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690217160);
INSERT INTO public.notice VALUES (4231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690217759);
INSERT INTO public.notice VALUES (4232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690218358);
INSERT INTO public.notice VALUES (4233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690218960);
INSERT INTO public.notice VALUES (4234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690219559);
INSERT INTO public.notice VALUES (4235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690220159);
INSERT INTO public.notice VALUES (4236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690220760);
INSERT INTO public.notice VALUES (4237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690221360);
INSERT INTO public.notice VALUES (4238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690221959);
INSERT INTO public.notice VALUES (4240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690223160);
INSERT INTO public.notice VALUES (4242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690224360);
INSERT INTO public.notice VALUES (4243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690224960);
INSERT INTO public.notice VALUES (4247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690227360);
INSERT INTO public.notice VALUES (4248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690227960);
INSERT INTO public.notice VALUES (4250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690229161);
INSERT INTO public.notice VALUES (4252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690230359);
INSERT INTO public.notice VALUES (4255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690232160);
INSERT INTO public.notice VALUES (4258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690233960);
INSERT INTO public.notice VALUES (4824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690574038);
INSERT INTO public.notice VALUES (4826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690575239);
INSERT INTO public.notice VALUES (4828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690576438);
INSERT INTO public.notice VALUES (4830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690577638);
INSERT INTO public.notice VALUES (4832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690578839);
INSERT INTO public.notice VALUES (4239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690222559);
INSERT INTO public.notice VALUES (4241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690223759);
INSERT INTO public.notice VALUES (4244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690225560);
INSERT INTO public.notice VALUES (4245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690226159);
INSERT INTO public.notice VALUES (4246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690226758);
INSERT INTO public.notice VALUES (4249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690228559);
INSERT INTO public.notice VALUES (4251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690229760);
INSERT INTO public.notice VALUES (4253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690230959);
INSERT INTO public.notice VALUES (4254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690231560);
INSERT INTO public.notice VALUES (4256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690232759);
INSERT INTO public.notice VALUES (4257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690233359);
INSERT INTO public.notice VALUES (4259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690234559);
INSERT INTO public.notice VALUES (4260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690235159);
INSERT INTO public.notice VALUES (4261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690235759);
INSERT INTO public.notice VALUES (4262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690236360);
INSERT INTO public.notice VALUES (4263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690236959);
INSERT INTO public.notice VALUES (4264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690237559);
INSERT INTO public.notice VALUES (4265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690238160);
INSERT INTO public.notice VALUES (4266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690238760);
INSERT INTO public.notice VALUES (4269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690240560);
INSERT INTO public.notice VALUES (4271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690241759);
INSERT INTO public.notice VALUES (4273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690242960);
INSERT INTO public.notice VALUES (4274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690243559);
INSERT INTO public.notice VALUES (4275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690244159);
INSERT INTO public.notice VALUES (4829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690577039);
INSERT INTO public.notice VALUES (4831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690578238);
INSERT INTO public.notice VALUES (5040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690703639);
INSERT INTO public.notice VALUES (5041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690704239);
INSERT INTO public.notice VALUES (5043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690705438);
INSERT INTO public.notice VALUES (5045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690706638);
INSERT INTO public.notice VALUES (4267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690239359);
INSERT INTO public.notice VALUES (4268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690239959);
INSERT INTO public.notice VALUES (4270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690241159);
INSERT INTO public.notice VALUES (4272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690242360);
INSERT INTO public.notice VALUES (4276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690244760);
INSERT INTO public.notice VALUES (4277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690245360);
INSERT INTO public.notice VALUES (4278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690245959);
INSERT INTO public.notice VALUES (4279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690246559);
INSERT INTO public.notice VALUES (4280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690247160);
INSERT INTO public.notice VALUES (4281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690247759);
INSERT INTO public.notice VALUES (4282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690248359);
INSERT INTO public.notice VALUES (4283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690248960);
INSERT INTO public.notice VALUES (4284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690249560);
INSERT INTO public.notice VALUES (4285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690250160);
INSERT INTO public.notice VALUES (4286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690250759);
INSERT INTO public.notice VALUES (4287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690251360);
INSERT INTO public.notice VALUES (4288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690251959);
INSERT INTO public.notice VALUES (4291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690253763);
INSERT INTO public.notice VALUES (4292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690254359);
INSERT INTO public.notice VALUES (4293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690254959);
INSERT INTO public.notice VALUES (4301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690259767);
INSERT INTO public.notice VALUES (4833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690579439);
INSERT INTO public.notice VALUES (5044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690706039);
INSERT INTO public.notice VALUES (5046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690707238);
INSERT INTO public.notice VALUES (5049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690709038);
INSERT INTO public.notice VALUES (5102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690740839);
INSERT INTO public.notice VALUES (5103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690741438);
INSERT INTO public.notice VALUES (5104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690742038);
INSERT INTO public.notice VALUES (5105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690742639);
INSERT INTO public.notice VALUES (5108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690744437);
INSERT INTO public.notice VALUES (4289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690252559);
INSERT INTO public.notice VALUES (4290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690253160);
INSERT INTO public.notice VALUES (4294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690255560);
INSERT INTO public.notice VALUES (4295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690256160);
INSERT INTO public.notice VALUES (4296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690256759);
INSERT INTO public.notice VALUES (4297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690257358);
INSERT INTO public.notice VALUES (4298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690257960);
INSERT INTO public.notice VALUES (4299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690258560);
INSERT INTO public.notice VALUES (4300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690259159);
INSERT INTO public.notice VALUES (4302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690260360);
INSERT INTO public.notice VALUES (4303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690260959);
INSERT INTO public.notice VALUES (4304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690261574);
INSERT INTO public.notice VALUES (4305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690262160);
INSERT INTO public.notice VALUES (4306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690262761);
INSERT INTO public.notice VALUES (4307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690263362);
INSERT INTO public.notice VALUES (4308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690263960);
INSERT INTO public.notice VALUES (4312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690266359);
INSERT INTO public.notice VALUES (4313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690266960);
INSERT INTO public.notice VALUES (4834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690580038);
INSERT INTO public.notice VALUES (4835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690580638);
INSERT INTO public.notice VALUES (4837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690581838);
INSERT INTO public.notice VALUES (4839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690583039);
INSERT INTO public.notice VALUES (4842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690584838);
INSERT INTO public.notice VALUES (4848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690588438);
INSERT INTO public.notice VALUES (4849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690589038);
INSERT INTO public.notice VALUES (4853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690591437);
INSERT INTO public.notice VALUES (4856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690593238);
INSERT INTO public.notice VALUES (4857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690593839);
INSERT INTO public.notice VALUES (4858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690594439);
INSERT INTO public.notice VALUES (4860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690595638);
INSERT INTO public.notice VALUES (4309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690264560);
INSERT INTO public.notice VALUES (4310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690265160);
INSERT INTO public.notice VALUES (4311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690265759);
INSERT INTO public.notice VALUES (4314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690267560);
INSERT INTO public.notice VALUES (4315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690268159);
INSERT INTO public.notice VALUES (4316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690268760);
INSERT INTO public.notice VALUES (4317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690269360);
INSERT INTO public.notice VALUES (4318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690269959);
INSERT INTO public.notice VALUES (4319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690270559);
INSERT INTO public.notice VALUES (4320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690271160);
INSERT INTO public.notice VALUES (4321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690271759);
INSERT INTO public.notice VALUES (4322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690272359);
INSERT INTO public.notice VALUES (4323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690272960);
INSERT INTO public.notice VALUES (4324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690273561);
INSERT INTO public.notice VALUES (4325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690274159);
INSERT INTO public.notice VALUES (4326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690274759);
INSERT INTO public.notice VALUES (4329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690276559);
INSERT INTO public.notice VALUES (4330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690277161);
INSERT INTO public.notice VALUES (4836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690581239);
INSERT INTO public.notice VALUES (4838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690582438);
INSERT INTO public.notice VALUES (4840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690583639);
INSERT INTO public.notice VALUES (4841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690584238);
INSERT INTO public.notice VALUES (4843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690585439);
INSERT INTO public.notice VALUES (4844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690586039);
INSERT INTO public.notice VALUES (4845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690586638);
INSERT INTO public.notice VALUES (4846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690587240);
INSERT INTO public.notice VALUES (4847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690587839);
INSERT INTO public.notice VALUES (4850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690589639);
INSERT INTO public.notice VALUES (4851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690590239);
INSERT INTO public.notice VALUES (4852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690590838);
INSERT INTO public.notice VALUES (4327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690275360);
INSERT INTO public.notice VALUES (4328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690275960);
INSERT INTO public.notice VALUES (4331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690278239);
INSERT INTO public.notice VALUES (4332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690278839);
INSERT INTO public.notice VALUES (4333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690279438);
INSERT INTO public.notice VALUES (4334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690280038);
INSERT INTO public.notice VALUES (4335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690280639);
INSERT INTO public.notice VALUES (4336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690281239);
INSERT INTO public.notice VALUES (4337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690281838);
INSERT INTO public.notice VALUES (4338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690282438);
INSERT INTO public.notice VALUES (4339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690283039);
INSERT INTO public.notice VALUES (4340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690283638);
INSERT INTO public.notice VALUES (4341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690284238);
INSERT INTO public.notice VALUES (4342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690284839);
INSERT INTO public.notice VALUES (4343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690285439);
INSERT INTO public.notice VALUES (4344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690286038);
INSERT INTO public.notice VALUES (4347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690287838);
INSERT INTO public.notice VALUES (4358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690294438);
INSERT INTO public.notice VALUES (4359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690295038);
INSERT INTO public.notice VALUES (4360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690295639);
INSERT INTO public.notice VALUES (4361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690296239);
INSERT INTO public.notice VALUES (4362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690296839);
INSERT INTO public.notice VALUES (4363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690297438);
INSERT INTO public.notice VALUES (4366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690299238);
INSERT INTO public.notice VALUES (4367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690299839);
INSERT INTO public.notice VALUES (4368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690300439);
INSERT INTO public.notice VALUES (4370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690301638);
INSERT INTO public.notice VALUES (4375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690304639);
INSERT INTO public.notice VALUES (4376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690305238);
INSERT INTO public.notice VALUES (4377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690305838);
INSERT INTO public.notice VALUES (4345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690286638);
INSERT INTO public.notice VALUES (4346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690287239);
INSERT INTO public.notice VALUES (4348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690288438);
INSERT INTO public.notice VALUES (4349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690289038);
INSERT INTO public.notice VALUES (4350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690289639);
INSERT INTO public.notice VALUES (4351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690290238);
INSERT INTO public.notice VALUES (4352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690290838);
INSERT INTO public.notice VALUES (4353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690291439);
INSERT INTO public.notice VALUES (4354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690292039);
INSERT INTO public.notice VALUES (4355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690292638);
INSERT INTO public.notice VALUES (4356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690293238);
INSERT INTO public.notice VALUES (4357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690293839);
INSERT INTO public.notice VALUES (4364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690298039);
INSERT INTO public.notice VALUES (4365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690298639);
INSERT INTO public.notice VALUES (4369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690301039);
INSERT INTO public.notice VALUES (4371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690302239);
INSERT INTO public.notice VALUES (4372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690302839);
INSERT INTO public.notice VALUES (4373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690303438);
INSERT INTO public.notice VALUES (4374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690304038);
INSERT INTO public.notice VALUES (4381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690308238);
INSERT INTO public.notice VALUES (4382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690308839);
INSERT INTO public.notice VALUES (4383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690309439);
INSERT INTO public.notice VALUES (4384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690310038);
INSERT INTO public.notice VALUES (4386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690311239);
INSERT INTO public.notice VALUES (4390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690313639);
INSERT INTO public.notice VALUES (4393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690315439);
INSERT INTO public.notice VALUES (4395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690316638);
INSERT INTO public.notice VALUES (4398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690318438);
INSERT INTO public.notice VALUES (4402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690320838);
INSERT INTO public.notice VALUES (4405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690322638);
INSERT INTO public.notice VALUES (4378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690306437);
INSERT INTO public.notice VALUES (4379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690307039);
INSERT INTO public.notice VALUES (4380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690307638);
INSERT INTO public.notice VALUES (4385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690310637);
INSERT INTO public.notice VALUES (4387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690311839);
INSERT INTO public.notice VALUES (4388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690312438);
INSERT INTO public.notice VALUES (4389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690313039);
INSERT INTO public.notice VALUES (4391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690314238);
INSERT INTO public.notice VALUES (4392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690314837);
INSERT INTO public.notice VALUES (4394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690316038);
INSERT INTO public.notice VALUES (4396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690317239);
INSERT INTO public.notice VALUES (4397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690317840);
INSERT INTO public.notice VALUES (4399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690319038);
INSERT INTO public.notice VALUES (4400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690319639);
INSERT INTO public.notice VALUES (4401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690320238);
INSERT INTO public.notice VALUES (4403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690321438);
INSERT INTO public.notice VALUES (4404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690322039);
INSERT INTO public.notice VALUES (4411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690326240);
INSERT INTO public.notice VALUES (4854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690592039);
INSERT INTO public.notice VALUES (4855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690592638);
INSERT INTO public.notice VALUES (4859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690595038);
INSERT INTO public.notice VALUES (4861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690596239);
INSERT INTO public.notice VALUES (4862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690596838);
INSERT INTO public.notice VALUES (5047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690707839);
INSERT INTO public.notice VALUES (5048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690708439);
INSERT INTO public.notice VALUES (5051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690710239);
INSERT INTO public.notice VALUES (5052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690710839);
INSERT INTO public.notice VALUES (5059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690715039);
INSERT INTO public.notice VALUES (5060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690715638);
INSERT INTO public.notice VALUES (5063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690717438);
INSERT INTO public.notice VALUES (4406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690323238);
INSERT INTO public.notice VALUES (4407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690323839);
INSERT INTO public.notice VALUES (4408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690324439);
INSERT INTO public.notice VALUES (4409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690325038);
INSERT INTO public.notice VALUES (4410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690325638);
INSERT INTO public.notice VALUES (4412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690326839);
INSERT INTO public.notice VALUES (4413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690327438);
INSERT INTO public.notice VALUES (4414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690328039);
INSERT INTO public.notice VALUES (4415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690328639);
INSERT INTO public.notice VALUES (4416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690329238);
INSERT INTO public.notice VALUES (4417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690329838);
INSERT INTO public.notice VALUES (4418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690330438);
INSERT INTO public.notice VALUES (4419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690331039);
INSERT INTO public.notice VALUES (4420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690331638);
INSERT INTO public.notice VALUES (4421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690332238);
INSERT INTO public.notice VALUES (4422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690332839);
INSERT INTO public.notice VALUES (4423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690333439);
INSERT INTO public.notice VALUES (4424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690334038);
INSERT INTO public.notice VALUES (4425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690334637);
INSERT INTO public.notice VALUES (4426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690335239);
INSERT INTO public.notice VALUES (4427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690335839);
INSERT INTO public.notice VALUES (4428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690336438);
INSERT INTO public.notice VALUES (4429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690337039);
INSERT INTO public.notice VALUES (4430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690337639);
INSERT INTO public.notice VALUES (4431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690338239);
INSERT INTO public.notice VALUES (4432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690338838);
INSERT INTO public.notice VALUES (4433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690339437);
INSERT INTO public.notice VALUES (4434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690340039);
INSERT INTO public.notice VALUES (4435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690340638);
INSERT INTO public.notice VALUES (4436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690341238);
INSERT INTO public.notice VALUES (4437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690341839);
INSERT INTO public.notice VALUES (4439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690343039);
INSERT INTO public.notice VALUES (4440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690343638);
INSERT INTO public.notice VALUES (4444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690346039);
INSERT INTO public.notice VALUES (4863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690597438);
INSERT INTO public.notice VALUES (4865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690598639);
INSERT INTO public.notice VALUES (4866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690599238);
INSERT INTO public.notice VALUES (4868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690600439);
INSERT INTO public.notice VALUES (4873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690603438);
INSERT INTO public.notice VALUES (4877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690605838);
INSERT INTO public.notice VALUES (4878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690606438);
INSERT INTO public.notice VALUES (4879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690607039);
INSERT INTO public.notice VALUES (4880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690607638);
INSERT INTO public.notice VALUES (4881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690608238);
INSERT INTO public.notice VALUES (4885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690610638);
INSERT INTO public.notice VALUES (4438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690342439);
INSERT INTO public.notice VALUES (4441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690344239);
INSERT INTO public.notice VALUES (4442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690344839);
INSERT INTO public.notice VALUES (4443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690345438);
INSERT INTO public.notice VALUES (4445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690346639);
INSERT INTO public.notice VALUES (4446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690347238);
INSERT INTO public.notice VALUES (4447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690347838);
INSERT INTO public.notice VALUES (4448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690348439);
INSERT INTO public.notice VALUES (4449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690349039);
INSERT INTO public.notice VALUES (4450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690349638);
INSERT INTO public.notice VALUES (4451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690350237);
INSERT INTO public.notice VALUES (4452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690350839);
INSERT INTO public.notice VALUES (4453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690351438);
INSERT INTO public.notice VALUES (4454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690352038);
INSERT INTO public.notice VALUES (4455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690352639);
INSERT INTO public.notice VALUES (4456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690353239);
INSERT INTO public.notice VALUES (4457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690353839);
INSERT INTO public.notice VALUES (4458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690354437);
INSERT INTO public.notice VALUES (4459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690355039);
INSERT INTO public.notice VALUES (4464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690358038);
INSERT INTO public.notice VALUES (4465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690358638);
INSERT INTO public.notice VALUES (4475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690364638);
INSERT INTO public.notice VALUES (4476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690365237);
INSERT INTO public.notice VALUES (4478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690366438);
INSERT INTO public.notice VALUES (4479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690367038);
INSERT INTO public.notice VALUES (4480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690367637);
INSERT INTO public.notice VALUES (4864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690598037);
INSERT INTO public.notice VALUES (4867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690599838);
INSERT INTO public.notice VALUES (4869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690601039);
INSERT INTO public.notice VALUES (5050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690709638);
INSERT INTO public.notice VALUES (4460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690355638);
INSERT INTO public.notice VALUES (4461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690356238);
INSERT INTO public.notice VALUES (4462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690356840);
INSERT INTO public.notice VALUES (4463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690357439);
INSERT INTO public.notice VALUES (4466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690359239);
INSERT INTO public.notice VALUES (4467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690359838);
INSERT INTO public.notice VALUES (4468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690360438);
INSERT INTO public.notice VALUES (4469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690361039);
INSERT INTO public.notice VALUES (4470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690361639);
INSERT INTO public.notice VALUES (4471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690362238);
INSERT INTO public.notice VALUES (4472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690362838);
INSERT INTO public.notice VALUES (4473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690363439);
INSERT INTO public.notice VALUES (4474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690364039);
INSERT INTO public.notice VALUES (4477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690365839);
INSERT INTO public.notice VALUES (4481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690368239);
INSERT INTO public.notice VALUES (4482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690368838);
INSERT INTO public.notice VALUES (4484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690370039);
INSERT INTO public.notice VALUES (4486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690371238);
INSERT INTO public.notice VALUES (4487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690371838);
INSERT INTO public.notice VALUES (4491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690374237);
INSERT INTO public.notice VALUES (4494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690376038);
INSERT INTO public.notice VALUES (4495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690376639);
INSERT INTO public.notice VALUES (4496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690377239);
INSERT INTO public.notice VALUES (4497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690377838);
INSERT INTO public.notice VALUES (4870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690601638);
INSERT INTO public.notice VALUES (4871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690602237);
INSERT INTO public.notice VALUES (4872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690602839);
INSERT INTO public.notice VALUES (4874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690604038);
INSERT INTO public.notice VALUES (4875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690604639);
INSERT INTO public.notice VALUES (4876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690605239);
INSERT INTO public.notice VALUES (4483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690369438);
INSERT INTO public.notice VALUES (4485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690370639);
INSERT INTO public.notice VALUES (4488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690372439);
INSERT INTO public.notice VALUES (4489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690373039);
INSERT INTO public.notice VALUES (4490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690373638);
INSERT INTO public.notice VALUES (4492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690374839);
INSERT INTO public.notice VALUES (4493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690375438);
INSERT INTO public.notice VALUES (4498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690378438);
INSERT INTO public.notice VALUES (4499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690379039);
INSERT INTO public.notice VALUES (4500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690379639);
INSERT INTO public.notice VALUES (4501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690380238);
INSERT INTO public.notice VALUES (4502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690380838);
INSERT INTO public.notice VALUES (4503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690381439);
INSERT INTO public.notice VALUES (4504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690382039);
INSERT INTO public.notice VALUES (4505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690382638);
INSERT INTO public.notice VALUES (4506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690383237);
INSERT INTO public.notice VALUES (4509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690385038);
INSERT INTO public.notice VALUES (4882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690608839);
INSERT INTO public.notice VALUES (4883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690609439);
INSERT INTO public.notice VALUES (4884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690610038);
INSERT INTO public.notice VALUES (4887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690611839);
INSERT INTO public.notice VALUES (4888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690612438);
INSERT INTO public.notice VALUES (4889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690613037);
INSERT INTO public.notice VALUES (4890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690613639);
INSERT INTO public.notice VALUES (4891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690614238);
INSERT INTO public.notice VALUES (4894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690616039);
INSERT INTO public.notice VALUES (4895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690616638);
INSERT INTO public.notice VALUES (4896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690617238);
INSERT INTO public.notice VALUES (4899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690619038);
INSERT INTO public.notice VALUES (4900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690619637);
INSERT INTO public.notice VALUES (4507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690383839);
INSERT INTO public.notice VALUES (4508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690384439);
INSERT INTO public.notice VALUES (4510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690385639);
INSERT INTO public.notice VALUES (4511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690386239);
INSERT INTO public.notice VALUES (4512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690386838);
INSERT INTO public.notice VALUES (4513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690387438);
INSERT INTO public.notice VALUES (4514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690388039);
INSERT INTO public.notice VALUES (4515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690388638);
INSERT INTO public.notice VALUES (4516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690389238);
INSERT INTO public.notice VALUES (4517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690389840);
INSERT INTO public.notice VALUES (4518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690390439);
INSERT INTO public.notice VALUES (4519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690391039);
INSERT INTO public.notice VALUES (4520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690391638);
INSERT INTO public.notice VALUES (4521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690392239);
INSERT INTO public.notice VALUES (4522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690392839);
INSERT INTO public.notice VALUES (4523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690393438);
INSERT INTO public.notice VALUES (4525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690394639);
INSERT INTO public.notice VALUES (4526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690395239);
INSERT INTO public.notice VALUES (4886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690611239);
INSERT INTO public.notice VALUES (4892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690614838);
INSERT INTO public.notice VALUES (4893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690615439);
INSERT INTO public.notice VALUES (4897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690617839);
INSERT INTO public.notice VALUES (4898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690618438);
INSERT INTO public.notice VALUES (4901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690620239);
INSERT INTO public.notice VALUES (4904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690622039);
INSERT INTO public.notice VALUES (4909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690625038);
INSERT INTO public.notice VALUES (4910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690625638);
INSERT INTO public.notice VALUES (4911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690626239);
INSERT INTO public.notice VALUES (4912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690626840);
INSERT INTO public.notice VALUES (4914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690628037);
INSERT INTO public.notice VALUES (4524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690394038);
INSERT INTO public.notice VALUES (4527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690395838);
INSERT INTO public.notice VALUES (4528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690396438);
INSERT INTO public.notice VALUES (4529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690397039);
INSERT INTO public.notice VALUES (4530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690397639);
INSERT INTO public.notice VALUES (4531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690398238);
INSERT INTO public.notice VALUES (4532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690398838);
INSERT INTO public.notice VALUES (4533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690399439);
INSERT INTO public.notice VALUES (4534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690400038);
INSERT INTO public.notice VALUES (4535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690400638);
INSERT INTO public.notice VALUES (4536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690401239);
INSERT INTO public.notice VALUES (4537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690401839);
INSERT INTO public.notice VALUES (4538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690402438);
INSERT INTO public.notice VALUES (4539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690403038);
INSERT INTO public.notice VALUES (4540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690403639);
INSERT INTO public.notice VALUES (4541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690404238);
INSERT INTO public.notice VALUES (4542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690404838);
INSERT INTO public.notice VALUES (4902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690620838);
INSERT INTO public.notice VALUES (4903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690621438);
INSERT INTO public.notice VALUES (4905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690622639);
INSERT INTO public.notice VALUES (5053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690711438);
INSERT INTO public.notice VALUES (5107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690743838);
INSERT INTO public.notice VALUES (5110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690745638);
INSERT INTO public.notice VALUES (5116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690749239);
INSERT INTO public.notice VALUES (5122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690752838);
INSERT INTO public.notice VALUES (5124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690754038);
INSERT INTO public.notice VALUES (5125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690754638);
INSERT INTO public.notice VALUES (5126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690755239);
INSERT INTO public.notice VALUES (5127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690755839);
INSERT INTO public.notice VALUES (5128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690756439);
INSERT INTO public.notice VALUES (4543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690405437);
INSERT INTO public.notice VALUES (4544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690406039);
INSERT INTO public.notice VALUES (4545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690406638);
INSERT INTO public.notice VALUES (4546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690407238);
INSERT INTO public.notice VALUES (4547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690407839);
INSERT INTO public.notice VALUES (4548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690408439);
INSERT INTO public.notice VALUES (4549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690409038);
INSERT INTO public.notice VALUES (4550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690409638);
INSERT INTO public.notice VALUES (4551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690410239);
INSERT INTO public.notice VALUES (4552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690410839);
INSERT INTO public.notice VALUES (4553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690411438);
INSERT INTO public.notice VALUES (4554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690412037);
INSERT INTO public.notice VALUES (4555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690412639);
INSERT INTO public.notice VALUES (4556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690413238);
INSERT INTO public.notice VALUES (4557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690413838);
INSERT INTO public.notice VALUES (4558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690414437);
INSERT INTO public.notice VALUES (4559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690415039);
INSERT INTO public.notice VALUES (4560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690415638);
INSERT INTO public.notice VALUES (4561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690416238);
INSERT INTO public.notice VALUES (4562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690416839);
INSERT INTO public.notice VALUES (4563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690417439);
INSERT INTO public.notice VALUES (4564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690418038);
INSERT INTO public.notice VALUES (4565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690418638);
INSERT INTO public.notice VALUES (4566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690419239);
INSERT INTO public.notice VALUES (4567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690419839);
INSERT INTO public.notice VALUES (4568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690420438);
INSERT INTO public.notice VALUES (4569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690421037);
INSERT INTO public.notice VALUES (4570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690421639);
INSERT INTO public.notice VALUES (4571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690422238);
INSERT INTO public.notice VALUES (4572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690422838);
INSERT INTO public.notice VALUES (4573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690423439);
INSERT INTO public.notice VALUES (4574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690424039);
INSERT INTO public.notice VALUES (4575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690424638);
INSERT INTO public.notice VALUES (4578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690426439);
INSERT INTO public.notice VALUES (4581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690428239);
INSERT INTO public.notice VALUES (4906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690623238);
INSERT INTO public.notice VALUES (4907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690623837);
INSERT INTO public.notice VALUES (4908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690624439);
INSERT INTO public.notice VALUES (4913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690627438);
INSERT INTO public.notice VALUES (4915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690628639);
INSERT INTO public.notice VALUES (5054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690712040);
INSERT INTO public.notice VALUES (5055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690712640);
INSERT INTO public.notice VALUES (5056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690713238);
INSERT INTO public.notice VALUES (5057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690713838);
INSERT INTO public.notice VALUES (5058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690714439);
INSERT INTO public.notice VALUES (4576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690425239);
INSERT INTO public.notice VALUES (4577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690425839);
INSERT INTO public.notice VALUES (4579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690427038);
INSERT INTO public.notice VALUES (4580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690427641);
INSERT INTO public.notice VALUES (4582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690428839);
INSERT INTO public.notice VALUES (4583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690429438);
INSERT INTO public.notice VALUES (4584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690430039);
INSERT INTO public.notice VALUES (4585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690430639);
INSERT INTO public.notice VALUES (4586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690431238);
INSERT INTO public.notice VALUES (4587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690431838);
INSERT INTO public.notice VALUES (4588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690432439);
INSERT INTO public.notice VALUES (4589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690433038);
INSERT INTO public.notice VALUES (4590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690433638);
INSERT INTO public.notice VALUES (4591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690434237);
INSERT INTO public.notice VALUES (4592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690434839);
INSERT INTO public.notice VALUES (4593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690435438);
INSERT INTO public.notice VALUES (4916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690629239);
INSERT INTO public.notice VALUES (4919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690631039);
INSERT INTO public.notice VALUES (4920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690631638);
INSERT INTO public.notice VALUES (4921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690632238);
INSERT INTO public.notice VALUES (4922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690632839);
INSERT INTO public.notice VALUES (4923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690633438);
INSERT INTO public.notice VALUES (4926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690635239);
INSERT INTO public.notice VALUES (5061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690716238);
INSERT INTO public.notice VALUES (5062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690716839);
INSERT INTO public.notice VALUES (5067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690719838);
INSERT INTO public.notice VALUES (5073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690723439);
INSERT INTO public.notice VALUES (5074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690724038);
INSERT INTO public.notice VALUES (5077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690725839);
INSERT INTO public.notice VALUES (5080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690727639);
INSERT INTO public.notice VALUES (4594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690436039);
INSERT INTO public.notice VALUES (4595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690436639);
INSERT INTO public.notice VALUES (4596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690437239);
INSERT INTO public.notice VALUES (4597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690437838);
INSERT INTO public.notice VALUES (4598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690438438);
INSERT INTO public.notice VALUES (4599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690439039);
INSERT INTO public.notice VALUES (4600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690439638);
INSERT INTO public.notice VALUES (4601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690440238);
INSERT INTO public.notice VALUES (4602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690440839);
INSERT INTO public.notice VALUES (4603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690441439);
INSERT INTO public.notice VALUES (4604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690442038);
INSERT INTO public.notice VALUES (4605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690442638);
INSERT INTO public.notice VALUES (4606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690443239);
INSERT INTO public.notice VALUES (4607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690443838);
INSERT INTO public.notice VALUES (4608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690444438);
INSERT INTO public.notice VALUES (4609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690445037);
INSERT INTO public.notice VALUES (4610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690445639);
INSERT INTO public.notice VALUES (4611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690446238);
INSERT INTO public.notice VALUES (4613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690447439);
INSERT INTO public.notice VALUES (4614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690448038);
INSERT INTO public.notice VALUES (4624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690454039);
INSERT INTO public.notice VALUES (4625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690454638);
INSERT INTO public.notice VALUES (4626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690455238);
INSERT INTO public.notice VALUES (4627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690455840);
INSERT INTO public.notice VALUES (4628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690456439);
INSERT INTO public.notice VALUES (4629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690457038);
INSERT INTO public.notice VALUES (4631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690458239);
INSERT INTO public.notice VALUES (4633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690459438);
INSERT INTO public.notice VALUES (4634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690460037);
INSERT INTO public.notice VALUES (4636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690461238);
INSERT INTO public.notice VALUES (4612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690446838);
INSERT INTO public.notice VALUES (4615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690448639);
INSERT INTO public.notice VALUES (4616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690449237);
INSERT INTO public.notice VALUES (4617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690449839);
INSERT INTO public.notice VALUES (4618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690450438);
INSERT INTO public.notice VALUES (4619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690451038);
INSERT INTO public.notice VALUES (4620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690451640);
INSERT INTO public.notice VALUES (4621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690452238);
INSERT INTO public.notice VALUES (4622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690452838);
INSERT INTO public.notice VALUES (4623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690453438);
INSERT INTO public.notice VALUES (4630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690457638);
INSERT INTO public.notice VALUES (4632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690458839);
INSERT INTO public.notice VALUES (4635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690460639);
INSERT INTO public.notice VALUES (4638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690462439);
INSERT INTO public.notice VALUES (4639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690463039);
INSERT INTO public.notice VALUES (4637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690461838);
INSERT INTO public.notice VALUES (4640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690463638);
INSERT INTO public.notice VALUES (4641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690464237);
INSERT INTO public.notice VALUES (4642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690464840);
INSERT INTO public.notice VALUES (4643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690465438);
INSERT INTO public.notice VALUES (4644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690466038);
INSERT INTO public.notice VALUES (4645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690466639);
INSERT INTO public.notice VALUES (4917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690629838);
INSERT INTO public.notice VALUES (5064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690718038);
INSERT INTO public.notice VALUES (5065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690718639);
INSERT INTO public.notice VALUES (5066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690719239);
INSERT INTO public.notice VALUES (5068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690720438);
INSERT INTO public.notice VALUES (5069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690721039);
INSERT INTO public.notice VALUES (5070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690721638);
INSERT INTO public.notice VALUES (5071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690722238);
INSERT INTO public.notice VALUES (5129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690757037);
INSERT INTO public.notice VALUES (5130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690757639);
INSERT INTO public.notice VALUES (5131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690758238);
INSERT INTO public.notice VALUES (7020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691893020);
INSERT INTO public.notice VALUES (7021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691893619);
INSERT INTO public.notice VALUES (7022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691894219);
INSERT INTO public.notice VALUES (7023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691894820);
INSERT INTO public.notice VALUES (7024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691895420);
INSERT INTO public.notice VALUES (7025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691896019);
INSERT INTO public.notice VALUES (7026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691896619);
INSERT INTO public.notice VALUES (7027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691897220);
INSERT INTO public.notice VALUES (7028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691897820);
INSERT INTO public.notice VALUES (7030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691899018);
INSERT INTO public.notice VALUES (7035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691902020);
INSERT INTO public.notice VALUES (7036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691902619);
INSERT INTO public.notice VALUES (5132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690758838);
INSERT INTO public.notice VALUES (5133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690759438);
INSERT INTO public.notice VALUES (5134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690760039);
INSERT INTO public.notice VALUES (5135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690760638);
INSERT INTO public.notice VALUES (5136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690761238);
INSERT INTO public.notice VALUES (5137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690761839);
INSERT INTO public.notice VALUES (5138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690762439);
INSERT INTO public.notice VALUES (5139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690763038);
INSERT INTO public.notice VALUES (5140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690763637);
INSERT INTO public.notice VALUES (5141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690764239);
INSERT INTO public.notice VALUES (5142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690764838);
INSERT INTO public.notice VALUES (5143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690765857);
INSERT INTO public.notice VALUES (5144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690766457);
INSERT INTO public.notice VALUES (5145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690767057);
INSERT INTO public.notice VALUES (5146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690767658);
INSERT INTO public.notice VALUES (5147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690768257);
INSERT INTO public.notice VALUES (5148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690768858);
INSERT INTO public.notice VALUES (5149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690769458);
INSERT INTO public.notice VALUES (5150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690770058);
INSERT INTO public.notice VALUES (5151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690770657);
INSERT INTO public.notice VALUES (5152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690771258);
INSERT INTO public.notice VALUES (5153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690771858);
INSERT INTO public.notice VALUES (5154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690772457);
INSERT INTO public.notice VALUES (5155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690773057);
INSERT INTO public.notice VALUES (5156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690773658);
INSERT INTO public.notice VALUES (5157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690774258);
INSERT INTO public.notice VALUES (5158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690774857);
INSERT INTO public.notice VALUES (5159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690775457);
INSERT INTO public.notice VALUES (5160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690776058);
INSERT INTO public.notice VALUES (5161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690776657);
INSERT INTO public.notice VALUES (5162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690777257);
INSERT INTO public.notice VALUES (5163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690777856);
INSERT INTO public.notice VALUES (5164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690778458);
INSERT INTO public.notice VALUES (5165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690779057);
INSERT INTO public.notice VALUES (5166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690779657);
INSERT INTO public.notice VALUES (5167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690780258);
INSERT INTO public.notice VALUES (5168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690780858);
INSERT INTO public.notice VALUES (5169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690781457);
INSERT INTO public.notice VALUES (5170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690782056);
INSERT INTO public.notice VALUES (5171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690782658);
INSERT INTO public.notice VALUES (5172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690783257);
INSERT INTO public.notice VALUES (5173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690783857);
INSERT INTO public.notice VALUES (5174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690784458);
INSERT INTO public.notice VALUES (5175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690785058);
INSERT INTO public.notice VALUES (5176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690785657);
INSERT INTO public.notice VALUES (5177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690786257);
INSERT INTO public.notice VALUES (5178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690786858);
INSERT INTO public.notice VALUES (5179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690787458);
INSERT INTO public.notice VALUES (5180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690788058);
INSERT INTO public.notice VALUES (5181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690788658);
INSERT INTO public.notice VALUES (5182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690789258);
INSERT INTO public.notice VALUES (5183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690789857);
INSERT INTO public.notice VALUES (5184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690790457);
INSERT INTO public.notice VALUES (5185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690791058);
INSERT INTO public.notice VALUES (5192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690795258);
INSERT INTO public.notice VALUES (5193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690795858);
INSERT INTO public.notice VALUES (5194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690796457);
INSERT INTO public.notice VALUES (5195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690797057);
INSERT INTO public.notice VALUES (5196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690797658);
INSERT INTO public.notice VALUES (5197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690798258);
INSERT INTO public.notice VALUES (5186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690791658);
INSERT INTO public.notice VALUES (5187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690792257);
INSERT INTO public.notice VALUES (5188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690792858);
INSERT INTO public.notice VALUES (5189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690793458);
INSERT INTO public.notice VALUES (5190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690794057);
INSERT INTO public.notice VALUES (5191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690794657);
INSERT INTO public.notice VALUES (5201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690800657);
INSERT INTO public.notice VALUES (5202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690801257);
INSERT INTO public.notice VALUES (5203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690801858);
INSERT INTO public.notice VALUES (5204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690802458);
INSERT INTO public.notice VALUES (5215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690809057);
INSERT INTO public.notice VALUES (5216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690809658);
INSERT INTO public.notice VALUES (5217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690810258);
INSERT INTO public.notice VALUES (5218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690810859);
INSERT INTO public.notice VALUES (5219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690811457);
INSERT INTO public.notice VALUES (5198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690798857);
INSERT INTO public.notice VALUES (5199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690799458);
INSERT INTO public.notice VALUES (5200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690800058);
INSERT INTO public.notice VALUES (5205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690803057);
INSERT INTO public.notice VALUES (5206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690803658);
INSERT INTO public.notice VALUES (5207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690804258);
INSERT INTO public.notice VALUES (5208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690804857);
INSERT INTO public.notice VALUES (5209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690805457);
INSERT INTO public.notice VALUES (5210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690806059);
INSERT INTO public.notice VALUES (5211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690806658);
INSERT INTO public.notice VALUES (5212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690807257);
INSERT INTO public.notice VALUES (5213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690807857);
INSERT INTO public.notice VALUES (5214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690808458);
INSERT INTO public.notice VALUES (5239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690823459);
INSERT INTO public.notice VALUES (5240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690824058);
INSERT INTO public.notice VALUES (5220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690812057);
INSERT INTO public.notice VALUES (5221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690812659);
INSERT INTO public.notice VALUES (5222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690813258);
INSERT INTO public.notice VALUES (5223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690813857);
INSERT INTO public.notice VALUES (5224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690814457);
INSERT INTO public.notice VALUES (5225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690815058);
INSERT INTO public.notice VALUES (5226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690815658);
INSERT INTO public.notice VALUES (5227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690816258);
INSERT INTO public.notice VALUES (5228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690816859);
INSERT INTO public.notice VALUES (5229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690817459);
INSERT INTO public.notice VALUES (5230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690818057);
INSERT INTO public.notice VALUES (5231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690818658);
INSERT INTO public.notice VALUES (5232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690819258);
INSERT INTO public.notice VALUES (5233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690819858);
INSERT INTO public.notice VALUES (5234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690820457);
INSERT INTO public.notice VALUES (5235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690821057);
INSERT INTO public.notice VALUES (5236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690821658);
INSERT INTO public.notice VALUES (5237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690822257);
INSERT INTO public.notice VALUES (5238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690822857);
INSERT INTO public.notice VALUES (5241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690824657);
INSERT INTO public.notice VALUES (5242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690825257);
INSERT INTO public.notice VALUES (5243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690825858);
INSERT INTO public.notice VALUES (5244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690826457);
INSERT INTO public.notice VALUES (5245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690827057);
INSERT INTO public.notice VALUES (5246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690827658);
INSERT INTO public.notice VALUES (5247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690828258);
INSERT INTO public.notice VALUES (5248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690828857);
INSERT INTO public.notice VALUES (5249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690829457);
INSERT INTO public.notice VALUES (5250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690830058);
INSERT INTO public.notice VALUES (5251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690830657);
INSERT INTO public.notice VALUES (5252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690831257);
INSERT INTO public.notice VALUES (5253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690831856);
INSERT INTO public.notice VALUES (5254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690832458);
INSERT INTO public.notice VALUES (5255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690833057);
INSERT INTO public.notice VALUES (5256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690833657);
INSERT INTO public.notice VALUES (5257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690834258);
INSERT INTO public.notice VALUES (5258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690834858);
INSERT INTO public.notice VALUES (5259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690835457);
INSERT INTO public.notice VALUES (5260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690836056);
INSERT INTO public.notice VALUES (5261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690836658);
INSERT INTO public.notice VALUES (5272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690843258);
INSERT INTO public.notice VALUES (7029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691898419);
INSERT INTO public.notice VALUES (7031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691899620);
INSERT INTO public.notice VALUES (7032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691900219);
INSERT INTO public.notice VALUES (7033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691900819);
INSERT INTO public.notice VALUES (5262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690837257);
INSERT INTO public.notice VALUES (5263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690837857);
INSERT INTO public.notice VALUES (5264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690838458);
INSERT INTO public.notice VALUES (5265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690839058);
INSERT INTO public.notice VALUES (5266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690839657);
INSERT INTO public.notice VALUES (5267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690840257);
INSERT INTO public.notice VALUES (5268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690840858);
INSERT INTO public.notice VALUES (5269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690841457);
INSERT INTO public.notice VALUES (5270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690842057);
INSERT INTO public.notice VALUES (5271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690842658);
INSERT INTO public.notice VALUES (5273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690843857);
INSERT INTO public.notice VALUES (5274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690844457);
INSERT INTO public.notice VALUES (5275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690845058);
INSERT INTO public.notice VALUES (5276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690845658);
INSERT INTO public.notice VALUES (5277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690846257);
INSERT INTO public.notice VALUES (5278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690846856);
INSERT INTO public.notice VALUES (5279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690847458);
INSERT INTO public.notice VALUES (5280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690848057);
INSERT INTO public.notice VALUES (5283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690849858);
INSERT INTO public.notice VALUES (5284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690850457);
INSERT INTO public.notice VALUES (5291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690854657);
INSERT INTO public.notice VALUES (5296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690857656);
INSERT INTO public.notice VALUES (7034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691901420);
INSERT INTO public.notice VALUES (7045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691908020);
INSERT INTO public.notice VALUES (7046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691908619);
INSERT INTO public.notice VALUES (7047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691909219);
INSERT INTO public.notice VALUES (7048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691909818);
INSERT INTO public.notice VALUES (7049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691910420);
INSERT INTO public.notice VALUES (7050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691911019);
INSERT INTO public.notice VALUES (7051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691911619);
INSERT INTO public.notice VALUES (5281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690848657);
INSERT INTO public.notice VALUES (5282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690849258);
INSERT INTO public.notice VALUES (5285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690851057);
INSERT INTO public.notice VALUES (5286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690851658);
INSERT INTO public.notice VALUES (5287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690852258);
INSERT INTO public.notice VALUES (5288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690852857);
INSERT INTO public.notice VALUES (5289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690853456);
INSERT INTO public.notice VALUES (5290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690854058);
INSERT INTO public.notice VALUES (5292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690855257);
INSERT INTO public.notice VALUES (5293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690855858);
INSERT INTO public.notice VALUES (5294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690856458);
INSERT INTO public.notice VALUES (5295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690857057);
INSERT INTO public.notice VALUES (5297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690858258);
INSERT INTO public.notice VALUES (5298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690858858);
INSERT INTO public.notice VALUES (5299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690859457);
INSERT INTO public.notice VALUES (5300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690860058);
INSERT INTO public.notice VALUES (5301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690860658);
INSERT INTO public.notice VALUES (5309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690865457);
INSERT INTO public.notice VALUES (7037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691903219);
INSERT INTO public.notice VALUES (7038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691903820);
INSERT INTO public.notice VALUES (7039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691904420);
INSERT INTO public.notice VALUES (7040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691905019);
INSERT INTO public.notice VALUES (7041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691905619);
INSERT INTO public.notice VALUES (7042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691906220);
INSERT INTO public.notice VALUES (7043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691906819);
INSERT INTO public.notice VALUES (7044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691907419);
INSERT INTO public.notice VALUES (7058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691915819);
INSERT INTO public.notice VALUES (7061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691917619);
INSERT INTO public.notice VALUES (7062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691918219);
INSERT INTO public.notice VALUES (7231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692019619);
INSERT INTO public.notice VALUES (5302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690861257);
INSERT INTO public.notice VALUES (5303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690861857);
INSERT INTO public.notice VALUES (5304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690862458);
INSERT INTO public.notice VALUES (5305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690863057);
INSERT INTO public.notice VALUES (5306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690863657);
INSERT INTO public.notice VALUES (5307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690864258);
INSERT INTO public.notice VALUES (5308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690864858);
INSERT INTO public.notice VALUES (5310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690866057);
INSERT INTO public.notice VALUES (5311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690866658);
INSERT INTO public.notice VALUES (5312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690867258);
INSERT INTO public.notice VALUES (5313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690867857);
INSERT INTO public.notice VALUES (5314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690868456);
INSERT INTO public.notice VALUES (5315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690869058);
INSERT INTO public.notice VALUES (5316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690869657);
INSERT INTO public.notice VALUES (5317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690870257);
INSERT INTO public.notice VALUES (5318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690870858);
INSERT INTO public.notice VALUES (5319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690871458);
INSERT INTO public.notice VALUES (5320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690872057);
INSERT INTO public.notice VALUES (5321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690872657);
INSERT INTO public.notice VALUES (5322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690873258);
INSERT INTO public.notice VALUES (5323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690873857);
INSERT INTO public.notice VALUES (5324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690874457);
INSERT INTO public.notice VALUES (5325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690875058);
INSERT INTO public.notice VALUES (5326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690875658);
INSERT INTO public.notice VALUES (5327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690876257);
INSERT INTO public.notice VALUES (5328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690876857);
INSERT INTO public.notice VALUES (5329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690877458);
INSERT INTO public.notice VALUES (5330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690878058);
INSERT INTO public.notice VALUES (5331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690878657);
INSERT INTO public.notice VALUES (5332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690879257);
INSERT INTO public.notice VALUES (5333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690879858);
INSERT INTO public.notice VALUES (5334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690880457);
INSERT INTO public.notice VALUES (5335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690881057);
INSERT INTO public.notice VALUES (5336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690881658);
INSERT INTO public.notice VALUES (7052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691912220);
INSERT INTO public.notice VALUES (7053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691912820);
INSERT INTO public.notice VALUES (7054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691913420);
INSERT INTO public.notice VALUES (7055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691914019);
INSERT INTO public.notice VALUES (7056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691914620);
INSERT INTO public.notice VALUES (7057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691915219);
INSERT INTO public.notice VALUES (7059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691916420);
INSERT INTO public.notice VALUES (7060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691917020);
INSERT INTO public.notice VALUES (7234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692021422);
INSERT INTO public.notice VALUES (7235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692022019);
INSERT INTO public.notice VALUES (7236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692022621);
INSERT INTO public.notice VALUES (5337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690882258);
INSERT INTO public.notice VALUES (5338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690882857);
INSERT INTO public.notice VALUES (5339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690883457);
INSERT INTO public.notice VALUES (5340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690884058);
INSERT INTO public.notice VALUES (5341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690884657);
INSERT INTO public.notice VALUES (5342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690885257);
INSERT INTO public.notice VALUES (5343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690885858);
INSERT INTO public.notice VALUES (5344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690886458);
INSERT INTO public.notice VALUES (5345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690887057);
INSERT INTO public.notice VALUES (5346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690887657);
INSERT INTO public.notice VALUES (5347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690888258);
INSERT INTO public.notice VALUES (5348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690888858);
INSERT INTO public.notice VALUES (5349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690889457);
INSERT INTO public.notice VALUES (5350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690890056);
INSERT INTO public.notice VALUES (5351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690890658);
INSERT INTO public.notice VALUES (5352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690891257);
INSERT INTO public.notice VALUES (5353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690891857);
INSERT INTO public.notice VALUES (5354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690892458);
INSERT INTO public.notice VALUES (5355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690893058);
INSERT INTO public.notice VALUES (5356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690893657);
INSERT INTO public.notice VALUES (5357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690894257);
INSERT INTO public.notice VALUES (5358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690894858);
INSERT INTO public.notice VALUES (5359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690895458);
INSERT INTO public.notice VALUES (5360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690896057);
INSERT INTO public.notice VALUES (5361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690896656);
INSERT INTO public.notice VALUES (5381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690908657);
INSERT INTO public.notice VALUES (5389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690913457);
INSERT INTO public.notice VALUES (5390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690914058);
INSERT INTO public.notice VALUES (5391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690914658);
INSERT INTO public.notice VALUES (5392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690915257);
INSERT INTO public.notice VALUES (5362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690897258);
INSERT INTO public.notice VALUES (5363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690897857);
INSERT INTO public.notice VALUES (5364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690898457);
INSERT INTO public.notice VALUES (5365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690899058);
INSERT INTO public.notice VALUES (5366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690899658);
INSERT INTO public.notice VALUES (5367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690900257);
INSERT INTO public.notice VALUES (5368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690900857);
INSERT INTO public.notice VALUES (5369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690901458);
INSERT INTO public.notice VALUES (5370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690902057);
INSERT INTO public.notice VALUES (5371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690902658);
INSERT INTO public.notice VALUES (5372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690903258);
INSERT INTO public.notice VALUES (5373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690903858);
INSERT INTO public.notice VALUES (5374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690904457);
INSERT INTO public.notice VALUES (5375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690905057);
INSERT INTO public.notice VALUES (5376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690905658);
INSERT INTO public.notice VALUES (5377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690906258);
INSERT INTO public.notice VALUES (5378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690906857);
INSERT INTO public.notice VALUES (5379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690907458);
INSERT INTO public.notice VALUES (5380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690908058);
INSERT INTO public.notice VALUES (5382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690909257);
INSERT INTO public.notice VALUES (5383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690909858);
INSERT INTO public.notice VALUES (5384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690910458);
INSERT INTO public.notice VALUES (5385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690911057);
INSERT INTO public.notice VALUES (5386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690911657);
INSERT INTO public.notice VALUES (5387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690912258);
INSERT INTO public.notice VALUES (5388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690912857);
INSERT INTO public.notice VALUES (5415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690929058);
INSERT INTO public.notice VALUES (5427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690936258);
INSERT INTO public.notice VALUES (5428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690936857);
INSERT INTO public.notice VALUES (5429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690937457);
INSERT INTO public.notice VALUES (5393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690915857);
INSERT INTO public.notice VALUES (5394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690916458);
INSERT INTO public.notice VALUES (5395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690917057);
INSERT INTO public.notice VALUES (5396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690917657);
INSERT INTO public.notice VALUES (5397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690918256);
INSERT INTO public.notice VALUES (5398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690918858);
INSERT INTO public.notice VALUES (5399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690919457);
INSERT INTO public.notice VALUES (5400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690920057);
INSERT INTO public.notice VALUES (5401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690920658);
INSERT INTO public.notice VALUES (5402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690921258);
INSERT INTO public.notice VALUES (5403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690921857);
INSERT INTO public.notice VALUES (5404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690922457);
INSERT INTO public.notice VALUES (5405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690923058);
INSERT INTO public.notice VALUES (5406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690923657);
INSERT INTO public.notice VALUES (5407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690924257);
INSERT INTO public.notice VALUES (5408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690924858);
INSERT INTO public.notice VALUES (5409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690925458);
INSERT INTO public.notice VALUES (5410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690926057);
INSERT INTO public.notice VALUES (5411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690926660);
INSERT INTO public.notice VALUES (5412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690927258);
INSERT INTO public.notice VALUES (5413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690927858);
INSERT INTO public.notice VALUES (5414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690928457);
INSERT INTO public.notice VALUES (5416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690929658);
INSERT INTO public.notice VALUES (5417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690930257);
INSERT INTO public.notice VALUES (5418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690930857);
INSERT INTO public.notice VALUES (5419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690931458);
INSERT INTO public.notice VALUES (5420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690932058);
INSERT INTO public.notice VALUES (5421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690932657);
INSERT INTO public.notice VALUES (5422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690933257);
INSERT INTO public.notice VALUES (5423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690933858);
INSERT INTO public.notice VALUES (5424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690934457);
INSERT INTO public.notice VALUES (5425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690935057);
INSERT INTO public.notice VALUES (5426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690935658);
INSERT INTO public.notice VALUES (5433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690939859);
INSERT INTO public.notice VALUES (7063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691918820);
INSERT INTO public.notice VALUES (7067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691921220);
INSERT INTO public.notice VALUES (7068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691921819);
INSERT INTO public.notice VALUES (7069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691922419);
INSERT INTO public.notice VALUES (7071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691923620);
INSERT INTO public.notice VALUES (7072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691924219);
INSERT INTO public.notice VALUES (7075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691926019);
INSERT INTO public.notice VALUES (7076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691926619);
INSERT INTO public.notice VALUES (7077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691927220);
INSERT INTO public.notice VALUES (7078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691927820);
INSERT INTO public.notice VALUES (7079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691928419);
INSERT INTO public.notice VALUES (5430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690938058);
INSERT INTO public.notice VALUES (5431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690938657);
INSERT INTO public.notice VALUES (5432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690939257);
INSERT INTO public.notice VALUES (5434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690940458);
INSERT INTO public.notice VALUES (5435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690941057);
INSERT INTO public.notice VALUES (5436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690941657);
INSERT INTO public.notice VALUES (5437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690942258);
INSERT INTO public.notice VALUES (5438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690942858);
INSERT INTO public.notice VALUES (5439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690943457);
INSERT INTO public.notice VALUES (5440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690944057);
INSERT INTO public.notice VALUES (5441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690944658);
INSERT INTO public.notice VALUES (5442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690945257);
INSERT INTO public.notice VALUES (5443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690945858);
INSERT INTO public.notice VALUES (5444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690946458);
INSERT INTO public.notice VALUES (5445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690947058);
INSERT INTO public.notice VALUES (5446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690947657);
INSERT INTO public.notice VALUES (5447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690948257);
INSERT INTO public.notice VALUES (5448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690948858);
INSERT INTO public.notice VALUES (5449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690949458);
INSERT INTO public.notice VALUES (5450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690950057);
INSERT INTO public.notice VALUES (5451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690950656);
INSERT INTO public.notice VALUES (5452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690951258);
INSERT INTO public.notice VALUES (5453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690951857);
INSERT INTO public.notice VALUES (5454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690952457);
INSERT INTO public.notice VALUES (5455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690953058);
INSERT INTO public.notice VALUES (5456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690953658);
INSERT INTO public.notice VALUES (5460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690956058);
INSERT INTO public.notice VALUES (5461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690956657);
INSERT INTO public.notice VALUES (7064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691919419);
INSERT INTO public.notice VALUES (7237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692023220);
INSERT INTO public.notice VALUES (5457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690954257);
INSERT INTO public.notice VALUES (5458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690954857);
INSERT INTO public.notice VALUES (5459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690955458);
INSERT INTO public.notice VALUES (5462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690957256);
INSERT INTO public.notice VALUES (5463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690957858);
INSERT INTO public.notice VALUES (5464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690958457);
INSERT INTO public.notice VALUES (5465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690959057);
INSERT INTO public.notice VALUES (5466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690959658);
INSERT INTO public.notice VALUES (5467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690960258);
INSERT INTO public.notice VALUES (5468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690960857);
INSERT INTO public.notice VALUES (5469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690961456);
INSERT INTO public.notice VALUES (5470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690962058);
INSERT INTO public.notice VALUES (5471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690962658);
INSERT INTO public.notice VALUES (5472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690963257);
INSERT INTO public.notice VALUES (5473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690963858);
INSERT INTO public.notice VALUES (5474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690964459);
INSERT INTO public.notice VALUES (5475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690965057);
INSERT INTO public.notice VALUES (5476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690965657);
INSERT INTO public.notice VALUES (5477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690966258);
INSERT INTO public.notice VALUES (5478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690966857);
INSERT INTO public.notice VALUES (5479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690967457);
INSERT INTO public.notice VALUES (5480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690968056);
INSERT INTO public.notice VALUES (5481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690968658);
INSERT INTO public.notice VALUES (5482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690969257);
INSERT INTO public.notice VALUES (5483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690969857);
INSERT INTO public.notice VALUES (5484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690970458);
INSERT INTO public.notice VALUES (5485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690971058);
INSERT INTO public.notice VALUES (5486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690971657);
INSERT INTO public.notice VALUES (5487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690972256);
INSERT INTO public.notice VALUES (5488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690972858);
INSERT INTO public.notice VALUES (5489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690973457);
INSERT INTO public.notice VALUES (5490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690974057);
INSERT INTO public.notice VALUES (5502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690981258);
INSERT INTO public.notice VALUES (5503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690981858);
INSERT INTO public.notice VALUES (5504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690982457);
INSERT INTO public.notice VALUES (5505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690983056);
INSERT INTO public.notice VALUES (5506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690983658);
INSERT INTO public.notice VALUES (5507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690984257);
INSERT INTO public.notice VALUES (5508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690984857);
INSERT INTO public.notice VALUES (5509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690985458);
INSERT INTO public.notice VALUES (5510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690986058);
INSERT INTO public.notice VALUES (5511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690986657);
INSERT INTO public.notice VALUES (5512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690987257);
INSERT INTO public.notice VALUES (5513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690987858);
INSERT INTO public.notice VALUES (5514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690988457);
INSERT INTO public.notice VALUES (5491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690974658);
INSERT INTO public.notice VALUES (5492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690975258);
INSERT INTO public.notice VALUES (5493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690975857);
INSERT INTO public.notice VALUES (5494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690976457);
INSERT INTO public.notice VALUES (5495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690977058);
INSERT INTO public.notice VALUES (5496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690977657);
INSERT INTO public.notice VALUES (5497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690978257);
INSERT INTO public.notice VALUES (5498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690978856);
INSERT INTO public.notice VALUES (5499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690979458);
INSERT INTO public.notice VALUES (5500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690980057);
INSERT INTO public.notice VALUES (5501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690980657);
INSERT INTO public.notice VALUES (5516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690989658);
INSERT INTO public.notice VALUES (7065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691920019);
INSERT INTO public.notice VALUES (7066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691920619);
INSERT INTO public.notice VALUES (7070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691923020);
INSERT INTO public.notice VALUES (5515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690989058);
INSERT INTO public.notice VALUES (5517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690990258);
INSERT INTO public.notice VALUES (5518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690990857);
INSERT INTO public.notice VALUES (5519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690991457);
INSERT INTO public.notice VALUES (5520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690992058);
INSERT INTO public.notice VALUES (5521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690992658);
INSERT INTO public.notice VALUES (5522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690993258);
INSERT INTO public.notice VALUES (5523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690993857);
INSERT INTO public.notice VALUES (5524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690994458);
INSERT INTO public.notice VALUES (5525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690995058);
INSERT INTO public.notice VALUES (5526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690995657);
INSERT INTO public.notice VALUES (5527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690996258);
INSERT INTO public.notice VALUES (5528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690996858);
INSERT INTO public.notice VALUES (5529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690997457);
INSERT INTO public.notice VALUES (5530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690998057);
INSERT INTO public.notice VALUES (5531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690998658);
INSERT INTO public.notice VALUES (5537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691002257);
INSERT INTO public.notice VALUES (5538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691002858);
INSERT INTO public.notice VALUES (5539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691003458);
INSERT INTO public.notice VALUES (5540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691004057);
INSERT INTO public.notice VALUES (5541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691004657);
INSERT INTO public.notice VALUES (5542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691005258);
INSERT INTO public.notice VALUES (5543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691005857);
INSERT INTO public.notice VALUES (5544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691006457);
INSERT INTO public.notice VALUES (5545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691007058);
INSERT INTO public.notice VALUES (5546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691007658);
INSERT INTO public.notice VALUES (5547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691008258);
INSERT INTO public.notice VALUES (5548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691008857);
INSERT INTO public.notice VALUES (5549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691009458);
INSERT INTO public.notice VALUES (5559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691015457);
INSERT INTO public.notice VALUES (5532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690999258);
INSERT INTO public.notice VALUES (5533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1690999857);
INSERT INTO public.notice VALUES (5534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691000456);
INSERT INTO public.notice VALUES (5535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691001058);
INSERT INTO public.notice VALUES (5536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691001657);
INSERT INTO public.notice VALUES (5550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691010058);
INSERT INTO public.notice VALUES (5551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691010657);
INSERT INTO public.notice VALUES (5552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691011257);
INSERT INTO public.notice VALUES (5553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691011858);
INSERT INTO public.notice VALUES (5554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691012457);
INSERT INTO public.notice VALUES (5555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691013057);
INSERT INTO public.notice VALUES (5556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691013658);
INSERT INTO public.notice VALUES (5557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691014258);
INSERT INTO public.notice VALUES (5558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691014857);
INSERT INTO public.notice VALUES (5560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691016058);
INSERT INTO public.notice VALUES (5561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691016658);
INSERT INTO public.notice VALUES (5562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691017257);
INSERT INTO public.notice VALUES (5563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691017856);
INSERT INTO public.notice VALUES (5564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691018458);
INSERT INTO public.notice VALUES (5565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691019057);
INSERT INTO public.notice VALUES (5566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691019657);
INSERT INTO public.notice VALUES (5567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691020258);
INSERT INTO public.notice VALUES (5568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691020858);
INSERT INTO public.notice VALUES (5569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691021457);
INSERT INTO public.notice VALUES (5570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691022057);
INSERT INTO public.notice VALUES (5577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691026257);
INSERT INTO public.notice VALUES (5578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691026858);
INSERT INTO public.notice VALUES (5579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691027457);
INSERT INTO public.notice VALUES (5580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691028057);
INSERT INTO public.notice VALUES (5581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691028656);
INSERT INTO public.notice VALUES (5571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691022658);
INSERT INTO public.notice VALUES (5572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691023257);
INSERT INTO public.notice VALUES (5573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691023857);
INSERT INTO public.notice VALUES (5574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691024458);
INSERT INTO public.notice VALUES (5575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691025058);
INSERT INTO public.notice VALUES (5576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691025657);
INSERT INTO public.notice VALUES (5584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691030457);
INSERT INTO public.notice VALUES (5585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691031058);
INSERT INTO public.notice VALUES (5588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691032857);
INSERT INTO public.notice VALUES (5589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691033458);
INSERT INTO public.notice VALUES (7073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691924819);
INSERT INTO public.notice VALUES (7238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692023820);
INSERT INTO public.notice VALUES (7239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692024419);
INSERT INTO public.notice VALUES (7240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692025019);
INSERT INTO public.notice VALUES (7241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692025620);
INSERT INTO public.notice VALUES (5582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691029258);
INSERT INTO public.notice VALUES (5583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691029857);
INSERT INTO public.notice VALUES (5586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691031658);
INSERT INTO public.notice VALUES (5587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691032257);
INSERT INTO public.notice VALUES (5590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691034057);
INSERT INTO public.notice VALUES (5591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691034657);
INSERT INTO public.notice VALUES (5592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691035258);
INSERT INTO public.notice VALUES (5593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691035858);
INSERT INTO public.notice VALUES (5594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691036457);
INSERT INTO public.notice VALUES (5595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691037057);
INSERT INTO public.notice VALUES (5596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691037658);
INSERT INTO public.notice VALUES (5597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691038258);
INSERT INTO public.notice VALUES (5598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691038857);
INSERT INTO public.notice VALUES (5599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691039458);
INSERT INTO public.notice VALUES (5600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691040058);
INSERT INTO public.notice VALUES (5601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691040657);
INSERT INTO public.notice VALUES (5609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691045457);
INSERT INTO public.notice VALUES (5610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691046058);
INSERT INTO public.notice VALUES (5611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691046658);
INSERT INTO public.notice VALUES (5612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691047257);
INSERT INTO public.notice VALUES (5613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691047857);
INSERT INTO public.notice VALUES (5614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691048458);
INSERT INTO public.notice VALUES (5615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691049057);
INSERT INTO public.notice VALUES (5616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691049657);
INSERT INTO public.notice VALUES (5624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691054456);
INSERT INTO public.notice VALUES (5625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691055058);
INSERT INTO public.notice VALUES (5626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691055657);
INSERT INTO public.notice VALUES (5627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691056257);
INSERT INTO public.notice VALUES (5628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691056858);
INSERT INTO public.notice VALUES (5629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691057458);
INSERT INTO public.notice VALUES (5602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691041257);
INSERT INTO public.notice VALUES (5603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691041858);
INSERT INTO public.notice VALUES (5604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691042458);
INSERT INTO public.notice VALUES (5605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691043057);
INSERT INTO public.notice VALUES (5606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691043656);
INSERT INTO public.notice VALUES (5607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691044258);
INSERT INTO public.notice VALUES (5608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691044857);
INSERT INTO public.notice VALUES (5617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691050258);
INSERT INTO public.notice VALUES (5618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691050858);
INSERT INTO public.notice VALUES (5619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691051457);
INSERT INTO public.notice VALUES (5620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691052057);
INSERT INTO public.notice VALUES (5621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691052658);
INSERT INTO public.notice VALUES (5622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691053257);
INSERT INTO public.notice VALUES (5623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691053857);
INSERT INTO public.notice VALUES (5634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691060457);
INSERT INTO public.notice VALUES (5630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691058057);
INSERT INTO public.notice VALUES (5631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691058657);
INSERT INTO public.notice VALUES (5632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691059258);
INSERT INTO public.notice VALUES (5633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691059857);
INSERT INTO public.notice VALUES (5652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691071257);
INSERT INTO public.notice VALUES (5655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691073057);
INSERT INTO public.notice VALUES (5656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691073657);
INSERT INTO public.notice VALUES (5657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691074258);
INSERT INTO public.notice VALUES (5658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691074857);
INSERT INTO public.notice VALUES (5659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691075458);
INSERT INTO public.notice VALUES (5660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691076058);
INSERT INTO public.notice VALUES (5661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691076658);
INSERT INTO public.notice VALUES (5662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691077257);
INSERT INTO public.notice VALUES (5663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691077857);
INSERT INTO public.notice VALUES (5664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691078458);
INSERT INTO public.notice VALUES (5635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691061058);
INSERT INTO public.notice VALUES (5636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691061658);
INSERT INTO public.notice VALUES (5637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691062257);
INSERT INTO public.notice VALUES (5638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691062857);
INSERT INTO public.notice VALUES (5639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691063458);
INSERT INTO public.notice VALUES (5640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691064058);
INSERT INTO public.notice VALUES (5641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691064657);
INSERT INTO public.notice VALUES (5642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691065256);
INSERT INTO public.notice VALUES (5643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691065858);
INSERT INTO public.notice VALUES (5644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691066457);
INSERT INTO public.notice VALUES (5645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691067057);
INSERT INTO public.notice VALUES (5646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691067658);
INSERT INTO public.notice VALUES (5647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691068258);
INSERT INTO public.notice VALUES (5648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691068858);
INSERT INTO public.notice VALUES (5649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691069457);
INSERT INTO public.notice VALUES (5650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691070058);
INSERT INTO public.notice VALUES (5651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691070657);
INSERT INTO public.notice VALUES (5653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691071858);
INSERT INTO public.notice VALUES (5654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691072458);
INSERT INTO public.notice VALUES (7074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691925420);
INSERT INTO public.notice VALUES (7087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691933219);
INSERT INTO public.notice VALUES (7088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691933820);
INSERT INTO public.notice VALUES (7089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691934420);
INSERT INTO public.notice VALUES (7090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691935019);
INSERT INTO public.notice VALUES (7091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691935618);
INSERT INTO public.notice VALUES (7092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691936220);
INSERT INTO public.notice VALUES (7093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691936819);
INSERT INTO public.notice VALUES (7094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691937419);
INSERT INTO public.notice VALUES (7095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691938020);
INSERT INTO public.notice VALUES (7096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691938620);
INSERT INTO public.notice VALUES (5665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691079057);
INSERT INTO public.notice VALUES (5666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691079657);
INSERT INTO public.notice VALUES (5667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691080256);
INSERT INTO public.notice VALUES (5668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691080858);
INSERT INTO public.notice VALUES (5669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691081457);
INSERT INTO public.notice VALUES (5670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691082057);
INSERT INTO public.notice VALUES (5671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691082659);
INSERT INTO public.notice VALUES (5672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691083258);
INSERT INTO public.notice VALUES (5673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691083857);
INSERT INTO public.notice VALUES (5674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691084458);
INSERT INTO public.notice VALUES (5675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691085058);
INSERT INTO public.notice VALUES (5676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691085657);
INSERT INTO public.notice VALUES (5677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691086257);
INSERT INTO public.notice VALUES (5678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691086858);
INSERT INTO public.notice VALUES (5679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691087458);
INSERT INTO public.notice VALUES (5680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691088057);
INSERT INTO public.notice VALUES (5681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691088657);
INSERT INTO public.notice VALUES (5684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691090457);
INSERT INTO public.notice VALUES (5685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691091056);
INSERT INTO public.notice VALUES (5686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691091658);
INSERT INTO public.notice VALUES (5687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691092257);
INSERT INTO public.notice VALUES (5688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691092857);
INSERT INTO public.notice VALUES (5689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691093458);
INSERT INTO public.notice VALUES (5690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691094058);
INSERT INTO public.notice VALUES (5691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691094657);
INSERT INTO public.notice VALUES (5692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691095256);
INSERT INTO public.notice VALUES (5693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691095858);
INSERT INTO public.notice VALUES (5694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691096457);
INSERT INTO public.notice VALUES (5695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691097057);
INSERT INTO public.notice VALUES (5696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691097659);
INSERT INTO public.notice VALUES (5682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691089259);
INSERT INTO public.notice VALUES (5683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691089858);
INSERT INTO public.notice VALUES (5722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691113258);
INSERT INTO public.notice VALUES (5723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691113857);
INSERT INTO public.notice VALUES (5724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691114457);
INSERT INTO public.notice VALUES (5725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691115058);
INSERT INTO public.notice VALUES (5726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691115658);
INSERT INTO public.notice VALUES (5727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691116258);
INSERT INTO public.notice VALUES (5728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691116857);
INSERT INTO public.notice VALUES (5729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691117458);
INSERT INTO public.notice VALUES (5730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691118058);
INSERT INTO public.notice VALUES (5731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691118657);
INSERT INTO public.notice VALUES (5732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691119258);
INSERT INTO public.notice VALUES (5733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691119858);
INSERT INTO public.notice VALUES (5734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691120457);
INSERT INTO public.notice VALUES (5697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691098258);
INSERT INTO public.notice VALUES (5698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691098857);
INSERT INTO public.notice VALUES (5699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691099457);
INSERT INTO public.notice VALUES (5700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691100058);
INSERT INTO public.notice VALUES (5701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691100658);
INSERT INTO public.notice VALUES (5702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691101257);
INSERT INTO public.notice VALUES (5703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691101856);
INSERT INTO public.notice VALUES (5704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691102458);
INSERT INTO public.notice VALUES (5705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691103057);
INSERT INTO public.notice VALUES (5706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691103657);
INSERT INTO public.notice VALUES (5707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691104258);
INSERT INTO public.notice VALUES (5708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691104858);
INSERT INTO public.notice VALUES (5709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691105457);
INSERT INTO public.notice VALUES (5710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691106057);
INSERT INTO public.notice VALUES (5711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691106658);
INSERT INTO public.notice VALUES (5712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691107257);
INSERT INTO public.notice VALUES (5713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691107857);
INSERT INTO public.notice VALUES (5714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691108459);
INSERT INTO public.notice VALUES (5715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691109058);
INSERT INTO public.notice VALUES (5716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691109657);
INSERT INTO public.notice VALUES (5717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691110257);
INSERT INTO public.notice VALUES (5718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691110858);
INSERT INTO public.notice VALUES (5719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691111457);
INSERT INTO public.notice VALUES (5720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691112057);
INSERT INTO public.notice VALUES (5721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691112658);
INSERT INTO public.notice VALUES (5738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691122857);
INSERT INTO public.notice VALUES (5741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691124657);
INSERT INTO public.notice VALUES (7080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691929019);
INSERT INTO public.notice VALUES (7081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691929620);
INSERT INTO public.notice VALUES (7242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692026219);
INSERT INTO public.notice VALUES (5735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691121057);
INSERT INTO public.notice VALUES (5736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691121658);
INSERT INTO public.notice VALUES (5737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691122257);
INSERT INTO public.notice VALUES (5739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691123456);
INSERT INTO public.notice VALUES (5740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691124058);
INSERT INTO public.notice VALUES (5742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691125257);
INSERT INTO public.notice VALUES (5743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691125858);
INSERT INTO public.notice VALUES (5744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691126458);
INSERT INTO public.notice VALUES (5745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691127057);
INSERT INTO public.notice VALUES (5746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691127657);
INSERT INTO public.notice VALUES (5747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691128258);
INSERT INTO public.notice VALUES (5748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691128857);
INSERT INTO public.notice VALUES (5749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691129457);
INSERT INTO public.notice VALUES (5750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691130058);
INSERT INTO public.notice VALUES (5751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691130658);
INSERT INTO public.notice VALUES (5752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691131257);
INSERT INTO public.notice VALUES (5753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691131857);
INSERT INTO public.notice VALUES (5754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691132458);
INSERT INTO public.notice VALUES (5755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691133057);
INSERT INTO public.notice VALUES (5765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691139058);
INSERT INTO public.notice VALUES (5766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691139657);
INSERT INTO public.notice VALUES (5767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691140257);
INSERT INTO public.notice VALUES (5772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691143258);
INSERT INTO public.notice VALUES (5773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691143858);
INSERT INTO public.notice VALUES (5774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691144457);
INSERT INTO public.notice VALUES (5775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691145057);
INSERT INTO public.notice VALUES (5776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691145658);
INSERT INTO public.notice VALUES (5777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691146257);
INSERT INTO public.notice VALUES (5778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691146857);
INSERT INTO public.notice VALUES (5779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691147458);
INSERT INTO public.notice VALUES (5756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691133657);
INSERT INTO public.notice VALUES (5757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691134256);
INSERT INTO public.notice VALUES (5758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691134858);
INSERT INTO public.notice VALUES (5759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691135457);
INSERT INTO public.notice VALUES (5760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691136057);
INSERT INTO public.notice VALUES (5761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691136659);
INSERT INTO public.notice VALUES (5762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691137257);
INSERT INTO public.notice VALUES (5763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691137857);
INSERT INTO public.notice VALUES (5764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691138457);
INSERT INTO public.notice VALUES (5768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691140858);
INSERT INTO public.notice VALUES (5769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691141458);
INSERT INTO public.notice VALUES (5770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691142057);
INSERT INTO public.notice VALUES (5771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691142657);
INSERT INTO public.notice VALUES (5803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691161858);
INSERT INTO public.notice VALUES (5804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691162458);
INSERT INTO public.notice VALUES (5780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691148058);
INSERT INTO public.notice VALUES (5781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691148657);
INSERT INTO public.notice VALUES (5782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691149256);
INSERT INTO public.notice VALUES (5783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691149858);
INSERT INTO public.notice VALUES (5784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691150457);
INSERT INTO public.notice VALUES (5785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691151057);
INSERT INTO public.notice VALUES (5786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691151658);
INSERT INTO public.notice VALUES (5787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691152258);
INSERT INTO public.notice VALUES (5788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691152857);
INSERT INTO public.notice VALUES (5789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691153457);
INSERT INTO public.notice VALUES (5790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691154058);
INSERT INTO public.notice VALUES (5791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691154658);
INSERT INTO public.notice VALUES (5792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691155257);
INSERT INTO public.notice VALUES (5793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691155857);
INSERT INTO public.notice VALUES (5794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691156458);
INSERT INTO public.notice VALUES (5795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691157057);
INSERT INTO public.notice VALUES (5796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691157657);
INSERT INTO public.notice VALUES (5797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691158258);
INSERT INTO public.notice VALUES (5798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691158858);
INSERT INTO public.notice VALUES (5799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691159457);
INSERT INTO public.notice VALUES (5800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691160057);
INSERT INTO public.notice VALUES (5801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691160658);
INSERT INTO public.notice VALUES (5802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691161258);
INSERT INTO public.notice VALUES (5820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691172057);
INSERT INTO public.notice VALUES (5821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691172657);
INSERT INTO public.notice VALUES (5823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691173858);
INSERT INTO public.notice VALUES (5824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691174457);
INSERT INTO public.notice VALUES (5825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691175057);
INSERT INTO public.notice VALUES (7082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691930219);
INSERT INTO public.notice VALUES (7083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691930819);
INSERT INTO public.notice VALUES (5805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691163058);
INSERT INTO public.notice VALUES (5806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691163657);
INSERT INTO public.notice VALUES (5807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691164257);
INSERT INTO public.notice VALUES (5808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691164858);
INSERT INTO public.notice VALUES (5809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691165458);
INSERT INTO public.notice VALUES (5810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691166057);
INSERT INTO public.notice VALUES (5811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691166656);
INSERT INTO public.notice VALUES (5812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691167258);
INSERT INTO public.notice VALUES (5813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691167857);
INSERT INTO public.notice VALUES (5814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691168457);
INSERT INTO public.notice VALUES (5815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691169058);
INSERT INTO public.notice VALUES (5816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691169658);
INSERT INTO public.notice VALUES (5817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691170257);
INSERT INTO public.notice VALUES (5818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691170857);
INSERT INTO public.notice VALUES (5819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691171458);
INSERT INTO public.notice VALUES (5822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691173259);
INSERT INTO public.notice VALUES (5826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691175658);
INSERT INTO public.notice VALUES (5827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691176258);
INSERT INTO public.notice VALUES (5828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691176857);
INSERT INTO public.notice VALUES (5829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691177456);
INSERT INTO public.notice VALUES (5830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691178058);
INSERT INTO public.notice VALUES (5831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691178657);
INSERT INTO public.notice VALUES (5832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691179257);
INSERT INTO public.notice VALUES (5833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691179858);
INSERT INTO public.notice VALUES (5834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691180458);
INSERT INTO public.notice VALUES (5835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691181057);
INSERT INTO public.notice VALUES (5836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691181656);
INSERT INTO public.notice VALUES (5837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691182258);
INSERT INTO public.notice VALUES (5838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691182857);
INSERT INTO public.notice VALUES (5839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691183457);
INSERT INTO public.notice VALUES (5840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691184058);
INSERT INTO public.notice VALUES (5841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691184658);
INSERT INTO public.notice VALUES (5842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691185257);
INSERT INTO public.notice VALUES (5843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691185857);
INSERT INTO public.notice VALUES (5844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691186458);
INSERT INTO public.notice VALUES (5845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691187057);
INSERT INTO public.notice VALUES (5846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691187657);
INSERT INTO public.notice VALUES (5847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691188258);
INSERT INTO public.notice VALUES (5848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691188858);
INSERT INTO public.notice VALUES (5849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691189457);
INSERT INTO public.notice VALUES (5858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691194858);
INSERT INTO public.notice VALUES (5860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691196057);
INSERT INTO public.notice VALUES (5861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691196656);
INSERT INTO public.notice VALUES (7084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691931418);
INSERT INTO public.notice VALUES (7085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691932020);
INSERT INTO public.notice VALUES (5850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691190056);
INSERT INTO public.notice VALUES (5851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691190658);
INSERT INTO public.notice VALUES (5852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691191258);
INSERT INTO public.notice VALUES (5853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691191857);
INSERT INTO public.notice VALUES (5854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691192459);
INSERT INTO public.notice VALUES (5855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691193058);
INSERT INTO public.notice VALUES (5856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691193657);
INSERT INTO public.notice VALUES (5857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691194257);
INSERT INTO public.notice VALUES (5859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691195458);
INSERT INTO public.notice VALUES (5862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691197258);
INSERT INTO public.notice VALUES (5863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691197857);
INSERT INTO public.notice VALUES (5864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691198457);
INSERT INTO public.notice VALUES (5865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691199058);
INSERT INTO public.notice VALUES (5866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691199658);
INSERT INTO public.notice VALUES (5867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691200257);
INSERT INTO public.notice VALUES (5868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691200856);
INSERT INTO public.notice VALUES (5869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691201458);
INSERT INTO public.notice VALUES (5870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691202058);
INSERT INTO public.notice VALUES (5871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691202657);
INSERT INTO public.notice VALUES (5872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691203256);
INSERT INTO public.notice VALUES (5873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691203858);
INSERT INTO public.notice VALUES (5874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691204457);
INSERT INTO public.notice VALUES (5875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691205057);
INSERT INTO public.notice VALUES (5876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691205658);
INSERT INTO public.notice VALUES (5884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691210457);
INSERT INTO public.notice VALUES (5885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691211057);
INSERT INTO public.notice VALUES (5886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691211657);
INSERT INTO public.notice VALUES (5887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691212258);
INSERT INTO public.notice VALUES (5889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691213457);
INSERT INTO public.notice VALUES (5890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691214058);
INSERT INTO public.notice VALUES (5877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691206257);
INSERT INTO public.notice VALUES (5878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691206857);
INSERT INTO public.notice VALUES (5879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691207456);
INSERT INTO public.notice VALUES (5880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691208058);
INSERT INTO public.notice VALUES (5881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691208657);
INSERT INTO public.notice VALUES (5882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691209257);
INSERT INTO public.notice VALUES (5883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691209858);
INSERT INTO public.notice VALUES (5888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691212858);
INSERT INTO public.notice VALUES (5896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691217657);
INSERT INTO public.notice VALUES (7086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691932619);
INSERT INTO public.notice VALUES (7101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691941619);
INSERT INTO public.notice VALUES (7102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691942220);
INSERT INTO public.notice VALUES (7103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691942820);
INSERT INTO public.notice VALUES (7110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691947020);
INSERT INTO public.notice VALUES (7125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691956020);
INSERT INTO public.notice VALUES (5891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691214658);
INSERT INTO public.notice VALUES (5892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691215257);
INSERT INTO public.notice VALUES (5893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691215857);
INSERT INTO public.notice VALUES (5894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691216458);
INSERT INTO public.notice VALUES (5895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691217057);
INSERT INTO public.notice VALUES (5897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691218258);
INSERT INTO public.notice VALUES (5898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691218858);
INSERT INTO public.notice VALUES (5899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691219457);
INSERT INTO public.notice VALUES (5900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691220057);
INSERT INTO public.notice VALUES (5901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691220658);
INSERT INTO public.notice VALUES (5902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691221257);
INSERT INTO public.notice VALUES (5903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691221857);
INSERT INTO public.notice VALUES (5904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691222456);
INSERT INTO public.notice VALUES (5905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691223058);
INSERT INTO public.notice VALUES (5906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691223657);
INSERT INTO public.notice VALUES (5907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691224257);
INSERT INTO public.notice VALUES (5908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691224858);
INSERT INTO public.notice VALUES (5909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691225458);
INSERT INTO public.notice VALUES (5910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691226057);
INSERT INTO public.notice VALUES (5911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691226657);
INSERT INTO public.notice VALUES (5912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691227259);
INSERT INTO public.notice VALUES (5913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691227857);
INSERT INTO public.notice VALUES (5914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691228457);
INSERT INTO public.notice VALUES (5915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691229056);
INSERT INTO public.notice VALUES (5916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691229658);
INSERT INTO public.notice VALUES (5917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691230257);
INSERT INTO public.notice VALUES (5918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691230857);
INSERT INTO public.notice VALUES (5919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691231458);
INSERT INTO public.notice VALUES (5920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691232058);
INSERT INTO public.notice VALUES (5921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691232657);
INSERT INTO public.notice VALUES (5922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691233257);
INSERT INTO public.notice VALUES (5923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691233858);
INSERT INTO public.notice VALUES (5924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691234457);
INSERT INTO public.notice VALUES (5925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691235057);
INSERT INTO public.notice VALUES (5940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691244057);
INSERT INTO public.notice VALUES (5941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691244658);
INSERT INTO public.notice VALUES (5942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691245258);
INSERT INTO public.notice VALUES (5943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691245857);
INSERT INTO public.notice VALUES (5944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691246456);
INSERT INTO public.notice VALUES (5946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691247657);
INSERT INTO public.notice VALUES (7097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691939219);
INSERT INTO public.notice VALUES (7098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691939819);
INSERT INTO public.notice VALUES (7099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691940420);
INSERT INTO public.notice VALUES (7100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691941021);
INSERT INTO public.notice VALUES (7104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691943419);
INSERT INTO public.notice VALUES (5926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691235656);
INSERT INTO public.notice VALUES (5927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691236258);
INSERT INTO public.notice VALUES (5928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691236857);
INSERT INTO public.notice VALUES (5929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691237457);
INSERT INTO public.notice VALUES (5930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691238058);
INSERT INTO public.notice VALUES (5931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691238658);
INSERT INTO public.notice VALUES (5932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691239258);
INSERT INTO public.notice VALUES (5933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691239857);
INSERT INTO public.notice VALUES (5934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691240458);
INSERT INTO public.notice VALUES (5935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691241057);
INSERT INTO public.notice VALUES (5936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691241657);
INSERT INTO public.notice VALUES (5937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691242259);
INSERT INTO public.notice VALUES (5938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691242858);
INSERT INTO public.notice VALUES (5939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691243457);
INSERT INTO public.notice VALUES (5945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691247058);
INSERT INTO public.notice VALUES (5947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691248257);
INSERT INTO public.notice VALUES (5948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691248858);
INSERT INTO public.notice VALUES (5949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691249457);
INSERT INTO public.notice VALUES (5950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691250057);
INSERT INTO public.notice VALUES (5951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691250656);
INSERT INTO public.notice VALUES (5952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691251258);
INSERT INTO public.notice VALUES (5957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691254257);
INSERT INTO public.notice VALUES (5958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691254857);
INSERT INTO public.notice VALUES (7105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691944019);
INSERT INTO public.notice VALUES (7106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691944620);
INSERT INTO public.notice VALUES (7107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691945219);
INSERT INTO public.notice VALUES (7108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691945819);
INSERT INTO public.notice VALUES (7243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692026819);
INSERT INTO public.notice VALUES (7244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1692027430);
INSERT INTO public.notice VALUES (7258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692035820);
INSERT INTO public.notice VALUES (7259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692036420);
INSERT INTO public.notice VALUES (5953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691251857);
INSERT INTO public.notice VALUES (5954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691252457);
INSERT INTO public.notice VALUES (5955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691253058);
INSERT INTO public.notice VALUES (5956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691253658);
INSERT INTO public.notice VALUES (5959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691255458);
INSERT INTO public.notice VALUES (5960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691256058);
INSERT INTO public.notice VALUES (5961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691256657);
INSERT INTO public.notice VALUES (5962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691257256);
INSERT INTO public.notice VALUES (5963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691257858);
INSERT INTO public.notice VALUES (5964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691258457);
INSERT INTO public.notice VALUES (5965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691259057);
INSERT INTO public.notice VALUES (5966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691259658);
INSERT INTO public.notice VALUES (5967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691260258);
INSERT INTO public.notice VALUES (5968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691260857);
INSERT INTO public.notice VALUES (5969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691261457);
INSERT INTO public.notice VALUES (5970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691262058);
INSERT INTO public.notice VALUES (5971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691262657);
INSERT INTO public.notice VALUES (5972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691263257);
INSERT INTO public.notice VALUES (5973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691263856);
INSERT INTO public.notice VALUES (5977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691266259);
INSERT INTO public.notice VALUES (5982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691269257);
INSERT INTO public.notice VALUES (5991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691274659);
INSERT INTO public.notice VALUES (5992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691275258);
INSERT INTO public.notice VALUES (6007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691284258);
INSERT INTO public.notice VALUES (7109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691946421);
INSERT INTO public.notice VALUES (7111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691947619);
INSERT INTO public.notice VALUES (7112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691948220);
INSERT INTO public.notice VALUES (7113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691948820);
INSERT INTO public.notice VALUES (7245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692028020);
INSERT INTO public.notice VALUES (7246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692028619);
INSERT INTO public.notice VALUES (7247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1692029228);
INSERT INTO public.notice VALUES (5974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691264458);
INSERT INTO public.notice VALUES (5975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691265057);
INSERT INTO public.notice VALUES (5976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691265657);
INSERT INTO public.notice VALUES (5978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691266858);
INSERT INTO public.notice VALUES (5979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691267457);
INSERT INTO public.notice VALUES (5980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691268057);
INSERT INTO public.notice VALUES (5981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691268658);
INSERT INTO public.notice VALUES (5983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691269857);
INSERT INTO public.notice VALUES (5984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691270458);
INSERT INTO public.notice VALUES (5985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691271058);
INSERT INTO public.notice VALUES (5986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691271658);
INSERT INTO public.notice VALUES (5987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691272257);
INSERT INTO public.notice VALUES (5988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691272858);
INSERT INTO public.notice VALUES (5989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691273458);
INSERT INTO public.notice VALUES (5990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691274057);
INSERT INTO public.notice VALUES (5993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691275857);
INSERT INTO public.notice VALUES (5994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691276457);
INSERT INTO public.notice VALUES (5995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691277058);
INSERT INTO public.notice VALUES (5996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691277658);
INSERT INTO public.notice VALUES (5997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691278257);
INSERT INTO public.notice VALUES (5998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691278857);
INSERT INTO public.notice VALUES (5999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691279458);
INSERT INTO public.notice VALUES (6000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691280057);
INSERT INTO public.notice VALUES (6001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691280657);
INSERT INTO public.notice VALUES (6002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691281256);
INSERT INTO public.notice VALUES (6003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691281858);
INSERT INTO public.notice VALUES (6004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691282457);
INSERT INTO public.notice VALUES (6005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691283057);
INSERT INTO public.notice VALUES (6006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691283658);
INSERT INTO public.notice VALUES (6008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691284857);
INSERT INTO public.notice VALUES (6009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691285457);
INSERT INTO public.notice VALUES (6010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691286058);
INSERT INTO public.notice VALUES (6022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691293257);
INSERT INTO public.notice VALUES (6023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691293857);
INSERT INTO public.notice VALUES (6024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691294458);
INSERT INTO public.notice VALUES (6025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691295057);
INSERT INTO public.notice VALUES (6033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691299857);
INSERT INTO public.notice VALUES (6034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691300457);
INSERT INTO public.notice VALUES (6035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691301058);
INSERT INTO public.notice VALUES (6036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691301657);
INSERT INTO public.notice VALUES (6037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691302257);
INSERT INTO public.notice VALUES (6038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691302856);
INSERT INTO public.notice VALUES (6039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691303458);
INSERT INTO public.notice VALUES (6040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691304057);
INSERT INTO public.notice VALUES (7114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691949420);
INSERT INTO public.notice VALUES (6011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691286657);
INSERT INTO public.notice VALUES (6012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691287257);
INSERT INTO public.notice VALUES (6013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691287858);
INSERT INTO public.notice VALUES (6014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691288458);
INSERT INTO public.notice VALUES (6015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691289057);
INSERT INTO public.notice VALUES (6016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691289657);
INSERT INTO public.notice VALUES (6017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691290258);
INSERT INTO public.notice VALUES (6018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691290857);
INSERT INTO public.notice VALUES (6019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691291457);
INSERT INTO public.notice VALUES (6020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691292058);
INSERT INTO public.notice VALUES (6021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691292658);
INSERT INTO public.notice VALUES (6026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691295657);
INSERT INTO public.notice VALUES (6027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691296256);
INSERT INTO public.notice VALUES (6028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691296858);
INSERT INTO public.notice VALUES (6029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691297457);
INSERT INTO public.notice VALUES (6030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691298057);
INSERT INTO public.notice VALUES (6031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691298658);
INSERT INTO public.notice VALUES (6032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691299258);
INSERT INTO public.notice VALUES (6041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691304657);
INSERT INTO public.notice VALUES (6042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691305258);
INSERT INTO public.notice VALUES (6043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691305858);
INSERT INTO public.notice VALUES (6044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691306457);
INSERT INTO public.notice VALUES (6045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691307058);
INSERT INTO public.notice VALUES (6046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691307659);
INSERT INTO public.notice VALUES (6047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691308257);
INSERT INTO public.notice VALUES (6048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691308857);
INSERT INTO public.notice VALUES (6049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691309458);
INSERT INTO public.notice VALUES (6050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691310063);
INSERT INTO public.notice VALUES (6051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691310657);
INSERT INTO public.notice VALUES (6052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691311256);
INSERT INTO public.notice VALUES (6053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691311859);
INSERT INTO public.notice VALUES (6054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691312457);
INSERT INTO public.notice VALUES (6055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691313057);
INSERT INTO public.notice VALUES (6056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691313658);
INSERT INTO public.notice VALUES (6059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691315457);
INSERT INTO public.notice VALUES (6060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691316058);
INSERT INTO public.notice VALUES (6061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691316658);
INSERT INTO public.notice VALUES (6062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691317257);
INSERT INTO public.notice VALUES (6063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691317856);
INSERT INTO public.notice VALUES (6064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691318458);
INSERT INTO public.notice VALUES (6065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691319058);
INSERT INTO public.notice VALUES (6074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691324458);
INSERT INTO public.notice VALUES (6075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691325058);
INSERT INTO public.notice VALUES (6076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691325657);
INSERT INTO public.notice VALUES (6077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691326257);
INSERT INTO public.notice VALUES (6057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691314258);
INSERT INTO public.notice VALUES (6058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691314860);
INSERT INTO public.notice VALUES (6066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691319657);
INSERT INTO public.notice VALUES (6067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691320258);
INSERT INTO public.notice VALUES (6068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691320858);
INSERT INTO public.notice VALUES (6069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691321457);
INSERT INTO public.notice VALUES (6070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691322057);
INSERT INTO public.notice VALUES (6071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691322658);
INSERT INTO public.notice VALUES (6072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691323257);
INSERT INTO public.notice VALUES (6073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691323857);
INSERT INTO public.notice VALUES (6078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691326858);
INSERT INTO public.notice VALUES (6079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691327458);
INSERT INTO public.notice VALUES (6080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691328057);
INSERT INTO public.notice VALUES (6081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691328657);
INSERT INTO public.notice VALUES (6082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691329259);
INSERT INTO public.notice VALUES (6083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691329857);
INSERT INTO public.notice VALUES (6084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691330458);
INSERT INTO public.notice VALUES (6085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691331058);
INSERT INTO public.notice VALUES (6086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691331658);
INSERT INTO public.notice VALUES (6087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691332257);
INSERT INTO public.notice VALUES (6088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691332857);
INSERT INTO public.notice VALUES (6089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691333458);
INSERT INTO public.notice VALUES (6090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691334058);
INSERT INTO public.notice VALUES (6091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691334658);
INSERT INTO public.notice VALUES (6092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691335256);
INSERT INTO public.notice VALUES (6093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691335858);
INSERT INTO public.notice VALUES (6094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691336457);
INSERT INTO public.notice VALUES (6095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691337057);
INSERT INTO public.notice VALUES (6096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691337658);
INSERT INTO public.notice VALUES (6111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691346658);
INSERT INTO public.notice VALUES (6097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691338257);
INSERT INTO public.notice VALUES (6098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691338857);
INSERT INTO public.notice VALUES (6099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691339456);
INSERT INTO public.notice VALUES (6100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691340058);
INSERT INTO public.notice VALUES (6101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691340657);
INSERT INTO public.notice VALUES (6102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691341257);
INSERT INTO public.notice VALUES (6103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691341858);
INSERT INTO public.notice VALUES (6104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691342457);
INSERT INTO public.notice VALUES (6105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691343057);
INSERT INTO public.notice VALUES (6106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691343656);
INSERT INTO public.notice VALUES (6107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691344258);
INSERT INTO public.notice VALUES (6108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691344857);
INSERT INTO public.notice VALUES (6109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691345457);
INSERT INTO public.notice VALUES (6110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691346058);
INSERT INTO public.notice VALUES (6120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691352057);
INSERT INTO public.notice VALUES (6112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691347257);
INSERT INTO public.notice VALUES (6113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691347859);
INSERT INTO public.notice VALUES (6114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691348458);
INSERT INTO public.notice VALUES (6115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691349057);
INSERT INTO public.notice VALUES (6116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691349657);
INSERT INTO public.notice VALUES (6117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691350258);
INSERT INTO public.notice VALUES (6118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691350858);
INSERT INTO public.notice VALUES (6119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691351457);
INSERT INTO public.notice VALUES (6131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691358656);
INSERT INTO public.notice VALUES (6132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691359258);
INSERT INTO public.notice VALUES (6136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691361657);
INSERT INTO public.notice VALUES (7115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691950019);
INSERT INTO public.notice VALUES (7116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691950618);
INSERT INTO public.notice VALUES (7117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691951220);
INSERT INTO public.notice VALUES (7118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691951820);
INSERT INTO public.notice VALUES (6121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691352658);
INSERT INTO public.notice VALUES (6122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691353257);
INSERT INTO public.notice VALUES (6123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691353857);
INSERT INTO public.notice VALUES (6124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691354458);
INSERT INTO public.notice VALUES (6125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691355058);
INSERT INTO public.notice VALUES (6126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691355658);
INSERT INTO public.notice VALUES (6127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691356257);
INSERT INTO public.notice VALUES (6128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691356858);
INSERT INTO public.notice VALUES (6129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691357457);
INSERT INTO public.notice VALUES (6130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691358057);
INSERT INTO public.notice VALUES (6133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691359857);
INSERT INTO public.notice VALUES (6134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691360457);
INSERT INTO public.notice VALUES (6135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691361058);
INSERT INTO public.notice VALUES (6137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691362257);
INSERT INTO public.notice VALUES (6138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691362856);
INSERT INTO public.notice VALUES (6139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691363458);
INSERT INTO public.notice VALUES (6140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691364057);
INSERT INTO public.notice VALUES (6141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691364657);
INSERT INTO public.notice VALUES (6142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691365258);
INSERT INTO public.notice VALUES (6143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691365858);
INSERT INTO public.notice VALUES (7119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691952418);
INSERT INTO public.notice VALUES (7120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691953020);
INSERT INTO public.notice VALUES (7121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691953619);
INSERT INTO public.notice VALUES (7122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691954219);
INSERT INTO public.notice VALUES (7123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691954820);
INSERT INTO public.notice VALUES (7124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691955420);
INSERT INTO public.notice VALUES (7126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691956619);
INSERT INTO public.notice VALUES (7127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691957220);
INSERT INTO public.notice VALUES (7128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691957819);
INSERT INTO public.notice VALUES (7129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691958419);
INSERT INTO public.notice VALUES (6144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691366457);
INSERT INTO public.notice VALUES (6145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691367056);
INSERT INTO public.notice VALUES (6146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691367658);
INSERT INTO public.notice VALUES (6147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691368257);
INSERT INTO public.notice VALUES (6148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691368857);
INSERT INTO public.notice VALUES (6149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691369456);
INSERT INTO public.notice VALUES (6150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691370058);
INSERT INTO public.notice VALUES (6151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691370657);
INSERT INTO public.notice VALUES (6152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691371257);
INSERT INTO public.notice VALUES (6153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691371859);
INSERT INTO public.notice VALUES (6154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691372458);
INSERT INTO public.notice VALUES (6155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691373057);
INSERT INTO public.notice VALUES (6156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691373656);
INSERT INTO public.notice VALUES (6157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691374258);
INSERT INTO public.notice VALUES (6158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691374858);
INSERT INTO public.notice VALUES (6159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691375457);
INSERT INTO public.notice VALUES (6160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691376058);
INSERT INTO public.notice VALUES (6164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691378458);
INSERT INTO public.notice VALUES (6167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691380256);
INSERT INTO public.notice VALUES (6168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691380858);
INSERT INTO public.notice VALUES (6169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691381457);
INSERT INTO public.notice VALUES (6170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691382057);
INSERT INTO public.notice VALUES (6171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691382658);
INSERT INTO public.notice VALUES (6172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691383258);
INSERT INTO public.notice VALUES (6173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691383857);
INSERT INTO public.notice VALUES (6174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691384456);
INSERT INTO public.notice VALUES (6175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691385058);
INSERT INTO public.notice VALUES (6176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691385657);
INSERT INTO public.notice VALUES (6177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691386257);
INSERT INTO public.notice VALUES (6178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691386856);
INSERT INTO public.notice VALUES (6161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691376658);
INSERT INTO public.notice VALUES (6162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691377257);
INSERT INTO public.notice VALUES (6163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691377857);
INSERT INTO public.notice VALUES (6165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691379057);
INSERT INTO public.notice VALUES (6166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691379657);
INSERT INTO public.notice VALUES (6184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691390457);
INSERT INTO public.notice VALUES (6185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691391056);
INSERT INTO public.notice VALUES (6186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691391658);
INSERT INTO public.notice VALUES (6187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691392257);
INSERT INTO public.notice VALUES (6188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691392857);
INSERT INTO public.notice VALUES (6189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691393458);
INSERT INTO public.notice VALUES (6190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691394058);
INSERT INTO public.notice VALUES (6191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691394657);
INSERT INTO public.notice VALUES (6192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691395258);
INSERT INTO public.notice VALUES (6193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691395858);
INSERT INTO public.notice VALUES (6179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691387458);
INSERT INTO public.notice VALUES (6180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691388057);
INSERT INTO public.notice VALUES (6181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691388657);
INSERT INTO public.notice VALUES (6182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691389258);
INSERT INTO public.notice VALUES (6183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691389858);
INSERT INTO public.notice VALUES (6194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691396458);
INSERT INTO public.notice VALUES (6195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691397058);
INSERT INTO public.notice VALUES (6196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691397656);
INSERT INTO public.notice VALUES (6197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691398258);
INSERT INTO public.notice VALUES (6198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691398858);
INSERT INTO public.notice VALUES (6199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691399457);
INSERT INTO public.notice VALUES (6200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691400058);
INSERT INTO public.notice VALUES (6201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691400658);
INSERT INTO public.notice VALUES (6202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691401257);
INSERT INTO public.notice VALUES (6203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691401857);
INSERT INTO public.notice VALUES (6204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691402458);
INSERT INTO public.notice VALUES (6205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691403057);
INSERT INTO public.notice VALUES (6206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691403657);
INSERT INTO public.notice VALUES (6214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691408457);
INSERT INTO public.notice VALUES (6215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691409058);
INSERT INTO public.notice VALUES (6216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691409657);
INSERT INTO public.notice VALUES (6217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691410257);
INSERT INTO public.notice VALUES (6218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691410859);
INSERT INTO public.notice VALUES (6222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691413258);
INSERT INTO public.notice VALUES (6223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691413857);
INSERT INTO public.notice VALUES (6224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691414457);
INSERT INTO public.notice VALUES (6225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691415057);
INSERT INTO public.notice VALUES (6226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691415658);
INSERT INTO public.notice VALUES (6227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691416257);
INSERT INTO public.notice VALUES (6228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691416857);
INSERT INTO public.notice VALUES (6207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691404259);
INSERT INTO public.notice VALUES (6208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691404858);
INSERT INTO public.notice VALUES (6209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691405457);
INSERT INTO public.notice VALUES (6210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691406057);
INSERT INTO public.notice VALUES (6211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691406658);
INSERT INTO public.notice VALUES (6212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691407257);
INSERT INTO public.notice VALUES (6213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691407858);
INSERT INTO public.notice VALUES (6219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691411458);
INSERT INTO public.notice VALUES (6220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691412057);
INSERT INTO public.notice VALUES (6221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691412657);
INSERT INTO public.notice VALUES (6232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691419257);
INSERT INTO public.notice VALUES (6240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691424058);
INSERT INTO public.notice VALUES (6241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691424659);
INSERT INTO public.notice VALUES (6242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691425257);
INSERT INTO public.notice VALUES (6243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691425858);
INSERT INTO public.notice VALUES (6229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691417458);
INSERT INTO public.notice VALUES (6230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691418058);
INSERT INTO public.notice VALUES (6231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691418657);
INSERT INTO public.notice VALUES (6233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691419859);
INSERT INTO public.notice VALUES (6234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691420457);
INSERT INTO public.notice VALUES (6235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691421058);
INSERT INTO public.notice VALUES (6236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691421658);
INSERT INTO public.notice VALUES (6237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691422258);
INSERT INTO public.notice VALUES (6238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691422857);
INSERT INTO public.notice VALUES (6239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691423457);
INSERT INTO public.notice VALUES (6245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691427058);
INSERT INTO public.notice VALUES (7130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691959018);
INSERT INTO public.notice VALUES (7131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691959620);
INSERT INTO public.notice VALUES (7132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691960219);
INSERT INTO public.notice VALUES (7133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691960819);
INSERT INTO public.notice VALUES (6244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691426458);
INSERT INTO public.notice VALUES (6246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691427657);
INSERT INTO public.notice VALUES (6247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691428258);
INSERT INTO public.notice VALUES (6248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691428858);
INSERT INTO public.notice VALUES (6249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691429457);
INSERT INTO public.notice VALUES (6250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691430056);
INSERT INTO public.notice VALUES (6251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691430658);
INSERT INTO public.notice VALUES (6252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691431257);
INSERT INTO public.notice VALUES (6253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691431857);
INSERT INTO public.notice VALUES (6254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691432458);
INSERT INTO public.notice VALUES (6255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691433059);
INSERT INTO public.notice VALUES (6256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691433657);
INSERT INTO public.notice VALUES (6257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691434257);
INSERT INTO public.notice VALUES (6258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691434858);
INSERT INTO public.notice VALUES (6259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691435457);
INSERT INTO public.notice VALUES (6260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691436057);
INSERT INTO public.notice VALUES (6261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691436659);
INSERT INTO public.notice VALUES (6262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691437258);
INSERT INTO public.notice VALUES (6263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691437857);
INSERT INTO public.notice VALUES (6264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691438457);
INSERT INTO public.notice VALUES (6265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691439058);
INSERT INTO public.notice VALUES (6266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691439657);
INSERT INTO public.notice VALUES (6267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691440257);
INSERT INTO public.notice VALUES (6268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691440857);
INSERT INTO public.notice VALUES (6269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691441458);
INSERT INTO public.notice VALUES (6270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691442057);
INSERT INTO public.notice VALUES (6271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691442657);
INSERT INTO public.notice VALUES (6272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691443258);
INSERT INTO public.notice VALUES (6273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691443858);
INSERT INTO public.notice VALUES (6274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691444457);
INSERT INTO public.notice VALUES (6275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691445057);
INSERT INTO public.notice VALUES (6276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691445658);
INSERT INTO public.notice VALUES (6277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691446258);
INSERT INTO public.notice VALUES (6278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691446857);
INSERT INTO public.notice VALUES (6279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691447456);
INSERT INTO public.notice VALUES (6280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691448058);
INSERT INTO public.notice VALUES (6281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691448658);
INSERT INTO public.notice VALUES (6282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691449257);
INSERT INTO public.notice VALUES (6283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691449858);
INSERT INTO public.notice VALUES (6284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691450458);
INSERT INTO public.notice VALUES (6285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691451057);
INSERT INTO public.notice VALUES (6286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691451656);
INSERT INTO public.notice VALUES (6287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691452258);
INSERT INTO public.notice VALUES (6288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691452858);
INSERT INTO public.notice VALUES (6289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691453457);
INSERT INTO public.notice VALUES (6290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691454058);
INSERT INTO public.notice VALUES (6291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691454658);
INSERT INTO public.notice VALUES (6292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691455257);
INSERT INTO public.notice VALUES (6293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691455857);
INSERT INTO public.notice VALUES (6294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691456458);
INSERT INTO public.notice VALUES (6295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691457058);
INSERT INTO public.notice VALUES (6296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691457657);
INSERT INTO public.notice VALUES (6297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691458256);
INSERT INTO public.notice VALUES (6298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691458858);
INSERT INTO public.notice VALUES (6299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691459457);
INSERT INTO public.notice VALUES (6300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691460057);
INSERT INTO public.notice VALUES (6301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691460658);
INSERT INTO public.notice VALUES (6302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691461258);
INSERT INTO public.notice VALUES (6314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691468457);
INSERT INTO public.notice VALUES (6320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691472058);
INSERT INTO public.notice VALUES (6303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691461857);
INSERT INTO public.notice VALUES (6304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691462456);
INSERT INTO public.notice VALUES (6305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691463058);
INSERT INTO public.notice VALUES (6306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691463657);
INSERT INTO public.notice VALUES (6307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691464257);
INSERT INTO public.notice VALUES (6308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691464858);
INSERT INTO public.notice VALUES (6309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691465461);
INSERT INTO public.notice VALUES (6310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691466058);
INSERT INTO public.notice VALUES (6311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691466657);
INSERT INTO public.notice VALUES (6312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691467355);
INSERT INTO public.notice VALUES (6313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691467858);
INSERT INTO public.notice VALUES (6315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691469056);
INSERT INTO public.notice VALUES (6316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691469658);
INSERT INTO public.notice VALUES (6317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691470257);
INSERT INTO public.notice VALUES (6318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691470857);
INSERT INTO public.notice VALUES (6319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691471458);
INSERT INTO public.notice VALUES (6330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691478058);
INSERT INTO public.notice VALUES (6331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691478657);
INSERT INTO public.notice VALUES (6332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691479257);
INSERT INTO public.notice VALUES (6333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691479856);
INSERT INTO public.notice VALUES (6334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691480458);
INSERT INTO public.notice VALUES (6335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691481057);
INSERT INTO public.notice VALUES (6336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691481657);
INSERT INTO public.notice VALUES (6337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691482258);
INSERT INTO public.notice VALUES (6343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691485857);
INSERT INTO public.notice VALUES (7134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691961420);
INSERT INTO public.notice VALUES (7135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691962019);
INSERT INTO public.notice VALUES (7136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691962619);
INSERT INTO public.notice VALUES (7140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691965019);
INSERT INTO public.notice VALUES (7163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691978821);
INSERT INTO public.notice VALUES (6321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691472657);
INSERT INTO public.notice VALUES (6322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691473258);
INSERT INTO public.notice VALUES (6323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691473858);
INSERT INTO public.notice VALUES (6324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691474457);
INSERT INTO public.notice VALUES (6325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691475057);
INSERT INTO public.notice VALUES (6326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691475658);
INSERT INTO public.notice VALUES (6327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691476258);
INSERT INTO public.notice VALUES (6328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691476857);
INSERT INTO public.notice VALUES (6329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691477457);
INSERT INTO public.notice VALUES (6338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691482858);
INSERT INTO public.notice VALUES (6339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691483457);
INSERT INTO public.notice VALUES (6340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691484057);
INSERT INTO public.notice VALUES (6341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691484658);
INSERT INTO public.notice VALUES (6342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691485257);
INSERT INTO public.notice VALUES (6344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691486458);
INSERT INTO public.notice VALUES (6345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691487058);
INSERT INTO public.notice VALUES (6346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691487657);
INSERT INTO public.notice VALUES (6347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691488257);
INSERT INTO public.notice VALUES (6348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691488858);
INSERT INTO public.notice VALUES (6349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691489457);
INSERT INTO public.notice VALUES (6350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691490057);
INSERT INTO public.notice VALUES (6351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691490656);
INSERT INTO public.notice VALUES (6352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691491258);
INSERT INTO public.notice VALUES (6353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691491857);
INSERT INTO public.notice VALUES (6354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691492457);
INSERT INTO public.notice VALUES (6355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691493058);
INSERT INTO public.notice VALUES (6356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691493658);
INSERT INTO public.notice VALUES (6357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691494257);
INSERT INTO public.notice VALUES (6358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691494857);
INSERT INTO public.notice VALUES (6359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691495458);
INSERT INTO public.notice VALUES (6360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691496057);
INSERT INTO public.notice VALUES (6361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691496657);
INSERT INTO public.notice VALUES (6362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691497258);
INSERT INTO public.notice VALUES (6363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691497858);
INSERT INTO public.notice VALUES (6364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691498457);
INSERT INTO public.notice VALUES (6365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691499057);
INSERT INTO public.notice VALUES (6366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691499658);
INSERT INTO public.notice VALUES (6367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691500258);
INSERT INTO public.notice VALUES (6368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691500857);
INSERT INTO public.notice VALUES (6369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691501456);
INSERT INTO public.notice VALUES (6370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691502058);
INSERT INTO public.notice VALUES (6371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691502657);
INSERT INTO public.notice VALUES (6372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691503257);
INSERT INTO public.notice VALUES (6373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691503858);
INSERT INTO public.notice VALUES (6374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691504458);
INSERT INTO public.notice VALUES (6375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691505057);
INSERT INTO public.notice VALUES (6379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691507458);
INSERT INTO public.notice VALUES (6380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691508056);
INSERT INTO public.notice VALUES (6381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691508658);
INSERT INTO public.notice VALUES (6382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691509257);
INSERT INTO public.notice VALUES (6383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691509857);
INSERT INTO public.notice VALUES (7137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691963221);
INSERT INTO public.notice VALUES (7138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691963820);
INSERT INTO public.notice VALUES (7139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691964419);
INSERT INTO public.notice VALUES (7141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691965620);
INSERT INTO public.notice VALUES (7142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691966220);
INSERT INTO public.notice VALUES (7143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691966819);
INSERT INTO public.notice VALUES (7144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691967418);
INSERT INTO public.notice VALUES (7145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691968020);
INSERT INTO public.notice VALUES (7146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691968619);
INSERT INTO public.notice VALUES (6376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691505657);
INSERT INTO public.notice VALUES (6377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691506258);
INSERT INTO public.notice VALUES (6378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691506858);
INSERT INTO public.notice VALUES (6384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691510458);
INSERT INTO public.notice VALUES (6385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691511058);
INSERT INTO public.notice VALUES (6386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691511657);
INSERT INTO public.notice VALUES (6387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691512256);
INSERT INTO public.notice VALUES (6388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691512858);
INSERT INTO public.notice VALUES (6389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691513458);
INSERT INTO public.notice VALUES (6390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691514057);
INSERT INTO public.notice VALUES (6391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691514658);
INSERT INTO public.notice VALUES (6392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691515258);
INSERT INTO public.notice VALUES (6393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691515857);
INSERT INTO public.notice VALUES (6394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691516457);
INSERT INTO public.notice VALUES (6395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691517058);
INSERT INTO public.notice VALUES (6396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691517658);
INSERT INTO public.notice VALUES (6397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691518257);
INSERT INTO public.notice VALUES (6398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691518857);
INSERT INTO public.notice VALUES (6399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691519458);
INSERT INTO public.notice VALUES (6400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691520057);
INSERT INTO public.notice VALUES (7147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691969219);
INSERT INTO public.notice VALUES (7148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691969820);
INSERT INTO public.notice VALUES (7149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691970420);
INSERT INTO public.notice VALUES (7150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691971019);
INSERT INTO public.notice VALUES (7151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691971618);
INSERT INTO public.notice VALUES (7152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691972220);
INSERT INTO public.notice VALUES (7153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691972819);
INSERT INTO public.notice VALUES (7154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691973418);
INSERT INTO public.notice VALUES (7155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691974018);
INSERT INTO public.notice VALUES (7156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691974620);
INSERT INTO public.notice VALUES (6401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691520657);
INSERT INTO public.notice VALUES (6402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691521258);
INSERT INTO public.notice VALUES (6403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691521858);
INSERT INTO public.notice VALUES (6404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691522457);
INSERT INTO public.notice VALUES (6405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691523056);
INSERT INTO public.notice VALUES (6406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691523658);
INSERT INTO public.notice VALUES (6407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691524257);
INSERT INTO public.notice VALUES (6408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691524857);
INSERT INTO public.notice VALUES (6409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691525458);
INSERT INTO public.notice VALUES (6410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691526058);
INSERT INTO public.notice VALUES (6411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691526657);
INSERT INTO public.notice VALUES (6412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691527257);
INSERT INTO public.notice VALUES (6413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691527859);
INSERT INTO public.notice VALUES (6414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691528458);
INSERT INTO public.notice VALUES (6415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691529057);
INSERT INTO public.notice VALUES (6416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691529656);
INSERT INTO public.notice VALUES (6417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691530258);
INSERT INTO public.notice VALUES (6418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691530858);
INSERT INTO public.notice VALUES (6419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691531457);
INSERT INTO public.notice VALUES (6420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691532058);
INSERT INTO public.notice VALUES (6421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691532658);
INSERT INTO public.notice VALUES (6422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691533257);
INSERT INTO public.notice VALUES (6423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691533859);
INSERT INTO public.notice VALUES (6424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691534458);
INSERT INTO public.notice VALUES (6425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691535057);
INSERT INTO public.notice VALUES (6426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691535657);
INSERT INTO public.notice VALUES (6427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691536258);
INSERT INTO public.notice VALUES (6428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691536858);
INSERT INTO public.notice VALUES (6429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691537457);
INSERT INTO public.notice VALUES (6430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691538057);
INSERT INTO public.notice VALUES (6431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691538658);
INSERT INTO public.notice VALUES (6432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691539257);
INSERT INTO public.notice VALUES (6433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691539857);
INSERT INTO public.notice VALUES (6434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691540456);
INSERT INTO public.notice VALUES (6435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691541058);
INSERT INTO public.notice VALUES (6436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691541657);
INSERT INTO public.notice VALUES (6437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691542257);
INSERT INTO public.notice VALUES (6438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691542858);
INSERT INTO public.notice VALUES (6439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691543457);
INSERT INTO public.notice VALUES (6440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691544057);
INSERT INTO public.notice VALUES (6441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691544657);
INSERT INTO public.notice VALUES (6449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691549458);
INSERT INTO public.notice VALUES (7157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691975219);
INSERT INTO public.notice VALUES (7158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691975819);
INSERT INTO public.notice VALUES (7159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691976420);
INSERT INTO public.notice VALUES (6442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691545258);
INSERT INTO public.notice VALUES (6443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691545859);
INSERT INTO public.notice VALUES (6444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691546457);
INSERT INTO public.notice VALUES (6445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691547058);
INSERT INTO public.notice VALUES (6446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691547658);
INSERT INTO public.notice VALUES (6447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691548257);
INSERT INTO public.notice VALUES (6448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691548857);
INSERT INTO public.notice VALUES (6450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691550058);
INSERT INTO public.notice VALUES (6451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691550657);
INSERT INTO public.notice VALUES (6452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691551259);
INSERT INTO public.notice VALUES (6453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691551858);
INSERT INTO public.notice VALUES (6454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691552457);
INSERT INTO public.notice VALUES (6455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691553057);
INSERT INTO public.notice VALUES (6456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691553659);
INSERT INTO public.notice VALUES (6457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691554258);
INSERT INTO public.notice VALUES (6458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691554858);
INSERT INTO public.notice VALUES (6459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691555457);
INSERT INTO public.notice VALUES (6460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691556058);
INSERT INTO public.notice VALUES (6463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691557859);
INSERT INTO public.notice VALUES (6464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691558458);
INSERT INTO public.notice VALUES (6465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691559057);
INSERT INTO public.notice VALUES (6466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691559657);
INSERT INTO public.notice VALUES (6467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691560258);
INSERT INTO public.notice VALUES (6468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691560857);
INSERT INTO public.notice VALUES (6469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691561457);
INSERT INTO public.notice VALUES (6470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691562056);
INSERT INTO public.notice VALUES (6471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691562658);
INSERT INTO public.notice VALUES (6472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691563257);
INSERT INTO public.notice VALUES (6473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691563857);
INSERT INTO public.notice VALUES (6474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691564459);
INSERT INTO public.notice VALUES (6461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691556657);
INSERT INTO public.notice VALUES (6462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691557257);
INSERT INTO public.notice VALUES (6480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691568057);
INSERT INTO public.notice VALUES (6481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691568658);
INSERT INTO public.notice VALUES (6482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691569258);
INSERT INTO public.notice VALUES (6483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691569857);
INSERT INTO public.notice VALUES (7160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691977019);
INSERT INTO public.notice VALUES (7161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691977619);
INSERT INTO public.notice VALUES (7162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691978218);
INSERT INTO public.notice VALUES (7185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691992019);
INSERT INTO public.notice VALUES (7188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691993820);
INSERT INTO public.notice VALUES (7197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691999218);
INSERT INTO public.notice VALUES (7198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691999820);
INSERT INTO public.notice VALUES (7232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692020220);
INSERT INTO public.notice VALUES (7233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692020820);
INSERT INTO public.notice VALUES (6475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691565058);
INSERT INTO public.notice VALUES (6476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691565657);
INSERT INTO public.notice VALUES (6477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691566257);
INSERT INTO public.notice VALUES (6478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691566858);
INSERT INTO public.notice VALUES (6479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691567457);
INSERT INTO public.notice VALUES (6484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691570456);
INSERT INTO public.notice VALUES (6485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691571058);
INSERT INTO public.notice VALUES (6486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691571657);
INSERT INTO public.notice VALUES (6487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691572257);
INSERT INTO public.notice VALUES (6488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691572858);
INSERT INTO public.notice VALUES (6489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691573458);
INSERT INTO public.notice VALUES (6490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691574057);
INSERT INTO public.notice VALUES (6491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691574657);
INSERT INTO public.notice VALUES (6492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691575258);
INSERT INTO public.notice VALUES (6493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691575857);
INSERT INTO public.notice VALUES (6494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691576457);
INSERT INTO public.notice VALUES (6495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691577056);
INSERT INTO public.notice VALUES (6496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691577658);
INSERT INTO public.notice VALUES (6497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691578257);
INSERT INTO public.notice VALUES (6498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691578857);
INSERT INTO public.notice VALUES (6499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691579458);
INSERT INTO public.notice VALUES (6500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691580058);
INSERT INTO public.notice VALUES (6501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691580657);
INSERT INTO public.notice VALUES (6509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691585457);
INSERT INTO public.notice VALUES (6510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691586058);
INSERT INTO public.notice VALUES (6511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691586658);
INSERT INTO public.notice VALUES (6512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691587258);
INSERT INTO public.notice VALUES (6513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691587859);
INSERT INTO public.notice VALUES (6514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691588458);
INSERT INTO public.notice VALUES (6515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691589057);
INSERT INTO public.notice VALUES (6502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691581256);
INSERT INTO public.notice VALUES (6503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691581858);
INSERT INTO public.notice VALUES (6504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691582457);
INSERT INTO public.notice VALUES (6505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691583057);
INSERT INTO public.notice VALUES (6506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691583657);
INSERT INTO public.notice VALUES (6507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691584258);
INSERT INTO public.notice VALUES (6508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691584857);
INSERT INTO public.notice VALUES (6516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691589657);
INSERT INTO public.notice VALUES (6517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691590259);
INSERT INTO public.notice VALUES (6518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691590859);
INSERT INTO public.notice VALUES (6519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691591458);
INSERT INTO public.notice VALUES (6520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691592057);
INSERT INTO public.notice VALUES (6521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691592658);
INSERT INTO public.notice VALUES (6522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691593258);
INSERT INTO public.notice VALUES (6523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691593858);
INSERT INTO public.notice VALUES (6524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691594457);
INSERT INTO public.notice VALUES (6525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691595058);
INSERT INTO public.notice VALUES (6526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691595658);
INSERT INTO public.notice VALUES (6527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691596257);
INSERT INTO public.notice VALUES (6528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691596858);
INSERT INTO public.notice VALUES (6529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691597458);
INSERT INTO public.notice VALUES (6530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691598057);
INSERT INTO public.notice VALUES (6531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691598657);
INSERT INTO public.notice VALUES (6532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691599258);
INSERT INTO public.notice VALUES (6533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691599858);
INSERT INTO public.notice VALUES (7164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691979419);
INSERT INTO public.notice VALUES (7165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691980019);
INSERT INTO public.notice VALUES (7166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691980620);
INSERT INTO public.notice VALUES (7248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692029820);
INSERT INTO public.notice VALUES (7249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692030419);
INSERT INTO public.notice VALUES (6534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691600457);
INSERT INTO public.notice VALUES (6535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691601057);
INSERT INTO public.notice VALUES (6536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691601894);
INSERT INTO public.notice VALUES (6537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691602494);
INSERT INTO public.notice VALUES (6538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691603093);
INSERT INTO public.notice VALUES (6539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691603694);
INSERT INTO public.notice VALUES (6540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691604293);
INSERT INTO public.notice VALUES (6541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691604893);
INSERT INTO public.notice VALUES (6542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691605494);
INSERT INTO public.notice VALUES (6543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691606094);
INSERT INTO public.notice VALUES (6544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691606693);
INSERT INTO public.notice VALUES (6545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691607293);
INSERT INTO public.notice VALUES (6546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691607894);
INSERT INTO public.notice VALUES (6547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691608494);
INSERT INTO public.notice VALUES (6548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691609093);
INSERT INTO public.notice VALUES (6549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691609692);
INSERT INTO public.notice VALUES (6550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691610294);
INSERT INTO public.notice VALUES (6551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691610893);
INSERT INTO public.notice VALUES (6552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691611493);
INSERT INTO public.notice VALUES (6553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691612095);
INSERT INTO public.notice VALUES (6554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691612694);
INSERT INTO public.notice VALUES (6555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691613293);
INSERT INTO public.notice VALUES (6556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691613892);
INSERT INTO public.notice VALUES (6557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691614494);
INSERT INTO public.notice VALUES (6558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691615093);
INSERT INTO public.notice VALUES (6559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691615693);
INSERT INTO public.notice VALUES (6560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691616294);
INSERT INTO public.notice VALUES (6561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691616894);
INSERT INTO public.notice VALUES (6562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691617493);
INSERT INTO public.notice VALUES (6563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691618093);
INSERT INTO public.notice VALUES (6564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691618694);
INSERT INTO public.notice VALUES (6565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691619293);
INSERT INTO public.notice VALUES (6566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691619893);
INSERT INTO public.notice VALUES (6567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691620494);
INSERT INTO public.notice VALUES (6568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691621094);
INSERT INTO public.notice VALUES (6569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691621693);
INSERT INTO public.notice VALUES (6570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691622293);
INSERT INTO public.notice VALUES (6571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691622894);
INSERT INTO public.notice VALUES (6572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691623493);
INSERT INTO public.notice VALUES (6573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691624093);
INSERT INTO public.notice VALUES (6574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691624692);
INSERT INTO public.notice VALUES (6575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691625294);
INSERT INTO public.notice VALUES (6576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691625893);
INSERT INTO public.notice VALUES (6577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691626493);
INSERT INTO public.notice VALUES (6578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691627094);
INSERT INTO public.notice VALUES (6579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691627694);
INSERT INTO public.notice VALUES (6580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691628293);
INSERT INTO public.notice VALUES (6581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691628893);
INSERT INTO public.notice VALUES (6582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691629494);
INSERT INTO public.notice VALUES (6583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691630093);
INSERT INTO public.notice VALUES (6584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691630693);
INSERT INTO public.notice VALUES (6613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691648093);
INSERT INTO public.notice VALUES (6614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691648692);
INSERT INTO public.notice VALUES (6616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691649894);
INSERT INTO public.notice VALUES (7167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691981220);
INSERT INTO public.notice VALUES (7168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691981819);
INSERT INTO public.notice VALUES (7169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691982418);
INSERT INTO public.notice VALUES (7170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691983020);
INSERT INTO public.notice VALUES (7171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691983619);
INSERT INTO public.notice VALUES (7172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691984219);
INSERT INTO public.notice VALUES (6585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691631293);
INSERT INTO public.notice VALUES (6586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691631894);
INSERT INTO public.notice VALUES (6587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691632493);
INSERT INTO public.notice VALUES (6588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691633093);
INSERT INTO public.notice VALUES (6589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691633692);
INSERT INTO public.notice VALUES (6590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691634294);
INSERT INTO public.notice VALUES (6591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691634893);
INSERT INTO public.notice VALUES (6592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691635493);
INSERT INTO public.notice VALUES (6593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691636094);
INSERT INTO public.notice VALUES (6594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691636693);
INSERT INTO public.notice VALUES (6595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691637293);
INSERT INTO public.notice VALUES (6596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691637893);
INSERT INTO public.notice VALUES (6597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691638494);
INSERT INTO public.notice VALUES (6598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691639093);
INSERT INTO public.notice VALUES (6599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691639693);
INSERT INTO public.notice VALUES (6600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691640294);
INSERT INTO public.notice VALUES (6601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691640897);
INSERT INTO public.notice VALUES (6602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691641493);
INSERT INTO public.notice VALUES (6603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691642092);
INSERT INTO public.notice VALUES (6604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691642694);
INSERT INTO public.notice VALUES (6605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691643293);
INSERT INTO public.notice VALUES (6606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691643893);
INSERT INTO public.notice VALUES (6607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691644492);
INSERT INTO public.notice VALUES (6608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691645094);
INSERT INTO public.notice VALUES (6609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691645693);
INSERT INTO public.notice VALUES (6610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691646292);
INSERT INTO public.notice VALUES (6611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691646894);
INSERT INTO public.notice VALUES (6612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691647493);
INSERT INTO public.notice VALUES (6615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691649294);
INSERT INTO public.notice VALUES (6617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691650493);
INSERT INTO public.notice VALUES (6618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691651094);
INSERT INTO public.notice VALUES (6619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691651694);
INSERT INTO public.notice VALUES (6620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691652293);
INSERT INTO public.notice VALUES (6621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691652894);
INSERT INTO public.notice VALUES (6622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691653497);
INSERT INTO public.notice VALUES (6623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691654093);
INSERT INTO public.notice VALUES (6624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691654693);
INSERT INTO public.notice VALUES (6625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691655294);
INSERT INTO public.notice VALUES (6626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691655894);
INSERT INTO public.notice VALUES (6627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691656493);
INSERT INTO public.notice VALUES (6628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691657094);
INSERT INTO public.notice VALUES (6629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691657694);
INSERT INTO public.notice VALUES (6630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691658293);
INSERT INTO public.notice VALUES (6631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691658893);
INSERT INTO public.notice VALUES (6632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691659494);
INSERT INTO public.notice VALUES (6633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691660298);
INSERT INTO public.notice VALUES (6634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691661420);
INSERT INTO public.notice VALUES (6635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691662019);
INSERT INTO public.notice VALUES (6636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691662619);
INSERT INTO public.notice VALUES (6637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691663218);
INSERT INTO public.notice VALUES (6638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691663820);
INSERT INTO public.notice VALUES (6639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691664419);
INSERT INTO public.notice VALUES (6640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691665019);
INSERT INTO public.notice VALUES (6641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691665620);
INSERT INTO public.notice VALUES (6642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691666219);
INSERT INTO public.notice VALUES (6643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691666819);
INSERT INTO public.notice VALUES (6644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691667418);
INSERT INTO public.notice VALUES (6645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691668020);
INSERT INTO public.notice VALUES (6646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691668619);
INSERT INTO public.notice VALUES (6647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691669219);
INSERT INTO public.notice VALUES (6648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691669820);
INSERT INTO public.notice VALUES (6649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691670420);
INSERT INTO public.notice VALUES (6650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691671019);
INSERT INTO public.notice VALUES (6651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691671619);
INSERT INTO public.notice VALUES (6652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691672220);
INSERT INTO public.notice VALUES (6655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691674018);
INSERT INTO public.notice VALUES (6656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691674620);
INSERT INTO public.notice VALUES (6660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691677020);
INSERT INTO public.notice VALUES (7173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691984820);
INSERT INTO public.notice VALUES (7174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691985419);
INSERT INTO public.notice VALUES (7175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691986019);
INSERT INTO public.notice VALUES (7176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691986618);
INSERT INTO public.notice VALUES (7177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691987220);
INSERT INTO public.notice VALUES (7178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691987819);
INSERT INTO public.notice VALUES (7179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691988419);
INSERT INTO public.notice VALUES (6653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691672820);
INSERT INTO public.notice VALUES (6654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691673419);
INSERT INTO public.notice VALUES (6657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691675220);
INSERT INTO public.notice VALUES (6658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691675819);
INSERT INTO public.notice VALUES (6659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691676420);
INSERT INTO public.notice VALUES (6661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691677620);
INSERT INTO public.notice VALUES (6662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691678219);
INSERT INTO public.notice VALUES (6663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691678820);
INSERT INTO public.notice VALUES (6664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691679420);
INSERT INTO public.notice VALUES (6665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691680019);
INSERT INTO public.notice VALUES (6666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691680619);
INSERT INTO public.notice VALUES (6667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691681220);
INSERT INTO public.notice VALUES (6668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691681819);
INSERT INTO public.notice VALUES (6669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691682419);
INSERT INTO public.notice VALUES (6670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691683020);
INSERT INTO public.notice VALUES (6671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691683620);
INSERT INTO public.notice VALUES (6672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691684219);
INSERT INTO public.notice VALUES (6674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691685420);
INSERT INTO public.notice VALUES (7180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691989020);
INSERT INTO public.notice VALUES (7181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691989619);
INSERT INTO public.notice VALUES (7182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691990219);
INSERT INTO public.notice VALUES (7183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691990819);
INSERT INTO public.notice VALUES (7184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691991420);
INSERT INTO public.notice VALUES (7186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691992619);
INSERT INTO public.notice VALUES (7187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691993220);
INSERT INTO public.notice VALUES (7189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691994419);
INSERT INTO public.notice VALUES (7190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691995019);
INSERT INTO public.notice VALUES (7191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691995620);
INSERT INTO public.notice VALUES (7192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691996220);
INSERT INTO public.notice VALUES (7193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691996819);
INSERT INTO public.notice VALUES (6673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691684819);
INSERT INTO public.notice VALUES (6675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691686019);
INSERT INTO public.notice VALUES (6676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691686619);
INSERT INTO public.notice VALUES (6677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691687218);
INSERT INTO public.notice VALUES (6678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691687820);
INSERT INTO public.notice VALUES (6679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691688419);
INSERT INTO public.notice VALUES (6680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691689020);
INSERT INTO public.notice VALUES (6681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691689620);
INSERT INTO public.notice VALUES (6682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691690220);
INSERT INTO public.notice VALUES (6683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691690819);
INSERT INTO public.notice VALUES (6684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691691418);
INSERT INTO public.notice VALUES (6685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691692020);
INSERT INTO public.notice VALUES (6686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691692620);
INSERT INTO public.notice VALUES (6687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691693219);
INSERT INTO public.notice VALUES (6688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691693818);
INSERT INTO public.notice VALUES (6689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691694420);
INSERT INTO public.notice VALUES (6690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691695019);
INSERT INTO public.notice VALUES (6691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691695620);
INSERT INTO public.notice VALUES (6692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691696220);
INSERT INTO public.notice VALUES (6693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691696819);
INSERT INTO public.notice VALUES (6694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691697419);
INSERT INTO public.notice VALUES (6695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691698018);
INSERT INTO public.notice VALUES (6703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691702820);
INSERT INTO public.notice VALUES (6704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691703419);
INSERT INTO public.notice VALUES (7194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691997420);
INSERT INTO public.notice VALUES (7195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691998020);
INSERT INTO public.notice VALUES (7196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691998619);
INSERT INTO public.notice VALUES (7199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692000419);
INSERT INTO public.notice VALUES (7200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692001019);
INSERT INTO public.notice VALUES (7201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692001618);
INSERT INTO public.notice VALUES (6696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691698620);
INSERT INTO public.notice VALUES (6697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691699219);
INSERT INTO public.notice VALUES (6698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691699819);
INSERT INTO public.notice VALUES (6699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691700420);
INSERT INTO public.notice VALUES (6700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691701020);
INSERT INTO public.notice VALUES (6701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691701619);
INSERT INTO public.notice VALUES (6702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691702219);
INSERT INTO public.notice VALUES (6705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691704019);
INSERT INTO public.notice VALUES (6706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691704620);
INSERT INTO public.notice VALUES (6707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691705220);
INSERT INTO public.notice VALUES (6708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691705819);
INSERT INTO public.notice VALUES (6709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691706418);
INSERT INTO public.notice VALUES (6710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691707020);
INSERT INTO public.notice VALUES (6711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691707619);
INSERT INTO public.notice VALUES (6712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691708219);
INSERT INTO public.notice VALUES (6713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691708820);
INSERT INTO public.notice VALUES (6714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691709420);
INSERT INTO public.notice VALUES (6715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691710019);
INSERT INTO public.notice VALUES (6716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691710619);
INSERT INTO public.notice VALUES (6721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691713620);
INSERT INTO public.notice VALUES (6722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691714219);
INSERT INTO public.notice VALUES (6723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691714819);
INSERT INTO public.notice VALUES (6724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691715420);
INSERT INTO public.notice VALUES (6725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691716020);
INSERT INTO public.notice VALUES (6726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691716619);
INSERT INTO public.notice VALUES (6733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691720819);
INSERT INTO public.notice VALUES (6751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691731619);
INSERT INTO public.notice VALUES (7202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692002220);
INSERT INTO public.notice VALUES (7203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692002819);
INSERT INTO public.notice VALUES (7204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692003419);
INSERT INTO public.notice VALUES (6717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691711220);
INSERT INTO public.notice VALUES (6718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691711819);
INSERT INTO public.notice VALUES (6719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691712419);
INSERT INTO public.notice VALUES (6720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691713020);
INSERT INTO public.notice VALUES (6727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691717219);
INSERT INTO public.notice VALUES (6728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691717820);
INSERT INTO public.notice VALUES (6729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691718419);
INSERT INTO public.notice VALUES (6730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691719019);
INSERT INTO public.notice VALUES (6731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691719620);
INSERT INTO public.notice VALUES (6732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691720220);
INSERT INTO public.notice VALUES (6734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691721419);
INSERT INTO public.notice VALUES (6735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691722020);
INSERT INTO public.notice VALUES (6736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691722619);
INSERT INTO public.notice VALUES (6737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691723219);
INSERT INTO public.notice VALUES (6738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691723821);
INSERT INTO public.notice VALUES (6739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691724420);
INSERT INTO public.notice VALUES (6740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691725019);
INSERT INTO public.notice VALUES (6741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691725618);
INSERT INTO public.notice VALUES (6742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691726220);
INSERT INTO public.notice VALUES (6743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691726820);
INSERT INTO public.notice VALUES (6744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691727419);
INSERT INTO public.notice VALUES (6745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691728018);
INSERT INTO public.notice VALUES (6746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691728620);
INSERT INTO public.notice VALUES (6747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691729219);
INSERT INTO public.notice VALUES (6748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691729819);
INSERT INTO public.notice VALUES (6749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691730420);
INSERT INTO public.notice VALUES (6750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691731020);
INSERT INTO public.notice VALUES (6752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691732218);
INSERT INTO public.notice VALUES (6753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691732820);
INSERT INTO public.notice VALUES (6754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691733419);
INSERT INTO public.notice VALUES (6755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691734019);
INSERT INTO public.notice VALUES (6756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691734620);
INSERT INTO public.notice VALUES (6757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691735219);
INSERT INTO public.notice VALUES (6758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691735819);
INSERT INTO public.notice VALUES (6759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691736418);
INSERT INTO public.notice VALUES (6760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691737020);
INSERT INTO public.notice VALUES (6761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691737619);
INSERT INTO public.notice VALUES (6762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691738219);
INSERT INTO public.notice VALUES (6763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691738820);
INSERT INTO public.notice VALUES (6764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691739420);
INSERT INTO public.notice VALUES (6765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691740020);
INSERT INTO public.notice VALUES (6766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691740619);
INSERT INTO public.notice VALUES (6767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691741220);
INSERT INTO public.notice VALUES (6768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691741819);
INSERT INTO public.notice VALUES (6769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691742419);
INSERT INTO public.notice VALUES (6770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691743020);
INSERT INTO public.notice VALUES (6771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691743620);
INSERT INTO public.notice VALUES (6807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691765220);
INSERT INTO public.notice VALUES (7205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692004020);
INSERT INTO public.notice VALUES (7206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692004619);
INSERT INTO public.notice VALUES (7207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692005219);
INSERT INTO public.notice VALUES (7208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692005818);
INSERT INTO public.notice VALUES (7250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692031019);
INSERT INTO public.notice VALUES (7260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692037019);
INSERT INTO public.notice VALUES (7261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692037619);
INSERT INTO public.notice VALUES (7262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692038220);
INSERT INTO public.notice VALUES (7272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692044218);
INSERT INTO public.notice VALUES (7273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692044820);
INSERT INTO public.notice VALUES (7274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692045419);
INSERT INTO public.notice VALUES (7275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692046019);
INSERT INTO public.notice VALUES (6772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691744219);
INSERT INTO public.notice VALUES (6773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691744819);
INSERT INTO public.notice VALUES (6774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691745420);
INSERT INTO public.notice VALUES (6775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691746019);
INSERT INTO public.notice VALUES (6776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691746619);
INSERT INTO public.notice VALUES (6777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691747220);
INSERT INTO public.notice VALUES (6778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691747820);
INSERT INTO public.notice VALUES (6779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691748419);
INSERT INTO public.notice VALUES (6780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691749019);
INSERT INTO public.notice VALUES (6781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691749620);
INSERT INTO public.notice VALUES (6782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691750219);
INSERT INTO public.notice VALUES (6783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691750819);
INSERT INTO public.notice VALUES (6784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691751418);
INSERT INTO public.notice VALUES (6785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691752020);
INSERT INTO public.notice VALUES (6786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691752619);
INSERT INTO public.notice VALUES (6787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691753219);
INSERT INTO public.notice VALUES (6788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691753820);
INSERT INTO public.notice VALUES (6789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691754420);
INSERT INTO public.notice VALUES (6790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691755019);
INSERT INTO public.notice VALUES (6791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691755620);
INSERT INTO public.notice VALUES (6792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691756220);
INSERT INTO public.notice VALUES (6793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691756819);
INSERT INTO public.notice VALUES (6794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691757419);
INSERT INTO public.notice VALUES (6795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691758020);
INSERT INTO public.notice VALUES (6796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691758620);
INSERT INTO public.notice VALUES (6797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691759219);
INSERT INTO public.notice VALUES (6798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691759819);
INSERT INTO public.notice VALUES (6799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691760420);
INSERT INTO public.notice VALUES (6800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691761019);
INSERT INTO public.notice VALUES (6801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691761619);
INSERT INTO public.notice VALUES (6802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691762221);
INSERT INTO public.notice VALUES (6803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691762820);
INSERT INTO public.notice VALUES (6804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691763419);
INSERT INTO public.notice VALUES (6805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691764019);
INSERT INTO public.notice VALUES (6806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691764620);
INSERT INTO public.notice VALUES (6808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691765819);
INSERT INTO public.notice VALUES (6809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691766418);
INSERT INTO public.notice VALUES (6810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691767020);
INSERT INTO public.notice VALUES (6811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691767619);
INSERT INTO public.notice VALUES (6812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691768219);
INSERT INTO public.notice VALUES (6813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691768820);
INSERT INTO public.notice VALUES (6814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691769420);
INSERT INTO public.notice VALUES (6815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691770020);
INSERT INTO public.notice VALUES (6816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691770618);
INSERT INTO public.notice VALUES (6817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691771220);
INSERT INTO public.notice VALUES (6818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691771819);
INSERT INTO public.notice VALUES (6819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691772419);
INSERT INTO public.notice VALUES (6820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691773020);
INSERT INTO public.notice VALUES (6821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691773620);
INSERT INTO public.notice VALUES (6828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691777820);
INSERT INTO public.notice VALUES (6829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691778419);
INSERT INTO public.notice VALUES (6830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691779019);
INSERT INTO public.notice VALUES (6831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691779620);
INSERT INTO public.notice VALUES (6832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691780219);
INSERT INTO public.notice VALUES (6835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691782021);
INSERT INTO public.notice VALUES (6836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691782619);
INSERT INTO public.notice VALUES (6837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691783219);
INSERT INTO public.notice VALUES (6838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691783820);
INSERT INTO public.notice VALUES (6840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691785019);
INSERT INTO public.notice VALUES (6841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691785619);
INSERT INTO public.notice VALUES (6822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691774219);
INSERT INTO public.notice VALUES (6823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691774818);
INSERT INTO public.notice VALUES (6824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691775421);
INSERT INTO public.notice VALUES (6825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691776019);
INSERT INTO public.notice VALUES (6826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691776619);
INSERT INTO public.notice VALUES (6827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691777220);
INSERT INTO public.notice VALUES (6833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691780819);
INSERT INTO public.notice VALUES (6834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691781420);
INSERT INTO public.notice VALUES (6839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691784419);
INSERT INTO public.notice VALUES (6842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691786220);
INSERT INTO public.notice VALUES (6843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691786819);
INSERT INTO public.notice VALUES (6844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691787419);
INSERT INTO public.notice VALUES (6845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691788020);
INSERT INTO public.notice VALUES (6846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691788620);
INSERT INTO public.notice VALUES (6847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691789219);
INSERT INTO public.notice VALUES (6848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691789818);
INSERT INTO public.notice VALUES (6850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691791019);
INSERT INTO public.notice VALUES (6851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691791619);
INSERT INTO public.notice VALUES (6852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691792218);
INSERT INTO public.notice VALUES (6853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691792820);
INSERT INTO public.notice VALUES (6854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691793419);
INSERT INTO public.notice VALUES (6855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691794019);
INSERT INTO public.notice VALUES (6856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691794620);
INSERT INTO public.notice VALUES (6860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691797020);
INSERT INTO public.notice VALUES (6861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691797619);
INSERT INTO public.notice VALUES (6862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691798219);
INSERT INTO public.notice VALUES (6863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691798820);
INSERT INTO public.notice VALUES (6864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691799420);
INSERT INTO public.notice VALUES (6865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691800019);
INSERT INTO public.notice VALUES (6866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691800618);
INSERT INTO public.notice VALUES (6849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691790420);
INSERT INTO public.notice VALUES (6857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691795220);
INSERT INTO public.notice VALUES (6858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691795819);
INSERT INTO public.notice VALUES (6859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691796418);
INSERT INTO public.notice VALUES (7209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692006420);
INSERT INTO public.notice VALUES (7210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692007019);
INSERT INTO public.notice VALUES (7211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692007619);
INSERT INTO public.notice VALUES (7212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692008220);
INSERT INTO public.notice VALUES (7213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692008821);
INSERT INTO public.notice VALUES (7214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692009419);
INSERT INTO public.notice VALUES (7215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692010018);
INSERT INTO public.notice VALUES (7216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692010620);
INSERT INTO public.notice VALUES (7217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692011219);
INSERT INTO public.notice VALUES (7218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692011819);
INSERT INTO public.notice VALUES (7219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692012420);
INSERT INTO public.notice VALUES (6867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691801221);
INSERT INTO public.notice VALUES (6868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691801819);
INSERT INTO public.notice VALUES (6869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691802419);
INSERT INTO public.notice VALUES (6870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691803020);
INSERT INTO public.notice VALUES (6871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691803620);
INSERT INTO public.notice VALUES (6872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691804219);
INSERT INTO public.notice VALUES (6873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691804819);
INSERT INTO public.notice VALUES (6874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691805420);
INSERT INTO public.notice VALUES (6875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691806019);
INSERT INTO public.notice VALUES (6876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691806619);
INSERT INTO public.notice VALUES (6877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691807218);
INSERT INTO public.notice VALUES (6878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691807820);
INSERT INTO public.notice VALUES (6879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691808419);
INSERT INTO public.notice VALUES (6880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691809019);
INSERT INTO public.notice VALUES (6881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691809620);
INSERT INTO public.notice VALUES (6882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691810219);
INSERT INTO public.notice VALUES (6883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691810819);
INSERT INTO public.notice VALUES (6884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691811418);
INSERT INTO public.notice VALUES (6885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691812020);
INSERT INTO public.notice VALUES (6886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691812619);
INSERT INTO public.notice VALUES (6887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691813219);
INSERT INTO public.notice VALUES (6888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691813820);
INSERT INTO public.notice VALUES (6889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691814420);
INSERT INTO public.notice VALUES (6890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691815019);
INSERT INTO public.notice VALUES (6891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691815618);
INSERT INTO public.notice VALUES (6892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691816220);
INSERT INTO public.notice VALUES (6893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691816819);
INSERT INTO public.notice VALUES (6894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691817419);
INSERT INTO public.notice VALUES (6895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691818020);
INSERT INTO public.notice VALUES (6896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691818620);
INSERT INTO public.notice VALUES (6897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691819219);
INSERT INTO public.notice VALUES (6898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691819819);
INSERT INTO public.notice VALUES (6899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691820420);
INSERT INTO public.notice VALUES (6900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691821020);
INSERT INTO public.notice VALUES (7220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692013020);
INSERT INTO public.notice VALUES (7221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692013619);
INSERT INTO public.notice VALUES (7222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692014218);
INSERT INTO public.notice VALUES (7223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692014820);
INSERT INTO public.notice VALUES (7251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692031620);
INSERT INTO public.notice VALUES (7252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692032220);
INSERT INTO public.notice VALUES (7263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692038819);
INSERT INTO public.notice VALUES (7264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692039419);
INSERT INTO public.notice VALUES (7265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692040020);
INSERT INTO public.notice VALUES (7266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692040620);
INSERT INTO public.notice VALUES (7267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692041220);
INSERT INTO public.notice VALUES (6901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691821619);
INSERT INTO public.notice VALUES (6902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691822220);
INSERT INTO public.notice VALUES (6903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691822820);
INSERT INTO public.notice VALUES (6904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691823419);
INSERT INTO public.notice VALUES (6905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691824018);
INSERT INTO public.notice VALUES (6906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691824620);
INSERT INTO public.notice VALUES (6907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691825219);
INSERT INTO public.notice VALUES (6908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691825819);
INSERT INTO public.notice VALUES (6909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691826418);
INSERT INTO public.notice VALUES (6910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691827020);
INSERT INTO public.notice VALUES (6911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691827619);
INSERT INTO public.notice VALUES (6912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691828219);
INSERT INTO public.notice VALUES (6913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691828820);
INSERT INTO public.notice VALUES (6914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691829419);
INSERT INTO public.notice VALUES (6915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691830019);
INSERT INTO public.notice VALUES (6916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691830620);
INSERT INTO public.notice VALUES (6917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691831220);
INSERT INTO public.notice VALUES (6918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691831819);
INSERT INTO public.notice VALUES (6919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691832419);
INSERT INTO public.notice VALUES (6920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691833020);
INSERT INTO public.notice VALUES (6921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691833620);
INSERT INTO public.notice VALUES (6922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691834219);
INSERT INTO public.notice VALUES (6923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691834818);
INSERT INTO public.notice VALUES (6924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691835420);
INSERT INTO public.notice VALUES (6925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691836019);
INSERT INTO public.notice VALUES (6926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691836619);
INSERT INTO public.notice VALUES (6927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691837220);
INSERT INTO public.notice VALUES (6928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691837819);
INSERT INTO public.notice VALUES (6929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691838419);
INSERT INTO public.notice VALUES (6930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691839018);
INSERT INTO public.notice VALUES (6931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691839620);
INSERT INTO public.notice VALUES (6932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691840220);
INSERT INTO public.notice VALUES (6933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691840819);
INSERT INTO public.notice VALUES (6934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691841420);
INSERT INTO public.notice VALUES (6935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691842020);
INSERT INTO public.notice VALUES (6936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691842619);
INSERT INTO public.notice VALUES (6937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691843218);
INSERT INTO public.notice VALUES (6938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691843820);
INSERT INTO public.notice VALUES (6939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691844419);
INSERT INTO public.notice VALUES (6940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691845019);
INSERT INTO public.notice VALUES (6941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691845620);
INSERT INTO public.notice VALUES (6942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691846220);
INSERT INTO public.notice VALUES (6943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691846819);
INSERT INTO public.notice VALUES (6944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691847419);
INSERT INTO public.notice VALUES (6945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691848020);
INSERT INTO public.notice VALUES (6946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691848619);
INSERT INTO public.notice VALUES (6947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691849219);
INSERT INTO public.notice VALUES (6948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691849820);
INSERT INTO public.notice VALUES (6949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691850420);
INSERT INTO public.notice VALUES (6950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691851019);
INSERT INTO public.notice VALUES (6951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691851619);
INSERT INTO public.notice VALUES (6952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691852220);
INSERT INTO public.notice VALUES (6953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691852819);
INSERT INTO public.notice VALUES (6954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691853419);
INSERT INTO public.notice VALUES (6955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691854018);
INSERT INTO public.notice VALUES (6956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691854620);
INSERT INTO public.notice VALUES (6957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691855219);
INSERT INTO public.notice VALUES (6958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691855819);
INSERT INTO public.notice VALUES (6961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691857619);
INSERT INTO public.notice VALUES (6962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691858219);
INSERT INTO public.notice VALUES (6959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691856420);
INSERT INTO public.notice VALUES (6960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691857020);
INSERT INTO public.notice VALUES (6966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691860620);
INSERT INTO public.notice VALUES (6967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691861220);
INSERT INTO public.notice VALUES (6968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691861820);
INSERT INTO public.notice VALUES (6969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691862419);
INSERT INTO public.notice VALUES (6970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691863020);
INSERT INTO public.notice VALUES (6971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691863619);
INSERT INTO public.notice VALUES (6972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691864219);
INSERT INTO public.notice VALUES (6973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691864820);
INSERT INTO public.notice VALUES (6975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691866019);
INSERT INTO public.notice VALUES (6976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691866619);
INSERT INTO public.notice VALUES (6977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691867221);
INSERT INTO public.notice VALUES (6978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691867819);
INSERT INTO public.notice VALUES (6979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691868420);
INSERT INTO public.notice VALUES (6963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691858820);
INSERT INTO public.notice VALUES (6964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691859419);
INSERT INTO public.notice VALUES (6965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691860019);
INSERT INTO public.notice VALUES (6974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691865420);
INSERT INTO public.notice VALUES (6980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691869018);
INSERT INTO public.notice VALUES (6981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691869620);
INSERT INTO public.notice VALUES (6984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691871421);
INSERT INTO public.notice VALUES (6985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691872020);
INSERT INTO public.notice VALUES (6986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691872619);
INSERT INTO public.notice VALUES (6987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691873220);
INSERT INTO public.notice VALUES (6988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691873820);
INSERT INTO public.notice VALUES (6989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691874419);
INSERT INTO public.notice VALUES (7224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692015419);
INSERT INTO public.notice VALUES (7225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692016019);
INSERT INTO public.notice VALUES (7226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692016620);
INSERT INTO public.notice VALUES (6982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691870219);
INSERT INTO public.notice VALUES (6983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691870819);
INSERT INTO public.notice VALUES (6990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691875019);
INSERT INTO public.notice VALUES (6991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691875620);
INSERT INTO public.notice VALUES (6992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691876220);
INSERT INTO public.notice VALUES (6993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691876819);
INSERT INTO public.notice VALUES (6994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691877418);
INSERT INTO public.notice VALUES (6995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691878020);
INSERT INTO public.notice VALUES (6996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691878619);
INSERT INTO public.notice VALUES (6997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691879219);
INSERT INTO public.notice VALUES (6998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691879820);
INSERT INTO public.notice VALUES (6999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691880420);
INSERT INTO public.notice VALUES (7000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691881019);
INSERT INTO public.notice VALUES (7001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691881619);
INSERT INTO public.notice VALUES (7002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691882220);
INSERT INTO public.notice VALUES (7003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691882819);
INSERT INTO public.notice VALUES (7004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691883419);
INSERT INTO public.notice VALUES (7005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691884018);
INSERT INTO public.notice VALUES (7006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691884620);
INSERT INTO public.notice VALUES (7007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691885219);
INSERT INTO public.notice VALUES (7008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691885819);
INSERT INTO public.notice VALUES (7009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691886420);
INSERT INTO public.notice VALUES (7010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691887021);
INSERT INTO public.notice VALUES (7011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691887620);
INSERT INTO public.notice VALUES (7012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691888218);
INSERT INTO public.notice VALUES (7013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691888820);
INSERT INTO public.notice VALUES (7014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691889419);
INSERT INTO public.notice VALUES (7015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691890019);
INSERT INTO public.notice VALUES (7227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692017220);
INSERT INTO public.notice VALUES (7228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692017819);
INSERT INTO public.notice VALUES (7016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691890620);
INSERT INTO public.notice VALUES (7017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691891220);
INSERT INTO public.notice VALUES (7018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691891819);
INSERT INTO public.notice VALUES (7019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1691892419);
INSERT INTO public.notice VALUES (7229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692018419);
INSERT INTO public.notice VALUES (7230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692019024);
INSERT INTO public.notice VALUES (7253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692032819);
INSERT INTO public.notice VALUES (7254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692033418);
INSERT INTO public.notice VALUES (7255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692034020);
INSERT INTO public.notice VALUES (7256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692034620);
INSERT INTO public.notice VALUES (7257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692035219);
INSERT INTO public.notice VALUES (7268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692041819);
INSERT INTO public.notice VALUES (7269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692042420);
INSERT INTO public.notice VALUES (7270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692043020);
INSERT INTO public.notice VALUES (7271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692043619);
INSERT INTO public.notice VALUES (7276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692046620);
INSERT INTO public.notice VALUES (7277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692047220);
INSERT INTO public.notice VALUES (7278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692047819);
INSERT INTO public.notice VALUES (7279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692048418);
INSERT INTO public.notice VALUES (7280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692049020);
INSERT INTO public.notice VALUES (7281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692049619);
INSERT INTO public.notice VALUES (7282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692050219);
INSERT INTO public.notice VALUES (7283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692050820);
INSERT INTO public.notice VALUES (7284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692051420);
INSERT INTO public.notice VALUES (7285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692052019);
INSERT INTO public.notice VALUES (7286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692052619);
INSERT INTO public.notice VALUES (7287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692053220);
INSERT INTO public.notice VALUES (7288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692053819);
INSERT INTO public.notice VALUES (7289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692054420);
INSERT INTO public.notice VALUES (7290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692055020);
INSERT INTO public.notice VALUES (7291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692055619);
INSERT INTO public.notice VALUES (7292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692056219);
INSERT INTO public.notice VALUES (7293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692056819);
INSERT INTO public.notice VALUES (7296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692058619);
INSERT INTO public.notice VALUES (9886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693613860);
INSERT INTO public.notice VALUES (9887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693614460);
INSERT INTO public.notice VALUES (9889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693615660);
INSERT INTO public.notice VALUES (10121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693754860);
INSERT INTO public.notice VALUES (10212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693809461);
INSERT INTO public.notice VALUES (10213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693810061);
INSERT INTO public.notice VALUES (10214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693810660);
INSERT INTO public.notice VALUES (10215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693811263);
INSERT INTO public.notice VALUES (10216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693811861);
INSERT INTO public.notice VALUES (10217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693812460);
INSERT INTO public.notice VALUES (10218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693813060);
INSERT INTO public.notice VALUES (7294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692057420);
INSERT INTO public.notice VALUES (7295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692058019);
INSERT INTO public.notice VALUES (7297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692059220);
INSERT INTO public.notice VALUES (7298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692059820);
INSERT INTO public.notice VALUES (7299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692060419);
INSERT INTO public.notice VALUES (7300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692061018);
INSERT INTO public.notice VALUES (7301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692061620);
INSERT INTO public.notice VALUES (7302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692062220);
INSERT INTO public.notice VALUES (7303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692062819);
INSERT INTO public.notice VALUES (7304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692063419);
INSERT INTO public.notice VALUES (7305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692064020);
INSERT INTO public.notice VALUES (7306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692064619);
INSERT INTO public.notice VALUES (7307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692065219);
INSERT INTO public.notice VALUES (7308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692065820);
INSERT INTO public.notice VALUES (7309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692066420);
INSERT INTO public.notice VALUES (7310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692067019);
INSERT INTO public.notice VALUES (7311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692067618);
INSERT INTO public.notice VALUES (7325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692076019);
INSERT INTO public.notice VALUES (7332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692080219);
INSERT INTO public.notice VALUES (7333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692080820);
INSERT INTO public.notice VALUES (7334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692081420);
INSERT INTO public.notice VALUES (7335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692082019);
INSERT INTO public.notice VALUES (7336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692082619);
INSERT INTO public.notice VALUES (7337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692083220);
INSERT INTO public.notice VALUES (7338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692083819);
INSERT INTO public.notice VALUES (7339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692084419);
INSERT INTO public.notice VALUES (7340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692085020);
INSERT INTO public.notice VALUES (7341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692085620);
INSERT INTO public.notice VALUES (7342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692086219);
INSERT INTO public.notice VALUES (7343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692086819);
INSERT INTO public.notice VALUES (7312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692068220);
INSERT INTO public.notice VALUES (7313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692068819);
INSERT INTO public.notice VALUES (7314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692069419);
INSERT INTO public.notice VALUES (7315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692070020);
INSERT INTO public.notice VALUES (7316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692070620);
INSERT INTO public.notice VALUES (7317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692071219);
INSERT INTO public.notice VALUES (7318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692071818);
INSERT INTO public.notice VALUES (7319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692072420);
INSERT INTO public.notice VALUES (7320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692073019);
INSERT INTO public.notice VALUES (7321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692073619);
INSERT INTO public.notice VALUES (7322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692074218);
INSERT INTO public.notice VALUES (7323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692074820);
INSERT INTO public.notice VALUES (7324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692075419);
INSERT INTO public.notice VALUES (7326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692076620);
INSERT INTO public.notice VALUES (7327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692077220);
INSERT INTO public.notice VALUES (7328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692077820);
INSERT INTO public.notice VALUES (7329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692078418);
INSERT INTO public.notice VALUES (7330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692079020);
INSERT INTO public.notice VALUES (7331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692079619);
INSERT INTO public.notice VALUES (9888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693615061);
INSERT INTO public.notice VALUES (9894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693618662);
INSERT INTO public.notice VALUES (9895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693619261);
INSERT INTO public.notice VALUES (9896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693619860);
INSERT INTO public.notice VALUES (9897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693620460);
INSERT INTO public.notice VALUES (9898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693621061);
INSERT INTO public.notice VALUES (9899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693621661);
INSERT INTO public.notice VALUES (9900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693622260);
INSERT INTO public.notice VALUES (9901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693622860);
INSERT INTO public.notice VALUES (9902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693623461);
INSERT INTO public.notice VALUES (9903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693624060);
INSERT INTO public.notice VALUES (7344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692087420);
INSERT INTO public.notice VALUES (7345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692088019);
INSERT INTO public.notice VALUES (7346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692088619);
INSERT INTO public.notice VALUES (7347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692089220);
INSERT INTO public.notice VALUES (7348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692089820);
INSERT INTO public.notice VALUES (7349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692090419);
INSERT INTO public.notice VALUES (7350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692091019);
INSERT INTO public.notice VALUES (7351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692091620);
INSERT INTO public.notice VALUES (7352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692092220);
INSERT INTO public.notice VALUES (7353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692092819);
INSERT INTO public.notice VALUES (7354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692093421);
INSERT INTO public.notice VALUES (7355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692094020);
INSERT INTO public.notice VALUES (7356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692094619);
INSERT INTO public.notice VALUES (7357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692095219);
INSERT INTO public.notice VALUES (7358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692095820);
INSERT INTO public.notice VALUES (7359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692096420);
INSERT INTO public.notice VALUES (7360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692097019);
INSERT INTO public.notice VALUES (7361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692097618);
INSERT INTO public.notice VALUES (7363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692098820);
INSERT INTO public.notice VALUES (7364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692099419);
INSERT INTO public.notice VALUES (7365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692100021);
INSERT INTO public.notice VALUES (7366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692100620);
INSERT INTO public.notice VALUES (7367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692101219);
INSERT INTO public.notice VALUES (7368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692101819);
INSERT INTO public.notice VALUES (7369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692102420);
INSERT INTO public.notice VALUES (9890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693616260);
INSERT INTO public.notice VALUES (9891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693616861);
INSERT INTO public.notice VALUES (9892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693617461);
INSERT INTO public.notice VALUES (9893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693618060);
INSERT INTO public.notice VALUES (9913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693630061);
INSERT INTO public.notice VALUES (7362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692098220);
INSERT INTO public.notice VALUES (7370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692103020);
INSERT INTO public.notice VALUES (7371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692103619);
INSERT INTO public.notice VALUES (7372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692104218);
INSERT INTO public.notice VALUES (7373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692104820);
INSERT INTO public.notice VALUES (7374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692105419);
INSERT INTO public.notice VALUES (7375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692106019);
INSERT INTO public.notice VALUES (7376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692106620);
INSERT INTO public.notice VALUES (7377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692107220);
INSERT INTO public.notice VALUES (7378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692107819);
INSERT INTO public.notice VALUES (7379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692108419);
INSERT INTO public.notice VALUES (7380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692109020);
INSERT INTO public.notice VALUES (7381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692109619);
INSERT INTO public.notice VALUES (7382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692110219);
INSERT INTO public.notice VALUES (7383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692110820);
INSERT INTO public.notice VALUES (7384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692111420);
INSERT INTO public.notice VALUES (7385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692112019);
INSERT INTO public.notice VALUES (7386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692112619);
INSERT INTO public.notice VALUES (7387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692113220);
INSERT INTO public.notice VALUES (7388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692113820);
INSERT INTO public.notice VALUES (7389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692114419);
INSERT INTO public.notice VALUES (7390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692115018);
INSERT INTO public.notice VALUES (7391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692115620);
INSERT INTO public.notice VALUES (7392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692116219);
INSERT INTO public.notice VALUES (7412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692128220);
INSERT INTO public.notice VALUES (7413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692128820);
INSERT INTO public.notice VALUES (7415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692130018);
INSERT INTO public.notice VALUES (7416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692130620);
INSERT INTO public.notice VALUES (7417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692131219);
INSERT INTO public.notice VALUES (7421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692133619);
INSERT INTO public.notice VALUES (7393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692116819);
INSERT INTO public.notice VALUES (7394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692117420);
INSERT INTO public.notice VALUES (7395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692118020);
INSERT INTO public.notice VALUES (7396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692118619);
INSERT INTO public.notice VALUES (7397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692119218);
INSERT INTO public.notice VALUES (7398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692119820);
INSERT INTO public.notice VALUES (7399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692120419);
INSERT INTO public.notice VALUES (7400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692121020);
INSERT INTO public.notice VALUES (7401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692121620);
INSERT INTO public.notice VALUES (7402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692122220);
INSERT INTO public.notice VALUES (7403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692122819);
INSERT INTO public.notice VALUES (7404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692123418);
INSERT INTO public.notice VALUES (7405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692124020);
INSERT INTO public.notice VALUES (7406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692124619);
INSERT INTO public.notice VALUES (7407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692125219);
INSERT INTO public.notice VALUES (7408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692125820);
INSERT INTO public.notice VALUES (7409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692126420);
INSERT INTO public.notice VALUES (7410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692127019);
INSERT INTO public.notice VALUES (7411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692127619);
INSERT INTO public.notice VALUES (7414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692129419);
INSERT INTO public.notice VALUES (7418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692131819);
INSERT INTO public.notice VALUES (7419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692132421);
INSERT INTO public.notice VALUES (7420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692133020);
INSERT INTO public.notice VALUES (7423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692134820);
INSERT INTO public.notice VALUES (7424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692135420);
INSERT INTO public.notice VALUES (7428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692137819);
INSERT INTO public.notice VALUES (7429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692138419);
INSERT INTO public.notice VALUES (7430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692139020);
INSERT INTO public.notice VALUES (7431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692139619);
INSERT INTO public.notice VALUES (7432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692140219);
INSERT INTO public.notice VALUES (7422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692134218);
INSERT INTO public.notice VALUES (7425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692136019);
INSERT INTO public.notice VALUES (7426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692136620);
INSERT INTO public.notice VALUES (7427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692137220);
INSERT INTO public.notice VALUES (7433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692140820);
INSERT INTO public.notice VALUES (7434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692141420);
INSERT INTO public.notice VALUES (7435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692142019);
INSERT INTO public.notice VALUES (7436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692142619);
INSERT INTO public.notice VALUES (7437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692143220);
INSERT INTO public.notice VALUES (7438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692143819);
INSERT INTO public.notice VALUES (7439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692144419);
INSERT INTO public.notice VALUES (7440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692145018);
INSERT INTO public.notice VALUES (7446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692148619);
INSERT INTO public.notice VALUES (7448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692149820);
INSERT INTO public.notice VALUES (7449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692150419);
INSERT INTO public.notice VALUES (7441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692145620);
INSERT INTO public.notice VALUES (7442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692146219);
INSERT INTO public.notice VALUES (7443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692146819);
INSERT INTO public.notice VALUES (7444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692147420);
INSERT INTO public.notice VALUES (7445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692148020);
INSERT INTO public.notice VALUES (7447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692149218);
INSERT INTO public.notice VALUES (7458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692155820);
INSERT INTO public.notice VALUES (7459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692156420);
INSERT INTO public.notice VALUES (7466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692160620);
INSERT INTO public.notice VALUES (7467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692161219);
INSERT INTO public.notice VALUES (7468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692161819);
INSERT INTO public.notice VALUES (7469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692162420);
INSERT INTO public.notice VALUES (7470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692163019);
INSERT INTO public.notice VALUES (7471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692163619);
INSERT INTO public.notice VALUES (7472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692164218);
INSERT INTO public.notice VALUES (7450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692151019);
INSERT INTO public.notice VALUES (7451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692151620);
INSERT INTO public.notice VALUES (7452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692152220);
INSERT INTO public.notice VALUES (7453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692152819);
INSERT INTO public.notice VALUES (7454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692153419);
INSERT INTO public.notice VALUES (7455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692154020);
INSERT INTO public.notice VALUES (7456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692154619);
INSERT INTO public.notice VALUES (7457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692155219);
INSERT INTO public.notice VALUES (7460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692157019);
INSERT INTO public.notice VALUES (7461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692157619);
INSERT INTO public.notice VALUES (7462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692158220);
INSERT INTO public.notice VALUES (7463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692158820);
INSERT INTO public.notice VALUES (7464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692159419);
INSERT INTO public.notice VALUES (7465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692160018);
INSERT INTO public.notice VALUES (7482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692170219);
INSERT INTO public.notice VALUES (7473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692164820);
INSERT INTO public.notice VALUES (7474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692165419);
INSERT INTO public.notice VALUES (7475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692166019);
INSERT INTO public.notice VALUES (7476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692166620);
INSERT INTO public.notice VALUES (7477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692167220);
INSERT INTO public.notice VALUES (7478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692167819);
INSERT INTO public.notice VALUES (7479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692168419);
INSERT INTO public.notice VALUES (7480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692169020);
INSERT INTO public.notice VALUES (7481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692169619);
INSERT INTO public.notice VALUES (7483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692170821);
INSERT INTO public.notice VALUES (7484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692171420);
INSERT INTO public.notice VALUES (7485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692172019);
INSERT INTO public.notice VALUES (7486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692172619);
INSERT INTO public.notice VALUES (7487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692173220);
INSERT INTO public.notice VALUES (7488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692173820);
INSERT INTO public.notice VALUES (7489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692174419);
INSERT INTO public.notice VALUES (7490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692175019);
INSERT INTO public.notice VALUES (7493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692176819);
INSERT INTO public.notice VALUES (7497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692179220);
INSERT INTO public.notice VALUES (7498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692179820);
INSERT INTO public.notice VALUES (7500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692181019);
INSERT INTO public.notice VALUES (7502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692182220);
INSERT INTO public.notice VALUES (7503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692182819);
INSERT INTO public.notice VALUES (7504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692183419);
INSERT INTO public.notice VALUES (7505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692184020);
INSERT INTO public.notice VALUES (7511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692187620);
INSERT INTO public.notice VALUES (7512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692188220);
INSERT INTO public.notice VALUES (7513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692188820);
INSERT INTO public.notice VALUES (7514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692189419);
INSERT INTO public.notice VALUES (9904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693624660);
INSERT INTO public.notice VALUES (7491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692175620);
INSERT INTO public.notice VALUES (7492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692176220);
INSERT INTO public.notice VALUES (7494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692177420);
INSERT INTO public.notice VALUES (7495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692178020);
INSERT INTO public.notice VALUES (7496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692178619);
INSERT INTO public.notice VALUES (7499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692180419);
INSERT INTO public.notice VALUES (7501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692181620);
INSERT INTO public.notice VALUES (7506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692184620);
INSERT INTO public.notice VALUES (7507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692185219);
INSERT INTO public.notice VALUES (7508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692185820);
INSERT INTO public.notice VALUES (7509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692186420);
INSERT INTO public.notice VALUES (7510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692187019);
INSERT INTO public.notice VALUES (7515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692190020);
INSERT INTO public.notice VALUES (7516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692190620);
INSERT INTO public.notice VALUES (7517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692191219);
INSERT INTO public.notice VALUES (7518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692191819);
INSERT INTO public.notice VALUES (7519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692192420);
INSERT INTO public.notice VALUES (7520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692193020);
INSERT INTO public.notice VALUES (7521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692193619);
INSERT INTO public.notice VALUES (7522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692194221);
INSERT INTO public.notice VALUES (7523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692194820);
INSERT INTO public.notice VALUES (7524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692195419);
INSERT INTO public.notice VALUES (7525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692196019);
INSERT INTO public.notice VALUES (7526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692196620);
INSERT INTO public.notice VALUES (7527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692197220);
INSERT INTO public.notice VALUES (7528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692197819);
INSERT INTO public.notice VALUES (7529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692198418);
INSERT INTO public.notice VALUES (7535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692202020);
INSERT INTO public.notice VALUES (7536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692202619);
INSERT INTO public.notice VALUES (7537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692203220);
INSERT INTO public.notice VALUES (7530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692199020);
INSERT INTO public.notice VALUES (7531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692199619);
INSERT INTO public.notice VALUES (7532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692200219);
INSERT INTO public.notice VALUES (7533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692200820);
INSERT INTO public.notice VALUES (7534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692201420);
INSERT INTO public.notice VALUES (7538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692203819);
INSERT INTO public.notice VALUES (7539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692204419);
INSERT INTO public.notice VALUES (7540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692205020);
INSERT INTO public.notice VALUES (7541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692205620);
INSERT INTO public.notice VALUES (7542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692206219);
INSERT INTO public.notice VALUES (7543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692206819);
INSERT INTO public.notice VALUES (7544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692207421);
INSERT INTO public.notice VALUES (7545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692208019);
INSERT INTO public.notice VALUES (7546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692208619);
INSERT INTO public.notice VALUES (7547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692209219);
INSERT INTO public.notice VALUES (7548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692209820);
INSERT INTO public.notice VALUES (7555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692214020);
INSERT INTO public.notice VALUES (9905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693625261);
INSERT INTO public.notice VALUES (9906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693625861);
INSERT INTO public.notice VALUES (9907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693626460);
INSERT INTO public.notice VALUES (9908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693627060);
INSERT INTO public.notice VALUES (9909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693627661);
INSERT INTO public.notice VALUES (9910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693628261);
INSERT INTO public.notice VALUES (9911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693628860);
INSERT INTO public.notice VALUES (9912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693629461);
INSERT INTO public.notice VALUES (9921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693634861);
INSERT INTO public.notice VALUES (9922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693635460);
INSERT INTO public.notice VALUES (9923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693636062);
INSERT INTO public.notice VALUES (9930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693640259);
INSERT INTO public.notice VALUES (9931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693640861);
INSERT INTO public.notice VALUES (7549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692210419);
INSERT INTO public.notice VALUES (7550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692211019);
INSERT INTO public.notice VALUES (7551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692211618);
INSERT INTO public.notice VALUES (7552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692212220);
INSERT INTO public.notice VALUES (7553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692212819);
INSERT INTO public.notice VALUES (7554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692213419);
INSERT INTO public.notice VALUES (7556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692214619);
INSERT INTO public.notice VALUES (7557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692215219);
INSERT INTO public.notice VALUES (7558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692215819);
INSERT INTO public.notice VALUES (7559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692216420);
INSERT INTO public.notice VALUES (7560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692217019);
INSERT INTO public.notice VALUES (7561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692217619);
INSERT INTO public.notice VALUES (7562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692218220);
INSERT INTO public.notice VALUES (7563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692218820);
INSERT INTO public.notice VALUES (7564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692219419);
INSERT INTO public.notice VALUES (7565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692220019);
INSERT INTO public.notice VALUES (7566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692220620);
INSERT INTO public.notice VALUES (7567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692221219);
INSERT INTO public.notice VALUES (7568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692221819);
INSERT INTO public.notice VALUES (7569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692222420);
INSERT INTO public.notice VALUES (7570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692223020);
INSERT INTO public.notice VALUES (7571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692223619);
INSERT INTO public.notice VALUES (7572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692224219);
INSERT INTO public.notice VALUES (7573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692224820);
INSERT INTO public.notice VALUES (7574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692225420);
INSERT INTO public.notice VALUES (7575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692226019);
INSERT INTO public.notice VALUES (7576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692226618);
INSERT INTO public.notice VALUES (7577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692227220);
INSERT INTO public.notice VALUES (7578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692227819);
INSERT INTO public.notice VALUES (7579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692228419);
INSERT INTO public.notice VALUES (7580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692229020);
INSERT INTO public.notice VALUES (7584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692231420);
INSERT INTO public.notice VALUES (7593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692236819);
INSERT INTO public.notice VALUES (7594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692237418);
INSERT INTO public.notice VALUES (7595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692238020);
INSERT INTO public.notice VALUES (7596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692238619);
INSERT INTO public.notice VALUES (7597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692239219);
INSERT INTO public.notice VALUES (7598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692239820);
INSERT INTO public.notice VALUES (7599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692240420);
INSERT INTO public.notice VALUES (7600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692241019);
INSERT INTO public.notice VALUES (7601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692241618);
INSERT INTO public.notice VALUES (7602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692242220);
INSERT INTO public.notice VALUES (7603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692242820);
INSERT INTO public.notice VALUES (7604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692243419);
INSERT INTO public.notice VALUES (7605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692244021);
INSERT INTO public.notice VALUES (7581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692229620);
INSERT INTO public.notice VALUES (7582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692230219);
INSERT INTO public.notice VALUES (7583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692230819);
INSERT INTO public.notice VALUES (7585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692232019);
INSERT INTO public.notice VALUES (7586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692232619);
INSERT INTO public.notice VALUES (7587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692233218);
INSERT INTO public.notice VALUES (7588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692233820);
INSERT INTO public.notice VALUES (7589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692234419);
INSERT INTO public.notice VALUES (7590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692235019);
INSERT INTO public.notice VALUES (7591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692235620);
INSERT INTO public.notice VALUES (7592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692236220);
INSERT INTO public.notice VALUES (7611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692247619);
INSERT INTO public.notice VALUES (9914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693630660);
INSERT INTO public.notice VALUES (9915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693631260);
INSERT INTO public.notice VALUES (9916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693631861);
INSERT INTO public.notice VALUES (7606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692244620);
INSERT INTO public.notice VALUES (7607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692245219);
INSERT INTO public.notice VALUES (7608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692245819);
INSERT INTO public.notice VALUES (7609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692246420);
INSERT INTO public.notice VALUES (7610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692247020);
INSERT INTO public.notice VALUES (7612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692248220);
INSERT INTO public.notice VALUES (7613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692248820);
INSERT INTO public.notice VALUES (7614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692249419);
INSERT INTO public.notice VALUES (7615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692250022);
INSERT INTO public.notice VALUES (7616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692250621);
INSERT INTO public.notice VALUES (7617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692251220);
INSERT INTO public.notice VALUES (7618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692251819);
INSERT INTO public.notice VALUES (7619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692252418);
INSERT INTO public.notice VALUES (7620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692253020);
INSERT INTO public.notice VALUES (7621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692253620);
INSERT INTO public.notice VALUES (7622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692254219);
INSERT INTO public.notice VALUES (7623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692254820);
INSERT INTO public.notice VALUES (7624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692255420);
INSERT INTO public.notice VALUES (7625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692256019);
INSERT INTO public.notice VALUES (7626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692256620);
INSERT INTO public.notice VALUES (7627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692257220);
INSERT INTO public.notice VALUES (7628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692257819);
INSERT INTO public.notice VALUES (7629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692258420);
INSERT INTO public.notice VALUES (7630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692259020);
INSERT INTO public.notice VALUES (7631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692259620);
INSERT INTO public.notice VALUES (7632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692260219);
INSERT INTO public.notice VALUES (7633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692260819);
INSERT INTO public.notice VALUES (7634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692261420);
INSERT INTO public.notice VALUES (7635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692262019);
INSERT INTO public.notice VALUES (7636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692262619);
INSERT INTO public.notice VALUES (7637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692263220);
INSERT INTO public.notice VALUES (7638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692263820);
INSERT INTO public.notice VALUES (7639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692264419);
INSERT INTO public.notice VALUES (7640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692265019);
INSERT INTO public.notice VALUES (7641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692265620);
INSERT INTO public.notice VALUES (7642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692266221);
INSERT INTO public.notice VALUES (7643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692266819);
INSERT INTO public.notice VALUES (7644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692267418);
INSERT INTO public.notice VALUES (7645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692268020);
INSERT INTO public.notice VALUES (7646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692268619);
INSERT INTO public.notice VALUES (7647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692269219);
INSERT INTO public.notice VALUES (7648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692269820);
INSERT INTO public.notice VALUES (7649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692270420);
INSERT INTO public.notice VALUES (7650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692271019);
INSERT INTO public.notice VALUES (7651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692271618);
INSERT INTO public.notice VALUES (7652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692272220);
INSERT INTO public.notice VALUES (7653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692272819);
INSERT INTO public.notice VALUES (7654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692273419);
INSERT INTO public.notice VALUES (7655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692274020);
INSERT INTO public.notice VALUES (7656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692274620);
INSERT INTO public.notice VALUES (7657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692275219);
INSERT INTO public.notice VALUES (7658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692275819);
INSERT INTO public.notice VALUES (7659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692276420);
INSERT INTO public.notice VALUES (7660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692277019);
INSERT INTO public.notice VALUES (7661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692277619);
INSERT INTO public.notice VALUES (7662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692278220);
INSERT INTO public.notice VALUES (7663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692278820);
INSERT INTO public.notice VALUES (7664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692279419);
INSERT INTO public.notice VALUES (7665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692280019);
INSERT INTO public.notice VALUES (7666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692280620);
INSERT INTO public.notice VALUES (7667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692281220);
INSERT INTO public.notice VALUES (7668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692281819);
INSERT INTO public.notice VALUES (7669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692282419);
INSERT INTO public.notice VALUES (7670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692283020);
INSERT INTO public.notice VALUES (7671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692283619);
INSERT INTO public.notice VALUES (7672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692284219);
INSERT INTO public.notice VALUES (7673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692284820);
INSERT INTO public.notice VALUES (7674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692285420);
INSERT INTO public.notice VALUES (7675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692286019);
INSERT INTO public.notice VALUES (7676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692286619);
INSERT INTO public.notice VALUES (7677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692287220);
INSERT INTO public.notice VALUES (7678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692287819);
INSERT INTO public.notice VALUES (7679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692288419);
INSERT INTO public.notice VALUES (7680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692289018);
INSERT INTO public.notice VALUES (7681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692289620);
INSERT INTO public.notice VALUES (7682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692290219);
INSERT INTO public.notice VALUES (7683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692290819);
INSERT INTO public.notice VALUES (7684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692291420);
INSERT INTO public.notice VALUES (7685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692292020);
INSERT INTO public.notice VALUES (7686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692292619);
INSERT INTO public.notice VALUES (7687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692293218);
INSERT INTO public.notice VALUES (7688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692293820);
INSERT INTO public.notice VALUES (7689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692294419);
INSERT INTO public.notice VALUES (7690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692295019);
INSERT INTO public.notice VALUES (7691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692295620);
INSERT INTO public.notice VALUES (7692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692296219);
INSERT INTO public.notice VALUES (7693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692296819);
INSERT INTO public.notice VALUES (7694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692297419);
INSERT INTO public.notice VALUES (7695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692298020);
INSERT INTO public.notice VALUES (7696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692298619);
INSERT INTO public.notice VALUES (7697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692299220);
INSERT INTO public.notice VALUES (7698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692299820);
INSERT INTO public.notice VALUES (7699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692300420);
INSERT INTO public.notice VALUES (7700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692301019);
INSERT INTO public.notice VALUES (7701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692301619);
INSERT INTO public.notice VALUES (7702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692302220);
INSERT INTO public.notice VALUES (7703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692302819);
INSERT INTO public.notice VALUES (7704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692303419);
INSERT INTO public.notice VALUES (7705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692304020);
INSERT INTO public.notice VALUES (7706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692304620);
INSERT INTO public.notice VALUES (7707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692305219);
INSERT INTO public.notice VALUES (7723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692314820);
INSERT INTO public.notice VALUES (7724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692315420);
INSERT INTO public.notice VALUES (7725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692316019);
INSERT INTO public.notice VALUES (7726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692316619);
INSERT INTO public.notice VALUES (7708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692305819);
INSERT INTO public.notice VALUES (7709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692306420);
INSERT INTO public.notice VALUES (7710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692307020);
INSERT INTO public.notice VALUES (7711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692307619);
INSERT INTO public.notice VALUES (7712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692308218);
INSERT INTO public.notice VALUES (7713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692308820);
INSERT INTO public.notice VALUES (7714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692309419);
INSERT INTO public.notice VALUES (7715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692310019);
INSERT INTO public.notice VALUES (7716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692310620);
INSERT INTO public.notice VALUES (7717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692311220);
INSERT INTO public.notice VALUES (7718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692311819);
INSERT INTO public.notice VALUES (7719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692312418);
INSERT INTO public.notice VALUES (7720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692313020);
INSERT INTO public.notice VALUES (7721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692313619);
INSERT INTO public.notice VALUES (7722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692314219);
INSERT INTO public.notice VALUES (7727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692317220);
INSERT INTO public.notice VALUES (7728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692317820);
INSERT INTO public.notice VALUES (7729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692318419);
INSERT INTO public.notice VALUES (7730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692319018);
INSERT INTO public.notice VALUES (7731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692319621);
INSERT INTO public.notice VALUES (7732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692320219);
INSERT INTO public.notice VALUES (7733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692320819);
INSERT INTO public.notice VALUES (7734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692321420);
INSERT INTO public.notice VALUES (7735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692322019);
INSERT INTO public.notice VALUES (7736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692322619);
INSERT INTO public.notice VALUES (7737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692323218);
INSERT INTO public.notice VALUES (7738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692323820);
INSERT INTO public.notice VALUES (7739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692324419);
INSERT INTO public.notice VALUES (7740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692325019);
INSERT INTO public.notice VALUES (7741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692325621);
INSERT INTO public.notice VALUES (7742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692326220);
INSERT INTO public.notice VALUES (7743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692326819);
INSERT INTO public.notice VALUES (7744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692327419);
INSERT INTO public.notice VALUES (7745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692328021);
INSERT INTO public.notice VALUES (7746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692328620);
INSERT INTO public.notice VALUES (7747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692329219);
INSERT INTO public.notice VALUES (7748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692329819);
INSERT INTO public.notice VALUES (7749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692330420);
INSERT INTO public.notice VALUES (7750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692331019);
INSERT INTO public.notice VALUES (7751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692331619);
INSERT INTO public.notice VALUES (7752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692332220);
INSERT INTO public.notice VALUES (7753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692332820);
INSERT INTO public.notice VALUES (7754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692333419);
INSERT INTO public.notice VALUES (7755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692334018);
INSERT INTO public.notice VALUES (7756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692334620);
INSERT INTO public.notice VALUES (7757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692335219);
INSERT INTO public.notice VALUES (7758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692335819);
INSERT INTO public.notice VALUES (7759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692336420);
INSERT INTO public.notice VALUES (7760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692337020);
INSERT INTO public.notice VALUES (7774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692345420);
INSERT INTO public.notice VALUES (7775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692346019);
INSERT INTO public.notice VALUES (7776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692346619);
INSERT INTO public.notice VALUES (7777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692347220);
INSERT INTO public.notice VALUES (7778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692347820);
INSERT INTO public.notice VALUES (7779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692348419);
INSERT INTO public.notice VALUES (7780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692349018);
INSERT INTO public.notice VALUES (7781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692349620);
INSERT INTO public.notice VALUES (9917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693632461);
INSERT INTO public.notice VALUES (10122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693755461);
INSERT INTO public.notice VALUES (10123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693756061);
INSERT INTO public.notice VALUES (7761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692337619);
INSERT INTO public.notice VALUES (7762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692338218);
INSERT INTO public.notice VALUES (7763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692338820);
INSERT INTO public.notice VALUES (7764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692339419);
INSERT INTO public.notice VALUES (7765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692340019);
INSERT INTO public.notice VALUES (7766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692340620);
INSERT INTO public.notice VALUES (7767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692341220);
INSERT INTO public.notice VALUES (7768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692341819);
INSERT INTO public.notice VALUES (7769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692342419);
INSERT INTO public.notice VALUES (7770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692343020);
INSERT INTO public.notice VALUES (7771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692343620);
INSERT INTO public.notice VALUES (7772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692344219);
INSERT INTO public.notice VALUES (7773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692344818);
INSERT INTO public.notice VALUES (7782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692350219);
INSERT INTO public.notice VALUES (7783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692350819);
INSERT INTO public.notice VALUES (7784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692351420);
INSERT INTO public.notice VALUES (7785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692352019);
INSERT INTO public.notice VALUES (7786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692352619);
INSERT INTO public.notice VALUES (7787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692353220);
INSERT INTO public.notice VALUES (7788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692353820);
INSERT INTO public.notice VALUES (7789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692354419);
INSERT INTO public.notice VALUES (7790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692355019);
INSERT INTO public.notice VALUES (7791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692355620);
INSERT INTO public.notice VALUES (7792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692356220);
INSERT INTO public.notice VALUES (7793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692356819);
INSERT INTO public.notice VALUES (7794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692357419);
INSERT INTO public.notice VALUES (7795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692358020);
INSERT INTO public.notice VALUES (7796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692358619);
INSERT INTO public.notice VALUES (7797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692359219);
INSERT INTO public.notice VALUES (7798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692359819);
INSERT INTO public.notice VALUES (7799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692360420);
INSERT INTO public.notice VALUES (7800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692361020);
INSERT INTO public.notice VALUES (7801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692361619);
INSERT INTO public.notice VALUES (7807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692365219);
INSERT INTO public.notice VALUES (7808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692365819);
INSERT INTO public.notice VALUES (7809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692366420);
INSERT INTO public.notice VALUES (7812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692368221);
INSERT INTO public.notice VALUES (7819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692372419);
INSERT INTO public.notice VALUES (9918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693633060);
INSERT INTO public.notice VALUES (9919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693633660);
INSERT INTO public.notice VALUES (9920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693634261);
INSERT INTO public.notice VALUES (9924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693636661);
INSERT INTO public.notice VALUES (9925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693637260);
INSERT INTO public.notice VALUES (9926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693637860);
INSERT INTO public.notice VALUES (9927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693638461);
INSERT INTO public.notice VALUES (7802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692362220);
INSERT INTO public.notice VALUES (7803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692362820);
INSERT INTO public.notice VALUES (7804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692363419);
INSERT INTO public.notice VALUES (7805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692364019);
INSERT INTO public.notice VALUES (7806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692364620);
INSERT INTO public.notice VALUES (7810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692367020);
INSERT INTO public.notice VALUES (7811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692367620);
INSERT INTO public.notice VALUES (7813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692368820);
INSERT INTO public.notice VALUES (7814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692369420);
INSERT INTO public.notice VALUES (7815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692370019);
INSERT INTO public.notice VALUES (7816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692370620);
INSERT INTO public.notice VALUES (7817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692371220);
INSERT INTO public.notice VALUES (7818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692371819);
INSERT INTO public.notice VALUES (7820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692373020);
INSERT INTO public.notice VALUES (7821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692373619);
INSERT INTO public.notice VALUES (7822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692374219);
INSERT INTO public.notice VALUES (7823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692374818);
INSERT INTO public.notice VALUES (7827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692377220);
INSERT INTO public.notice VALUES (9928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693639061);
INSERT INTO public.notice VALUES (9929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693639660);
INSERT INTO public.notice VALUES (9935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693643261);
INSERT INTO public.notice VALUES (9939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693645661);
INSERT INTO public.notice VALUES (10125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693757262);
INSERT INTO public.notice VALUES (10126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693757861);
INSERT INTO public.notice VALUES (10127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693758460);
INSERT INTO public.notice VALUES (10128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693759060);
INSERT INTO public.notice VALUES (10219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693813661);
INSERT INTO public.notice VALUES (10222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693815460);
INSERT INTO public.notice VALUES (10223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693816061);
INSERT INTO public.notice VALUES (10233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693822060);
INSERT INTO public.notice VALUES (7824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692375420);
INSERT INTO public.notice VALUES (7825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692376019);
INSERT INTO public.notice VALUES (7826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692376619);
INSERT INTO public.notice VALUES (7828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692377820);
INSERT INTO public.notice VALUES (7829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692378419);
INSERT INTO public.notice VALUES (7830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692379018);
INSERT INTO public.notice VALUES (7831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692379620);
INSERT INTO public.notice VALUES (7832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692380220);
INSERT INTO public.notice VALUES (7833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692380819);
INSERT INTO public.notice VALUES (7834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692381420);
INSERT INTO public.notice VALUES (7835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692382020);
INSERT INTO public.notice VALUES (7836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692382619);
INSERT INTO public.notice VALUES (7837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692383218);
INSERT INTO public.notice VALUES (7838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692383820);
INSERT INTO public.notice VALUES (7839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692384420);
INSERT INTO public.notice VALUES (7840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692385019);
INSERT INTO public.notice VALUES (7841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692385620);
INSERT INTO public.notice VALUES (7842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692386220);
INSERT INTO public.notice VALUES (7843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692386820);
INSERT INTO public.notice VALUES (7844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692387419);
INSERT INTO public.notice VALUES (7853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692392820);
INSERT INTO public.notice VALUES (7854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692393419);
INSERT INTO public.notice VALUES (7855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692394018);
INSERT INTO public.notice VALUES (7856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692394620);
INSERT INTO public.notice VALUES (9932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693641461);
INSERT INTO public.notice VALUES (10129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693759661);
INSERT INTO public.notice VALUES (10130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693760261);
INSERT INTO public.notice VALUES (10226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693817860);
INSERT INTO public.notice VALUES (10227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693818461);
INSERT INTO public.notice VALUES (10228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693819060);
INSERT INTO public.notice VALUES (7845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692388020);
INSERT INTO public.notice VALUES (7846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692388619);
INSERT INTO public.notice VALUES (7847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692389219);
INSERT INTO public.notice VALUES (7848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692389820);
INSERT INTO public.notice VALUES (7849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692390420);
INSERT INTO public.notice VALUES (7850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692391019);
INSERT INTO public.notice VALUES (7851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692391619);
INSERT INTO public.notice VALUES (7852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692392220);
INSERT INTO public.notice VALUES (7857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692395219);
INSERT INTO public.notice VALUES (7858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692395819);
INSERT INTO public.notice VALUES (7859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692396420);
INSERT INTO public.notice VALUES (7860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692397020);
INSERT INTO public.notice VALUES (7861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692397619);
INSERT INTO public.notice VALUES (7862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692398218);
INSERT INTO public.notice VALUES (7863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692398820);
INSERT INTO public.notice VALUES (7864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692399419);
INSERT INTO public.notice VALUES (7865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692400019);
INSERT INTO public.notice VALUES (7866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692400620);
INSERT INTO public.notice VALUES (7867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692401220);
INSERT INTO public.notice VALUES (7868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692401819);
INSERT INTO public.notice VALUES (7869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692402418);
INSERT INTO public.notice VALUES (7874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692405420);
INSERT INTO public.notice VALUES (7875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692406019);
INSERT INTO public.notice VALUES (9933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693642060);
INSERT INTO public.notice VALUES (9934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693642661);
INSERT INTO public.notice VALUES (9936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693643860);
INSERT INTO public.notice VALUES (9937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693644459);
INSERT INTO public.notice VALUES (9938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693645061);
INSERT INTO public.notice VALUES (9947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693650460);
INSERT INTO public.notice VALUES (9948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693651059);
INSERT INTO public.notice VALUES (7870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692403020);
INSERT INTO public.notice VALUES (7871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692403620);
INSERT INTO public.notice VALUES (7872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692404219);
INSERT INTO public.notice VALUES (7873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692404819);
INSERT INTO public.notice VALUES (7876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692406619);
INSERT INTO public.notice VALUES (7877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692407220);
INSERT INTO public.notice VALUES (7878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692407820);
INSERT INTO public.notice VALUES (7879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692408419);
INSERT INTO public.notice VALUES (7880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692409019);
INSERT INTO public.notice VALUES (7881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692409620);
INSERT INTO public.notice VALUES (7882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692410220);
INSERT INTO public.notice VALUES (7883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692410819);
INSERT INTO public.notice VALUES (7884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692411420);
INSERT INTO public.notice VALUES (7885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692412020);
INSERT INTO public.notice VALUES (7886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692412619);
INSERT INTO public.notice VALUES (7887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692413219);
INSERT INTO public.notice VALUES (7888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692413820);
INSERT INTO public.notice VALUES (7889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692414419);
INSERT INTO public.notice VALUES (7890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692415019);
INSERT INTO public.notice VALUES (7891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692415620);
INSERT INTO public.notice VALUES (7892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692416220);
INSERT INTO public.notice VALUES (7893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692416820);
INSERT INTO public.notice VALUES (7894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692417419);
INSERT INTO public.notice VALUES (7895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692418020);
INSERT INTO public.notice VALUES (7896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692418620);
INSERT INTO public.notice VALUES (7897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692419219);
INSERT INTO public.notice VALUES (7898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692419818);
INSERT INTO public.notice VALUES (7899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692420420);
INSERT INTO public.notice VALUES (7900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692421019);
INSERT INTO public.notice VALUES (7901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692421619);
INSERT INTO public.notice VALUES (7902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692422220);
INSERT INTO public.notice VALUES (7903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692422820);
INSERT INTO public.notice VALUES (7904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692423419);
INSERT INTO public.notice VALUES (7905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692424019);
INSERT INTO public.notice VALUES (7906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692424620);
INSERT INTO public.notice VALUES (7907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692425220);
INSERT INTO public.notice VALUES (7908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692425819);
INSERT INTO public.notice VALUES (7909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692426420);
INSERT INTO public.notice VALUES (7910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692427020);
INSERT INTO public.notice VALUES (7911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692427619);
INSERT INTO public.notice VALUES (7912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692428219);
INSERT INTO public.notice VALUES (7913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692428822);
INSERT INTO public.notice VALUES (7914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692429419);
INSERT INTO public.notice VALUES (7915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692430019);
INSERT INTO public.notice VALUES (7916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692430619);
INSERT INTO public.notice VALUES (7917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692431220);
INSERT INTO public.notice VALUES (7918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692431819);
INSERT INTO public.notice VALUES (7919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692432419);
INSERT INTO public.notice VALUES (7920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692433020);
INSERT INTO public.notice VALUES (7921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692433620);
INSERT INTO public.notice VALUES (7922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692434219);
INSERT INTO public.notice VALUES (7923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692434818);
INSERT INTO public.notice VALUES (7924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692435420);
INSERT INTO public.notice VALUES (7925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692436020);
INSERT INTO public.notice VALUES (7926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692436619);
INSERT INTO public.notice VALUES (7927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692437220);
INSERT INTO public.notice VALUES (7928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692437820);
INSERT INTO public.notice VALUES (7929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692438419);
INSERT INTO public.notice VALUES (7930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692439019);
INSERT INTO public.notice VALUES (7931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692439620);
INSERT INTO public.notice VALUES (7932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692440220);
INSERT INTO public.notice VALUES (7933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692440819);
INSERT INTO public.notice VALUES (7934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692441418);
INSERT INTO public.notice VALUES (7936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692442619);
INSERT INTO public.notice VALUES (7937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692443219);
INSERT INTO public.notice VALUES (7938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692443820);
INSERT INTO public.notice VALUES (7939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692444420);
INSERT INTO public.notice VALUES (7940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692445019);
INSERT INTO public.notice VALUES (7941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692445619);
INSERT INTO public.notice VALUES (7942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692446220);
INSERT INTO public.notice VALUES (7943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692446819);
INSERT INTO public.notice VALUES (9940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693646261);
INSERT INTO public.notice VALUES (9941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693646861);
INSERT INTO public.notice VALUES (9942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693647462);
INSERT INTO public.notice VALUES (10131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693760860);
INSERT INTO public.notice VALUES (7935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692442020);
INSERT INTO public.notice VALUES (7944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692447419);
INSERT INTO public.notice VALUES (7945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692448020);
INSERT INTO public.notice VALUES (7946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692448620);
INSERT INTO public.notice VALUES (7947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692449219);
INSERT INTO public.notice VALUES (7948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692449818);
INSERT INTO public.notice VALUES (7949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692450420);
INSERT INTO public.notice VALUES (7950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692451019);
INSERT INTO public.notice VALUES (7951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692451619);
INSERT INTO public.notice VALUES (7952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692452218);
INSERT INTO public.notice VALUES (7953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692452820);
INSERT INTO public.notice VALUES (7954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692453419);
INSERT INTO public.notice VALUES (7955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692454019);
INSERT INTO public.notice VALUES (7956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692454620);
INSERT INTO public.notice VALUES (7957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692455220);
INSERT INTO public.notice VALUES (7958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692455819);
INSERT INTO public.notice VALUES (7959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692456418);
INSERT INTO public.notice VALUES (7960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692457020);
INSERT INTO public.notice VALUES (7961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692457619);
INSERT INTO public.notice VALUES (7962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692458219);
INSERT INTO public.notice VALUES (7963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692458820);
INSERT INTO public.notice VALUES (7964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692459420);
INSERT INTO public.notice VALUES (7965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692460019);
INSERT INTO public.notice VALUES (7966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692460619);
INSERT INTO public.notice VALUES (7967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692461220);
INSERT INTO public.notice VALUES (7968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692461820);
INSERT INTO public.notice VALUES (7969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692462419);
INSERT INTO public.notice VALUES (7970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692463020);
INSERT INTO public.notice VALUES (7971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692463620);
INSERT INTO public.notice VALUES (7972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692464220);
INSERT INTO public.notice VALUES (7973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692464818);
INSERT INTO public.notice VALUES (7974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692465420);
INSERT INTO public.notice VALUES (7975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692466019);
INSERT INTO public.notice VALUES (7976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692466620);
INSERT INTO public.notice VALUES (7977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692467218);
INSERT INTO public.notice VALUES (7978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692467820);
INSERT INTO public.notice VALUES (7979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692468420);
INSERT INTO public.notice VALUES (7980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692469019);
INSERT INTO public.notice VALUES (7981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692469620);
INSERT INTO public.notice VALUES (7982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692470220);
INSERT INTO public.notice VALUES (7983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692470819);
INSERT INTO public.notice VALUES (7984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692471419);
INSERT INTO public.notice VALUES (7985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692472020);
INSERT INTO public.notice VALUES (7986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692472620);
INSERT INTO public.notice VALUES (7987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692473219);
INSERT INTO public.notice VALUES (7988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692473820);
INSERT INTO public.notice VALUES (7989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692474420);
INSERT INTO public.notice VALUES (7990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692475019);
INSERT INTO public.notice VALUES (8007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692485220);
INSERT INTO public.notice VALUES (8012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692488219);
INSERT INTO public.notice VALUES (8014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692489420);
INSERT INTO public.notice VALUES (8015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692490019);
INSERT INTO public.notice VALUES (8016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692490619);
INSERT INTO public.notice VALUES (9943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693648060);
INSERT INTO public.notice VALUES (9944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693648660);
INSERT INTO public.notice VALUES (9945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693649261);
INSERT INTO public.notice VALUES (9946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693649860);
INSERT INTO public.notice VALUES (10132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693761460);
INSERT INTO public.notice VALUES (10134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693762661);
INSERT INTO public.notice VALUES (10229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693819660);
INSERT INTO public.notice VALUES (7991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692475618);
INSERT INTO public.notice VALUES (7992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692476220);
INSERT INTO public.notice VALUES (7993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692476819);
INSERT INTO public.notice VALUES (7994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692477419);
INSERT INTO public.notice VALUES (7995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692478020);
INSERT INTO public.notice VALUES (7996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692478620);
INSERT INTO public.notice VALUES (7997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692479219);
INSERT INTO public.notice VALUES (7998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692479819);
INSERT INTO public.notice VALUES (7999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692480420);
INSERT INTO public.notice VALUES (8000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692481019);
INSERT INTO public.notice VALUES (8001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692481619);
INSERT INTO public.notice VALUES (8002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692482220);
INSERT INTO public.notice VALUES (8003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692482820);
INSERT INTO public.notice VALUES (8004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692483419);
INSERT INTO public.notice VALUES (8005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692484019);
INSERT INTO public.notice VALUES (8006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692484620);
INSERT INTO public.notice VALUES (8008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692485819);
INSERT INTO public.notice VALUES (8009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692486419);
INSERT INTO public.notice VALUES (8010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692487020);
INSERT INTO public.notice VALUES (8011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692487619);
INSERT INTO public.notice VALUES (8013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692488820);
INSERT INTO public.notice VALUES (8017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692491220);
INSERT INTO public.notice VALUES (8018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692491819);
INSERT INTO public.notice VALUES (8019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692492419);
INSERT INTO public.notice VALUES (8020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692493018);
INSERT INTO public.notice VALUES (8021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692493620);
INSERT INTO public.notice VALUES (8022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692494219);
INSERT INTO public.notice VALUES (8023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692494819);
INSERT INTO public.notice VALUES (8024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692495420);
INSERT INTO public.notice VALUES (8025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692496019);
INSERT INTO public.notice VALUES (8026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692496619);
INSERT INTO public.notice VALUES (8027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692497218);
INSERT INTO public.notice VALUES (8028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692497820);
INSERT INTO public.notice VALUES (8029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692498420);
INSERT INTO public.notice VALUES (8038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692503818);
INSERT INTO public.notice VALUES (8039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692504420);
INSERT INTO public.notice VALUES (8040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692505019);
INSERT INTO public.notice VALUES (8041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692505619);
INSERT INTO public.notice VALUES (9949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693651661);
INSERT INTO public.notice VALUES (9950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693652260);
INSERT INTO public.notice VALUES (9951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693652860);
INSERT INTO public.notice VALUES (9952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693653462);
INSERT INTO public.notice VALUES (9953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693654061);
INSERT INTO public.notice VALUES (9954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693654660);
INSERT INTO public.notice VALUES (9973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693666060);
INSERT INTO public.notice VALUES (8030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692499019);
INSERT INTO public.notice VALUES (8031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692499620);
INSERT INTO public.notice VALUES (8032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692500220);
INSERT INTO public.notice VALUES (8033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692500819);
INSERT INTO public.notice VALUES (8034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692501419);
INSERT INTO public.notice VALUES (8035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692502020);
INSERT INTO public.notice VALUES (8036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692502619);
INSERT INTO public.notice VALUES (8037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692503219);
INSERT INTO public.notice VALUES (8042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692506220);
INSERT INTO public.notice VALUES (8043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692506819);
INSERT INTO public.notice VALUES (8044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692507419);
INSERT INTO public.notice VALUES (8045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692508018);
INSERT INTO public.notice VALUES (8046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692508620);
INSERT INTO public.notice VALUES (8047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692509219);
INSERT INTO public.notice VALUES (8048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692509819);
INSERT INTO public.notice VALUES (8049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692510420);
INSERT INTO public.notice VALUES (8050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692511020);
INSERT INTO public.notice VALUES (8051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692511619);
INSERT INTO public.notice VALUES (8052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692512219);
INSERT INTO public.notice VALUES (8053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692512820);
INSERT INTO public.notice VALUES (8054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692513419);
INSERT INTO public.notice VALUES (8061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692517619);
INSERT INTO public.notice VALUES (8062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692518219);
INSERT INTO public.notice VALUES (9955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693655261);
INSERT INTO public.notice VALUES (9956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693655861);
INSERT INTO public.notice VALUES (9957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693656460);
INSERT INTO public.notice VALUES (9958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693657060);
INSERT INTO public.notice VALUES (9959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693657661);
INSERT INTO public.notice VALUES (9960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693658261);
INSERT INTO public.notice VALUES (9961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693658860);
INSERT INTO public.notice VALUES (8055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692514019);
INSERT INTO public.notice VALUES (8056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692514618);
INSERT INTO public.notice VALUES (8057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692515220);
INSERT INTO public.notice VALUES (8058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692515819);
INSERT INTO public.notice VALUES (8059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692516419);
INSERT INTO public.notice VALUES (8060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692517020);
INSERT INTO public.notice VALUES (8063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692518820);
INSERT INTO public.notice VALUES (8064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692519420);
INSERT INTO public.notice VALUES (8065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692520019);
INSERT INTO public.notice VALUES (8066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692520619);
INSERT INTO public.notice VALUES (8067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692521221);
INSERT INTO public.notice VALUES (8068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692521819);
INSERT INTO public.notice VALUES (8069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692522419);
INSERT INTO public.notice VALUES (8070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692523018);
INSERT INTO public.notice VALUES (8071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692523620);
INSERT INTO public.notice VALUES (8072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692524219);
INSERT INTO public.notice VALUES (8073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692524819);
INSERT INTO public.notice VALUES (8074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692525420);
INSERT INTO public.notice VALUES (8075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692526020);
INSERT INTO public.notice VALUES (8077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692527218);
INSERT INTO public.notice VALUES (8078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692527820);
INSERT INTO public.notice VALUES (8079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692528419);
INSERT INTO public.notice VALUES (8080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692529019);
INSERT INTO public.notice VALUES (8081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692529619);
INSERT INTO public.notice VALUES (8082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692530221);
INSERT INTO public.notice VALUES (8084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692531419);
INSERT INTO public.notice VALUES (8085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692532020);
INSERT INTO public.notice VALUES (8089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692534420);
INSERT INTO public.notice VALUES (8090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692535020);
INSERT INTO public.notice VALUES (8095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692538018);
INSERT INTO public.notice VALUES (8076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692526619);
INSERT INTO public.notice VALUES (8083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692530820);
INSERT INTO public.notice VALUES (8086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692532619);
INSERT INTO public.notice VALUES (8087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692533219);
INSERT INTO public.notice VALUES (8088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692533818);
INSERT INTO public.notice VALUES (8091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692535619);
INSERT INTO public.notice VALUES (8092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692536220);
INSERT INTO public.notice VALUES (8093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692536820);
INSERT INTO public.notice VALUES (8094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692537419);
INSERT INTO public.notice VALUES (9962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693659460);
INSERT INTO public.notice VALUES (9963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693660061);
INSERT INTO public.notice VALUES (9964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693660661);
INSERT INTO public.notice VALUES (9965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693661260);
INSERT INTO public.notice VALUES (9966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693661861);
INSERT INTO public.notice VALUES (9967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693662461);
INSERT INTO public.notice VALUES (8096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692538620);
INSERT INTO public.notice VALUES (8097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692539219);
INSERT INTO public.notice VALUES (8098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692539819);
INSERT INTO public.notice VALUES (8099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692540420);
INSERT INTO public.notice VALUES (8100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692541020);
INSERT INTO public.notice VALUES (8101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692541619);
INSERT INTO public.notice VALUES (8102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692542219);
INSERT INTO public.notice VALUES (8103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692542820);
INSERT INTO public.notice VALUES (8104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692543420);
INSERT INTO public.notice VALUES (8105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692544020);
INSERT INTO public.notice VALUES (8106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692544618);
INSERT INTO public.notice VALUES (8107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692545220);
INSERT INTO public.notice VALUES (8108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692545819);
INSERT INTO public.notice VALUES (8109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692546419);
INSERT INTO public.notice VALUES (8110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692547020);
INSERT INTO public.notice VALUES (8111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692547620);
INSERT INTO public.notice VALUES (8112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692548219);
INSERT INTO public.notice VALUES (8113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692548819);
INSERT INTO public.notice VALUES (8114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692549420);
INSERT INTO public.notice VALUES (8115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692550019);
INSERT INTO public.notice VALUES (8116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692550619);
INSERT INTO public.notice VALUES (8117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692551220);
INSERT INTO public.notice VALUES (8118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692551819);
INSERT INTO public.notice VALUES (8119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692552419);
INSERT INTO public.notice VALUES (8120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692553019);
INSERT INTO public.notice VALUES (8121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692553619);
INSERT INTO public.notice VALUES (8122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692554219);
INSERT INTO public.notice VALUES (8123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692554819);
INSERT INTO public.notice VALUES (8124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692555420);
INSERT INTO public.notice VALUES (8125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692556020);
INSERT INTO public.notice VALUES (8126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692556619);
INSERT INTO public.notice VALUES (8127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692557219);
INSERT INTO public.notice VALUES (8128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692557820);
INSERT INTO public.notice VALUES (8129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692558419);
INSERT INTO public.notice VALUES (8130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692559018);
INSERT INTO public.notice VALUES (8131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692559621);
INSERT INTO public.notice VALUES (8132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692560219);
INSERT INTO public.notice VALUES (8133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692560819);
INSERT INTO public.notice VALUES (8134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692561418);
INSERT INTO public.notice VALUES (8135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692562020);
INSERT INTO public.notice VALUES (8136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692562619);
INSERT INTO public.notice VALUES (8137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692563219);
INSERT INTO public.notice VALUES (8138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692563820);
INSERT INTO public.notice VALUES (8139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692564419);
INSERT INTO public.notice VALUES (8140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692565019);
INSERT INTO public.notice VALUES (8141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692565619);
INSERT INTO public.notice VALUES (8142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692566220);
INSERT INTO public.notice VALUES (8143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692566819);
INSERT INTO public.notice VALUES (8144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692567419);
INSERT INTO public.notice VALUES (8146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692568620);
INSERT INTO public.notice VALUES (8147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692569219);
INSERT INTO public.notice VALUES (8148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692569818);
INSERT INTO public.notice VALUES (8149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692570420);
INSERT INTO public.notice VALUES (8160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692577020);
INSERT INTO public.notice VALUES (8161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692577619);
INSERT INTO public.notice VALUES (8180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692589019);
INSERT INTO public.notice VALUES (9968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693663060);
INSERT INTO public.notice VALUES (9969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693663660);
INSERT INTO public.notice VALUES (9970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693664261);
INSERT INTO public.notice VALUES (9971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693664861);
INSERT INTO public.notice VALUES (8145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692568020);
INSERT INTO public.notice VALUES (8150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692571019);
INSERT INTO public.notice VALUES (8151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692571619);
INSERT INTO public.notice VALUES (8152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692572218);
INSERT INTO public.notice VALUES (8153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692572820);
INSERT INTO public.notice VALUES (8154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692573419);
INSERT INTO public.notice VALUES (8155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692574019);
INSERT INTO public.notice VALUES (8156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692574620);
INSERT INTO public.notice VALUES (8157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692575220);
INSERT INTO public.notice VALUES (8158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692575819);
INSERT INTO public.notice VALUES (8159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692576419);
INSERT INTO public.notice VALUES (8162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692578219);
INSERT INTO public.notice VALUES (8163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692578820);
INSERT INTO public.notice VALUES (8164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692579420);
INSERT INTO public.notice VALUES (8165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692580019);
INSERT INTO public.notice VALUES (8166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692580620);
INSERT INTO public.notice VALUES (8167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692581220);
INSERT INTO public.notice VALUES (8168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692581819);
INSERT INTO public.notice VALUES (8169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692582419);
INSERT INTO public.notice VALUES (8170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692583020);
INSERT INTO public.notice VALUES (8171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692583620);
INSERT INTO public.notice VALUES (8172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692584219);
INSERT INTO public.notice VALUES (8173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692584818);
INSERT INTO public.notice VALUES (8174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692585420);
INSERT INTO public.notice VALUES (8175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692586019);
INSERT INTO public.notice VALUES (8176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692586620);
INSERT INTO public.notice VALUES (8177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692587220);
INSERT INTO public.notice VALUES (8178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692587820);
INSERT INTO public.notice VALUES (8179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692588419);
INSERT INTO public.notice VALUES (8181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692589620);
INSERT INTO public.notice VALUES (8182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692590220);
INSERT INTO public.notice VALUES (8183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692590819);
INSERT INTO public.notice VALUES (8184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692591418);
INSERT INTO public.notice VALUES (8185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692592020);
INSERT INTO public.notice VALUES (8186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692592619);
INSERT INTO public.notice VALUES (8187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692593219);
INSERT INTO public.notice VALUES (8188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692593820);
INSERT INTO public.notice VALUES (8189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692594419);
INSERT INTO public.notice VALUES (8190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692595019);
INSERT INTO public.notice VALUES (8191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692595618);
INSERT INTO public.notice VALUES (8192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692596220);
INSERT INTO public.notice VALUES (8193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692596819);
INSERT INTO public.notice VALUES (8194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692597419);
INSERT INTO public.notice VALUES (8195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692598020);
INSERT INTO public.notice VALUES (8196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692598620);
INSERT INTO public.notice VALUES (8197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692599219);
INSERT INTO public.notice VALUES (8198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692599818);
INSERT INTO public.notice VALUES (8199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692600420);
INSERT INTO public.notice VALUES (8200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692601019);
INSERT INTO public.notice VALUES (8201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692601619);
INSERT INTO public.notice VALUES (8202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692602220);
INSERT INTO public.notice VALUES (8203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692602820);
INSERT INTO public.notice VALUES (8204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692603419);
INSERT INTO public.notice VALUES (8205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692604019);
INSERT INTO public.notice VALUES (8206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692604620);
INSERT INTO public.notice VALUES (8207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692605219);
INSERT INTO public.notice VALUES (8208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692605819);
INSERT INTO public.notice VALUES (8209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692606420);
INSERT INTO public.notice VALUES (8210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692607020);
INSERT INTO public.notice VALUES (8211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692607619);
INSERT INTO public.notice VALUES (8212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692608218);
INSERT INTO public.notice VALUES (8213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692608820);
INSERT INTO public.notice VALUES (8214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692609419);
INSERT INTO public.notice VALUES (8215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692610019);
INSERT INTO public.notice VALUES (8216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692610620);
INSERT INTO public.notice VALUES (8217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692611220);
INSERT INTO public.notice VALUES (8218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692611819);
INSERT INTO public.notice VALUES (8221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692613619);
INSERT INTO public.notice VALUES (8222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692614219);
INSERT INTO public.notice VALUES (8223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692614818);
INSERT INTO public.notice VALUES (8224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692615420);
INSERT INTO public.notice VALUES (8225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692616019);
INSERT INTO public.notice VALUES (8226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692616619);
INSERT INTO public.notice VALUES (8227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692617220);
INSERT INTO public.notice VALUES (8228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692617819);
INSERT INTO public.notice VALUES (8219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692612419);
INSERT INTO public.notice VALUES (8220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692613020);
INSERT INTO public.notice VALUES (8277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692647220);
INSERT INTO public.notice VALUES (9972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693665460);
INSERT INTO public.notice VALUES (9975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693667261);
INSERT INTO public.notice VALUES (9976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693667860);
INSERT INTO public.notice VALUES (9977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693668462);
INSERT INTO public.notice VALUES (9979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693669660);
INSERT INTO public.notice VALUES (9980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693670260);
INSERT INTO public.notice VALUES (9981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693670861);
INSERT INTO public.notice VALUES (10135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693763260);
INSERT INTO public.notice VALUES (10136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693763862);
INSERT INTO public.notice VALUES (10137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693764461);
INSERT INTO public.notice VALUES (10138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693765060);
INSERT INTO public.notice VALUES (10139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693765660);
INSERT INTO public.notice VALUES (8229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692618419);
INSERT INTO public.notice VALUES (8230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692619018);
INSERT INTO public.notice VALUES (8231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692619620);
INSERT INTO public.notice VALUES (8232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692620219);
INSERT INTO public.notice VALUES (8233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692620819);
INSERT INTO public.notice VALUES (8234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692621420);
INSERT INTO public.notice VALUES (8235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692622020);
INSERT INTO public.notice VALUES (8236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692622619);
INSERT INTO public.notice VALUES (8237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692623218);
INSERT INTO public.notice VALUES (8238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692623821);
INSERT INTO public.notice VALUES (8239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692624419);
INSERT INTO public.notice VALUES (8240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692625020);
INSERT INTO public.notice VALUES (8241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692625618);
INSERT INTO public.notice VALUES (8242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692626220);
INSERT INTO public.notice VALUES (8243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692626819);
INSERT INTO public.notice VALUES (8244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692627419);
INSERT INTO public.notice VALUES (8245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692628020);
INSERT INTO public.notice VALUES (8246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692628620);
INSERT INTO public.notice VALUES (8247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692629219);
INSERT INTO public.notice VALUES (8248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692629818);
INSERT INTO public.notice VALUES (8249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692630420);
INSERT INTO public.notice VALUES (8250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692631019);
INSERT INTO public.notice VALUES (8251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692631619);
INSERT INTO public.notice VALUES (8252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692632220);
INSERT INTO public.notice VALUES (8253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692632820);
INSERT INTO public.notice VALUES (8254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692633419);
INSERT INTO public.notice VALUES (8255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692634020);
INSERT INTO public.notice VALUES (8256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692634620);
INSERT INTO public.notice VALUES (8257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692635219);
INSERT INTO public.notice VALUES (8258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692635819);
INSERT INTO public.notice VALUES (8259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692636420);
INSERT INTO public.notice VALUES (8260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692637020);
INSERT INTO public.notice VALUES (8261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692637619);
INSERT INTO public.notice VALUES (8262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692638219);
INSERT INTO public.notice VALUES (8263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692638820);
INSERT INTO public.notice VALUES (8264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692639420);
INSERT INTO public.notice VALUES (8265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692640019);
INSERT INTO public.notice VALUES (8266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692640618);
INSERT INTO public.notice VALUES (8267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692641220);
INSERT INTO public.notice VALUES (8268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692641819);
INSERT INTO public.notice VALUES (8269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692642419);
INSERT INTO public.notice VALUES (8270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692643020);
INSERT INTO public.notice VALUES (8271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692643620);
INSERT INTO public.notice VALUES (8272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692644219);
INSERT INTO public.notice VALUES (8273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692644819);
INSERT INTO public.notice VALUES (8274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692645420);
INSERT INTO public.notice VALUES (8275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692646021);
INSERT INTO public.notice VALUES (8276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692646619);
INSERT INTO public.notice VALUES (8278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692647820);
INSERT INTO public.notice VALUES (8279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692648419);
INSERT INTO public.notice VALUES (8280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692649019);
INSERT INTO public.notice VALUES (8281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692649620);
INSERT INTO public.notice VALUES (8282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692650220);
INSERT INTO public.notice VALUES (8283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692650819);
INSERT INTO public.notice VALUES (8284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692651418);
INSERT INTO public.notice VALUES (8285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692652020);
INSERT INTO public.notice VALUES (8286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692652619);
INSERT INTO public.notice VALUES (8287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692653219);
INSERT INTO public.notice VALUES (8288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692653820);
INSERT INTO public.notice VALUES (8289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692654420);
INSERT INTO public.notice VALUES (8290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692655019);
INSERT INTO public.notice VALUES (8291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692655618);
INSERT INTO public.notice VALUES (8292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692656220);
INSERT INTO public.notice VALUES (8293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692656819);
INSERT INTO public.notice VALUES (8294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692657419);
INSERT INTO public.notice VALUES (8295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692658020);
INSERT INTO public.notice VALUES (8296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692658620);
INSERT INTO public.notice VALUES (8297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692659219);
INSERT INTO public.notice VALUES (8298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692659818);
INSERT INTO public.notice VALUES (8299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692660420);
INSERT INTO public.notice VALUES (8300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692661019);
INSERT INTO public.notice VALUES (8301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692661619);
INSERT INTO public.notice VALUES (8302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692662220);
INSERT INTO public.notice VALUES (8303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692662820);
INSERT INTO public.notice VALUES (8310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692667020);
INSERT INTO public.notice VALUES (8304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692663419);
INSERT INTO public.notice VALUES (8305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692664019);
INSERT INTO public.notice VALUES (8306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692664620);
INSERT INTO public.notice VALUES (8307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692665219);
INSERT INTO public.notice VALUES (8308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692665819);
INSERT INTO public.notice VALUES (8309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692666418);
INSERT INTO public.notice VALUES (8311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692667620);
INSERT INTO public.notice VALUES (8312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692668219);
INSERT INTO public.notice VALUES (8315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692670019);
INSERT INTO public.notice VALUES (8319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692672419);
INSERT INTO public.notice VALUES (8321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692673620);
INSERT INTO public.notice VALUES (8322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692674219);
INSERT INTO public.notice VALUES (8323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692674819);
INSERT INTO public.notice VALUES (8324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692675421);
INSERT INTO public.notice VALUES (8325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692676020);
INSERT INTO public.notice VALUES (8313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692668820);
INSERT INTO public.notice VALUES (8314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692669420);
INSERT INTO public.notice VALUES (8316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692670618);
INSERT INTO public.notice VALUES (8317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692671220);
INSERT INTO public.notice VALUES (8318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692671820);
INSERT INTO public.notice VALUES (8320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692673020);
INSERT INTO public.notice VALUES (8334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692681418);
INSERT INTO public.notice VALUES (9974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693666661);
INSERT INTO public.notice VALUES (9978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693669061);
INSERT INTO public.notice VALUES (10142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693767460);
INSERT INTO public.notice VALUES (10143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693768059);
INSERT INTO public.notice VALUES (10144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693768661);
INSERT INTO public.notice VALUES (10145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693769261);
INSERT INTO public.notice VALUES (10146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693769860);
INSERT INTO public.notice VALUES (10147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693770461);
INSERT INTO public.notice VALUES (8326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692676619);
INSERT INTO public.notice VALUES (8327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692677221);
INSERT INTO public.notice VALUES (8328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692677820);
INSERT INTO public.notice VALUES (8329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692678419);
INSERT INTO public.notice VALUES (8330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692679019);
INSERT INTO public.notice VALUES (8331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692679620);
INSERT INTO public.notice VALUES (8332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692680219);
INSERT INTO public.notice VALUES (8333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692680819);
INSERT INTO public.notice VALUES (8335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692682020);
INSERT INTO public.notice VALUES (8336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692682619);
INSERT INTO public.notice VALUES (8337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692683219);
INSERT INTO public.notice VALUES (8338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692683820);
INSERT INTO public.notice VALUES (8339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692684420);
INSERT INTO public.notice VALUES (8340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692685019);
INSERT INTO public.notice VALUES (8341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692685618);
INSERT INTO public.notice VALUES (8342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692686220);
INSERT INTO public.notice VALUES (8378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692707820);
INSERT INTO public.notice VALUES (8379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692708419);
INSERT INTO public.notice VALUES (8380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692709019);
INSERT INTO public.notice VALUES (8381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692709620);
INSERT INTO public.notice VALUES (8382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692710219);
INSERT INTO public.notice VALUES (8383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692710819);
INSERT INTO public.notice VALUES (9982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693671460);
INSERT INTO public.notice VALUES (9983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693672060);
INSERT INTO public.notice VALUES (9984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693672662);
INSERT INTO public.notice VALUES (9985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693673261);
INSERT INTO public.notice VALUES (9986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693673860);
INSERT INTO public.notice VALUES (9996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693679861);
INSERT INTO public.notice VALUES (10011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693688860);
INSERT INTO public.notice VALUES (10012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693689460);
INSERT INTO public.notice VALUES (8343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692686819);
INSERT INTO public.notice VALUES (8344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692687419);
INSERT INTO public.notice VALUES (8345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692688020);
INSERT INTO public.notice VALUES (8346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692688620);
INSERT INTO public.notice VALUES (8347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692689219);
INSERT INTO public.notice VALUES (8348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692689819);
INSERT INTO public.notice VALUES (8349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692690421);
INSERT INTO public.notice VALUES (8350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692691019);
INSERT INTO public.notice VALUES (8351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692691619);
INSERT INTO public.notice VALUES (8352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692692220);
INSERT INTO public.notice VALUES (8353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692692821);
INSERT INTO public.notice VALUES (8354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692693419);
INSERT INTO public.notice VALUES (8355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692694018);
INSERT INTO public.notice VALUES (8356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692694620);
INSERT INTO public.notice VALUES (8357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692695219);
INSERT INTO public.notice VALUES (8358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692695819);
INSERT INTO public.notice VALUES (8359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692696420);
INSERT INTO public.notice VALUES (8360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692697020);
INSERT INTO public.notice VALUES (8361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692697619);
INSERT INTO public.notice VALUES (8362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692698219);
INSERT INTO public.notice VALUES (8363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692698820);
INSERT INTO public.notice VALUES (8364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692699419);
INSERT INTO public.notice VALUES (8365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692700019);
INSERT INTO public.notice VALUES (8366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692700618);
INSERT INTO public.notice VALUES (8367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692701220);
INSERT INTO public.notice VALUES (8368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692701819);
INSERT INTO public.notice VALUES (8369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692702420);
INSERT INTO public.notice VALUES (8370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692703021);
INSERT INTO public.notice VALUES (8371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692703620);
INSERT INTO public.notice VALUES (8372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692704219);
INSERT INTO public.notice VALUES (8373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692704819);
INSERT INTO public.notice VALUES (8374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692705420);
INSERT INTO public.notice VALUES (8375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692706019);
INSERT INTO public.notice VALUES (8376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692706619);
INSERT INTO public.notice VALUES (8377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692707220);
INSERT INTO public.notice VALUES (8384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692711421);
INSERT INTO public.notice VALUES (8385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692712020);
INSERT INTO public.notice VALUES (8386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692712619);
INSERT INTO public.notice VALUES (8387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692713219);
INSERT INTO public.notice VALUES (8388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692713820);
INSERT INTO public.notice VALUES (8389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692714420);
INSERT INTO public.notice VALUES (8390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692715019);
INSERT INTO public.notice VALUES (8391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692715619);
INSERT INTO public.notice VALUES (8392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692716220);
INSERT INTO public.notice VALUES (8393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692716819);
INSERT INTO public.notice VALUES (8394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692717419);
INSERT INTO public.notice VALUES (8395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692718021);
INSERT INTO public.notice VALUES (8400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692721019);
INSERT INTO public.notice VALUES (8401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692721619);
INSERT INTO public.notice VALUES (8418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692731820);
INSERT INTO public.notice VALUES (8419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692732419);
INSERT INTO public.notice VALUES (8420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692733020);
INSERT INTO public.notice VALUES (9987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693674460);
INSERT INTO public.notice VALUES (9988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693675061);
INSERT INTO public.notice VALUES (10148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693771061);
INSERT INTO public.notice VALUES (10149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693771660);
INSERT INTO public.notice VALUES (10230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693820261);
INSERT INTO public.notice VALUES (10231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693820861);
INSERT INTO public.notice VALUES (10232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693821460);
INSERT INTO public.notice VALUES (10248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693831061);
INSERT INTO public.notice VALUES (8396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692718620);
INSERT INTO public.notice VALUES (8397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692719219);
INSERT INTO public.notice VALUES (8398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692719819);
INSERT INTO public.notice VALUES (8399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692720420);
INSERT INTO public.notice VALUES (8402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692722220);
INSERT INTO public.notice VALUES (8403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692722820);
INSERT INTO public.notice VALUES (8404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692723419);
INSERT INTO public.notice VALUES (8405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692724019);
INSERT INTO public.notice VALUES (8406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692724620);
INSERT INTO public.notice VALUES (8407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692725220);
INSERT INTO public.notice VALUES (8408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692725819);
INSERT INTO public.notice VALUES (8409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692726421);
INSERT INTO public.notice VALUES (8410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692727020);
INSERT INTO public.notice VALUES (8411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692727619);
INSERT INTO public.notice VALUES (8412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692728219);
INSERT INTO public.notice VALUES (12173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1694986794);
INSERT INTO public.notice VALUES (8413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692728820);
INSERT INTO public.notice VALUES (8414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692729420);
INSERT INTO public.notice VALUES (8415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692730019);
INSERT INTO public.notice VALUES (8416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692730618);
INSERT INTO public.notice VALUES (8417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692731220);
INSERT INTO public.notice VALUES (8421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692733620);
INSERT INTO public.notice VALUES (8422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692734219);
INSERT INTO public.notice VALUES (8423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692734819);
INSERT INTO public.notice VALUES (8424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692735420);
INSERT INTO public.notice VALUES (8425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692736020);
INSERT INTO public.notice VALUES (8426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692736619);
INSERT INTO public.notice VALUES (8427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692737218);
INSERT INTO public.notice VALUES (8428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692737820);
INSERT INTO public.notice VALUES (8429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692738419);
INSERT INTO public.notice VALUES (8430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692739019);
INSERT INTO public.notice VALUES (8431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692739620);
INSERT INTO public.notice VALUES (8432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692740220);
INSERT INTO public.notice VALUES (8433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692740819);
INSERT INTO public.notice VALUES (8434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692741418);
INSERT INTO public.notice VALUES (8435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692742020);
INSERT INTO public.notice VALUES (8436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692742619);
INSERT INTO public.notice VALUES (8437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692743219);
INSERT INTO public.notice VALUES (8438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692743820);
INSERT INTO public.notice VALUES (8439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692744420);
INSERT INTO public.notice VALUES (8440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692745019);
INSERT INTO public.notice VALUES (8441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692745619);
INSERT INTO public.notice VALUES (8442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692746220);
INSERT INTO public.notice VALUES (8443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692746819);
INSERT INTO public.notice VALUES (8444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692747419);
INSERT INTO public.notice VALUES (8445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692748018);
INSERT INTO public.notice VALUES (8446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692748620);
INSERT INTO public.notice VALUES (8447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692749220);
INSERT INTO public.notice VALUES (8463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692758818);
INSERT INTO public.notice VALUES (8464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692759420);
INSERT INTO public.notice VALUES (8465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692760019);
INSERT INTO public.notice VALUES (9989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693675661);
INSERT INTO public.notice VALUES (9990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693676260);
INSERT INTO public.notice VALUES (9991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693676859);
INSERT INTO public.notice VALUES (9992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693677461);
INSERT INTO public.notice VALUES (9993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693678060);
INSERT INTO public.notice VALUES (9994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693678660);
INSERT INTO public.notice VALUES (9995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693679261);
INSERT INTO public.notice VALUES (9997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693680460);
INSERT INTO public.notice VALUES (9998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693681060);
INSERT INTO public.notice VALUES (9999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693681661);
INSERT INTO public.notice VALUES (8448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692749819);
INSERT INTO public.notice VALUES (8449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692750420);
INSERT INTO public.notice VALUES (8450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692751020);
INSERT INTO public.notice VALUES (8451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692751619);
INSERT INTO public.notice VALUES (8452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692752219);
INSERT INTO public.notice VALUES (8453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692752820);
INSERT INTO public.notice VALUES (8454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692753419);
INSERT INTO public.notice VALUES (8455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692754019);
INSERT INTO public.notice VALUES (8456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692754620);
INSERT INTO public.notice VALUES (8457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692755220);
INSERT INTO public.notice VALUES (8458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692755819);
INSERT INTO public.notice VALUES (8459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692756419);
INSERT INTO public.notice VALUES (8460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692757020);
INSERT INTO public.notice VALUES (8461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692757619);
INSERT INTO public.notice VALUES (8462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692758220);
INSERT INTO public.notice VALUES (8466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692760619);
INSERT INTO public.notice VALUES (8467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692761220);
INSERT INTO public.notice VALUES (8468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692761819);
INSERT INTO public.notice VALUES (8469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692762419);
INSERT INTO public.notice VALUES (8470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692763021);
INSERT INTO public.notice VALUES (8471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692763621);
INSERT INTO public.notice VALUES (8472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692764220);
INSERT INTO public.notice VALUES (8473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692764819);
INSERT INTO public.notice VALUES (8474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692765420);
INSERT INTO public.notice VALUES (8475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692766020);
INSERT INTO public.notice VALUES (8476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692766619);
INSERT INTO public.notice VALUES (8477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692767218);
INSERT INTO public.notice VALUES (8478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692767821);
INSERT INTO public.notice VALUES (8479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692768419);
INSERT INTO public.notice VALUES (8480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692769019);
INSERT INTO public.notice VALUES (8481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692769619);
INSERT INTO public.notice VALUES (8482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692770220);
INSERT INTO public.notice VALUES (8483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692770819);
INSERT INTO public.notice VALUES (8484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692771419);
INSERT INTO public.notice VALUES (8485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692772021);
INSERT INTO public.notice VALUES (8486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692772619);
INSERT INTO public.notice VALUES (8487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692773219);
INSERT INTO public.notice VALUES (8488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692773818);
INSERT INTO public.notice VALUES (8489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692774420);
INSERT INTO public.notice VALUES (8490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692775019);
INSERT INTO public.notice VALUES (8495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692778018);
INSERT INTO public.notice VALUES (8496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692778620);
INSERT INTO public.notice VALUES (8497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692779219);
INSERT INTO public.notice VALUES (10000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693682261);
INSERT INTO public.notice VALUES (10001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693682860);
INSERT INTO public.notice VALUES (8491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692775619);
INSERT INTO public.notice VALUES (8492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692776220);
INSERT INTO public.notice VALUES (8493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692776820);
INSERT INTO public.notice VALUES (8494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692777419);
INSERT INTO public.notice VALUES (8498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692779819);
INSERT INTO public.notice VALUES (8499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692780420);
INSERT INTO public.notice VALUES (8500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692781020);
INSERT INTO public.notice VALUES (8501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692781619);
INSERT INTO public.notice VALUES (8502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692782219);
INSERT INTO public.notice VALUES (8503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692782820);
INSERT INTO public.notice VALUES (8504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692783419);
INSERT INTO public.notice VALUES (8505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692784019);
INSERT INTO public.notice VALUES (8506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692784620);
INSERT INTO public.notice VALUES (8507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692785220);
INSERT INTO public.notice VALUES (8508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692785819);
INSERT INTO public.notice VALUES (8509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692786419);
INSERT INTO public.notice VALUES (8510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692787020);
INSERT INTO public.notice VALUES (8511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692787619);
INSERT INTO public.notice VALUES (8512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692788219);
INSERT INTO public.notice VALUES (8513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692788818);
INSERT INTO public.notice VALUES (8514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692789420);
INSERT INTO public.notice VALUES (8515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692790019);
INSERT INTO public.notice VALUES (8516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692790619);
INSERT INTO public.notice VALUES (8517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692791220);
INSERT INTO public.notice VALUES (8518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692791820);
INSERT INTO public.notice VALUES (8519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692792419);
INSERT INTO public.notice VALUES (8520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692793019);
INSERT INTO public.notice VALUES (8521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692793620);
INSERT INTO public.notice VALUES (8522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692794219);
INSERT INTO public.notice VALUES (8523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692794819);
INSERT INTO public.notice VALUES (8524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692795419);
INSERT INTO public.notice VALUES (8525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692796020);
INSERT INTO public.notice VALUES (8526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692796619);
INSERT INTO public.notice VALUES (8527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692797219);
INSERT INTO public.notice VALUES (8535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692802020);
INSERT INTO public.notice VALUES (8537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692803219);
INSERT INTO public.notice VALUES (10002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693683459);
INSERT INTO public.notice VALUES (10003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693684061);
INSERT INTO public.notice VALUES (10004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693684660);
INSERT INTO public.notice VALUES (10005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693685260);
INSERT INTO public.notice VALUES (10006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693685861);
INSERT INTO public.notice VALUES (10007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693686461);
INSERT INTO public.notice VALUES (10008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693687060);
INSERT INTO public.notice VALUES (10009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693687660);
INSERT INTO public.notice VALUES (10010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693688261);
INSERT INTO public.notice VALUES (8528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692797820);
INSERT INTO public.notice VALUES (8529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692798420);
INSERT INTO public.notice VALUES (8530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692799019);
INSERT INTO public.notice VALUES (8531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692799618);
INSERT INTO public.notice VALUES (8532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692800220);
INSERT INTO public.notice VALUES (8533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692800819);
INSERT INTO public.notice VALUES (8534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692801419);
INSERT INTO public.notice VALUES (8536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692802620);
INSERT INTO public.notice VALUES (8538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692803819);
INSERT INTO public.notice VALUES (8539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692804420);
INSERT INTO public.notice VALUES (8540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692805019);
INSERT INTO public.notice VALUES (8541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692805619);
INSERT INTO public.notice VALUES (8542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692806220);
INSERT INTO public.notice VALUES (8543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692806820);
INSERT INTO public.notice VALUES (8544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692807419);
INSERT INTO public.notice VALUES (8545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692808019);
INSERT INTO public.notice VALUES (8546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692808620);
INSERT INTO public.notice VALUES (8547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692809219);
INSERT INTO public.notice VALUES (8548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692809819);
INSERT INTO public.notice VALUES (8549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692810418);
INSERT INTO public.notice VALUES (8550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692811020);
INSERT INTO public.notice VALUES (8551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692811619);
INSERT INTO public.notice VALUES (8552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692812219);
INSERT INTO public.notice VALUES (8553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692812820);
INSERT INTO public.notice VALUES (8554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692813420);
INSERT INTO public.notice VALUES (8555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692814019);
INSERT INTO public.notice VALUES (8556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692814621);
INSERT INTO public.notice VALUES (8557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692815220);
INSERT INTO public.notice VALUES (8558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692815819);
INSERT INTO public.notice VALUES (8559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692816419);
INSERT INTO public.notice VALUES (8560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692817020);
INSERT INTO public.notice VALUES (8561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692817620);
INSERT INTO public.notice VALUES (8562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692818220);
INSERT INTO public.notice VALUES (8574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692825420);
INSERT INTO public.notice VALUES (10013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693690062);
INSERT INTO public.notice VALUES (10014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693690661);
INSERT INTO public.notice VALUES (10016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693691860);
INSERT INTO public.notice VALUES (10017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693692461);
INSERT INTO public.notice VALUES (10018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693693061);
INSERT INTO public.notice VALUES (10019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693693661);
INSERT INTO public.notice VALUES (10020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693694259);
INSERT INTO public.notice VALUES (10021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693694861);
INSERT INTO public.notice VALUES (10022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693695460);
INSERT INTO public.notice VALUES (10150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693772260);
INSERT INTO public.notice VALUES (10151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693772861);
INSERT INTO public.notice VALUES (8563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692818818);
INSERT INTO public.notice VALUES (8564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692819420);
INSERT INTO public.notice VALUES (8565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692820020);
INSERT INTO public.notice VALUES (8566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692820619);
INSERT INTO public.notice VALUES (8567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692821220);
INSERT INTO public.notice VALUES (8568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692821820);
INSERT INTO public.notice VALUES (8569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692822419);
INSERT INTO public.notice VALUES (8570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692823019);
INSERT INTO public.notice VALUES (8571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692823621);
INSERT INTO public.notice VALUES (8572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692824220);
INSERT INTO public.notice VALUES (8573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692824819);
INSERT INTO public.notice VALUES (8575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692826020);
INSERT INTO public.notice VALUES (8576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692826619);
INSERT INTO public.notice VALUES (8577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692827219);
INSERT INTO public.notice VALUES (8578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692827820);
INSERT INTO public.notice VALUES (8579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692828419);
INSERT INTO public.notice VALUES (8581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692829618);
INSERT INTO public.notice VALUES (8582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692830221);
INSERT INTO public.notice VALUES (8583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692830819);
INSERT INTO public.notice VALUES (8584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692831419);
INSERT INTO public.notice VALUES (8585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692832020);
INSERT INTO public.notice VALUES (8586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692832620);
INSERT INTO public.notice VALUES (8587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692833219);
INSERT INTO public.notice VALUES (10015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693691260);
INSERT INTO public.notice VALUES (10028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693699061);
INSERT INTO public.notice VALUES (10029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693699661);
INSERT INTO public.notice VALUES (10030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693700260);
INSERT INTO public.notice VALUES (10031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693700861);
INSERT INTO public.notice VALUES (10032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693701461);
INSERT INTO public.notice VALUES (10033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693702060);
INSERT INTO public.notice VALUES (8580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692829019);
INSERT INTO public.notice VALUES (8588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692833819);
INSERT INTO public.notice VALUES (8589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692834420);
INSERT INTO public.notice VALUES (8590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692835020);
INSERT INTO public.notice VALUES (8591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692835619);
INSERT INTO public.notice VALUES (8592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692836218);
INSERT INTO public.notice VALUES (8593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692836820);
INSERT INTO public.notice VALUES (8594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692837419);
INSERT INTO public.notice VALUES (8595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692838019);
INSERT INTO public.notice VALUES (8596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692838620);
INSERT INTO public.notice VALUES (8597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692839220);
INSERT INTO public.notice VALUES (8598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692839819);
INSERT INTO public.notice VALUES (8599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692840418);
INSERT INTO public.notice VALUES (8600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692841020);
INSERT INTO public.notice VALUES (8601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692841619);
INSERT INTO public.notice VALUES (8602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692842219);
INSERT INTO public.notice VALUES (8606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692844619);
INSERT INTO public.notice VALUES (8607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692845220);
INSERT INTO public.notice VALUES (10023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693696060);
INSERT INTO public.notice VALUES (10024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693696661);
INSERT INTO public.notice VALUES (10152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693773460);
INSERT INTO public.notice VALUES (10154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693774662);
INSERT INTO public.notice VALUES (10234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693822662);
INSERT INTO public.notice VALUES (10235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693823261);
INSERT INTO public.notice VALUES (10236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693823860);
INSERT INTO public.notice VALUES (10237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693824461);
INSERT INTO public.notice VALUES (10238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693825061);
INSERT INTO public.notice VALUES (10239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693825660);
INSERT INTO public.notice VALUES (10240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693826261);
INSERT INTO public.notice VALUES (10241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693826861);
INSERT INTO public.notice VALUES (8603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692842820);
INSERT INTO public.notice VALUES (8604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692843420);
INSERT INTO public.notice VALUES (8605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692844019);
INSERT INTO public.notice VALUES (8608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692845820);
INSERT INTO public.notice VALUES (8609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692846419);
INSERT INTO public.notice VALUES (8610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692847018);
INSERT INTO public.notice VALUES (8611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692847620);
INSERT INTO public.notice VALUES (8612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692848219);
INSERT INTO public.notice VALUES (8613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692848819);
INSERT INTO public.notice VALUES (8614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692849420);
INSERT INTO public.notice VALUES (8615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692850020);
INSERT INTO public.notice VALUES (8616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692850965);
INSERT INTO public.notice VALUES (8617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692851564);
INSERT INTO public.notice VALUES (8618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692852163);
INSERT INTO public.notice VALUES (8619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692852763);
INSERT INTO public.notice VALUES (8620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692853364);
INSERT INTO public.notice VALUES (8621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692853964);
INSERT INTO public.notice VALUES (8622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692854563);
INSERT INTO public.notice VALUES (8623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692855165);
INSERT INTO public.notice VALUES (8624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692855764);
INSERT INTO public.notice VALUES (8625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692856363);
INSERT INTO public.notice VALUES (8626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692856963);
INSERT INTO public.notice VALUES (8627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692857564);
INSERT INTO public.notice VALUES (8628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692858164);
INSERT INTO public.notice VALUES (8629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692858763);
INSERT INTO public.notice VALUES (8630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692859363);
INSERT INTO public.notice VALUES (8631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692859964);
INSERT INTO public.notice VALUES (8632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692860563);
INSERT INTO public.notice VALUES (8633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692861163);
INSERT INTO public.notice VALUES (8634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692861764);
INSERT INTO public.notice VALUES (8635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692862364);
INSERT INTO public.notice VALUES (8636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692862963);
INSERT INTO public.notice VALUES (8637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692863563);
INSERT INTO public.notice VALUES (8638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692864164);
INSERT INTO public.notice VALUES (8639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692864763);
INSERT INTO public.notice VALUES (8640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692865363);
INSERT INTO public.notice VALUES (8641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692865964);
INSERT INTO public.notice VALUES (8642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692866564);
INSERT INTO public.notice VALUES (8643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692867163);
INSERT INTO public.notice VALUES (8644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692867763);
INSERT INTO public.notice VALUES (8645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692868364);
INSERT INTO public.notice VALUES (8646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692868964);
INSERT INTO public.notice VALUES (8647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692869563);
INSERT INTO public.notice VALUES (8648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692870162);
INSERT INTO public.notice VALUES (8649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692870764);
INSERT INTO public.notice VALUES (8650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692871363);
INSERT INTO public.notice VALUES (8660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692877364);
INSERT INTO public.notice VALUES (8661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692877963);
INSERT INTO public.notice VALUES (8662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692878563);
INSERT INTO public.notice VALUES (8677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692887566);
INSERT INTO public.notice VALUES (8678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692888164);
INSERT INTO public.notice VALUES (8679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692888763);
INSERT INTO public.notice VALUES (8680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692889363);
INSERT INTO public.notice VALUES (8687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692893563);
INSERT INTO public.notice VALUES (8689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692894764);
INSERT INTO public.notice VALUES (8690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692895363);
INSERT INTO public.notice VALUES (8691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692895962);
INSERT INTO public.notice VALUES (8692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692896564);
INSERT INTO public.notice VALUES (8693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692897163);
INSERT INTO public.notice VALUES (8694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692897763);
INSERT INTO public.notice VALUES (8651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692871963);
INSERT INTO public.notice VALUES (8652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692872564);
INSERT INTO public.notice VALUES (8653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692873164);
INSERT INTO public.notice VALUES (8654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692873763);
INSERT INTO public.notice VALUES (8655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692874362);
INSERT INTO public.notice VALUES (8656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692874964);
INSERT INTO public.notice VALUES (8657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692875564);
INSERT INTO public.notice VALUES (8658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692876163);
INSERT INTO public.notice VALUES (8659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692876764);
INSERT INTO public.notice VALUES (8663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692879164);
INSERT INTO public.notice VALUES (8664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692879763);
INSERT INTO public.notice VALUES (8665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692880363);
INSERT INTO public.notice VALUES (8666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692880964);
INSERT INTO public.notice VALUES (8667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692881564);
INSERT INTO public.notice VALUES (8668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692882163);
INSERT INTO public.notice VALUES (8669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692882763);
INSERT INTO public.notice VALUES (8670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692883364);
INSERT INTO public.notice VALUES (8671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692883964);
INSERT INTO public.notice VALUES (8672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692884563);
INSERT INTO public.notice VALUES (8673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692885163);
INSERT INTO public.notice VALUES (8674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692885764);
INSERT INTO public.notice VALUES (8675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692886363);
INSERT INTO public.notice VALUES (8676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692886963);
INSERT INTO public.notice VALUES (8681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692889964);
INSERT INTO public.notice VALUES (8682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692890563);
INSERT INTO public.notice VALUES (8683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692891163);
INSERT INTO public.notice VALUES (8684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692891765);
INSERT INTO public.notice VALUES (8685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692892364);
INSERT INTO public.notice VALUES (8686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692892963);
INSERT INTO public.notice VALUES (8688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692894164);
INSERT INTO public.notice VALUES (8695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692898364);
INSERT INTO public.notice VALUES (8696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692898964);
INSERT INTO public.notice VALUES (8697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692899563);
INSERT INTO public.notice VALUES (10025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693697261);
INSERT INTO public.notice VALUES (10026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693697860);
INSERT INTO public.notice VALUES (10027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693698460);
INSERT INTO public.notice VALUES (10044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693708660);
INSERT INTO public.notice VALUES (10045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693709259);
INSERT INTO public.notice VALUES (10046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693709861);
INSERT INTO public.notice VALUES (10047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693710460);
INSERT INTO public.notice VALUES (10048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693711060);
INSERT INTO public.notice VALUES (10049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693711661);
INSERT INTO public.notice VALUES (10050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693712261);
INSERT INTO public.notice VALUES (10051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693712860);
INSERT INTO public.notice VALUES (10060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693718261);
INSERT INTO public.notice VALUES (8698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692900162);
INSERT INTO public.notice VALUES (8699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692900764);
INSERT INTO public.notice VALUES (8700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692901363);
INSERT INTO public.notice VALUES (8701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692901963);
INSERT INTO public.notice VALUES (8702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692902564);
INSERT INTO public.notice VALUES (8703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692903163);
INSERT INTO public.notice VALUES (8704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692903763);
INSERT INTO public.notice VALUES (8705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692904362);
INSERT INTO public.notice VALUES (8706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692904964);
INSERT INTO public.notice VALUES (8707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692905564);
INSERT INTO public.notice VALUES (8708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692906163);
INSERT INTO public.notice VALUES (8709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692906762);
INSERT INTO public.notice VALUES (8710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692907364);
INSERT INTO public.notice VALUES (8711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692907963);
INSERT INTO public.notice VALUES (8712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692908563);
INSERT INTO public.notice VALUES (8713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692909164);
INSERT INTO public.notice VALUES (8714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692909764);
INSERT INTO public.notice VALUES (8715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692910363);
INSERT INTO public.notice VALUES (8716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692910963);
INSERT INTO public.notice VALUES (8717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692911564);
INSERT INTO public.notice VALUES (8718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692912163);
INSERT INTO public.notice VALUES (8719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692912763);
INSERT INTO public.notice VALUES (8720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692913362);
INSERT INTO public.notice VALUES (8721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692913964);
INSERT INTO public.notice VALUES (8730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692919363);
INSERT INTO public.notice VALUES (8731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692919962);
INSERT INTO public.notice VALUES (8732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692920564);
INSERT INTO public.notice VALUES (8733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692921163);
INSERT INTO public.notice VALUES (8734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692921763);
INSERT INTO public.notice VALUES (10034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693702660);
INSERT INTO public.notice VALUES (8722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692914563);
INSERT INTO public.notice VALUES (8723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692915163);
INSERT INTO public.notice VALUES (8724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692915764);
INSERT INTO public.notice VALUES (8725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692916363);
INSERT INTO public.notice VALUES (8726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692916963);
INSERT INTO public.notice VALUES (8727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692917563);
INSERT INTO public.notice VALUES (8728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692918164);
INSERT INTO public.notice VALUES (8729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692918763);
INSERT INTO public.notice VALUES (8735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692922364);
INSERT INTO public.notice VALUES (8736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692922964);
INSERT INTO public.notice VALUES (8737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692923563);
INSERT INTO public.notice VALUES (8738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692924162);
INSERT INTO public.notice VALUES (8739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692924764);
INSERT INTO public.notice VALUES (8740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692925363);
INSERT INTO public.notice VALUES (8741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692926095);
INSERT INTO public.notice VALUES (8742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692927105);
INSERT INTO public.notice VALUES (8743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692927704);
INSERT INTO public.notice VALUES (8744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692928304);
INSERT INTO public.notice VALUES (8745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692928905);
INSERT INTO public.notice VALUES (8746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692929504);
INSERT INTO public.notice VALUES (8747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692930104);
INSERT INTO public.notice VALUES (8748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692930703);
INSERT INTO public.notice VALUES (8749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692931305);
INSERT INTO public.notice VALUES (8750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692931905);
INSERT INTO public.notice VALUES (8751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692932504);
INSERT INTO public.notice VALUES (8752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692933106);
INSERT INTO public.notice VALUES (8753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692933704);
INSERT INTO public.notice VALUES (8754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692934304);
INSERT INTO public.notice VALUES (8755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692934904);
INSERT INTO public.notice VALUES (8756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692935505);
INSERT INTO public.notice VALUES (8757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692936104);
INSERT INTO public.notice VALUES (8758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692936704);
INSERT INTO public.notice VALUES (8760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692937905);
INSERT INTO public.notice VALUES (8761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692938504);
INSERT INTO public.notice VALUES (10035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693703261);
INSERT INTO public.notice VALUES (10036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693703861);
INSERT INTO public.notice VALUES (10037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693704460);
INSERT INTO public.notice VALUES (10038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693705060);
INSERT INTO public.notice VALUES (10039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693705661);
INSERT INTO public.notice VALUES (10155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693775261);
INSERT INTO public.notice VALUES (10158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693777061);
INSERT INTO public.notice VALUES (10161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693778859);
INSERT INTO public.notice VALUES (10242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693827461);
INSERT INTO public.notice VALUES (10243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693828060);
INSERT INTO public.notice VALUES (10244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693828660);
INSERT INTO public.notice VALUES (8759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692937305);
INSERT INTO public.notice VALUES (8762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692939104);
INSERT INTO public.notice VALUES (8763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692939705);
INSERT INTO public.notice VALUES (8764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692940305);
INSERT INTO public.notice VALUES (8765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692940905);
INSERT INTO public.notice VALUES (8766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692941504);
INSERT INTO public.notice VALUES (8767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692942105);
INSERT INTO public.notice VALUES (8768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692942704);
INSERT INTO public.notice VALUES (8769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692943304);
INSERT INTO public.notice VALUES (8770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692943905);
INSERT INTO public.notice VALUES (8771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692944505);
INSERT INTO public.notice VALUES (8772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692945104);
INSERT INTO public.notice VALUES (8773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692945704);
INSERT INTO public.notice VALUES (8774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692946305);
INSERT INTO public.notice VALUES (8775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692946905);
INSERT INTO public.notice VALUES (10159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1693777670);
INSERT INTO public.notice VALUES (8776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692947504);
INSERT INTO public.notice VALUES (8777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692948105);
INSERT INTO public.notice VALUES (8778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692948705);
INSERT INTO public.notice VALUES (8779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692949304);
INSERT INTO public.notice VALUES (8780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692949904);
INSERT INTO public.notice VALUES (8781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692950505);
INSERT INTO public.notice VALUES (8782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692951105);
INSERT INTO public.notice VALUES (8783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692951704);
INSERT INTO public.notice VALUES (8784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692952303);
INSERT INTO public.notice VALUES (8785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692952905);
INSERT INTO public.notice VALUES (8786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692953505);
INSERT INTO public.notice VALUES (8787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692954104);
INSERT INTO public.notice VALUES (8788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692954703);
INSERT INTO public.notice VALUES (8789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692955305);
INSERT INTO public.notice VALUES (8790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692955904);
INSERT INTO public.notice VALUES (8791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692956504);
INSERT INTO public.notice VALUES (8792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692957105);
INSERT INTO public.notice VALUES (8793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692957705);
INSERT INTO public.notice VALUES (8794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692958304);
INSERT INTO public.notice VALUES (8795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692958903);
INSERT INTO public.notice VALUES (8802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692963104);
INSERT INTO public.notice VALUES (8803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692963705);
INSERT INTO public.notice VALUES (8805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692964904);
INSERT INTO public.notice VALUES (8806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692965503);
INSERT INTO public.notice VALUES (8807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692966105);
INSERT INTO public.notice VALUES (8808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692966705);
INSERT INTO public.notice VALUES (8809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692967304);
INSERT INTO public.notice VALUES (8810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692967905);
INSERT INTO public.notice VALUES (8811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692968505);
INSERT INTO public.notice VALUES (8828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692978703);
INSERT INTO public.notice VALUES (8796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692959505);
INSERT INTO public.notice VALUES (8797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692960104);
INSERT INTO public.notice VALUES (8798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692960704);
INSERT INTO public.notice VALUES (8799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692961305);
INSERT INTO public.notice VALUES (8800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692961905);
INSERT INTO public.notice VALUES (8801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692962504);
INSERT INTO public.notice VALUES (8804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692964304);
INSERT INTO public.notice VALUES (8812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692969105);
INSERT INTO public.notice VALUES (8813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692969704);
INSERT INTO public.notice VALUES (8814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692970305);
INSERT INTO public.notice VALUES (8815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692970905);
INSERT INTO public.notice VALUES (8816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692971504);
INSERT INTO public.notice VALUES (8817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692972105);
INSERT INTO public.notice VALUES (8818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692972705);
INSERT INTO public.notice VALUES (8819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692973304);
INSERT INTO public.notice VALUES (8820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692973904);
INSERT INTO public.notice VALUES (8821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692974505);
INSERT INTO public.notice VALUES (8822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692975105);
INSERT INTO public.notice VALUES (8823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692975704);
INSERT INTO public.notice VALUES (8824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692976303);
INSERT INTO public.notice VALUES (8825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692976905);
INSERT INTO public.notice VALUES (8826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692977504);
INSERT INTO public.notice VALUES (8827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692978104);
INSERT INTO public.notice VALUES (10040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693706260);
INSERT INTO public.notice VALUES (10041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693706860);
INSERT INTO public.notice VALUES (10042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693707461);
INSERT INTO public.notice VALUES (10043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693708061);
INSERT INTO public.notice VALUES (10052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693713460);
INSERT INTO public.notice VALUES (10053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693714061);
INSERT INTO public.notice VALUES (10054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693714660);
INSERT INTO public.notice VALUES (8829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692979305);
INSERT INTO public.notice VALUES (8830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692979904);
INSERT INTO public.notice VALUES (8831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692980504);
INSERT INTO public.notice VALUES (8832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692981105);
INSERT INTO public.notice VALUES (8833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692981705);
INSERT INTO public.notice VALUES (8834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692982304);
INSERT INTO public.notice VALUES (8835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692982904);
INSERT INTO public.notice VALUES (8836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692983505);
INSERT INTO public.notice VALUES (8837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692984104);
INSERT INTO public.notice VALUES (8838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692984704);
INSERT INTO public.notice VALUES (8839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692985304);
INSERT INTO public.notice VALUES (8840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692985905);
INSERT INTO public.notice VALUES (8841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692986504);
INSERT INTO public.notice VALUES (8842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692987104);
INSERT INTO public.notice VALUES (8843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692987705);
INSERT INTO public.notice VALUES (8844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692988304);
INSERT INTO public.notice VALUES (8845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692988904);
INSERT INTO public.notice VALUES (8846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692989503);
INSERT INTO public.notice VALUES (8847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692990105);
INSERT INTO public.notice VALUES (8848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692990705);
INSERT INTO public.notice VALUES (8849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692991304);
INSERT INTO public.notice VALUES (8855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692994905);
INSERT INTO public.notice VALUES (8863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692999704);
INSERT INTO public.notice VALUES (8864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693000304);
INSERT INTO public.notice VALUES (8865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693000905);
INSERT INTO public.notice VALUES (8867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693002104);
INSERT INTO public.notice VALUES (8868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693002704);
INSERT INTO public.notice VALUES (8869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693003305);
INSERT INTO public.notice VALUES (8870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693003904);
INSERT INTO public.notice VALUES (8871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693004504);
INSERT INTO public.notice VALUES (8850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692991904);
INSERT INTO public.notice VALUES (8851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692992505);
INSERT INTO public.notice VALUES (8852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692993104);
INSERT INTO public.notice VALUES (8853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692993704);
INSERT INTO public.notice VALUES (8854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692994305);
INSERT INTO public.notice VALUES (8856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692995504);
INSERT INTO public.notice VALUES (8857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692996103);
INSERT INTO public.notice VALUES (8858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692996705);
INSERT INTO public.notice VALUES (8859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692997304);
INSERT INTO public.notice VALUES (8860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692997904);
INSERT INTO public.notice VALUES (8861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692998503);
INSERT INTO public.notice VALUES (8862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1692999105);
INSERT INTO public.notice VALUES (8866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693001505);
INSERT INTO public.notice VALUES (8886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693013504);
INSERT INTO public.notice VALUES (10055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693715260);
INSERT INTO public.notice VALUES (8872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693005105);
INSERT INTO public.notice VALUES (8873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693005705);
INSERT INTO public.notice VALUES (8874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693006304);
INSERT INTO public.notice VALUES (8875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693006904);
INSERT INTO public.notice VALUES (8876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693007505);
INSERT INTO public.notice VALUES (8877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693008105);
INSERT INTO public.notice VALUES (8878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693008704);
INSERT INTO public.notice VALUES (8879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693009305);
INSERT INTO public.notice VALUES (8880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693009905);
INSERT INTO public.notice VALUES (8881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693010504);
INSERT INTO public.notice VALUES (8882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693011104);
INSERT INTO public.notice VALUES (8883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693011706);
INSERT INTO public.notice VALUES (8884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693012305);
INSERT INTO public.notice VALUES (8885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693012904);
INSERT INTO public.notice VALUES (8887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693014105);
INSERT INTO public.notice VALUES (8888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693014705);
INSERT INTO public.notice VALUES (8889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693015304);
INSERT INTO public.notice VALUES (8890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693015903);
INSERT INTO public.notice VALUES (8891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693016505);
INSERT INTO public.notice VALUES (8892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693017104);
INSERT INTO public.notice VALUES (8893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693017704);
INSERT INTO public.notice VALUES (8894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693018305);
INSERT INTO public.notice VALUES (8895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693018905);
INSERT INTO public.notice VALUES (8896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693019504);
INSERT INTO public.notice VALUES (8897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693020103);
INSERT INTO public.notice VALUES (8898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693020705);
INSERT INTO public.notice VALUES (8899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693021305);
INSERT INTO public.notice VALUES (8900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693021904);
INSERT INTO public.notice VALUES (8901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693022503);
INSERT INTO public.notice VALUES (8902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693023105);
INSERT INTO public.notice VALUES (8903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693023704);
INSERT INTO public.notice VALUES (8904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693024304);
INSERT INTO public.notice VALUES (8905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693024905);
INSERT INTO public.notice VALUES (8906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693025505);
INSERT INTO public.notice VALUES (8907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693026104);
INSERT INTO public.notice VALUES (8908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693026703);
INSERT INTO public.notice VALUES (8909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693027305);
INSERT INTO public.notice VALUES (8910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693027904);
INSERT INTO public.notice VALUES (8911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693028504);
INSERT INTO public.notice VALUES (8912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693029105);
INSERT INTO public.notice VALUES (8913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693029705);
INSERT INTO public.notice VALUES (8914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693030304);
INSERT INTO public.notice VALUES (8915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693030903);
INSERT INTO public.notice VALUES (8916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693031506);
INSERT INTO public.notice VALUES (8918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693032704);
INSERT INTO public.notice VALUES (8917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693032105);
INSERT INTO public.notice VALUES (8919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693033305);
INSERT INTO public.notice VALUES (8920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693033905);
INSERT INTO public.notice VALUES (8921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693034504);
INSERT INTO public.notice VALUES (8922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693035104);
INSERT INTO public.notice VALUES (8923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693035705);
INSERT INTO public.notice VALUES (8924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693036305);
INSERT INTO public.notice VALUES (8925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693036904);
INSERT INTO public.notice VALUES (8926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693037503);
INSERT INTO public.notice VALUES (8927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693038105);
INSERT INTO public.notice VALUES (8928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693038704);
INSERT INTO public.notice VALUES (8929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693039304);
INSERT INTO public.notice VALUES (8930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693039905);
INSERT INTO public.notice VALUES (8931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693040505);
INSERT INTO public.notice VALUES (8932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693041104);
INSERT INTO public.notice VALUES (8933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693041704);
INSERT INTO public.notice VALUES (8934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693042305);
INSERT INTO public.notice VALUES (8935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693042904);
INSERT INTO public.notice VALUES (8936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693043504);
INSERT INTO public.notice VALUES (8937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693044103);
INSERT INTO public.notice VALUES (8938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693044706);
INSERT INTO public.notice VALUES (8950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693051904);
INSERT INTO public.notice VALUES (8951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693052504);
INSERT INTO public.notice VALUES (8952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693053105);
INSERT INTO public.notice VALUES (8953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693053704);
INSERT INTO public.notice VALUES (8954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693054304);
INSERT INTO public.notice VALUES (8955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693054904);
INSERT INTO public.notice VALUES (8956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693055505);
INSERT INTO public.notice VALUES (8957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693056105);
INSERT INTO public.notice VALUES (8984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693072305);
INSERT INTO public.notice VALUES (8939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693045304);
INSERT INTO public.notice VALUES (8940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693045904);
INSERT INTO public.notice VALUES (8941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693046505);
INSERT INTO public.notice VALUES (8942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693047104);
INSERT INTO public.notice VALUES (8943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693047704);
INSERT INTO public.notice VALUES (8944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693048303);
INSERT INTO public.notice VALUES (8945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693048905);
INSERT INTO public.notice VALUES (8946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693049505);
INSERT INTO public.notice VALUES (8947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693050104);
INSERT INTO public.notice VALUES (8948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693050705);
INSERT INTO public.notice VALUES (8949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693051305);
INSERT INTO public.notice VALUES (8958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693056704);
INSERT INTO public.notice VALUES (8959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693057305);
INSERT INTO public.notice VALUES (8960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693057905);
INSERT INTO public.notice VALUES (8961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693058504);
INSERT INTO public.notice VALUES (8962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693059104);
INSERT INTO public.notice VALUES (8963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693059705);
INSERT INTO public.notice VALUES (8964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693060304);
INSERT INTO public.notice VALUES (8965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693060904);
INSERT INTO public.notice VALUES (8966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693061505);
INSERT INTO public.notice VALUES (8967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693062105);
INSERT INTO public.notice VALUES (8968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693062704);
INSERT INTO public.notice VALUES (8969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693063304);
INSERT INTO public.notice VALUES (8970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693063905);
INSERT INTO public.notice VALUES (8971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693064505);
INSERT INTO public.notice VALUES (8972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693065104);
INSERT INTO public.notice VALUES (8973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693065703);
INSERT INTO public.notice VALUES (8974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693066305);
INSERT INTO public.notice VALUES (8975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693066904);
INSERT INTO public.notice VALUES (8976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693067504);
INSERT INTO public.notice VALUES (8977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693068105);
INSERT INTO public.notice VALUES (8978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693068705);
INSERT INTO public.notice VALUES (8979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693069304);
INSERT INTO public.notice VALUES (8980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693069903);
INSERT INTO public.notice VALUES (8981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693070505);
INSERT INTO public.notice VALUES (8982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693071104);
INSERT INTO public.notice VALUES (8983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693071705);
INSERT INTO public.notice VALUES (8990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693075904);
INSERT INTO public.notice VALUES (8991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693076503);
INSERT INTO public.notice VALUES (8992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693077105);
INSERT INTO public.notice VALUES (10056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693715859);
INSERT INTO public.notice VALUES (10057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693716461);
INSERT INTO public.notice VALUES (10058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693717060);
INSERT INTO public.notice VALUES (10059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693717660);
INSERT INTO public.notice VALUES (10077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693728460);
INSERT INTO public.notice VALUES (8985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693072905);
INSERT INTO public.notice VALUES (8986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693073504);
INSERT INTO public.notice VALUES (8987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693074103);
INSERT INTO public.notice VALUES (8988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693074705);
INSERT INTO public.notice VALUES (8989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693075304);
INSERT INTO public.notice VALUES (8993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693077704);
INSERT INTO public.notice VALUES (8994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693078304);
INSERT INTO public.notice VALUES (8995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693078905);
INSERT INTO public.notice VALUES (8996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693079505);
INSERT INTO public.notice VALUES (8997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693080104);
INSERT INTO public.notice VALUES (8998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693080704);
INSERT INTO public.notice VALUES (8999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693081305);
INSERT INTO public.notice VALUES (9000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693081904);
INSERT INTO public.notice VALUES (9001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693082504);
INSERT INTO public.notice VALUES (9002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693083105);
INSERT INTO public.notice VALUES (9003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693083705);
INSERT INTO public.notice VALUES (9004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693084305);
INSERT INTO public.notice VALUES (9005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693084904);
INSERT INTO public.notice VALUES (9006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693085505);
INSERT INTO public.notice VALUES (9007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693086104);
INSERT INTO public.notice VALUES (9011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693088504);
INSERT INTO public.notice VALUES (10061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693718861);
INSERT INTO public.notice VALUES (10062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693719460);
INSERT INTO public.notice VALUES (10063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693720060);
INSERT INTO public.notice VALUES (10064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693720661);
INSERT INTO public.notice VALUES (10065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693721260);
INSERT INTO public.notice VALUES (10066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693721860);
INSERT INTO public.notice VALUES (10067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693722461);
INSERT INTO public.notice VALUES (10068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693723061);
INSERT INTO public.notice VALUES (10069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693723661);
INSERT INTO public.notice VALUES (9008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693086704);
INSERT INTO public.notice VALUES (9009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693087303);
INSERT INTO public.notice VALUES (9010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693087905);
INSERT INTO public.notice VALUES (9012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693089104);
INSERT INTO public.notice VALUES (9013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693089705);
INSERT INTO public.notice VALUES (9014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693090305);
INSERT INTO public.notice VALUES (9015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693090904);
INSERT INTO public.notice VALUES (9016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693091503);
INSERT INTO public.notice VALUES (9017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693092105);
INSERT INTO public.notice VALUES (9018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693092704);
INSERT INTO public.notice VALUES (9019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693093304);
INSERT INTO public.notice VALUES (9020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693093905);
INSERT INTO public.notice VALUES (9021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693094505);
INSERT INTO public.notice VALUES (9022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693095104);
INSERT INTO public.notice VALUES (9023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693095703);
INSERT INTO public.notice VALUES (9024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693096306);
INSERT INTO public.notice VALUES (9025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693096904);
INSERT INTO public.notice VALUES (9026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693097504);
INSERT INTO public.notice VALUES (9027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693098104);
INSERT INTO public.notice VALUES (9028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693098705);
INSERT INTO public.notice VALUES (9029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693099304);
INSERT INTO public.notice VALUES (9030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693099904);
INSERT INTO public.notice VALUES (9038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693104705);
INSERT INTO public.notice VALUES (9039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693105305);
INSERT INTO public.notice VALUES (9040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693105904);
INSERT INTO public.notice VALUES (9041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693106503);
INSERT INTO public.notice VALUES (9050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693111905);
INSERT INTO public.notice VALUES (9051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693112504);
INSERT INTO public.notice VALUES (10070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693724260);
INSERT INTO public.notice VALUES (10071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693724861);
INSERT INTO public.notice VALUES (9031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693100505);
INSERT INTO public.notice VALUES (9032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693101105);
INSERT INTO public.notice VALUES (9033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693101704);
INSERT INTO public.notice VALUES (9034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693102303);
INSERT INTO public.notice VALUES (9035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693102905);
INSERT INTO public.notice VALUES (9036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693103504);
INSERT INTO public.notice VALUES (9037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693104104);
INSERT INTO public.notice VALUES (9042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693107105);
INSERT INTO public.notice VALUES (9043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693107705);
INSERT INTO public.notice VALUES (9044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693108304);
INSERT INTO public.notice VALUES (9045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693108903);
INSERT INTO public.notice VALUES (9046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693109505);
INSERT INTO public.notice VALUES (9047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693110104);
INSERT INTO public.notice VALUES (9048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693110704);
INSERT INTO public.notice VALUES (9049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693111305);
INSERT INTO public.notice VALUES (9052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693113106);
INSERT INTO public.notice VALUES (9056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693115505);
INSERT INTO public.notice VALUES (9057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693116105);
INSERT INTO public.notice VALUES (9058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693116704);
INSERT INTO public.notice VALUES (9063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693119703);
INSERT INTO public.notice VALUES (9064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693120305);
INSERT INTO public.notice VALUES (10072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693725461);
INSERT INTO public.notice VALUES (10073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693726060);
INSERT INTO public.notice VALUES (10074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693726659);
INSERT INTO public.notice VALUES (10075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693727261);
INSERT INTO public.notice VALUES (10076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693727860);
INSERT INTO public.notice VALUES (10160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693778260);
INSERT INTO public.notice VALUES (10163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693780060);
INSERT INTO public.notice VALUES (10164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693780660);
INSERT INTO public.notice VALUES (10166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693781861);
INSERT INTO public.notice VALUES (9053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693113705);
INSERT INTO public.notice VALUES (9054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693114304);
INSERT INTO public.notice VALUES (9055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693114904);
INSERT INTO public.notice VALUES (9059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693117304);
INSERT INTO public.notice VALUES (9060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693117905);
INSERT INTO public.notice VALUES (9061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693118504);
INSERT INTO public.notice VALUES (9062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693119104);
INSERT INTO public.notice VALUES (9065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693120904);
INSERT INTO public.notice VALUES (9066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693121504);
INSERT INTO public.notice VALUES (9067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693122105);
INSERT INTO public.notice VALUES (9068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693122705);
INSERT INTO public.notice VALUES (9069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693123304);
INSERT INTO public.notice VALUES (9070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693123903);
INSERT INTO public.notice VALUES (9071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693124505);
INSERT INTO public.notice VALUES (9072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693125104);
INSERT INTO public.notice VALUES (9073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693125704);
INSERT INTO public.notice VALUES (9074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693126305);
INSERT INTO public.notice VALUES (9075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693126905);
INSERT INTO public.notice VALUES (9078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693128705);
INSERT INTO public.notice VALUES (9088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693134703);
INSERT INTO public.notice VALUES (9089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693135305);
INSERT INTO public.notice VALUES (9090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693135905);
INSERT INTO public.notice VALUES (9091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693136504);
INSERT INTO public.notice VALUES (9109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693147304);
INSERT INTO public.notice VALUES (9110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693147905);
INSERT INTO public.notice VALUES (10078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693729061);
INSERT INTO public.notice VALUES (10079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693729661);
INSERT INTO public.notice VALUES (10080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693730260);
INSERT INTO public.notice VALUES (10081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693730860);
INSERT INTO public.notice VALUES (10082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693731461);
INSERT INTO public.notice VALUES (9076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693127504);
INSERT INTO public.notice VALUES (9077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693128104);
INSERT INTO public.notice VALUES (9079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693129305);
INSERT INTO public.notice VALUES (9080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693129904);
INSERT INTO public.notice VALUES (9081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693130504);
INSERT INTO public.notice VALUES (9082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693131105);
INSERT INTO public.notice VALUES (9083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693131704);
INSERT INTO public.notice VALUES (9084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693132304);
INSERT INTO public.notice VALUES (9085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693132905);
INSERT INTO public.notice VALUES (9086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693133505);
INSERT INTO public.notice VALUES (9087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693134104);
INSERT INTO public.notice VALUES (9092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693137105);
INSERT INTO public.notice VALUES (9093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693137705);
INSERT INTO public.notice VALUES (9094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693138304);
INSERT INTO public.notice VALUES (9095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693138904);
INSERT INTO public.notice VALUES (9096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693139505);
INSERT INTO public.notice VALUES (9097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693140104);
INSERT INTO public.notice VALUES (9098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693140704);
INSERT INTO public.notice VALUES (9099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693141303);
INSERT INTO public.notice VALUES (9100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693141905);
INSERT INTO public.notice VALUES (9101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693142504);
INSERT INTO public.notice VALUES (9102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693143104);
INSERT INTO public.notice VALUES (9103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693143705);
INSERT INTO public.notice VALUES (9104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693144305);
INSERT INTO public.notice VALUES (9105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693144904);
INSERT INTO public.notice VALUES (9106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693145505);
INSERT INTO public.notice VALUES (9107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693146105);
INSERT INTO public.notice VALUES (9108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693146705);
INSERT INTO public.notice VALUES (9111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693148505);
INSERT INTO public.notice VALUES (9112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693149104);
INSERT INTO public.notice VALUES (9113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693149704);
INSERT INTO public.notice VALUES (9114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693150305);
INSERT INTO public.notice VALUES (9115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693150905);
INSERT INTO public.notice VALUES (9116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693151504);
INSERT INTO public.notice VALUES (9117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693152103);
INSERT INTO public.notice VALUES (9118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693152705);
INSERT INTO public.notice VALUES (9119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693153304);
INSERT INTO public.notice VALUES (9120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693153904);
INSERT INTO public.notice VALUES (9121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693154505);
INSERT INTO public.notice VALUES (9122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693155105);
INSERT INTO public.notice VALUES (9123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693155705);
INSERT INTO public.notice VALUES (9124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693156304);
INSERT INTO public.notice VALUES (9125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693156905);
INSERT INTO public.notice VALUES (9126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693157504);
INSERT INTO public.notice VALUES (9127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693158104);
INSERT INTO public.notice VALUES (9128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693158705);
INSERT INTO public.notice VALUES (9133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693161704);
INSERT INTO public.notice VALUES (9134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693162304);
INSERT INTO public.notice VALUES (9135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693162906);
INSERT INTO public.notice VALUES (9140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693165904);
INSERT INTO public.notice VALUES (9141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693166504);
INSERT INTO public.notice VALUES (9142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693167105);
INSERT INTO public.notice VALUES (9143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693167704);
INSERT INTO public.notice VALUES (9144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693168304);
INSERT INTO public.notice VALUES (9145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693168903);
INSERT INTO public.notice VALUES (9146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693169505);
INSERT INTO public.notice VALUES (9147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693170104);
INSERT INTO public.notice VALUES (9148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693170704);
INSERT INTO public.notice VALUES (9149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693171305);
INSERT INTO public.notice VALUES (9150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693171905);
INSERT INTO public.notice VALUES (9129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693159305);
INSERT INTO public.notice VALUES (9130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693159904);
INSERT INTO public.notice VALUES (9131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693160506);
INSERT INTO public.notice VALUES (9132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693161105);
INSERT INTO public.notice VALUES (9136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693163505);
INSERT INTO public.notice VALUES (9137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693164104);
INSERT INTO public.notice VALUES (9138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693164704);
INSERT INTO public.notice VALUES (9139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693165305);
INSERT INTO public.notice VALUES (9166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693181504);
INSERT INTO public.notice VALUES (9167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693182105);
INSERT INTO public.notice VALUES (9176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693187504);
INSERT INTO public.notice VALUES (9177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693188104);
INSERT INTO public.notice VALUES (9197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693200104);
INSERT INTO public.notice VALUES (9209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693207304);
INSERT INTO public.notice VALUES (9210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693207905);
INSERT INTO public.notice VALUES (9151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693172504);
INSERT INTO public.notice VALUES (9152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693173104);
INSERT INTO public.notice VALUES (9153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693173705);
INSERT INTO public.notice VALUES (9154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693174304);
INSERT INTO public.notice VALUES (9155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693174904);
INSERT INTO public.notice VALUES (9156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693175503);
INSERT INTO public.notice VALUES (9157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693176105);
INSERT INTO public.notice VALUES (9158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693176704);
INSERT INTO public.notice VALUES (9159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693177304);
INSERT INTO public.notice VALUES (9160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693177905);
INSERT INTO public.notice VALUES (9161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693178505);
INSERT INTO public.notice VALUES (9162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693179104);
INSERT INTO public.notice VALUES (9163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693179703);
INSERT INTO public.notice VALUES (9164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693180305);
INSERT INTO public.notice VALUES (9165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693180905);
INSERT INTO public.notice VALUES (9168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693182705);
INSERT INTO public.notice VALUES (9169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693183304);
INSERT INTO public.notice VALUES (9170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693183903);
INSERT INTO public.notice VALUES (9171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693184505);
INSERT INTO public.notice VALUES (9172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693185104);
INSERT INTO public.notice VALUES (9173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693185704);
INSERT INTO public.notice VALUES (9174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693186303);
INSERT INTO public.notice VALUES (9175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693186904);
INSERT INTO public.notice VALUES (9178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693188705);
INSERT INTO public.notice VALUES (9179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693189305);
INSERT INTO public.notice VALUES (9180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693189904);
INSERT INTO public.notice VALUES (9181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693190503);
INSERT INTO public.notice VALUES (9182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693191105);
INSERT INTO public.notice VALUES (9183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693191704);
INSERT INTO public.notice VALUES (9184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693192304);
INSERT INTO public.notice VALUES (9185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693192905);
INSERT INTO public.notice VALUES (9186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693193505);
INSERT INTO public.notice VALUES (9187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693194104);
INSERT INTO public.notice VALUES (9188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693194706);
INSERT INTO public.notice VALUES (9189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693195305);
INSERT INTO public.notice VALUES (9190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693195904);
INSERT INTO public.notice VALUES (9191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693196504);
INSERT INTO public.notice VALUES (9192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693197105);
INSERT INTO public.notice VALUES (9193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693197705);
INSERT INTO public.notice VALUES (9194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693198304);
INSERT INTO public.notice VALUES (9195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693198904);
INSERT INTO public.notice VALUES (9196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693199505);
INSERT INTO public.notice VALUES (9198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693200704);
INSERT INTO public.notice VALUES (9199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693201303);
INSERT INTO public.notice VALUES (9200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693201905);
INSERT INTO public.notice VALUES (9201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693202504);
INSERT INTO public.notice VALUES (9202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693203104);
INSERT INTO public.notice VALUES (9203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693203705);
INSERT INTO public.notice VALUES (9204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693204304);
INSERT INTO public.notice VALUES (9205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693204904);
INSERT INTO public.notice VALUES (9206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693205503);
INSERT INTO public.notice VALUES (9207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693206105);
INSERT INTO public.notice VALUES (9208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693206704);
INSERT INTO public.notice VALUES (9214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693210305);
INSERT INTO public.notice VALUES (9215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693210904);
INSERT INTO public.notice VALUES (9216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693211504);
INSERT INTO public.notice VALUES (9226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693217504);
INSERT INTO public.notice VALUES (9233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693221704);
INSERT INTO public.notice VALUES (9239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693225305);
INSERT INTO public.notice VALUES (9240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693225904);
INSERT INTO public.notice VALUES (9211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693208504);
INSERT INTO public.notice VALUES (9212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693209104);
INSERT INTO public.notice VALUES (9213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693209704);
INSERT INTO public.notice VALUES (9217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693212105);
INSERT INTO public.notice VALUES (9218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693212705);
INSERT INTO public.notice VALUES (9219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693213304);
INSERT INTO public.notice VALUES (9220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693213904);
INSERT INTO public.notice VALUES (9221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693214505);
INSERT INTO public.notice VALUES (9222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693215104);
INSERT INTO public.notice VALUES (9223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693215704);
INSERT INTO public.notice VALUES (9224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693216303);
INSERT INTO public.notice VALUES (9225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693216905);
INSERT INTO public.notice VALUES (9227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693218104);
INSERT INTO public.notice VALUES (9228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693218705);
INSERT INTO public.notice VALUES (9229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693219305);
INSERT INTO public.notice VALUES (9230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693219904);
INSERT INTO public.notice VALUES (9231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693220504);
INSERT INTO public.notice VALUES (9232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693221106);
INSERT INTO public.notice VALUES (9234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693222304);
INSERT INTO public.notice VALUES (9235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693222905);
INSERT INTO public.notice VALUES (9236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693223505);
INSERT INTO public.notice VALUES (9237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693224104);
INSERT INTO public.notice VALUES (9238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693224704);
INSERT INTO public.notice VALUES (9247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693230105);
INSERT INTO public.notice VALUES (9248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693230704);
INSERT INTO public.notice VALUES (9249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693231303);
INSERT INTO public.notice VALUES (9253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693233705);
INSERT INTO public.notice VALUES (9254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693234305);
INSERT INTO public.notice VALUES (9255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693234905);
INSERT INTO public.notice VALUES (9256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693235504);
INSERT INTO public.notice VALUES (9241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693226504);
INSERT INTO public.notice VALUES (9242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693227103);
INSERT INTO public.notice VALUES (9243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693227705);
INSERT INTO public.notice VALUES (9244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693228304);
INSERT INTO public.notice VALUES (9245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693228904);
INSERT INTO public.notice VALUES (9246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693229505);
INSERT INTO public.notice VALUES (9250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693231905);
INSERT INTO public.notice VALUES (9251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693232504);
INSERT INTO public.notice VALUES (9252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693233104);
INSERT INTO public.notice VALUES (9262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693239105);
INSERT INTO public.notice VALUES (9263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693239704);
INSERT INTO public.notice VALUES (9264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693240305);
INSERT INTO public.notice VALUES (9265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693240905);
INSERT INTO public.notice VALUES (9266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693241504);
INSERT INTO public.notice VALUES (9274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693246304);
INSERT INTO public.notice VALUES (9257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693236105);
INSERT INTO public.notice VALUES (9258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693236705);
INSERT INTO public.notice VALUES (9259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693237304);
INSERT INTO public.notice VALUES (9260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693237903);
INSERT INTO public.notice VALUES (9261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693238505);
INSERT INTO public.notice VALUES (9267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693242104);
INSERT INTO public.notice VALUES (9268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693242705);
INSERT INTO public.notice VALUES (9269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693243305);
INSERT INTO public.notice VALUES (9270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693243904);
INSERT INTO public.notice VALUES (9271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693244505);
INSERT INTO public.notice VALUES (9272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693245105);
INSERT INTO public.notice VALUES (9273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693245705);
INSERT INTO public.notice VALUES (9275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693246905);
INSERT INTO public.notice VALUES (9276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693247505);
INSERT INTO public.notice VALUES (9277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693248104);
INSERT INTO public.notice VALUES (9278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693248703);
INSERT INTO public.notice VALUES (9279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693249305);
INSERT INTO public.notice VALUES (9280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693249904);
INSERT INTO public.notice VALUES (9281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693250504);
INSERT INTO public.notice VALUES (9282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693251106);
INSERT INTO public.notice VALUES (9283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693251705);
INSERT INTO public.notice VALUES (9284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693252304);
INSERT INTO public.notice VALUES (9285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693252904);
INSERT INTO public.notice VALUES (9286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693253505);
INSERT INTO public.notice VALUES (9287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693254104);
INSERT INTO public.notice VALUES (9288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693254704);
INSERT INTO public.notice VALUES (9289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693255303);
INSERT INTO public.notice VALUES (9290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693255905);
INSERT INTO public.notice VALUES (9291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693256504);
INSERT INTO public.notice VALUES (9292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693257104);
INSERT INTO public.notice VALUES (9293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693257705);
INSERT INTO public.notice VALUES (9294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693258305);
INSERT INTO public.notice VALUES (9295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693258904);
INSERT INTO public.notice VALUES (9297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693260105);
INSERT INTO public.notice VALUES (9298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693260704);
INSERT INTO public.notice VALUES (9299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693261304);
INSERT INTO public.notice VALUES (9300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693261903);
INSERT INTO public.notice VALUES (9301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693262505);
INSERT INTO public.notice VALUES (9302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693263104);
INSERT INTO public.notice VALUES (9303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693263704);
INSERT INTO public.notice VALUES (9304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693264305);
INSERT INTO public.notice VALUES (9311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693268505);
INSERT INTO public.notice VALUES (9312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693269105);
INSERT INTO public.notice VALUES (9313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693269705);
INSERT INTO public.notice VALUES (9314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693270304);
INSERT INTO public.notice VALUES (9296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693259504);
INSERT INTO public.notice VALUES (9305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693264905);
INSERT INTO public.notice VALUES (9306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693265505);
INSERT INTO public.notice VALUES (9307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693266104);
INSERT INTO public.notice VALUES (9308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693266705);
INSERT INTO public.notice VALUES (9309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693267305);
INSERT INTO public.notice VALUES (9310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693267904);
INSERT INTO public.notice VALUES (9320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693273904);
INSERT INTO public.notice VALUES (9321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693274504);
INSERT INTO public.notice VALUES (9322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693275105);
INSERT INTO public.notice VALUES (9323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693275705);
INSERT INTO public.notice VALUES (9324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693276304);
INSERT INTO public.notice VALUES (9325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693276904);
INSERT INTO public.notice VALUES (9326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693277505);
INSERT INTO public.notice VALUES (9327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693278105);
INSERT INTO public.notice VALUES (9315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693270905);
INSERT INTO public.notice VALUES (9316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693271504);
INSERT INTO public.notice VALUES (9317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693272104);
INSERT INTO public.notice VALUES (9318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693272703);
INSERT INTO public.notice VALUES (9319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693273305);
INSERT INTO public.notice VALUES (9328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693278704);
INSERT INTO public.notice VALUES (9329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693279305);
INSERT INTO public.notice VALUES (9330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693279905);
INSERT INTO public.notice VALUES (9331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693280504);
INSERT INTO public.notice VALUES (9332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693281103);
INSERT INTO public.notice VALUES (9333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693281705);
INSERT INTO public.notice VALUES (9334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693282304);
INSERT INTO public.notice VALUES (9335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693282904);
INSERT INTO public.notice VALUES (9336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693283505);
INSERT INTO public.notice VALUES (9337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693284105);
INSERT INTO public.notice VALUES (9338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693284704);
INSERT INTO public.notice VALUES (9352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693293104);
INSERT INTO public.notice VALUES (10083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693732061);
INSERT INTO public.notice VALUES (10162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693779461);
INSERT INTO public.notice VALUES (10165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693781261);
INSERT INTO public.notice VALUES (10172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693785462);
INSERT INTO public.notice VALUES (10173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693786061);
INSERT INTO public.notice VALUES (10174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1693786670);
INSERT INTO public.notice VALUES (10175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693787260);
INSERT INTO public.notice VALUES (10179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693789662);
INSERT INTO public.notice VALUES (10180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693790261);
INSERT INTO public.notice VALUES (10181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693790861);
INSERT INTO public.notice VALUES (10184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693792661);
INSERT INTO public.notice VALUES (10185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693793260);
INSERT INTO public.notice VALUES (10186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693793860);
INSERT INTO public.notice VALUES (10187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693794461);
INSERT INTO public.notice VALUES (9339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693285304);
INSERT INTO public.notice VALUES (9340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693285905);
INSERT INTO public.notice VALUES (9341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693286504);
INSERT INTO public.notice VALUES (9342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693287104);
INSERT INTO public.notice VALUES (9343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693287703);
INSERT INTO public.notice VALUES (9344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693288305);
INSERT INTO public.notice VALUES (9345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693288904);
INSERT INTO public.notice VALUES (9346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693289504);
INSERT INTO public.notice VALUES (9347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693290105);
INSERT INTO public.notice VALUES (9348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693290705);
INSERT INTO public.notice VALUES (9349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693291304);
INSERT INTO public.notice VALUES (9350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693291904);
INSERT INTO public.notice VALUES (9351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693292505);
INSERT INTO public.notice VALUES (9353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693293704);
INSERT INTO public.notice VALUES (9354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693294303);
INSERT INTO public.notice VALUES (9355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693294905);
INSERT INTO public.notice VALUES (9356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693295504);
INSERT INTO public.notice VALUES (9357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693296104);
INSERT INTO public.notice VALUES (9358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693296706);
INSERT INTO public.notice VALUES (9359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693297305);
INSERT INTO public.notice VALUES (9360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693297904);
INSERT INTO public.notice VALUES (9361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693298504);
INSERT INTO public.notice VALUES (10084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693732660);
INSERT INTO public.notice VALUES (10085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693733262);
INSERT INTO public.notice VALUES (10086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693733861);
INSERT INTO public.notice VALUES (10088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693735060);
INSERT INTO public.notice VALUES (10167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693782460);
INSERT INTO public.notice VALUES (10168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693783060);
INSERT INTO public.notice VALUES (10169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693783661);
INSERT INTO public.notice VALUES (10170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693784260);
INSERT INTO public.notice VALUES (9362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693299105);
INSERT INTO public.notice VALUES (9363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693299704);
INSERT INTO public.notice VALUES (9364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693300304);
INSERT INTO public.notice VALUES (9365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693300911);
INSERT INTO public.notice VALUES (9366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693301505);
INSERT INTO public.notice VALUES (9367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693302461);
INSERT INTO public.notice VALUES (9368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693303060);
INSERT INTO public.notice VALUES (9369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693303660);
INSERT INTO public.notice VALUES (9370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693304261);
INSERT INTO public.notice VALUES (9371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693304860);
INSERT INTO public.notice VALUES (9372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693305460);
INSERT INTO public.notice VALUES (9373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693306059);
INSERT INTO public.notice VALUES (9374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693306661);
INSERT INTO public.notice VALUES (9375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693307265);
INSERT INTO public.notice VALUES (9376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693307860);
INSERT INTO public.notice VALUES (9377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693308461);
INSERT INTO public.notice VALUES (9378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693309061);
INSERT INTO public.notice VALUES (9379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693309660);
INSERT INTO public.notice VALUES (9380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693310260);
INSERT INTO public.notice VALUES (9381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693310861);
INSERT INTO public.notice VALUES (9402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693323462);
INSERT INTO public.notice VALUES (9403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693324061);
INSERT INTO public.notice VALUES (9404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693324660);
INSERT INTO public.notice VALUES (9405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693325260);
INSERT INTO public.notice VALUES (9406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693325861);
INSERT INTO public.notice VALUES (9407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693326462);
INSERT INTO public.notice VALUES (10087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693734460);
INSERT INTO public.notice VALUES (10089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693735661);
INSERT INTO public.notice VALUES (10098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693741060);
INSERT INTO public.notice VALUES (10171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693784860);
INSERT INTO public.notice VALUES (9382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693311461);
INSERT INTO public.notice VALUES (9383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693312060);
INSERT INTO public.notice VALUES (9384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693312661);
INSERT INTO public.notice VALUES (9385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693313261);
INSERT INTO public.notice VALUES (9386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693313860);
INSERT INTO public.notice VALUES (9387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693314460);
INSERT INTO public.notice VALUES (9388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693315061);
INSERT INTO public.notice VALUES (9389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693315661);
INSERT INTO public.notice VALUES (9390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693316260);
INSERT INTO public.notice VALUES (9391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693316860);
INSERT INTO public.notice VALUES (9392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693317461);
INSERT INTO public.notice VALUES (9393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693318060);
INSERT INTO public.notice VALUES (9394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693318660);
INSERT INTO public.notice VALUES (9395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693319261);
INSERT INTO public.notice VALUES (9396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693319861);
INSERT INTO public.notice VALUES (9397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693320461);
INSERT INTO public.notice VALUES (9398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693321060);
INSERT INTO public.notice VALUES (9399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693321661);
INSERT INTO public.notice VALUES (9400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693322260);
INSERT INTO public.notice VALUES (9401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693322860);
INSERT INTO public.notice VALUES (9408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693327060);
INSERT INTO public.notice VALUES (9409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693327659);
INSERT INTO public.notice VALUES (9410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693328261);
INSERT INTO public.notice VALUES (9411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693328860);
INSERT INTO public.notice VALUES (9412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693329460);
INSERT INTO public.notice VALUES (9413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693330061);
INSERT INTO public.notice VALUES (9414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693330661);
INSERT INTO public.notice VALUES (9415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693331260);
INSERT INTO public.notice VALUES (9416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693331860);
INSERT INTO public.notice VALUES (9417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693332461);
INSERT INTO public.notice VALUES (9418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693333060);
INSERT INTO public.notice VALUES (9419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693333660);
INSERT INTO public.notice VALUES (9425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693337262);
INSERT INTO public.notice VALUES (9426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693337860);
INSERT INTO public.notice VALUES (9427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693338459);
INSERT INTO public.notice VALUES (9428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693339061);
INSERT INTO public.notice VALUES (9429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693339661);
INSERT INTO public.notice VALUES (10090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693736261);
INSERT INTO public.notice VALUES (10091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693736860);
INSERT INTO public.notice VALUES (10092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693737462);
INSERT INTO public.notice VALUES (10093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693738061);
INSERT INTO public.notice VALUES (10176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693787861);
INSERT INTO public.notice VALUES (10177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693788461);
INSERT INTO public.notice VALUES (10178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693789060);
INSERT INTO public.notice VALUES (10182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693791460);
INSERT INTO public.notice VALUES (9420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693334261);
INSERT INTO public.notice VALUES (9421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693334861);
INSERT INTO public.notice VALUES (9422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693335460);
INSERT INTO public.notice VALUES (9423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693336060);
INSERT INTO public.notice VALUES (9424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693336661);
INSERT INTO public.notice VALUES (9430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693340260);
INSERT INTO public.notice VALUES (9431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693340861);
INSERT INTO public.notice VALUES (9432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693341461);
INSERT INTO public.notice VALUES (9433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693342060);
INSERT INTO public.notice VALUES (9434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693342659);
INSERT INTO public.notice VALUES (9435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693343261);
INSERT INTO public.notice VALUES (9436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693343861);
INSERT INTO public.notice VALUES (9437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693344460);
INSERT INTO public.notice VALUES (9438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693345059);
INSERT INTO public.notice VALUES (9439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693345661);
INSERT INTO public.notice VALUES (9440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693346260);
INSERT INTO public.notice VALUES (9442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693347461);
INSERT INTO public.notice VALUES (9443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693348061);
INSERT INTO public.notice VALUES (10094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693738660);
INSERT INTO public.notice VALUES (10183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693792061);
INSERT INTO public.notice VALUES (10188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693795061);
INSERT INTO public.notice VALUES (10189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693795660);
INSERT INTO public.notice VALUES (10190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693796259);
INSERT INTO public.notice VALUES (10191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693796861);
INSERT INTO public.notice VALUES (10192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693797460);
INSERT INTO public.notice VALUES (10193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693798060);
INSERT INTO public.notice VALUES (10220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693814261);
INSERT INTO public.notice VALUES (10221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693814860);
INSERT INTO public.notice VALUES (10224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693816661);
INSERT INTO public.notice VALUES (10225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693817260);
INSERT INTO public.notice VALUES (9441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693346860);
INSERT INTO public.notice VALUES (9444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693348660);
INSERT INTO public.notice VALUES (9445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693349260);
INSERT INTO public.notice VALUES (9446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693349861);
INSERT INTO public.notice VALUES (9447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693350460);
INSERT INTO public.notice VALUES (9448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693351060);
INSERT INTO public.notice VALUES (9449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693351659);
INSERT INTO public.notice VALUES (9450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693352261);
INSERT INTO public.notice VALUES (9451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693352860);
INSERT INTO public.notice VALUES (9452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693353459);
INSERT INTO public.notice VALUES (9453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693354061);
INSERT INTO public.notice VALUES (9454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693354661);
INSERT INTO public.notice VALUES (9455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693355260);
INSERT INTO public.notice VALUES (9456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693355860);
INSERT INTO public.notice VALUES (9457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693356461);
INSERT INTO public.notice VALUES (9458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693357060);
INSERT INTO public.notice VALUES (9459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693357660);
INSERT INTO public.notice VALUES (9460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693358261);
INSERT INTO public.notice VALUES (9461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693358861);
INSERT INTO public.notice VALUES (9462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693359460);
INSERT INTO public.notice VALUES (9463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693360060);
INSERT INTO public.notice VALUES (9464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693360661);
INSERT INTO public.notice VALUES (9465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693361261);
INSERT INTO public.notice VALUES (9466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693361860);
INSERT INTO public.notice VALUES (9467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693362459);
INSERT INTO public.notice VALUES (9468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693363061);
INSERT INTO public.notice VALUES (9469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693363660);
INSERT INTO public.notice VALUES (9470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693364259);
INSERT INTO public.notice VALUES (9471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693364861);
INSERT INTO public.notice VALUES (9472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693365461);
INSERT INTO public.notice VALUES (9473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693366060);
INSERT INTO public.notice VALUES (9474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693366661);
INSERT INTO public.notice VALUES (9485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693373261);
INSERT INTO public.notice VALUES (9486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693373861);
INSERT INTO public.notice VALUES (9487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693374460);
INSERT INTO public.notice VALUES (9496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693379861);
INSERT INTO public.notice VALUES (10095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693739260);
INSERT INTO public.notice VALUES (10096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693739862);
INSERT INTO public.notice VALUES (10097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693740461);
INSERT INTO public.notice VALUES (10102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693743460);
INSERT INTO public.notice VALUES (10104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693744661);
INSERT INTO public.notice VALUES (10194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693798661);
INSERT INTO public.notice VALUES (10195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693799261);
INSERT INTO public.notice VALUES (10196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693799860);
INSERT INTO public.notice VALUES (10197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693800460);
INSERT INTO public.notice VALUES (9475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693367261);
INSERT INTO public.notice VALUES (9476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693367860);
INSERT INTO public.notice VALUES (9477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693368460);
INSERT INTO public.notice VALUES (9478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693369061);
INSERT INTO public.notice VALUES (9479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693369661);
INSERT INTO public.notice VALUES (9480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693370260);
INSERT INTO public.notice VALUES (9481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693370860);
INSERT INTO public.notice VALUES (9482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693371461);
INSERT INTO public.notice VALUES (9483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693372060);
INSERT INTO public.notice VALUES (9484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693372660);
INSERT INTO public.notice VALUES (9488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693375059);
INSERT INTO public.notice VALUES (9489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693375661);
INSERT INTO public.notice VALUES (9490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693376260);
INSERT INTO public.notice VALUES (9491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693376860);
INSERT INTO public.notice VALUES (9492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693377461);
INSERT INTO public.notice VALUES (9493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693378061);
INSERT INTO public.notice VALUES (9494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693378660);
INSERT INTO public.notice VALUES (9495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693379260);
INSERT INTO public.notice VALUES (9497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693380461);
INSERT INTO public.notice VALUES (9498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693381060);
INSERT INTO public.notice VALUES (9499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693381661);
INSERT INTO public.notice VALUES (9500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693382261);
INSERT INTO public.notice VALUES (9501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693382860);
INSERT INTO public.notice VALUES (9502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693383460);
INSERT INTO public.notice VALUES (9503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693384061);
INSERT INTO public.notice VALUES (9504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693384660);
INSERT INTO public.notice VALUES (9505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693385260);
INSERT INTO public.notice VALUES (9506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693385859);
INSERT INTO public.notice VALUES (9507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693386461);
INSERT INTO public.notice VALUES (9508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693387061);
INSERT INTO public.notice VALUES (9509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693387660);
INSERT INTO public.notice VALUES (9510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693388261);
INSERT INTO public.notice VALUES (9511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693388861);
INSERT INTO public.notice VALUES (9512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693389460);
INSERT INTO public.notice VALUES (9513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693390059);
INSERT INTO public.notice VALUES (9514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693390661);
INSERT INTO public.notice VALUES (9515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693391260);
INSERT INTO public.notice VALUES (9516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693391860);
INSERT INTO public.notice VALUES (9517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693392461);
INSERT INTO public.notice VALUES (9518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693393061);
INSERT INTO public.notice VALUES (9519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693393660);
INSERT INTO public.notice VALUES (9520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693394260);
INSERT INTO public.notice VALUES (9521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693394861);
INSERT INTO public.notice VALUES (9522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693395461);
INSERT INTO public.notice VALUES (9523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693396060);
INSERT INTO public.notice VALUES (9524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693396659);
INSERT INTO public.notice VALUES (9525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693397261);
INSERT INTO public.notice VALUES (9526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693397861);
INSERT INTO public.notice VALUES (9527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693398460);
INSERT INTO public.notice VALUES (9528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693399061);
INSERT INTO public.notice VALUES (9529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693399660);
INSERT INTO public.notice VALUES (9530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693400260);
INSERT INTO public.notice VALUES (9531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693400862);
INSERT INTO public.notice VALUES (9532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693401461);
INSERT INTO public.notice VALUES (9533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693402060);
INSERT INTO public.notice VALUES (9534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693402660);
INSERT INTO public.notice VALUES (9535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693403262);
INSERT INTO public.notice VALUES (9536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693403861);
INSERT INTO public.notice VALUES (9543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693408061);
INSERT INTO public.notice VALUES (9544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693408661);
INSERT INTO public.notice VALUES (9537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693404461);
INSERT INTO public.notice VALUES (9538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693405060);
INSERT INTO public.notice VALUES (9539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693405662);
INSERT INTO public.notice VALUES (9540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693406260);
INSERT INTO public.notice VALUES (9541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693406860);
INSERT INTO public.notice VALUES (9542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693407462);
INSERT INTO public.notice VALUES (9545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693409260);
INSERT INTO public.notice VALUES (9546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693409861);
INSERT INTO public.notice VALUES (9547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693410461);
INSERT INTO public.notice VALUES (9555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693415260);
INSERT INTO public.notice VALUES (9556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693415860);
INSERT INTO public.notice VALUES (9557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693416461);
INSERT INTO public.notice VALUES (9558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693417061);
INSERT INTO public.notice VALUES (9559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693417660);
INSERT INTO public.notice VALUES (9564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693420661);
INSERT INTO public.notice VALUES (9548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693411061);
INSERT INTO public.notice VALUES (9549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693411660);
INSERT INTO public.notice VALUES (9550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693412261);
INSERT INTO public.notice VALUES (9551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693412860);
INSERT INTO public.notice VALUES (9552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693413460);
INSERT INTO public.notice VALUES (9553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693414061);
INSERT INTO public.notice VALUES (9554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693414661);
INSERT INTO public.notice VALUES (9560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693418261);
INSERT INTO public.notice VALUES (9561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693418861);
INSERT INTO public.notice VALUES (9562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693419460);
INSERT INTO public.notice VALUES (9563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693420060);
INSERT INTO public.notice VALUES (9566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693421860);
INSERT INTO public.notice VALUES (9567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693422459);
INSERT INTO public.notice VALUES (9568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693423062);
INSERT INTO public.notice VALUES (9569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693423660);
INSERT INTO public.notice VALUES (9565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693421261);
INSERT INTO public.notice VALUES (9573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693426060);
INSERT INTO public.notice VALUES (9574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693426660);
INSERT INTO public.notice VALUES (9588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693435060);
INSERT INTO public.notice VALUES (9589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693435662);
INSERT INTO public.notice VALUES (9590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693436261);
INSERT INTO public.notice VALUES (9591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693436860);
INSERT INTO public.notice VALUES (9592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693437460);
INSERT INTO public.notice VALUES (9593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693438061);
INSERT INTO public.notice VALUES (9601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693442861);
INSERT INTO public.notice VALUES (9602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693443460);
INSERT INTO public.notice VALUES (9603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693444061);
INSERT INTO public.notice VALUES (9604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693444661);
INSERT INTO public.notice VALUES (9605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693445260);
INSERT INTO public.notice VALUES (9606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693445860);
INSERT INTO public.notice VALUES (9570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693424260);
INSERT INTO public.notice VALUES (9571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693424861);
INSERT INTO public.notice VALUES (9572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693425461);
INSERT INTO public.notice VALUES (9575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693427261);
INSERT INTO public.notice VALUES (9576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693427861);
INSERT INTO public.notice VALUES (9577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693428460);
INSERT INTO public.notice VALUES (9578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693429061);
INSERT INTO public.notice VALUES (9579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693429661);
INSERT INTO public.notice VALUES (9580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693430260);
INSERT INTO public.notice VALUES (9581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693430860);
INSERT INTO public.notice VALUES (9582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693431461);
INSERT INTO public.notice VALUES (9583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693432061);
INSERT INTO public.notice VALUES (9584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693432660);
INSERT INTO public.notice VALUES (9585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693433261);
INSERT INTO public.notice VALUES (9586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693433861);
INSERT INTO public.notice VALUES (9587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693434460);
INSERT INTO public.notice VALUES (9594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693438661);
INSERT INTO public.notice VALUES (9595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693439260);
INSERT INTO public.notice VALUES (9596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693439862);
INSERT INTO public.notice VALUES (9597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693440461);
INSERT INTO public.notice VALUES (9598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693441060);
INSERT INTO public.notice VALUES (9599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693441660);
INSERT INTO public.notice VALUES (9600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693442261);
INSERT INTO public.notice VALUES (9608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693447061);
INSERT INTO public.notice VALUES (9609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693447660);
INSERT INTO public.notice VALUES (9612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693449461);
INSERT INTO public.notice VALUES (9613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693450060);
INSERT INTO public.notice VALUES (10099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693741660);
INSERT INTO public.notice VALUES (10100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693742261);
INSERT INTO public.notice VALUES (10101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693742861);
INSERT INTO public.notice VALUES (9607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693446461);
INSERT INTO public.notice VALUES (9610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693448260);
INSERT INTO public.notice VALUES (9611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693448861);
INSERT INTO public.notice VALUES (9614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693450661);
INSERT INTO public.notice VALUES (9615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693451261);
INSERT INTO public.notice VALUES (9616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693451860);
INSERT INTO public.notice VALUES (9617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693452460);
INSERT INTO public.notice VALUES (9618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693453061);
INSERT INTO public.notice VALUES (9619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693453661);
INSERT INTO public.notice VALUES (9620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693454260);
INSERT INTO public.notice VALUES (9621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693454861);
INSERT INTO public.notice VALUES (9622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693455461);
INSERT INTO public.notice VALUES (9623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693456060);
INSERT INTO public.notice VALUES (9624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693456660);
INSERT INTO public.notice VALUES (9625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693457261);
INSERT INTO public.notice VALUES (9626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693457861);
INSERT INTO public.notice VALUES (9630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693460260);
INSERT INTO public.notice VALUES (9631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693460860);
INSERT INTO public.notice VALUES (9632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693461461);
INSERT INTO public.notice VALUES (9637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693464462);
INSERT INTO public.notice VALUES (9638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693465060);
INSERT INTO public.notice VALUES (9639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693465662);
INSERT INTO public.notice VALUES (9640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693466261);
INSERT INTO public.notice VALUES (9641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693466861);
INSERT INTO public.notice VALUES (9642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693467460);
INSERT INTO public.notice VALUES (9643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693468061);
INSERT INTO public.notice VALUES (9646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693469860);
INSERT INTO public.notice VALUES (9654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693474662);
INSERT INTO public.notice VALUES (9655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693475261);
INSERT INTO public.notice VALUES (9656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693475860);
INSERT INTO public.notice VALUES (9627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693458461);
INSERT INTO public.notice VALUES (9628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693459060);
INSERT INTO public.notice VALUES (9629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693459661);
INSERT INTO public.notice VALUES (9633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693462061);
INSERT INTO public.notice VALUES (9634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693462660);
INSERT INTO public.notice VALUES (9635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693463260);
INSERT INTO public.notice VALUES (9636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693463861);
INSERT INTO public.notice VALUES (9644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693468661);
INSERT INTO public.notice VALUES (9645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693469260);
INSERT INTO public.notice VALUES (9647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693470461);
INSERT INTO public.notice VALUES (9648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693471060);
INSERT INTO public.notice VALUES (9649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693471660);
INSERT INTO public.notice VALUES (9650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693472261);
INSERT INTO public.notice VALUES (9651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693472861);
INSERT INTO public.notice VALUES (9652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693473461);
INSERT INTO public.notice VALUES (9653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693474060);
INSERT INTO public.notice VALUES (9657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693476461);
INSERT INTO public.notice VALUES (9658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693477061);
INSERT INTO public.notice VALUES (9659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693477660);
INSERT INTO public.notice VALUES (9660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693478260);
INSERT INTO public.notice VALUES (9661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693478862);
INSERT INTO public.notice VALUES (9662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693479461);
INSERT INTO public.notice VALUES (9663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693480060);
INSERT INTO public.notice VALUES (9664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693480660);
INSERT INTO public.notice VALUES (9665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693481261);
INSERT INTO public.notice VALUES (9666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693481862);
INSERT INTO public.notice VALUES (9667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693482460);
INSERT INTO public.notice VALUES (9668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693483062);
INSERT INTO public.notice VALUES (9669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693483661);
INSERT INTO public.notice VALUES (9670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693484260);
INSERT INTO public.notice VALUES (9671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693484860);
INSERT INTO public.notice VALUES (9672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693485461);
INSERT INTO public.notice VALUES (9673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693486061);
INSERT INTO public.notice VALUES (9674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693486660);
INSERT INTO public.notice VALUES (9675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693487261);
INSERT INTO public.notice VALUES (9676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693487861);
INSERT INTO public.notice VALUES (9677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693488460);
INSERT INTO public.notice VALUES (9678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693489060);
INSERT INTO public.notice VALUES (9679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693489661);
INSERT INTO public.notice VALUES (9680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693490261);
INSERT INTO public.notice VALUES (9681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693490860);
INSERT INTO public.notice VALUES (9682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693491460);
INSERT INTO public.notice VALUES (9683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693492061);
INSERT INTO public.notice VALUES (9684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693492661);
INSERT INTO public.notice VALUES (9685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693493260);
INSERT INTO public.notice VALUES (9686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693493862);
INSERT INTO public.notice VALUES (9687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693494461);
INSERT INTO public.notice VALUES (9688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693495061);
INSERT INTO public.notice VALUES (9689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693495660);
INSERT INTO public.notice VALUES (9690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693496261);
INSERT INTO public.notice VALUES (9691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693496861);
INSERT INTO public.notice VALUES (9692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693497460);
INSERT INTO public.notice VALUES (9693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693498061);
INSERT INTO public.notice VALUES (9694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693498661);
INSERT INTO public.notice VALUES (9695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693499260);
INSERT INTO public.notice VALUES (9696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693499862);
INSERT INTO public.notice VALUES (9697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693500461);
INSERT INTO public.notice VALUES (9698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693501061);
INSERT INTO public.notice VALUES (9699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693501660);
INSERT INTO public.notice VALUES (9700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693502259);
INSERT INTO public.notice VALUES (9701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693502861);
INSERT INTO public.notice VALUES (9702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693503460);
INSERT INTO public.notice VALUES (9703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693504060);
INSERT INTO public.notice VALUES (9704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693504661);
INSERT INTO public.notice VALUES (9705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693505261);
INSERT INTO public.notice VALUES (9709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693507660);
INSERT INTO public.notice VALUES (9710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693508260);
INSERT INTO public.notice VALUES (9711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693508861);
INSERT INTO public.notice VALUES (10103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693744059);
INSERT INTO public.notice VALUES (10124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693756660);
INSERT INTO public.notice VALUES (10133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1693762071);
INSERT INTO public.notice VALUES (10140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693766261);
INSERT INTO public.notice VALUES (10141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693766861);
INSERT INTO public.notice VALUES (10153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693774060);
INSERT INTO public.notice VALUES (10156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693775860);
INSERT INTO public.notice VALUES (10157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693776460);
INSERT INTO public.notice VALUES (9706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693505860);
INSERT INTO public.notice VALUES (9707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693506460);
INSERT INTO public.notice VALUES (9708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693507061);
INSERT INTO public.notice VALUES (9712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693509461);
INSERT INTO public.notice VALUES (9713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693510060);
INSERT INTO public.notice VALUES (9714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693510660);
INSERT INTO public.notice VALUES (9715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693511261);
INSERT INTO public.notice VALUES (9716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693511861);
INSERT INTO public.notice VALUES (9717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693512460);
INSERT INTO public.notice VALUES (9718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693513061);
INSERT INTO public.notice VALUES (9719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693513661);
INSERT INTO public.notice VALUES (9720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693514260);
INSERT INTO public.notice VALUES (9721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693514860);
INSERT INTO public.notice VALUES (9722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693515461);
INSERT INTO public.notice VALUES (9723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693516061);
INSERT INTO public.notice VALUES (9724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693516660);
INSERT INTO public.notice VALUES (9725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693517260);
INSERT INTO public.notice VALUES (9731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693520860);
INSERT INTO public.notice VALUES (9732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693521460);
INSERT INTO public.notice VALUES (9743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693528060);
INSERT INTO public.notice VALUES (9744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693528661);
INSERT INTO public.notice VALUES (9745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693529261);
INSERT INTO public.notice VALUES (9746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693529860);
INSERT INTO public.notice VALUES (9747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693530459);
INSERT INTO public.notice VALUES (9748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693531061);
INSERT INTO public.notice VALUES (9779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693549660);
INSERT INTO public.notice VALUES (9781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693550861);
INSERT INTO public.notice VALUES (10105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693745260);
INSERT INTO public.notice VALUES (10106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693745860);
INSERT INTO public.notice VALUES (10107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693746461);
INSERT INTO public.notice VALUES (9726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693517861);
INSERT INTO public.notice VALUES (9727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693518461);
INSERT INTO public.notice VALUES (9728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693519060);
INSERT INTO public.notice VALUES (9729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693519661);
INSERT INTO public.notice VALUES (9730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693520261);
INSERT INTO public.notice VALUES (9733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693522061);
INSERT INTO public.notice VALUES (9734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693522661);
INSERT INTO public.notice VALUES (9735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693523260);
INSERT INTO public.notice VALUES (9736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693523860);
INSERT INTO public.notice VALUES (9737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693524461);
INSERT INTO public.notice VALUES (9738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693525060);
INSERT INTO public.notice VALUES (9739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693525660);
INSERT INTO public.notice VALUES (9740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693526261);
INSERT INTO public.notice VALUES (9741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693526861);
INSERT INTO public.notice VALUES (9742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693527460);
INSERT INTO public.notice VALUES (9749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693531660);
INSERT INTO public.notice VALUES (9750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693532260);
INSERT INTO public.notice VALUES (9751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693532861);
INSERT INTO public.notice VALUES (9752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693533461);
INSERT INTO public.notice VALUES (9753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693534060);
INSERT INTO public.notice VALUES (9754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693534660);
INSERT INTO public.notice VALUES (9755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693535261);
INSERT INTO public.notice VALUES (9756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693535860);
INSERT INTO public.notice VALUES (9757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693536460);
INSERT INTO public.notice VALUES (9758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693537061);
INSERT INTO public.notice VALUES (9759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693537661);
INSERT INTO public.notice VALUES (9760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693538260);
INSERT INTO public.notice VALUES (9761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693538860);
INSERT INTO public.notice VALUES (9762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693539461);
INSERT INTO public.notice VALUES (9763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693540060);
INSERT INTO public.notice VALUES (9764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693540660);
INSERT INTO public.notice VALUES (9765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693541265);
INSERT INTO public.notice VALUES (9766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693541861);
INSERT INTO public.notice VALUES (9767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693542460);
INSERT INTO public.notice VALUES (9768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693543060);
INSERT INTO public.notice VALUES (9769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693543662);
INSERT INTO public.notice VALUES (9770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693544261);
INSERT INTO public.notice VALUES (9771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693544861);
INSERT INTO public.notice VALUES (9772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693545460);
INSERT INTO public.notice VALUES (9773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693546061);
INSERT INTO public.notice VALUES (9774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693546660);
INSERT INTO public.notice VALUES (9775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693547260);
INSERT INTO public.notice VALUES (9776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693547861);
INSERT INTO public.notice VALUES (9777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693548461);
INSERT INTO public.notice VALUES (9778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693549060);
INSERT INTO public.notice VALUES (9780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693550261);
INSERT INTO public.notice VALUES (9782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693551460);
INSERT INTO public.notice VALUES (9783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693552059);
INSERT INTO public.notice VALUES (9784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693552661);
INSERT INTO public.notice VALUES (9785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693553260);
INSERT INTO public.notice VALUES (9786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693553860);
INSERT INTO public.notice VALUES (9787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693554461);
INSERT INTO public.notice VALUES (9788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693555061);
INSERT INTO public.notice VALUES (9789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693555660);
INSERT INTO public.notice VALUES (9790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693556259);
INSERT INTO public.notice VALUES (9791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693556861);
INSERT INTO public.notice VALUES (9792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693557460);
INSERT INTO public.notice VALUES (9793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693558060);
INSERT INTO public.notice VALUES (9794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693558661);
INSERT INTO public.notice VALUES (9795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693559261);
INSERT INTO public.notice VALUES (9796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693559860);
INSERT INTO public.notice VALUES (9797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693560460);
INSERT INTO public.notice VALUES (9798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693561062);
INSERT INTO public.notice VALUES (9799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693561661);
INSERT INTO public.notice VALUES (9800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693562260);
INSERT INTO public.notice VALUES (9801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693562859);
INSERT INTO public.notice VALUES (9802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693563461);
INSERT INTO public.notice VALUES (9803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693564061);
INSERT INTO public.notice VALUES (9804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693564660);
INSERT INTO public.notice VALUES (9805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693565261);
INSERT INTO public.notice VALUES (9806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693565861);
INSERT INTO public.notice VALUES (9807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693566460);
INSERT INTO public.notice VALUES (9808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693567060);
INSERT INTO public.notice VALUES (9809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693567661);
INSERT INTO public.notice VALUES (9824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693576660);
INSERT INTO public.notice VALUES (9810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693568260);
INSERT INTO public.notice VALUES (9811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693568860);
INSERT INTO public.notice VALUES (9812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693569461);
INSERT INTO public.notice VALUES (9813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693570061);
INSERT INTO public.notice VALUES (9814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693570660);
INSERT INTO public.notice VALUES (9815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693571259);
INSERT INTO public.notice VALUES (9816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693571861);
INSERT INTO public.notice VALUES (9817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693572460);
INSERT INTO public.notice VALUES (9818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693573060);
INSERT INTO public.notice VALUES (9819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693573662);
INSERT INTO public.notice VALUES (9820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693574261);
INSERT INTO public.notice VALUES (9821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693574860);
INSERT INTO public.notice VALUES (9822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693575460);
INSERT INTO public.notice VALUES (9823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693576061);
INSERT INTO public.notice VALUES (9832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693581460);
INSERT INTO public.notice VALUES (9825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693577260);
INSERT INTO public.notice VALUES (9826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693577862);
INSERT INTO public.notice VALUES (9827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693578462);
INSERT INTO public.notice VALUES (9828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693579061);
INSERT INTO public.notice VALUES (9829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693579660);
INSERT INTO public.notice VALUES (9830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693580261);
INSERT INTO public.notice VALUES (9831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693580861);
INSERT INTO public.notice VALUES (10108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693747061);
INSERT INTO public.notice VALUES (10109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693747660);
INSERT INTO public.notice VALUES (10198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693801061);
INSERT INTO public.notice VALUES (10199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693801660);
INSERT INTO public.notice VALUES (10200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693802260);
INSERT INTO public.notice VALUES (10201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693802861);
INSERT INTO public.notice VALUES (10202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693803461);
INSERT INTO public.notice VALUES (10203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693804060);
INSERT INTO public.notice VALUES (9833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693582060);
INSERT INTO public.notice VALUES (9834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693582661);
INSERT INTO public.notice VALUES (9835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693583260);
INSERT INTO public.notice VALUES (9836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693583860);
INSERT INTO public.notice VALUES (9837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693584461);
INSERT INTO public.notice VALUES (9838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693585061);
INSERT INTO public.notice VALUES (9839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693585660);
INSERT INTO public.notice VALUES (9840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693586259);
INSERT INTO public.notice VALUES (9841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693586861);
INSERT INTO public.notice VALUES (9842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693587460);
INSERT INTO public.notice VALUES (9843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693588060);
INSERT INTO public.notice VALUES (9844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693588661);
INSERT INTO public.notice VALUES (9845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693589261);
INSERT INTO public.notice VALUES (9846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693589860);
INSERT INTO public.notice VALUES (9847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693590460);
INSERT INTO public.notice VALUES (9848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693591061);
INSERT INTO public.notice VALUES (9849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693591661);
INSERT INTO public.notice VALUES (9850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693592260);
INSERT INTO public.notice VALUES (9851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693592860);
INSERT INTO public.notice VALUES (9852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693593461);
INSERT INTO public.notice VALUES (9853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693594060);
INSERT INTO public.notice VALUES (9854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693594660);
INSERT INTO public.notice VALUES (9855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693595261);
INSERT INTO public.notice VALUES (9856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693595861);
INSERT INTO public.notice VALUES (9869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693603661);
INSERT INTO public.notice VALUES (9870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693604261);
INSERT INTO public.notice VALUES (9871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693604860);
INSERT INTO public.notice VALUES (9873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693606061);
INSERT INTO public.notice VALUES (9874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693606661);
INSERT INTO public.notice VALUES (9875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693607260);
INSERT INTO public.notice VALUES (9857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693596460);
INSERT INTO public.notice VALUES (9858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693597060);
INSERT INTO public.notice VALUES (9859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693597661);
INSERT INTO public.notice VALUES (9860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693598261);
INSERT INTO public.notice VALUES (9861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693598860);
INSERT INTO public.notice VALUES (9862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693599461);
INSERT INTO public.notice VALUES (9863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693600061);
INSERT INTO public.notice VALUES (9864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693600660);
INSERT INTO public.notice VALUES (9865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693601260);
INSERT INTO public.notice VALUES (9866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693601861);
INSERT INTO public.notice VALUES (9867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693602460);
INSERT INTO public.notice VALUES (9868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693603060);
INSERT INTO public.notice VALUES (9872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693605460);
INSERT INTO public.notice VALUES (9876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693607860);
INSERT INTO public.notice VALUES (9877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693608461);
INSERT INTO public.notice VALUES (9878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693609061);
INSERT INTO public.notice VALUES (9879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693609660);
INSERT INTO public.notice VALUES (9880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693610261);
INSERT INTO public.notice VALUES (9881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693610861);
INSERT INTO public.notice VALUES (9882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693611460);
INSERT INTO public.notice VALUES (10110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693748261);
INSERT INTO public.notice VALUES (10111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693748861);
INSERT INTO public.notice VALUES (10112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693749461);
INSERT INTO public.notice VALUES (10113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693750060);
INSERT INTO public.notice VALUES (10114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693750659);
INSERT INTO public.notice VALUES (10115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693751261);
INSERT INTO public.notice VALUES (10116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693751862);
INSERT INTO public.notice VALUES (10117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693752460);
INSERT INTO public.notice VALUES (10118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693753062);
INSERT INTO public.notice VALUES (10119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693753661);
INSERT INTO public.notice VALUES (9883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693612060);
INSERT INTO public.notice VALUES (9884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693612661);
INSERT INTO public.notice VALUES (9885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693613261);
INSERT INTO public.notice VALUES (10120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693754260);
INSERT INTO public.notice VALUES (10204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693804660);
INSERT INTO public.notice VALUES (10205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693805261);
INSERT INTO public.notice VALUES (10206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693805860);
INSERT INTO public.notice VALUES (10207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693806460);
INSERT INTO public.notice VALUES (10208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693807059);
INSERT INTO public.notice VALUES (10209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693807661);
INSERT INTO public.notice VALUES (10210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693808260);
INSERT INTO public.notice VALUES (10211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693808860);
INSERT INTO public.notice VALUES (10245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693829261);
INSERT INTO public.notice VALUES (10246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693829860);
INSERT INTO public.notice VALUES (10247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693830460);
INSERT INTO public.notice VALUES (10249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693831661);
INSERT INTO public.notice VALUES (10251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693832860);
INSERT INTO public.notice VALUES (10252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693833461);
INSERT INTO public.notice VALUES (10265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693841261);
INSERT INTO public.notice VALUES (10266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693841862);
INSERT INTO public.notice VALUES (10267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693842461);
INSERT INTO public.notice VALUES (10268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693843060);
INSERT INTO public.notice VALUES (10269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693843660);
INSERT INTO public.notice VALUES (10271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693844861);
INSERT INTO public.notice VALUES (10288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693855061);
INSERT INTO public.notice VALUES (10289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693855661);
INSERT INTO public.notice VALUES (10290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693856260);
INSERT INTO public.notice VALUES (10291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693856859);
INSERT INTO public.notice VALUES (10292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693857461);
INSERT INTO public.notice VALUES (10293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693858060);
INSERT INTO public.notice VALUES (10250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693832261);
INSERT INTO public.notice VALUES (10253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693834061);
INSERT INTO public.notice VALUES (10254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693834660);
INSERT INTO public.notice VALUES (10255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693835262);
INSERT INTO public.notice VALUES (10256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693835861);
INSERT INTO public.notice VALUES (10257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693836460);
INSERT INTO public.notice VALUES (10258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693837060);
INSERT INTO public.notice VALUES (10259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693837662);
INSERT INTO public.notice VALUES (10260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693838261);
INSERT INTO public.notice VALUES (10261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693838861);
INSERT INTO public.notice VALUES (10262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693839461);
INSERT INTO public.notice VALUES (10263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693840061);
INSERT INTO public.notice VALUES (10264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693840661);
INSERT INTO public.notice VALUES (10270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1693844271);
INSERT INTO public.notice VALUES (10272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693845460);
INSERT INTO public.notice VALUES (10273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693846059);
INSERT INTO public.notice VALUES (10274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693846661);
INSERT INTO public.notice VALUES (10275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693847260);
INSERT INTO public.notice VALUES (10276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693847860);
INSERT INTO public.notice VALUES (10277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693848461);
INSERT INTO public.notice VALUES (10278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693849061);
INSERT INTO public.notice VALUES (10279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693849660);
INSERT INTO public.notice VALUES (10280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693850260);
INSERT INTO public.notice VALUES (10281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693850861);
INSERT INTO public.notice VALUES (10282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693851460);
INSERT INTO public.notice VALUES (10283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693852060);
INSERT INTO public.notice VALUES (10284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693852661);
INSERT INTO public.notice VALUES (10285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693853261);
INSERT INTO public.notice VALUES (10286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693853860);
INSERT INTO public.notice VALUES (10287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693854460);
INSERT INTO public.notice VALUES (10300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693862261);
INSERT INTO public.notice VALUES (10294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693858660);
INSERT INTO public.notice VALUES (10295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693859261);
INSERT INTO public.notice VALUES (10296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693859861);
INSERT INTO public.notice VALUES (10297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693860460);
INSERT INTO public.notice VALUES (10298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693861060);
INSERT INTO public.notice VALUES (10299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693861661);
INSERT INTO public.notice VALUES (13415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695731983);
INSERT INTO public.notice VALUES (13416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695732584);
INSERT INTO public.notice VALUES (13417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695733183);
INSERT INTO public.notice VALUES (13418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695733783);
INSERT INTO public.notice VALUES (13429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695740383);
INSERT INTO public.notice VALUES (13439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695746383);
INSERT INTO public.notice VALUES (13440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695746983);
INSERT INTO public.notice VALUES (13441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695747584);
INSERT INTO public.notice VALUES (13728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695919785);
INSERT INTO public.notice VALUES (10301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693862860);
INSERT INTO public.notice VALUES (10302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693863461);
INSERT INTO public.notice VALUES (10303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693864061);
INSERT INTO public.notice VALUES (10304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693864660);
INSERT INTO public.notice VALUES (10305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693865260);
INSERT INTO public.notice VALUES (10306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693865861);
INSERT INTO public.notice VALUES (10307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693866461);
INSERT INTO public.notice VALUES (10308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693867060);
INSERT INTO public.notice VALUES (10309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693867660);
INSERT INTO public.notice VALUES (10310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693868261);
INSERT INTO public.notice VALUES (10311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693868861);
INSERT INTO public.notice VALUES (10312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693869460);
INSERT INTO public.notice VALUES (10313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693870060);
INSERT INTO public.notice VALUES (10314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693870661);
INSERT INTO public.notice VALUES (10315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693871260);
INSERT INTO public.notice VALUES (10316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693871860);
INSERT INTO public.notice VALUES (10317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693872461);
INSERT INTO public.notice VALUES (10318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693873061);
INSERT INTO public.notice VALUES (10319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693873660);
INSERT INTO public.notice VALUES (10320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693874260);
INSERT INTO public.notice VALUES (10321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693874861);
INSERT INTO public.notice VALUES (10322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693875460);
INSERT INTO public.notice VALUES (10323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693876060);
INSERT INTO public.notice VALUES (10324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693876661);
INSERT INTO public.notice VALUES (10325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693877261);
INSERT INTO public.notice VALUES (10326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693877860);
INSERT INTO public.notice VALUES (10327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693878460);
INSERT INTO public.notice VALUES (10328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693879061);
INSERT INTO public.notice VALUES (10329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693879660);
INSERT INTO public.notice VALUES (10330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693880260);
INSERT INTO public.notice VALUES (10331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693880860);
INSERT INTO public.notice VALUES (10332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693881461);
INSERT INTO public.notice VALUES (10333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693882062);
INSERT INTO public.notice VALUES (10334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693882660);
INSERT INTO public.notice VALUES (10335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693883261);
INSERT INTO public.notice VALUES (10336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693883861);
INSERT INTO public.notice VALUES (10337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693884460);
INSERT INTO public.notice VALUES (10338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693885062);
INSERT INTO public.notice VALUES (10339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693885661);
INSERT INTO public.notice VALUES (10340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693886260);
INSERT INTO public.notice VALUES (10343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693888085);
INSERT INTO public.notice VALUES (10344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693888661);
INSERT INTO public.notice VALUES (10345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693889260);
INSERT INTO public.notice VALUES (10346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693889862);
INSERT INTO public.notice VALUES (10347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693890472);
INSERT INTO public.notice VALUES (10341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693886860);
INSERT INTO public.notice VALUES (10342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693887462);
INSERT INTO public.notice VALUES (10351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693892860);
INSERT INTO public.notice VALUES (10352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693893460);
INSERT INTO public.notice VALUES (10355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693895260);
INSERT INTO public.notice VALUES (10359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693897660);
INSERT INTO public.notice VALUES (13419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695734382);
INSERT INTO public.notice VALUES (13420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695734984);
INSERT INTO public.notice VALUES (13421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695735583);
INSERT INTO public.notice VALUES (13422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695736183);
INSERT INTO public.notice VALUES (13423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695736784);
INSERT INTO public.notice VALUES (13424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695737384);
INSERT INTO public.notice VALUES (13425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695737983);
INSERT INTO public.notice VALUES (13426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695738582);
INSERT INTO public.notice VALUES (13427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695739184);
INSERT INTO public.notice VALUES (10348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693891060);
INSERT INTO public.notice VALUES (10349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693891660);
INSERT INTO public.notice VALUES (10350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693892262);
INSERT INTO public.notice VALUES (10353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693894061);
INSERT INTO public.notice VALUES (10354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693894661);
INSERT INTO public.notice VALUES (10356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693895860);
INSERT INTO public.notice VALUES (10357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693896461);
INSERT INTO public.notice VALUES (10358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693897060);
INSERT INTO public.notice VALUES (10360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693898259);
INSERT INTO public.notice VALUES (10361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693898861);
INSERT INTO public.notice VALUES (10362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693899460);
INSERT INTO public.notice VALUES (10363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693900060);
INSERT INTO public.notice VALUES (10364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693900661);
INSERT INTO public.notice VALUES (10365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693901261);
INSERT INTO public.notice VALUES (10366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693901860);
INSERT INTO public.notice VALUES (10367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693902459);
INSERT INTO public.notice VALUES (10368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693903061);
INSERT INTO public.notice VALUES (10369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693903661);
INSERT INTO public.notice VALUES (10370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693904260);
INSERT INTO public.notice VALUES (10371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693904861);
INSERT INTO public.notice VALUES (10372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1693905471);
INSERT INTO public.notice VALUES (10373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693906060);
INSERT INTO public.notice VALUES (10374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693906663);
INSERT INTO public.notice VALUES (10375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693907261);
INSERT INTO public.notice VALUES (10376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693907860);
INSERT INTO public.notice VALUES (10390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693916261);
INSERT INTO public.notice VALUES (10391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693916860);
INSERT INTO public.notice VALUES (10392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693917459);
INSERT INTO public.notice VALUES (10393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693918062);
INSERT INTO public.notice VALUES (10394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693918660);
INSERT INTO public.notice VALUES (10395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693919260);
INSERT INTO public.notice VALUES (10377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693908460);
INSERT INTO public.notice VALUES (10378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693909061);
INSERT INTO public.notice VALUES (10379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693909661);
INSERT INTO public.notice VALUES (10380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693910260);
INSERT INTO public.notice VALUES (10381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693910860);
INSERT INTO public.notice VALUES (10382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693911461);
INSERT INTO public.notice VALUES (10383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693912060);
INSERT INTO public.notice VALUES (10384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693912661);
INSERT INTO public.notice VALUES (10385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693913262);
INSERT INTO public.notice VALUES (10386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693913861);
INSERT INTO public.notice VALUES (10387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693914460);
INSERT INTO public.notice VALUES (10388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693915060);
INSERT INTO public.notice VALUES (10389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693915661);
INSERT INTO public.notice VALUES (10396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693919861);
INSERT INTO public.notice VALUES (10397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693920461);
INSERT INTO public.notice VALUES (10398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693921060);
INSERT INTO public.notice VALUES (13428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695739783);
INSERT INTO public.notice VALUES (13430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695740984);
INSERT INTO public.notice VALUES (13431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695741584);
INSERT INTO public.notice VALUES (13432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695742183);
INSERT INTO public.notice VALUES (13433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695742783);
INSERT INTO public.notice VALUES (13434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695743384);
INSERT INTO public.notice VALUES (13729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695920384);
INSERT INTO public.notice VALUES (13868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696003785);
INSERT INTO public.notice VALUES (13869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696004383);
INSERT INTO public.notice VALUES (13870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696004983);
INSERT INTO public.notice VALUES (13871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696005585);
INSERT INTO public.notice VALUES (13872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696006184);
INSERT INTO public.notice VALUES (13916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696032584);
INSERT INTO public.notice VALUES (13917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696033183);
INSERT INTO public.notice VALUES (10399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693921660);
INSERT INTO public.notice VALUES (10400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693922261);
INSERT INTO public.notice VALUES (10401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693922861);
INSERT INTO public.notice VALUES (10402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693923460);
INSERT INTO public.notice VALUES (10403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693924062);
INSERT INTO public.notice VALUES (10404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693924661);
INSERT INTO public.notice VALUES (10405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693925261);
INSERT INTO public.notice VALUES (10406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693925860);
INSERT INTO public.notice VALUES (10407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693926461);
INSERT INTO public.notice VALUES (10408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693927061);
INSERT INTO public.notice VALUES (10409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693927660);
INSERT INTO public.notice VALUES (10410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693928262);
INSERT INTO public.notice VALUES (10411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693928861);
INSERT INTO public.notice VALUES (10412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693929461);
INSERT INTO public.notice VALUES (10413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693930060);
INSERT INTO public.notice VALUES (10414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693930661);
INSERT INTO public.notice VALUES (10432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693941461);
INSERT INTO public.notice VALUES (10441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693946861);
INSERT INTO public.notice VALUES (10442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693947460);
INSERT INTO public.notice VALUES (13435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695743984);
INSERT INTO public.notice VALUES (13436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695744583);
INSERT INTO public.notice VALUES (13437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695745182);
INSERT INTO public.notice VALUES (13730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695920983);
INSERT INTO public.notice VALUES (13731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695921586);
INSERT INTO public.notice VALUES (13732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695922184);
INSERT INTO public.notice VALUES (13733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695922784);
INSERT INTO public.notice VALUES (13734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695923384);
INSERT INTO public.notice VALUES (13735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695923984);
INSERT INTO public.notice VALUES (13736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695924584);
INSERT INTO public.notice VALUES (13737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695925184);
INSERT INTO public.notice VALUES (10415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693931261);
INSERT INTO public.notice VALUES (10416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693931860);
INSERT INTO public.notice VALUES (10417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693932460);
INSERT INTO public.notice VALUES (10418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693933061);
INSERT INTO public.notice VALUES (10419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693933661);
INSERT INTO public.notice VALUES (10420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693934260);
INSERT INTO public.notice VALUES (10421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693934859);
INSERT INTO public.notice VALUES (10422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693935461);
INSERT INTO public.notice VALUES (10423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693936060);
INSERT INTO public.notice VALUES (10424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693936660);
INSERT INTO public.notice VALUES (10425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693937261);
INSERT INTO public.notice VALUES (10426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693937861);
INSERT INTO public.notice VALUES (10427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693938460);
INSERT INTO public.notice VALUES (10428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693939059);
INSERT INTO public.notice VALUES (10429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693939661);
INSERT INTO public.notice VALUES (10430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693940261);
INSERT INTO public.notice VALUES (10431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693940860);
INSERT INTO public.notice VALUES (10433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693942061);
INSERT INTO public.notice VALUES (10434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693942660);
INSERT INTO public.notice VALUES (10435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693943260);
INSERT INTO public.notice VALUES (10436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693943861);
INSERT INTO public.notice VALUES (10437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693944460);
INSERT INTO public.notice VALUES (10438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693945060);
INSERT INTO public.notice VALUES (10439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693945661);
INSERT INTO public.notice VALUES (10440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693946261);
INSERT INTO public.notice VALUES (10443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693948061);
INSERT INTO public.notice VALUES (10444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693948661);
INSERT INTO public.notice VALUES (10445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693949260);
INSERT INTO public.notice VALUES (10446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693949862);
INSERT INTO public.notice VALUES (10447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693950461);
INSERT INTO public.notice VALUES (10448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693951060);
INSERT INTO public.notice VALUES (10458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693957061);
INSERT INTO public.notice VALUES (10459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693957660);
INSERT INTO public.notice VALUES (13438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695745785);
INSERT INTO public.notice VALUES (13468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695763783);
INSERT INTO public.notice VALUES (13739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695926384);
INSERT INTO public.notice VALUES (13740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695926985);
INSERT INTO public.notice VALUES (13741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695927583);
INSERT INTO public.notice VALUES (13742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695928185);
INSERT INTO public.notice VALUES (13873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696006784);
INSERT INTO public.notice VALUES (13918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696033785);
INSERT INTO public.notice VALUES (13919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696034384);
INSERT INTO public.notice VALUES (13920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696034983);
INSERT INTO public.notice VALUES (13923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696036783);
INSERT INTO public.notice VALUES (13924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696037384);
INSERT INTO public.notice VALUES (10449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693951660);
INSERT INTO public.notice VALUES (10450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693952261);
INSERT INTO public.notice VALUES (10451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693952861);
INSERT INTO public.notice VALUES (10452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693953460);
INSERT INTO public.notice VALUES (10453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693954060);
INSERT INTO public.notice VALUES (10454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693954661);
INSERT INTO public.notice VALUES (10455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693955260);
INSERT INTO public.notice VALUES (10456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693955860);
INSERT INTO public.notice VALUES (10457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693956460);
INSERT INTO public.notice VALUES (10460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693958260);
INSERT INTO public.notice VALUES (10461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693958861);
INSERT INTO public.notice VALUES (10462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693959461);
INSERT INTO public.notice VALUES (10463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693960060);
INSERT INTO public.notice VALUES (10464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693960660);
INSERT INTO public.notice VALUES (10465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693961261);
INSERT INTO public.notice VALUES (10466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693961860);
INSERT INTO public.notice VALUES (10467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693962460);
INSERT INTO public.notice VALUES (10473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693966061);
INSERT INTO public.notice VALUES (10474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693966660);
INSERT INTO public.notice VALUES (10475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693967259);
INSERT INTO public.notice VALUES (10476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693967861);
INSERT INTO public.notice VALUES (10477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693968460);
INSERT INTO public.notice VALUES (10478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693969061);
INSERT INTO public.notice VALUES (10479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693969661);
INSERT INTO public.notice VALUES (10480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693970261);
INSERT INTO public.notice VALUES (10499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693981660);
INSERT INTO public.notice VALUES (10500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693982260);
INSERT INTO public.notice VALUES (13442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695748184);
INSERT INTO public.notice VALUES (13443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695748783);
INSERT INTO public.notice VALUES (13743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695928783);
INSERT INTO public.notice VALUES (10468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693963061);
INSERT INTO public.notice VALUES (10469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693963661);
INSERT INTO public.notice VALUES (10470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693964260);
INSERT INTO public.notice VALUES (10471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693964860);
INSERT INTO public.notice VALUES (10472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693965461);
INSERT INTO public.notice VALUES (10481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693970860);
INSERT INTO public.notice VALUES (10482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693971461);
INSERT INTO public.notice VALUES (10483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693972061);
INSERT INTO public.notice VALUES (10484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693972660);
INSERT INTO public.notice VALUES (10485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693973260);
INSERT INTO public.notice VALUES (10486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693973859);
INSERT INTO public.notice VALUES (10487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693974461);
INSERT INTO public.notice VALUES (10488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693975060);
INSERT INTO public.notice VALUES (10489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693975660);
INSERT INTO public.notice VALUES (10490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693976261);
INSERT INTO public.notice VALUES (10491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693976861);
INSERT INTO public.notice VALUES (10492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693977460);
INSERT INTO public.notice VALUES (10493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693978060);
INSERT INTO public.notice VALUES (10494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693978661);
INSERT INTO public.notice VALUES (10495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693979261);
INSERT INTO public.notice VALUES (10496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693979860);
INSERT INTO public.notice VALUES (10497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693980461);
INSERT INTO public.notice VALUES (10498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693981061);
INSERT INTO public.notice VALUES (10501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693982861);
INSERT INTO public.notice VALUES (10502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693983461);
INSERT INTO public.notice VALUES (10503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693984060);
INSERT INTO public.notice VALUES (10504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693984659);
INSERT INTO public.notice VALUES (10505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693985261);
INSERT INTO public.notice VALUES (10506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693985860);
INSERT INTO public.notice VALUES (10507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693986460);
INSERT INTO public.notice VALUES (10508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693987061);
INSERT INTO public.notice VALUES (10509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693987661);
INSERT INTO public.notice VALUES (10510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693988260);
INSERT INTO public.notice VALUES (10512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693989461);
INSERT INTO public.notice VALUES (10513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693990061);
INSERT INTO public.notice VALUES (13444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695749383);
INSERT INTO public.notice VALUES (13445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695749984);
INSERT INTO public.notice VALUES (13446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695750585);
INSERT INTO public.notice VALUES (13447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695751183);
INSERT INTO public.notice VALUES (13744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695929384);
INSERT INTO public.notice VALUES (13745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695929982);
INSERT INTO public.notice VALUES (13874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696007383);
INSERT INTO public.notice VALUES (13875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696007984);
INSERT INTO public.notice VALUES (13876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696008585);
INSERT INTO public.notice VALUES (13877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696009184);
INSERT INTO public.notice VALUES (10511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693988860);
INSERT INTO public.notice VALUES (10514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693990660);
INSERT INTO public.notice VALUES (10515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693991261);
INSERT INTO public.notice VALUES (10516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693991861);
INSERT INTO public.notice VALUES (10517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693992462);
INSERT INTO public.notice VALUES (10518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693993060);
INSERT INTO public.notice VALUES (10519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693993661);
INSERT INTO public.notice VALUES (10520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693994261);
INSERT INTO public.notice VALUES (10521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693994860);
INSERT INTO public.notice VALUES (10522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693995462);
INSERT INTO public.notice VALUES (10523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693996061);
INSERT INTO public.notice VALUES (10524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693996661);
INSERT INTO public.notice VALUES (10525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693997261);
INSERT INTO public.notice VALUES (10526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693997861);
INSERT INTO public.notice VALUES (10527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693998461);
INSERT INTO public.notice VALUES (10528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693999062);
INSERT INTO public.notice VALUES (10531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694000860);
INSERT INTO public.notice VALUES (13448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695751784);
INSERT INTO public.notice VALUES (13449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695752384);
INSERT INTO public.notice VALUES (13450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695752983);
INSERT INTO public.notice VALUES (13451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695753583);
INSERT INTO public.notice VALUES (13746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695930584);
INSERT INTO public.notice VALUES (13747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695931184);
INSERT INTO public.notice VALUES (13748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695931783);
INSERT INTO public.notice VALUES (13749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695932384);
INSERT INTO public.notice VALUES (13750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695932984);
INSERT INTO public.notice VALUES (13751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695933584);
INSERT INTO public.notice VALUES (13752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695934183);
INSERT INTO public.notice VALUES (13779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695950384);
INSERT INTO public.notice VALUES (13780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695950984);
INSERT INTO public.notice VALUES (10529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1693999660);
INSERT INTO public.notice VALUES (10530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694000261);
INSERT INTO public.notice VALUES (10532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694001460);
INSERT INTO public.notice VALUES (10533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694002061);
INSERT INTO public.notice VALUES (10534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694002661);
INSERT INTO public.notice VALUES (10535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694003260);
INSERT INTO public.notice VALUES (10536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694003860);
INSERT INTO public.notice VALUES (10537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694004461);
INSERT INTO public.notice VALUES (10538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694005061);
INSERT INTO public.notice VALUES (10539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694005660);
INSERT INTO public.notice VALUES (10540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694006260);
INSERT INTO public.notice VALUES (10541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694006861);
INSERT INTO public.notice VALUES (10542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694007461);
INSERT INTO public.notice VALUES (10543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694008060);
INSERT INTO public.notice VALUES (10544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694008659);
INSERT INTO public.notice VALUES (10545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694009261);
INSERT INTO public.notice VALUES (13452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695754184);
INSERT INTO public.notice VALUES (13453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695754784);
INSERT INTO public.notice VALUES (13454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695755383);
INSERT INTO public.notice VALUES (13455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695755983);
INSERT INTO public.notice VALUES (13456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695756584);
INSERT INTO public.notice VALUES (13457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695757183);
INSERT INTO public.notice VALUES (13458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695757783);
INSERT INTO public.notice VALUES (13459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695758384);
INSERT INTO public.notice VALUES (13460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695758984);
INSERT INTO public.notice VALUES (13461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695759583);
INSERT INTO public.notice VALUES (13462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695760183);
INSERT INTO public.notice VALUES (13463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695760784);
INSERT INTO public.notice VALUES (13753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695934786);
INSERT INTO public.notice VALUES (13754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695935385);
INSERT INTO public.notice VALUES (10546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694009861);
INSERT INTO public.notice VALUES (10547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694010460);
INSERT INTO public.notice VALUES (10548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694011062);
INSERT INTO public.notice VALUES (10549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694011661);
INSERT INTO public.notice VALUES (10550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694012260);
INSERT INTO public.notice VALUES (10551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694012860);
INSERT INTO public.notice VALUES (10552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694013461);
INSERT INTO public.notice VALUES (10553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694014061);
INSERT INTO public.notice VALUES (10554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694014660);
INSERT INTO public.notice VALUES (10555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694015262);
INSERT INTO public.notice VALUES (10556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694015861);
INSERT INTO public.notice VALUES (10557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694016461);
INSERT INTO public.notice VALUES (10558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694017060);
INSERT INTO public.notice VALUES (10559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694017662);
INSERT INTO public.notice VALUES (10560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694018261);
INSERT INTO public.notice VALUES (10561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694018860);
INSERT INTO public.notice VALUES (10562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694019460);
INSERT INTO public.notice VALUES (10563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694020061);
INSERT INTO public.notice VALUES (10564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694020661);
INSERT INTO public.notice VALUES (10565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694021260);
INSERT INTO public.notice VALUES (10566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694021861);
INSERT INTO public.notice VALUES (10567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694022461);
INSERT INTO public.notice VALUES (10568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694023060);
INSERT INTO public.notice VALUES (10569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694023660);
INSERT INTO public.notice VALUES (10570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694024261);
INSERT INTO public.notice VALUES (10571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694024861);
INSERT INTO public.notice VALUES (10572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694025460);
INSERT INTO public.notice VALUES (10573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694026060);
INSERT INTO public.notice VALUES (10574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694026661);
INSERT INTO public.notice VALUES (10575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694027261);
INSERT INTO public.notice VALUES (10576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694027860);
INSERT INTO public.notice VALUES (10577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694028460);
INSERT INTO public.notice VALUES (10578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694029061);
INSERT INTO public.notice VALUES (10579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694029661);
INSERT INTO public.notice VALUES (10580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694030260);
INSERT INTO public.notice VALUES (10581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694030861);
INSERT INTO public.notice VALUES (10582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694031461);
INSERT INTO public.notice VALUES (10583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694032060);
INSERT INTO public.notice VALUES (10584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694032660);
INSERT INTO public.notice VALUES (10585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694033262);
INSERT INTO public.notice VALUES (10586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694033861);
INSERT INTO public.notice VALUES (10587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694034460);
INSERT INTO public.notice VALUES (10588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694035060);
INSERT INTO public.notice VALUES (10589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694035662);
INSERT INTO public.notice VALUES (10590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694036260);
INSERT INTO public.notice VALUES (10591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694036860);
INSERT INTO public.notice VALUES (10592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694037460);
INSERT INTO public.notice VALUES (10593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694038061);
INSERT INTO public.notice VALUES (10594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694038660);
INSERT INTO public.notice VALUES (10595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694039260);
INSERT INTO public.notice VALUES (10596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694039861);
INSERT INTO public.notice VALUES (10597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694040461);
INSERT INTO public.notice VALUES (10598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694041060);
INSERT INTO public.notice VALUES (10599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694041660);
INSERT INTO public.notice VALUES (10600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694042261);
INSERT INTO public.notice VALUES (10601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694042861);
INSERT INTO public.notice VALUES (10602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694043460);
INSERT INTO public.notice VALUES (10603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694044062);
INSERT INTO public.notice VALUES (10604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694044661);
INSERT INTO public.notice VALUES (10605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694045260);
INSERT INTO public.notice VALUES (10606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694045860);
INSERT INTO public.notice VALUES (10609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694047660);
INSERT INTO public.notice VALUES (10610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694048260);
INSERT INTO public.notice VALUES (10611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694048861);
INSERT INTO public.notice VALUES (10612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694049460);
INSERT INTO public.notice VALUES (10613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694050060);
INSERT INTO public.notice VALUES (10614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694050661);
INSERT INTO public.notice VALUES (10615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694051261);
INSERT INTO public.notice VALUES (10616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694051860);
INSERT INTO public.notice VALUES (10617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694052460);
INSERT INTO public.notice VALUES (10618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694053061);
INSERT INTO public.notice VALUES (10619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694053661);
INSERT INTO public.notice VALUES (10631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694060861);
INSERT INTO public.notice VALUES (10632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694061460);
INSERT INTO public.notice VALUES (10642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694067460);
INSERT INTO public.notice VALUES (10607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694046461);
INSERT INTO public.notice VALUES (10608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694047061);
INSERT INTO public.notice VALUES (10620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694054260);
INSERT INTO public.notice VALUES (10621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694054860);
INSERT INTO public.notice VALUES (10622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694055461);
INSERT INTO public.notice VALUES (10623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694056061);
INSERT INTO public.notice VALUES (10624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694056660);
INSERT INTO public.notice VALUES (10625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694057261);
INSERT INTO public.notice VALUES (10626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694057861);
INSERT INTO public.notice VALUES (10627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694058460);
INSERT INTO public.notice VALUES (10628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694059060);
INSERT INTO public.notice VALUES (10629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694059661);
INSERT INTO public.notice VALUES (10630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694060261);
INSERT INTO public.notice VALUES (10633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694062061);
INSERT INTO public.notice VALUES (10634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694062661);
INSERT INTO public.notice VALUES (10635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694063260);
INSERT INTO public.notice VALUES (10636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694063861);
INSERT INTO public.notice VALUES (10637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694064461);
INSERT INTO public.notice VALUES (10638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694065060);
INSERT INTO public.notice VALUES (10639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694065662);
INSERT INTO public.notice VALUES (10640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694066261);
INSERT INTO public.notice VALUES (10641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694066861);
INSERT INTO public.notice VALUES (13464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695761383);
INSERT INTO public.notice VALUES (13465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695761983);
INSERT INTO public.notice VALUES (13466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695762582);
INSERT INTO public.notice VALUES (13467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695763184);
INSERT INTO public.notice VALUES (13487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695775183);
INSERT INTO public.notice VALUES (13488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695775783);
INSERT INTO public.notice VALUES (13489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695776384);
INSERT INTO public.notice VALUES (13490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695776984);
INSERT INTO public.notice VALUES (10643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694068059);
INSERT INTO public.notice VALUES (10644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694068661);
INSERT INTO public.notice VALUES (10645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694069260);
INSERT INTO public.notice VALUES (10646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694069860);
INSERT INTO public.notice VALUES (10647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694070461);
INSERT INTO public.notice VALUES (10648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694071061);
INSERT INTO public.notice VALUES (10649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694071660);
INSERT INTO public.notice VALUES (10650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694072259);
INSERT INTO public.notice VALUES (10651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694072861);
INSERT INTO public.notice VALUES (10652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694073460);
INSERT INTO public.notice VALUES (10653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694074060);
INSERT INTO public.notice VALUES (10654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694074661);
INSERT INTO public.notice VALUES (10655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694075261);
INSERT INTO public.notice VALUES (10656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694075860);
INSERT INTO public.notice VALUES (10657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694076460);
INSERT INTO public.notice VALUES (10658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694077061);
INSERT INTO public.notice VALUES (10659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694077660);
INSERT INTO public.notice VALUES (10660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694078260);
INSERT INTO public.notice VALUES (10661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694078859);
INSERT INTO public.notice VALUES (10662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694079463);
INSERT INTO public.notice VALUES (10663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694080060);
INSERT INTO public.notice VALUES (10664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694080660);
INSERT INTO public.notice VALUES (10665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694081261);
INSERT INTO public.notice VALUES (10666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694081861);
INSERT INTO public.notice VALUES (10667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694082460);
INSERT INTO public.notice VALUES (10668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694083060);
INSERT INTO public.notice VALUES (10669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694083662);
INSERT INTO public.notice VALUES (10670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694084261);
INSERT INTO public.notice VALUES (10671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694084860);
INSERT INTO public.notice VALUES (10672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694085463);
INSERT INTO public.notice VALUES (10673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694086061);
INSERT INTO public.notice VALUES (10674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694086660);
INSERT INTO public.notice VALUES (10675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694087260);
INSERT INTO public.notice VALUES (10676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694087861);
INSERT INTO public.notice VALUES (10677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694088461);
INSERT INTO public.notice VALUES (10678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694089060);
INSERT INTO public.notice VALUES (10679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694089660);
INSERT INTO public.notice VALUES (10680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694090261);
INSERT INTO public.notice VALUES (10681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694090860);
INSERT INTO public.notice VALUES (10682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694091460);
INSERT INTO public.notice VALUES (10683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694092061);
INSERT INTO public.notice VALUES (10684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694092661);
INSERT INTO public.notice VALUES (10685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694093260);
INSERT INTO public.notice VALUES (10686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694093860);
INSERT INTO public.notice VALUES (10687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694094461);
INSERT INTO public.notice VALUES (10688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694095060);
INSERT INTO public.notice VALUES (10689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694095660);
INSERT INTO public.notice VALUES (10690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694096262);
INSERT INTO public.notice VALUES (10691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694096861);
INSERT INTO public.notice VALUES (10692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694097460);
INSERT INTO public.notice VALUES (10693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694098060);
INSERT INTO public.notice VALUES (10694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694098661);
INSERT INTO public.notice VALUES (10695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694099261);
INSERT INTO public.notice VALUES (10696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694099860);
INSERT INTO public.notice VALUES (10697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694100460);
INSERT INTO public.notice VALUES (10699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694101661);
INSERT INTO public.notice VALUES (10700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694102260);
INSERT INTO public.notice VALUES (13469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695764383);
INSERT INTO public.notice VALUES (13755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695935984);
INSERT INTO public.notice VALUES (13756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695936585);
INSERT INTO public.notice VALUES (10698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694101061);
INSERT INTO public.notice VALUES (10701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694102862);
INSERT INTO public.notice VALUES (10702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694103461);
INSERT INTO public.notice VALUES (10703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694104060);
INSERT INTO public.notice VALUES (10704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694104660);
INSERT INTO public.notice VALUES (10705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694105261);
INSERT INTO public.notice VALUES (10706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694105861);
INSERT INTO public.notice VALUES (10707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694106460);
INSERT INTO public.notice VALUES (10708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694107060);
INSERT INTO public.notice VALUES (10709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694107661);
INSERT INTO public.notice VALUES (10710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694108261);
INSERT INTO public.notice VALUES (10711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694108860);
INSERT INTO public.notice VALUES (10712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694109461);
INSERT INTO public.notice VALUES (10713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694110061);
INSERT INTO public.notice VALUES (10714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694110660);
INSERT INTO public.notice VALUES (10715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694111259);
INSERT INTO public.notice VALUES (10716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694111861);
INSERT INTO public.notice VALUES (10717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694112461);
INSERT INTO public.notice VALUES (10718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694113060);
INSERT INTO public.notice VALUES (10719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694113661);
INSERT INTO public.notice VALUES (10720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694114261);
INSERT INTO public.notice VALUES (10721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694114860);
INSERT INTO public.notice VALUES (10722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694115460);
INSERT INTO public.notice VALUES (10723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694116061);
INSERT INTO public.notice VALUES (10724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694116661);
INSERT INTO public.notice VALUES (10725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694117260);
INSERT INTO public.notice VALUES (10726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694117861);
INSERT INTO public.notice VALUES (10727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694118461);
INSERT INTO public.notice VALUES (10728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694119060);
INSERT INTO public.notice VALUES (10729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694119660);
INSERT INTO public.notice VALUES (10730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694120261);
INSERT INTO public.notice VALUES (10731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694120861);
INSERT INTO public.notice VALUES (10732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694121460);
INSERT INTO public.notice VALUES (10733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694122060);
INSERT INTO public.notice VALUES (10734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694122661);
INSERT INTO public.notice VALUES (10735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694123260);
INSERT INTO public.notice VALUES (10736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694123860);
INSERT INTO public.notice VALUES (13470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695764983);
INSERT INTO public.notice VALUES (13471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695765585);
INSERT INTO public.notice VALUES (13472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695766183);
INSERT INTO public.notice VALUES (13473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695766798);
INSERT INTO public.notice VALUES (13474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695767384);
INSERT INTO public.notice VALUES (13475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695767984);
INSERT INTO public.notice VALUES (13476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695768583);
INSERT INTO public.notice VALUES (13477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695769183);
INSERT INTO public.notice VALUES (10737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694124461);
INSERT INTO public.notice VALUES (10738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694125061);
INSERT INTO public.notice VALUES (10739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694125660);
INSERT INTO public.notice VALUES (10740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694126260);
INSERT INTO public.notice VALUES (10741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694126861);
INSERT INTO public.notice VALUES (10742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694127461);
INSERT INTO public.notice VALUES (10743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694128060);
INSERT INTO public.notice VALUES (10744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694128662);
INSERT INTO public.notice VALUES (10745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694129261);
INSERT INTO public.notice VALUES (10746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694129860);
INSERT INTO public.notice VALUES (10747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694130460);
INSERT INTO public.notice VALUES (10748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694131061);
INSERT INTO public.notice VALUES (10749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694131661);
INSERT INTO public.notice VALUES (10750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694132260);
INSERT INTO public.notice VALUES (10751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694132860);
INSERT INTO public.notice VALUES (10752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694133461);
INSERT INTO public.notice VALUES (10753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694134061);
INSERT INTO public.notice VALUES (10754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694134660);
INSERT INTO public.notice VALUES (10755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694135260);
INSERT INTO public.notice VALUES (10757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694136460);
INSERT INTO public.notice VALUES (10758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694137060);
INSERT INTO public.notice VALUES (10759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694137659);
INSERT INTO public.notice VALUES (10760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694138261);
INSERT INTO public.notice VALUES (10761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694138860);
INSERT INTO public.notice VALUES (10762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694139460);
INSERT INTO public.notice VALUES (10763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694140061);
INSERT INTO public.notice VALUES (10764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694140661);
INSERT INTO public.notice VALUES (10765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694141260);
INSERT INTO public.notice VALUES (10766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694141860);
INSERT INTO public.notice VALUES (10767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694142461);
INSERT INTO public.notice VALUES (10756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694135861);
INSERT INTO public.notice VALUES (10769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694143660);
INSERT INTO public.notice VALUES (13478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695769784);
INSERT INTO public.notice VALUES (13479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695770384);
INSERT INTO public.notice VALUES (13480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695770983);
INSERT INTO public.notice VALUES (13481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695771583);
INSERT INTO public.notice VALUES (13482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695772184);
INSERT INTO public.notice VALUES (13483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695772783);
INSERT INTO public.notice VALUES (13484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695773383);
INSERT INTO public.notice VALUES (13485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695773982);
INSERT INTO public.notice VALUES (13486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695774584);
INSERT INTO public.notice VALUES (13492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695778182);
INSERT INTO public.notice VALUES (13493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695778784);
INSERT INTO public.notice VALUES (13494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695779383);
INSERT INTO public.notice VALUES (13757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695937184);
INSERT INTO public.notice VALUES (10768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694143060);
INSERT INTO public.notice VALUES (10770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694144261);
INSERT INTO public.notice VALUES (10771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694144861);
INSERT INTO public.notice VALUES (10772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694145460);
INSERT INTO public.notice VALUES (10773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694146061);
INSERT INTO public.notice VALUES (10774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694146661);
INSERT INTO public.notice VALUES (10775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694147261);
INSERT INTO public.notice VALUES (10776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694147860);
INSERT INTO public.notice VALUES (10777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694148460);
INSERT INTO public.notice VALUES (10778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694149061);
INSERT INTO public.notice VALUES (10779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694149660);
INSERT INTO public.notice VALUES (10780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694150260);
INSERT INTO public.notice VALUES (10781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694150861);
INSERT INTO public.notice VALUES (10782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694151461);
INSERT INTO public.notice VALUES (10783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694152060);
INSERT INTO public.notice VALUES (10784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694152659);
INSERT INTO public.notice VALUES (10785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694153261);
INSERT INTO public.notice VALUES (10786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694153861);
INSERT INTO public.notice VALUES (10787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694154460);
INSERT INTO public.notice VALUES (10794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694158660);
INSERT INTO public.notice VALUES (10795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694159260);
INSERT INTO public.notice VALUES (10796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694159861);
INSERT INTO public.notice VALUES (10797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694160460);
INSERT INTO public.notice VALUES (10800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694162261);
INSERT INTO public.notice VALUES (10808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694167060);
INSERT INTO public.notice VALUES (13491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695777583);
INSERT INTO public.notice VALUES (13495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695779983);
INSERT INTO public.notice VALUES (13496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695780584);
INSERT INTO public.notice VALUES (13758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695937784);
INSERT INTO public.notice VALUES (13759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695938384);
INSERT INTO public.notice VALUES (10788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694155061);
INSERT INTO public.notice VALUES (10789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694155661);
INSERT INTO public.notice VALUES (10790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694156260);
INSERT INTO public.notice VALUES (10791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694156860);
INSERT INTO public.notice VALUES (10792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694157461);
INSERT INTO public.notice VALUES (10793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694158061);
INSERT INTO public.notice VALUES (10798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694161060);
INSERT INTO public.notice VALUES (10799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694161662);
INSERT INTO public.notice VALUES (10801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694162860);
INSERT INTO public.notice VALUES (10802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694163460);
INSERT INTO public.notice VALUES (10803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694164061);
INSERT INTO public.notice VALUES (10804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694164661);
INSERT INTO public.notice VALUES (10805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694165260);
INSERT INTO public.notice VALUES (10806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694165863);
INSERT INTO public.notice VALUES (10807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694166461);
INSERT INTO public.notice VALUES (10809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694167660);
INSERT INTO public.notice VALUES (10810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694168261);
INSERT INTO public.notice VALUES (10811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694168861);
INSERT INTO public.notice VALUES (10812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694169460);
INSERT INTO public.notice VALUES (10815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694171260);
INSERT INTO public.notice VALUES (10816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694171862);
INSERT INTO public.notice VALUES (10817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694172460);
INSERT INTO public.notice VALUES (10818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694173061);
INSERT INTO public.notice VALUES (10819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694173660);
INSERT INTO public.notice VALUES (10820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694174260);
INSERT INTO public.notice VALUES (10821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694174861);
INSERT INTO public.notice VALUES (10822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694175461);
INSERT INTO public.notice VALUES (10823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694176061);
INSERT INTO public.notice VALUES (10824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694176660);
INSERT INTO public.notice VALUES (10825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694177261);
INSERT INTO public.notice VALUES (10813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694170060);
INSERT INTO public.notice VALUES (10814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694170661);
INSERT INTO public.notice VALUES (10833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694182061);
INSERT INTO public.notice VALUES (10834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694182661);
INSERT INTO public.notice VALUES (10839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694185661);
INSERT INTO public.notice VALUES (10840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694186261);
INSERT INTO public.notice VALUES (10843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694188061);
INSERT INTO public.notice VALUES (10853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694194062);
INSERT INTO public.notice VALUES (10854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694194661);
INSERT INTO public.notice VALUES (10855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694195260);
INSERT INTO public.notice VALUES (10856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694195861);
INSERT INTO public.notice VALUES (10857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694196461);
INSERT INTO public.notice VALUES (13497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695781184);
INSERT INTO public.notice VALUES (13498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695781783);
INSERT INTO public.notice VALUES (13499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695782383);
INSERT INTO public.notice VALUES (10826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694177860);
INSERT INTO public.notice VALUES (10827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694178461);
INSERT INTO public.notice VALUES (10828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694179061);
INSERT INTO public.notice VALUES (10829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694179661);
INSERT INTO public.notice VALUES (10830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694180262);
INSERT INTO public.notice VALUES (10831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694180860);
INSERT INTO public.notice VALUES (10832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694181461);
INSERT INTO public.notice VALUES (10835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694183263);
INSERT INTO public.notice VALUES (10836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694183861);
INSERT INTO public.notice VALUES (10837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694184460);
INSERT INTO public.notice VALUES (10838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694185061);
INSERT INTO public.notice VALUES (10841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694186860);
INSERT INTO public.notice VALUES (10842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694187462);
INSERT INTO public.notice VALUES (10844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694188661);
INSERT INTO public.notice VALUES (10845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694189260);
INSERT INTO public.notice VALUES (10846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694189861);
INSERT INTO public.notice VALUES (10847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694190461);
INSERT INTO public.notice VALUES (10848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694191060);
INSERT INTO public.notice VALUES (10849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694191660);
INSERT INTO public.notice VALUES (10850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694192261);
INSERT INTO public.notice VALUES (10851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694192861);
INSERT INTO public.notice VALUES (10852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694193460);
INSERT INTO public.notice VALUES (10858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694197061);
INSERT INTO public.notice VALUES (10859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694197660);
INSERT INTO public.notice VALUES (10860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694198260);
INSERT INTO public.notice VALUES (10861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694198862);
INSERT INTO public.notice VALUES (10862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694199460);
INSERT INTO public.notice VALUES (10863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694200060);
INSERT INTO public.notice VALUES (10864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694200661);
INSERT INTO public.notice VALUES (10865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694201261);
INSERT INTO public.notice VALUES (10866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694201860);
INSERT INTO public.notice VALUES (10867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694202460);
INSERT INTO public.notice VALUES (10868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694203061);
INSERT INTO public.notice VALUES (10869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694203661);
INSERT INTO public.notice VALUES (10870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694204260);
INSERT INTO public.notice VALUES (10871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694204862);
INSERT INTO public.notice VALUES (10872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694205461);
INSERT INTO public.notice VALUES (10873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694206060);
INSERT INTO public.notice VALUES (10874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694206660);
INSERT INTO public.notice VALUES (10875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694207261);
INSERT INTO public.notice VALUES (10876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694207861);
INSERT INTO public.notice VALUES (10877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694208460);
INSERT INTO public.notice VALUES (10878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694209060);
INSERT INTO public.notice VALUES (10879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694209661);
INSERT INTO public.notice VALUES (10880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694210260);
INSERT INTO public.notice VALUES (10881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694210860);
INSERT INTO public.notice VALUES (10882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694211461);
INSERT INTO public.notice VALUES (10883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694212061);
INSERT INTO public.notice VALUES (10884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694212660);
INSERT INTO public.notice VALUES (10885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694213260);
INSERT INTO public.notice VALUES (10902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694223460);
INSERT INTO public.notice VALUES (13500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695782984);
INSERT INTO public.notice VALUES (13501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695783583);
INSERT INTO public.notice VALUES (13502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695784183);
INSERT INTO public.notice VALUES (13503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695784782);
INSERT INTO public.notice VALUES (13504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695785384);
INSERT INTO public.notice VALUES (13505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695785983);
INSERT INTO public.notice VALUES (13760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695938986);
INSERT INTO public.notice VALUES (13761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695939584);
INSERT INTO public.notice VALUES (13762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695940184);
INSERT INTO public.notice VALUES (10886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694213861);
INSERT INTO public.notice VALUES (10887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694214461);
INSERT INTO public.notice VALUES (10888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694215060);
INSERT INTO public.notice VALUES (10889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694215659);
INSERT INTO public.notice VALUES (10890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694216261);
INSERT INTO public.notice VALUES (10891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694216860);
INSERT INTO public.notice VALUES (10892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694217460);
INSERT INTO public.notice VALUES (10893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694218062);
INSERT INTO public.notice VALUES (10894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694218661);
INSERT INTO public.notice VALUES (10895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694219260);
INSERT INTO public.notice VALUES (10896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694219859);
INSERT INTO public.notice VALUES (10897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694220462);
INSERT INTO public.notice VALUES (10898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694221060);
INSERT INTO public.notice VALUES (10899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694221660);
INSERT INTO public.notice VALUES (10900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694222261);
INSERT INTO public.notice VALUES (10901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694222861);
INSERT INTO public.notice VALUES (10903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694224060);
INSERT INTO public.notice VALUES (10904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694224661);
INSERT INTO public.notice VALUES (10905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694225261);
INSERT INTO public.notice VALUES (10906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694225860);
INSERT INTO public.notice VALUES (10907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694226459);
INSERT INTO public.notice VALUES (10908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694227061);
INSERT INTO public.notice VALUES (10909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694227660);
INSERT INTO public.notice VALUES (10910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694228260);
INSERT INTO public.notice VALUES (10911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694228861);
INSERT INTO public.notice VALUES (10912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694229461);
INSERT INTO public.notice VALUES (10913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694230061);
INSERT INTO public.notice VALUES (10914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694230660);
INSERT INTO public.notice VALUES (10915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694231261);
INSERT INTO public.notice VALUES (10916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694231861);
INSERT INTO public.notice VALUES (10917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694232460);
INSERT INTO public.notice VALUES (10918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694233061);
INSERT INTO public.notice VALUES (10919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694233661);
INSERT INTO public.notice VALUES (10920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694234260);
INSERT INTO public.notice VALUES (10921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694234860);
INSERT INTO public.notice VALUES (10922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694235461);
INSERT INTO public.notice VALUES (10923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694236061);
INSERT INTO public.notice VALUES (10926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694237861);
INSERT INTO public.notice VALUES (10927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694238460);
INSERT INTO public.notice VALUES (10928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694239060);
INSERT INTO public.notice VALUES (10929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694239661);
INSERT INTO public.notice VALUES (10930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694240261);
INSERT INTO public.notice VALUES (10931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694240860);
INSERT INTO public.notice VALUES (10950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694252260);
INSERT INTO public.notice VALUES (10951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694252861);
INSERT INTO public.notice VALUES (10924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694236660);
INSERT INTO public.notice VALUES (10925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694237259);
INSERT INTO public.notice VALUES (10932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694241460);
INSERT INTO public.notice VALUES (10933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694242061);
INSERT INTO public.notice VALUES (10934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694242661);
INSERT INTO public.notice VALUES (10935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694243260);
INSERT INTO public.notice VALUES (10936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694243861);
INSERT INTO public.notice VALUES (10937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694244461);
INSERT INTO public.notice VALUES (10938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694245060);
INSERT INTO public.notice VALUES (10939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694245660);
INSERT INTO public.notice VALUES (10940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694246261);
INSERT INTO public.notice VALUES (10941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694246861);
INSERT INTO public.notice VALUES (10942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694247460);
INSERT INTO public.notice VALUES (10943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694248059);
INSERT INTO public.notice VALUES (10944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694248661);
INSERT INTO public.notice VALUES (10945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694249261);
INSERT INTO public.notice VALUES (10946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694249860);
INSERT INTO public.notice VALUES (10947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694250461);
INSERT INTO public.notice VALUES (10948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694251061);
INSERT INTO public.notice VALUES (10949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694251662);
INSERT INTO public.notice VALUES (10953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694254060);
INSERT INTO public.notice VALUES (10954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694254660);
INSERT INTO public.notice VALUES (10955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694255261);
INSERT INTO public.notice VALUES (10956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694255860);
INSERT INTO public.notice VALUES (13506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695786583);
INSERT INTO public.notice VALUES (13507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695787184);
INSERT INTO public.notice VALUES (13508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695787784);
INSERT INTO public.notice VALUES (13509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695788383);
INSERT INTO public.notice VALUES (13510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695788983);
INSERT INTO public.notice VALUES (13513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695790783);
INSERT INTO public.notice VALUES (10952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694253461);
INSERT INTO public.notice VALUES (10957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694256460);
INSERT INTO public.notice VALUES (10958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694257061);
INSERT INTO public.notice VALUES (10959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694257661);
INSERT INTO public.notice VALUES (10960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694258262);
INSERT INTO public.notice VALUES (10961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694258860);
INSERT INTO public.notice VALUES (10962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694259462);
INSERT INTO public.notice VALUES (10963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694260061);
INSERT INTO public.notice VALUES (10964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694260660);
INSERT INTO public.notice VALUES (10965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694261262);
INSERT INTO public.notice VALUES (10966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694261861);
INSERT INTO public.notice VALUES (10967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694262460);
INSERT INTO public.notice VALUES (10968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694263060);
INSERT INTO public.notice VALUES (10969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694263661);
INSERT INTO public.notice VALUES (10970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694264261);
INSERT INTO public.notice VALUES (10971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694264860);
INSERT INTO public.notice VALUES (10972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694265460);
INSERT INTO public.notice VALUES (10973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694266061);
INSERT INTO public.notice VALUES (10974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694266661);
INSERT INTO public.notice VALUES (10975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694267260);
INSERT INTO public.notice VALUES (10976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694267860);
INSERT INTO public.notice VALUES (10977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694268461);
INSERT INTO public.notice VALUES (10978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694269060);
INSERT INTO public.notice VALUES (10979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694269660);
INSERT INTO public.notice VALUES (10980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694270261);
INSERT INTO public.notice VALUES (10981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694270861);
INSERT INTO public.notice VALUES (10982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694271460);
INSERT INTO public.notice VALUES (10983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694272060);
INSERT INTO public.notice VALUES (10984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694272661);
INSERT INTO public.notice VALUES (10985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694273261);
INSERT INTO public.notice VALUES (10986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694273860);
INSERT INTO public.notice VALUES (10987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694274459);
INSERT INTO public.notice VALUES (10988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694275061);
INSERT INTO public.notice VALUES (10989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694275660);
INSERT INTO public.notice VALUES (10990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694276260);
INSERT INTO public.notice VALUES (10991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694276861);
INSERT INTO public.notice VALUES (10992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694277461);
INSERT INTO public.notice VALUES (10993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694278060);
INSERT INTO public.notice VALUES (10994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694278660);
INSERT INTO public.notice VALUES (10995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694279261);
INSERT INTO public.notice VALUES (10996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694279861);
INSERT INTO public.notice VALUES (10997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694280460);
INSERT INTO public.notice VALUES (10998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694281062);
INSERT INTO public.notice VALUES (10999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694281661);
INSERT INTO public.notice VALUES (11000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694282260);
INSERT INTO public.notice VALUES (11001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694282860);
INSERT INTO public.notice VALUES (11002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694283461);
INSERT INTO public.notice VALUES (11003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694284061);
INSERT INTO public.notice VALUES (11004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694284660);
INSERT INTO public.notice VALUES (11005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694285259);
INSERT INTO public.notice VALUES (11006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694285861);
INSERT INTO public.notice VALUES (11007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694286460);
INSERT INTO public.notice VALUES (11008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694287060);
INSERT INTO public.notice VALUES (11009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694287661);
INSERT INTO public.notice VALUES (11010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694288261);
INSERT INTO public.notice VALUES (11011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694288860);
INSERT INTO public.notice VALUES (11012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694289460);
INSERT INTO public.notice VALUES (11013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694290061);
INSERT INTO public.notice VALUES (11014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694290661);
INSERT INTO public.notice VALUES (11015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694291260);
INSERT INTO public.notice VALUES (11016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694291862);
INSERT INTO public.notice VALUES (11017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694292461);
INSERT INTO public.notice VALUES (11021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694294861);
INSERT INTO public.notice VALUES (11022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694295460);
INSERT INTO public.notice VALUES (11023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694296060);
INSERT INTO public.notice VALUES (11027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694298461);
INSERT INTO public.notice VALUES (11028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694299061);
INSERT INTO public.notice VALUES (11029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694299661);
INSERT INTO public.notice VALUES (11030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694300259);
INSERT INTO public.notice VALUES (11031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694300861);
INSERT INTO public.notice VALUES (11032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694301460);
INSERT INTO public.notice VALUES (13511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695789584);
INSERT INTO public.notice VALUES (13512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695790183);
INSERT INTO public.notice VALUES (13521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695795582);
INSERT INTO public.notice VALUES (13561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695819584);
INSERT INTO public.notice VALUES (11018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694293060);
INSERT INTO public.notice VALUES (11019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694293660);
INSERT INTO public.notice VALUES (11020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694294261);
INSERT INTO public.notice VALUES (11024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694296661);
INSERT INTO public.notice VALUES (11025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694297260);
INSERT INTO public.notice VALUES (11026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694297860);
INSERT INTO public.notice VALUES (11033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694302060);
INSERT INTO public.notice VALUES (11034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694302661);
INSERT INTO public.notice VALUES (11035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694303261);
INSERT INTO public.notice VALUES (11036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694303860);
INSERT INTO public.notice VALUES (11037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694304460);
INSERT INTO public.notice VALUES (11038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694305061);
INSERT INTO public.notice VALUES (11039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694305661);
INSERT INTO public.notice VALUES (11040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694306260);
INSERT INTO public.notice VALUES (11041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694306859);
INSERT INTO public.notice VALUES (11042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694307461);
INSERT INTO public.notice VALUES (11043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694308060);
INSERT INTO public.notice VALUES (11044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694308660);
INSERT INTO public.notice VALUES (11045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694309261);
INSERT INTO public.notice VALUES (11046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694309861);
INSERT INTO public.notice VALUES (11047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694310460);
INSERT INTO public.notice VALUES (11048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694311060);
INSERT INTO public.notice VALUES (11049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694311661);
INSERT INTO public.notice VALUES (11050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694312261);
INSERT INTO public.notice VALUES (11053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694314061);
INSERT INTO public.notice VALUES (11054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694314663);
INSERT INTO public.notice VALUES (13514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695791385);
INSERT INTO public.notice VALUES (13515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695791987);
INSERT INTO public.notice VALUES (13516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695792583);
INSERT INTO public.notice VALUES (13517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695793182);
INSERT INTO public.notice VALUES (11051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694312861);
INSERT INTO public.notice VALUES (11052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694313461);
INSERT INTO public.notice VALUES (11055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694315260);
INSERT INTO public.notice VALUES (11056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694315861);
INSERT INTO public.notice VALUES (11057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694316461);
INSERT INTO public.notice VALUES (11058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694317060);
INSERT INTO public.notice VALUES (11059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694317660);
INSERT INTO public.notice VALUES (11060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694318261);
INSERT INTO public.notice VALUES (11061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694318861);
INSERT INTO public.notice VALUES (11062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694319460);
INSERT INTO public.notice VALUES (11063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694320062);
INSERT INTO public.notice VALUES (11064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694320661);
INSERT INTO public.notice VALUES (11065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694321261);
INSERT INTO public.notice VALUES (11066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694321860);
INSERT INTO public.notice VALUES (11067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694322461);
INSERT INTO public.notice VALUES (11068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694323061);
INSERT INTO public.notice VALUES (11069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694323660);
INSERT INTO public.notice VALUES (11070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694324261);
INSERT INTO public.notice VALUES (11071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694324861);
INSERT INTO public.notice VALUES (11072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694325460);
INSERT INTO public.notice VALUES (11073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694326060);
INSERT INTO public.notice VALUES (11074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694326661);
INSERT INTO public.notice VALUES (11075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694327261);
INSERT INTO public.notice VALUES (11076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694327860);
INSERT INTO public.notice VALUES (11077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694328459);
INSERT INTO public.notice VALUES (11078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694329061);
INSERT INTO public.notice VALUES (11079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694329660);
INSERT INTO public.notice VALUES (11080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694330260);
INSERT INTO public.notice VALUES (11081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694330861);
INSERT INTO public.notice VALUES (11082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694331461);
INSERT INTO public.notice VALUES (11083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694332060);
INSERT INTO public.notice VALUES (11084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694332660);
INSERT INTO public.notice VALUES (11085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694333261);
INSERT INTO public.notice VALUES (11096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694339861);
INSERT INTO public.notice VALUES (13518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695793784);
INSERT INTO public.notice VALUES (13519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695794384);
INSERT INTO public.notice VALUES (13520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695794983);
INSERT INTO public.notice VALUES (13763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695940782);
INSERT INTO public.notice VALUES (13764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695941385);
INSERT INTO public.notice VALUES (13765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695941985);
INSERT INTO public.notice VALUES (13766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695942583);
INSERT INTO public.notice VALUES (13767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695943185);
INSERT INTO public.notice VALUES (13878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696009785);
INSERT INTO public.notice VALUES (13879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696010384);
INSERT INTO public.notice VALUES (13880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696010984);
INSERT INTO public.notice VALUES (11086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694333861);
INSERT INTO public.notice VALUES (11087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694334460);
INSERT INTO public.notice VALUES (11088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694335060);
INSERT INTO public.notice VALUES (11089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694335661);
INSERT INTO public.notice VALUES (11090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694336264);
INSERT INTO public.notice VALUES (11091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694336861);
INSERT INTO public.notice VALUES (11092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694337461);
INSERT INTO public.notice VALUES (11093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694338061);
INSERT INTO public.notice VALUES (11094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694338662);
INSERT INTO public.notice VALUES (11095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694339260);
INSERT INTO public.notice VALUES (11097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694340460);
INSERT INTO public.notice VALUES (11098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694341061);
INSERT INTO public.notice VALUES (11099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694341662);
INSERT INTO public.notice VALUES (11100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694342261);
INSERT INTO public.notice VALUES (11101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694342860);
INSERT INTO public.notice VALUES (11102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694343460);
INSERT INTO public.notice VALUES (11103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694344061);
INSERT INTO public.notice VALUES (11104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694344662);
INSERT INTO public.notice VALUES (11105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694345261);
INSERT INTO public.notice VALUES (11118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694353061);
INSERT INTO public.notice VALUES (13522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695796184);
INSERT INTO public.notice VALUES (13523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695796783);
INSERT INTO public.notice VALUES (13524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695797383);
INSERT INTO public.notice VALUES (13525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695797984);
INSERT INTO public.notice VALUES (13526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695798583);
INSERT INTO public.notice VALUES (13527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695799183);
INSERT INTO public.notice VALUES (13528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695799783);
INSERT INTO public.notice VALUES (13529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695800384);
INSERT INTO public.notice VALUES (13530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695800983);
INSERT INTO public.notice VALUES (13531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695801583);
INSERT INTO public.notice VALUES (11106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694345860);
INSERT INTO public.notice VALUES (11107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694346461);
INSERT INTO public.notice VALUES (11108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694347060);
INSERT INTO public.notice VALUES (11109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694347660);
INSERT INTO public.notice VALUES (11110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694348262);
INSERT INTO public.notice VALUES (11111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694348861);
INSERT INTO public.notice VALUES (11112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694349460);
INSERT INTO public.notice VALUES (11113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694350060);
INSERT INTO public.notice VALUES (11114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694350661);
INSERT INTO public.notice VALUES (11115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694351261);
INSERT INTO public.notice VALUES (11116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694351860);
INSERT INTO public.notice VALUES (11117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694352461);
INSERT INTO public.notice VALUES (11119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694353660);
INSERT INTO public.notice VALUES (11120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694354260);
INSERT INTO public.notice VALUES (11121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694354861);
INSERT INTO public.notice VALUES (11122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694355461);
INSERT INTO public.notice VALUES (11123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694356060);
INSERT INTO public.notice VALUES (11124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694356660);
INSERT INTO public.notice VALUES (11125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694357261);
INSERT INTO public.notice VALUES (11126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694357860);
INSERT INTO public.notice VALUES (11127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694358460);
INSERT INTO public.notice VALUES (11128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694359061);
INSERT INTO public.notice VALUES (11129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694359661);
INSERT INTO public.notice VALUES (11130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694360260);
INSERT INTO public.notice VALUES (11131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694360860);
INSERT INTO public.notice VALUES (11132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694361461);
INSERT INTO public.notice VALUES (11133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694362060);
INSERT INTO public.notice VALUES (11134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694362660);
INSERT INTO public.notice VALUES (11135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694363259);
INSERT INTO public.notice VALUES (11136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694363861);
INSERT INTO public.notice VALUES (11137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694364460);
INSERT INTO public.notice VALUES (11138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694365060);
INSERT INTO public.notice VALUES (11139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694365661);
INSERT INTO public.notice VALUES (11140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694366261);
INSERT INTO public.notice VALUES (11141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694366860);
INSERT INTO public.notice VALUES (11142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694367460);
INSERT INTO public.notice VALUES (11143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694368061);
INSERT INTO public.notice VALUES (11144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694368660);
INSERT INTO public.notice VALUES (11145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694369260);
INSERT INTO public.notice VALUES (11146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694369861);
INSERT INTO public.notice VALUES (11147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694370461);
INSERT INTO public.notice VALUES (11148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694371060);
INSERT INTO public.notice VALUES (11149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694371667);
INSERT INTO public.notice VALUES (11150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694372262);
INSERT INTO public.notice VALUES (11151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694372860);
INSERT INTO public.notice VALUES (11152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694373461);
INSERT INTO public.notice VALUES (11153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694374061);
INSERT INTO public.notice VALUES (11171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694384859);
INSERT INTO public.notice VALUES (11172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694385461);
INSERT INTO public.notice VALUES (11173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694386060);
INSERT INTO public.notice VALUES (11174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694386660);
INSERT INTO public.notice VALUES (11175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694387261);
INSERT INTO public.notice VALUES (11178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694389060);
INSERT INTO public.notice VALUES (11179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694389661);
INSERT INTO public.notice VALUES (11180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694390261);
INSERT INTO public.notice VALUES (11181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694390860);
INSERT INTO public.notice VALUES (11182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694391459);
INSERT INTO public.notice VALUES (11183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Failed to connect to gitlab.com port 443 after 24319 ms: Couldn''t connect to server
', 1694392084);
INSERT INTO public.notice VALUES (11184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694392660);
INSERT INTO public.notice VALUES (11185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694393260);
INSERT INTO public.notice VALUES (14740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Failed to connect to gitlab.com port 443 after 24309 ms: Couldn''t connect to server
', 1696527006);
INSERT INTO public.notice VALUES (11154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694374661);
INSERT INTO public.notice VALUES (11155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694375260);
INSERT INTO public.notice VALUES (11156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694375860);
INSERT INTO public.notice VALUES (11157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694376461);
INSERT INTO public.notice VALUES (11158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694377061);
INSERT INTO public.notice VALUES (11159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694377660);
INSERT INTO public.notice VALUES (11160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694378261);
INSERT INTO public.notice VALUES (11161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694378861);
INSERT INTO public.notice VALUES (11162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694379461);
INSERT INTO public.notice VALUES (11163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694380060);
INSERT INTO public.notice VALUES (11164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694380661);
INSERT INTO public.notice VALUES (11165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1694381271);
INSERT INTO public.notice VALUES (11166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694381860);
INSERT INTO public.notice VALUES (11167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694382460);
INSERT INTO public.notice VALUES (11168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694383061);
INSERT INTO public.notice VALUES (11169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694383661);
INSERT INTO public.notice VALUES (11170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694384260);
INSERT INTO public.notice VALUES (11176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694387861);
INSERT INTO public.notice VALUES (11177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694388460);
INSERT INTO public.notice VALUES (11187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694394461);
INSERT INTO public.notice VALUES (11188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694395060);
INSERT INTO public.notice VALUES (13532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695802184);
INSERT INTO public.notice VALUES (13533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695802784);
INSERT INTO public.notice VALUES (13534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695803383);
INSERT INTO public.notice VALUES (13535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695803983);
INSERT INTO public.notice VALUES (13536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695804584);
INSERT INTO public.notice VALUES (13537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695805184);
INSERT INTO public.notice VALUES (13538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695805783);
INSERT INTO public.notice VALUES (13539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695806384);
INSERT INTO public.notice VALUES (13540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695806985);
INSERT INTO public.notice VALUES (13541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695807584);
INSERT INTO public.notice VALUES (19938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Recv failure: Connection was reset
', 1699647955);
INSERT INTO public.notice VALUES (11186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694393861);
INSERT INTO public.notice VALUES (11189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694395659);
INSERT INTO public.notice VALUES (11190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694396261);
INSERT INTO public.notice VALUES (11191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694396860);
INSERT INTO public.notice VALUES (11192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1694397470);
INSERT INTO public.notice VALUES (11193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694398061);
INSERT INTO public.notice VALUES (11194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694398661);
INSERT INTO public.notice VALUES (11195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694399260);
INSERT INTO public.notice VALUES (11196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694399860);
INSERT INTO public.notice VALUES (11197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694400461);
INSERT INTO public.notice VALUES (11198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694401061);
INSERT INTO public.notice VALUES (11199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694401660);
INSERT INTO public.notice VALUES (11200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1694402269);
INSERT INTO public.notice VALUES (11201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694402861);
INSERT INTO public.notice VALUES (11202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694403460);
INSERT INTO public.notice VALUES (11203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694404060);
INSERT INTO public.notice VALUES (20641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1700069764);
INSERT INTO public.notice VALUES (11204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694404661);
INSERT INTO public.notice VALUES (11205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694405261);
INSERT INTO public.notice VALUES (11206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694405860);
INSERT INTO public.notice VALUES (11233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694422061);
INSERT INTO public.notice VALUES (11234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694422661);
INSERT INTO public.notice VALUES (11242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694427460);
INSERT INTO public.notice VALUES (11243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694428060);
INSERT INTO public.notice VALUES (11247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694430461);
INSERT INTO public.notice VALUES (11248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694431062);
INSERT INTO public.notice VALUES (11249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694431660);
INSERT INTO public.notice VALUES (13542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695808183);
INSERT INTO public.notice VALUES (13543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695808784);
INSERT INTO public.notice VALUES (13544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695809383);
INSERT INTO public.notice VALUES (13545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695809983);
INSERT INTO public.notice VALUES (13546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695810582);
INSERT INTO public.notice VALUES (20642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1700070365);
INSERT INTO public.notice VALUES (11207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694406459);
INSERT INTO public.notice VALUES (11208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694407061);
INSERT INTO public.notice VALUES (11209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694407661);
INSERT INTO public.notice VALUES (11210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694408260);
INSERT INTO public.notice VALUES (11211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694408862);
INSERT INTO public.notice VALUES (11212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694409461);
INSERT INTO public.notice VALUES (11213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694410060);
INSERT INTO public.notice VALUES (11214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694410660);
INSERT INTO public.notice VALUES (11215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694411261);
INSERT INTO public.notice VALUES (11216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694411861);
INSERT INTO public.notice VALUES (11217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694412460);
INSERT INTO public.notice VALUES (11218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694413059);
INSERT INTO public.notice VALUES (11219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694413661);
INSERT INTO public.notice VALUES (11220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694414260);
INSERT INTO public.notice VALUES (11221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694414860);
INSERT INTO public.notice VALUES (20643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1700070964);
INSERT INTO public.notice VALUES (11222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694415461);
INSERT INTO public.notice VALUES (11223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694416061);
INSERT INTO public.notice VALUES (11224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694416660);
INSERT INTO public.notice VALUES (11225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694417260);
INSERT INTO public.notice VALUES (11226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694417861);
INSERT INTO public.notice VALUES (11227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694418460);
INSERT INTO public.notice VALUES (11228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694419060);
INSERT INTO public.notice VALUES (11229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694419662);
INSERT INTO public.notice VALUES (11230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694420261);
INSERT INTO public.notice VALUES (11231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694420860);
INSERT INTO public.notice VALUES (11232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694421460);
INSERT INTO public.notice VALUES (11235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694423260);
INSERT INTO public.notice VALUES (11236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694423859);
INSERT INTO public.notice VALUES (11237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694424462);
INSERT INTO public.notice VALUES (11238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694425060);
INSERT INTO public.notice VALUES (20644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1700071564);
INSERT INTO public.notice VALUES (11239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694425660);
INSERT INTO public.notice VALUES (11240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694426261);
INSERT INTO public.notice VALUES (11241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694426861);
INSERT INTO public.notice VALUES (11244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694428661);
INSERT INTO public.notice VALUES (11245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694429260);
INSERT INTO public.notice VALUES (11246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694429860);
INSERT INTO public.notice VALUES (11250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694432260);
INSERT INTO public.notice VALUES (11251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694432861);
INSERT INTO public.notice VALUES (11252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694433461);
INSERT INTO public.notice VALUES (11253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694434060);
INSERT INTO public.notice VALUES (11254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694434660);
INSERT INTO public.notice VALUES (11255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694435262);
INSERT INTO public.notice VALUES (11256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694435860);
INSERT INTO public.notice VALUES (11257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694436460);
INSERT INTO public.notice VALUES (11258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694437061);
INSERT INTO public.notice VALUES (11259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694437661);
INSERT INTO public.notice VALUES (11260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694438260);
INSERT INTO public.notice VALUES (11264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694440660);
INSERT INTO public.notice VALUES (11265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694441260);
INSERT INTO public.notice VALUES (13547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695811184);
INSERT INTO public.notice VALUES (13548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695811783);
INSERT INTO public.notice VALUES (13549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695812383);
INSERT INTO public.notice VALUES (13550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695812984);
INSERT INTO public.notice VALUES (13551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695813584);
INSERT INTO public.notice VALUES (13768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695943784);
INSERT INTO public.notice VALUES (13769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695944385);
INSERT INTO public.notice VALUES (13881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696011582);
INSERT INTO public.notice VALUES (13882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696012185);
INSERT INTO public.notice VALUES (13883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696012784);
INSERT INTO public.notice VALUES (13884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696013384);
INSERT INTO public.notice VALUES (11261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694438860);
INSERT INTO public.notice VALUES (11262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694439461);
INSERT INTO public.notice VALUES (11263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694440062);
INSERT INTO public.notice VALUES (11266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694441861);
INSERT INTO public.notice VALUES (11267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694442461);
INSERT INTO public.notice VALUES (11268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694443060);
INSERT INTO public.notice VALUES (11269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694443662);
INSERT INTO public.notice VALUES (11270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694444261);
INSERT INTO public.notice VALUES (11271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694444860);
INSERT INTO public.notice VALUES (11272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694445460);
INSERT INTO public.notice VALUES (11273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694446061);
INSERT INTO public.notice VALUES (11274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694446661);
INSERT INTO public.notice VALUES (11275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694447260);
INSERT INTO public.notice VALUES (11276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694447859);
INSERT INTO public.notice VALUES (11277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694448461);
INSERT INTO public.notice VALUES (11278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694449060);
INSERT INTO public.notice VALUES (11279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694449660);
INSERT INTO public.notice VALUES (11280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694450261);
INSERT INTO public.notice VALUES (11281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694450861);
INSERT INTO public.notice VALUES (13552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695814183);
INSERT INTO public.notice VALUES (13553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695814783);
INSERT INTO public.notice VALUES (13554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695815384);
INSERT INTO public.notice VALUES (13555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695815983);
INSERT INTO public.notice VALUES (13556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695816583);
INSERT INTO public.notice VALUES (13557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695817182);
INSERT INTO public.notice VALUES (13558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695817784);
INSERT INTO public.notice VALUES (13559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695818384);
INSERT INTO public.notice VALUES (13770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695944984);
INSERT INTO public.notice VALUES (13771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695945585);
INSERT INTO public.notice VALUES (13885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696013986);
INSERT INTO public.notice VALUES (11282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694451460);
INSERT INTO public.notice VALUES (11283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694452062);
INSERT INTO public.notice VALUES (11284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694452661);
INSERT INTO public.notice VALUES (11285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694453261);
INSERT INTO public.notice VALUES (11286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694453860);
INSERT INTO public.notice VALUES (11287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694454461);
INSERT INTO public.notice VALUES (11288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694455061);
INSERT INTO public.notice VALUES (11289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694455660);
INSERT INTO public.notice VALUES (11290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694456260);
INSERT INTO public.notice VALUES (11291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694456861);
INSERT INTO public.notice VALUES (11292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694457462);
INSERT INTO public.notice VALUES (11293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694458060);
INSERT INTO public.notice VALUES (11294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694458662);
INSERT INTO public.notice VALUES (11295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694459261);
INSERT INTO public.notice VALUES (11296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694459860);
INSERT INTO public.notice VALUES (11297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694460460);
INSERT INTO public.notice VALUES (11298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694461061);
INSERT INTO public.notice VALUES (11299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694461661);
INSERT INTO public.notice VALUES (11300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694462260);
INSERT INTO public.notice VALUES (11301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694462860);
INSERT INTO public.notice VALUES (11308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694467060);
INSERT INTO public.notice VALUES (11309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694467661);
INSERT INTO public.notice VALUES (13560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695818983);
INSERT INTO public.notice VALUES (13571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695825585);
INSERT INTO public.notice VALUES (13772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695946185);
INSERT INTO public.notice VALUES (13773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695946783);
INSERT INTO public.notice VALUES (13774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695947385);
INSERT INTO public.notice VALUES (13775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695947984);
INSERT INTO public.notice VALUES (13886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696014585);
INSERT INTO public.notice VALUES (13887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696015185);
INSERT INTO public.notice VALUES (11302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694463461);
INSERT INTO public.notice VALUES (11303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694464062);
INSERT INTO public.notice VALUES (11304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694464660);
INSERT INTO public.notice VALUES (11305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694465259);
INSERT INTO public.notice VALUES (11306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694465861);
INSERT INTO public.notice VALUES (11307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694466464);
INSERT INTO public.notice VALUES (11310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694468261);
INSERT INTO public.notice VALUES (11311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694468860);
INSERT INTO public.notice VALUES (11312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694469462);
INSERT INTO public.notice VALUES (11313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694470062);
INSERT INTO public.notice VALUES (11314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694470662);
INSERT INTO public.notice VALUES (11315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694471260);
INSERT INTO public.notice VALUES (11316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694471861);
INSERT INTO public.notice VALUES (11317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694472461);
INSERT INTO public.notice VALUES (11318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694473060);
INSERT INTO public.notice VALUES (11319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694473660);
INSERT INTO public.notice VALUES (11320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694474261);
INSERT INTO public.notice VALUES (11321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694474861);
INSERT INTO public.notice VALUES (11323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694476060);
INSERT INTO public.notice VALUES (13562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695820183);
INSERT INTO public.notice VALUES (13563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695820783);
INSERT INTO public.notice VALUES (13776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695948584);
INSERT INTO public.notice VALUES (13777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695949183);
INSERT INTO public.notice VALUES (13888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696015783);
INSERT INTO public.notice VALUES (13922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696036184);
INSERT INTO public.notice VALUES (13925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696037984);
INSERT INTO public.notice VALUES (13926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696038584);
INSERT INTO public.notice VALUES (13927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696039184);
INSERT INTO public.notice VALUES (13928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696039783);
INSERT INTO public.notice VALUES (13929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696040385);
INSERT INTO public.notice VALUES (11322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694475460);
INSERT INTO public.notice VALUES (11324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694476661);
INSERT INTO public.notice VALUES (11325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694477260);
INSERT INTO public.notice VALUES (11326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694477860);
INSERT INTO public.notice VALUES (11327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694478461);
INSERT INTO public.notice VALUES (11328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694479061);
INSERT INTO public.notice VALUES (11329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694479660);
INSERT INTO public.notice VALUES (11330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694480260);
INSERT INTO public.notice VALUES (11331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694480861);
INSERT INTO public.notice VALUES (11332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694481461);
INSERT INTO public.notice VALUES (11333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694482060);
INSERT INTO public.notice VALUES (11334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694482660);
INSERT INTO public.notice VALUES (11335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694483481);
INSERT INTO public.notice VALUES (11336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694484081);
INSERT INTO public.notice VALUES (11337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694484680);
INSERT INTO public.notice VALUES (11338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694485280);
INSERT INTO public.notice VALUES (11339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694485881);
INSERT INTO public.notice VALUES (11340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694486481);
INSERT INTO public.notice VALUES (11341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694487080);
INSERT INTO public.notice VALUES (11342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694487679);
INSERT INTO public.notice VALUES (11343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694488281);
INSERT INTO public.notice VALUES (11344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694488880);
INSERT INTO public.notice VALUES (11345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694489480);
INSERT INTO public.notice VALUES (11346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694490081);
INSERT INTO public.notice VALUES (11347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694490681);
INSERT INTO public.notice VALUES (11348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694491280);
INSERT INTO public.notice VALUES (11349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694491880);
INSERT INTO public.notice VALUES (11350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694492481);
INSERT INTO public.notice VALUES (11351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694493081);
INSERT INTO public.notice VALUES (11352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694493680);
INSERT INTO public.notice VALUES (11353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694494282);
INSERT INTO public.notice VALUES (11354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694494881);
INSERT INTO public.notice VALUES (11355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694495480);
INSERT INTO public.notice VALUES (11356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694496080);
INSERT INTO public.notice VALUES (11357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694496681);
INSERT INTO public.notice VALUES (11358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694497281);
INSERT INTO public.notice VALUES (11359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694497880);
INSERT INTO public.notice VALUES (11360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694498479);
INSERT INTO public.notice VALUES (11361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694499081);
INSERT INTO public.notice VALUES (11362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694499680);
INSERT INTO public.notice VALUES (11363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694500280);
INSERT INTO public.notice VALUES (11364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694500881);
INSERT INTO public.notice VALUES (11365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694501481);
INSERT INTO public.notice VALUES (11366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694502080);
INSERT INTO public.notice VALUES (11367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694502680);
INSERT INTO public.notice VALUES (11368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694503281);
INSERT INTO public.notice VALUES (11369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694503881);
INSERT INTO public.notice VALUES (11370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694504480);
INSERT INTO public.notice VALUES (11371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694505080);
INSERT INTO public.notice VALUES (11372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694505681);
INSERT INTO public.notice VALUES (11373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694506281);
INSERT INTO public.notice VALUES (11374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694506880);
INSERT INTO public.notice VALUES (11375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694507481);
INSERT INTO public.notice VALUES (11376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694508080);
INSERT INTO public.notice VALUES (11377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694508681);
INSERT INTO public.notice VALUES (11378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694509279);
INSERT INTO public.notice VALUES (11379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694509881);
INSERT INTO public.notice VALUES (11380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694510480);
INSERT INTO public.notice VALUES (11381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694511081);
INSERT INTO public.notice VALUES (11382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694511681);
INSERT INTO public.notice VALUES (11383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694512281);
INSERT INTO public.notice VALUES (11384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694512880);
INSERT INTO public.notice VALUES (11385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694513480);
INSERT INTO public.notice VALUES (11386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694514081);
INSERT INTO public.notice VALUES (11387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694514680);
INSERT INTO public.notice VALUES (11388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694515280);
INSERT INTO public.notice VALUES (11414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694530879);
INSERT INTO public.notice VALUES (11415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694531481);
INSERT INTO public.notice VALUES (11416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694532080);
INSERT INTO public.notice VALUES (11417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694532680);
INSERT INTO public.notice VALUES (11418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694533282);
INSERT INTO public.notice VALUES (11419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694533881);
INSERT INTO public.notice VALUES (13564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695821384);
INSERT INTO public.notice VALUES (13565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695821985);
INSERT INTO public.notice VALUES (13778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695949785);
INSERT INTO public.notice VALUES (11389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694515881);
INSERT INTO public.notice VALUES (11390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694516481);
INSERT INTO public.notice VALUES (11391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694517080);
INSERT INTO public.notice VALUES (11392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694517681);
INSERT INTO public.notice VALUES (11393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694518281);
INSERT INTO public.notice VALUES (11394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694518881);
INSERT INTO public.notice VALUES (11395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694519480);
INSERT INTO public.notice VALUES (11396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694520079);
INSERT INTO public.notice VALUES (11397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694520681);
INSERT INTO public.notice VALUES (11398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694521280);
INSERT INTO public.notice VALUES (11399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694521880);
INSERT INTO public.notice VALUES (11400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694522481);
INSERT INTO public.notice VALUES (11401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694523081);
INSERT INTO public.notice VALUES (11402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694523680);
INSERT INTO public.notice VALUES (11403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694524280);
INSERT INTO public.notice VALUES (11404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694524881);
INSERT INTO public.notice VALUES (11405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694525481);
INSERT INTO public.notice VALUES (11406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694526080);
INSERT INTO public.notice VALUES (11407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694526682);
INSERT INTO public.notice VALUES (11408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694527281);
INSERT INTO public.notice VALUES (11409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694527880);
INSERT INTO public.notice VALUES (11410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694528480);
INSERT INTO public.notice VALUES (11411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694529081);
INSERT INTO public.notice VALUES (11412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694529682);
INSERT INTO public.notice VALUES (11413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694530280);
INSERT INTO public.notice VALUES (11420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694534480);
INSERT INTO public.notice VALUES (11421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694535080);
INSERT INTO public.notice VALUES (11422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694535681);
INSERT INTO public.notice VALUES (11423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694536281);
INSERT INTO public.notice VALUES (11424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694536880);
INSERT INTO public.notice VALUES (11425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694537479);
INSERT INTO public.notice VALUES (11426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694538081);
INSERT INTO public.notice VALUES (11427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694538680);
INSERT INTO public.notice VALUES (11428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694539280);
INSERT INTO public.notice VALUES (11429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694539883);
INSERT INTO public.notice VALUES (11430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694540481);
INSERT INTO public.notice VALUES (11431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694541080);
INSERT INTO public.notice VALUES (11432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694541679);
INSERT INTO public.notice VALUES (11438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694545280);
INSERT INTO public.notice VALUES (11439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694545880);
INSERT INTO public.notice VALUES (13566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695822583);
INSERT INTO public.notice VALUES (13567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695823183);
INSERT INTO public.notice VALUES (13781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695951582);
INSERT INTO public.notice VALUES (13782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695952185);
INSERT INTO public.notice VALUES (13783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695952783);
INSERT INTO public.notice VALUES (11433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694542281);
INSERT INTO public.notice VALUES (11434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694542880);
INSERT INTO public.notice VALUES (11435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694543480);
INSERT INTO public.notice VALUES (11436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694544079);
INSERT INTO public.notice VALUES (11437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694544681);
INSERT INTO public.notice VALUES (11440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694546481);
INSERT INTO public.notice VALUES (11441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694547081);
INSERT INTO public.notice VALUES (11442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694547680);
INSERT INTO public.notice VALUES (11443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694548280);
INSERT INTO public.notice VALUES (11444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694548881);
INSERT INTO public.notice VALUES (11445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694549480);
INSERT INTO public.notice VALUES (11446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694550080);
INSERT INTO public.notice VALUES (11447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694550682);
INSERT INTO public.notice VALUES (11448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694551281);
INSERT INTO public.notice VALUES (11449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694551880);
INSERT INTO public.notice VALUES (11450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694552480);
INSERT INTO public.notice VALUES (11451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694553085);
INSERT INTO public.notice VALUES (11452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694553681);
INSERT INTO public.notice VALUES (11453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694554280);
INSERT INTO public.notice VALUES (11454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694554879);
INSERT INTO public.notice VALUES (11455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694555481);
INSERT INTO public.notice VALUES (11456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694556080);
INSERT INTO public.notice VALUES (11457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694556680);
INSERT INTO public.notice VALUES (11458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694557281);
INSERT INTO public.notice VALUES (11459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694557881);
INSERT INTO public.notice VALUES (11460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694558480);
INSERT INTO public.notice VALUES (11461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694559079);
INSERT INTO public.notice VALUES (11463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694560280);
INSERT INTO public.notice VALUES (11464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694560880);
INSERT INTO public.notice VALUES (11465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694561479);
INSERT INTO public.notice VALUES (11462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694559682);
INSERT INTO public.notice VALUES (11470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694564481);
INSERT INTO public.notice VALUES (11472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694565681);
INSERT INTO public.notice VALUES (11475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694567480);
INSERT INTO public.notice VALUES (11476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694568081);
INSERT INTO public.notice VALUES (11477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694568681);
INSERT INTO public.notice VALUES (13568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695823784);
INSERT INTO public.notice VALUES (13569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695824384);
INSERT INTO public.notice VALUES (13784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695953383);
INSERT INTO public.notice VALUES (13785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695953984);
INSERT INTO public.notice VALUES (13889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696016385);
INSERT INTO public.notice VALUES (13890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696016984);
INSERT INTO public.notice VALUES (13891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696017584);
INSERT INTO public.notice VALUES (13892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696018183);
INSERT INTO public.notice VALUES (13893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696018784);
INSERT INTO public.notice VALUES (11466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694562081);
INSERT INTO public.notice VALUES (11467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694562680);
INSERT INTO public.notice VALUES (11468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694563280);
INSERT INTO public.notice VALUES (11469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694563881);
INSERT INTO public.notice VALUES (11471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694565080);
INSERT INTO public.notice VALUES (11473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694566281);
INSERT INTO public.notice VALUES (11474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694566880);
INSERT INTO public.notice VALUES (11478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694569280);
INSERT INTO public.notice VALUES (11479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694569880);
INSERT INTO public.notice VALUES (11480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694570481);
INSERT INTO public.notice VALUES (11481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694571081);
INSERT INTO public.notice VALUES (11482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694571680);
INSERT INTO public.notice VALUES (11483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694572282);
INSERT INTO public.notice VALUES (11484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694572881);
INSERT INTO public.notice VALUES (11485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694573480);
INSERT INTO public.notice VALUES (11486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694574080);
INSERT INTO public.notice VALUES (11487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694574681);
INSERT INTO public.notice VALUES (11488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694575281);
INSERT INTO public.notice VALUES (11489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694575880);
INSERT INTO public.notice VALUES (11490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694576480);
INSERT INTO public.notice VALUES (11491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694577081);
INSERT INTO public.notice VALUES (11492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694577681);
INSERT INTO public.notice VALUES (11493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694578280);
INSERT INTO public.notice VALUES (11494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694578881);
INSERT INTO public.notice VALUES (11495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694579481);
INSERT INTO public.notice VALUES (11496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694580080);
INSERT INTO public.notice VALUES (11497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694580680);
INSERT INTO public.notice VALUES (11507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694586680);
INSERT INTO public.notice VALUES (11508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694587279);
INSERT INTO public.notice VALUES (11509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694587881);
INSERT INTO public.notice VALUES (11498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694581281);
INSERT INTO public.notice VALUES (11499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694581881);
INSERT INTO public.notice VALUES (11500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694582480);
INSERT INTO public.notice VALUES (11501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694583080);
INSERT INTO public.notice VALUES (11502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694583681);
INSERT INTO public.notice VALUES (11503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694584280);
INSERT INTO public.notice VALUES (11504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694584880);
INSERT INTO public.notice VALUES (11505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694585481);
INSERT INTO public.notice VALUES (11506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694586081);
INSERT INTO public.notice VALUES (11516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694592081);
INSERT INTO public.notice VALUES (11517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694592680);
INSERT INTO public.notice VALUES (11518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694593280);
INSERT INTO public.notice VALUES (11519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694593881);
INSERT INTO public.notice VALUES (13570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695824985);
INSERT INTO public.notice VALUES (13573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695826784);
INSERT INTO public.notice VALUES (11510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694588480);
INSERT INTO public.notice VALUES (11511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694589080);
INSERT INTO public.notice VALUES (11512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694589681);
INSERT INTO public.notice VALUES (11513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694590280);
INSERT INTO public.notice VALUES (11514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694590880);
INSERT INTO public.notice VALUES (11515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694591480);
INSERT INTO public.notice VALUES (11520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694594481);
INSERT INTO public.notice VALUES (11521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694595080);
INSERT INTO public.notice VALUES (11522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694595679);
INSERT INTO public.notice VALUES (11523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694596281);
INSERT INTO public.notice VALUES (11524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694596880);
INSERT INTO public.notice VALUES (11525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694597481);
INSERT INTO public.notice VALUES (11526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694598081);
INSERT INTO public.notice VALUES (11527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694598681);
INSERT INTO public.notice VALUES (11528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694599280);
INSERT INTO public.notice VALUES (11529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694599880);
INSERT INTO public.notice VALUES (11537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694604681);
INSERT INTO public.notice VALUES (11564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694620880);
INSERT INTO public.notice VALUES (11565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694621480);
INSERT INTO public.notice VALUES (11566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694622081);
INSERT INTO public.notice VALUES (11567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694622680);
INSERT INTO public.notice VALUES (11568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694623280);
INSERT INTO public.notice VALUES (11569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694623879);
INSERT INTO public.notice VALUES (11582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694631680);
INSERT INTO public.notice VALUES (11583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694632280);
INSERT INTO public.notice VALUES (11584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694632881);
INSERT INTO public.notice VALUES (11585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694633481);
INSERT INTO public.notice VALUES (11586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694634080);
INSERT INTO public.notice VALUES (11587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694634680);
INSERT INTO public.notice VALUES (11588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694635281);
INSERT INTO public.notice VALUES (11530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694600481);
INSERT INTO public.notice VALUES (11531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694601081);
INSERT INTO public.notice VALUES (11532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694601680);
INSERT INTO public.notice VALUES (11533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694602279);
INSERT INTO public.notice VALUES (11534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694602881);
INSERT INTO public.notice VALUES (11535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694603480);
INSERT INTO public.notice VALUES (11536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694604081);
INSERT INTO public.notice VALUES (11538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694605281);
INSERT INTO public.notice VALUES (11539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694605880);
INSERT INTO public.notice VALUES (11540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694606480);
INSERT INTO public.notice VALUES (11541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694607081);
INSERT INTO public.notice VALUES (11542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694607681);
INSERT INTO public.notice VALUES (11543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694608280);
INSERT INTO public.notice VALUES (11544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694608882);
INSERT INTO public.notice VALUES (11545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694609481);
INSERT INTO public.notice VALUES (11546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694610080);
INSERT INTO public.notice VALUES (11547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694610680);
INSERT INTO public.notice VALUES (11548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694611281);
INSERT INTO public.notice VALUES (11549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694611881);
INSERT INTO public.notice VALUES (11550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694612480);
INSERT INTO public.notice VALUES (11551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694613079);
INSERT INTO public.notice VALUES (11552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694613681);
INSERT INTO public.notice VALUES (11553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694614280);
INSERT INTO public.notice VALUES (11554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694614880);
INSERT INTO public.notice VALUES (11555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694615481);
INSERT INTO public.notice VALUES (11556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694616081);
INSERT INTO public.notice VALUES (11557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694616681);
INSERT INTO public.notice VALUES (11558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694617279);
INSERT INTO public.notice VALUES (11559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694617882);
INSERT INTO public.notice VALUES (11560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694618481);
INSERT INTO public.notice VALUES (11561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694619080);
INSERT INTO public.notice VALUES (11562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694619681);
INSERT INTO public.notice VALUES (11563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694620281);
INSERT INTO public.notice VALUES (11570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694624481);
INSERT INTO public.notice VALUES (11571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694625080);
INSERT INTO public.notice VALUES (11572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694625680);
INSERT INTO public.notice VALUES (11573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694626282);
INSERT INTO public.notice VALUES (11574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694626881);
INSERT INTO public.notice VALUES (11575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694627480);
INSERT INTO public.notice VALUES (11576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694628079);
INSERT INTO public.notice VALUES (11577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694628681);
INSERT INTO public.notice VALUES (11578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694629280);
INSERT INTO public.notice VALUES (11579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694629880);
INSERT INTO public.notice VALUES (11580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694630482);
INSERT INTO public.notice VALUES (11581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694631081);
INSERT INTO public.notice VALUES (11589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694635880);
INSERT INTO public.notice VALUES (11590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694636480);
INSERT INTO public.notice VALUES (11591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694637081);
INSERT INTO public.notice VALUES (11599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694641881);
INSERT INTO public.notice VALUES (11600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694642480);
INSERT INTO public.notice VALUES (11615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694651480);
INSERT INTO public.notice VALUES (11616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694652081);
INSERT INTO public.notice VALUES (11617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694652681);
INSERT INTO public.notice VALUES (11632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694661681);
INSERT INTO public.notice VALUES (11633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694662280);
INSERT INTO public.notice VALUES (11634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694662880);
INSERT INTO public.notice VALUES (11635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694663481);
INSERT INTO public.notice VALUES (11636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694664080);
INSERT INTO public.notice VALUES (13572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695826185);
INSERT INTO public.notice VALUES (13574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695827384);
INSERT INTO public.notice VALUES (11592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694637682);
INSERT INTO public.notice VALUES (11593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694638281);
INSERT INTO public.notice VALUES (11594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694638879);
INSERT INTO public.notice VALUES (11595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694639481);
INSERT INTO public.notice VALUES (11596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694640081);
INSERT INTO public.notice VALUES (11597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694640680);
INSERT INTO public.notice VALUES (11598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694641281);
INSERT INTO public.notice VALUES (11601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694643080);
INSERT INTO public.notice VALUES (11602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694643682);
INSERT INTO public.notice VALUES (11603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694644281);
INSERT INTO public.notice VALUES (11604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694644880);
INSERT INTO public.notice VALUES (11605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694645479);
INSERT INTO public.notice VALUES (11606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694646081);
INSERT INTO public.notice VALUES (11607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694646680);
INSERT INTO public.notice VALUES (11608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694647280);
INSERT INTO public.notice VALUES (11609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694647881);
INSERT INTO public.notice VALUES (11610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694648481);
INSERT INTO public.notice VALUES (11611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694649080);
INSERT INTO public.notice VALUES (11612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694649679);
INSERT INTO public.notice VALUES (11613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694650281);
INSERT INTO public.notice VALUES (11614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694650880);
INSERT INTO public.notice VALUES (11618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694653280);
INSERT INTO public.notice VALUES (11619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694653880);
INSERT INTO public.notice VALUES (11620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694654481);
INSERT INTO public.notice VALUES (11621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694655081);
INSERT INTO public.notice VALUES (11622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694655681);
INSERT INTO public.notice VALUES (11623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694656281);
INSERT INTO public.notice VALUES (11624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694656881);
INSERT INTO public.notice VALUES (11625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694657480);
INSERT INTO public.notice VALUES (11626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694658080);
INSERT INTO public.notice VALUES (11627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694658681);
INSERT INTO public.notice VALUES (11628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694659281);
INSERT INTO public.notice VALUES (11629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694659880);
INSERT INTO public.notice VALUES (11630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694660480);
INSERT INTO public.notice VALUES (11631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694661083);
INSERT INTO public.notice VALUES (11637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694664680);
INSERT INTO public.notice VALUES (11638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694665279);
INSERT INTO public.notice VALUES (11639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694665881);
INSERT INTO public.notice VALUES (11640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694666480);
INSERT INTO public.notice VALUES (11641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694667080);
INSERT INTO public.notice VALUES (11642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694667681);
INSERT INTO public.notice VALUES (11643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694668281);
INSERT INTO public.notice VALUES (11644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694668880);
INSERT INTO public.notice VALUES (11645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694669480);
INSERT INTO public.notice VALUES (11646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694670081);
INSERT INTO public.notice VALUES (11647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694670680);
INSERT INTO public.notice VALUES (11648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694671280);
INSERT INTO public.notice VALUES (11649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694671879);
INSERT INTO public.notice VALUES (11650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694672481);
INSERT INTO public.notice VALUES (11651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694673080);
INSERT INTO public.notice VALUES (11652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694673680);
INSERT INTO public.notice VALUES (11653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694674282);
INSERT INTO public.notice VALUES (11654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694674881);
INSERT INTO public.notice VALUES (11655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694675481);
INSERT INTO public.notice VALUES (11656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Failed to connect to gitlab.com port 443 after 21088 ms: Couldn''t connect to server
', 1694676099);
INSERT INTO public.notice VALUES (11657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694676681);
INSERT INTO public.notice VALUES (11658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694677280);
INSERT INTO public.notice VALUES (11659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694677880);
INSERT INTO public.notice VALUES (11660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694678480);
INSERT INTO public.notice VALUES (11679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694689882);
INSERT INTO public.notice VALUES (21286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Failed to connect to gitlab.com port 443 after 21092 ms: Couldn''t connect to server
', 1700457446);
INSERT INTO public.notice VALUES (11661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694679081);
INSERT INTO public.notice VALUES (11662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694679680);
INSERT INTO public.notice VALUES (11663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694680280);
INSERT INTO public.notice VALUES (11664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694680881);
INSERT INTO public.notice VALUES (11665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694681481);
INSERT INTO public.notice VALUES (11666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694682080);
INSERT INTO public.notice VALUES (11667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694682679);
INSERT INTO public.notice VALUES (11668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694683281);
INSERT INTO public.notice VALUES (11669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694683882);
INSERT INTO public.notice VALUES (11670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694684480);
INSERT INTO public.notice VALUES (11671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694685081);
INSERT INTO public.notice VALUES (11672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694685681);
INSERT INTO public.notice VALUES (11673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694686280);
INSERT INTO public.notice VALUES (11674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694686880);
INSERT INTO public.notice VALUES (11675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694687481);
INSERT INTO public.notice VALUES (21697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Recv failure: Connection was reset
', 1700704100);
INSERT INTO public.notice VALUES (11676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694688081);
INSERT INTO public.notice VALUES (11677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694688680);
INSERT INTO public.notice VALUES (11678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694689279);
INSERT INTO public.notice VALUES (13575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695827986);
INSERT INTO public.notice VALUES (13576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695828584);
INSERT INTO public.notice VALUES (13577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695829184);
INSERT INTO public.notice VALUES (13578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695829783);
INSERT INTO public.notice VALUES (13579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695830384);
INSERT INTO public.notice VALUES (13580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695830984);
INSERT INTO public.notice VALUES (13581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695831583);
INSERT INTO public.notice VALUES (13627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695859185);
INSERT INTO public.notice VALUES (13628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695859783);
INSERT INTO public.notice VALUES (13629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695860384);
INSERT INTO public.notice VALUES (13786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695954584);
INSERT INTO public.notice VALUES (13787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695955183);
INSERT INTO public.notice VALUES (11680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694690482);
INSERT INTO public.notice VALUES (11681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694691080);
INSERT INTO public.notice VALUES (11682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694691681);
INSERT INTO public.notice VALUES (11683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694692281);
INSERT INTO public.notice VALUES (11684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694692880);
INSERT INTO public.notice VALUES (11685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694693480);
INSERT INTO public.notice VALUES (11686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694694081);
INSERT INTO public.notice VALUES (11687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694694680);
INSERT INTO public.notice VALUES (11688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694695280);
INSERT INTO public.notice VALUES (11689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694695879);
INSERT INTO public.notice VALUES (11690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694696481);
INSERT INTO public.notice VALUES (11691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694697080);
INSERT INTO public.notice VALUES (11692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694697680);
INSERT INTO public.notice VALUES (11693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694698281);
INSERT INTO public.notice VALUES (11694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694698881);
INSERT INTO public.notice VALUES (11695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694699480);
INSERT INTO public.notice VALUES (11696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694700079);
INSERT INTO public.notice VALUES (11697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694700681);
INSERT INTO public.notice VALUES (11698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694701280);
INSERT INTO public.notice VALUES (11699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694701880);
INSERT INTO public.notice VALUES (11700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694702481);
INSERT INTO public.notice VALUES (13582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695832183);
INSERT INTO public.notice VALUES (13583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695832784);
INSERT INTO public.notice VALUES (13584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695833384);
INSERT INTO public.notice VALUES (13585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695833984);
INSERT INTO public.notice VALUES (13788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695955782);
INSERT INTO public.notice VALUES (13789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695956384);
INSERT INTO public.notice VALUES (13790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695956983);
INSERT INTO public.notice VALUES (13791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695957583);
INSERT INTO public.notice VALUES (13792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695958184);
INSERT INTO public.notice VALUES (11701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694703081);
INSERT INTO public.notice VALUES (11702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694703680);
INSERT INTO public.notice VALUES (11703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694704281);
INSERT INTO public.notice VALUES (11704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694704881);
INSERT INTO public.notice VALUES (11705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694705480);
INSERT INTO public.notice VALUES (11706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694706081);
INSERT INTO public.notice VALUES (11707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694706679);
INSERT INTO public.notice VALUES (11708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694707281);
INSERT INTO public.notice VALUES (11709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694707880);
INSERT INTO public.notice VALUES (11710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694708480);
INSERT INTO public.notice VALUES (11711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694709081);
INSERT INTO public.notice VALUES (11712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694709681);
INSERT INTO public.notice VALUES (11713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694710280);
INSERT INTO public.notice VALUES (11714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694710880);
INSERT INTO public.notice VALUES (11715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694711481);
INSERT INTO public.notice VALUES (11716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694712080);
INSERT INTO public.notice VALUES (11717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694713184);
INSERT INTO public.notice VALUES (11718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694713785);
INSERT INTO public.notice VALUES (11719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694714384);
INSERT INTO public.notice VALUES (11720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694714983);
INSERT INTO public.notice VALUES (11721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694715583);
INSERT INTO public.notice VALUES (11722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694716184);
INSERT INTO public.notice VALUES (11723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694716783);
INSERT INTO public.notice VALUES (11724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694717383);
INSERT INTO public.notice VALUES (11725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694717983);
INSERT INTO public.notice VALUES (11726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694718584);
INSERT INTO public.notice VALUES (11727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694719183);
INSERT INTO public.notice VALUES (11728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694719783);
INSERT INTO public.notice VALUES (11729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694720384);
INSERT INTO public.notice VALUES (11730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694720984);
INSERT INTO public.notice VALUES (11731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694721583);
INSERT INTO public.notice VALUES (11732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694722183);
INSERT INTO public.notice VALUES (11733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694722784);
INSERT INTO public.notice VALUES (11734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694723383);
INSERT INTO public.notice VALUES (11735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694723983);
INSERT INTO public.notice VALUES (11736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694724584);
INSERT INTO public.notice VALUES (11737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694725184);
INSERT INTO public.notice VALUES (11738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694725785);
INSERT INTO public.notice VALUES (11739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694726383);
INSERT INTO public.notice VALUES (11740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694726984);
INSERT INTO public.notice VALUES (11741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694727584);
INSERT INTO public.notice VALUES (11742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694728184);
INSERT INTO public.notice VALUES (11743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694728782);
INSERT INTO public.notice VALUES (11744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694729384);
INSERT INTO public.notice VALUES (11745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694729983);
INSERT INTO public.notice VALUES (11746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694730583);
INSERT INTO public.notice VALUES (11747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694731184);
INSERT INTO public.notice VALUES (11748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694731783);
INSERT INTO public.notice VALUES (11749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694732383);
INSERT INTO public.notice VALUES (11750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694732983);
INSERT INTO public.notice VALUES (11751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694733584);
INSERT INTO public.notice VALUES (11752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694734183);
INSERT INTO public.notice VALUES (11753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694734783);
INSERT INTO public.notice VALUES (11754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694735384);
INSERT INTO public.notice VALUES (11755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694735984);
INSERT INTO public.notice VALUES (11756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694736584);
INSERT INTO public.notice VALUES (11757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694737183);
INSERT INTO public.notice VALUES (11758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694737784);
INSERT INTO public.notice VALUES (11759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694738383);
INSERT INTO public.notice VALUES (11760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694738983);
INSERT INTO public.notice VALUES (11761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694739582);
INSERT INTO public.notice VALUES (11765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694741985);
INSERT INTO public.notice VALUES (11766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694742585);
INSERT INTO public.notice VALUES (11767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694743183);
INSERT INTO public.notice VALUES (11768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694743783);
INSERT INTO public.notice VALUES (11769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694744384);
INSERT INTO public.notice VALUES (11770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694744983);
INSERT INTO public.notice VALUES (11771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694745583);
INSERT INTO public.notice VALUES (11772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694746182);
INSERT INTO public.notice VALUES (11773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694746784);
INSERT INTO public.notice VALUES (11774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694747383);
INSERT INTO public.notice VALUES (11775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694747983);
INSERT INTO public.notice VALUES (11776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694748584);
INSERT INTO public.notice VALUES (11777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694749183);
INSERT INTO public.notice VALUES (11778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694749783);
INSERT INTO public.notice VALUES (11762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694740184);
INSERT INTO public.notice VALUES (11763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694740783);
INSERT INTO public.notice VALUES (11764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694741383);
INSERT INTO public.notice VALUES (11792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694758183);
INSERT INTO public.notice VALUES (11793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694758783);
INSERT INTO public.notice VALUES (11794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694759384);
INSERT INTO public.notice VALUES (11826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694778584);
INSERT INTO public.notice VALUES (11827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694779183);
INSERT INTO public.notice VALUES (11828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694779783);
INSERT INTO public.notice VALUES (11829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694780382);
INSERT INTO public.notice VALUES (11830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694780984);
INSERT INTO public.notice VALUES (11831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694781583);
INSERT INTO public.notice VALUES (11832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694782183);
INSERT INTO public.notice VALUES (11833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694782784);
INSERT INTO public.notice VALUES (11834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694783384);
INSERT INTO public.notice VALUES (11779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694750384);
INSERT INTO public.notice VALUES (11780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694750984);
INSERT INTO public.notice VALUES (11781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694751583);
INSERT INTO public.notice VALUES (11782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694752183);
INSERT INTO public.notice VALUES (11783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694752784);
INSERT INTO public.notice VALUES (11784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694753384);
INSERT INTO public.notice VALUES (11785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694753983);
INSERT INTO public.notice VALUES (11786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694754583);
INSERT INTO public.notice VALUES (11787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694755184);
INSERT INTO public.notice VALUES (11788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694755783);
INSERT INTO public.notice VALUES (11789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694756383);
INSERT INTO public.notice VALUES (11790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694756984);
INSERT INTO public.notice VALUES (11791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694757584);
INSERT INTO public.notice VALUES (11795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694759984);
INSERT INTO public.notice VALUES (11796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694760583);
INSERT INTO public.notice VALUES (11797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694761182);
INSERT INTO public.notice VALUES (11798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694761784);
INSERT INTO public.notice VALUES (11799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694762383);
INSERT INTO public.notice VALUES (11800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694762983);
INSERT INTO public.notice VALUES (11801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694763584);
INSERT INTO public.notice VALUES (11802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694764183);
INSERT INTO public.notice VALUES (11803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694764783);
INSERT INTO public.notice VALUES (11804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694765382);
INSERT INTO public.notice VALUES (11805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694765984);
INSERT INTO public.notice VALUES (11806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694766583);
INSERT INTO public.notice VALUES (11807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694767183);
INSERT INTO public.notice VALUES (11808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694767784);
INSERT INTO public.notice VALUES (11809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694768384);
INSERT INTO public.notice VALUES (11810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694768983);
INSERT INTO public.notice VALUES (11811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694769582);
INSERT INTO public.notice VALUES (11812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694770185);
INSERT INTO public.notice VALUES (11813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694770783);
INSERT INTO public.notice VALUES (11814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694771383);
INSERT INTO public.notice VALUES (11815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694771984);
INSERT INTO public.notice VALUES (11816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694772584);
INSERT INTO public.notice VALUES (11817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694773183);
INSERT INTO public.notice VALUES (11818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694773783);
INSERT INTO public.notice VALUES (11819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694774384);
INSERT INTO public.notice VALUES (11820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694774983);
INSERT INTO public.notice VALUES (11821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694775583);
INSERT INTO public.notice VALUES (11822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694776182);
INSERT INTO public.notice VALUES (11823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694776784);
INSERT INTO public.notice VALUES (11824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694777383);
INSERT INTO public.notice VALUES (11825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694777983);
INSERT INTO public.notice VALUES (11835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694783983);
INSERT INTO public.notice VALUES (11836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694784582);
INSERT INTO public.notice VALUES (11837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694785184);
INSERT INTO public.notice VALUES (11838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694785783);
INSERT INTO public.notice VALUES (11839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694786383);
INSERT INTO public.notice VALUES (11840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694786984);
INSERT INTO public.notice VALUES (11841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694787584);
INSERT INTO public.notice VALUES (11842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694788183);
INSERT INTO public.notice VALUES (11843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694788782);
INSERT INTO public.notice VALUES (11844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694789384);
INSERT INTO public.notice VALUES (11845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694789983);
INSERT INTO public.notice VALUES (11846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694790583);
INSERT INTO public.notice VALUES (11847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694791184);
INSERT INTO public.notice VALUES (11848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694791784);
INSERT INTO public.notice VALUES (13586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695834585);
INSERT INTO public.notice VALUES (13587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695835184);
INSERT INTO public.notice VALUES (11849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694792383);
INSERT INTO public.notice VALUES (11850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694792983);
INSERT INTO public.notice VALUES (11851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694793584);
INSERT INTO public.notice VALUES (11852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694794184);
INSERT INTO public.notice VALUES (11853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694794783);
INSERT INTO public.notice VALUES (11854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694795382);
INSERT INTO public.notice VALUES (11855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694795984);
INSERT INTO public.notice VALUES (11856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694796583);
INSERT INTO public.notice VALUES (11857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694797183);
INSERT INTO public.notice VALUES (11858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694797784);
INSERT INTO public.notice VALUES (11859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694798384);
INSERT INTO public.notice VALUES (11860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694798983);
INSERT INTO public.notice VALUES (11861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694799585);
INSERT INTO public.notice VALUES (11862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694800185);
INSERT INTO public.notice VALUES (11863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694800783);
INSERT INTO public.notice VALUES (11864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694801383);
INSERT INTO public.notice VALUES (11865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694801984);
INSERT INTO public.notice VALUES (11866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694802584);
INSERT INTO public.notice VALUES (11867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694803183);
INSERT INTO public.notice VALUES (11868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694803783);
INSERT INTO public.notice VALUES (11869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694804384);
INSERT INTO public.notice VALUES (11878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694809783);
INSERT INTO public.notice VALUES (11882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694812183);
INSERT INTO public.notice VALUES (11883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694812784);
INSERT INTO public.notice VALUES (11884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694813384);
INSERT INTO public.notice VALUES (11885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694813983);
INSERT INTO public.notice VALUES (11886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694814582);
INSERT INTO public.notice VALUES (11887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694815184);
INSERT INTO public.notice VALUES (11888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694815783);
INSERT INTO public.notice VALUES (11889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694816383);
INSERT INTO public.notice VALUES (11870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694804983);
INSERT INTO public.notice VALUES (11871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694805583);
INSERT INTO public.notice VALUES (11872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694806185);
INSERT INTO public.notice VALUES (11873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694806784);
INSERT INTO public.notice VALUES (11874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694807383);
INSERT INTO public.notice VALUES (11875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694807983);
INSERT INTO public.notice VALUES (11876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694808584);
INSERT INTO public.notice VALUES (11877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694809183);
INSERT INTO public.notice VALUES (11879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694810384);
INSERT INTO public.notice VALUES (11880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694810984);
INSERT INTO public.notice VALUES (11881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694811583);
INSERT INTO public.notice VALUES (11895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694819983);
INSERT INTO public.notice VALUES (11896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694820583);
INSERT INTO public.notice VALUES (11897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694821184);
INSERT INTO public.notice VALUES (11898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694821784);
INSERT INTO public.notice VALUES (11890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694816984);
INSERT INTO public.notice VALUES (11891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694817584);
INSERT INTO public.notice VALUES (11892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694818183);
INSERT INTO public.notice VALUES (11893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694818782);
INSERT INTO public.notice VALUES (11894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694819384);
INSERT INTO public.notice VALUES (11899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694822383);
INSERT INTO public.notice VALUES (11900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694822983);
INSERT INTO public.notice VALUES (11901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694823584);
INSERT INTO public.notice VALUES (11902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694824183);
INSERT INTO public.notice VALUES (11903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694824783);
INSERT INTO public.notice VALUES (11904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694825384);
INSERT INTO public.notice VALUES (11905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694825984);
INSERT INTO public.notice VALUES (11906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694826583);
INSERT INTO public.notice VALUES (11907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694827183);
INSERT INTO public.notice VALUES (11908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694827784);
INSERT INTO public.notice VALUES (11909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694828384);
INSERT INTO public.notice VALUES (11910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694828983);
INSERT INTO public.notice VALUES (11911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694829582);
INSERT INTO public.notice VALUES (11912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694830184);
INSERT INTO public.notice VALUES (11913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694830783);
INSERT INTO public.notice VALUES (11914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694831383);
INSERT INTO public.notice VALUES (11915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694831984);
INSERT INTO public.notice VALUES (11916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694832583);
INSERT INTO public.notice VALUES (11917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694833183);
INSERT INTO public.notice VALUES (11918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694833782);
INSERT INTO public.notice VALUES (11919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694834384);
INSERT INTO public.notice VALUES (11920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694834983);
INSERT INTO public.notice VALUES (11921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694835583);
INSERT INTO public.notice VALUES (11922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694836184);
INSERT INTO public.notice VALUES (11923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694836784);
INSERT INTO public.notice VALUES (11924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694837383);
INSERT INTO public.notice VALUES (11925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694837982);
INSERT INTO public.notice VALUES (11926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694838584);
INSERT INTO public.notice VALUES (11927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694839183);
INSERT INTO public.notice VALUES (11928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694839783);
INSERT INTO public.notice VALUES (11929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694840382);
INSERT INTO public.notice VALUES (11930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694840984);
INSERT INTO public.notice VALUES (11931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694841583);
INSERT INTO public.notice VALUES (11932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694842183);
INSERT INTO public.notice VALUES (11933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694842785);
INSERT INTO public.notice VALUES (11954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694855382);
INSERT INTO public.notice VALUES (11955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694855984);
INSERT INTO public.notice VALUES (11956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694856585);
INSERT INTO public.notice VALUES (11957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694857183);
INSERT INTO public.notice VALUES (11958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694857784);
INSERT INTO public.notice VALUES (11934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694843384);
INSERT INTO public.notice VALUES (11935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694843983);
INSERT INTO public.notice VALUES (11936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694844582);
INSERT INTO public.notice VALUES (11937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694845184);
INSERT INTO public.notice VALUES (11938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694845783);
INSERT INTO public.notice VALUES (11939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694846383);
INSERT INTO public.notice VALUES (11940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694846984);
INSERT INTO public.notice VALUES (11941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694847584);
INSERT INTO public.notice VALUES (11942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694848183);
INSERT INTO public.notice VALUES (11943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694848782);
INSERT INTO public.notice VALUES (11944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694849384);
INSERT INTO public.notice VALUES (11945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694849984);
INSERT INTO public.notice VALUES (11946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694850583);
INSERT INTO public.notice VALUES (11947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694851182);
INSERT INTO public.notice VALUES (11948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694851784);
INSERT INTO public.notice VALUES (11949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694852383);
INSERT INTO public.notice VALUES (11950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694852983);
INSERT INTO public.notice VALUES (11951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694853584);
INSERT INTO public.notice VALUES (11952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694854184);
INSERT INTO public.notice VALUES (11953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694854783);
INSERT INTO public.notice VALUES (11971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694865583);
INSERT INTO public.notice VALUES (11972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694866183);
INSERT INTO public.notice VALUES (13588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695835784);
INSERT INTO public.notice VALUES (13589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695836383);
INSERT INTO public.notice VALUES (13590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695836986);
INSERT INTO public.notice VALUES (13591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695837583);
INSERT INTO public.notice VALUES (13592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695838183);
INSERT INTO public.notice VALUES (13793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695958784);
INSERT INTO public.notice VALUES (13794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695959384);
INSERT INTO public.notice VALUES (13795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695959982);
INSERT INTO public.notice VALUES (11959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694858384);
INSERT INTO public.notice VALUES (11960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694858983);
INSERT INTO public.notice VALUES (11961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694859582);
INSERT INTO public.notice VALUES (11962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694860184);
INSERT INTO public.notice VALUES (11963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694860783);
INSERT INTO public.notice VALUES (11964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694861383);
INSERT INTO public.notice VALUES (11965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694861982);
INSERT INTO public.notice VALUES (11966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694862584);
INSERT INTO public.notice VALUES (11967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694863183);
INSERT INTO public.notice VALUES (11968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694863782);
INSERT INTO public.notice VALUES (11969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694864384);
INSERT INTO public.notice VALUES (11970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694864983);
INSERT INTO public.notice VALUES (11973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694866784);
INSERT INTO public.notice VALUES (11974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694867383);
INSERT INTO public.notice VALUES (11975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694867983);
INSERT INTO public.notice VALUES (11976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694868584);
INSERT INTO public.notice VALUES (11977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694869184);
INSERT INTO public.notice VALUES (11978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694869783);
INSERT INTO public.notice VALUES (11979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694870383);
INSERT INTO public.notice VALUES (11980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694870984);
INSERT INTO public.notice VALUES (11981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694871583);
INSERT INTO public.notice VALUES (11982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694872183);
INSERT INTO public.notice VALUES (11983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694872784);
INSERT INTO public.notice VALUES (11984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694873384);
INSERT INTO public.notice VALUES (11985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694873983);
INSERT INTO public.notice VALUES (11986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694874583);
INSERT INTO public.notice VALUES (11987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694875184);
INSERT INTO public.notice VALUES (11988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694875783);
INSERT INTO public.notice VALUES (11989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694876384);
INSERT INTO public.notice VALUES (11990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694876984);
INSERT INTO public.notice VALUES (11991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694877584);
INSERT INTO public.notice VALUES (11992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694878184);
INSERT INTO public.notice VALUES (11993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694878783);
INSERT INTO public.notice VALUES (11994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694879384);
INSERT INTO public.notice VALUES (11995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694879983);
INSERT INTO public.notice VALUES (11996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694880583);
INSERT INTO public.notice VALUES (11997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694881183);
INSERT INTO public.notice VALUES (13593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695838784);
INSERT INTO public.notice VALUES (13594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695839384);
INSERT INTO public.notice VALUES (13796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695960584);
INSERT INTO public.notice VALUES (13797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695961184);
INSERT INTO public.notice VALUES (13798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695961783);
INSERT INTO public.notice VALUES (13799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695962383);
INSERT INTO public.notice VALUES (13814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695971384);
INSERT INTO public.notice VALUES (13815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695971983);
INSERT INTO public.notice VALUES (11998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694881784);
INSERT INTO public.notice VALUES (11999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694882383);
INSERT INTO public.notice VALUES (12000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694882983);
INSERT INTO public.notice VALUES (12001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694883584);
INSERT INTO public.notice VALUES (12002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694884184);
INSERT INTO public.notice VALUES (12003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694884783);
INSERT INTO public.notice VALUES (12004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694885385);
INSERT INTO public.notice VALUES (12005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694885984);
INSERT INTO public.notice VALUES (12006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694886585);
INSERT INTO public.notice VALUES (12007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694887183);
INSERT INTO public.notice VALUES (12008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694887784);
INSERT INTO public.notice VALUES (12009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694888384);
INSERT INTO public.notice VALUES (12010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694888983);
INSERT INTO public.notice VALUES (12011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694889583);
INSERT INTO public.notice VALUES (12012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694890184);
INSERT INTO public.notice VALUES (12013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694890783);
INSERT INTO public.notice VALUES (12014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694891383);
INSERT INTO public.notice VALUES (12015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694891984);
INSERT INTO public.notice VALUES (12016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694892584);
INSERT INTO public.notice VALUES (12017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694893183);
INSERT INTO public.notice VALUES (12018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694893783);
INSERT INTO public.notice VALUES (12019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694894384);
INSERT INTO public.notice VALUES (12020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694894984);
INSERT INTO public.notice VALUES (12021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694895583);
INSERT INTO public.notice VALUES (12022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694896184);
INSERT INTO public.notice VALUES (12023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694896784);
INSERT INTO public.notice VALUES (12024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694897383);
INSERT INTO public.notice VALUES (12025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694897986);
INSERT INTO public.notice VALUES (12026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694898584);
INSERT INTO public.notice VALUES (12027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694899183);
INSERT INTO public.notice VALUES (12028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694899784);
INSERT INTO public.notice VALUES (12052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694914184);
INSERT INTO public.notice VALUES (12053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694914783);
INSERT INTO public.notice VALUES (12054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694915382);
INSERT INTO public.notice VALUES (12067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694923183);
INSERT INTO public.notice VALUES (12068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694923782);
INSERT INTO public.notice VALUES (12069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694924384);
INSERT INTO public.notice VALUES (12070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694924983);
INSERT INTO public.notice VALUES (12071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694925583);
INSERT INTO public.notice VALUES (12072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694926184);
INSERT INTO public.notice VALUES (12073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694926784);
INSERT INTO public.notice VALUES (12074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694927383);
INSERT INTO public.notice VALUES (12075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694927983);
INSERT INTO public.notice VALUES (12076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694928584);
INSERT INTO public.notice VALUES (12077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694929183);
INSERT INTO public.notice VALUES (12029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694900383);
INSERT INTO public.notice VALUES (12030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694900984);
INSERT INTO public.notice VALUES (12031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694901583);
INSERT INTO public.notice VALUES (12032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694902183);
INSERT INTO public.notice VALUES (12033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694902784);
INSERT INTO public.notice VALUES (12034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694903384);
INSERT INTO public.notice VALUES (12035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694903983);
INSERT INTO public.notice VALUES (12036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694904582);
INSERT INTO public.notice VALUES (12037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694905184);
INSERT INTO public.notice VALUES (12038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694905783);
INSERT INTO public.notice VALUES (12039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694906383);
INSERT INTO public.notice VALUES (12040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694906984);
INSERT INTO public.notice VALUES (12041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694907584);
INSERT INTO public.notice VALUES (12042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694908183);
INSERT INTO public.notice VALUES (12043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694908782);
INSERT INTO public.notice VALUES (12044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694909384);
INSERT INTO public.notice VALUES (12045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694909983);
INSERT INTO public.notice VALUES (12046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694910583);
INSERT INTO public.notice VALUES (12047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694911184);
INSERT INTO public.notice VALUES (12048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694911784);
INSERT INTO public.notice VALUES (12049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694912383);
INSERT INTO public.notice VALUES (12050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694912983);
INSERT INTO public.notice VALUES (12051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694913584);
INSERT INTO public.notice VALUES (12055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694915984);
INSERT INTO public.notice VALUES (12056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694916583);
INSERT INTO public.notice VALUES (12057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694917183);
INSERT INTO public.notice VALUES (12058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694917784);
INSERT INTO public.notice VALUES (12059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694918383);
INSERT INTO public.notice VALUES (12060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694918983);
INSERT INTO public.notice VALUES (12061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694919582);
INSERT INTO public.notice VALUES (12062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694920184);
INSERT INTO public.notice VALUES (12063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694920783);
INSERT INTO public.notice VALUES (12064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694921383);
INSERT INTO public.notice VALUES (12065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694921984);
INSERT INTO public.notice VALUES (12066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694922584);
INSERT INTO public.notice VALUES (12112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694950184);
INSERT INTO public.notice VALUES (12113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694950783);
INSERT INTO public.notice VALUES (12114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694951383);
INSERT INTO public.notice VALUES (12115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694951984);
INSERT INTO public.notice VALUES (12116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694952584);
INSERT INTO public.notice VALUES (12117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694953183);
INSERT INTO public.notice VALUES (12118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694953782);
INSERT INTO public.notice VALUES (12119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694954384);
INSERT INTO public.notice VALUES (12120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694954983);
INSERT INTO public.notice VALUES (13595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695839983);
INSERT INTO public.notice VALUES (12078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694929783);
INSERT INTO public.notice VALUES (12079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694930384);
INSERT INTO public.notice VALUES (12080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694930984);
INSERT INTO public.notice VALUES (12081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694931583);
INSERT INTO public.notice VALUES (12082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694932183);
INSERT INTO public.notice VALUES (12083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694932784);
INSERT INTO public.notice VALUES (12084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694933384);
INSERT INTO public.notice VALUES (12085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694933983);
INSERT INTO public.notice VALUES (12086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694934582);
INSERT INTO public.notice VALUES (12087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694935185);
INSERT INTO public.notice VALUES (12088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694935783);
INSERT INTO public.notice VALUES (12089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694936383);
INSERT INTO public.notice VALUES (12090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694936984);
INSERT INTO public.notice VALUES (12091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694937584);
INSERT INTO public.notice VALUES (12092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694938183);
INSERT INTO public.notice VALUES (12093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694938783);
INSERT INTO public.notice VALUES (12094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694939384);
INSERT INTO public.notice VALUES (12095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694939983);
INSERT INTO public.notice VALUES (12096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694940583);
INSERT INTO public.notice VALUES (12097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694941185);
INSERT INTO public.notice VALUES (12098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694941784);
INSERT INTO public.notice VALUES (12099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694942383);
INSERT INTO public.notice VALUES (12100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694942983);
INSERT INTO public.notice VALUES (12101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694943584);
INSERT INTO public.notice VALUES (12102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694944183);
INSERT INTO public.notice VALUES (12103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694944783);
INSERT INTO public.notice VALUES (12104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694945384);
INSERT INTO public.notice VALUES (12105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694945985);
INSERT INTO public.notice VALUES (12106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694946583);
INSERT INTO public.notice VALUES (12107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694947183);
INSERT INTO public.notice VALUES (12108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694947784);
INSERT INTO public.notice VALUES (12109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694948383);
INSERT INTO public.notice VALUES (12110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694948983);
INSERT INTO public.notice VALUES (12111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694949584);
INSERT INTO public.notice VALUES (12121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694955583);
INSERT INTO public.notice VALUES (12122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694956184);
INSERT INTO public.notice VALUES (12123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694956784);
INSERT INTO public.notice VALUES (12124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694957383);
INSERT INTO public.notice VALUES (12125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694957982);
INSERT INTO public.notice VALUES (12126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694958584);
INSERT INTO public.notice VALUES (12127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694959183);
INSERT INTO public.notice VALUES (12128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694959783);
INSERT INTO public.notice VALUES (12129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694960384);
INSERT INTO public.notice VALUES (12130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694960984);
INSERT INTO public.notice VALUES (12131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694961583);
INSERT INTO public.notice VALUES (12132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694962183);
INSERT INTO public.notice VALUES (12133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694962784);
INSERT INTO public.notice VALUES (12134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694963383);
INSERT INTO public.notice VALUES (12135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694963983);
INSERT INTO public.notice VALUES (12136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694964584);
INSERT INTO public.notice VALUES (12137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694965184);
INSERT INTO public.notice VALUES (12138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694965783);
INSERT INTO public.notice VALUES (12147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694971184);
INSERT INTO public.notice VALUES (12148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694971784);
INSERT INTO public.notice VALUES (12149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694972383);
INSERT INTO public.notice VALUES (12150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694972984);
INSERT INTO public.notice VALUES (12151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1694973594);
INSERT INTO public.notice VALUES (12152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694974183);
INSERT INTO public.notice VALUES (12153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694974783);
INSERT INTO public.notice VALUES (12154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694975384);
INSERT INTO public.notice VALUES (12155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694975984);
INSERT INTO public.notice VALUES (12139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694966383);
INSERT INTO public.notice VALUES (12140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694966984);
INSERT INTO public.notice VALUES (12141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694967583);
INSERT INTO public.notice VALUES (12142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694968183);
INSERT INTO public.notice VALUES (12143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694968782);
INSERT INTO public.notice VALUES (12144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694969384);
INSERT INTO public.notice VALUES (12145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694969983);
INSERT INTO public.notice VALUES (12146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694970583);
INSERT INTO public.notice VALUES (13596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695840583);
INSERT INTO public.notice VALUES (13597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695841184);
INSERT INTO public.notice VALUES (13800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695962984);
INSERT INTO public.notice VALUES (13801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695963583);
INSERT INTO public.notice VALUES (13802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695964183);
INSERT INTO public.notice VALUES (13803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695964784);
INSERT INTO public.notice VALUES (13804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695965384);
INSERT INTO public.notice VALUES (12156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694976583);
INSERT INTO public.notice VALUES (12157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694977183);
INSERT INTO public.notice VALUES (12158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694977784);
INSERT INTO public.notice VALUES (12159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694978384);
INSERT INTO public.notice VALUES (12160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694978983);
INSERT INTO public.notice VALUES (12161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694979583);
INSERT INTO public.notice VALUES (12162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694980184);
INSERT INTO public.notice VALUES (12163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694980783);
INSERT INTO public.notice VALUES (12164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694981383);
INSERT INTO public.notice VALUES (12165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694981984);
INSERT INTO public.notice VALUES (12166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694982584);
INSERT INTO public.notice VALUES (12167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694983185);
INSERT INTO public.notice VALUES (12168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694983783);
INSERT INTO public.notice VALUES (12169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694984384);
INSERT INTO public.notice VALUES (12170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694984984);
INSERT INTO public.notice VALUES (12171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694985583);
INSERT INTO public.notice VALUES (12172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694986184);
INSERT INTO public.notice VALUES (12194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694999384);
INSERT INTO public.notice VALUES (13598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695841784);
INSERT INTO public.notice VALUES (13599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695842383);
INSERT INTO public.notice VALUES (13805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695965983);
INSERT INTO public.notice VALUES (13894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696019384);
INSERT INTO public.notice VALUES (13895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696019984);
INSERT INTO public.notice VALUES (13896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696020585);
INSERT INTO public.notice VALUES (13897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696021184);
INSERT INTO public.notice VALUES (13898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696021784);
INSERT INTO public.notice VALUES (13899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696022384);
INSERT INTO public.notice VALUES (13900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696022985);
INSERT INTO public.notice VALUES (13901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696023583);
INSERT INTO public.notice VALUES (13902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696024184);
INSERT INTO public.notice VALUES (12174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694987383);
INSERT INTO public.notice VALUES (12175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694987983);
INSERT INTO public.notice VALUES (12176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694988584);
INSERT INTO public.notice VALUES (12177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694989183);
INSERT INTO public.notice VALUES (12178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694989783);
INSERT INTO public.notice VALUES (12179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694990385);
INSERT INTO public.notice VALUES (12180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694990984);
INSERT INTO public.notice VALUES (12181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694991583);
INSERT INTO public.notice VALUES (12182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694992183);
INSERT INTO public.notice VALUES (12183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694992784);
INSERT INTO public.notice VALUES (12184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694993384);
INSERT INTO public.notice VALUES (12185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694993983);
INSERT INTO public.notice VALUES (12186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694994582);
INSERT INTO public.notice VALUES (12187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Recv failure: Connection was reset
', 1694995222);
INSERT INTO public.notice VALUES (12188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694995783);
INSERT INTO public.notice VALUES (12189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694996383);
INSERT INTO public.notice VALUES (12190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694996984);
INSERT INTO public.notice VALUES (12191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694997584);
INSERT INTO public.notice VALUES (12192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694998183);
INSERT INTO public.notice VALUES (12193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694998782);
INSERT INTO public.notice VALUES (12195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1694999984);
INSERT INTO public.notice VALUES (12196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695000583);
INSERT INTO public.notice VALUES (12197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695001182);
INSERT INTO public.notice VALUES (12198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695001784);
INSERT INTO public.notice VALUES (12199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695002383);
INSERT INTO public.notice VALUES (12200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695002983);
INSERT INTO public.notice VALUES (12201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695003584);
INSERT INTO public.notice VALUES (12202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695004184);
INSERT INTO public.notice VALUES (12203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695004783);
INSERT INTO public.notice VALUES (12204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695005382);
INSERT INTO public.notice VALUES (12205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695005984);
INSERT INTO public.notice VALUES (12206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695006583);
INSERT INTO public.notice VALUES (12207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695007183);
INSERT INTO public.notice VALUES (12208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695007784);
INSERT INTO public.notice VALUES (12209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695008384);
INSERT INTO public.notice VALUES (12210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695008983);
INSERT INTO public.notice VALUES (12211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695009582);
INSERT INTO public.notice VALUES (12212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695010184);
INSERT INTO public.notice VALUES (12213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695010783);
INSERT INTO public.notice VALUES (13600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695842984);
INSERT INTO public.notice VALUES (13806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695966585);
INSERT INTO public.notice VALUES (13807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695967184);
INSERT INTO public.notice VALUES (13808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695967783);
INSERT INTO public.notice VALUES (13809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695968383);
INSERT INTO public.notice VALUES (13810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695968985);
INSERT INTO public.notice VALUES (13811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695969584);
INSERT INTO public.notice VALUES (12214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695011383);
INSERT INTO public.notice VALUES (12215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695011984);
INSERT INTO public.notice VALUES (12216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695012584);
INSERT INTO public.notice VALUES (12217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695013183);
INSERT INTO public.notice VALUES (12218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695013783);
INSERT INTO public.notice VALUES (12219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695014384);
INSERT INTO public.notice VALUES (12220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695014983);
INSERT INTO public.notice VALUES (12221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695015583);
INSERT INTO public.notice VALUES (12222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695016184);
INSERT INTO public.notice VALUES (12223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695016785);
INSERT INTO public.notice VALUES (12224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695017383);
INSERT INTO public.notice VALUES (12225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695017983);
INSERT INTO public.notice VALUES (12226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695018584);
INSERT INTO public.notice VALUES (12227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695019183);
INSERT INTO public.notice VALUES (12228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695019784);
INSERT INTO public.notice VALUES (12229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695020383);
INSERT INTO public.notice VALUES (12230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695020984);
INSERT INTO public.notice VALUES (12231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695021583);
INSERT INTO public.notice VALUES (12232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695022183);
INSERT INTO public.notice VALUES (12233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695022784);
INSERT INTO public.notice VALUES (12234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695023383);
INSERT INTO public.notice VALUES (12235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695023983);
INSERT INTO public.notice VALUES (12236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695024582);
INSERT INTO public.notice VALUES (12237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695025184);
INSERT INTO public.notice VALUES (12238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695025783);
INSERT INTO public.notice VALUES (12239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695026383);
INSERT INTO public.notice VALUES (12240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695026984);
INSERT INTO public.notice VALUES (12241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695027583);
INSERT INTO public.notice VALUES (12242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695028183);
INSERT INTO public.notice VALUES (12243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695028782);
INSERT INTO public.notice VALUES (12244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695029385);
INSERT INTO public.notice VALUES (12245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695029983);
INSERT INTO public.notice VALUES (12246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695030583);
INSERT INTO public.notice VALUES (12247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695031184);
INSERT INTO public.notice VALUES (12248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695031784);
INSERT INTO public.notice VALUES (12249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695032383);
INSERT INTO public.notice VALUES (12250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695032983);
INSERT INTO public.notice VALUES (12251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695033584);
INSERT INTO public.notice VALUES (12252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695034184);
INSERT INTO public.notice VALUES (12257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695037183);
INSERT INTO public.notice VALUES (12258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695037784);
INSERT INTO public.notice VALUES (13601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695843584);
INSERT INTO public.notice VALUES (13602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695844184);
INSERT INTO public.notice VALUES (13603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695844783);
INSERT INTO public.notice VALUES (13812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695970183);
INSERT INTO public.notice VALUES (12253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695034783);
INSERT INTO public.notice VALUES (12254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695035384);
INSERT INTO public.notice VALUES (12255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695035984);
INSERT INTO public.notice VALUES (12256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695036583);
INSERT INTO public.notice VALUES (12259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695038383);
INSERT INTO public.notice VALUES (12260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695038983);
INSERT INTO public.notice VALUES (12261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695039582);
INSERT INTO public.notice VALUES (12262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695040184);
INSERT INTO public.notice VALUES (12263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695040783);
INSERT INTO public.notice VALUES (12264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695041383);
INSERT INTO public.notice VALUES (12265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695041984);
INSERT INTO public.notice VALUES (12266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695042584);
INSERT INTO public.notice VALUES (12267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695043183);
INSERT INTO public.notice VALUES (12268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695043784);
INSERT INTO public.notice VALUES (12269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695044384);
INSERT INTO public.notice VALUES (12270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695044983);
INSERT INTO public.notice VALUES (12271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695045583);
INSERT INTO public.notice VALUES (12272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695046184);
INSERT INTO public.notice VALUES (12273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695046784);
INSERT INTO public.notice VALUES (12274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695047383);
INSERT INTO public.notice VALUES (12282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695052183);
INSERT INTO public.notice VALUES (12283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695052784);
INSERT INTO public.notice VALUES (12284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695053384);
INSERT INTO public.notice VALUES (12285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695053983);
INSERT INTO public.notice VALUES (12286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695054582);
INSERT INTO public.notice VALUES (12287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695055184);
INSERT INTO public.notice VALUES (13604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695845384);
INSERT INTO public.notice VALUES (13605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695845984);
INSERT INTO public.notice VALUES (13813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695970783);
INSERT INTO public.notice VALUES (13816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695972583);
INSERT INTO public.notice VALUES (12275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695047983);
INSERT INTO public.notice VALUES (12276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695048584);
INSERT INTO public.notice VALUES (12277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695049184);
INSERT INTO public.notice VALUES (12278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695049783);
INSERT INTO public.notice VALUES (12279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695050384);
INSERT INTO public.notice VALUES (12280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695050985);
INSERT INTO public.notice VALUES (12281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695051583);
INSERT INTO public.notice VALUES (12288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695055783);
INSERT INTO public.notice VALUES (12289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695056383);
INSERT INTO public.notice VALUES (12290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695056984);
INSERT INTO public.notice VALUES (12291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695057583);
INSERT INTO public.notice VALUES (12292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695058183);
INSERT INTO public.notice VALUES (12293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695058782);
INSERT INTO public.notice VALUES (12294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695059385);
INSERT INTO public.notice VALUES (12295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695059984);
INSERT INTO public.notice VALUES (12296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695060583);
INSERT INTO public.notice VALUES (12297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695061184);
INSERT INTO public.notice VALUES (12298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695061784);
INSERT INTO public.notice VALUES (12299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695062383);
INSERT INTO public.notice VALUES (12300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695062983);
INSERT INTO public.notice VALUES (12301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695063584);
INSERT INTO public.notice VALUES (12302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695064183);
INSERT INTO public.notice VALUES (12303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1695064793);
INSERT INTO public.notice VALUES (12304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695065384);
INSERT INTO public.notice VALUES (12305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695065984);
INSERT INTO public.notice VALUES (12306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695066583);
INSERT INTO public.notice VALUES (12367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695103183);
INSERT INTO public.notice VALUES (12368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695103782);
INSERT INTO public.notice VALUES (12369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695104384);
INSERT INTO public.notice VALUES (12370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695104983);
INSERT INTO public.notice VALUES (12371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695105583);
INSERT INTO public.notice VALUES (12307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695067183);
INSERT INTO public.notice VALUES (12308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695067784);
INSERT INTO public.notice VALUES (12309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695068384);
INSERT INTO public.notice VALUES (12310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695068983);
INSERT INTO public.notice VALUES (12311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695069583);
INSERT INTO public.notice VALUES (12312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695070184);
INSERT INTO public.notice VALUES (12313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695070783);
INSERT INTO public.notice VALUES (12314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695071383);
INSERT INTO public.notice VALUES (12315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695071984);
INSERT INTO public.notice VALUES (12316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695072583);
INSERT INTO public.notice VALUES (12317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695073183);
INSERT INTO public.notice VALUES (12318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695073782);
INSERT INTO public.notice VALUES (12319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695074384);
INSERT INTO public.notice VALUES (12320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695074983);
INSERT INTO public.notice VALUES (12321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695075584);
INSERT INTO public.notice VALUES (12322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695076185);
INSERT INTO public.notice VALUES (12323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695076784);
INSERT INTO public.notice VALUES (12324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695077383);
INSERT INTO public.notice VALUES (12325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695077982);
INSERT INTO public.notice VALUES (12326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695078584);
INSERT INTO public.notice VALUES (12327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695079183);
INSERT INTO public.notice VALUES (12328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695079783);
INSERT INTO public.notice VALUES (12329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695080383);
INSERT INTO public.notice VALUES (12330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695080985);
INSERT INTO public.notice VALUES (12331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695081583);
INSERT INTO public.notice VALUES (12332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695082183);
INSERT INTO public.notice VALUES (12333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695082784);
INSERT INTO public.notice VALUES (12334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695083384);
INSERT INTO public.notice VALUES (12335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695083983);
INSERT INTO public.notice VALUES (12336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695084582);
INSERT INTO public.notice VALUES (12337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695085184);
INSERT INTO public.notice VALUES (12338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695085783);
INSERT INTO public.notice VALUES (12339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695086383);
INSERT INTO public.notice VALUES (12340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695086984);
INSERT INTO public.notice VALUES (12341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695087584);
INSERT INTO public.notice VALUES (12342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695088183);
INSERT INTO public.notice VALUES (12343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695088783);
INSERT INTO public.notice VALUES (12344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695089384);
INSERT INTO public.notice VALUES (12345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695089984);
INSERT INTO public.notice VALUES (12346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695090583);
INSERT INTO public.notice VALUES (12347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695091182);
INSERT INTO public.notice VALUES (12348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695091785);
INSERT INTO public.notice VALUES (12349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695092383);
INSERT INTO public.notice VALUES (12350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695092983);
INSERT INTO public.notice VALUES (12351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695093584);
INSERT INTO public.notice VALUES (12352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695094183);
INSERT INTO public.notice VALUES (12353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695094783);
INSERT INTO public.notice VALUES (12354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695095382);
INSERT INTO public.notice VALUES (12355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695095984);
INSERT INTO public.notice VALUES (12356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695096583);
INSERT INTO public.notice VALUES (12357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695097183);
INSERT INTO public.notice VALUES (12358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695097784);
INSERT INTO public.notice VALUES (12359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695098384);
INSERT INTO public.notice VALUES (12360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695098983);
INSERT INTO public.notice VALUES (12361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695099582);
INSERT INTO public.notice VALUES (12362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695100184);
INSERT INTO public.notice VALUES (12363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695100783);
INSERT INTO public.notice VALUES (12364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695101383);
INSERT INTO public.notice VALUES (12365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695101984);
INSERT INTO public.notice VALUES (12366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695102584);
INSERT INTO public.notice VALUES (12372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695106182);
INSERT INTO public.notice VALUES (12373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695106784);
INSERT INTO public.notice VALUES (12374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695107384);
INSERT INTO public.notice VALUES (12388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695115785);
INSERT INTO public.notice VALUES (12389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695116383);
INSERT INTO public.notice VALUES (12391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695117584);
INSERT INTO public.notice VALUES (12392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695118184);
INSERT INTO public.notice VALUES (12393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695118783);
INSERT INTO public.notice VALUES (12394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695119384);
INSERT INTO public.notice VALUES (12395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695119984);
INSERT INTO public.notice VALUES (12396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695120583);
INSERT INTO public.notice VALUES (12397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695121183);
INSERT INTO public.notice VALUES (12398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695121784);
INSERT INTO public.notice VALUES (12399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695122383);
INSERT INTO public.notice VALUES (12400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695122983);
INSERT INTO public.notice VALUES (12375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695107983);
INSERT INTO public.notice VALUES (12376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695108584);
INSERT INTO public.notice VALUES (12377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695109184);
INSERT INTO public.notice VALUES (12378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695109783);
INSERT INTO public.notice VALUES (12379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695110382);
INSERT INTO public.notice VALUES (12380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695110984);
INSERT INTO public.notice VALUES (12381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695111583);
INSERT INTO public.notice VALUES (12382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695112183);
INSERT INTO public.notice VALUES (12383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695112785);
INSERT INTO public.notice VALUES (12384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695113384);
INSERT INTO public.notice VALUES (12385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695113983);
INSERT INTO public.notice VALUES (12386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695114583);
INSERT INTO public.notice VALUES (12387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695115184);
INSERT INTO public.notice VALUES (12390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695116983);
INSERT INTO public.notice VALUES (12403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695124783);
INSERT INTO public.notice VALUES (12401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695123584);
INSERT INTO public.notice VALUES (12402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695124184);
INSERT INTO public.notice VALUES (12412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695130184);
INSERT INTO public.notice VALUES (13606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695846583);
INSERT INTO public.notice VALUES (13607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695847183);
INSERT INTO public.notice VALUES (13608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695847784);
INSERT INTO public.notice VALUES (13817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695973184);
INSERT INTO public.notice VALUES (13818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695973784);
INSERT INTO public.notice VALUES (13819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695974383);
INSERT INTO public.notice VALUES (13820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695974982);
INSERT INTO public.notice VALUES (13821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695975584);
INSERT INTO public.notice VALUES (13822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695976183);
INSERT INTO public.notice VALUES (13823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695976783);
INSERT INTO public.notice VALUES (13833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695982783);
INSERT INTO public.notice VALUES (13834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695983383);
INSERT INTO public.notice VALUES (12404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695125383);
INSERT INTO public.notice VALUES (12405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695125984);
INSERT INTO public.notice VALUES (12406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695126583);
INSERT INTO public.notice VALUES (12407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695127183);
INSERT INTO public.notice VALUES (12408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695127782);
INSERT INTO public.notice VALUES (12409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695128384);
INSERT INTO public.notice VALUES (12410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695128983);
INSERT INTO public.notice VALUES (12411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695129583);
INSERT INTO public.notice VALUES (12413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695130784);
INSERT INTO public.notice VALUES (12414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695131383);
INSERT INTO public.notice VALUES (12415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695131984);
INSERT INTO public.notice VALUES (12416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695132584);
INSERT INTO public.notice VALUES (12417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695133183);
INSERT INTO public.notice VALUES (12418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695133783);
INSERT INTO public.notice VALUES (12419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695134384);
INSERT INTO public.notice VALUES (12420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695134984);
INSERT INTO public.notice VALUES (13609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695848383);
INSERT INTO public.notice VALUES (13610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695848983);
INSERT INTO public.notice VALUES (13611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695849588);
INSERT INTO public.notice VALUES (13824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695977384);
INSERT INTO public.notice VALUES (13825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695977984);
INSERT INTO public.notice VALUES (13826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695978583);
INSERT INTO public.notice VALUES (13827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695979183);
INSERT INTO public.notice VALUES (13903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696024785);
INSERT INTO public.notice VALUES (13921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696035585);
INSERT INTO public.notice VALUES (13930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696040983);
INSERT INTO public.notice VALUES (13931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696041584);
INSERT INTO public.notice VALUES (13932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696042185);
INSERT INTO public.notice VALUES (13933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696042783);
INSERT INTO public.notice VALUES (13934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696043383);
INSERT INTO public.notice VALUES (12421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695135583);
INSERT INTO public.notice VALUES (12422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695136183);
INSERT INTO public.notice VALUES (12423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695136784);
INSERT INTO public.notice VALUES (12424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695137384);
INSERT INTO public.notice VALUES (12425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695137983);
INSERT INTO public.notice VALUES (12426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695138584);
INSERT INTO public.notice VALUES (12427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695139184);
INSERT INTO public.notice VALUES (12428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695139783);
INSERT INTO public.notice VALUES (12429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695140383);
INSERT INTO public.notice VALUES (12430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695140984);
INSERT INTO public.notice VALUES (12431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695141584);
INSERT INTO public.notice VALUES (12432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695142183);
INSERT INTO public.notice VALUES (12433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695142782);
INSERT INTO public.notice VALUES (12434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695143384);
INSERT INTO public.notice VALUES (12435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695143983);
INSERT INTO public.notice VALUES (12436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695144583);
INSERT INTO public.notice VALUES (12437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695145184);
INSERT INTO public.notice VALUES (12438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695145785);
INSERT INTO public.notice VALUES (12441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695147584);
INSERT INTO public.notice VALUES (12442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695148183);
INSERT INTO public.notice VALUES (13612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695850184);
INSERT INTO public.notice VALUES (13613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695850783);
INSERT INTO public.notice VALUES (13828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695979785);
INSERT INTO public.notice VALUES (13829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695980383);
INSERT INTO public.notice VALUES (13830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695980983);
INSERT INTO public.notice VALUES (13831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695981582);
INSERT INTO public.notice VALUES (13832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695982184);
INSERT INTO public.notice VALUES (13843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695988784);
INSERT INTO public.notice VALUES (13844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695989384);
INSERT INTO public.notice VALUES (13845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695989984);
INSERT INTO public.notice VALUES (12439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695146383);
INSERT INTO public.notice VALUES (12440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695146982);
INSERT INTO public.notice VALUES (12443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695148783);
INSERT INTO public.notice VALUES (12444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695149383);
INSERT INTO public.notice VALUES (12445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695149984);
INSERT INTO public.notice VALUES (12446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695150583);
INSERT INTO public.notice VALUES (12447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695151183);
INSERT INTO public.notice VALUES (12448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695151784);
INSERT INTO public.notice VALUES (12449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695152384);
INSERT INTO public.notice VALUES (12450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695152983);
INSERT INTO public.notice VALUES (12451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695153584);
INSERT INTO public.notice VALUES (12452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695154184);
INSERT INTO public.notice VALUES (12453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695154783);
INSERT INTO public.notice VALUES (12454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695155383);
INSERT INTO public.notice VALUES (12455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695155984);
INSERT INTO public.notice VALUES (12456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695156584);
INSERT INTO public.notice VALUES (12457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695157183);
INSERT INTO public.notice VALUES (12458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695157783);
INSERT INTO public.notice VALUES (12459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695158384);
INSERT INTO public.notice VALUES (12466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695162584);
INSERT INTO public.notice VALUES (12467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695163183);
INSERT INTO public.notice VALUES (12468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695163783);
INSERT INTO public.notice VALUES (12469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695164382);
INSERT INTO public.notice VALUES (12470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695164984);
INSERT INTO public.notice VALUES (12471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695165583);
INSERT INTO public.notice VALUES (12472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695166183);
INSERT INTO public.notice VALUES (12473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695166784);
INSERT INTO public.notice VALUES (12474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695167383);
INSERT INTO public.notice VALUES (12475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695167983);
INSERT INTO public.notice VALUES (12476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695168582);
INSERT INTO public.notice VALUES (12460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695158983);
INSERT INTO public.notice VALUES (12461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695159583);
INSERT INTO public.notice VALUES (12462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695160184);
INSERT INTO public.notice VALUES (12463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695160784);
INSERT INTO public.notice VALUES (12464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695161383);
INSERT INTO public.notice VALUES (12465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695161983);
INSERT INTO public.notice VALUES (12481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695171584);
INSERT INTO public.notice VALUES (12482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695172183);
INSERT INTO public.notice VALUES (13614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695851384);
INSERT INTO public.notice VALUES (13615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695851985);
INSERT INTO public.notice VALUES (13616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695852584);
INSERT INTO public.notice VALUES (13617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695853184);
INSERT INTO public.notice VALUES (13618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695853783);
INSERT INTO public.notice VALUES (13619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695854385);
INSERT INTO public.notice VALUES (13620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695854984);
INSERT INTO public.notice VALUES (12477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695169185);
INSERT INTO public.notice VALUES (12478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695169783);
INSERT INTO public.notice VALUES (12479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695170383);
INSERT INTO public.notice VALUES (12480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695170984);
INSERT INTO public.notice VALUES (12483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695172783);
INSERT INTO public.notice VALUES (12484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695173384);
INSERT INTO public.notice VALUES (12485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695173983);
INSERT INTO public.notice VALUES (12486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695174584);
INSERT INTO public.notice VALUES (12487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695175184);
INSERT INTO public.notice VALUES (12488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695175784);
INSERT INTO public.notice VALUES (12489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695176383);
INSERT INTO public.notice VALUES (12490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695176983);
INSERT INTO public.notice VALUES (12491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695177584);
INSERT INTO public.notice VALUES (12492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695178184);
INSERT INTO public.notice VALUES (12493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695178783);
INSERT INTO public.notice VALUES (12494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695179383);
INSERT INTO public.notice VALUES (12495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695179984);
INSERT INTO public.notice VALUES (12496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695180584);
INSERT INTO public.notice VALUES (12497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695181183);
INSERT INTO public.notice VALUES (12498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695181784);
INSERT INTO public.notice VALUES (12499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695182384);
INSERT INTO public.notice VALUES (12500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695182983);
INSERT INTO public.notice VALUES (12501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695183582);
INSERT INTO public.notice VALUES (12502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695184184);
INSERT INTO public.notice VALUES (12503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695184783);
INSERT INTO public.notice VALUES (12504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695185383);
INSERT INTO public.notice VALUES (12505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695185984);
INSERT INTO public.notice VALUES (12506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695186584);
INSERT INTO public.notice VALUES (12507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695187183);
INSERT INTO public.notice VALUES (12508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695187783);
INSERT INTO public.notice VALUES (12509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695188384);
INSERT INTO public.notice VALUES (12510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695188984);
INSERT INTO public.notice VALUES (12511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695189613);
INSERT INTO public.notice VALUES (12512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695190183);
INSERT INTO public.notice VALUES (12513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695190784);
INSERT INTO public.notice VALUES (12523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695196784);
INSERT INTO public.notice VALUES (12524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695197384);
INSERT INTO public.notice VALUES (12525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695197983);
INSERT INTO public.notice VALUES (12526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695198583);
INSERT INTO public.notice VALUES (12527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695199184);
INSERT INTO public.notice VALUES (12528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695199784);
INSERT INTO public.notice VALUES (12529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695200383);
INSERT INTO public.notice VALUES (13621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695855584);
INSERT INTO public.notice VALUES (13622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695856184);
INSERT INTO public.notice VALUES (13623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695856785);
INSERT INTO public.notice VALUES (12514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695191384);
INSERT INTO public.notice VALUES (12515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695191983);
INSERT INTO public.notice VALUES (12516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695192584);
INSERT INTO public.notice VALUES (12517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695193184);
INSERT INTO public.notice VALUES (12518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695193783);
INSERT INTO public.notice VALUES (12519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695194383);
INSERT INTO public.notice VALUES (12520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695194984);
INSERT INTO public.notice VALUES (12521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695195583);
INSERT INTO public.notice VALUES (12522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695196183);
INSERT INTO public.notice VALUES (12530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695200984);
INSERT INTO public.notice VALUES (12531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695201584);
INSERT INTO public.notice VALUES (12532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695202184);
INSERT INTO public.notice VALUES (12533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695202783);
INSERT INTO public.notice VALUES (12534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695203384);
INSERT INTO public.notice VALUES (12535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695203984);
INSERT INTO public.notice VALUES (12536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695204583);
INSERT INTO public.notice VALUES (12537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695205183);
INSERT INTO public.notice VALUES (12538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695205785);
INSERT INTO public.notice VALUES (12539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695206384);
INSERT INTO public.notice VALUES (12540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695206983);
INSERT INTO public.notice VALUES (12541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695207584);
INSERT INTO public.notice VALUES (12542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695208184);
INSERT INTO public.notice VALUES (12543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695208783);
INSERT INTO public.notice VALUES (12544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695209383);
INSERT INTO public.notice VALUES (12545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695209984);
INSERT INTO public.notice VALUES (12546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695210584);
INSERT INTO public.notice VALUES (12566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695222582);
INSERT INTO public.notice VALUES (12567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695223184);
INSERT INTO public.notice VALUES (12568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695223783);
INSERT INTO public.notice VALUES (12569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695224383);
INSERT INTO public.notice VALUES (12547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695211183);
INSERT INTO public.notice VALUES (12548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695211784);
INSERT INTO public.notice VALUES (12549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695212384);
INSERT INTO public.notice VALUES (12550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695212983);
INSERT INTO public.notice VALUES (12551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695213583);
INSERT INTO public.notice VALUES (12552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695214184);
INSERT INTO public.notice VALUES (12553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695214784);
INSERT INTO public.notice VALUES (12554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695215383);
INSERT INTO public.notice VALUES (12555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695215982);
INSERT INTO public.notice VALUES (12556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695216584);
INSERT INTO public.notice VALUES (12557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695217183);
INSERT INTO public.notice VALUES (12558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695217784);
INSERT INTO public.notice VALUES (12559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695218384);
INSERT INTO public.notice VALUES (12560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695218985);
INSERT INTO public.notice VALUES (12561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695219583);
INSERT INTO public.notice VALUES (12562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695220182);
INSERT INTO public.notice VALUES (12563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695220784);
INSERT INTO public.notice VALUES (12564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695221383);
INSERT INTO public.notice VALUES (12565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695221983);
INSERT INTO public.notice VALUES (13624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695857384);
INSERT INTO public.notice VALUES (13625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695857983);
INSERT INTO public.notice VALUES (13626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695858585);
INSERT INTO public.notice VALUES (13636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695864582);
INSERT INTO public.notice VALUES (13637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695865184);
INSERT INTO public.notice VALUES (13835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695983984);
INSERT INTO public.notice VALUES (13836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695984584);
INSERT INTO public.notice VALUES (13837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695985183);
INSERT INTO public.notice VALUES (13838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695985782);
INSERT INTO public.notice VALUES (13839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695986384);
INSERT INTO public.notice VALUES (13840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695986984);
INSERT INTO public.notice VALUES (12570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695224984);
INSERT INTO public.notice VALUES (12571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695225584);
INSERT INTO public.notice VALUES (12572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695226183);
INSERT INTO public.notice VALUES (12573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695226782);
INSERT INTO public.notice VALUES (12574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695227384);
INSERT INTO public.notice VALUES (12575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695227985);
INSERT INTO public.notice VALUES (12576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695228583);
INSERT INTO public.notice VALUES (12577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695229184);
INSERT INTO public.notice VALUES (12578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695229784);
INSERT INTO public.notice VALUES (12579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695230383);
INSERT INTO public.notice VALUES (12580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695230982);
INSERT INTO public.notice VALUES (12581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695231584);
INSERT INTO public.notice VALUES (12582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695232185);
INSERT INTO public.notice VALUES (12583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695232783);
INSERT INTO public.notice VALUES (12584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695233384);
INSERT INTO public.notice VALUES (12585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695233984);
INSERT INTO public.notice VALUES (12586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695234583);
INSERT INTO public.notice VALUES (12595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695239984);
INSERT INTO public.notice VALUES (12596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695240584);
INSERT INTO public.notice VALUES (12597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695241183);
INSERT INTO public.notice VALUES (12598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695241783);
INSERT INTO public.notice VALUES (12599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695242384);
INSERT INTO public.notice VALUES (12600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695242984);
INSERT INTO public.notice VALUES (12601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695243583);
INSERT INTO public.notice VALUES (12602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695244182);
INSERT INTO public.notice VALUES (13630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695860984);
INSERT INTO public.notice VALUES (13631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695861584);
INSERT INTO public.notice VALUES (13632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695862182);
INSERT INTO public.notice VALUES (13633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695862785);
INSERT INTO public.notice VALUES (13841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695987584);
INSERT INTO public.notice VALUES (12587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695235183);
INSERT INTO public.notice VALUES (12588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695235784);
INSERT INTO public.notice VALUES (12589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695236384);
INSERT INTO public.notice VALUES (12590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695236983);
INSERT INTO public.notice VALUES (12591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695237582);
INSERT INTO public.notice VALUES (12592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695238184);
INSERT INTO public.notice VALUES (12593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695238783);
INSERT INTO public.notice VALUES (12594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695239383);
INSERT INTO public.notice VALUES (12603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695244785);
INSERT INTO public.notice VALUES (12604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695245383);
INSERT INTO public.notice VALUES (12605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695245983);
INSERT INTO public.notice VALUES (12606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695246584);
INSERT INTO public.notice VALUES (12607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695247183);
INSERT INTO public.notice VALUES (12608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695247783);
INSERT INTO public.notice VALUES (12609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695248382);
INSERT INTO public.notice VALUES (12610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695248984);
INSERT INTO public.notice VALUES (12611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695249583);
INSERT INTO public.notice VALUES (12612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695250183);
INSERT INTO public.notice VALUES (12613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695250782);
INSERT INTO public.notice VALUES (12614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695251384);
INSERT INTO public.notice VALUES (12615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695251983);
INSERT INTO public.notice VALUES (12616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695252583);
INSERT INTO public.notice VALUES (12617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695253184);
INSERT INTO public.notice VALUES (12618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695253784);
INSERT INTO public.notice VALUES (12619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695254383);
INSERT INTO public.notice VALUES (12620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695254982);
INSERT INTO public.notice VALUES (12621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695255584);
INSERT INTO public.notice VALUES (12622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695256183);
INSERT INTO public.notice VALUES (12623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695256783);
INSERT INTO public.notice VALUES (12624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695257384);
INSERT INTO public.notice VALUES (12625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695257984);
INSERT INTO public.notice VALUES (12626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695258583);
INSERT INTO public.notice VALUES (12627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695259182);
INSERT INTO public.notice VALUES (13634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695863383);
INSERT INTO public.notice VALUES (13635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695863984);
INSERT INTO public.notice VALUES (13639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695866382);
INSERT INTO public.notice VALUES (13842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695988185);
INSERT INTO public.notice VALUES (13852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695994183);
INSERT INTO public.notice VALUES (13905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696025984);
INSERT INTO public.notice VALUES (13906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696026583);
INSERT INTO public.notice VALUES (13907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696027184);
INSERT INTO public.notice VALUES (13908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696027783);
INSERT INTO public.notice VALUES (13909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696028384);
INSERT INTO public.notice VALUES (13910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696028985);
INSERT INTO public.notice VALUES (13911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696029584);
INSERT INTO public.notice VALUES (12628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695259784);
INSERT INTO public.notice VALUES (12629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695260383);
INSERT INTO public.notice VALUES (12630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695260983);
INSERT INTO public.notice VALUES (12631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695261584);
INSERT INTO public.notice VALUES (12632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695262184);
INSERT INTO public.notice VALUES (12633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695262783);
INSERT INTO public.notice VALUES (12634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695263384);
INSERT INTO public.notice VALUES (12635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695263982);
INSERT INTO public.notice VALUES (12636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695264584);
INSERT INTO public.notice VALUES (12637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695265183);
INSERT INTO public.notice VALUES (12638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695265783);
INSERT INTO public.notice VALUES (12639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695266384);
INSERT INTO public.notice VALUES (12640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695266983);
INSERT INTO public.notice VALUES (12641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695267583);
INSERT INTO public.notice VALUES (12642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695268182);
INSERT INTO public.notice VALUES (12643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695268784);
INSERT INTO public.notice VALUES (12644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695269383);
INSERT INTO public.notice VALUES (12645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695269983);
INSERT INTO public.notice VALUES (12646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695270584);
INSERT INTO public.notice VALUES (12647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695271184);
INSERT INTO public.notice VALUES (12648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695271783);
INSERT INTO public.notice VALUES (12649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695272383);
INSERT INTO public.notice VALUES (12650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695272984);
INSERT INTO public.notice VALUES (12651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695273583);
INSERT INTO public.notice VALUES (12652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695274183);
INSERT INTO public.notice VALUES (12653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695274784);
INSERT INTO public.notice VALUES (12654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695275384);
INSERT INTO public.notice VALUES (12655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695275983);
INSERT INTO public.notice VALUES (12656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695276583);
INSERT INTO public.notice VALUES (12657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695277184);
INSERT INTO public.notice VALUES (12658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695277783);
INSERT INTO public.notice VALUES (12659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695278383);
INSERT INTO public.notice VALUES (12660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695278982);
INSERT INTO public.notice VALUES (12661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695279584);
INSERT INTO public.notice VALUES (12662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695280183);
INSERT INTO public.notice VALUES (12663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695280783);
INSERT INTO public.notice VALUES (12664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695281384);
INSERT INTO public.notice VALUES (12665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695281984);
INSERT INTO public.notice VALUES (12675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695287984);
INSERT INTO public.notice VALUES (12676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695288585);
INSERT INTO public.notice VALUES (13638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695865784);
INSERT INTO public.notice VALUES (13640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695866984);
INSERT INTO public.notice VALUES (13641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695867583);
INSERT INTO public.notice VALUES (13642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695868183);
INSERT INTO public.notice VALUES (13643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695868795);
INSERT INTO public.notice VALUES (12666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695282584);
INSERT INTO public.notice VALUES (12667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695283182);
INSERT INTO public.notice VALUES (12668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695283784);
INSERT INTO public.notice VALUES (12669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695284383);
INSERT INTO public.notice VALUES (12670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695284983);
INSERT INTO public.notice VALUES (12671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695285584);
INSERT INTO public.notice VALUES (12672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695286184);
INSERT INTO public.notice VALUES (12673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695286783);
INSERT INTO public.notice VALUES (12674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695287382);
INSERT INTO public.notice VALUES (12677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695289183);
INSERT INTO public.notice VALUES (12678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695289782);
INSERT INTO public.notice VALUES (12679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695290384);
INSERT INTO public.notice VALUES (12680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695290983);
INSERT INTO public.notice VALUES (12681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695291583);
INSERT INTO public.notice VALUES (12682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695292184);
INSERT INTO public.notice VALUES (12683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695292784);
INSERT INTO public.notice VALUES (12684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695293383);
INSERT INTO public.notice VALUES (12685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695293983);
INSERT INTO public.notice VALUES (12686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695294584);
INSERT INTO public.notice VALUES (12687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695295183);
INSERT INTO public.notice VALUES (12688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695295783);
INSERT INTO public.notice VALUES (12689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695296382);
INSERT INTO public.notice VALUES (12690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695296984);
INSERT INTO public.notice VALUES (12691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695297583);
INSERT INTO public.notice VALUES (12692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695298183);
INSERT INTO public.notice VALUES (12693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695298784);
INSERT INTO public.notice VALUES (12694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695299384);
INSERT INTO public.notice VALUES (12695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695299983);
INSERT INTO public.notice VALUES (12696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695300582);
INSERT INTO public.notice VALUES (12697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695301184);
INSERT INTO public.notice VALUES (12698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695301783);
INSERT INTO public.notice VALUES (12699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695302383);
INSERT INTO public.notice VALUES (12705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695305983);
INSERT INTO public.notice VALUES (12706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695306583);
INSERT INTO public.notice VALUES (12707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695307182);
INSERT INTO public.notice VALUES (12708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695307784);
INSERT INTO public.notice VALUES (12709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695308383);
INSERT INTO public.notice VALUES (13644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695869384);
INSERT INTO public.notice VALUES (13646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695870583);
INSERT INTO public.notice VALUES (13647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695871184);
INSERT INTO public.notice VALUES (13648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695871783);
INSERT INTO public.notice VALUES (13649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695872383);
INSERT INTO public.notice VALUES (13846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695990585);
INSERT INTO public.notice VALUES (13847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695991184);
INSERT INTO public.notice VALUES (13848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695991784);
INSERT INTO public.notice VALUES (12700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695302984);
INSERT INTO public.notice VALUES (12701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695303584);
INSERT INTO public.notice VALUES (12702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695304183);
INSERT INTO public.notice VALUES (12703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695304783);
INSERT INTO public.notice VALUES (12704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695305384);
INSERT INTO public.notice VALUES (12710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695308983);
INSERT INTO public.notice VALUES (12711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695309584);
INSERT INTO public.notice VALUES (12712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695310183);
INSERT INTO public.notice VALUES (12713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695310783);
INSERT INTO public.notice VALUES (12714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695311382);
INSERT INTO public.notice VALUES (12715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695311984);
INSERT INTO public.notice VALUES (12716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695312583);
INSERT INTO public.notice VALUES (12717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695313183);
INSERT INTO public.notice VALUES (12718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695313785);
INSERT INTO public.notice VALUES (12719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695314384);
INSERT INTO public.notice VALUES (12720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695314983);
INSERT INTO public.notice VALUES (12721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695315582);
INSERT INTO public.notice VALUES (12722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695316184);
INSERT INTO public.notice VALUES (12723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695316783);
INSERT INTO public.notice VALUES (12724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695317383);
INSERT INTO public.notice VALUES (12725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695317984);
INSERT INTO public.notice VALUES (12726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695318585);
INSERT INTO public.notice VALUES (12727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695319183);
INSERT INTO public.notice VALUES (12728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695319783);
INSERT INTO public.notice VALUES (12729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695320384);
INSERT INTO public.notice VALUES (12730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695320984);
INSERT INTO public.notice VALUES (12731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695321583);
INSERT INTO public.notice VALUES (12732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695322182);
INSERT INTO public.notice VALUES (12733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695322784);
INSERT INTO public.notice VALUES (12734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695323383);
INSERT INTO public.notice VALUES (12735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695323983);
INSERT INTO public.notice VALUES (12736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695324584);
INSERT INTO public.notice VALUES (12737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695325183);
INSERT INTO public.notice VALUES (12738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695325784);
INSERT INTO public.notice VALUES (12739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695326382);
INSERT INTO public.notice VALUES (12740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695326984);
INSERT INTO public.notice VALUES (12742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695328183);
INSERT INTO public.notice VALUES (12743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695328784);
INSERT INTO public.notice VALUES (12744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695329384);
INSERT INTO public.notice VALUES (12805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695365984);
INSERT INTO public.notice VALUES (13645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695869983);
INSERT INTO public.notice VALUES (13693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695898783);
INSERT INTO public.notice VALUES (13694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695899384);
INSERT INTO public.notice VALUES (13695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695899984);
INSERT INTO public.notice VALUES (13696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695900583);
INSERT INTO public.notice VALUES (12741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695327583);
INSERT INTO public.notice VALUES (12745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695329983);
INSERT INTO public.notice VALUES (12746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695330583);
INSERT INTO public.notice VALUES (12747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695331184);
INSERT INTO public.notice VALUES (12748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695331783);
INSERT INTO public.notice VALUES (12749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695332383);
INSERT INTO public.notice VALUES (12750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695332982);
INSERT INTO public.notice VALUES (12751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695333584);
INSERT INTO public.notice VALUES (12752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695334183);
INSERT INTO public.notice VALUES (12753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695334783);
INSERT INTO public.notice VALUES (12754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695335384);
INSERT INTO public.notice VALUES (12755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695335984);
INSERT INTO public.notice VALUES (12756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695336583);
INSERT INTO public.notice VALUES (12757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695337183);
INSERT INTO public.notice VALUES (12758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695337784);
INSERT INTO public.notice VALUES (12759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695338384);
INSERT INTO public.notice VALUES (12760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695338987);
INSERT INTO public.notice VALUES (12761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695339584);
INSERT INTO public.notice VALUES (12762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695340184);
INSERT INTO public.notice VALUES (12763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695340783);
INSERT INTO public.notice VALUES (12764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695341383);
INSERT INTO public.notice VALUES (12765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695341984);
INSERT INTO public.notice VALUES (12766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695342583);
INSERT INTO public.notice VALUES (12767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695343183);
INSERT INTO public.notice VALUES (12768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695343782);
INSERT INTO public.notice VALUES (12769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695344388);
INSERT INTO public.notice VALUES (12770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695344983);
INSERT INTO public.notice VALUES (12771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695345583);
INSERT INTO public.notice VALUES (12772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695346184);
INSERT INTO public.notice VALUES (12773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695346784);
INSERT INTO public.notice VALUES (12774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695347383);
INSERT INTO public.notice VALUES (12775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695347982);
INSERT INTO public.notice VALUES (12776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695348585);
INSERT INTO public.notice VALUES (12777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695349183);
INSERT INTO public.notice VALUES (12778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695349783);
INSERT INTO public.notice VALUES (12779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695350382);
INSERT INTO public.notice VALUES (12780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695350984);
INSERT INTO public.notice VALUES (12781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695351583);
INSERT INTO public.notice VALUES (12782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695352183);
INSERT INTO public.notice VALUES (12783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695352784);
INSERT INTO public.notice VALUES (12784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695353383);
INSERT INTO public.notice VALUES (12785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695353983);
INSERT INTO public.notice VALUES (12786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695354582);
INSERT INTO public.notice VALUES (12787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695355184);
INSERT INTO public.notice VALUES (12788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695355783);
INSERT INTO public.notice VALUES (12789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695356383);
INSERT INTO public.notice VALUES (12790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695356984);
INSERT INTO public.notice VALUES (12791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695357584);
INSERT INTO public.notice VALUES (12792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695358183);
INSERT INTO public.notice VALUES (12793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695358784);
INSERT INTO public.notice VALUES (12794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695359384);
INSERT INTO public.notice VALUES (12795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695359983);
INSERT INTO public.notice VALUES (12796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695360583);
INSERT INTO public.notice VALUES (12797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695361182);
INSERT INTO public.notice VALUES (12798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695361784);
INSERT INTO public.notice VALUES (12799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695362383);
INSERT INTO public.notice VALUES (12800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695362983);
INSERT INTO public.notice VALUES (12801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695363584);
INSERT INTO public.notice VALUES (12802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695364185);
INSERT INTO public.notice VALUES (12803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695364784);
INSERT INTO public.notice VALUES (12804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695365382);
INSERT INTO public.notice VALUES (12806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695366583);
INSERT INTO public.notice VALUES (12807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695367183);
INSERT INTO public.notice VALUES (12808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695367784);
INSERT INTO public.notice VALUES (12809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695368384);
INSERT INTO public.notice VALUES (12810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695368983);
INSERT INTO public.notice VALUES (12811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695369583);
INSERT INTO public.notice VALUES (12812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695370184);
INSERT INTO public.notice VALUES (12813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695370783);
INSERT INTO public.notice VALUES (12814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695371383);
INSERT INTO public.notice VALUES (12815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695371982);
INSERT INTO public.notice VALUES (12816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695372584);
INSERT INTO public.notice VALUES (12817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695373183);
INSERT INTO public.notice VALUES (12818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695373783);
INSERT INTO public.notice VALUES (12819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695374384);
INSERT INTO public.notice VALUES (12820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695374984);
INSERT INTO public.notice VALUES (12821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695375583);
INSERT INTO public.notice VALUES (12822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695376183);
INSERT INTO public.notice VALUES (12823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695376784);
INSERT INTO public.notice VALUES (12824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695377383);
INSERT INTO public.notice VALUES (12825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695377983);
INSERT INTO public.notice VALUES (12826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695378585);
INSERT INTO public.notice VALUES (12827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695379184);
INSERT INTO public.notice VALUES (12828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695379783);
INSERT INTO public.notice VALUES (12851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695393584);
INSERT INTO public.notice VALUES (12852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695394184);
INSERT INTO public.notice VALUES (13650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695872982);
INSERT INTO public.notice VALUES (13651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695873584);
INSERT INTO public.notice VALUES (13652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695874183);
INSERT INTO public.notice VALUES (13653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695874783);
INSERT INTO public.notice VALUES (12829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695380382);
INSERT INTO public.notice VALUES (12830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695380984);
INSERT INTO public.notice VALUES (12831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695381585);
INSERT INTO public.notice VALUES (12832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695382183);
INSERT INTO public.notice VALUES (12833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695382782);
INSERT INTO public.notice VALUES (12834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695383384);
INSERT INTO public.notice VALUES (12835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695383983);
INSERT INTO public.notice VALUES (12836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695384583);
INSERT INTO public.notice VALUES (12837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695385184);
INSERT INTO public.notice VALUES (12838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695385783);
INSERT INTO public.notice VALUES (12839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695386383);
INSERT INTO public.notice VALUES (12840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695386982);
INSERT INTO public.notice VALUES (12841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695387584);
INSERT INTO public.notice VALUES (12842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695388183);
INSERT INTO public.notice VALUES (12843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695388783);
INSERT INTO public.notice VALUES (12844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695389384);
INSERT INTO public.notice VALUES (12845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695389984);
INSERT INTO public.notice VALUES (12846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695390583);
INSERT INTO public.notice VALUES (12847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695391183);
INSERT INTO public.notice VALUES (12848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695391784);
INSERT INTO public.notice VALUES (12849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695392384);
INSERT INTO public.notice VALUES (12850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695392983);
INSERT INTO public.notice VALUES (12853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695394783);
INSERT INTO public.notice VALUES (12854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695395383);
INSERT INTO public.notice VALUES (12855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695395984);
INSERT INTO public.notice VALUES (12856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695396584);
INSERT INTO public.notice VALUES (12857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695397183);
INSERT INTO public.notice VALUES (12858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695397782);
INSERT INTO public.notice VALUES (12859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695398384);
INSERT INTO public.notice VALUES (12860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695398983);
INSERT INTO public.notice VALUES (12861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695399583);
INSERT INTO public.notice VALUES (12862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695400185);
INSERT INTO public.notice VALUES (12863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695400784);
INSERT INTO public.notice VALUES (12864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695401383);
INSERT INTO public.notice VALUES (12865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695401982);
INSERT INTO public.notice VALUES (12866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695402584);
INSERT INTO public.notice VALUES (12867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695403184);
INSERT INTO public.notice VALUES (12868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695403783);
INSERT INTO public.notice VALUES (12869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695404382);
INSERT INTO public.notice VALUES (12870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695404985);
INSERT INTO public.notice VALUES (12871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695405583);
INSERT INTO public.notice VALUES (12872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695406183);
INSERT INTO public.notice VALUES (12873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695406784);
INSERT INTO public.notice VALUES (12874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695407384);
INSERT INTO public.notice VALUES (12875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695407983);
INSERT INTO public.notice VALUES (12876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695408585);
INSERT INTO public.notice VALUES (12877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695409184);
INSERT INTO public.notice VALUES (12878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695409783);
INSERT INTO public.notice VALUES (12879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695410383);
INSERT INTO public.notice VALUES (12880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695410984);
INSERT INTO public.notice VALUES (12881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695411585);
INSERT INTO public.notice VALUES (12882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695412183);
INSERT INTO public.notice VALUES (12883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695412782);
INSERT INTO public.notice VALUES (12884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695413384);
INSERT INTO public.notice VALUES (12885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695413983);
INSERT INTO public.notice VALUES (12886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695414583);
INSERT INTO public.notice VALUES (12887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695415184);
INSERT INTO public.notice VALUES (12888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695415784);
INSERT INTO public.notice VALUES (12889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695416383);
INSERT INTO public.notice VALUES (12892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695418183);
INSERT INTO public.notice VALUES (12890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695416983);
INSERT INTO public.notice VALUES (12891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695417584);
INSERT INTO public.notice VALUES (12893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695418783);
INSERT INTO public.notice VALUES (12894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695419382);
INSERT INTO public.notice VALUES (12895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695419984);
INSERT INTO public.notice VALUES (12896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695420583);
INSERT INTO public.notice VALUES (12897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695421183);
INSERT INTO public.notice VALUES (12898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695421784);
INSERT INTO public.notice VALUES (12899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695422383);
INSERT INTO public.notice VALUES (12900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695422983);
INSERT INTO public.notice VALUES (12901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695423585);
INSERT INTO public.notice VALUES (12902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695424184);
INSERT INTO public.notice VALUES (12903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695424783);
INSERT INTO public.notice VALUES (12904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695425383);
INSERT INTO public.notice VALUES (12905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695425985);
INSERT INTO public.notice VALUES (12906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695426584);
INSERT INTO public.notice VALUES (12907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695427183);
INSERT INTO public.notice VALUES (12908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695427782);
INSERT INTO public.notice VALUES (13654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695875383);
INSERT INTO public.notice VALUES (13655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695875984);
INSERT INTO public.notice VALUES (13656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695876583);
INSERT INTO public.notice VALUES (13657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695877183);
INSERT INTO public.notice VALUES (13849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695992384);
INSERT INTO public.notice VALUES (13850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695992984);
INSERT INTO public.notice VALUES (13851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695993584);
INSERT INTO public.notice VALUES (13855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695995983);
INSERT INTO public.notice VALUES (13912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696030184);
INSERT INTO public.notice VALUES (13913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696030783);
INSERT INTO public.notice VALUES (13914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696031385);
INSERT INTO public.notice VALUES (13915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696031984);
INSERT INTO public.notice VALUES (12909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695428384);
INSERT INTO public.notice VALUES (12910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695428983);
INSERT INTO public.notice VALUES (12911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695429583);
INSERT INTO public.notice VALUES (12912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695430184);
INSERT INTO public.notice VALUES (12913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695430784);
INSERT INTO public.notice VALUES (12914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695431383);
INSERT INTO public.notice VALUES (12915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695431983);
INSERT INTO public.notice VALUES (12916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695432584);
INSERT INTO public.notice VALUES (12917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695433184);
INSERT INTO public.notice VALUES (12918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695433783);
INSERT INTO public.notice VALUES (12919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695434383);
INSERT INTO public.notice VALUES (12920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695434984);
INSERT INTO public.notice VALUES (12921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695435583);
INSERT INTO public.notice VALUES (12922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695436183);
INSERT INTO public.notice VALUES (12923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695436784);
INSERT INTO public.notice VALUES (12924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695437384);
INSERT INTO public.notice VALUES (12925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695437983);
INSERT INTO public.notice VALUES (12926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695438583);
INSERT INTO public.notice VALUES (12927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695439184);
INSERT INTO public.notice VALUES (12928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695439783);
INSERT INTO public.notice VALUES (12929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695440383);
INSERT INTO public.notice VALUES (12930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695440984);
INSERT INTO public.notice VALUES (12931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695441584);
INSERT INTO public.notice VALUES (12932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695442183);
INSERT INTO public.notice VALUES (12933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695442783);
INSERT INTO public.notice VALUES (12934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695443384);
INSERT INTO public.notice VALUES (12935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695443984);
INSERT INTO public.notice VALUES (12936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695444583);
INSERT INTO public.notice VALUES (12937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695445182);
INSERT INTO public.notice VALUES (12938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695445784);
INSERT INTO public.notice VALUES (12939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695446383);
INSERT INTO public.notice VALUES (12940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695446984);
INSERT INTO public.notice VALUES (12941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695447584);
INSERT INTO public.notice VALUES (12942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695448184);
INSERT INTO public.notice VALUES (12943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695448784);
INSERT INTO public.notice VALUES (12944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695449383);
INSERT INTO public.notice VALUES (12945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695449984);
INSERT INTO public.notice VALUES (12946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695450583);
INSERT INTO public.notice VALUES (12947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695451183);
INSERT INTO public.notice VALUES (12948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695451784);
INSERT INTO public.notice VALUES (12958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695457783);
INSERT INTO public.notice VALUES (12959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695458384);
INSERT INTO public.notice VALUES (12961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695459583);
INSERT INTO public.notice VALUES (12962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695460182);
INSERT INTO public.notice VALUES (12963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695460784);
INSERT INTO public.notice VALUES (12949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695452384);
INSERT INTO public.notice VALUES (12950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695452983);
INSERT INTO public.notice VALUES (12951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695453583);
INSERT INTO public.notice VALUES (12952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695454184);
INSERT INTO public.notice VALUES (12953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695454783);
INSERT INTO public.notice VALUES (12954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695455383);
INSERT INTO public.notice VALUES (12955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695455982);
INSERT INTO public.notice VALUES (12956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695456584);
INSERT INTO public.notice VALUES (12957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695457183);
INSERT INTO public.notice VALUES (12960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695458984);
INSERT INTO public.notice VALUES (12979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695470383);
INSERT INTO public.notice VALUES (12980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695470983);
INSERT INTO public.notice VALUES (12981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695471584);
INSERT INTO public.notice VALUES (12982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695472183);
INSERT INTO public.notice VALUES (12983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695472783);
INSERT INTO public.notice VALUES (12964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695461384);
INSERT INTO public.notice VALUES (12965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695461983);
INSERT INTO public.notice VALUES (12966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695462582);
INSERT INTO public.notice VALUES (12967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695463184);
INSERT INTO public.notice VALUES (12968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695463783);
INSERT INTO public.notice VALUES (12969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695464383);
INSERT INTO public.notice VALUES (12970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695464984);
INSERT INTO public.notice VALUES (12971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695465584);
INSERT INTO public.notice VALUES (12972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695466183);
INSERT INTO public.notice VALUES (12973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695466782);
INSERT INTO public.notice VALUES (12974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695467384);
INSERT INTO public.notice VALUES (12975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695467983);
INSERT INTO public.notice VALUES (12976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695468583);
INSERT INTO public.notice VALUES (12977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695469184);
INSERT INTO public.notice VALUES (12978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695469784);
INSERT INTO public.notice VALUES (12984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695473382);
INSERT INTO public.notice VALUES (12987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695475183);
INSERT INTO public.notice VALUES (12988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695475784);
INSERT INTO public.notice VALUES (12989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695476384);
INSERT INTO public.notice VALUES (13658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695877784);
INSERT INTO public.notice VALUES (13659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695878383);
INSERT INTO public.notice VALUES (13660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695878983);
INSERT INTO public.notice VALUES (13661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695879583);
INSERT INTO public.notice VALUES (13662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695880184);
INSERT INTO public.notice VALUES (13853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695994785);
INSERT INTO public.notice VALUES (13854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695995385);
INSERT INTO public.notice VALUES (13858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695997784);
INSERT INTO public.notice VALUES (13859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695998383);
INSERT INTO public.notice VALUES (13860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695998984);
INSERT INTO public.notice VALUES (13861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695999584);
INSERT INTO public.notice VALUES (12985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695473984);
INSERT INTO public.notice VALUES (12986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695474583);
INSERT INTO public.notice VALUES (12990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695476983);
INSERT INTO public.notice VALUES (12991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695477582);
INSERT INTO public.notice VALUES (12992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695478184);
INSERT INTO public.notice VALUES (12993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695478784);
INSERT INTO public.notice VALUES (12994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695479383);
INSERT INTO public.notice VALUES (12995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695479984);
INSERT INTO public.notice VALUES (12996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695480584);
INSERT INTO public.notice VALUES (12997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695481183);
INSERT INTO public.notice VALUES (12998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695481783);
INSERT INTO public.notice VALUES (12999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695482384);
INSERT INTO public.notice VALUES (13000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695482983);
INSERT INTO public.notice VALUES (13001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695483583);
INSERT INTO public.notice VALUES (13002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695484182);
INSERT INTO public.notice VALUES (13003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695484784);
INSERT INTO public.notice VALUES (13004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695485383);
INSERT INTO public.notice VALUES (13005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695485983);
INSERT INTO public.notice VALUES (13006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695486584);
INSERT INTO public.notice VALUES (13007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695487183);
INSERT INTO public.notice VALUES (13008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695487783);
INSERT INTO public.notice VALUES (13009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695488385);
INSERT INTO public.notice VALUES (13010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695488984);
INSERT INTO public.notice VALUES (13011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695489583);
INSERT INTO public.notice VALUES (13012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695490183);
INSERT INTO public.notice VALUES (13013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695490784);
INSERT INTO public.notice VALUES (13020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695494982);
INSERT INTO public.notice VALUES (13021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695495584);
INSERT INTO public.notice VALUES (13022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695496183);
INSERT INTO public.notice VALUES (13023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695496783);
INSERT INTO public.notice VALUES (13014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695491385);
INSERT INTO public.notice VALUES (13015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695491983);
INSERT INTO public.notice VALUES (13016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695492583);
INSERT INTO public.notice VALUES (13017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695493184);
INSERT INTO public.notice VALUES (13018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695493783);
INSERT INTO public.notice VALUES (13019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695494383);
INSERT INTO public.notice VALUES (13037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695505183);
INSERT INTO public.notice VALUES (13038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695505782);
INSERT INTO public.notice VALUES (13039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695506384);
INSERT INTO public.notice VALUES (13040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695506984);
INSERT INTO public.notice VALUES (13041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695507583);
INSERT INTO public.notice VALUES (13042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695508184);
INSERT INTO public.notice VALUES (13043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695508783);
INSERT INTO public.notice VALUES (13044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695509383);
INSERT INTO public.notice VALUES (13045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695509982);
INSERT INTO public.notice VALUES (13024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695497384);
INSERT INTO public.notice VALUES (13025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695497984);
INSERT INTO public.notice VALUES (13026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695498583);
INSERT INTO public.notice VALUES (13027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695499182);
INSERT INTO public.notice VALUES (13028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695499784);
INSERT INTO public.notice VALUES (13029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695500383);
INSERT INTO public.notice VALUES (13030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695500983);
INSERT INTO public.notice VALUES (13031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695501584);
INSERT INTO public.notice VALUES (13032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695502184);
INSERT INTO public.notice VALUES (13033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695502783);
INSERT INTO public.notice VALUES (13034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695503383);
INSERT INTO public.notice VALUES (13035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695503985);
INSERT INTO public.notice VALUES (13036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695504583);
INSERT INTO public.notice VALUES (13051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695513583);
INSERT INTO public.notice VALUES (13052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695514183);
INSERT INTO public.notice VALUES (13046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695510585);
INSERT INTO public.notice VALUES (13047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695511183);
INSERT INTO public.notice VALUES (13048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695511783);
INSERT INTO public.notice VALUES (13049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695512385);
INSERT INTO public.notice VALUES (13050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695512984);
INSERT INTO public.notice VALUES (13056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695516582);
INSERT INTO public.notice VALUES (13057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695517184);
INSERT INTO public.notice VALUES (13058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695517783);
INSERT INTO public.notice VALUES (13059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695518383);
INSERT INTO public.notice VALUES (13060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695518984);
INSERT INTO public.notice VALUES (13061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695519584);
INSERT INTO public.notice VALUES (13062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695520183);
INSERT INTO public.notice VALUES (13063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695520782);
INSERT INTO public.notice VALUES (13064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695521384);
INSERT INTO public.notice VALUES (13065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695521983);
INSERT INTO public.notice VALUES (13053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695514784);
INSERT INTO public.notice VALUES (13054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695515384);
INSERT INTO public.notice VALUES (13055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695515983);
INSERT INTO public.notice VALUES (13069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695524383);
INSERT INTO public.notice VALUES (13070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695524983);
INSERT INTO public.notice VALUES (13071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695525584);
INSERT INTO public.notice VALUES (13072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695526183);
INSERT INTO public.notice VALUES (13073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695526783);
INSERT INTO public.notice VALUES (13663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695880783);
INSERT INTO public.notice VALUES (13664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695881383);
INSERT INTO public.notice VALUES (13665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695881984);
INSERT INTO public.notice VALUES (13666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695882584);
INSERT INTO public.notice VALUES (13667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695883183);
INSERT INTO public.notice VALUES (13668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695883783);
INSERT INTO public.notice VALUES (13669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695884385);
INSERT INTO public.notice VALUES (13066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695522583);
INSERT INTO public.notice VALUES (13067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695523184);
INSERT INTO public.notice VALUES (13068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695523784);
INSERT INTO public.notice VALUES (13074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695527384);
INSERT INTO public.notice VALUES (13075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695527984);
INSERT INTO public.notice VALUES (13076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695528583);
INSERT INTO public.notice VALUES (13077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695529183);
INSERT INTO public.notice VALUES (13078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695529784);
INSERT INTO public.notice VALUES (13079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695530383);
INSERT INTO public.notice VALUES (13080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695530983);
INSERT INTO public.notice VALUES (13081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695531582);
INSERT INTO public.notice VALUES (13082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695532184);
INSERT INTO public.notice VALUES (13083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695532783);
INSERT INTO public.notice VALUES (13084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695533383);
INSERT INTO public.notice VALUES (13085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695533984);
INSERT INTO public.notice VALUES (13086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695534584);
INSERT INTO public.notice VALUES (13087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695535183);
INSERT INTO public.notice VALUES (13088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695535782);
INSERT INTO public.notice VALUES (13089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695536384);
INSERT INTO public.notice VALUES (13090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695536983);
INSERT INTO public.notice VALUES (13091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695537583);
INSERT INTO public.notice VALUES (13092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695538185);
INSERT INTO public.notice VALUES (13093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695538784);
INSERT INTO public.notice VALUES (13094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695539383);
INSERT INTO public.notice VALUES (13095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695539983);
INSERT INTO public.notice VALUES (13096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695540584);
INSERT INTO public.notice VALUES (13097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695541184);
INSERT INTO public.notice VALUES (13098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695541783);
INSERT INTO public.notice VALUES (13099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695542383);
INSERT INTO public.notice VALUES (13100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695542984);
INSERT INTO public.notice VALUES (13101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695543583);
INSERT INTO public.notice VALUES (13108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695547785);
INSERT INTO public.notice VALUES (13109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695548383);
INSERT INTO public.notice VALUES (13670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695884983);
INSERT INTO public.notice VALUES (13671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695885583);
INSERT INTO public.notice VALUES (13672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695886182);
INSERT INTO public.notice VALUES (13673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695886784);
INSERT INTO public.notice VALUES (13674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695887383);
INSERT INTO public.notice VALUES (13675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695887983);
INSERT INTO public.notice VALUES (13676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695888584);
INSERT INTO public.notice VALUES (13677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695889183);
INSERT INTO public.notice VALUES (13678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695889783);
INSERT INTO public.notice VALUES (13679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695890383);
INSERT INTO public.notice VALUES (13680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695890984);
INSERT INTO public.notice VALUES (13681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695891583);
INSERT INTO public.notice VALUES (13102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695544184);
INSERT INTO public.notice VALUES (13103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695544784);
INSERT INTO public.notice VALUES (13104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695545384);
INSERT INTO public.notice VALUES (13105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695545983);
INSERT INTO public.notice VALUES (13106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695546583);
INSERT INTO public.notice VALUES (13107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695547184);
INSERT INTO public.notice VALUES (13110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695548982);
INSERT INTO public.notice VALUES (13111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695549584);
INSERT INTO public.notice VALUES (13112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695550183);
INSERT INTO public.notice VALUES (13113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695550783);
INSERT INTO public.notice VALUES (13114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695551384);
INSERT INTO public.notice VALUES (13115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695551983);
INSERT INTO public.notice VALUES (13116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695552583);
INSERT INTO public.notice VALUES (13117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695553182);
INSERT INTO public.notice VALUES (13118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695553784);
INSERT INTO public.notice VALUES (13119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695554383);
INSERT INTO public.notice VALUES (13120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695554983);
INSERT INTO public.notice VALUES (13121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695555585);
INSERT INTO public.notice VALUES (13122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695556184);
INSERT INTO public.notice VALUES (13123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695556783);
INSERT INTO public.notice VALUES (13124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695557383);
INSERT INTO public.notice VALUES (13125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695557984);
INSERT INTO public.notice VALUES (13126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695558583);
INSERT INTO public.notice VALUES (13127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695559183);
INSERT INTO public.notice VALUES (13128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695559784);
INSERT INTO public.notice VALUES (13129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695560384);
INSERT INTO public.notice VALUES (13130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695560983);
INSERT INTO public.notice VALUES (13131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695561583);
INSERT INTO public.notice VALUES (13132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695562184);
INSERT INTO public.notice VALUES (13133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695562784);
INSERT INTO public.notice VALUES (13134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695563383);
INSERT INTO public.notice VALUES (13135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695563982);
INSERT INTO public.notice VALUES (13136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695564584);
INSERT INTO public.notice VALUES (13153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695574784);
INSERT INTO public.notice VALUES (13682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695892183);
INSERT INTO public.notice VALUES (13683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695892784);
INSERT INTO public.notice VALUES (13684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695893385);
INSERT INTO public.notice VALUES (13685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695893983);
INSERT INTO public.notice VALUES (13686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695894582);
INSERT INTO public.notice VALUES (13687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695895184);
INSERT INTO public.notice VALUES (13688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695895783);
INSERT INTO public.notice VALUES (13689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695896383);
INSERT INTO public.notice VALUES (13690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695896982);
INSERT INTO public.notice VALUES (13691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695897584);
INSERT INTO public.notice VALUES (13692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695898184);
INSERT INTO public.notice VALUES (13137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695565183);
INSERT INTO public.notice VALUES (13138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695565783);
INSERT INTO public.notice VALUES (13139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695566384);
INSERT INTO public.notice VALUES (13140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695566984);
INSERT INTO public.notice VALUES (13141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695567584);
INSERT INTO public.notice VALUES (13142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695568183);
INSERT INTO public.notice VALUES (13143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695568784);
INSERT INTO public.notice VALUES (13144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695569383);
INSERT INTO public.notice VALUES (13145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695569983);
INSERT INTO public.notice VALUES (13146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695570582);
INSERT INTO public.notice VALUES (13147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695571184);
INSERT INTO public.notice VALUES (13148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695571783);
INSERT INTO public.notice VALUES (13149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695572383);
INSERT INTO public.notice VALUES (13150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695572984);
INSERT INTO public.notice VALUES (13151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695573583);
INSERT INTO public.notice VALUES (13152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695574183);
INSERT INTO public.notice VALUES (13154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695575384);
INSERT INTO public.notice VALUES (13155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695575983);
INSERT INTO public.notice VALUES (13156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695576583);
INSERT INTO public.notice VALUES (13157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695577184);
INSERT INTO public.notice VALUES (13158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695577785);
INSERT INTO public.notice VALUES (13159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695578383);
INSERT INTO public.notice VALUES (13160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695578982);
INSERT INTO public.notice VALUES (13161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695579584);
INSERT INTO public.notice VALUES (13162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695580183);
INSERT INTO public.notice VALUES (13163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695580783);
INSERT INTO public.notice VALUES (13164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695581384);
INSERT INTO public.notice VALUES (13165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695581984);
INSERT INTO public.notice VALUES (13166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1695582593);
INSERT INTO public.notice VALUES (13167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695583183);
INSERT INTO public.notice VALUES (13168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695583784);
INSERT INTO public.notice VALUES (13169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695584383);
INSERT INTO public.notice VALUES (13179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695590384);
INSERT INTO public.notice VALUES (13180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695590983);
INSERT INTO public.notice VALUES (13181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695591583);
INSERT INTO public.notice VALUES (13182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695592182);
INSERT INTO public.notice VALUES (13183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695592784);
INSERT INTO public.notice VALUES (13184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': The requested URL returned error: 502
', 1695593382);
INSERT INTO public.notice VALUES (13185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695593983);
INSERT INTO public.notice VALUES (13186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695594584);
INSERT INTO public.notice VALUES (13187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695595184);
INSERT INTO public.notice VALUES (13188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695595783);
INSERT INTO public.notice VALUES (13189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695596382);
INSERT INTO public.notice VALUES (13190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695596984);
INSERT INTO public.notice VALUES (13191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695597583);
INSERT INTO public.notice VALUES (13697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695901183);
INSERT INTO public.notice VALUES (13698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695901785);
INSERT INTO public.notice VALUES (13170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695584983);
INSERT INTO public.notice VALUES (13171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695585582);
INSERT INTO public.notice VALUES (13172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695586184);
INSERT INTO public.notice VALUES (13173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695586783);
INSERT INTO public.notice VALUES (13174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695587383);
INSERT INTO public.notice VALUES (13175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695587984);
INSERT INTO public.notice VALUES (13176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695588584);
INSERT INTO public.notice VALUES (13177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695589183);
INSERT INTO public.notice VALUES (13178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695589783);
INSERT INTO public.notice VALUES (13192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695598183);
INSERT INTO public.notice VALUES (13193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Recv failure: Connection was reset
', 1695598957);
INSERT INTO public.notice VALUES (13194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695599384);
INSERT INTO public.notice VALUES (13195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695599983);
INSERT INTO public.notice VALUES (13196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695600582);
INSERT INTO public.notice VALUES (13197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695601184);
INSERT INTO public.notice VALUES (13198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695601783);
INSERT INTO public.notice VALUES (13199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695602383);
INSERT INTO public.notice VALUES (13200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695602984);
INSERT INTO public.notice VALUES (13210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695608983);
INSERT INTO public.notice VALUES (13211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695609584);
INSERT INTO public.notice VALUES (13212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695610184);
INSERT INTO public.notice VALUES (13213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695610783);
INSERT INTO public.notice VALUES (13214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695611382);
INSERT INTO public.notice VALUES (13215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695611984);
INSERT INTO public.notice VALUES (13221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695615583);
INSERT INTO public.notice VALUES (13222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695616184);
INSERT INTO public.notice VALUES (13223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695616784);
INSERT INTO public.notice VALUES (13224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695617383);
INSERT INTO public.notice VALUES (13699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695902383);
INSERT INTO public.notice VALUES (13700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695902983);
INSERT INTO public.notice VALUES (13701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695903586);
INSERT INTO public.notice VALUES (13201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695603584);
INSERT INTO public.notice VALUES (13202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695604183);
INSERT INTO public.notice VALUES (13203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695604783);
INSERT INTO public.notice VALUES (13204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695605384);
INSERT INTO public.notice VALUES (13205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695605984);
INSERT INTO public.notice VALUES (13206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695606583);
INSERT INTO public.notice VALUES (13207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695607184);
INSERT INTO public.notice VALUES (13208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695607784);
INSERT INTO public.notice VALUES (13209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695608390);
INSERT INTO public.notice VALUES (13216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695612583);
INSERT INTO public.notice VALUES (13217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695613183);
INSERT INTO public.notice VALUES (13218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695613784);
INSERT INTO public.notice VALUES (13219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695614384);
INSERT INTO public.notice VALUES (13220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695614983);
INSERT INTO public.notice VALUES (13225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695617984);
INSERT INTO public.notice VALUES (13226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695618584);
INSERT INTO public.notice VALUES (13227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695619183);
INSERT INTO public.notice VALUES (13228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695619783);
INSERT INTO public.notice VALUES (13229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695620384);
INSERT INTO public.notice VALUES (13230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695620984);
INSERT INTO public.notice VALUES (13231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695621583);
INSERT INTO public.notice VALUES (13232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695622184);
INSERT INTO public.notice VALUES (13233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695622784);
INSERT INTO public.notice VALUES (13245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695629983);
INSERT INTO public.notice VALUES (13246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695630583);
INSERT INTO public.notice VALUES (13247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695631184);
INSERT INTO public.notice VALUES (13248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695631784);
INSERT INTO public.notice VALUES (13251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695633585);
INSERT INTO public.notice VALUES (13252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695634184);
INSERT INTO public.notice VALUES (13253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695634783);
INSERT INTO public.notice VALUES (13234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695623383);
INSERT INTO public.notice VALUES (13235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695623983);
INSERT INTO public.notice VALUES (13236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695624584);
INSERT INTO public.notice VALUES (13237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695625185);
INSERT INTO public.notice VALUES (13238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695625783);
INSERT INTO public.notice VALUES (13239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695626383);
INSERT INTO public.notice VALUES (13240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695626984);
INSERT INTO public.notice VALUES (13241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695627583);
INSERT INTO public.notice VALUES (13242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695628183);
INSERT INTO public.notice VALUES (13243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695628784);
INSERT INTO public.notice VALUES (13244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695629384);
INSERT INTO public.notice VALUES (13249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695632383);
INSERT INTO public.notice VALUES (13250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695632982);
INSERT INTO public.notice VALUES (13259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695638383);
INSERT INTO public.notice VALUES (13275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695647982);
INSERT INTO public.notice VALUES (13254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695635384);
INSERT INTO public.notice VALUES (13255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695635984);
INSERT INTO public.notice VALUES (13256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695636583);
INSERT INTO public.notice VALUES (13257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695637182);
INSERT INTO public.notice VALUES (13258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695637784);
INSERT INTO public.notice VALUES (13260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695638983);
INSERT INTO public.notice VALUES (13261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695639584);
INSERT INTO public.notice VALUES (13262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695640184);
INSERT INTO public.notice VALUES (13263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695640783);
INSERT INTO public.notice VALUES (13264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695641384);
INSERT INTO public.notice VALUES (13265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695641984);
INSERT INTO public.notice VALUES (13266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695642583);
INSERT INTO public.notice VALUES (13267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695643183);
INSERT INTO public.notice VALUES (13268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695643784);
INSERT INTO public.notice VALUES (13269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695644384);
INSERT INTO public.notice VALUES (13270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695644983);
INSERT INTO public.notice VALUES (13271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695645583);
INSERT INTO public.notice VALUES (13272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695646184);
INSERT INTO public.notice VALUES (13273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695646783);
INSERT INTO public.notice VALUES (13274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695647383);
INSERT INTO public.notice VALUES (13296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695660583);
INSERT INTO public.notice VALUES (13297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695661184);
INSERT INTO public.notice VALUES (13310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695668983);
INSERT INTO public.notice VALUES (13702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695904184);
INSERT INTO public.notice VALUES (13703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695904783);
INSERT INTO public.notice VALUES (13704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695905383);
INSERT INTO public.notice VALUES (13705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695905984);
INSERT INTO public.notice VALUES (13856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695996586);
INSERT INTO public.notice VALUES (13857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695997185);
INSERT INTO public.notice VALUES (13904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696025385);
INSERT INTO public.notice VALUES (13276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695648584);
INSERT INTO public.notice VALUES (13277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695649183);
INSERT INTO public.notice VALUES (13278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695649783);
INSERT INTO public.notice VALUES (13279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695650384);
INSERT INTO public.notice VALUES (13280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695650984);
INSERT INTO public.notice VALUES (13281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695651583);
INSERT INTO public.notice VALUES (13282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695652182);
INSERT INTO public.notice VALUES (13283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695652784);
INSERT INTO public.notice VALUES (13284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695653384);
INSERT INTO public.notice VALUES (13285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695653983);
INSERT INTO public.notice VALUES (13286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695654584);
INSERT INTO public.notice VALUES (13287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695655184);
INSERT INTO public.notice VALUES (13288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695655783);
INSERT INTO public.notice VALUES (13289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695656383);
INSERT INTO public.notice VALUES (13290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695656985);
INSERT INTO public.notice VALUES (13291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695657584);
INSERT INTO public.notice VALUES (13292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695658183);
INSERT INTO public.notice VALUES (13293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695658783);
INSERT INTO public.notice VALUES (13294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695659384);
INSERT INTO public.notice VALUES (13295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695659983);
INSERT INTO public.notice VALUES (13298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695661784);
INSERT INTO public.notice VALUES (13299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695662383);
INSERT INTO public.notice VALUES (13300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695662982);
INSERT INTO public.notice VALUES (13301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695663584);
INSERT INTO public.notice VALUES (13302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695664185);
INSERT INTO public.notice VALUES (13303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695664787);
INSERT INTO public.notice VALUES (13304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695665384);
INSERT INTO public.notice VALUES (13305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695665984);
INSERT INTO public.notice VALUES (13306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695666583);
INSERT INTO public.notice VALUES (13307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695667183);
INSERT INTO public.notice VALUES (13308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695667784);
INSERT INTO public.notice VALUES (13309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695668384);
INSERT INTO public.notice VALUES (13311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695669584);
INSERT INTO public.notice VALUES (13312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695670184);
INSERT INTO public.notice VALUES (13313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695670783);
INSERT INTO public.notice VALUES (13314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695671383);
INSERT INTO public.notice VALUES (13315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695671984);
INSERT INTO public.notice VALUES (13316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695672584);
INSERT INTO public.notice VALUES (13317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695673183);
INSERT INTO public.notice VALUES (13318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695673783);
INSERT INTO public.notice VALUES (13319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695674384);
INSERT INTO public.notice VALUES (13320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695674983);
INSERT INTO public.notice VALUES (13321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695675583);
INSERT INTO public.notice VALUES (13322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695676184);
INSERT INTO public.notice VALUES (13323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695676784);
INSERT INTO public.notice VALUES (13324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695677383);
INSERT INTO public.notice VALUES (13325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695677983);
INSERT INTO public.notice VALUES (13326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695678584);
INSERT INTO public.notice VALUES (13327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695679184);
INSERT INTO public.notice VALUES (13328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695679783);
INSERT INTO public.notice VALUES (13329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695680383);
INSERT INTO public.notice VALUES (13330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695680984);
INSERT INTO public.notice VALUES (13331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695681583);
INSERT INTO public.notice VALUES (13332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695682183);
INSERT INTO public.notice VALUES (13333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695682784);
INSERT INTO public.notice VALUES (13334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695683384);
INSERT INTO public.notice VALUES (13335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695683983);
INSERT INTO public.notice VALUES (13336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695684582);
INSERT INTO public.notice VALUES (13343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695688783);
INSERT INTO public.notice VALUES (13706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695906584);
INSERT INTO public.notice VALUES (13337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695685184);
INSERT INTO public.notice VALUES (13338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695685783);
INSERT INTO public.notice VALUES (13339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695686383);
INSERT INTO public.notice VALUES (13340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695686984);
INSERT INTO public.notice VALUES (13341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695687584);
INSERT INTO public.notice VALUES (13342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695688183);
INSERT INTO public.notice VALUES (13344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695689385);
INSERT INTO public.notice VALUES (13345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695689983);
INSERT INTO public.notice VALUES (13346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695690583);
INSERT INTO public.notice VALUES (13347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695691182);
INSERT INTO public.notice VALUES (13348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695691784);
INSERT INTO public.notice VALUES (13349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695692383);
INSERT INTO public.notice VALUES (13350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695692983);
INSERT INTO public.notice VALUES (13351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695693584);
INSERT INTO public.notice VALUES (13352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695694183);
INSERT INTO public.notice VALUES (13353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695694783);
INSERT INTO public.notice VALUES (13354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695695382);
INSERT INTO public.notice VALUES (13355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695695984);
INSERT INTO public.notice VALUES (13356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695696583);
INSERT INTO public.notice VALUES (13361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695699583);
INSERT INTO public.notice VALUES (13707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695907184);
INSERT INTO public.notice VALUES (13708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695907782);
INSERT INTO public.notice VALUES (13709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695908385);
INSERT INTO public.notice VALUES (13710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695908986);
INSERT INTO public.notice VALUES (13711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695909584);
INSERT INTO public.notice VALUES (13712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695910184);
INSERT INTO public.notice VALUES (13713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695910785);
INSERT INTO public.notice VALUES (13714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695911383);
INSERT INTO public.notice VALUES (13715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695911986);
INSERT INTO public.notice VALUES (13720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695914985);
INSERT INTO public.notice VALUES (13357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695697183);
INSERT INTO public.notice VALUES (13358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695697784);
INSERT INTO public.notice VALUES (13359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695698384);
INSERT INTO public.notice VALUES (13360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695698983);
INSERT INTO public.notice VALUES (13362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695700184);
INSERT INTO public.notice VALUES (13363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695700784);
INSERT INTO public.notice VALUES (13364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695701383);
INSERT INTO public.notice VALUES (13365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695701982);
INSERT INTO public.notice VALUES (13366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695702584);
INSERT INTO public.notice VALUES (13367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695703183);
INSERT INTO public.notice VALUES (13368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695703783);
INSERT INTO public.notice VALUES (13369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695704384);
INSERT INTO public.notice VALUES (13370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695704984);
INSERT INTO public.notice VALUES (13371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695705583);
INSERT INTO public.notice VALUES (13372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695706182);
INSERT INTO public.notice VALUES (13373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695706784);
INSERT INTO public.notice VALUES (13374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695707383);
INSERT INTO public.notice VALUES (13375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695707983);
INSERT INTO public.notice VALUES (13376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695708584);
INSERT INTO public.notice VALUES (13377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695709184);
INSERT INTO public.notice VALUES (13378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695709783);
INSERT INTO public.notice VALUES (13385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695713983);
INSERT INTO public.notice VALUES (13386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695714583);
INSERT INTO public.notice VALUES (13716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695912589);
INSERT INTO public.notice VALUES (13717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695913185);
INSERT INTO public.notice VALUES (13718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695913791);
INSERT INTO public.notice VALUES (13719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695914383);
INSERT INTO public.notice VALUES (13725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695917984);
INSERT INTO public.notice VALUES (13726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695918583);
INSERT INTO public.notice VALUES (13727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695919182);
INSERT INTO public.notice VALUES (13379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695710383);
INSERT INTO public.notice VALUES (13380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695710985);
INSERT INTO public.notice VALUES (13381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695711583);
INSERT INTO public.notice VALUES (13382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695712183);
INSERT INTO public.notice VALUES (13383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695712782);
INSERT INTO public.notice VALUES (13384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695713384);
INSERT INTO public.notice VALUES (13387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695715184);
INSERT INTO public.notice VALUES (13388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695715783);
INSERT INTO public.notice VALUES (13389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695716383);
INSERT INTO public.notice VALUES (13390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695716982);
INSERT INTO public.notice VALUES (13391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695717584);
INSERT INTO public.notice VALUES (13392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695718183);
INSERT INTO public.notice VALUES (13393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695718783);
INSERT INTO public.notice VALUES (13394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695719384);
INSERT INTO public.notice VALUES (13395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695719984);
INSERT INTO public.notice VALUES (13396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695720584);
INSERT INTO public.notice VALUES (13397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695721183);
INSERT INTO public.notice VALUES (13398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695721784);
INSERT INTO public.notice VALUES (13399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695722383);
INSERT INTO public.notice VALUES (13400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695722983);
INSERT INTO public.notice VALUES (13401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695723582);
INSERT INTO public.notice VALUES (13402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695724184);
INSERT INTO public.notice VALUES (13403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695724783);
INSERT INTO public.notice VALUES (13404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695725383);
INSERT INTO public.notice VALUES (13405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695725986);
INSERT INTO public.notice VALUES (13406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695726584);
INSERT INTO public.notice VALUES (13407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695727183);
INSERT INTO public.notice VALUES (13408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695727783);
INSERT INTO public.notice VALUES (13409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695728384);
INSERT INTO public.notice VALUES (13410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695728983);
INSERT INTO public.notice VALUES (13411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695729583);
INSERT INTO public.notice VALUES (13412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695730184);
INSERT INTO public.notice VALUES (13413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695730784);
INSERT INTO public.notice VALUES (13414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695731383);
INSERT INTO public.notice VALUES (13721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695915586);
INSERT INTO public.notice VALUES (13722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695916185);
INSERT INTO public.notice VALUES (13723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695916783);
INSERT INTO public.notice VALUES (13724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695917385);
INSERT INTO public.notice VALUES (13738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1695925785);
INSERT INTO public.notice VALUES (13862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696000185);
INSERT INTO public.notice VALUES (13863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696000784);
INSERT INTO public.notice VALUES (13864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696001384);
INSERT INTO public.notice VALUES (13865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696001984);
INSERT INTO public.notice VALUES (13866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696002584);
INSERT INTO public.notice VALUES (13867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696003183);
INSERT INTO public.notice VALUES (13935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696043982);
INSERT INTO public.notice VALUES (13936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696044584);
INSERT INTO public.notice VALUES (13937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696045183);
INSERT INTO public.notice VALUES (13938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696045784);
INSERT INTO public.notice VALUES (13939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696046385);
INSERT INTO public.notice VALUES (13940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696046984);
INSERT INTO public.notice VALUES (13941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696047583);
INSERT INTO public.notice VALUES (13942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696048186);
INSERT INTO public.notice VALUES (13943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696048785);
INSERT INTO public.notice VALUES (13944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696049383);
INSERT INTO public.notice VALUES (13945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696049983);
INSERT INTO public.notice VALUES (13946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696050584);
INSERT INTO public.notice VALUES (13947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696051184);
INSERT INTO public.notice VALUES (13948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696051783);
INSERT INTO public.notice VALUES (13949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696052384);
INSERT INTO public.notice VALUES (13950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696052985);
INSERT INTO public.notice VALUES (13951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696053583);
INSERT INTO public.notice VALUES (13952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696054184);
INSERT INTO public.notice VALUES (13953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696054784);
INSERT INTO public.notice VALUES (13963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696060783);
INSERT INTO public.notice VALUES (13964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696061385);
INSERT INTO public.notice VALUES (13965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696061984);
INSERT INTO public.notice VALUES (13966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696062584);
INSERT INTO public.notice VALUES (13967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696063182);
INSERT INTO public.notice VALUES (13968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696063785);
INSERT INTO public.notice VALUES (13969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696064383);
INSERT INTO public.notice VALUES (13970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696064983);
INSERT INTO public.notice VALUES (13971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696065584);
INSERT INTO public.notice VALUES (13972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696066185);
INSERT INTO public.notice VALUES (13973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696066784);
INSERT INTO public.notice VALUES (13954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696055384);
INSERT INTO public.notice VALUES (13955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696055984);
INSERT INTO public.notice VALUES (13956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696056583);
INSERT INTO public.notice VALUES (13957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696057185);
INSERT INTO public.notice VALUES (13958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696057783);
INSERT INTO public.notice VALUES (13959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696058383);
INSERT INTO public.notice VALUES (13960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696058982);
INSERT INTO public.notice VALUES (13961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696059584);
INSERT INTO public.notice VALUES (13962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696060184);
INSERT INTO public.notice VALUES (13974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696067383);
INSERT INTO public.notice VALUES (13975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696067984);
INSERT INTO public.notice VALUES (13976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696068584);
INSERT INTO public.notice VALUES (13977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696069184);
INSERT INTO public.notice VALUES (13979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696070385);
INSERT INTO public.notice VALUES (13981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696071584);
INSERT INTO public.notice VALUES (13978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696069783);
INSERT INTO public.notice VALUES (13980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696070984);
INSERT INTO public.notice VALUES (13982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696072185);
INSERT INTO public.notice VALUES (13983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696072784);
INSERT INTO public.notice VALUES (13984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696073385);
INSERT INTO public.notice VALUES (13985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696073982);
INSERT INTO public.notice VALUES (14006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696086584);
INSERT INTO public.notice VALUES (14007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696087186);
INSERT INTO public.notice VALUES (14008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696087784);
INSERT INTO public.notice VALUES (14009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696088385);
INSERT INTO public.notice VALUES (14010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696088984);
INSERT INTO public.notice VALUES (14011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696089585);
INSERT INTO public.notice VALUES (25386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702919708);
INSERT INTO public.notice VALUES (25387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702920307);
INSERT INTO public.notice VALUES (25389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702921517);
INSERT INTO public.notice VALUES (13986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696074584);
INSERT INTO public.notice VALUES (13987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696075184);
INSERT INTO public.notice VALUES (13988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696075784);
INSERT INTO public.notice VALUES (13989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696076385);
INSERT INTO public.notice VALUES (13990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696076984);
INSERT INTO public.notice VALUES (13991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696077584);
INSERT INTO public.notice VALUES (13992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696078183);
INSERT INTO public.notice VALUES (13993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696078784);
INSERT INTO public.notice VALUES (13994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696079385);
INSERT INTO public.notice VALUES (13995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696079984);
INSERT INTO public.notice VALUES (13996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696080583);
INSERT INTO public.notice VALUES (13997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696081185);
INSERT INTO public.notice VALUES (13998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696081783);
INSERT INTO public.notice VALUES (13999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696082384);
INSERT INTO public.notice VALUES (14000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696082984);
INSERT INTO public.notice VALUES (14001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696083585);
INSERT INTO public.notice VALUES (14002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696084184);
INSERT INTO public.notice VALUES (14003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696084784);
INSERT INTO public.notice VALUES (14004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696085384);
INSERT INTO public.notice VALUES (14005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696085984);
INSERT INTO public.notice VALUES (14012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696090184);
INSERT INTO public.notice VALUES (14013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696090783);
INSERT INTO public.notice VALUES (14014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696091383);
INSERT INTO public.notice VALUES (14015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696091985);
INSERT INTO public.notice VALUES (14016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696092584);
INSERT INTO public.notice VALUES (14017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696093184);
INSERT INTO public.notice VALUES (14018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696093786);
INSERT INTO public.notice VALUES (14019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696094384);
INSERT INTO public.notice VALUES (14020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696094984);
INSERT INTO public.notice VALUES (14021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696095583);
INSERT INTO public.notice VALUES (14022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696096185);
INSERT INTO public.notice VALUES (14023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696096783);
INSERT INTO public.notice VALUES (14024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696097384);
INSERT INTO public.notice VALUES (14025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696097985);
INSERT INTO public.notice VALUES (14026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696098585);
INSERT INTO public.notice VALUES (14027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696099184);
INSERT INTO public.notice VALUES (14028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696099783);
INSERT INTO public.notice VALUES (14029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696100385);
INSERT INTO public.notice VALUES (14030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696100983);
INSERT INTO public.notice VALUES (14031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696101584);
INSERT INTO public.notice VALUES (14032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696102186);
INSERT INTO public.notice VALUES (14033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696102785);
INSERT INTO public.notice VALUES (14034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696103385);
INSERT INTO public.notice VALUES (14035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696103983);
INSERT INTO public.notice VALUES (14036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696104585);
INSERT INTO public.notice VALUES (14037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696105185);
INSERT INTO public.notice VALUES (14038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696105784);
INSERT INTO public.notice VALUES (14039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696106383);
INSERT INTO public.notice VALUES (14040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696106985);
INSERT INTO public.notice VALUES (14041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696107584);
INSERT INTO public.notice VALUES (14042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696108184);
INSERT INTO public.notice VALUES (14047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696111185);
INSERT INTO public.notice VALUES (14048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696111784);
INSERT INTO public.notice VALUES (14049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696112384);
INSERT INTO public.notice VALUES (14050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696112983);
INSERT INTO public.notice VALUES (14051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696113584);
INSERT INTO public.notice VALUES (14052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696114184);
INSERT INTO public.notice VALUES (25388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702920907);
INSERT INTO public.notice VALUES (26210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703414436);
INSERT INTO public.notice VALUES (26213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703416236);
INSERT INTO public.notice VALUES (14043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696108786);
INSERT INTO public.notice VALUES (14044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696109385);
INSERT INTO public.notice VALUES (14045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696109985);
INSERT INTO public.notice VALUES (14046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696110584);
INSERT INTO public.notice VALUES (14053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696114784);
INSERT INTO public.notice VALUES (14054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696115386);
INSERT INTO public.notice VALUES (14055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696115985);
INSERT INTO public.notice VALUES (14056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696116584);
INSERT INTO public.notice VALUES (14057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696117183);
INSERT INTO public.notice VALUES (14058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696117785);
INSERT INTO public.notice VALUES (14059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696118384);
INSERT INTO public.notice VALUES (14060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696118984);
INSERT INTO public.notice VALUES (14061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696119584);
INSERT INTO public.notice VALUES (14062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696120184);
INSERT INTO public.notice VALUES (14063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696120784);
INSERT INTO public.notice VALUES (14064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696121383);
INSERT INTO public.notice VALUES (14065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696121985);
INSERT INTO public.notice VALUES (14066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696122585);
INSERT INTO public.notice VALUES (14067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696123184);
INSERT INTO public.notice VALUES (14087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696135184);
INSERT INTO public.notice VALUES (14088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696135784);
INSERT INTO public.notice VALUES (14089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696136384);
INSERT INTO public.notice VALUES (14090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696136984);
INSERT INTO public.notice VALUES (14091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696137584);
INSERT INTO public.notice VALUES (14092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696138183);
INSERT INTO public.notice VALUES (14096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696140583);
INSERT INTO public.notice VALUES (14097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696141184);
INSERT INTO public.notice VALUES (14098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696141785);
INSERT INTO public.notice VALUES (14099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696142383);
INSERT INTO public.notice VALUES (14100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696142982);
INSERT INTO public.notice VALUES (14068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696123786);
INSERT INTO public.notice VALUES (14069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696124385);
INSERT INTO public.notice VALUES (14070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696124985);
INSERT INTO public.notice VALUES (14071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696125584);
INSERT INTO public.notice VALUES (14072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696126185);
INSERT INTO public.notice VALUES (14073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696126784);
INSERT INTO public.notice VALUES (14074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696127384);
INSERT INTO public.notice VALUES (14075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696127983);
INSERT INTO public.notice VALUES (14076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696128584);
INSERT INTO public.notice VALUES (14077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696129184);
INSERT INTO public.notice VALUES (14078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696129783);
INSERT INTO public.notice VALUES (14079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696130385);
INSERT INTO public.notice VALUES (14080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696130984);
INSERT INTO public.notice VALUES (14081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696131584);
INSERT INTO public.notice VALUES (14082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696132183);
INSERT INTO public.notice VALUES (14083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696132784);
INSERT INTO public.notice VALUES (14084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696133384);
INSERT INTO public.notice VALUES (14085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696133983);
INSERT INTO public.notice VALUES (14086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696134585);
INSERT INTO public.notice VALUES (14093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696138786);
INSERT INTO public.notice VALUES (14094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696139384);
INSERT INTO public.notice VALUES (14095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696139983);
INSERT INTO public.notice VALUES (14109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696148385);
INSERT INTO public.notice VALUES (14110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696148984);
INSERT INTO public.notice VALUES (14113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696150784);
INSERT INTO public.notice VALUES (25390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702922109);
INSERT INTO public.notice VALUES (25391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702922709);
INSERT INTO public.notice VALUES (26212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703415635);
INSERT INTO public.notice VALUES (26860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703804436);
INSERT INTO public.notice VALUES (27279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704055836);
INSERT INTO public.notice VALUES (14101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696143584);
INSERT INTO public.notice VALUES (14102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696144184);
INSERT INTO public.notice VALUES (14103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696144784);
INSERT INTO public.notice VALUES (14104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696145386);
INSERT INTO public.notice VALUES (14105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696145985);
INSERT INTO public.notice VALUES (14106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696146584);
INSERT INTO public.notice VALUES (14107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696147183);
INSERT INTO public.notice VALUES (14108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696147785);
INSERT INTO public.notice VALUES (14111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696149585);
INSERT INTO public.notice VALUES (14112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696150184);
INSERT INTO public.notice VALUES (14114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696151385);
INSERT INTO public.notice VALUES (14115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696151985);
INSERT INTO public.notice VALUES (14116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696152585);
INSERT INTO public.notice VALUES (14117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696153184);
INSERT INTO public.notice VALUES (14118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696153785);
INSERT INTO public.notice VALUES (14119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696154384);
INSERT INTO public.notice VALUES (14126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696158585);
INSERT INTO public.notice VALUES (14127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696159185);
INSERT INTO public.notice VALUES (14128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696159784);
INSERT INTO public.notice VALUES (25392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702923307);
INSERT INTO public.notice VALUES (26214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703416836);
INSERT INTO public.notice VALUES (26215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703417435);
INSERT INTO public.notice VALUES (26862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703805637);
INSERT INTO public.notice VALUES (26865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703807435);
INSERT INTO public.notice VALUES (27280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704056436);
INSERT INTO public.notice VALUES (27281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704057035);
INSERT INTO public.notice VALUES (27286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704060036);
INSERT INTO public.notice VALUES (27287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704060636);
INSERT INTO public.notice VALUES (27630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704266436);
INSERT INTO public.notice VALUES (27631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704267034);
INSERT INTO public.notice VALUES (14120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696154984);
INSERT INTO public.notice VALUES (14121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696155583);
INSERT INTO public.notice VALUES (14122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696156185);
INSERT INTO public.notice VALUES (14123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696156783);
INSERT INTO public.notice VALUES (14124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696157384);
INSERT INTO public.notice VALUES (14125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696157983);
INSERT INTO public.notice VALUES (14129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696160385);
INSERT INTO public.notice VALUES (14130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696160984);
INSERT INTO public.notice VALUES (14131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696161584);
INSERT INTO public.notice VALUES (14132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696162183);
INSERT INTO public.notice VALUES (14133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696162784);
INSERT INTO public.notice VALUES (14134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696163385);
INSERT INTO public.notice VALUES (14135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696163984);
INSERT INTO public.notice VALUES (14136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696164585);
INSERT INTO public.notice VALUES (14137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696165184);
INSERT INTO public.notice VALUES (14138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696165786);
INSERT INTO public.notice VALUES (14139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696166393);
INSERT INTO public.notice VALUES (14140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696166987);
INSERT INTO public.notice VALUES (14141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696167584);
INSERT INTO public.notice VALUES (14142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696168186);
INSERT INTO public.notice VALUES (14143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696168784);
INSERT INTO public.notice VALUES (14152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696174183);
INSERT INTO public.notice VALUES (14153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696174784);
INSERT INTO public.notice VALUES (14154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696175383);
INSERT INTO public.notice VALUES (25393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702923908);
INSERT INTO public.notice VALUES (25395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702925107);
INSERT INTO public.notice VALUES (25397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702926308);
INSERT INTO public.notice VALUES (25398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702926908);
INSERT INTO public.notice VALUES (26216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703418036);
INSERT INTO public.notice VALUES (26220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703420437);
INSERT INTO public.notice VALUES (14144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696169386);
INSERT INTO public.notice VALUES (14145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696169984);
INSERT INTO public.notice VALUES (14146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696170584);
INSERT INTO public.notice VALUES (14147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696171184);
INSERT INTO public.notice VALUES (14148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696171784);
INSERT INTO public.notice VALUES (14149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696172384);
INSERT INTO public.notice VALUES (14150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696172983);
INSERT INTO public.notice VALUES (14151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696173585);
INSERT INTO public.notice VALUES (14155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696175984);
INSERT INTO public.notice VALUES (14156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696176584);
INSERT INTO public.notice VALUES (14157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696177184);
INSERT INTO public.notice VALUES (14158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696177785);
INSERT INTO public.notice VALUES (14159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696178384);
INSERT INTO public.notice VALUES (14160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696178984);
INSERT INTO public.notice VALUES (14161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696179584);
INSERT INTO public.notice VALUES (14162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696180185);
INSERT INTO public.notice VALUES (14163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696180784);
INSERT INTO public.notice VALUES (14164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696181383);
INSERT INTO public.notice VALUES (14165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696181984);
INSERT INTO public.notice VALUES (14166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696182586);
INSERT INTO public.notice VALUES (14167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696183184);
INSERT INTO public.notice VALUES (14168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696183784);
INSERT INTO public.notice VALUES (14169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696184385);
INSERT INTO public.notice VALUES (14170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696184984);
INSERT INTO public.notice VALUES (14171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696185584);
INSERT INTO public.notice VALUES (14172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696186184);
INSERT INTO public.notice VALUES (14173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696186785);
INSERT INTO public.notice VALUES (14174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696187385);
INSERT INTO public.notice VALUES (14175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696187984);
INSERT INTO public.notice VALUES (14176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696188586);
INSERT INTO public.notice VALUES (14177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696189185);
INSERT INTO public.notice VALUES (14183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696192784);
INSERT INTO public.notice VALUES (14184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696193385);
INSERT INTO public.notice VALUES (14186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696194583);
INSERT INTO public.notice VALUES (14187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696195187);
INSERT INTO public.notice VALUES (14188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696195784);
INSERT INTO public.notice VALUES (25394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702924508);
INSERT INTO public.notice VALUES (25396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702925708);
INSERT INTO public.notice VALUES (25399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702927507);
INSERT INTO public.notice VALUES (25400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702928108);
INSERT INTO public.notice VALUES (25402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702929307);
INSERT INTO public.notice VALUES (25406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702931711);
INSERT INTO public.notice VALUES (25408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702932908);
INSERT INTO public.notice VALUES (25409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702933507);
INSERT INTO public.notice VALUES (26217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703418636);
INSERT INTO public.notice VALUES (14178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696189784);
INSERT INTO public.notice VALUES (14179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696190384);
INSERT INTO public.notice VALUES (14180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696190985);
INSERT INTO public.notice VALUES (14181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696191585);
INSERT INTO public.notice VALUES (14182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696192185);
INSERT INTO public.notice VALUES (14185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696193984);
INSERT INTO public.notice VALUES (14189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696196384);
INSERT INTO public.notice VALUES (14190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696196983);
INSERT INTO public.notice VALUES (14191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696197585);
INSERT INTO public.notice VALUES (14192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696198185);
INSERT INTO public.notice VALUES (14193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696198784);
INSERT INTO public.notice VALUES (14194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696199383);
INSERT INTO public.notice VALUES (14195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696199985);
INSERT INTO public.notice VALUES (14196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696200583);
INSERT INTO public.notice VALUES (14197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696201184);
INSERT INTO public.notice VALUES (14198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696201786);
INSERT INTO public.notice VALUES (14199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696202385);
INSERT INTO public.notice VALUES (14200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696202984);
INSERT INTO public.notice VALUES (14201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696203584);
INSERT INTO public.notice VALUES (14202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696204185);
INSERT INTO public.notice VALUES (14203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696204785);
INSERT INTO public.notice VALUES (14204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696205384);
INSERT INTO public.notice VALUES (14205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696205983);
INSERT INTO public.notice VALUES (14206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696206585);
INSERT INTO public.notice VALUES (14207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696207184);
INSERT INTO public.notice VALUES (14208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696207783);
INSERT INTO public.notice VALUES (14209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696208385);
INSERT INTO public.notice VALUES (14210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696208984);
INSERT INTO public.notice VALUES (14211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696209584);
INSERT INTO public.notice VALUES (14214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696211383);
INSERT INTO public.notice VALUES (14212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696210183);
INSERT INTO public.notice VALUES (14213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696210786);
INSERT INTO public.notice VALUES (14241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696227582);
INSERT INTO public.notice VALUES (14242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696228184);
INSERT INTO public.notice VALUES (14243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696228783);
INSERT INTO public.notice VALUES (14244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696229383);
INSERT INTO public.notice VALUES (25401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702928709);
INSERT INTO public.notice VALUES (25403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702929907);
INSERT INTO public.notice VALUES (26218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703419236);
INSERT INTO public.notice VALUES (26863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703806236);
INSERT INTO public.notice VALUES (26864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703806835);
INSERT INTO public.notice VALUES (27282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704057636);
INSERT INTO public.notice VALUES (27283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704058236);
INSERT INTO public.notice VALUES (27284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704058835);
INSERT INTO public.notice VALUES (27632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704267636);
INSERT INTO public.notice VALUES (14215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696211984);
INSERT INTO public.notice VALUES (14216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696212584);
INSERT INTO public.notice VALUES (14217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696213184);
INSERT INTO public.notice VALUES (14218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696213783);
INSERT INTO public.notice VALUES (14219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696214383);
INSERT INTO public.notice VALUES (14220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696214984);
INSERT INTO public.notice VALUES (14221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696215583);
INSERT INTO public.notice VALUES (14222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696216183);
INSERT INTO public.notice VALUES (14223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696216782);
INSERT INTO public.notice VALUES (14224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696217385);
INSERT INTO public.notice VALUES (14225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696217983);
INSERT INTO public.notice VALUES (14226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696218583);
INSERT INTO public.notice VALUES (14227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696219184);
INSERT INTO public.notice VALUES (14228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696219784);
INSERT INTO public.notice VALUES (14229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696220383);
INSERT INTO public.notice VALUES (14230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696220982);
INSERT INTO public.notice VALUES (14231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696221584);
INSERT INTO public.notice VALUES (14232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696222183);
INSERT INTO public.notice VALUES (14233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696222783);
INSERT INTO public.notice VALUES (14234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696223384);
INSERT INTO public.notice VALUES (14235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696223984);
INSERT INTO public.notice VALUES (14236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696224583);
INSERT INTO public.notice VALUES (14237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696225183);
INSERT INTO public.notice VALUES (14238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696225784);
INSERT INTO public.notice VALUES (14239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696226384);
INSERT INTO public.notice VALUES (14240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696226983);
INSERT INTO public.notice VALUES (14245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696229984);
INSERT INTO public.notice VALUES (14246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696230584);
INSERT INTO public.notice VALUES (14247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696231183);
INSERT INTO public.notice VALUES (14248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696231783);
INSERT INTO public.notice VALUES (14249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696232384);
INSERT INTO public.notice VALUES (14250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696232983);
INSERT INTO public.notice VALUES (14251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696233583);
INSERT INTO public.notice VALUES (14252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696234182);
INSERT INTO public.notice VALUES (14257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696237183);
INSERT INTO public.notice VALUES (14263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696240784);
INSERT INTO public.notice VALUES (14264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696241384);
INSERT INTO public.notice VALUES (14265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696241983);
INSERT INTO public.notice VALUES (14266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696242583);
INSERT INTO public.notice VALUES (14267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696243184);
INSERT INTO public.notice VALUES (14268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696243783);
INSERT INTO public.notice VALUES (14272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696246183);
INSERT INTO public.notice VALUES (14273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696246783);
INSERT INTO public.notice VALUES (14274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696247384);
INSERT INTO public.notice VALUES (25404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702930508);
INSERT INTO public.notice VALUES (14253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696234784);
INSERT INTO public.notice VALUES (14254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696235383);
INSERT INTO public.notice VALUES (14255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696235983);
INSERT INTO public.notice VALUES (14256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696236584);
INSERT INTO public.notice VALUES (14258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696237783);
INSERT INTO public.notice VALUES (14259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696238382);
INSERT INTO public.notice VALUES (14260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696238985);
INSERT INTO public.notice VALUES (14261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696239583);
INSERT INTO public.notice VALUES (14262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696240183);
INSERT INTO public.notice VALUES (14269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696244383);
INSERT INTO public.notice VALUES (14270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696244984);
INSERT INTO public.notice VALUES (14271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696245584);
INSERT INTO public.notice VALUES (14275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696247985);
INSERT INTO public.notice VALUES (14276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696248584);
INSERT INTO public.notice VALUES (14277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696249182);
INSERT INTO public.notice VALUES (14278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696249785);
INSERT INTO public.notice VALUES (25405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702931114);
INSERT INTO public.notice VALUES (25407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702932308);
INSERT INTO public.notice VALUES (25417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702938307);
INSERT INTO public.notice VALUES (25418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702938908);
INSERT INTO public.notice VALUES (25419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702939508);
INSERT INTO public.notice VALUES (25424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702942507);
INSERT INTO public.notice VALUES (25427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702944307);
INSERT INTO public.notice VALUES (25428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702944908);
INSERT INTO public.notice VALUES (25429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702945508);
INSERT INTO public.notice VALUES (25433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702947908);
INSERT INTO public.notice VALUES (25435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702949106);
INSERT INTO public.notice VALUES (26219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703419835);
INSERT INTO public.notice VALUES (26866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703808036);
INSERT INTO public.notice VALUES (27285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704059435);
INSERT INTO public.notice VALUES (14279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696250385);
INSERT INTO public.notice VALUES (14280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696250983);
INSERT INTO public.notice VALUES (14281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696251584);
INSERT INTO public.notice VALUES (14282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696252184);
INSERT INTO public.notice VALUES (14283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696252784);
INSERT INTO public.notice VALUES (14284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696253383);
INSERT INTO public.notice VALUES (14285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696253988);
INSERT INTO public.notice VALUES (14286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696254584);
INSERT INTO public.notice VALUES (14287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696255183);
INSERT INTO public.notice VALUES (14288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696255784);
INSERT INTO public.notice VALUES (14289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696256385);
INSERT INTO public.notice VALUES (14290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696256983);
INSERT INTO public.notice VALUES (14291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696257584);
INSERT INTO public.notice VALUES (14292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696258186);
INSERT INTO public.notice VALUES (14293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696258784);
INSERT INTO public.notice VALUES (14294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696259384);
INSERT INTO public.notice VALUES (14295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696259983);
INSERT INTO public.notice VALUES (14296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696260585);
INSERT INTO public.notice VALUES (14297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696261184);
INSERT INTO public.notice VALUES (14298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696261783);
INSERT INTO public.notice VALUES (14299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696262383);
INSERT INTO public.notice VALUES (14300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696262984);
INSERT INTO public.notice VALUES (14301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696263584);
INSERT INTO public.notice VALUES (14302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696264183);
INSERT INTO public.notice VALUES (14303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696264784);
INSERT INTO public.notice VALUES (14304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696265385);
INSERT INTO public.notice VALUES (14305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696265983);
INSERT INTO public.notice VALUES (14306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696266583);
INSERT INTO public.notice VALUES (14307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696267185);
INSERT INTO public.notice VALUES (14308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696267784);
INSERT INTO public.notice VALUES (14309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696268384);
INSERT INTO public.notice VALUES (14310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696268987);
INSERT INTO public.notice VALUES (14311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696269584);
INSERT INTO public.notice VALUES (14312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696270184);
INSERT INTO public.notice VALUES (14313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696270783);
INSERT INTO public.notice VALUES (14314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696271384);
INSERT INTO public.notice VALUES (14316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696272584);
INSERT INTO public.notice VALUES (14317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696273182);
INSERT INTO public.notice VALUES (14318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696273784);
INSERT INTO public.notice VALUES (14319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696274385);
INSERT INTO public.notice VALUES (14320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696274984);
INSERT INTO public.notice VALUES (14321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696275586);
INSERT INTO public.notice VALUES (14322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696276184);
INSERT INTO public.notice VALUES (14323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696276784);
INSERT INTO public.notice VALUES (14324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696277384);
INSERT INTO public.notice VALUES (14315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696271984);
INSERT INTO public.notice VALUES (14327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696279184);
INSERT INTO public.notice VALUES (14328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696279786);
INSERT INTO public.notice VALUES (14329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696280384);
INSERT INTO public.notice VALUES (14330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696280984);
INSERT INTO public.notice VALUES (14331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696281584);
INSERT INTO public.notice VALUES (14332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696282185);
INSERT INTO public.notice VALUES (14333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696282784);
INSERT INTO public.notice VALUES (25410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702934107);
INSERT INTO public.notice VALUES (25411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702934708);
INSERT INTO public.notice VALUES (25412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702935307);
INSERT INTO public.notice VALUES (26221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703421043);
INSERT INTO public.notice VALUES (26867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703808636);
INSERT INTO public.notice VALUES (27288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704061235);
INSERT INTO public.notice VALUES (27633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704268235);
INSERT INTO public.notice VALUES (14325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696277985);
INSERT INTO public.notice VALUES (14326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696278584);
INSERT INTO public.notice VALUES (14334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696283383);
INSERT INTO public.notice VALUES (14335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696283985);
INSERT INTO public.notice VALUES (14336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696284585);
INSERT INTO public.notice VALUES (14337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696285185);
INSERT INTO public.notice VALUES (14338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696285783);
INSERT INTO public.notice VALUES (14339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696286384);
INSERT INTO public.notice VALUES (14340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696286984);
INSERT INTO public.notice VALUES (14341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696287584);
INSERT INTO public.notice VALUES (14342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696288183);
INSERT INTO public.notice VALUES (14343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696288785);
INSERT INTO public.notice VALUES (14344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696289383);
INSERT INTO public.notice VALUES (14345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696289984);
INSERT INTO public.notice VALUES (14346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696290585);
INSERT INTO public.notice VALUES (14347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696291184);
INSERT INTO public.notice VALUES (14348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696291785);
INSERT INTO public.notice VALUES (14349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696292384);
INSERT INTO public.notice VALUES (14350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696292984);
INSERT INTO public.notice VALUES (14366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696302583);
INSERT INTO public.notice VALUES (14367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696303183);
INSERT INTO public.notice VALUES (25413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702935907);
INSERT INTO public.notice VALUES (25414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702936508);
INSERT INTO public.notice VALUES (26222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703421635);
INSERT INTO public.notice VALUES (26868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703809235);
INSERT INTO public.notice VALUES (27289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704061834);
INSERT INTO public.notice VALUES (27634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704268835);
INSERT INTO public.notice VALUES (27639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704271836);
INSERT INTO public.notice VALUES (27841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704393035);
INSERT INTO public.notice VALUES (27843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704394236);
INSERT INTO public.notice VALUES (14351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696293584);
INSERT INTO public.notice VALUES (14352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696294183);
INSERT INTO public.notice VALUES (14353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696294783);
INSERT INTO public.notice VALUES (14354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696295384);
INSERT INTO public.notice VALUES (14355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696295984);
INSERT INTO public.notice VALUES (14356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696296583);
INSERT INTO public.notice VALUES (14357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696297185);
INSERT INTO public.notice VALUES (14358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696297785);
INSERT INTO public.notice VALUES (14359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696298383);
INSERT INTO public.notice VALUES (14360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696298982);
INSERT INTO public.notice VALUES (14361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696299584);
INSERT INTO public.notice VALUES (14362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696300183);
INSERT INTO public.notice VALUES (14363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696300783);
INSERT INTO public.notice VALUES (14364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696301384);
INSERT INTO public.notice VALUES (14365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696301984);
INSERT INTO public.notice VALUES (14368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696303784);
INSERT INTO public.notice VALUES (14369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696304384);
INSERT INTO public.notice VALUES (14370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696304983);
INSERT INTO public.notice VALUES (14371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696305584);
INSERT INTO public.notice VALUES (14372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696306184);
INSERT INTO public.notice VALUES (14373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696306783);
INSERT INTO public.notice VALUES (14374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696307383);
INSERT INTO public.notice VALUES (14375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696307982);
INSERT INTO public.notice VALUES (14376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696308584);
INSERT INTO public.notice VALUES (14377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696309183);
INSERT INTO public.notice VALUES (14378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696309783);
INSERT INTO public.notice VALUES (14379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696310384);
INSERT INTO public.notice VALUES (14380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696310984);
INSERT INTO public.notice VALUES (14381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696311584);
INSERT INTO public.notice VALUES (14382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696312182);
INSERT INTO public.notice VALUES (14383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696312784);
INSERT INTO public.notice VALUES (14384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696313383);
INSERT INTO public.notice VALUES (14385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696313984);
INSERT INTO public.notice VALUES (14386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696314584);
INSERT INTO public.notice VALUES (14387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696315184);
INSERT INTO public.notice VALUES (14389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696316383);
INSERT INTO public.notice VALUES (14390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696316984);
INSERT INTO public.notice VALUES (14393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696318782);
INSERT INTO public.notice VALUES (14394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696319384);
INSERT INTO public.notice VALUES (14405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696325983);
INSERT INTO public.notice VALUES (14406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696326583);
INSERT INTO public.notice VALUES (14407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696327182);
INSERT INTO public.notice VALUES (14408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696327784);
INSERT INTO public.notice VALUES (14409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696328384);
INSERT INTO public.notice VALUES (14410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696328983);
INSERT INTO public.notice VALUES (14388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696315783);
INSERT INTO public.notice VALUES (14391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696317584);
INSERT INTO public.notice VALUES (14392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696318183);
INSERT INTO public.notice VALUES (14395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696319983);
INSERT INTO public.notice VALUES (14396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696320583);
INSERT INTO public.notice VALUES (14397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696321184);
INSERT INTO public.notice VALUES (14398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696321783);
INSERT INTO public.notice VALUES (14399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696322383);
INSERT INTO public.notice VALUES (14400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696322982);
INSERT INTO public.notice VALUES (14401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696323584);
INSERT INTO public.notice VALUES (14402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696324183);
INSERT INTO public.notice VALUES (14403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696324783);
INSERT INTO public.notice VALUES (14404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696325385);
INSERT INTO public.notice VALUES (14414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696331383);
INSERT INTO public.notice VALUES (14415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696331984);
INSERT INTO public.notice VALUES (14411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696329582);
INSERT INTO public.notice VALUES (14412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696330184);
INSERT INTO public.notice VALUES (14413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696330783);
INSERT INTO public.notice VALUES (14416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696332584);
INSERT INTO public.notice VALUES (14417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696333183);
INSERT INTO public.notice VALUES (14418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696333783);
INSERT INTO public.notice VALUES (14419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696334385);
INSERT INTO public.notice VALUES (14420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696334984);
INSERT INTO public.notice VALUES (14421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696335583);
INSERT INTO public.notice VALUES (14422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696336185);
INSERT INTO public.notice VALUES (14423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696336785);
INSERT INTO public.notice VALUES (14424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696337385);
INSERT INTO public.notice VALUES (14425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696337983);
INSERT INTO public.notice VALUES (14426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696338586);
INSERT INTO public.notice VALUES (14427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696339185);
INSERT INTO public.notice VALUES (14428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696339783);
INSERT INTO public.notice VALUES (14429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696340382);
INSERT INTO public.notice VALUES (25415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702937108);
INSERT INTO public.notice VALUES (25416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702937707);
INSERT INTO public.notice VALUES (25420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702940107);
INSERT INTO public.notice VALUES (25421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702940708);
INSERT INTO public.notice VALUES (26223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703422235);
INSERT INTO public.notice VALUES (26224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703422836);
INSERT INTO public.notice VALUES (26225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703423436);
INSERT INTO public.notice VALUES (26869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703809835);
INSERT INTO public.notice VALUES (26870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703810436);
INSERT INTO public.notice VALUES (26873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703812236);
INSERT INTO public.notice VALUES (26874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703812843);
INSERT INTO public.notice VALUES (26875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703813439);
INSERT INTO public.notice VALUES (27290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704062436);
INSERT INTO public.notice VALUES (14430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696340985);
INSERT INTO public.notice VALUES (14431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696341585);
INSERT INTO public.notice VALUES (14432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696342183);
INSERT INTO public.notice VALUES (14433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696342785);
INSERT INTO public.notice VALUES (14434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696343383);
INSERT INTO public.notice VALUES (14435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696343984);
INSERT INTO public.notice VALUES (14436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696344583);
INSERT INTO public.notice VALUES (14437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696345184);
INSERT INTO public.notice VALUES (14438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696345784);
INSERT INTO public.notice VALUES (14439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696346383);
INSERT INTO public.notice VALUES (14440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696346984);
INSERT INTO public.notice VALUES (14441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696347584);
INSERT INTO public.notice VALUES (14442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696348184);
INSERT INTO public.notice VALUES (14443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696348783);
INSERT INTO public.notice VALUES (14444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696349385);
INSERT INTO public.notice VALUES (14445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696349983);
INSERT INTO public.notice VALUES (14446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696350584);
INSERT INTO public.notice VALUES (14447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696351184);
INSERT INTO public.notice VALUES (14448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696351784);
INSERT INTO public.notice VALUES (14449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696352385);
INSERT INTO public.notice VALUES (14450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696352983);
INSERT INTO public.notice VALUES (14451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696353586);
INSERT INTO public.notice VALUES (14452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696354185);
INSERT INTO public.notice VALUES (14453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696354783);
INSERT INTO public.notice VALUES (14454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696355384);
INSERT INTO public.notice VALUES (14455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696355985);
INSERT INTO public.notice VALUES (14456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696356584);
INSERT INTO public.notice VALUES (14457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696357183);
INSERT INTO public.notice VALUES (14458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696357785);
INSERT INTO public.notice VALUES (14459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696358384);
INSERT INTO public.notice VALUES (14460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696358983);
INSERT INTO public.notice VALUES (14461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696359584);
INSERT INTO public.notice VALUES (14462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696360185);
INSERT INTO public.notice VALUES (14463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696360785);
INSERT INTO public.notice VALUES (14464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696361383);
INSERT INTO public.notice VALUES (14465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696361985);
INSERT INTO public.notice VALUES (14466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696362584);
INSERT INTO public.notice VALUES (14467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696363184);
INSERT INTO public.notice VALUES (14468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696363783);
INSERT INTO public.notice VALUES (14469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696364386);
INSERT INTO public.notice VALUES (14470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696364984);
INSERT INTO public.notice VALUES (14493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696378784);
INSERT INTO public.notice VALUES (14494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696379385);
INSERT INTO public.notice VALUES (14495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696379984);
INSERT INTO public.notice VALUES (14496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696380584);
INSERT INTO public.notice VALUES (14471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696365583);
INSERT INTO public.notice VALUES (14472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696366186);
INSERT INTO public.notice VALUES (14473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696366789);
INSERT INTO public.notice VALUES (14474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696367385);
INSERT INTO public.notice VALUES (14475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696367983);
INSERT INTO public.notice VALUES (14476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696368584);
INSERT INTO public.notice VALUES (14477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696369184);
INSERT INTO public.notice VALUES (14478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696369784);
INSERT INTO public.notice VALUES (14479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696370384);
INSERT INTO public.notice VALUES (14480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696370985);
INSERT INTO public.notice VALUES (14481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696371585);
INSERT INTO public.notice VALUES (14482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696372184);
INSERT INTO public.notice VALUES (14483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696372784);
INSERT INTO public.notice VALUES (14484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696373385);
INSERT INTO public.notice VALUES (14485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696373983);
INSERT INTO public.notice VALUES (14486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696374583);
INSERT INTO public.notice VALUES (14487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696375186);
INSERT INTO public.notice VALUES (14488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696375784);
INSERT INTO public.notice VALUES (14489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696376384);
INSERT INTO public.notice VALUES (14490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696376983);
INSERT INTO public.notice VALUES (14491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696377584);
INSERT INTO public.notice VALUES (14492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696378183);
INSERT INTO public.notice VALUES (14497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696381183);
INSERT INTO public.notice VALUES (14498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696381786);
INSERT INTO public.notice VALUES (14499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696382384);
INSERT INTO public.notice VALUES (14500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696382983);
INSERT INTO public.notice VALUES (14501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696383585);
INSERT INTO public.notice VALUES (14502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696384184);
INSERT INTO public.notice VALUES (14503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696384783);
INSERT INTO public.notice VALUES (14504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696385383);
INSERT INTO public.notice VALUES (14505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696385985);
INSERT INTO public.notice VALUES (14506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696386583);
INSERT INTO public.notice VALUES (14507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696387183);
INSERT INTO public.notice VALUES (14508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696387782);
INSERT INTO public.notice VALUES (14509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696388384);
INSERT INTO public.notice VALUES (14510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696388983);
INSERT INTO public.notice VALUES (14521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696395583);
INSERT INTO public.notice VALUES (14522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696396183);
INSERT INTO public.notice VALUES (14523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696396784);
INSERT INTO public.notice VALUES (14524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696397385);
INSERT INTO public.notice VALUES (14529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696400383);
INSERT INTO public.notice VALUES (14530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696400984);
INSERT INTO public.notice VALUES (25422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702941308);
INSERT INTO public.notice VALUES (25423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702941907);
INSERT INTO public.notice VALUES (25425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702943108);
INSERT INTO public.notice VALUES (14511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696389583);
INSERT INTO public.notice VALUES (14512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696390184);
INSERT INTO public.notice VALUES (14513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696390784);
INSERT INTO public.notice VALUES (14514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696391383);
INSERT INTO public.notice VALUES (14515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696391983);
INSERT INTO public.notice VALUES (14516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696392584);
INSERT INTO public.notice VALUES (14517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696393185);
INSERT INTO public.notice VALUES (14518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696393783);
INSERT INTO public.notice VALUES (14519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696394385);
INSERT INTO public.notice VALUES (14520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696394984);
INSERT INTO public.notice VALUES (14525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696397983);
INSERT INTO public.notice VALUES (14526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696398583);
INSERT INTO public.notice VALUES (14527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696399184);
INSERT INTO public.notice VALUES (14528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696399783);
INSERT INTO public.notice VALUES (14531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696401583);
INSERT INTO public.notice VALUES (14532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696402183);
INSERT INTO public.notice VALUES (14533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696402782);
INSERT INTO public.notice VALUES (14534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696403384);
INSERT INTO public.notice VALUES (14551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696413584);
INSERT INTO public.notice VALUES (25426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702943707);
INSERT INTO public.notice VALUES (26226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703424035);
INSERT INTO public.notice VALUES (26871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703811035);
INSERT INTO public.notice VALUES (26872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703811635);
INSERT INTO public.notice VALUES (26876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703814034);
INSERT INTO public.notice VALUES (27291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704063035);
INSERT INTO public.notice VALUES (27292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704063635);
INSERT INTO public.notice VALUES (27635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704269436);
INSERT INTO public.notice VALUES (27845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704395436);
INSERT INTO public.notice VALUES (27846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704396036);
INSERT INTO public.notice VALUES (27952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704459644);
INSERT INTO public.notice VALUES (14535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696403983);
INSERT INTO public.notice VALUES (14536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696404583);
INSERT INTO public.notice VALUES (14537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696405184);
INSERT INTO public.notice VALUES (14538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696405784);
INSERT INTO public.notice VALUES (14539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696406384);
INSERT INTO public.notice VALUES (14540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696406982);
INSERT INTO public.notice VALUES (14541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696407584);
INSERT INTO public.notice VALUES (14542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696408183);
INSERT INTO public.notice VALUES (14543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696408783);
INSERT INTO public.notice VALUES (14544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696409382);
INSERT INTO public.notice VALUES (14545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696409984);
INSERT INTO public.notice VALUES (14546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696410583);
INSERT INTO public.notice VALUES (14547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696411183);
INSERT INTO public.notice VALUES (14548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696411785);
INSERT INTO public.notice VALUES (14549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696412384);
INSERT INTO public.notice VALUES (14550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696412983);
INSERT INTO public.notice VALUES (14552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696414184);
INSERT INTO public.notice VALUES (14553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696414783);
INSERT INTO public.notice VALUES (14554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696415383);
INSERT INTO public.notice VALUES (14555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696415984);
INSERT INTO public.notice VALUES (14556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696416584);
INSERT INTO public.notice VALUES (14557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696417184);
INSERT INTO public.notice VALUES (14558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696417782);
INSERT INTO public.notice VALUES (14559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696418384);
INSERT INTO public.notice VALUES (14560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696418983);
INSERT INTO public.notice VALUES (14561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696419583);
INSERT INTO public.notice VALUES (14562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696420182);
INSERT INTO public.notice VALUES (14563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696420784);
INSERT INTO public.notice VALUES (14564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696421383);
INSERT INTO public.notice VALUES (14565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696421983);
INSERT INTO public.notice VALUES (14566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696422584);
INSERT INTO public.notice VALUES (14567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696423184);
INSERT INTO public.notice VALUES (14568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696423784);
INSERT INTO public.notice VALUES (14569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696424383);
INSERT INTO public.notice VALUES (14570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696424985);
INSERT INTO public.notice VALUES (14571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696425585);
INSERT INTO public.notice VALUES (14572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696426183);
INSERT INTO public.notice VALUES (14573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696426785);
INSERT INTO public.notice VALUES (14574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696427384);
INSERT INTO public.notice VALUES (14575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696427983);
INSERT INTO public.notice VALUES (14576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696428583);
INSERT INTO public.notice VALUES (14577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696429186);
INSERT INTO public.notice VALUES (14578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696429787);
INSERT INTO public.notice VALUES (14579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696430383);
INSERT INTO public.notice VALUES (14580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696430985);
INSERT INTO public.notice VALUES (14581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696431584);
INSERT INTO public.notice VALUES (14582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696432185);
INSERT INTO public.notice VALUES (14583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696432783);
INSERT INTO public.notice VALUES (14587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696435185);
INSERT INTO public.notice VALUES (14588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696435784);
INSERT INTO public.notice VALUES (14591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696437585);
INSERT INTO public.notice VALUES (14592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696438183);
INSERT INTO public.notice VALUES (25430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702946107);
INSERT INTO public.notice VALUES (25431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702946707);
INSERT INTO public.notice VALUES (25432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702947308);
INSERT INTO public.notice VALUES (26227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703424635);
INSERT INTO public.notice VALUES (26877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703814636);
INSERT INTO public.notice VALUES (27293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704064236);
INSERT INTO public.notice VALUES (27294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704064836);
INSERT INTO public.notice VALUES (27295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704065435);
INSERT INTO public.notice VALUES (14584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696433384);
INSERT INTO public.notice VALUES (14585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696433984);
INSERT INTO public.notice VALUES (14586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696434584);
INSERT INTO public.notice VALUES (14589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696436383);
INSERT INTO public.notice VALUES (14590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696436983);
INSERT INTO public.notice VALUES (14593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696438784);
INSERT INTO public.notice VALUES (14594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696439382);
INSERT INTO public.notice VALUES (14595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696439985);
INSERT INTO public.notice VALUES (14596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696440584);
INSERT INTO public.notice VALUES (14597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696441183);
INSERT INTO public.notice VALUES (14598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696441786);
INSERT INTO public.notice VALUES (14599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696442385);
INSERT INTO public.notice VALUES (14600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696442984);
INSERT INTO public.notice VALUES (14601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696443584);
INSERT INTO public.notice VALUES (14602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696444184);
INSERT INTO public.notice VALUES (14603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696444783);
INSERT INTO public.notice VALUES (14604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696445384);
INSERT INTO public.notice VALUES (14605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696445985);
INSERT INTO public.notice VALUES (14606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696446585);
INSERT INTO public.notice VALUES (14607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696447184);
INSERT INTO public.notice VALUES (14608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696447784);
INSERT INTO public.notice VALUES (14609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696448385);
INSERT INTO public.notice VALUES (14610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696448984);
INSERT INTO public.notice VALUES (14611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696449584);
INSERT INTO public.notice VALUES (14612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696450183);
INSERT INTO public.notice VALUES (14613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696450785);
INSERT INTO public.notice VALUES (14614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696451384);
INSERT INTO public.notice VALUES (14615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696451983);
INSERT INTO public.notice VALUES (14616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696452585);
INSERT INTO public.notice VALUES (14629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696460384);
INSERT INTO public.notice VALUES (14617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696453184);
INSERT INTO public.notice VALUES (14618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696453783);
INSERT INTO public.notice VALUES (14619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696454383);
INSERT INTO public.notice VALUES (14620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696454984);
INSERT INTO public.notice VALUES (14621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696455584);
INSERT INTO public.notice VALUES (14622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696456183);
INSERT INTO public.notice VALUES (14623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696456784);
INSERT INTO public.notice VALUES (14624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696457385);
INSERT INTO public.notice VALUES (14625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696457985);
INSERT INTO public.notice VALUES (14626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696458583);
INSERT INTO public.notice VALUES (14627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696459184);
INSERT INTO public.notice VALUES (14628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696459783);
INSERT INTO public.notice VALUES (14639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696466384);
INSERT INTO public.notice VALUES (14640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696466983);
INSERT INTO public.notice VALUES (14641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696467585);
INSERT INTO public.notice VALUES (14630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696460984);
INSERT INTO public.notice VALUES (14631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696461585);
INSERT INTO public.notice VALUES (14632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696462184);
INSERT INTO public.notice VALUES (14633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696462783);
INSERT INTO public.notice VALUES (14634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696463384);
INSERT INTO public.notice VALUES (14635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696463984);
INSERT INTO public.notice VALUES (14636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696464584);
INSERT INTO public.notice VALUES (14637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696465182);
INSERT INTO public.notice VALUES (14638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696465785);
INSERT INTO public.notice VALUES (14647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696471183);
INSERT INTO public.notice VALUES (14648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696471784);
INSERT INTO public.notice VALUES (14649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696472384);
INSERT INTO public.notice VALUES (14650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696472983);
INSERT INTO public.notice VALUES (14651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696473583);
INSERT INTO public.notice VALUES (14652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696474185);
INSERT INTO public.notice VALUES (14642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696468184);
INSERT INTO public.notice VALUES (14643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696468784);
INSERT INTO public.notice VALUES (14644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696469383);
INSERT INTO public.notice VALUES (14645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696469985);
INSERT INTO public.notice VALUES (14646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696470583);
INSERT INTO public.notice VALUES (14658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696477783);
INSERT INTO public.notice VALUES (14659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696478384);
INSERT INTO public.notice VALUES (14660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696478983);
INSERT INTO public.notice VALUES (14665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696481983);
INSERT INTO public.notice VALUES (14666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696482584);
INSERT INTO public.notice VALUES (14667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696483184);
INSERT INTO public.notice VALUES (25434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702948507);
INSERT INTO public.notice VALUES (25436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702949708);
INSERT INTO public.notice VALUES (26228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703425236);
INSERT INTO public.notice VALUES (26231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703427036);
INSERT INTO public.notice VALUES (14653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696474783);
INSERT INTO public.notice VALUES (14654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696475383);
INSERT INTO public.notice VALUES (14655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696475984);
INSERT INTO public.notice VALUES (14656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696476584);
INSERT INTO public.notice VALUES (14657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696477183);
INSERT INTO public.notice VALUES (14661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696479583);
INSERT INTO public.notice VALUES (14662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696480182);
INSERT INTO public.notice VALUES (14663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696480784);
INSERT INTO public.notice VALUES (14664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696481383);
INSERT INTO public.notice VALUES (14668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696483783);
INSERT INTO public.notice VALUES (14669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696484382);
INSERT INTO public.notice VALUES (14670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696484985);
INSERT INTO public.notice VALUES (14671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696485583);
INSERT INTO public.notice VALUES (14672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696486183);
INSERT INTO public.notice VALUES (14673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696486783);
INSERT INTO public.notice VALUES (14674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696487384);
INSERT INTO public.notice VALUES (14675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696487983);
INSERT INTO public.notice VALUES (14676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696488583);
INSERT INTO public.notice VALUES (14677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696489184);
INSERT INTO public.notice VALUES (14678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696489784);
INSERT INTO public.notice VALUES (14679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696490383);
INSERT INTO public.notice VALUES (14680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696490982);
INSERT INTO public.notice VALUES (14681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696491584);
INSERT INTO public.notice VALUES (14682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696492183);
INSERT INTO public.notice VALUES (14683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696492783);
INSERT INTO public.notice VALUES (14684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696493384);
INSERT INTO public.notice VALUES (14685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696493984);
INSERT INTO public.notice VALUES (14686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696494583);
INSERT INTO public.notice VALUES (14687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696495182);
INSERT INTO public.notice VALUES (14688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696495784);
INSERT INTO public.notice VALUES (14689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696496383);
INSERT INTO public.notice VALUES (14690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696496983);
INSERT INTO public.notice VALUES (14691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696497582);
INSERT INTO public.notice VALUES (14692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696498185);
INSERT INTO public.notice VALUES (14693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696498783);
INSERT INTO public.notice VALUES (14694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696499383);
INSERT INTO public.notice VALUES (14695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696499984);
INSERT INTO public.notice VALUES (14696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696500584);
INSERT INTO public.notice VALUES (14697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696501183);
INSERT INTO public.notice VALUES (14698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696501782);
INSERT INTO public.notice VALUES (14702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696504185);
INSERT INTO public.notice VALUES (14703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696504784);
INSERT INTO public.notice VALUES (14707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696507184);
INSERT INTO public.notice VALUES (14708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696507784);
INSERT INTO public.notice VALUES (25437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702950307);
INSERT INTO public.notice VALUES (14699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696502384);
INSERT INTO public.notice VALUES (14700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696502983);
INSERT INTO public.notice VALUES (14701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696503585);
INSERT INTO public.notice VALUES (14704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696505383);
INSERT INTO public.notice VALUES (14705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696505983);
INSERT INTO public.notice VALUES (14706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696506585);
INSERT INTO public.notice VALUES (14709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696508382);
INSERT INTO public.notice VALUES (14710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696508984);
INSERT INTO public.notice VALUES (14711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696509584);
INSERT INTO public.notice VALUES (14712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696510183);
INSERT INTO public.notice VALUES (14713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696510784);
INSERT INTO public.notice VALUES (14714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696511385);
INSERT INTO public.notice VALUES (14715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696511984);
INSERT INTO public.notice VALUES (14716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696512583);
INSERT INTO public.notice VALUES (14717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696513184);
INSERT INTO public.notice VALUES (14718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696513783);
INSERT INTO public.notice VALUES (14721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696515585);
INSERT INTO public.notice VALUES (14722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696516183);
INSERT INTO public.notice VALUES (14723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696516784);
INSERT INTO public.notice VALUES (14733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696522783);
INSERT INTO public.notice VALUES (14734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696523382);
INSERT INTO public.notice VALUES (14735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696523984);
INSERT INTO public.notice VALUES (14736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696524584);
INSERT INTO public.notice VALUES (14737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696525183);
INSERT INTO public.notice VALUES (14741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696527583);
INSERT INTO public.notice VALUES (14742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696528185);
INSERT INTO public.notice VALUES (14743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696528785);
INSERT INTO public.notice VALUES (14744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696529382);
INSERT INTO public.notice VALUES (14755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696535983);
INSERT INTO public.notice VALUES (14756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696536585);
INSERT INTO public.notice VALUES (14719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696514384);
INSERT INTO public.notice VALUES (14720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696514983);
INSERT INTO public.notice VALUES (14724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696517385);
INSERT INTO public.notice VALUES (14725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696517984);
INSERT INTO public.notice VALUES (14726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696518584);
INSERT INTO public.notice VALUES (14727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696519182);
INSERT INTO public.notice VALUES (14728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696519784);
INSERT INTO public.notice VALUES (14729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696520384);
INSERT INTO public.notice VALUES (14730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696520982);
INSERT INTO public.notice VALUES (14731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696521585);
INSERT INTO public.notice VALUES (14732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696522184);
INSERT INTO public.notice VALUES (14738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696525785);
INSERT INTO public.notice VALUES (14739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696526385);
INSERT INTO public.notice VALUES (14745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696529984);
INSERT INTO public.notice VALUES (14746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696530584);
INSERT INTO public.notice VALUES (14747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696531185);
INSERT INTO public.notice VALUES (14748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696531785);
INSERT INTO public.notice VALUES (14749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696532384);
INSERT INTO public.notice VALUES (14750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696532983);
INSERT INTO public.notice VALUES (14751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696533583);
INSERT INTO public.notice VALUES (14752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696534184);
INSERT INTO public.notice VALUES (14753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696534783);
INSERT INTO public.notice VALUES (14754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696535383);
INSERT INTO public.notice VALUES (25438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702950914);
INSERT INTO public.notice VALUES (25441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702952708);
INSERT INTO public.notice VALUES (25443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702953907);
INSERT INTO public.notice VALUES (26229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703425835);
INSERT INTO public.notice VALUES (26230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703426435);
INSERT INTO public.notice VALUES (26233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703428235);
INSERT INTO public.notice VALUES (26878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703815236);
INSERT INTO public.notice VALUES (14757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696537184);
INSERT INTO public.notice VALUES (14758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696537783);
INSERT INTO public.notice VALUES (14759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696538386);
INSERT INTO public.notice VALUES (14760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696538985);
INSERT INTO public.notice VALUES (14761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696539584);
INSERT INTO public.notice VALUES (14762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696540186);
INSERT INTO public.notice VALUES (14763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696540784);
INSERT INTO public.notice VALUES (14764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696541384);
INSERT INTO public.notice VALUES (14765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696541984);
INSERT INTO public.notice VALUES (14766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696542584);
INSERT INTO public.notice VALUES (14767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696543184);
INSERT INTO public.notice VALUES (14768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696543783);
INSERT INTO public.notice VALUES (14769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696544383);
INSERT INTO public.notice VALUES (14770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696544985);
INSERT INTO public.notice VALUES (14771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696545584);
INSERT INTO public.notice VALUES (14772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696546183);
INSERT INTO public.notice VALUES (14773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696546783);
INSERT INTO public.notice VALUES (14774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696547385);
INSERT INTO public.notice VALUES (14775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696547983);
INSERT INTO public.notice VALUES (14776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696548583);
INSERT INTO public.notice VALUES (14777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696549185);
INSERT INTO public.notice VALUES (14778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696549783);
INSERT INTO public.notice VALUES (14779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696550383);
INSERT INTO public.notice VALUES (14780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696550982);
INSERT INTO public.notice VALUES (14781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696551585);
INSERT INTO public.notice VALUES (14782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696552183);
INSERT INTO public.notice VALUES (14783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696552783);
INSERT INTO public.notice VALUES (14784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696553385);
INSERT INTO public.notice VALUES (14785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696553984);
INSERT INTO public.notice VALUES (14786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696554583);
INSERT INTO public.notice VALUES (14787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696555183);
INSERT INTO public.notice VALUES (14792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696558184);
INSERT INTO public.notice VALUES (14793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696558783);
INSERT INTO public.notice VALUES (14794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696559383);
INSERT INTO public.notice VALUES (14797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696561183);
INSERT INTO public.notice VALUES (14798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696561786);
INSERT INTO public.notice VALUES (25439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702951507);
INSERT INTO public.notice VALUES (26232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703427636);
INSERT INTO public.notice VALUES (26234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703428835);
INSERT INTO public.notice VALUES (26236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703430036);
INSERT INTO public.notice VALUES (26879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703815835);
INSERT INTO public.notice VALUES (26883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703818234);
INSERT INTO public.notice VALUES (26884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703818835);
INSERT INTO public.notice VALUES (26885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703819434);
INSERT INTO public.notice VALUES (27296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704066037);
INSERT INTO public.notice VALUES (14788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696555785);
INSERT INTO public.notice VALUES (14789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696556383);
INSERT INTO public.notice VALUES (14790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696556983);
INSERT INTO public.notice VALUES (14791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696557582);
INSERT INTO public.notice VALUES (14795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696559984);
INSERT INTO public.notice VALUES (14796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696560584);
INSERT INTO public.notice VALUES (14799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696562384);
INSERT INTO public.notice VALUES (14800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696562983);
INSERT INTO public.notice VALUES (14801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696563583);
INSERT INTO public.notice VALUES (14802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696564184);
INSERT INTO public.notice VALUES (14803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696564784);
INSERT INTO public.notice VALUES (14804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696565383);
INSERT INTO public.notice VALUES (14805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696565983);
INSERT INTO public.notice VALUES (14806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696566584);
INSERT INTO public.notice VALUES (14807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696567184);
INSERT INTO public.notice VALUES (14808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696567783);
INSERT INTO public.notice VALUES (14809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696568385);
INSERT INTO public.notice VALUES (14810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696568985);
INSERT INTO public.notice VALUES (14811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696569585);
INSERT INTO public.notice VALUES (14812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696570184);
INSERT INTO public.notice VALUES (14813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696570785);
INSERT INTO public.notice VALUES (14814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696571384);
INSERT INTO public.notice VALUES (14815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696571984);
INSERT INTO public.notice VALUES (14816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696572583);
INSERT INTO public.notice VALUES (14817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696573184);
INSERT INTO public.notice VALUES (14818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696573784);
INSERT INTO public.notice VALUES (14819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696574383);
INSERT INTO public.notice VALUES (14820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696574982);
INSERT INTO public.notice VALUES (14821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696575584);
INSERT INTO public.notice VALUES (14822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696576183);
INSERT INTO public.notice VALUES (14823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696576783);
INSERT INTO public.notice VALUES (14824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696577384);
INSERT INTO public.notice VALUES (14825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696577984);
INSERT INTO public.notice VALUES (14826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696578583);
INSERT INTO public.notice VALUES (14827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696579184);
INSERT INTO public.notice VALUES (14828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696579784);
INSERT INTO public.notice VALUES (14829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696580383);
INSERT INTO public.notice VALUES (14830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696580983);
INSERT INTO public.notice VALUES (14831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696581584);
INSERT INTO public.notice VALUES (14832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696582184);
INSERT INTO public.notice VALUES (14833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696582783);
INSERT INTO public.notice VALUES (14834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696583383);
INSERT INTO public.notice VALUES (14835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696583984);
INSERT INTO public.notice VALUES (14843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696588784);
INSERT INTO public.notice VALUES (14844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696589384);
INSERT INTO public.notice VALUES (14836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696584583);
INSERT INTO public.notice VALUES (14837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696585183);
INSERT INTO public.notice VALUES (14838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696585782);
INSERT INTO public.notice VALUES (14839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696586384);
INSERT INTO public.notice VALUES (14840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696586983);
INSERT INTO public.notice VALUES (14841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696587583);
INSERT INTO public.notice VALUES (14842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696588184);
INSERT INTO public.notice VALUES (14845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696589984);
INSERT INTO public.notice VALUES (14846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696590584);
INSERT INTO public.notice VALUES (14847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696591184);
INSERT INTO public.notice VALUES (14848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696591783);
INSERT INTO public.notice VALUES (14849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696592384);
INSERT INTO public.notice VALUES (14850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696592984);
INSERT INTO public.notice VALUES (14851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696593584);
INSERT INTO public.notice VALUES (14852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696594184);
INSERT INTO public.notice VALUES (14853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696594785);
INSERT INTO public.notice VALUES (14854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696595383);
INSERT INTO public.notice VALUES (14855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696595984);
INSERT INTO public.notice VALUES (14856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Failure when receiving data from the peer
', 1696596611);
INSERT INTO public.notice VALUES (14862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696600183);
INSERT INTO public.notice VALUES (14863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696600787);
INSERT INTO public.notice VALUES (14864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696601385);
INSERT INTO public.notice VALUES (14865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696601983);
INSERT INTO public.notice VALUES (14866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696602583);
INSERT INTO public.notice VALUES (14867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696603185);
INSERT INTO public.notice VALUES (14868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696603784);
INSERT INTO public.notice VALUES (14869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696604383);
INSERT INTO public.notice VALUES (14870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696604984);
INSERT INTO public.notice VALUES (14871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696605585);
INSERT INTO public.notice VALUES (14872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696606184);
INSERT INTO public.notice VALUES (14873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696606783);
INSERT INTO public.notice VALUES (14857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696597185);
INSERT INTO public.notice VALUES (14858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696597784);
INSERT INTO public.notice VALUES (14859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696598383);
INSERT INTO public.notice VALUES (14860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696598984);
INSERT INTO public.notice VALUES (14861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696599584);
INSERT INTO public.notice VALUES (14875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696607984);
INSERT INTO public.notice VALUES (14876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696608583);
INSERT INTO public.notice VALUES (14877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696609183);
INSERT INTO public.notice VALUES (14878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696609785);
INSERT INTO public.notice VALUES (14879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696610383);
INSERT INTO public.notice VALUES (14880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696610983);
INSERT INTO public.notice VALUES (14881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696611582);
INSERT INTO public.notice VALUES (25440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702952107);
INSERT INTO public.notice VALUES (25442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702953308);
INSERT INTO public.notice VALUES (25444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702954507);
INSERT INTO public.notice VALUES (14874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696607385);
INSERT INTO public.notice VALUES (14882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696612185);
INSERT INTO public.notice VALUES (14883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696612783);
INSERT INTO public.notice VALUES (14884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696613383);
INSERT INTO public.notice VALUES (14885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696613984);
INSERT INTO public.notice VALUES (14886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696614584);
INSERT INTO public.notice VALUES (14887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696615184);
INSERT INTO public.notice VALUES (14888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696615783);
INSERT INTO public.notice VALUES (14889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696616384);
INSERT INTO public.notice VALUES (14890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696616985);
INSERT INTO public.notice VALUES (14891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696617583);
INSERT INTO public.notice VALUES (14892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696618184);
INSERT INTO public.notice VALUES (14893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696618784);
INSERT INTO public.notice VALUES (14894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696619384);
INSERT INTO public.notice VALUES (14895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696619982);
INSERT INTO public.notice VALUES (14896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696620585);
INSERT INTO public.notice VALUES (14897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696621185);
INSERT INTO public.notice VALUES (14898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696621784);
INSERT INTO public.notice VALUES (14899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696622382);
INSERT INTO public.notice VALUES (14900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696622985);
INSERT INTO public.notice VALUES (14901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696623584);
INSERT INTO public.notice VALUES (14902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696624183);
INSERT INTO public.notice VALUES (14903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696624786);
INSERT INTO public.notice VALUES (14904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696625384);
INSERT INTO public.notice VALUES (14905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696625984);
INSERT INTO public.notice VALUES (14906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696626583);
INSERT INTO public.notice VALUES (14908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696627785);
INSERT INTO public.notice VALUES (14909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696628383);
INSERT INTO public.notice VALUES (14910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696628982);
INSERT INTO public.notice VALUES (14911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696629584);
INSERT INTO public.notice VALUES (14907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696627185);
INSERT INTO public.notice VALUES (14923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696636783);
INSERT INTO public.notice VALUES (14924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696637383);
INSERT INTO public.notice VALUES (25445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702955108);
INSERT INTO public.notice VALUES (26235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703429436);
INSERT INTO public.notice VALUES (26238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703431238);
INSERT INTO public.notice VALUES (26880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703816436);
INSERT INTO public.notice VALUES (26881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703817036);
INSERT INTO public.notice VALUES (26882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703817635);
INSERT INTO public.notice VALUES (26886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703820039);
INSERT INTO public.notice VALUES (27297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704066636);
INSERT INTO public.notice VALUES (27298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704067235);
INSERT INTO public.notice VALUES (27299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704067842);
INSERT INTO public.notice VALUES (27636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704270035);
INSERT INTO public.notice VALUES (27637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704270635);
INSERT INTO public.notice VALUES (14912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696630183);
INSERT INTO public.notice VALUES (14913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696630783);
INSERT INTO public.notice VALUES (14914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696631384);
INSERT INTO public.notice VALUES (14915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696631983);
INSERT INTO public.notice VALUES (14916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696632584);
INSERT INTO public.notice VALUES (14917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696633183);
INSERT INTO public.notice VALUES (14918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696633784);
INSERT INTO public.notice VALUES (14919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696634383);
INSERT INTO public.notice VALUES (14920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696634983);
INSERT INTO public.notice VALUES (14921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696635585);
INSERT INTO public.notice VALUES (14922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696636185);
INSERT INTO public.notice VALUES (14925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696637984);
INSERT INTO public.notice VALUES (14926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696638584);
INSERT INTO public.notice VALUES (14927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696639183);
INSERT INTO public.notice VALUES (14928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696639785);
INSERT INTO public.notice VALUES (14929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696640385);
INSERT INTO public.notice VALUES (14930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696640984);
INSERT INTO public.notice VALUES (14931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696641583);
INSERT INTO public.notice VALUES (14932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696642184);
INSERT INTO public.notice VALUES (14933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696642783);
INSERT INTO public.notice VALUES (14934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696643383);
INSERT INTO public.notice VALUES (14935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696643982);
INSERT INTO public.notice VALUES (14947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696651184);
INSERT INTO public.notice VALUES (14948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696651783);
INSERT INTO public.notice VALUES (14949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696652383);
INSERT INTO public.notice VALUES (14950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696652984);
INSERT INTO public.notice VALUES (14951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696653585);
INSERT INTO public.notice VALUES (14952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696654183);
INSERT INTO public.notice VALUES (14956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696656583);
INSERT INTO public.notice VALUES (14977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696669183);
INSERT INTO public.notice VALUES (14936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696644585);
INSERT INTO public.notice VALUES (14937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696645183);
INSERT INTO public.notice VALUES (14938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696645783);
INSERT INTO public.notice VALUES (14939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696646384);
INSERT INTO public.notice VALUES (14940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696646984);
INSERT INTO public.notice VALUES (14941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696647584);
INSERT INTO public.notice VALUES (14942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696648182);
INSERT INTO public.notice VALUES (14943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696648784);
INSERT INTO public.notice VALUES (14944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696649383);
INSERT INTO public.notice VALUES (14945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696649984);
INSERT INTO public.notice VALUES (14946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696650585);
INSERT INTO public.notice VALUES (14953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696654783);
INSERT INTO public.notice VALUES (14954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696655384);
INSERT INTO public.notice VALUES (14955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696655984);
INSERT INTO public.notice VALUES (14957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696657184);
INSERT INTO public.notice VALUES (14958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696657784);
INSERT INTO public.notice VALUES (14959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696658383);
INSERT INTO public.notice VALUES (14960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696658983);
INSERT INTO public.notice VALUES (14961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696659584);
INSERT INTO public.notice VALUES (14962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696660184);
INSERT INTO public.notice VALUES (14963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696660783);
INSERT INTO public.notice VALUES (14964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696661383);
INSERT INTO public.notice VALUES (14965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696661984);
INSERT INTO public.notice VALUES (14966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696662584);
INSERT INTO public.notice VALUES (14967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696663184);
INSERT INTO public.notice VALUES (14968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696663784);
INSERT INTO public.notice VALUES (14969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696664384);
INSERT INTO public.notice VALUES (14970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696664983);
INSERT INTO public.notice VALUES (14971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696665583);
INSERT INTO public.notice VALUES (14972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696666184);
INSERT INTO public.notice VALUES (14973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696666783);
INSERT INTO public.notice VALUES (14974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696667384);
INSERT INTO public.notice VALUES (14975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696667983);
INSERT INTO public.notice VALUES (14976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696668584);
INSERT INTO public.notice VALUES (25446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702955708);
INSERT INTO public.notice VALUES (25447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702956307);
INSERT INTO public.notice VALUES (26237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703430642);
INSERT INTO public.notice VALUES (26239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703431836);
INSERT INTO public.notice VALUES (26240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703432435);
INSERT INTO public.notice VALUES (26241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703433035);
INSERT INTO public.notice VALUES (26887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703820634);
INSERT INTO public.notice VALUES (27300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704068436);
INSERT INTO public.notice VALUES (27301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704069036);
INSERT INTO public.notice VALUES (27638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704271235);
INSERT INTO public.notice VALUES (27640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704272436);
INSERT INTO public.notice VALUES (14978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696669783);
INSERT INTO public.notice VALUES (14979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696670384);
INSERT INTO public.notice VALUES (14980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696670984);
INSERT INTO public.notice VALUES (14981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696671583);
INSERT INTO public.notice VALUES (14982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696672182);
INSERT INTO public.notice VALUES (14983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696672785);
INSERT INTO public.notice VALUES (14984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696673383);
INSERT INTO public.notice VALUES (14985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696673983);
INSERT INTO public.notice VALUES (14986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696674585);
INSERT INTO public.notice VALUES (14987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696675184);
INSERT INTO public.notice VALUES (14988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696675783);
INSERT INTO public.notice VALUES (14989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696676383);
INSERT INTO public.notice VALUES (14990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696676984);
INSERT INTO public.notice VALUES (14991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696677584);
INSERT INTO public.notice VALUES (14992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696678183);
INSERT INTO public.notice VALUES (14993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696678783);
INSERT INTO public.notice VALUES (14994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696679384);
INSERT INTO public.notice VALUES (25448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702956907);
INSERT INTO public.notice VALUES (26242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703433636);
INSERT INTO public.notice VALUES (26888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703821235);
INSERT INTO public.notice VALUES (27302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704069635);
INSERT INTO public.notice VALUES (27641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704273035);
INSERT INTO public.notice VALUES (27847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704396635);
INSERT INTO public.notice VALUES (27850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704398435);
INSERT INTO public.notice VALUES (27851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704399035);
INSERT INTO public.notice VALUES (27852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704399636);
INSERT INTO public.notice VALUES (27853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704400236);
INSERT INTO public.notice VALUES (27854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704400843);
INSERT INTO public.notice VALUES (27953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704460239);
INSERT INTO public.notice VALUES (27954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704460836);
INSERT INTO public.notice VALUES (14995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696679983);
INSERT INTO public.notice VALUES (14996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696680583);
INSERT INTO public.notice VALUES (14997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696681184);
INSERT INTO public.notice VALUES (14998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696681784);
INSERT INTO public.notice VALUES (14999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696682384);
INSERT INTO public.notice VALUES (15000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696682982);
INSERT INTO public.notice VALUES (15001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696683585);
INSERT INTO public.notice VALUES (15002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696684184);
INSERT INTO public.notice VALUES (15003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696684783);
INSERT INTO public.notice VALUES (15004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696685384);
INSERT INTO public.notice VALUES (15005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696685985);
INSERT INTO public.notice VALUES (15006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696686583);
INSERT INTO public.notice VALUES (15007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696687183);
INSERT INTO public.notice VALUES (15008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696687785);
INSERT INTO public.notice VALUES (15009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696688384);
INSERT INTO public.notice VALUES (15010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696688984);
INSERT INTO public.notice VALUES (15011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696689582);
INSERT INTO public.notice VALUES (15019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696694384);
INSERT INTO public.notice VALUES (25449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702957508);
INSERT INTO public.notice VALUES (26243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703434236);
INSERT INTO public.notice VALUES (26244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703434835);
INSERT INTO public.notice VALUES (26245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703435436);
INSERT INTO public.notice VALUES (26246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703436036);
INSERT INTO public.notice VALUES (26889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703821834);
INSERT INTO public.notice VALUES (26890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703822436);
INSERT INTO public.notice VALUES (26891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703823035);
INSERT INTO public.notice VALUES (26892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703823636);
INSERT INTO public.notice VALUES (26893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703824236);
INSERT INTO public.notice VALUES (27303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704070237);
INSERT INTO public.notice VALUES (27306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704072035);
INSERT INTO public.notice VALUES (15012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696690184);
INSERT INTO public.notice VALUES (15013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696690784);
INSERT INTO public.notice VALUES (15014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696691383);
INSERT INTO public.notice VALUES (15015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696691984);
INSERT INTO public.notice VALUES (15016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696692584);
INSERT INTO public.notice VALUES (15017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696693184);
INSERT INTO public.notice VALUES (15018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696693783);
INSERT INTO public.notice VALUES (15020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696694983);
INSERT INTO public.notice VALUES (15021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696695583);
INSERT INTO public.notice VALUES (15022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696696182);
INSERT INTO public.notice VALUES (15023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696696785);
INSERT INTO public.notice VALUES (15024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696697384);
INSERT INTO public.notice VALUES (15025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696697983);
INSERT INTO public.notice VALUES (15026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696698584);
INSERT INTO public.notice VALUES (15027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696699184);
INSERT INTO public.notice VALUES (15028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696699783);
INSERT INTO public.notice VALUES (15029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696700382);
INSERT INTO public.notice VALUES (15030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696700984);
INSERT INTO public.notice VALUES (15031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696701585);
INSERT INTO public.notice VALUES (15032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696702184);
INSERT INTO public.notice VALUES (15043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696708783);
INSERT INTO public.notice VALUES (15044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696709384);
INSERT INTO public.notice VALUES (15045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696709984);
INSERT INTO public.notice VALUES (15046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696710584);
INSERT INTO public.notice VALUES (15047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696711183);
INSERT INTO public.notice VALUES (15048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696711784);
INSERT INTO public.notice VALUES (15049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696712385);
INSERT INTO public.notice VALUES (25450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702958108);
INSERT INTO public.notice VALUES (26247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703436635);
INSERT INTO public.notice VALUES (26249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703437836);
INSERT INTO public.notice VALUES (15033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696702782);
INSERT INTO public.notice VALUES (15034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696703385);
INSERT INTO public.notice VALUES (15035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696703983);
INSERT INTO public.notice VALUES (15036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696704583);
INSERT INTO public.notice VALUES (15037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696705185);
INSERT INTO public.notice VALUES (15038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696705784);
INSERT INTO public.notice VALUES (15039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696706383);
INSERT INTO public.notice VALUES (15040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696706983);
INSERT INTO public.notice VALUES (15041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696707585);
INSERT INTO public.notice VALUES (15042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696708185);
INSERT INTO public.notice VALUES (15050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696712984);
INSERT INTO public.notice VALUES (15051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696713583);
INSERT INTO public.notice VALUES (15052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696714184);
INSERT INTO public.notice VALUES (15053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696714783);
INSERT INTO public.notice VALUES (15054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696715383);
INSERT INTO public.notice VALUES (15055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696715985);
INSERT INTO public.notice VALUES (15056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696716585);
INSERT INTO public.notice VALUES (15057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696717183);
INSERT INTO public.notice VALUES (15058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696717783);
INSERT INTO public.notice VALUES (15059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696718385);
INSERT INTO public.notice VALUES (15060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696718984);
INSERT INTO public.notice VALUES (15061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696719584);
INSERT INTO public.notice VALUES (15062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696720185);
INSERT INTO public.notice VALUES (15063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696720784);
INSERT INTO public.notice VALUES (15064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696721383);
INSERT INTO public.notice VALUES (15065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696721983);
INSERT INTO public.notice VALUES (15066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696722584);
INSERT INTO public.notice VALUES (15067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696723183);
INSERT INTO public.notice VALUES (15068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696723783);
INSERT INTO public.notice VALUES (15069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696724384);
INSERT INTO public.notice VALUES (15070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696724984);
INSERT INTO public.notice VALUES (15071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696725585);
INSERT INTO public.notice VALUES (15072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696726183);
INSERT INTO public.notice VALUES (15073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696726785);
INSERT INTO public.notice VALUES (15074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696727384);
INSERT INTO public.notice VALUES (15076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696728584);
INSERT INTO public.notice VALUES (15077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696729184);
INSERT INTO public.notice VALUES (15078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696729785);
INSERT INTO public.notice VALUES (15079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696730384);
INSERT INTO public.notice VALUES (15080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696730984);
INSERT INTO public.notice VALUES (25451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702958707);
INSERT INTO public.notice VALUES (25452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702959308);
INSERT INTO public.notice VALUES (25453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702959911);
INSERT INTO public.notice VALUES (26248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703437235);
INSERT INTO public.notice VALUES (26252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703439635);
INSERT INTO public.notice VALUES (15075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696727984);
INSERT INTO public.notice VALUES (15081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696731585);
INSERT INTO public.notice VALUES (15082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696732183);
INSERT INTO public.notice VALUES (15083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696732783);
INSERT INTO public.notice VALUES (15084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696733385);
INSERT INTO public.notice VALUES (15085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696733984);
INSERT INTO public.notice VALUES (15086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696734584);
INSERT INTO public.notice VALUES (15087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696735183);
INSERT INTO public.notice VALUES (15088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696735785);
INSERT INTO public.notice VALUES (15089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696736383);
INSERT INTO public.notice VALUES (15090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696736983);
INSERT INTO public.notice VALUES (15091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696737584);
INSERT INTO public.notice VALUES (15092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696738184);
INSERT INTO public.notice VALUES (15093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696738784);
INSERT INTO public.notice VALUES (15094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696739383);
INSERT INTO public.notice VALUES (15095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696739984);
INSERT INTO public.notice VALUES (25454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702960514);
INSERT INTO public.notice VALUES (25461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702964708);
INSERT INTO public.notice VALUES (26250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703438436);
INSERT INTO public.notice VALUES (26251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703439035);
INSERT INTO public.notice VALUES (26894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703824836);
INSERT INTO public.notice VALUES (26895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703825435);
INSERT INTO public.notice VALUES (26898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703827235);
INSERT INTO public.notice VALUES (27304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704070836);
INSERT INTO public.notice VALUES (27305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704071436);
INSERT INTO public.notice VALUES (27642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704273644);
INSERT INTO public.notice VALUES (27644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704274835);
INSERT INTO public.notice VALUES (27848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704397235);
INSERT INTO public.notice VALUES (27849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704397837);
INSERT INTO public.notice VALUES (27955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704461436);
INSERT INTO public.notice VALUES (15096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696740584);
INSERT INTO public.notice VALUES (15097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696741185);
INSERT INTO public.notice VALUES (15098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696741783);
INSERT INTO public.notice VALUES (15099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696742385);
INSERT INTO public.notice VALUES (15100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696742983);
INSERT INTO public.notice VALUES (15101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696743583);
INSERT INTO public.notice VALUES (15102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696744184);
INSERT INTO public.notice VALUES (15103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696744784);
INSERT INTO public.notice VALUES (15104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696745383);
INSERT INTO public.notice VALUES (15105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696745982);
INSERT INTO public.notice VALUES (15106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696746585);
INSERT INTO public.notice VALUES (15107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696747185);
INSERT INTO public.notice VALUES (15108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696747783);
INSERT INTO public.notice VALUES (15109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696748384);
INSERT INTO public.notice VALUES (15110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696748984);
INSERT INTO public.notice VALUES (15111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696749583);
INSERT INTO public.notice VALUES (15112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696750183);
INSERT INTO public.notice VALUES (15113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696750786);
INSERT INTO public.notice VALUES (15114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696751385);
INSERT INTO public.notice VALUES (15164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696781385);
INSERT INTO public.notice VALUES (15165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696781983);
INSERT INTO public.notice VALUES (15166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696782584);
INSERT INTO public.notice VALUES (15167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696783182);
INSERT INTO public.notice VALUES (25455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702961112);
INSERT INTO public.notice VALUES (26253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703440236);
INSERT INTO public.notice VALUES (26254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703440836);
INSERT INTO public.notice VALUES (26256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703442036);
INSERT INTO public.notice VALUES (26257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703442636);
INSERT INTO public.notice VALUES (26261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703445036);
INSERT INTO public.notice VALUES (26266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703448035);
INSERT INTO public.notice VALUES (15115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696751984);
INSERT INTO public.notice VALUES (15116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696752582);
INSERT INTO public.notice VALUES (15117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696753184);
INSERT INTO public.notice VALUES (15118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696753784);
INSERT INTO public.notice VALUES (15119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696754384);
INSERT INTO public.notice VALUES (15120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696754984);
INSERT INTO public.notice VALUES (15121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696755584);
INSERT INTO public.notice VALUES (15122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696756183);
INSERT INTO public.notice VALUES (15123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696756782);
INSERT INTO public.notice VALUES (15124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696757385);
INSERT INTO public.notice VALUES (15125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696757983);
INSERT INTO public.notice VALUES (15126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696758583);
INSERT INTO public.notice VALUES (15127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696759184);
INSERT INTO public.notice VALUES (15128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696759784);
INSERT INTO public.notice VALUES (15129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696760383);
INSERT INTO public.notice VALUES (15130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696760984);
INSERT INTO public.notice VALUES (15131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696761584);
INSERT INTO public.notice VALUES (15132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696762184);
INSERT INTO public.notice VALUES (15133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696762783);
INSERT INTO public.notice VALUES (15134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696763383);
INSERT INTO public.notice VALUES (15135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696763984);
INSERT INTO public.notice VALUES (15136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696764584);
INSERT INTO public.notice VALUES (15137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696765183);
INSERT INTO public.notice VALUES (15138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696765782);
INSERT INTO public.notice VALUES (15139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696766385);
INSERT INTO public.notice VALUES (15140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696766983);
INSERT INTO public.notice VALUES (15141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696767583);
INSERT INTO public.notice VALUES (15142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696768185);
INSERT INTO public.notice VALUES (15143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696768785);
INSERT INTO public.notice VALUES (15144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696769383);
INSERT INTO public.notice VALUES (15145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696769983);
INSERT INTO public.notice VALUES (15146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696770584);
INSERT INTO public.notice VALUES (15147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696771184);
INSERT INTO public.notice VALUES (15148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696771784);
INSERT INTO public.notice VALUES (15149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696772383);
INSERT INTO public.notice VALUES (15150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696772984);
INSERT INTO public.notice VALUES (15151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696773584);
INSERT INTO public.notice VALUES (15152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696774183);
INSERT INTO public.notice VALUES (15153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696774784);
INSERT INTO public.notice VALUES (15154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696775384);
INSERT INTO public.notice VALUES (15155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696775983);
INSERT INTO public.notice VALUES (15156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696776583);
INSERT INTO public.notice VALUES (15157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696777185);
INSERT INTO public.notice VALUES (15158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696777784);
INSERT INTO public.notice VALUES (15159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696778383);
INSERT INTO public.notice VALUES (15160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696778983);
INSERT INTO public.notice VALUES (15161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696779585);
INSERT INTO public.notice VALUES (15162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696780185);
INSERT INTO public.notice VALUES (15163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696780783);
INSERT INTO public.notice VALUES (15168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696783784);
INSERT INTO public.notice VALUES (15169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696784384);
INSERT INTO public.notice VALUES (15170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696784984);
INSERT INTO public.notice VALUES (15171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696785585);
INSERT INTO public.notice VALUES (15172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696786184);
INSERT INTO public.notice VALUES (15173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696786783);
INSERT INTO public.notice VALUES (15174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696787383);
INSERT INTO public.notice VALUES (15175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696787987);
INSERT INTO public.notice VALUES (15176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696788584);
INSERT INTO public.notice VALUES (15177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696789184);
INSERT INTO public.notice VALUES (15178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696789783);
INSERT INTO public.notice VALUES (15179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696790385);
INSERT INTO public.notice VALUES (15180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696790984);
INSERT INTO public.notice VALUES (15181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696791583);
INSERT INTO public.notice VALUES (15182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696792185);
INSERT INTO public.notice VALUES (15183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696792784);
INSERT INTO public.notice VALUES (15184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696793384);
INSERT INTO public.notice VALUES (15185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696793985);
INSERT INTO public.notice VALUES (15186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696794586);
INSERT INTO public.notice VALUES (15187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696795183);
INSERT INTO public.notice VALUES (15188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696795784);
INSERT INTO public.notice VALUES (15220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696814984);
INSERT INTO public.notice VALUES (15221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696815582);
INSERT INTO public.notice VALUES (15222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696816185);
INSERT INTO public.notice VALUES (15223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696816783);
INSERT INTO public.notice VALUES (15224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696817383);
INSERT INTO public.notice VALUES (15189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696796386);
INSERT INTO public.notice VALUES (15190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696796984);
INSERT INTO public.notice VALUES (15191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696797585);
INSERT INTO public.notice VALUES (15192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696798184);
INSERT INTO public.notice VALUES (15193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696798785);
INSERT INTO public.notice VALUES (15194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696799383);
INSERT INTO public.notice VALUES (15195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696799984);
INSERT INTO public.notice VALUES (15196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696800587);
INSERT INTO public.notice VALUES (15197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696801184);
INSERT INTO public.notice VALUES (15198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696801785);
INSERT INTO public.notice VALUES (15199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696802383);
INSERT INTO public.notice VALUES (15200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696802985);
INSERT INTO public.notice VALUES (15201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696803585);
INSERT INTO public.notice VALUES (15202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696804184);
INSERT INTO public.notice VALUES (15203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696804783);
INSERT INTO public.notice VALUES (15204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696805384);
INSERT INTO public.notice VALUES (15205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696805983);
INSERT INTO public.notice VALUES (15206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696806584);
INSERT INTO public.notice VALUES (15207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696807185);
INSERT INTO public.notice VALUES (15208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696807784);
INSERT INTO public.notice VALUES (15209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696808384);
INSERT INTO public.notice VALUES (15210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696808985);
INSERT INTO public.notice VALUES (15211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696809584);
INSERT INTO public.notice VALUES (15212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696810184);
INSERT INTO public.notice VALUES (15213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696810784);
INSERT INTO public.notice VALUES (15214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696811385);
INSERT INTO public.notice VALUES (15215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696811984);
INSERT INTO public.notice VALUES (15216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696812584);
INSERT INTO public.notice VALUES (15217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696813184);
INSERT INTO public.notice VALUES (15218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696813785);
INSERT INTO public.notice VALUES (15219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696814384);
INSERT INTO public.notice VALUES (25456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702961709);
INSERT INTO public.notice VALUES (25457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702962307);
INSERT INTO public.notice VALUES (26255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703441435);
INSERT INTO public.notice VALUES (26258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703443235);
INSERT INTO public.notice VALUES (26259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703443835);
INSERT INTO public.notice VALUES (26260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703444436);
INSERT INTO public.notice VALUES (26896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703826034);
INSERT INTO public.notice VALUES (26897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703826637);
INSERT INTO public.notice VALUES (27307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704072636);
INSERT INTO public.notice VALUES (27643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704274236);
INSERT INTO public.notice VALUES (27855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704401439);
INSERT INTO public.notice VALUES (27856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704402036);
INSERT INTO public.notice VALUES (27857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704402636);
INSERT INTO public.notice VALUES (27859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704403836);
INSERT INTO public.notice VALUES (15225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696817982);
INSERT INTO public.notice VALUES (15226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696818584);
INSERT INTO public.notice VALUES (15227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696819183);
INSERT INTO public.notice VALUES (15228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696819783);
INSERT INTO public.notice VALUES (15229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696820384);
INSERT INTO public.notice VALUES (15230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696820984);
INSERT INTO public.notice VALUES (15231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696821583);
INSERT INTO public.notice VALUES (15232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696822182);
INSERT INTO public.notice VALUES (15233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696822784);
INSERT INTO public.notice VALUES (15234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696823384);
INSERT INTO public.notice VALUES (15235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696823983);
INSERT INTO public.notice VALUES (15236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696824582);
INSERT INTO public.notice VALUES (15237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696825184);
INSERT INTO public.notice VALUES (15238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696825783);
INSERT INTO public.notice VALUES (15239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696826383);
INSERT INTO public.notice VALUES (15240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696826982);
INSERT INTO public.notice VALUES (15250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696832983);
INSERT INTO public.notice VALUES (15251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696833584);
INSERT INTO public.notice VALUES (15252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696834184);
INSERT INTO public.notice VALUES (15253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696834783);
INSERT INTO public.notice VALUES (15254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696835383);
INSERT INTO public.notice VALUES (25458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702962907);
INSERT INTO public.notice VALUES (25459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702963508);
INSERT INTO public.notice VALUES (26262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703445635);
INSERT INTO public.notice VALUES (26263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703446235);
INSERT INTO public.notice VALUES (26264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703446834);
INSERT INTO public.notice VALUES (26265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703447437);
INSERT INTO public.notice VALUES (26267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703448635);
INSERT INTO public.notice VALUES (26268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703449236);
INSERT INTO public.notice VALUES (26271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703451036);
INSERT INTO public.notice VALUES (15241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696827584);
INSERT INTO public.notice VALUES (15242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696828183);
INSERT INTO public.notice VALUES (15243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696828783);
INSERT INTO public.notice VALUES (15244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696829385);
INSERT INTO public.notice VALUES (15245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696829984);
INSERT INTO public.notice VALUES (15246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696830583);
INSERT INTO public.notice VALUES (15247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696831184);
INSERT INTO public.notice VALUES (15248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696831784);
INSERT INTO public.notice VALUES (15249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696832384);
INSERT INTO public.notice VALUES (15255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696835984);
INSERT INTO public.notice VALUES (15256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696836583);
INSERT INTO public.notice VALUES (15257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696837184);
INSERT INTO public.notice VALUES (15258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696837784);
INSERT INTO public.notice VALUES (15259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696838384);
INSERT INTO public.notice VALUES (15260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696838983);
INSERT INTO public.notice VALUES (15261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696839583);
INSERT INTO public.notice VALUES (15262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696840184);
INSERT INTO public.notice VALUES (15277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696849184);
INSERT INTO public.notice VALUES (15278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696849783);
INSERT INTO public.notice VALUES (15279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696850383);
INSERT INTO public.notice VALUES (25460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702964108);
INSERT INTO public.notice VALUES (25462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702965307);
INSERT INTO public.notice VALUES (25464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702966508);
INSERT INTO public.notice VALUES (26269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703449836);
INSERT INTO public.notice VALUES (26270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703450442);
INSERT INTO public.notice VALUES (26272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703451636);
INSERT INTO public.notice VALUES (26899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703827835);
INSERT INTO public.notice VALUES (26902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703829635);
INSERT INTO public.notice VALUES (26907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703832645);
INSERT INTO public.notice VALUES (27308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704073236);
INSERT INTO public.notice VALUES (15263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696840784);
INSERT INTO public.notice VALUES (15264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696841383);
INSERT INTO public.notice VALUES (15265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696841983);
INSERT INTO public.notice VALUES (15266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696842584);
INSERT INTO public.notice VALUES (15267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696843184);
INSERT INTO public.notice VALUES (15268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696843783);
INSERT INTO public.notice VALUES (15269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696844384);
INSERT INTO public.notice VALUES (15270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696844984);
INSERT INTO public.notice VALUES (15271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696845583);
INSERT INTO public.notice VALUES (15272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696846183);
INSERT INTO public.notice VALUES (15273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696846784);
INSERT INTO public.notice VALUES (15274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696847384);
INSERT INTO public.notice VALUES (15275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696847983);
INSERT INTO public.notice VALUES (15276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696848582);
INSERT INTO public.notice VALUES (15280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696850985);
INSERT INTO public.notice VALUES (15281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696851584);
INSERT INTO public.notice VALUES (15282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696852183);
INSERT INTO public.notice VALUES (15283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696852783);
INSERT INTO public.notice VALUES (15284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696853386);
INSERT INTO public.notice VALUES (15285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696853984);
INSERT INTO public.notice VALUES (15286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696854583);
INSERT INTO public.notice VALUES (15287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696855184);
INSERT INTO public.notice VALUES (25463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702965907);
INSERT INTO public.notice VALUES (25465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702967108);
INSERT INTO public.notice VALUES (25470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702970107);
INSERT INTO public.notice VALUES (25471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702970708);
INSERT INTO public.notice VALUES (26273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703452235);
INSERT INTO public.notice VALUES (26278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703455234);
INSERT INTO public.notice VALUES (26281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703457035);
INSERT INTO public.notice VALUES (26283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703458236);
INSERT INTO public.notice VALUES (15288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696855785);
INSERT INTO public.notice VALUES (15289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696856385);
INSERT INTO public.notice VALUES (15290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696856984);
INSERT INTO public.notice VALUES (15291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696857585);
INSERT INTO public.notice VALUES (15292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696858184);
INSERT INTO public.notice VALUES (15293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696858783);
INSERT INTO public.notice VALUES (15294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696859383);
INSERT INTO public.notice VALUES (15295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696859984);
INSERT INTO public.notice VALUES (15296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696860584);
INSERT INTO public.notice VALUES (15297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696861183);
INSERT INTO public.notice VALUES (15298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696861784);
INSERT INTO public.notice VALUES (15299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696862385);
INSERT INTO public.notice VALUES (15300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696862984);
INSERT INTO public.notice VALUES (15301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696863583);
INSERT INTO public.notice VALUES (15302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696864185);
INSERT INTO public.notice VALUES (15303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696864784);
INSERT INTO public.notice VALUES (15304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696865384);
INSERT INTO public.notice VALUES (15305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696865982);
INSERT INTO public.notice VALUES (15306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696866585);
INSERT INTO public.notice VALUES (15307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696867185);
INSERT INTO public.notice VALUES (15308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696867784);
INSERT INTO public.notice VALUES (15309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696868384);
INSERT INTO public.notice VALUES (15325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696877983);
INSERT INTO public.notice VALUES (25466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702967707);
INSERT INTO public.notice VALUES (25467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702968307);
INSERT INTO public.notice VALUES (25468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702968908);
INSERT INTO public.notice VALUES (25469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702969507);
INSERT INTO public.notice VALUES (25473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702971907);
INSERT INTO public.notice VALUES (25474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702972507);
INSERT INTO public.notice VALUES (26274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703452835);
INSERT INTO public.notice VALUES (15310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696868984);
INSERT INTO public.notice VALUES (15311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696869583);
INSERT INTO public.notice VALUES (15312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696870183);
INSERT INTO public.notice VALUES (15313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696870785);
INSERT INTO public.notice VALUES (15314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696871384);
INSERT INTO public.notice VALUES (15315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696871983);
INSERT INTO public.notice VALUES (15316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696872585);
INSERT INTO public.notice VALUES (15317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696873184);
INSERT INTO public.notice VALUES (15318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696873784);
INSERT INTO public.notice VALUES (15319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696874384);
INSERT INTO public.notice VALUES (15320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696874985);
INSERT INTO public.notice VALUES (15321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696875584);
INSERT INTO public.notice VALUES (15322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696876184);
INSERT INTO public.notice VALUES (15323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696876783);
INSERT INTO public.notice VALUES (15324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696877385);
INSERT INTO public.notice VALUES (15326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696878584);
INSERT INTO public.notice VALUES (15327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696879184);
INSERT INTO public.notice VALUES (15328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696879784);
INSERT INTO public.notice VALUES (15329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696880383);
INSERT INTO public.notice VALUES (15330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696880985);
INSERT INTO public.notice VALUES (15331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696881584);
INSERT INTO public.notice VALUES (15332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696882183);
INSERT INTO public.notice VALUES (15333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696882784);
INSERT INTO public.notice VALUES (15336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696884583);
INSERT INTO public.notice VALUES (15337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696885183);
INSERT INTO public.notice VALUES (15338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696885784);
INSERT INTO public.notice VALUES (15339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696886384);
INSERT INTO public.notice VALUES (15340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696886983);
INSERT INTO public.notice VALUES (15341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696887582);
INSERT INTO public.notice VALUES (15342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696888185);
INSERT INTO public.notice VALUES (15334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696883386);
INSERT INTO public.notice VALUES (15335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696883984);
INSERT INTO public.notice VALUES (25472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702971308);
INSERT INTO public.notice VALUES (25475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702973108);
INSERT INTO public.notice VALUES (25477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702974308);
INSERT INTO public.notice VALUES (26275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703453436);
INSERT INTO public.notice VALUES (26276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703454036);
INSERT INTO public.notice VALUES (26277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703454635);
INSERT INTO public.notice VALUES (26900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703828436);
INSERT INTO public.notice VALUES (27309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704073835);
INSERT INTO public.notice VALUES (27645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704275435);
INSERT INTO public.notice VALUES (27858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704403235);
INSERT INTO public.notice VALUES (27861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704405036);
INSERT INTO public.notice VALUES (27863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704406236);
INSERT INTO public.notice VALUES (27864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704406836);
INSERT INTO public.notice VALUES (15343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696888784);
INSERT INTO public.notice VALUES (15344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696889384);
INSERT INTO public.notice VALUES (15345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696889985);
INSERT INTO public.notice VALUES (15346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696890585);
INSERT INTO public.notice VALUES (15347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696891183);
INSERT INTO public.notice VALUES (15348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696891783);
INSERT INTO public.notice VALUES (15349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696892385);
INSERT INTO public.notice VALUES (15350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696892983);
INSERT INTO public.notice VALUES (15351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696893584);
INSERT INTO public.notice VALUES (15352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696894185);
INSERT INTO public.notice VALUES (15353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696894784);
INSERT INTO public.notice VALUES (15354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696895384);
INSERT INTO public.notice VALUES (15355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696895983);
INSERT INTO public.notice VALUES (15356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696896585);
INSERT INTO public.notice VALUES (15357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696897184);
INSERT INTO public.notice VALUES (15358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696897783);
INSERT INTO public.notice VALUES (15359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696898383);
INSERT INTO public.notice VALUES (15360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696898985);
INSERT INTO public.notice VALUES (15361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696899584);
INSERT INTO public.notice VALUES (15362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696900183);
INSERT INTO public.notice VALUES (15363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696900785);
INSERT INTO public.notice VALUES (15364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696901384);
INSERT INTO public.notice VALUES (15365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696901983);
INSERT INTO public.notice VALUES (15366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696902584);
INSERT INTO public.notice VALUES (15367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696903185);
INSERT INTO public.notice VALUES (15368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696903784);
INSERT INTO public.notice VALUES (15372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696906183);
INSERT INTO public.notice VALUES (15373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696906783);
INSERT INTO public.notice VALUES (15376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696908583);
INSERT INTO public.notice VALUES (15380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696910983);
INSERT INTO public.notice VALUES (15369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696904383);
INSERT INTO public.notice VALUES (15370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696904985);
INSERT INTO public.notice VALUES (15371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696905584);
INSERT INTO public.notice VALUES (15374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696907384);
INSERT INTO public.notice VALUES (15375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696907984);
INSERT INTO public.notice VALUES (15377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696909182);
INSERT INTO public.notice VALUES (15378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696909784);
INSERT INTO public.notice VALUES (15379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696910383);
INSERT INTO public.notice VALUES (15405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696925983);
INSERT INTO public.notice VALUES (15406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696926584);
INSERT INTO public.notice VALUES (25476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702973708);
INSERT INTO public.notice VALUES (26279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703455836);
INSERT INTO public.notice VALUES (26901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703829036);
INSERT INTO public.notice VALUES (26903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703830235);
INSERT INTO public.notice VALUES (26904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703830836);
INSERT INTO public.notice VALUES (15381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696911586);
INSERT INTO public.notice VALUES (15382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696912184);
INSERT INTO public.notice VALUES (15383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696912783);
INSERT INTO public.notice VALUES (15384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696913383);
INSERT INTO public.notice VALUES (15385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696913984);
INSERT INTO public.notice VALUES (15386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696914584);
INSERT INTO public.notice VALUES (15387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696915184);
INSERT INTO public.notice VALUES (15388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696915782);
INSERT INTO public.notice VALUES (15389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696916384);
INSERT INTO public.notice VALUES (15390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696916984);
INSERT INTO public.notice VALUES (15391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696917584);
INSERT INTO public.notice VALUES (15392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696918185);
INSERT INTO public.notice VALUES (15393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696918783);
INSERT INTO public.notice VALUES (15394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696919383);
INSERT INTO public.notice VALUES (15395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696919982);
INSERT INTO public.notice VALUES (15396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696920584);
INSERT INTO public.notice VALUES (15397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696921183);
INSERT INTO public.notice VALUES (15398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696921783);
INSERT INTO public.notice VALUES (15399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696922385);
INSERT INTO public.notice VALUES (15400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696922984);
INSERT INTO public.notice VALUES (15401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696923583);
INSERT INTO public.notice VALUES (15402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696924182);
INSERT INTO public.notice VALUES (15403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696924784);
INSERT INTO public.notice VALUES (15404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696925385);
INSERT INTO public.notice VALUES (15407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696927184);
INSERT INTO public.notice VALUES (15408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696927783);
INSERT INTO public.notice VALUES (15409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696928383);
INSERT INTO public.notice VALUES (15410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696928985);
INSERT INTO public.notice VALUES (15411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696929583);
INSERT INTO public.notice VALUES (15412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696930183);
INSERT INTO public.notice VALUES (15413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696930782);
INSERT INTO public.notice VALUES (15414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696931384);
INSERT INTO public.notice VALUES (15415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696931985);
INSERT INTO public.notice VALUES (15416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696932583);
INSERT INTO public.notice VALUES (15417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696933185);
INSERT INTO public.notice VALUES (15427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696939183);
INSERT INTO public.notice VALUES (15428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696939784);
INSERT INTO public.notice VALUES (15429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696940384);
INSERT INTO public.notice VALUES (15430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696940983);
INSERT INTO public.notice VALUES (15431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696941584);
INSERT INTO public.notice VALUES (15432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696942184);
INSERT INTO public.notice VALUES (15433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696942784);
INSERT INTO public.notice VALUES (25478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702974908);
INSERT INTO public.notice VALUES (25483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702977908);
INSERT INTO public.notice VALUES (25484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702978508);
INSERT INTO public.notice VALUES (15418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696933783);
INSERT INTO public.notice VALUES (15419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696934383);
INSERT INTO public.notice VALUES (15420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696934983);
INSERT INTO public.notice VALUES (15421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696935585);
INSERT INTO public.notice VALUES (15422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696936183);
INSERT INTO public.notice VALUES (15423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696936783);
INSERT INTO public.notice VALUES (15424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696937385);
INSERT INTO public.notice VALUES (15425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696937983);
INSERT INTO public.notice VALUES (15426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696938584);
INSERT INTO public.notice VALUES (15434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696943383);
INSERT INTO public.notice VALUES (15435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696943985);
INSERT INTO public.notice VALUES (15436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696944584);
INSERT INTO public.notice VALUES (15437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696945183);
INSERT INTO public.notice VALUES (15438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696945784);
INSERT INTO public.notice VALUES (15439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696946384);
INSERT INTO public.notice VALUES (15440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696946984);
INSERT INTO public.notice VALUES (15441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696947583);
INSERT INTO public.notice VALUES (15442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696948184);
INSERT INTO public.notice VALUES (15443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696948784);
INSERT INTO public.notice VALUES (15444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696949384);
INSERT INTO public.notice VALUES (15445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696949982);
INSERT INTO public.notice VALUES (15446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696950584);
INSERT INTO public.notice VALUES (15447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696951184);
INSERT INTO public.notice VALUES (15448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696951783);
INSERT INTO public.notice VALUES (15449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696952385);
INSERT INTO public.notice VALUES (15450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696952983);
INSERT INTO public.notice VALUES (15451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696953583);
INSERT INTO public.notice VALUES (15452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696954183);
INSERT INTO public.notice VALUES (15453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696954784);
INSERT INTO public.notice VALUES (15454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696955383);
INSERT INTO public.notice VALUES (15455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696955984);
INSERT INTO public.notice VALUES (15456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696956584);
INSERT INTO public.notice VALUES (15460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696958984);
INSERT INTO public.notice VALUES (15461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696959585);
INSERT INTO public.notice VALUES (15462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696960184);
INSERT INTO public.notice VALUES (15463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696960784);
INSERT INTO public.notice VALUES (15464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696961384);
INSERT INTO public.notice VALUES (15465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696961984);
INSERT INTO public.notice VALUES (15466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696962583);
INSERT INTO public.notice VALUES (15467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696963185);
INSERT INTO public.notice VALUES (25479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702975508);
INSERT INTO public.notice VALUES (25480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702976107);
INSERT INTO public.notice VALUES (25481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702976707);
INSERT INTO public.notice VALUES (25482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702977308);
INSERT INTO public.notice VALUES (26280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703456435);
INSERT INTO public.notice VALUES (15457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696957184);
INSERT INTO public.notice VALUES (15458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696957784);
INSERT INTO public.notice VALUES (15459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696958383);
INSERT INTO public.notice VALUES (15468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696963784);
INSERT INTO public.notice VALUES (15469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696964384);
INSERT INTO public.notice VALUES (15470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696964982);
INSERT INTO public.notice VALUES (15471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696965585);
INSERT INTO public.notice VALUES (15472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696966184);
INSERT INTO public.notice VALUES (15473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696966783);
INSERT INTO public.notice VALUES (15474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696967386);
INSERT INTO public.notice VALUES (15475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696967984);
INSERT INTO public.notice VALUES (15476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696968585);
INSERT INTO public.notice VALUES (15477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696969183);
INSERT INTO public.notice VALUES (15478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696969785);
INSERT INTO public.notice VALUES (15479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696970385);
INSERT INTO public.notice VALUES (15480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696970983);
INSERT INTO public.notice VALUES (15481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696971583);
INSERT INTO public.notice VALUES (15482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696972184);
INSERT INTO public.notice VALUES (15483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696972784);
INSERT INTO public.notice VALUES (15484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696973383);
INSERT INTO public.notice VALUES (15485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696973986);
INSERT INTO public.notice VALUES (15486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696986643);
INSERT INTO public.notice VALUES (15487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696987241);
INSERT INTO public.notice VALUES (15488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696987842);
INSERT INTO public.notice VALUES (15489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696988442);
INSERT INTO public.notice VALUES (15490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696989041);
INSERT INTO public.notice VALUES (15491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696989641);
INSERT INTO public.notice VALUES (15492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696990240);
INSERT INTO public.notice VALUES (15493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696990842);
INSERT INTO public.notice VALUES (15494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696991441);
INSERT INTO public.notice VALUES (15495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696992041);
INSERT INTO public.notice VALUES (15496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696992643);
INSERT INTO public.notice VALUES (15497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696993243);
INSERT INTO public.notice VALUES (15498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696993841);
INSERT INTO public.notice VALUES (15499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696994440);
INSERT INTO public.notice VALUES (15500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696995042);
INSERT INTO public.notice VALUES (15501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696995641);
INSERT INTO public.notice VALUES (15502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696996241);
INSERT INTO public.notice VALUES (15503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696996843);
INSERT INTO public.notice VALUES (15504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696997442);
INSERT INTO public.notice VALUES (15505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696998041);
INSERT INTO public.notice VALUES (15506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696998640);
INSERT INTO public.notice VALUES (15507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696999242);
INSERT INTO public.notice VALUES (15508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1696999841);
INSERT INTO public.notice VALUES (15509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697000441);
INSERT INTO public.notice VALUES (15510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697001040);
INSERT INTO public.notice VALUES (15511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697001642);
INSERT INTO public.notice VALUES (15512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697002241);
INSERT INTO public.notice VALUES (15513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697002841);
INSERT INTO public.notice VALUES (15514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697003442);
INSERT INTO public.notice VALUES (15519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697006441);
INSERT INTO public.notice VALUES (15520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697007041);
INSERT INTO public.notice VALUES (15521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697007642);
INSERT INTO public.notice VALUES (15540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697019041);
INSERT INTO public.notice VALUES (15541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697019641);
INSERT INTO public.notice VALUES (15542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697020241);
INSERT INTO public.notice VALUES (15543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697020842);
INSERT INTO public.notice VALUES (15544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697021441);
INSERT INTO public.notice VALUES (15545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697022041);
INSERT INTO public.notice VALUES (15546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697022641);
INSERT INTO public.notice VALUES (15515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697004042);
INSERT INTO public.notice VALUES (15516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697004641);
INSERT INTO public.notice VALUES (15517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697005240);
INSERT INTO public.notice VALUES (15518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697005842);
INSERT INTO public.notice VALUES (15522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697008242);
INSERT INTO public.notice VALUES (15523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697008841);
INSERT INTO public.notice VALUES (15524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697009441);
INSERT INTO public.notice VALUES (15525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697010042);
INSERT INTO public.notice VALUES (15526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697010641);
INSERT INTO public.notice VALUES (15527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697011242);
INSERT INTO public.notice VALUES (15528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697011840);
INSERT INTO public.notice VALUES (15529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697012442);
INSERT INTO public.notice VALUES (15530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697013041);
INSERT INTO public.notice VALUES (15531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697013640);
INSERT INTO public.notice VALUES (15532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697014242);
INSERT INTO public.notice VALUES (15533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697014841);
INSERT INTO public.notice VALUES (15534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697015442);
INSERT INTO public.notice VALUES (15535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697016040);
INSERT INTO public.notice VALUES (15536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697016642);
INSERT INTO public.notice VALUES (15537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697017241);
INSERT INTO public.notice VALUES (15538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697017841);
INSERT INTO public.notice VALUES (15539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697018442);
INSERT INTO public.notice VALUES (15547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697023242);
INSERT INTO public.notice VALUES (15548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697023842);
INSERT INTO public.notice VALUES (15581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697043641);
INSERT INTO public.notice VALUES (15582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697044243);
INSERT INTO public.notice VALUES (15583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697044842);
INSERT INTO public.notice VALUES (15584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697045442);
INSERT INTO public.notice VALUES (15585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697046041);
INSERT INTO public.notice VALUES (15586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697046642);
INSERT INTO public.notice VALUES (15549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697024441);
INSERT INTO public.notice VALUES (15550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697025043);
INSERT INTO public.notice VALUES (15551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697025641);
INSERT INTO public.notice VALUES (15552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697026241);
INSERT INTO public.notice VALUES (15553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697026842);
INSERT INTO public.notice VALUES (15554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697027442);
INSERT INTO public.notice VALUES (15555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697028043);
INSERT INTO public.notice VALUES (15556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697028641);
INSERT INTO public.notice VALUES (15557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697029242);
INSERT INTO public.notice VALUES (15558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697029842);
INSERT INTO public.notice VALUES (15559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697030442);
INSERT INTO public.notice VALUES (15560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697031040);
INSERT INTO public.notice VALUES (15561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697031642);
INSERT INTO public.notice VALUES (15562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697032241);
INSERT INTO public.notice VALUES (15563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697032841);
INSERT INTO public.notice VALUES (15564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697033442);
INSERT INTO public.notice VALUES (15565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697034043);
INSERT INTO public.notice VALUES (15566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697034642);
INSERT INTO public.notice VALUES (15567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697035240);
INSERT INTO public.notice VALUES (15568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697035843);
INSERT INTO public.notice VALUES (15569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697036441);
INSERT INTO public.notice VALUES (15570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697037041);
INSERT INTO public.notice VALUES (15571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697037640);
INSERT INTO public.notice VALUES (15572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697038242);
INSERT INTO public.notice VALUES (15573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697038841);
INSERT INTO public.notice VALUES (15574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697039441);
INSERT INTO public.notice VALUES (15575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697040043);
INSERT INTO public.notice VALUES (15576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697040642);
INSERT INTO public.notice VALUES (15577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697041241);
INSERT INTO public.notice VALUES (15578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697041840);
INSERT INTO public.notice VALUES (15579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697042442);
INSERT INTO public.notice VALUES (15580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697043041);
INSERT INTO public.notice VALUES (25485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702979107);
INSERT INTO public.notice VALUES (25487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702980318);
INSERT INTO public.notice VALUES (25489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702981506);
INSERT INTO public.notice VALUES (25490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702982108);
INSERT INTO public.notice VALUES (25494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702984508);
INSERT INTO public.notice VALUES (25496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702985708);
INSERT INTO public.notice VALUES (25497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702986308);
INSERT INTO public.notice VALUES (26282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703457636);
INSERT INTO public.notice VALUES (26286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703460043);
INSERT INTO public.notice VALUES (26287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703460639);
INSERT INTO public.notice VALUES (26291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703463035);
INSERT INTO public.notice VALUES (26905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703831436);
INSERT INTO public.notice VALUES (27310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704074435);
INSERT INTO public.notice VALUES (15587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697047243);
INSERT INTO public.notice VALUES (15588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697047842);
INSERT INTO public.notice VALUES (15589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697048440);
INSERT INTO public.notice VALUES (15590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697049042);
INSERT INTO public.notice VALUES (15591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697049642);
INSERT INTO public.notice VALUES (15592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697050242);
INSERT INTO public.notice VALUES (15593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697050842);
INSERT INTO public.notice VALUES (15594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697051441);
INSERT INTO public.notice VALUES (15595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697052041);
INSERT INTO public.notice VALUES (15596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697052640);
INSERT INTO public.notice VALUES (15597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697053242);
INSERT INTO public.notice VALUES (15598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697053841);
INSERT INTO public.notice VALUES (15599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697054441);
INSERT INTO public.notice VALUES (15600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697055045);
INSERT INTO public.notice VALUES (15601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697055643);
INSERT INTO public.notice VALUES (15602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697056242);
INSERT INTO public.notice VALUES (15603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697056840);
INSERT INTO public.notice VALUES (15604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697057443);
INSERT INTO public.notice VALUES (15605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697058042);
INSERT INTO public.notice VALUES (15606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697058642);
INSERT INTO public.notice VALUES (15607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697059242);
INSERT INTO public.notice VALUES (15608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697059842);
INSERT INTO public.notice VALUES (15609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697060441);
INSERT INTO public.notice VALUES (15610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697061040);
INSERT INTO public.notice VALUES (15611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697061642);
INSERT INTO public.notice VALUES (15612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697062242);
INSERT INTO public.notice VALUES (15613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697062842);
INSERT INTO public.notice VALUES (15614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697063442);
INSERT INTO public.notice VALUES (15615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697064042);
INSERT INTO public.notice VALUES (15616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697064641);
INSERT INTO public.notice VALUES (15617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697065241);
INSERT INTO public.notice VALUES (15618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697065842);
INSERT INTO public.notice VALUES (15619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697066442);
INSERT INTO public.notice VALUES (15620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697067041);
INSERT INTO public.notice VALUES (15621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697067640);
INSERT INTO public.notice VALUES (15622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697068243);
INSERT INTO public.notice VALUES (15623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697068841);
INSERT INTO public.notice VALUES (15624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697069442);
INSERT INTO public.notice VALUES (15625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697070041);
INSERT INTO public.notice VALUES (15626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697070642);
INSERT INTO public.notice VALUES (15627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697071243);
INSERT INTO public.notice VALUES (15628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697071841);
INSERT INTO public.notice VALUES (15629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697072443);
INSERT INTO public.notice VALUES (15630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697073042);
INSERT INTO public.notice VALUES (15631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697073642);
INSERT INTO public.notice VALUES (15632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697074241);
INSERT INTO public.notice VALUES (15633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697074842);
INSERT INTO public.notice VALUES (15634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697075442);
INSERT INTO public.notice VALUES (15635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697076041);
INSERT INTO public.notice VALUES (15636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697076644);
INSERT INTO public.notice VALUES (15637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697077242);
INSERT INTO public.notice VALUES (15638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697077841);
INSERT INTO public.notice VALUES (15639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697078441);
INSERT INTO public.notice VALUES (15640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697079043);
INSERT INTO public.notice VALUES (15641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697079641);
INSERT INTO public.notice VALUES (15642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697080241);
INSERT INTO public.notice VALUES (15643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697080840);
INSERT INTO public.notice VALUES (15644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697081442);
INSERT INTO public.notice VALUES (15645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697082041);
INSERT INTO public.notice VALUES (15646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697082641);
INSERT INTO public.notice VALUES (15647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697083242);
INSERT INTO public.notice VALUES (15648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697083841);
INSERT INTO public.notice VALUES (25486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702979708);
INSERT INTO public.notice VALUES (25488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702980907);
INSERT INTO public.notice VALUES (25491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702982708);
INSERT INTO public.notice VALUES (25492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702983307);
INSERT INTO public.notice VALUES (26284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703458835);
INSERT INTO public.notice VALUES (26906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703832035);
INSERT INTO public.notice VALUES (27311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704075036);
INSERT INTO public.notice VALUES (27313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704076235);
INSERT INTO public.notice VALUES (27314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704076836);
INSERT INTO public.notice VALUES (27317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704078635);
INSERT INTO public.notice VALUES (27319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704079835);
INSERT INTO public.notice VALUES (27320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704080435);
INSERT INTO public.notice VALUES (27646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704276036);
INSERT INTO public.notice VALUES (15649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697084441);
INSERT INTO public.notice VALUES (15650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697085041);
INSERT INTO public.notice VALUES (15651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697085642);
INSERT INTO public.notice VALUES (15652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697086242);
INSERT INTO public.notice VALUES (15653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697086841);
INSERT INTO public.notice VALUES (15654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697087442);
INSERT INTO public.notice VALUES (15655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697088043);
INSERT INTO public.notice VALUES (15656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697088641);
INSERT INTO public.notice VALUES (15657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697089242);
INSERT INTO public.notice VALUES (15658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697089842);
INSERT INTO public.notice VALUES (15659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697090441);
INSERT INTO public.notice VALUES (15660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697091041);
INSERT INTO public.notice VALUES (15661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697091641);
INSERT INTO public.notice VALUES (15662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697092242);
INSERT INTO public.notice VALUES (15663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697092841);
INSERT INTO public.notice VALUES (15664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697093442);
INSERT INTO public.notice VALUES (15665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697094042);
INSERT INTO public.notice VALUES (15666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697094642);
INSERT INTO public.notice VALUES (15667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697095241);
INSERT INTO public.notice VALUES (15668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697095840);
INSERT INTO public.notice VALUES (15669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697096442);
INSERT INTO public.notice VALUES (15670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697097041);
INSERT INTO public.notice VALUES (15671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697097641);
INSERT INTO public.notice VALUES (15672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697098240);
INSERT INTO public.notice VALUES (15673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697098842);
INSERT INTO public.notice VALUES (15674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697099441);
INSERT INTO public.notice VALUES (15702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697116242);
INSERT INTO public.notice VALUES (25493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702983908);
INSERT INTO public.notice VALUES (25495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702985107);
INSERT INTO public.notice VALUES (26285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703459437);
INSERT INTO public.notice VALUES (15675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697100041);
INSERT INTO public.notice VALUES (15676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697100642);
INSERT INTO public.notice VALUES (15677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697101242);
INSERT INTO public.notice VALUES (15678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697101841);
INSERT INTO public.notice VALUES (15679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697102440);
INSERT INTO public.notice VALUES (15680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697103042);
INSERT INTO public.notice VALUES (15681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697103641);
INSERT INTO public.notice VALUES (15682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697104241);
INSERT INTO public.notice VALUES (15683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697104842);
INSERT INTO public.notice VALUES (15684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697105442);
INSERT INTO public.notice VALUES (15685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697106041);
INSERT INTO public.notice VALUES (15686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697106641);
INSERT INTO public.notice VALUES (15687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697107242);
INSERT INTO public.notice VALUES (15688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697107841);
INSERT INTO public.notice VALUES (15689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697108441);
INSERT INTO public.notice VALUES (15690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697109041);
INSERT INTO public.notice VALUES (15691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697109642);
INSERT INTO public.notice VALUES (15692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697110242);
INSERT INTO public.notice VALUES (15693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697110841);
INSERT INTO public.notice VALUES (15694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697111443);
INSERT INTO public.notice VALUES (15695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697112042);
INSERT INTO public.notice VALUES (15696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697112641);
INSERT INTO public.notice VALUES (15697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697113241);
INSERT INTO public.notice VALUES (15698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697113843);
INSERT INTO public.notice VALUES (15699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697114441);
INSERT INTO public.notice VALUES (15700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697115041);
INSERT INTO public.notice VALUES (15701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697115640);
INSERT INTO public.notice VALUES (15703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697116842);
INSERT INTO public.notice VALUES (15704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697117441);
INSERT INTO public.notice VALUES (15705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697118042);
INSERT INTO public.notice VALUES (15706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697118642);
INSERT INTO public.notice VALUES (15707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697119242);
INSERT INTO public.notice VALUES (15708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697119842);
INSERT INTO public.notice VALUES (15709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697120442);
INSERT INTO public.notice VALUES (15710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697121041);
INSERT INTO public.notice VALUES (15716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697124642);
INSERT INTO public.notice VALUES (25498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702986908);
INSERT INTO public.notice VALUES (26288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703461235);
INSERT INTO public.notice VALUES (26289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703461836);
INSERT INTO public.notice VALUES (26290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703462436);
INSERT INTO public.notice VALUES (26908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703833236);
INSERT INTO public.notice VALUES (26909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703833836);
INSERT INTO public.notice VALUES (26913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703836235);
INSERT INTO public.notice VALUES (26915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703837436);
INSERT INTO public.notice VALUES (26917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703838634);
INSERT INTO public.notice VALUES (15711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697121641);
INSERT INTO public.notice VALUES (15712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697122243);
INSERT INTO public.notice VALUES (15713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697122842);
INSERT INTO public.notice VALUES (15714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697123441);
INSERT INTO public.notice VALUES (15715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697124042);
INSERT INTO public.notice VALUES (15717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697125241);
INSERT INTO public.notice VALUES (15718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697125842);
INSERT INTO public.notice VALUES (15719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697126443);
INSERT INTO public.notice VALUES (15720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697127042);
INSERT INTO public.notice VALUES (15721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697127642);
INSERT INTO public.notice VALUES (15722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697128241);
INSERT INTO public.notice VALUES (15723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697128845);
INSERT INTO public.notice VALUES (15724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697129443);
INSERT INTO public.notice VALUES (15725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697130042);
INSERT INTO public.notice VALUES (15726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697130640);
INSERT INTO public.notice VALUES (15727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697131243);
INSERT INTO public.notice VALUES (15728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697131841);
INSERT INTO public.notice VALUES (15736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697136641);
INSERT INTO public.notice VALUES (15737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697137242);
INSERT INTO public.notice VALUES (25499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702987507);
INSERT INTO public.notice VALUES (25504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702990511);
INSERT INTO public.notice VALUES (25508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702992908);
INSERT INTO public.notice VALUES (26292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703463635);
INSERT INTO public.notice VALUES (26294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703464835);
INSERT INTO public.notice VALUES (26295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703465435);
INSERT INTO public.notice VALUES (26296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703466036);
INSERT INTO public.notice VALUES (26297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703466636);
INSERT INTO public.notice VALUES (26910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703834435);
INSERT INTO public.notice VALUES (27312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704075636);
INSERT INTO public.notice VALUES (27315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704077443);
INSERT INTO public.notice VALUES (15729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697132441);
INSERT INTO public.notice VALUES (15730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697133043);
INSERT INTO public.notice VALUES (15731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697133641);
INSERT INTO public.notice VALUES (15732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697134243);
INSERT INTO public.notice VALUES (15733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697134841);
INSERT INTO public.notice VALUES (15734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697135442);
INSERT INTO public.notice VALUES (15735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697136042);
INSERT INTO public.notice VALUES (15738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697137842);
INSERT INTO public.notice VALUES (15739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697138441);
INSERT INTO public.notice VALUES (15740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697139042);
INSERT INTO public.notice VALUES (15741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697139643);
INSERT INTO public.notice VALUES (15742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697140242);
INSERT INTO public.notice VALUES (15743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697140842);
INSERT INTO public.notice VALUES (15744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697141442);
INSERT INTO public.notice VALUES (15745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697142043);
INSERT INTO public.notice VALUES (15746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697142641);
INSERT INTO public.notice VALUES (15747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697143242);
INSERT INTO public.notice VALUES (15748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697143842);
INSERT INTO public.notice VALUES (15749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697144442);
INSERT INTO public.notice VALUES (15750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697145044);
INSERT INTO public.notice VALUES (15751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697145641);
INSERT INTO public.notice VALUES (15752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697146242);
INSERT INTO public.notice VALUES (15757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697149242);
INSERT INTO public.notice VALUES (15758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697149840);
INSERT INTO public.notice VALUES (15759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697150442);
INSERT INTO public.notice VALUES (15760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697151042);
INSERT INTO public.notice VALUES (15761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697151641);
INSERT INTO public.notice VALUES (25500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702988106);
INSERT INTO public.notice VALUES (25501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702988708);
INSERT INTO public.notice VALUES (26293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703464236);
INSERT INTO public.notice VALUES (15753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697146841);
INSERT INTO public.notice VALUES (15754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697147444);
INSERT INTO public.notice VALUES (15755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697148043);
INSERT INTO public.notice VALUES (15756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697148643);
INSERT INTO public.notice VALUES (15762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697152243);
INSERT INTO public.notice VALUES (15763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697152842);
INSERT INTO public.notice VALUES (15764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697153441);
INSERT INTO public.notice VALUES (15765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697154042);
INSERT INTO public.notice VALUES (15766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697154643);
INSERT INTO public.notice VALUES (15767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697155241);
INSERT INTO public.notice VALUES (15768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697155842);
INSERT INTO public.notice VALUES (15769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697156440);
INSERT INTO public.notice VALUES (15770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697157042);
INSERT INTO public.notice VALUES (15771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697157642);
INSERT INTO public.notice VALUES (15772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697158241);
INSERT INTO public.notice VALUES (15773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697158842);
INSERT INTO public.notice VALUES (15774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697159441);
INSERT INTO public.notice VALUES (15775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697160042);
INSERT INTO public.notice VALUES (15776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697160640);
INSERT INTO public.notice VALUES (15777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697161243);
INSERT INTO public.notice VALUES (15785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697166042);
INSERT INTO public.notice VALUES (15786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697166641);
INSERT INTO public.notice VALUES (15787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697167243);
INSERT INTO public.notice VALUES (15788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697167842);
INSERT INTO public.notice VALUES (25502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702989308);
INSERT INTO public.notice VALUES (26298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703467235);
INSERT INTO public.notice VALUES (26302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703469635);
INSERT INTO public.notice VALUES (26911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703835036);
INSERT INTO public.notice VALUES (26912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703835636);
INSERT INTO public.notice VALUES (27316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704078039);
INSERT INTO public.notice VALUES (15778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697161841);
INSERT INTO public.notice VALUES (15779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697162441);
INSERT INTO public.notice VALUES (15780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697163042);
INSERT INTO public.notice VALUES (15781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697163642);
INSERT INTO public.notice VALUES (15782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697164241);
INSERT INTO public.notice VALUES (15783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697164840);
INSERT INTO public.notice VALUES (15784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697165442);
INSERT INTO public.notice VALUES (15789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697168441);
INSERT INTO public.notice VALUES (15790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697169041);
INSERT INTO public.notice VALUES (15791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697169642);
INSERT INTO public.notice VALUES (15792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697170242);
INSERT INTO public.notice VALUES (15793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697170841);
INSERT INTO public.notice VALUES (15794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697171440);
INSERT INTO public.notice VALUES (15795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697172042);
INSERT INTO public.notice VALUES (15796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697172641);
INSERT INTO public.notice VALUES (15797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697173241);
INSERT INTO public.notice VALUES (15806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697178641);
INSERT INTO public.notice VALUES (15807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697179242);
INSERT INTO public.notice VALUES (15839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697198442);
INSERT INTO public.notice VALUES (15840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697199042);
INSERT INTO public.notice VALUES (15841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697199642);
INSERT INTO public.notice VALUES (15869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697216441);
INSERT INTO public.notice VALUES (15870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697217042);
INSERT INTO public.notice VALUES (15871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697217642);
INSERT INTO public.notice VALUES (15872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697218241);
INSERT INTO public.notice VALUES (25503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702989914);
INSERT INTO public.notice VALUES (26299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703467834);
INSERT INTO public.notice VALUES (26914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703836836);
INSERT INTO public.notice VALUES (26916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703838035);
INSERT INTO public.notice VALUES (26920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703840435);
INSERT INTO public.notice VALUES (15798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697173842);
INSERT INTO public.notice VALUES (15799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697174442);
INSERT INTO public.notice VALUES (15800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697175042);
INSERT INTO public.notice VALUES (15801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697175641);
INSERT INTO public.notice VALUES (15802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697176243);
INSERT INTO public.notice VALUES (15803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697176842);
INSERT INTO public.notice VALUES (15804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697177441);
INSERT INTO public.notice VALUES (15805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697178043);
INSERT INTO public.notice VALUES (15808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697179840);
INSERT INTO public.notice VALUES (15809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697180442);
INSERT INTO public.notice VALUES (15810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697181041);
INSERT INTO public.notice VALUES (15811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697181641);
INSERT INTO public.notice VALUES (15812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697182242);
INSERT INTO public.notice VALUES (15813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697182842);
INSERT INTO public.notice VALUES (15814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697183441);
INSERT INTO public.notice VALUES (15815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697184040);
INSERT INTO public.notice VALUES (15816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697184642);
INSERT INTO public.notice VALUES (15817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697185241);
INSERT INTO public.notice VALUES (15818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697185841);
INSERT INTO public.notice VALUES (15819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697186442);
INSERT INTO public.notice VALUES (15820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697187042);
INSERT INTO public.notice VALUES (15821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697187641);
INSERT INTO public.notice VALUES (15822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697188241);
INSERT INTO public.notice VALUES (15823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697188842);
INSERT INTO public.notice VALUES (15824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697189441);
INSERT INTO public.notice VALUES (15825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697190041);
INSERT INTO public.notice VALUES (15826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697190640);
INSERT INTO public.notice VALUES (15827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697191242);
INSERT INTO public.notice VALUES (15828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697191841);
INSERT INTO public.notice VALUES (15829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697192441);
INSERT INTO public.notice VALUES (15830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697193042);
INSERT INTO public.notice VALUES (15831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697193641);
INSERT INTO public.notice VALUES (15832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697194241);
INSERT INTO public.notice VALUES (15833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697194841);
INSERT INTO public.notice VALUES (15834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697195443);
INSERT INTO public.notice VALUES (15835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697196041);
INSERT INTO public.notice VALUES (15836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697196641);
INSERT INTO public.notice VALUES (15837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697197242);
INSERT INTO public.notice VALUES (15838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697197842);
INSERT INTO public.notice VALUES (15842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697200243);
INSERT INTO public.notice VALUES (15843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697200841);
INSERT INTO public.notice VALUES (15844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697201441);
INSERT INTO public.notice VALUES (15845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697202042);
INSERT INTO public.notice VALUES (15846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697202642);
INSERT INTO public.notice VALUES (15847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697203242);
INSERT INTO public.notice VALUES (15848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697203843);
INSERT INTO public.notice VALUES (15849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697204443);
INSERT INTO public.notice VALUES (15850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697205041);
INSERT INTO public.notice VALUES (15851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697205641);
INSERT INTO public.notice VALUES (15852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697206242);
INSERT INTO public.notice VALUES (15853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697206841);
INSERT INTO public.notice VALUES (15854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697207441);
INSERT INTO public.notice VALUES (15855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697208042);
INSERT INTO public.notice VALUES (15856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697208642);
INSERT INTO public.notice VALUES (15857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697209242);
INSERT INTO public.notice VALUES (15858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697209841);
INSERT INTO public.notice VALUES (15859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697210442);
INSERT INTO public.notice VALUES (15860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697211041);
INSERT INTO public.notice VALUES (15861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697211642);
INSERT INTO public.notice VALUES (15862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697212244);
INSERT INTO public.notice VALUES (15863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697212842);
INSERT INTO public.notice VALUES (15864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697213443);
INSERT INTO public.notice VALUES (15865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697214041);
INSERT INTO public.notice VALUES (15866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697214644);
INSERT INTO public.notice VALUES (15867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697215242);
INSERT INTO public.notice VALUES (15868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697215841);
INSERT INTO public.notice VALUES (15873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697218843);
INSERT INTO public.notice VALUES (15874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697219442);
INSERT INTO public.notice VALUES (15875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697220042);
INSERT INTO public.notice VALUES (15876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697220643);
INSERT INTO public.notice VALUES (15877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697221243);
INSERT INTO public.notice VALUES (15878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697221843);
INSERT INTO public.notice VALUES (15879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697222442);
INSERT INTO public.notice VALUES (15880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697223044);
INSERT INTO public.notice VALUES (15881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697223642);
INSERT INTO public.notice VALUES (15882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697224242);
INSERT INTO public.notice VALUES (15883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697224842);
INSERT INTO public.notice VALUES (15884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697225443);
INSERT INTO public.notice VALUES (15885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697226042);
INSERT INTO public.notice VALUES (15886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697226641);
INSERT INTO public.notice VALUES (15887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697227242);
INSERT INTO public.notice VALUES (15888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697227842);
INSERT INTO public.notice VALUES (15889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697228442);
INSERT INTO public.notice VALUES (15890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697229042);
INSERT INTO public.notice VALUES (15891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697229643);
INSERT INTO public.notice VALUES (15892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697230242);
INSERT INTO public.notice VALUES (15893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697230842);
INSERT INTO public.notice VALUES (15894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697231442);
INSERT INTO public.notice VALUES (15895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697232043);
INSERT INTO public.notice VALUES (15896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697232642);
INSERT INTO public.notice VALUES (15897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697233242);
INSERT INTO public.notice VALUES (15898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697233843);
INSERT INTO public.notice VALUES (15899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697234442);
INSERT INTO public.notice VALUES (15900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697235041);
INSERT INTO public.notice VALUES (15901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697235641);
INSERT INTO public.notice VALUES (15902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697236243);
INSERT INTO public.notice VALUES (15903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697236842);
INSERT INTO public.notice VALUES (15904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697237441);
INSERT INTO public.notice VALUES (15905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697238044);
INSERT INTO public.notice VALUES (15906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697238643);
INSERT INTO public.notice VALUES (15907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697239241);
INSERT INTO public.notice VALUES (15908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697239841);
INSERT INTO public.notice VALUES (15909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697240443);
INSERT INTO public.notice VALUES (15910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697241042);
INSERT INTO public.notice VALUES (15911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697241642);
INSERT INTO public.notice VALUES (15912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697242242);
INSERT INTO public.notice VALUES (15913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697242842);
INSERT INTO public.notice VALUES (15914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697243442);
INSERT INTO public.notice VALUES (15915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697244042);
INSERT INTO public.notice VALUES (15916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697244643);
INSERT INTO public.notice VALUES (15917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697245243);
INSERT INTO public.notice VALUES (15918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697245842);
INSERT INTO public.notice VALUES (15919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697246442);
INSERT INTO public.notice VALUES (15920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697247044);
INSERT INTO public.notice VALUES (15924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697249442);
INSERT INTO public.notice VALUES (15925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697250042);
INSERT INTO public.notice VALUES (15927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697251243);
INSERT INTO public.notice VALUES (15928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697251843);
INSERT INTO public.notice VALUES (15929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697252441);
INSERT INTO public.notice VALUES (15930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697253042);
INSERT INTO public.notice VALUES (15921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697247642);
INSERT INTO public.notice VALUES (15922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697248241);
INSERT INTO public.notice VALUES (15923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697248843);
INSERT INTO public.notice VALUES (15926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697250641);
INSERT INTO public.notice VALUES (15931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697253642);
INSERT INTO public.notice VALUES (15932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697254242);
INSERT INTO public.notice VALUES (15933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697254841);
INSERT INTO public.notice VALUES (15934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697255442);
INSERT INTO public.notice VALUES (15935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697256042);
INSERT INTO public.notice VALUES (15936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697256641);
INSERT INTO public.notice VALUES (15937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697257242);
INSERT INTO public.notice VALUES (15938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697257842);
INSERT INTO public.notice VALUES (15939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697258442);
INSERT INTO public.notice VALUES (15940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697259043);
INSERT INTO public.notice VALUES (15941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697259642);
INSERT INTO public.notice VALUES (15942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697260242);
INSERT INTO public.notice VALUES (15943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697260841);
INSERT INTO public.notice VALUES (15944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697261442);
INSERT INTO public.notice VALUES (15945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697262042);
INSERT INTO public.notice VALUES (15946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697262642);
INSERT INTO public.notice VALUES (15947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697263241);
INSERT INTO public.notice VALUES (15948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697263843);
INSERT INTO public.notice VALUES (15949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697264443);
INSERT INTO public.notice VALUES (15950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697265041);
INSERT INTO public.notice VALUES (15951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697265641);
INSERT INTO public.notice VALUES (15952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697266242);
INSERT INTO public.notice VALUES (15953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697266842);
INSERT INTO public.notice VALUES (15954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697267443);
INSERT INTO public.notice VALUES (15955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697268042);
INSERT INTO public.notice VALUES (15956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697268642);
INSERT INTO public.notice VALUES (15957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697269241);
INSERT INTO public.notice VALUES (15958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697269842);
INSERT INTO public.notice VALUES (15959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697270441);
INSERT INTO public.notice VALUES (15960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697271042);
INSERT INTO public.notice VALUES (15961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697271643);
INSERT INTO public.notice VALUES (15962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697272241);
INSERT INTO public.notice VALUES (15963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697272844);
INSERT INTO public.notice VALUES (15964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697273443);
INSERT INTO public.notice VALUES (15965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697274041);
INSERT INTO public.notice VALUES (15966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697274641);
INSERT INTO public.notice VALUES (15967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697275243);
INSERT INTO public.notice VALUES (15968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697275841);
INSERT INTO public.notice VALUES (15969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697276441);
INSERT INTO public.notice VALUES (15970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697277043);
INSERT INTO public.notice VALUES (15971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697277643);
INSERT INTO public.notice VALUES (15972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697278242);
INSERT INTO public.notice VALUES (15987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697287241);
INSERT INTO public.notice VALUES (15996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697292642);
INSERT INTO public.notice VALUES (15997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697293242);
INSERT INTO public.notice VALUES (25505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702991108);
INSERT INTO public.notice VALUES (25506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702991707);
INSERT INTO public.notice VALUES (25507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702992309);
INSERT INTO public.notice VALUES (26300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703468436);
INSERT INTO public.notice VALUES (26301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703469036);
INSERT INTO public.notice VALUES (26306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703472035);
INSERT INTO public.notice VALUES (26918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703839236);
INSERT INTO public.notice VALUES (27318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704079236);
INSERT INTO public.notice VALUES (27321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704081036);
INSERT INTO public.notice VALUES (27322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704081636);
INSERT INTO public.notice VALUES (27329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704085836);
INSERT INTO public.notice VALUES (15973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697278840);
INSERT INTO public.notice VALUES (15974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697279443);
INSERT INTO public.notice VALUES (15975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697280041);
INSERT INTO public.notice VALUES (15976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697280642);
INSERT INTO public.notice VALUES (15977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697281241);
INSERT INTO public.notice VALUES (15978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697281842);
INSERT INTO public.notice VALUES (15979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697282442);
INSERT INTO public.notice VALUES (15980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697283041);
INSERT INTO public.notice VALUES (15981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697283642);
INSERT INTO public.notice VALUES (15982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697284243);
INSERT INTO public.notice VALUES (15983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697284841);
INSERT INTO public.notice VALUES (15984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697285440);
INSERT INTO public.notice VALUES (15985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697286043);
INSERT INTO public.notice VALUES (15986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697286642);
INSERT INTO public.notice VALUES (15988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697287843);
INSERT INTO public.notice VALUES (15989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697288443);
INSERT INTO public.notice VALUES (15990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697289042);
INSERT INTO public.notice VALUES (15991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697289642);
INSERT INTO public.notice VALUES (15992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697290242);
INSERT INTO public.notice VALUES (15993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697290842);
INSERT INTO public.notice VALUES (15994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697291442);
INSERT INTO public.notice VALUES (15995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697292045);
INSERT INTO public.notice VALUES (15998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697293841);
INSERT INTO public.notice VALUES (15999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697294442);
INSERT INTO public.notice VALUES (16000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697295043);
INSERT INTO public.notice VALUES (16001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697295641);
INSERT INTO public.notice VALUES (16002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697296241);
INSERT INTO public.notice VALUES (16003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697296842);
INSERT INTO public.notice VALUES (16004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697297442);
INSERT INTO public.notice VALUES (16005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697298042);
INSERT INTO public.notice VALUES (16006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697298643);
INSERT INTO public.notice VALUES (16007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697299243);
INSERT INTO public.notice VALUES (16008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697299842);
INSERT INTO public.notice VALUES (16009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697300442);
INSERT INTO public.notice VALUES (16010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697301043);
INSERT INTO public.notice VALUES (16011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697301644);
INSERT INTO public.notice VALUES (16012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697302241);
INSERT INTO public.notice VALUES (16013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697302844);
INSERT INTO public.notice VALUES (16014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697303443);
INSERT INTO public.notice VALUES (16015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697304042);
INSERT INTO public.notice VALUES (16016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697304642);
INSERT INTO public.notice VALUES (16017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697305243);
INSERT INTO public.notice VALUES (16018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697305842);
INSERT INTO public.notice VALUES (16019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697306441);
INSERT INTO public.notice VALUES (16020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697307042);
INSERT INTO public.notice VALUES (16021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697307642);
INSERT INTO public.notice VALUES (16022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697308242);
INSERT INTO public.notice VALUES (16031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697313643);
INSERT INTO public.notice VALUES (16032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697314242);
INSERT INTO public.notice VALUES (16033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697314842);
INSERT INTO public.notice VALUES (16034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697315441);
INSERT INTO public.notice VALUES (16035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697316043);
INSERT INTO public.notice VALUES (16036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697316649);
INSERT INTO public.notice VALUES (25509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702993508);
INSERT INTO public.notice VALUES (25510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702994107);
INSERT INTO public.notice VALUES (25511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702994708);
INSERT INTO public.notice VALUES (25516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702997707);
INSERT INTO public.notice VALUES (25524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703002507);
INSERT INTO public.notice VALUES (26303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703470236);
INSERT INTO public.notice VALUES (26304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703470836);
INSERT INTO public.notice VALUES (16023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697308842);
INSERT INTO public.notice VALUES (16024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697309443);
INSERT INTO public.notice VALUES (16025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697310041);
INSERT INTO public.notice VALUES (16026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697310642);
INSERT INTO public.notice VALUES (16027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697311242);
INSERT INTO public.notice VALUES (16028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697311843);
INSERT INTO public.notice VALUES (16029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697312441);
INSERT INTO public.notice VALUES (16030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697313041);
INSERT INTO public.notice VALUES (16037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697317242);
INSERT INTO public.notice VALUES (16038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697317843);
INSERT INTO public.notice VALUES (16039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697318442);
INSERT INTO public.notice VALUES (16040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697319042);
INSERT INTO public.notice VALUES (16041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697319642);
INSERT INTO public.notice VALUES (16042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697320243);
INSERT INTO public.notice VALUES (16043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697320841);
INSERT INTO public.notice VALUES (16044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697321442);
INSERT INTO public.notice VALUES (16045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697322041);
INSERT INTO public.notice VALUES (16046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697322643);
INSERT INTO public.notice VALUES (16047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697323242);
INSERT INTO public.notice VALUES (16048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697323841);
INSERT INTO public.notice VALUES (16049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697324442);
INSERT INTO public.notice VALUES (16050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697325042);
INSERT INTO public.notice VALUES (16051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697325641);
INSERT INTO public.notice VALUES (16052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697326242);
INSERT INTO public.notice VALUES (16054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697327441);
INSERT INTO public.notice VALUES (16055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697328043);
INSERT INTO public.notice VALUES (16056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697328643);
INSERT INTO public.notice VALUES (16057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697329242);
INSERT INTO public.notice VALUES (16058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697329842);
INSERT INTO public.notice VALUES (16059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697330441);
INSERT INTO public.notice VALUES (16053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697326843);
INSERT INTO public.notice VALUES (16060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697331042);
INSERT INTO public.notice VALUES (16061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697331642);
INSERT INTO public.notice VALUES (16062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697332246);
INSERT INTO public.notice VALUES (16063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697332844);
INSERT INTO public.notice VALUES (16064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697333442);
INSERT INTO public.notice VALUES (16065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697334042);
INSERT INTO public.notice VALUES (16066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697334641);
INSERT INTO public.notice VALUES (16067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697335242);
INSERT INTO public.notice VALUES (16068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697335842);
INSERT INTO public.notice VALUES (16069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697336442);
INSERT INTO public.notice VALUES (16070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697337041);
INSERT INTO public.notice VALUES (16071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697337642);
INSERT INTO public.notice VALUES (16072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697338242);
INSERT INTO public.notice VALUES (16073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697338841);
INSERT INTO public.notice VALUES (16074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697339443);
INSERT INTO public.notice VALUES (16075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697340042);
INSERT INTO public.notice VALUES (16076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697340641);
INSERT INTO public.notice VALUES (16077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697341241);
INSERT INTO public.notice VALUES (16078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697341843);
INSERT INTO public.notice VALUES (16079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697342442);
INSERT INTO public.notice VALUES (16080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697343041);
INSERT INTO public.notice VALUES (16081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697343642);
INSERT INTO public.notice VALUES (16082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697344242);
INSERT INTO public.notice VALUES (16083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697344842);
INSERT INTO public.notice VALUES (16084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697345442);
INSERT INTO public.notice VALUES (16085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697346042);
INSERT INTO public.notice VALUES (16086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697346641);
INSERT INTO public.notice VALUES (16087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697347242);
INSERT INTO public.notice VALUES (16088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697347844);
INSERT INTO public.notice VALUES (16089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697348442);
INSERT INTO public.notice VALUES (16090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697349043);
INSERT INTO public.notice VALUES (16091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697349641);
INSERT INTO public.notice VALUES (16092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697350243);
INSERT INTO public.notice VALUES (16093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697350842);
INSERT INTO public.notice VALUES (16094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697351442);
INSERT INTO public.notice VALUES (16095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697352040);
INSERT INTO public.notice VALUES (16096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697352642);
INSERT INTO public.notice VALUES (16097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697353242);
INSERT INTO public.notice VALUES (16098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697353841);
INSERT INTO public.notice VALUES (16099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697354443);
INSERT INTO public.notice VALUES (16100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697355041);
INSERT INTO public.notice VALUES (16101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697355641);
INSERT INTO public.notice VALUES (16102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697356240);
INSERT INTO public.notice VALUES (16103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697356843);
INSERT INTO public.notice VALUES (16104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697357442);
INSERT INTO public.notice VALUES (16105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697358041);
INSERT INTO public.notice VALUES (16106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697358643);
INSERT INTO public.notice VALUES (16107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697359242);
INSERT INTO public.notice VALUES (16108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697359843);
INSERT INTO public.notice VALUES (16109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697360442);
INSERT INTO public.notice VALUES (16110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697361042);
INSERT INTO public.notice VALUES (16111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697361641);
INSERT INTO public.notice VALUES (16112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697362241);
INSERT INTO public.notice VALUES (16127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697371241);
INSERT INTO public.notice VALUES (16128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697371843);
INSERT INTO public.notice VALUES (16129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697372443);
INSERT INTO public.notice VALUES (16140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697379042);
INSERT INTO public.notice VALUES (16141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697379641);
INSERT INTO public.notice VALUES (16142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697380243);
INSERT INTO public.notice VALUES (16113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697362842);
INSERT INTO public.notice VALUES (16114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697363442);
INSERT INTO public.notice VALUES (16115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697364042);
INSERT INTO public.notice VALUES (16116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697364641);
INSERT INTO public.notice VALUES (16117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697365242);
INSERT INTO public.notice VALUES (16118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697365841);
INSERT INTO public.notice VALUES (16119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697366442);
INSERT INTO public.notice VALUES (16120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697367041);
INSERT INTO public.notice VALUES (16121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697367642);
INSERT INTO public.notice VALUES (16122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697368242);
INSERT INTO public.notice VALUES (16123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697368841);
INSERT INTO public.notice VALUES (16124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697369443);
INSERT INTO public.notice VALUES (16125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697370042);
INSERT INTO public.notice VALUES (16126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697370642);
INSERT INTO public.notice VALUES (16130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697373042);
INSERT INTO public.notice VALUES (16131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697373643);
INSERT INTO public.notice VALUES (16132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697374242);
INSERT INTO public.notice VALUES (16133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697374842);
INSERT INTO public.notice VALUES (16134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697375441);
INSERT INTO public.notice VALUES (16135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697376044);
INSERT INTO public.notice VALUES (16136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697376641);
INSERT INTO public.notice VALUES (16137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697377242);
INSERT INTO public.notice VALUES (16138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697377840);
INSERT INTO public.notice VALUES (16139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697378442);
INSERT INTO public.notice VALUES (16143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697380842);
INSERT INTO public.notice VALUES (16144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697381442);
INSERT INTO public.notice VALUES (16145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697382041);
INSERT INTO public.notice VALUES (16154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697387442);
INSERT INTO public.notice VALUES (16155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697388042);
INSERT INTO public.notice VALUES (16182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697404243);
INSERT INTO public.notice VALUES (16146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697382642);
INSERT INTO public.notice VALUES (16147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697383241);
INSERT INTO public.notice VALUES (16148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697383842);
INSERT INTO public.notice VALUES (16149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697384443);
INSERT INTO public.notice VALUES (16150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697385042);
INSERT INTO public.notice VALUES (16151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697385642);
INSERT INTO public.notice VALUES (16152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697386241);
INSERT INTO public.notice VALUES (16153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697386843);
INSERT INTO public.notice VALUES (16156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697388642);
INSERT INTO public.notice VALUES (16157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697389243);
INSERT INTO public.notice VALUES (16158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697389843);
INSERT INTO public.notice VALUES (16159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697390441);
INSERT INTO public.notice VALUES (16160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697391043);
INSERT INTO public.notice VALUES (16161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697391642);
INSERT INTO public.notice VALUES (16162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697392242);
INSERT INTO public.notice VALUES (16163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697392841);
INSERT INTO public.notice VALUES (16164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697393443);
INSERT INTO public.notice VALUES (16165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697394041);
INSERT INTO public.notice VALUES (16166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697394642);
INSERT INTO public.notice VALUES (16167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697395243);
INSERT INTO public.notice VALUES (16168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697395842);
INSERT INTO public.notice VALUES (16169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697396442);
INSERT INTO public.notice VALUES (16170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697397042);
INSERT INTO public.notice VALUES (16171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697397643);
INSERT INTO public.notice VALUES (16172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697398241);
INSERT INTO public.notice VALUES (16173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697398843);
INSERT INTO public.notice VALUES (16174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697399440);
INSERT INTO public.notice VALUES (16175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697400043);
INSERT INTO public.notice VALUES (16176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697400643);
INSERT INTO public.notice VALUES (16177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697401241);
INSERT INTO public.notice VALUES (16178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697401842);
INSERT INTO public.notice VALUES (16179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697402442);
INSERT INTO public.notice VALUES (16180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697403042);
INSERT INTO public.notice VALUES (16181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697403640);
INSERT INTO public.notice VALUES (25512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702995308);
INSERT INTO public.notice VALUES (25513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702995907);
INSERT INTO public.notice VALUES (25514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702996507);
INSERT INTO public.notice VALUES (26305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703471435);
INSERT INTO public.notice VALUES (26309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703473835);
INSERT INTO public.notice VALUES (26310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703474434);
INSERT INTO public.notice VALUES (26919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703839835);
INSERT INTO public.notice VALUES (27323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704082235);
INSERT INTO public.notice VALUES (27324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704082835);
INSERT INTO public.notice VALUES (27647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704276636);
INSERT INTO public.notice VALUES (27648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704277236);
INSERT INTO public.notice VALUES (16183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697404842);
INSERT INTO public.notice VALUES (16184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697405442);
INSERT INTO public.notice VALUES (16185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697406043);
INSERT INTO public.notice VALUES (16186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697406642);
INSERT INTO public.notice VALUES (16187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697407242);
INSERT INTO public.notice VALUES (16188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697407841);
INSERT INTO public.notice VALUES (16189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697408443);
INSERT INTO public.notice VALUES (16190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697409042);
INSERT INTO public.notice VALUES (16191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697409642);
INSERT INTO public.notice VALUES (16192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697410243);
INSERT INTO public.notice VALUES (16193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697410842);
INSERT INTO public.notice VALUES (16194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697411442);
INSERT INTO public.notice VALUES (16195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697412041);
INSERT INTO public.notice VALUES (16196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697412643);
INSERT INTO public.notice VALUES (16197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697413242);
INSERT INTO public.notice VALUES (16198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697413841);
INSERT INTO public.notice VALUES (16199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697414442);
INSERT INTO public.notice VALUES (16200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697415042);
INSERT INTO public.notice VALUES (16201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697415643);
INSERT INTO public.notice VALUES (16202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697416241);
INSERT INTO public.notice VALUES (16203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697416843);
INSERT INTO public.notice VALUES (16204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697417442);
INSERT INTO public.notice VALUES (16205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697418041);
INSERT INTO public.notice VALUES (16206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697418641);
INSERT INTO public.notice VALUES (16207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697419242);
INSERT INTO public.notice VALUES (16208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697419841);
INSERT INTO public.notice VALUES (16209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697420441);
INSERT INTO public.notice VALUES (16210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697421042);
INSERT INTO public.notice VALUES (16211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697421642);
INSERT INTO public.notice VALUES (16212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697422241);
INSERT INTO public.notice VALUES (16213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697422840);
INSERT INTO public.notice VALUES (16214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697423442);
INSERT INTO public.notice VALUES (16215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697424041);
INSERT INTO public.notice VALUES (16216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697424641);
INSERT INTO public.notice VALUES (16217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697425242);
INSERT INTO public.notice VALUES (16218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697425842);
INSERT INTO public.notice VALUES (16219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697426441);
INSERT INTO public.notice VALUES (16220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697427041);
INSERT INTO public.notice VALUES (16224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697429440);
INSERT INTO public.notice VALUES (16225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697430042);
INSERT INTO public.notice VALUES (25515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702997108);
INSERT INTO public.notice VALUES (25517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702998307);
INSERT INTO public.notice VALUES (26307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703472636);
INSERT INTO public.notice VALUES (26308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703473236);
INSERT INTO public.notice VALUES (26921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703841035);
INSERT INTO public.notice VALUES (16221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697427642);
INSERT INTO public.notice VALUES (16222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697428241);
INSERT INTO public.notice VALUES (16223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697428841);
INSERT INTO public.notice VALUES (16226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697430641);
INSERT INTO public.notice VALUES (16227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697431241);
INSERT INTO public.notice VALUES (16228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697431842);
INSERT INTO public.notice VALUES (16229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697432442);
INSERT INTO public.notice VALUES (16230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697433041);
INSERT INTO public.notice VALUES (16231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697433641);
INSERT INTO public.notice VALUES (16232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697434242);
INSERT INTO public.notice VALUES (16233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697434841);
INSERT INTO public.notice VALUES (16234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697435441);
INSERT INTO public.notice VALUES (16235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697436042);
INSERT INTO public.notice VALUES (16236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697436642);
INSERT INTO public.notice VALUES (16237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697437241);
INSERT INTO public.notice VALUES (16238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697437841);
INSERT INTO public.notice VALUES (16239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697438442);
INSERT INTO public.notice VALUES (16240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697439041);
INSERT INTO public.notice VALUES (16241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697439641);
INSERT INTO public.notice VALUES (16242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697440243);
INSERT INTO public.notice VALUES (16243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697440842);
INSERT INTO public.notice VALUES (16244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697441441);
INSERT INTO public.notice VALUES (16245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697442041);
INSERT INTO public.notice VALUES (16246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697442642);
INSERT INTO public.notice VALUES (16247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697443242);
INSERT INTO public.notice VALUES (16248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697443841);
INSERT INTO public.notice VALUES (16249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697444441);
INSERT INTO public.notice VALUES (16251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697445641);
INSERT INTO public.notice VALUES (16252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697446241);
INSERT INTO public.notice VALUES (16295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697472041);
INSERT INTO public.notice VALUES (16250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697445042);
INSERT INTO public.notice VALUES (16253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697446840);
INSERT INTO public.notice VALUES (16254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697447442);
INSERT INTO public.notice VALUES (16255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697448041);
INSERT INTO public.notice VALUES (16256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697448641);
INSERT INTO public.notice VALUES (16257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697449242);
INSERT INTO public.notice VALUES (16258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697449841);
INSERT INTO public.notice VALUES (16259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697450441);
INSERT INTO public.notice VALUES (16260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697451040);
INSERT INTO public.notice VALUES (16261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697451642);
INSERT INTO public.notice VALUES (16262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697452241);
INSERT INTO public.notice VALUES (16263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697452841);
INSERT INTO public.notice VALUES (16264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697453442);
INSERT INTO public.notice VALUES (16265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697454042);
INSERT INTO public.notice VALUES (16266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697454641);
INSERT INTO public.notice VALUES (16267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697455241);
INSERT INTO public.notice VALUES (16268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697455843);
INSERT INTO public.notice VALUES (16269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697456442);
INSERT INTO public.notice VALUES (16270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697457041);
INSERT INTO public.notice VALUES (16271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697457642);
INSERT INTO public.notice VALUES (16272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697458243);
INSERT INTO public.notice VALUES (16273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697458842);
INSERT INTO public.notice VALUES (16274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697459442);
INSERT INTO public.notice VALUES (16275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697460043);
INSERT INTO public.notice VALUES (16276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697460642);
INSERT INTO public.notice VALUES (16277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697461242);
INSERT INTO public.notice VALUES (16278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697461843);
INSERT INTO public.notice VALUES (16279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697462443);
INSERT INTO public.notice VALUES (16280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697463042);
INSERT INTO public.notice VALUES (16281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697463641);
INSERT INTO public.notice VALUES (16282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697464243);
INSERT INTO public.notice VALUES (16283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697464842);
INSERT INTO public.notice VALUES (16284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697465442);
INSERT INTO public.notice VALUES (16285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697466041);
INSERT INTO public.notice VALUES (16286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697466642);
INSERT INTO public.notice VALUES (16287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697467242);
INSERT INTO public.notice VALUES (16288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697467841);
INSERT INTO public.notice VALUES (16289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697468442);
INSERT INTO public.notice VALUES (16290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697469042);
INSERT INTO public.notice VALUES (16291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697469642);
INSERT INTO public.notice VALUES (16292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697470243);
INSERT INTO public.notice VALUES (16293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697470843);
INSERT INTO public.notice VALUES (16294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697471441);
INSERT INTO public.notice VALUES (16306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697478641);
INSERT INTO public.notice VALUES (16307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697479243);
INSERT INTO public.notice VALUES (16296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697472642);
INSERT INTO public.notice VALUES (16297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697473243);
INSERT INTO public.notice VALUES (16298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697473841);
INSERT INTO public.notice VALUES (16299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697474441);
INSERT INTO public.notice VALUES (16300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697475042);
INSERT INTO public.notice VALUES (16301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697475642);
INSERT INTO public.notice VALUES (16302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697476241);
INSERT INTO public.notice VALUES (16303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697476843);
INSERT INTO public.notice VALUES (16304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697477443);
INSERT INTO public.notice VALUES (16305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697478042);
INSERT INTO public.notice VALUES (16309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697480441);
INSERT INTO public.notice VALUES (25518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702998908);
INSERT INTO public.notice VALUES (26311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703475036);
INSERT INTO public.notice VALUES (26312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703475635);
INSERT INTO public.notice VALUES (26313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703476235);
INSERT INTO public.notice VALUES (16308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697479843);
INSERT INTO public.notice VALUES (16310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697481042);
INSERT INTO public.notice VALUES (16311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697481643);
INSERT INTO public.notice VALUES (16312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697482242);
INSERT INTO public.notice VALUES (16313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697482841);
INSERT INTO public.notice VALUES (16314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697483443);
INSERT INTO public.notice VALUES (16315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697484042);
INSERT INTO public.notice VALUES (16316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697484642);
INSERT INTO public.notice VALUES (16317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697485241);
INSERT INTO public.notice VALUES (16318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697485843);
INSERT INTO public.notice VALUES (16319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697486442);
INSERT INTO public.notice VALUES (16320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697487041);
INSERT INTO public.notice VALUES (16321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697487643);
INSERT INTO public.notice VALUES (16322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697488242);
INSERT INTO public.notice VALUES (16323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697488842);
INSERT INTO public.notice VALUES (16324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697489442);
INSERT INTO public.notice VALUES (16325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697490042);
INSERT INTO public.notice VALUES (16326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697490642);
INSERT INTO public.notice VALUES (16327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697491242);
INSERT INTO public.notice VALUES (16328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697491842);
INSERT INTO public.notice VALUES (16332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697494243);
INSERT INTO public.notice VALUES (16333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697494842);
INSERT INTO public.notice VALUES (16334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697495442);
INSERT INTO public.notice VALUES (25519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702999508);
INSERT INTO public.notice VALUES (25520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703000107);
INSERT INTO public.notice VALUES (25521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703000707);
INSERT INTO public.notice VALUES (25522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703001309);
INSERT INTO public.notice VALUES (25523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703001908);
INSERT INTO public.notice VALUES (26314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703476836);
INSERT INTO public.notice VALUES (26320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703480435);
INSERT INTO public.notice VALUES (16329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697492443);
INSERT INTO public.notice VALUES (16330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697493041);
INSERT INTO public.notice VALUES (16331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697493642);
INSERT INTO public.notice VALUES (16335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697496042);
INSERT INTO public.notice VALUES (16336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697496642);
INSERT INTO public.notice VALUES (16337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697497241);
INSERT INTO public.notice VALUES (16338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697497841);
INSERT INTO public.notice VALUES (16339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697498443);
INSERT INTO public.notice VALUES (16340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697499043);
INSERT INTO public.notice VALUES (16341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697499642);
INSERT INTO public.notice VALUES (16342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697500242);
INSERT INTO public.notice VALUES (16343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697500843);
INSERT INTO public.notice VALUES (16344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697501442);
INSERT INTO public.notice VALUES (16345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697502041);
INSERT INTO public.notice VALUES (16346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697502643);
INSERT INTO public.notice VALUES (16347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697503242);
INSERT INTO public.notice VALUES (16348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697503842);
INSERT INTO public.notice VALUES (16349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697504441);
INSERT INTO public.notice VALUES (16350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697505043);
INSERT INTO public.notice VALUES (16351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697505643);
INSERT INTO public.notice VALUES (16352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697506241);
INSERT INTO public.notice VALUES (16353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697506843);
INSERT INTO public.notice VALUES (16354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697507442);
INSERT INTO public.notice VALUES (16355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697508041);
INSERT INTO public.notice VALUES (16356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697508640);
INSERT INTO public.notice VALUES (16357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697509242);
INSERT INTO public.notice VALUES (16358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697509842);
INSERT INTO public.notice VALUES (16359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697510441);
INSERT INTO public.notice VALUES (16360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697511040);
INSERT INTO public.notice VALUES (16361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697511642);
INSERT INTO public.notice VALUES (16362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697512241);
INSERT INTO public.notice VALUES (16363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697512842);
INSERT INTO public.notice VALUES (16364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697513440);
INSERT INTO public.notice VALUES (16365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697514042);
INSERT INTO public.notice VALUES (16366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697514642);
INSERT INTO public.notice VALUES (16367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697515241);
INSERT INTO public.notice VALUES (16368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697515840);
INSERT INTO public.notice VALUES (16369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697516441);
INSERT INTO public.notice VALUES (16370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697517040);
INSERT INTO public.notice VALUES (16371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697517642);
INSERT INTO public.notice VALUES (16372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697518242);
INSERT INTO public.notice VALUES (16373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697518841);
INSERT INTO public.notice VALUES (16374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697519441);
INSERT INTO public.notice VALUES (16375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697520042);
INSERT INTO public.notice VALUES (16376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697520642);
INSERT INTO public.notice VALUES (16377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697521241);
INSERT INTO public.notice VALUES (16378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697521841);
INSERT INTO public.notice VALUES (16379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697522442);
INSERT INTO public.notice VALUES (16380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697523041);
INSERT INTO public.notice VALUES (16381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697523641);
INSERT INTO public.notice VALUES (16382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697524242);
INSERT INTO public.notice VALUES (16383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697524842);
INSERT INTO public.notice VALUES (16384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697525441);
INSERT INTO public.notice VALUES (16385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697526041);
INSERT INTO public.notice VALUES (16386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697526642);
INSERT INTO public.notice VALUES (16387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697527242);
INSERT INTO public.notice VALUES (16388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697527841);
INSERT INTO public.notice VALUES (16389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697528441);
INSERT INTO public.notice VALUES (16390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697529042);
INSERT INTO public.notice VALUES (16391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697529641);
INSERT INTO public.notice VALUES (16392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697530241);
INSERT INTO public.notice VALUES (16393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697530842);
INSERT INTO public.notice VALUES (16396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697532641);
INSERT INTO public.notice VALUES (16401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697535642);
INSERT INTO public.notice VALUES (16402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697536241);
INSERT INTO public.notice VALUES (16403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697536841);
INSERT INTO public.notice VALUES (16404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697537442);
INSERT INTO public.notice VALUES (25525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703003108);
INSERT INTO public.notice VALUES (25526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703003708);
INSERT INTO public.notice VALUES (25527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703004307);
INSERT INTO public.notice VALUES (25528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703004907);
INSERT INTO public.notice VALUES (26315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703477435);
INSERT INTO public.notice VALUES (26316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703478035);
INSERT INTO public.notice VALUES (26922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703841635);
INSERT INTO public.notice VALUES (26924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703842840);
INSERT INTO public.notice VALUES (16394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697531442);
INSERT INTO public.notice VALUES (16395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697532041);
INSERT INTO public.notice VALUES (16397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697533242);
INSERT INTO public.notice VALUES (16398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697533841);
INSERT INTO public.notice VALUES (16399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697534441);
INSERT INTO public.notice VALUES (16400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697535040);
INSERT INTO public.notice VALUES (16405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697538042);
INSERT INTO public.notice VALUES (16406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697538641);
INSERT INTO public.notice VALUES (16407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697539240);
INSERT INTO public.notice VALUES (16408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697539842);
INSERT INTO public.notice VALUES (16409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697540441);
INSERT INTO public.notice VALUES (16410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697541041);
INSERT INTO public.notice VALUES (16411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697541643);
INSERT INTO public.notice VALUES (16412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697542242);
INSERT INTO public.notice VALUES (16413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697542842);
INSERT INTO public.notice VALUES (16414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697543440);
INSERT INTO public.notice VALUES (16415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697544043);
INSERT INTO public.notice VALUES (16416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697544642);
INSERT INTO public.notice VALUES (16417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697545241);
INSERT INTO public.notice VALUES (16418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697545844);
INSERT INTO public.notice VALUES (16419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697546442);
INSERT INTO public.notice VALUES (16420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697547042);
INSERT INTO public.notice VALUES (16421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697547641);
INSERT INTO public.notice VALUES (16422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697548243);
INSERT INTO public.notice VALUES (16423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697548842);
INSERT INTO public.notice VALUES (16424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697549442);
INSERT INTO public.notice VALUES (16425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697550040);
INSERT INTO public.notice VALUES (16426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697550642);
INSERT INTO public.notice VALUES (16427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697551242);
INSERT INTO public.notice VALUES (16428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697551841);
INSERT INTO public.notice VALUES (16429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697552444);
INSERT INTO public.notice VALUES (16430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697553042);
INSERT INTO public.notice VALUES (25529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703005508);
INSERT INTO public.notice VALUES (25530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703006108);
INSERT INTO public.notice VALUES (25536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703009717);
INSERT INTO public.notice VALUES (25537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703010308);
INSERT INTO public.notice VALUES (25538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703010907);
INSERT INTO public.notice VALUES (26317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703478636);
INSERT INTO public.notice VALUES (26923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703842243);
INSERT INTO public.notice VALUES (27325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704083436);
INSERT INTO public.notice VALUES (27649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704277835);
INSERT INTO public.notice VALUES (27650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704278436);
INSERT INTO public.notice VALUES (27651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704279035);
INSERT INTO public.notice VALUES (27653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704280236);
INSERT INTO public.notice VALUES (27860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704404436);
INSERT INTO public.notice VALUES (16431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697553641);
INSERT INTO public.notice VALUES (16432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697554242);
INSERT INTO public.notice VALUES (16433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697554842);
INSERT INTO public.notice VALUES (16434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697555441);
INSERT INTO public.notice VALUES (16435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697556042);
INSERT INTO public.notice VALUES (16436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697556643);
INSERT INTO public.notice VALUES (16437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697557242);
INSERT INTO public.notice VALUES (16438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697557842);
INSERT INTO public.notice VALUES (16439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697558441);
INSERT INTO public.notice VALUES (16440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697559043);
INSERT INTO public.notice VALUES (16441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697559645);
INSERT INTO public.notice VALUES (16442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697560241);
INSERT INTO public.notice VALUES (16443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697560841);
INSERT INTO public.notice VALUES (16444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697561442);
INSERT INTO public.notice VALUES (16445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697562041);
INSERT INTO public.notice VALUES (16446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697562641);
INSERT INTO public.notice VALUES (16447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697563243);
INSERT INTO public.notice VALUES (16448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697563842);
INSERT INTO public.notice VALUES (16449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697564442);
INSERT INTO public.notice VALUES (16450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697565044);
INSERT INTO public.notice VALUES (16451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697565643);
INSERT INTO public.notice VALUES (16452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697566243);
INSERT INTO public.notice VALUES (16453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697566841);
INSERT INTO public.notice VALUES (16454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697567443);
INSERT INTO public.notice VALUES (16455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697568042);
INSERT INTO public.notice VALUES (16456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697568642);
INSERT INTO public.notice VALUES (16457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697569241);
INSERT INTO public.notice VALUES (16458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697569842);
INSERT INTO public.notice VALUES (16459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697570443);
INSERT INTO public.notice VALUES (16460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697571042);
INSERT INTO public.notice VALUES (16461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697571642);
INSERT INTO public.notice VALUES (16462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697572242);
INSERT INTO public.notice VALUES (16463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697572842);
INSERT INTO public.notice VALUES (16467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697575242);
INSERT INTO public.notice VALUES (16468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697575841);
INSERT INTO public.notice VALUES (16469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697576442);
INSERT INTO public.notice VALUES (16470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697577042);
INSERT INTO public.notice VALUES (16471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697577642);
INSERT INTO public.notice VALUES (16472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697578243);
INSERT INTO public.notice VALUES (25531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703006707);
INSERT INTO public.notice VALUES (25532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703007306);
INSERT INTO public.notice VALUES (25533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703007908);
INSERT INTO public.notice VALUES (25534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703008507);
INSERT INTO public.notice VALUES (25535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703009108);
INSERT INTO public.notice VALUES (25539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703011506);
INSERT INTO public.notice VALUES (16464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697573440);
INSERT INTO public.notice VALUES (16465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697574043);
INSERT INTO public.notice VALUES (16466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697574642);
INSERT INTO public.notice VALUES (16473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697578842);
INSERT INTO public.notice VALUES (16474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697579441);
INSERT INTO public.notice VALUES (16475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697580044);
INSERT INTO public.notice VALUES (16476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697580643);
INSERT INTO public.notice VALUES (16477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697581242);
INSERT INTO public.notice VALUES (16478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697581841);
INSERT INTO public.notice VALUES (16479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697582443);
INSERT INTO public.notice VALUES (16480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697583042);
INSERT INTO public.notice VALUES (16481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697583642);
INSERT INTO public.notice VALUES (16482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697584241);
INSERT INTO public.notice VALUES (16483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697584843);
INSERT INTO public.notice VALUES (16484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697585443);
INSERT INTO public.notice VALUES (16485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697586041);
INSERT INTO public.notice VALUES (16486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697586640);
INSERT INTO public.notice VALUES (16487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697587243);
INSERT INTO public.notice VALUES (16488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697587842);
INSERT INTO public.notice VALUES (16489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697588441);
INSERT INTO public.notice VALUES (16490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697589043);
INSERT INTO public.notice VALUES (16491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697589642);
INSERT INTO public.notice VALUES (16492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697590241);
INSERT INTO public.notice VALUES (16493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697590841);
INSERT INTO public.notice VALUES (16494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697591442);
INSERT INTO public.notice VALUES (16495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697592043);
INSERT INTO public.notice VALUES (16496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697592642);
INSERT INTO public.notice VALUES (16497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697593242);
INSERT INTO public.notice VALUES (16498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697593842);
INSERT INTO public.notice VALUES (16499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697594441);
INSERT INTO public.notice VALUES (16500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697595040);
INSERT INTO public.notice VALUES (16501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697595642);
INSERT INTO public.notice VALUES (16502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697596241);
INSERT INTO public.notice VALUES (16503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697596841);
INSERT INTO public.notice VALUES (16504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697597442);
INSERT INTO public.notice VALUES (16505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697598041);
INSERT INTO public.notice VALUES (16506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697598641);
INSERT INTO public.notice VALUES (16507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697599241);
INSERT INTO public.notice VALUES (16508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697599842);
INSERT INTO public.notice VALUES (16509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697600949);
INSERT INTO public.notice VALUES (16510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697601550);
INSERT INTO public.notice VALUES (16511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697602149);
INSERT INTO public.notice VALUES (16512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697602749);
INSERT INTO public.notice VALUES (16513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697603348);
INSERT INTO public.notice VALUES (16514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697603950);
INSERT INTO public.notice VALUES (16515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697604549);
INSERT INTO public.notice VALUES (16516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697605149);
INSERT INTO public.notice VALUES (16517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697605750);
INSERT INTO public.notice VALUES (16518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697606349);
INSERT INTO public.notice VALUES (16519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697606949);
INSERT INTO public.notice VALUES (16520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697607548);
INSERT INTO public.notice VALUES (16521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697608150);
INSERT INTO public.notice VALUES (16522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697608749);
INSERT INTO public.notice VALUES (16523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697609349);
INSERT INTO public.notice VALUES (16524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697609950);
INSERT INTO public.notice VALUES (16525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697610549);
INSERT INTO public.notice VALUES (16526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697611149);
INSERT INTO public.notice VALUES (16527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697611748);
INSERT INTO public.notice VALUES (16528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697612351);
INSERT INTO public.notice VALUES (16529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697612949);
INSERT INTO public.notice VALUES (16530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697613549);
INSERT INTO public.notice VALUES (16531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697614148);
INSERT INTO public.notice VALUES (16532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697614750);
INSERT INTO public.notice VALUES (16533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697615349);
INSERT INTO public.notice VALUES (16534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697615949);
INSERT INTO public.notice VALUES (16535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697616550);
INSERT INTO public.notice VALUES (16536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697617149);
INSERT INTO public.notice VALUES (16537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697617750);
INSERT INTO public.notice VALUES (16538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697618348);
INSERT INTO public.notice VALUES (16539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697618950);
INSERT INTO public.notice VALUES (16540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697619549);
INSERT INTO public.notice VALUES (16541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697620149);
INSERT INTO public.notice VALUES (16542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697620750);
INSERT INTO public.notice VALUES (16543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697621350);
INSERT INTO public.notice VALUES (16544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697621949);
INSERT INTO public.notice VALUES (16545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697622549);
INSERT INTO public.notice VALUES (16546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697623150);
INSERT INTO public.notice VALUES (16547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697623749);
INSERT INTO public.notice VALUES (16548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697624350);
INSERT INTO public.notice VALUES (16549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697624949);
INSERT INTO public.notice VALUES (16550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697625550);
INSERT INTO public.notice VALUES (16551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697626149);
INSERT INTO public.notice VALUES (16552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697626749);
INSERT INTO public.notice VALUES (16553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697627351);
INSERT INTO public.notice VALUES (16554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697627950);
INSERT INTO public.notice VALUES (16555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697628549);
INSERT INTO public.notice VALUES (16556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697629149);
INSERT INTO public.notice VALUES (16557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697629751);
INSERT INTO public.notice VALUES (16558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697630350);
INSERT INTO public.notice VALUES (16559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697630949);
INSERT INTO public.notice VALUES (16560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697631551);
INSERT INTO public.notice VALUES (16561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697632150);
INSERT INTO public.notice VALUES (16562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697632750);
INSERT INTO public.notice VALUES (16563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697633349);
INSERT INTO public.notice VALUES (16564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697633951);
INSERT INTO public.notice VALUES (16565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697634550);
INSERT INTO public.notice VALUES (16566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697635150);
INSERT INTO public.notice VALUES (16567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697635751);
INSERT INTO public.notice VALUES (16568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697636351);
INSERT INTO public.notice VALUES (16569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697636950);
INSERT INTO public.notice VALUES (16570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697637550);
INSERT INTO public.notice VALUES (16595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697652550);
INSERT INTO public.notice VALUES (16596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697653149);
INSERT INTO public.notice VALUES (16597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697653750);
INSERT INTO public.notice VALUES (16601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697656149);
INSERT INTO public.notice VALUES (16571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697638151);
INSERT INTO public.notice VALUES (16572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697638750);
INSERT INTO public.notice VALUES (16573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697639351);
INSERT INTO public.notice VALUES (16574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697639948);
INSERT INTO public.notice VALUES (16575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697640550);
INSERT INTO public.notice VALUES (16576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697641150);
INSERT INTO public.notice VALUES (16577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697641749);
INSERT INTO public.notice VALUES (16578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697642350);
INSERT INTO public.notice VALUES (16579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697642951);
INSERT INTO public.notice VALUES (16580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697643550);
INSERT INTO public.notice VALUES (16581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697644149);
INSERT INTO public.notice VALUES (16582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697644750);
INSERT INTO public.notice VALUES (16583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697645350);
INSERT INTO public.notice VALUES (16584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697645950);
INSERT INTO public.notice VALUES (16585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697646549);
INSERT INTO public.notice VALUES (16586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697647151);
INSERT INTO public.notice VALUES (16587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697647750);
INSERT INTO public.notice VALUES (16588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697648350);
INSERT INTO public.notice VALUES (16589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697648949);
INSERT INTO public.notice VALUES (16590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697649550);
INSERT INTO public.notice VALUES (16591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697650152);
INSERT INTO public.notice VALUES (16592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697650749);
INSERT INTO public.notice VALUES (16593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697651352);
INSERT INTO public.notice VALUES (16594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697651950);
INSERT INTO public.notice VALUES (16598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697654350);
INSERT INTO public.notice VALUES (16599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697654949);
INSERT INTO public.notice VALUES (16600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697655551);
INSERT INTO public.notice VALUES (16602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697656750);
INSERT INTO public.notice VALUES (16603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697657348);
INSERT INTO public.notice VALUES (16604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697657951);
INSERT INTO public.notice VALUES (16605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697658550);
INSERT INTO public.notice VALUES (16606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697659149);
INSERT INTO public.notice VALUES (16607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697659751);
INSERT INTO public.notice VALUES (16608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697660349);
INSERT INTO public.notice VALUES (16609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697660949);
INSERT INTO public.notice VALUES (16610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697661549);
INSERT INTO public.notice VALUES (16611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697662150);
INSERT INTO public.notice VALUES (16612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697662749);
INSERT INTO public.notice VALUES (16613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697663349);
INSERT INTO public.notice VALUES (16614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697663951);
INSERT INTO public.notice VALUES (16615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697664551);
INSERT INTO public.notice VALUES (16616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697665150);
INSERT INTO public.notice VALUES (16617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697665750);
INSERT INTO public.notice VALUES (16631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697674149);
INSERT INTO public.notice VALUES (16632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697674752);
INSERT INTO public.notice VALUES (16618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697666351);
INSERT INTO public.notice VALUES (16619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697666950);
INSERT INTO public.notice VALUES (16620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697667549);
INSERT INTO public.notice VALUES (16621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697668151);
INSERT INTO public.notice VALUES (16622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697668750);
INSERT INTO public.notice VALUES (16623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697669350);
INSERT INTO public.notice VALUES (16624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697669950);
INSERT INTO public.notice VALUES (16625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697670551);
INSERT INTO public.notice VALUES (16626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697671151);
INSERT INTO public.notice VALUES (16627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697671750);
INSERT INTO public.notice VALUES (16628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697672350);
INSERT INTO public.notice VALUES (16629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697672951);
INSERT INTO public.notice VALUES (16630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697673549);
INSERT INTO public.notice VALUES (16633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697675350);
INSERT INTO public.notice VALUES (16634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697675949);
INSERT INTO public.notice VALUES (16635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697676548);
INSERT INTO public.notice VALUES (16636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697677151);
INSERT INTO public.notice VALUES (16637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697677749);
INSERT INTO public.notice VALUES (16638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697678349);
INSERT INTO public.notice VALUES (16639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697678948);
INSERT INTO public.notice VALUES (16640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697679550);
INSERT INTO public.notice VALUES (16641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697680149);
INSERT INTO public.notice VALUES (16642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697680749);
INSERT INTO public.notice VALUES (16643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697681350);
INSERT INTO public.notice VALUES (16644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697681950);
INSERT INTO public.notice VALUES (16645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697682550);
INSERT INTO public.notice VALUES (16648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697684350);
INSERT INTO public.notice VALUES (25540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703012108);
INSERT INTO public.notice VALUES (26318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703479236);
INSERT INTO public.notice VALUES (26319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703479842);
INSERT INTO public.notice VALUES (16646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697683149);
INSERT INTO public.notice VALUES (16647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697683750);
INSERT INTO public.notice VALUES (16649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697684950);
INSERT INTO public.notice VALUES (16650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697685550);
INSERT INTO public.notice VALUES (16651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697686150);
INSERT INTO public.notice VALUES (16652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697686749);
INSERT INTO public.notice VALUES (16653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697687349);
INSERT INTO public.notice VALUES (16654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697687951);
INSERT INTO public.notice VALUES (16655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697688550);
INSERT INTO public.notice VALUES (16656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697689149);
INSERT INTO public.notice VALUES (16657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697689750);
INSERT INTO public.notice VALUES (16658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697690354);
INSERT INTO public.notice VALUES (16659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697690949);
INSERT INTO public.notice VALUES (16660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697691550);
INSERT INTO public.notice VALUES (16661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697692148);
INSERT INTO public.notice VALUES (16662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697692750);
INSERT INTO public.notice VALUES (16663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697693349);
INSERT INTO public.notice VALUES (16664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697693949);
INSERT INTO public.notice VALUES (16665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697694550);
INSERT INTO public.notice VALUES (25541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703012707);
INSERT INTO public.notice VALUES (25542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703013307);
INSERT INTO public.notice VALUES (26321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703481036);
INSERT INTO public.notice VALUES (26322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703481636);
INSERT INTO public.notice VALUES (26324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703482836);
INSERT INTO public.notice VALUES (26326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703484035);
INSERT INTO public.notice VALUES (26925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703843436);
INSERT INTO public.notice VALUES (26926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703844035);
INSERT INTO public.notice VALUES (26928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703845236);
INSERT INTO public.notice VALUES (26931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703847036);
INSERT INTO public.notice VALUES (27326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704084036);
INSERT INTO public.notice VALUES (16666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697695150);
INSERT INTO public.notice VALUES (16667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697695749);
INSERT INTO public.notice VALUES (16668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697696349);
INSERT INTO public.notice VALUES (16669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697696950);
INSERT INTO public.notice VALUES (16670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697697550);
INSERT INTO public.notice VALUES (16671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697698149);
INSERT INTO public.notice VALUES (16672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697698750);
INSERT INTO public.notice VALUES (16673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697699350);
INSERT INTO public.notice VALUES (16674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697699949);
INSERT INTO public.notice VALUES (16675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697700549);
INSERT INTO public.notice VALUES (16676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697701151);
INSERT INTO public.notice VALUES (16677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697701749);
INSERT INTO public.notice VALUES (16678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697702349);
INSERT INTO public.notice VALUES (16679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697702948);
INSERT INTO public.notice VALUES (16680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697703550);
INSERT INTO public.notice VALUES (16681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697704150);
INSERT INTO public.notice VALUES (16682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697704749);
INSERT INTO public.notice VALUES (16683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697705352);
INSERT INTO public.notice VALUES (16684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697705954);
INSERT INTO public.notice VALUES (16685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697706549);
INSERT INTO public.notice VALUES (16686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697707151);
INSERT INTO public.notice VALUES (16687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697707750);
INSERT INTO public.notice VALUES (16688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697708351);
INSERT INTO public.notice VALUES (16689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697708949);
INSERT INTO public.notice VALUES (16690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697709550);
INSERT INTO public.notice VALUES (16691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697710151);
INSERT INTO public.notice VALUES (16692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697710749);
INSERT INTO public.notice VALUES (16693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697711349);
INSERT INTO public.notice VALUES (16694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697711950);
INSERT INTO public.notice VALUES (16695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697712549);
INSERT INTO public.notice VALUES (16696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697713149);
INSERT INTO public.notice VALUES (16697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697713750);
INSERT INTO public.notice VALUES (16698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697714350);
INSERT INTO public.notice VALUES (16699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697714949);
INSERT INTO public.notice VALUES (16700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697715550);
INSERT INTO public.notice VALUES (16701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697716150);
INSERT INTO public.notice VALUES (16702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697716750);
INSERT INTO public.notice VALUES (16703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697717349);
INSERT INTO public.notice VALUES (16704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697717948);
INSERT INTO public.notice VALUES (16705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697718550);
INSERT INTO public.notice VALUES (16706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697719150);
INSERT INTO public.notice VALUES (16707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697719749);
INSERT INTO public.notice VALUES (16708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697720351);
INSERT INTO public.notice VALUES (16709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697720950);
INSERT INTO public.notice VALUES (16710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697721550);
INSERT INTO public.notice VALUES (16711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697722149);
INSERT INTO public.notice VALUES (16712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697722751);
INSERT INTO public.notice VALUES (16713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697723351);
INSERT INTO public.notice VALUES (16714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697723950);
INSERT INTO public.notice VALUES (16715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697724551);
INSERT INTO public.notice VALUES (16716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697725149);
INSERT INTO public.notice VALUES (16717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697725750);
INSERT INTO public.notice VALUES (25543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703013908);
INSERT INTO public.notice VALUES (26323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703482235);
INSERT INTO public.notice VALUES (26927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703844637);
INSERT INTO public.notice VALUES (27327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704084637);
INSERT INTO public.notice VALUES (27328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704085236);
INSERT INTO public.notice VALUES (27652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704279635);
INSERT INTO public.notice VALUES (27654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704280836);
INSERT INTO public.notice VALUES (27862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704405636);
INSERT INTO public.notice VALUES (16718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697726350);
INSERT INTO public.notice VALUES (16719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697726949);
INSERT INTO public.notice VALUES (16720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697727550);
INSERT INTO public.notice VALUES (16721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697728150);
INSERT INTO public.notice VALUES (16722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697728750);
INSERT INTO public.notice VALUES (16723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697729349);
INSERT INTO public.notice VALUES (16724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697729951);
INSERT INTO public.notice VALUES (16725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697730551);
INSERT INTO public.notice VALUES (16726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697731149);
INSERT INTO public.notice VALUES (16727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697731752);
INSERT INTO public.notice VALUES (16728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697732351);
INSERT INTO public.notice VALUES (16729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697732949);
INSERT INTO public.notice VALUES (16730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697733549);
INSERT INTO public.notice VALUES (16731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697734151);
INSERT INTO public.notice VALUES (16732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697734752);
INSERT INTO public.notice VALUES (16733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697735349);
INSERT INTO public.notice VALUES (16734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697735951);
INSERT INTO public.notice VALUES (16735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697736550);
INSERT INTO public.notice VALUES (16736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697737150);
INSERT INTO public.notice VALUES (16737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697737749);
INSERT INTO public.notice VALUES (16738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697738351);
INSERT INTO public.notice VALUES (16739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697738951);
INSERT INTO public.notice VALUES (16740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697739550);
INSERT INTO public.notice VALUES (16741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697740149);
INSERT INTO public.notice VALUES (16742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697740751);
INSERT INTO public.notice VALUES (16743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697741350);
INSERT INTO public.notice VALUES (16744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697741950);
INSERT INTO public.notice VALUES (16745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697742548);
INSERT INTO public.notice VALUES (16746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697743150);
INSERT INTO public.notice VALUES (16747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697743749);
INSERT INTO public.notice VALUES (16748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697744350);
INSERT INTO public.notice VALUES (16749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697744952);
INSERT INTO public.notice VALUES (16750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697745550);
INSERT INTO public.notice VALUES (16751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697746151);
INSERT INTO public.notice VALUES (16752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697746750);
INSERT INTO public.notice VALUES (16753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697747351);
INSERT INTO public.notice VALUES (16754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697747950);
INSERT INTO public.notice VALUES (16755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697748551);
INSERT INTO public.notice VALUES (16756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697749150);
INSERT INTO public.notice VALUES (16757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697749750);
INSERT INTO public.notice VALUES (16758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697750351);
INSERT INTO public.notice VALUES (16759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697750949);
INSERT INTO public.notice VALUES (16760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697751550);
INSERT INTO public.notice VALUES (16771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697758150);
INSERT INTO public.notice VALUES (16772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697758750);
INSERT INTO public.notice VALUES (16761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697752151);
INSERT INTO public.notice VALUES (16762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697752750);
INSERT INTO public.notice VALUES (16763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697753351);
INSERT INTO public.notice VALUES (16764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697753951);
INSERT INTO public.notice VALUES (16765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697754550);
INSERT INTO public.notice VALUES (16766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697755149);
INSERT INTO public.notice VALUES (16767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697755750);
INSERT INTO public.notice VALUES (16768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697756349);
INSERT INTO public.notice VALUES (16769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697756949);
INSERT INTO public.notice VALUES (16770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697757548);
INSERT INTO public.notice VALUES (16773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697759350);
INSERT INTO public.notice VALUES (16774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697759950);
INSERT INTO public.notice VALUES (16775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697760551);
INSERT INTO public.notice VALUES (16776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697761151);
INSERT INTO public.notice VALUES (16777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697761750);
INSERT INTO public.notice VALUES (16778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697762351);
INSERT INTO public.notice VALUES (16779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697762950);
INSERT INTO public.notice VALUES (16780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697763550);
INSERT INTO public.notice VALUES (16781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697764151);
INSERT INTO public.notice VALUES (16782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697764750);
INSERT INTO public.notice VALUES (16807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697779750);
INSERT INTO public.notice VALUES (16808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697780349);
INSERT INTO public.notice VALUES (16809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697780948);
INSERT INTO public.notice VALUES (16811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697782149);
INSERT INTO public.notice VALUES (16812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697782749);
INSERT INTO public.notice VALUES (16813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697783348);
INSERT INTO public.notice VALUES (16814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697783950);
INSERT INTO public.notice VALUES (16815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697784549);
INSERT INTO public.notice VALUES (16816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697785149);
INSERT INTO public.notice VALUES (16817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697785750);
INSERT INTO public.notice VALUES (16783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697765351);
INSERT INTO public.notice VALUES (16784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697765949);
INSERT INTO public.notice VALUES (16785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697766551);
INSERT INTO public.notice VALUES (16786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697767150);
INSERT INTO public.notice VALUES (16787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697767749);
INSERT INTO public.notice VALUES (16788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697768351);
INSERT INTO public.notice VALUES (16789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697768950);
INSERT INTO public.notice VALUES (16790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697769549);
INSERT INTO public.notice VALUES (16791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697770149);
INSERT INTO public.notice VALUES (16792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697770751);
INSERT INTO public.notice VALUES (16793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697771349);
INSERT INTO public.notice VALUES (16794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697771950);
INSERT INTO public.notice VALUES (16795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697772548);
INSERT INTO public.notice VALUES (16796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697773150);
INSERT INTO public.notice VALUES (16797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697773749);
INSERT INTO public.notice VALUES (16798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697774349);
INSERT INTO public.notice VALUES (16799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697774950);
INSERT INTO public.notice VALUES (16800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697775549);
INSERT INTO public.notice VALUES (16801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697776149);
INSERT INTO public.notice VALUES (16802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697776748);
INSERT INTO public.notice VALUES (16803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697777352);
INSERT INTO public.notice VALUES (16804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697777953);
INSERT INTO public.notice VALUES (16805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697778549);
INSERT INTO public.notice VALUES (16806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697779150);
INSERT INTO public.notice VALUES (16810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697781550);
INSERT INTO public.notice VALUES (16818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697786350);
INSERT INTO public.notice VALUES (16819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697786949);
INSERT INTO public.notice VALUES (16820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697787548);
INSERT INTO public.notice VALUES (16821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697788150);
INSERT INTO public.notice VALUES (16822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697788750);
INSERT INTO public.notice VALUES (16823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697789349);
INSERT INTO public.notice VALUES (16824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697789950);
INSERT INTO public.notice VALUES (16825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697790550);
INSERT INTO public.notice VALUES (16831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697794148);
INSERT INTO public.notice VALUES (25544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703014508);
INSERT INTO public.notice VALUES (26325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703483436);
INSERT INTO public.notice VALUES (26331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703487036);
INSERT INTO public.notice VALUES (26929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703845836);
INSERT INTO public.notice VALUES (27330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704086435);
INSERT INTO public.notice VALUES (27331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704087035);
INSERT INTO public.notice VALUES (27332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704087636);
INSERT INTO public.notice VALUES (27333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704088236);
INSERT INTO public.notice VALUES (27655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704281435);
INSERT INTO public.notice VALUES (27865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704407435);
INSERT INTO public.notice VALUES (27866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704408035);
INSERT INTO public.notice VALUES (16826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697791149);
INSERT INTO public.notice VALUES (16827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697791749);
INSERT INTO public.notice VALUES (16828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697792350);
INSERT INTO public.notice VALUES (16829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697792949);
INSERT INTO public.notice VALUES (16830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697793549);
INSERT INTO public.notice VALUES (16832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697794750);
INSERT INTO public.notice VALUES (16833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697795349);
INSERT INTO public.notice VALUES (16834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697795949);
INSERT INTO public.notice VALUES (16835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697796550);
INSERT INTO public.notice VALUES (16836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697797150);
INSERT INTO public.notice VALUES (16837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697797749);
INSERT INTO public.notice VALUES (16838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697798348);
INSERT INTO public.notice VALUES (16839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697798950);
INSERT INTO public.notice VALUES (16840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697799550);
INSERT INTO public.notice VALUES (16841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697800149);
INSERT INTO public.notice VALUES (16842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697800751);
INSERT INTO public.notice VALUES (16843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697801350);
INSERT INTO public.notice VALUES (16844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697801950);
INSERT INTO public.notice VALUES (16845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697802549);
INSERT INTO public.notice VALUES (16846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697803151);
INSERT INTO public.notice VALUES (16847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697803749);
INSERT INTO public.notice VALUES (16848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697804349);
INSERT INTO public.notice VALUES (16849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697804950);
INSERT INTO public.notice VALUES (16850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697805551);
INSERT INTO public.notice VALUES (16851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697806149);
INSERT INTO public.notice VALUES (16852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697806749);
INSERT INTO public.notice VALUES (16853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697807351);
INSERT INTO public.notice VALUES (16854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697807950);
INSERT INTO public.notice VALUES (16855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697808550);
INSERT INTO public.notice VALUES (16856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697809148);
INSERT INTO public.notice VALUES (16857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697809750);
INSERT INTO public.notice VALUES (16858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697810350);
INSERT INTO public.notice VALUES (16868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697816351);
INSERT INTO public.notice VALUES (16869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697816951);
INSERT INTO public.notice VALUES (16870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697817550);
INSERT INTO public.notice VALUES (16871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697818151);
INSERT INTO public.notice VALUES (16872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697818750);
INSERT INTO public.notice VALUES (16873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697819350);
INSERT INTO public.notice VALUES (16874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697819949);
INSERT INTO public.notice VALUES (16875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697820551);
INSERT INTO public.notice VALUES (25545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703015107);
INSERT INTO public.notice VALUES (25548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703016907);
INSERT INTO public.notice VALUES (25549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703017507);
INSERT INTO public.notice VALUES (25558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703022907);
INSERT INTO public.notice VALUES (26327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703484635);
INSERT INTO public.notice VALUES (16859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697810949);
INSERT INTO public.notice VALUES (16860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697811550);
INSERT INTO public.notice VALUES (16861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697812152);
INSERT INTO public.notice VALUES (16862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697812749);
INSERT INTO public.notice VALUES (16863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697813349);
INSERT INTO public.notice VALUES (16864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697813951);
INSERT INTO public.notice VALUES (16865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697814550);
INSERT INTO public.notice VALUES (16866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697815150);
INSERT INTO public.notice VALUES (16867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697815750);
INSERT INTO public.notice VALUES (16876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697821150);
INSERT INTO public.notice VALUES (16877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697821749);
INSERT INTO public.notice VALUES (16878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697822352);
INSERT INTO public.notice VALUES (16879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697822950);
INSERT INTO public.notice VALUES (16880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697823549);
INSERT INTO public.notice VALUES (16881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697824149);
INSERT INTO public.notice VALUES (16882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697824750);
INSERT INTO public.notice VALUES (16898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697834350);
INSERT INTO public.notice VALUES (16899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697834950);
INSERT INTO public.notice VALUES (16900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697835551);
INSERT INTO public.notice VALUES (16901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697836149);
INSERT INTO public.notice VALUES (16902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697836749);
INSERT INTO public.notice VALUES (25546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703015710);
INSERT INTO public.notice VALUES (26328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703485236);
INSERT INTO public.notice VALUES (26930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703846435);
INSERT INTO public.notice VALUES (27334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704088835);
INSERT INTO public.notice VALUES (27336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704090036);
INSERT INTO public.notice VALUES (27656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704282035);
INSERT INTO public.notice VALUES (27659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704283839);
INSERT INTO public.notice VALUES (27660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704284434);
INSERT INTO public.notice VALUES (27662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704285635);
INSERT INTO public.notice VALUES (16883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697825349);
INSERT INTO public.notice VALUES (16884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697825949);
INSERT INTO public.notice VALUES (16885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697826551);
INSERT INTO public.notice VALUES (16886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697827150);
INSERT INTO public.notice VALUES (16887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697827749);
INSERT INTO public.notice VALUES (16888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697828350);
INSERT INTO public.notice VALUES (16889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697828951);
INSERT INTO public.notice VALUES (16890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697829550);
INSERT INTO public.notice VALUES (16891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697830149);
INSERT INTO public.notice VALUES (16892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697830750);
INSERT INTO public.notice VALUES (16893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697831351);
INSERT INTO public.notice VALUES (16894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697831949);
INSERT INTO public.notice VALUES (16895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697832549);
INSERT INTO public.notice VALUES (16896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697833151);
INSERT INTO public.notice VALUES (16897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697833751);
INSERT INTO public.notice VALUES (16903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697837350);
INSERT INTO public.notice VALUES (16914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697843952);
INSERT INTO public.notice VALUES (16915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697844549);
INSERT INTO public.notice VALUES (16916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697845150);
INSERT INTO public.notice VALUES (16917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697845748);
INSERT INTO public.notice VALUES (25547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703016308);
INSERT INTO public.notice VALUES (25550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703018108);
INSERT INTO public.notice VALUES (25551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703018709);
INSERT INTO public.notice VALUES (26329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703485835);
INSERT INTO public.notice VALUES (26932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703847636);
INSERT INTO public.notice VALUES (27335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704089437);
INSERT INTO public.notice VALUES (27337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704090635);
INSERT INTO public.notice VALUES (27338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704091235);
INSERT INTO public.notice VALUES (27344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704094835);
INSERT INTO public.notice VALUES (27345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704095435);
INSERT INTO public.notice VALUES (16904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697837951);
INSERT INTO public.notice VALUES (16905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697838551);
INSERT INTO public.notice VALUES (16906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697839149);
INSERT INTO public.notice VALUES (16907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697839751);
INSERT INTO public.notice VALUES (16908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697840350);
INSERT INTO public.notice VALUES (16909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697840949);
INSERT INTO public.notice VALUES (16910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697841549);
INSERT INTO public.notice VALUES (16911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697842150);
INSERT INTO public.notice VALUES (16912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697842749);
INSERT INTO public.notice VALUES (16913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697843349);
INSERT INTO public.notice VALUES (16918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697846351);
INSERT INTO public.notice VALUES (16919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697846950);
INSERT INTO public.notice VALUES (16920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697847549);
INSERT INTO public.notice VALUES (16921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697848150);
INSERT INTO public.notice VALUES (16922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697848751);
INSERT INTO public.notice VALUES (16923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697849350);
INSERT INTO public.notice VALUES (16924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697849949);
INSERT INTO public.notice VALUES (16925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697850551);
INSERT INTO public.notice VALUES (16926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697851149);
INSERT INTO public.notice VALUES (16927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697851749);
INSERT INTO public.notice VALUES (16928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1697852360);
INSERT INTO public.notice VALUES (16929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697852951);
INSERT INTO public.notice VALUES (16930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697853551);
INSERT INTO public.notice VALUES (16931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697854149);
INSERT INTO public.notice VALUES (16932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697854751);
INSERT INTO public.notice VALUES (16933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697855350);
INSERT INTO public.notice VALUES (16934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697855949);
INSERT INTO public.notice VALUES (16935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697856549);
INSERT INTO public.notice VALUES (16936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697857150);
INSERT INTO public.notice VALUES (16937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697857749);
INSERT INTO public.notice VALUES (16938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697858350);
INSERT INTO public.notice VALUES (16939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697858951);
INSERT INTO public.notice VALUES (16940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697859550);
INSERT INTO public.notice VALUES (16941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697860149);
INSERT INTO public.notice VALUES (16942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697860750);
INSERT INTO public.notice VALUES (16943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697861352);
INSERT INTO public.notice VALUES (16944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697861949);
INSERT INTO public.notice VALUES (16945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697862549);
INSERT INTO public.notice VALUES (16946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697863150);
INSERT INTO public.notice VALUES (16947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697863750);
INSERT INTO public.notice VALUES (16948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697864350);
INSERT INTO public.notice VALUES (16949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697864949);
INSERT INTO public.notice VALUES (16950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697865551);
INSERT INTO public.notice VALUES (16951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697866149);
INSERT INTO public.notice VALUES (16952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697866749);
INSERT INTO public.notice VALUES (16953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697867348);
INSERT INTO public.notice VALUES (16954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697867950);
INSERT INTO public.notice VALUES (16955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697868550);
INSERT INTO public.notice VALUES (16956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697869150);
INSERT INTO public.notice VALUES (16957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697869751);
INSERT INTO public.notice VALUES (16958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697870351);
INSERT INTO public.notice VALUES (16959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697870950);
INSERT INTO public.notice VALUES (25552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703019314);
INSERT INTO public.notice VALUES (25553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703019910);
INSERT INTO public.notice VALUES (25554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703020508);
INSERT INTO public.notice VALUES (26330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703486435);
INSERT INTO public.notice VALUES (26332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703487636);
INSERT INTO public.notice VALUES (26933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703848235);
INSERT INTO public.notice VALUES (27339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704091836);
INSERT INTO public.notice VALUES (27340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704092436);
INSERT INTO public.notice VALUES (27341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704093035);
INSERT INTO public.notice VALUES (16960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697871549);
INSERT INTO public.notice VALUES (16961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697872150);
INSERT INTO public.notice VALUES (16962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697872750);
INSERT INTO public.notice VALUES (16963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697873349);
INSERT INTO public.notice VALUES (16964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697873950);
INSERT INTO public.notice VALUES (16965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697874550);
INSERT INTO public.notice VALUES (16966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697875149);
INSERT INTO public.notice VALUES (16967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697875749);
INSERT INTO public.notice VALUES (16968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697876351);
INSERT INTO public.notice VALUES (16969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697876950);
INSERT INTO public.notice VALUES (16970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697877549);
INSERT INTO public.notice VALUES (16971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697878151);
INSERT INTO public.notice VALUES (16972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697878750);
INSERT INTO public.notice VALUES (16973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697879350);
INSERT INTO public.notice VALUES (16974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697879949);
INSERT INTO public.notice VALUES (16975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697880551);
INSERT INTO public.notice VALUES (16976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697881150);
INSERT INTO public.notice VALUES (16977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697881749);
INSERT INTO public.notice VALUES (16978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697882348);
INSERT INTO public.notice VALUES (16979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697882951);
INSERT INTO public.notice VALUES (16980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697883549);
INSERT INTO public.notice VALUES (16981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697884149);
INSERT INTO public.notice VALUES (16982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697884751);
INSERT INTO public.notice VALUES (16983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697885351);
INSERT INTO public.notice VALUES (16984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697885950);
INSERT INTO public.notice VALUES (16985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697886550);
INSERT INTO public.notice VALUES (16986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697887150);
INSERT INTO public.notice VALUES (16987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697887749);
INSERT INTO public.notice VALUES (16988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697888349);
INSERT INTO public.notice VALUES (16989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697888951);
INSERT INTO public.notice VALUES (16990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697889550);
INSERT INTO public.notice VALUES (16991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697890151);
INSERT INTO public.notice VALUES (16992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697890749);
INSERT INTO public.notice VALUES (16993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697891351);
INSERT INTO public.notice VALUES (16994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697891952);
INSERT INTO public.notice VALUES (16995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697892549);
INSERT INTO public.notice VALUES (16996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697893152);
INSERT INTO public.notice VALUES (16997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697893751);
INSERT INTO public.notice VALUES (16998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697894350);
INSERT INTO public.notice VALUES (16999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697894949);
INSERT INTO public.notice VALUES (17000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697895550);
INSERT INTO public.notice VALUES (17001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697896151);
INSERT INTO public.notice VALUES (17002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697896750);
INSERT INTO public.notice VALUES (17003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697897349);
INSERT INTO public.notice VALUES (17004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697897951);
INSERT INTO public.notice VALUES (17005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697898549);
INSERT INTO public.notice VALUES (17006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697899149);
INSERT INTO public.notice VALUES (17007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697899751);
INSERT INTO public.notice VALUES (17008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697900350);
INSERT INTO public.notice VALUES (17009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697900950);
INSERT INTO public.notice VALUES (17010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697901549);
INSERT INTO public.notice VALUES (17011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697902150);
INSERT INTO public.notice VALUES (17012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697902749);
INSERT INTO public.notice VALUES (17013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697903349);
INSERT INTO public.notice VALUES (17014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697903956);
INSERT INTO public.notice VALUES (17015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697904550);
INSERT INTO public.notice VALUES (17016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697905151);
INSERT INTO public.notice VALUES (17017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697905749);
INSERT INTO public.notice VALUES (17018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697906350);
INSERT INTO public.notice VALUES (17019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697906949);
INSERT INTO public.notice VALUES (17020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697907549);
INSERT INTO public.notice VALUES (25555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703021107);
INSERT INTO public.notice VALUES (26333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703488235);
INSERT INTO public.notice VALUES (26934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703848835);
INSERT INTO public.notice VALUES (26936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703850036);
INSERT INTO public.notice VALUES (27342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704093634);
INSERT INTO public.notice VALUES (27343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704094236);
INSERT INTO public.notice VALUES (27657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704282636);
INSERT INTO public.notice VALUES (27658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704283243);
INSERT INTO public.notice VALUES (27661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704285036);
INSERT INTO public.notice VALUES (27867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704408636);
INSERT INTO public.notice VALUES (27956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704462036);
INSERT INTO public.notice VALUES (27958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704463236);
INSERT INTO public.notice VALUES (27989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704481835);
INSERT INTO public.notice VALUES (28004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704490836);
INSERT INTO public.notice VALUES (17021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697908149);
INSERT INTO public.notice VALUES (17022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697908751);
INSERT INTO public.notice VALUES (17023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697909350);
INSERT INTO public.notice VALUES (17024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697909949);
INSERT INTO public.notice VALUES (17025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697910550);
INSERT INTO public.notice VALUES (17026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697911150);
INSERT INTO public.notice VALUES (17027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697911750);
INSERT INTO public.notice VALUES (17028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697912348);
INSERT INTO public.notice VALUES (17029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697912950);
INSERT INTO public.notice VALUES (17030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697913549);
INSERT INTO public.notice VALUES (17031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697914150);
INSERT INTO public.notice VALUES (17032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697914752);
INSERT INTO public.notice VALUES (17033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697915351);
INSERT INTO public.notice VALUES (17034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697915950);
INSERT INTO public.notice VALUES (17035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697916549);
INSERT INTO public.notice VALUES (17036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697917151);
INSERT INTO public.notice VALUES (17037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697917750);
INSERT INTO public.notice VALUES (17038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697918350);
INSERT INTO public.notice VALUES (17039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697918952);
INSERT INTO public.notice VALUES (17040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697919550);
INSERT INTO public.notice VALUES (17041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697920151);
INSERT INTO public.notice VALUES (17042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697920750);
INSERT INTO public.notice VALUES (17043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697921355);
INSERT INTO public.notice VALUES (17044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697921952);
INSERT INTO public.notice VALUES (17045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697922550);
INSERT INTO public.notice VALUES (17046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697923149);
INSERT INTO public.notice VALUES (17047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697923751);
INSERT INTO public.notice VALUES (17048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697924350);
INSERT INTO public.notice VALUES (17049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697924949);
INSERT INTO public.notice VALUES (17063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697933350);
INSERT INTO public.notice VALUES (17050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697925551);
INSERT INTO public.notice VALUES (17051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697926150);
INSERT INTO public.notice VALUES (17052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697926750);
INSERT INTO public.notice VALUES (17053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697927351);
INSERT INTO public.notice VALUES (17054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697927950);
INSERT INTO public.notice VALUES (17055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697928550);
INSERT INTO public.notice VALUES (17056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697929149);
INSERT INTO public.notice VALUES (17057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697929752);
INSERT INTO public.notice VALUES (17058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697930351);
INSERT INTO public.notice VALUES (17059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697930950);
INSERT INTO public.notice VALUES (17060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697931549);
INSERT INTO public.notice VALUES (17061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697932151);
INSERT INTO public.notice VALUES (17062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697932749);
INSERT INTO public.notice VALUES (17065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697934551);
INSERT INTO public.notice VALUES (17078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697942349);
INSERT INTO public.notice VALUES (17064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697933952);
INSERT INTO public.notice VALUES (17066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697935150);
INSERT INTO public.notice VALUES (17067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697935750);
INSERT INTO public.notice VALUES (17068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697936351);
INSERT INTO public.notice VALUES (17069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697936949);
INSERT INTO public.notice VALUES (17070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697937551);
INSERT INTO public.notice VALUES (17071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697938149);
INSERT INTO public.notice VALUES (17072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697938752);
INSERT INTO public.notice VALUES (17073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697939350);
INSERT INTO public.notice VALUES (17074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697939949);
INSERT INTO public.notice VALUES (17075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697940550);
INSERT INTO public.notice VALUES (17076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697941150);
INSERT INTO public.notice VALUES (17077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697941749);
INSERT INTO public.notice VALUES (25556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703021707);
INSERT INTO public.notice VALUES (25557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703022308);
INSERT INTO public.notice VALUES (17079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697942951);
INSERT INTO public.notice VALUES (17080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697943549);
INSERT INTO public.notice VALUES (17081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697944150);
INSERT INTO public.notice VALUES (17082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697944750);
INSERT INTO public.notice VALUES (17083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697945350);
INSERT INTO public.notice VALUES (17084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697945949);
INSERT INTO public.notice VALUES (17085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697946550);
INSERT INTO public.notice VALUES (17086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697947151);
INSERT INTO public.notice VALUES (17087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697947750);
INSERT INTO public.notice VALUES (17088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697948350);
INSERT INTO public.notice VALUES (17089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697948949);
INSERT INTO public.notice VALUES (17090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697949550);
INSERT INTO public.notice VALUES (17091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697950150);
INSERT INTO public.notice VALUES (17092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697950750);
INSERT INTO public.notice VALUES (17093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697951350);
INSERT INTO public.notice VALUES (17094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697951950);
INSERT INTO public.notice VALUES (17095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697952549);
INSERT INTO public.notice VALUES (17096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697953150);
INSERT INTO public.notice VALUES (17097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697953752);
INSERT INTO public.notice VALUES (17098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697954350);
INSERT INTO public.notice VALUES (17099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697954949);
INSERT INTO public.notice VALUES (17100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697955550);
INSERT INTO public.notice VALUES (17101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697956150);
INSERT INTO public.notice VALUES (17102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697956750);
INSERT INTO public.notice VALUES (17103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697957350);
INSERT INTO public.notice VALUES (17104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697957952);
INSERT INTO public.notice VALUES (17105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697958550);
INSERT INTO public.notice VALUES (17106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697959150);
INSERT INTO public.notice VALUES (17107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697959751);
INSERT INTO public.notice VALUES (17108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697960351);
INSERT INTO public.notice VALUES (17109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697960951);
INSERT INTO public.notice VALUES (17110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697961549);
INSERT INTO public.notice VALUES (17111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697962151);
INSERT INTO public.notice VALUES (17112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697962750);
INSERT INTO public.notice VALUES (17113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697963351);
INSERT INTO public.notice VALUES (17148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697984350);
INSERT INTO public.notice VALUES (25559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703023507);
INSERT INTO public.notice VALUES (25561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703024708);
INSERT INTO public.notice VALUES (25563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703025907);
INSERT INTO public.notice VALUES (25564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703026508);
INSERT INTO public.notice VALUES (25566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703027707);
INSERT INTO public.notice VALUES (26334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703488835);
INSERT INTO public.notice VALUES (26335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703489445);
INSERT INTO public.notice VALUES (26336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703490040);
INSERT INTO public.notice VALUES (26338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703491235);
INSERT INTO public.notice VALUES (17114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697963951);
INSERT INTO public.notice VALUES (17115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697964550);
INSERT INTO public.notice VALUES (17116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697965149);
INSERT INTO public.notice VALUES (17117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697965749);
INSERT INTO public.notice VALUES (17118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697966350);
INSERT INTO public.notice VALUES (17119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697966950);
INSERT INTO public.notice VALUES (17120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697967549);
INSERT INTO public.notice VALUES (17121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697968149);
INSERT INTO public.notice VALUES (17122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697968750);
INSERT INTO public.notice VALUES (17123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697969350);
INSERT INTO public.notice VALUES (17124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697969949);
INSERT INTO public.notice VALUES (17125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697970550);
INSERT INTO public.notice VALUES (17126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697971149);
INSERT INTO public.notice VALUES (17127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697971750);
INSERT INTO public.notice VALUES (17128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697972349);
INSERT INTO public.notice VALUES (17129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697972950);
INSERT INTO public.notice VALUES (17130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697973550);
INSERT INTO public.notice VALUES (17131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697974149);
INSERT INTO public.notice VALUES (17132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697974752);
INSERT INTO public.notice VALUES (17133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697975351);
INSERT INTO public.notice VALUES (17134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697975950);
INSERT INTO public.notice VALUES (17135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697976550);
INSERT INTO public.notice VALUES (17136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697977150);
INSERT INTO public.notice VALUES (17137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697977750);
INSERT INTO public.notice VALUES (17138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697978350);
INSERT INTO public.notice VALUES (17139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697978951);
INSERT INTO public.notice VALUES (17140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697979550);
INSERT INTO public.notice VALUES (17141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697980151);
INSERT INTO public.notice VALUES (17142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697980749);
INSERT INTO public.notice VALUES (17143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697981351);
INSERT INTO public.notice VALUES (17144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697981949);
INSERT INTO public.notice VALUES (17145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697982549);
INSERT INTO public.notice VALUES (17146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697983150);
INSERT INTO public.notice VALUES (17147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697983750);
INSERT INTO public.notice VALUES (17149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697984949);
INSERT INTO public.notice VALUES (17150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697985552);
INSERT INTO public.notice VALUES (17151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697986150);
INSERT INTO public.notice VALUES (17152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697986750);
INSERT INTO public.notice VALUES (17153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697987349);
INSERT INTO public.notice VALUES (17154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697987951);
INSERT INTO public.notice VALUES (17155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697988549);
INSERT INTO public.notice VALUES (17156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697989149);
INSERT INTO public.notice VALUES (17157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697989751);
INSERT INTO public.notice VALUES (17158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697990350);
INSERT INTO public.notice VALUES (17159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697990951);
INSERT INTO public.notice VALUES (17160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697991550);
INSERT INTO public.notice VALUES (17161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697992152);
INSERT INTO public.notice VALUES (25560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703024108);
INSERT INTO public.notice VALUES (25562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703025307);
INSERT INTO public.notice VALUES (25565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703027107);
INSERT INTO public.notice VALUES (26337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703490635);
INSERT INTO public.notice VALUES (26935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703849436);
INSERT INTO public.notice VALUES (26938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703851235);
INSERT INTO public.notice VALUES (27346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704096036);
INSERT INTO public.notice VALUES (27347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704096636);
INSERT INTO public.notice VALUES (27349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704097835);
INSERT INTO public.notice VALUES (27663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704286235);
INSERT INTO public.notice VALUES (27666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704288035);
INSERT INTO public.notice VALUES (27669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704289835);
INSERT INTO public.notice VALUES (27671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704291036);
INSERT INTO public.notice VALUES (17162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697992750);
INSERT INTO public.notice VALUES (17163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697993349);
INSERT INTO public.notice VALUES (17164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697993951);
INSERT INTO public.notice VALUES (17165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697994551);
INSERT INTO public.notice VALUES (17166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697995151);
INSERT INTO public.notice VALUES (17167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697995749);
INSERT INTO public.notice VALUES (17168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697996350);
INSERT INTO public.notice VALUES (17169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697996951);
INSERT INTO public.notice VALUES (17170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697997549);
INSERT INTO public.notice VALUES (17171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697998149);
INSERT INTO public.notice VALUES (17172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697998750);
INSERT INTO public.notice VALUES (17173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697999350);
INSERT INTO public.notice VALUES (17174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1697999949);
INSERT INTO public.notice VALUES (17175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698000551);
INSERT INTO public.notice VALUES (17176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698001150);
INSERT INTO public.notice VALUES (17177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698001750);
INSERT INTO public.notice VALUES (17178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698002351);
INSERT INTO public.notice VALUES (17179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698002951);
INSERT INTO public.notice VALUES (17180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698003551);
INSERT INTO public.notice VALUES (17181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698004150);
INSERT INTO public.notice VALUES (17182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698004750);
INSERT INTO public.notice VALUES (17183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698005350);
INSERT INTO public.notice VALUES (25567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703028308);
INSERT INTO public.notice VALUES (25568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703028908);
INSERT INTO public.notice VALUES (25570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703030107);
INSERT INTO public.notice VALUES (25571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703030709);
INSERT INTO public.notice VALUES (25572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703031308);
INSERT INTO public.notice VALUES (25574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703032506);
INSERT INTO public.notice VALUES (26339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703491836);
INSERT INTO public.notice VALUES (26343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703494236);
INSERT INTO public.notice VALUES (17184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698005950);
INSERT INTO public.notice VALUES (17185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698006549);
INSERT INTO public.notice VALUES (17186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698007150);
INSERT INTO public.notice VALUES (17187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698007750);
INSERT INTO public.notice VALUES (17188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698008349);
INSERT INTO public.notice VALUES (17189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698008950);
INSERT INTO public.notice VALUES (17190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698009551);
INSERT INTO public.notice VALUES (17191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698010150);
INSERT INTO public.notice VALUES (17192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698010748);
INSERT INTO public.notice VALUES (17193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698011350);
INSERT INTO public.notice VALUES (17194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698011950);
INSERT INTO public.notice VALUES (17195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698012550);
INSERT INTO public.notice VALUES (17196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698013149);
INSERT INTO public.notice VALUES (17197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698013750);
INSERT INTO public.notice VALUES (17198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698014351);
INSERT INTO public.notice VALUES (17199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698014950);
INSERT INTO public.notice VALUES (17200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698015551);
INSERT INTO public.notice VALUES (17201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698016150);
INSERT INTO public.notice VALUES (17202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698016750);
INSERT INTO public.notice VALUES (17203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698017350);
INSERT INTO public.notice VALUES (17204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698017951);
INSERT INTO public.notice VALUES (17205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698018550);
INSERT INTO public.notice VALUES (17206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698019149);
INSERT INTO public.notice VALUES (17207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698019752);
INSERT INTO public.notice VALUES (17208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698020351);
INSERT INTO public.notice VALUES (17209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698020949);
INSERT INTO public.notice VALUES (17210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698021549);
INSERT INTO public.notice VALUES (17211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698022151);
INSERT INTO public.notice VALUES (17212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698022750);
INSERT INTO public.notice VALUES (17213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698023349);
INSERT INTO public.notice VALUES (17214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698023950);
INSERT INTO public.notice VALUES (17215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698024551);
INSERT INTO public.notice VALUES (17216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698025151);
INSERT INTO public.notice VALUES (17217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698025750);
INSERT INTO public.notice VALUES (17218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698026350);
INSERT INTO public.notice VALUES (17219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698026949);
INSERT INTO public.notice VALUES (17220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698027549);
INSERT INTO public.notice VALUES (17221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698028148);
INSERT INTO public.notice VALUES (17222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698028750);
INSERT INTO public.notice VALUES (17223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698029350);
INSERT INTO public.notice VALUES (17224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698029949);
INSERT INTO public.notice VALUES (17225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698030550);
INSERT INTO public.notice VALUES (17226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698031150);
INSERT INTO public.notice VALUES (17227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698031749);
INSERT INTO public.notice VALUES (17228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698032348);
INSERT INTO public.notice VALUES (17229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698032951);
INSERT INTO public.notice VALUES (25569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703029507);
INSERT INTO public.notice VALUES (25573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703031907);
INSERT INTO public.notice VALUES (25575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703033108);
INSERT INTO public.notice VALUES (25577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703034307);
INSERT INTO public.notice VALUES (25578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703034908);
INSERT INTO public.notice VALUES (25581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703036706);
INSERT INTO public.notice VALUES (25582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703037308);
INSERT INTO public.notice VALUES (26340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703492435);
INSERT INTO public.notice VALUES (26341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703493035);
INSERT INTO public.notice VALUES (26342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703493636);
INSERT INTO public.notice VALUES (26937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703850636);
INSERT INTO public.notice VALUES (26939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703851834);
INSERT INTO public.notice VALUES (27348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704097242);
INSERT INTO public.notice VALUES (27350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704098436);
INSERT INTO public.notice VALUES (17230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698033550);
INSERT INTO public.notice VALUES (17231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698034149);
INSERT INTO public.notice VALUES (17232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698034750);
INSERT INTO public.notice VALUES (17233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698035350);
INSERT INTO public.notice VALUES (17234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698035949);
INSERT INTO public.notice VALUES (17235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698036548);
INSERT INTO public.notice VALUES (17236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698037150);
INSERT INTO public.notice VALUES (17237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698037749);
INSERT INTO public.notice VALUES (17238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698038349);
INSERT INTO public.notice VALUES (17239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698038950);
INSERT INTO public.notice VALUES (17240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698039550);
INSERT INTO public.notice VALUES (17241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698040149);
INSERT INTO public.notice VALUES (17242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698040749);
INSERT INTO public.notice VALUES (17243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698041350);
INSERT INTO public.notice VALUES (17244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698041949);
INSERT INTO public.notice VALUES (17245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698042549);
INSERT INTO public.notice VALUES (17246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698043148);
INSERT INTO public.notice VALUES (17247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698043750);
INSERT INTO public.notice VALUES (17248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698044349);
INSERT INTO public.notice VALUES (17249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698044949);
INSERT INTO public.notice VALUES (17250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698045550);
INSERT INTO public.notice VALUES (17251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698046149);
INSERT INTO public.notice VALUES (17252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698046749);
INSERT INTO public.notice VALUES (17253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698047348);
INSERT INTO public.notice VALUES (17254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698047950);
INSERT INTO public.notice VALUES (17268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698056350);
INSERT INTO public.notice VALUES (17269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698056949);
INSERT INTO public.notice VALUES (17270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698057549);
INSERT INTO public.notice VALUES (17271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698058148);
INSERT INTO public.notice VALUES (17272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698058751);
INSERT INTO public.notice VALUES (17255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698048549);
INSERT INTO public.notice VALUES (17256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698049149);
INSERT INTO public.notice VALUES (17257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698049750);
INSERT INTO public.notice VALUES (17258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698050350);
INSERT INTO public.notice VALUES (17259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698050949);
INSERT INTO public.notice VALUES (17260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698051549);
INSERT INTO public.notice VALUES (17261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698052150);
INSERT INTO public.notice VALUES (17262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698052749);
INSERT INTO public.notice VALUES (17263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698053350);
INSERT INTO public.notice VALUES (17264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698053950);
INSERT INTO public.notice VALUES (17265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698054550);
INSERT INTO public.notice VALUES (17266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698055149);
INSERT INTO public.notice VALUES (17267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698055749);
INSERT INTO public.notice VALUES (17288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698068349);
INSERT INTO public.notice VALUES (17289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698068951);
INSERT INTO public.notice VALUES (17273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698059349);
INSERT INTO public.notice VALUES (17274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698059949);
INSERT INTO public.notice VALUES (17275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698060550);
INSERT INTO public.notice VALUES (17276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698061150);
INSERT INTO public.notice VALUES (17277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698061749);
INSERT INTO public.notice VALUES (17278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698062349);
INSERT INTO public.notice VALUES (17279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698062950);
INSERT INTO public.notice VALUES (17280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698063549);
INSERT INTO public.notice VALUES (17281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698064149);
INSERT INTO public.notice VALUES (17282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698064750);
INSERT INTO public.notice VALUES (17283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698065350);
INSERT INTO public.notice VALUES (17284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698065951);
INSERT INTO public.notice VALUES (17285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698066549);
INSERT INTO public.notice VALUES (17286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698067151);
INSERT INTO public.notice VALUES (17287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698067750);
INSERT INTO public.notice VALUES (17290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698069551);
INSERT INTO public.notice VALUES (17291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698070149);
INSERT INTO public.notice VALUES (17292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698070749);
INSERT INTO public.notice VALUES (17293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698071351);
INSERT INTO public.notice VALUES (17294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698071950);
INSERT INTO public.notice VALUES (17295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698072550);
INSERT INTO public.notice VALUES (17298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698074350);
INSERT INTO public.notice VALUES (25576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703033707);
INSERT INTO public.notice VALUES (25579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703035508);
INSERT INTO public.notice VALUES (25580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703036107);
INSERT INTO public.notice VALUES (26344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703494835);
INSERT INTO public.notice VALUES (26346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703496036);
INSERT INTO public.notice VALUES (26347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703496635);
INSERT INTO public.notice VALUES (26348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703497235);
INSERT INTO public.notice VALUES (26349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703497836);
INSERT INTO public.notice VALUES (17296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698073148);
INSERT INTO public.notice VALUES (17297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698073750);
INSERT INTO public.notice VALUES (17299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698074949);
INSERT INTO public.notice VALUES (17300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698075551);
INSERT INTO public.notice VALUES (17301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698076150);
INSERT INTO public.notice VALUES (17302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698076750);
INSERT INTO public.notice VALUES (17303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698077349);
INSERT INTO public.notice VALUES (17304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698077950);
INSERT INTO public.notice VALUES (17305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698078549);
INSERT INTO public.notice VALUES (17306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698079150);
INSERT INTO public.notice VALUES (17307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698079751);
INSERT INTO public.notice VALUES (17308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698080350);
INSERT INTO public.notice VALUES (17309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698080950);
INSERT INTO public.notice VALUES (17310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698081550);
INSERT INTO public.notice VALUES (17311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698082151);
INSERT INTO public.notice VALUES (17312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698082749);
INSERT INTO public.notice VALUES (17313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698083350);
INSERT INTO public.notice VALUES (17314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698083950);
INSERT INTO public.notice VALUES (17322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698088750);
INSERT INTO public.notice VALUES (17323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698089350);
INSERT INTO public.notice VALUES (17324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698089950);
INSERT INTO public.notice VALUES (17325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698090551);
INSERT INTO public.notice VALUES (17326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698091150);
INSERT INTO public.notice VALUES (17327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698091750);
INSERT INTO public.notice VALUES (17333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698095350);
INSERT INTO public.notice VALUES (17334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698095954);
INSERT INTO public.notice VALUES (17359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698110950);
INSERT INTO public.notice VALUES (17360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698111549);
INSERT INTO public.notice VALUES (17361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698112150);
INSERT INTO public.notice VALUES (17362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698112749);
INSERT INTO public.notice VALUES (17315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698084551);
INSERT INTO public.notice VALUES (17316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698085150);
INSERT INTO public.notice VALUES (17317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698085751);
INSERT INTO public.notice VALUES (17318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698086351);
INSERT INTO public.notice VALUES (17319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698086950);
INSERT INTO public.notice VALUES (17320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698087549);
INSERT INTO public.notice VALUES (17321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698088151);
INSERT INTO public.notice VALUES (17328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698092348);
INSERT INTO public.notice VALUES (17329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698092950);
INSERT INTO public.notice VALUES (17330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698093550);
INSERT INTO public.notice VALUES (17331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698094150);
INSERT INTO public.notice VALUES (17332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698094750);
INSERT INTO public.notice VALUES (17335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698096549);
INSERT INTO public.notice VALUES (17336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698097150);
INSERT INTO public.notice VALUES (17337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698097751);
INSERT INTO public.notice VALUES (17338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698098350);
INSERT INTO public.notice VALUES (17339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698098949);
INSERT INTO public.notice VALUES (17340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698099552);
INSERT INTO public.notice VALUES (17341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698100150);
INSERT INTO public.notice VALUES (17342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698100750);
INSERT INTO public.notice VALUES (17343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698101352);
INSERT INTO public.notice VALUES (17344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698101950);
INSERT INTO public.notice VALUES (17345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698102549);
INSERT INTO public.notice VALUES (17346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698103149);
INSERT INTO public.notice VALUES (17347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698103751);
INSERT INTO public.notice VALUES (17348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698104349);
INSERT INTO public.notice VALUES (17349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698104949);
INSERT INTO public.notice VALUES (17350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698105551);
INSERT INTO public.notice VALUES (17351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698106150);
INSERT INTO public.notice VALUES (17352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698106750);
INSERT INTO public.notice VALUES (17353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698107349);
INSERT INTO public.notice VALUES (17354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698107950);
INSERT INTO public.notice VALUES (17355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698108550);
INSERT INTO public.notice VALUES (17356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698109149);
INSERT INTO public.notice VALUES (17357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698109749);
INSERT INTO public.notice VALUES (17358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698110350);
INSERT INTO public.notice VALUES (25583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703037907);
INSERT INTO public.notice VALUES (25584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703038507);
INSERT INTO public.notice VALUES (25586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703039708);
INSERT INTO public.notice VALUES (25587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703040307);
INSERT INTO public.notice VALUES (25588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703040906);
INSERT INTO public.notice VALUES (26345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703495437);
INSERT INTO public.notice VALUES (26940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703852436);
INSERT INTO public.notice VALUES (27351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704099036);
INSERT INTO public.notice VALUES (27352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704099635);
INSERT INTO public.notice VALUES (17363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698113349);
INSERT INTO public.notice VALUES (17364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698113948);
INSERT INTO public.notice VALUES (17365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698114550);
INSERT INTO public.notice VALUES (17366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698115150);
INSERT INTO public.notice VALUES (17367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698115749);
INSERT INTO public.notice VALUES (17368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698116351);
INSERT INTO public.notice VALUES (17369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698116951);
INSERT INTO public.notice VALUES (17370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698117549);
INSERT INTO public.notice VALUES (17371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698118148);
INSERT INTO public.notice VALUES (17372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698118750);
INSERT INTO public.notice VALUES (17373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698119349);
INSERT INTO public.notice VALUES (17374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698119950);
INSERT INTO public.notice VALUES (17375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698120550);
INSERT INTO public.notice VALUES (17376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698121150);
INSERT INTO public.notice VALUES (17377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698121749);
INSERT INTO public.notice VALUES (17378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698122349);
INSERT INTO public.notice VALUES (17379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698122950);
INSERT INTO public.notice VALUES (17380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698123550);
INSERT INTO public.notice VALUES (17381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698124149);
INSERT INTO public.notice VALUES (17382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698124748);
INSERT INTO public.notice VALUES (17383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698125350);
INSERT INTO public.notice VALUES (17384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698125949);
INSERT INTO public.notice VALUES (17385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698126549);
INSERT INTO public.notice VALUES (17386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698127150);
INSERT INTO public.notice VALUES (17387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698127750);
INSERT INTO public.notice VALUES (17388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698128349);
INSERT INTO public.notice VALUES (17393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698131350);
INSERT INTO public.notice VALUES (17394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698131950);
INSERT INTO public.notice VALUES (17395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698132549);
INSERT INTO public.notice VALUES (17396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698133149);
INSERT INTO public.notice VALUES (17389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698128949);
INSERT INTO public.notice VALUES (17390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698129550);
INSERT INTO public.notice VALUES (17391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698130149);
INSERT INTO public.notice VALUES (17392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698130749);
INSERT INTO public.notice VALUES (17408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698140351);
INSERT INTO public.notice VALUES (17409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698140949);
INSERT INTO public.notice VALUES (17410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698141549);
INSERT INTO public.notice VALUES (17411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698142150);
INSERT INTO public.notice VALUES (17412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698142750);
INSERT INTO public.notice VALUES (17413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698143349);
INSERT INTO public.notice VALUES (17423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698149351);
INSERT INTO public.notice VALUES (17424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698149950);
INSERT INTO public.notice VALUES (17425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698150548);
INSERT INTO public.notice VALUES (17426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698151150);
INSERT INTO public.notice VALUES (17427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698151749);
INSERT INTO public.notice VALUES (17397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698133750);
INSERT INTO public.notice VALUES (17398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698134350);
INSERT INTO public.notice VALUES (17399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698134949);
INSERT INTO public.notice VALUES (17400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698135548);
INSERT INTO public.notice VALUES (17401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698136150);
INSERT INTO public.notice VALUES (17402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698136749);
INSERT INTO public.notice VALUES (17403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698137349);
INSERT INTO public.notice VALUES (17404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698137950);
INSERT INTO public.notice VALUES (17405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698138550);
INSERT INTO public.notice VALUES (17406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698139149);
INSERT INTO public.notice VALUES (17407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698139750);
INSERT INTO public.notice VALUES (17414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698143949);
INSERT INTO public.notice VALUES (17415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698144550);
INSERT INTO public.notice VALUES (17416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698145149);
INSERT INTO public.notice VALUES (17417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698145749);
INSERT INTO public.notice VALUES (17418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698146348);
INSERT INTO public.notice VALUES (17419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698146950);
INSERT INTO public.notice VALUES (17420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698147549);
INSERT INTO public.notice VALUES (17421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698148149);
INSERT INTO public.notice VALUES (17422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698148750);
INSERT INTO public.notice VALUES (17449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698164950);
INSERT INTO public.notice VALUES (17453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698167350);
INSERT INTO public.notice VALUES (17454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698167952);
INSERT INTO public.notice VALUES (17455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698168550);
INSERT INTO public.notice VALUES (17456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698169149);
INSERT INTO public.notice VALUES (17457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698169749);
INSERT INTO public.notice VALUES (17458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698170351);
INSERT INTO public.notice VALUES (17462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698172750);
INSERT INTO public.notice VALUES (17463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698173350);
INSERT INTO public.notice VALUES (17464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698173950);
INSERT INTO public.notice VALUES (17428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698152350);
INSERT INTO public.notice VALUES (17429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698152950);
INSERT INTO public.notice VALUES (17430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698153550);
INSERT INTO public.notice VALUES (17431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698154150);
INSERT INTO public.notice VALUES (17432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698154749);
INSERT INTO public.notice VALUES (17433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698155351);
INSERT INTO public.notice VALUES (17434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698155950);
INSERT INTO public.notice VALUES (17435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698156549);
INSERT INTO public.notice VALUES (17436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698157150);
INSERT INTO public.notice VALUES (17437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698157751);
INSERT INTO public.notice VALUES (17438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698158350);
INSERT INTO public.notice VALUES (17439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698158949);
INSERT INTO public.notice VALUES (17440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698159550);
INSERT INTO public.notice VALUES (17441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698160150);
INSERT INTO public.notice VALUES (17442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698160749);
INSERT INTO public.notice VALUES (17443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698161349);
INSERT INTO public.notice VALUES (17444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698161950);
INSERT INTO public.notice VALUES (17445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698162550);
INSERT INTO public.notice VALUES (17446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698163149);
INSERT INTO public.notice VALUES (17447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698163751);
INSERT INTO public.notice VALUES (17448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698164350);
INSERT INTO public.notice VALUES (17450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698165550);
INSERT INTO public.notice VALUES (17451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698166151);
INSERT INTO public.notice VALUES (17452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698166751);
INSERT INTO public.notice VALUES (17459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698170951);
INSERT INTO public.notice VALUES (17460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698171550);
INSERT INTO public.notice VALUES (17461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698172150);
INSERT INTO public.notice VALUES (17465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698174552);
INSERT INTO public.notice VALUES (17466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698175152);
INSERT INTO public.notice VALUES (17467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698175750);
INSERT INTO public.notice VALUES (17468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698176349);
INSERT INTO public.notice VALUES (17469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698176950);
INSERT INTO public.notice VALUES (17470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698177550);
INSERT INTO public.notice VALUES (17471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698178149);
INSERT INTO public.notice VALUES (17472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698178753);
INSERT INTO public.notice VALUES (17488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698188350);
INSERT INTO public.notice VALUES (17489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698188949);
INSERT INTO public.notice VALUES (17490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698189551);
INSERT INTO public.notice VALUES (17491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698190150);
INSERT INTO public.notice VALUES (17492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698190749);
INSERT INTO public.notice VALUES (17493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698191350);
INSERT INTO public.notice VALUES (17494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698191951);
INSERT INTO public.notice VALUES (17495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698192551);
INSERT INTO public.notice VALUES (17496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698193149);
INSERT INTO public.notice VALUES (17497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698193750);
INSERT INTO public.notice VALUES (17473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698179353);
INSERT INTO public.notice VALUES (17474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698179949);
INSERT INTO public.notice VALUES (17475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698180549);
INSERT INTO public.notice VALUES (17476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698181152);
INSERT INTO public.notice VALUES (17477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698181751);
INSERT INTO public.notice VALUES (17478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698182349);
INSERT INTO public.notice VALUES (17479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698182949);
INSERT INTO public.notice VALUES (17480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698183553);
INSERT INTO public.notice VALUES (17481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698184149);
INSERT INTO public.notice VALUES (17482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698184749);
INSERT INTO public.notice VALUES (17483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698185351);
INSERT INTO public.notice VALUES (17484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698185950);
INSERT INTO public.notice VALUES (17485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698186549);
INSERT INTO public.notice VALUES (17486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698187150);
INSERT INTO public.notice VALUES (17487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698187750);
INSERT INTO public.notice VALUES (17498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698194350);
INSERT INTO public.notice VALUES (17499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698194952);
INSERT INTO public.notice VALUES (17500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698195549);
INSERT INTO public.notice VALUES (17521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698208149);
INSERT INTO public.notice VALUES (17522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698208750);
INSERT INTO public.notice VALUES (17523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698209350);
INSERT INTO public.notice VALUES (17524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698209949);
INSERT INTO public.notice VALUES (25585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703039115);
INSERT INTO public.notice VALUES (26350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703498436);
INSERT INTO public.notice VALUES (26941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703853035);
INSERT INTO public.notice VALUES (27353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704100236);
INSERT INTO public.notice VALUES (27664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704286836);
INSERT INTO public.notice VALUES (27665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704287436);
INSERT INTO public.notice VALUES (27667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704288635);
INSERT INTO public.notice VALUES (27868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704409235);
INSERT INTO public.notice VALUES (17501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698196150);
INSERT INTO public.notice VALUES (17502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698196752);
INSERT INTO public.notice VALUES (17503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698197349);
INSERT INTO public.notice VALUES (17504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698197950);
INSERT INTO public.notice VALUES (17505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698198551);
INSERT INTO public.notice VALUES (17506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698199149);
INSERT INTO public.notice VALUES (17507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698199749);
INSERT INTO public.notice VALUES (17508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698200350);
INSERT INTO public.notice VALUES (17509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698200950);
INSERT INTO public.notice VALUES (17510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698201550);
INSERT INTO public.notice VALUES (17511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698202148);
INSERT INTO public.notice VALUES (17512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698202750);
INSERT INTO public.notice VALUES (17513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698203350);
INSERT INTO public.notice VALUES (17514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698203949);
INSERT INTO public.notice VALUES (17515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698204550);
INSERT INTO public.notice VALUES (17516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698205150);
INSERT INTO public.notice VALUES (17517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698205749);
INSERT INTO public.notice VALUES (17518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698206349);
INSERT INTO public.notice VALUES (17519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698206954);
INSERT INTO public.notice VALUES (17520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698207549);
INSERT INTO public.notice VALUES (17525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698210552);
INSERT INTO public.notice VALUES (17526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698211150);
INSERT INTO public.notice VALUES (17527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698211750);
INSERT INTO public.notice VALUES (17528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698212349);
INSERT INTO public.notice VALUES (17529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698212948);
INSERT INTO public.notice VALUES (17530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698213550);
INSERT INTO public.notice VALUES (17531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698214150);
INSERT INTO public.notice VALUES (17532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698214750);
INSERT INTO public.notice VALUES (17533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698215350);
INSERT INTO public.notice VALUES (17534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698215951);
INSERT INTO public.notice VALUES (17535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698216549);
INSERT INTO public.notice VALUES (17536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698217149);
INSERT INTO public.notice VALUES (17537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698217750);
INSERT INTO public.notice VALUES (17538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698218349);
INSERT INTO public.notice VALUES (17539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698218950);
INSERT INTO public.notice VALUES (17540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698219548);
INSERT INTO public.notice VALUES (17541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698220150);
INSERT INTO public.notice VALUES (17542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698220750);
INSERT INTO public.notice VALUES (17543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698221349);
INSERT INTO public.notice VALUES (17544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698221950);
INSERT INTO public.notice VALUES (17545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698222550);
INSERT INTO public.notice VALUES (17546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698223149);
INSERT INTO public.notice VALUES (17548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698224350);
INSERT INTO public.notice VALUES (17549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698224949);
INSERT INTO public.notice VALUES (17550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698225549);
INSERT INTO public.notice VALUES (17547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698223748);
INSERT INTO public.notice VALUES (17573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698239351);
INSERT INTO public.notice VALUES (17574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698239949);
INSERT INTO public.notice VALUES (17575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698240550);
INSERT INTO public.notice VALUES (25589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703041508);
INSERT INTO public.notice VALUES (25591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703042707);
INSERT INTO public.notice VALUES (25592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703043308);
INSERT INTO public.notice VALUES (25594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703044507);
INSERT INTO public.notice VALUES (25596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703045708);
INSERT INTO public.notice VALUES (25597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703046308);
INSERT INTO public.notice VALUES (25598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703046907);
INSERT INTO public.notice VALUES (25599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703047508);
INSERT INTO public.notice VALUES (25600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703048108);
INSERT INTO public.notice VALUES (25602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703049310);
INSERT INTO public.notice VALUES (25603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703049908);
INSERT INTO public.notice VALUES (17551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698226150);
INSERT INTO public.notice VALUES (17552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698226750);
INSERT INTO public.notice VALUES (17553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698227349);
INSERT INTO public.notice VALUES (17554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698227949);
INSERT INTO public.notice VALUES (17555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698228550);
INSERT INTO public.notice VALUES (17556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698229150);
INSERT INTO public.notice VALUES (17557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698229749);
INSERT INTO public.notice VALUES (17558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698230348);
INSERT INTO public.notice VALUES (17559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698230950);
INSERT INTO public.notice VALUES (17560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698231549);
INSERT INTO public.notice VALUES (17561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698232149);
INSERT INTO public.notice VALUES (17562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698232751);
INSERT INTO public.notice VALUES (17563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698233350);
INSERT INTO public.notice VALUES (17564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698233949);
INSERT INTO public.notice VALUES (17565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698234549);
INSERT INTO public.notice VALUES (17566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698235150);
INSERT INTO public.notice VALUES (17567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698235749);
INSERT INTO public.notice VALUES (17568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698236350);
INSERT INTO public.notice VALUES (17569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698236950);
INSERT INTO public.notice VALUES (17570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698237550);
INSERT INTO public.notice VALUES (17571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698238149);
INSERT INTO public.notice VALUES (17572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698238748);
INSERT INTO public.notice VALUES (17576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698241151);
INSERT INTO public.notice VALUES (17577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698241750);
INSERT INTO public.notice VALUES (17578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698242350);
INSERT INTO public.notice VALUES (17579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698242949);
INSERT INTO public.notice VALUES (17580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698243551);
INSERT INTO public.notice VALUES (17581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698244151);
INSERT INTO public.notice VALUES (17582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698244750);
INSERT INTO public.notice VALUES (17583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698245351);
INSERT INTO public.notice VALUES (17584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698245951);
INSERT INTO public.notice VALUES (17585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698246549);
INSERT INTO public.notice VALUES (17586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698247149);
INSERT INTO public.notice VALUES (17587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698247750);
INSERT INTO public.notice VALUES (17588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698248350);
INSERT INTO public.notice VALUES (17589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698248950);
INSERT INTO public.notice VALUES (17590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698249549);
INSERT INTO public.notice VALUES (17591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698250150);
INSERT INTO public.notice VALUES (17592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698250750);
INSERT INTO public.notice VALUES (17593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698251350);
INSERT INTO public.notice VALUES (17594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698251950);
INSERT INTO public.notice VALUES (17595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698252551);
INSERT INTO public.notice VALUES (17596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698253150);
INSERT INTO public.notice VALUES (17597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698253749);
INSERT INTO public.notice VALUES (17598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698254351);
INSERT INTO public.notice VALUES (17599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698254950);
INSERT INTO public.notice VALUES (17600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698255550);
INSERT INTO public.notice VALUES (17601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698256148);
INSERT INTO public.notice VALUES (17602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698256751);
INSERT INTO public.notice VALUES (17603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698257350);
INSERT INTO public.notice VALUES (17604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698257949);
INSERT INTO public.notice VALUES (17605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698258549);
INSERT INTO public.notice VALUES (17606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698259150);
INSERT INTO public.notice VALUES (17607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698259750);
INSERT INTO public.notice VALUES (17616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698265150);
INSERT INTO public.notice VALUES (17641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698280149);
INSERT INTO public.notice VALUES (17642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698280750);
INSERT INTO public.notice VALUES (17643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698281349);
INSERT INTO public.notice VALUES (17644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698281949);
INSERT INTO public.notice VALUES (17645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698282551);
INSERT INTO public.notice VALUES (17608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698260350);
INSERT INTO public.notice VALUES (17609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698260951);
INSERT INTO public.notice VALUES (17610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698261551);
INSERT INTO public.notice VALUES (17611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698262150);
INSERT INTO public.notice VALUES (17612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698262749);
INSERT INTO public.notice VALUES (17613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698263350);
INSERT INTO public.notice VALUES (17614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698263950);
INSERT INTO public.notice VALUES (17615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698264549);
INSERT INTO public.notice VALUES (17617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698265750);
INSERT INTO public.notice VALUES (17618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698266349);
INSERT INTO public.notice VALUES (17619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698266949);
INSERT INTO public.notice VALUES (17620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698267550);
INSERT INTO public.notice VALUES (17621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698268149);
INSERT INTO public.notice VALUES (17622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698268749);
INSERT INTO public.notice VALUES (17623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698269349);
INSERT INTO public.notice VALUES (17624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698269950);
INSERT INTO public.notice VALUES (17625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698270550);
INSERT INTO public.notice VALUES (17626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698271149);
INSERT INTO public.notice VALUES (17627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698271751);
INSERT INTO public.notice VALUES (17628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698272351);
INSERT INTO public.notice VALUES (17629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698272949);
INSERT INTO public.notice VALUES (17630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698273549);
INSERT INTO public.notice VALUES (17631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698274151);
INSERT INTO public.notice VALUES (17632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698274750);
INSERT INTO public.notice VALUES (17633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698275349);
INSERT INTO public.notice VALUES (17634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698275952);
INSERT INTO public.notice VALUES (17635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698276550);
INSERT INTO public.notice VALUES (17636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698277150);
INSERT INTO public.notice VALUES (17637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698277749);
INSERT INTO public.notice VALUES (17638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698278350);
INSERT INTO public.notice VALUES (17639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698278949);
INSERT INTO public.notice VALUES (17640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698279550);
INSERT INTO public.notice VALUES (17652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698286750);
INSERT INTO public.notice VALUES (17653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698287350);
INSERT INTO public.notice VALUES (17654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698287949);
INSERT INTO public.notice VALUES (17655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698288549);
INSERT INTO public.notice VALUES (17656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698289150);
INSERT INTO public.notice VALUES (17657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698289751);
INSERT INTO public.notice VALUES (17658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698290349);
INSERT INTO public.notice VALUES (17659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698290948);
INSERT INTO public.notice VALUES (25590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703042108);
INSERT INTO public.notice VALUES (26351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703499035);
INSERT INTO public.notice VALUES (26354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703500836);
INSERT INTO public.notice VALUES (26355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703501435);
INSERT INTO public.notice VALUES (26356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703502036);
INSERT INTO public.notice VALUES (17646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698283149);
INSERT INTO public.notice VALUES (17647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698283749);
INSERT INTO public.notice VALUES (17648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698284351);
INSERT INTO public.notice VALUES (17649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698284950);
INSERT INTO public.notice VALUES (17650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698285549);
INSERT INTO public.notice VALUES (17651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698286149);
INSERT INTO public.notice VALUES (17660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698291550);
INSERT INTO public.notice VALUES (17661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698292149);
INSERT INTO public.notice VALUES (17662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698292750);
INSERT INTO public.notice VALUES (17663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698293350);
INSERT INTO public.notice VALUES (17664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698293950);
INSERT INTO public.notice VALUES (17665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698294549);
INSERT INTO public.notice VALUES (17666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698295148);
INSERT INTO public.notice VALUES (17667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698295750);
INSERT INTO public.notice VALUES (17668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698296350);
INSERT INTO public.notice VALUES (17669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698296949);
INSERT INTO public.notice VALUES (17670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698297550);
INSERT INTO public.notice VALUES (17672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698298750);
INSERT INTO public.notice VALUES (17673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698299349);
INSERT INTO public.notice VALUES (17674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698299950);
INSERT INTO public.notice VALUES (17678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698302350);
INSERT INTO public.notice VALUES (17679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698302949);
INSERT INTO public.notice VALUES (17690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698309549);
INSERT INTO public.notice VALUES (17691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698310148);
INSERT INTO public.notice VALUES (17692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698310750);
INSERT INTO public.notice VALUES (17693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698311349);
INSERT INTO public.notice VALUES (17694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698311949);
INSERT INTO public.notice VALUES (17695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698312550);
INSERT INTO public.notice VALUES (17696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698313150);
INSERT INTO public.notice VALUES (17717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698325751);
INSERT INTO public.notice VALUES (17671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698298150);
INSERT INTO public.notice VALUES (17675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698300549);
INSERT INTO public.notice VALUES (17676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698301149);
INSERT INTO public.notice VALUES (17677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698301748);
INSERT INTO public.notice VALUES (17680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698303549);
INSERT INTO public.notice VALUES (17681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698304153);
INSERT INTO public.notice VALUES (17682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698304750);
INSERT INTO public.notice VALUES (17683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698305349);
INSERT INTO public.notice VALUES (17684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698305950);
INSERT INTO public.notice VALUES (17685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698306550);
INSERT INTO public.notice VALUES (17686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698307149);
INSERT INTO public.notice VALUES (17687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698307749);
INSERT INTO public.notice VALUES (17688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698308350);
INSERT INTO public.notice VALUES (17689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698308950);
INSERT INTO public.notice VALUES (17697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698313749);
INSERT INTO public.notice VALUES (17698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698314348);
INSERT INTO public.notice VALUES (17699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698314950);
INSERT INTO public.notice VALUES (17700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698315551);
INSERT INTO public.notice VALUES (17701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698316149);
INSERT INTO public.notice VALUES (17702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698316748);
INSERT INTO public.notice VALUES (17703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698317350);
INSERT INTO public.notice VALUES (17704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698317949);
INSERT INTO public.notice VALUES (17705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698318549);
INSERT INTO public.notice VALUES (17706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698319150);
INSERT INTO public.notice VALUES (17707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698319750);
INSERT INTO public.notice VALUES (17708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698320350);
INSERT INTO public.notice VALUES (17709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698320949);
INSERT INTO public.notice VALUES (17710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698321550);
INSERT INTO public.notice VALUES (17711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698322150);
INSERT INTO public.notice VALUES (17712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698322749);
INSERT INTO public.notice VALUES (17713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698323352);
INSERT INTO public.notice VALUES (17714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698323951);
INSERT INTO public.notice VALUES (17715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698324549);
INSERT INTO public.notice VALUES (17716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698325148);
INSERT INTO public.notice VALUES (17761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698352151);
INSERT INTO public.notice VALUES (17762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698352750);
INSERT INTO public.notice VALUES (17763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698353350);
INSERT INTO public.notice VALUES (17764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698353948);
INSERT INTO public.notice VALUES (17765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698354550);
INSERT INTO public.notice VALUES (17776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698361151);
INSERT INTO public.notice VALUES (17805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698378549);
INSERT INTO public.notice VALUES (17806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698379150);
INSERT INTO public.notice VALUES (17807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698379749);
INSERT INTO public.notice VALUES (17808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698380351);
INSERT INTO public.notice VALUES (17809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698380949);
INSERT INTO public.notice VALUES (17718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698326349);
INSERT INTO public.notice VALUES (17719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698326949);
INSERT INTO public.notice VALUES (17720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698327551);
INSERT INTO public.notice VALUES (17721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698328149);
INSERT INTO public.notice VALUES (17722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698328750);
INSERT INTO public.notice VALUES (17723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698329350);
INSERT INTO public.notice VALUES (17724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698329950);
INSERT INTO public.notice VALUES (17725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698330550);
INSERT INTO public.notice VALUES (17726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698331149);
INSERT INTO public.notice VALUES (17727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698331750);
INSERT INTO public.notice VALUES (17728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698332349);
INSERT INTO public.notice VALUES (17729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698332950);
INSERT INTO public.notice VALUES (17730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698333550);
INSERT INTO public.notice VALUES (17731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698334150);
INSERT INTO public.notice VALUES (17732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698334750);
INSERT INTO public.notice VALUES (17733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698335350);
INSERT INTO public.notice VALUES (17734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698335949);
INSERT INTO public.notice VALUES (17735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698336549);
INSERT INTO public.notice VALUES (17736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698337150);
INSERT INTO public.notice VALUES (17737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698337750);
INSERT INTO public.notice VALUES (17738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698338349);
INSERT INTO public.notice VALUES (17739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698338948);
INSERT INTO public.notice VALUES (17740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698339551);
INSERT INTO public.notice VALUES (17741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698340151);
INSERT INTO public.notice VALUES (17742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698340749);
INSERT INTO public.notice VALUES (17743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698341350);
INSERT INTO public.notice VALUES (17744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698341950);
INSERT INTO public.notice VALUES (17745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698342549);
INSERT INTO public.notice VALUES (17746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698343149);
INSERT INTO public.notice VALUES (17747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698343750);
INSERT INTO public.notice VALUES (17748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698344349);
INSERT INTO public.notice VALUES (17749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698344949);
INSERT INTO public.notice VALUES (17750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698345554);
INSERT INTO public.notice VALUES (17751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698346150);
INSERT INTO public.notice VALUES (17752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698346749);
INSERT INTO public.notice VALUES (17753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698347349);
INSERT INTO public.notice VALUES (17754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698347950);
INSERT INTO public.notice VALUES (17755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698348550);
INSERT INTO public.notice VALUES (17756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698349149);
INSERT INTO public.notice VALUES (17757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698349748);
INSERT INTO public.notice VALUES (17758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698350350);
INSERT INTO public.notice VALUES (17759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698350949);
INSERT INTO public.notice VALUES (17760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698351549);
INSERT INTO public.notice VALUES (17766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698355150);
INSERT INTO public.notice VALUES (17767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698355749);
INSERT INTO public.notice VALUES (17768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698356351);
INSERT INTO public.notice VALUES (17769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698356950);
INSERT INTO public.notice VALUES (17770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698357550);
INSERT INTO public.notice VALUES (17771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698358148);
INSERT INTO public.notice VALUES (17772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698358750);
INSERT INTO public.notice VALUES (17773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698359349);
INSERT INTO public.notice VALUES (17774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698359949);
INSERT INTO public.notice VALUES (17775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698360550);
INSERT INTO public.notice VALUES (17777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698361750);
INSERT INTO public.notice VALUES (17778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698362349);
INSERT INTO public.notice VALUES (17779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698362951);
INSERT INTO public.notice VALUES (17780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698363549);
INSERT INTO public.notice VALUES (17781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698364150);
INSERT INTO public.notice VALUES (17782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698364749);
INSERT INTO public.notice VALUES (17783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698365350);
INSERT INTO public.notice VALUES (17784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698365951);
INSERT INTO public.notice VALUES (17785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698366550);
INSERT INTO public.notice VALUES (17786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698367151);
INSERT INTO public.notice VALUES (17787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698367750);
INSERT INTO public.notice VALUES (17788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698368350);
INSERT INTO public.notice VALUES (17789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698368948);
INSERT INTO public.notice VALUES (17790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698369551);
INSERT INTO public.notice VALUES (17791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698370151);
INSERT INTO public.notice VALUES (17792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698370749);
INSERT INTO public.notice VALUES (17793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698371350);
INSERT INTO public.notice VALUES (17794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698371950);
INSERT INTO public.notice VALUES (17795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698372549);
INSERT INTO public.notice VALUES (17796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698373148);
INSERT INTO public.notice VALUES (17797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698373750);
INSERT INTO public.notice VALUES (17798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698374349);
INSERT INTO public.notice VALUES (17799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698374949);
INSERT INTO public.notice VALUES (17800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698375548);
INSERT INTO public.notice VALUES (17801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698376150);
INSERT INTO public.notice VALUES (17802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698376749);
INSERT INTO public.notice VALUES (17803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698377350);
INSERT INTO public.notice VALUES (17804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698377950);
INSERT INTO public.notice VALUES (17823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698389350);
INSERT INTO public.notice VALUES (17824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698389949);
INSERT INTO public.notice VALUES (17825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698390548);
INSERT INTO public.notice VALUES (17826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698391150);
INSERT INTO public.notice VALUES (17827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698391749);
INSERT INTO public.notice VALUES (17828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698392349);
INSERT INTO public.notice VALUES (17829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698392948);
INSERT INTO public.notice VALUES (17830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698393550);
INSERT INTO public.notice VALUES (25593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703043908);
INSERT INTO public.notice VALUES (17810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698381549);
INSERT INTO public.notice VALUES (17811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698382148);
INSERT INTO public.notice VALUES (17812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698382750);
INSERT INTO public.notice VALUES (17813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698383349);
INSERT INTO public.notice VALUES (17814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698383949);
INSERT INTO public.notice VALUES (17815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698384550);
INSERT INTO public.notice VALUES (17816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698385149);
INSERT INTO public.notice VALUES (17817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698385749);
INSERT INTO public.notice VALUES (17818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698386348);
INSERT INTO public.notice VALUES (17819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698386950);
INSERT INTO public.notice VALUES (17820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698387549);
INSERT INTO public.notice VALUES (17821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698388149);
INSERT INTO public.notice VALUES (17822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698388750);
INSERT INTO public.notice VALUES (17831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698394149);
INSERT INTO public.notice VALUES (17832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698394749);
INSERT INTO public.notice VALUES (17833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698395349);
INSERT INTO public.notice VALUES (17834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698395950);
INSERT INTO public.notice VALUES (17835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698396549);
INSERT INTO public.notice VALUES (17836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698397149);
INSERT INTO public.notice VALUES (17837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698397750);
INSERT INTO public.notice VALUES (17838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698398349);
INSERT INTO public.notice VALUES (17839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698398949);
INSERT INTO public.notice VALUES (17840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698399549);
INSERT INTO public.notice VALUES (17841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698400150);
INSERT INTO public.notice VALUES (17842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698400749);
INSERT INTO public.notice VALUES (17843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698401349);
INSERT INTO public.notice VALUES (17844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698401950);
INSERT INTO public.notice VALUES (17845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698402550);
INSERT INTO public.notice VALUES (17846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698403149);
INSERT INTO public.notice VALUES (17847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698403749);
INSERT INTO public.notice VALUES (17848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698404350);
INSERT INTO public.notice VALUES (17849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698404949);
INSERT INTO public.notice VALUES (17850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698405549);
INSERT INTO public.notice VALUES (17851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698406150);
INSERT INTO public.notice VALUES (17852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698406750);
INSERT INTO public.notice VALUES (17853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698407349);
INSERT INTO public.notice VALUES (17854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698407949);
INSERT INTO public.notice VALUES (17855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698408550);
INSERT INTO public.notice VALUES (17856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698409149);
INSERT INTO public.notice VALUES (17857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698409750);
INSERT INTO public.notice VALUES (17858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698410348);
INSERT INTO public.notice VALUES (17859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698410951);
INSERT INTO public.notice VALUES (17860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698411550);
INSERT INTO public.notice VALUES (17861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698412150);
INSERT INTO public.notice VALUES (17862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698412748);
INSERT INTO public.notice VALUES (17863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698413350);
INSERT INTO public.notice VALUES (17864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698413950);
INSERT INTO public.notice VALUES (17865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698414549);
INSERT INTO public.notice VALUES (17866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698415149);
INSERT INTO public.notice VALUES (17867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698415751);
INSERT INTO public.notice VALUES (17868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698416350);
INSERT INTO public.notice VALUES (17869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698416949);
INSERT INTO public.notice VALUES (17870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698417551);
INSERT INTO public.notice VALUES (17871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698418150);
INSERT INTO public.notice VALUES (17872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698418750);
INSERT INTO public.notice VALUES (17873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698419349);
INSERT INTO public.notice VALUES (17874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698419950);
INSERT INTO public.notice VALUES (17875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698420549);
INSERT INTO public.notice VALUES (17876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698421150);
INSERT INTO public.notice VALUES (17877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698421751);
INSERT INTO public.notice VALUES (17878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698422351);
INSERT INTO public.notice VALUES (17879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698422949);
INSERT INTO public.notice VALUES (17880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698423549);
INSERT INTO public.notice VALUES (17881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698424151);
INSERT INTO public.notice VALUES (17882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698424751);
INSERT INTO public.notice VALUES (25595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703045107);
INSERT INTO public.notice VALUES (26352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703499635);
INSERT INTO public.notice VALUES (26353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703500236);
INSERT INTO public.notice VALUES (26942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703853635);
INSERT INTO public.notice VALUES (26943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703854235);
INSERT INTO public.notice VALUES (26945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703855436);
INSERT INTO public.notice VALUES (26946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703856035);
INSERT INTO public.notice VALUES (27354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704100836);
INSERT INTO public.notice VALUES (27356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704102035);
INSERT INTO public.notice VALUES (27359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704103836);
INSERT INTO public.notice VALUES (17883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698425350);
INSERT INTO public.notice VALUES (17884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698425950);
INSERT INTO public.notice VALUES (17885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698426550);
INSERT INTO public.notice VALUES (17886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698427158);
INSERT INTO public.notice VALUES (17887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698427749);
INSERT INTO public.notice VALUES (17888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698428351);
INSERT INTO public.notice VALUES (17889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698428951);
INSERT INTO public.notice VALUES (17890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698429550);
INSERT INTO public.notice VALUES (17891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698430150);
INSERT INTO public.notice VALUES (17892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698430751);
INSERT INTO public.notice VALUES (17893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698431349);
INSERT INTO public.notice VALUES (17894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698431950);
INSERT INTO public.notice VALUES (17895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698432552);
INSERT INTO public.notice VALUES (17896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698433150);
INSERT INTO public.notice VALUES (17897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698433750);
INSERT INTO public.notice VALUES (17898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698434348);
INSERT INTO public.notice VALUES (17899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698434951);
INSERT INTO public.notice VALUES (17900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698435550);
INSERT INTO public.notice VALUES (17901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698436150);
INSERT INTO public.notice VALUES (17902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698436751);
INSERT INTO public.notice VALUES (17913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698443352);
INSERT INTO public.notice VALUES (17914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698443951);
INSERT INTO public.notice VALUES (17915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698444550);
INSERT INTO public.notice VALUES (17916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698445149);
INSERT INTO public.notice VALUES (17917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698445751);
INSERT INTO public.notice VALUES (17918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698446351);
INSERT INTO public.notice VALUES (17919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698446949);
INSERT INTO public.notice VALUES (17920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698447549);
INSERT INTO public.notice VALUES (17921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698448150);
INSERT INTO public.notice VALUES (17922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698448751);
INSERT INTO public.notice VALUES (17903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698437351);
INSERT INTO public.notice VALUES (17904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698437950);
INSERT INTO public.notice VALUES (17905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698438549);
INSERT INTO public.notice VALUES (17906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698439151);
INSERT INTO public.notice VALUES (17907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698439751);
INSERT INTO public.notice VALUES (17908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698440349);
INSERT INTO public.notice VALUES (17909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698440950);
INSERT INTO public.notice VALUES (17910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698441550);
INSERT INTO public.notice VALUES (17911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698442151);
INSERT INTO public.notice VALUES (17912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698442749);
INSERT INTO public.notice VALUES (17937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698457750);
INSERT INTO public.notice VALUES (17938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698458352);
INSERT INTO public.notice VALUES (17939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698458950);
INSERT INTO public.notice VALUES (17940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698459550);
INSERT INTO public.notice VALUES (17941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698460149);
INSERT INTO public.notice VALUES (17923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698449349);
INSERT INTO public.notice VALUES (17924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698449950);
INSERT INTO public.notice VALUES (17925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698450550);
INSERT INTO public.notice VALUES (17926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698451149);
INSERT INTO public.notice VALUES (17927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698451750);
INSERT INTO public.notice VALUES (17928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698452351);
INSERT INTO public.notice VALUES (17929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698452949);
INSERT INTO public.notice VALUES (17930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698453549);
INSERT INTO public.notice VALUES (17931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698454151);
INSERT INTO public.notice VALUES (17932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698454750);
INSERT INTO public.notice VALUES (17933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698455350);
INSERT INTO public.notice VALUES (17934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698455949);
INSERT INTO public.notice VALUES (17935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698456550);
INSERT INTO public.notice VALUES (17936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698457151);
INSERT INTO public.notice VALUES (17945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698462550);
INSERT INTO public.notice VALUES (17942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698460751);
INSERT INTO public.notice VALUES (17943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698461350);
INSERT INTO public.notice VALUES (17944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698461949);
INSERT INTO public.notice VALUES (17968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698476350);
INSERT INTO public.notice VALUES (17969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698476949);
INSERT INTO public.notice VALUES (17980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698483549);
INSERT INTO public.notice VALUES (17981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698484149);
INSERT INTO public.notice VALUES (17982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698484750);
INSERT INTO public.notice VALUES (17983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698485350);
INSERT INTO public.notice VALUES (25601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703048714);
INSERT INTO public.notice VALUES (25608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703052907);
INSERT INTO public.notice VALUES (25610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703054108);
INSERT INTO public.notice VALUES (25613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703055908);
INSERT INTO public.notice VALUES (25615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703057107);
INSERT INTO public.notice VALUES (25616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703057707);
INSERT INTO public.notice VALUES (17946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698463151);
INSERT INTO public.notice VALUES (17947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698463750);
INSERT INTO public.notice VALUES (17948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698464350);
INSERT INTO public.notice VALUES (17949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698464950);
INSERT INTO public.notice VALUES (17950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698465550);
INSERT INTO public.notice VALUES (17951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698466149);
INSERT INTO public.notice VALUES (17952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698466748);
INSERT INTO public.notice VALUES (17953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698467351);
INSERT INTO public.notice VALUES (17954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698467950);
INSERT INTO public.notice VALUES (17955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698468550);
INSERT INTO public.notice VALUES (17956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698469150);
INSERT INTO public.notice VALUES (17957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698469751);
INSERT INTO public.notice VALUES (17958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698470351);
INSERT INTO public.notice VALUES (17959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698470949);
INSERT INTO public.notice VALUES (17960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698471551);
INSERT INTO public.notice VALUES (17961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698472151);
INSERT INTO public.notice VALUES (17962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698472750);
INSERT INTO public.notice VALUES (17963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698473350);
INSERT INTO public.notice VALUES (17964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698473951);
INSERT INTO public.notice VALUES (17965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698474550);
INSERT INTO public.notice VALUES (17966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698475150);
INSERT INTO public.notice VALUES (17967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698475751);
INSERT INTO public.notice VALUES (17970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698477549);
INSERT INTO public.notice VALUES (17971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698478150);
INSERT INTO public.notice VALUES (17972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698478749);
INSERT INTO public.notice VALUES (17973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698479350);
INSERT INTO public.notice VALUES (17974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698479949);
INSERT INTO public.notice VALUES (17975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698480551);
INSERT INTO public.notice VALUES (17976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698481149);
INSERT INTO public.notice VALUES (17977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698481750);
INSERT INTO public.notice VALUES (17978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698482351);
INSERT INTO public.notice VALUES (17979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698482949);
INSERT INTO public.notice VALUES (17984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698485950);
INSERT INTO public.notice VALUES (17985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698486550);
INSERT INTO public.notice VALUES (17986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698487151);
INSERT INTO public.notice VALUES (17987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698487750);
INSERT INTO public.notice VALUES (17988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698488349);
INSERT INTO public.notice VALUES (17989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698488951);
INSERT INTO public.notice VALUES (17990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698489549);
INSERT INTO public.notice VALUES (17991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698490149);
INSERT INTO public.notice VALUES (17992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698490752);
INSERT INTO public.notice VALUES (17993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698491350);
INSERT INTO public.notice VALUES (17994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698491950);
INSERT INTO public.notice VALUES (17995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698492549);
INSERT INTO public.notice VALUES (17996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698493152);
INSERT INTO public.notice VALUES (17997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698493751);
INSERT INTO public.notice VALUES (17998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698494350);
INSERT INTO public.notice VALUES (17999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698494950);
INSERT INTO public.notice VALUES (18000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698495550);
INSERT INTO public.notice VALUES (18001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698496149);
INSERT INTO public.notice VALUES (18002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698496749);
INSERT INTO public.notice VALUES (18003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698497351);
INSERT INTO public.notice VALUES (18004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698497951);
INSERT INTO public.notice VALUES (18005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698498550);
INSERT INTO public.notice VALUES (18006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698499150);
INSERT INTO public.notice VALUES (18007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698499751);
INSERT INTO public.notice VALUES (18008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698500350);
INSERT INTO public.notice VALUES (18009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698500950);
INSERT INTO public.notice VALUES (18010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698501548);
INSERT INTO public.notice VALUES (18011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698502151);
INSERT INTO public.notice VALUES (18012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698502750);
INSERT INTO public.notice VALUES (18013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698503349);
INSERT INTO public.notice VALUES (18014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698503951);
INSERT INTO public.notice VALUES (18015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698504550);
INSERT INTO public.notice VALUES (18016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698505149);
INSERT INTO public.notice VALUES (18017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698505748);
INSERT INTO public.notice VALUES (18018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698506351);
INSERT INTO public.notice VALUES (18019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698506949);
INSERT INTO public.notice VALUES (18111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698562151);
INSERT INTO public.notice VALUES (18112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698562750);
INSERT INTO public.notice VALUES (18113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698563349);
INSERT INTO public.notice VALUES (18114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698563948);
INSERT INTO public.notice VALUES (18115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698564550);
INSERT INTO public.notice VALUES (18116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698565149);
INSERT INTO public.notice VALUES (18117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698565750);
INSERT INTO public.notice VALUES (18020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698507549);
INSERT INTO public.notice VALUES (18021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698508151);
INSERT INTO public.notice VALUES (18022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698508750);
INSERT INTO public.notice VALUES (18023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698509349);
INSERT INTO public.notice VALUES (18024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698509949);
INSERT INTO public.notice VALUES (18025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698510551);
INSERT INTO public.notice VALUES (18026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698511150);
INSERT INTO public.notice VALUES (18027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698511750);
INSERT INTO public.notice VALUES (18028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698512349);
INSERT INTO public.notice VALUES (18029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698512950);
INSERT INTO public.notice VALUES (18030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698513549);
INSERT INTO public.notice VALUES (18031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698514149);
INSERT INTO public.notice VALUES (18032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698514751);
INSERT INTO public.notice VALUES (18033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698515350);
INSERT INTO public.notice VALUES (18034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698515950);
INSERT INTO public.notice VALUES (18035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698516549);
INSERT INTO public.notice VALUES (18036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698517151);
INSERT INTO public.notice VALUES (18037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698517749);
INSERT INTO public.notice VALUES (18038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698518349);
INSERT INTO public.notice VALUES (18039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698518951);
INSERT INTO public.notice VALUES (18040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698519550);
INSERT INTO public.notice VALUES (18041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698520149);
INSERT INTO public.notice VALUES (18042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698520749);
INSERT INTO public.notice VALUES (18043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698521350);
INSERT INTO public.notice VALUES (18044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698521951);
INSERT INTO public.notice VALUES (18045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698522550);
INSERT INTO public.notice VALUES (18046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698523148);
INSERT INTO public.notice VALUES (18047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698523750);
INSERT INTO public.notice VALUES (18048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698524350);
INSERT INTO public.notice VALUES (18049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698524949);
INSERT INTO public.notice VALUES (18050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698525550);
INSERT INTO public.notice VALUES (18051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698526151);
INSERT INTO public.notice VALUES (18052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698526750);
INSERT INTO public.notice VALUES (18053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698527351);
INSERT INTO public.notice VALUES (18054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698527950);
INSERT INTO public.notice VALUES (18055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698528550);
INSERT INTO public.notice VALUES (18056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698529149);
INSERT INTO public.notice VALUES (18057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698529752);
INSERT INTO public.notice VALUES (18058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698530350);
INSERT INTO public.notice VALUES (18059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698530951);
INSERT INTO public.notice VALUES (18060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698531550);
INSERT INTO public.notice VALUES (18061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698532152);
INSERT INTO public.notice VALUES (18062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698532750);
INSERT INTO public.notice VALUES (18063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698533350);
INSERT INTO public.notice VALUES (18064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698533950);
INSERT INTO public.notice VALUES (18065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698534550);
INSERT INTO public.notice VALUES (18066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698535149);
INSERT INTO public.notice VALUES (18067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698535750);
INSERT INTO public.notice VALUES (18068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698536350);
INSERT INTO public.notice VALUES (18069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698536950);
INSERT INTO public.notice VALUES (18070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698537550);
INSERT INTO public.notice VALUES (18071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698538149);
INSERT INTO public.notice VALUES (18072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698538751);
INSERT INTO public.notice VALUES (18073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698539350);
INSERT INTO public.notice VALUES (18074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698539949);
INSERT INTO public.notice VALUES (18075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698540551);
INSERT INTO public.notice VALUES (18076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698541150);
INSERT INTO public.notice VALUES (18077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698541750);
INSERT INTO public.notice VALUES (18078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698542348);
INSERT INTO public.notice VALUES (18079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698542950);
INSERT INTO public.notice VALUES (18080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698543550);
INSERT INTO public.notice VALUES (18081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698544149);
INSERT INTO public.notice VALUES (18082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698544748);
INSERT INTO public.notice VALUES (18083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698545350);
INSERT INTO public.notice VALUES (18084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698545950);
INSERT INTO public.notice VALUES (18085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698546549);
INSERT INTO public.notice VALUES (18086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698547151);
INSERT INTO public.notice VALUES (18087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698547751);
INSERT INTO public.notice VALUES (18088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698548350);
INSERT INTO public.notice VALUES (18089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698548948);
INSERT INTO public.notice VALUES (18090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698549550);
INSERT INTO public.notice VALUES (18091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698550150);
INSERT INTO public.notice VALUES (18092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698550749);
INSERT INTO public.notice VALUES (18093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698551351);
INSERT INTO public.notice VALUES (18094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698551951);
INSERT INTO public.notice VALUES (18095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698552550);
INSERT INTO public.notice VALUES (18096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698553148);
INSERT INTO public.notice VALUES (18097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698553752);
INSERT INTO public.notice VALUES (18098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698554350);
INSERT INTO public.notice VALUES (18099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698554949);
INSERT INTO public.notice VALUES (18100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698555551);
INSERT INTO public.notice VALUES (18101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698556150);
INSERT INTO public.notice VALUES (18102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698556750);
INSERT INTO public.notice VALUES (18103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698557350);
INSERT INTO public.notice VALUES (18104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698557951);
INSERT INTO public.notice VALUES (18105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698558550);
INSERT INTO public.notice VALUES (18106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698559149);
INSERT INTO public.notice VALUES (18107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698559749);
INSERT INTO public.notice VALUES (18108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698560350);
INSERT INTO public.notice VALUES (18109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698560950);
INSERT INTO public.notice VALUES (18110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698561550);
INSERT INTO public.notice VALUES (18130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698573549);
INSERT INTO public.notice VALUES (18134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698575950);
INSERT INTO public.notice VALUES (18135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698576549);
INSERT INTO public.notice VALUES (18136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698577151);
INSERT INTO public.notice VALUES (18137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698577749);
INSERT INTO public.notice VALUES (18138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698578350);
INSERT INTO public.notice VALUES (18139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698578950);
INSERT INTO public.notice VALUES (18140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698579550);
INSERT INTO public.notice VALUES (18204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698617950);
INSERT INTO public.notice VALUES (18205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698618551);
INSERT INTO public.notice VALUES (18206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698619149);
INSERT INTO public.notice VALUES (18207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698619749);
INSERT INTO public.notice VALUES (18208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698620351);
INSERT INTO public.notice VALUES (18209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698620950);
INSERT INTO public.notice VALUES (18118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698566352);
INSERT INTO public.notice VALUES (18119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698566951);
INSERT INTO public.notice VALUES (18120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698567550);
INSERT INTO public.notice VALUES (18121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698568148);
INSERT INTO public.notice VALUES (18122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698568751);
INSERT INTO public.notice VALUES (18123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698569349);
INSERT INTO public.notice VALUES (18124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698569950);
INSERT INTO public.notice VALUES (18125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698570551);
INSERT INTO public.notice VALUES (18126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698571150);
INSERT INTO public.notice VALUES (18127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698571750);
INSERT INTO public.notice VALUES (18128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698572349);
INSERT INTO public.notice VALUES (18129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698572951);
INSERT INTO public.notice VALUES (18131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698574149);
INSERT INTO public.notice VALUES (18132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698574749);
INSERT INTO public.notice VALUES (18133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698575350);
INSERT INTO public.notice VALUES (18141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698580150);
INSERT INTO public.notice VALUES (18142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698580749);
INSERT INTO public.notice VALUES (18143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698581351);
INSERT INTO public.notice VALUES (18144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698581950);
INSERT INTO public.notice VALUES (18145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698582550);
INSERT INTO public.notice VALUES (18146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698583149);
INSERT INTO public.notice VALUES (18147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698583750);
INSERT INTO public.notice VALUES (18148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698584349);
INSERT INTO public.notice VALUES (18149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698584950);
INSERT INTO public.notice VALUES (18150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698585549);
INSERT INTO public.notice VALUES (18151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698586150);
INSERT INTO public.notice VALUES (18152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698586751);
INSERT INTO public.notice VALUES (18153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698587349);
INSERT INTO public.notice VALUES (18154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698587950);
INSERT INTO public.notice VALUES (18155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698588550);
INSERT INTO public.notice VALUES (18156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698589149);
INSERT INTO public.notice VALUES (18157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698589749);
INSERT INTO public.notice VALUES (18158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698590351);
INSERT INTO public.notice VALUES (18159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698590949);
INSERT INTO public.notice VALUES (18160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698591549);
INSERT INTO public.notice VALUES (18161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698592151);
INSERT INTO public.notice VALUES (18162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698592750);
INSERT INTO public.notice VALUES (18163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698593349);
INSERT INTO public.notice VALUES (18164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698593949);
INSERT INTO public.notice VALUES (18165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698594550);
INSERT INTO public.notice VALUES (18166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698595150);
INSERT INTO public.notice VALUES (18167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698595749);
INSERT INTO public.notice VALUES (18168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698596349);
INSERT INTO public.notice VALUES (18169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698596950);
INSERT INTO public.notice VALUES (18170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698597550);
INSERT INTO public.notice VALUES (18171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698598150);
INSERT INTO public.notice VALUES (18172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698598750);
INSERT INTO public.notice VALUES (18173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698599351);
INSERT INTO public.notice VALUES (18174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698599950);
INSERT INTO public.notice VALUES (18175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698600549);
INSERT INTO public.notice VALUES (18176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698601151);
INSERT INTO public.notice VALUES (18177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698601751);
INSERT INTO public.notice VALUES (18178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698602350);
INSERT INTO public.notice VALUES (18179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698602948);
INSERT INTO public.notice VALUES (18180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698603551);
INSERT INTO public.notice VALUES (18181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698604150);
INSERT INTO public.notice VALUES (18182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698604749);
INSERT INTO public.notice VALUES (18183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698605352);
INSERT INTO public.notice VALUES (18184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698605950);
INSERT INTO public.notice VALUES (18185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698606550);
INSERT INTO public.notice VALUES (18186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698607149);
INSERT INTO public.notice VALUES (18187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698607750);
INSERT INTO public.notice VALUES (18188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698608350);
INSERT INTO public.notice VALUES (18189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698608950);
INSERT INTO public.notice VALUES (18190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698609551);
INSERT INTO public.notice VALUES (18191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698610150);
INSERT INTO public.notice VALUES (18192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698610750);
INSERT INTO public.notice VALUES (18193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698611349);
INSERT INTO public.notice VALUES (18194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698611951);
INSERT INTO public.notice VALUES (18195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698612550);
INSERT INTO public.notice VALUES (18196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698613150);
INSERT INTO public.notice VALUES (18197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698613749);
INSERT INTO public.notice VALUES (18198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698614351);
INSERT INTO public.notice VALUES (18199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698614950);
INSERT INTO public.notice VALUES (18200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698615549);
INSERT INTO public.notice VALUES (18201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698616152);
INSERT INTO public.notice VALUES (18202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698616751);
INSERT INTO public.notice VALUES (18203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698617350);
INSERT INTO public.notice VALUES (18266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698662532);
INSERT INTO public.notice VALUES (18268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698663733);
INSERT INTO public.notice VALUES (18269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698664333);
INSERT INTO public.notice VALUES (18270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698664934);
INSERT INTO public.notice VALUES (18271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698665534);
INSERT INTO public.notice VALUES (18272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698666133);
INSERT INTO public.notice VALUES (18273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698666732);
INSERT INTO public.notice VALUES (18274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698667334);
INSERT INTO public.notice VALUES (18275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698667933);
INSERT INTO public.notice VALUES (18276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698668533);
INSERT INTO public.notice VALUES (18277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698669135);
INSERT INTO public.notice VALUES (18281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698671535);
INSERT INTO public.notice VALUES (18210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698621549);
INSERT INTO public.notice VALUES (18211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698622150);
INSERT INTO public.notice VALUES (18212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698622750);
INSERT INTO public.notice VALUES (18213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698623351);
INSERT INTO public.notice VALUES (18214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698623950);
INSERT INTO public.notice VALUES (18215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698624549);
INSERT INTO public.notice VALUES (18216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698625151);
INSERT INTO public.notice VALUES (18217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698625750);
INSERT INTO public.notice VALUES (18218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698626349);
INSERT INTO public.notice VALUES (18219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698626951);
INSERT INTO public.notice VALUES (18220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698627550);
INSERT INTO public.notice VALUES (18221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698628150);
INSERT INTO public.notice VALUES (18222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698628748);
INSERT INTO public.notice VALUES (18223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698629350);
INSERT INTO public.notice VALUES (18224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698629950);
INSERT INTO public.notice VALUES (18225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698630550);
INSERT INTO public.notice VALUES (18226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698631150);
INSERT INTO public.notice VALUES (18227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698631750);
INSERT INTO public.notice VALUES (18228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698632349);
INSERT INTO public.notice VALUES (18229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698632952);
INSERT INTO public.notice VALUES (18230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698633550);
INSERT INTO public.notice VALUES (18231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698634149);
INSERT INTO public.notice VALUES (18232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698634749);
INSERT INTO public.notice VALUES (18233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698642733);
INSERT INTO public.notice VALUES (18234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698643332);
INSERT INTO public.notice VALUES (18235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698643935);
INSERT INTO public.notice VALUES (18236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698644534);
INSERT INTO public.notice VALUES (18237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698645133);
INSERT INTO public.notice VALUES (18238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698645735);
INSERT INTO public.notice VALUES (18239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698646334);
INSERT INTO public.notice VALUES (18240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698646940);
INSERT INTO public.notice VALUES (18241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698647532);
INSERT INTO public.notice VALUES (18242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698648134);
INSERT INTO public.notice VALUES (18243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698648733);
INSERT INTO public.notice VALUES (18244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698649333);
INSERT INTO public.notice VALUES (18245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698649934);
INSERT INTO public.notice VALUES (18246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698650534);
INSERT INTO public.notice VALUES (18247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698651133);
INSERT INTO public.notice VALUES (18248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698651732);
INSERT INTO public.notice VALUES (18249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698652334);
INSERT INTO public.notice VALUES (18250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698652933);
INSERT INTO public.notice VALUES (18251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698653533);
INSERT INTO public.notice VALUES (18252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698654134);
INSERT INTO public.notice VALUES (18253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698654733);
INSERT INTO public.notice VALUES (18254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698655333);
INSERT INTO public.notice VALUES (18255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698655934);
INSERT INTO public.notice VALUES (18256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698656534);
INSERT INTO public.notice VALUES (18257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698657134);
INSERT INTO public.notice VALUES (18258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698657733);
INSERT INTO public.notice VALUES (18259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698658335);
INSERT INTO public.notice VALUES (18260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698658934);
INSERT INTO public.notice VALUES (18261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698659534);
INSERT INTO public.notice VALUES (18262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698660133);
INSERT INTO public.notice VALUES (18263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698660734);
INSERT INTO public.notice VALUES (18264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698661334);
INSERT INTO public.notice VALUES (18265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698661934);
INSERT INTO public.notice VALUES (18267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698663134);
INSERT INTO public.notice VALUES (18278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698669734);
INSERT INTO public.notice VALUES (18279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698670333);
INSERT INTO public.notice VALUES (18280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698670932);
INSERT INTO public.notice VALUES (18282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698672134);
INSERT INTO public.notice VALUES (18283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698672734);
INSERT INTO public.notice VALUES (18284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698673333);
INSERT INTO public.notice VALUES (18285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698673934);
INSERT INTO public.notice VALUES (18286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698674534);
INSERT INTO public.notice VALUES (18287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698675133);
INSERT INTO public.notice VALUES (18288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698675734);
INSERT INTO public.notice VALUES (18289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698676334);
INSERT INTO public.notice VALUES (18290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698676934);
INSERT INTO public.notice VALUES (18291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698677533);
INSERT INTO public.notice VALUES (18292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698678134);
INSERT INTO public.notice VALUES (18293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698678734);
INSERT INTO public.notice VALUES (18294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698679334);
INSERT INTO public.notice VALUES (18295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698679984);
INSERT INTO public.notice VALUES (18296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698680549);
INSERT INTO public.notice VALUES (18297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698681194);
INSERT INTO public.notice VALUES (18298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698681865);
INSERT INTO public.notice VALUES (18299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698682443);
INSERT INTO public.notice VALUES (18300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698682935);
INSERT INTO public.notice VALUES (18301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698683533);
INSERT INTO public.notice VALUES (18302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698684132);
INSERT INTO public.notice VALUES (18303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698684734);
INSERT INTO public.notice VALUES (18304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698685333);
INSERT INTO public.notice VALUES (18305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698685933);
INSERT INTO public.notice VALUES (18306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698686534);
INSERT INTO public.notice VALUES (18307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698687134);
INSERT INTO public.notice VALUES (18308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698687734);
INSERT INTO public.notice VALUES (18309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698688335);
INSERT INTO public.notice VALUES (18310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698688934);
INSERT INTO public.notice VALUES (18311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698689534);
INSERT INTO public.notice VALUES (18312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698690133);
INSERT INTO public.notice VALUES (18313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698690735);
INSERT INTO public.notice VALUES (18314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698691334);
INSERT INTO public.notice VALUES (18315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698691933);
INSERT INTO public.notice VALUES (18316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698692533);
INSERT INTO public.notice VALUES (18317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698693136);
INSERT INTO public.notice VALUES (18318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698693735);
INSERT INTO public.notice VALUES (18319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698694333);
INSERT INTO public.notice VALUES (18320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698694933);
INSERT INTO public.notice VALUES (18321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698695535);
INSERT INTO public.notice VALUES (18322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698696134);
INSERT INTO public.notice VALUES (18323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698696733);
INSERT INTO public.notice VALUES (18324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698697334);
INSERT INTO public.notice VALUES (18325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698697934);
INSERT INTO public.notice VALUES (18326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698698533);
INSERT INTO public.notice VALUES (18327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698699132);
INSERT INTO public.notice VALUES (18328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698699736);
INSERT INTO public.notice VALUES (18329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698700333);
INSERT INTO public.notice VALUES (18330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698700934);
INSERT INTO public.notice VALUES (18331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698701535);
INSERT INTO public.notice VALUES (18332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698702134);
INSERT INTO public.notice VALUES (18333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698702734);
INSERT INTO public.notice VALUES (18334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698703333);
INSERT INTO public.notice VALUES (18335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698703936);
INSERT INTO public.notice VALUES (18351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698713535);
INSERT INTO public.notice VALUES (18352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698714133);
INSERT INTO public.notice VALUES (18353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698714735);
INSERT INTO public.notice VALUES (18354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698715334);
INSERT INTO public.notice VALUES (18356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698716533);
INSERT INTO public.notice VALUES (18357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698717134);
INSERT INTO public.notice VALUES (18336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698704534);
INSERT INTO public.notice VALUES (18337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698705134);
INSERT INTO public.notice VALUES (18338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698705732);
INSERT INTO public.notice VALUES (18339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698706336);
INSERT INTO public.notice VALUES (18340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698706933);
INSERT INTO public.notice VALUES (18341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698707533);
INSERT INTO public.notice VALUES (18342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698708134);
INSERT INTO public.notice VALUES (18343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698708734);
INSERT INTO public.notice VALUES (18344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698709334);
INSERT INTO public.notice VALUES (18345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698709933);
INSERT INTO public.notice VALUES (18346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698710534);
INSERT INTO public.notice VALUES (18347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698711134);
INSERT INTO public.notice VALUES (18348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698711733);
INSERT INTO public.notice VALUES (18349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698712333);
INSERT INTO public.notice VALUES (18350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698712940);
INSERT INTO public.notice VALUES (18355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698715933);
INSERT INTO public.notice VALUES (18358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698717733);
INSERT INTO public.notice VALUES (18359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698718334);
INSERT INTO public.notice VALUES (18386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698734534);
INSERT INTO public.notice VALUES (25604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703050507);
INSERT INTO public.notice VALUES (25605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703051107);
INSERT INTO public.notice VALUES (26357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703502636);
INSERT INTO public.notice VALUES (26944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703854836);
INSERT INTO public.notice VALUES (27355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704101435);
INSERT INTO public.notice VALUES (27668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704289236);
INSERT INTO public.notice VALUES (27670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704290435);
INSERT INTO public.notice VALUES (27672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704291636);
INSERT INTO public.notice VALUES (27678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704295236);
INSERT INTO public.notice VALUES (27679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704295836);
INSERT INTO public.notice VALUES (27685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704299436);
INSERT INTO public.notice VALUES (18360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698718932);
INSERT INTO public.notice VALUES (18361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698719534);
INSERT INTO public.notice VALUES (18362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698720133);
INSERT INTO public.notice VALUES (18363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698720733);
INSERT INTO public.notice VALUES (18364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698721334);
INSERT INTO public.notice VALUES (18365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698721934);
INSERT INTO public.notice VALUES (18366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698722533);
INSERT INTO public.notice VALUES (18367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698723134);
INSERT INTO public.notice VALUES (18368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698723734);
INSERT INTO public.notice VALUES (18369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698724333);
INSERT INTO public.notice VALUES (18370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698724933);
INSERT INTO public.notice VALUES (18371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698725534);
INSERT INTO public.notice VALUES (18372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698726134);
INSERT INTO public.notice VALUES (18373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698726733);
INSERT INTO public.notice VALUES (18374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698727333);
INSERT INTO public.notice VALUES (18375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698727934);
INSERT INTO public.notice VALUES (18376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698728534);
INSERT INTO public.notice VALUES (18377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698729133);
INSERT INTO public.notice VALUES (18378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698729732);
INSERT INTO public.notice VALUES (18379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698730334);
INSERT INTO public.notice VALUES (18380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698730933);
INSERT INTO public.notice VALUES (18381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698731533);
INSERT INTO public.notice VALUES (18382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698732135);
INSERT INTO public.notice VALUES (18383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698732735);
INSERT INTO public.notice VALUES (18384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698733334);
INSERT INTO public.notice VALUES (18385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698733932);
INSERT INTO public.notice VALUES (18387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698735133);
INSERT INTO public.notice VALUES (18388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698735733);
INSERT INTO public.notice VALUES (18389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698736334);
INSERT INTO public.notice VALUES (18390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698736934);
INSERT INTO public.notice VALUES (18391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698737533);
INSERT INTO public.notice VALUES (18392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698738133);
INSERT INTO public.notice VALUES (18393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698738734);
INSERT INTO public.notice VALUES (18394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698739333);
INSERT INTO public.notice VALUES (18395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698739933);
INSERT INTO public.notice VALUES (18396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698740532);
INSERT INTO public.notice VALUES (18397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698741134);
INSERT INTO public.notice VALUES (18398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698741734);
INSERT INTO public.notice VALUES (18399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698742333);
INSERT INTO public.notice VALUES (18400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698742934);
INSERT INTO public.notice VALUES (18401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698743534);
INSERT INTO public.notice VALUES (18402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698744133);
INSERT INTO public.notice VALUES (18403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698744732);
INSERT INTO public.notice VALUES (18404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698745334);
INSERT INTO public.notice VALUES (18405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698745933);
INSERT INTO public.notice VALUES (18406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698746533);
INSERT INTO public.notice VALUES (18407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698747132);
INSERT INTO public.notice VALUES (18408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698747734);
INSERT INTO public.notice VALUES (18409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698748334);
INSERT INTO public.notice VALUES (18410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698748933);
INSERT INTO public.notice VALUES (18411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698749534);
INSERT INTO public.notice VALUES (18412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698750135);
INSERT INTO public.notice VALUES (18413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698750735);
INSERT INTO public.notice VALUES (18414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698751332);
INSERT INTO public.notice VALUES (18415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698751934);
INSERT INTO public.notice VALUES (18416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698752534);
INSERT INTO public.notice VALUES (18417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698753133);
INSERT INTO public.notice VALUES (18418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698753734);
INSERT INTO public.notice VALUES (18419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698754334);
INSERT INTO public.notice VALUES (18420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698754933);
INSERT INTO public.notice VALUES (18421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698755532);
INSERT INTO public.notice VALUES (18422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698756134);
INSERT INTO public.notice VALUES (18423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698756733);
INSERT INTO public.notice VALUES (18424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698757334);
INSERT INTO public.notice VALUES (18425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698757935);
INSERT INTO public.notice VALUES (18426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698758534);
INSERT INTO public.notice VALUES (18427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698759138);
INSERT INTO public.notice VALUES (18428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698759734);
INSERT INTO public.notice VALUES (18429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698760334);
INSERT INTO public.notice VALUES (18430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698760934);
INSERT INTO public.notice VALUES (18431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698761533);
INSERT INTO public.notice VALUES (18432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698762134);
INSERT INTO public.notice VALUES (18433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698762735);
INSERT INTO public.notice VALUES (18434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698763334);
INSERT INTO public.notice VALUES (18435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698763934);
INSERT INTO public.notice VALUES (18436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698764534);
INSERT INTO public.notice VALUES (18437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698765134);
INSERT INTO public.notice VALUES (18438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698765734);
INSERT INTO public.notice VALUES (18439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698766334);
INSERT INTO public.notice VALUES (18440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698766934);
INSERT INTO public.notice VALUES (18441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698767534);
INSERT INTO public.notice VALUES (18442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698768134);
INSERT INTO public.notice VALUES (18443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698768734);
INSERT INTO public.notice VALUES (18444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698769334);
INSERT INTO public.notice VALUES (18445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698769934);
INSERT INTO public.notice VALUES (18446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698770534);
INSERT INTO public.notice VALUES (18447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698771135);
INSERT INTO public.notice VALUES (18486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698794534);
INSERT INTO public.notice VALUES (18488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698795735);
INSERT INTO public.notice VALUES (18489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698796333);
INSERT INTO public.notice VALUES (18448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698771734);
INSERT INTO public.notice VALUES (18449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698772333);
INSERT INTO public.notice VALUES (18450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698772932);
INSERT INTO public.notice VALUES (18451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698773534);
INSERT INTO public.notice VALUES (18452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698774134);
INSERT INTO public.notice VALUES (18453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698774734);
INSERT INTO public.notice VALUES (18454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698775337);
INSERT INTO public.notice VALUES (18455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698775934);
INSERT INTO public.notice VALUES (18456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698776534);
INSERT INTO public.notice VALUES (18457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698777133);
INSERT INTO public.notice VALUES (18458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698777734);
INSERT INTO public.notice VALUES (18459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698778334);
INSERT INTO public.notice VALUES (18460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698778934);
INSERT INTO public.notice VALUES (18461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698779535);
INSERT INTO public.notice VALUES (18462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698780134);
INSERT INTO public.notice VALUES (18463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698780734);
INSERT INTO public.notice VALUES (18464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698781334);
INSERT INTO public.notice VALUES (18465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698781935);
INSERT INTO public.notice VALUES (18466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698782534);
INSERT INTO public.notice VALUES (18467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698783134);
INSERT INTO public.notice VALUES (18468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698783734);
INSERT INTO public.notice VALUES (18469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698784334);
INSERT INTO public.notice VALUES (18470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698784933);
INSERT INTO public.notice VALUES (18471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698785534);
INSERT INTO public.notice VALUES (18472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698786135);
INSERT INTO public.notice VALUES (18473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698786734);
INSERT INTO public.notice VALUES (18474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698787334);
INSERT INTO public.notice VALUES (18475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698787933);
INSERT INTO public.notice VALUES (18476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698788535);
INSERT INTO public.notice VALUES (18477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698789137);
INSERT INTO public.notice VALUES (18478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698789734);
INSERT INTO public.notice VALUES (18479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698790334);
INSERT INTO public.notice VALUES (18480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698790934);
INSERT INTO public.notice VALUES (18481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698791535);
INSERT INTO public.notice VALUES (18482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698792133);
INSERT INTO public.notice VALUES (18483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698792736);
INSERT INTO public.notice VALUES (18484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698793335);
INSERT INTO public.notice VALUES (18485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698793934);
INSERT INTO public.notice VALUES (18487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698795135);
INSERT INTO public.notice VALUES (18493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698798734);
INSERT INTO public.notice VALUES (18494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698799335);
INSERT INTO public.notice VALUES (18495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698799934);
INSERT INTO public.notice VALUES (18496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698800533);
INSERT INTO public.notice VALUES (18497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698801135);
INSERT INTO public.notice VALUES (18498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698801735);
INSERT INTO public.notice VALUES (18490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698796935);
INSERT INTO public.notice VALUES (18491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698797534);
INSERT INTO public.notice VALUES (18492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698798134);
INSERT INTO public.notice VALUES (18500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698802933);
INSERT INTO public.notice VALUES (18509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698808333);
INSERT INTO public.notice VALUES (18510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698808933);
INSERT INTO public.notice VALUES (18511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698809532);
INSERT INTO public.notice VALUES (18512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698810134);
INSERT INTO public.notice VALUES (18513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698810733);
INSERT INTO public.notice VALUES (18514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698811334);
INSERT INTO public.notice VALUES (18515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698811934);
INSERT INTO public.notice VALUES (18568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698843733);
INSERT INTO public.notice VALUES (18569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698844336);
INSERT INTO public.notice VALUES (18574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698847334);
INSERT INTO public.notice VALUES (18578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698849733);
INSERT INTO public.notice VALUES (18499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698802333);
INSERT INTO public.notice VALUES (18501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698803534);
INSERT INTO public.notice VALUES (18502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698804134);
INSERT INTO public.notice VALUES (18503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698804733);
INSERT INTO public.notice VALUES (18504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698805332);
INSERT INTO public.notice VALUES (18505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698805934);
INSERT INTO public.notice VALUES (18506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698806533);
INSERT INTO public.notice VALUES (18507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698807133);
INSERT INTO public.notice VALUES (18508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698807734);
INSERT INTO public.notice VALUES (18516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698812534);
INSERT INTO public.notice VALUES (18517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698813133);
INSERT INTO public.notice VALUES (18518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698813733);
INSERT INTO public.notice VALUES (18519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698814334);
INSERT INTO public.notice VALUES (18520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698814933);
INSERT INTO public.notice VALUES (18521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698815533);
INSERT INTO public.notice VALUES (18522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698816134);
INSERT INTO public.notice VALUES (18523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698816734);
INSERT INTO public.notice VALUES (18524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698817333);
INSERT INTO public.notice VALUES (18525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698817933);
INSERT INTO public.notice VALUES (18526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698818536);
INSERT INTO public.notice VALUES (18527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698819134);
INSERT INTO public.notice VALUES (18528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698819733);
INSERT INTO public.notice VALUES (18529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698820333);
INSERT INTO public.notice VALUES (18530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698820934);
INSERT INTO public.notice VALUES (18531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698821533);
INSERT INTO public.notice VALUES (18532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698822133);
INSERT INTO public.notice VALUES (18533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698822734);
INSERT INTO public.notice VALUES (18534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698823334);
INSERT INTO public.notice VALUES (18535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698823933);
INSERT INTO public.notice VALUES (18536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698824533);
INSERT INTO public.notice VALUES (18537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698825134);
INSERT INTO public.notice VALUES (18538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698825733);
INSERT INTO public.notice VALUES (18539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698826333);
INSERT INTO public.notice VALUES (18540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698826932);
INSERT INTO public.notice VALUES (18541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698827534);
INSERT INTO public.notice VALUES (18542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698828133);
INSERT INTO public.notice VALUES (18543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698828733);
INSERT INTO public.notice VALUES (18544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698829334);
INSERT INTO public.notice VALUES (18545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698829934);
INSERT INTO public.notice VALUES (18546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698830533);
INSERT INTO public.notice VALUES (18547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698831132);
INSERT INTO public.notice VALUES (18548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698831734);
INSERT INTO public.notice VALUES (18549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698832333);
INSERT INTO public.notice VALUES (18550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698832933);
INSERT INTO public.notice VALUES (18551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698833534);
INSERT INTO public.notice VALUES (18552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698834134);
INSERT INTO public.notice VALUES (18553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698834734);
INSERT INTO public.notice VALUES (18554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698835332);
INSERT INTO public.notice VALUES (18555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698835934);
INSERT INTO public.notice VALUES (18556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698836533);
INSERT INTO public.notice VALUES (18557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698837133);
INSERT INTO public.notice VALUES (18558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698837734);
INSERT INTO public.notice VALUES (18559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698838334);
INSERT INTO public.notice VALUES (18560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698838933);
INSERT INTO public.notice VALUES (18561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698839534);
INSERT INTO public.notice VALUES (18562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698840134);
INSERT INTO public.notice VALUES (18563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698840735);
INSERT INTO public.notice VALUES (18564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698841334);
INSERT INTO public.notice VALUES (18565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698841932);
INSERT INTO public.notice VALUES (18566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698842535);
INSERT INTO public.notice VALUES (18567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698843133);
INSERT INTO public.notice VALUES (18570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698844935);
INSERT INTO public.notice VALUES (18571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698845535);
INSERT INTO public.notice VALUES (18572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698846132);
INSERT INTO public.notice VALUES (18573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698846734);
INSERT INTO public.notice VALUES (18575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698847934);
INSERT INTO public.notice VALUES (18576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698848535);
INSERT INTO public.notice VALUES (18577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698849134);
INSERT INTO public.notice VALUES (25606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703051708);
INSERT INTO public.notice VALUES (25607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703052308);
INSERT INTO public.notice VALUES (25609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703053507);
INSERT INTO public.notice VALUES (26358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703503235);
INSERT INTO public.notice VALUES (26359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703503835);
INSERT INTO public.notice VALUES (26947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703856637);
INSERT INTO public.notice VALUES (26949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703857835);
INSERT INTO public.notice VALUES (18579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698850333);
INSERT INTO public.notice VALUES (18580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698850935);
INSERT INTO public.notice VALUES (18581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698851533);
INSERT INTO public.notice VALUES (18582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698852134);
INSERT INTO public.notice VALUES (18583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698852732);
INSERT INTO public.notice VALUES (18584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698853334);
INSERT INTO public.notice VALUES (18585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698853933);
INSERT INTO public.notice VALUES (18586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698854533);
INSERT INTO public.notice VALUES (18587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698855135);
INSERT INTO public.notice VALUES (18588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698855733);
INSERT INTO public.notice VALUES (18589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698856333);
INSERT INTO public.notice VALUES (18590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698856933);
INSERT INTO public.notice VALUES (18591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698857535);
INSERT INTO public.notice VALUES (18592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698858134);
INSERT INTO public.notice VALUES (18593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698858733);
INSERT INTO public.notice VALUES (18594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698859335);
INSERT INTO public.notice VALUES (18595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698859935);
INSERT INTO public.notice VALUES (18596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698860534);
INSERT INTO public.notice VALUES (18597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698861134);
INSERT INTO public.notice VALUES (18598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698861735);
INSERT INTO public.notice VALUES (18599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698862334);
INSERT INTO public.notice VALUES (18600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698862933);
INSERT INTO public.notice VALUES (18648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1698891744);
INSERT INTO public.notice VALUES (18649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698892334);
INSERT INTO public.notice VALUES (18657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698897133);
INSERT INTO public.notice VALUES (18658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698897732);
INSERT INTO public.notice VALUES (18659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698898335);
INSERT INTO public.notice VALUES (18660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698898934);
INSERT INTO public.notice VALUES (18661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698899533);
INSERT INTO public.notice VALUES (18662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698900134);
INSERT INTO public.notice VALUES (18663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698900735);
INSERT INTO public.notice VALUES (18601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698863534);
INSERT INTO public.notice VALUES (18602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698864134);
INSERT INTO public.notice VALUES (18603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698864733);
INSERT INTO public.notice VALUES (18604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698865333);
INSERT INTO public.notice VALUES (18605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698865935);
INSERT INTO public.notice VALUES (18606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698866534);
INSERT INTO public.notice VALUES (18607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698867134);
INSERT INTO public.notice VALUES (18608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698867736);
INSERT INTO public.notice VALUES (18609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698868335);
INSERT INTO public.notice VALUES (18610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698868934);
INSERT INTO public.notice VALUES (18611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698869533);
INSERT INTO public.notice VALUES (18612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698870135);
INSERT INTO public.notice VALUES (18613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698870734);
INSERT INTO public.notice VALUES (18614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698871333);
INSERT INTO public.notice VALUES (18615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698871934);
INSERT INTO public.notice VALUES (18616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698872536);
INSERT INTO public.notice VALUES (18617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698873135);
INSERT INTO public.notice VALUES (18618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698873734);
INSERT INTO public.notice VALUES (18619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698874337);
INSERT INTO public.notice VALUES (18620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698874934);
INSERT INTO public.notice VALUES (18621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698875533);
INSERT INTO public.notice VALUES (18622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698876134);
INSERT INTO public.notice VALUES (18623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698876735);
INSERT INTO public.notice VALUES (18624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698877334);
INSERT INTO public.notice VALUES (18625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698877933);
INSERT INTO public.notice VALUES (18626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698878533);
INSERT INTO public.notice VALUES (18627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698879134);
INSERT INTO public.notice VALUES (18628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698879734);
INSERT INTO public.notice VALUES (18629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698880333);
INSERT INTO public.notice VALUES (18630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698880935);
INSERT INTO public.notice VALUES (18631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698881534);
INSERT INTO public.notice VALUES (18632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698882133);
INSERT INTO public.notice VALUES (18633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698882733);
INSERT INTO public.notice VALUES (18634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698883334);
INSERT INTO public.notice VALUES (18635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698883934);
INSERT INTO public.notice VALUES (18636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698884534);
INSERT INTO public.notice VALUES (18637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698885134);
INSERT INTO public.notice VALUES (18638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698885735);
INSERT INTO public.notice VALUES (18639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698886334);
INSERT INTO public.notice VALUES (18640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698886933);
INSERT INTO public.notice VALUES (18641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698887534);
INSERT INTO public.notice VALUES (18642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698888134);
INSERT INTO public.notice VALUES (18643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698888733);
INSERT INTO public.notice VALUES (18644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698889335);
INSERT INTO public.notice VALUES (18645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698889934);
INSERT INTO public.notice VALUES (18646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698890533);
INSERT INTO public.notice VALUES (18647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698891133);
INSERT INTO public.notice VALUES (18650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698892933);
INSERT INTO public.notice VALUES (18651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698893532);
INSERT INTO public.notice VALUES (18652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698894134);
INSERT INTO public.notice VALUES (18653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698894733);
INSERT INTO public.notice VALUES (18654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698895333);
INSERT INTO public.notice VALUES (18655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698895934);
INSERT INTO public.notice VALUES (18656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698896533);
INSERT INTO public.notice VALUES (18691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698917534);
INSERT INTO public.notice VALUES (18692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698918135);
INSERT INTO public.notice VALUES (18693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698918734);
INSERT INTO public.notice VALUES (18694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698919332);
INSERT INTO public.notice VALUES (18695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698919934);
INSERT INTO public.notice VALUES (18696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698920533);
INSERT INTO public.notice VALUES (18664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698901333);
INSERT INTO public.notice VALUES (18665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698901933);
INSERT INTO public.notice VALUES (18666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698902534);
INSERT INTO public.notice VALUES (18667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698903133);
INSERT INTO public.notice VALUES (18668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698903735);
INSERT INTO public.notice VALUES (18669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698904334);
INSERT INTO public.notice VALUES (18670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698904934);
INSERT INTO public.notice VALUES (18671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698905533);
INSERT INTO public.notice VALUES (18672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698906133);
INSERT INTO public.notice VALUES (18673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698906734);
INSERT INTO public.notice VALUES (18674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698907333);
INSERT INTO public.notice VALUES (18675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698907933);
INSERT INTO public.notice VALUES (18676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698908534);
INSERT INTO public.notice VALUES (18677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698909134);
INSERT INTO public.notice VALUES (18678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698909733);
INSERT INTO public.notice VALUES (18679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698910333);
INSERT INTO public.notice VALUES (18680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698910934);
INSERT INTO public.notice VALUES (18681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698911534);
INSERT INTO public.notice VALUES (18682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698912134);
INSERT INTO public.notice VALUES (18683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698912733);
INSERT INTO public.notice VALUES (18684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698913334);
INSERT INTO public.notice VALUES (18685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698913933);
INSERT INTO public.notice VALUES (18686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698914533);
INSERT INTO public.notice VALUES (18687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698915133);
INSERT INTO public.notice VALUES (18688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698915734);
INSERT INTO public.notice VALUES (18689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698916334);
INSERT INTO public.notice VALUES (18690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698916933);
INSERT INTO public.notice VALUES (18708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698927733);
INSERT INTO public.notice VALUES (18709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698928335);
INSERT INTO public.notice VALUES (18710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698928934);
INSERT INTO public.notice VALUES (18697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698921133);
INSERT INTO public.notice VALUES (18698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698921734);
INSERT INTO public.notice VALUES (18699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698922335);
INSERT INTO public.notice VALUES (18700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698922934);
INSERT INTO public.notice VALUES (18701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698923532);
INSERT INTO public.notice VALUES (18702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698924135);
INSERT INTO public.notice VALUES (18703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698924734);
INSERT INTO public.notice VALUES (18704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698925333);
INSERT INTO public.notice VALUES (18705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698925936);
INSERT INTO public.notice VALUES (18706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698926534);
INSERT INTO public.notice VALUES (18707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698927133);
INSERT INTO public.notice VALUES (18723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698936735);
INSERT INTO public.notice VALUES (18724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698937334);
INSERT INTO public.notice VALUES (18725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698937933);
INSERT INTO public.notice VALUES (18726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698938533);
INSERT INTO public.notice VALUES (18711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698929534);
INSERT INTO public.notice VALUES (18712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698930132);
INSERT INTO public.notice VALUES (18713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698930735);
INSERT INTO public.notice VALUES (18714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698931333);
INSERT INTO public.notice VALUES (18715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698931933);
INSERT INTO public.notice VALUES (18716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698932534);
INSERT INTO public.notice VALUES (18717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698933134);
INSERT INTO public.notice VALUES (18718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698933734);
INSERT INTO public.notice VALUES (18719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698934334);
INSERT INTO public.notice VALUES (18720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698934934);
INSERT INTO public.notice VALUES (18721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698935534);
INSERT INTO public.notice VALUES (18722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698936133);
INSERT INTO public.notice VALUES (18728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698939734);
INSERT INTO public.notice VALUES (18747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698951133);
INSERT INTO public.notice VALUES (18748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698951733);
INSERT INTO public.notice VALUES (18727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698939135);
INSERT INTO public.notice VALUES (18729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698940333);
INSERT INTO public.notice VALUES (18730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698940933);
INSERT INTO public.notice VALUES (18731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698941534);
INSERT INTO public.notice VALUES (18732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698942133);
INSERT INTO public.notice VALUES (18733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698942733);
INSERT INTO public.notice VALUES (18734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698943335);
INSERT INTO public.notice VALUES (18735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698943934);
INSERT INTO public.notice VALUES (18736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698944533);
INSERT INTO public.notice VALUES (18737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698945133);
INSERT INTO public.notice VALUES (18738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698945734);
INSERT INTO public.notice VALUES (18739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698946334);
INSERT INTO public.notice VALUES (18740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698946933);
INSERT INTO public.notice VALUES (18741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698947535);
INSERT INTO public.notice VALUES (18742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698948134);
INSERT INTO public.notice VALUES (18743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698948733);
INSERT INTO public.notice VALUES (18744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698949333);
INSERT INTO public.notice VALUES (18745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698949934);
INSERT INTO public.notice VALUES (18746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698950534);
INSERT INTO public.notice VALUES (18749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698952334);
INSERT INTO public.notice VALUES (18750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698952933);
INSERT INTO public.notice VALUES (18751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698953533);
INSERT INTO public.notice VALUES (18752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698954135);
INSERT INTO public.notice VALUES (18753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698954734);
INSERT INTO public.notice VALUES (18754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698955334);
INSERT INTO public.notice VALUES (18755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698955933);
INSERT INTO public.notice VALUES (18756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698956534);
INSERT INTO public.notice VALUES (18757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698957134);
INSERT INTO public.notice VALUES (18758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698957733);
INSERT INTO public.notice VALUES (18759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698958333);
INSERT INTO public.notice VALUES (18760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698958934);
INSERT INTO public.notice VALUES (18761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698959533);
INSERT INTO public.notice VALUES (18762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698960133);
INSERT INTO public.notice VALUES (18763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698960735);
INSERT INTO public.notice VALUES (18764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698961334);
INSERT INTO public.notice VALUES (18765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698961933);
INSERT INTO public.notice VALUES (18766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698962533);
INSERT INTO public.notice VALUES (18767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698963134);
INSERT INTO public.notice VALUES (18768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698963734);
INSERT INTO public.notice VALUES (18769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698964333);
INSERT INTO public.notice VALUES (18770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698964935);
INSERT INTO public.notice VALUES (18771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698965534);
INSERT INTO public.notice VALUES (18772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698966133);
INSERT INTO public.notice VALUES (18773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698966733);
INSERT INTO public.notice VALUES (18774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698967334);
INSERT INTO public.notice VALUES (18775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698967934);
INSERT INTO public.notice VALUES (18776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698968533);
INSERT INTO public.notice VALUES (18777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698969132);
INSERT INTO public.notice VALUES (18778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698969734);
INSERT INTO public.notice VALUES (18779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698970333);
INSERT INTO public.notice VALUES (18780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698970933);
INSERT INTO public.notice VALUES (18781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698971534);
INSERT INTO public.notice VALUES (18782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698972134);
INSERT INTO public.notice VALUES (18783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698972733);
INSERT INTO public.notice VALUES (18784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698973333);
INSERT INTO public.notice VALUES (18785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698973934);
INSERT INTO public.notice VALUES (18786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698974533);
INSERT INTO public.notice VALUES (18787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698975133);
INSERT INTO public.notice VALUES (18788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698975734);
INSERT INTO public.notice VALUES (18789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698976335);
INSERT INTO public.notice VALUES (18790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698976933);
INSERT INTO public.notice VALUES (18791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698977533);
INSERT INTO public.notice VALUES (18792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698978134);
INSERT INTO public.notice VALUES (18793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698978734);
INSERT INTO public.notice VALUES (18794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698979333);
INSERT INTO public.notice VALUES (18795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698979932);
INSERT INTO public.notice VALUES (18796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698980534);
INSERT INTO public.notice VALUES (18797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698981133);
INSERT INTO public.notice VALUES (18798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698981733);
INSERT INTO public.notice VALUES (18799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698982334);
INSERT INTO public.notice VALUES (18800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698982934);
INSERT INTO public.notice VALUES (18801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698983533);
INSERT INTO public.notice VALUES (18802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698984133);
INSERT INTO public.notice VALUES (18804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698985335);
INSERT INTO public.notice VALUES (18805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698985933);
INSERT INTO public.notice VALUES (18803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698984734);
INSERT INTO public.notice VALUES (18811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698989533);
INSERT INTO public.notice VALUES (18812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698990133);
INSERT INTO public.notice VALUES (18813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698990734);
INSERT INTO public.notice VALUES (18814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698991334);
INSERT INTO public.notice VALUES (18815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698991933);
INSERT INTO public.notice VALUES (18816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698992533);
INSERT INTO public.notice VALUES (18817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698993134);
INSERT INTO public.notice VALUES (18818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698993733);
INSERT INTO public.notice VALUES (18819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698994333);
INSERT INTO public.notice VALUES (18820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698994933);
INSERT INTO public.notice VALUES (18821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698995534);
INSERT INTO public.notice VALUES (18822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698996133);
INSERT INTO public.notice VALUES (18823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698996733);
INSERT INTO public.notice VALUES (18832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699002134);
INSERT INTO public.notice VALUES (18806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698986535);
INSERT INTO public.notice VALUES (18807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698987134);
INSERT INTO public.notice VALUES (18808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698987733);
INSERT INTO public.notice VALUES (18809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698988333);
INSERT INTO public.notice VALUES (18810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698988934);
INSERT INTO public.notice VALUES (18824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698997334);
INSERT INTO public.notice VALUES (18825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698997934);
INSERT INTO public.notice VALUES (18826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698998533);
INSERT INTO public.notice VALUES (18827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698999133);
INSERT INTO public.notice VALUES (18828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1698999734);
INSERT INTO public.notice VALUES (18829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699000333);
INSERT INTO public.notice VALUES (18830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699000933);
INSERT INTO public.notice VALUES (18831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699001534);
INSERT INTO public.notice VALUES (25611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703054708);
INSERT INTO public.notice VALUES (25612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703055307);
INSERT INTO public.notice VALUES (18833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699002733);
INSERT INTO public.notice VALUES (18834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699003333);
INSERT INTO public.notice VALUES (18835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699003934);
INSERT INTO public.notice VALUES (18836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699004534);
INSERT INTO public.notice VALUES (18837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699005133);
INSERT INTO public.notice VALUES (18838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699005733);
INSERT INTO public.notice VALUES (18839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699006334);
INSERT INTO public.notice VALUES (18840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699006933);
INSERT INTO public.notice VALUES (18841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699007533);
INSERT INTO public.notice VALUES (18842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699008134);
INSERT INTO public.notice VALUES (18843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699008734);
INSERT INTO public.notice VALUES (18844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699009333);
INSERT INTO public.notice VALUES (18845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699009933);
INSERT INTO public.notice VALUES (18846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699010534);
INSERT INTO public.notice VALUES (18847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699011134);
INSERT INTO public.notice VALUES (18848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699011733);
INSERT INTO public.notice VALUES (18849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699012334);
INSERT INTO public.notice VALUES (18850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699012934);
INSERT INTO public.notice VALUES (18851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699013533);
INSERT INTO public.notice VALUES (18852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699014133);
INSERT INTO public.notice VALUES (18853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699014734);
INSERT INTO public.notice VALUES (18854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699015334);
INSERT INTO public.notice VALUES (18855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699015933);
INSERT INTO public.notice VALUES (18856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699016533);
INSERT INTO public.notice VALUES (18857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699017134);
INSERT INTO public.notice VALUES (18858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699017735);
INSERT INTO public.notice VALUES (18859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699018333);
INSERT INTO public.notice VALUES (18860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699018935);
INSERT INTO public.notice VALUES (18861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699019534);
INSERT INTO public.notice VALUES (18862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699020133);
INSERT INTO public.notice VALUES (18863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699020733);
INSERT INTO public.notice VALUES (18864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699021334);
INSERT INTO public.notice VALUES (18865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699021933);
INSERT INTO public.notice VALUES (18866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699022533);
INSERT INTO public.notice VALUES (18867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699023134);
INSERT INTO public.notice VALUES (18868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699023734);
INSERT INTO public.notice VALUES (18869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699024334);
INSERT INTO public.notice VALUES (18870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699024933);
INSERT INTO public.notice VALUES (18871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699025537);
INSERT INTO public.notice VALUES (18872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699026134);
INSERT INTO public.notice VALUES (18873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699026737);
INSERT INTO public.notice VALUES (18874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699027334);
INSERT INTO public.notice VALUES (18875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699027935);
INSERT INTO public.notice VALUES (18876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699028533);
INSERT INTO public.notice VALUES (18877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699029133);
INSERT INTO public.notice VALUES (18878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699029734);
INSERT INTO public.notice VALUES (18884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699033334);
INSERT INTO public.notice VALUES (18885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699033934);
INSERT INTO public.notice VALUES (18886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699034534);
INSERT INTO public.notice VALUES (18887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699035133);
INSERT INTO public.notice VALUES (18888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699035733);
INSERT INTO public.notice VALUES (18927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699059134);
INSERT INTO public.notice VALUES (25614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703056508);
INSERT INTO public.notice VALUES (25618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703058908);
INSERT INTO public.notice VALUES (26360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703504436);
INSERT INTO public.notice VALUES (26361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703505035);
INSERT INTO public.notice VALUES (26362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703505635);
INSERT INTO public.notice VALUES (26363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703506237);
INSERT INTO public.notice VALUES (26366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703508035);
INSERT INTO public.notice VALUES (26369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703509835);
INSERT INTO public.notice VALUES (18879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699030334);
INSERT INTO public.notice VALUES (18880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699030934);
INSERT INTO public.notice VALUES (18881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699031533);
INSERT INTO public.notice VALUES (18882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699032134);
INSERT INTO public.notice VALUES (18883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699032734);
INSERT INTO public.notice VALUES (18889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699036334);
INSERT INTO public.notice VALUES (18890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699036934);
INSERT INTO public.notice VALUES (18891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699037533);
INSERT INTO public.notice VALUES (18892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699038132);
INSERT INTO public.notice VALUES (18893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699038734);
INSERT INTO public.notice VALUES (18894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699039333);
INSERT INTO public.notice VALUES (18895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699039933);
INSERT INTO public.notice VALUES (18896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699040535);
INSERT INTO public.notice VALUES (18897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699041134);
INSERT INTO public.notice VALUES (18898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699041733);
INSERT INTO public.notice VALUES (18899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699042333);
INSERT INTO public.notice VALUES (18900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699042934);
INSERT INTO public.notice VALUES (18901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699043533);
INSERT INTO public.notice VALUES (18902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699044133);
INSERT INTO public.notice VALUES (18903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699044735);
INSERT INTO public.notice VALUES (18904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699045334);
INSERT INTO public.notice VALUES (18905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699045933);
INSERT INTO public.notice VALUES (18906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699046533);
INSERT INTO public.notice VALUES (18907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699047134);
INSERT INTO public.notice VALUES (18908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699047733);
INSERT INTO public.notice VALUES (18909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699048334);
INSERT INTO public.notice VALUES (18910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699048934);
INSERT INTO public.notice VALUES (18911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699049536);
INSERT INTO public.notice VALUES (18912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699050133);
INSERT INTO public.notice VALUES (18913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699050733);
INSERT INTO public.notice VALUES (18914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699051335);
INSERT INTO public.notice VALUES (18915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699051935);
INSERT INTO public.notice VALUES (18916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699052533);
INSERT INTO public.notice VALUES (18917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699053135);
INSERT INTO public.notice VALUES (18918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699053735);
INSERT INTO public.notice VALUES (18919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699054335);
INSERT INTO public.notice VALUES (18920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699054933);
INSERT INTO public.notice VALUES (18921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699055535);
INSERT INTO public.notice VALUES (18922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699056134);
INSERT INTO public.notice VALUES (18923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699056733);
INSERT INTO public.notice VALUES (18924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699057332);
INSERT INTO public.notice VALUES (18925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699057935);
INSERT INTO public.notice VALUES (18926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699058534);
INSERT INTO public.notice VALUES (18928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699059736);
INSERT INTO public.notice VALUES (18929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699060334);
INSERT INTO public.notice VALUES (18930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699060935);
INSERT INTO public.notice VALUES (18931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699061533);
INSERT INTO public.notice VALUES (18932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699062134);
INSERT INTO public.notice VALUES (18933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699062734);
INSERT INTO public.notice VALUES (18934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699063333);
INSERT INTO public.notice VALUES (18935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699063933);
INSERT INTO public.notice VALUES (18949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699072333);
INSERT INTO public.notice VALUES (18950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699072936);
INSERT INTO public.notice VALUES (18960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699078932);
INSERT INTO public.notice VALUES (18961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699079534);
INSERT INTO public.notice VALUES (25617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703058308);
INSERT INTO public.notice VALUES (26364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703506836);
INSERT INTO public.notice VALUES (26948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703857236);
INSERT INTO public.notice VALUES (27357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704102636);
INSERT INTO public.notice VALUES (27358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704103235);
INSERT INTO public.notice VALUES (18936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699064536);
INSERT INTO public.notice VALUES (18937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699065134);
INSERT INTO public.notice VALUES (18938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699065734);
INSERT INTO public.notice VALUES (18939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699066336);
INSERT INTO public.notice VALUES (18940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699066934);
INSERT INTO public.notice VALUES (18941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699067534);
INSERT INTO public.notice VALUES (18942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699068134);
INSERT INTO public.notice VALUES (18943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699068734);
INSERT INTO public.notice VALUES (18944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699069334);
INSERT INTO public.notice VALUES (18945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699069933);
INSERT INTO public.notice VALUES (18946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699070535);
INSERT INTO public.notice VALUES (18947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699071134);
INSERT INTO public.notice VALUES (18948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699071733);
INSERT INTO public.notice VALUES (18951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699073534);
INSERT INTO public.notice VALUES (18952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699074135);
INSERT INTO public.notice VALUES (18953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699074735);
INSERT INTO public.notice VALUES (18954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699075335);
INSERT INTO public.notice VALUES (18955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699075935);
INSERT INTO public.notice VALUES (18956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699076534);
INSERT INTO public.notice VALUES (18957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699077134);
INSERT INTO public.notice VALUES (18958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699077735);
INSERT INTO public.notice VALUES (18959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699078334);
INSERT INTO public.notice VALUES (18962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699080133);
INSERT INTO public.notice VALUES (18963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699080734);
INSERT INTO public.notice VALUES (18964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699081336);
INSERT INTO public.notice VALUES (18965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699081934);
INSERT INTO public.notice VALUES (18966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699082535);
INSERT INTO public.notice VALUES (18967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699083132);
INSERT INTO public.notice VALUES (18968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699083735);
INSERT INTO public.notice VALUES (18969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699084334);
INSERT INTO public.notice VALUES (18970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699084933);
INSERT INTO public.notice VALUES (18971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699085536);
INSERT INTO public.notice VALUES (18972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699086134);
INSERT INTO public.notice VALUES (18973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699086734);
INSERT INTO public.notice VALUES (18974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699087333);
INSERT INTO public.notice VALUES (18975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699087934);
INSERT INTO public.notice VALUES (18976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699088534);
INSERT INTO public.notice VALUES (18977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699089133);
INSERT INTO public.notice VALUES (18978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699089733);
INSERT INTO public.notice VALUES (18979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699090334);
INSERT INTO public.notice VALUES (18980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699090934);
INSERT INTO public.notice VALUES (18981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699091534);
INSERT INTO public.notice VALUES (18982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699092133);
INSERT INTO public.notice VALUES (18983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699092735);
INSERT INTO public.notice VALUES (18984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699093335);
INSERT INTO public.notice VALUES (18985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699093933);
INSERT INTO public.notice VALUES (18986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699094536);
INSERT INTO public.notice VALUES (18987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699095134);
INSERT INTO public.notice VALUES (18988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699095734);
INSERT INTO public.notice VALUES (18989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699096336);
INSERT INTO public.notice VALUES (18990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699096935);
INSERT INTO public.notice VALUES (18991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699097534);
INSERT INTO public.notice VALUES (18992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699098133);
INSERT INTO public.notice VALUES (18993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699098735);
INSERT INTO public.notice VALUES (18994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699099335);
INSERT INTO public.notice VALUES (18995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699099935);
INSERT INTO public.notice VALUES (18996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699100534);
INSERT INTO public.notice VALUES (18997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699101135);
INSERT INTO public.notice VALUES (18998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699101735);
INSERT INTO public.notice VALUES (18999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699102333);
INSERT INTO public.notice VALUES (19000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699102934);
INSERT INTO public.notice VALUES (19001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699103534);
INSERT INTO public.notice VALUES (19002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699104134);
INSERT INTO public.notice VALUES (19003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699104734);
INSERT INTO public.notice VALUES (19004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699105336);
INSERT INTO public.notice VALUES (19005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699105934);
INSERT INTO public.notice VALUES (19006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699106534);
INSERT INTO public.notice VALUES (19007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699107133);
INSERT INTO public.notice VALUES (19008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699107735);
INSERT INTO public.notice VALUES (19009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699108333);
INSERT INTO public.notice VALUES (19010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699108933);
INSERT INTO public.notice VALUES (19011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699109535);
INSERT INTO public.notice VALUES (19037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699125134);
INSERT INTO public.notice VALUES (19038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699125735);
INSERT INTO public.notice VALUES (19039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699126334);
INSERT INTO public.notice VALUES (19012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699110134);
INSERT INTO public.notice VALUES (19013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699110735);
INSERT INTO public.notice VALUES (19014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699111333);
INSERT INTO public.notice VALUES (19015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699111936);
INSERT INTO public.notice VALUES (19016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699112534);
INSERT INTO public.notice VALUES (19017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699113133);
INSERT INTO public.notice VALUES (19018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699113734);
INSERT INTO public.notice VALUES (19019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699114335);
INSERT INTO public.notice VALUES (19020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699114935);
INSERT INTO public.notice VALUES (19021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699115533);
INSERT INTO public.notice VALUES (19022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699116135);
INSERT INTO public.notice VALUES (19023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699116734);
INSERT INTO public.notice VALUES (19024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699117335);
INSERT INTO public.notice VALUES (19025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699117936);
INSERT INTO public.notice VALUES (19026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699118534);
INSERT INTO public.notice VALUES (19027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699119135);
INSERT INTO public.notice VALUES (19028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699119733);
INSERT INTO public.notice VALUES (19029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699120334);
INSERT INTO public.notice VALUES (19030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699120935);
INSERT INTO public.notice VALUES (19031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699121534);
INSERT INTO public.notice VALUES (19032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699122132);
INSERT INTO public.notice VALUES (19033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699122735);
INSERT INTO public.notice VALUES (19034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699123335);
INSERT INTO public.notice VALUES (19035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699123934);
INSERT INTO public.notice VALUES (19036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699124533);
INSERT INTO public.notice VALUES (19046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699130535);
INSERT INTO public.notice VALUES (19047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699131135);
INSERT INTO public.notice VALUES (19048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699131736);
INSERT INTO public.notice VALUES (19049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699132335);
INSERT INTO public.notice VALUES (19050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699132933);
INSERT INTO public.notice VALUES (19040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699126936);
INSERT INTO public.notice VALUES (19041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699127535);
INSERT INTO public.notice VALUES (19042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699128133);
INSERT INTO public.notice VALUES (19043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699128733);
INSERT INTO public.notice VALUES (19044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699129335);
INSERT INTO public.notice VALUES (19045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699129933);
INSERT INTO public.notice VALUES (19066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699142534);
INSERT INTO public.notice VALUES (19067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699143133);
INSERT INTO public.notice VALUES (19068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699143733);
INSERT INTO public.notice VALUES (19069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699144335);
INSERT INTO public.notice VALUES (19070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699144935);
INSERT INTO public.notice VALUES (19071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699145534);
INSERT INTO public.notice VALUES (19072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699146132);
INSERT INTO public.notice VALUES (19073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699146734);
INSERT INTO public.notice VALUES (19074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699147333);
INSERT INTO public.notice VALUES (19051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699133534);
INSERT INTO public.notice VALUES (19052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699134135);
INSERT INTO public.notice VALUES (19053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699134734);
INSERT INTO public.notice VALUES (19054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699135334);
INSERT INTO public.notice VALUES (19055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699135936);
INSERT INTO public.notice VALUES (19056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699136534);
INSERT INTO public.notice VALUES (19057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699137134);
INSERT INTO public.notice VALUES (19058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699137735);
INSERT INTO public.notice VALUES (19059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699138334);
INSERT INTO public.notice VALUES (19060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699138934);
INSERT INTO public.notice VALUES (19061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699139534);
INSERT INTO public.notice VALUES (19062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699140135);
INSERT INTO public.notice VALUES (19063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699140734);
INSERT INTO public.notice VALUES (19064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699141334);
INSERT INTO public.notice VALUES (19065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699141935);
INSERT INTO public.notice VALUES (19075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699147933);
INSERT INTO public.notice VALUES (19076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699148535);
INSERT INTO public.notice VALUES (19077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699149135);
INSERT INTO public.notice VALUES (19078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699149734);
INSERT INTO public.notice VALUES (19079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699150333);
INSERT INTO public.notice VALUES (19080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699150934);
INSERT INTO public.notice VALUES (19081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699151533);
INSERT INTO public.notice VALUES (19082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699152134);
INSERT INTO public.notice VALUES (19083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699152736);
INSERT INTO public.notice VALUES (19084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699153334);
INSERT INTO public.notice VALUES (19085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699153934);
INSERT INTO public.notice VALUES (19086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699154533);
INSERT INTO public.notice VALUES (19088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699155734);
INSERT INTO public.notice VALUES (19089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699156334);
INSERT INTO public.notice VALUES (19090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699156934);
INSERT INTO public.notice VALUES (19087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699155135);
INSERT INTO public.notice VALUES (19091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699157535);
INSERT INTO public.notice VALUES (19092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699158134);
INSERT INTO public.notice VALUES (19093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699158733);
INSERT INTO public.notice VALUES (19094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699159334);
INSERT INTO public.notice VALUES (19095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699159934);
INSERT INTO public.notice VALUES (19096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699160533);
INSERT INTO public.notice VALUES (19097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699161134);
INSERT INTO public.notice VALUES (19098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699161735);
INSERT INTO public.notice VALUES (19099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699162334);
INSERT INTO public.notice VALUES (19100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699162933);
INSERT INTO public.notice VALUES (19101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699163536);
INSERT INTO public.notice VALUES (19102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699164136);
INSERT INTO public.notice VALUES (19103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699164733);
INSERT INTO public.notice VALUES (19104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699165333);
INSERT INTO public.notice VALUES (19105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699165934);
INSERT INTO public.notice VALUES (19109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699168334);
INSERT INTO public.notice VALUES (19110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699168933);
INSERT INTO public.notice VALUES (19111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699169534);
INSERT INTO public.notice VALUES (19112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699170134);
INSERT INTO public.notice VALUES (19113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699170734);
INSERT INTO public.notice VALUES (19114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699171334);
INSERT INTO public.notice VALUES (19115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699171934);
INSERT INTO public.notice VALUES (19122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699176134);
INSERT INTO public.notice VALUES (19123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699176736);
INSERT INTO public.notice VALUES (19124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699177333);
INSERT INTO public.notice VALUES (19125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699177934);
INSERT INTO public.notice VALUES (19126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699178534);
INSERT INTO public.notice VALUES (19127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699179136);
INSERT INTO public.notice VALUES (25619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703059507);
INSERT INTO public.notice VALUES (19106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699166534);
INSERT INTO public.notice VALUES (19107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699167133);
INSERT INTO public.notice VALUES (19108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699167733);
INSERT INTO public.notice VALUES (19116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699172534);
INSERT INTO public.notice VALUES (19117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699173133);
INSERT INTO public.notice VALUES (19118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699173733);
INSERT INTO public.notice VALUES (19119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699174333);
INSERT INTO public.notice VALUES (19120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699174935);
INSERT INTO public.notice VALUES (19121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699175533);
INSERT INTO public.notice VALUES (19128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699179735);
INSERT INTO public.notice VALUES (19129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699180334);
INSERT INTO public.notice VALUES (19130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699180935);
INSERT INTO public.notice VALUES (19131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699181534);
INSERT INTO public.notice VALUES (19132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699182135);
INSERT INTO public.notice VALUES (19133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699182733);
INSERT INTO public.notice VALUES (19134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699183335);
INSERT INTO public.notice VALUES (19135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699183934);
INSERT INTO public.notice VALUES (19136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699184535);
INSERT INTO public.notice VALUES (19137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699185135);
INSERT INTO public.notice VALUES (19138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699185735);
INSERT INTO public.notice VALUES (19139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699186335);
INSERT INTO public.notice VALUES (19140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699186933);
INSERT INTO public.notice VALUES (19141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699187534);
INSERT INTO public.notice VALUES (19142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699188134);
INSERT INTO public.notice VALUES (19152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699194134);
INSERT INTO public.notice VALUES (19153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699194733);
INSERT INTO public.notice VALUES (19154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699195334);
INSERT INTO public.notice VALUES (19155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699195934);
INSERT INTO public.notice VALUES (19156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699196534);
INSERT INTO public.notice VALUES (19157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699197133);
INSERT INTO public.notice VALUES (19143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699188733);
INSERT INTO public.notice VALUES (19144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699189332);
INSERT INTO public.notice VALUES (19145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699189934);
INSERT INTO public.notice VALUES (19146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699190533);
INSERT INTO public.notice VALUES (19147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699191133);
INSERT INTO public.notice VALUES (19148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699191734);
INSERT INTO public.notice VALUES (19149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699192334);
INSERT INTO public.notice VALUES (19150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699192933);
INSERT INTO public.notice VALUES (19151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699193532);
INSERT INTO public.notice VALUES (19167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699203134);
INSERT INTO public.notice VALUES (19170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699204935);
INSERT INTO public.notice VALUES (19171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699205533);
INSERT INTO public.notice VALUES (19172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699206135);
INSERT INTO public.notice VALUES (19173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699206736);
INSERT INTO public.notice VALUES (19174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699207335);
INSERT INTO public.notice VALUES (19158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699197733);
INSERT INTO public.notice VALUES (19159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699198334);
INSERT INTO public.notice VALUES (19160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699198934);
INSERT INTO public.notice VALUES (19161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699199533);
INSERT INTO public.notice VALUES (19162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699200134);
INSERT INTO public.notice VALUES (19163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699200735);
INSERT INTO public.notice VALUES (19164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699201333);
INSERT INTO public.notice VALUES (19165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699201934);
INSERT INTO public.notice VALUES (19166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699202535);
INSERT INTO public.notice VALUES (19168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699203735);
INSERT INTO public.notice VALUES (19169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699204334);
INSERT INTO public.notice VALUES (19190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699216936);
INSERT INTO public.notice VALUES (19191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699217537);
INSERT INTO public.notice VALUES (19192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699218135);
INSERT INTO public.notice VALUES (19193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699218734);
INSERT INTO public.notice VALUES (19175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699207934);
INSERT INTO public.notice VALUES (19176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699208533);
INSERT INTO public.notice VALUES (19177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699209135);
INSERT INTO public.notice VALUES (19178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699209735);
INSERT INTO public.notice VALUES (19179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699210334);
INSERT INTO public.notice VALUES (19180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699210936);
INSERT INTO public.notice VALUES (19181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699211535);
INSERT INTO public.notice VALUES (19182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699212135);
INSERT INTO public.notice VALUES (19183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699212733);
INSERT INTO public.notice VALUES (19184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699213335);
INSERT INTO public.notice VALUES (19185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699213934);
INSERT INTO public.notice VALUES (19186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699214534);
INSERT INTO public.notice VALUES (19187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699215133);
INSERT INTO public.notice VALUES (19188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699215734);
INSERT INTO public.notice VALUES (19189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699216334);
INSERT INTO public.notice VALUES (19194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699219334);
INSERT INTO public.notice VALUES (19195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699219935);
INSERT INTO public.notice VALUES (19197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699221133);
INSERT INTO public.notice VALUES (19198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699221736);
INSERT INTO public.notice VALUES (25620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703060108);
INSERT INTO public.notice VALUES (26365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703507435);
INSERT INTO public.notice VALUES (26367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703508636);
INSERT INTO public.notice VALUES (26950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703858435);
INSERT INTO public.notice VALUES (26953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703860235);
INSERT INTO public.notice VALUES (26954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703860834);
INSERT INTO public.notice VALUES (26957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703862635);
INSERT INTO public.notice VALUES (26958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703863236);
INSERT INTO public.notice VALUES (26962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703865636);
INSERT INTO public.notice VALUES (26963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703866236);
INSERT INTO public.notice VALUES (26964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703866835);
INSERT INTO public.notice VALUES (19196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699220535);
INSERT INTO public.notice VALUES (19199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699222336);
INSERT INTO public.notice VALUES (19200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699222935);
INSERT INTO public.notice VALUES (19201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699223534);
INSERT INTO public.notice VALUES (19202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699224135);
INSERT INTO public.notice VALUES (19203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699224734);
INSERT INTO public.notice VALUES (19204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699225334);
INSERT INTO public.notice VALUES (19205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699225933);
INSERT INTO public.notice VALUES (19206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699226535);
INSERT INTO public.notice VALUES (19207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699227133);
INSERT INTO public.notice VALUES (19208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699227734);
INSERT INTO public.notice VALUES (19209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699228336);
INSERT INTO public.notice VALUES (19210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699228935);
INSERT INTO public.notice VALUES (19211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699229534);
INSERT INTO public.notice VALUES (19212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699230134);
INSERT INTO public.notice VALUES (19213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699230735);
INSERT INTO public.notice VALUES (19214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699231334);
INSERT INTO public.notice VALUES (19215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699231934);
INSERT INTO public.notice VALUES (19216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699232536);
INSERT INTO public.notice VALUES (19217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699233135);
INSERT INTO public.notice VALUES (19218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699233734);
INSERT INTO public.notice VALUES (19219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699234333);
INSERT INTO public.notice VALUES (19220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699234934);
INSERT INTO public.notice VALUES (19221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699235534);
INSERT INTO public.notice VALUES (19222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699236133);
INSERT INTO public.notice VALUES (19223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699236732);
INSERT INTO public.notice VALUES (19224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699237334);
INSERT INTO public.notice VALUES (19225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699237933);
INSERT INTO public.notice VALUES (25621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703060708);
INSERT INTO public.notice VALUES (26368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703509242);
INSERT INTO public.notice VALUES (19226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699238533);
INSERT INTO public.notice VALUES (19227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699239134);
INSERT INTO public.notice VALUES (19228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699239734);
INSERT INTO public.notice VALUES (19229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699240333);
INSERT INTO public.notice VALUES (19230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699240932);
INSERT INTO public.notice VALUES (19231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699241534);
INSERT INTO public.notice VALUES (19232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699242133);
INSERT INTO public.notice VALUES (19233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699242733);
INSERT INTO public.notice VALUES (19234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699243332);
INSERT INTO public.notice VALUES (19235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699243937);
INSERT INTO public.notice VALUES (19236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699244533);
INSERT INTO public.notice VALUES (19237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699245133);
INSERT INTO public.notice VALUES (19238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699245734);
INSERT INTO public.notice VALUES (19239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699246333);
INSERT INTO public.notice VALUES (19240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699246933);
INSERT INTO public.notice VALUES (19241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699247534);
INSERT INTO public.notice VALUES (19242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699248134);
INSERT INTO public.notice VALUES (19243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699248733);
INSERT INTO public.notice VALUES (19244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699249333);
INSERT INTO public.notice VALUES (19245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699249934);
INSERT INTO public.notice VALUES (19246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699250534);
INSERT INTO public.notice VALUES (19247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699251134);
INSERT INTO public.notice VALUES (19248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699251734);
INSERT INTO public.notice VALUES (19249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699252334);
INSERT INTO public.notice VALUES (19250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699252934);
INSERT INTO public.notice VALUES (19251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699253533);
INSERT INTO public.notice VALUES (19252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699254134);
INSERT INTO public.notice VALUES (19253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699254734);
INSERT INTO public.notice VALUES (19254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699255334);
INSERT INTO public.notice VALUES (19255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699255932);
INSERT INTO public.notice VALUES (19256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699256534);
INSERT INTO public.notice VALUES (19257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699257133);
INSERT INTO public.notice VALUES (19258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699257733);
INSERT INTO public.notice VALUES (19259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699258334);
INSERT INTO public.notice VALUES (19260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699258933);
INSERT INTO public.notice VALUES (19261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699259533);
INSERT INTO public.notice VALUES (19262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699260133);
INSERT INTO public.notice VALUES (19271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699265534);
INSERT INTO public.notice VALUES (19272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699266133);
INSERT INTO public.notice VALUES (19273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699266732);
INSERT INTO public.notice VALUES (19274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699267334);
INSERT INTO public.notice VALUES (19275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699267933);
INSERT INTO public.notice VALUES (19276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699268533);
INSERT INTO public.notice VALUES (19277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699269134);
INSERT INTO public.notice VALUES (19278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699269734);
INSERT INTO public.notice VALUES (19263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699260734);
INSERT INTO public.notice VALUES (19264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699261333);
INSERT INTO public.notice VALUES (19265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699261933);
INSERT INTO public.notice VALUES (19266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699262534);
INSERT INTO public.notice VALUES (19267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699263134);
INSERT INTO public.notice VALUES (19268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699263733);
INSERT INTO public.notice VALUES (19269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699264332);
INSERT INTO public.notice VALUES (19270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699264934);
INSERT INTO public.notice VALUES (19292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699278134);
INSERT INTO public.notice VALUES (19293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699278734);
INSERT INTO public.notice VALUES (19294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699279333);
INSERT INTO public.notice VALUES (19295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699279934);
INSERT INTO public.notice VALUES (19296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699280534);
INSERT INTO public.notice VALUES (19297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699281133);
INSERT INTO public.notice VALUES (19299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699282334);
INSERT INTO public.notice VALUES (19279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699270334);
INSERT INTO public.notice VALUES (19280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699270933);
INSERT INTO public.notice VALUES (19281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699271534);
INSERT INTO public.notice VALUES (19282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699272135);
INSERT INTO public.notice VALUES (19283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699272735);
INSERT INTO public.notice VALUES (19284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699273334);
INSERT INTO public.notice VALUES (19285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699273934);
INSERT INTO public.notice VALUES (19286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699274533);
INSERT INTO public.notice VALUES (19287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699275133);
INSERT INTO public.notice VALUES (19288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699275736);
INSERT INTO public.notice VALUES (19289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699276334);
INSERT INTO public.notice VALUES (19290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699276934);
INSERT INTO public.notice VALUES (19291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699277533);
INSERT INTO public.notice VALUES (19298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699281733);
INSERT INTO public.notice VALUES (19313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699290736);
INSERT INTO public.notice VALUES (19300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699282934);
INSERT INTO public.notice VALUES (19301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699283533);
INSERT INTO public.notice VALUES (19302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699284132);
INSERT INTO public.notice VALUES (19303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699284734);
INSERT INTO public.notice VALUES (19304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699285335);
INSERT INTO public.notice VALUES (19305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699285935);
INSERT INTO public.notice VALUES (19306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699286535);
INSERT INTO public.notice VALUES (19307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699287134);
INSERT INTO public.notice VALUES (19308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699287734);
INSERT INTO public.notice VALUES (19309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699288333);
INSERT INTO public.notice VALUES (19310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699288935);
INSERT INTO public.notice VALUES (19311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699289533);
INSERT INTO public.notice VALUES (19312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699290133);
INSERT INTO public.notice VALUES (19319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699294333);
INSERT INTO public.notice VALUES (19320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699294936);
INSERT INTO public.notice VALUES (19314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699291335);
INSERT INTO public.notice VALUES (19315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699291933);
INSERT INTO public.notice VALUES (19316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699292532);
INSERT INTO public.notice VALUES (19317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699293135);
INSERT INTO public.notice VALUES (19318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699293734);
INSERT INTO public.notice VALUES (19322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699296134);
INSERT INTO public.notice VALUES (19323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699296733);
INSERT INTO public.notice VALUES (19324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699297334);
INSERT INTO public.notice VALUES (19325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699297934);
INSERT INTO public.notice VALUES (19329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699300334);
INSERT INTO public.notice VALUES (19330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699300936);
INSERT INTO public.notice VALUES (19331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699301536);
INSERT INTO public.notice VALUES (19333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699302735);
INSERT INTO public.notice VALUES (19337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699305134);
INSERT INTO public.notice VALUES (19338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699305734);
INSERT INTO public.notice VALUES (19321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699295535);
INSERT INTO public.notice VALUES (19326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699298534);
INSERT INTO public.notice VALUES (19327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699299134);
INSERT INTO public.notice VALUES (19328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699299735);
INSERT INTO public.notice VALUES (19332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699302134);
INSERT INTO public.notice VALUES (19334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699303334);
INSERT INTO public.notice VALUES (19335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699303934);
INSERT INTO public.notice VALUES (19336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699304534);
INSERT INTO public.notice VALUES (19340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699306933);
INSERT INTO public.notice VALUES (19341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699307533);
INSERT INTO public.notice VALUES (19342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699308135);
INSERT INTO public.notice VALUES (19343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699308734);
INSERT INTO public.notice VALUES (19344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699309334);
INSERT INTO public.notice VALUES (19345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699309933);
INSERT INTO public.notice VALUES (19346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699310535);
INSERT INTO public.notice VALUES (19339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699306334);
INSERT INTO public.notice VALUES (19349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699312335);
INSERT INTO public.notice VALUES (19350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699312935);
INSERT INTO public.notice VALUES (19351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699313533);
INSERT INTO public.notice VALUES (19352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699314132);
INSERT INTO public.notice VALUES (19353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699314735);
INSERT INTO public.notice VALUES (19354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699315335);
INSERT INTO public.notice VALUES (25622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703061307);
INSERT INTO public.notice VALUES (25623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703061907);
INSERT INTO public.notice VALUES (26370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703510436);
INSERT INTO public.notice VALUES (26375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703513436);
INSERT INTO public.notice VALUES (26951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703859036);
INSERT INTO public.notice VALUES (27360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704104436);
INSERT INTO public.notice VALUES (27362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704105635);
INSERT INTO public.notice VALUES (27673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704292235);
INSERT INTO public.notice VALUES (19347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699311135);
INSERT INTO public.notice VALUES (19348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699311733);
INSERT INTO public.notice VALUES (19355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699315933);
INSERT INTO public.notice VALUES (19356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699316534);
INSERT INTO public.notice VALUES (19357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699317134);
INSERT INTO public.notice VALUES (19358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699317734);
INSERT INTO public.notice VALUES (19359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699318333);
INSERT INTO public.notice VALUES (19360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699318935);
INSERT INTO public.notice VALUES (19361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699319534);
INSERT INTO public.notice VALUES (19362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699320134);
INSERT INTO public.notice VALUES (19363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699320733);
INSERT INTO public.notice VALUES (19364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699321334);
INSERT INTO public.notice VALUES (19365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699321933);
INSERT INTO public.notice VALUES (19366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699322537);
INSERT INTO public.notice VALUES (19367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699323134);
INSERT INTO public.notice VALUES (19368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699323733);
INSERT INTO public.notice VALUES (19369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699324333);
INSERT INTO public.notice VALUES (19370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699324933);
INSERT INTO public.notice VALUES (19371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699325534);
INSERT INTO public.notice VALUES (19372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699326133);
INSERT INTO public.notice VALUES (19373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699326733);
INSERT INTO public.notice VALUES (19374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699327334);
INSERT INTO public.notice VALUES (19375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699327934);
INSERT INTO public.notice VALUES (19376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699328533);
INSERT INTO public.notice VALUES (19377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699329132);
INSERT INTO public.notice VALUES (19378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699329734);
INSERT INTO public.notice VALUES (19379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699330333);
INSERT INTO public.notice VALUES (19380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699330933);
INSERT INTO public.notice VALUES (19403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699344734);
INSERT INTO public.notice VALUES (19404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699345333);
INSERT INTO public.notice VALUES (19381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699331534);
INSERT INTO public.notice VALUES (19382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699332134);
INSERT INTO public.notice VALUES (19383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699332733);
INSERT INTO public.notice VALUES (19384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699333333);
INSERT INTO public.notice VALUES (19385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699333934);
INSERT INTO public.notice VALUES (19386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699334534);
INSERT INTO public.notice VALUES (19387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699335134);
INSERT INTO public.notice VALUES (19388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699335735);
INSERT INTO public.notice VALUES (19389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699336335);
INSERT INTO public.notice VALUES (19390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699336934);
INSERT INTO public.notice VALUES (19391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699337533);
INSERT INTO public.notice VALUES (19392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699338134);
INSERT INTO public.notice VALUES (19393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699338733);
INSERT INTO public.notice VALUES (19394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699339333);
INSERT INTO public.notice VALUES (19395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699339932);
INSERT INTO public.notice VALUES (19396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699340534);
INSERT INTO public.notice VALUES (19397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699341134);
INSERT INTO public.notice VALUES (19398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699341733);
INSERT INTO public.notice VALUES (19399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699342334);
INSERT INTO public.notice VALUES (19400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699342934);
INSERT INTO public.notice VALUES (19401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699343533);
INSERT INTO public.notice VALUES (19402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699344133);
INSERT INTO public.notice VALUES (19414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699351335);
INSERT INTO public.notice VALUES (19415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699351933);
INSERT INTO public.notice VALUES (25624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703062508);
INSERT INTO public.notice VALUES (25627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703064307);
INSERT INTO public.notice VALUES (25630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703066107);
INSERT INTO public.notice VALUES (25631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703066707);
INSERT INTO public.notice VALUES (25636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703069708);
INSERT INTO public.notice VALUES (25638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703070907);
INSERT INTO public.notice VALUES (19405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699345933);
INSERT INTO public.notice VALUES (19406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699346533);
INSERT INTO public.notice VALUES (19407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699347134);
INSERT INTO public.notice VALUES (19408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699347733);
INSERT INTO public.notice VALUES (19409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699348333);
INSERT INTO public.notice VALUES (19410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699348935);
INSERT INTO public.notice VALUES (19411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699349534);
INSERT INTO public.notice VALUES (19412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699350133);
INSERT INTO public.notice VALUES (19413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699350733);
INSERT INTO public.notice VALUES (19416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699352533);
INSERT INTO public.notice VALUES (19417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699353134);
INSERT INTO public.notice VALUES (19418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699353734);
INSERT INTO public.notice VALUES (19419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699354333);
INSERT INTO public.notice VALUES (19420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699354933);
INSERT INTO public.notice VALUES (19421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699355534);
INSERT INTO public.notice VALUES (19422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699356134);
INSERT INTO public.notice VALUES (19423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699356734);
INSERT INTO public.notice VALUES (19424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699357334);
INSERT INTO public.notice VALUES (19425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699357934);
INSERT INTO public.notice VALUES (19426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699358533);
INSERT INTO public.notice VALUES (19427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699359133);
INSERT INTO public.notice VALUES (19428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699359734);
INSERT INTO public.notice VALUES (19429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699360334);
INSERT INTO public.notice VALUES (19430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699360933);
INSERT INTO public.notice VALUES (19431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699361534);
INSERT INTO public.notice VALUES (19432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699362135);
INSERT INTO public.notice VALUES (19433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699362734);
INSERT INTO public.notice VALUES (19434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699363334);
INSERT INTO public.notice VALUES (19435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699363935);
INSERT INTO public.notice VALUES (19436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699364534);
INSERT INTO public.notice VALUES (19437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699365133);
INSERT INTO public.notice VALUES (19438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699365736);
INSERT INTO public.notice VALUES (19440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699366934);
INSERT INTO public.notice VALUES (19441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699367533);
INSERT INTO public.notice VALUES (19442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699368134);
INSERT INTO public.notice VALUES (19443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699368735);
INSERT INTO public.notice VALUES (19444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699369333);
INSERT INTO public.notice VALUES (19445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699369933);
INSERT INTO public.notice VALUES (19446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699370534);
INSERT INTO public.notice VALUES (19455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699375933);
INSERT INTO public.notice VALUES (25625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703063108);
INSERT INTO public.notice VALUES (26371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703511036);
INSERT INTO public.notice VALUES (26372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703511635);
INSERT INTO public.notice VALUES (26952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703859636);
INSERT INTO public.notice VALUES (26955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703861436);
INSERT INTO public.notice VALUES (19439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699366334);
INSERT INTO public.notice VALUES (19447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699371134);
INSERT INTO public.notice VALUES (19448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699371733);
INSERT INTO public.notice VALUES (19449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699372332);
INSERT INTO public.notice VALUES (19450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699372934);
INSERT INTO public.notice VALUES (19451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699373533);
INSERT INTO public.notice VALUES (19452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699374134);
INSERT INTO public.notice VALUES (19453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699374734);
INSERT INTO public.notice VALUES (19454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699375334);
INSERT INTO public.notice VALUES (19456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699376533);
INSERT INTO public.notice VALUES (19457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699377135);
INSERT INTO public.notice VALUES (19458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699377736);
INSERT INTO public.notice VALUES (19459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699378333);
INSERT INTO public.notice VALUES (19460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699378935);
INSERT INTO public.notice VALUES (19461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699379535);
INSERT INTO public.notice VALUES (19462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699380133);
INSERT INTO public.notice VALUES (19463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699380733);
INSERT INTO public.notice VALUES (19464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699381335);
INSERT INTO public.notice VALUES (19465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699381934);
INSERT INTO public.notice VALUES (19473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699386734);
INSERT INTO public.notice VALUES (19474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699387335);
INSERT INTO public.notice VALUES (19475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699387935);
INSERT INTO public.notice VALUES (19476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699388534);
INSERT INTO public.notice VALUES (19508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699407734);
INSERT INTO public.notice VALUES (19509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699408334);
INSERT INTO public.notice VALUES (19510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699408934);
INSERT INTO public.notice VALUES (19511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699409533);
INSERT INTO public.notice VALUES (19531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699421534);
INSERT INTO public.notice VALUES (19532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699422134);
INSERT INTO public.notice VALUES (19533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699422733);
INSERT INTO public.notice VALUES (19466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699382534);
INSERT INTO public.notice VALUES (19467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699383136);
INSERT INTO public.notice VALUES (19468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699383735);
INSERT INTO public.notice VALUES (19469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699384335);
INSERT INTO public.notice VALUES (19470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699384934);
INSERT INTO public.notice VALUES (19471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699385535);
INSERT INTO public.notice VALUES (19472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699386135);
INSERT INTO public.notice VALUES (19477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699389134);
INSERT INTO public.notice VALUES (19478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699389735);
INSERT INTO public.notice VALUES (19479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699390335);
INSERT INTO public.notice VALUES (19480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699390934);
INSERT INTO public.notice VALUES (19481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699391532);
INSERT INTO public.notice VALUES (19482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699392135);
INSERT INTO public.notice VALUES (19483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699392734);
INSERT INTO public.notice VALUES (19484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699393333);
INSERT INTO public.notice VALUES (19485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699393939);
INSERT INTO public.notice VALUES (19486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699394534);
INSERT INTO public.notice VALUES (19487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699395133);
INSERT INTO public.notice VALUES (19488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699395734);
INSERT INTO public.notice VALUES (19489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699396335);
INSERT INTO public.notice VALUES (19490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699396934);
INSERT INTO public.notice VALUES (19491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699397534);
INSERT INTO public.notice VALUES (19492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699398135);
INSERT INTO public.notice VALUES (19493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699398735);
INSERT INTO public.notice VALUES (19494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699399335);
INSERT INTO public.notice VALUES (19495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699399932);
INSERT INTO public.notice VALUES (19496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699400534);
INSERT INTO public.notice VALUES (19497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699401134);
INSERT INTO public.notice VALUES (19498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699401733);
INSERT INTO public.notice VALUES (19499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699402335);
INSERT INTO public.notice VALUES (19500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699402935);
INSERT INTO public.notice VALUES (19501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699403534);
INSERT INTO public.notice VALUES (19502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699404134);
INSERT INTO public.notice VALUES (19503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699404734);
INSERT INTO public.notice VALUES (19504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699405333);
INSERT INTO public.notice VALUES (19505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699405934);
INSERT INTO public.notice VALUES (19506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699406533);
INSERT INTO public.notice VALUES (19507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699407135);
INSERT INTO public.notice VALUES (19512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699410133);
INSERT INTO public.notice VALUES (19513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699410732);
INSERT INTO public.notice VALUES (19514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699411334);
INSERT INTO public.notice VALUES (19515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699411933);
INSERT INTO public.notice VALUES (19516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699412533);
INSERT INTO public.notice VALUES (19517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699413134);
INSERT INTO public.notice VALUES (19518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699413734);
INSERT INTO public.notice VALUES (19519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699414333);
INSERT INTO public.notice VALUES (19520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699414932);
INSERT INTO public.notice VALUES (19521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699415535);
INSERT INTO public.notice VALUES (19522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699416134);
INSERT INTO public.notice VALUES (19523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699416733);
INSERT INTO public.notice VALUES (19524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699417334);
INSERT INTO public.notice VALUES (19525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699417934);
INSERT INTO public.notice VALUES (19526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699418533);
INSERT INTO public.notice VALUES (19527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699419133);
INSERT INTO public.notice VALUES (19528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699419735);
INSERT INTO public.notice VALUES (19529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699420334);
INSERT INTO public.notice VALUES (19530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699420934);
INSERT INTO public.notice VALUES (19535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699423935);
INSERT INTO public.notice VALUES (19536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699424533);
INSERT INTO public.notice VALUES (19537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699425133);
INSERT INTO public.notice VALUES (19534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699423336);
INSERT INTO public.notice VALUES (19556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699436534);
INSERT INTO public.notice VALUES (19557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699437134);
INSERT INTO public.notice VALUES (19558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699437733);
INSERT INTO public.notice VALUES (19559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699438333);
INSERT INTO public.notice VALUES (19560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699438934);
INSERT INTO public.notice VALUES (19561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699439533);
INSERT INTO public.notice VALUES (19562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699440133);
INSERT INTO public.notice VALUES (19563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699440733);
INSERT INTO public.notice VALUES (19564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699441334);
INSERT INTO public.notice VALUES (19565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699441933);
INSERT INTO public.notice VALUES (19566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699442534);
INSERT INTO public.notice VALUES (19567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699443136);
INSERT INTO public.notice VALUES (19568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699443734);
INSERT INTO public.notice VALUES (19569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699444333);
INSERT INTO public.notice VALUES (19538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699425734);
INSERT INTO public.notice VALUES (19539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699426334);
INSERT INTO public.notice VALUES (19540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699426933);
INSERT INTO public.notice VALUES (19541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699427533);
INSERT INTO public.notice VALUES (19542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699428134);
INSERT INTO public.notice VALUES (19543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699428741);
INSERT INTO public.notice VALUES (19544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699429333);
INSERT INTO public.notice VALUES (19545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699429932);
INSERT INTO public.notice VALUES (19546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699430535);
INSERT INTO public.notice VALUES (19547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699431133);
INSERT INTO public.notice VALUES (19548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699431733);
INSERT INTO public.notice VALUES (19549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699432334);
INSERT INTO public.notice VALUES (19550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699432937);
INSERT INTO public.notice VALUES (19551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699433533);
INSERT INTO public.notice VALUES (19552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699434133);
INSERT INTO public.notice VALUES (19553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699434734);
INSERT INTO public.notice VALUES (19554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699435334);
INSERT INTO public.notice VALUES (19555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699435933);
INSERT INTO public.notice VALUES (19571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699445535);
INSERT INTO public.notice VALUES (19572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699446134);
INSERT INTO public.notice VALUES (19573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699446733);
INSERT INTO public.notice VALUES (25626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703063708);
INSERT INTO public.notice VALUES (25628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703064906);
INSERT INTO public.notice VALUES (26373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703512235);
INSERT INTO public.notice VALUES (26956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703862047);
INSERT INTO public.notice VALUES (26959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703863836);
INSERT INTO public.notice VALUES (26960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703864435);
INSERT INTO public.notice VALUES (26961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703865035);
INSERT INTO public.notice VALUES (26965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703867434);
INSERT INTO public.notice VALUES (27361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704105036);
INSERT INTO public.notice VALUES (19570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699444932);
INSERT INTO public.notice VALUES (19574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699447335);
INSERT INTO public.notice VALUES (19575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699447935);
INSERT INTO public.notice VALUES (19576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699448534);
INSERT INTO public.notice VALUES (19577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699449133);
INSERT INTO public.notice VALUES (19578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699449734);
INSERT INTO public.notice VALUES (19579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699450333);
INSERT INTO public.notice VALUES (19580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699450934);
INSERT INTO public.notice VALUES (19581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699451533);
INSERT INTO public.notice VALUES (19582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699452136);
INSERT INTO public.notice VALUES (19583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699452733);
INSERT INTO public.notice VALUES (19584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699453334);
INSERT INTO public.notice VALUES (19585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699453934);
INSERT INTO public.notice VALUES (19586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699454534);
INSERT INTO public.notice VALUES (19587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699455133);
INSERT INTO public.notice VALUES (19588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699455733);
INSERT INTO public.notice VALUES (19589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699456334);
INSERT INTO public.notice VALUES (19590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699456934);
INSERT INTO public.notice VALUES (19591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699457534);
INSERT INTO public.notice VALUES (19592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699458135);
INSERT INTO public.notice VALUES (19593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699458734);
INSERT INTO public.notice VALUES (19594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699459334);
INSERT INTO public.notice VALUES (19595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699459934);
INSERT INTO public.notice VALUES (19596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699460536);
INSERT INTO public.notice VALUES (19597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699461134);
INSERT INTO public.notice VALUES (19598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1699461743);
INSERT INTO public.notice VALUES (19599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699462332);
INSERT INTO public.notice VALUES (19600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699462935);
INSERT INTO public.notice VALUES (19601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699463534);
INSERT INTO public.notice VALUES (19602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699464134);
INSERT INTO public.notice VALUES (19603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699464736);
INSERT INTO public.notice VALUES (19604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699465335);
INSERT INTO public.notice VALUES (19637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699466966);
INSERT INTO public.notice VALUES (19638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699467562);
INSERT INTO public.notice VALUES (19639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699468164);
INSERT INTO public.notice VALUES (19640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699468763);
INSERT INTO public.notice VALUES (19641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699469363);
INSERT INTO public.notice VALUES (19642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699469963);
INSERT INTO public.notice VALUES (19643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699470564);
INSERT INTO public.notice VALUES (19644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699471163);
INSERT INTO public.notice VALUES (19645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699471762);
INSERT INTO public.notice VALUES (19646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699472365);
INSERT INTO public.notice VALUES (19647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699472963);
INSERT INTO public.notice VALUES (19648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699473563);
INSERT INTO public.notice VALUES (19649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699474163);
INSERT INTO public.notice VALUES (19650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699474764);
INSERT INTO public.notice VALUES (19651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699475362);
INSERT INTO public.notice VALUES (19652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699475963);
INSERT INTO public.notice VALUES (19653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699476564);
INSERT INTO public.notice VALUES (19654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699477164);
INSERT INTO public.notice VALUES (19655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699477763);
INSERT INTO public.notice VALUES (19659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699480162);
INSERT INTO public.notice VALUES (19660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699480762);
INSERT INTO public.notice VALUES (19661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699481364);
INSERT INTO public.notice VALUES (19662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699481963);
INSERT INTO public.notice VALUES (19663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699482562);
INSERT INTO public.notice VALUES (19664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699483161);
INSERT INTO public.notice VALUES (19665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699483765);
INSERT INTO public.notice VALUES (19666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699484363);
INSERT INTO public.notice VALUES (19673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699488563);
INSERT INTO public.notice VALUES (19674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699489162);
INSERT INTO public.notice VALUES (19656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699478362);
INSERT INTO public.notice VALUES (19657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699478963);
INSERT INTO public.notice VALUES (19658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699479563);
INSERT INTO public.notice VALUES (19667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699484963);
INSERT INTO public.notice VALUES (19668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699485564);
INSERT INTO public.notice VALUES (19669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699486163);
INSERT INTO public.notice VALUES (19670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699486763);
INSERT INTO public.notice VALUES (19671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699487362);
INSERT INTO public.notice VALUES (19672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699487963);
INSERT INTO public.notice VALUES (19678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699491562);
INSERT INTO public.notice VALUES (19679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699492164);
INSERT INTO public.notice VALUES (19680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699492764);
INSERT INTO public.notice VALUES (19681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699493363);
INSERT INTO public.notice VALUES (19682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699493962);
INSERT INTO public.notice VALUES (19683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699494564);
INSERT INTO public.notice VALUES (19675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699489762);
INSERT INTO public.notice VALUES (19676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699490364);
INSERT INTO public.notice VALUES (19677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699490963);
INSERT INTO public.notice VALUES (25629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703065508);
INSERT INTO public.notice VALUES (26374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703512836);
INSERT INTO public.notice VALUES (26377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703514637);
INSERT INTO public.notice VALUES (26966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703868036);
INSERT INTO public.notice VALUES (27363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704106235);
INSERT INTO public.notice VALUES (27364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704106844);
INSERT INTO public.notice VALUES (27366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704108035);
INSERT INTO public.notice VALUES (27674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704292837);
INSERT INTO public.notice VALUES (27869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704409835);
INSERT INTO public.notice VALUES (27957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704462635);
INSERT INTO public.notice VALUES (27990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704482436);
INSERT INTO public.notice VALUES (27991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704483036);
INSERT INTO public.notice VALUES (19684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699495163);
INSERT INTO public.notice VALUES (19685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699495763);
INSERT INTO public.notice VALUES (19686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699496361);
INSERT INTO public.notice VALUES (19687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699496965);
INSERT INTO public.notice VALUES (19688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699497563);
INSERT INTO public.notice VALUES (19689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699498162);
INSERT INTO public.notice VALUES (19690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699498764);
INSERT INTO public.notice VALUES (19691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699499363);
INSERT INTO public.notice VALUES (19692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699499963);
INSERT INTO public.notice VALUES (19693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699500561);
INSERT INTO public.notice VALUES (19694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699501163);
INSERT INTO public.notice VALUES (19695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699501762);
INSERT INTO public.notice VALUES (19696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699502363);
INSERT INTO public.notice VALUES (19697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699502964);
INSERT INTO public.notice VALUES (19698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699503563);
INSERT INTO public.notice VALUES (19699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699504162);
INSERT INTO public.notice VALUES (19700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699504972);
INSERT INTO public.notice VALUES (19701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699505571);
INSERT INTO public.notice VALUES (19702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699506170);
INSERT INTO public.notice VALUES (19703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699506770);
INSERT INTO public.notice VALUES (19704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699507371);
INSERT INTO public.notice VALUES (19705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699507971);
INSERT INTO public.notice VALUES (19706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699508570);
INSERT INTO public.notice VALUES (19707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699509169);
INSERT INTO public.notice VALUES (19708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699509771);
INSERT INTO public.notice VALUES (19709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699510371);
INSERT INTO public.notice VALUES (19710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699510970);
INSERT INTO public.notice VALUES (19711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699511569);
INSERT INTO public.notice VALUES (19712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699512171);
INSERT INTO public.notice VALUES (19713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699512770);
INSERT INTO public.notice VALUES (19714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699513370);
INSERT INTO public.notice VALUES (19715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699513972);
INSERT INTO public.notice VALUES (19732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699524170);
INSERT INTO public.notice VALUES (19733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699524769);
INSERT INTO public.notice VALUES (19734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699525371);
INSERT INTO public.notice VALUES (25632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703067308);
INSERT INTO public.notice VALUES (25633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703067908);
INSERT INTO public.notice VALUES (25634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703068517);
INSERT INTO public.notice VALUES (26376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703514035);
INSERT INTO public.notice VALUES (26381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703517036);
INSERT INTO public.notice VALUES (26967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703868635);
INSERT INTO public.notice VALUES (27365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704107439);
INSERT INTO public.notice VALUES (27368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704109236);
INSERT INTO public.notice VALUES (27370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704110435);
INSERT INTO public.notice VALUES (27372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704111636);
INSERT INTO public.notice VALUES (19716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699514571);
INSERT INTO public.notice VALUES (19717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699515170);
INSERT INTO public.notice VALUES (19718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699515769);
INSERT INTO public.notice VALUES (19719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699516371);
INSERT INTO public.notice VALUES (19720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699516970);
INSERT INTO public.notice VALUES (19721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699517570);
INSERT INTO public.notice VALUES (19722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699518170);
INSERT INTO public.notice VALUES (19723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699518771);
INSERT INTO public.notice VALUES (19724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699519371);
INSERT INTO public.notice VALUES (19725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699519970);
INSERT INTO public.notice VALUES (19726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699520571);
INSERT INTO public.notice VALUES (19727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699521171);
INSERT INTO public.notice VALUES (19728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699521770);
INSERT INTO public.notice VALUES (19729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699522370);
INSERT INTO public.notice VALUES (19730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699522971);
INSERT INTO public.notice VALUES (19731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699523570);
INSERT INTO public.notice VALUES (19735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699525970);
INSERT INTO public.notice VALUES (19736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699526570);
INSERT INTO public.notice VALUES (19737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699527171);
INSERT INTO public.notice VALUES (19738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699527770);
INSERT INTO public.notice VALUES (19739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699528371);
INSERT INTO public.notice VALUES (19740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699528972);
INSERT INTO public.notice VALUES (19741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699529572);
INSERT INTO public.notice VALUES (19742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699530171);
INSERT INTO public.notice VALUES (19743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699530770);
INSERT INTO public.notice VALUES (19744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699531371);
INSERT INTO public.notice VALUES (19745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699531971);
INSERT INTO public.notice VALUES (19746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699532571);
INSERT INTO public.notice VALUES (19747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699533170);
INSERT INTO public.notice VALUES (19748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699533771);
INSERT INTO public.notice VALUES (19749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699534372);
INSERT INTO public.notice VALUES (19750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699534970);
INSERT INTO public.notice VALUES (19751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699535569);
INSERT INTO public.notice VALUES (19752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699536171);
INSERT INTO public.notice VALUES (19753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699536770);
INSERT INTO public.notice VALUES (19754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699537370);
INSERT INTO public.notice VALUES (19755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699537974);
INSERT INTO public.notice VALUES (19756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699538571);
INSERT INTO public.notice VALUES (19757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699539170);
INSERT INTO public.notice VALUES (19758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699539770);
INSERT INTO public.notice VALUES (19759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699540371);
INSERT INTO public.notice VALUES (19760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699540970);
INSERT INTO public.notice VALUES (19761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699541571);
INSERT INTO public.notice VALUES (19762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699542169);
INSERT INTO public.notice VALUES (19763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699542771);
INSERT INTO public.notice VALUES (19764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699543372);
INSERT INTO public.notice VALUES (19765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699543970);
INSERT INTO public.notice VALUES (19767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699545171);
INSERT INTO public.notice VALUES (19768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699545770);
INSERT INTO public.notice VALUES (19769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699546370);
INSERT INTO public.notice VALUES (19770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699546971);
INSERT INTO public.notice VALUES (25635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703069108);
INSERT INTO public.notice VALUES (25637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703070307);
INSERT INTO public.notice VALUES (25640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703072108);
INSERT INTO public.notice VALUES (25642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703073309);
INSERT INTO public.notice VALUES (26378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703515237);
INSERT INTO public.notice VALUES (26379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703515835);
INSERT INTO public.notice VALUES (26968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703869235);
INSERT INTO public.notice VALUES (26969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703869836);
INSERT INTO public.notice VALUES (27367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704108635);
INSERT INTO public.notice VALUES (19766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699544571);
INSERT INTO public.notice VALUES (19771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699547571);
INSERT INTO public.notice VALUES (19772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699548170);
INSERT INTO public.notice VALUES (19773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699548770);
INSERT INTO public.notice VALUES (19774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699549371);
INSERT INTO public.notice VALUES (19775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699549971);
INSERT INTO public.notice VALUES (19776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699550571);
INSERT INTO public.notice VALUES (19777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699551172);
INSERT INTO public.notice VALUES (19778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699551771);
INSERT INTO public.notice VALUES (19779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699552370);
INSERT INTO public.notice VALUES (19780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699552971);
INSERT INTO public.notice VALUES (19781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699553571);
INSERT INTO public.notice VALUES (19782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699554172);
INSERT INTO public.notice VALUES (19783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699554771);
INSERT INTO public.notice VALUES (19784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699555371);
INSERT INTO public.notice VALUES (19785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699555972);
INSERT INTO public.notice VALUES (19786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699556572);
INSERT INTO public.notice VALUES (19795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699561972);
INSERT INTO public.notice VALUES (19796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699562572);
INSERT INTO public.notice VALUES (19797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699563171);
INSERT INTO public.notice VALUES (19798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699563771);
INSERT INTO public.notice VALUES (19799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699564370);
INSERT INTO public.notice VALUES (19800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699564972);
INSERT INTO public.notice VALUES (19801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699565572);
INSERT INTO public.notice VALUES (19802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699566170);
INSERT INTO public.notice VALUES (19803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699566774);
INSERT INTO public.notice VALUES (19804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699567372);
INSERT INTO public.notice VALUES (19805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699567972);
INSERT INTO public.notice VALUES (25639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703071508);
INSERT INTO public.notice VALUES (25641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703072707);
INSERT INTO public.notice VALUES (19787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699557170);
INSERT INTO public.notice VALUES (19788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699557769);
INSERT INTO public.notice VALUES (19789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699558371);
INSERT INTO public.notice VALUES (19790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699558971);
INSERT INTO public.notice VALUES (19791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699559571);
INSERT INTO public.notice VALUES (19792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699560176);
INSERT INTO public.notice VALUES (19793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699560771);
INSERT INTO public.notice VALUES (19794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699561370);
INSERT INTO public.notice VALUES (19806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699568571);
INSERT INTO public.notice VALUES (19807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699569173);
INSERT INTO public.notice VALUES (19808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699569771);
INSERT INTO public.notice VALUES (19809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699570371);
INSERT INTO public.notice VALUES (19810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699570970);
INSERT INTO public.notice VALUES (19811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699571571);
INSERT INTO public.notice VALUES (19812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699572171);
INSERT INTO public.notice VALUES (19813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699572771);
INSERT INTO public.notice VALUES (19825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699579971);
INSERT INTO public.notice VALUES (19826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699580571);
INSERT INTO public.notice VALUES (19827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699581170);
INSERT INTO public.notice VALUES (19828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699581770);
INSERT INTO public.notice VALUES (19829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699582371);
INSERT INTO public.notice VALUES (19830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699582970);
INSERT INTO public.notice VALUES (19831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699583570);
INSERT INTO public.notice VALUES (19832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699584169);
INSERT INTO public.notice VALUES (19833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699584772);
INSERT INTO public.notice VALUES (19834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699585370);
INSERT INTO public.notice VALUES (19835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699585970);
INSERT INTO public.notice VALUES (19836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699586571);
INSERT INTO public.notice VALUES (19837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699587172);
INSERT INTO public.notice VALUES (19838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699587770);
INSERT INTO public.notice VALUES (19814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699573373);
INSERT INTO public.notice VALUES (19815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699573971);
INSERT INTO public.notice VALUES (19816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699574570);
INSERT INTO public.notice VALUES (19817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699575171);
INSERT INTO public.notice VALUES (19818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699575772);
INSERT INTO public.notice VALUES (19819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699576371);
INSERT INTO public.notice VALUES (19820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699576973);
INSERT INTO public.notice VALUES (19821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699577570);
INSERT INTO public.notice VALUES (19822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699578172);
INSERT INTO public.notice VALUES (19823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699578770);
INSERT INTO public.notice VALUES (19824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699579370);
INSERT INTO public.notice VALUES (19842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699590170);
INSERT INTO public.notice VALUES (19847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699593171);
INSERT INTO public.notice VALUES (19848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699593771);
INSERT INTO public.notice VALUES (19849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699594370);
INSERT INTO public.notice VALUES (19839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699588370);
INSERT INTO public.notice VALUES (19840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699588971);
INSERT INTO public.notice VALUES (19841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699589570);
INSERT INTO public.notice VALUES (19843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699590771);
INSERT INTO public.notice VALUES (19844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699591371);
INSERT INTO public.notice VALUES (19845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699591970);
INSERT INTO public.notice VALUES (19846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699592570);
INSERT INTO public.notice VALUES (19858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699599772);
INSERT INTO public.notice VALUES (19859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699600371);
INSERT INTO public.notice VALUES (19860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699600970);
INSERT INTO public.notice VALUES (19861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699601570);
INSERT INTO public.notice VALUES (19862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699602171);
INSERT INTO public.notice VALUES (19863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699602771);
INSERT INTO public.notice VALUES (19864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699603370);
INSERT INTO public.notice VALUES (19865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699603970);
INSERT INTO public.notice VALUES (19850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699594970);
INSERT INTO public.notice VALUES (19851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699595571);
INSERT INTO public.notice VALUES (19852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699596172);
INSERT INTO public.notice VALUES (19853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699596771);
INSERT INTO public.notice VALUES (19854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699597371);
INSERT INTO public.notice VALUES (19855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699597971);
INSERT INTO public.notice VALUES (19856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699598571);
INSERT INTO public.notice VALUES (19857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699599170);
INSERT INTO public.notice VALUES (19869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699606371);
INSERT INTO public.notice VALUES (19870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699606971);
INSERT INTO public.notice VALUES (19871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699607571);
INSERT INTO public.notice VALUES (19898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699623773);
INSERT INTO public.notice VALUES (19899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699624372);
INSERT INTO public.notice VALUES (19900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699624971);
INSERT INTO public.notice VALUES (19901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699625571);
INSERT INTO public.notice VALUES (19866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699604571);
INSERT INTO public.notice VALUES (19867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699605170);
INSERT INTO public.notice VALUES (19868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699605770);
INSERT INTO public.notice VALUES (19872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699608170);
INSERT INTO public.notice VALUES (19873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699608772);
INSERT INTO public.notice VALUES (19874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699609370);
INSERT INTO public.notice VALUES (19875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699609970);
INSERT INTO public.notice VALUES (19876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699610571);
INSERT INTO public.notice VALUES (19877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699611171);
INSERT INTO public.notice VALUES (19878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699611770);
INSERT INTO public.notice VALUES (19879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699612370);
INSERT INTO public.notice VALUES (19880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699612971);
INSERT INTO public.notice VALUES (19881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699613571);
INSERT INTO public.notice VALUES (19882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699614170);
INSERT INTO public.notice VALUES (19883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699614770);
INSERT INTO public.notice VALUES (19884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699615371);
INSERT INTO public.notice VALUES (19885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699615971);
INSERT INTO public.notice VALUES (19886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699616571);
INSERT INTO public.notice VALUES (19887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699617172);
INSERT INTO public.notice VALUES (19888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699617771);
INSERT INTO public.notice VALUES (19889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699618371);
INSERT INTO public.notice VALUES (19890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699618970);
INSERT INTO public.notice VALUES (19891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699619572);
INSERT INTO public.notice VALUES (19892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699620171);
INSERT INTO public.notice VALUES (19893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699620771);
INSERT INTO public.notice VALUES (19894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699621370);
INSERT INTO public.notice VALUES (19895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699621972);
INSERT INTO public.notice VALUES (19896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699622572);
INSERT INTO public.notice VALUES (19897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699623171);
INSERT INTO public.notice VALUES (19904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699627371);
INSERT INTO public.notice VALUES (19902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699626173);
INSERT INTO public.notice VALUES (19903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699626772);
INSERT INTO public.notice VALUES (19910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699630972);
INSERT INTO public.notice VALUES (19911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699631571);
INSERT INTO public.notice VALUES (19912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699632170);
INSERT INTO public.notice VALUES (19939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699648372);
INSERT INTO public.notice VALUES (19940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699648972);
INSERT INTO public.notice VALUES (19941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699649570);
INSERT INTO public.notice VALUES (19946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699652572);
INSERT INTO public.notice VALUES (19947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699653171);
INSERT INTO public.notice VALUES (19948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699653770);
INSERT INTO public.notice VALUES (19949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699654373);
INSERT INTO public.notice VALUES (25643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703073908);
INSERT INTO public.notice VALUES (25644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703074507);
INSERT INTO public.notice VALUES (25645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703075107);
INSERT INTO public.notice VALUES (19905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699627973);
INSERT INTO public.notice VALUES (19906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699628571);
INSERT INTO public.notice VALUES (19907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699629172);
INSERT INTO public.notice VALUES (19908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699629771);
INSERT INTO public.notice VALUES (19909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699630372);
INSERT INTO public.notice VALUES (19913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699632771);
INSERT INTO public.notice VALUES (19914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699633372);
INSERT INTO public.notice VALUES (19915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699633970);
INSERT INTO public.notice VALUES (19916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699634572);
INSERT INTO public.notice VALUES (19917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699635171);
INSERT INTO public.notice VALUES (19918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699635770);
INSERT INTO public.notice VALUES (19919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699636371);
INSERT INTO public.notice VALUES (19920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699636972);
INSERT INTO public.notice VALUES (19921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699637572);
INSERT INTO public.notice VALUES (19922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699638170);
INSERT INTO public.notice VALUES (19923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699638770);
INSERT INTO public.notice VALUES (19924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699639371);
INSERT INTO public.notice VALUES (19925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699639971);
INSERT INTO public.notice VALUES (19926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699640571);
INSERT INTO public.notice VALUES (19927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699641173);
INSERT INTO public.notice VALUES (19928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699641771);
INSERT INTO public.notice VALUES (19929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699642371);
INSERT INTO public.notice VALUES (19930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699642971);
INSERT INTO public.notice VALUES (19931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699643572);
INSERT INTO public.notice VALUES (19932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699644172);
INSERT INTO public.notice VALUES (19933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699644771);
INSERT INTO public.notice VALUES (19934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699645373);
INSERT INTO public.notice VALUES (19935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699645971);
INSERT INTO public.notice VALUES (19936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699646573);
INSERT INTO public.notice VALUES (19937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699647170);
INSERT INTO public.notice VALUES (19942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699650173);
INSERT INTO public.notice VALUES (19943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699650772);
INSERT INTO public.notice VALUES (19944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699651371);
INSERT INTO public.notice VALUES (19945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699651972);
INSERT INTO public.notice VALUES (19950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699654972);
INSERT INTO public.notice VALUES (19951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699655574);
INSERT INTO public.notice VALUES (19952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699656173);
INSERT INTO public.notice VALUES (19953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699656773);
INSERT INTO public.notice VALUES (19954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699657372);
INSERT INTO public.notice VALUES (19955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699657970);
INSERT INTO public.notice VALUES (19956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699658573);
INSERT INTO public.notice VALUES (19957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699659173);
INSERT INTO public.notice VALUES (19958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699659773);
INSERT INTO public.notice VALUES (19959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699660371);
INSERT INTO public.notice VALUES (19960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699660972);
INSERT INTO public.notice VALUES (19961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699661570);
INSERT INTO public.notice VALUES (19962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699662171);
INSERT INTO public.notice VALUES (19963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699662773);
INSERT INTO public.notice VALUES (19964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699663372);
INSERT INTO public.notice VALUES (19965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699663971);
INSERT INTO public.notice VALUES (19966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699664571);
INSERT INTO public.notice VALUES (19967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699665172);
INSERT INTO public.notice VALUES (19968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699665772);
INSERT INTO public.notice VALUES (19969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699666372);
INSERT INTO public.notice VALUES (19970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699666970);
INSERT INTO public.notice VALUES (19971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699667573);
INSERT INTO public.notice VALUES (19972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699668171);
INSERT INTO public.notice VALUES (19973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699668770);
INSERT INTO public.notice VALUES (19974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699669372);
INSERT INTO public.notice VALUES (19975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699669971);
INSERT INTO public.notice VALUES (19976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699670571);
INSERT INTO public.notice VALUES (19981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699673572);
INSERT INTO public.notice VALUES (19983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699674771);
INSERT INTO public.notice VALUES (19984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699675370);
INSERT INTO public.notice VALUES (19985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699675973);
INSERT INTO public.notice VALUES (19986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699676571);
INSERT INTO public.notice VALUES (19987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699677170);
INSERT INTO public.notice VALUES (19988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699677770);
INSERT INTO public.notice VALUES (19989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699678372);
INSERT INTO public.notice VALUES (19993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699680771);
INSERT INTO public.notice VALUES (19994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699681371);
INSERT INTO public.notice VALUES (19995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699681970);
INSERT INTO public.notice VALUES (19999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699684373);
INSERT INTO public.notice VALUES (20000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699684973);
INSERT INTO public.notice VALUES (20001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699685571);
INSERT INTO public.notice VALUES (19977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699671170);
INSERT INTO public.notice VALUES (19978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699671772);
INSERT INTO public.notice VALUES (19979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699672371);
INSERT INTO public.notice VALUES (19980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699672971);
INSERT INTO public.notice VALUES (19982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699674173);
INSERT INTO public.notice VALUES (19990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699678976);
INSERT INTO public.notice VALUES (19991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699679571);
INSERT INTO public.notice VALUES (19992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699680173);
INSERT INTO public.notice VALUES (19996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699682573);
INSERT INTO public.notice VALUES (19997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699683170);
INSERT INTO public.notice VALUES (19998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699683771);
INSERT INTO public.notice VALUES (20008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699689770);
INSERT INTO public.notice VALUES (20009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699690371);
INSERT INTO public.notice VALUES (20010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699690971);
INSERT INTO public.notice VALUES (20011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699691572);
INSERT INTO public.notice VALUES (20002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699686170);
INSERT INTO public.notice VALUES (20003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699686773);
INSERT INTO public.notice VALUES (20004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699687372);
INSERT INTO public.notice VALUES (20005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699687971);
INSERT INTO public.notice VALUES (20006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699688570);
INSERT INTO public.notice VALUES (20007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699689172);
INSERT INTO public.notice VALUES (20014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699693371);
INSERT INTO public.notice VALUES (20015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699693972);
INSERT INTO public.notice VALUES (20016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699694570);
INSERT INTO public.notice VALUES (20030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699702971);
INSERT INTO public.notice VALUES (20031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699703570);
INSERT INTO public.notice VALUES (20032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699704173);
INSERT INTO public.notice VALUES (20033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699704773);
INSERT INTO public.notice VALUES (20037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699707171);
INSERT INTO public.notice VALUES (20038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699707771);
INSERT INTO public.notice VALUES (20012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699692171);
INSERT INTO public.notice VALUES (20013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699692770);
INSERT INTO public.notice VALUES (20017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699695173);
INSERT INTO public.notice VALUES (20018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699695772);
INSERT INTO public.notice VALUES (20019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699696371);
INSERT INTO public.notice VALUES (20020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699696971);
INSERT INTO public.notice VALUES (20021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699697572);
INSERT INTO public.notice VALUES (20022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699698172);
INSERT INTO public.notice VALUES (20023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699698770);
INSERT INTO public.notice VALUES (20024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699699370);
INSERT INTO public.notice VALUES (20025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699699972);
INSERT INTO public.notice VALUES (20026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699700572);
INSERT INTO public.notice VALUES (20027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699701171);
INSERT INTO public.notice VALUES (20028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699701770);
INSERT INTO public.notice VALUES (20029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699702373);
INSERT INTO public.notice VALUES (20034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699705371);
INSERT INTO public.notice VALUES (20035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699705970);
INSERT INTO public.notice VALUES (20036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699706572);
INSERT INTO public.notice VALUES (20046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699712571);
INSERT INTO public.notice VALUES (20048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699713771);
INSERT INTO public.notice VALUES (20049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699714371);
INSERT INTO public.notice VALUES (20050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699714970);
INSERT INTO public.notice VALUES (20051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699715572);
INSERT INTO public.notice VALUES (20066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699724571);
INSERT INTO public.notice VALUES (20077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699731172);
INSERT INTO public.notice VALUES (20078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699731772);
INSERT INTO public.notice VALUES (20079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699732371);
INSERT INTO public.notice VALUES (20080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699732972);
INSERT INTO public.notice VALUES (20081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699733571);
INSERT INTO public.notice VALUES (20082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699734171);
INSERT INTO public.notice VALUES (20039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699708370);
INSERT INTO public.notice VALUES (20040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699708973);
INSERT INTO public.notice VALUES (20041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699709571);
INSERT INTO public.notice VALUES (20042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699710171);
INSERT INTO public.notice VALUES (20043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699710773);
INSERT INTO public.notice VALUES (20044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699711372);
INSERT INTO public.notice VALUES (20045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699711971);
INSERT INTO public.notice VALUES (20047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699713172);
INSERT INTO public.notice VALUES (20052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699716172);
INSERT INTO public.notice VALUES (20053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699716771);
INSERT INTO public.notice VALUES (20054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699717373);
INSERT INTO public.notice VALUES (20055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699717972);
INSERT INTO public.notice VALUES (20056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699718572);
INSERT INTO public.notice VALUES (20057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699719174);
INSERT INTO public.notice VALUES (20058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699719772);
INSERT INTO public.notice VALUES (20059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699720373);
INSERT INTO public.notice VALUES (20060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699720971);
INSERT INTO public.notice VALUES (20061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699721572);
INSERT INTO public.notice VALUES (20062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699722173);
INSERT INTO public.notice VALUES (20063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699722770);
INSERT INTO public.notice VALUES (20064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699723370);
INSERT INTO public.notice VALUES (20065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699723973);
INSERT INTO public.notice VALUES (20067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699725171);
INSERT INTO public.notice VALUES (20068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699725770);
INSERT INTO public.notice VALUES (20069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699726372);
INSERT INTO public.notice VALUES (20070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699726972);
INSERT INTO public.notice VALUES (20071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699727570);
INSERT INTO public.notice VALUES (20072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699728172);
INSERT INTO public.notice VALUES (20073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699728771);
INSERT INTO public.notice VALUES (20074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699729372);
INSERT INTO public.notice VALUES (20075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699729970);
INSERT INTO public.notice VALUES (20076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699730573);
INSERT INTO public.notice VALUES (20095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699741972);
INSERT INTO public.notice VALUES (20115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699753972);
INSERT INTO public.notice VALUES (20122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699758172);
INSERT INTO public.notice VALUES (20124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699759371);
INSERT INTO public.notice VALUES (20125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699759972);
INSERT INTO public.notice VALUES (20126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699760571);
INSERT INTO public.notice VALUES (20127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699761173);
INSERT INTO public.notice VALUES (20128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699761771);
INSERT INTO public.notice VALUES (25646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703075708);
INSERT INTO public.notice VALUES (26380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703516435);
INSERT INTO public.notice VALUES (26384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703518846);
INSERT INTO public.notice VALUES (26970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703870436);
INSERT INTO public.notice VALUES (26974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703872836);
INSERT INTO public.notice VALUES (20083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699734772);
INSERT INTO public.notice VALUES (20084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699735373);
INSERT INTO public.notice VALUES (20085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699735972);
INSERT INTO public.notice VALUES (20086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699736570);
INSERT INTO public.notice VALUES (20087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699737173);
INSERT INTO public.notice VALUES (20088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699737772);
INSERT INTO public.notice VALUES (20089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699738371);
INSERT INTO public.notice VALUES (20090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699738973);
INSERT INTO public.notice VALUES (20091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699739572);
INSERT INTO public.notice VALUES (20092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699740171);
INSERT INTO public.notice VALUES (20093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699740771);
INSERT INTO public.notice VALUES (20094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699741373);
INSERT INTO public.notice VALUES (20096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699742572);
INSERT INTO public.notice VALUES (20097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699743171);
INSERT INTO public.notice VALUES (20098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699743772);
INSERT INTO public.notice VALUES (20099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699744371);
INSERT INTO public.notice VALUES (20100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699744972);
INSERT INTO public.notice VALUES (20101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699745572);
INSERT INTO public.notice VALUES (20102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699746172);
INSERT INTO public.notice VALUES (20103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699746772);
INSERT INTO public.notice VALUES (20104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699747371);
INSERT INTO public.notice VALUES (20105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699747971);
INSERT INTO public.notice VALUES (20106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699748572);
INSERT INTO public.notice VALUES (20107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699749173);
INSERT INTO public.notice VALUES (20108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699749771);
INSERT INTO public.notice VALUES (20109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699750372);
INSERT INTO public.notice VALUES (20110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699750971);
INSERT INTO public.notice VALUES (20111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699751571);
INSERT INTO public.notice VALUES (20112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699752169);
INSERT INTO public.notice VALUES (20113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699752772);
INSERT INTO public.notice VALUES (20114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699753371);
INSERT INTO public.notice VALUES (20116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699754573);
INSERT INTO public.notice VALUES (20117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699755172);
INSERT INTO public.notice VALUES (20118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699755771);
INSERT INTO public.notice VALUES (20119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699756371);
INSERT INTO public.notice VALUES (20120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699756973);
INSERT INTO public.notice VALUES (20121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699757571);
INSERT INTO public.notice VALUES (20123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699758771);
INSERT INTO public.notice VALUES (20129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699762371);
INSERT INTO public.notice VALUES (20130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699762970);
INSERT INTO public.notice VALUES (20131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699763573);
INSERT INTO public.notice VALUES (20132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699764172);
INSERT INTO public.notice VALUES (20133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699764772);
INSERT INTO public.notice VALUES (20134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699765372);
INSERT INTO public.notice VALUES (20135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699765972);
INSERT INTO public.notice VALUES (20136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699766572);
INSERT INTO public.notice VALUES (20137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699767171);
INSERT INTO public.notice VALUES (20138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699767773);
INSERT INTO public.notice VALUES (20139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699768372);
INSERT INTO public.notice VALUES (20140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699768972);
INSERT INTO public.notice VALUES (20141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699769570);
INSERT INTO public.notice VALUES (20142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699770173);
INSERT INTO public.notice VALUES (20143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699770771);
INSERT INTO public.notice VALUES (20144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699771371);
INSERT INTO public.notice VALUES (20145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699771972);
INSERT INTO public.notice VALUES (20146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699772572);
INSERT INTO public.notice VALUES (20147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699773172);
INSERT INTO public.notice VALUES (20148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699773771);
INSERT INTO public.notice VALUES (20149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699774373);
INSERT INTO public.notice VALUES (20150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699774972);
INSERT INTO public.notice VALUES (20151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699775571);
INSERT INTO public.notice VALUES (20152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699776170);
INSERT INTO public.notice VALUES (20162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699782171);
INSERT INTO public.notice VALUES (20163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699782772);
INSERT INTO public.notice VALUES (20164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699783371);
INSERT INTO public.notice VALUES (20165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699783971);
INSERT INTO public.notice VALUES (20166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699784570);
INSERT INTO public.notice VALUES (20167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699785172);
INSERT INTO public.notice VALUES (20168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699785772);
INSERT INTO public.notice VALUES (20171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699787573);
INSERT INTO public.notice VALUES (20172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699788171);
INSERT INTO public.notice VALUES (20173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699788772);
INSERT INTO public.notice VALUES (20174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699789373);
INSERT INTO public.notice VALUES (20175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699789971);
INSERT INTO public.notice VALUES (20176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699790571);
INSERT INTO public.notice VALUES (20153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699776772);
INSERT INTO public.notice VALUES (20154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699777372);
INSERT INTO public.notice VALUES (20155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699777972);
INSERT INTO public.notice VALUES (20156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699778572);
INSERT INTO public.notice VALUES (20157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699779173);
INSERT INTO public.notice VALUES (20158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699779770);
INSERT INTO public.notice VALUES (20159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699780369);
INSERT INTO public.notice VALUES (20160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699780971);
INSERT INTO public.notice VALUES (20161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699781570);
INSERT INTO public.notice VALUES (20169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699786371);
INSERT INTO public.notice VALUES (20170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699786970);
INSERT INTO public.notice VALUES (20177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699791171);
INSERT INTO public.notice VALUES (20178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699791772);
INSERT INTO public.notice VALUES (20179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699792371);
INSERT INTO public.notice VALUES (20180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699792971);
INSERT INTO public.notice VALUES (20181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699793571);
INSERT INTO public.notice VALUES (20182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699794172);
INSERT INTO public.notice VALUES (20183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699794771);
INSERT INTO public.notice VALUES (20184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699795372);
INSERT INTO public.notice VALUES (20185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699795972);
INSERT INTO public.notice VALUES (20186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699796572);
INSERT INTO public.notice VALUES (20187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699797172);
INSERT INTO public.notice VALUES (20188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699797771);
INSERT INTO public.notice VALUES (20189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699798372);
INSERT INTO public.notice VALUES (20190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699798972);
INSERT INTO public.notice VALUES (20191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699799570);
INSERT INTO public.notice VALUES (20192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699800172);
INSERT INTO public.notice VALUES (20193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699800772);
INSERT INTO public.notice VALUES (20194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699801371);
INSERT INTO public.notice VALUES (20195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699801970);
INSERT INTO public.notice VALUES (20196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699802572);
INSERT INTO public.notice VALUES (20197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699803171);
INSERT INTO public.notice VALUES (20204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699807372);
INSERT INTO public.notice VALUES (20205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699807971);
INSERT INTO public.notice VALUES (25647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703076308);
INSERT INTO public.notice VALUES (26382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703517636);
INSERT INTO public.notice VALUES (26383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703518235);
INSERT INTO public.notice VALUES (26971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703871035);
INSERT INTO public.notice VALUES (27369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704109835);
INSERT INTO public.notice VALUES (27371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704111036);
INSERT INTO public.notice VALUES (27675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704293436);
INSERT INTO public.notice VALUES (27676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704294035);
INSERT INTO public.notice VALUES (27870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704410436);
INSERT INTO public.notice VALUES (27871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704411036);
INSERT INTO public.notice VALUES (27872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704411635);
INSERT INTO public.notice VALUES (20198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699803771);
INSERT INTO public.notice VALUES (20199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699804371);
INSERT INTO public.notice VALUES (20200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699804971);
INSERT INTO public.notice VALUES (20201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699805571);
INSERT INTO public.notice VALUES (20202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699806170);
INSERT INTO public.notice VALUES (20203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699806772);
INSERT INTO public.notice VALUES (20206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699808570);
INSERT INTO public.notice VALUES (20207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699809171);
INSERT INTO public.notice VALUES (20208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699809771);
INSERT INTO public.notice VALUES (20209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699810371);
INSERT INTO public.notice VALUES (20210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699810971);
INSERT INTO public.notice VALUES (20211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699811571);
INSERT INTO public.notice VALUES (20212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699812171);
INSERT INTO public.notice VALUES (20213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699812771);
INSERT INTO public.notice VALUES (20214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699813372);
INSERT INTO public.notice VALUES (20215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699813971);
INSERT INTO public.notice VALUES (20230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699822972);
INSERT INTO public.notice VALUES (20231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699823570);
INSERT INTO public.notice VALUES (20232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699824173);
INSERT INTO public.notice VALUES (20233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699824774);
INSERT INTO public.notice VALUES (20234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699825371);
INSERT INTO public.notice VALUES (20241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699829572);
INSERT INTO public.notice VALUES (20242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699830171);
INSERT INTO public.notice VALUES (25648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703076907);
INSERT INTO public.notice VALUES (26385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703519440);
INSERT INTO public.notice VALUES (26972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703871644);
INSERT INTO public.notice VALUES (26973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703872239);
INSERT INTO public.notice VALUES (26976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703874036);
INSERT INTO public.notice VALUES (26977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703874636);
INSERT INTO public.notice VALUES (27373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704112235);
INSERT INTO public.notice VALUES (20216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699814571);
INSERT INTO public.notice VALUES (20217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699815170);
INSERT INTO public.notice VALUES (20218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699815771);
INSERT INTO public.notice VALUES (20219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699816373);
INSERT INTO public.notice VALUES (20220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699816971);
INSERT INTO public.notice VALUES (20221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699817575);
INSERT INTO public.notice VALUES (20222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699818171);
INSERT INTO public.notice VALUES (20223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699818772);
INSERT INTO public.notice VALUES (20224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699819370);
INSERT INTO public.notice VALUES (20225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699819973);
INSERT INTO public.notice VALUES (20226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699820571);
INSERT INTO public.notice VALUES (20227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699821170);
INSERT INTO public.notice VALUES (20228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699821771);
INSERT INTO public.notice VALUES (20229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699822372);
INSERT INTO public.notice VALUES (20235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699825972);
INSERT INTO public.notice VALUES (20236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699826573);
INSERT INTO public.notice VALUES (20237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699827172);
INSERT INTO public.notice VALUES (20238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699827771);
INSERT INTO public.notice VALUES (20239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699828373);
INSERT INTO public.notice VALUES (20240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699828972);
INSERT INTO public.notice VALUES (20243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699830772);
INSERT INTO public.notice VALUES (20244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699831371);
INSERT INTO public.notice VALUES (20245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699831972);
INSERT INTO public.notice VALUES (20246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699832571);
INSERT INTO public.notice VALUES (20247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699833172);
INSERT INTO public.notice VALUES (20248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699833771);
INSERT INTO public.notice VALUES (20249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699834371);
INSERT INTO public.notice VALUES (20250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699834972);
INSERT INTO public.notice VALUES (20251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699835571);
INSERT INTO public.notice VALUES (20252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699836170);
INSERT INTO public.notice VALUES (20253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699836771);
INSERT INTO public.notice VALUES (20288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699857770);
INSERT INTO public.notice VALUES (20289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699858370);
INSERT INTO public.notice VALUES (20290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699858971);
INSERT INTO public.notice VALUES (25649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703077509);
INSERT INTO public.notice VALUES (25650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703078120);
INSERT INTO public.notice VALUES (26386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703520035);
INSERT INTO public.notice VALUES (26975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703873435);
INSERT INTO public.notice VALUES (27374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704112835);
INSERT INTO public.notice VALUES (27677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704294635);
INSERT INTO public.notice VALUES (27680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704296435);
INSERT INTO public.notice VALUES (27873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704412235);
INSERT INTO public.notice VALUES (27875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704413436);
INSERT INTO public.notice VALUES (27959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704463836);
INSERT INTO public.notice VALUES (27962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704465637);
INSERT INTO public.notice VALUES (20254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699837372);
INSERT INTO public.notice VALUES (20255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699837972);
INSERT INTO public.notice VALUES (20256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699838571);
INSERT INTO public.notice VALUES (20257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699839170);
INSERT INTO public.notice VALUES (20258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699839771);
INSERT INTO public.notice VALUES (20259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699840371);
INSERT INTO public.notice VALUES (20260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699840971);
INSERT INTO public.notice VALUES (20261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699841572);
INSERT INTO public.notice VALUES (20262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699842171);
INSERT INTO public.notice VALUES (20263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699842771);
INSERT INTO public.notice VALUES (20264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699843369);
INSERT INTO public.notice VALUES (20265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699843971);
INSERT INTO public.notice VALUES (20266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699844571);
INSERT INTO public.notice VALUES (20267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699845171);
INSERT INTO public.notice VALUES (20268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699845769);
INSERT INTO public.notice VALUES (20269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699846371);
INSERT INTO public.notice VALUES (20270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699846970);
INSERT INTO public.notice VALUES (20271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699847570);
INSERT INTO public.notice VALUES (20272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699848172);
INSERT INTO public.notice VALUES (20273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699848771);
INSERT INTO public.notice VALUES (20274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699849371);
INSERT INTO public.notice VALUES (20275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699849969);
INSERT INTO public.notice VALUES (20276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699850571);
INSERT INTO public.notice VALUES (20277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699851170);
INSERT INTO public.notice VALUES (20278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699851770);
INSERT INTO public.notice VALUES (20279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699852372);
INSERT INTO public.notice VALUES (20280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699852971);
INSERT INTO public.notice VALUES (20281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699853570);
INSERT INTO public.notice VALUES (20282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699854170);
INSERT INTO public.notice VALUES (20283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699854772);
INSERT INTO public.notice VALUES (20284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699855371);
INSERT INTO public.notice VALUES (20285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699855971);
INSERT INTO public.notice VALUES (20286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699856570);
INSERT INTO public.notice VALUES (20287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699857172);
INSERT INTO public.notice VALUES (20291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699859571);
INSERT INTO public.notice VALUES (20292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699860170);
INSERT INTO public.notice VALUES (20293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699860770);
INSERT INTO public.notice VALUES (20294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699861371);
INSERT INTO public.notice VALUES (20295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699861971);
INSERT INTO public.notice VALUES (20296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Failure when receiving data from the peer
', 1699862620);
INSERT INTO public.notice VALUES (20297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699863170);
INSERT INTO public.notice VALUES (20298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699863771);
INSERT INTO public.notice VALUES (20299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699864370);
INSERT INTO public.notice VALUES (20300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699864970);
INSERT INTO public.notice VALUES (20301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699865571);
INSERT INTO public.notice VALUES (20302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699866171);
INSERT INTO public.notice VALUES (20303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699866771);
INSERT INTO public.notice VALUES (20304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699867370);
INSERT INTO public.notice VALUES (20305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699867973);
INSERT INTO public.notice VALUES (20306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699868571);
INSERT INTO public.notice VALUES (20307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699869170);
INSERT INTO public.notice VALUES (20308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699869770);
INSERT INTO public.notice VALUES (20309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699870372);
INSERT INTO public.notice VALUES (20311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699871570);
INSERT INTO public.notice VALUES (20312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699872169);
INSERT INTO public.notice VALUES (20313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699872772);
INSERT INTO public.notice VALUES (20317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699875171);
INSERT INTO public.notice VALUES (20318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699875770);
INSERT INTO public.notice VALUES (20319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699876370);
INSERT INTO public.notice VALUES (20320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699876972);
INSERT INTO public.notice VALUES (20321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699877572);
INSERT INTO public.notice VALUES (20310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699870970);
INSERT INTO public.notice VALUES (20314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699873370);
INSERT INTO public.notice VALUES (20315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699873970);
INSERT INTO public.notice VALUES (20316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699874571);
INSERT INTO public.notice VALUES (20322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699878170);
INSERT INTO public.notice VALUES (20323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699878772);
INSERT INTO public.notice VALUES (20324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699879371);
INSERT INTO public.notice VALUES (20325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699879970);
INSERT INTO public.notice VALUES (20326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699880570);
INSERT INTO public.notice VALUES (20327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699881171);
INSERT INTO public.notice VALUES (20328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699881771);
INSERT INTO public.notice VALUES (20329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699882372);
INSERT INTO public.notice VALUES (20330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699882971);
INSERT INTO public.notice VALUES (20331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699883572);
INSERT INTO public.notice VALUES (20332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699884170);
INSERT INTO public.notice VALUES (20333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699884770);
INSERT INTO public.notice VALUES (20347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699893171);
INSERT INTO public.notice VALUES (20348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699893771);
INSERT INTO public.notice VALUES (20349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699894372);
INSERT INTO public.notice VALUES (20362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699902171);
INSERT INTO public.notice VALUES (20363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699902772);
INSERT INTO public.notice VALUES (20364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699903371);
INSERT INTO public.notice VALUES (20365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699903971);
INSERT INTO public.notice VALUES (20366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699904570);
INSERT INTO public.notice VALUES (20367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699905172);
INSERT INTO public.notice VALUES (20368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699905771);
INSERT INTO public.notice VALUES (20369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699906371);
INSERT INTO public.notice VALUES (20370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699906969);
INSERT INTO public.notice VALUES (20376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699910572);
INSERT INTO public.notice VALUES (25651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703078711);
INSERT INTO public.notice VALUES (20334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699885372);
INSERT INTO public.notice VALUES (20335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699885973);
INSERT INTO public.notice VALUES (20336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699886572);
INSERT INTO public.notice VALUES (20337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699887171);
INSERT INTO public.notice VALUES (20338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699887773);
INSERT INTO public.notice VALUES (20339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699888372);
INSERT INTO public.notice VALUES (20340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699888971);
INSERT INTO public.notice VALUES (20341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699889570);
INSERT INTO public.notice VALUES (20342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699890171);
INSERT INTO public.notice VALUES (20343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699890771);
INSERT INTO public.notice VALUES (20344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699891370);
INSERT INTO public.notice VALUES (20345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699891974);
INSERT INTO public.notice VALUES (20346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699892571);
INSERT INTO public.notice VALUES (20350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699894971);
INSERT INTO public.notice VALUES (20351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699895571);
INSERT INTO public.notice VALUES (20352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699896169);
INSERT INTO public.notice VALUES (20353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699896773);
INSERT INTO public.notice VALUES (20354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699897370);
INSERT INTO public.notice VALUES (20355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699897971);
INSERT INTO public.notice VALUES (20356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699898573);
INSERT INTO public.notice VALUES (20357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699899172);
INSERT INTO public.notice VALUES (20358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699899771);
INSERT INTO public.notice VALUES (20359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699900370);
INSERT INTO public.notice VALUES (20360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699900973);
INSERT INTO public.notice VALUES (20361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699901572);
INSERT INTO public.notice VALUES (20371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699907572);
INSERT INTO public.notice VALUES (20372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699908170);
INSERT INTO public.notice VALUES (20373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699908770);
INSERT INTO public.notice VALUES (20374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699909372);
INSERT INTO public.notice VALUES (20375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699909972);
INSERT INTO public.notice VALUES (20377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699911170);
INSERT INTO public.notice VALUES (20386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699916572);
INSERT INTO public.notice VALUES (20387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699917172);
INSERT INTO public.notice VALUES (20388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699917771);
INSERT INTO public.notice VALUES (20389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699918372);
INSERT INTO public.notice VALUES (20390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699918971);
INSERT INTO public.notice VALUES (20391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699919572);
INSERT INTO public.notice VALUES (20392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699920170);
INSERT INTO public.notice VALUES (20393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699920771);
INSERT INTO public.notice VALUES (20394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699921371);
INSERT INTO public.notice VALUES (20395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699921970);
INSERT INTO public.notice VALUES (20396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699922572);
INSERT INTO public.notice VALUES (20397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699923171);
INSERT INTO public.notice VALUES (20398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699923771);
INSERT INTO public.notice VALUES (20408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699929771);
INSERT INTO public.notice VALUES (20378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699911773);
INSERT INTO public.notice VALUES (20379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699912372);
INSERT INTO public.notice VALUES (20380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699912972);
INSERT INTO public.notice VALUES (20381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699913570);
INSERT INTO public.notice VALUES (20382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699914172);
INSERT INTO public.notice VALUES (20383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699914772);
INSERT INTO public.notice VALUES (20384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699915370);
INSERT INTO public.notice VALUES (20385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699915972);
INSERT INTO public.notice VALUES (20399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699924371);
INSERT INTO public.notice VALUES (20400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699924973);
INSERT INTO public.notice VALUES (20401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699925572);
INSERT INTO public.notice VALUES (20402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699926170);
INSERT INTO public.notice VALUES (20403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699926772);
INSERT INTO public.notice VALUES (20404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699927372);
INSERT INTO public.notice VALUES (20405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699927970);
INSERT INTO public.notice VALUES (20406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699928570);
INSERT INTO public.notice VALUES (20407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699929171);
INSERT INTO public.notice VALUES (20430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699942971);
INSERT INTO public.notice VALUES (20431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699943570);
INSERT INTO public.notice VALUES (20432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699944169);
INSERT INTO public.notice VALUES (20433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699944771);
INSERT INTO public.notice VALUES (20434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699945371);
INSERT INTO public.notice VALUES (20439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699948370);
INSERT INTO public.notice VALUES (20445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699951970);
INSERT INTO public.notice VALUES (20449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699954370);
INSERT INTO public.notice VALUES (20450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699954970);
INSERT INTO public.notice VALUES (20451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699955571);
INSERT INTO public.notice VALUES (20452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699956170);
INSERT INTO public.notice VALUES (20454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699957369);
INSERT INTO public.notice VALUES (20461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699961570);
INSERT INTO public.notice VALUES (20409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699930372);
INSERT INTO public.notice VALUES (20410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699930969);
INSERT INTO public.notice VALUES (20411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699931571);
INSERT INTO public.notice VALUES (20412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699932170);
INSERT INTO public.notice VALUES (20413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699932770);
INSERT INTO public.notice VALUES (20414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699933371);
INSERT INTO public.notice VALUES (20415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699933971);
INSERT INTO public.notice VALUES (20416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699934570);
INSERT INTO public.notice VALUES (20417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699935170);
INSERT INTO public.notice VALUES (20418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699935771);
INSERT INTO public.notice VALUES (20419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699936370);
INSERT INTO public.notice VALUES (20420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699936970);
INSERT INTO public.notice VALUES (20421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699937569);
INSERT INTO public.notice VALUES (20422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699938171);
INSERT INTO public.notice VALUES (20423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699938770);
INSERT INTO public.notice VALUES (20424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699939370);
INSERT INTO public.notice VALUES (20425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699939971);
INSERT INTO public.notice VALUES (20426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699940571);
INSERT INTO public.notice VALUES (20427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699941171);
INSERT INTO public.notice VALUES (20428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699941769);
INSERT INTO public.notice VALUES (20429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699942372);
INSERT INTO public.notice VALUES (20435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699945970);
INSERT INTO public.notice VALUES (20436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699946571);
INSERT INTO public.notice VALUES (20437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699947171);
INSERT INTO public.notice VALUES (20438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699947770);
INSERT INTO public.notice VALUES (20440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699948971);
INSERT INTO public.notice VALUES (20441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699949570);
INSERT INTO public.notice VALUES (20442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699950170);
INSERT INTO public.notice VALUES (20443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699950769);
INSERT INTO public.notice VALUES (20444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699951371);
INSERT INTO public.notice VALUES (20446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699952570);
INSERT INTO public.notice VALUES (20447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699953171);
INSERT INTO public.notice VALUES (20448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699953771);
INSERT INTO public.notice VALUES (20453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699956770);
INSERT INTO public.notice VALUES (20455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699957971);
INSERT INTO public.notice VALUES (20456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699958570);
INSERT INTO public.notice VALUES (20457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699959170);
INSERT INTO public.notice VALUES (20458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699959771);
INSERT INTO public.notice VALUES (20459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699960371);
INSERT INTO public.notice VALUES (20460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699960970);
INSERT INTO public.notice VALUES (20470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699966971);
INSERT INTO public.notice VALUES (20471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699967570);
INSERT INTO public.notice VALUES (20472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699968169);
INSERT INTO public.notice VALUES (20473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699968772);
INSERT INTO public.notice VALUES (20476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699970570);
INSERT INTO public.notice VALUES (20462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699962172);
INSERT INTO public.notice VALUES (20463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699962771);
INSERT INTO public.notice VALUES (20464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699963371);
INSERT INTO public.notice VALUES (20465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699963970);
INSERT INTO public.notice VALUES (20466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699964571);
INSERT INTO public.notice VALUES (20467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699965170);
INSERT INTO public.notice VALUES (20468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699965770);
INSERT INTO public.notice VALUES (20469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699966372);
INSERT INTO public.notice VALUES (20474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699969371);
INSERT INTO public.notice VALUES (20475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699969970);
INSERT INTO public.notice VALUES (20480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699972971);
INSERT INTO public.notice VALUES (25652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703079307);
INSERT INTO public.notice VALUES (26387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703520635);
INSERT INTO public.notice VALUES (26388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703521234);
INSERT INTO public.notice VALUES (26390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703522436);
INSERT INTO public.notice VALUES (20477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699971172);
INSERT INTO public.notice VALUES (20478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699971771);
INSERT INTO public.notice VALUES (20479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699972370);
INSERT INTO public.notice VALUES (20481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699973571);
INSERT INTO public.notice VALUES (20482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699974170);
INSERT INTO public.notice VALUES (20483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699974771);
INSERT INTO public.notice VALUES (20484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699975373);
INSERT INTO public.notice VALUES (20485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699975970);
INSERT INTO public.notice VALUES (20486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699976571);
INSERT INTO public.notice VALUES (20487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699977172);
INSERT INTO public.notice VALUES (20488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699977771);
INSERT INTO public.notice VALUES (20489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699978371);
INSERT INTO public.notice VALUES (20490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699978970);
INSERT INTO public.notice VALUES (20491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699979572);
INSERT INTO public.notice VALUES (20492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699980171);
INSERT INTO public.notice VALUES (20493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699980771);
INSERT INTO public.notice VALUES (20494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699981371);
INSERT INTO public.notice VALUES (20495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699981972);
INSERT INTO public.notice VALUES (20496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699982570);
INSERT INTO public.notice VALUES (20497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699983172);
INSERT INTO public.notice VALUES (20498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699983771);
INSERT INTO public.notice VALUES (20499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699984372);
INSERT INTO public.notice VALUES (20500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699984971);
INSERT INTO public.notice VALUES (20501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699985570);
INSERT INTO public.notice VALUES (20502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699986172);
INSERT INTO public.notice VALUES (20503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699986771);
INSERT INTO public.notice VALUES (20504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699987371);
INSERT INTO public.notice VALUES (20505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699987970);
INSERT INTO public.notice VALUES (20506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699988571);
INSERT INTO public.notice VALUES (20507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699989172);
INSERT INTO public.notice VALUES (20508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699989771);
INSERT INTO public.notice VALUES (20509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699990371);
INSERT INTO public.notice VALUES (20510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699990971);
INSERT INTO public.notice VALUES (20511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699991571);
INSERT INTO public.notice VALUES (20512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699992171);
INSERT INTO public.notice VALUES (20513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699992771);
INSERT INTO public.notice VALUES (20514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699993372);
INSERT INTO public.notice VALUES (20515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699993971);
INSERT INTO public.notice VALUES (20516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699994573);
INSERT INTO public.notice VALUES (20526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700000571);
INSERT INTO public.notice VALUES (20527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700001172);
INSERT INTO public.notice VALUES (20528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700001772);
INSERT INTO public.notice VALUES (20529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700002372);
INSERT INTO public.notice VALUES (20530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700002971);
INSERT INTO public.notice VALUES (20531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700003571);
INSERT INTO public.notice VALUES (20517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699995173);
INSERT INTO public.notice VALUES (20518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699995771);
INSERT INTO public.notice VALUES (20519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699996370);
INSERT INTO public.notice VALUES (20520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699996973);
INSERT INTO public.notice VALUES (20521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699997570);
INSERT INTO public.notice VALUES (20522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699998170);
INSERT INTO public.notice VALUES (20523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699998770);
INSERT INTO public.notice VALUES (20524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699999373);
INSERT INTO public.notice VALUES (20525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1699999971);
INSERT INTO public.notice VALUES (20533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700004771);
INSERT INTO public.notice VALUES (20541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700009570);
INSERT INTO public.notice VALUES (20542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700010171);
INSERT INTO public.notice VALUES (20543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700010772);
INSERT INTO public.notice VALUES (20544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700011371);
INSERT INTO public.notice VALUES (20545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700011970);
INSERT INTO public.notice VALUES (20532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700004172);
INSERT INTO public.notice VALUES (20534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700005372);
INSERT INTO public.notice VALUES (20535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700005971);
INSERT INTO public.notice VALUES (20536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700006572);
INSERT INTO public.notice VALUES (20537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700007170);
INSERT INTO public.notice VALUES (20538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700007771);
INSERT INTO public.notice VALUES (20539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700008370);
INSERT INTO public.notice VALUES (20540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700008972);
INSERT INTO public.notice VALUES (20546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700012571);
INSERT INTO public.notice VALUES (20547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700013170);
INSERT INTO public.notice VALUES (20548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700013770);
INSERT INTO public.notice VALUES (20549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700014371);
INSERT INTO public.notice VALUES (20550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700014971);
INSERT INTO public.notice VALUES (20551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700015570);
INSERT INTO public.notice VALUES (20552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700016169);
INSERT INTO public.notice VALUES (20553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700016772);
INSERT INTO public.notice VALUES (20554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700017370);
INSERT INTO public.notice VALUES (20555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700017970);
INSERT INTO public.notice VALUES (20556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700018569);
INSERT INTO public.notice VALUES (20557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700019171);
INSERT INTO public.notice VALUES (20558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700019770);
INSERT INTO public.notice VALUES (20571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700027572);
INSERT INTO public.notice VALUES (25653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703079908);
INSERT INTO public.notice VALUES (26389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703521836);
INSERT INTO public.notice VALUES (26978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703875235);
INSERT INTO public.notice VALUES (26981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703877035);
INSERT INTO public.notice VALUES (26986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703880035);
INSERT INTO public.notice VALUES (27375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704113436);
INSERT INTO public.notice VALUES (27376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704114036);
INSERT INTO public.notice VALUES (27681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704297037);
INSERT INTO public.notice VALUES (20559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700020370);
INSERT INTO public.notice VALUES (20560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700020971);
INSERT INTO public.notice VALUES (20561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700021571);
INSERT INTO public.notice VALUES (20562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700022171);
INSERT INTO public.notice VALUES (20563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700022769);
INSERT INTO public.notice VALUES (20564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700023371);
INSERT INTO public.notice VALUES (20565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700023970);
INSERT INTO public.notice VALUES (20566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700024570);
INSERT INTO public.notice VALUES (20567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700025169);
INSERT INTO public.notice VALUES (20568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700025772);
INSERT INTO public.notice VALUES (20569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700026370);
INSERT INTO public.notice VALUES (20570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700026970);
INSERT INTO public.notice VALUES (20572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700028171);
INSERT INTO public.notice VALUES (20573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700028770);
INSERT INTO public.notice VALUES (20574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700029370);
INSERT INTO public.notice VALUES (20576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Recv failure: Connection was reset
', 1700030879);
INSERT INTO public.notice VALUES (20575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700029971);
INSERT INTO public.notice VALUES (20578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700031771);
INSERT INTO public.notice VALUES (20579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700032371);
INSERT INTO public.notice VALUES (20580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700032970);
INSERT INTO public.notice VALUES (20587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700037170);
INSERT INTO public.notice VALUES (20588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700037770);
INSERT INTO public.notice VALUES (20589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700038371);
INSERT INTO public.notice VALUES (20590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700038971);
INSERT INTO public.notice VALUES (20591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700039570);
INSERT INTO public.notice VALUES (20592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700040170);
INSERT INTO public.notice VALUES (20593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700040771);
INSERT INTO public.notice VALUES (20594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700041371);
INSERT INTO public.notice VALUES (20595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700041970);
INSERT INTO public.notice VALUES (20596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700042569);
INSERT INTO public.notice VALUES (20597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700043171);
INSERT INTO public.notice VALUES (20577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700031170);
INSERT INTO public.notice VALUES (20581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700033570);
INSERT INTO public.notice VALUES (20582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700034171);
INSERT INTO public.notice VALUES (20583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700034771);
INSERT INTO public.notice VALUES (20584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700035370);
INSERT INTO public.notice VALUES (20585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700035969);
INSERT INTO public.notice VALUES (20586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700036571);
INSERT INTO public.notice VALUES (20601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700045572);
INSERT INTO public.notice VALUES (20602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700046170);
INSERT INTO public.notice VALUES (20603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700046771);
INSERT INTO public.notice VALUES (20604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700047371);
INSERT INTO public.notice VALUES (20605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700047971);
INSERT INTO public.notice VALUES (20606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700048570);
INSERT INTO public.notice VALUES (20607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700049169);
INSERT INTO public.notice VALUES (20610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700050970);
INSERT INTO public.notice VALUES (20598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700043770);
INSERT INTO public.notice VALUES (20599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700044371);
INSERT INTO public.notice VALUES (20600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700044972);
INSERT INTO public.notice VALUES (20608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700049771);
INSERT INTO public.notice VALUES (20609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700050370);
INSERT INTO public.notice VALUES (20627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700061170);
INSERT INTO public.notice VALUES (20628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700061771);
INSERT INTO public.notice VALUES (20629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700062371);
INSERT INTO public.notice VALUES (20630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700062971);
INSERT INTO public.notice VALUES (20631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700063570);
INSERT INTO public.notice VALUES (20632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700064171);
INSERT INTO public.notice VALUES (20633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700064771);
INSERT INTO public.notice VALUES (20634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700065372);
INSERT INTO public.notice VALUES (20638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700067771);
INSERT INTO public.notice VALUES (20639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1700068380);
INSERT INTO public.notice VALUES (20640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1700068981);
INSERT INTO public.notice VALUES (20611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700051571);
INSERT INTO public.notice VALUES (20612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700052171);
INSERT INTO public.notice VALUES (20613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700052771);
INSERT INTO public.notice VALUES (20614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700053371);
INSERT INTO public.notice VALUES (20615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700053972);
INSERT INTO public.notice VALUES (20616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700054571);
INSERT INTO public.notice VALUES (20617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700055171);
INSERT INTO public.notice VALUES (20618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700055769);
INSERT INTO public.notice VALUES (20619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700056372);
INSERT INTO public.notice VALUES (20620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700056970);
INSERT INTO public.notice VALUES (20621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700057570);
INSERT INTO public.notice VALUES (20622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700058172);
INSERT INTO public.notice VALUES (20623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700058771);
INSERT INTO public.notice VALUES (20624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700059370);
INSERT INTO public.notice VALUES (20625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700059970);
INSERT INTO public.notice VALUES (20626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700060571);
INSERT INTO public.notice VALUES (20635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700065970);
INSERT INTO public.notice VALUES (20636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700066572);
INSERT INTO public.notice VALUES (20637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700067171);
INSERT INTO public.notice VALUES (25654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703080508);
INSERT INTO public.notice VALUES (25655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703081107);
INSERT INTO public.notice VALUES (26391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703523035);
INSERT INTO public.notice VALUES (26979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703875835);
INSERT INTO public.notice VALUES (26980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703876436);
INSERT INTO public.notice VALUES (27377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704114635);
INSERT INTO public.notice VALUES (27379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704115836);
INSERT INTO public.notice VALUES (27381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704117035);
INSERT INTO public.notice VALUES (27385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704119435);
INSERT INTO public.notice VALUES (27682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704297636);
INSERT INTO public.notice VALUES (27874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704412836);
INSERT INTO public.notice VALUES (20645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700072154);
INSERT INTO public.notice VALUES (20646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700072754);
INSERT INTO public.notice VALUES (20647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700073353);
INSERT INTO public.notice VALUES (20648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700073953);
INSERT INTO public.notice VALUES (20649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700074554);
INSERT INTO public.notice VALUES (20650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700075153);
INSERT INTO public.notice VALUES (20651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700075753);
INSERT INTO public.notice VALUES (20652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700076353);
INSERT INTO public.notice VALUES (20653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700076955);
INSERT INTO public.notice VALUES (20654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700077553);
INSERT INTO public.notice VALUES (20655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700078153);
INSERT INTO public.notice VALUES (20656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700078754);
INSERT INTO public.notice VALUES (20657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700079354);
INSERT INTO public.notice VALUES (20658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700079953);
INSERT INTO public.notice VALUES (20659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700080553);
INSERT INTO public.notice VALUES (20660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700081156);
INSERT INTO public.notice VALUES (20661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700081754);
INSERT INTO public.notice VALUES (20662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700082354);
INSERT INTO public.notice VALUES (20663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700082958);
INSERT INTO public.notice VALUES (20664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700083554);
INSERT INTO public.notice VALUES (20665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700084154);
INSERT INTO public.notice VALUES (20666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700084754);
INSERT INTO public.notice VALUES (20667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700085354);
INSERT INTO public.notice VALUES (20668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700085954);
INSERT INTO public.notice VALUES (20669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700086554);
INSERT INTO public.notice VALUES (20670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700087153);
INSERT INTO public.notice VALUES (20671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700087755);
INSERT INTO public.notice VALUES (20672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700088354);
INSERT INTO public.notice VALUES (20673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700088953);
INSERT INTO public.notice VALUES (20712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700112353);
INSERT INTO public.notice VALUES (20674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700089554);
INSERT INTO public.notice VALUES (20675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700090155);
INSERT INTO public.notice VALUES (20676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700090755);
INSERT INTO public.notice VALUES (20677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700091353);
INSERT INTO public.notice VALUES (20678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700091955);
INSERT INTO public.notice VALUES (20679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700092554);
INSERT INTO public.notice VALUES (20680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700093153);
INSERT INTO public.notice VALUES (20681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700093753);
INSERT INTO public.notice VALUES (20682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700094355);
INSERT INTO public.notice VALUES (20683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700094953);
INSERT INTO public.notice VALUES (20684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700095555);
INSERT INTO public.notice VALUES (20685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700096156);
INSERT INTO public.notice VALUES (20686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700096755);
INSERT INTO public.notice VALUES (20687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700097353);
INSERT INTO public.notice VALUES (20688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700097952);
INSERT INTO public.notice VALUES (20689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700098555);
INSERT INTO public.notice VALUES (20690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700099153);
INSERT INTO public.notice VALUES (20691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700099753);
INSERT INTO public.notice VALUES (20692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700100354);
INSERT INTO public.notice VALUES (20693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700100954);
INSERT INTO public.notice VALUES (20694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700101553);
INSERT INTO public.notice VALUES (20695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700102153);
INSERT INTO public.notice VALUES (20696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700102754);
INSERT INTO public.notice VALUES (20697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700103354);
INSERT INTO public.notice VALUES (20698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700103953);
INSERT INTO public.notice VALUES (20699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700104554);
INSERT INTO public.notice VALUES (20700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700105154);
INSERT INTO public.notice VALUES (20701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700105754);
INSERT INTO public.notice VALUES (20702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700106354);
INSERT INTO public.notice VALUES (20703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700106955);
INSERT INTO public.notice VALUES (20704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700107554);
INSERT INTO public.notice VALUES (20705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700108153);
INSERT INTO public.notice VALUES (20706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700108754);
INSERT INTO public.notice VALUES (20707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700109354);
INSERT INTO public.notice VALUES (20708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700109953);
INSERT INTO public.notice VALUES (20709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700110553);
INSERT INTO public.notice VALUES (20710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700111154);
INSERT INTO public.notice VALUES (20711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700111754);
INSERT INTO public.notice VALUES (25656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703081707);
INSERT INTO public.notice VALUES (25661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703084708);
INSERT INTO public.notice VALUES (25662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703085307);
INSERT INTO public.notice VALUES (25664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703086508);
INSERT INTO public.notice VALUES (25668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703088908);
INSERT INTO public.notice VALUES (25673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703091907);
INSERT INTO public.notice VALUES (26392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703523636);
INSERT INTO public.notice VALUES (20713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700112953);
INSERT INTO public.notice VALUES (20714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700113554);
INSERT INTO public.notice VALUES (20715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700114154);
INSERT INTO public.notice VALUES (20716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700114753);
INSERT INTO public.notice VALUES (20717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700115353);
INSERT INTO public.notice VALUES (20718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700115954);
INSERT INTO public.notice VALUES (20719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700116553);
INSERT INTO public.notice VALUES (20720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700117153);
INSERT INTO public.notice VALUES (20721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700117754);
INSERT INTO public.notice VALUES (20722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700118354);
INSERT INTO public.notice VALUES (20723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700118953);
INSERT INTO public.notice VALUES (20724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700119553);
INSERT INTO public.notice VALUES (20725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700120826);
INSERT INTO public.notice VALUES (20726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700121425);
INSERT INTO public.notice VALUES (20727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700122024);
INSERT INTO public.notice VALUES (20728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700122626);
INSERT INTO public.notice VALUES (20729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700123225);
INSERT INTO public.notice VALUES (20730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700123825);
INSERT INTO public.notice VALUES (20731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700124426);
INSERT INTO public.notice VALUES (20732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700125026);
INSERT INTO public.notice VALUES (20733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700125625);
INSERT INTO public.notice VALUES (20734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700126225);
INSERT INTO public.notice VALUES (20735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700126827);
INSERT INTO public.notice VALUES (20736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700127425);
INSERT INTO public.notice VALUES (20737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700128025);
INSERT INTO public.notice VALUES (20738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700128625);
INSERT INTO public.notice VALUES (20739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700129226);
INSERT INTO public.notice VALUES (20740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700129825);
INSERT INTO public.notice VALUES (20741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700130425);
INSERT INTO public.notice VALUES (20742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700131026);
INSERT INTO public.notice VALUES (20743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700131627);
INSERT INTO public.notice VALUES (20745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700132826);
INSERT INTO public.notice VALUES (25657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703082308);
INSERT INTO public.notice VALUES (25658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703082907);
INSERT INTO public.notice VALUES (25659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703083508);
INSERT INTO public.notice VALUES (25660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703084108);
INSERT INTO public.notice VALUES (25663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703085907);
INSERT INTO public.notice VALUES (25665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703087107);
INSERT INTO public.notice VALUES (26393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703524235);
INSERT INTO public.notice VALUES (26982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703877635);
INSERT INTO public.notice VALUES (27378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704115237);
INSERT INTO public.notice VALUES (27380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704116435);
INSERT INTO public.notice VALUES (27382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704117636);
INSERT INTO public.notice VALUES (27683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704298235);
INSERT INTO public.notice VALUES (27684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704298835);
INSERT INTO public.notice VALUES (20744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700132225);
INSERT INTO public.notice VALUES (20746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700133426);
INSERT INTO public.notice VALUES (20747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700134026);
INSERT INTO public.notice VALUES (20748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700134625);
INSERT INTO public.notice VALUES (20749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700135227);
INSERT INTO public.notice VALUES (20750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700135826);
INSERT INTO public.notice VALUES (20751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700136425);
INSERT INTO public.notice VALUES (20752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700137025);
INSERT INTO public.notice VALUES (20753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700137626);
INSERT INTO public.notice VALUES (20754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700138227);
INSERT INTO public.notice VALUES (20755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700138825);
INSERT INTO public.notice VALUES (20756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700139426);
INSERT INTO public.notice VALUES (20757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700140028);
INSERT INTO public.notice VALUES (20758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700140626);
INSERT INTO public.notice VALUES (20759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700141225);
INSERT INTO public.notice VALUES (20760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700141827);
INSERT INTO public.notice VALUES (20761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700142426);
INSERT INTO public.notice VALUES (20763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700143625);
INSERT INTO public.notice VALUES (20764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700144227);
INSERT INTO public.notice VALUES (20767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700146026);
INSERT INTO public.notice VALUES (25666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703087707);
INSERT INTO public.notice VALUES (25667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703088308);
INSERT INTO public.notice VALUES (25669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703089507);
INSERT INTO public.notice VALUES (25670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703090107);
INSERT INTO public.notice VALUES (26394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703524835);
INSERT INTO public.notice VALUES (26395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703525436);
INSERT INTO public.notice VALUES (26396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703526036);
INSERT INTO public.notice VALUES (26399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703527836);
INSERT INTO public.notice VALUES (26983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703878236);
INSERT INTO public.notice VALUES (27383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704118236);
INSERT INTO public.notice VALUES (20762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700143026);
INSERT INTO public.notice VALUES (20765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700144827);
INSERT INTO public.notice VALUES (20766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700145426);
INSERT INTO public.notice VALUES (20768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700146627);
INSERT INTO public.notice VALUES (20769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700147226);
INSERT INTO public.notice VALUES (20770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700147825);
INSERT INTO public.notice VALUES (20771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700148428);
INSERT INTO public.notice VALUES (20772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700149027);
INSERT INTO public.notice VALUES (20773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700149627);
INSERT INTO public.notice VALUES (20774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700150226);
INSERT INTO public.notice VALUES (20775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700150827);
INSERT INTO public.notice VALUES (20776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700151426);
INSERT INTO public.notice VALUES (20777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700152026);
INSERT INTO public.notice VALUES (20778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700152626);
INSERT INTO public.notice VALUES (20779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700153227);
INSERT INTO public.notice VALUES (20780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700153826);
INSERT INTO public.notice VALUES (20781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700154426);
INSERT INTO public.notice VALUES (25671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703090708);
INSERT INTO public.notice VALUES (26397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703526635);
INSERT INTO public.notice VALUES (26398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703527236);
INSERT INTO public.notice VALUES (26984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703878836);
INSERT INTO public.notice VALUES (26985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703879436);
INSERT INTO public.notice VALUES (26987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703880636);
INSERT INTO public.notice VALUES (27384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704118835);
INSERT INTO public.notice VALUES (27386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704120036);
INSERT INTO public.notice VALUES (27686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704300036);
INSERT INTO public.notice VALUES (27876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704414035);
INSERT INTO public.notice VALUES (27880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704416436);
INSERT INTO public.notice VALUES (27882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704417635);
INSERT INTO public.notice VALUES (27883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704418235);
INSERT INTO public.notice VALUES (20782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700155027);
INSERT INTO public.notice VALUES (20783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700155627);
INSERT INTO public.notice VALUES (20784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700156227);
INSERT INTO public.notice VALUES (20785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700156826);
INSERT INTO public.notice VALUES (20786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700157426);
INSERT INTO public.notice VALUES (20787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700158026);
INSERT INTO public.notice VALUES (20788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700158625);
INSERT INTO public.notice VALUES (20789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700159225);
INSERT INTO public.notice VALUES (20790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700159826);
INSERT INTO public.notice VALUES (20791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700160426);
INSERT INTO public.notice VALUES (20792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700161025);
INSERT INTO public.notice VALUES (20793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700161626);
INSERT INTO public.notice VALUES (20794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700162227);
INSERT INTO public.notice VALUES (20795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700162826);
INSERT INTO public.notice VALUES (20796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700163425);
INSERT INTO public.notice VALUES (20797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700164028);
INSERT INTO public.notice VALUES (20798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700164626);
INSERT INTO public.notice VALUES (20799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700165225);
INSERT INTO public.notice VALUES (20800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700165825);
INSERT INTO public.notice VALUES (20801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700166427);
INSERT INTO public.notice VALUES (20802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700167026);
INSERT INTO public.notice VALUES (20803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700167625);
INSERT INTO public.notice VALUES (20804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700168227);
INSERT INTO public.notice VALUES (20805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700168827);
INSERT INTO public.notice VALUES (20806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700169427);
INSERT INTO public.notice VALUES (20807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700170025);
INSERT INTO public.notice VALUES (20808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700170627);
INSERT INTO public.notice VALUES (20809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700171227);
INSERT INTO public.notice VALUES (20810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700171827);
INSERT INTO public.notice VALUES (20811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700172428);
INSERT INTO public.notice VALUES (20812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700173027);
INSERT INTO public.notice VALUES (20813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700173626);
INSERT INTO public.notice VALUES (20814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700174226);
INSERT INTO public.notice VALUES (20815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700174828);
INSERT INTO public.notice VALUES (20816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700175426);
INSERT INTO public.notice VALUES (20818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700176626);
INSERT INTO public.notice VALUES (20821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700178426);
INSERT INTO public.notice VALUES (20822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700179026);
INSERT INTO public.notice VALUES (25672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703091307);
INSERT INTO public.notice VALUES (26400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703528436);
INSERT INTO public.notice VALUES (26988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703881236);
INSERT INTO public.notice VALUES (26991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703883036);
INSERT INTO public.notice VALUES (26994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703884836);
INSERT INTO public.notice VALUES (26995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703885435);
INSERT INTO public.notice VALUES (26996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703886035);
INSERT INTO public.notice VALUES (20817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700176025);
INSERT INTO public.notice VALUES (20819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700177228);
INSERT INTO public.notice VALUES (20820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700177827);
INSERT INTO public.notice VALUES (20823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700179627);
INSERT INTO public.notice VALUES (20824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700180226);
INSERT INTO public.notice VALUES (20825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700180825);
INSERT INTO public.notice VALUES (20826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700181428);
INSERT INTO public.notice VALUES (20827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700182026);
INSERT INTO public.notice VALUES (20828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700182627);
INSERT INTO public.notice VALUES (20829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700183226);
INSERT INTO public.notice VALUES (20830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700183826);
INSERT INTO public.notice VALUES (20831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700184426);
INSERT INTO public.notice VALUES (20832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700185025);
INSERT INTO public.notice VALUES (20833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700185625);
INSERT INTO public.notice VALUES (20834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700186227);
INSERT INTO public.notice VALUES (20835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700186825);
INSERT INTO public.notice VALUES (20836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700187425);
INSERT INTO public.notice VALUES (20837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700188026);
INSERT INTO public.notice VALUES (20838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700188627);
INSERT INTO public.notice VALUES (20839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700189225);
INSERT INTO public.notice VALUES (20840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700189825);
INSERT INTO public.notice VALUES (20841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700190426);
INSERT INTO public.notice VALUES (20842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700191025);
INSERT INTO public.notice VALUES (20843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700191625);
INSERT INTO public.notice VALUES (20844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700192226);
INSERT INTO public.notice VALUES (20845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700192826);
INSERT INTO public.notice VALUES (20846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700193426);
INSERT INTO public.notice VALUES (20847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700194025);
INSERT INTO public.notice VALUES (20848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700194626);
INSERT INTO public.notice VALUES (20849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700195226);
INSERT INTO public.notice VALUES (20850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700195825);
INSERT INTO public.notice VALUES (20851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700196425);
INSERT INTO public.notice VALUES (20852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700197026);
INSERT INTO public.notice VALUES (20853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700197625);
INSERT INTO public.notice VALUES (20854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700198225);
INSERT INTO public.notice VALUES (20855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700198827);
INSERT INTO public.notice VALUES (20856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700199426);
INSERT INTO public.notice VALUES (20857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700200026);
INSERT INTO public.notice VALUES (20858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700200625);
INSERT INTO public.notice VALUES (20859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700201226);
INSERT INTO public.notice VALUES (20860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700201826);
INSERT INTO public.notice VALUES (20861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700202425);
INSERT INTO public.notice VALUES (20862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700203025);
INSERT INTO public.notice VALUES (20863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700203627);
INSERT INTO public.notice VALUES (20864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700204225);
INSERT INTO public.notice VALUES (20865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700204825);
INSERT INTO public.notice VALUES (20866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700205426);
INSERT INTO public.notice VALUES (20867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700206027);
INSERT INTO public.notice VALUES (20868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700206625);
INSERT INTO public.notice VALUES (20869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700207226);
INSERT INTO public.notice VALUES (20870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700207827);
INSERT INTO public.notice VALUES (20871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700208426);
INSERT INTO public.notice VALUES (20872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700209025);
INSERT INTO public.notice VALUES (20873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700209625);
INSERT INTO public.notice VALUES (20874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700210228);
INSERT INTO public.notice VALUES (20875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700210825);
INSERT INTO public.notice VALUES (20876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700211425);
INSERT INTO public.notice VALUES (20877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700212024);
INSERT INTO public.notice VALUES (20878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700212626);
INSERT INTO public.notice VALUES (20879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700213226);
INSERT INTO public.notice VALUES (20880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700213825);
INSERT INTO public.notice VALUES (20887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700218027);
INSERT INTO public.notice VALUES (20891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700220425);
INSERT INTO public.notice VALUES (20893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700221627);
INSERT INTO public.notice VALUES (20895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700222827);
INSERT INTO public.notice VALUES (25674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703092506);
INSERT INTO public.notice VALUES (25675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703093108);
INSERT INTO public.notice VALUES (25676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703093707);
INSERT INTO public.notice VALUES (25678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703094908);
INSERT INTO public.notice VALUES (25680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703096107);
INSERT INTO public.notice VALUES (25684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703098507);
INSERT INTO public.notice VALUES (25689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703101508);
INSERT INTO public.notice VALUES (25692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703103308);
INSERT INTO public.notice VALUES (25694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703104507);
INSERT INTO public.notice VALUES (25700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703108111);
INSERT INTO public.notice VALUES (20881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700214427);
INSERT INTO public.notice VALUES (20882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700215025);
INSERT INTO public.notice VALUES (20883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700215625);
INSERT INTO public.notice VALUES (20884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700216225);
INSERT INTO public.notice VALUES (20885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700216826);
INSERT INTO public.notice VALUES (20886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700217427);
INSERT INTO public.notice VALUES (20888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700218626);
INSERT INTO public.notice VALUES (20889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700219226);
INSERT INTO public.notice VALUES (20890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700219825);
INSERT INTO public.notice VALUES (20892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700221027);
INSERT INTO public.notice VALUES (20894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700222226);
INSERT INTO public.notice VALUES (20896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700223426);
INSERT INTO public.notice VALUES (20897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700224026);
INSERT INTO public.notice VALUES (20898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700224626);
INSERT INTO public.notice VALUES (20899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700225227);
INSERT INTO public.notice VALUES (20900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700225827);
INSERT INTO public.notice VALUES (20905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700228826);
INSERT INTO public.notice VALUES (25677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703094307);
INSERT INTO public.notice VALUES (26401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703529035);
INSERT INTO public.notice VALUES (26404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703530835);
INSERT INTO public.notice VALUES (26406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703532036);
INSERT INTO public.notice VALUES (26408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703533236);
INSERT INTO public.notice VALUES (26409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703533835);
INSERT INTO public.notice VALUES (26989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703881835);
INSERT INTO public.notice VALUES (27387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704120636);
INSERT INTO public.notice VALUES (27389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704121836);
INSERT INTO public.notice VALUES (27687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704300635);
INSERT INTO public.notice VALUES (27877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704414636);
INSERT INTO public.notice VALUES (27960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704464435);
INSERT INTO public.notice VALUES (27961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704465035);
INSERT INTO public.notice VALUES (20901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700226426);
INSERT INTO public.notice VALUES (20902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700227025);
INSERT INTO public.notice VALUES (20903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700227626);
INSERT INTO public.notice VALUES (20904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700228226);
INSERT INTO public.notice VALUES (20906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700229428);
INSERT INTO public.notice VALUES (20907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700230027);
INSERT INTO public.notice VALUES (20908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700230627);
INSERT INTO public.notice VALUES (20909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700231225);
INSERT INTO public.notice VALUES (20910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700231827);
INSERT INTO public.notice VALUES (20911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700232427);
INSERT INTO public.notice VALUES (20912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700233025);
INSERT INTO public.notice VALUES (20913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700233626);
INSERT INTO public.notice VALUES (20914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700234227);
INSERT INTO public.notice VALUES (20915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700234825);
INSERT INTO public.notice VALUES (20916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700235425);
INSERT INTO public.notice VALUES (20917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700236027);
INSERT INTO public.notice VALUES (20918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700236626);
INSERT INTO public.notice VALUES (20923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700239627);
INSERT INTO public.notice VALUES (25679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703095509);
INSERT INTO public.notice VALUES (25681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703096708);
INSERT INTO public.notice VALUES (26402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703529636);
INSERT INTO public.notice VALUES (26403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703530236);
INSERT INTO public.notice VALUES (26990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703882436);
INSERT INTO public.notice VALUES (26992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703883636);
INSERT INTO public.notice VALUES (27388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704121235);
INSERT INTO public.notice VALUES (27688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704301235);
INSERT INTO public.notice VALUES (27689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704301836);
INSERT INTO public.notice VALUES (27690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704302436);
INSERT INTO public.notice VALUES (27692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704303636);
INSERT INTO public.notice VALUES (27696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704306036);
INSERT INTO public.notice VALUES (20919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700237226);
INSERT INTO public.notice VALUES (20920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700237824);
INSERT INTO public.notice VALUES (20921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700238426);
INSERT INTO public.notice VALUES (20922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700239025);
INSERT INTO public.notice VALUES (20924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700240227);
INSERT INTO public.notice VALUES (20925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700240827);
INSERT INTO public.notice VALUES (20926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700241426);
INSERT INTO public.notice VALUES (20927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700242025);
INSERT INTO public.notice VALUES (20928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700242628);
INSERT INTO public.notice VALUES (20929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700243225);
INSERT INTO public.notice VALUES (20930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700243826);
INSERT INTO public.notice VALUES (20931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700244424);
INSERT INTO public.notice VALUES (20932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700245027);
INSERT INTO public.notice VALUES (20933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700245626);
INSERT INTO public.notice VALUES (20934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700246226);
INSERT INTO public.notice VALUES (20935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700246826);
INSERT INTO public.notice VALUES (25682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703097308);
INSERT INTO public.notice VALUES (25683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703097914);
INSERT INTO public.notice VALUES (25685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703099108);
INSERT INTO public.notice VALUES (25686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703099708);
INSERT INTO public.notice VALUES (26405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703531435);
INSERT INTO public.notice VALUES (26407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703532636);
INSERT INTO public.notice VALUES (26410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703534436);
INSERT INTO public.notice VALUES (26411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703535035);
INSERT INTO public.notice VALUES (26412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703535635);
INSERT INTO public.notice VALUES (26993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703884235);
INSERT INTO public.notice VALUES (27390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704122436);
INSERT INTO public.notice VALUES (27393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704124236);
INSERT INTO public.notice VALUES (27394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704124835);
INSERT INTO public.notice VALUES (27395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704125435);
INSERT INTO public.notice VALUES (20936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700247426);
INSERT INTO public.notice VALUES (20937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700248027);
INSERT INTO public.notice VALUES (20938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700248626);
INSERT INTO public.notice VALUES (20939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700249227);
INSERT INTO public.notice VALUES (20940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700249826);
INSERT INTO public.notice VALUES (20941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700250426);
INSERT INTO public.notice VALUES (20942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700251027);
INSERT INTO public.notice VALUES (20943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700251627);
INSERT INTO public.notice VALUES (20944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700252227);
INSERT INTO public.notice VALUES (20945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700252826);
INSERT INTO public.notice VALUES (20946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700253428);
INSERT INTO public.notice VALUES (20947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700254027);
INSERT INTO public.notice VALUES (20948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700254627);
INSERT INTO public.notice VALUES (20949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700255226);
INSERT INTO public.notice VALUES (20950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700255828);
INSERT INTO public.notice VALUES (20951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700256427);
INSERT INTO public.notice VALUES (20952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700257028);
INSERT INTO public.notice VALUES (20953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700257625);
INSERT INTO public.notice VALUES (20954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700258227);
INSERT INTO public.notice VALUES (20961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700262427);
INSERT INTO public.notice VALUES (20962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700263026);
INSERT INTO public.notice VALUES (20964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700264225);
INSERT INTO public.notice VALUES (25687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703100308);
INSERT INTO public.notice VALUES (25688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703100908);
INSERT INTO public.notice VALUES (26413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703536236);
INSERT INTO public.notice VALUES (26414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703536836);
INSERT INTO public.notice VALUES (26417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703538643);
INSERT INTO public.notice VALUES (26418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703539235);
INSERT INTO public.notice VALUES (26421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703541036);
INSERT INTO public.notice VALUES (26997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703886637);
INSERT INTO public.notice VALUES (20955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700258826);
INSERT INTO public.notice VALUES (20956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700259426);
INSERT INTO public.notice VALUES (20957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700260028);
INSERT INTO public.notice VALUES (20958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700260627);
INSERT INTO public.notice VALUES (20959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700261226);
INSERT INTO public.notice VALUES (20960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700261826);
INSERT INTO public.notice VALUES (20963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700263626);
INSERT INTO public.notice VALUES (20965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700264828);
INSERT INTO public.notice VALUES (20966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700265426);
INSERT INTO public.notice VALUES (20967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700266026);
INSERT INTO public.notice VALUES (20968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700266627);
INSERT INTO public.notice VALUES (20969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700267226);
INSERT INTO public.notice VALUES (20970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700267826);
INSERT INTO public.notice VALUES (20971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700268425);
INSERT INTO public.notice VALUES (20972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700269028);
INSERT INTO public.notice VALUES (20976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Recv failure: Connection was reset
', 1700271569);
INSERT INTO public.notice VALUES (20973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700269626);
INSERT INTO public.notice VALUES (20974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700270225);
INSERT INTO public.notice VALUES (20975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700270827);
INSERT INTO public.notice VALUES (20977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700272026);
INSERT INTO public.notice VALUES (20978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700272625);
INSERT INTO public.notice VALUES (20979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700273227);
INSERT INTO public.notice VALUES (20980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700273826);
INSERT INTO public.notice VALUES (20981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700274425);
INSERT INTO public.notice VALUES (20982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700275025);
INSERT INTO public.notice VALUES (20983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700275627);
INSERT INTO public.notice VALUES (20984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700276226);
INSERT INTO public.notice VALUES (20985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700276827);
INSERT INTO public.notice VALUES (20986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700277427);
INSERT INTO public.notice VALUES (20987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700278028);
INSERT INTO public.notice VALUES (20988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700278627);
INSERT INTO public.notice VALUES (20989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700279225);
INSERT INTO public.notice VALUES (20990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700279828);
INSERT INTO public.notice VALUES (20991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700280426);
INSERT INTO public.notice VALUES (20992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700281025);
INSERT INTO public.notice VALUES (20993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700281625);
INSERT INTO public.notice VALUES (20994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700282227);
INSERT INTO public.notice VALUES (20995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700282826);
INSERT INTO public.notice VALUES (20996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700283425);
INSERT INTO public.notice VALUES (20997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700284028);
INSERT INTO public.notice VALUES (20998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700284626);
INSERT INTO public.notice VALUES (20999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700285225);
INSERT INTO public.notice VALUES (21000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700285826);
INSERT INTO public.notice VALUES (21001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700286427);
INSERT INTO public.notice VALUES (21002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700287026);
INSERT INTO public.notice VALUES (21003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700287625);
INSERT INTO public.notice VALUES (21004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700288225);
INSERT INTO public.notice VALUES (21005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700288826);
INSERT INTO public.notice VALUES (21006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700289426);
INSERT INTO public.notice VALUES (21007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700290025);
INSERT INTO public.notice VALUES (21008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700290626);
INSERT INTO public.notice VALUES (21009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700291226);
INSERT INTO public.notice VALUES (21010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700291825);
INSERT INTO public.notice VALUES (21011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700292425);
INSERT INTO public.notice VALUES (21012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700293026);
INSERT INTO public.notice VALUES (21013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700293626);
INSERT INTO public.notice VALUES (21014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700294226);
INSERT INTO public.notice VALUES (21015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700294825);
INSERT INTO public.notice VALUES (21016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700295426);
INSERT INTO public.notice VALUES (21017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700296026);
INSERT INTO public.notice VALUES (21018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700296625);
INSERT INTO public.notice VALUES (21019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700297227);
INSERT INTO public.notice VALUES (21020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700297826);
INSERT INTO public.notice VALUES (25690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703102109);
INSERT INTO public.notice VALUES (26415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703537435);
INSERT INTO public.notice VALUES (26416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703538035);
INSERT INTO public.notice VALUES (26419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703539835);
INSERT INTO public.notice VALUES (26420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703540436);
INSERT INTO public.notice VALUES (26998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703887236);
INSERT INTO public.notice VALUES (27004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703890835);
INSERT INTO public.notice VALUES (27005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703891443);
INSERT INTO public.notice VALUES (27007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703892635);
INSERT INTO public.notice VALUES (27391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704123035);
INSERT INTO public.notice VALUES (27691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704303043);
INSERT INTO public.notice VALUES (27693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704304236);
INSERT INTO public.notice VALUES (27694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704304836);
INSERT INTO public.notice VALUES (21021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700298425);
INSERT INTO public.notice VALUES (21022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700299025);
INSERT INTO public.notice VALUES (21023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700299626);
INSERT INTO public.notice VALUES (21024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700300226);
INSERT INTO public.notice VALUES (21025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700300825);
INSERT INTO public.notice VALUES (21026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700301424);
INSERT INTO public.notice VALUES (21027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700302026);
INSERT INTO public.notice VALUES (21028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700302625);
INSERT INTO public.notice VALUES (21029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700303225);
INSERT INTO public.notice VALUES (21030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700303826);
INSERT INTO public.notice VALUES (21031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700304426);
INSERT INTO public.notice VALUES (21032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700305025);
INSERT INTO public.notice VALUES (21033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700305625);
INSERT INTO public.notice VALUES (21034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700306226);
INSERT INTO public.notice VALUES (21035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700306826);
INSERT INTO public.notice VALUES (21036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700307425);
INSERT INTO public.notice VALUES (21037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700308026);
INSERT INTO public.notice VALUES (21039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700309225);
INSERT INTO public.notice VALUES (25691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703102707);
INSERT INTO public.notice VALUES (25693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703103908);
INSERT INTO public.notice VALUES (26422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703541635);
INSERT INTO public.notice VALUES (26424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703542836);
INSERT INTO public.notice VALUES (26425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703543436);
INSERT INTO public.notice VALUES (26426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703544035);
INSERT INTO public.notice VALUES (26427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703544636);
INSERT INTO public.notice VALUES (26434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703548841);
INSERT INTO public.notice VALUES (26435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703549436);
INSERT INTO public.notice VALUES (26437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703550635);
INSERT INTO public.notice VALUES (26438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703551236);
INSERT INTO public.notice VALUES (26999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703887835);
INSERT INTO public.notice VALUES (21038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700308626);
INSERT INTO public.notice VALUES (21040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700309825);
INSERT INTO public.notice VALUES (21041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700310426);
INSERT INTO public.notice VALUES (21042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700311027);
INSERT INTO public.notice VALUES (21043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700311625);
INSERT INTO public.notice VALUES (21044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700312227);
INSERT INTO public.notice VALUES (21045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700312826);
INSERT INTO public.notice VALUES (21046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700313427);
INSERT INTO public.notice VALUES (21047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700314025);
INSERT INTO public.notice VALUES (21048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700314626);
INSERT INTO public.notice VALUES (21049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700315226);
INSERT INTO public.notice VALUES (21050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700315826);
INSERT INTO public.notice VALUES (21051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700316427);
INSERT INTO public.notice VALUES (21052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700317026);
INSERT INTO public.notice VALUES (21053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700317625);
INSERT INTO public.notice VALUES (21054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700318225);
INSERT INTO public.notice VALUES (21055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700318826);
INSERT INTO public.notice VALUES (21056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700319426);
INSERT INTO public.notice VALUES (21057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700320025);
INSERT INTO public.notice VALUES (21061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700322425);
INSERT INTO public.notice VALUES (21062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700323027);
INSERT INTO public.notice VALUES (21064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700324226);
INSERT INTO public.notice VALUES (21066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700325426);
INSERT INTO public.notice VALUES (25695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703105107);
INSERT INTO public.notice VALUES (25696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703105708);
INSERT INTO public.notice VALUES (26423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703542235);
INSERT INTO public.notice VALUES (27000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703888435);
INSERT INTO public.notice VALUES (27392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704123635);
INSERT INTO public.notice VALUES (27396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704126034);
INSERT INTO public.notice VALUES (27695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704305435);
INSERT INTO public.notice VALUES (21058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700320625);
INSERT INTO public.notice VALUES (21059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700321226);
INSERT INTO public.notice VALUES (21060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700321826);
INSERT INTO public.notice VALUES (21063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700323626);
INSERT INTO public.notice VALUES (21065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700324825);
INSERT INTO public.notice VALUES (21067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700326026);
INSERT INTO public.notice VALUES (21068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700326625);
INSERT INTO public.notice VALUES (21069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700327227);
INSERT INTO public.notice VALUES (21070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700327826);
INSERT INTO public.notice VALUES (21071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700328425);
INSERT INTO public.notice VALUES (21072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700329025);
INSERT INTO public.notice VALUES (21073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700329626);
INSERT INTO public.notice VALUES (21074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700330226);
INSERT INTO public.notice VALUES (21075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700330826);
INSERT INTO public.notice VALUES (21076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700331425);
INSERT INTO public.notice VALUES (21077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700332026);
INSERT INTO public.notice VALUES (21078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700332625);
INSERT INTO public.notice VALUES (21083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1700335635);
INSERT INTO public.notice VALUES (21084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700336226);
INSERT INTO public.notice VALUES (21086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700337425);
INSERT INTO public.notice VALUES (21092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700341026);
INSERT INTO public.notice VALUES (25697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703106307);
INSERT INTO public.notice VALUES (26428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703545236);
INSERT INTO public.notice VALUES (26429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703545835);
INSERT INTO public.notice VALUES (27001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703889036);
INSERT INTO public.notice VALUES (27002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703889636);
INSERT INTO public.notice VALUES (27003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703890235);
INSERT INTO public.notice VALUES (27006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703892036);
INSERT INTO public.notice VALUES (27008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703893234);
INSERT INTO public.notice VALUES (27397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704126643);
INSERT INTO public.notice VALUES (27697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704306636);
INSERT INTO public.notice VALUES (21079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700333226);
INSERT INTO public.notice VALUES (21080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700333826);
INSERT INTO public.notice VALUES (21081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1700334436);
INSERT INTO public.notice VALUES (21082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com
', 1700335035);
INSERT INTO public.notice VALUES (21085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700336826);
INSERT INTO public.notice VALUES (21087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700338026);
INSERT INTO public.notice VALUES (21088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700338626);
INSERT INTO public.notice VALUES (21089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700339226);
INSERT INTO public.notice VALUES (21090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700339825);
INSERT INTO public.notice VALUES (21091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700340426);
INSERT INTO public.notice VALUES (21093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700341625);
INSERT INTO public.notice VALUES (21094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700342225);
INSERT INTO public.notice VALUES (21095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700342826);
INSERT INTO public.notice VALUES (21096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700343425);
INSERT INTO public.notice VALUES (21097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700344025);
INSERT INTO public.notice VALUES (21098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700344626);
INSERT INTO public.notice VALUES (21099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700345226);
INSERT INTO public.notice VALUES (21101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700346425);
INSERT INTO public.notice VALUES (21103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700347627);
INSERT INTO public.notice VALUES (25698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703106907);
INSERT INTO public.notice VALUES (26430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703546435);
INSERT INTO public.notice VALUES (26431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703547036);
INSERT INTO public.notice VALUES (27009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703893836);
INSERT INTO public.notice VALUES (27010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703894435);
INSERT INTO public.notice VALUES (27012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703895636);
INSERT INTO public.notice VALUES (27016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703898036);
INSERT INTO public.notice VALUES (27398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704127235);
INSERT INTO public.notice VALUES (27698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704307235);
INSERT INTO public.notice VALUES (27702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704309635);
INSERT INTO public.notice VALUES (27878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704415236);
INSERT INTO public.notice VALUES (27879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704415835);
INSERT INTO public.notice VALUES (21100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700345825);
INSERT INTO public.notice VALUES (21102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700347026);
INSERT INTO public.notice VALUES (21104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700348225);
INSERT INTO public.notice VALUES (21105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700348827);
INSERT INTO public.notice VALUES (21106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700349426);
INSERT INTO public.notice VALUES (21107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700350025);
INSERT INTO public.notice VALUES (21108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700350625);
INSERT INTO public.notice VALUES (21109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700351226);
INSERT INTO public.notice VALUES (21110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700351826);
INSERT INTO public.notice VALUES (21111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700352425);
INSERT INTO public.notice VALUES (21112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700353027);
INSERT INTO public.notice VALUES (21113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700353626);
INSERT INTO public.notice VALUES (21114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700354225);
INSERT INTO public.notice VALUES (21115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700354825);
INSERT INTO public.notice VALUES (21116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700355426);
INSERT INTO public.notice VALUES (21117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700356026);
INSERT INTO public.notice VALUES (25699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703107515);
INSERT INTO public.notice VALUES (25701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703108707);
INSERT INTO public.notice VALUES (25707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703112308);
INSERT INTO public.notice VALUES (26432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703547636);
INSERT INTO public.notice VALUES (27011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703895035);
INSERT INTO public.notice VALUES (27013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703896236);
INSERT INTO public.notice VALUES (27014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703896835);
INSERT INTO public.notice VALUES (27015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703897434);
INSERT INTO public.notice VALUES (27017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703898635);
INSERT INTO public.notice VALUES (27399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704127835);
INSERT INTO public.notice VALUES (27401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704129036);
INSERT INTO public.notice VALUES (27699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704307836);
INSERT INTO public.notice VALUES (27700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704308436);
INSERT INTO public.notice VALUES (27881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704417036);
INSERT INTO public.notice VALUES (21118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700356625);
INSERT INTO public.notice VALUES (21119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700357225);
INSERT INTO public.notice VALUES (21120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700357826);
INSERT INTO public.notice VALUES (21121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700358426);
INSERT INTO public.notice VALUES (21122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700359025);
INSERT INTO public.notice VALUES (21123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700359626);
INSERT INTO public.notice VALUES (21124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700360226);
INSERT INTO public.notice VALUES (21125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700360825);
INSERT INTO public.notice VALUES (21126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700361425);
INSERT INTO public.notice VALUES (21127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700362027);
INSERT INTO public.notice VALUES (21128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700362625);
INSERT INTO public.notice VALUES (21129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700363225);
INSERT INTO public.notice VALUES (21130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700363824);
INSERT INTO public.notice VALUES (21131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700364426);
INSERT INTO public.notice VALUES (21132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700365025);
INSERT INTO public.notice VALUES (21133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700365625);
INSERT INTO public.notice VALUES (21134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700366226);
INSERT INTO public.notice VALUES (21135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700366827);
INSERT INTO public.notice VALUES (21136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700367425);
INSERT INTO public.notice VALUES (21137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700368024);
INSERT INTO public.notice VALUES (21138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700368626);
INSERT INTO public.notice VALUES (21139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700369225);
INSERT INTO public.notice VALUES (21140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700369825);
INSERT INTO public.notice VALUES (21141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700370426);
INSERT INTO public.notice VALUES (21142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700371026);
INSERT INTO public.notice VALUES (21143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700371625);
INSERT INTO public.notice VALUES (21144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700372228);
INSERT INTO public.notice VALUES (21145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700372826);
INSERT INTO public.notice VALUES (21146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700373426);
INSERT INTO public.notice VALUES (21147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700374025);
INSERT INTO public.notice VALUES (21148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700374626);
INSERT INTO public.notice VALUES (21149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700375226);
INSERT INTO public.notice VALUES (21150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700375826);
INSERT INTO public.notice VALUES (21154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700378225);
INSERT INTO public.notice VALUES (21155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700378826);
INSERT INTO public.notice VALUES (21156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700379428);
INSERT INTO public.notice VALUES (21157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700380027);
INSERT INTO public.notice VALUES (21158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700380625);
INSERT INTO public.notice VALUES (21160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700381826);
INSERT INTO public.notice VALUES (21162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700383026);
INSERT INTO public.notice VALUES (21163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700383628);
INSERT INTO public.notice VALUES (21166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700385424);
INSERT INTO public.notice VALUES (25702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703109307);
INSERT INTO public.notice VALUES (25703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703109908);
INSERT INTO public.notice VALUES (26433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703548242);
INSERT INTO public.notice VALUES (21151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700376426);
INSERT INTO public.notice VALUES (21152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700377028);
INSERT INTO public.notice VALUES (21153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700377626);
INSERT INTO public.notice VALUES (21159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700381227);
INSERT INTO public.notice VALUES (21161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700382426);
INSERT INTO public.notice VALUES (21164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700384226);
INSERT INTO public.notice VALUES (21165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700384827);
INSERT INTO public.notice VALUES (21167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700386027);
INSERT INTO public.notice VALUES (21168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700386626);
INSERT INTO public.notice VALUES (21169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700387225);
INSERT INTO public.notice VALUES (21170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700387827);
INSERT INTO public.notice VALUES (21171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700388426);
INSERT INTO public.notice VALUES (21172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700389025);
INSERT INTO public.notice VALUES (21173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700389624);
INSERT INTO public.notice VALUES (21174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700390226);
INSERT INTO public.notice VALUES (21175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700390825);
INSERT INTO public.notice VALUES (21177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700392026);
INSERT INTO public.notice VALUES (25704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703110507);
INSERT INTO public.notice VALUES (25705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703111107);
INSERT INTO public.notice VALUES (25706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703111706);
INSERT INTO public.notice VALUES (25710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703114108);
INSERT INTO public.notice VALUES (26436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703550035);
INSERT INTO public.notice VALUES (26441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703553034);
INSERT INTO public.notice VALUES (27018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703899235);
INSERT INTO public.notice VALUES (27019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703899836);
INSERT INTO public.notice VALUES (27021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703901042);
INSERT INTO public.notice VALUES (27400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704128436);
INSERT INTO public.notice VALUES (27701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704309035);
INSERT INTO public.notice VALUES (27703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704310236);
INSERT INTO public.notice VALUES (27705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704311436);
INSERT INTO public.notice VALUES (21176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700391425);
INSERT INTO public.notice VALUES (21178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700392626);
INSERT INTO public.notice VALUES (21179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700393225);
INSERT INTO public.notice VALUES (21180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700393827);
INSERT INTO public.notice VALUES (21181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700394426);
INSERT INTO public.notice VALUES (21182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700395025);
INSERT INTO public.notice VALUES (21183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700395625);
INSERT INTO public.notice VALUES (21184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700396226);
INSERT INTO public.notice VALUES (21185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700396826);
INSERT INTO public.notice VALUES (21186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700397425);
INSERT INTO public.notice VALUES (21187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700398028);
INSERT INTO public.notice VALUES (21188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700398626);
INSERT INTO public.notice VALUES (21189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700399226);
INSERT INTO public.notice VALUES (21190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700399825);
INSERT INTO public.notice VALUES (21191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700400426);
INSERT INTO public.notice VALUES (21192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700401027);
INSERT INTO public.notice VALUES (21193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700401625);
INSERT INTO public.notice VALUES (21196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700403426);
INSERT INTO public.notice VALUES (25708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703112907);
INSERT INTO public.notice VALUES (25709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703113507);
INSERT INTO public.notice VALUES (26439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703551836);
INSERT INTO public.notice VALUES (26440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703552435);
INSERT INTO public.notice VALUES (26443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703554236);
INSERT INTO public.notice VALUES (26445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703555436);
INSERT INTO public.notice VALUES (26450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703558435);
INSERT INTO public.notice VALUES (26452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703559636);
INSERT INTO public.notice VALUES (26455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703561434);
INSERT INTO public.notice VALUES (26456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703562036);
INSERT INTO public.notice VALUES (26457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703562635);
INSERT INTO public.notice VALUES (26458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703563235);
INSERT INTO public.notice VALUES (21194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700402225);
INSERT INTO public.notice VALUES (21195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700402826);
INSERT INTO public.notice VALUES (21197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700404025);
INSERT INTO public.notice VALUES (21198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700404627);
INSERT INTO public.notice VALUES (21199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700405226);
INSERT INTO public.notice VALUES (21200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700405825);
INSERT INTO public.notice VALUES (21201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700406425);
INSERT INTO public.notice VALUES (21202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700407027);
INSERT INTO public.notice VALUES (21203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700407626);
INSERT INTO public.notice VALUES (21204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700408225);
INSERT INTO public.notice VALUES (21205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700408825);
INSERT INTO public.notice VALUES (21206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700409426);
INSERT INTO public.notice VALUES (21207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700410026);
INSERT INTO public.notice VALUES (21208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700410632);
INSERT INTO public.notice VALUES (21209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700411226);
INSERT INTO public.notice VALUES (21210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700411827);
INSERT INTO public.notice VALUES (21214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700414227);
INSERT INTO public.notice VALUES (25711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703114708);
INSERT INTO public.notice VALUES (26442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703553636);
INSERT INTO public.notice VALUES (26444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703554835);
INSERT INTO public.notice VALUES (26446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703556036);
INSERT INTO public.notice VALUES (27020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703900436);
INSERT INTO public.notice VALUES (27402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704129635);
INSERT INTO public.notice VALUES (27403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704130237);
INSERT INTO public.notice VALUES (27704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704310836);
INSERT INTO public.notice VALUES (27706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704312035);
INSERT INTO public.notice VALUES (27712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704315636);
INSERT INTO public.notice VALUES (27713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704316235);
INSERT INTO public.notice VALUES (27714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704316836);
INSERT INTO public.notice VALUES (27715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704317435);
INSERT INTO public.notice VALUES (21211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700412427);
INSERT INTO public.notice VALUES (21212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700413025);
INSERT INTO public.notice VALUES (21213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700413627);
INSERT INTO public.notice VALUES (21215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700414828);
INSERT INTO public.notice VALUES (21216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700415428);
INSERT INTO public.notice VALUES (21217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700416027);
INSERT INTO public.notice VALUES (21218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700416626);
INSERT INTO public.notice VALUES (21219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700417226);
INSERT INTO public.notice VALUES (21220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700417826);
INSERT INTO public.notice VALUES (21221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700418426);
INSERT INTO public.notice VALUES (21222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700419027);
INSERT INTO public.notice VALUES (21223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700419625);
INSERT INTO public.notice VALUES (21224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700420227);
INSERT INTO public.notice VALUES (21225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700420826);
INSERT INTO public.notice VALUES (21226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700421427);
INSERT INTO public.notice VALUES (21227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700422028);
INSERT INTO public.notice VALUES (25712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703115307);
INSERT INTO public.notice VALUES (26447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703556635);
INSERT INTO public.notice VALUES (26448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703557234);
INSERT INTO public.notice VALUES (26449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703557836);
INSERT INTO public.notice VALUES (27022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703901640);
INSERT INTO public.notice VALUES (27023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703902236);
INSERT INTO public.notice VALUES (27029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703905835);
INSERT INTO public.notice VALUES (27030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703906436);
INSERT INTO public.notice VALUES (27031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703907035);
INSERT INTO public.notice VALUES (27404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704130836);
INSERT INTO public.notice VALUES (27707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704312644);
INSERT INTO public.notice VALUES (27884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704418836);
INSERT INTO public.notice VALUES (27963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704466235);
INSERT INTO public.notice VALUES (27964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704466835);
INSERT INTO public.notice VALUES (21228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700422627);
INSERT INTO public.notice VALUES (21229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700423227);
INSERT INTO public.notice VALUES (21230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700423826);
INSERT INTO public.notice VALUES (21231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700424428);
INSERT INTO public.notice VALUES (21232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700425027);
INSERT INTO public.notice VALUES (21233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700425627);
INSERT INTO public.notice VALUES (21234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700426226);
INSERT INTO public.notice VALUES (21235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700426828);
INSERT INTO public.notice VALUES (21236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700427427);
INSERT INTO public.notice VALUES (21237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700428026);
INSERT INTO public.notice VALUES (21238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700428628);
INSERT INTO public.notice VALUES (21239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700429227);
INSERT INTO public.notice VALUES (21240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700429827);
INSERT INTO public.notice VALUES (21241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700430427);
INSERT INTO public.notice VALUES (21242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700431028);
INSERT INTO public.notice VALUES (21243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700431625);
INSERT INTO public.notice VALUES (21244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700432226);
INSERT INTO public.notice VALUES (21245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700432828);
INSERT INTO public.notice VALUES (21246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700433426);
INSERT INTO public.notice VALUES (21247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700434027);
INSERT INTO public.notice VALUES (21248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700434625);
INSERT INTO public.notice VALUES (21249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700435227);
INSERT INTO public.notice VALUES (21250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700435826);
INSERT INTO public.notice VALUES (21251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700436425);
INSERT INTO public.notice VALUES (21252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700437026);
INSERT INTO public.notice VALUES (21253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700437626);
INSERT INTO public.notice VALUES (21254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700438225);
INSERT INTO public.notice VALUES (21255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700438825);
INSERT INTO public.notice VALUES (21256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700439426);
INSERT INTO public.notice VALUES (21257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700440025);
INSERT INTO public.notice VALUES (21258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700440625);
INSERT INTO public.notice VALUES (25713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703115908);
INSERT INTO public.notice VALUES (25714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703116508);
INSERT INTO public.notice VALUES (25716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703117707);
INSERT INTO public.notice VALUES (25717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703118308);
INSERT INTO public.notice VALUES (26451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703559035);
INSERT INTO public.notice VALUES (26453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703560236);
INSERT INTO public.notice VALUES (27024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703902835);
INSERT INTO public.notice VALUES (27025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703903435);
INSERT INTO public.notice VALUES (27026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703904036);
INSERT INTO public.notice VALUES (27027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703904636);
INSERT INTO public.notice VALUES (27028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703905235);
INSERT INTO public.notice VALUES (27405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704131436);
INSERT INTO public.notice VALUES (27407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704132636);
INSERT INTO public.notice VALUES (27708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704313239);
INSERT INTO public.notice VALUES (21259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700441226);
INSERT INTO public.notice VALUES (21260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700441826);
INSERT INTO public.notice VALUES (21261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700442425);
INSERT INTO public.notice VALUES (21262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700443026);
INSERT INTO public.notice VALUES (21263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700443626);
INSERT INTO public.notice VALUES (21264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700444226);
INSERT INTO public.notice VALUES (21265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700444825);
INSERT INTO public.notice VALUES (21266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700445425);
INSERT INTO public.notice VALUES (21267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700446026);
INSERT INTO public.notice VALUES (21268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700446626);
INSERT INTO public.notice VALUES (21269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700447226);
INSERT INTO public.notice VALUES (21270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700447824);
INSERT INTO public.notice VALUES (21271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700448426);
INSERT INTO public.notice VALUES (21272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700449026);
INSERT INTO public.notice VALUES (21273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700449625);
INSERT INTO public.notice VALUES (21274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700450230);
INSERT INTO public.notice VALUES (21276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700451425);
INSERT INTO public.notice VALUES (21277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700452025);
INSERT INTO public.notice VALUES (21278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700452626);
INSERT INTO public.notice VALUES (21279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700453226);
INSERT INTO public.notice VALUES (21280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700453825);
INSERT INTO public.notice VALUES (21281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700454425);
INSERT INTO public.notice VALUES (21283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700455626);
INSERT INTO public.notice VALUES (25715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703117107);
INSERT INTO public.notice VALUES (25719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703119507);
INSERT INTO public.notice VALUES (25722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703121307);
INSERT INTO public.notice VALUES (26454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703560835);
INSERT INTO public.notice VALUES (26461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703565035);
INSERT INTO public.notice VALUES (27032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703907635);
INSERT INTO public.notice VALUES (27033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703908234);
INSERT INTO public.notice VALUES (21275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700450826);
INSERT INTO public.notice VALUES (21282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700455026);
INSERT INTO public.notice VALUES (21284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700456225);
INSERT INTO public.notice VALUES (21285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700456826);
INSERT INTO public.notice VALUES (21287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700458025);
INSERT INTO public.notice VALUES (21288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700458625);
INSERT INTO public.notice VALUES (21290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700459825);
INSERT INTO public.notice VALUES (21292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700461025);
INSERT INTO public.notice VALUES (25718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703118908);
INSERT INTO public.notice VALUES (25720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703120108);
INSERT INTO public.notice VALUES (25721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703120708);
INSERT INTO public.notice VALUES (26459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703563836);
INSERT INTO public.notice VALUES (26460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703564436);
INSERT INTO public.notice VALUES (26462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703565635);
INSERT INTO public.notice VALUES (26464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703566835);
INSERT INTO public.notice VALUES (21289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700459226);
INSERT INTO public.notice VALUES (21291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700460425);
INSERT INTO public.notice VALUES (21293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700461626);
INSERT INTO public.notice VALUES (21294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700462226);
INSERT INTO public.notice VALUES (21295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700462826);
INSERT INTO public.notice VALUES (21296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700463426);
INSERT INTO public.notice VALUES (21297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700464025);
INSERT INTO public.notice VALUES (21298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700464625);
INSERT INTO public.notice VALUES (21299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700465227);
INSERT INTO public.notice VALUES (21300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700465826);
INSERT INTO public.notice VALUES (21301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700466426);
INSERT INTO public.notice VALUES (21302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700467026);
INSERT INTO public.notice VALUES (21303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700467627);
INSERT INTO public.notice VALUES (21304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700468226);
INSERT INTO public.notice VALUES (21305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700468825);
INSERT INTO public.notice VALUES (21306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700469425);
INSERT INTO public.notice VALUES (21309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700471225);
INSERT INTO public.notice VALUES (21310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700471826);
INSERT INTO public.notice VALUES (25723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703121907);
INSERT INTO public.notice VALUES (26463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703566236);
INSERT INTO public.notice VALUES (26466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703568043);
INSERT INTO public.notice VALUES (27034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703908836);
INSERT INTO public.notice VALUES (27406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704132036);
INSERT INTO public.notice VALUES (27408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704133236);
INSERT INTO public.notice VALUES (27412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704135635);
INSERT INTO public.notice VALUES (27709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704313835);
INSERT INTO public.notice VALUES (27885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704419436);
INSERT INTO public.notice VALUES (27886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704420035);
INSERT INTO public.notice VALUES (27889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704421835);
INSERT INTO public.notice VALUES (27965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704467436);
INSERT INTO public.notice VALUES (21307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700470026);
INSERT INTO public.notice VALUES (21308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700470625);
INSERT INTO public.notice VALUES (21311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700472426);
INSERT INTO public.notice VALUES (21312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700473025);
INSERT INTO public.notice VALUES (21313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700473625);
INSERT INTO public.notice VALUES (21314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700474226);
INSERT INTO public.notice VALUES (21315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700474826);
INSERT INTO public.notice VALUES (21316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700475425);
INSERT INTO public.notice VALUES (21317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700476025);
INSERT INTO public.notice VALUES (21318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700476626);
INSERT INTO public.notice VALUES (21319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700477226);
INSERT INTO public.notice VALUES (21320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700477826);
INSERT INTO public.notice VALUES (21321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700478427);
INSERT INTO public.notice VALUES (21322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700479026);
INSERT INTO public.notice VALUES (21323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700479625);
INSERT INTO public.notice VALUES (21324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700480225);
INSERT INTO public.notice VALUES (21327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700482025);
INSERT INTO public.notice VALUES (21329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700483227);
INSERT INTO public.notice VALUES (25724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703122508);
INSERT INTO public.notice VALUES (26465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703567435);
INSERT INTO public.notice VALUES (26468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703569235);
INSERT INTO public.notice VALUES (26469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703569835);
INSERT INTO public.notice VALUES (27035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703909435);
INSERT INTO public.notice VALUES (27409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704133835);
INSERT INTO public.notice VALUES (27410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704134434);
INSERT INTO public.notice VALUES (27411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704135036);
INSERT INTO public.notice VALUES (27414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704136840);
INSERT INTO public.notice VALUES (27417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704138635);
INSERT INTO public.notice VALUES (27422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704141636);
INSERT INTO public.notice VALUES (27423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704142236);
INSERT INTO public.notice VALUES (21325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700480827);
INSERT INTO public.notice VALUES (21326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700481425);
INSERT INTO public.notice VALUES (21328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700482626);
INSERT INTO public.notice VALUES (21330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700483825);
INSERT INTO public.notice VALUES (21331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700484426);
INSERT INTO public.notice VALUES (21332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700485026);
INSERT INTO public.notice VALUES (21333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700485626);
INSERT INTO public.notice VALUES (21334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700486225);
INSERT INTO public.notice VALUES (21335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700486825);
INSERT INTO public.notice VALUES (21336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700487426);
INSERT INTO public.notice VALUES (21337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700488026);
INSERT INTO public.notice VALUES (21338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700488625);
INSERT INTO public.notice VALUES (21339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700489227);
INSERT INTO public.notice VALUES (21340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700489826);
INSERT INTO public.notice VALUES (21341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700490425);
INSERT INTO public.notice VALUES (21342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700491025);
INSERT INTO public.notice VALUES (21343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700491626);
INSERT INTO public.notice VALUES (25725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703123108);
INSERT INTO public.notice VALUES (25728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703124908);
INSERT INTO public.notice VALUES (25731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703126708);
INSERT INTO public.notice VALUES (25733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703127907);
INSERT INTO public.notice VALUES (25736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703129707);
INSERT INTO public.notice VALUES (25740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703132107);
INSERT INTO public.notice VALUES (26467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703568636);
INSERT INTO public.notice VALUES (27036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703910035);
INSERT INTO public.notice VALUES (27038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703911236);
INSERT INTO public.notice VALUES (27413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704136247);
INSERT INTO public.notice VALUES (27415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704137436);
INSERT INTO public.notice VALUES (27416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704138035);
INSERT INTO public.notice VALUES (27418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704139236);
INSERT INTO public.notice VALUES (21344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700492226);
INSERT INTO public.notice VALUES (21345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700492825);
INSERT INTO public.notice VALUES (21346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700493425);
INSERT INTO public.notice VALUES (21347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700494026);
INSERT INTO public.notice VALUES (21348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700494626);
INSERT INTO public.notice VALUES (21349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700495225);
INSERT INTO public.notice VALUES (21350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700495827);
INSERT INTO public.notice VALUES (21351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700496426);
INSERT INTO public.notice VALUES (21352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700497025);
INSERT INTO public.notice VALUES (21353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700497629);
INSERT INTO public.notice VALUES (21354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700498226);
INSERT INTO public.notice VALUES (21355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700498826);
INSERT INTO public.notice VALUES (21356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700499425);
INSERT INTO public.notice VALUES (21357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700500025);
INSERT INTO public.notice VALUES (21358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700500626);
INSERT INTO public.notice VALUES (21359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700501226);
INSERT INTO public.notice VALUES (21360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700501825);
INSERT INTO public.notice VALUES (21361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700502426);
INSERT INTO public.notice VALUES (21362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700503026);
INSERT INTO public.notice VALUES (21363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700503626);
INSERT INTO public.notice VALUES (21364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700504225);
INSERT INTO public.notice VALUES (21365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700504826);
INSERT INTO public.notice VALUES (21366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700505426);
INSERT INTO public.notice VALUES (21367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700506025);
INSERT INTO public.notice VALUES (21368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700506625);
INSERT INTO public.notice VALUES (21369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700507226);
INSERT INTO public.notice VALUES (21370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700507826);
INSERT INTO public.notice VALUES (21371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700508425);
INSERT INTO public.notice VALUES (21372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700509027);
INSERT INTO public.notice VALUES (21373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700509626);
INSERT INTO public.notice VALUES (21374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700510225);
INSERT INTO public.notice VALUES (21377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700512027);
INSERT INTO public.notice VALUES (21378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700512627);
INSERT INTO public.notice VALUES (21380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700513826);
INSERT INTO public.notice VALUES (25726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703123707);
INSERT INTO public.notice VALUES (25727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703124308);
INSERT INTO public.notice VALUES (25729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703125507);
INSERT INTO public.notice VALUES (25730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703126107);
INSERT INTO public.notice VALUES (25732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703127314);
INSERT INTO public.notice VALUES (26470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703570436);
INSERT INTO public.notice VALUES (26472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703571635);
INSERT INTO public.notice VALUES (26473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703572236);
INSERT INTO public.notice VALUES (26474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703572836);
INSERT INTO public.notice VALUES (26475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703573435);
INSERT INTO public.notice VALUES (26476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703574035);
INSERT INTO public.notice VALUES (21375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700510825);
INSERT INTO public.notice VALUES (21376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700511427);
INSERT INTO public.notice VALUES (21379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700513226);
INSERT INTO public.notice VALUES (21381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700514427);
INSERT INTO public.notice VALUES (21382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700515027);
INSERT INTO public.notice VALUES (21383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700515626);
INSERT INTO public.notice VALUES (21384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700516228);
INSERT INTO public.notice VALUES (21385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700516827);
INSERT INTO public.notice VALUES (21386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700517426);
INSERT INTO public.notice VALUES (21387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700518026);
INSERT INTO public.notice VALUES (21388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700518626);
INSERT INTO public.notice VALUES (21389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700519226);
INSERT INTO public.notice VALUES (21390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700519826);
INSERT INTO public.notice VALUES (21391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700520427);
INSERT INTO public.notice VALUES (21392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700521026);
INSERT INTO public.notice VALUES (21393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700521625);
INSERT INTO public.notice VALUES (21394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700522225);
INSERT INTO public.notice VALUES (21395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700522826);
INSERT INTO public.notice VALUES (21396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700523426);
INSERT INTO public.notice VALUES (21397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700524025);
INSERT INTO public.notice VALUES (21398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700524627);
INSERT INTO public.notice VALUES (21400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700525825);
INSERT INTO public.notice VALUES (21403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700527626);
INSERT INTO public.notice VALUES (21404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700528225);
INSERT INTO public.notice VALUES (21405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700528825);
INSERT INTO public.notice VALUES (21406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700529426);
INSERT INTO public.notice VALUES (25734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703128507);
INSERT INTO public.notice VALUES (25735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703129108);
INSERT INTO public.notice VALUES (25737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703130307);
INSERT INTO public.notice VALUES (25738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703130908);
INSERT INTO public.notice VALUES (21399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700525226);
INSERT INTO public.notice VALUES (21401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700526425);
INSERT INTO public.notice VALUES (21402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700527026);
INSERT INTO public.notice VALUES (21407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700530026);
INSERT INTO public.notice VALUES (21408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700530625);
INSERT INTO public.notice VALUES (21409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700531227);
INSERT INTO public.notice VALUES (21410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700531826);
INSERT INTO public.notice VALUES (21411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700532425);
INSERT INTO public.notice VALUES (21412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700533026);
INSERT INTO public.notice VALUES (21413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700533626);
INSERT INTO public.notice VALUES (21414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700534226);
INSERT INTO public.notice VALUES (21415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700534826);
INSERT INTO public.notice VALUES (21416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700535425);
INSERT INTO public.notice VALUES (21417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700536026);
INSERT INTO public.notice VALUES (21418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700536626);
INSERT INTO public.notice VALUES (21419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700537225);
INSERT INTO public.notice VALUES (21420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700537827);
INSERT INTO public.notice VALUES (25739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703131508);
INSERT INTO public.notice VALUES (25742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703133308);
INSERT INTO public.notice VALUES (26471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703571036);
INSERT INTO public.notice VALUES (26478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703575236);
INSERT INTO public.notice VALUES (26479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703575835);
INSERT INTO public.notice VALUES (27037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703910636);
INSERT INTO public.notice VALUES (27039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703911835);
INSERT INTO public.notice VALUES (27419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704139836);
INSERT INTO public.notice VALUES (27710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704314436);
INSERT INTO public.notice VALUES (27887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704420642);
INSERT INTO public.notice VALUES (27888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704421236);
INSERT INTO public.notice VALUES (27966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704468036);
INSERT INTO public.notice VALUES (27992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704483635);
INSERT INTO public.notice VALUES (21421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700538426);
INSERT INTO public.notice VALUES (21422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700539025);
INSERT INTO public.notice VALUES (21423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700539625);
INSERT INTO public.notice VALUES (21424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700540226);
INSERT INTO public.notice VALUES (21425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700540826);
INSERT INTO public.notice VALUES (21426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700541426);
INSERT INTO public.notice VALUES (21427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700542025);
INSERT INTO public.notice VALUES (21428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700542627);
INSERT INTO public.notice VALUES (21429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700543226);
INSERT INTO public.notice VALUES (21430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700543826);
INSERT INTO public.notice VALUES (21431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700544425);
INSERT INTO public.notice VALUES (21432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700545027);
INSERT INTO public.notice VALUES (21433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700545626);
INSERT INTO public.notice VALUES (21434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700546225);
INSERT INTO public.notice VALUES (21435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700546825);
INSERT INTO public.notice VALUES (21436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700547426);
INSERT INTO public.notice VALUES (21437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700548026);
INSERT INTO public.notice VALUES (21438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700548625);
INSERT INTO public.notice VALUES (21439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700549225);
INSERT INTO public.notice VALUES (21440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700549827);
INSERT INTO public.notice VALUES (21441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700550426);
INSERT INTO public.notice VALUES (21442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700551027);
INSERT INTO public.notice VALUES (21443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700551628);
INSERT INTO public.notice VALUES (21444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700552226);
INSERT INTO public.notice VALUES (21445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700552825);
INSERT INTO public.notice VALUES (21446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700553425);
INSERT INTO public.notice VALUES (21447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700554025);
INSERT INTO public.notice VALUES (21448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700554626);
INSERT INTO public.notice VALUES (21449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700555227);
INSERT INTO public.notice VALUES (21450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700555826);
INSERT INTO public.notice VALUES (21451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700556425);
INSERT INTO public.notice VALUES (21452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700557027);
INSERT INTO public.notice VALUES (21454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700558225);
INSERT INTO public.notice VALUES (21457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700560026);
INSERT INTO public.notice VALUES (25741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703132707);
INSERT INTO public.notice VALUES (25746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703135708);
INSERT INTO public.notice VALUES (26477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703574636);
INSERT INTO public.notice VALUES (27040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703912435);
INSERT INTO public.notice VALUES (27041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703913036);
INSERT INTO public.notice VALUES (27420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704140435);
INSERT INTO public.notice VALUES (27421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704141035);
INSERT INTO public.notice VALUES (27711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704315036);
INSERT INTO public.notice VALUES (27716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704318035);
INSERT INTO public.notice VALUES (27718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704319236);
INSERT INTO public.notice VALUES (27890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704422435);
INSERT INTO public.notice VALUES (21453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700557626);
INSERT INTO public.notice VALUES (21455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700558826);
INSERT INTO public.notice VALUES (21456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700559427);
INSERT INTO public.notice VALUES (21458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700560626);
INSERT INTO public.notice VALUES (21459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700561226);
INSERT INTO public.notice VALUES (21460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700561826);
INSERT INTO public.notice VALUES (21461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700562425);
INSERT INTO public.notice VALUES (21462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700563027);
INSERT INTO public.notice VALUES (21463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700563626);
INSERT INTO public.notice VALUES (21464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700564225);
INSERT INTO public.notice VALUES (21465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700564825);
INSERT INTO public.notice VALUES (21466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700565426);
INSERT INTO public.notice VALUES (21467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700566026);
INSERT INTO public.notice VALUES (21468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700566625);
INSERT INTO public.notice VALUES (21469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700567225);
INSERT INTO public.notice VALUES (21470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700567826);
INSERT INTO public.notice VALUES (21473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700569624);
INSERT INTO public.notice VALUES (21474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700570226);
INSERT INTO public.notice VALUES (21476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700571425);
INSERT INTO public.notice VALUES (25743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703133907);
INSERT INTO public.notice VALUES (25744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703134507);
INSERT INTO public.notice VALUES (26480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703576437);
INSERT INTO public.notice VALUES (27042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703913635);
INSERT INTO public.notice VALUES (27424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704142835);
INSERT INTO public.notice VALUES (27425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704143436);
INSERT INTO public.notice VALUES (27717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704318634);
INSERT INTO public.notice VALUES (27891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704423035);
INSERT INTO public.notice VALUES (27967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704468635);
INSERT INTO public.notice VALUES (27993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704484237);
INSERT INTO public.notice VALUES (28006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704492035);
INSERT INTO public.notice VALUES (21471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700568426);
INSERT INTO public.notice VALUES (21472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700569025);
INSERT INTO public.notice VALUES (21475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700570825);
INSERT INTO public.notice VALUES (21477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700572026);
INSERT INTO public.notice VALUES (21478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700572627);
INSERT INTO public.notice VALUES (21479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700573226);
INSERT INTO public.notice VALUES (21480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700573827);
INSERT INTO public.notice VALUES (21481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700574426);
INSERT INTO public.notice VALUES (21482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700575026);
INSERT INTO public.notice VALUES (21483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700575625);
INSERT INTO public.notice VALUES (21484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700576226);
INSERT INTO public.notice VALUES (21485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700576826);
INSERT INTO public.notice VALUES (21486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700577425);
INSERT INTO public.notice VALUES (21487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700578025);
INSERT INTO public.notice VALUES (21488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700578626);
INSERT INTO public.notice VALUES (21489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700579226);
INSERT INTO public.notice VALUES (21490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700579825);
INSERT INTO public.notice VALUES (21491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700580428);
INSERT INTO public.notice VALUES (21492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700581026);
INSERT INTO public.notice VALUES (21493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700581627);
INSERT INTO public.notice VALUES (21494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700582225);
INSERT INTO public.notice VALUES (21495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700582826);
INSERT INTO public.notice VALUES (21496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700583429);
INSERT INTO public.notice VALUES (21497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700584026);
INSERT INTO public.notice VALUES (21498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700584626);
INSERT INTO public.notice VALUES (21499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700585226);
INSERT INTO public.notice VALUES (21500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700585825);
INSERT INTO public.notice VALUES (21501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700586425);
INSERT INTO public.notice VALUES (21502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700587026);
INSERT INTO public.notice VALUES (21503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700587626);
INSERT INTO public.notice VALUES (21504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700588226);
INSERT INTO public.notice VALUES (25745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703135108);
INSERT INTO public.notice VALUES (25747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703136307);
INSERT INTO public.notice VALUES (25749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703137512);
INSERT INTO public.notice VALUES (25750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703138108);
INSERT INTO public.notice VALUES (25753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703139908);
INSERT INTO public.notice VALUES (25754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703140507);
INSERT INTO public.notice VALUES (25755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703141107);
INSERT INTO public.notice VALUES (25757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703142307);
INSERT INTO public.notice VALUES (25758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703142907);
INSERT INTO public.notice VALUES (25760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703144108);
INSERT INTO public.notice VALUES (26481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703577036);
INSERT INTO public.notice VALUES (27043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703914235);
INSERT INTO public.notice VALUES (27044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703914836);
INSERT INTO public.notice VALUES (27426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704144036);
INSERT INTO public.notice VALUES (21505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700588825);
INSERT INTO public.notice VALUES (21506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700589426);
INSERT INTO public.notice VALUES (21507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700590026);
INSERT INTO public.notice VALUES (21508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700590625);
INSERT INTO public.notice VALUES (21509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700591226);
INSERT INTO public.notice VALUES (21510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700591826);
INSERT INTO public.notice VALUES (21511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700592425);
INSERT INTO public.notice VALUES (21512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700593027);
INSERT INTO public.notice VALUES (21513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700593626);
INSERT INTO public.notice VALUES (21514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700594226);
INSERT INTO public.notice VALUES (21515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700594825);
INSERT INTO public.notice VALUES (21516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700595426);
INSERT INTO public.notice VALUES (21517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700596026);
INSERT INTO public.notice VALUES (21518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700596625);
INSERT INTO public.notice VALUES (21519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700597225);
INSERT INTO public.notice VALUES (21520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700597827);
INSERT INTO public.notice VALUES (21521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700598426);
INSERT INTO public.notice VALUES (21525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700600825);
INSERT INTO public.notice VALUES (25748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703136913);
INSERT INTO public.notice VALUES (26482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703577642);
INSERT INTO public.notice VALUES (27045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703915436);
INSERT INTO public.notice VALUES (27046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703916035);
INSERT INTO public.notice VALUES (27055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703921436);
INSERT INTO public.notice VALUES (27056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703922035);
INSERT INTO public.notice VALUES (27427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704144635);
INSERT INTO public.notice VALUES (27429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704145836);
INSERT INTO public.notice VALUES (27719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704319835);
INSERT INTO public.notice VALUES (27720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704320435);
INSERT INTO public.notice VALUES (27721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704321036);
INSERT INTO public.notice VALUES (27892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704423637);
INSERT INTO public.notice VALUES (21522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700599025);
INSERT INTO public.notice VALUES (21523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700599625);
INSERT INTO public.notice VALUES (21524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700600226);
INSERT INTO public.notice VALUES (21526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700601426);
INSERT INTO public.notice VALUES (21527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700602026);
INSERT INTO public.notice VALUES (21528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700602626);
INSERT INTO public.notice VALUES (21529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700603225);
INSERT INTO public.notice VALUES (21530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700603825);
INSERT INTO public.notice VALUES (21531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700604426);
INSERT INTO public.notice VALUES (21532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700605026);
INSERT INTO public.notice VALUES (21533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700605625);
INSERT INTO public.notice VALUES (21534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700606225);
INSERT INTO public.notice VALUES (21535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700606826);
INSERT INTO public.notice VALUES (21536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700607426);
INSERT INTO public.notice VALUES (21537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700608025);
INSERT INTO public.notice VALUES (21538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700608627);
INSERT INTO public.notice VALUES (21539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700609230);
INSERT INTO public.notice VALUES (21540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700609825);
INSERT INTO public.notice VALUES (21541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700610426);
INSERT INTO public.notice VALUES (21542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700611026);
INSERT INTO public.notice VALUES (21543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700611626);
INSERT INTO public.notice VALUES (21544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700612225);
INSERT INTO public.notice VALUES (21545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700612827);
INSERT INTO public.notice VALUES (21546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700613427);
INSERT INTO public.notice VALUES (21547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700614025);
INSERT INTO public.notice VALUES (21548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700614625);
INSERT INTO public.notice VALUES (21549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700615225);
INSERT INTO public.notice VALUES (21550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700615826);
INSERT INTO public.notice VALUES (21551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700616426);
INSERT INTO public.notice VALUES (21552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700617025);
INSERT INTO public.notice VALUES (21553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700617625);
INSERT INTO public.notice VALUES (21558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700620627);
INSERT INTO public.notice VALUES (25751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703138707);
INSERT INTO public.notice VALUES (25752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703139308);
INSERT INTO public.notice VALUES (25756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703141708);
INSERT INTO public.notice VALUES (25759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703143508);
INSERT INTO public.notice VALUES (25761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703144707);
INSERT INTO public.notice VALUES (25763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703145908);
INSERT INTO public.notice VALUES (25764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703146508);
INSERT INTO public.notice VALUES (26483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703578238);
INSERT INTO public.notice VALUES (26484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703578836);
INSERT INTO public.notice VALUES (26485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703579436);
INSERT INTO public.notice VALUES (26486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703580035);
INSERT INTO public.notice VALUES (26487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703580635);
INSERT INTO public.notice VALUES (27047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703916637);
INSERT INTO public.notice VALUES (21554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700618226);
INSERT INTO public.notice VALUES (21555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700618826);
INSERT INTO public.notice VALUES (21556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700619425);
INSERT INTO public.notice VALUES (21557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700620025);
INSERT INTO public.notice VALUES (21559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700621226);
INSERT INTO public.notice VALUES (21560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700621825);
INSERT INTO public.notice VALUES (21561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700622426);
INSERT INTO public.notice VALUES (21562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700623026);
INSERT INTO public.notice VALUES (21563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700623626);
INSERT INTO public.notice VALUES (21564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700624225);
INSERT INTO public.notice VALUES (21565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700624826);
INSERT INTO public.notice VALUES (21566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700625426);
INSERT INTO public.notice VALUES (21567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700626025);
INSERT INTO public.notice VALUES (21568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700626624);
INSERT INTO public.notice VALUES (21569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700627227);
INSERT INTO public.notice VALUES (21570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700627826);
INSERT INTO public.notice VALUES (21571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700628426);
INSERT INTO public.notice VALUES (21572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700629025);
INSERT INTO public.notice VALUES (21573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700629626);
INSERT INTO public.notice VALUES (21574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700630226);
INSERT INTO public.notice VALUES (21575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700630825);
INSERT INTO public.notice VALUES (21576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700631425);
INSERT INTO public.notice VALUES (21577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700632026);
INSERT INTO public.notice VALUES (21578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700632625);
INSERT INTO public.notice VALUES (21579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700633225);
INSERT INTO public.notice VALUES (21580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700633824);
INSERT INTO public.notice VALUES (21581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700634426);
INSERT INTO public.notice VALUES (21582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700635025);
INSERT INTO public.notice VALUES (21583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700635625);
INSERT INTO public.notice VALUES (21584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700636226);
INSERT INTO public.notice VALUES (21585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700636825);
INSERT INTO public.notice VALUES (21586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700637425);
INSERT INTO public.notice VALUES (21588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700638626);
INSERT INTO public.notice VALUES (21590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700639826);
INSERT INTO public.notice VALUES (25762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703145307);
INSERT INTO public.notice VALUES (25765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703147107);
INSERT INTO public.notice VALUES (25766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703147708);
INSERT INTO public.notice VALUES (25768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703148907);
INSERT INTO public.notice VALUES (25772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703151307);
INSERT INTO public.notice VALUES (25773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703151908);
INSERT INTO public.notice VALUES (25774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703152508);
INSERT INTO public.notice VALUES (26488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703581236);
INSERT INTO public.notice VALUES (26492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703583636);
INSERT INTO public.notice VALUES (26495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703585435);
INSERT INTO public.notice VALUES (27048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703917236);
INSERT INTO public.notice VALUES (21587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700638025);
INSERT INTO public.notice VALUES (21589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700639226);
INSERT INTO public.notice VALUES (21591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700640424);
INSERT INTO public.notice VALUES (21592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700641026);
INSERT INTO public.notice VALUES (21593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700641625);
INSERT INTO public.notice VALUES (21594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700642225);
INSERT INTO public.notice VALUES (21595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700642826);
INSERT INTO public.notice VALUES (21596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700643427);
INSERT INTO public.notice VALUES (21597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700644025);
INSERT INTO public.notice VALUES (21598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700644625);
INSERT INTO public.notice VALUES (21599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700645226);
INSERT INTO public.notice VALUES (21600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700645826);
INSERT INTO public.notice VALUES (21601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700646425);
INSERT INTO public.notice VALUES (21602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700647026);
INSERT INTO public.notice VALUES (21603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700647626);
INSERT INTO public.notice VALUES (21604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700648225);
INSERT INTO public.notice VALUES (21606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700649426);
INSERT INTO public.notice VALUES (21607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700650026);
INSERT INTO public.notice VALUES (25767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703148308);
INSERT INTO public.notice VALUES (26489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703581836);
INSERT INTO public.notice VALUES (27049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703917835);
INSERT INTO public.notice VALUES (27050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703918435);
INSERT INTO public.notice VALUES (27428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704145234);
INSERT INTO public.notice VALUES (27431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704147035);
INSERT INTO public.notice VALUES (27722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704321635);
INSERT INTO public.notice VALUES (27723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704322235);
INSERT INTO public.notice VALUES (27724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704322836);
INSERT INTO public.notice VALUES (27728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704325236);
INSERT INTO public.notice VALUES (27729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704325836);
INSERT INTO public.notice VALUES (27893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704424236);
INSERT INTO public.notice VALUES (21605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700648825);
INSERT INTO public.notice VALUES (21608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700650625);
INSERT INTO public.notice VALUES (21609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700651227);
INSERT INTO public.notice VALUES (21610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700651826);
INSERT INTO public.notice VALUES (21611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700652425);
INSERT INTO public.notice VALUES (21612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700653025);
INSERT INTO public.notice VALUES (21613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700653627);
INSERT INTO public.notice VALUES (21614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700654226);
INSERT INTO public.notice VALUES (21615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700654825);
INSERT INTO public.notice VALUES (21616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700655425);
INSERT INTO public.notice VALUES (21617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700656027);
INSERT INTO public.notice VALUES (21618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700656626);
INSERT INTO public.notice VALUES (21619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700657226);
INSERT INTO public.notice VALUES (21620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700657827);
INSERT INTO public.notice VALUES (21621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700658427);
INSERT INTO public.notice VALUES (21622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700659026);
INSERT INTO public.notice VALUES (21623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700659627);
INSERT INTO public.notice VALUES (21624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700660227);
INSERT INTO public.notice VALUES (21625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700660826);
INSERT INTO public.notice VALUES (21626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700661426);
INSERT INTO public.notice VALUES (21627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700662027);
INSERT INTO public.notice VALUES (21628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700662627);
INSERT INTO public.notice VALUES (21629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700663226);
INSERT INTO public.notice VALUES (21630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700663826);
INSERT INTO public.notice VALUES (21631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700664427);
INSERT INTO public.notice VALUES (21632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700665026);
INSERT INTO public.notice VALUES (21633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700665628);
INSERT INTO public.notice VALUES (21634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700666225);
INSERT INTO public.notice VALUES (21635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700666829);
INSERT INTO public.notice VALUES (21636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700667426);
INSERT INTO public.notice VALUES (21637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700668026);
INSERT INTO public.notice VALUES (21638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700668627);
INSERT INTO public.notice VALUES (21639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700669226);
INSERT INTO public.notice VALUES (21640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700669826);
INSERT INTO public.notice VALUES (21641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700670426);
INSERT INTO public.notice VALUES (21642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700671027);
INSERT INTO public.notice VALUES (21643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700671626);
INSERT INTO public.notice VALUES (21644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700672225);
INSERT INTO public.notice VALUES (21645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700672827);
INSERT INTO public.notice VALUES (21646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700673426);
INSERT INTO public.notice VALUES (21647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700674026);
INSERT INTO public.notice VALUES (21648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700674625);
INSERT INTO public.notice VALUES (21649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700675226);
INSERT INTO public.notice VALUES (21650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700675826);
INSERT INTO public.notice VALUES (21651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700676425);
INSERT INTO public.notice VALUES (21652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700677026);
INSERT INTO public.notice VALUES (21654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700678225);
INSERT INTO public.notice VALUES (21655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700678825);
INSERT INTO public.notice VALUES (21659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700681225);
INSERT INTO public.notice VALUES (21663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700683624);
INSERT INTO public.notice VALUES (25769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703149507);
INSERT INTO public.notice VALUES (25770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703150108);
INSERT INTO public.notice VALUES (25771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703150708);
INSERT INTO public.notice VALUES (25776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703153707);
INSERT INTO public.notice VALUES (26490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703582435);
INSERT INTO public.notice VALUES (26491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703583035);
INSERT INTO public.notice VALUES (26493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703584236);
INSERT INTO public.notice VALUES (26494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703584835);
INSERT INTO public.notice VALUES (26499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703587836);
INSERT INTO public.notice VALUES (27051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703919036);
INSERT INTO public.notice VALUES (21653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700677626);
INSERT INTO public.notice VALUES (21656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700679426);
INSERT INTO public.notice VALUES (21657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700680026);
INSERT INTO public.notice VALUES (21658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700680625);
INSERT INTO public.notice VALUES (21660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700681826);
INSERT INTO public.notice VALUES (21661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700682425);
INSERT INTO public.notice VALUES (21662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700683025);
INSERT INTO public.notice VALUES (21664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700684226);
INSERT INTO public.notice VALUES (21665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700684825);
INSERT INTO public.notice VALUES (21666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700685425);
INSERT INTO public.notice VALUES (21667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700686026);
INSERT INTO public.notice VALUES (21668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700686626);
INSERT INTO public.notice VALUES (21669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700687225);
INSERT INTO public.notice VALUES (21670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700687826);
INSERT INTO public.notice VALUES (21671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700688426);
INSERT INTO public.notice VALUES (21672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700689025);
INSERT INTO public.notice VALUES (21673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700689625);
INSERT INTO public.notice VALUES (21674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700690226);
INSERT INTO public.notice VALUES (21675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700690826);
INSERT INTO public.notice VALUES (21676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700691425);
INSERT INTO public.notice VALUES (21677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700692025);
INSERT INTO public.notice VALUES (21678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700692626);
INSERT INTO public.notice VALUES (21679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700693225);
INSERT INTO public.notice VALUES (21680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700693825);
INSERT INTO public.notice VALUES (21681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700694424);
INSERT INTO public.notice VALUES (21682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700695026);
INSERT INTO public.notice VALUES (21683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700695625);
INSERT INTO public.notice VALUES (21684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700696225);
INSERT INTO public.notice VALUES (21685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700696826);
INSERT INTO public.notice VALUES (21686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700697426);
INSERT INTO public.notice VALUES (21687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700698025);
INSERT INTO public.notice VALUES (25775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703153107);
INSERT INTO public.notice VALUES (25779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703155507);
INSERT INTO public.notice VALUES (26496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703586037);
INSERT INTO public.notice VALUES (26497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703586635);
INSERT INTO public.notice VALUES (27052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703919636);
INSERT INTO public.notice VALUES (27053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703920235);
INSERT INTO public.notice VALUES (27430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704146435);
INSERT INTO public.notice VALUES (27725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704323436);
INSERT INTO public.notice VALUES (27894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704424835);
INSERT INTO public.notice VALUES (27968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704469235);
INSERT INTO public.notice VALUES (27969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704469837);
INSERT INTO public.notice VALUES (27970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704470436);
INSERT INTO public.notice VALUES (27971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704471035);
INSERT INTO public.notice VALUES (27994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704484836);
INSERT INTO public.notice VALUES (21688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700698625);
INSERT INTO public.notice VALUES (21689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700699226);
INSERT INTO public.notice VALUES (21690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700699825);
INSERT INTO public.notice VALUES (21691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700700425);
INSERT INTO public.notice VALUES (21692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700701026);
INSERT INTO public.notice VALUES (21693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700701626);
INSERT INTO public.notice VALUES (21694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700702225);
INSERT INTO public.notice VALUES (21695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700702825);
INSERT INTO public.notice VALUES (21696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700703426);
INSERT INTO public.notice VALUES (21699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700705224);
INSERT INTO public.notice VALUES (25777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703154308);
INSERT INTO public.notice VALUES (25778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703154908);
INSERT INTO public.notice VALUES (26498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703587235);
INSERT INTO public.notice VALUES (26502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703589634);
INSERT INTO public.notice VALUES (27054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703920842);
INSERT INTO public.notice VALUES (21698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700704625);
INSERT INTO public.notice VALUES (21700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700705826);
INSERT INTO public.notice VALUES (21701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700706425);
INSERT INTO public.notice VALUES (21702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700707025);
INSERT INTO public.notice VALUES (21703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700707626);
INSERT INTO public.notice VALUES (21704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700708226);
INSERT INTO public.notice VALUES (21705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700708825);
INSERT INTO public.notice VALUES (21706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700709425);
INSERT INTO public.notice VALUES (21707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700710026);
INSERT INTO public.notice VALUES (21708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700710625);
INSERT INTO public.notice VALUES (21709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700711225);
INSERT INTO public.notice VALUES (21710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700711824);
INSERT INTO public.notice VALUES (21711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700712426);
INSERT INTO public.notice VALUES (21712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700713025);
INSERT INTO public.notice VALUES (21713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700713625);
INSERT INTO public.notice VALUES (21714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700714226);
INSERT INTO public.notice VALUES (21715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700714826);
INSERT INTO public.notice VALUES (21716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700715425);
INSERT INTO public.notice VALUES (21717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700716025);
INSERT INTO public.notice VALUES (21718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700716626);
INSERT INTO public.notice VALUES (21719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700717225);
INSERT INTO public.notice VALUES (21720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700717825);
INSERT INTO public.notice VALUES (21721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700718426);
INSERT INTO public.notice VALUES (21722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700719026);
INSERT INTO public.notice VALUES (21723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700719625);
INSERT INTO public.notice VALUES (21724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700720225);
INSERT INTO public.notice VALUES (21725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700720826);
INSERT INTO public.notice VALUES (21726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700721426);
INSERT INTO public.notice VALUES (21727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700722025);
INSERT INTO public.notice VALUES (21728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700722626);
INSERT INTO public.notice VALUES (21729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700723226);
INSERT INTO public.notice VALUES (25780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703156109);
INSERT INTO public.notice VALUES (25782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703157307);
INSERT INTO public.notice VALUES (25783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703157907);
INSERT INTO public.notice VALUES (26500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703588436);
INSERT INTO public.notice VALUES (26501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703589035);
INSERT INTO public.notice VALUES (26505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703591435);
INSERT INTO public.notice VALUES (26506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703592035);
INSERT INTO public.notice VALUES (26507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703592637);
INSERT INTO public.notice VALUES (27057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703922635);
INSERT INTO public.notice VALUES (27059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703923836);
INSERT INTO public.notice VALUES (27432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704147636);
INSERT INTO public.notice VALUES (27726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704324035);
INSERT INTO public.notice VALUES (27727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704324635);
INSERT INTO public.notice VALUES (27895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704425434);
INSERT INTO public.notice VALUES (21730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700723825);
INSERT INTO public.notice VALUES (21731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700724427);
INSERT INTO public.notice VALUES (21732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700725026);
INSERT INTO public.notice VALUES (21733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700725626);
INSERT INTO public.notice VALUES (21734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700726225);
INSERT INTO public.notice VALUES (21735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700726825);
INSERT INTO public.notice VALUES (21736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700727426);
INSERT INTO public.notice VALUES (21737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700728026);
INSERT INTO public.notice VALUES (21738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700728625);
INSERT INTO public.notice VALUES (21739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700729226);
INSERT INTO public.notice VALUES (21740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700729827);
INSERT INTO public.notice VALUES (21741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700730426);
INSERT INTO public.notice VALUES (21742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700731025);
INSERT INTO public.notice VALUES (21743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700731627);
INSERT INTO public.notice VALUES (21744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700732226);
INSERT INTO public.notice VALUES (21745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700732825);
INSERT INTO public.notice VALUES (25781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703156714);
INSERT INTO public.notice VALUES (26503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703590236);
INSERT INTO public.notice VALUES (26504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703590835);
INSERT INTO public.notice VALUES (26510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703594435);
INSERT INTO public.notice VALUES (27058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703923234);
INSERT INTO public.notice VALUES (27433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704148236);
INSERT INTO public.notice VALUES (27730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704326435);
INSERT INTO public.notice VALUES (27731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704327034);
INSERT INTO public.notice VALUES (27732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704327636);
INSERT INTO public.notice VALUES (27896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704426036);
INSERT INTO public.notice VALUES (27972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704471636);
INSERT INTO public.notice VALUES (27995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704485435);
INSERT INTO public.notice VALUES (28007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704492637);
INSERT INTO public.notice VALUES (28009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704493835);
INSERT INTO public.notice VALUES (21746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700733425);
INSERT INTO public.notice VALUES (21747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700734026);
INSERT INTO public.notice VALUES (21748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700734626);
INSERT INTO public.notice VALUES (21749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700735225);
INSERT INTO public.notice VALUES (21750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700735826);
INSERT INTO public.notice VALUES (21751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700736426);
INSERT INTO public.notice VALUES (21752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700737026);
INSERT INTO public.notice VALUES (21753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700737626);
INSERT INTO public.notice VALUES (21754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700738227);
INSERT INTO public.notice VALUES (21755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700738826);
INSERT INTO public.notice VALUES (21756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700739425);
INSERT INTO public.notice VALUES (21757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700740025);
INSERT INTO public.notice VALUES (21758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700740626);
INSERT INTO public.notice VALUES (21759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700741226);
INSERT INTO public.notice VALUES (21760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700741826);
INSERT INTO public.notice VALUES (21761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700742427);
INSERT INTO public.notice VALUES (21762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700743026);
INSERT INTO public.notice VALUES (21763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700743626);
INSERT INTO public.notice VALUES (21764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700744225);
INSERT INTO public.notice VALUES (21765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700744827);
INSERT INTO public.notice VALUES (21766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700745427);
INSERT INTO public.notice VALUES (21767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700746026);
INSERT INTO public.notice VALUES (21768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700746628);
INSERT INTO public.notice VALUES (21769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700747229);
INSERT INTO public.notice VALUES (21770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700747826);
INSERT INTO public.notice VALUES (21771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700748426);
INSERT INTO public.notice VALUES (21772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700749028);
INSERT INTO public.notice VALUES (21773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700749629);
INSERT INTO public.notice VALUES (21774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700750225);
INSERT INTO public.notice VALUES (21775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700750826);
INSERT INTO public.notice VALUES (21776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700751427);
INSERT INTO public.notice VALUES (21778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700752626);
INSERT INTO public.notice VALUES (21779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700753228);
INSERT INTO public.notice VALUES (21780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700753827);
INSERT INTO public.notice VALUES (21781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700754426);
INSERT INTO public.notice VALUES (21783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700755626);
INSERT INTO public.notice VALUES (21784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700756226);
INSERT INTO public.notice VALUES (25784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703158508);
INSERT INTO public.notice VALUES (25787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703160308);
INSERT INTO public.notice VALUES (26508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703593236);
INSERT INTO public.notice VALUES (26509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703593835);
INSERT INTO public.notice VALUES (26512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703595636);
INSERT INTO public.notice VALUES (26514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703596835);
INSERT INTO public.notice VALUES (27060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703924435);
INSERT INTO public.notice VALUES (27434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704148835);
INSERT INTO public.notice VALUES (21777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700752026);
INSERT INTO public.notice VALUES (21782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700755025);
INSERT INTO public.notice VALUES (21785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700756825);
INSERT INTO public.notice VALUES (21786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700757427);
INSERT INTO public.notice VALUES (21787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700758026);
INSERT INTO public.notice VALUES (21788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700758625);
INSERT INTO public.notice VALUES (21789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700759225);
INSERT INTO public.notice VALUES (21790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700759826);
INSERT INTO public.notice VALUES (21791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700760426);
INSERT INTO public.notice VALUES (21792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700761026);
INSERT INTO public.notice VALUES (21793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700761625);
INSERT INTO public.notice VALUES (21794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700762226);
INSERT INTO public.notice VALUES (21795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700762826);
INSERT INTO public.notice VALUES (21796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700763425);
INSERT INTO public.notice VALUES (21797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700764025);
INSERT INTO public.notice VALUES (21798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700764626);
INSERT INTO public.notice VALUES (21799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700765225);
INSERT INTO public.notice VALUES (21800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700765825);
INSERT INTO public.notice VALUES (21801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700766426);
INSERT INTO public.notice VALUES (21802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700767026);
INSERT INTO public.notice VALUES (21803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700767625);
INSERT INTO public.notice VALUES (21804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700768227);
INSERT INTO public.notice VALUES (21805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700768826);
INSERT INTO public.notice VALUES (21806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700769425);
INSERT INTO public.notice VALUES (21807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700770025);
INSERT INTO public.notice VALUES (21808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700770626);
INSERT INTO public.notice VALUES (21809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700771226);
INSERT INTO public.notice VALUES (21810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700771825);
INSERT INTO public.notice VALUES (21811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700772425);
INSERT INTO public.notice VALUES (21812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700773026);
INSERT INTO public.notice VALUES (21813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700773626);
INSERT INTO public.notice VALUES (25785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703159108);
INSERT INTO public.notice VALUES (25786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703159707);
INSERT INTO public.notice VALUES (25790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703162107);
INSERT INTO public.notice VALUES (25791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703162708);
INSERT INTO public.notice VALUES (26511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703595036);
INSERT INTO public.notice VALUES (27061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703925035);
INSERT INTO public.notice VALUES (27064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703926835);
INSERT INTO public.notice VALUES (27065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703927434);
INSERT INTO public.notice VALUES (27066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703928036);
INSERT INTO public.notice VALUES (27067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703928635);
INSERT INTO public.notice VALUES (27068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703929235);
INSERT INTO public.notice VALUES (27435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704149437);
INSERT INTO public.notice VALUES (27436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704150036);
INSERT INTO public.notice VALUES (27438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704151235);
INSERT INTO public.notice VALUES (21814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700774225);
INSERT INTO public.notice VALUES (21815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700774824);
INSERT INTO public.notice VALUES (21816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700775426);
INSERT INTO public.notice VALUES (21817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700776026);
INSERT INTO public.notice VALUES (21818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700776626);
INSERT INTO public.notice VALUES (21819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700777226);
INSERT INTO public.notice VALUES (21820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700777826);
INSERT INTO public.notice VALUES (21821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700778425);
INSERT INTO public.notice VALUES (21822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700779025);
INSERT INTO public.notice VALUES (21823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700779626);
INSERT INTO public.notice VALUES (21824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700780225);
INSERT INTO public.notice VALUES (21825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700780825);
INSERT INTO public.notice VALUES (21826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700781426);
INSERT INTO public.notice VALUES (21827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700782026);
INSERT INTO public.notice VALUES (21828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700782625);
INSERT INTO public.notice VALUES (21829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700783225);
INSERT INTO public.notice VALUES (21830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700783826);
INSERT INTO public.notice VALUES (21831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700784426);
INSERT INTO public.notice VALUES (21832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700785025);
INSERT INTO public.notice VALUES (21833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700785626);
INSERT INTO public.notice VALUES (21834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700786226);
INSERT INTO public.notice VALUES (21835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700786825);
INSERT INTO public.notice VALUES (21836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700787425);
INSERT INTO public.notice VALUES (21837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700788026);
INSERT INTO public.notice VALUES (21838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700788626);
INSERT INTO public.notice VALUES (21839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700789225);
INSERT INTO public.notice VALUES (21840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700789825);
INSERT INTO public.notice VALUES (21841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700790426);
INSERT INTO public.notice VALUES (21842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700791026);
INSERT INTO public.notice VALUES (21843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700791625);
INSERT INTO public.notice VALUES (21844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700792226);
INSERT INTO public.notice VALUES (21845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700792826);
INSERT INTO public.notice VALUES (21846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700793425);
INSERT INTO public.notice VALUES (21847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700794025);
INSERT INTO public.notice VALUES (21848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700794626);
INSERT INTO public.notice VALUES (21849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700795226);
INSERT INTO public.notice VALUES (21850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700795825);
INSERT INTO public.notice VALUES (21851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700796425);
INSERT INTO public.notice VALUES (21852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700797026);
INSERT INTO public.notice VALUES (21853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700797626);
INSERT INTO public.notice VALUES (21854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700798226);
INSERT INTO public.notice VALUES (21855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700798826);
INSERT INTO public.notice VALUES (21856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700799425);
INSERT INTO public.notice VALUES (21857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700800392);
INSERT INTO public.notice VALUES (21858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700800992);
INSERT INTO public.notice VALUES (21859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700801591);
INSERT INTO public.notice VALUES (21860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700802191);
INSERT INTO public.notice VALUES (21861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700802792);
INSERT INTO public.notice VALUES (21865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700805192);
INSERT INTO public.notice VALUES (25788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703160908);
INSERT INTO public.notice VALUES (26513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703596235);
INSERT INTO public.notice VALUES (26516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703598036);
INSERT INTO public.notice VALUES (26517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703598636);
INSERT INTO public.notice VALUES (27062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703925636);
INSERT INTO public.notice VALUES (27437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704150635);
INSERT INTO public.notice VALUES (27439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704151836);
INSERT INTO public.notice VALUES (27440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704152436);
INSERT INTO public.notice VALUES (27733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704328236);
INSERT INTO public.notice VALUES (27738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704331235);
INSERT INTO public.notice VALUES (27897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704426636);
INSERT INTO public.notice VALUES (21862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700803391);
INSERT INTO public.notice VALUES (21863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700803991);
INSERT INTO public.notice VALUES (21864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700804592);
INSERT INTO public.notice VALUES (21866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700805791);
INSERT INTO public.notice VALUES (21867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700806391);
INSERT INTO public.notice VALUES (21868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700808006);
INSERT INTO public.notice VALUES (21869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700808608);
INSERT INTO public.notice VALUES (21870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700809207);
INSERT INTO public.notice VALUES (21871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700809807);
INSERT INTO public.notice VALUES (21872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700810408);
INSERT INTO public.notice VALUES (21873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700811008);
INSERT INTO public.notice VALUES (21874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700811607);
INSERT INTO public.notice VALUES (21875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700812207);
INSERT INTO public.notice VALUES (21876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700812808);
INSERT INTO public.notice VALUES (21877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700813407);
INSERT INTO public.notice VALUES (21878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700814007);
INSERT INTO public.notice VALUES (21879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700814608);
INSERT INTO public.notice VALUES (21881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700815806);
INSERT INTO public.notice VALUES (25789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703161507);
INSERT INTO public.notice VALUES (25792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703163308);
INSERT INTO public.notice VALUES (26515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703597447);
INSERT INTO public.notice VALUES (27063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703926236);
INSERT INTO public.notice VALUES (27069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703929836);
INSERT INTO public.notice VALUES (27441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704153035);
INSERT INTO public.notice VALUES (27445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704155435);
INSERT INTO public.notice VALUES (27734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704328835);
INSERT INTO public.notice VALUES (27735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704329436);
INSERT INTO public.notice VALUES (27736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704330036);
INSERT INTO public.notice VALUES (27737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704330635);
INSERT INTO public.notice VALUES (27898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704427235);
INSERT INTO public.notice VALUES (21880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700815207);
INSERT INTO public.notice VALUES (21882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700816408);
INSERT INTO public.notice VALUES (21883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700817007);
INSERT INTO public.notice VALUES (21884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700817608);
INSERT INTO public.notice VALUES (21885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700818207);
INSERT INTO public.notice VALUES (21886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700818807);
INSERT INTO public.notice VALUES (21887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700819408);
INSERT INTO public.notice VALUES (21888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700820008);
INSERT INTO public.notice VALUES (21889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700820607);
INSERT INTO public.notice VALUES (21890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700821206);
INSERT INTO public.notice VALUES (21891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700821808);
INSERT INTO public.notice VALUES (21892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700822407);
INSERT INTO public.notice VALUES (21893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700823007);
INSERT INTO public.notice VALUES (21894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700823608);
INSERT INTO public.notice VALUES (21895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700824208);
INSERT INTO public.notice VALUES (21896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700824808);
INSERT INTO public.notice VALUES (21898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700826008);
INSERT INTO public.notice VALUES (25793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703163907);
INSERT INTO public.notice VALUES (25794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703164507);
INSERT INTO public.notice VALUES (25795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703165108);
INSERT INTO public.notice VALUES (25804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703170507);
INSERT INTO public.notice VALUES (25806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703171708);
INSERT INTO public.notice VALUES (25812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703175309);
INSERT INTO public.notice VALUES (26518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703599235);
INSERT INTO public.notice VALUES (26519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703599836);
INSERT INTO public.notice VALUES (26526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703604036);
INSERT INTO public.notice VALUES (26530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703606436);
INSERT INTO public.notice VALUES (26531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703607043);
INSERT INTO public.notice VALUES (26532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703607638);
INSERT INTO public.notice VALUES (27070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703930443);
INSERT INTO public.notice VALUES (21897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700825406);
INSERT INTO public.notice VALUES (21899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700826608);
INSERT INTO public.notice VALUES (21900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700827207);
INSERT INTO public.notice VALUES (21901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700827806);
INSERT INTO public.notice VALUES (21902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700828409);
INSERT INTO public.notice VALUES (21903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700829007);
INSERT INTO public.notice VALUES (21904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700829607);
INSERT INTO public.notice VALUES (21905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700830208);
INSERT INTO public.notice VALUES (21906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700830808);
INSERT INTO public.notice VALUES (21907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700831407);
INSERT INTO public.notice VALUES (21908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700832007);
INSERT INTO public.notice VALUES (21909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700832608);
INSERT INTO public.notice VALUES (21910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700833207);
INSERT INTO public.notice VALUES (21911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700833807);
INSERT INTO public.notice VALUES (21912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700834408);
INSERT INTO public.notice VALUES (21913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700835008);
INSERT INTO public.notice VALUES (21914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700835607);
INSERT INTO public.notice VALUES (21915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700836209);
INSERT INTO public.notice VALUES (21916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700836808);
INSERT INTO public.notice VALUES (21917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700837408);
INSERT INTO public.notice VALUES (21918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700838007);
INSERT INTO public.notice VALUES (21919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700838608);
INSERT INTO public.notice VALUES (21920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700839208);
INSERT INTO public.notice VALUES (21921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700839807);
INSERT INTO public.notice VALUES (21922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700840407);
INSERT INTO public.notice VALUES (21923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700841008);
INSERT INTO public.notice VALUES (21924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700841607);
INSERT INTO public.notice VALUES (21925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700842208);
INSERT INTO public.notice VALUES (21926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700842808);
INSERT INTO public.notice VALUES (21927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700843408);
INSERT INTO public.notice VALUES (21928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700844007);
INSERT INTO public.notice VALUES (21929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700844607);
INSERT INTO public.notice VALUES (21930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700845208);
INSERT INTO public.notice VALUES (21931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700845807);
INSERT INTO public.notice VALUES (21932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700846408);
INSERT INTO public.notice VALUES (21933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700847008);
INSERT INTO public.notice VALUES (21934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700847609);
INSERT INTO public.notice VALUES (21935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700848208);
INSERT INTO public.notice VALUES (21936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700848807);
INSERT INTO public.notice VALUES (21937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700849408);
INSERT INTO public.notice VALUES (21938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700850008);
INSERT INTO public.notice VALUES (21939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700850607);
INSERT INTO public.notice VALUES (21940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700851207);
INSERT INTO public.notice VALUES (21941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700851808);
INSERT INTO public.notice VALUES (21942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700852407);
INSERT INTO public.notice VALUES (21943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700853007);
INSERT INTO public.notice VALUES (21944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700853609);
INSERT INTO public.notice VALUES (25796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703165707);
INSERT INTO public.notice VALUES (25797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703166318);
INSERT INTO public.notice VALUES (25798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703166912);
INSERT INTO public.notice VALUES (26520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703600435);
INSERT INTO public.notice VALUES (26521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703601035);
INSERT INTO public.notice VALUES (26522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703601636);
INSERT INTO public.notice VALUES (26523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703602236);
INSERT INTO public.notice VALUES (27071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703931039);
INSERT INTO public.notice VALUES (27442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704153635);
INSERT INTO public.notice VALUES (27443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704154236);
INSERT INTO public.notice VALUES (27444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704154836);
INSERT INTO public.notice VALUES (27446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704156041);
INSERT INTO public.notice VALUES (27447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704156636);
INSERT INTO public.notice VALUES (21945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700854208);
INSERT INTO public.notice VALUES (21946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700854807);
INSERT INTO public.notice VALUES (21947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700855407);
INSERT INTO public.notice VALUES (21948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700856008);
INSERT INTO public.notice VALUES (21949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700856608);
INSERT INTO public.notice VALUES (21950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700857207);
INSERT INTO public.notice VALUES (21951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700857807);
INSERT INTO public.notice VALUES (21952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700858408);
INSERT INTO public.notice VALUES (21953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700859007);
INSERT INTO public.notice VALUES (21954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700859607);
INSERT INTO public.notice VALUES (21955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700860208);
INSERT INTO public.notice VALUES (21956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700860808);
INSERT INTO public.notice VALUES (21957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700861407);
INSERT INTO public.notice VALUES (21958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700862006);
INSERT INTO public.notice VALUES (21959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700862608);
INSERT INTO public.notice VALUES (21960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700863207);
INSERT INTO public.notice VALUES (21961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700863807);
INSERT INTO public.notice VALUES (21963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700865008);
INSERT INTO public.notice VALUES (21964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700865607);
INSERT INTO public.notice VALUES (25799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703167508);
INSERT INTO public.notice VALUES (26524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703602835);
INSERT INTO public.notice VALUES (26525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703603435);
INSERT INTO public.notice VALUES (27072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703931635);
INSERT INTO public.notice VALUES (27448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704157235);
INSERT INTO public.notice VALUES (27739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704331836);
INSERT INTO public.notice VALUES (27899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704427836);
INSERT INTO public.notice VALUES (27973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704472236);
INSERT INTO public.notice VALUES (27996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704486039);
INSERT INTO public.notice VALUES (27997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704486637);
INSERT INTO public.notice VALUES (28008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704493236);
INSERT INTO public.notice VALUES (21962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700864408);
INSERT INTO public.notice VALUES (21965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700866207);
INSERT INTO public.notice VALUES (21966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700866808);
INSERT INTO public.notice VALUES (21967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700867407);
INSERT INTO public.notice VALUES (21968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700868007);
INSERT INTO public.notice VALUES (21969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700868608);
INSERT INTO public.notice VALUES (21970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700869208);
INSERT INTO public.notice VALUES (21971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700869807);
INSERT INTO public.notice VALUES (21972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700870407);
INSERT INTO public.notice VALUES (21973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700871008);
INSERT INTO public.notice VALUES (21974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700871608);
INSERT INTO public.notice VALUES (21975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700872207);
INSERT INTO public.notice VALUES (21976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700872808);
INSERT INTO public.notice VALUES (21977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700873408);
INSERT INTO public.notice VALUES (21978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700874007);
INSERT INTO public.notice VALUES (21979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700874607);
INSERT INTO public.notice VALUES (21980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700875208);
INSERT INTO public.notice VALUES (21981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700875808);
INSERT INTO public.notice VALUES (21982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700876408);
INSERT INTO public.notice VALUES (21983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700877007);
INSERT INTO public.notice VALUES (21984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700877608);
INSERT INTO public.notice VALUES (21985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700878207);
INSERT INTO public.notice VALUES (21986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700878807);
INSERT INTO public.notice VALUES (21987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700879409);
INSERT INTO public.notice VALUES (21988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700880008);
INSERT INTO public.notice VALUES (21989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700880607);
INSERT INTO public.notice VALUES (21990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700881207);
INSERT INTO public.notice VALUES (21991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700881808);
INSERT INTO public.notice VALUES (21992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700882407);
INSERT INTO public.notice VALUES (21993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700883007);
INSERT INTO public.notice VALUES (21994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700883607);
INSERT INTO public.notice VALUES (25800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703168107);
INSERT INTO public.notice VALUES (26527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703604636);
INSERT INTO public.notice VALUES (26528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703605235);
INSERT INTO public.notice VALUES (26529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703605836);
INSERT INTO public.notice VALUES (26534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703608836);
INSERT INTO public.notice VALUES (26535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703609435);
INSERT INTO public.notice VALUES (26537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703610636);
INSERT INTO public.notice VALUES (26538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703611236);
INSERT INTO public.notice VALUES (27073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703932236);
INSERT INTO public.notice VALUES (27449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704157835);
INSERT INTO public.notice VALUES (27450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704158436);
INSERT INTO public.notice VALUES (27452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704159635);
INSERT INTO public.notice VALUES (27454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704160836);
INSERT INTO public.notice VALUES (27455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704161436);
INSERT INTO public.notice VALUES (21995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700884208);
INSERT INTO public.notice VALUES (21996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700884808);
INSERT INTO public.notice VALUES (21997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700885407);
INSERT INTO public.notice VALUES (21998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700886009);
INSERT INTO public.notice VALUES (21999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700886608);
INSERT INTO public.notice VALUES (22000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700887207);
INSERT INTO public.notice VALUES (22001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700887807);
INSERT INTO public.notice VALUES (22002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700888409);
INSERT INTO public.notice VALUES (22003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700889008);
INSERT INTO public.notice VALUES (22004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700889607);
INSERT INTO public.notice VALUES (22005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700890207);
INSERT INTO public.notice VALUES (22006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700890808);
INSERT INTO public.notice VALUES (22007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700891408);
INSERT INTO public.notice VALUES (22008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700892007);
INSERT INTO public.notice VALUES (22009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700892608);
INSERT INTO public.notice VALUES (22010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700893209);
INSERT INTO public.notice VALUES (22011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700893807);
INSERT INTO public.notice VALUES (22012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700894407);
INSERT INTO public.notice VALUES (22013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700895008);
INSERT INTO public.notice VALUES (22016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700896808);
INSERT INTO public.notice VALUES (25801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703168707);
INSERT INTO public.notice VALUES (26533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703608236);
INSERT INTO public.notice VALUES (26536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703610034);
INSERT INTO public.notice VALUES (27074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703932836);
INSERT INTO public.notice VALUES (27451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704159035);
INSERT INTO public.notice VALUES (27453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704160235);
INSERT INTO public.notice VALUES (27740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704332442);
INSERT INTO public.notice VALUES (27743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704334236);
INSERT INTO public.notice VALUES (27746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704336036);
INSERT INTO public.notice VALUES (27900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704428436);
INSERT INTO public.notice VALUES (22014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700895607);
INSERT INTO public.notice VALUES (22015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700896207);
INSERT INTO public.notice VALUES (22017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700897408);
INSERT INTO public.notice VALUES (22018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700898007);
INSERT INTO public.notice VALUES (22019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700898607);
INSERT INTO public.notice VALUES (22020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700899208);
INSERT INTO public.notice VALUES (22021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700899808);
INSERT INTO public.notice VALUES (22022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700900407);
INSERT INTO public.notice VALUES (22023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700901006);
INSERT INTO public.notice VALUES (22024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700901608);
INSERT INTO public.notice VALUES (22025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700902207);
INSERT INTO public.notice VALUES (22026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700902807);
INSERT INTO public.notice VALUES (22027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700903408);
INSERT INTO public.notice VALUES (22028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700904008);
INSERT INTO public.notice VALUES (22029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700904607);
INSERT INTO public.notice VALUES (22030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700905207);
INSERT INTO public.notice VALUES (22031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700905808);
INSERT INTO public.notice VALUES (22032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700906408);
INSERT INTO public.notice VALUES (22033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700907007);
INSERT INTO public.notice VALUES (22034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700907608);
INSERT INTO public.notice VALUES (22035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700908208);
INSERT INTO public.notice VALUES (22036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700908807);
INSERT INTO public.notice VALUES (22037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700909407);
INSERT INTO public.notice VALUES (22038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700910008);
INSERT INTO public.notice VALUES (22039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700910608);
INSERT INTO public.notice VALUES (22040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700911207);
INSERT INTO public.notice VALUES (22041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700911808);
INSERT INTO public.notice VALUES (22042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700912408);
INSERT INTO public.notice VALUES (22043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700913007);
INSERT INTO public.notice VALUES (22044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700913607);
INSERT INTO public.notice VALUES (22045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700914208);
INSERT INTO public.notice VALUES (22047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700915407);
INSERT INTO public.notice VALUES (22049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700916608);
INSERT INTO public.notice VALUES (22050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700917207);
INSERT INTO public.notice VALUES (22052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700918408);
INSERT INTO public.notice VALUES (22055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700920207);
INSERT INTO public.notice VALUES (22056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700920808);
INSERT INTO public.notice VALUES (22057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700921408);
INSERT INTO public.notice VALUES (22058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700922007);
INSERT INTO public.notice VALUES (22059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700922609);
INSERT INTO public.notice VALUES (22062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700924407);
INSERT INTO public.notice VALUES (25802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703169308);
INSERT INTO public.notice VALUES (25803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703169908);
INSERT INTO public.notice VALUES (25805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703171108);
INSERT INTO public.notice VALUES (25807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703172307);
INSERT INTO public.notice VALUES (22046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700914808);
INSERT INTO public.notice VALUES (22048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700916007);
INSERT INTO public.notice VALUES (22051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700917807);
INSERT INTO public.notice VALUES (22053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700919008);
INSERT INTO public.notice VALUES (22054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700919607);
INSERT INTO public.notice VALUES (22060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700923208);
INSERT INTO public.notice VALUES (22061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700923807);
INSERT INTO public.notice VALUES (22063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700925009);
INSERT INTO public.notice VALUES (22064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700925608);
INSERT INTO public.notice VALUES (22065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700926207);
INSERT INTO public.notice VALUES (22066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700926807);
INSERT INTO public.notice VALUES (22067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700927408);
INSERT INTO public.notice VALUES (22068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700928007);
INSERT INTO public.notice VALUES (22069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700928607);
INSERT INTO public.notice VALUES (22070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700929208);
INSERT INTO public.notice VALUES (22071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700929808);
INSERT INTO public.notice VALUES (22072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700930407);
INSERT INTO public.notice VALUES (22073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700931007);
INSERT INTO public.notice VALUES (22074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700931608);
INSERT INTO public.notice VALUES (22075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700932207);
INSERT INTO public.notice VALUES (22079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700934607);
INSERT INTO public.notice VALUES (22080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700935207);
INSERT INTO public.notice VALUES (22082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700936408);
INSERT INTO public.notice VALUES (25808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703172907);
INSERT INTO public.notice VALUES (25809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703173508);
INSERT INTO public.notice VALUES (26539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703611835);
INSERT INTO public.notice VALUES (27075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703933435);
INSERT INTO public.notice VALUES (27456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704162035);
INSERT INTO public.notice VALUES (27457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704162636);
INSERT INTO public.notice VALUES (27741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704333035);
INSERT INTO public.notice VALUES (22076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700932807);
INSERT INTO public.notice VALUES (22077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700933408);
INSERT INTO public.notice VALUES (22078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700934009);
INSERT INTO public.notice VALUES (22081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700935808);
INSERT INTO public.notice VALUES (22083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700937007);
INSERT INTO public.notice VALUES (22084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700937609);
INSERT INTO public.notice VALUES (22085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700938208);
INSERT INTO public.notice VALUES (22086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700938808);
INSERT INTO public.notice VALUES (22087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700939407);
INSERT INTO public.notice VALUES (22088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700940008);
INSERT INTO public.notice VALUES (22089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700940608);
INSERT INTO public.notice VALUES (22090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700941207);
INSERT INTO public.notice VALUES (22091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700941807);
INSERT INTO public.notice VALUES (22092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700942408);
INSERT INTO public.notice VALUES (22093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700943008);
INSERT INTO public.notice VALUES (22094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700943607);
INSERT INTO public.notice VALUES (22095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700944208);
INSERT INTO public.notice VALUES (22096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700944808);
INSERT INTO public.notice VALUES (22097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700945407);
INSERT INTO public.notice VALUES (22098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700946007);
INSERT INTO public.notice VALUES (22099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700946608);
INSERT INTO public.notice VALUES (22100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700947208);
INSERT INTO public.notice VALUES (22101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700947807);
INSERT INTO public.notice VALUES (22102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700948406);
INSERT INTO public.notice VALUES (22103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700949008);
INSERT INTO public.notice VALUES (22104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700949607);
INSERT INTO public.notice VALUES (22105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700950207);
INSERT INTO public.notice VALUES (22106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700950808);
INSERT INTO public.notice VALUES (22107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700951408);
INSERT INTO public.notice VALUES (22108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700952007);
INSERT INTO public.notice VALUES (22109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700952607);
INSERT INTO public.notice VALUES (22112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700954407);
INSERT INTO public.notice VALUES (22115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700956207);
INSERT INTO public.notice VALUES (22116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700956807);
INSERT INTO public.notice VALUES (22125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700962208);
INSERT INTO public.notice VALUES (22130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700965207);
INSERT INTO public.notice VALUES (22131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700965808);
INSERT INTO public.notice VALUES (25810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703174108);
INSERT INTO public.notice VALUES (25811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703174707);
INSERT INTO public.notice VALUES (25813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703175908);
INSERT INTO public.notice VALUES (26540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703612436);
INSERT INTO public.notice VALUES (26545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703615435);
INSERT INTO public.notice VALUES (26547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703616634);
INSERT INTO public.notice VALUES (26548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703617236);
INSERT INTO public.notice VALUES (26553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703620236);
INSERT INTO public.notice VALUES (22110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700953208);
INSERT INTO public.notice VALUES (22111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700953808);
INSERT INTO public.notice VALUES (22113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700955009);
INSERT INTO public.notice VALUES (22114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700955608);
INSERT INTO public.notice VALUES (22117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700957408);
INSERT INTO public.notice VALUES (22118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700958008);
INSERT INTO public.notice VALUES (22119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700958607);
INSERT INTO public.notice VALUES (22120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700959206);
INSERT INTO public.notice VALUES (22121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700959808);
INSERT INTO public.notice VALUES (22122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700960407);
INSERT INTO public.notice VALUES (22123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700961007);
INSERT INTO public.notice VALUES (22124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700961608);
INSERT INTO public.notice VALUES (22126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700962807);
INSERT INTO public.notice VALUES (22127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700963407);
INSERT INTO public.notice VALUES (22128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700964008);
INSERT INTO public.notice VALUES (22129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700964608);
INSERT INTO public.notice VALUES (22132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700966408);
INSERT INTO public.notice VALUES (22133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700967007);
INSERT INTO public.notice VALUES (22134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700967607);
INSERT INTO public.notice VALUES (22135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700968208);
INSERT INTO public.notice VALUES (22136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700968808);
INSERT INTO public.notice VALUES (22137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700969407);
INSERT INTO public.notice VALUES (22138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700970007);
INSERT INTO public.notice VALUES (22139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700970608);
INSERT INTO public.notice VALUES (22140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700971207);
INSERT INTO public.notice VALUES (22141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700971807);
INSERT INTO public.notice VALUES (22142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700972406);
INSERT INTO public.notice VALUES (22143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700973008);
INSERT INTO public.notice VALUES (22144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700973607);
INSERT INTO public.notice VALUES (22145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700974207);
INSERT INTO public.notice VALUES (22146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700974808);
INSERT INTO public.notice VALUES (22147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700975408);
INSERT INTO public.notice VALUES (22149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700976607);
INSERT INTO public.notice VALUES (25814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703176507);
INSERT INTO public.notice VALUES (25815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703177107);
INSERT INTO public.notice VALUES (25816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703177708);
INSERT INTO public.notice VALUES (26541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703613036);
INSERT INTO public.notice VALUES (26542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703613636);
INSERT INTO public.notice VALUES (26543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703614235);
INSERT INTO public.notice VALUES (26544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703614836);
INSERT INTO public.notice VALUES (27076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703934036);
INSERT INTO public.notice VALUES (27080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703936436);
INSERT INTO public.notice VALUES (27085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703939435);
INSERT INTO public.notice VALUES (27458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704163236);
INSERT INTO public.notice VALUES (27463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704166239);
INSERT INTO public.notice VALUES (22148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700976007);
INSERT INTO public.notice VALUES (22150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700977208);
INSERT INTO public.notice VALUES (22151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700977807);
INSERT INTO public.notice VALUES (22152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700978407);
INSERT INTO public.notice VALUES (22153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700979008);
INSERT INTO public.notice VALUES (22154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700979608);
INSERT INTO public.notice VALUES (22155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700980207);
INSERT INTO public.notice VALUES (22156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700980808);
INSERT INTO public.notice VALUES (22157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700981407);
INSERT INTO public.notice VALUES (22158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700982007);
INSERT INTO public.notice VALUES (22159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700982608);
INSERT INTO public.notice VALUES (22160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700983208);
INSERT INTO public.notice VALUES (22161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700983808);
INSERT INTO public.notice VALUES (22162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700984408);
INSERT INTO public.notice VALUES (22163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700985008);
INSERT INTO public.notice VALUES (22164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700985607);
INSERT INTO public.notice VALUES (22166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700986808);
INSERT INTO public.notice VALUES (25817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703178308);
INSERT INTO public.notice VALUES (25821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703180707);
INSERT INTO public.notice VALUES (25822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703181307);
INSERT INTO public.notice VALUES (26546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703616035);
INSERT INTO public.notice VALUES (26549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703617835);
INSERT INTO public.notice VALUES (26550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703618435);
INSERT INTO public.notice VALUES (26551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703619036);
INSERT INTO public.notice VALUES (26552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703619636);
INSERT INTO public.notice VALUES (26554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703620836);
INSERT INTO public.notice VALUES (26557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703622635);
INSERT INTO public.notice VALUES (26558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703623236);
INSERT INTO public.notice VALUES (27077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703934636);
INSERT INTO public.notice VALUES (27078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703935235);
INSERT INTO public.notice VALUES (22165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700986207);
INSERT INTO public.notice VALUES (22167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700987408);
INSERT INTO public.notice VALUES (22168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700988008);
INSERT INTO public.notice VALUES (22169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700988607);
INSERT INTO public.notice VALUES (22170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700989209);
INSERT INTO public.notice VALUES (22171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700989808);
INSERT INTO public.notice VALUES (22172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700990407);
INSERT INTO public.notice VALUES (22173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700991008);
INSERT INTO public.notice VALUES (22174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700991608);
INSERT INTO public.notice VALUES (22175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700992208);
INSERT INTO public.notice VALUES (22176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700992807);
INSERT INTO public.notice VALUES (22177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700993408);
INSERT INTO public.notice VALUES (22178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700994008);
INSERT INTO public.notice VALUES (22179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700994607);
INSERT INTO public.notice VALUES (22180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700995209);
INSERT INTO public.notice VALUES (22181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700995808);
INSERT INTO public.notice VALUES (25818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703178907);
INSERT INTO public.notice VALUES (25819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703179506);
INSERT INTO public.notice VALUES (25820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703180108);
INSERT INTO public.notice VALUES (26555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703621436);
INSERT INTO public.notice VALUES (26556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703622035);
INSERT INTO public.notice VALUES (27079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703935835);
INSERT INTO public.notice VALUES (27459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704163835);
INSERT INTO public.notice VALUES (27460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704164435);
INSERT INTO public.notice VALUES (27461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704165036);
INSERT INTO public.notice VALUES (27742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704333636);
INSERT INTO public.notice VALUES (27744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704334835);
INSERT INTO public.notice VALUES (27901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704429036);
INSERT INTO public.notice VALUES (27905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704431435);
INSERT INTO public.notice VALUES (27906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704432035);
INSERT INTO public.notice VALUES (22182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700996408);
INSERT INTO public.notice VALUES (22183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700997007);
INSERT INTO public.notice VALUES (22184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700997608);
INSERT INTO public.notice VALUES (22185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700998208);
INSERT INTO public.notice VALUES (22186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700998807);
INSERT INTO public.notice VALUES (22187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1700999407);
INSERT INTO public.notice VALUES (22188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701000008);
INSERT INTO public.notice VALUES (22189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701000608);
INSERT INTO public.notice VALUES (22190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701001207);
INSERT INTO public.notice VALUES (22191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701001809);
INSERT INTO public.notice VALUES (22192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701002408);
INSERT INTO public.notice VALUES (22193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701003007);
INSERT INTO public.notice VALUES (22194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701003607);
INSERT INTO public.notice VALUES (22195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701004208);
INSERT INTO public.notice VALUES (22196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701004808);
INSERT INTO public.notice VALUES (22197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701005407);
INSERT INTO public.notice VALUES (22198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701006007);
INSERT INTO public.notice VALUES (22199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701006608);
INSERT INTO public.notice VALUES (22200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701007208);
INSERT INTO public.notice VALUES (22201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701007807);
INSERT INTO public.notice VALUES (22202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701008408);
INSERT INTO public.notice VALUES (22203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701009008);
INSERT INTO public.notice VALUES (22204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701009607);
INSERT INTO public.notice VALUES (22205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701010207);
INSERT INTO public.notice VALUES (22206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701010808);
INSERT INTO public.notice VALUES (22207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701011408);
INSERT INTO public.notice VALUES (22208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701012007);
INSERT INTO public.notice VALUES (22209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701012607);
INSERT INTO public.notice VALUES (22210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701013208);
INSERT INTO public.notice VALUES (22211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701013807);
INSERT INTO public.notice VALUES (22212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701014407);
INSERT INTO public.notice VALUES (25823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703181909);
INSERT INTO public.notice VALUES (25824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703182508);
INSERT INTO public.notice VALUES (25825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703183107);
INSERT INTO public.notice VALUES (25826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703183707);
INSERT INTO public.notice VALUES (26559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703623838);
INSERT INTO public.notice VALUES (27081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703937036);
INSERT INTO public.notice VALUES (27462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704165643);
INSERT INTO public.notice VALUES (27745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704335435);
INSERT INTO public.notice VALUES (27748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704337236);
INSERT INTO public.notice VALUES (27750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704338434);
INSERT INTO public.notice VALUES (27751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704339036);
INSERT INTO public.notice VALUES (27902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704429635);
INSERT INTO public.notice VALUES (27903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704430244);
INSERT INTO public.notice VALUES (27904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704430839);
INSERT INTO public.notice VALUES (22213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701015009);
INSERT INTO public.notice VALUES (22214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701015608);
INSERT INTO public.notice VALUES (22215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701016207);
INSERT INTO public.notice VALUES (22216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701016807);
INSERT INTO public.notice VALUES (22217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701017408);
INSERT INTO public.notice VALUES (22218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701018007);
INSERT INTO public.notice VALUES (22219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701018607);
INSERT INTO public.notice VALUES (22220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701019206);
INSERT INTO public.notice VALUES (22221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701019808);
INSERT INTO public.notice VALUES (22222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701020408);
INSERT INTO public.notice VALUES (22223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701021007);
INSERT INTO public.notice VALUES (22224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701021608);
INSERT INTO public.notice VALUES (22225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701022208);
INSERT INTO public.notice VALUES (22226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701022807);
INSERT INTO public.notice VALUES (22227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701023407);
INSERT INTO public.notice VALUES (22228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701024008);
INSERT INTO public.notice VALUES (22229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701024607);
INSERT INTO public.notice VALUES (22230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701025207);
INSERT INTO public.notice VALUES (22231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701025808);
INSERT INTO public.notice VALUES (22232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701026408);
INSERT INTO public.notice VALUES (22233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701027007);
INSERT INTO public.notice VALUES (22234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701027607);
INSERT INTO public.notice VALUES (22235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701028208);
INSERT INTO public.notice VALUES (22236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701028808);
INSERT INTO public.notice VALUES (22237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701029407);
INSERT INTO public.notice VALUES (22238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701030009);
INSERT INTO public.notice VALUES (22239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701030608);
INSERT INTO public.notice VALUES (22240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701031207);
INSERT INTO public.notice VALUES (22241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701031807);
INSERT INTO public.notice VALUES (22242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701032408);
INSERT INTO public.notice VALUES (22243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701033008);
INSERT INTO public.notice VALUES (25827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703184308);
INSERT INTO public.notice VALUES (26560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703624435);
INSERT INTO public.notice VALUES (27082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703937635);
INSERT INTO public.notice VALUES (27464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704166836);
INSERT INTO public.notice VALUES (27468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704169236);
INSERT INTO public.notice VALUES (27469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704169836);
INSERT INTO public.notice VALUES (27472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704171636);
INSERT INTO public.notice VALUES (27474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704172835);
INSERT INTO public.notice VALUES (27475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704173436);
INSERT INTO public.notice VALUES (27477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704174635);
INSERT INTO public.notice VALUES (27747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704336635);
INSERT INTO public.notice VALUES (27749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704337835);
INSERT INTO public.notice VALUES (27907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704432636);
INSERT INTO public.notice VALUES (27909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704433835);
INSERT INTO public.notice VALUES (22244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701033607);
INSERT INTO public.notice VALUES (22245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701034206);
INSERT INTO public.notice VALUES (22246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701034808);
INSERT INTO public.notice VALUES (22247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701035407);
INSERT INTO public.notice VALUES (22248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701036007);
INSERT INTO public.notice VALUES (22249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701036608);
INSERT INTO public.notice VALUES (22250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701037208);
INSERT INTO public.notice VALUES (22251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701037807);
INSERT INTO public.notice VALUES (22252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701038407);
INSERT INTO public.notice VALUES (22253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701039008);
INSERT INTO public.notice VALUES (22254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701039608);
INSERT INTO public.notice VALUES (22255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701040207);
INSERT INTO public.notice VALUES (22256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701040807);
INSERT INTO public.notice VALUES (22257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701041407);
INSERT INTO public.notice VALUES (22258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701042008);
INSERT INTO public.notice VALUES (22259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701042607);
INSERT INTO public.notice VALUES (22261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701043809);
INSERT INTO public.notice VALUES (25828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703184908);
INSERT INTO public.notice VALUES (26561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703625035);
INSERT INTO public.notice VALUES (26563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703626236);
INSERT INTO public.notice VALUES (26564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703626842);
INSERT INTO public.notice VALUES (26567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703628636);
INSERT INTO public.notice VALUES (27083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703938236);
INSERT INTO public.notice VALUES (27465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704167436);
INSERT INTO public.notice VALUES (27752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704339635);
INSERT INTO public.notice VALUES (27753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704340235);
INSERT INTO public.notice VALUES (27754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704340836);
INSERT INTO public.notice VALUES (27756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704342042);
INSERT INTO public.notice VALUES (27908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704433236);
INSERT INTO public.notice VALUES (27974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704472835);
INSERT INTO public.notice VALUES (22260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701043207);
INSERT INTO public.notice VALUES (22262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701044408);
INSERT INTO public.notice VALUES (22263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701045007);
INSERT INTO public.notice VALUES (22264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701045607);
INSERT INTO public.notice VALUES (22265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701046208);
INSERT INTO public.notice VALUES (22266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701046808);
INSERT INTO public.notice VALUES (22267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701047407);
INSERT INTO public.notice VALUES (22268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701048007);
INSERT INTO public.notice VALUES (22269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701048608);
INSERT INTO public.notice VALUES (22270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701049207);
INSERT INTO public.notice VALUES (22271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701049807);
INSERT INTO public.notice VALUES (22272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701050407);
INSERT INTO public.notice VALUES (22273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701051008);
INSERT INTO public.notice VALUES (22274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701051607);
INSERT INTO public.notice VALUES (22275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701052207);
INSERT INTO public.notice VALUES (22276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701052809);
INSERT INTO public.notice VALUES (22277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701053409);
INSERT INTO public.notice VALUES (22282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701056408);
INSERT INTO public.notice VALUES (22283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701057008);
INSERT INTO public.notice VALUES (22285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701058207);
INSERT INTO public.notice VALUES (22286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701058808);
INSERT INTO public.notice VALUES (22288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701060007);
INSERT INTO public.notice VALUES (25829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703185507);
INSERT INTO public.notice VALUES (25833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703187907);
INSERT INTO public.notice VALUES (26562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703625636);
INSERT INTO public.notice VALUES (27084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703938836);
INSERT INTO public.notice VALUES (27087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703940635);
INSERT INTO public.notice VALUES (27466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704168035);
INSERT INTO public.notice VALUES (27755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704341436);
INSERT INTO public.notice VALUES (27910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704434437);
INSERT INTO public.notice VALUES (22278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701054007);
INSERT INTO public.notice VALUES (22279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701054607);
INSERT INTO public.notice VALUES (22280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701055208);
INSERT INTO public.notice VALUES (22281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701055807);
INSERT INTO public.notice VALUES (22284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701057607);
INSERT INTO public.notice VALUES (22287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701059407);
INSERT INTO public.notice VALUES (22289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701060609);
INSERT INTO public.notice VALUES (22290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701061208);
INSERT INTO public.notice VALUES (22291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701061807);
INSERT INTO public.notice VALUES (22292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701062407);
INSERT INTO public.notice VALUES (22293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701063009);
INSERT INTO public.notice VALUES (22294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701063608);
INSERT INTO public.notice VALUES (22295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701064207);
INSERT INTO public.notice VALUES (22296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701064809);
INSERT INTO public.notice VALUES (22297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701065408);
INSERT INTO public.notice VALUES (22298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701066007);
INSERT INTO public.notice VALUES (22300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701067208);
INSERT INTO public.notice VALUES (25830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703186114);
INSERT INTO public.notice VALUES (26565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703627435);
INSERT INTO public.notice VALUES (26566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703628036);
INSERT INTO public.notice VALUES (26569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703629836);
INSERT INTO public.notice VALUES (26571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703631035);
INSERT INTO public.notice VALUES (27086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703940036);
INSERT INTO public.notice VALUES (27467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704168635);
INSERT INTO public.notice VALUES (27757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704342639);
INSERT INTO public.notice VALUES (27758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704343235);
INSERT INTO public.notice VALUES (27759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704343836);
INSERT INTO public.notice VALUES (27911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704435036);
INSERT INTO public.notice VALUES (27917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704438634);
INSERT INTO public.notice VALUES (27918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704439236);
INSERT INTO public.notice VALUES (22299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701066607);
INSERT INTO public.notice VALUES (22301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701067807);
INSERT INTO public.notice VALUES (22302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701068408);
INSERT INTO public.notice VALUES (22303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701069007);
INSERT INTO public.notice VALUES (22304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701069606);
INSERT INTO public.notice VALUES (22305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701070208);
INSERT INTO public.notice VALUES (22306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701071254);
INSERT INTO public.notice VALUES (22307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701071853);
INSERT INTO public.notice VALUES (22308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701072454);
INSERT INTO public.notice VALUES (22309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701073053);
INSERT INTO public.notice VALUES (22310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701073653);
INSERT INTO public.notice VALUES (22311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701074254);
INSERT INTO public.notice VALUES (22312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701074854);
INSERT INTO public.notice VALUES (22313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701075453);
INSERT INTO public.notice VALUES (22314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701076054);
INSERT INTO public.notice VALUES (22315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701076654);
INSERT INTO public.notice VALUES (22316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701077253);
INSERT INTO public.notice VALUES (22317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701077853);
INSERT INTO public.notice VALUES (22318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701078454);
INSERT INTO public.notice VALUES (22319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701079053);
INSERT INTO public.notice VALUES (22320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701079653);
INSERT INTO public.notice VALUES (22321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701080253);
INSERT INTO public.notice VALUES (22322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701080854);
INSERT INTO public.notice VALUES (22323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701081454);
INSERT INTO public.notice VALUES (22324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701082053);
INSERT INTO public.notice VALUES (22325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701082653);
INSERT INTO public.notice VALUES (22326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701083254);
INSERT INTO public.notice VALUES (22327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701083854);
INSERT INTO public.notice VALUES (22328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701084453);
INSERT INTO public.notice VALUES (22329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701085052);
INSERT INTO public.notice VALUES (22330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701085654);
INSERT INTO public.notice VALUES (22331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701086253);
INSERT INTO public.notice VALUES (22332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701086853);
INSERT INTO public.notice VALUES (22333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701087454);
INSERT INTO public.notice VALUES (22334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701088054);
INSERT INTO public.notice VALUES (22335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701088653);
INSERT INTO public.notice VALUES (22336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701089253);
INSERT INTO public.notice VALUES (22337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701089854);
INSERT INTO public.notice VALUES (22338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701090453);
INSERT INTO public.notice VALUES (22339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701091053);
INSERT INTO public.notice VALUES (22340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701091654);
INSERT INTO public.notice VALUES (22341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701092254);
INSERT INTO public.notice VALUES (22342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701092853);
INSERT INTO public.notice VALUES (22343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701093453);
INSERT INTO public.notice VALUES (22344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701094054);
INSERT INTO public.notice VALUES (22345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701094653);
INSERT INTO public.notice VALUES (22346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701095253);
INSERT INTO public.notice VALUES (22347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701095854);
INSERT INTO public.notice VALUES (22348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701096454);
INSERT INTO public.notice VALUES (22349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701097053);
INSERT INTO public.notice VALUES (22350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701097653);
INSERT INTO public.notice VALUES (22351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701098254);
INSERT INTO public.notice VALUES (22352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701098855);
INSERT INTO public.notice VALUES (22353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701099454);
INSERT INTO public.notice VALUES (22354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701100055);
INSERT INTO public.notice VALUES (22355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701100654);
INSERT INTO public.notice VALUES (22356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701101253);
INSERT INTO public.notice VALUES (22357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701101854);
INSERT INTO public.notice VALUES (22358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701102454);
INSERT INTO public.notice VALUES (22359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701103054);
INSERT INTO public.notice VALUES (22360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701103653);
INSERT INTO public.notice VALUES (22361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701104255);
INSERT INTO public.notice VALUES (22362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701104854);
INSERT INTO public.notice VALUES (22363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701105453);
INSERT INTO public.notice VALUES (22364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701106053);
INSERT INTO public.notice VALUES (22365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701106655);
INSERT INTO public.notice VALUES (22366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701107254);
INSERT INTO public.notice VALUES (22367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701107853);
INSERT INTO public.notice VALUES (22368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701108453);
INSERT INTO public.notice VALUES (22369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701109054);
INSERT INTO public.notice VALUES (22370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701109654);
INSERT INTO public.notice VALUES (22371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701110253);
INSERT INTO public.notice VALUES (22372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701110852);
INSERT INTO public.notice VALUES (22373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701111454);
INSERT INTO public.notice VALUES (22374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701112053);
INSERT INTO public.notice VALUES (22375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701112653);
INSERT INTO public.notice VALUES (22376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701113254);
INSERT INTO public.notice VALUES (22377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701113854);
INSERT INTO public.notice VALUES (22381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701116253);
INSERT INTO public.notice VALUES (22382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701116853);
INSERT INTO public.notice VALUES (22384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701118054);
INSERT INTO public.notice VALUES (22385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701118653);
INSERT INTO public.notice VALUES (22387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701119854);
INSERT INTO public.notice VALUES (22388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701120453);
INSERT INTO public.notice VALUES (25831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703186708);
INSERT INTO public.notice VALUES (25832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703187307);
INSERT INTO public.notice VALUES (26568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703629235);
INSERT INTO public.notice VALUES (26570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703630436);
INSERT INTO public.notice VALUES (26572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703631635);
INSERT INTO public.notice VALUES (26573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703632236);
INSERT INTO public.notice VALUES (22378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701114453);
INSERT INTO public.notice VALUES (22379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701115055);
INSERT INTO public.notice VALUES (22380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701115654);
INSERT INTO public.notice VALUES (22383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701117455);
INSERT INTO public.notice VALUES (22386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701119253);
INSERT INTO public.notice VALUES (22389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701121053);
INSERT INTO public.notice VALUES (22390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701121654);
INSERT INTO public.notice VALUES (22391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701122254);
INSERT INTO public.notice VALUES (22392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701122853);
INSERT INTO public.notice VALUES (22393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701123454);
INSERT INTO public.notice VALUES (22394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701124054);
INSERT INTO public.notice VALUES (22395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701124653);
INSERT INTO public.notice VALUES (22396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701125254);
INSERT INTO public.notice VALUES (22397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701125852);
INSERT INTO public.notice VALUES (22398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701126454);
INSERT INTO public.notice VALUES (22399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701127053);
INSERT INTO public.notice VALUES (25834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703188509);
INSERT INTO public.notice VALUES (25840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703192107);
INSERT INTO public.notice VALUES (25844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703194508);
INSERT INTO public.notice VALUES (25845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703195108);
INSERT INTO public.notice VALUES (25849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703197508);
INSERT INTO public.notice VALUES (25851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703198707);
INSERT INTO public.notice VALUES (25854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703200507);
INSERT INTO public.notice VALUES (26574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703632835);
INSERT INTO public.notice VALUES (27088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703941235);
INSERT INTO public.notice VALUES (27089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703941836);
INSERT INTO public.notice VALUES (27090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703942436);
INSERT INTO public.notice VALUES (27091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703943035);
INSERT INTO public.notice VALUES (27470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704170435);
INSERT INTO public.notice VALUES (27471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704171037);
INSERT INTO public.notice VALUES (22400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701127653);
INSERT INTO public.notice VALUES (22401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701128254);
INSERT INTO public.notice VALUES (22402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701128854);
INSERT INTO public.notice VALUES (22403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701129453);
INSERT INTO public.notice VALUES (22404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701130054);
INSERT INTO public.notice VALUES (22405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701130654);
INSERT INTO public.notice VALUES (22406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701131253);
INSERT INTO public.notice VALUES (22407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701131853);
INSERT INTO public.notice VALUES (22408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701132454);
INSERT INTO public.notice VALUES (22409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701133054);
INSERT INTO public.notice VALUES (22410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701133653);
INSERT INTO public.notice VALUES (22411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701134255);
INSERT INTO public.notice VALUES (22412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701134854);
INSERT INTO public.notice VALUES (22413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701135453);
INSERT INTO public.notice VALUES (22414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701136054);
INSERT INTO public.notice VALUES (22415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701136654);
INSERT INTO public.notice VALUES (22416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701137253);
INSERT INTO public.notice VALUES (22417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701137853);
INSERT INTO public.notice VALUES (22418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701138454);
INSERT INTO public.notice VALUES (22419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701139054);
INSERT INTO public.notice VALUES (22420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701139653);
INSERT INTO public.notice VALUES (22421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701140255);
INSERT INTO public.notice VALUES (22422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701140854);
INSERT INTO public.notice VALUES (22423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701141453);
INSERT INTO public.notice VALUES (22424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701142053);
INSERT INTO public.notice VALUES (22425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701142654);
INSERT INTO public.notice VALUES (22426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701143254);
INSERT INTO public.notice VALUES (22427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701143853);
INSERT INTO public.notice VALUES (22428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701144452);
INSERT INTO public.notice VALUES (22429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701145054);
INSERT INTO public.notice VALUES (22430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701145653);
INSERT INTO public.notice VALUES (22431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701146253);
INSERT INTO public.notice VALUES (22432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701146854);
INSERT INTO public.notice VALUES (22433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701147454);
INSERT INTO public.notice VALUES (22434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701148053);
INSERT INTO public.notice VALUES (22435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701148653);
INSERT INTO public.notice VALUES (22436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701149254);
INSERT INTO public.notice VALUES (22437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701149853);
INSERT INTO public.notice VALUES (22438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701150453);
INSERT INTO public.notice VALUES (22439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701151054);
INSERT INTO public.notice VALUES (22440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701151654);
INSERT INTO public.notice VALUES (22441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701152253);
INSERT INTO public.notice VALUES (22442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701152854);
INSERT INTO public.notice VALUES (22443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701153453);
INSERT INTO public.notice VALUES (22444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701154053);
INSERT INTO public.notice VALUES (22445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701154654);
INSERT INTO public.notice VALUES (22446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701155254);
INSERT INTO public.notice VALUES (25835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703189109);
INSERT INTO public.notice VALUES (25836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703189707);
INSERT INTO public.notice VALUES (26575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703633435);
INSERT INTO public.notice VALUES (26576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703634036);
INSERT INTO public.notice VALUES (26578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703635235);
INSERT INTO public.notice VALUES (26579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703635835);
INSERT INTO public.notice VALUES (26580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703636444);
INSERT INTO public.notice VALUES (27092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703943635);
INSERT INTO public.notice VALUES (27093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703944236);
INSERT INTO public.notice VALUES (27094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703944835);
INSERT INTO public.notice VALUES (27095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703945435);
INSERT INTO public.notice VALUES (27096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703946036);
INSERT INTO public.notice VALUES (27473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704172235);
INSERT INTO public.notice VALUES (22447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701155853);
INSERT INTO public.notice VALUES (22448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701156455);
INSERT INTO public.notice VALUES (22449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701157053);
INSERT INTO public.notice VALUES (22450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701157655);
INSERT INTO public.notice VALUES (22451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701158254);
INSERT INTO public.notice VALUES (22452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701158853);
INSERT INTO public.notice VALUES (22453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701159454);
INSERT INTO public.notice VALUES (22454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701160054);
INSERT INTO public.notice VALUES (22455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701160653);
INSERT INTO public.notice VALUES (22456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701161254);
INSERT INTO public.notice VALUES (22457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701161854);
INSERT INTO public.notice VALUES (22458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701162453);
INSERT INTO public.notice VALUES (22459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701163053);
INSERT INTO public.notice VALUES (22460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701163654);
INSERT INTO public.notice VALUES (22461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701164254);
INSERT INTO public.notice VALUES (22462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701164853);
INSERT INTO public.notice VALUES (25837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703190309);
INSERT INTO public.notice VALUES (25838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703190908);
INSERT INTO public.notice VALUES (25839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703191507);
INSERT INTO public.notice VALUES (26577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703634636);
INSERT INTO public.notice VALUES (27097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703946636);
INSERT INTO public.notice VALUES (27476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704174036);
INSERT INTO public.notice VALUES (27480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704176435);
INSERT INTO public.notice VALUES (27481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704177035);
INSERT INTO public.notice VALUES (27482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704177636);
INSERT INTO public.notice VALUES (27760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704344436);
INSERT INTO public.notice VALUES (27762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704345635);
INSERT INTO public.notice VALUES (27766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704348037);
INSERT INTO public.notice VALUES (27768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704349235);
INSERT INTO public.notice VALUES (27912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704435636);
INSERT INTO public.notice VALUES (22463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701165452);
INSERT INTO public.notice VALUES (22464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701166054);
INSERT INTO public.notice VALUES (22465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701166653);
INSERT INTO public.notice VALUES (22466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701167253);
INSERT INTO public.notice VALUES (22467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701167854);
INSERT INTO public.notice VALUES (22468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701168454);
INSERT INTO public.notice VALUES (22469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701169053);
INSERT INTO public.notice VALUES (22470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701169653);
INSERT INTO public.notice VALUES (22471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701170254);
INSERT INTO public.notice VALUES (22472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701170853);
INSERT INTO public.notice VALUES (22473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701171453);
INSERT INTO public.notice VALUES (22474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701172054);
INSERT INTO public.notice VALUES (22475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701172654);
INSERT INTO public.notice VALUES (22476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701173253);
INSERT INTO public.notice VALUES (22477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701173855);
INSERT INTO public.notice VALUES (22478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701174454);
INSERT INTO public.notice VALUES (22480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701175653);
INSERT INTO public.notice VALUES (22481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701176254);
INSERT INTO public.notice VALUES (25841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703192708);
INSERT INTO public.notice VALUES (25842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703193308);
INSERT INTO public.notice VALUES (25843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703193907);
INSERT INTO public.notice VALUES (26581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703637039);
INSERT INTO public.notice VALUES (26582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703637635);
INSERT INTO public.notice VALUES (27098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703947235);
INSERT INTO public.notice VALUES (27099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703947835);
INSERT INTO public.notice VALUES (27478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704175235);
INSERT INTO public.notice VALUES (27761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704345035);
INSERT INTO public.notice VALUES (27763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704346236);
INSERT INTO public.notice VALUES (27913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704436235);
INSERT INTO public.notice VALUES (27914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704436836);
INSERT INTO public.notice VALUES (22479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701175053);
INSERT INTO public.notice VALUES (22482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701176854);
INSERT INTO public.notice VALUES (22483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701177453);
INSERT INTO public.notice VALUES (22484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701178053);
INSERT INTO public.notice VALUES (22485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701178654);
INSERT INTO public.notice VALUES (22486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701179254);
INSERT INTO public.notice VALUES (22487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701179853);
INSERT INTO public.notice VALUES (22488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701180454);
INSERT INTO public.notice VALUES (22489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701181055);
INSERT INTO public.notice VALUES (22490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701181653);
INSERT INTO public.notice VALUES (22491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701182254);
INSERT INTO public.notice VALUES (22492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701182854);
INSERT INTO public.notice VALUES (22493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701183454);
INSERT INTO public.notice VALUES (22494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701184053);
INSERT INTO public.notice VALUES (22495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701184653);
INSERT INTO public.notice VALUES (22496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701185254);
INSERT INTO public.notice VALUES (22497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701185853);
INSERT INTO public.notice VALUES (22498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701186453);
INSERT INTO public.notice VALUES (22499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701187054);
INSERT INTO public.notice VALUES (22501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701188253);
INSERT INTO public.notice VALUES (25846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703195715);
INSERT INTO public.notice VALUES (26583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703638237);
INSERT INTO public.notice VALUES (26584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703638836);
INSERT INTO public.notice VALUES (27100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703948436);
INSERT INTO public.notice VALUES (27104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703950836);
INSERT INTO public.notice VALUES (27479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704175836);
INSERT INTO public.notice VALUES (27484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704178835);
INSERT INTO public.notice VALUES (27764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704346836);
INSERT INTO public.notice VALUES (27765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704347435);
INSERT INTO public.notice VALUES (27767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704348636);
INSERT INTO public.notice VALUES (22500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701187654);
INSERT INTO public.notice VALUES (22502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701188853);
INSERT INTO public.notice VALUES (22503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701189454);
INSERT INTO public.notice VALUES (22504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701190054);
INSERT INTO public.notice VALUES (22505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701190653);
INSERT INTO public.notice VALUES (22506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701191254);
INSERT INTO public.notice VALUES (22507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701191855);
INSERT INTO public.notice VALUES (22508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701192453);
INSERT INTO public.notice VALUES (22509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701193053);
INSERT INTO public.notice VALUES (22510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701193654);
INSERT INTO public.notice VALUES (22511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701194254);
INSERT INTO public.notice VALUES (22512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701194853);
INSERT INTO public.notice VALUES (22513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701195454);
INSERT INTO public.notice VALUES (22514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701196054);
INSERT INTO public.notice VALUES (22515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701196653);
INSERT INTO public.notice VALUES (22516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701197253);
INSERT INTO public.notice VALUES (22517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701197854);
INSERT INTO public.notice VALUES (22518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701198454);
INSERT INTO public.notice VALUES (22519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701199053);
INSERT INTO public.notice VALUES (22520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701199655);
INSERT INTO public.notice VALUES (25847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703196311);
INSERT INTO public.notice VALUES (25848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703196908);
INSERT INTO public.notice VALUES (25850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703198107);
INSERT INTO public.notice VALUES (26585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703639435);
INSERT INTO public.notice VALUES (27101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703949035);
INSERT INTO public.notice VALUES (27102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703949635);
INSERT INTO public.notice VALUES (27483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704178236);
INSERT INTO public.notice VALUES (27769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704349835);
INSERT INTO public.notice VALUES (27915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704437436);
INSERT INTO public.notice VALUES (27916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704438035);
INSERT INTO public.notice VALUES (22521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701200254);
INSERT INTO public.notice VALUES (22522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701200854);
INSERT INTO public.notice VALUES (22523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701201453);
INSERT INTO public.notice VALUES (22524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701202054);
INSERT INTO public.notice VALUES (22525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701202654);
INSERT INTO public.notice VALUES (22526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701203253);
INSERT INTO public.notice VALUES (22527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701203853);
INSERT INTO public.notice VALUES (22528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701204454);
INSERT INTO public.notice VALUES (22529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701205054);
INSERT INTO public.notice VALUES (22530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701205653);
INSERT INTO public.notice VALUES (22531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701206252);
INSERT INTO public.notice VALUES (22532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701206854);
INSERT INTO public.notice VALUES (22533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701207453);
INSERT INTO public.notice VALUES (22534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701208053);
INSERT INTO public.notice VALUES (22535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701208654);
INSERT INTO public.notice VALUES (22536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701209254);
INSERT INTO public.notice VALUES (22537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701209853);
INSERT INTO public.notice VALUES (22538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701210454);
INSERT INTO public.notice VALUES (22539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701211054);
INSERT INTO public.notice VALUES (22540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701211653);
INSERT INTO public.notice VALUES (22541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701212253);
INSERT INTO public.notice VALUES (22542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701212854);
INSERT INTO public.notice VALUES (22543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701213454);
INSERT INTO public.notice VALUES (22544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701214053);
INSERT INTO public.notice VALUES (22545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701214653);
INSERT INTO public.notice VALUES (22546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701215254);
INSERT INTO public.notice VALUES (22547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701215854);
INSERT INTO public.notice VALUES (22548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701216453);
INSERT INTO public.notice VALUES (22549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701217052);
INSERT INTO public.notice VALUES (22550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701217654);
INSERT INTO public.notice VALUES (22551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701218253);
INSERT INTO public.notice VALUES (22552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701218853);
INSERT INTO public.notice VALUES (22553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701219454);
INSERT INTO public.notice VALUES (22554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701220054);
INSERT INTO public.notice VALUES (22559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701223054);
INSERT INTO public.notice VALUES (22560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701223653);
INSERT INTO public.notice VALUES (22563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701225453);
INSERT INTO public.notice VALUES (25852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703199308);
INSERT INTO public.notice VALUES (25853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703199907);
INSERT INTO public.notice VALUES (26586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703640035);
INSERT INTO public.notice VALUES (26590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703642436);
INSERT INTO public.notice VALUES (26592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703643635);
INSERT INTO public.notice VALUES (26596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703646035);
INSERT INTO public.notice VALUES (27103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703950243);
INSERT INTO public.notice VALUES (27485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704179435);
INSERT INTO public.notice VALUES (22555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701220654);
INSERT INTO public.notice VALUES (22556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701221254);
INSERT INTO public.notice VALUES (22557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701221853);
INSERT INTO public.notice VALUES (22558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701222452);
INSERT INTO public.notice VALUES (22561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701224254);
INSERT INTO public.notice VALUES (22562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701224854);
INSERT INTO public.notice VALUES (22564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701226054);
INSERT INTO public.notice VALUES (22565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701226655);
INSERT INTO public.notice VALUES (22566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701227253);
INSERT INTO public.notice VALUES (22567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701227853);
INSERT INTO public.notice VALUES (22568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701228454);
INSERT INTO public.notice VALUES (22569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701229054);
INSERT INTO public.notice VALUES (22570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701229654);
INSERT INTO public.notice VALUES (22571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701230254);
INSERT INTO public.notice VALUES (22572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701230854);
INSERT INTO public.notice VALUES (22573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701231453);
INSERT INTO public.notice VALUES (22575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701232654);
INSERT INTO public.notice VALUES (25855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703201108);
INSERT INTO public.notice VALUES (25856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703201708);
INSERT INTO public.notice VALUES (25858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703202907);
INSERT INTO public.notice VALUES (26587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703640636);
INSERT INTO public.notice VALUES (26588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703641236);
INSERT INTO public.notice VALUES (26589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703641835);
INSERT INTO public.notice VALUES (27105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703951435);
INSERT INTO public.notice VALUES (27108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703953236);
INSERT INTO public.notice VALUES (27110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703954436);
INSERT INTO public.notice VALUES (27111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703955036);
INSERT INTO public.notice VALUES (27112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703955635);
INSERT INTO public.notice VALUES (27486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704180036);
INSERT INTO public.notice VALUES (27487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704180635);
INSERT INTO public.notice VALUES (22574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701232054);
INSERT INTO public.notice VALUES (22576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701233253);
INSERT INTO public.notice VALUES (22577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701233853);
INSERT INTO public.notice VALUES (22578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701234454);
INSERT INTO public.notice VALUES (22579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701235054);
INSERT INTO public.notice VALUES (22580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701235653);
INSERT INTO public.notice VALUES (22581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701236253);
INSERT INTO public.notice VALUES (22582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701236854);
INSERT INTO public.notice VALUES (22583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701237453);
INSERT INTO public.notice VALUES (22584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701238053);
INSERT INTO public.notice VALUES (22585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701238654);
INSERT INTO public.notice VALUES (22586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701239254);
INSERT INTO public.notice VALUES (22587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701239853);
INSERT INTO public.notice VALUES (22588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701240453);
INSERT INTO public.notice VALUES (22589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701241054);
INSERT INTO public.notice VALUES (22590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701241654);
INSERT INTO public.notice VALUES (22592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701242855);
INSERT INTO public.notice VALUES (22594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701244055);
INSERT INTO public.notice VALUES (22596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701245253);
INSERT INTO public.notice VALUES (22597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701245853);
INSERT INTO public.notice VALUES (22602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701248853);
INSERT INTO public.notice VALUES (25857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703202307);
INSERT INTO public.notice VALUES (25860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703204107);
INSERT INTO public.notice VALUES (25864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703206507);
INSERT INTO public.notice VALUES (26591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703643036);
INSERT INTO public.notice VALUES (26593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703644235);
INSERT INTO public.notice VALUES (26594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703644836);
INSERT INTO public.notice VALUES (26595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703645436);
INSERT INTO public.notice VALUES (26600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703648435);
INSERT INTO public.notice VALUES (27106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703952035);
INSERT INTO public.notice VALUES (22591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701242253);
INSERT INTO public.notice VALUES (22593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701243453);
INSERT INTO public.notice VALUES (22595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701244654);
INSERT INTO public.notice VALUES (22598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701246454);
INSERT INTO public.notice VALUES (22599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701247054);
INSERT INTO public.notice VALUES (22600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701247653);
INSERT INTO public.notice VALUES (22601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701248253);
INSERT INTO public.notice VALUES (22603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701249454);
INSERT INTO public.notice VALUES (22604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701250053);
INSERT INTO public.notice VALUES (22605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701250654);
INSERT INTO public.notice VALUES (22606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701251254);
INSERT INTO public.notice VALUES (22607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701251853);
INSERT INTO public.notice VALUES (22608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701252453);
INSERT INTO public.notice VALUES (22609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701253054);
INSERT INTO public.notice VALUES (22610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701253654);
INSERT INTO public.notice VALUES (22611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701254253);
INSERT INTO public.notice VALUES (22612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701254854);
INSERT INTO public.notice VALUES (22613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701255454);
INSERT INTO public.notice VALUES (22614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701256064);
INSERT INTO public.notice VALUES (22615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701256656);
INSERT INTO public.notice VALUES (22616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701257254);
INSERT INTO public.notice VALUES (22617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701257854);
INSERT INTO public.notice VALUES (22618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701258453);
INSERT INTO public.notice VALUES (22619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701259054);
INSERT INTO public.notice VALUES (22620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701259654);
INSERT INTO public.notice VALUES (22621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701260253);
INSERT INTO public.notice VALUES (22622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701260853);
INSERT INTO public.notice VALUES (22623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701261454);
INSERT INTO public.notice VALUES (22624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701262054);
INSERT INTO public.notice VALUES (22625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701262654);
INSERT INTO public.notice VALUES (22626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701263253);
INSERT INTO public.notice VALUES (22627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701263854);
INSERT INTO public.notice VALUES (22628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701264454);
INSERT INTO public.notice VALUES (25859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703203508);
INSERT INTO public.notice VALUES (25861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703204707);
INSERT INTO public.notice VALUES (25862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703205308);
INSERT INTO public.notice VALUES (25863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703205908);
INSERT INTO public.notice VALUES (25865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703207107);
INSERT INTO public.notice VALUES (25866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703207708);
INSERT INTO public.notice VALUES (25867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703208308);
INSERT INTO public.notice VALUES (26597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703646636);
INSERT INTO public.notice VALUES (26598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703647236);
INSERT INTO public.notice VALUES (26599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703647835);
INSERT INTO public.notice VALUES (26602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703649636);
INSERT INTO public.notice VALUES (26603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703650235);
INSERT INTO public.notice VALUES (22629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701265053);
INSERT INTO public.notice VALUES (22630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701265654);
INSERT INTO public.notice VALUES (22631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701266254);
INSERT INTO public.notice VALUES (22632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701266853);
INSERT INTO public.notice VALUES (22633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701267453);
INSERT INTO public.notice VALUES (22634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701268054);
INSERT INTO public.notice VALUES (22635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701268654);
INSERT INTO public.notice VALUES (22636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701269253);
INSERT INTO public.notice VALUES (22637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701269854);
INSERT INTO public.notice VALUES (22638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701270454);
INSERT INTO public.notice VALUES (22639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701271053);
INSERT INTO public.notice VALUES (22640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701271653);
INSERT INTO public.notice VALUES (22641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701272254);
INSERT INTO public.notice VALUES (22642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701272854);
INSERT INTO public.notice VALUES (22643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701273453);
INSERT INTO public.notice VALUES (22644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701274055);
INSERT INTO public.notice VALUES (22645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701274654);
INSERT INTO public.notice VALUES (22647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701275853);
INSERT INTO public.notice VALUES (22648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701276455);
INSERT INTO public.notice VALUES (25868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703208907);
INSERT INTO public.notice VALUES (25869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703209508);
INSERT INTO public.notice VALUES (25872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703211307);
INSERT INTO public.notice VALUES (25874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703212508);
INSERT INTO public.notice VALUES (25876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703213709);
INSERT INTO public.notice VALUES (25877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703214308);
INSERT INTO public.notice VALUES (25880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703216108);
INSERT INTO public.notice VALUES (25881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703216708);
INSERT INTO public.notice VALUES (25883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703217907);
INSERT INTO public.notice VALUES (25885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703219108);
INSERT INTO public.notice VALUES (25887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703220306);
INSERT INTO public.notice VALUES (22646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701275253);
INSERT INTO public.notice VALUES (22649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701277054);
INSERT INTO public.notice VALUES (22650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701277653);
INSERT INTO public.notice VALUES (22651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701278255);
INSERT INTO public.notice VALUES (22652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701278854);
INSERT INTO public.notice VALUES (22653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701279454);
INSERT INTO public.notice VALUES (22654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701280053);
INSERT INTO public.notice VALUES (22655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701280654);
INSERT INTO public.notice VALUES (22656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701281253);
INSERT INTO public.notice VALUES (22657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701281853);
INSERT INTO public.notice VALUES (22658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701282452);
INSERT INTO public.notice VALUES (22659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701283054);
INSERT INTO public.notice VALUES (22660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701283653);
INSERT INTO public.notice VALUES (22661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701284253);
INSERT INTO public.notice VALUES (22662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701284854);
INSERT INTO public.notice VALUES (22663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701285461);
INSERT INTO public.notice VALUES (22664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701286057);
INSERT INTO public.notice VALUES (22665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701286653);
INSERT INTO public.notice VALUES (22666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701287254);
INSERT INTO public.notice VALUES (22667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701287854);
INSERT INTO public.notice VALUES (22668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701288453);
INSERT INTO public.notice VALUES (22669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701289053);
INSERT INTO public.notice VALUES (22670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701289654);
INSERT INTO public.notice VALUES (22671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701290254);
INSERT INTO public.notice VALUES (22672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701290854);
INSERT INTO public.notice VALUES (22673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701291454);
INSERT INTO public.notice VALUES (22674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701292054);
INSERT INTO public.notice VALUES (22675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701292653);
INSERT INTO public.notice VALUES (22676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701293253);
INSERT INTO public.notice VALUES (22677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701293854);
INSERT INTO public.notice VALUES (22678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701294453);
INSERT INTO public.notice VALUES (22679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701295053);
INSERT INTO public.notice VALUES (22680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701295653);
INSERT INTO public.notice VALUES (22681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701296254);
INSERT INTO public.notice VALUES (22682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701296853);
INSERT INTO public.notice VALUES (22683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701297453);
INSERT INTO public.notice VALUES (22684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701298054);
INSERT INTO public.notice VALUES (22685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701298654);
INSERT INTO public.notice VALUES (22686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701299253);
INSERT INTO public.notice VALUES (22687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701299853);
INSERT INTO public.notice VALUES (22688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701300454);
INSERT INTO public.notice VALUES (22689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701301053);
INSERT INTO public.notice VALUES (22690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701301653);
INSERT INTO public.notice VALUES (22691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701302252);
INSERT INTO public.notice VALUES (22692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701302854);
INSERT INTO public.notice VALUES (22693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701303453);
INSERT INTO public.notice VALUES (22695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701304654);
INSERT INTO public.notice VALUES (25870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703210108);
INSERT INTO public.notice VALUES (26601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703649036);
INSERT INTO public.notice VALUES (27107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703952636);
INSERT INTO public.notice VALUES (27109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703953835);
INSERT INTO public.notice VALUES (27488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704181236);
INSERT INTO public.notice VALUES (27491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704183036);
INSERT INTO public.notice VALUES (27492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704183636);
INSERT INTO public.notice VALUES (27494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704184836);
INSERT INTO public.notice VALUES (27770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704350435);
INSERT INTO public.notice VALUES (27919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704439835);
INSERT INTO public.notice VALUES (27975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704473435);
INSERT INTO public.notice VALUES (27998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704487236);
INSERT INTO public.notice VALUES (27999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704487835);
INSERT INTO public.notice VALUES (22694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701304053);
INSERT INTO public.notice VALUES (22696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701305253);
INSERT INTO public.notice VALUES (22697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701305853);
INSERT INTO public.notice VALUES (22698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701306455);
INSERT INTO public.notice VALUES (22699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701307054);
INSERT INTO public.notice VALUES (22700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701307653);
INSERT INTO public.notice VALUES (22701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701308253);
INSERT INTO public.notice VALUES (22702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701308854);
INSERT INTO public.notice VALUES (22703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701309454);
INSERT INTO public.notice VALUES (22704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701310053);
INSERT INTO public.notice VALUES (22705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701310654);
INSERT INTO public.notice VALUES (22706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701311254);
INSERT INTO public.notice VALUES (22707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701311853);
INSERT INTO public.notice VALUES (22708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701312453);
INSERT INTO public.notice VALUES (22709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701313054);
INSERT INTO public.notice VALUES (22710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701313654);
INSERT INTO public.notice VALUES (22715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701316653);
INSERT INTO public.notice VALUES (22716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701317254);
INSERT INTO public.notice VALUES (22717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701317854);
INSERT INTO public.notice VALUES (22718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701318453);
INSERT INTO public.notice VALUES (22720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701319654);
INSERT INTO public.notice VALUES (22721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701320253);
INSERT INTO public.notice VALUES (22722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701320853);
INSERT INTO public.notice VALUES (22725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701322653);
INSERT INTO public.notice VALUES (22726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701323253);
INSERT INTO public.notice VALUES (22728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701324454);
INSERT INTO public.notice VALUES (25871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703210707);
INSERT INTO public.notice VALUES (25873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703211908);
INSERT INTO public.notice VALUES (25875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703213107);
INSERT INTO public.notice VALUES (25878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703214907);
INSERT INTO public.notice VALUES (22711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701314253);
INSERT INTO public.notice VALUES (22712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701314860);
INSERT INTO public.notice VALUES (22713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701315457);
INSERT INTO public.notice VALUES (22714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701316053);
INSERT INTO public.notice VALUES (22719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701319053);
INSERT INTO public.notice VALUES (22723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701321452);
INSERT INTO public.notice VALUES (22724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701322054);
INSERT INTO public.notice VALUES (22727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701323854);
INSERT INTO public.notice VALUES (22729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701325053);
INSERT INTO public.notice VALUES (22730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701325654);
INSERT INTO public.notice VALUES (22731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701326254);
INSERT INTO public.notice VALUES (22732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701326853);
INSERT INTO public.notice VALUES (22733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701327453);
INSERT INTO public.notice VALUES (22734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701328054);
INSERT INTO public.notice VALUES (22735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701328654);
INSERT INTO public.notice VALUES (22736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701329254);
INSERT INTO public.notice VALUES (22737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701329854);
INSERT INTO public.notice VALUES (22738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701330454);
INSERT INTO public.notice VALUES (22739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701331053);
INSERT INTO public.notice VALUES (22740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701331653);
INSERT INTO public.notice VALUES (22741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701332254);
INSERT INTO public.notice VALUES (22742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701332854);
INSERT INTO public.notice VALUES (22743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701333453);
INSERT INTO public.notice VALUES (22744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701334055);
INSERT INTO public.notice VALUES (22745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701334654);
INSERT INTO public.notice VALUES (22746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701335253);
INSERT INTO public.notice VALUES (22747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701335853);
INSERT INTO public.notice VALUES (22748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701336454);
INSERT INTO public.notice VALUES (22749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701337054);
INSERT INTO public.notice VALUES (22750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701337653);
INSERT INTO public.notice VALUES (22751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701338253);
INSERT INTO public.notice VALUES (25879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703215516);
INSERT INTO public.notice VALUES (25882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703217307);
INSERT INTO public.notice VALUES (25884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703218508);
INSERT INTO public.notice VALUES (25886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703219707);
INSERT INTO public.notice VALUES (25888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703220908);
INSERT INTO public.notice VALUES (26604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703650836);
INSERT INTO public.notice VALUES (27113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703956235);
INSERT INTO public.notice VALUES (27115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703957435);
INSERT INTO public.notice VALUES (27118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703959237);
INSERT INTO public.notice VALUES (27119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703959843);
INSERT INTO public.notice VALUES (27489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704181835);
INSERT INTO public.notice VALUES (27490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704182435);
INSERT INTO public.notice VALUES (27493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704184235);
INSERT INTO public.notice VALUES (27497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704186635);
INSERT INTO public.notice VALUES (22752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701338854);
INSERT INTO public.notice VALUES (22753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701339454);
INSERT INTO public.notice VALUES (22754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701340053);
INSERT INTO public.notice VALUES (22755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701340652);
INSERT INTO public.notice VALUES (22756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701341254);
INSERT INTO public.notice VALUES (22757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701341853);
INSERT INTO public.notice VALUES (22758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701342453);
INSERT INTO public.notice VALUES (22759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701343054);
INSERT INTO public.notice VALUES (22760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701343654);
INSERT INTO public.notice VALUES (22761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701344261);
INSERT INTO public.notice VALUES (22762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701344858);
INSERT INTO public.notice VALUES (22763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701345454);
INSERT INTO public.notice VALUES (22764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701346053);
INSERT INTO public.notice VALUES (22765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701346653);
INSERT INTO public.notice VALUES (22766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701347254);
INSERT INTO public.notice VALUES (22767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701347854);
INSERT INTO public.notice VALUES (22768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701348453);
INSERT INTO public.notice VALUES (22769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701349053);
INSERT INTO public.notice VALUES (22770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701349654);
INSERT INTO public.notice VALUES (22772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701350853);
INSERT INTO public.notice VALUES (25889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703221507);
INSERT INTO public.notice VALUES (25890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703222107);
INSERT INTO public.notice VALUES (25892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703223308);
INSERT INTO public.notice VALUES (26605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703651436);
INSERT INTO public.notice VALUES (27114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703956836);
INSERT INTO public.notice VALUES (27116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703958035);
INSERT INTO public.notice VALUES (27117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703958635);
INSERT INTO public.notice VALUES (27495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704185446);
INSERT INTO public.notice VALUES (27771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704351036);
INSERT INTO public.notice VALUES (27920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704440435);
INSERT INTO public.notice VALUES (22771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701350254);
INSERT INTO public.notice VALUES (22773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701351454);
INSERT INTO public.notice VALUES (22774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701352054);
INSERT INTO public.notice VALUES (22775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701352653);
INSERT INTO public.notice VALUES (22776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701353253);
INSERT INTO public.notice VALUES (22777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701353854);
INSERT INTO public.notice VALUES (22778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701354454);
INSERT INTO public.notice VALUES (22779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701355053);
INSERT INTO public.notice VALUES (22780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701355655);
INSERT INTO public.notice VALUES (22781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701356255);
INSERT INTO public.notice VALUES (22782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701356853);
INSERT INTO public.notice VALUES (22783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701357453);
INSERT INTO public.notice VALUES (22784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701358054);
INSERT INTO public.notice VALUES (22785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701358654);
INSERT INTO public.notice VALUES (22786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701359253);
INSERT INTO public.notice VALUES (22787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701359853);
INSERT INTO public.notice VALUES (22788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701360454);
INSERT INTO public.notice VALUES (25891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703222708);
INSERT INTO public.notice VALUES (25893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703223907);
INSERT INTO public.notice VALUES (25894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703224507);
INSERT INTO public.notice VALUES (25895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703225115);
INSERT INTO public.notice VALUES (25898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703226906);
INSERT INTO public.notice VALUES (26606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703652035);
INSERT INTO public.notice VALUES (26608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703653236);
INSERT INTO public.notice VALUES (26609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703653836);
INSERT INTO public.notice VALUES (26610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703654436);
INSERT INTO public.notice VALUES (26617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703658635);
INSERT INTO public.notice VALUES (26621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703661035);
INSERT INTO public.notice VALUES (26622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703661636);
INSERT INTO public.notice VALUES (26624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703662835);
INSERT INTO public.notice VALUES (22789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701361053);
INSERT INTO public.notice VALUES (22790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701361654);
INSERT INTO public.notice VALUES (22791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701362252);
INSERT INTO public.notice VALUES (22792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701362854);
INSERT INTO public.notice VALUES (22793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701363453);
INSERT INTO public.notice VALUES (22794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701364053);
INSERT INTO public.notice VALUES (22795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701364654);
INSERT INTO public.notice VALUES (22796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701365254);
INSERT INTO public.notice VALUES (22797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701365854);
INSERT INTO public.notice VALUES (22798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701366453);
INSERT INTO public.notice VALUES (22799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701367054);
INSERT INTO public.notice VALUES (22800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701367654);
INSERT INTO public.notice VALUES (22801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701368253);
INSERT INTO public.notice VALUES (22802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701368855);
INSERT INTO public.notice VALUES (22803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701369454);
INSERT INTO public.notice VALUES (22804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701370053);
INSERT INTO public.notice VALUES (22805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701370653);
INSERT INTO public.notice VALUES (22808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701372453);
INSERT INTO public.notice VALUES (22810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701373662);
INSERT INTO public.notice VALUES (25896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703225711);
INSERT INTO public.notice VALUES (25897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703226307);
INSERT INTO public.notice VALUES (26607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703652635);
INSERT INTO public.notice VALUES (26611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703655035);
INSERT INTO public.notice VALUES (26612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703655637);
INSERT INTO public.notice VALUES (27120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703960439);
INSERT INTO public.notice VALUES (27121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703961036);
INSERT INTO public.notice VALUES (27124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703962836);
INSERT INTO public.notice VALUES (27496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704186036);
INSERT INTO public.notice VALUES (27498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704187236);
INSERT INTO public.notice VALUES (27772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704351635);
INSERT INTO public.notice VALUES (22806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701371254);
INSERT INTO public.notice VALUES (22807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701371854);
INSERT INTO public.notice VALUES (22809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701373054);
INSERT INTO public.notice VALUES (22811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701374257);
INSERT INTO public.notice VALUES (22812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701374861);
INSERT INTO public.notice VALUES (22813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701375454);
INSERT INTO public.notice VALUES (22814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701376057);
INSERT INTO public.notice VALUES (22815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701376653);
INSERT INTO public.notice VALUES (22816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701377254);
INSERT INTO public.notice VALUES (22817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701377857);
INSERT INTO public.notice VALUES (22818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701378453);
INSERT INTO public.notice VALUES (22819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701379053);
INSERT INTO public.notice VALUES (22820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701379654);
INSERT INTO public.notice VALUES (22821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701380254);
INSERT INTO public.notice VALUES (22822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701380853);
INSERT INTO public.notice VALUES (22823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701381455);
INSERT INTO public.notice VALUES (22824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701382054);
INSERT INTO public.notice VALUES (22825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701382653);
INSERT INTO public.notice VALUES (22826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701383253);
INSERT INTO public.notice VALUES (22827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701383854);
INSERT INTO public.notice VALUES (22828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701384454);
INSERT INTO public.notice VALUES (22829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701385053);
INSERT INTO public.notice VALUES (22830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701385655);
INSERT INTO public.notice VALUES (22831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701386254);
INSERT INTO public.notice VALUES (22832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701386853);
INSERT INTO public.notice VALUES (22833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701387453);
INSERT INTO public.notice VALUES (22834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701388054);
INSERT INTO public.notice VALUES (22835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701388654);
INSERT INTO public.notice VALUES (22836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701389253);
INSERT INTO public.notice VALUES (22837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701389853);
INSERT INTO public.notice VALUES (22838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701390454);
INSERT INTO public.notice VALUES (22839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701391054);
INSERT INTO public.notice VALUES (22840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701391653);
INSERT INTO public.notice VALUES (22841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701392253);
INSERT INTO public.notice VALUES (22842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701392854);
INSERT INTO public.notice VALUES (22843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701393453);
INSERT INTO public.notice VALUES (22844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701394053);
INSERT INTO public.notice VALUES (22845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701394654);
INSERT INTO public.notice VALUES (22846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701395254);
INSERT INTO public.notice VALUES (22847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701395853);
INSERT INTO public.notice VALUES (22848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701396453);
INSERT INTO public.notice VALUES (22849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701397054);
INSERT INTO public.notice VALUES (22850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701397653);
INSERT INTO public.notice VALUES (22851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701398253);
INSERT INTO public.notice VALUES (22852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701398854);
INSERT INTO public.notice VALUES (22853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701399454);
INSERT INTO public.notice VALUES (22854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701400053);
INSERT INTO public.notice VALUES (22855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701400653);
INSERT INTO public.notice VALUES (22856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701401254);
INSERT INTO public.notice VALUES (22857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701401853);
INSERT INTO public.notice VALUES (22858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701402453);
INSERT INTO public.notice VALUES (22859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701403059);
INSERT INTO public.notice VALUES (22860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701403658);
INSERT INTO public.notice VALUES (22861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701404253);
INSERT INTO public.notice VALUES (22862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701404853);
INSERT INTO public.notice VALUES (22863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701405454);
INSERT INTO public.notice VALUES (22864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701406054);
INSERT INTO public.notice VALUES (22865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701406653);
INSERT INTO public.notice VALUES (22866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701407256);
INSERT INTO public.notice VALUES (22867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701407855);
INSERT INTO public.notice VALUES (22868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701408453);
INSERT INTO public.notice VALUES (22869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701409053);
INSERT INTO public.notice VALUES (22871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701410254);
INSERT INTO public.notice VALUES (25899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703227508);
INSERT INTO public.notice VALUES (25901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703228707);
INSERT INTO public.notice VALUES (26613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703656243);
INSERT INTO public.notice VALUES (27122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703961636);
INSERT INTO public.notice VALUES (27123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703962235);
INSERT INTO public.notice VALUES (27126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703964035);
INSERT INTO public.notice VALUES (27499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704187836);
INSERT INTO public.notice VALUES (27773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704352235);
INSERT INTO public.notice VALUES (27921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704441036);
INSERT INTO public.notice VALUES (27976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704474036);
INSERT INTO public.notice VALUES (27978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704475235);
INSERT INTO public.notice VALUES (28000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704488436);
INSERT INTO public.notice VALUES (22870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701409654);
INSERT INTO public.notice VALUES (22872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701410853);
INSERT INTO public.notice VALUES (22873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701411453);
INSERT INTO public.notice VALUES (22874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701412054);
INSERT INTO public.notice VALUES (22875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701412653);
INSERT INTO public.notice VALUES (22876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701413254);
INSERT INTO public.notice VALUES (22877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701413853);
INSERT INTO public.notice VALUES (22878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701414453);
INSERT INTO public.notice VALUES (22879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701415054);
INSERT INTO public.notice VALUES (22880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701415655);
INSERT INTO public.notice VALUES (22881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701416253);
INSERT INTO public.notice VALUES (22882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701416853);
INSERT INTO public.notice VALUES (22883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701417454);
INSERT INTO public.notice VALUES (22884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701418054);
INSERT INTO public.notice VALUES (22885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701418653);
INSERT INTO public.notice VALUES (22886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701419255);
INSERT INTO public.notice VALUES (22887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701419854);
INSERT INTO public.notice VALUES (22888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701420453);
INSERT INTO public.notice VALUES (22889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701421053);
INSERT INTO public.notice VALUES (22890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701421652);
INSERT INTO public.notice VALUES (22891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701422254);
INSERT INTO public.notice VALUES (22892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701422853);
INSERT INTO public.notice VALUES (22893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701423453);
INSERT INTO public.notice VALUES (22894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701424054);
INSERT INTO public.notice VALUES (22895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701424654);
INSERT INTO public.notice VALUES (22896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701425253);
INSERT INTO public.notice VALUES (22897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701425853);
INSERT INTO public.notice VALUES (22898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701426454);
INSERT INTO public.notice VALUES (22899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701427053);
INSERT INTO public.notice VALUES (22900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701427653);
INSERT INTO public.notice VALUES (22901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701428255);
INSERT INTO public.notice VALUES (22902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701428854);
INSERT INTO public.notice VALUES (22903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701429453);
INSERT INTO public.notice VALUES (22904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701430053);
INSERT INTO public.notice VALUES (22906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701431254);
INSERT INTO public.notice VALUES (22909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701433057);
INSERT INTO public.notice VALUES (22912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701434854);
INSERT INTO public.notice VALUES (22913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701435454);
INSERT INTO public.notice VALUES (25900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703228107);
INSERT INTO public.notice VALUES (25902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703229308);
INSERT INTO public.notice VALUES (25904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703230507);
INSERT INTO public.notice VALUES (25905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703231108);
INSERT INTO public.notice VALUES (26614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703656835);
INSERT INTO public.notice VALUES (26615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703657436);
INSERT INTO public.notice VALUES (26616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703658036);
INSERT INTO public.notice VALUES (22905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701430654);
INSERT INTO public.notice VALUES (22907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701431853);
INSERT INTO public.notice VALUES (22908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701432468);
INSERT INTO public.notice VALUES (22910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701433653);
INSERT INTO public.notice VALUES (22911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701434253);
INSERT INTO public.notice VALUES (22914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701436053);
INSERT INTO public.notice VALUES (22915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701436655);
INSERT INTO public.notice VALUES (22916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701437254);
INSERT INTO public.notice VALUES (22917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701437854);
INSERT INTO public.notice VALUES (22918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701438453);
INSERT INTO public.notice VALUES (22919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701439054);
INSERT INTO public.notice VALUES (22920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701439654);
INSERT INTO public.notice VALUES (22921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701440253);
INSERT INTO public.notice VALUES (22922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701440853);
INSERT INTO public.notice VALUES (22923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701441454);
INSERT INTO public.notice VALUES (22924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701442053);
INSERT INTO public.notice VALUES (22925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701442653);
INSERT INTO public.notice VALUES (22926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701443254);
INSERT INTO public.notice VALUES (22927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701443854);
INSERT INTO public.notice VALUES (22928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701444453);
INSERT INTO public.notice VALUES (22929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701445053);
INSERT INTO public.notice VALUES (22930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701445654);
INSERT INTO public.notice VALUES (22931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701446254);
INSERT INTO public.notice VALUES (22932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701446853);
INSERT INTO public.notice VALUES (22933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701447455);
INSERT INTO public.notice VALUES (22934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701448054);
INSERT INTO public.notice VALUES (22935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701448653);
INSERT INTO public.notice VALUES (22936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701449253);
INSERT INTO public.notice VALUES (22937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701449854);
INSERT INTO public.notice VALUES (22938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701450454);
INSERT INTO public.notice VALUES (22939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701451053);
INSERT INTO public.notice VALUES (22940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701451655);
INSERT INTO public.notice VALUES (25903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703229908);
INSERT INTO public.notice VALUES (25908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703232907);
INSERT INTO public.notice VALUES (26618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703659235);
INSERT INTO public.notice VALUES (27125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703963436);
INSERT INTO public.notice VALUES (27127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703964635);
INSERT INTO public.notice VALUES (27500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704188435);
INSERT INTO public.notice VALUES (27501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704189035);
INSERT INTO public.notice VALUES (27502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704189636);
INSERT INTO public.notice VALUES (27774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704352835);
INSERT INTO public.notice VALUES (27922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704441636);
INSERT INTO public.notice VALUES (27977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704474635);
INSERT INTO public.notice VALUES (28001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704489043);
INSERT INTO public.notice VALUES (28005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704491435);
INSERT INTO public.notice VALUES (22941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701452254);
INSERT INTO public.notice VALUES (22942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701452853);
INSERT INTO public.notice VALUES (22943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701453453);
INSERT INTO public.notice VALUES (22944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701454054);
INSERT INTO public.notice VALUES (22945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701454654);
INSERT INTO public.notice VALUES (22946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701455253);
INSERT INTO public.notice VALUES (22947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701455855);
INSERT INTO public.notice VALUES (22948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701456454);
INSERT INTO public.notice VALUES (22949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701457053);
INSERT INTO public.notice VALUES (22950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701457653);
INSERT INTO public.notice VALUES (22951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701458254);
INSERT INTO public.notice VALUES (22952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701458854);
INSERT INTO public.notice VALUES (22953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701459453);
INSERT INTO public.notice VALUES (22954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701460053);
INSERT INTO public.notice VALUES (22955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701460654);
INSERT INTO public.notice VALUES (22956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701461254);
INSERT INTO public.notice VALUES (22957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701461860);
INSERT INTO public.notice VALUES (22958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701462458);
INSERT INTO public.notice VALUES (22960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701463653);
INSERT INTO public.notice VALUES (22963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701465454);
INSERT INTO public.notice VALUES (25906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703231708);
INSERT INTO public.notice VALUES (25907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703232307);
INSERT INTO public.notice VALUES (26619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703659836);
INSERT INTO public.notice VALUES (26620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703660435);
INSERT INTO public.notice VALUES (26623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703662236);
INSERT INTO public.notice VALUES (26626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703664036);
INSERT INTO public.notice VALUES (26632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703667635);
INSERT INTO public.notice VALUES (26636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703670036);
INSERT INTO public.notice VALUES (26637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703670636);
INSERT INTO public.notice VALUES (27128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703965236);
INSERT INTO public.notice VALUES (22959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701463054);
INSERT INTO public.notice VALUES (22961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701464253);
INSERT INTO public.notice VALUES (22962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701464854);
INSERT INTO public.notice VALUES (22964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701466053);
INSERT INTO public.notice VALUES (22965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701466653);
INSERT INTO public.notice VALUES (22966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701467254);
INSERT INTO public.notice VALUES (22967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701467854);
INSERT INTO public.notice VALUES (22968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701468453);
INSERT INTO public.notice VALUES (22969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701469054);
INSERT INTO public.notice VALUES (22970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701469654);
INSERT INTO public.notice VALUES (22971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701470253);
INSERT INTO public.notice VALUES (22972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701470853);
INSERT INTO public.notice VALUES (22973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701471455);
INSERT INTO public.notice VALUES (22974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701472054);
INSERT INTO public.notice VALUES (22975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701472653);
INSERT INTO public.notice VALUES (22976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701473254);
INSERT INTO public.notice VALUES (22977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701473854);
INSERT INTO public.notice VALUES (22978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701474453);
INSERT INTO public.notice VALUES (22979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701475053);
INSERT INTO public.notice VALUES (22980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701475654);
INSERT INTO public.notice VALUES (22981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701476254);
INSERT INTO public.notice VALUES (22982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701476853);
INSERT INTO public.notice VALUES (22983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701477455);
INSERT INTO public.notice VALUES (22984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701478054);
INSERT INTO public.notice VALUES (22985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701478653);
INSERT INTO public.notice VALUES (22986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701479253);
INSERT INTO public.notice VALUES (22987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701479854);
INSERT INTO public.notice VALUES (22988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701480454);
INSERT INTO public.notice VALUES (22989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701481053);
INSERT INTO public.notice VALUES (22990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701481655);
INSERT INTO public.notice VALUES (22991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701482254);
INSERT INTO public.notice VALUES (22992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701482853);
INSERT INTO public.notice VALUES (22993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701483453);
INSERT INTO public.notice VALUES (22994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701484054);
INSERT INTO public.notice VALUES (22995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701484654);
INSERT INTO public.notice VALUES (22999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701487053);
INSERT INTO public.notice VALUES (23000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701487653);
INSERT INTO public.notice VALUES (23001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701488255);
INSERT INTO public.notice VALUES (23003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701489453);
INSERT INTO public.notice VALUES (23004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701490053);
INSERT INTO public.notice VALUES (23005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701490654);
INSERT INTO public.notice VALUES (25909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703233508);
INSERT INTO public.notice VALUES (26625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703663435);
INSERT INTO public.notice VALUES (27129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703965836);
INSERT INTO public.notice VALUES (27130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703966435);
INSERT INTO public.notice VALUES (22996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701485253);
INSERT INTO public.notice VALUES (22997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701485853);
INSERT INTO public.notice VALUES (22998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701486454);
INSERT INTO public.notice VALUES (23002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701488854);
INSERT INTO public.notice VALUES (23006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701491262);
INSERT INTO public.notice VALUES (23007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701491857);
INSERT INTO public.notice VALUES (23008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701492453);
INSERT INTO public.notice VALUES (23009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701493054);
INSERT INTO public.notice VALUES (23010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701493653);
INSERT INTO public.notice VALUES (23011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701494253);
INSERT INTO public.notice VALUES (23012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701494854);
INSERT INTO public.notice VALUES (23013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701495454);
INSERT INTO public.notice VALUES (23014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701496053);
INSERT INTO public.notice VALUES (23015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701496653);
INSERT INTO public.notice VALUES (23016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701497254);
INSERT INTO public.notice VALUES (23017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701497854);
INSERT INTO public.notice VALUES (23018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701498453);
INSERT INTO public.notice VALUES (23019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701499055);
INSERT INTO public.notice VALUES (23020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701499654);
INSERT INTO public.notice VALUES (23021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701500253);
INSERT INTO public.notice VALUES (23022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701500853);
INSERT INTO public.notice VALUES (25910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703234108);
INSERT INTO public.notice VALUES (25911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703234707);
INSERT INTO public.notice VALUES (26627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703664635);
INSERT INTO public.notice VALUES (27131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703967036);
INSERT INTO public.notice VALUES (27503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704190235);
INSERT INTO public.notice VALUES (27505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704191436);
INSERT INTO public.notice VALUES (27775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704353436);
INSERT INTO public.notice VALUES (27923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704442235);
INSERT INTO public.notice VALUES (27924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704442835);
INSERT INTO public.notice VALUES (23023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701501454);
INSERT INTO public.notice VALUES (23024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701502054);
INSERT INTO public.notice VALUES (23025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701502653);
INSERT INTO public.notice VALUES (23026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701503254);
INSERT INTO public.notice VALUES (23027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701503854);
INSERT INTO public.notice VALUES (23028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701504453);
INSERT INTO public.notice VALUES (23029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701505054);
INSERT INTO public.notice VALUES (23030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701505654);
INSERT INTO public.notice VALUES (23031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701506254);
INSERT INTO public.notice VALUES (23032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701506853);
INSERT INTO public.notice VALUES (23033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701507453);
INSERT INTO public.notice VALUES (23034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701508054);
INSERT INTO public.notice VALUES (23035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701508653);
INSERT INTO public.notice VALUES (23036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701509253);
INSERT INTO public.notice VALUES (23037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701509855);
INSERT INTO public.notice VALUES (23038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701510454);
INSERT INTO public.notice VALUES (23040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701511653);
INSERT INTO public.notice VALUES (23041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701512254);
INSERT INTO public.notice VALUES (23042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701512854);
INSERT INTO public.notice VALUES (25912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703235308);
INSERT INTO public.notice VALUES (26628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703665235);
INSERT INTO public.notice VALUES (26629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703665844);
INSERT INTO public.notice VALUES (26630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703666439);
INSERT INTO public.notice VALUES (26631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703667035);
INSERT INTO public.notice VALUES (27132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703967636);
INSERT INTO public.notice VALUES (27133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703968235);
INSERT INTO public.notice VALUES (27504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704190835);
INSERT INTO public.notice VALUES (27506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704192036);
INSERT INTO public.notice VALUES (27508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704193235);
INSERT INTO public.notice VALUES (27510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704194435);
INSERT INTO public.notice VALUES (23039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701511053);
INSERT INTO public.notice VALUES (23043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701513453);
INSERT INTO public.notice VALUES (23044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701514055);
INSERT INTO public.notice VALUES (23045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701514655);
INSERT INTO public.notice VALUES (23046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701515253);
INSERT INTO public.notice VALUES (23047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701515853);
INSERT INTO public.notice VALUES (23048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701516454);
INSERT INTO public.notice VALUES (23049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701517054);
INSERT INTO public.notice VALUES (23050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701517653);
INSERT INTO public.notice VALUES (23051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701518253);
INSERT INTO public.notice VALUES (23052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701518854);
INSERT INTO public.notice VALUES (23053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701519454);
INSERT INTO public.notice VALUES (23054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701520053);
INSERT INTO public.notice VALUES (23055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701520662);
INSERT INTO public.notice VALUES (23056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701521257);
INSERT INTO public.notice VALUES (23057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701521853);
INSERT INTO public.notice VALUES (23058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701522453);
INSERT INTO public.notice VALUES (23059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701523054);
INSERT INTO public.notice VALUES (23064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701526054);
INSERT INTO public.notice VALUES (23065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701526653);
INSERT INTO public.notice VALUES (23069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701529053);
INSERT INTO public.notice VALUES (25913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703236236);
INSERT INTO public.notice VALUES (26633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703668236);
INSERT INTO public.notice VALUES (26634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703668835);
INSERT INTO public.notice VALUES (26635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703669435);
INSERT INTO public.notice VALUES (27134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703968835);
INSERT INTO public.notice VALUES (27136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703970036);
INSERT INTO public.notice VALUES (27507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704192635);
INSERT INTO public.notice VALUES (27509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704193836);
INSERT INTO public.notice VALUES (27511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704195042);
INSERT INTO public.notice VALUES (23060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701523654);
INSERT INTO public.notice VALUES (23061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701524254);
INSERT INTO public.notice VALUES (23062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701524853);
INSERT INTO public.notice VALUES (23063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701525454);
INSERT INTO public.notice VALUES (23066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701527254);
INSERT INTO public.notice VALUES (23067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701527854);
INSERT INTO public.notice VALUES (23068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701528453);
INSERT INTO public.notice VALUES (23070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701529654);
INSERT INTO public.notice VALUES (23071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701530254);
INSERT INTO public.notice VALUES (23072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701530853);
INSERT INTO public.notice VALUES (23073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701531452);
INSERT INTO public.notice VALUES (23074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701532054);
INSERT INTO public.notice VALUES (23075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701532653);
INSERT INTO public.notice VALUES (23076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701533253);
INSERT INTO public.notice VALUES (23077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701533854);
INSERT INTO public.notice VALUES (23078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701534454);
INSERT INTO public.notice VALUES (23079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701535053);
INSERT INTO public.notice VALUES (23080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701535653);
INSERT INTO public.notice VALUES (23081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701536254);
INSERT INTO public.notice VALUES (23082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701536854);
INSERT INTO public.notice VALUES (23083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701537453);
INSERT INTO public.notice VALUES (23084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701538052);
INSERT INTO public.notice VALUES (23085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701538655);
INSERT INTO public.notice VALUES (23086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701539253);
INSERT INTO public.notice VALUES (23087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701539853);
INSERT INTO public.notice VALUES (23088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701540454);
INSERT INTO public.notice VALUES (23089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701541054);
INSERT INTO public.notice VALUES (23090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701541653);
INSERT INTO public.notice VALUES (23091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701542252);
INSERT INTO public.notice VALUES (23092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701542854);
INSERT INTO public.notice VALUES (23093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701543453);
INSERT INTO public.notice VALUES (23094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701544053);
INSERT INTO public.notice VALUES (23095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701544654);
INSERT INTO public.notice VALUES (23096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701545254);
INSERT INTO public.notice VALUES (23097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701545853);
INSERT INTO public.notice VALUES (23098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701546453);
INSERT INTO public.notice VALUES (23099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701547054);
INSERT INTO public.notice VALUES (23100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701547653);
INSERT INTO public.notice VALUES (23101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701548253);
INSERT INTO public.notice VALUES (23102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701548854);
INSERT INTO public.notice VALUES (23103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701549454);
INSERT INTO public.notice VALUES (23104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701550060);
INSERT INTO public.notice VALUES (23105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701550656);
INSERT INTO public.notice VALUES (23106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701551254);
INSERT INTO public.notice VALUES (23107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701551854);
INSERT INTO public.notice VALUES (23108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701552453);
INSERT INTO public.notice VALUES (23109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701553054);
INSERT INTO public.notice VALUES (23110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701553654);
INSERT INTO public.notice VALUES (23111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701554253);
INSERT INTO public.notice VALUES (23112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701554853);
INSERT INTO public.notice VALUES (23113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701555454);
INSERT INTO public.notice VALUES (23114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701556054);
INSERT INTO public.notice VALUES (23115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701556653);
INSERT INTO public.notice VALUES (23116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701557253);
INSERT INTO public.notice VALUES (23117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701557854);
INSERT INTO public.notice VALUES (23118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701558453);
INSERT INTO public.notice VALUES (23119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701559053);
INSERT INTO public.notice VALUES (23120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701559654);
INSERT INTO public.notice VALUES (23121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701560254);
INSERT INTO public.notice VALUES (23122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701560854);
INSERT INTO public.notice VALUES (23123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701561453);
INSERT INTO public.notice VALUES (23124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701562054);
INSERT INTO public.notice VALUES (23125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701562654);
INSERT INTO public.notice VALUES (23126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701563253);
INSERT INTO public.notice VALUES (23127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701563855);
INSERT INTO public.notice VALUES (23128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701564454);
INSERT INTO public.notice VALUES (23129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701565053);
INSERT INTO public.notice VALUES (23130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701565653);
INSERT INTO public.notice VALUES (23131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701566254);
INSERT INTO public.notice VALUES (23132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701566853);
INSERT INTO public.notice VALUES (23133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701567453);
INSERT INTO public.notice VALUES (23134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701568054);
INSERT INTO public.notice VALUES (23135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701568654);
INSERT INTO public.notice VALUES (23136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701569253);
INSERT INTO public.notice VALUES (23137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701569853);
INSERT INTO public.notice VALUES (23138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701570454);
INSERT INTO public.notice VALUES (23141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701572253);
INSERT INTO public.notice VALUES (23142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701572854);
INSERT INTO public.notice VALUES (23143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701573454);
INSERT INTO public.notice VALUES (25914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703236836);
INSERT INTO public.notice VALUES (25915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703237435);
INSERT INTO public.notice VALUES (25918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703239235);
INSERT INTO public.notice VALUES (26638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703671235);
INSERT INTO public.notice VALUES (27135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703969436);
INSERT INTO public.notice VALUES (27512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704195640);
INSERT INTO public.notice VALUES (27514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704196835);
INSERT INTO public.notice VALUES (27515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704197435);
INSERT INTO public.notice VALUES (27518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704199235);
INSERT INTO public.notice VALUES (27519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704199834);
INSERT INTO public.notice VALUES (27520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704200436);
INSERT INTO public.notice VALUES (23139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701571054);
INSERT INTO public.notice VALUES (23140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701571653);
INSERT INTO public.notice VALUES (23144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701574053);
INSERT INTO public.notice VALUES (23145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701574654);
INSERT INTO public.notice VALUES (23146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701575254);
INSERT INTO public.notice VALUES (23147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701575853);
INSERT INTO public.notice VALUES (23148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701576453);
INSERT INTO public.notice VALUES (23149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701577054);
INSERT INTO public.notice VALUES (23150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701577654);
INSERT INTO public.notice VALUES (23151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701578253);
INSERT INTO public.notice VALUES (23152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701578854);
INSERT INTO public.notice VALUES (23153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701579461);
INSERT INTO public.notice VALUES (23154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701580057);
INSERT INTO public.notice VALUES (23155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701580653);
INSERT INTO public.notice VALUES (23156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701581254);
INSERT INTO public.notice VALUES (23157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701581854);
INSERT INTO public.notice VALUES (23158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701582453);
INSERT INTO public.notice VALUES (25916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703238036);
INSERT INTO public.notice VALUES (25917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703238636);
INSERT INTO public.notice VALUES (25920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703240436);
INSERT INTO public.notice VALUES (25922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703241635);
INSERT INTO public.notice VALUES (26639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703671835);
INSERT INTO public.notice VALUES (26640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703672436);
INSERT INTO public.notice VALUES (26646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703676035);
INSERT INTO public.notice VALUES (27137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703970635);
INSERT INTO public.notice VALUES (27141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703973035);
INSERT INTO public.notice VALUES (27142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703973636);
INSERT INTO public.notice VALUES (27144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703974835);
INSERT INTO public.notice VALUES (27513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704196236);
INSERT INTO public.notice VALUES (27776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704354035);
INSERT INTO public.notice VALUES (23159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701583054);
INSERT INTO public.notice VALUES (23160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701583654);
INSERT INTO public.notice VALUES (23161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701584253);
INSERT INTO public.notice VALUES (23162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701584854);
INSERT INTO public.notice VALUES (23163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701585454);
INSERT INTO public.notice VALUES (23164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701586054);
INSERT INTO public.notice VALUES (23165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701586653);
INSERT INTO public.notice VALUES (23166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701587253);
INSERT INTO public.notice VALUES (23167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701587854);
INSERT INTO public.notice VALUES (23168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701588454);
INSERT INTO public.notice VALUES (23169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701589053);
INSERT INTO public.notice VALUES (23170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701589652);
INSERT INTO public.notice VALUES (23171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701590254);
INSERT INTO public.notice VALUES (23172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701590853);
INSERT INTO public.notice VALUES (23173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701591453);
INSERT INTO public.notice VALUES (23174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701592054);
INSERT INTO public.notice VALUES (23175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701592654);
INSERT INTO public.notice VALUES (23176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701593253);
INSERT INTO public.notice VALUES (23177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701593854);
INSERT INTO public.notice VALUES (23178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701594454);
INSERT INTO public.notice VALUES (23179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701595053);
INSERT INTO public.notice VALUES (23180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701595653);
INSERT INTO public.notice VALUES (23181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701596254);
INSERT INTO public.notice VALUES (23182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701596854);
INSERT INTO public.notice VALUES (23183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701597453);
INSERT INTO public.notice VALUES (23184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701598053);
INSERT INTO public.notice VALUES (23185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701598654);
INSERT INTO public.notice VALUES (23186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701599253);
INSERT INTO public.notice VALUES (23187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701599853);
INSERT INTO public.notice VALUES (23188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701600454);
INSERT INTO public.notice VALUES (23189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701601054);
INSERT INTO public.notice VALUES (23194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701604053);
INSERT INTO public.notice VALUES (23195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701604654);
INSERT INTO public.notice VALUES (23198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701606453);
INSERT INTO public.notice VALUES (23199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701607054);
INSERT INTO public.notice VALUES (23200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701607654);
INSERT INTO public.notice VALUES (23201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701608253);
INSERT INTO public.notice VALUES (23202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701608862);
INSERT INTO public.notice VALUES (25919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703239835);
INSERT INTO public.notice VALUES (25921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703241036);
INSERT INTO public.notice VALUES (25925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703243436);
INSERT INTO public.notice VALUES (25927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703244646);
INSERT INTO public.notice VALUES (26641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703673036);
INSERT INTO public.notice VALUES (26642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703673635);
INSERT INTO public.notice VALUES (27138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703971234);
INSERT INTO public.notice VALUES (23190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701601653);
INSERT INTO public.notice VALUES (23191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701602253);
INSERT INTO public.notice VALUES (23192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701602854);
INSERT INTO public.notice VALUES (23193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701603454);
INSERT INTO public.notice VALUES (23196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701605254);
INSERT INTO public.notice VALUES (23197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701605853);
INSERT INTO public.notice VALUES (23203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701609458);
INSERT INTO public.notice VALUES (23204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701610053);
INSERT INTO public.notice VALUES (23205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701610653);
INSERT INTO public.notice VALUES (23206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701611254);
INSERT INTO public.notice VALUES (23207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701611854);
INSERT INTO public.notice VALUES (23208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701612453);
INSERT INTO public.notice VALUES (23209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701613053);
INSERT INTO public.notice VALUES (23210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701613654);
INSERT INTO public.notice VALUES (23211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701614254);
INSERT INTO public.notice VALUES (23212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701614853);
INSERT INTO public.notice VALUES (25923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703242237);
INSERT INTO public.notice VALUES (26643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703674236);
INSERT INTO public.notice VALUES (26644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703674836);
INSERT INTO public.notice VALUES (26645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703675435);
INSERT INTO public.notice VALUES (26647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703676636);
INSERT INTO public.notice VALUES (26649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703677835);
INSERT INTO public.notice VALUES (26650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703678435);
INSERT INTO public.notice VALUES (27139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703971836);
INSERT INTO public.notice VALUES (27516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704198036);
INSERT INTO public.notice VALUES (27517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704198636);
INSERT INTO public.notice VALUES (27521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704201035);
INSERT INTO public.notice VALUES (27522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704201635);
INSERT INTO public.notice VALUES (27523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704202236);
INSERT INTO public.notice VALUES (27525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704203435);
INSERT INTO public.notice VALUES (23213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701615455);
INSERT INTO public.notice VALUES (23214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701616054);
INSERT INTO public.notice VALUES (23215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701616653);
INSERT INTO public.notice VALUES (23216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701617253);
INSERT INTO public.notice VALUES (23217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701617855);
INSERT INTO public.notice VALUES (23218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701618454);
INSERT INTO public.notice VALUES (23219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701619054);
INSERT INTO public.notice VALUES (23220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701619655);
INSERT INTO public.notice VALUES (23221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701620254);
INSERT INTO public.notice VALUES (23222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701620854);
INSERT INTO public.notice VALUES (23223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701621453);
INSERT INTO public.notice VALUES (23224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701622055);
INSERT INTO public.notice VALUES (23225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701622654);
INSERT INTO public.notice VALUES (23226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701623253);
INSERT INTO public.notice VALUES (23227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701623853);
INSERT INTO public.notice VALUES (23228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701624454);
INSERT INTO public.notice VALUES (23229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701625054);
INSERT INTO public.notice VALUES (23230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701625654);
INSERT INTO public.notice VALUES (23231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701626252);
INSERT INTO public.notice VALUES (23232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701626854);
INSERT INTO public.notice VALUES (23233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701627453);
INSERT INTO public.notice VALUES (23234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701628053);
INSERT INTO public.notice VALUES (23235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701628654);
INSERT INTO public.notice VALUES (23236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701629254);
INSERT INTO public.notice VALUES (23237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701629853);
INSERT INTO public.notice VALUES (23238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701630453);
INSERT INTO public.notice VALUES (23239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701631054);
INSERT INTO public.notice VALUES (23240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701631654);
INSERT INTO public.notice VALUES (23241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701632253);
INSERT INTO public.notice VALUES (23242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701632853);
INSERT INTO public.notice VALUES (23243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701633454);
INSERT INTO public.notice VALUES (23244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701634053);
INSERT INTO public.notice VALUES (23245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701634653);
INSERT INTO public.notice VALUES (23247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701635854);
INSERT INTO public.notice VALUES (23248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701636453);
INSERT INTO public.notice VALUES (25924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703242836);
INSERT INTO public.notice VALUES (26648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703677236);
INSERT INTO public.notice VALUES (26653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703680235);
INSERT INTO public.notice VALUES (26654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703680836);
INSERT INTO public.notice VALUES (26655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703681436);
INSERT INTO public.notice VALUES (27140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703972435);
INSERT INTO public.notice VALUES (27143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703974236);
INSERT INTO public.notice VALUES (27148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703977235);
INSERT INTO public.notice VALUES (27524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704202836);
INSERT INTO public.notice VALUES (27526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704204036);
INSERT INTO public.notice VALUES (23246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701635254);
INSERT INTO public.notice VALUES (23249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701637053);
INSERT INTO public.notice VALUES (23250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701637654);
INSERT INTO public.notice VALUES (23251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701638261);
INSERT INTO public.notice VALUES (23252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701638856);
INSERT INTO public.notice VALUES (23253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701639454);
INSERT INTO public.notice VALUES (23254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701640054);
INSERT INTO public.notice VALUES (23255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701640653);
INSERT INTO public.notice VALUES (23256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701641253);
INSERT INTO public.notice VALUES (23257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701641854);
INSERT INTO public.notice VALUES (23258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701642454);
INSERT INTO public.notice VALUES (23259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701643053);
INSERT INTO public.notice VALUES (23260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701643653);
INSERT INTO public.notice VALUES (23261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701644254);
INSERT INTO public.notice VALUES (23262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701644853);
INSERT INTO public.notice VALUES (23263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701645453);
INSERT INTO public.notice VALUES (23264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701646054);
INSERT INTO public.notice VALUES (23265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701646654);
INSERT INTO public.notice VALUES (23266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701647253);
INSERT INTO public.notice VALUES (23267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701647853);
INSERT INTO public.notice VALUES (23268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701648454);
INSERT INTO public.notice VALUES (23269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701649054);
INSERT INTO public.notice VALUES (23270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701649653);
INSERT INTO public.notice VALUES (23271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701650255);
INSERT INTO public.notice VALUES (23272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701650854);
INSERT INTO public.notice VALUES (23273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701651453);
INSERT INTO public.notice VALUES (23274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701652053);
INSERT INTO public.notice VALUES (23275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701652655);
INSERT INTO public.notice VALUES (23276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701653254);
INSERT INTO public.notice VALUES (23277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701653853);
INSERT INTO public.notice VALUES (23278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701654453);
INSERT INTO public.notice VALUES (23279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701655054);
INSERT INTO public.notice VALUES (23280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701655653);
INSERT INTO public.notice VALUES (23283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701657454);
INSERT INTO public.notice VALUES (23285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701658653);
INSERT INTO public.notice VALUES (23286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701659254);
INSERT INTO public.notice VALUES (25926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703244035);
INSERT INTO public.notice VALUES (26651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703679036);
INSERT INTO public.notice VALUES (26652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703679635);
INSERT INTO public.notice VALUES (27145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703975434);
INSERT INTO public.notice VALUES (27146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703976036);
INSERT INTO public.notice VALUES (27527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704204636);
INSERT INTO public.notice VALUES (27777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704354635);
INSERT INTO public.notice VALUES (27779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704355836);
INSERT INTO public.notice VALUES (27780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704356435);
INSERT INTO public.notice VALUES (23281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701656253);
INSERT INTO public.notice VALUES (23282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701656854);
INSERT INTO public.notice VALUES (23284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701658053);
INSERT INTO public.notice VALUES (23287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701659854);
INSERT INTO public.notice VALUES (23288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701660453);
INSERT INTO public.notice VALUES (23289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701661055);
INSERT INTO public.notice VALUES (23290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701661654);
INSERT INTO public.notice VALUES (23291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701662253);
INSERT INTO public.notice VALUES (23292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701662853);
INSERT INTO public.notice VALUES (23293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701663454);
INSERT INTO public.notice VALUES (23294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701664054);
INSERT INTO public.notice VALUES (23295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701664653);
INSERT INTO public.notice VALUES (23296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701665253);
INSERT INTO public.notice VALUES (23297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701665854);
INSERT INTO public.notice VALUES (23298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701666453);
INSERT INTO public.notice VALUES (23299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701667053);
INSERT INTO public.notice VALUES (25928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703245236);
INSERT INTO public.notice VALUES (26656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703682035);
INSERT INTO public.notice VALUES (26660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703684435);
INSERT INTO public.notice VALUES (27147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703976635);
INSERT INTO public.notice VALUES (27152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703979642);
INSERT INTO public.notice VALUES (27156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703982036);
INSERT INTO public.notice VALUES (27158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703983235);
INSERT INTO public.notice VALUES (27528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704205235);
INSERT INTO public.notice VALUES (27530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704206436);
INSERT INTO public.notice VALUES (27533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704208235);
INSERT INTO public.notice VALUES (27778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704355237);
INSERT INTO public.notice VALUES (27784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704358835);
INSERT INTO public.notice VALUES (27786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704360036);
INSERT INTO public.notice VALUES (27787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704360635);
INSERT INTO public.notice VALUES (23300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701667662);
INSERT INTO public.notice VALUES (23301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701668257);
INSERT INTO public.notice VALUES (23302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701668853);
INSERT INTO public.notice VALUES (23303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701669453);
INSERT INTO public.notice VALUES (23304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701670054);
INSERT INTO public.notice VALUES (23305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701670654);
INSERT INTO public.notice VALUES (23306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701671253);
INSERT INTO public.notice VALUES (23307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701671852);
INSERT INTO public.notice VALUES (23308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701672454);
INSERT INTO public.notice VALUES (23309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701673053);
INSERT INTO public.notice VALUES (23310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701673653);
INSERT INTO public.notice VALUES (23311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701674254);
INSERT INTO public.notice VALUES (23312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701674854);
INSERT INTO public.notice VALUES (23313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701675453);
INSERT INTO public.notice VALUES (23314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701676052);
INSERT INTO public.notice VALUES (23315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701676654);
INSERT INTO public.notice VALUES (23316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701677253);
INSERT INTO public.notice VALUES (23317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701677853);
INSERT INTO public.notice VALUES (23318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701678453);
INSERT INTO public.notice VALUES (23319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701679053);
INSERT INTO public.notice VALUES (23320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701679652);
INSERT INTO public.notice VALUES (23321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701680254);
INSERT INTO public.notice VALUES (23322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701680853);
INSERT INTO public.notice VALUES (23323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701681453);
INSERT INTO public.notice VALUES (23324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701682054);
INSERT INTO public.notice VALUES (23325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701682654);
INSERT INTO public.notice VALUES (23326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701683253);
INSERT INTO public.notice VALUES (23327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701683853);
INSERT INTO public.notice VALUES (23328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701684454);
INSERT INTO public.notice VALUES (23329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701685054);
INSERT INTO public.notice VALUES (23330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701685653);
INSERT INTO public.notice VALUES (23331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701686254);
INSERT INTO public.notice VALUES (23334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701688053);
INSERT INTO public.notice VALUES (23338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701690452);
INSERT INTO public.notice VALUES (23339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701691054);
INSERT INTO public.notice VALUES (23341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701692253);
INSERT INTO public.notice VALUES (23342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701692854);
INSERT INTO public.notice VALUES (23344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701694053);
INSERT INTO public.notice VALUES (25929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703245835);
INSERT INTO public.notice VALUES (25930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703246435);
INSERT INTO public.notice VALUES (25935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703249436);
INSERT INTO public.notice VALUES (25938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703251236);
INSERT INTO public.notice VALUES (25939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703251836);
INSERT INTO public.notice VALUES (25940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703252435);
INSERT INTO public.notice VALUES (25944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703254838);
INSERT INTO public.notice VALUES (23332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701686854);
INSERT INTO public.notice VALUES (23333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701687453);
INSERT INTO public.notice VALUES (23335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701688654);
INSERT INTO public.notice VALUES (23336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701689254);
INSERT INTO public.notice VALUES (23337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701689853);
INSERT INTO public.notice VALUES (23340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701691653);
INSERT INTO public.notice VALUES (23343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701693454);
INSERT INTO public.notice VALUES (23345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701694653);
INSERT INTO public.notice VALUES (23346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701695254);
INSERT INTO public.notice VALUES (23347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701695854);
INSERT INTO public.notice VALUES (23348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701696453);
INSERT INTO public.notice VALUES (23349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701697065);
INSERT INTO public.notice VALUES (23350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701697658);
INSERT INTO public.notice VALUES (23351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701698253);
INSERT INTO public.notice VALUES (23352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701698853);
INSERT INTO public.notice VALUES (23353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701699454);
INSERT INTO public.notice VALUES (25931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703247036);
INSERT INTO public.notice VALUES (26657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703682635);
INSERT INTO public.notice VALUES (26658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703683236);
INSERT INTO public.notice VALUES (26659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703683835);
INSERT INTO public.notice VALUES (26663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703686235);
INSERT INTO public.notice VALUES (26667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703688635);
INSERT INTO public.notice VALUES (26668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703689234);
INSERT INTO public.notice VALUES (27149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703977836);
INSERT INTO public.notice VALUES (27529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704205835);
INSERT INTO public.notice VALUES (27531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704207036);
INSERT INTO public.notice VALUES (27781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704357039);
INSERT INTO public.notice VALUES (27925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704443436);
INSERT INTO public.notice VALUES (27979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704475836);
INSERT INTO public.notice VALUES (28002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704489639);
INSERT INTO public.notice VALUES (23354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701700054);
INSERT INTO public.notice VALUES (23355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701700653);
INSERT INTO public.notice VALUES (23356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701701253);
INSERT INTO public.notice VALUES (23357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701701854);
INSERT INTO public.notice VALUES (23358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701702455);
INSERT INTO public.notice VALUES (23359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701703054);
INSERT INTO public.notice VALUES (23360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701703654);
INSERT INTO public.notice VALUES (23361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701704254);
INSERT INTO public.notice VALUES (23362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701704855);
INSERT INTO public.notice VALUES (23363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701705453);
INSERT INTO public.notice VALUES (23364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701706054);
INSERT INTO public.notice VALUES (23365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701706654);
INSERT INTO public.notice VALUES (23366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701707253);
INSERT INTO public.notice VALUES (23367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701707854);
INSERT INTO public.notice VALUES (23368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701708454);
INSERT INTO public.notice VALUES (23369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701709053);
INSERT INTO public.notice VALUES (23370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701709653);
INSERT INTO public.notice VALUES (23371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701710254);
INSERT INTO public.notice VALUES (23372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701710854);
INSERT INTO public.notice VALUES (23373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701711454);
INSERT INTO public.notice VALUES (23374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701712054);
INSERT INTO public.notice VALUES (23375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701712654);
INSERT INTO public.notice VALUES (23376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701713253);
INSERT INTO public.notice VALUES (23377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701713853);
INSERT INTO public.notice VALUES (23378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701714454);
INSERT INTO public.notice VALUES (23379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701715054);
INSERT INTO public.notice VALUES (23380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701715653);
INSERT INTO public.notice VALUES (23381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701716253);
INSERT INTO public.notice VALUES (23382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701716854);
INSERT INTO public.notice VALUES (23383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701717453);
INSERT INTO public.notice VALUES (23384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701718053);
INSERT INTO public.notice VALUES (23385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701718654);
INSERT INTO public.notice VALUES (23386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701719254);
INSERT INTO public.notice VALUES (23387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701719853);
INSERT INTO public.notice VALUES (23388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701720453);
INSERT INTO public.notice VALUES (23389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701721054);
INSERT INTO public.notice VALUES (23390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701721654);
INSERT INTO public.notice VALUES (23391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701722253);
INSERT INTO public.notice VALUES (23392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701722854);
INSERT INTO public.notice VALUES (23393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701723454);
INSERT INTO public.notice VALUES (23394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701724053);
INSERT INTO public.notice VALUES (23395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701724653);
INSERT INTO public.notice VALUES (23396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701725254);
INSERT INTO public.notice VALUES (23397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701725854);
INSERT INTO public.notice VALUES (23398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701726460);
INSERT INTO public.notice VALUES (23399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701727058);
INSERT INTO public.notice VALUES (23401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701728253);
INSERT INTO public.notice VALUES (23402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701728853);
INSERT INTO public.notice VALUES (23403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701729454);
INSERT INTO public.notice VALUES (23404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701730054);
INSERT INTO public.notice VALUES (23405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701730653);
INSERT INTO public.notice VALUES (23407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701731854);
INSERT INTO public.notice VALUES (23408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701732453);
INSERT INTO public.notice VALUES (23414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701736054);
INSERT INTO public.notice VALUES (25932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703247635);
INSERT INTO public.notice VALUES (26661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703685036);
INSERT INTO public.notice VALUES (26662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703685644);
INSERT INTO public.notice VALUES (26664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703686835);
INSERT INTO public.notice VALUES (26665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703687436);
INSERT INTO public.notice VALUES (26666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703688035);
INSERT INTO public.notice VALUES (23400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701727654);
INSERT INTO public.notice VALUES (23406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701731254);
INSERT INTO public.notice VALUES (23409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701733053);
INSERT INTO public.notice VALUES (23410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701733654);
INSERT INTO public.notice VALUES (23411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701734254);
INSERT INTO public.notice VALUES (23412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701734853);
INSERT INTO public.notice VALUES (23413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701735453);
INSERT INTO public.notice VALUES (23415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701736654);
INSERT INTO public.notice VALUES (23416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701737253);
INSERT INTO public.notice VALUES (23417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701737852);
INSERT INTO public.notice VALUES (23418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701738454);
INSERT INTO public.notice VALUES (23419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701739053);
INSERT INTO public.notice VALUES (23420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701739653);
INSERT INTO public.notice VALUES (23421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701740254);
INSERT INTO public.notice VALUES (23422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701740854);
INSERT INTO public.notice VALUES (23423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701741453);
INSERT INTO public.notice VALUES (25933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703248236);
INSERT INTO public.notice VALUES (25934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703248836);
INSERT INTO public.notice VALUES (25936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703250035);
INSERT INTO public.notice VALUES (25937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703250635);
INSERT INTO public.notice VALUES (26669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703689836);
INSERT INTO public.notice VALUES (26671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703691035);
INSERT INTO public.notice VALUES (26672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703691636);
INSERT INTO public.notice VALUES (26673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703692235);
INSERT INTO public.notice VALUES (27150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703978436);
INSERT INTO public.notice VALUES (27151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703979035);
INSERT INTO public.notice VALUES (27153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703980236);
INSERT INTO public.notice VALUES (27154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703980835);
INSERT INTO public.notice VALUES (27155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703981435);
INSERT INTO public.notice VALUES (27157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703982636);
INSERT INTO public.notice VALUES (23424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701742054);
INSERT INTO public.notice VALUES (23425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701742654);
INSERT INTO public.notice VALUES (23426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701743253);
INSERT INTO public.notice VALUES (23427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701743853);
INSERT INTO public.notice VALUES (23428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701744454);
INSERT INTO public.notice VALUES (23429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701745054);
INSERT INTO public.notice VALUES (23430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701745653);
INSERT INTO public.notice VALUES (23431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701746253);
INSERT INTO public.notice VALUES (23432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701746854);
INSERT INTO public.notice VALUES (23433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701747454);
INSERT INTO public.notice VALUES (23434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701748053);
INSERT INTO public.notice VALUES (23435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701748652);
INSERT INTO public.notice VALUES (23436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701749253);
INSERT INTO public.notice VALUES (23437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701749853);
INSERT INTO public.notice VALUES (23438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701750454);
INSERT INTO public.notice VALUES (23439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701751053);
INSERT INTO public.notice VALUES (25941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703253036);
INSERT INTO public.notice VALUES (25942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703253636);
INSERT INTO public.notice VALUES (25943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703254242);
INSERT INTO public.notice VALUES (25945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703255436);
INSERT INTO public.notice VALUES (26670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703690435);
INSERT INTO public.notice VALUES (26675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703693436);
INSERT INTO public.notice VALUES (26677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703694635);
INSERT INTO public.notice VALUES (27159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703983835);
INSERT INTO public.notice VALUES (27160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703984436);
INSERT INTO public.notice VALUES (27532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704207635);
INSERT INTO public.notice VALUES (27782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704357636);
INSERT INTO public.notice VALUES (27783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704358235);
INSERT INTO public.notice VALUES (27785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704359436);
INSERT INTO public.notice VALUES (27788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704361235);
INSERT INTO public.notice VALUES (23440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701751653);
INSERT INTO public.notice VALUES (23441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701752254);
INSERT INTO public.notice VALUES (23442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701752854);
INSERT INTO public.notice VALUES (23443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701753453);
INSERT INTO public.notice VALUES (23444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701754053);
INSERT INTO public.notice VALUES (23445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701754654);
INSERT INTO public.notice VALUES (23446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701755253);
INSERT INTO public.notice VALUES (23447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701755862);
INSERT INTO public.notice VALUES (23448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701756458);
INSERT INTO public.notice VALUES (23449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701757054);
INSERT INTO public.notice VALUES (23450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701757653);
INSERT INTO public.notice VALUES (23451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701758253);
INSERT INTO public.notice VALUES (23452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701758854);
INSERT INTO public.notice VALUES (23453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701759454);
INSERT INTO public.notice VALUES (23454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701760053);
INSERT INTO public.notice VALUES (23455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701760654);
INSERT INTO public.notice VALUES (23456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701761255);
INSERT INTO public.notice VALUES (23457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701761853);
INSERT INTO public.notice VALUES (23459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701763054);
INSERT INTO public.notice VALUES (23465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701766653);
INSERT INTO public.notice VALUES (23466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701767254);
INSERT INTO public.notice VALUES (23467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701767854);
INSERT INTO public.notice VALUES (25946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703256036);
INSERT INTO public.notice VALUES (26674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703692835);
INSERT INTO public.notice VALUES (26676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703694036);
INSERT INTO public.notice VALUES (26678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703695242);
INSERT INTO public.notice VALUES (26679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703695840);
INSERT INTO public.notice VALUES (26681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703697035);
INSERT INTO public.notice VALUES (26682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703697635);
INSERT INTO public.notice VALUES (26683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703698236);
INSERT INTO public.notice VALUES (23458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701762453);
INSERT INTO public.notice VALUES (23460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701763654);
INSERT INTO public.notice VALUES (23461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701764253);
INSERT INTO public.notice VALUES (23462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701764853);
INSERT INTO public.notice VALUES (23463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701765455);
INSERT INTO public.notice VALUES (23464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701766053);
INSERT INTO public.notice VALUES (23468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701768453);
INSERT INTO public.notice VALUES (23469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701769053);
INSERT INTO public.notice VALUES (23470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701769654);
INSERT INTO public.notice VALUES (23471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701770254);
INSERT INTO public.notice VALUES (23472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701770853);
INSERT INTO public.notice VALUES (23473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701771452);
INSERT INTO public.notice VALUES (23474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701772054);
INSERT INTO public.notice VALUES (23475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701772653);
INSERT INTO public.notice VALUES (23476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701773253);
INSERT INTO public.notice VALUES (23477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701773854);
INSERT INTO public.notice VALUES (23480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701775653);
INSERT INTO public.notice VALUES (25947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703256635);
INSERT INTO public.notice VALUES (25949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703257836);
INSERT INTO public.notice VALUES (26680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703696436);
INSERT INTO public.notice VALUES (26685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703699435);
INSERT INTO public.notice VALUES (27161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703985036);
INSERT INTO public.notice VALUES (27163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703986234);
INSERT INTO public.notice VALUES (27164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703986836);
INSERT INTO public.notice VALUES (27534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704208836);
INSERT INTO public.notice VALUES (27535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704209435);
INSERT INTO public.notice VALUES (27789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704361845);
INSERT INTO public.notice VALUES (27926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704444035);
INSERT INTO public.notice VALUES (27928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704445234);
INSERT INTO public.notice VALUES (27980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704476436);
INSERT INTO public.notice VALUES (23478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701774454);
INSERT INTO public.notice VALUES (23479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701775053);
INSERT INTO public.notice VALUES (23481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701776255);
INSERT INTO public.notice VALUES (23482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701776853);
INSERT INTO public.notice VALUES (23483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701777453);
INSERT INTO public.notice VALUES (23484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701778054);
INSERT INTO public.notice VALUES (23485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701778654);
INSERT INTO public.notice VALUES (23486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701779253);
INSERT INTO public.notice VALUES (23487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701779853);
INSERT INTO public.notice VALUES (23488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701780454);
INSERT INTO public.notice VALUES (23489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701781053);
INSERT INTO public.notice VALUES (23490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701781653);
INSERT INTO public.notice VALUES (23491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701782254);
INSERT INTO public.notice VALUES (23492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701782854);
INSERT INTO public.notice VALUES (23493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701783453);
INSERT INTO public.notice VALUES (23494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701784053);
INSERT INTO public.notice VALUES (23495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701784654);
INSERT INTO public.notice VALUES (23496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701785261);
INSERT INTO public.notice VALUES (23497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701785856);
INSERT INTO public.notice VALUES (23498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701786452);
INSERT INTO public.notice VALUES (23499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701787054);
INSERT INTO public.notice VALUES (23500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701787653);
INSERT INTO public.notice VALUES (23501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701788253);
INSERT INTO public.notice VALUES (23502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701788855);
INSERT INTO public.notice VALUES (23503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701789454);
INSERT INTO public.notice VALUES (23504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701790053);
INSERT INTO public.notice VALUES (23505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701790653);
INSERT INTO public.notice VALUES (23506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701791254);
INSERT INTO public.notice VALUES (23507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701791854);
INSERT INTO public.notice VALUES (23508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701792454);
INSERT INTO public.notice VALUES (23509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701793055);
INSERT INTO public.notice VALUES (25948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703257234);
INSERT INTO public.notice VALUES (25950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703258435);
INSERT INTO public.notice VALUES (26684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703698835);
INSERT INTO public.notice VALUES (26686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703700037);
INSERT INTO public.notice VALUES (27162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703985636);
INSERT INTO public.notice VALUES (27169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703989838);
INSERT INTO public.notice VALUES (27536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704210035);
INSERT INTO public.notice VALUES (27790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704362436);
INSERT INTO public.notice VALUES (27791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704363035);
INSERT INTO public.notice VALUES (27792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704363636);
INSERT INTO public.notice VALUES (27927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704444636);
INSERT INTO public.notice VALUES (27981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704477035);
INSERT INTO public.notice VALUES (27982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704477635);
INSERT INTO public.notice VALUES (28003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704490235);
INSERT INTO public.notice VALUES (23510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701793654);
INSERT INTO public.notice VALUES (23511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701794253);
INSERT INTO public.notice VALUES (23512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701794853);
INSERT INTO public.notice VALUES (23513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701795454);
INSERT INTO public.notice VALUES (23514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701796054);
INSERT INTO public.notice VALUES (23515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701796653);
INSERT INTO public.notice VALUES (23516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701797255);
INSERT INTO public.notice VALUES (23517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701797854);
INSERT INTO public.notice VALUES (23518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701798454);
INSERT INTO public.notice VALUES (23519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701799053);
INSERT INTO public.notice VALUES (23520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701799654);
INSERT INTO public.notice VALUES (23521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701800254);
INSERT INTO public.notice VALUES (23522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701800854);
INSERT INTO public.notice VALUES (23523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701801453);
INSERT INTO public.notice VALUES (23524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701802054);
INSERT INTO public.notice VALUES (23525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701802654);
INSERT INTO public.notice VALUES (23526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701803253);
INSERT INTO public.notice VALUES (23527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701803855);
INSERT INTO public.notice VALUES (23529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701805053);
INSERT INTO public.notice VALUES (23530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701805653);
INSERT INTO public.notice VALUES (23533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701807453);
INSERT INTO public.notice VALUES (25951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703259035);
INSERT INTO public.notice VALUES (26687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703700636);
INSERT INTO public.notice VALUES (26688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703701235);
INSERT INTO public.notice VALUES (26690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703702436);
INSERT INTO public.notice VALUES (26691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703703035);
INSERT INTO public.notice VALUES (27165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703987435);
INSERT INTO public.notice VALUES (27166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703988035);
INSERT INTO public.notice VALUES (27167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703988636);
INSERT INTO public.notice VALUES (27537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704210636);
INSERT INTO public.notice VALUES (23528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701804454);
INSERT INTO public.notice VALUES (23531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701806254);
INSERT INTO public.notice VALUES (23532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701806854);
INSERT INTO public.notice VALUES (23534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701808053);
INSERT INTO public.notice VALUES (23535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701808654);
INSERT INTO public.notice VALUES (23536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701809254);
INSERT INTO public.notice VALUES (23537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701809853);
INSERT INTO public.notice VALUES (23538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701810454);
INSERT INTO public.notice VALUES (23539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701811054);
INSERT INTO public.notice VALUES (23540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701811653);
INSERT INTO public.notice VALUES (23541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701812252);
INSERT INTO public.notice VALUES (23542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701812854);
INSERT INTO public.notice VALUES (23543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701813453);
INSERT INTO public.notice VALUES (23544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701814053);
INSERT INTO public.notice VALUES (23545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701814660);
INSERT INTO public.notice VALUES (23546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701815257);
INSERT INTO public.notice VALUES (23547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701815853);
INSERT INTO public.notice VALUES (23548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701816453);
INSERT INTO public.notice VALUES (23549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701817054);
INSERT INTO public.notice VALUES (23551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701818253);
INSERT INTO public.notice VALUES (23552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701818853);
INSERT INTO public.notice VALUES (23554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701820053);
INSERT INTO public.notice VALUES (23555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701820653);
INSERT INTO public.notice VALUES (23556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701821254);
INSERT INTO public.notice VALUES (23558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701822453);
INSERT INTO public.notice VALUES (23561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701824254);
INSERT INTO public.notice VALUES (25952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703259636);
INSERT INTO public.notice VALUES (25953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703260236);
INSERT INTO public.notice VALUES (25954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703260835);
INSERT INTO public.notice VALUES (25958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703263235);
INSERT INTO public.notice VALUES (23550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701817654);
INSERT INTO public.notice VALUES (23553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701819454);
INSERT INTO public.notice VALUES (23557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701821854);
INSERT INTO public.notice VALUES (23559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701823053);
INSERT INTO public.notice VALUES (23560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701823654);
INSERT INTO public.notice VALUES (23562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701824853);
INSERT INTO public.notice VALUES (23563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701825452);
INSERT INTO public.notice VALUES (23564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701826054);
INSERT INTO public.notice VALUES (23565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701826653);
INSERT INTO public.notice VALUES (23566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701827253);
INSERT INTO public.notice VALUES (23567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701827854);
INSERT INTO public.notice VALUES (23568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701828454);
INSERT INTO public.notice VALUES (23569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701829053);
INSERT INTO public.notice VALUES (23570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701829652);
INSERT INTO public.notice VALUES (23571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701830254);
INSERT INTO public.notice VALUES (23572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701830853);
INSERT INTO public.notice VALUES (23573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701831453);
INSERT INTO public.notice VALUES (23574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701832054);
INSERT INTO public.notice VALUES (23575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701832654);
INSERT INTO public.notice VALUES (23576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701833253);
INSERT INTO public.notice VALUES (23577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701833853);
INSERT INTO public.notice VALUES (23578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701834453);
INSERT INTO public.notice VALUES (23579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701835053);
INSERT INTO public.notice VALUES (23580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701835654);
INSERT INTO public.notice VALUES (23581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701836254);
INSERT INTO public.notice VALUES (23582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701836853);
INSERT INTO public.notice VALUES (23583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701837452);
INSERT INTO public.notice VALUES (23584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701838054);
INSERT INTO public.notice VALUES (23585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701838653);
INSERT INTO public.notice VALUES (23586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701839253);
INSERT INTO public.notice VALUES (23587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701839854);
INSERT INTO public.notice VALUES (23588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701840454);
INSERT INTO public.notice VALUES (23589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701841053);
INSERT INTO public.notice VALUES (23590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701841653);
INSERT INTO public.notice VALUES (23591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701842254);
INSERT INTO public.notice VALUES (23594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701844060);
INSERT INTO public.notice VALUES (25955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703261435);
INSERT INTO public.notice VALUES (26689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703701835);
INSERT INTO public.notice VALUES (26692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703703635);
INSERT INTO public.notice VALUES (27168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703989243);
INSERT INTO public.notice VALUES (27538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704211236);
INSERT INTO public.notice VALUES (27539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704211835);
INSERT INTO public.notice VALUES (27543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704214235);
INSERT INTO public.notice VALUES (27545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704215436);
INSERT INTO public.notice VALUES (27546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704216035);
INSERT INTO public.notice VALUES (23592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701842853);
INSERT INTO public.notice VALUES (23593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701843453);
INSERT INTO public.notice VALUES (23595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701844657);
INSERT INTO public.notice VALUES (23596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701845253);
INSERT INTO public.notice VALUES (23597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701845853);
INSERT INTO public.notice VALUES (23598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701846454);
INSERT INTO public.notice VALUES (23599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701847054);
INSERT INTO public.notice VALUES (23600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701847654);
INSERT INTO public.notice VALUES (23601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701848255);
INSERT INTO public.notice VALUES (23602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701848854);
INSERT INTO public.notice VALUES (23603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701849453);
INSERT INTO public.notice VALUES (23604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701850053);
INSERT INTO public.notice VALUES (23605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701850654);
INSERT INTO public.notice VALUES (23606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701851254);
INSERT INTO public.notice VALUES (23607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701851853);
INSERT INTO public.notice VALUES (23608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701852453);
INSERT INTO public.notice VALUES (23609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701853054);
INSERT INTO public.notice VALUES (23610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701853653);
INSERT INTO public.notice VALUES (23612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701854854);
INSERT INTO public.notice VALUES (23613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701855454);
INSERT INTO public.notice VALUES (25956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703262036);
INSERT INTO public.notice VALUES (25957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703262636);
INSERT INTO public.notice VALUES (25963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703266236);
INSERT INTO public.notice VALUES (25966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703268037);
INSERT INTO public.notice VALUES (26693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703704236);
INSERT INTO public.notice VALUES (26694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703704836);
INSERT INTO public.notice VALUES (26695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703705435);
INSERT INTO public.notice VALUES (26697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703706637);
INSERT INTO public.notice VALUES (26699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703707835);
INSERT INTO public.notice VALUES (27170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703990434);
INSERT INTO public.notice VALUES (23611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701854253);
INSERT INTO public.notice VALUES (23614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701856053);
INSERT INTO public.notice VALUES (23615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701856653);
INSERT INTO public.notice VALUES (23616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701857254);
INSERT INTO public.notice VALUES (23617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701857853);
INSERT INTO public.notice VALUES (23618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701858453);
INSERT INTO public.notice VALUES (23619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701859052);
INSERT INTO public.notice VALUES (23620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701859654);
INSERT INTO public.notice VALUES (23621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701860253);
INSERT INTO public.notice VALUES (23622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701860853);
INSERT INTO public.notice VALUES (23623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701861454);
INSERT INTO public.notice VALUES (23624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701862054);
INSERT INTO public.notice VALUES (23625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701862657);
INSERT INTO public.notice VALUES (23626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701863255);
INSERT INTO public.notice VALUES (23627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701863860);
INSERT INTO public.notice VALUES (23628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701864453);
INSERT INTO public.notice VALUES (23629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701865053);
INSERT INTO public.notice VALUES (23630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701865654);
INSERT INTO public.notice VALUES (25959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703263836);
INSERT INTO public.notice VALUES (26696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703706035);
INSERT INTO public.notice VALUES (27171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703991036);
INSERT INTO public.notice VALUES (27174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703992836);
INSERT INTO public.notice VALUES (27540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704212435);
INSERT INTO public.notice VALUES (27541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704213036);
INSERT INTO public.notice VALUES (27542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704213635);
INSERT INTO public.notice VALUES (27544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704214843);
INSERT INTO public.notice VALUES (27547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704216635);
INSERT INTO public.notice VALUES (27548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704217236);
INSERT INTO public.notice VALUES (27793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704364236);
INSERT INTO public.notice VALUES (27798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704367235);
INSERT INTO public.notice VALUES (23631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701866254);
INSERT INTO public.notice VALUES (23632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701866853);
INSERT INTO public.notice VALUES (23633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701867453);
INSERT INTO public.notice VALUES (23634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701868054);
INSERT INTO public.notice VALUES (23635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701868654);
INSERT INTO public.notice VALUES (23636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701869253);
INSERT INTO public.notice VALUES (23637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701869852);
INSERT INTO public.notice VALUES (23638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701870454);
INSERT INTO public.notice VALUES (23639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701871053);
INSERT INTO public.notice VALUES (23640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701871653);
INSERT INTO public.notice VALUES (23641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701872254);
INSERT INTO public.notice VALUES (23642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701872854);
INSERT INTO public.notice VALUES (23643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701873466);
INSERT INTO public.notice VALUES (23644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701874058);
INSERT INTO public.notice VALUES (23645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701874654);
INSERT INTO public.notice VALUES (23646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701875253);
INSERT INTO public.notice VALUES (23647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701875854);
INSERT INTO public.notice VALUES (23648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701876454);
INSERT INTO public.notice VALUES (25960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703264436);
INSERT INTO public.notice VALUES (25961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703265035);
INSERT INTO public.notice VALUES (25962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703265635);
INSERT INTO public.notice VALUES (25964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703266836);
INSERT INTO public.notice VALUES (25965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703267435);
INSERT INTO public.notice VALUES (26698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703707236);
INSERT INTO public.notice VALUES (26700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703708436);
INSERT INTO public.notice VALUES (27172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703991635);
INSERT INTO public.notice VALUES (27173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703992235);
INSERT INTO public.notice VALUES (27549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704217835);
INSERT INTO public.notice VALUES (27550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704218436);
INSERT INTO public.notice VALUES (27551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704219036);
INSERT INTO public.notice VALUES (23649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701877054);
INSERT INTO public.notice VALUES (23650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701877653);
INSERT INTO public.notice VALUES (23651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701878253);
INSERT INTO public.notice VALUES (23652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701878854);
INSERT INTO public.notice VALUES (23653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701879453);
INSERT INTO public.notice VALUES (23654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701880053);
INSERT INTO public.notice VALUES (23655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701880654);
INSERT INTO public.notice VALUES (23656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701881254);
INSERT INTO public.notice VALUES (23657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701881854);
INSERT INTO public.notice VALUES (23658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701882453);
INSERT INTO public.notice VALUES (23659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701883054);
INSERT INTO public.notice VALUES (23660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701883654);
INSERT INTO public.notice VALUES (23661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701884254);
INSERT INTO public.notice VALUES (23662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701884852);
INSERT INTO public.notice VALUES (23663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701885454);
INSERT INTO public.notice VALUES (23664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701886053);
INSERT INTO public.notice VALUES (23665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701886653);
INSERT INTO public.notice VALUES (23666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701887254);
INSERT INTO public.notice VALUES (23667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701887854);
INSERT INTO public.notice VALUES (23668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701888453);
INSERT INTO public.notice VALUES (23669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701889053);
INSERT INTO public.notice VALUES (23670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701889654);
INSERT INTO public.notice VALUES (23671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701890254);
INSERT INTO public.notice VALUES (23672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701890853);
INSERT INTO public.notice VALUES (23673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701891453);
INSERT INTO public.notice VALUES (23674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701892058);
INSERT INTO public.notice VALUES (23675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701892653);
INSERT INTO public.notice VALUES (23676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701893260);
INSERT INTO public.notice VALUES (23677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701893854);
INSERT INTO public.notice VALUES (23678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701894454);
INSERT INTO public.notice VALUES (23679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701895054);
INSERT INTO public.notice VALUES (23680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701895653);
INSERT INTO public.notice VALUES (23681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701896254);
INSERT INTO public.notice VALUES (23682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701896853);
INSERT INTO public.notice VALUES (23683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701897453);
INSERT INTO public.notice VALUES (23684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701898055);
INSERT INTO public.notice VALUES (23685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701898654);
INSERT INTO public.notice VALUES (23686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701899253);
INSERT INTO public.notice VALUES (23687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701899853);
INSERT INTO public.notice VALUES (23688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701900454);
INSERT INTO public.notice VALUES (23689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701901054);
INSERT INTO public.notice VALUES (23690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701901653);
INSERT INTO public.notice VALUES (23691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701902255);
INSERT INTO public.notice VALUES (23692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701902864);
INSERT INTO public.notice VALUES (23693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701903457);
INSERT INTO public.notice VALUES (23694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701904053);
INSERT INTO public.notice VALUES (23695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701904654);
INSERT INTO public.notice VALUES (23696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701905254);
INSERT INTO public.notice VALUES (23697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701905853);
INSERT INTO public.notice VALUES (23698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701906453);
INSERT INTO public.notice VALUES (23699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701907054);
INSERT INTO public.notice VALUES (23700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701907653);
INSERT INTO public.notice VALUES (23701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701908253);
INSERT INTO public.notice VALUES (23702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701908854);
INSERT INTO public.notice VALUES (23703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701909454);
INSERT INTO public.notice VALUES (23704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701910053);
INSERT INTO public.notice VALUES (23705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701910653);
INSERT INTO public.notice VALUES (23706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701911254);
INSERT INTO public.notice VALUES (23707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701911854);
INSERT INTO public.notice VALUES (23708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701912453);
INSERT INTO public.notice VALUES (23709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701913054);
INSERT INTO public.notice VALUES (23710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701913654);
INSERT INTO public.notice VALUES (23713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701915454);
INSERT INTO public.notice VALUES (23716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701917253);
INSERT INTO public.notice VALUES (23717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701917854);
INSERT INTO public.notice VALUES (25967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703268636);
INSERT INTO public.notice VALUES (25968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703269235);
INSERT INTO public.notice VALUES (25969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703269835);
INSERT INTO public.notice VALUES (25970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703270436);
INSERT INTO public.notice VALUES (25971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703271036);
INSERT INTO public.notice VALUES (25973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703272234);
INSERT INTO public.notice VALUES (26701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703709037);
INSERT INTO public.notice VALUES (26702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703709635);
INSERT INTO public.notice VALUES (27175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703993436);
INSERT INTO public.notice VALUES (27552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704219636);
INSERT INTO public.notice VALUES (23711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701914253);
INSERT INTO public.notice VALUES (23712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701914853);
INSERT INTO public.notice VALUES (23714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701916054);
INSERT INTO public.notice VALUES (23715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701916653);
INSERT INTO public.notice VALUES (23718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701918453);
INSERT INTO public.notice VALUES (23719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701919053);
INSERT INTO public.notice VALUES (23720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701919653);
INSERT INTO public.notice VALUES (23721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701920254);
INSERT INTO public.notice VALUES (23722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701920853);
INSERT INTO public.notice VALUES (23723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701921456);
INSERT INTO public.notice VALUES (23724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701922054);
INSERT INTO public.notice VALUES (23725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701922660);
INSERT INTO public.notice VALUES (23726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701923253);
INSERT INTO public.notice VALUES (23727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701923853);
INSERT INTO public.notice VALUES (23728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701924454);
INSERT INTO public.notice VALUES (23729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701925053);
INSERT INTO public.notice VALUES (23734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701928053);
INSERT INTO public.notice VALUES (23736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701929254);
INSERT INTO public.notice VALUES (23738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701930454);
INSERT INTO public.notice VALUES (25972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703271635);
INSERT INTO public.notice VALUES (26703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703710235);
INSERT INTO public.notice VALUES (26705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703711435);
INSERT INTO public.notice VALUES (27176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703994035);
INSERT INTO public.notice VALUES (27177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703994635);
INSERT INTO public.notice VALUES (27180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703996435);
INSERT INTO public.notice VALUES (27184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703998835);
INSERT INTO public.notice VALUES (27187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704000635);
INSERT INTO public.notice VALUES (27553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704220235);
INSERT INTO public.notice VALUES (27794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704364835);
INSERT INTO public.notice VALUES (27929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704445836);
INSERT INTO public.notice VALUES (23730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701925653);
INSERT INTO public.notice VALUES (23731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701926254);
INSERT INTO public.notice VALUES (23732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701926854);
INSERT INTO public.notice VALUES (23733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701927453);
INSERT INTO public.notice VALUES (23735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701928654);
INSERT INTO public.notice VALUES (23737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701929853);
INSERT INTO public.notice VALUES (23739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701931053);
INSERT INTO public.notice VALUES (23740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701931653);
INSERT INTO public.notice VALUES (23741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701932261);
INSERT INTO public.notice VALUES (23742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701932857);
INSERT INTO public.notice VALUES (23743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701933453);
INSERT INTO public.notice VALUES (23744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701934056);
INSERT INTO public.notice VALUES (23745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701934654);
INSERT INTO public.notice VALUES (23746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701935253);
INSERT INTO public.notice VALUES (23747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701935853);
INSERT INTO public.notice VALUES (23748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701936454);
INSERT INTO public.notice VALUES (23749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701937053);
INSERT INTO public.notice VALUES (23750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701937654);
INSERT INTO public.notice VALUES (23751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701938254);
INSERT INTO public.notice VALUES (23752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701938853);
INSERT INTO public.notice VALUES (23753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701939454);
INSERT INTO public.notice VALUES (23754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701940052);
INSERT INTO public.notice VALUES (23755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701940654);
INSERT INTO public.notice VALUES (23756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701941253);
INSERT INTO public.notice VALUES (23757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701941853);
INSERT INTO public.notice VALUES (23758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701942454);
INSERT INTO public.notice VALUES (23759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701943054);
INSERT INTO public.notice VALUES (23760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701943654);
INSERT INTO public.notice VALUES (23761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701944255);
INSERT INTO public.notice VALUES (23762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701944854);
INSERT INTO public.notice VALUES (23763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701945453);
INSERT INTO public.notice VALUES (23764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701946053);
INSERT INTO public.notice VALUES (25974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703272836);
INSERT INTO public.notice VALUES (25976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703274042);
INSERT INTO public.notice VALUES (26704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703710836);
INSERT INTO public.notice VALUES (26706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703712035);
INSERT INTO public.notice VALUES (26707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703712634);
INSERT INTO public.notice VALUES (26708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703713236);
INSERT INTO public.notice VALUES (26717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703718635);
INSERT INTO public.notice VALUES (27178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703995236);
INSERT INTO public.notice VALUES (27554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704220835);
INSERT INTO public.notice VALUES (27555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704221436);
INSERT INTO public.notice VALUES (27556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704222037);
INSERT INTO public.notice VALUES (27561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704225039);
INSERT INTO public.notice VALUES (27571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704231035);
INSERT INTO public.notice VALUES (23765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701946654);
INSERT INTO public.notice VALUES (23766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701947254);
INSERT INTO public.notice VALUES (23767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701947853);
INSERT INTO public.notice VALUES (23768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701948453);
INSERT INTO public.notice VALUES (23769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701949054);
INSERT INTO public.notice VALUES (23770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701949654);
INSERT INTO public.notice VALUES (23771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701950253);
INSERT INTO public.notice VALUES (23772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701950863);
INSERT INTO public.notice VALUES (23773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701951454);
INSERT INTO public.notice VALUES (23774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701952064);
INSERT INTO public.notice VALUES (23775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701952653);
INSERT INTO public.notice VALUES (23776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701953254);
INSERT INTO public.notice VALUES (23777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701953854);
INSERT INTO public.notice VALUES (23778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701954453);
INSERT INTO public.notice VALUES (23779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701955054);
INSERT INTO public.notice VALUES (23780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701955654);
INSERT INTO public.notice VALUES (23785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701958653);
INSERT INTO public.notice VALUES (25975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703273435);
INSERT INTO public.notice VALUES (25977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703274637);
INSERT INTO public.notice VALUES (26709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703713835);
INSERT INTO public.notice VALUES (26710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703714435);
INSERT INTO public.notice VALUES (26711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703715043);
INSERT INTO public.notice VALUES (26712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703715636);
INSERT INTO public.notice VALUES (26713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703716235);
INSERT INTO public.notice VALUES (26714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703716837);
INSERT INTO public.notice VALUES (27179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703995835);
INSERT INTO public.notice VALUES (27181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703997036);
INSERT INTO public.notice VALUES (27182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703997636);
INSERT INTO public.notice VALUES (27183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703998235);
INSERT INTO public.notice VALUES (27557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704222635);
INSERT INTO public.notice VALUES (23781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701956253);
INSERT INTO public.notice VALUES (23782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701956853);
INSERT INTO public.notice VALUES (23783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701957454);
INSERT INTO public.notice VALUES (23784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701958054);
INSERT INTO public.notice VALUES (23786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701959255);
INSERT INTO public.notice VALUES (23787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701959854);
INSERT INTO public.notice VALUES (23788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701960453);
INSERT INTO public.notice VALUES (23789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701961054);
INSERT INTO public.notice VALUES (23790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701961667);
INSERT INTO public.notice VALUES (23791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701962257);
INSERT INTO public.notice VALUES (23792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701962853);
INSERT INTO public.notice VALUES (23793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701963454);
INSERT INTO public.notice VALUES (23794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701964054);
INSERT INTO public.notice VALUES (23795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701964653);
INSERT INTO public.notice VALUES (23796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701965253);
INSERT INTO public.notice VALUES (23797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701965855);
INSERT INTO public.notice VALUES (23798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701966454);
INSERT INTO public.notice VALUES (23799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701967053);
INSERT INTO public.notice VALUES (23800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701967655);
INSERT INTO public.notice VALUES (23801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701968254);
INSERT INTO public.notice VALUES (23802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701968853);
INSERT INTO public.notice VALUES (23803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701969453);
INSERT INTO public.notice VALUES (23804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701970054);
INSERT INTO public.notice VALUES (23805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701970655);
INSERT INTO public.notice VALUES (23806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701971254);
INSERT INTO public.notice VALUES (23807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701971853);
INSERT INTO public.notice VALUES (23808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701972454);
INSERT INTO public.notice VALUES (23809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701973054);
INSERT INTO public.notice VALUES (23810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701973653);
INSERT INTO public.notice VALUES (23811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701974254);
INSERT INTO public.notice VALUES (23812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701974854);
INSERT INTO public.notice VALUES (23814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701976053);
INSERT INTO public.notice VALUES (23815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701976654);
INSERT INTO public.notice VALUES (23817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701977853);
INSERT INTO public.notice VALUES (23822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701980854);
INSERT INTO public.notice VALUES (23823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701981461);
INSERT INTO public.notice VALUES (23824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701982053);
INSERT INTO public.notice VALUES (23826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701983254);
INSERT INTO public.notice VALUES (23830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701985654);
INSERT INTO public.notice VALUES (23831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701986253);
INSERT INTO public.notice VALUES (23832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701986853);
INSERT INTO public.notice VALUES (23833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701987454);
INSERT INTO public.notice VALUES (23835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701988653);
INSERT INTO public.notice VALUES (25978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703275236);
INSERT INTO public.notice VALUES (25980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703276435);
INSERT INTO public.notice VALUES (23813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701975453);
INSERT INTO public.notice VALUES (23816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701977254);
INSERT INTO public.notice VALUES (23818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701978453);
INSERT INTO public.notice VALUES (23819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701979054);
INSERT INTO public.notice VALUES (23820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701979654);
INSERT INTO public.notice VALUES (23821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701980257);
INSERT INTO public.notice VALUES (23825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701982652);
INSERT INTO public.notice VALUES (23827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701983853);
INSERT INTO public.notice VALUES (23828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701984453);
INSERT INTO public.notice VALUES (23829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701985052);
INSERT INTO public.notice VALUES (23834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701988054);
INSERT INTO public.notice VALUES (23836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701989253);
INSERT INTO public.notice VALUES (23837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701989854);
INSERT INTO public.notice VALUES (23838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701990454);
INSERT INTO public.notice VALUES (23839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701991060);
INSERT INTO public.notice VALUES (23840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701991658);
INSERT INTO public.notice VALUES (23841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701992254);
INSERT INTO public.notice VALUES (23842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701992854);
INSERT INTO public.notice VALUES (23843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701993453);
INSERT INTO public.notice VALUES (23844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701994054);
INSERT INTO public.notice VALUES (23845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701994654);
INSERT INTO public.notice VALUES (23846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701995253);
INSERT INTO public.notice VALUES (23847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701995854);
INSERT INTO public.notice VALUES (23848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701996454);
INSERT INTO public.notice VALUES (23849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701997053);
INSERT INTO public.notice VALUES (23850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701997653);
INSERT INTO public.notice VALUES (23851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701998254);
INSERT INTO public.notice VALUES (23852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701998854);
INSERT INTO public.notice VALUES (23853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1701999453);
INSERT INTO public.notice VALUES (23854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702000052);
INSERT INTO public.notice VALUES (23855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702000654);
INSERT INTO public.notice VALUES (23856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702001254);
INSERT INTO public.notice VALUES (23857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702001853);
INSERT INTO public.notice VALUES (23858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702002454);
INSERT INTO public.notice VALUES (23859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702003054);
INSERT INTO public.notice VALUES (23860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702003653);
INSERT INTO public.notice VALUES (23862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702004854);
INSERT INTO public.notice VALUES (25979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703275835);
INSERT INTO public.notice VALUES (25985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703279436);
INSERT INTO public.notice VALUES (26715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703717436);
INSERT INTO public.notice VALUES (26716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703718035);
INSERT INTO public.notice VALUES (27185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703999436);
INSERT INTO public.notice VALUES (27186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704000035);
INSERT INTO public.notice VALUES (27188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704001236);
INSERT INTO public.notice VALUES (27189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704001836);
INSERT INTO public.notice VALUES (23861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702004253);
INSERT INTO public.notice VALUES (23863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702005454);
INSERT INTO public.notice VALUES (23864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702006053);
INSERT INTO public.notice VALUES (23865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702006652);
INSERT INTO public.notice VALUES (23866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702007254);
INSERT INTO public.notice VALUES (23867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702007853);
INSERT INTO public.notice VALUES (23868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702008454);
INSERT INTO public.notice VALUES (23869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702009053);
INSERT INTO public.notice VALUES (23870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702009659);
INSERT INTO public.notice VALUES (23871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702010254);
INSERT INTO public.notice VALUES (23872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702010860);
INSERT INTO public.notice VALUES (23873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702011452);
INSERT INTO public.notice VALUES (23874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702012054);
INSERT INTO public.notice VALUES (23875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702012653);
INSERT INTO public.notice VALUES (23876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702013253);
INSERT INTO public.notice VALUES (23877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702013854);
INSERT INTO public.notice VALUES (23878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702014454);
INSERT INTO public.notice VALUES (23879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702015053);
INSERT INTO public.notice VALUES (23881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702016254);
INSERT INTO public.notice VALUES (23885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702018654);
INSERT INTO public.notice VALUES (23887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702019853);
INSERT INTO public.notice VALUES (25981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703277036);
INSERT INTO public.notice VALUES (26718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703719236);
INSERT INTO public.notice VALUES (26719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703719836);
INSERT INTO public.notice VALUES (26721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703721035);
INSERT INTO public.notice VALUES (26726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703724036);
INSERT INTO public.notice VALUES (26727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703724643);
INSERT INTO public.notice VALUES (26729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703725836);
INSERT INTO public.notice VALUES (26733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703728236);
INSERT INTO public.notice VALUES (26734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703728835);
INSERT INTO public.notice VALUES (23880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702015653);
INSERT INTO public.notice VALUES (23882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702016854);
INSERT INTO public.notice VALUES (23883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702017453);
INSERT INTO public.notice VALUES (23884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702018055);
INSERT INTO public.notice VALUES (23886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702019253);
INSERT INTO public.notice VALUES (23888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702020463);
INSERT INTO public.notice VALUES (23889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702021057);
INSERT INTO public.notice VALUES (23890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702021653);
INSERT INTO public.notice VALUES (23891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702022255);
INSERT INTO public.notice VALUES (23892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702022854);
INSERT INTO public.notice VALUES (23893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702023453);
INSERT INTO public.notice VALUES (23894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702024053);
INSERT INTO public.notice VALUES (23895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702024654);
INSERT INTO public.notice VALUES (23896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702025254);
INSERT INTO public.notice VALUES (23897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702025854);
INSERT INTO public.notice VALUES (23898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702026454);
INSERT INTO public.notice VALUES (23899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702027053);
INSERT INTO public.notice VALUES (23900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702027654);
INSERT INTO public.notice VALUES (23901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702028253);
INSERT INTO public.notice VALUES (23902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702028853);
INSERT INTO public.notice VALUES (23903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702029454);
INSERT INTO public.notice VALUES (23904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702030054);
INSERT INTO public.notice VALUES (23905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702030654);
INSERT INTO public.notice VALUES (23906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702031253);
INSERT INTO public.notice VALUES (23907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702031854);
INSERT INTO public.notice VALUES (23908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702032454);
INSERT INTO public.notice VALUES (23909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702033053);
INSERT INTO public.notice VALUES (23910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702033653);
INSERT INTO public.notice VALUES (23911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702034254);
INSERT INTO public.notice VALUES (23912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702034854);
INSERT INTO public.notice VALUES (23913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702035453);
INSERT INTO public.notice VALUES (25982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703277635);
INSERT INTO public.notice VALUES (25983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703278235);
INSERT INTO public.notice VALUES (25984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703278836);
INSERT INTO public.notice VALUES (25989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703281836);
INSERT INTO public.notice VALUES (25994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703284835);
INSERT INTO public.notice VALUES (25995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703285436);
INSERT INTO public.notice VALUES (25996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703286036);
INSERT INTO public.notice VALUES (25998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703287234);
INSERT INTO public.notice VALUES (26720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703720435);
INSERT INTO public.notice VALUES (26722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703721636);
INSERT INTO public.notice VALUES (26723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703722236);
INSERT INTO public.notice VALUES (26724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703722835);
INSERT INTO public.notice VALUES (26725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703723437);
INSERT INTO public.notice VALUES (26728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703725238);
INSERT INTO public.notice VALUES (23914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702036053);
INSERT INTO public.notice VALUES (23915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702036654);
INSERT INTO public.notice VALUES (23916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702037254);
INSERT INTO public.notice VALUES (23917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702037853);
INSERT INTO public.notice VALUES (23918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702038453);
INSERT INTO public.notice VALUES (23919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702039054);
INSERT INTO public.notice VALUES (23920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702039654);
INSERT INTO public.notice VALUES (23921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702040263);
INSERT INTO public.notice VALUES (23922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702040852);
INSERT INTO public.notice VALUES (23923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702041454);
INSERT INTO public.notice VALUES (23924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702042053);
INSERT INTO public.notice VALUES (23925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702042653);
INSERT INTO public.notice VALUES (23926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702043254);
INSERT INTO public.notice VALUES (23927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702043854);
INSERT INTO public.notice VALUES (23928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702044453);
INSERT INTO public.notice VALUES (23929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702045055);
INSERT INTO public.notice VALUES (23930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702045654);
INSERT INTO public.notice VALUES (23931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702046253);
INSERT INTO public.notice VALUES (25986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703280035);
INSERT INTO public.notice VALUES (25987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703280634);
INSERT INTO public.notice VALUES (26730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703726436);
INSERT INTO public.notice VALUES (26731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703727035);
INSERT INTO public.notice VALUES (26732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703727635);
INSERT INTO public.notice VALUES (26736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703730036);
INSERT INTO public.notice VALUES (27190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704002435);
INSERT INTO public.notice VALUES (27191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704003035);
INSERT INTO public.notice VALUES (27192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704003636);
INSERT INTO public.notice VALUES (27558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704223236);
INSERT INTO public.notice VALUES (27559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704223836);
INSERT INTO public.notice VALUES (27560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704224443);
INSERT INTO public.notice VALUES (23932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702046853);
INSERT INTO public.notice VALUES (23933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702047454);
INSERT INTO public.notice VALUES (23934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702048054);
INSERT INTO public.notice VALUES (23935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702048653);
INSERT INTO public.notice VALUES (23936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702049255);
INSERT INTO public.notice VALUES (23937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702049861);
INSERT INTO public.notice VALUES (23938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702050457);
INSERT INTO public.notice VALUES (23939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702051053);
INSERT INTO public.notice VALUES (23940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702051654);
INSERT INTO public.notice VALUES (23941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702052254);
INSERT INTO public.notice VALUES (23942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702052853);
INSERT INTO public.notice VALUES (23943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702053453);
INSERT INTO public.notice VALUES (23944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702054055);
INSERT INTO public.notice VALUES (23945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702054653);
INSERT INTO public.notice VALUES (23946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702055253);
INSERT INTO public.notice VALUES (23947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702055854);
INSERT INTO public.notice VALUES (23949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702057053);
INSERT INTO public.notice VALUES (25988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703281237);
INSERT INTO public.notice VALUES (25990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703282435);
INSERT INTO public.notice VALUES (26735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703729435);
INSERT INTO public.notice VALUES (26741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703733035);
INSERT INTO public.notice VALUES (26743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703734235);
INSERT INTO public.notice VALUES (27193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704004236);
INSERT INTO public.notice VALUES (27194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704004835);
INSERT INTO public.notice VALUES (27195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704005435);
INSERT INTO public.notice VALUES (27562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704225636);
INSERT INTO public.notice VALUES (27563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704226236);
INSERT INTO public.notice VALUES (27564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704226835);
INSERT INTO public.notice VALUES (27565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704227434);
INSERT INTO public.notice VALUES (27566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704228036);
INSERT INTO public.notice VALUES (23948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702056454);
INSERT INTO public.notice VALUES (23950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702057654);
INSERT INTO public.notice VALUES (23951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702058255);
INSERT INTO public.notice VALUES (23952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702058854);
INSERT INTO public.notice VALUES (23953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702059454);
INSERT INTO public.notice VALUES (23954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702060053);
INSERT INTO public.notice VALUES (23955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702060654);
INSERT INTO public.notice VALUES (23956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702061254);
INSERT INTO public.notice VALUES (23957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702061853);
INSERT INTO public.notice VALUES (23958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702062454);
INSERT INTO public.notice VALUES (23959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702063054);
INSERT INTO public.notice VALUES (23960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702063653);
INSERT INTO public.notice VALUES (23961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702064253);
INSERT INTO public.notice VALUES (23962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702064854);
INSERT INTO public.notice VALUES (23963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702065454);
INSERT INTO public.notice VALUES (23964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702066053);
INSERT INTO public.notice VALUES (23965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702066653);
INSERT INTO public.notice VALUES (23966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702067254);
INSERT INTO public.notice VALUES (23967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702067853);
INSERT INTO public.notice VALUES (23968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702068453);
INSERT INTO public.notice VALUES (23969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702069054);
INSERT INTO public.notice VALUES (23970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702069661);
INSERT INTO public.notice VALUES (23971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702070253);
INSERT INTO public.notice VALUES (23972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702070853);
INSERT INTO public.notice VALUES (23973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702071454);
INSERT INTO public.notice VALUES (23974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702072053);
INSERT INTO public.notice VALUES (23975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702072653);
INSERT INTO public.notice VALUES (23976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702073254);
INSERT INTO public.notice VALUES (23977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702073854);
INSERT INTO public.notice VALUES (23978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702074453);
INSERT INTO public.notice VALUES (23979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702075053);
INSERT INTO public.notice VALUES (23980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702075654);
INSERT INTO public.notice VALUES (23981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702076254);
INSERT INTO public.notice VALUES (23982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702076853);
INSERT INTO public.notice VALUES (23983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702077454);
INSERT INTO public.notice VALUES (23984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702078054);
INSERT INTO public.notice VALUES (23985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702078653);
INSERT INTO public.notice VALUES (23986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702079260);
INSERT INTO public.notice VALUES (23987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702079858);
INSERT INTO public.notice VALUES (23988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702080453);
INSERT INTO public.notice VALUES (23989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702081053);
INSERT INTO public.notice VALUES (23990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702081654);
INSERT INTO public.notice VALUES (23991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702082254);
INSERT INTO public.notice VALUES (23992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702082853);
INSERT INTO public.notice VALUES (23993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702083453);
INSERT INTO public.notice VALUES (23994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702084054);
INSERT INTO public.notice VALUES (23995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702084654);
INSERT INTO public.notice VALUES (23996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702085253);
INSERT INTO public.notice VALUES (23997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702085854);
INSERT INTO public.notice VALUES (23998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702086454);
INSERT INTO public.notice VALUES (23999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702087053);
INSERT INTO public.notice VALUES (24000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702087653);
INSERT INTO public.notice VALUES (24001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702088254);
INSERT INTO public.notice VALUES (24002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702088854);
INSERT INTO public.notice VALUES (24003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702089453);
INSERT INTO public.notice VALUES (24004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702090053);
INSERT INTO public.notice VALUES (24005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702090654);
INSERT INTO public.notice VALUES (24006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702091253);
INSERT INTO public.notice VALUES (24007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702091853);
INSERT INTO public.notice VALUES (24008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702092454);
INSERT INTO public.notice VALUES (24009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702093054);
INSERT INTO public.notice VALUES (24010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702093655);
INSERT INTO public.notice VALUES (24012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702094254);
INSERT INTO public.notice VALUES (24013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702094853);
INSERT INTO public.notice VALUES (25991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703283036);
INSERT INTO public.notice VALUES (25992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703283643);
INSERT INTO public.notice VALUES (25993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703284239);
INSERT INTO public.notice VALUES (25997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703286635);
INSERT INTO public.notice VALUES (25999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703287836);
INSERT INTO public.notice VALUES (26002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703289636);
INSERT INTO public.notice VALUES (26737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703730636);
INSERT INTO public.notice VALUES (26738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703731235);
INSERT INTO public.notice VALUES (27196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704006036);
INSERT INTO public.notice VALUES (27199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704007836);
INSERT INTO public.notice VALUES (27200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704008436);
INSERT INTO public.notice VALUES (24011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702093867);
INSERT INTO public.notice VALUES (24014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702095453);
INSERT INTO public.notice VALUES (24015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702096055);
INSERT INTO public.notice VALUES (24016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702096654);
INSERT INTO public.notice VALUES (24017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702097254);
INSERT INTO public.notice VALUES (24018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702097853);
INSERT INTO public.notice VALUES (24019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702098453);
INSERT INTO public.notice VALUES (24020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702099061);
INSERT INTO public.notice VALUES (24021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702099653);
INSERT INTO public.notice VALUES (24022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702100253);
INSERT INTO public.notice VALUES (24023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702100852);
INSERT INTO public.notice VALUES (24024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702101454);
INSERT INTO public.notice VALUES (24025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702102053);
INSERT INTO public.notice VALUES (24026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702102653);
INSERT INTO public.notice VALUES (24027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702103254);
INSERT INTO public.notice VALUES (24028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702103854);
INSERT INTO public.notice VALUES (24029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702104453);
INSERT INTO public.notice VALUES (24030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702105052);
INSERT INTO public.notice VALUES (24031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702105654);
INSERT INTO public.notice VALUES (24032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702106253);
INSERT INTO public.notice VALUES (24033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702106853);
INSERT INTO public.notice VALUES (24034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702107454);
INSERT INTO public.notice VALUES (24035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702108054);
INSERT INTO public.notice VALUES (24036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702108661);
INSERT INTO public.notice VALUES (24037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702109256);
INSERT INTO public.notice VALUES (24038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702109854);
INSERT INTO public.notice VALUES (24039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702110453);
INSERT INTO public.notice VALUES (24040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702111053);
INSERT INTO public.notice VALUES (24041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702111654);
INSERT INTO public.notice VALUES (24042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702112254);
INSERT INTO public.notice VALUES (24043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702112853);
INSERT INTO public.notice VALUES (24044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702113453);
INSERT INTO public.notice VALUES (26000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703288435);
INSERT INTO public.notice VALUES (26001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703289035);
INSERT INTO public.notice VALUES (26003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703290236);
INSERT INTO public.notice VALUES (26006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703292036);
INSERT INTO public.notice VALUES (26009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703293836);
INSERT INTO public.notice VALUES (26012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703295635);
INSERT INTO public.notice VALUES (26015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703297435);
INSERT INTO public.notice VALUES (26017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703298636);
INSERT INTO public.notice VALUES (26018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703299235);
INSERT INTO public.notice VALUES (26019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703299835);
INSERT INTO public.notice VALUES (26739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703731835);
INSERT INTO public.notice VALUES (26740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703732436);
INSERT INTO public.notice VALUES (26742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703733635);
INSERT INTO public.notice VALUES (24045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702114054);
INSERT INTO public.notice VALUES (24046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702114653);
INSERT INTO public.notice VALUES (24047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702115254);
INSERT INTO public.notice VALUES (24048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702115854);
INSERT INTO public.notice VALUES (24049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702116454);
INSERT INTO public.notice VALUES (24050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702117053);
INSERT INTO public.notice VALUES (24051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702117653);
INSERT INTO public.notice VALUES (24052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702118254);
INSERT INTO public.notice VALUES (24053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702118853);
INSERT INTO public.notice VALUES (24054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702119453);
INSERT INTO public.notice VALUES (24055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702120054);
INSERT INTO public.notice VALUES (24056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702120654);
INSERT INTO public.notice VALUES (24057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702121253);
INSERT INTO public.notice VALUES (24058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702121853);
INSERT INTO public.notice VALUES (24059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702122454);
INSERT INTO public.notice VALUES (24060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702123053);
INSERT INTO public.notice VALUES (24061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702123653);
INSERT INTO public.notice VALUES (26004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703290835);
INSERT INTO public.notice VALUES (26005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703291435);
INSERT INTO public.notice VALUES (26007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703292635);
INSERT INTO public.notice VALUES (26008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703293235);
INSERT INTO public.notice VALUES (26744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703734836);
INSERT INTO public.notice VALUES (27197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704006635);
INSERT INTO public.notice VALUES (27567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704228635);
INSERT INTO public.notice VALUES (27568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704229235);
INSERT INTO public.notice VALUES (27795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704365435);
INSERT INTO public.notice VALUES (27930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704446434);
INSERT INTO public.notice VALUES (27931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704447035);
INSERT INTO public.notice VALUES (27934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704448836);
INSERT INTO public.notice VALUES (27936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704450047);
INSERT INTO public.notice VALUES (24062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702124252);
INSERT INTO public.notice VALUES (24063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702124854);
INSERT INTO public.notice VALUES (24064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702125453);
INSERT INTO public.notice VALUES (24065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702126053);
INSERT INTO public.notice VALUES (24066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702126654);
INSERT INTO public.notice VALUES (24067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702127254);
INSERT INTO public.notice VALUES (24068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702127853);
INSERT INTO public.notice VALUES (24069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702128462);
INSERT INTO public.notice VALUES (24070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702129054);
INSERT INTO public.notice VALUES (24071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702129654);
INSERT INTO public.notice VALUES (24072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702130253);
INSERT INTO public.notice VALUES (24073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702130854);
INSERT INTO public.notice VALUES (24074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702131454);
INSERT INTO public.notice VALUES (24075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702132053);
INSERT INTO public.notice VALUES (24076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702132653);
INSERT INTO public.notice VALUES (24077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702133254);
INSERT INTO public.notice VALUES (24078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702133854);
INSERT INTO public.notice VALUES (24079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702134453);
INSERT INTO public.notice VALUES (24080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702135054);
INSERT INTO public.notice VALUES (24081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702135654);
INSERT INTO public.notice VALUES (24082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702136254);
INSERT INTO public.notice VALUES (24083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702136853);
INSERT INTO public.notice VALUES (24084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702137454);
INSERT INTO public.notice VALUES (24085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702138060);
INSERT INTO public.notice VALUES (24086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702138656);
INSERT INTO public.notice VALUES (24087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702139254);
INSERT INTO public.notice VALUES (24088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702139854);
INSERT INTO public.notice VALUES (24089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702140453);
INSERT INTO public.notice VALUES (24090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702141053);
INSERT INTO public.notice VALUES (24091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702141654);
INSERT INTO public.notice VALUES (24092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702142253);
INSERT INTO public.notice VALUES (24093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702142853);
INSERT INTO public.notice VALUES (24094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702143454);
INSERT INTO public.notice VALUES (24095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702144054);
INSERT INTO public.notice VALUES (24096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702144654);
INSERT INTO public.notice VALUES (24097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702145253);
INSERT INTO public.notice VALUES (24098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702145854);
INSERT INTO public.notice VALUES (24099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702146453);
INSERT INTO public.notice VALUES (24100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702147053);
INSERT INTO public.notice VALUES (24101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702147654);
INSERT INTO public.notice VALUES (24102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702148254);
INSERT INTO public.notice VALUES (24103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702148853);
INSERT INTO public.notice VALUES (24104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702149453);
INSERT INTO public.notice VALUES (24105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702150054);
INSERT INTO public.notice VALUES (24106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702150654);
INSERT INTO public.notice VALUES (24107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702151253);
INSERT INTO public.notice VALUES (24108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702151854);
INSERT INTO public.notice VALUES (24109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702152454);
INSERT INTO public.notice VALUES (24110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702153053);
INSERT INTO public.notice VALUES (24111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702153653);
INSERT INTO public.notice VALUES (24112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702154254);
INSERT INTO public.notice VALUES (24113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702154854);
INSERT INTO public.notice VALUES (24114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702155453);
INSERT INTO public.notice VALUES (24115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702156055);
INSERT INTO public.notice VALUES (24116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702156654);
INSERT INTO public.notice VALUES (24117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702157253);
INSERT INTO public.notice VALUES (24118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702157860);
INSERT INTO public.notice VALUES (24119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702158454);
INSERT INTO public.notice VALUES (24120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702159054);
INSERT INTO public.notice VALUES (24121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702159653);
INSERT INTO public.notice VALUES (24122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702160253);
INSERT INTO public.notice VALUES (24123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702160854);
INSERT INTO public.notice VALUES (24129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702164453);
INSERT INTO public.notice VALUES (26010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703294436);
INSERT INTO public.notice VALUES (26011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703295035);
INSERT INTO public.notice VALUES (26013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703296236);
INSERT INTO public.notice VALUES (26014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703296836);
INSERT INTO public.notice VALUES (26016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703298036);
INSERT INTO public.notice VALUES (26024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703302836);
INSERT INTO public.notice VALUES (26745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703735436);
INSERT INTO public.notice VALUES (27198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704007235);
INSERT INTO public.notice VALUES (27201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704009042);
INSERT INTO public.notice VALUES (27569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704229836);
INSERT INTO public.notice VALUES (27570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704230436);
INSERT INTO public.notice VALUES (27796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704366036);
INSERT INTO public.notice VALUES (24124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702161453);
INSERT INTO public.notice VALUES (24125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702162053);
INSERT INTO public.notice VALUES (24126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702162654);
INSERT INTO public.notice VALUES (24127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702163254);
INSERT INTO public.notice VALUES (24128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702163853);
INSERT INTO public.notice VALUES (24130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702165054);
INSERT INTO public.notice VALUES (24131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702165654);
INSERT INTO public.notice VALUES (24132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702166253);
INSERT INTO public.notice VALUES (24133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702166854);
INSERT INTO public.notice VALUES (24134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702167462);
INSERT INTO public.notice VALUES (24135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702168057);
INSERT INTO public.notice VALUES (24136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702168653);
INSERT INTO public.notice VALUES (24137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702169254);
INSERT INTO public.notice VALUES (24138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702169854);
INSERT INTO public.notice VALUES (24139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702170453);
INSERT INTO public.notice VALUES (24140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702171053);
INSERT INTO public.notice VALUES (24141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702171654);
INSERT INTO public.notice VALUES (24143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702172853);
INSERT INTO public.notice VALUES (26020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703300436);
INSERT INTO public.notice VALUES (26021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703301036);
INSERT INTO public.notice VALUES (26022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703301635);
INSERT INTO public.notice VALUES (26023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703302235);
INSERT INTO public.notice VALUES (26029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703305835);
INSERT INTO public.notice VALUES (26030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703306435);
INSERT INTO public.notice VALUES (26032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703307636);
INSERT INTO public.notice VALUES (26746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703736036);
INSERT INTO public.notice VALUES (26748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703737236);
INSERT INTO public.notice VALUES (26749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703737836);
INSERT INTO public.notice VALUES (26755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703741436);
INSERT INTO public.notice VALUES (26760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703744445);
INSERT INTO public.notice VALUES (24142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702172254);
INSERT INTO public.notice VALUES (24144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702173453);
INSERT INTO public.notice VALUES (24145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702174054);
INSERT INTO public.notice VALUES (24146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702174653);
INSERT INTO public.notice VALUES (24147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702175253);
INSERT INTO public.notice VALUES (24148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702175854);
INSERT INTO public.notice VALUES (24149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702176454);
INSERT INTO public.notice VALUES (24150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702177053);
INSERT INTO public.notice VALUES (24151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702177653);
INSERT INTO public.notice VALUES (24152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702178254);
INSERT INTO public.notice VALUES (24153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702178854);
INSERT INTO public.notice VALUES (24154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702179453);
INSERT INTO public.notice VALUES (24155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702180052);
INSERT INTO public.notice VALUES (24156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702180654);
INSERT INTO public.notice VALUES (24157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702181253);
INSERT INTO public.notice VALUES (24158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702181853);
INSERT INTO public.notice VALUES (24160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702183053);
INSERT INTO public.notice VALUES (24161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702183653);
INSERT INTO public.notice VALUES (26025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703303443);
INSERT INTO public.notice VALUES (26026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703304035);
INSERT INTO public.notice VALUES (26027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703304636);
INSERT INTO public.notice VALUES (26028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703305236);
INSERT INTO public.notice VALUES (26031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703307036);
INSERT INTO public.notice VALUES (26034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703308835);
INSERT INTO public.notice VALUES (26035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703309436);
INSERT INTO public.notice VALUES (26036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703310036);
INSERT INTO public.notice VALUES (26037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703310635);
INSERT INTO public.notice VALUES (26038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703311236);
INSERT INTO public.notice VALUES (26042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703313640);
INSERT INTO public.notice VALUES (26044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703314835);
INSERT INTO public.notice VALUES (24159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702182455);
INSERT INTO public.notice VALUES (24162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702184254);
INSERT INTO public.notice VALUES (24163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702184854);
INSERT INTO public.notice VALUES (24164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702185453);
INSERT INTO public.notice VALUES (24165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702186053);
INSERT INTO public.notice VALUES (24166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702186654);
INSERT INTO public.notice VALUES (24167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702187260);
INSERT INTO public.notice VALUES (24168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702187853);
INSERT INTO public.notice VALUES (24169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702188454);
INSERT INTO public.notice VALUES (24170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702189055);
INSERT INTO public.notice VALUES (24171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702189653);
INSERT INTO public.notice VALUES (24172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702190253);
INSERT INTO public.notice VALUES (24173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702190854);
INSERT INTO public.notice VALUES (24174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702191453);
INSERT INTO public.notice VALUES (24175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702192053);
INSERT INTO public.notice VALUES (24176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702192654);
INSERT INTO public.notice VALUES (24177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702193255);
INSERT INTO public.notice VALUES (24178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702193853);
INSERT INTO public.notice VALUES (24179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702194453);
INSERT INTO public.notice VALUES (24180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702195054);
INSERT INTO public.notice VALUES (24181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702195653);
INSERT INTO public.notice VALUES (24182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702196253);
INSERT INTO public.notice VALUES (24183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702196859);
INSERT INTO public.notice VALUES (24184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702197457);
INSERT INTO public.notice VALUES (24185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702198053);
INSERT INTO public.notice VALUES (24186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702198653);
INSERT INTO public.notice VALUES (24187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702199254);
INSERT INTO public.notice VALUES (24188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702199854);
INSERT INTO public.notice VALUES (24189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702200453);
INSERT INTO public.notice VALUES (24190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702201052);
INSERT INTO public.notice VALUES (24191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702201655);
INSERT INTO public.notice VALUES (24192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702202253);
INSERT INTO public.notice VALUES (24198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702205854);
INSERT INTO public.notice VALUES (26033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703308235);
INSERT INTO public.notice VALUES (26039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703311836);
INSERT INTO public.notice VALUES (26040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703312436);
INSERT INTO public.notice VALUES (26747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703736635);
INSERT INTO public.notice VALUES (26750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703738435);
INSERT INTO public.notice VALUES (26751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703739036);
INSERT INTO public.notice VALUES (27202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704009635);
INSERT INTO public.notice VALUES (27572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704231635);
INSERT INTO public.notice VALUES (27576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704234036);
INSERT INTO public.notice VALUES (27578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704235235);
INSERT INTO public.notice VALUES (27797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704366636);
INSERT INTO public.notice VALUES (27932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704447635);
INSERT INTO public.notice VALUES (24193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702202853);
INSERT INTO public.notice VALUES (24194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702203454);
INSERT INTO public.notice VALUES (24195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702204054);
INSERT INTO public.notice VALUES (24196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702204653);
INSERT INTO public.notice VALUES (24197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702205253);
INSERT INTO public.notice VALUES (24199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702206453);
INSERT INTO public.notice VALUES (24200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702207053);
INSERT INTO public.notice VALUES (24201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702207654);
INSERT INTO public.notice VALUES (24202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702208254);
INSERT INTO public.notice VALUES (24203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702208853);
INSERT INTO public.notice VALUES (24204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702209453);
INSERT INTO public.notice VALUES (24205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702210054);
INSERT INTO public.notice VALUES (24206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702210653);
INSERT INTO public.notice VALUES (24207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702211253);
INSERT INTO public.notice VALUES (24208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702211854);
INSERT INTO public.notice VALUES (24209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702212454);
INSERT INTO public.notice VALUES (24210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702213053);
INSERT INTO public.notice VALUES (24211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702213653);
INSERT INTO public.notice VALUES (24212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702214254);
INSERT INTO public.notice VALUES (24213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702214853);
INSERT INTO public.notice VALUES (24214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702215453);
INSERT INTO public.notice VALUES (24215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702216054);
INSERT INTO public.notice VALUES (24216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702216660);
INSERT INTO public.notice VALUES (24217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702217253);
INSERT INTO public.notice VALUES (24218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702217853);
INSERT INTO public.notice VALUES (24219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702218454);
INSERT INTO public.notice VALUES (24220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702219054);
INSERT INTO public.notice VALUES (24221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702219653);
INSERT INTO public.notice VALUES (24222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702220255);
INSERT INTO public.notice VALUES (24223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702220854);
INSERT INTO public.notice VALUES (24224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702221453);
INSERT INTO public.notice VALUES (24225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702222053);
INSERT INTO public.notice VALUES (24226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702222654);
INSERT INTO public.notice VALUES (24227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702223254);
INSERT INTO public.notice VALUES (24228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702223853);
INSERT INTO public.notice VALUES (24229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702224454);
INSERT INTO public.notice VALUES (24231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702225653);
INSERT INTO public.notice VALUES (24232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702226260);
INSERT INTO public.notice VALUES (24233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702226858);
INSERT INTO public.notice VALUES (26041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703313042);
INSERT INTO public.notice VALUES (26752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703739636);
INSERT INTO public.notice VALUES (26753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703740235);
INSERT INTO public.notice VALUES (27203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704010236);
INSERT INTO public.notice VALUES (27573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704232236);
INSERT INTO public.notice VALUES (27574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704232835);
INSERT INTO public.notice VALUES (24230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702225054);
INSERT INTO public.notice VALUES (24234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702227454);
INSERT INTO public.notice VALUES (24235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702228053);
INSERT INTO public.notice VALUES (24236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702228654);
INSERT INTO public.notice VALUES (24237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702229254);
INSERT INTO public.notice VALUES (24238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702229853);
INSERT INTO public.notice VALUES (24239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702230453);
INSERT INTO public.notice VALUES (24240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702231055);
INSERT INTO public.notice VALUES (24241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702231654);
INSERT INTO public.notice VALUES (24242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702232253);
INSERT INTO public.notice VALUES (24243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702232854);
INSERT INTO public.notice VALUES (24244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702233454);
INSERT INTO public.notice VALUES (24245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702234053);
INSERT INTO public.notice VALUES (24246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702234654);
INSERT INTO public.notice VALUES (24247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702235254);
INSERT INTO public.notice VALUES (24248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702235854);
INSERT INTO public.notice VALUES (26043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703314236);
INSERT INTO public.notice VALUES (26754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703740835);
INSERT INTO public.notice VALUES (27204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704010836);
INSERT INTO public.notice VALUES (27206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704012036);
INSERT INTO public.notice VALUES (27208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704013235);
INSERT INTO public.notice VALUES (27209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704013835);
INSERT INTO public.notice VALUES (27575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704233435);
INSERT INTO public.notice VALUES (27799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704367837);
INSERT INTO public.notice VALUES (27806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704372038);
INSERT INTO public.notice VALUES (27933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704448236);
INSERT INTO public.notice VALUES (27935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704449435);
INSERT INTO public.notice VALUES (27940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704452436);
INSERT INTO public.notice VALUES (27941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704453036);
INSERT INTO public.notice VALUES (27983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704478236);
INSERT INTO public.notice VALUES (24249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702236453);
INSERT INTO public.notice VALUES (24250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702237053);
INSERT INTO public.notice VALUES (24251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702237654);
INSERT INTO public.notice VALUES (24252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702238253);
INSERT INTO public.notice VALUES (24253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702238853);
INSERT INTO public.notice VALUES (24254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702239454);
INSERT INTO public.notice VALUES (24255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702240054);
INSERT INTO public.notice VALUES (24256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702240653);
INSERT INTO public.notice VALUES (24257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702241252);
INSERT INTO public.notice VALUES (24258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702241854);
INSERT INTO public.notice VALUES (24259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702242453);
INSERT INTO public.notice VALUES (24260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702243053);
INSERT INTO public.notice VALUES (24261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702243654);
INSERT INTO public.notice VALUES (24262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702244254);
INSERT INTO public.notice VALUES (24263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702244853);
INSERT INTO public.notice VALUES (24264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702245453);
INSERT INTO public.notice VALUES (26045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703315434);
INSERT INTO public.notice VALUES (26046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703316036);
INSERT INTO public.notice VALUES (26047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703316635);
INSERT INTO public.notice VALUES (26049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703317834);
INSERT INTO public.notice VALUES (26050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703318436);
INSERT INTO public.notice VALUES (26051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703319035);
INSERT INTO public.notice VALUES (26052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703319635);
INSERT INTO public.notice VALUES (26054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703320836);
INSERT INTO public.notice VALUES (26055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703321435);
INSERT INTO public.notice VALUES (26756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703742036);
INSERT INTO public.notice VALUES (26757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703742635);
INSERT INTO public.notice VALUES (26758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703743236);
INSERT INTO public.notice VALUES (26759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703743836);
INSERT INTO public.notice VALUES (27205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704011435);
INSERT INTO public.notice VALUES (24265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702246062);
INSERT INTO public.notice VALUES (24266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702246653);
INSERT INTO public.notice VALUES (24267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702247253);
INSERT INTO public.notice VALUES (24268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702247854);
INSERT INTO public.notice VALUES (24269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702248454);
INSERT INTO public.notice VALUES (24270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702249053);
INSERT INTO public.notice VALUES (24271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702249653);
INSERT INTO public.notice VALUES (24272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702250254);
INSERT INTO public.notice VALUES (24273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702250853);
INSERT INTO public.notice VALUES (24274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702251453);
INSERT INTO public.notice VALUES (24275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702252054);
INSERT INTO public.notice VALUES (24276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702252654);
INSERT INTO public.notice VALUES (24277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702253253);
INSERT INTO public.notice VALUES (24278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702253853);
INSERT INTO public.notice VALUES (24279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702254454);
INSERT INTO public.notice VALUES (24280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702255054);
INSERT INTO public.notice VALUES (24281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702255660);
INSERT INTO public.notice VALUES (24284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702257453);
INSERT INTO public.notice VALUES (26048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703317235);
INSERT INTO public.notice VALUES (26053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703320236);
INSERT INTO public.notice VALUES (26761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703745035);
INSERT INTO public.notice VALUES (26763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703746236);
INSERT INTO public.notice VALUES (26764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703746835);
INSERT INTO public.notice VALUES (27207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704012636);
INSERT INTO public.notice VALUES (27577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704234636);
INSERT INTO public.notice VALUES (27800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704368436);
INSERT INTO public.notice VALUES (27801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704369035);
INSERT INTO public.notice VALUES (27802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704369635);
INSERT INTO public.notice VALUES (27803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704370236);
INSERT INTO public.notice VALUES (27937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704450636);
INSERT INTO public.notice VALUES (24282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702256258);
INSERT INTO public.notice VALUES (24283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702256854);
INSERT INTO public.notice VALUES (24285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702258053);
INSERT INTO public.notice VALUES (24286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702258653);
INSERT INTO public.notice VALUES (24287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702259254);
INSERT INTO public.notice VALUES (24288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702259854);
INSERT INTO public.notice VALUES (24289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702260454);
INSERT INTO public.notice VALUES (24290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702261054);
INSERT INTO public.notice VALUES (24291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702261654);
INSERT INTO public.notice VALUES (24292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702262253);
INSERT INTO public.notice VALUES (24293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702262854);
INSERT INTO public.notice VALUES (24294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702263453);
INSERT INTO public.notice VALUES (24295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702264053);
INSERT INTO public.notice VALUES (24296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702264654);
INSERT INTO public.notice VALUES (24297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702265253);
INSERT INTO public.notice VALUES (24298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702265853);
INSERT INTO public.notice VALUES (24299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702266454);
INSERT INTO public.notice VALUES (26056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703322037);
INSERT INTO public.notice VALUES (26057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703322636);
INSERT INTO public.notice VALUES (26059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703323835);
INSERT INTO public.notice VALUES (26060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703324436);
INSERT INTO public.notice VALUES (26762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703745636);
INSERT INTO public.notice VALUES (27210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704014436);
INSERT INTO public.notice VALUES (27579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704235835);
INSERT INTO public.notice VALUES (27580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704236436);
INSERT INTO public.notice VALUES (27804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704370836);
INSERT INTO public.notice VALUES (27805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704371444);
INSERT INTO public.notice VALUES (27938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704451235);
INSERT INTO public.notice VALUES (27984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704478836);
INSERT INTO public.notice VALUES (27987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704480636);
INSERT INTO public.notice VALUES (24300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702267054);
INSERT INTO public.notice VALUES (24301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702267653);
INSERT INTO public.notice VALUES (24302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702268253);
INSERT INTO public.notice VALUES (24303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702268853);
INSERT INTO public.notice VALUES (24304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702269455);
INSERT INTO public.notice VALUES (24305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702270053);
INSERT INTO public.notice VALUES (24306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702270653);
INSERT INTO public.notice VALUES (24307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702271254);
INSERT INTO public.notice VALUES (24308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702271854);
INSERT INTO public.notice VALUES (24309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702272453);
INSERT INTO public.notice VALUES (24310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702273052);
INSERT INTO public.notice VALUES (24311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702273654);
INSERT INTO public.notice VALUES (24312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702274253);
INSERT INTO public.notice VALUES (24313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702274853);
INSERT INTO public.notice VALUES (24314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702275461);
INSERT INTO public.notice VALUES (24315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702276054);
INSERT INTO public.notice VALUES (24318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702277854);
INSERT INTO public.notice VALUES (24319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702278453);
INSERT INTO public.notice VALUES (24325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702282054);
INSERT INTO public.notice VALUES (24328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702283852);
INSERT INTO public.notice VALUES (24330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702285060);
INSERT INTO public.notice VALUES (24334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702287453);
INSERT INTO public.notice VALUES (24335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702288053);
INSERT INTO public.notice VALUES (26058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703323235);
INSERT INTO public.notice VALUES (26062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703325635);
INSERT INTO public.notice VALUES (26068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703329236);
INSERT INTO public.notice VALUES (26765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703747436);
INSERT INTO public.notice VALUES (27211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704015036);
INSERT INTO public.notice VALUES (27581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704237036);
INSERT INTO public.notice VALUES (27582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704237635);
INSERT INTO public.notice VALUES (24316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702276653);
INSERT INTO public.notice VALUES (24317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702277253);
INSERT INTO public.notice VALUES (24320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702279053);
INSERT INTO public.notice VALUES (24321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702279652);
INSERT INTO public.notice VALUES (24322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702280254);
INSERT INTO public.notice VALUES (24323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702280853);
INSERT INTO public.notice VALUES (24324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702281453);
INSERT INTO public.notice VALUES (24326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702282654);
INSERT INTO public.notice VALUES (24327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702283253);
INSERT INTO public.notice VALUES (24329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702284454);
INSERT INTO public.notice VALUES (24331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702285656);
INSERT INTO public.notice VALUES (24332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702286254);
INSERT INTO public.notice VALUES (24333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702286854);
INSERT INTO public.notice VALUES (24336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702288654);
INSERT INTO public.notice VALUES (24337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702289254);
INSERT INTO public.notice VALUES (24338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702289853);
INSERT INTO public.notice VALUES (24342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702292253);
INSERT INTO public.notice VALUES (24344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702293454);
INSERT INTO public.notice VALUES (24345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702294053);
INSERT INTO public.notice VALUES (26061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703325036);
INSERT INTO public.notice VALUES (26063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703326235);
INSERT INTO public.notice VALUES (26064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703326836);
INSERT INTO public.notice VALUES (26766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703748036);
INSERT INTO public.notice VALUES (27212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704015635);
INSERT INTO public.notice VALUES (27583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704238236);
INSERT INTO public.notice VALUES (27584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704238836);
INSERT INTO public.notice VALUES (27589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704241835);
INSERT INTO public.notice VALUES (27590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704242434);
INSERT INTO public.notice VALUES (27807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704372636);
INSERT INTO public.notice VALUES (27809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704373835);
INSERT INTO public.notice VALUES (24339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702290454);
INSERT INTO public.notice VALUES (24340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702291054);
INSERT INTO public.notice VALUES (24341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702291653);
INSERT INTO public.notice VALUES (24343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702292854);
INSERT INTO public.notice VALUES (24346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702294652);
INSERT INTO public.notice VALUES (24347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702295254);
INSERT INTO public.notice VALUES (24348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702295853);
INSERT INTO public.notice VALUES (24349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702296453);
INSERT INTO public.notice VALUES (24350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702297054);
INSERT INTO public.notice VALUES (24351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702297653);
INSERT INTO public.notice VALUES (24352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702298253);
INSERT INTO public.notice VALUES (24353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702298852);
INSERT INTO public.notice VALUES (24354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702299454);
INSERT INTO public.notice VALUES (24355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702300053);
INSERT INTO public.notice VALUES (24356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702300653);
INSERT INTO public.notice VALUES (24357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702301254);
INSERT INTO public.notice VALUES (24361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702303654);
INSERT INTO public.notice VALUES (26065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703327435);
INSERT INTO public.notice VALUES (26066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703328035);
INSERT INTO public.notice VALUES (26067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703328634);
INSERT INTO public.notice VALUES (26767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703748635);
INSERT INTO public.notice VALUES (27213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704016235);
INSERT INTO public.notice VALUES (27214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704016836);
INSERT INTO public.notice VALUES (27217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704018643);
INSERT INTO public.notice VALUES (27218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704019239);
INSERT INTO public.notice VALUES (27585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704239435);
INSERT INTO public.notice VALUES (27586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704240035);
INSERT INTO public.notice VALUES (27587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704240636);
INSERT INTO public.notice VALUES (27808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704373235);
INSERT INTO public.notice VALUES (27811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704375036);
INSERT INTO public.notice VALUES (24358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702301854);
INSERT INTO public.notice VALUES (24359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702302453);
INSERT INTO public.notice VALUES (24360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702303053);
INSERT INTO public.notice VALUES (24362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702304254);
INSERT INTO public.notice VALUES (24363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702304860);
INSERT INTO public.notice VALUES (24364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702305454);
INSERT INTO public.notice VALUES (24365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702306054);
INSERT INTO public.notice VALUES (24366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702306653);
INSERT INTO public.notice VALUES (24367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702307253);
INSERT INTO public.notice VALUES (24368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702307854);
INSERT INTO public.notice VALUES (24369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702308453);
INSERT INTO public.notice VALUES (24370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702309053);
INSERT INTO public.notice VALUES (24371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702309654);
INSERT INTO public.notice VALUES (24372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702310254);
INSERT INTO public.notice VALUES (24373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702310853);
INSERT INTO public.notice VALUES (24374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702311453);
INSERT INTO public.notice VALUES (24375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702312054);
INSERT INTO public.notice VALUES (26069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703329835);
INSERT INTO public.notice VALUES (26768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703749235);
INSERT INTO public.notice VALUES (26774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703752836);
INSERT INTO public.notice VALUES (26778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703755236);
INSERT INTO public.notice VALUES (27215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704017436);
INSERT INTO public.notice VALUES (27588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704241236);
INSERT INTO public.notice VALUES (27591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704243036);
INSERT INTO public.notice VALUES (27810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704374437);
INSERT INTO public.notice VALUES (27812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704375635);
INSERT INTO public.notice VALUES (27814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704376836);
INSERT INTO public.notice VALUES (27816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704378035);
INSERT INTO public.notice VALUES (27818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704379236);
INSERT INTO public.notice VALUES (27820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704380437);
INSERT INTO public.notice VALUES (24376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702312653);
INSERT INTO public.notice VALUES (24377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702313253);
INSERT INTO public.notice VALUES (24378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702313852);
INSERT INTO public.notice VALUES (24379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702314461);
INSERT INTO public.notice VALUES (24380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702315057);
INSERT INTO public.notice VALUES (24381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702315653);
INSERT INTO public.notice VALUES (24382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702316254);
INSERT INTO public.notice VALUES (24383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702316854);
INSERT INTO public.notice VALUES (24384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702317453);
INSERT INTO public.notice VALUES (24385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702318052);
INSERT INTO public.notice VALUES (24386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702318654);
INSERT INTO public.notice VALUES (24387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702319253);
INSERT INTO public.notice VALUES (24388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702319853);
INSERT INTO public.notice VALUES (24389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702320454);
INSERT INTO public.notice VALUES (24390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702321054);
INSERT INTO public.notice VALUES (24391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702321653);
INSERT INTO public.notice VALUES (24393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702322855);
INSERT INTO public.notice VALUES (26070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703330435);
INSERT INTO public.notice VALUES (26072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703331636);
INSERT INTO public.notice VALUES (26074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703332841);
INSERT INTO public.notice VALUES (26075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703333436);
INSERT INTO public.notice VALUES (26769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703749834);
INSERT INTO public.notice VALUES (26770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703750436);
INSERT INTO public.notice VALUES (26771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703751035);
INSERT INTO public.notice VALUES (27216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704018035);
INSERT INTO public.notice VALUES (27219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704019835);
INSERT INTO public.notice VALUES (27220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704020435);
INSERT INTO public.notice VALUES (27224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704022837);
INSERT INTO public.notice VALUES (27592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704243635);
INSERT INTO public.notice VALUES (27593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704244242);
INSERT INTO public.notice VALUES (24392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702322253);
INSERT INTO public.notice VALUES (24394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702323453);
INSERT INTO public.notice VALUES (24395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702324053);
INSERT INTO public.notice VALUES (24396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702324652);
INSERT INTO public.notice VALUES (24397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702325254);
INSERT INTO public.notice VALUES (24398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702325853);
INSERT INTO public.notice VALUES (24399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702326453);
INSERT INTO public.notice VALUES (24400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702327055);
INSERT INTO public.notice VALUES (24401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702327654);
INSERT INTO public.notice VALUES (24402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702328254);
INSERT INTO public.notice VALUES (24403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702328854);
INSERT INTO public.notice VALUES (24404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702329454);
INSERT INTO public.notice VALUES (24405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702330054);
INSERT INTO public.notice VALUES (24406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702330653);
INSERT INTO public.notice VALUES (24407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702331254);
INSERT INTO public.notice VALUES (24408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702331854);
INSERT INTO public.notice VALUES (24411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702333654);
INSERT INTO public.notice VALUES (26071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703331036);
INSERT INTO public.notice VALUES (26772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703751635);
INSERT INTO public.notice VALUES (26773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703752236);
INSERT INTO public.notice VALUES (27221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704021036);
INSERT INTO public.notice VALUES (27594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704244836);
INSERT INTO public.notice VALUES (27813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704376235);
INSERT INTO public.notice VALUES (27815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704377436);
INSERT INTO public.notice VALUES (27817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704378636);
INSERT INTO public.notice VALUES (27939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704451835);
INSERT INTO public.notice VALUES (27945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704455436);
INSERT INTO public.notice VALUES (27946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704456035);
INSERT INTO public.notice VALUES (27985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704479442);
INSERT INTO public.notice VALUES (27986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704480034);
INSERT INTO public.notice VALUES (24409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702332453);
INSERT INTO public.notice VALUES (24410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702333055);
INSERT INTO public.notice VALUES (24412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702334260);
INSERT INTO public.notice VALUES (24413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702334854);
INSERT INTO public.notice VALUES (24414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702335454);
INSERT INTO public.notice VALUES (24415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702336054);
INSERT INTO public.notice VALUES (24416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702336653);
INSERT INTO public.notice VALUES (24417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702337253);
INSERT INTO public.notice VALUES (24418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702337854);
INSERT INTO public.notice VALUES (24419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702338454);
INSERT INTO public.notice VALUES (24420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702339053);
INSERT INTO public.notice VALUES (24421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702339654);
INSERT INTO public.notice VALUES (24422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702340254);
INSERT INTO public.notice VALUES (24423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702340853);
INSERT INTO public.notice VALUES (24424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702341453);
INSERT INTO public.notice VALUES (24425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702342054);
INSERT INTO public.notice VALUES (24427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702343253);
INSERT INTO public.notice VALUES (26073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703332235);
INSERT INTO public.notice VALUES (26078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703335236);
INSERT INTO public.notice VALUES (26080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703336435);
INSERT INTO public.notice VALUES (26082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703337636);
INSERT INTO public.notice VALUES (26775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703753435);
INSERT INTO public.notice VALUES (26776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703754043);
INSERT INTO public.notice VALUES (27222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704021636);
INSERT INTO public.notice VALUES (27223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704022235);
INSERT INTO public.notice VALUES (27595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704245436);
INSERT INTO public.notice VALUES (27819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704379835);
INSERT INTO public.notice VALUES (27822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704381636);
INSERT INTO public.notice VALUES (27823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704382235);
INSERT INTO public.notice VALUES (27825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704383436);
INSERT INTO public.notice VALUES (24426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702342653);
INSERT INTO public.notice VALUES (24428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702343863);
INSERT INTO public.notice VALUES (24429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702344457);
INSERT INTO public.notice VALUES (24430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702345053);
INSERT INTO public.notice VALUES (24431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702345653);
INSERT INTO public.notice VALUES (24432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702346254);
INSERT INTO public.notice VALUES (24433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702346854);
INSERT INTO public.notice VALUES (24434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702347453);
INSERT INTO public.notice VALUES (24435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702348052);
INSERT INTO public.notice VALUES (24436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702348654);
INSERT INTO public.notice VALUES (24437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702349253);
INSERT INTO public.notice VALUES (24438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702349853);
INSERT INTO public.notice VALUES (24439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702350454);
INSERT INTO public.notice VALUES (24440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702351054);
INSERT INTO public.notice VALUES (24441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702351653);
INSERT INTO public.notice VALUES (24442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702352253);
INSERT INTO public.notice VALUES (24443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702352854);
INSERT INTO public.notice VALUES (24444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702353453);
INSERT INTO public.notice VALUES (24446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702354654);
INSERT INTO public.notice VALUES (26076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703334035);
INSERT INTO public.notice VALUES (26077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703334635);
INSERT INTO public.notice VALUES (26079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703335836);
INSERT INTO public.notice VALUES (26081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703337034);
INSERT INTO public.notice VALUES (26083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703338235);
INSERT INTO public.notice VALUES (26085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703339436);
INSERT INTO public.notice VALUES (26086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703340036);
INSERT INTO public.notice VALUES (26777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703754639);
INSERT INTO public.notice VALUES (27225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704023436);
INSERT INTO public.notice VALUES (27596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704246035);
INSERT INTO public.notice VALUES (27821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704381036);
INSERT INTO public.notice VALUES (24445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702354053);
INSERT INTO public.notice VALUES (24447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702355254);
INSERT INTO public.notice VALUES (24448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702355853);
INSERT INTO public.notice VALUES (24449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702356453);
INSERT INTO public.notice VALUES (24450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702357054);
INSERT INTO public.notice VALUES (24451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702357653);
INSERT INTO public.notice VALUES (24452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702358253);
INSERT INTO public.notice VALUES (24453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702358854);
INSERT INTO public.notice VALUES (24454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702359454);
INSERT INTO public.notice VALUES (24455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702360053);
INSERT INTO public.notice VALUES (24456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702360653);
INSERT INTO public.notice VALUES (24457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702361254);
INSERT INTO public.notice VALUES (24458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702361853);
INSERT INTO public.notice VALUES (24459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702362453);
INSERT INTO public.notice VALUES (24460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702363054);
INSERT INTO public.notice VALUES (24461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702363661);
INSERT INTO public.notice VALUES (24462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702364253);
INSERT INTO public.notice VALUES (24463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702364853);
INSERT INTO public.notice VALUES (24464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702365454);
INSERT INTO public.notice VALUES (24465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702366054);
INSERT INTO public.notice VALUES (24466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702366653);
INSERT INTO public.notice VALUES (24467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702367253);
INSERT INTO public.notice VALUES (24468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702367854);
INSERT INTO public.notice VALUES (24469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702368454);
INSERT INTO public.notice VALUES (24470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702369053);
INSERT INTO public.notice VALUES (24471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702369653);
INSERT INTO public.notice VALUES (24472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702370254);
INSERT INTO public.notice VALUES (24473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702370854);
INSERT INTO public.notice VALUES (24474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702371453);
INSERT INTO public.notice VALUES (24475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702372053);
INSERT INTO public.notice VALUES (24476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702372653);
INSERT INTO public.notice VALUES (24477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702373262);
INSERT INTO public.notice VALUES (24478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702373857);
INSERT INTO public.notice VALUES (24479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702374454);
INSERT INTO public.notice VALUES (24480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702375054);
INSERT INTO public.notice VALUES (24481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702375653);
INSERT INTO public.notice VALUES (24482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702376253);
INSERT INTO public.notice VALUES (24483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702376854);
INSERT INTO public.notice VALUES (24484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702377454);
INSERT INTO public.notice VALUES (24485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702378053);
INSERT INTO public.notice VALUES (24486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702378654);
INSERT INTO public.notice VALUES (24487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702379254);
INSERT INTO public.notice VALUES (24488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702379853);
INSERT INTO public.notice VALUES (24489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702380453);
INSERT INTO public.notice VALUES (24490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702381054);
INSERT INTO public.notice VALUES (24491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702381654);
INSERT INTO public.notice VALUES (24492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702382253);
INSERT INTO public.notice VALUES (24493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702382852);
INSERT INTO public.notice VALUES (24495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702384054);
INSERT INTO public.notice VALUES (24496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702384654);
INSERT INTO public.notice VALUES (26084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703338835);
INSERT INTO public.notice VALUES (26087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703340635);
INSERT INTO public.notice VALUES (26090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703342443);
INSERT INTO public.notice VALUES (26091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703343039);
INSERT INTO public.notice VALUES (26092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703343636);
INSERT INTO public.notice VALUES (26093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703344236);
INSERT INTO public.notice VALUES (26095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703345435);
INSERT INTO public.notice VALUES (26779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703755835);
INSERT INTO public.notice VALUES (26780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703756436);
INSERT INTO public.notice VALUES (26784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703758837);
INSERT INTO public.notice VALUES (24494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702383454);
INSERT INTO public.notice VALUES (24497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702385254);
INSERT INTO public.notice VALUES (24498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702385854);
INSERT INTO public.notice VALUES (24499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702386453);
INSERT INTO public.notice VALUES (24500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702387053);
INSERT INTO public.notice VALUES (24501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702387654);
INSERT INTO public.notice VALUES (24502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702388254);
INSERT INTO public.notice VALUES (24503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702388853);
INSERT INTO public.notice VALUES (24504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702389453);
INSERT INTO public.notice VALUES (24505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702390054);
INSERT INTO public.notice VALUES (24506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702390653);
INSERT INTO public.notice VALUES (24507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702391253);
INSERT INTO public.notice VALUES (24508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702391854);
INSERT INTO public.notice VALUES (24509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702392454);
INSERT INTO public.notice VALUES (24510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702393061);
INSERT INTO public.notice VALUES (24511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702393653);
INSERT INTO public.notice VALUES (24512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702394254);
INSERT INTO public.notice VALUES (24514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702395453);
INSERT INTO public.notice VALUES (24518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702397853);
INSERT INTO public.notice VALUES (24521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702399653);
INSERT INTO public.notice VALUES (24523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702400854);
INSERT INTO public.notice VALUES (24525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702402053);
INSERT INTO public.notice VALUES (24527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702403257);
INSERT INTO public.notice VALUES (24529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702404453);
INSERT INTO public.notice VALUES (24533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702406854);
INSERT INTO public.notice VALUES (24534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702407454);
INSERT INTO public.notice VALUES (24535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702408054);
INSERT INTO public.notice VALUES (24538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702409854);
INSERT INTO public.notice VALUES (24539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702410453);
INSERT INTO public.notice VALUES (26088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703341237);
INSERT INTO public.notice VALUES (24513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702394853);
INSERT INTO public.notice VALUES (24515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702396054);
INSERT INTO public.notice VALUES (24516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702396654);
INSERT INTO public.notice VALUES (24517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702397254);
INSERT INTO public.notice VALUES (24519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702398454);
INSERT INTO public.notice VALUES (24520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702399054);
INSERT INTO public.notice VALUES (24522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702400253);
INSERT INTO public.notice VALUES (24524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702401453);
INSERT INTO public.notice VALUES (24526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702402661);
INSERT INTO public.notice VALUES (24528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702403853);
INSERT INTO public.notice VALUES (24530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702405054);
INSERT INTO public.notice VALUES (24531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702405653);
INSERT INTO public.notice VALUES (24532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702406253);
INSERT INTO public.notice VALUES (24536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702408653);
INSERT INTO public.notice VALUES (24537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702409254);
INSERT INTO public.notice VALUES (24540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702411055);
INSERT INTO public.notice VALUES (24543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702412853);
INSERT INTO public.notice VALUES (24544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702413454);
INSERT INTO public.notice VALUES (26089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703341836);
INSERT INTO public.notice VALUES (26094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703344835);
INSERT INTO public.notice VALUES (26097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703346635);
INSERT INTO public.notice VALUES (26098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703347235);
INSERT INTO public.notice VALUES (26781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703757036);
INSERT INTO public.notice VALUES (27226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704024035);
INSERT INTO public.notice VALUES (27230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704026435);
INSERT INTO public.notice VALUES (27231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704027035);
INSERT INTO public.notice VALUES (27232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704027636);
INSERT INTO public.notice VALUES (27597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704246636);
INSERT INTO public.notice VALUES (27598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704247236);
INSERT INTO public.notice VALUES (27605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704251436);
INSERT INTO public.notice VALUES (24541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702411654);
INSERT INTO public.notice VALUES (24542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702412253);
INSERT INTO public.notice VALUES (24545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702414054);
INSERT INTO public.notice VALUES (24546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702414653);
INSERT INTO public.notice VALUES (24547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702415253);
INSERT INTO public.notice VALUES (24548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702415854);
INSERT INTO public.notice VALUES (24549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702416453);
INSERT INTO public.notice VALUES (24550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702417053);
INSERT INTO public.notice VALUES (24551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702417653);
INSERT INTO public.notice VALUES (24552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702418254);
INSERT INTO public.notice VALUES (24553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702418853);
INSERT INTO public.notice VALUES (24554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702419453);
INSERT INTO public.notice VALUES (24555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702420054);
INSERT INTO public.notice VALUES (24556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702420654);
INSERT INTO public.notice VALUES (24557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702421253);
INSERT INTO public.notice VALUES (24558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702421854);
INSERT INTO public.notice VALUES (24559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702422461);
INSERT INTO public.notice VALUES (24560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702423053);
INSERT INTO public.notice VALUES (24561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702423653);
INSERT INTO public.notice VALUES (24562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702424254);
INSERT INTO public.notice VALUES (24563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702424854);
INSERT INTO public.notice VALUES (24564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702425453);
INSERT INTO public.notice VALUES (24565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702426054);
INSERT INTO public.notice VALUES (24566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702426654);
INSERT INTO public.notice VALUES (24567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702427253);
INSERT INTO public.notice VALUES (24568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702427853);
INSERT INTO public.notice VALUES (24569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702428454);
INSERT INTO public.notice VALUES (24570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702429054);
INSERT INTO public.notice VALUES (24571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702429653);
INSERT INTO public.notice VALUES (24572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702430253);
INSERT INTO public.notice VALUES (24573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702430854);
INSERT INTO public.notice VALUES (24574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702431453);
INSERT INTO public.notice VALUES (24575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702432060);
INSERT INTO public.notice VALUES (24576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702432657);
INSERT INTO public.notice VALUES (24577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702433254);
INSERT INTO public.notice VALUES (24578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702433853);
INSERT INTO public.notice VALUES (24579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702434452);
INSERT INTO public.notice VALUES (24580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702435054);
INSERT INTO public.notice VALUES (24581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702435654);
INSERT INTO public.notice VALUES (24582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702436253);
INSERT INTO public.notice VALUES (24583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702436854);
INSERT INTO public.notice VALUES (24584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702437454);
INSERT INTO public.notice VALUES (24585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702438053);
INSERT INTO public.notice VALUES (24586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702438654);
INSERT INTO public.notice VALUES (24587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702439254);
INSERT INTO public.notice VALUES (24588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702439854);
INSERT INTO public.notice VALUES (24589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702440453);
INSERT INTO public.notice VALUES (24590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702441053);
INSERT INTO public.notice VALUES (24591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702441654);
INSERT INTO public.notice VALUES (24592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702442253);
INSERT INTO public.notice VALUES (24593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702442853);
INSERT INTO public.notice VALUES (24594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702443454);
INSERT INTO public.notice VALUES (24595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702444054);
INSERT INTO public.notice VALUES (24596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702444653);
INSERT INTO public.notice VALUES (24597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702445253);
INSERT INTO public.notice VALUES (24598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702445855);
INSERT INTO public.notice VALUES (24599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702446454);
INSERT INTO public.notice VALUES (24600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702447053);
INSERT INTO public.notice VALUES (24601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702447655);
INSERT INTO public.notice VALUES (24602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702448254);
INSERT INTO public.notice VALUES (24603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702448853);
INSERT INTO public.notice VALUES (24604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702449453);
INSERT INTO public.notice VALUES (24605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702450054);
INSERT INTO public.notice VALUES (24606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702450654);
INSERT INTO public.notice VALUES (24607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702451253);
INSERT INTO public.notice VALUES (24608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702451859);
INSERT INTO public.notice VALUES (24609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702452454);
INSERT INTO public.notice VALUES (24610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702453053);
INSERT INTO public.notice VALUES (24611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702453653);
INSERT INTO public.notice VALUES (24612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702454252);
INSERT INTO public.notice VALUES (24613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702454854);
INSERT INTO public.notice VALUES (24614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702455453);
INSERT INTO public.notice VALUES (24615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702456053);
INSERT INTO public.notice VALUES (24616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702456654);
INSERT INTO public.notice VALUES (24617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702457254);
INSERT INTO public.notice VALUES (24618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702457853);
INSERT INTO public.notice VALUES (24619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702458454);
INSERT INTO public.notice VALUES (26096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703346036);
INSERT INTO public.notice VALUES (26102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703349635);
INSERT INTO public.notice VALUES (26105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703351435);
INSERT INTO public.notice VALUES (26106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703352036);
INSERT INTO public.notice VALUES (26107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703352636);
INSERT INTO public.notice VALUES (26109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703353835);
INSERT INTO public.notice VALUES (26110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703354437);
INSERT INTO public.notice VALUES (26111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703355036);
INSERT INTO public.notice VALUES (26112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703355635);
INSERT INTO public.notice VALUES (26116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703358035);
INSERT INTO public.notice VALUES (26118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703359236);
INSERT INTO public.notice VALUES (26122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703361635);
INSERT INTO public.notice VALUES (26782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703757635);
INSERT INTO public.notice VALUES (24620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702459054);
INSERT INTO public.notice VALUES (24621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702459653);
INSERT INTO public.notice VALUES (24622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702460696);
INSERT INTO public.notice VALUES (24623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702461303);
INSERT INTO public.notice VALUES (24624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702461899);
INSERT INTO public.notice VALUES (24625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702462495);
INSERT INTO public.notice VALUES (24626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702463096);
INSERT INTO public.notice VALUES (24627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702463696);
INSERT INTO public.notice VALUES (24628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702464295);
INSERT INTO public.notice VALUES (24629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702464896);
INSERT INTO public.notice VALUES (24630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702465496);
INSERT INTO public.notice VALUES (24631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702466095);
INSERT INTO public.notice VALUES (24632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702466695);
INSERT INTO public.notice VALUES (24633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702467296);
INSERT INTO public.notice VALUES (24634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702467896);
INSERT INTO public.notice VALUES (24635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702468495);
INSERT INTO public.notice VALUES (24636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702469095);
INSERT INTO public.notice VALUES (24637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702469696);
INSERT INTO public.notice VALUES (24638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702470296);
INSERT INTO public.notice VALUES (24639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702470895);
INSERT INTO public.notice VALUES (24640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702471496);
INSERT INTO public.notice VALUES (24641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702472096);
INSERT INTO public.notice VALUES (24642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702472695);
INSERT INTO public.notice VALUES (24643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702473295);
INSERT INTO public.notice VALUES (24644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702473896);
INSERT INTO public.notice VALUES (24645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702474496);
INSERT INTO public.notice VALUES (24646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702475095);
INSERT INTO public.notice VALUES (24647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702475697);
INSERT INTO public.notice VALUES (24648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702476296);
INSERT INTO public.notice VALUES (24649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702476895);
INSERT INTO public.notice VALUES (24650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702477495);
INSERT INTO public.notice VALUES (24651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702478096);
INSERT INTO public.notice VALUES (26099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703347836);
INSERT INTO public.notice VALUES (26100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703348436);
INSERT INTO public.notice VALUES (26101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703349035);
INSERT INTO public.notice VALUES (26103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703350236);
INSERT INTO public.notice VALUES (26783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703758235);
INSERT INTO public.notice VALUES (26786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703760035);
INSERT INTO public.notice VALUES (26788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703761236);
INSERT INTO public.notice VALUES (27227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704024635);
INSERT INTO public.notice VALUES (27599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704247836);
INSERT INTO public.notice VALUES (27600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704248435);
INSERT INTO public.notice VALUES (27824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704382836);
INSERT INTO public.notice VALUES (27942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704453635);
INSERT INTO public.notice VALUES (27943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704454237);
INSERT INTO public.notice VALUES (24652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702478696);
INSERT INTO public.notice VALUES (24653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702479295);
INSERT INTO public.notice VALUES (24654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702479895);
INSERT INTO public.notice VALUES (24655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702480496);
INSERT INTO public.notice VALUES (24656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702481103);
INSERT INTO public.notice VALUES (24657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702481695);
INSERT INTO public.notice VALUES (24658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702482296);
INSERT INTO public.notice VALUES (24659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702482896);
INSERT INTO public.notice VALUES (24660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702483495);
INSERT INTO public.notice VALUES (24661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702484095);
INSERT INTO public.notice VALUES (24662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702484696);
INSERT INTO public.notice VALUES (24663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702485296);
INSERT INTO public.notice VALUES (24664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702485895);
INSERT INTO public.notice VALUES (24665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702486497);
INSERT INTO public.notice VALUES (24666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702487096);
INSERT INTO public.notice VALUES (24667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702487695);
INSERT INTO public.notice VALUES (24668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702488295);
INSERT INTO public.notice VALUES (24669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702488894);
INSERT INTO public.notice VALUES (24670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702490117);
INSERT INTO public.notice VALUES (24671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702490713);
INSERT INTO public.notice VALUES (24672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702491307);
INSERT INTO public.notice VALUES (24673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702491907);
INSERT INTO public.notice VALUES (24674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702492506);
INSERT INTO public.notice VALUES (24675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702493108);
INSERT INTO public.notice VALUES (24676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702493707);
INSERT INTO public.notice VALUES (24677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702494307);
INSERT INTO public.notice VALUES (24678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702494908);
INSERT INTO public.notice VALUES (24679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702495508);
INSERT INTO public.notice VALUES (24680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702496107);
INSERT INTO public.notice VALUES (24681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702496706);
INSERT INTO public.notice VALUES (24682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702497308);
INSERT INTO public.notice VALUES (24683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702497908);
INSERT INTO public.notice VALUES (24684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702498507);
INSERT INTO public.notice VALUES (24698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702506907);
INSERT INTO public.notice VALUES (26104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703350835);
INSERT INTO public.notice VALUES (26108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703353235);
INSERT INTO public.notice VALUES (26785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703759436);
INSERT INTO public.notice VALUES (26787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703760635);
INSERT INTO public.notice VALUES (26789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703761836);
INSERT INTO public.notice VALUES (26790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703762435);
INSERT INTO public.notice VALUES (27228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704025236);
INSERT INTO public.notice VALUES (27229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704025836);
INSERT INTO public.notice VALUES (27601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704249035);
INSERT INTO public.notice VALUES (27826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704384035);
INSERT INTO public.notice VALUES (27827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704384635);
INSERT INTO public.notice VALUES (24685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702499108);
INSERT INTO public.notice VALUES (24686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702499708);
INSERT INTO public.notice VALUES (24687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702500307);
INSERT INTO public.notice VALUES (24688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702500907);
INSERT INTO public.notice VALUES (24689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702501508);
INSERT INTO public.notice VALUES (24690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702502108);
INSERT INTO public.notice VALUES (24691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702502707);
INSERT INTO public.notice VALUES (24692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702503308);
INSERT INTO public.notice VALUES (24693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702503908);
INSERT INTO public.notice VALUES (24694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702504507);
INSERT INTO public.notice VALUES (24695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702505107);
INSERT INTO public.notice VALUES (24696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702505706);
INSERT INTO public.notice VALUES (24697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702506308);
INSERT INTO public.notice VALUES (24699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702507507);
INSERT INTO public.notice VALUES (24700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702508108);
INSERT INTO public.notice VALUES (24701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702508708);
INSERT INTO public.notice VALUES (24702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702509307);
INSERT INTO public.notice VALUES (24703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702509913);
INSERT INTO public.notice VALUES (24704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702510508);
INSERT INTO public.notice VALUES (24705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702511107);
INSERT INTO public.notice VALUES (24706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702511707);
INSERT INTO public.notice VALUES (24707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702512306);
INSERT INTO public.notice VALUES (24708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702512908);
INSERT INTO public.notice VALUES (24709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702513507);
INSERT INTO public.notice VALUES (24710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702514107);
INSERT INTO public.notice VALUES (24711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702514707);
INSERT INTO public.notice VALUES (24712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702515310);
INSERT INTO public.notice VALUES (24713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702515907);
INSERT INTO public.notice VALUES (24714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702516507);
INSERT INTO public.notice VALUES (24715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702517108);
INSERT INTO public.notice VALUES (24716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702517708);
INSERT INTO public.notice VALUES (24718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702518907);
INSERT INTO public.notice VALUES (24719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702519516);
INSERT INTO public.notice VALUES (24720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702520111);
INSERT INTO public.notice VALUES (26113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703356236);
INSERT INTO public.notice VALUES (26114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703356836);
INSERT INTO public.notice VALUES (26791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703763036);
INSERT INTO public.notice VALUES (26792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703763636);
INSERT INTO public.notice VALUES (26794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703764835);
INSERT INTO public.notice VALUES (26796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703766036);
INSERT INTO public.notice VALUES (26797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703766635);
INSERT INTO public.notice VALUES (26799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703767836);
INSERT INTO public.notice VALUES (27233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704028236);
INSERT INTO public.notice VALUES (27602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704249636);
INSERT INTO public.notice VALUES (27603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704250235);
INSERT INTO public.notice VALUES (24717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702518307);
INSERT INTO public.notice VALUES (24721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702520707);
INSERT INTO public.notice VALUES (24722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702521308);
INSERT INTO public.notice VALUES (24723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702521908);
INSERT INTO public.notice VALUES (24724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702522507);
INSERT INTO public.notice VALUES (24725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702523107);
INSERT INTO public.notice VALUES (24726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702523709);
INSERT INTO public.notice VALUES (24727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702524308);
INSERT INTO public.notice VALUES (24728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702524907);
INSERT INTO public.notice VALUES (24729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702525507);
INSERT INTO public.notice VALUES (24730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702526108);
INSERT INTO public.notice VALUES (24731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702526708);
INSERT INTO public.notice VALUES (24732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702527307);
INSERT INTO public.notice VALUES (24733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702527908);
INSERT INTO public.notice VALUES (24734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702528508);
INSERT INTO public.notice VALUES (24735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702529107);
INSERT INTO public.notice VALUES (24736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702529707);
INSERT INTO public.notice VALUES (24737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702530308);
INSERT INTO public.notice VALUES (24738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702530908);
INSERT INTO public.notice VALUES (24739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702531507);
INSERT INTO public.notice VALUES (24740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702532107);
INSERT INTO public.notice VALUES (24741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702532708);
INSERT INTO public.notice VALUES (24742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702533307);
INSERT INTO public.notice VALUES (24743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702533907);
INSERT INTO public.notice VALUES (24744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702534508);
INSERT INTO public.notice VALUES (24745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702535108);
INSERT INTO public.notice VALUES (24746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702535707);
INSERT INTO public.notice VALUES (24747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702536307);
INSERT INTO public.notice VALUES (24748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702536908);
INSERT INTO public.notice VALUES (24749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702537508);
INSERT INTO public.notice VALUES (24750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702538107);
INSERT INTO public.notice VALUES (24751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702538708);
INSERT INTO public.notice VALUES (24752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702539315);
INSERT INTO public.notice VALUES (24753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702539907);
INSERT INTO public.notice VALUES (24754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702540507);
INSERT INTO public.notice VALUES (24755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702541108);
INSERT INTO public.notice VALUES (24756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702541708);
INSERT INTO public.notice VALUES (24757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702542307);
INSERT INTO public.notice VALUES (24758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702542908);
INSERT INTO public.notice VALUES (24759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702543508);
INSERT INTO public.notice VALUES (24760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702544107);
INSERT INTO public.notice VALUES (24761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702544708);
INSERT INTO public.notice VALUES (24762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702545307);
INSERT INTO public.notice VALUES (24763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702545908);
INSERT INTO public.notice VALUES (24764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702546507);
INSERT INTO public.notice VALUES (24765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702547107);
INSERT INTO public.notice VALUES (24770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702550108);
INSERT INTO public.notice VALUES (24771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702550708);
INSERT INTO public.notice VALUES (24773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702551908);
INSERT INTO public.notice VALUES (26115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703357435);
INSERT INTO public.notice VALUES (26117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703358636);
INSERT INTO public.notice VALUES (26119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703359835);
INSERT INTO public.notice VALUES (26120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703360436);
INSERT INTO public.notice VALUES (26121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703361037);
INSERT INTO public.notice VALUES (26793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703764235);
INSERT INTO public.notice VALUES (26795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703765436);
INSERT INTO public.notice VALUES (27234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704028835);
INSERT INTO public.notice VALUES (27237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704030635);
INSERT INTO public.notice VALUES (27238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704031235);
INSERT INTO public.notice VALUES (27243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704034236);
INSERT INTO public.notice VALUES (24766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702547708);
INSERT INTO public.notice VALUES (24767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702548308);
INSERT INTO public.notice VALUES (24768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702548921);
INSERT INTO public.notice VALUES (24769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702549510);
INSERT INTO public.notice VALUES (24772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702551307);
INSERT INTO public.notice VALUES (24774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702552508);
INSERT INTO public.notice VALUES (24775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702553107);
INSERT INTO public.notice VALUES (24776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702553707);
INSERT INTO public.notice VALUES (24777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702554308);
INSERT INTO public.notice VALUES (24778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702554908);
INSERT INTO public.notice VALUES (24779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702555507);
INSERT INTO public.notice VALUES (24780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702556108);
INSERT INTO public.notice VALUES (24781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702556708);
INSERT INTO public.notice VALUES (24782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702557307);
INSERT INTO public.notice VALUES (24783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702557907);
INSERT INTO public.notice VALUES (24784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702558508);
INSERT INTO public.notice VALUES (24786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702559707);
INSERT INTO public.notice VALUES (24787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702560307);
INSERT INTO public.notice VALUES (26123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703362242);
INSERT INTO public.notice VALUES (26124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703362836);
INSERT INTO public.notice VALUES (26798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703767236);
INSERT INTO public.notice VALUES (26802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703769636);
INSERT INTO public.notice VALUES (27235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704029437);
INSERT INTO public.notice VALUES (27236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704030036);
INSERT INTO public.notice VALUES (27239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704031836);
INSERT INTO public.notice VALUES (27240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704032436);
INSERT INTO public.notice VALUES (27241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704033035);
INSERT INTO public.notice VALUES (27604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704250836);
INSERT INTO public.notice VALUES (27828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704385236);
INSERT INTO public.notice VALUES (27829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704385835);
INSERT INTO public.notice VALUES (24785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702559108);
INSERT INTO public.notice VALUES (24788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702560908);
INSERT INTO public.notice VALUES (24789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702561508);
INSERT INTO public.notice VALUES (24790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702562107);
INSERT INTO public.notice VALUES (24791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702562709);
INSERT INTO public.notice VALUES (24792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702563308);
INSERT INTO public.notice VALUES (24793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702563907);
INSERT INTO public.notice VALUES (24794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702564507);
INSERT INTO public.notice VALUES (24795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702565108);
INSERT INTO public.notice VALUES (24796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702565708);
INSERT INTO public.notice VALUES (24797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702566307);
INSERT INTO public.notice VALUES (24798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702566907);
INSERT INTO public.notice VALUES (24799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702567508);
INSERT INTO public.notice VALUES (24800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702568107);
INSERT INTO public.notice VALUES (24801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702568714);
INSERT INTO public.notice VALUES (24802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702569308);
INSERT INTO public.notice VALUES (24803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702569908);
INSERT INTO public.notice VALUES (24804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702570507);
INSERT INTO public.notice VALUES (24805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702571107);
INSERT INTO public.notice VALUES (24806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702571708);
INSERT INTO public.notice VALUES (24807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702572307);
INSERT INTO public.notice VALUES (24808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702572907);
INSERT INTO public.notice VALUES (24809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702573508);
INSERT INTO public.notice VALUES (24810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702574108);
INSERT INTO public.notice VALUES (24811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702574707);
INSERT INTO public.notice VALUES (24812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702575307);
INSERT INTO public.notice VALUES (24813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702575908);
INSERT INTO public.notice VALUES (24814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702576508);
INSERT INTO public.notice VALUES (24815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702577108);
INSERT INTO public.notice VALUES (24816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702577709);
INSERT INTO public.notice VALUES (24817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702578315);
INSERT INTO public.notice VALUES (24821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702580708);
INSERT INTO public.notice VALUES (24823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702581906);
INSERT INTO public.notice VALUES (24824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702582508);
INSERT INTO public.notice VALUES (24826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702583708);
INSERT INTO public.notice VALUES (24829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702585507);
INSERT INTO public.notice VALUES (26125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703363436);
INSERT INTO public.notice VALUES (26128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703365236);
INSERT INTO public.notice VALUES (26800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703768435);
INSERT INTO public.notice VALUES (27242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704033635);
INSERT INTO public.notice VALUES (27247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704036636);
INSERT INTO public.notice VALUES (27606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704252036);
INSERT INTO public.notice VALUES (27607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704252635);
INSERT INTO public.notice VALUES (27830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704386435);
INSERT INTO public.notice VALUES (27834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704388835);
INSERT INTO public.notice VALUES (24818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702578911);
INSERT INTO public.notice VALUES (24819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702579507);
INSERT INTO public.notice VALUES (24820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702580108);
INSERT INTO public.notice VALUES (24822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702581307);
INSERT INTO public.notice VALUES (24825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702583107);
INSERT INTO public.notice VALUES (24827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702584308);
INSERT INTO public.notice VALUES (24828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702584908);
INSERT INTO public.notice VALUES (24830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702586107);
INSERT INTO public.notice VALUES (24831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702586708);
INSERT INTO public.notice VALUES (24832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702587308);
INSERT INTO public.notice VALUES (24833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702587907);
INSERT INTO public.notice VALUES (24834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702588508);
INSERT INTO public.notice VALUES (24835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702589108);
INSERT INTO public.notice VALUES (24836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702589708);
INSERT INTO public.notice VALUES (24837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702590307);
INSERT INTO public.notice VALUES (24838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702590908);
INSERT INTO public.notice VALUES (24839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702591508);
INSERT INTO public.notice VALUES (24840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702592107);
INSERT INTO public.notice VALUES (24841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702592707);
INSERT INTO public.notice VALUES (24842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702593308);
INSERT INTO public.notice VALUES (24843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702593907);
INSERT INTO public.notice VALUES (26126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703364035);
INSERT INTO public.notice VALUES (26801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703769035);
INSERT INTO public.notice VALUES (26803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703770236);
INSERT INTO public.notice VALUES (27244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704034835);
INSERT INTO public.notice VALUES (27245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704035435);
INSERT INTO public.notice VALUES (27608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704253235);
INSERT INTO public.notice VALUES (27831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704387036);
INSERT INTO public.notice VALUES (27944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704454836);
INSERT INTO public.notice VALUES (27947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704456636);
INSERT INTO public.notice VALUES (24844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702594507);
INSERT INTO public.notice VALUES (24845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702595108);
INSERT INTO public.notice VALUES (24846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702595708);
INSERT INTO public.notice VALUES (24847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702596307);
INSERT INTO public.notice VALUES (24848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702596907);
INSERT INTO public.notice VALUES (24849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702597508);
INSERT INTO public.notice VALUES (24850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702598114);
INSERT INTO public.notice VALUES (24851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702598707);
INSERT INTO public.notice VALUES (24852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702599308);
INSERT INTO public.notice VALUES (24853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702599908);
INSERT INTO public.notice VALUES (24854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702600507);
INSERT INTO public.notice VALUES (24855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702601107);
INSERT INTO public.notice VALUES (24856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702601708);
INSERT INTO public.notice VALUES (24857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702602308);
INSERT INTO public.notice VALUES (24858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702602907);
INSERT INTO public.notice VALUES (24859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702603506);
INSERT INTO public.notice VALUES (24860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702604108);
INSERT INTO public.notice VALUES (24861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702604707);
INSERT INTO public.notice VALUES (24862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702605307);
INSERT INTO public.notice VALUES (26127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703364635);
INSERT INTO public.notice VALUES (26132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703367636);
INSERT INTO public.notice VALUES (26133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703368235);
INSERT INTO public.notice VALUES (26134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703368835);
INSERT INTO public.notice VALUES (26135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703369436);
INSERT INTO public.notice VALUES (26137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703370635);
INSERT INTO public.notice VALUES (26138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703371234);
INSERT INTO public.notice VALUES (26804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703770835);
INSERT INTO public.notice VALUES (26805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703771435);
INSERT INTO public.notice VALUES (26806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703772036);
INSERT INTO public.notice VALUES (27246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704036036);
INSERT INTO public.notice VALUES (24863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702605908);
INSERT INTO public.notice VALUES (24864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702606507);
INSERT INTO public.notice VALUES (24865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702607107);
INSERT INTO public.notice VALUES (24866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702607714);
INSERT INTO public.notice VALUES (24867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702608311);
INSERT INTO public.notice VALUES (24868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702608907);
INSERT INTO public.notice VALUES (24869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702609507);
INSERT INTO public.notice VALUES (24870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702610107);
INSERT INTO public.notice VALUES (24871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702610707);
INSERT INTO public.notice VALUES (24872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702611307);
INSERT INTO public.notice VALUES (24873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702611908);
INSERT INTO public.notice VALUES (24874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702612508);
INSERT INTO public.notice VALUES (24875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702613107);
INSERT INTO public.notice VALUES (24876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702613706);
INSERT INTO public.notice VALUES (24877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702614308);
INSERT INTO public.notice VALUES (24878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702614907);
INSERT INTO public.notice VALUES (24879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702615507);
INSERT INTO public.notice VALUES (24880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702616107);
INSERT INTO public.notice VALUES (24881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702616708);
INSERT INTO public.notice VALUES (24884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702618508);
INSERT INTO public.notice VALUES (24885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702619110);
INSERT INTO public.notice VALUES (24887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702620307);
INSERT INTO public.notice VALUES (26129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703365835);
INSERT INTO public.notice VALUES (26130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703366435);
INSERT INTO public.notice VALUES (26807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703772635);
INSERT INTO public.notice VALUES (26808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703773235);
INSERT INTO public.notice VALUES (26809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703773845);
INSERT INTO public.notice VALUES (26814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703776836);
INSERT INTO public.notice VALUES (26815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703777435);
INSERT INTO public.notice VALUES (26819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703779835);
INSERT INTO public.notice VALUES (24882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702617308);
INSERT INTO public.notice VALUES (24883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702617908);
INSERT INTO public.notice VALUES (24886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702619708);
INSERT INTO public.notice VALUES (24888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702620908);
INSERT INTO public.notice VALUES (24889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702621508);
INSERT INTO public.notice VALUES (24890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702622107);
INSERT INTO public.notice VALUES (24891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702622709);
INSERT INTO public.notice VALUES (24892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702623308);
INSERT INTO public.notice VALUES (24893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702623907);
INSERT INTO public.notice VALUES (24894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702624507);
INSERT INTO public.notice VALUES (24895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702625108);
INSERT INTO public.notice VALUES (24896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702625708);
INSERT INTO public.notice VALUES (24897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702626307);
INSERT INTO public.notice VALUES (24898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702626906);
INSERT INTO public.notice VALUES (24899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702627518);
INSERT INTO public.notice VALUES (24900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702628107);
INSERT INTO public.notice VALUES (24901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702628707);
INSERT INTO public.notice VALUES (24902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702629308);
INSERT INTO public.notice VALUES (24903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702629908);
INSERT INTO public.notice VALUES (24904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702630507);
INSERT INTO public.notice VALUES (24905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702631108);
INSERT INTO public.notice VALUES (24906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702631708);
INSERT INTO public.notice VALUES (24907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702632307);
INSERT INTO public.notice VALUES (24908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702632907);
INSERT INTO public.notice VALUES (24909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702633508);
INSERT INTO public.notice VALUES (24910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702634108);
INSERT INTO public.notice VALUES (24911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702634708);
INSERT INTO public.notice VALUES (24912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702635306);
INSERT INTO public.notice VALUES (24913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702635908);
INSERT INTO public.notice VALUES (24914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702636507);
INSERT INTO public.notice VALUES (24915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702637120);
INSERT INTO public.notice VALUES (24916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702637712);
INSERT INTO public.notice VALUES (24917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702638308);
INSERT INTO public.notice VALUES (24918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702638907);
INSERT INTO public.notice VALUES (24920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702640108);
INSERT INTO public.notice VALUES (26131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703367036);
INSERT INTO public.notice VALUES (26810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703774436);
INSERT INTO public.notice VALUES (27248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704037235);
INSERT INTO public.notice VALUES (27249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704037835);
INSERT INTO public.notice VALUES (27254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704040836);
INSERT INTO public.notice VALUES (27609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704253843);
INSERT INTO public.notice VALUES (27610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704254439);
INSERT INTO public.notice VALUES (27832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704387636);
INSERT INTO public.notice VALUES (27948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704457236);
INSERT INTO public.notice VALUES (27988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704481235);
INSERT INTO public.notice VALUES (24919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702639510);
INSERT INTO public.notice VALUES (24921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702640708);
INSERT INTO public.notice VALUES (24922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702641308);
INSERT INTO public.notice VALUES (24923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702641908);
INSERT INTO public.notice VALUES (24924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702642508);
INSERT INTO public.notice VALUES (24925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702643107);
INSERT INTO public.notice VALUES (24926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702643707);
INSERT INTO public.notice VALUES (24927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702644308);
INSERT INTO public.notice VALUES (24928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702644908);
INSERT INTO public.notice VALUES (24929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702645507);
INSERT INTO public.notice VALUES (24930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702646108);
INSERT INTO public.notice VALUES (24931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702646708);
INSERT INTO public.notice VALUES (24932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702647307);
INSERT INTO public.notice VALUES (24933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702647907);
INSERT INTO public.notice VALUES (24934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702648508);
INSERT INTO public.notice VALUES (24935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702649108);
INSERT INTO public.notice VALUES (24936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702649707);
INSERT INTO public.notice VALUES (24937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702650308);
INSERT INTO public.notice VALUES (24938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702650908);
INSERT INTO public.notice VALUES (24939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702651507);
INSERT INTO public.notice VALUES (24940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702652107);
INSERT INTO public.notice VALUES (24941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702652708);
INSERT INTO public.notice VALUES (24942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702653308);
INSERT INTO public.notice VALUES (24943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702653907);
INSERT INTO public.notice VALUES (24944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702654507);
INSERT INTO public.notice VALUES (24945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702655108);
INSERT INTO public.notice VALUES (24946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702655708);
INSERT INTO public.notice VALUES (24947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702656307);
INSERT INTO public.notice VALUES (24948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702656918);
INSERT INTO public.notice VALUES (24949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702657508);
INSERT INTO public.notice VALUES (24950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702658107);
INSERT INTO public.notice VALUES (24951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702658708);
INSERT INTO public.notice VALUES (24952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702659308);
INSERT INTO public.notice VALUES (26136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703370036);
INSERT INTO public.notice VALUES (26811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703775035);
INSERT INTO public.notice VALUES (26812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703775635);
INSERT INTO public.notice VALUES (26813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703776236);
INSERT INTO public.notice VALUES (26816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703778036);
INSERT INTO public.notice VALUES (27250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704038443);
INSERT INTO public.notice VALUES (27251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704039036);
INSERT INTO public.notice VALUES (27252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704039635);
INSERT INTO public.notice VALUES (27253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704040237);
INSERT INTO public.notice VALUES (27255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704041435);
INSERT INTO public.notice VALUES (27611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704255036);
INSERT INTO public.notice VALUES (27613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704256235);
INSERT INTO public.notice VALUES (24953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702659908);
INSERT INTO public.notice VALUES (24954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702660507);
INSERT INTO public.notice VALUES (24955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702661106);
INSERT INTO public.notice VALUES (24956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702661708);
INSERT INTO public.notice VALUES (24957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702662307);
INSERT INTO public.notice VALUES (24958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702662907);
INSERT INTO public.notice VALUES (24959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702663510);
INSERT INTO public.notice VALUES (24960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702664108);
INSERT INTO public.notice VALUES (24961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702664707);
INSERT INTO public.notice VALUES (24962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702665307);
INSERT INTO public.notice VALUES (24963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702665908);
INSERT INTO public.notice VALUES (24964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702666515);
INSERT INTO public.notice VALUES (24965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702667110);
INSERT INTO public.notice VALUES (24966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702667708);
INSERT INTO public.notice VALUES (24967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702668308);
INSERT INTO public.notice VALUES (24968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702668907);
INSERT INTO public.notice VALUES (24969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702669506);
INSERT INTO public.notice VALUES (24972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702671307);
INSERT INTO public.notice VALUES (24974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702672508);
INSERT INTO public.notice VALUES (24977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702674308);
INSERT INTO public.notice VALUES (24981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702676708);
INSERT INTO public.notice VALUES (26139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703371843);
INSERT INTO public.notice VALUES (26817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703778636);
INSERT INTO public.notice VALUES (26818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703779235);
INSERT INTO public.notice VALUES (26821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703781035);
INSERT INTO public.notice VALUES (26823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703782234);
INSERT INTO public.notice VALUES (26825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703783442);
INSERT INTO public.notice VALUES (26826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703784039);
INSERT INTO public.notice VALUES (26827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703784636);
INSERT INTO public.notice VALUES (26828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703785236);
INSERT INTO public.notice VALUES (24970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702670110);
INSERT INTO public.notice VALUES (24971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702670708);
INSERT INTO public.notice VALUES (24973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702671909);
INSERT INTO public.notice VALUES (24975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702673107);
INSERT INTO public.notice VALUES (24976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702673707);
INSERT INTO public.notice VALUES (24978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702674908);
INSERT INTO public.notice VALUES (24979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702675507);
INSERT INTO public.notice VALUES (24980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702676107);
INSERT INTO public.notice VALUES (24982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702677307);
INSERT INTO public.notice VALUES (24983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702677907);
INSERT INTO public.notice VALUES (24984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702678508);
INSERT INTO public.notice VALUES (24985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702679108);
INSERT INTO public.notice VALUES (24986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702679707);
INSERT INTO public.notice VALUES (24987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702680307);
INSERT INTO public.notice VALUES (24988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702680908);
INSERT INTO public.notice VALUES (24989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702681507);
INSERT INTO public.notice VALUES (24991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702682708);
INSERT INTO public.notice VALUES (26140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703372439);
INSERT INTO public.notice VALUES (26145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703375436);
INSERT INTO public.notice VALUES (26146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703376036);
INSERT INTO public.notice VALUES (26148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703377235);
INSERT INTO public.notice VALUES (26152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703379634);
INSERT INTO public.notice VALUES (26820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703780437);
INSERT INTO public.notice VALUES (26822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703781635);
INSERT INTO public.notice VALUES (27256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704042035);
INSERT INTO public.notice VALUES (27612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704255636);
INSERT INTO public.notice VALUES (27615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704257436);
INSERT INTO public.notice VALUES (27617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704258635);
INSERT INTO public.notice VALUES (27619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704259836);
INSERT INTO public.notice VALUES (27620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704260435);
INSERT INTO public.notice VALUES (24990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702682107);
INSERT INTO public.notice VALUES (24992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702683308);
INSERT INTO public.notice VALUES (24993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702683907);
INSERT INTO public.notice VALUES (24994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702684507);
INSERT INTO public.notice VALUES (24995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702685108);
INSERT INTO public.notice VALUES (24996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702685708);
INSERT INTO public.notice VALUES (24997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702686314);
INSERT INTO public.notice VALUES (24998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702686908);
INSERT INTO public.notice VALUES (24999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702687508);
INSERT INTO public.notice VALUES (25000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702688107);
INSERT INTO public.notice VALUES (25001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702688707);
INSERT INTO public.notice VALUES (25002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702689308);
INSERT INTO public.notice VALUES (25003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702689908);
INSERT INTO public.notice VALUES (25004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702690507);
INSERT INTO public.notice VALUES (25005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702691108);
INSERT INTO public.notice VALUES (25006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702691708);
INSERT INTO public.notice VALUES (25007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702692307);
INSERT INTO public.notice VALUES (25008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702692907);
INSERT INTO public.notice VALUES (25009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702693508);
INSERT INTO public.notice VALUES (25010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702694108);
INSERT INTO public.notice VALUES (25011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702694707);
INSERT INTO public.notice VALUES (25012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702695307);
INSERT INTO public.notice VALUES (25013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702695915);
INSERT INTO public.notice VALUES (25014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702696510);
INSERT INTO public.notice VALUES (25015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702697107);
INSERT INTO public.notice VALUES (25016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702697706);
INSERT INTO public.notice VALUES (25017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702698308);
INSERT INTO public.notice VALUES (25018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702698907);
INSERT INTO public.notice VALUES (25019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702699507);
INSERT INTO public.notice VALUES (25020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702700108);
INSERT INTO public.notice VALUES (25021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702700708);
INSERT INTO public.notice VALUES (25024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702702508);
INSERT INTO public.notice VALUES (25025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702703108);
INSERT INTO public.notice VALUES (26141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703373035);
INSERT INTO public.notice VALUES (26142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703373636);
INSERT INTO public.notice VALUES (26143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703374236);
INSERT INTO public.notice VALUES (26144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703374835);
INSERT INTO public.notice VALUES (26824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703782836);
INSERT INTO public.notice VALUES (26832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703787635);
INSERT INTO public.notice VALUES (26837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703790636);
INSERT INTO public.notice VALUES (26838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703791236);
INSERT INTO public.notice VALUES (27257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704042637);
INSERT INTO public.notice VALUES (27258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704043236);
INSERT INTO public.notice VALUES (27259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704043835);
INSERT INTO public.notice VALUES (27614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704256835);
INSERT INTO public.notice VALUES (25022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702701307);
INSERT INTO public.notice VALUES (25023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702701909);
INSERT INTO public.notice VALUES (25026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702703707);
INSERT INTO public.notice VALUES (25027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702704308);
INSERT INTO public.notice VALUES (25028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702704908);
INSERT INTO public.notice VALUES (25029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702705507);
INSERT INTO public.notice VALUES (25030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702706107);
INSERT INTO public.notice VALUES (25031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702706708);
INSERT INTO public.notice VALUES (25032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702707307);
INSERT INTO public.notice VALUES (25033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702707907);
INSERT INTO public.notice VALUES (25034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702708506);
INSERT INTO public.notice VALUES (25035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702709108);
INSERT INTO public.notice VALUES (25036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702709707);
INSERT INTO public.notice VALUES (25037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702710307);
INSERT INTO public.notice VALUES (25038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702710908);
INSERT INTO public.notice VALUES (25039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702711507);
INSERT INTO public.notice VALUES (25040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702712107);
INSERT INTO public.notice VALUES (25041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702712708);
INSERT INTO public.notice VALUES (25043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702713907);
INSERT INTO public.notice VALUES (25044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702714507);
INSERT INTO public.notice VALUES (25045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702715108);
INSERT INTO public.notice VALUES (26147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703376635);
INSERT INTO public.notice VALUES (26149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703377836);
INSERT INTO public.notice VALUES (26150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703378436);
INSERT INTO public.notice VALUES (26151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703379036);
INSERT INTO public.notice VALUES (26154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703380835);
INSERT INTO public.notice VALUES (26158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703383235);
INSERT INTO public.notice VALUES (26159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703383835);
INSERT INTO public.notice VALUES (26160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703384437);
INSERT INTO public.notice VALUES (26829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703785836);
INSERT INTO public.notice VALUES (25042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702713308);
INSERT INTO public.notice VALUES (25046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702715715);
INSERT INTO public.notice VALUES (25047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702716307);
INSERT INTO public.notice VALUES (25048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702716908);
INSERT INTO public.notice VALUES (25049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702717508);
INSERT INTO public.notice VALUES (25050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702718107);
INSERT INTO public.notice VALUES (25051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702718707);
INSERT INTO public.notice VALUES (25052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702719308);
INSERT INTO public.notice VALUES (25053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702719908);
INSERT INTO public.notice VALUES (25054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702720507);
INSERT INTO public.notice VALUES (25055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702721107);
INSERT INTO public.notice VALUES (25056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702721708);
INSERT INTO public.notice VALUES (25057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702722307);
INSERT INTO public.notice VALUES (25058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702722907);
INSERT INTO public.notice VALUES (25059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702723508);
INSERT INTO public.notice VALUES (25060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702724108);
INSERT INTO public.notice VALUES (25062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702725313);
INSERT INTO public.notice VALUES (25064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702726507);
INSERT INTO public.notice VALUES (25068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702728907);
INSERT INTO public.notice VALUES (26153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703380236);
INSERT INTO public.notice VALUES (26155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703381435);
INSERT INTO public.notice VALUES (26156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703382036);
INSERT INTO public.notice VALUES (26830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703786437);
INSERT INTO public.notice VALUES (26831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703787036);
INSERT INTO public.notice VALUES (26833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703788235);
INSERT INTO public.notice VALUES (27260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704044435);
INSERT INTO public.notice VALUES (27616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704258036);
INSERT INTO public.notice VALUES (27833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704388235);
INSERT INTO public.notice VALUES (27835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704389436);
INSERT INTO public.notice VALUES (27837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704390635);
INSERT INTO public.notice VALUES (25061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702724707);
INSERT INTO public.notice VALUES (25063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702725911);
INSERT INTO public.notice VALUES (25065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702727107);
INSERT INTO public.notice VALUES (25066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702727708);
INSERT INTO public.notice VALUES (25067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702728308);
INSERT INTO public.notice VALUES (25069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702729507);
INSERT INTO public.notice VALUES (25070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702730108);
INSERT INTO public.notice VALUES (25071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702730707);
INSERT INTO public.notice VALUES (25072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702731307);
INSERT INTO public.notice VALUES (25073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702731906);
INSERT INTO public.notice VALUES (25074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702732509);
INSERT INTO public.notice VALUES (25075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702733108);
INSERT INTO public.notice VALUES (25076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702733707);
INSERT INTO public.notice VALUES (25077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702734308);
INSERT INTO public.notice VALUES (25078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702734908);
INSERT INTO public.notice VALUES (25079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702735507);
INSERT INTO public.notice VALUES (25080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702736108);
INSERT INTO public.notice VALUES (25082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702737307);
INSERT INTO public.notice VALUES (25083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702737907);
INSERT INTO public.notice VALUES (25084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702738508);
INSERT INTO public.notice VALUES (25087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702740307);
INSERT INTO public.notice VALUES (25088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702740908);
INSERT INTO public.notice VALUES (26157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703382636);
INSERT INTO public.notice VALUES (26161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703385036);
INSERT INTO public.notice VALUES (26162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703385635);
INSERT INTO public.notice VALUES (26166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703388035);
INSERT INTO public.notice VALUES (26168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703389236);
INSERT INTO public.notice VALUES (26172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703391642);
INSERT INTO public.notice VALUES (26834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703788836);
INSERT INTO public.notice VALUES (26835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703789436);
INSERT INTO public.notice VALUES (25081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702736708);
INSERT INTO public.notice VALUES (25085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702739108);
INSERT INTO public.notice VALUES (25086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702739707);
INSERT INTO public.notice VALUES (25089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702741507);
INSERT INTO public.notice VALUES (25090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702742107);
INSERT INTO public.notice VALUES (25091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702742708);
INSERT INTO public.notice VALUES (25092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702743308);
INSERT INTO public.notice VALUES (25093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702743907);
INSERT INTO public.notice VALUES (25094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702744506);
INSERT INTO public.notice VALUES (25095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702745115);
INSERT INTO public.notice VALUES (25096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702745707);
INSERT INTO public.notice VALUES (25097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702746307);
INSERT INTO public.notice VALUES (25098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702746908);
INSERT INTO public.notice VALUES (25099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702747508);
INSERT INTO public.notice VALUES (25100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702748107);
INSERT INTO public.notice VALUES (25101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702748707);
INSERT INTO public.notice VALUES (25104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702750507);
INSERT INTO public.notice VALUES (25105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702751106);
INSERT INTO public.notice VALUES (25106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702751708);
INSERT INTO public.notice VALUES (25109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702753508);
INSERT INTO public.notice VALUES (26163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703386236);
INSERT INTO public.notice VALUES (26164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703386836);
INSERT INTO public.notice VALUES (26165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703387435);
INSERT INTO public.notice VALUES (26167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703388636);
INSERT INTO public.notice VALUES (26169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703389835);
INSERT INTO public.notice VALUES (26170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703390434);
INSERT INTO public.notice VALUES (26171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703391036);
INSERT INTO public.notice VALUES (26174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703392836);
INSERT INTO public.notice VALUES (26179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703395835);
INSERT INTO public.notice VALUES (26180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703396435);
INSERT INTO public.notice VALUES (25102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702749308);
INSERT INTO public.notice VALUES (25103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702749909);
INSERT INTO public.notice VALUES (25107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702752307);
INSERT INTO public.notice VALUES (25108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702752907);
INSERT INTO public.notice VALUES (25110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702754108);
INSERT INTO public.notice VALUES (25111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702754714);
INSERT INTO public.notice VALUES (25112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702755312);
INSERT INTO public.notice VALUES (25113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702755908);
INSERT INTO public.notice VALUES (25114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702756509);
INSERT INTO public.notice VALUES (25115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702757107);
INSERT INTO public.notice VALUES (25116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702757708);
INSERT INTO public.notice VALUES (25117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702758307);
INSERT INTO public.notice VALUES (25118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702758907);
INSERT INTO public.notice VALUES (25119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702759508);
INSERT INTO public.notice VALUES (25120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702760108);
INSERT INTO public.notice VALUES (25121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702760707);
INSERT INTO public.notice VALUES (25122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702761307);
INSERT INTO public.notice VALUES (25123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702761907);
INSERT INTO public.notice VALUES (25124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702762508);
INSERT INTO public.notice VALUES (25125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702763108);
INSERT INTO public.notice VALUES (25126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702763707);
INSERT INTO public.notice VALUES (25127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702764308);
INSERT INTO public.notice VALUES (25128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702764908);
INSERT INTO public.notice VALUES (25129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702765507);
INSERT INTO public.notice VALUES (25130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702766107);
INSERT INTO public.notice VALUES (25131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702766708);
INSERT INTO public.notice VALUES (25132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702767308);
INSERT INTO public.notice VALUES (25133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702767907);
INSERT INTO public.notice VALUES (25134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702768507);
INSERT INTO public.notice VALUES (25135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702769108);
INSERT INTO public.notice VALUES (25136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702769707);
INSERT INTO public.notice VALUES (26173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703392236);
INSERT INTO public.notice VALUES (26175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703393436);
INSERT INTO public.notice VALUES (26176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703394035);
INSERT INTO public.notice VALUES (26177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703394634);
INSERT INTO public.notice VALUES (26178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703395237);
INSERT INTO public.notice VALUES (26182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703397636);
INSERT INTO public.notice VALUES (26183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703398235);
INSERT INTO public.notice VALUES (26185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703399436);
INSERT INTO public.notice VALUES (26186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703400036);
INSERT INTO public.notice VALUES (26836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703790035);
INSERT INTO public.notice VALUES (26839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703791835);
INSERT INTO public.notice VALUES (26841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703793037);
INSERT INTO public.notice VALUES (26844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703794835);
INSERT INTO public.notice VALUES (26846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703796035);
INSERT INTO public.notice VALUES (25137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702770307);
INSERT INTO public.notice VALUES (25138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702770908);
INSERT INTO public.notice VALUES (25139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702771508);
INSERT INTO public.notice VALUES (25140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702772107);
INSERT INTO public.notice VALUES (25141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702772707);
INSERT INTO public.notice VALUES (25142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702773308);
INSERT INTO public.notice VALUES (25143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702773908);
INSERT INTO public.notice VALUES (25144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702774514);
INSERT INTO public.notice VALUES (25145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702775108);
INSERT INTO public.notice VALUES (25146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702775708);
INSERT INTO public.notice VALUES (25147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702776307);
INSERT INTO public.notice VALUES (25148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702776907);
INSERT INTO public.notice VALUES (25149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702777508);
INSERT INTO public.notice VALUES (25150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702778108);
INSERT INTO public.notice VALUES (25151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702778707);
INSERT INTO public.notice VALUES (25152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702779309);
INSERT INTO public.notice VALUES (25153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702779908);
INSERT INTO public.notice VALUES (25154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702780507);
INSERT INTO public.notice VALUES (25155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702781107);
INSERT INTO public.notice VALUES (25156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702781708);
INSERT INTO public.notice VALUES (25157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702782308);
INSERT INTO public.notice VALUES (25158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702782907);
INSERT INTO public.notice VALUES (25159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702783507);
INSERT INTO public.notice VALUES (25160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702784115);
INSERT INTO public.notice VALUES (25161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702784711);
INSERT INTO public.notice VALUES (25162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702785307);
INSERT INTO public.notice VALUES (25163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702785908);
INSERT INTO public.notice VALUES (25164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702786508);
INSERT INTO public.notice VALUES (25165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702787107);
INSERT INTO public.notice VALUES (25166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702787707);
INSERT INTO public.notice VALUES (25167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702788308);
INSERT INTO public.notice VALUES (25168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702788908);
INSERT INTO public.notice VALUES (25169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702789507);
INSERT INTO public.notice VALUES (25170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702790106);
INSERT INTO public.notice VALUES (25171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702790708);
INSERT INTO public.notice VALUES (25172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702791307);
INSERT INTO public.notice VALUES (25173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702791907);
INSERT INTO public.notice VALUES (25174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702792508);
INSERT INTO public.notice VALUES (25175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702793108);
INSERT INTO public.notice VALUES (25176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702793707);
INSERT INTO public.notice VALUES (25177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702794309);
INSERT INTO public.notice VALUES (25178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702794908);
INSERT INTO public.notice VALUES (25179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702795507);
INSERT INTO public.notice VALUES (25180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702796107);
INSERT INTO public.notice VALUES (25181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702796708);
INSERT INTO public.notice VALUES (25182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702797308);
INSERT INTO public.notice VALUES (25183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702797907);
INSERT INTO public.notice VALUES (25184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702798507);
INSERT INTO public.notice VALUES (25185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702799108);
INSERT INTO public.notice VALUES (25186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702799708);
INSERT INTO public.notice VALUES (25187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702800307);
INSERT INTO public.notice VALUES (25188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702800906);
INSERT INTO public.notice VALUES (25189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702801508);
INSERT INTO public.notice VALUES (25190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702802107);
INSERT INTO public.notice VALUES (25191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702802707);
INSERT INTO public.notice VALUES (25192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702803308);
INSERT INTO public.notice VALUES (25193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702803914);
INSERT INTO public.notice VALUES (25194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702804507);
INSERT INTO public.notice VALUES (25195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702805108);
INSERT INTO public.notice VALUES (25196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702805708);
INSERT INTO public.notice VALUES (25197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702806307);
INSERT INTO public.notice VALUES (25198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702806907);
INSERT INTO public.notice VALUES (25199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702807508);
INSERT INTO public.notice VALUES (25200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702808108);
INSERT INTO public.notice VALUES (25201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702808707);
INSERT INTO public.notice VALUES (25202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702809309);
INSERT INTO public.notice VALUES (25203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702809908);
INSERT INTO public.notice VALUES (25204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702810507);
INSERT INTO public.notice VALUES (25205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702811107);
INSERT INTO public.notice VALUES (25206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702811708);
INSERT INTO public.notice VALUES (25207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702812308);
INSERT INTO public.notice VALUES (25208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702812907);
INSERT INTO public.notice VALUES (25209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702813514);
INSERT INTO public.notice VALUES (25210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702814112);
INSERT INTO public.notice VALUES (25211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702814708);
INSERT INTO public.notice VALUES (25212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702815307);
INSERT INTO public.notice VALUES (25213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702815908);
INSERT INTO public.notice VALUES (25214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702816508);
INSERT INTO public.notice VALUES (25215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702817107);
INSERT INTO public.notice VALUES (25216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702817707);
INSERT INTO public.notice VALUES (25217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702818308);
INSERT INTO public.notice VALUES (25218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702818908);
INSERT INTO public.notice VALUES (25219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702819507);
INSERT INTO public.notice VALUES (25220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702820107);
INSERT INTO public.notice VALUES (25221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702820708);
INSERT INTO public.notice VALUES (25222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702821307);
INSERT INTO public.notice VALUES (25223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702821907);
INSERT INTO public.notice VALUES (25224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702822508);
INSERT INTO public.notice VALUES (25225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702823108);
INSERT INTO public.notice VALUES (25226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702823707);
INSERT INTO public.notice VALUES (25227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702824307);
INSERT INTO public.notice VALUES (25228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702824908);
INSERT INTO public.notice VALUES (25229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702825507);
INSERT INTO public.notice VALUES (25230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702826107);
INSERT INTO public.notice VALUES (25231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702826706);
INSERT INTO public.notice VALUES (25232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702827308);
INSERT INTO public.notice VALUES (25233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702827907);
INSERT INTO public.notice VALUES (25234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702828507);
INSERT INTO public.notice VALUES (25235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702829108);
INSERT INTO public.notice VALUES (25236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702829708);
INSERT INTO public.notice VALUES (25237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702830307);
INSERT INTO public.notice VALUES (25238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702830908);
INSERT INTO public.notice VALUES (25239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702831508);
INSERT INTO public.notice VALUES (25240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702832107);
INSERT INTO public.notice VALUES (25241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702832707);
INSERT INTO public.notice VALUES (25242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702833317);
INSERT INTO public.notice VALUES (25243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702833908);
INSERT INTO public.notice VALUES (26181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703397037);
INSERT INTO public.notice VALUES (26184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703398835);
INSERT INTO public.notice VALUES (26840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703792435);
INSERT INTO public.notice VALUES (27261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704045036);
INSERT INTO public.notice VALUES (27262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704045636);
INSERT INTO public.notice VALUES (27263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704046235);
INSERT INTO public.notice VALUES (27267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704048638);
INSERT INTO public.notice VALUES (27268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704049236);
INSERT INTO public.notice VALUES (27269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704049836);
INSERT INTO public.notice VALUES (27270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704050435);
INSERT INTO public.notice VALUES (27618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704259235);
INSERT INTO public.notice VALUES (27621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704261035);
INSERT INTO public.notice VALUES (27836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704390036);
INSERT INTO public.notice VALUES (25244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702834507);
INSERT INTO public.notice VALUES (25245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702835108);
INSERT INTO public.notice VALUES (25246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702835708);
INSERT INTO public.notice VALUES (25247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702836309);
INSERT INTO public.notice VALUES (25248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702836907);
INSERT INTO public.notice VALUES (25249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702837508);
INSERT INTO public.notice VALUES (25250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702838108);
INSERT INTO public.notice VALUES (25251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702838707);
INSERT INTO public.notice VALUES (25252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702839309);
INSERT INTO public.notice VALUES (25253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702839908);
INSERT INTO public.notice VALUES (25254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702840507);
INSERT INTO public.notice VALUES (25255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702841107);
INSERT INTO public.notice VALUES (25256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702841708);
INSERT INTO public.notice VALUES (25257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702842308);
INSERT INTO public.notice VALUES (25258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702842916);
INSERT INTO public.notice VALUES (25259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702843510);
INSERT INTO public.notice VALUES (25264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702846508);
INSERT INTO public.notice VALUES (25265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702847107);
INSERT INTO public.notice VALUES (26187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703400635);
INSERT INTO public.notice VALUES (26188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703401242);
INSERT INTO public.notice VALUES (26842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703793636);
INSERT INTO public.notice VALUES (27264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704046837);
INSERT INTO public.notice VALUES (27622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704261636);
INSERT INTO public.notice VALUES (27838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704391244);
INSERT INTO public.notice VALUES (27839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704391836);
INSERT INTO public.notice VALUES (27842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704393636);
INSERT INTO public.notice VALUES (27844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704394835);
INSERT INTO public.notice VALUES (27949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704457836);
INSERT INTO public.notice VALUES (27950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704458435);
INSERT INTO public.notice VALUES (27951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704459036);
INSERT INTO public.notice VALUES (25260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702844108);
INSERT INTO public.notice VALUES (25261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702844708);
INSERT INTO public.notice VALUES (25262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702845307);
INSERT INTO public.notice VALUES (25263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702845908);
INSERT INTO public.notice VALUES (25266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702847707);
INSERT INTO public.notice VALUES (25267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702848308);
INSERT INTO public.notice VALUES (25268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702848907);
INSERT INTO public.notice VALUES (25269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702849507);
INSERT INTO public.notice VALUES (25270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702850108);
INSERT INTO public.notice VALUES (25271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702850708);
INSERT INTO public.notice VALUES (25272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702851307);
INSERT INTO public.notice VALUES (25273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702851907);
INSERT INTO public.notice VALUES (25274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702852508);
INSERT INTO public.notice VALUES (25275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702853107);
INSERT INTO public.notice VALUES (25276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702853707);
INSERT INTO public.notice VALUES (25277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702854308);
INSERT INTO public.notice VALUES (25278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702854908);
INSERT INTO public.notice VALUES (25279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702855507);
INSERT INTO public.notice VALUES (25280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702856107);
INSERT INTO public.notice VALUES (25286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702859707);
INSERT INTO public.notice VALUES (26189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703401839);
INSERT INTO public.notice VALUES (26190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703402435);
INSERT INTO public.notice VALUES (26193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703404236);
INSERT INTO public.notice VALUES (26843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703794235);
INSERT INTO public.notice VALUES (26845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703795436);
INSERT INTO public.notice VALUES (26848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703797236);
INSERT INTO public.notice VALUES (26849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703797836);
INSERT INTO public.notice VALUES (27265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704047436);
INSERT INTO public.notice VALUES (27623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704262236);
INSERT INTO public.notice VALUES (27624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704262835);
INSERT INTO public.notice VALUES (25281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702856708);
INSERT INTO public.notice VALUES (25282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702857308);
INSERT INTO public.notice VALUES (25283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702857908);
INSERT INTO public.notice VALUES (25284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702858506);
INSERT INTO public.notice VALUES (25285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702859108);
INSERT INTO public.notice VALUES (25287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702860307);
INSERT INTO public.notice VALUES (25288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702860908);
INSERT INTO public.notice VALUES (25289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702861508);
INSERT INTO public.notice VALUES (25290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702862107);
INSERT INTO public.notice VALUES (25291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702862716);
INSERT INTO public.notice VALUES (25292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702863308);
INSERT INTO public.notice VALUES (25293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702863907);
INSERT INTO public.notice VALUES (25294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702864508);
INSERT INTO public.notice VALUES (25295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702865108);
INSERT INTO public.notice VALUES (25296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702865708);
INSERT INTO public.notice VALUES (25297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702866307);
INSERT INTO public.notice VALUES (25298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702866907);
INSERT INTO public.notice VALUES (25299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702867508);
INSERT INTO public.notice VALUES (25300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702868107);
INSERT INTO public.notice VALUES (25302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702869306);
INSERT INTO public.notice VALUES (26191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703403035);
INSERT INTO public.notice VALUES (26192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703403637);
INSERT INTO public.notice VALUES (26194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703404835);
INSERT INTO public.notice VALUES (26195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703405435);
INSERT INTO public.notice VALUES (26847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703796635);
INSERT INTO public.notice VALUES (26852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703799637);
INSERT INTO public.notice VALUES (26854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703800835);
INSERT INTO public.notice VALUES (27266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704048042);
INSERT INTO public.notice VALUES (27625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704263435);
INSERT INTO public.notice VALUES (27626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704264036);
INSERT INTO public.notice VALUES (25301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702868707);
INSERT INTO public.notice VALUES (25303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702869908);
INSERT INTO public.notice VALUES (25304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702870507);
INSERT INTO public.notice VALUES (25305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702871107);
INSERT INTO public.notice VALUES (25306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702871708);
INSERT INTO public.notice VALUES (25307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702872320);
INSERT INTO public.notice VALUES (25308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702872911);
INSERT INTO public.notice VALUES (25309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702873508);
INSERT INTO public.notice VALUES (25310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702874108);
INSERT INTO public.notice VALUES (25311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702874707);
INSERT INTO public.notice VALUES (25312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702875307);
INSERT INTO public.notice VALUES (25313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702875908);
INSERT INTO public.notice VALUES (25314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702876508);
INSERT INTO public.notice VALUES (25315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702877107);
INSERT INTO public.notice VALUES (25316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702877707);
INSERT INTO public.notice VALUES (25317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702878308);
INSERT INTO public.notice VALUES (26196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703406036);
INSERT INTO public.notice VALUES (26197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703406635);
INSERT INTO public.notice VALUES (26198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703407235);
INSERT INTO public.notice VALUES (26201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703409035);
INSERT INTO public.notice VALUES (26204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703410836);
INSERT INTO public.notice VALUES (26205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703411435);
INSERT INTO public.notice VALUES (26207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703412636);
INSERT INTO public.notice VALUES (26850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703798435);
INSERT INTO public.notice VALUES (27271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704051036);
INSERT INTO public.notice VALUES (27272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704051636);
INSERT INTO public.notice VALUES (27273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704052236);
INSERT INTO public.notice VALUES (27275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704053436);
INSERT INTO public.notice VALUES (27276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704054036);
INSERT INTO public.notice VALUES (27627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704264635);
INSERT INTO public.notice VALUES (25318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702878907);
INSERT INTO public.notice VALUES (25319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702879507);
INSERT INTO public.notice VALUES (25320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702880108);
INSERT INTO public.notice VALUES (25321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702880708);
INSERT INTO public.notice VALUES (25322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702881307);
INSERT INTO public.notice VALUES (25323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702881907);
INSERT INTO public.notice VALUES (25324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702882508);
INSERT INTO public.notice VALUES (25325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702883108);
INSERT INTO public.notice VALUES (25326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702883706);
INSERT INTO public.notice VALUES (25327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702884308);
INSERT INTO public.notice VALUES (25328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702884907);
INSERT INTO public.notice VALUES (25329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702885507);
INSERT INTO public.notice VALUES (25330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702886108);
INSERT INTO public.notice VALUES (25331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702886708);
INSERT INTO public.notice VALUES (25332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702887307);
INSERT INTO public.notice VALUES (25333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702887908);
INSERT INTO public.notice VALUES (25334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702888507);
INSERT INTO public.notice VALUES (25335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702889108);
INSERT INTO public.notice VALUES (25336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702889708);
INSERT INTO public.notice VALUES (25337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702890307);
INSERT INTO public.notice VALUES (25338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702890907);
INSERT INTO public.notice VALUES (25339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702891508);
INSERT INTO public.notice VALUES (25340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702892116);
INSERT INTO public.notice VALUES (25341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702892707);
INSERT INTO public.notice VALUES (25342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702893307);
INSERT INTO public.notice VALUES (25343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702893908);
INSERT INTO public.notice VALUES (25344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702894508);
INSERT INTO public.notice VALUES (25345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702895107);
INSERT INTO public.notice VALUES (25346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702895707);
INSERT INTO public.notice VALUES (25347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702896308);
INSERT INTO public.notice VALUES (25348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702896907);
INSERT INTO public.notice VALUES (25350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702898109);
INSERT INTO public.notice VALUES (25353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702899907);
INSERT INTO public.notice VALUES (25355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702901107);
INSERT INTO public.notice VALUES (25357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702902310);
INSERT INTO public.notice VALUES (25361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702904708);
INSERT INTO public.notice VALUES (25364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702906507);
INSERT INTO public.notice VALUES (26199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703407836);
INSERT INTO public.notice VALUES (26851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703799034);
INSERT INTO public.notice VALUES (26853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703800236);
INSERT INTO public.notice VALUES (26857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703802635);
INSERT INTO public.notice VALUES (26858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703803242);
INSERT INTO public.notice VALUES (26861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703805035);
INSERT INTO public.notice VALUES (27274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704052835);
INSERT INTO public.notice VALUES (27628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704265235);
INSERT INTO public.notice VALUES (25349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702897507);
INSERT INTO public.notice VALUES (25351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702898708);
INSERT INTO public.notice VALUES (25352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702899307);
INSERT INTO public.notice VALUES (25354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702900508);
INSERT INTO public.notice VALUES (25356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702901714);
INSERT INTO public.notice VALUES (25358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702902908);
INSERT INTO public.notice VALUES (25359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702903508);
INSERT INTO public.notice VALUES (25360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702904107);
INSERT INTO public.notice VALUES (25362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702905307);
INSERT INTO public.notice VALUES (25363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702905907);
INSERT INTO public.notice VALUES (25365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702907108);
INSERT INTO public.notice VALUES (25366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702907707);
INSERT INTO public.notice VALUES (25367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702908307);
INSERT INTO public.notice VALUES (25368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702908908);
INSERT INTO public.notice VALUES (25369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702909508);
INSERT INTO public.notice VALUES (25370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702910107);
INSERT INTO public.notice VALUES (25371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702910707);
INSERT INTO public.notice VALUES (25372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702911308);
INSERT INTO public.notice VALUES (25374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702912507);
INSERT INTO public.notice VALUES (25375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702913108);
INSERT INTO public.notice VALUES (25377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702914307);
INSERT INTO public.notice VALUES (25379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702915508);
INSERT INTO public.notice VALUES (25382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702917308);
INSERT INTO public.notice VALUES (26200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703408436);
INSERT INTO public.notice VALUES (26202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703409635);
INSERT INTO public.notice VALUES (26203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703410236);
INSERT INTO public.notice VALUES (26206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703412036);
INSERT INTO public.notice VALUES (26208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703413236);
INSERT INTO public.notice VALUES (26855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703801437);
INSERT INTO public.notice VALUES (26856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703802036);
INSERT INTO public.notice VALUES (25373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702911908);
INSERT INTO public.notice VALUES (25376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702913708);
INSERT INTO public.notice VALUES (25378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702914907);
INSERT INTO public.notice VALUES (25380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702916108);
INSERT INTO public.notice VALUES (25381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702916707);
INSERT INTO public.notice VALUES (25383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702917908);
INSERT INTO public.notice VALUES (25384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702918507);
INSERT INTO public.notice VALUES (25385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1702919107);
INSERT INTO public.notice VALUES (26209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703413835);
INSERT INTO public.notice VALUES (26211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703415036);
INSERT INTO public.notice VALUES (26859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1703803836);
INSERT INTO public.notice VALUES (27277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704054635);
INSERT INTO public.notice VALUES (27278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704055235);
INSERT INTO public.notice VALUES (27629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704265837);
INSERT INTO public.notice VALUES (27840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704392435);
INSERT INTO public.notice VALUES (28010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704494435);
INSERT INTO public.notice VALUES (28011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704495036);
INSERT INTO public.notice VALUES (28012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704495635);
INSERT INTO public.notice VALUES (28013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704496235);
INSERT INTO public.notice VALUES (28014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704496836);
INSERT INTO public.notice VALUES (28015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704497436);
INSERT INTO public.notice VALUES (28016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704498035);
INSERT INTO public.notice VALUES (28017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704498635);
INSERT INTO public.notice VALUES (28018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704499236);
INSERT INTO public.notice VALUES (28019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704499836);
INSERT INTO public.notice VALUES (28020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704500436);
INSERT INTO public.notice VALUES (28021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704501036);
INSERT INTO public.notice VALUES (28022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704501636);
INSERT INTO public.notice VALUES (28023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704502235);
INSERT INTO public.notice VALUES (28024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704502835);
INSERT INTO public.notice VALUES (28025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704503436);
INSERT INTO public.notice VALUES (28026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704504036);
INSERT INTO public.notice VALUES (28027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704504635);
INSERT INTO public.notice VALUES (28028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704505237);
INSERT INTO public.notice VALUES (28029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704505836);
INSERT INTO public.notice VALUES (28030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704506435);
INSERT INTO public.notice VALUES (28031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704507035);
INSERT INTO public.notice VALUES (28032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704507636);
INSERT INTO public.notice VALUES (28033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704508236);
INSERT INTO public.notice VALUES (28034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704508843);
INSERT INTO public.notice VALUES (28035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704509436);
INSERT INTO public.notice VALUES (28036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704510036);
INSERT INTO public.notice VALUES (28037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704510635);
INSERT INTO public.notice VALUES (28038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704511235);
INSERT INTO public.notice VALUES (28039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704511836);
INSERT INTO public.notice VALUES (28040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704512435);
INSERT INTO public.notice VALUES (28041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704513035);
INSERT INTO public.notice VALUES (28042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704513636);
INSERT INTO public.notice VALUES (28043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704514236);
INSERT INTO public.notice VALUES (28044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704514835);
INSERT INTO public.notice VALUES (28045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704515435);
INSERT INTO public.notice VALUES (28046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704516036);
INSERT INTO public.notice VALUES (28047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704516635);
INSERT INTO public.notice VALUES (28048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704517235);
INSERT INTO public.notice VALUES (28049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704517836);
INSERT INTO public.notice VALUES (28050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704518443);
INSERT INTO public.notice VALUES (28051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704519039);
INSERT INTO public.notice VALUES (28052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704519635);
INSERT INTO public.notice VALUES (28053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704520236);
INSERT INTO public.notice VALUES (28054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704520836);
INSERT INTO public.notice VALUES (28055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704521435);
INSERT INTO public.notice VALUES (28056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704522036);
INSERT INTO public.notice VALUES (28057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704522636);
INSERT INTO public.notice VALUES (28058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704523235);
INSERT INTO public.notice VALUES (28059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704523835);
INSERT INTO public.notice VALUES (28060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704524436);
INSERT INTO public.notice VALUES (28061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704525036);
INSERT INTO public.notice VALUES (28064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704526836);
INSERT INTO public.notice VALUES (28065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704527436);
INSERT INTO public.notice VALUES (28066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704528035);
INSERT INTO public.notice VALUES (28062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704525635);
INSERT INTO public.notice VALUES (28063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704526235);
INSERT INTO public.notice VALUES (28067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704528635);
INSERT INTO public.notice VALUES (28068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704529236);
INSERT INTO public.notice VALUES (28069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704529835);
INSERT INTO public.notice VALUES (28070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704530435);
INSERT INTO public.notice VALUES (28071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704531036);
INSERT INTO public.notice VALUES (28072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704531636);
INSERT INTO public.notice VALUES (28073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704532235);
INSERT INTO public.notice VALUES (28074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704532835);
INSERT INTO public.notice VALUES (28075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704533437);
INSERT INTO public.notice VALUES (28076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704534036);
INSERT INTO public.notice VALUES (28077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704534636);
INSERT INTO public.notice VALUES (28078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704535235);
INSERT INTO public.notice VALUES (28079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704535835);
INSERT INTO public.notice VALUES (28080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704536436);
INSERT INTO public.notice VALUES (28085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704539436);
INSERT INTO public.notice VALUES (28081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704537036);
INSERT INTO public.notice VALUES (28082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704537635);
INSERT INTO public.notice VALUES (28083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704538242);
INSERT INTO public.notice VALUES (28084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704538835);
INSERT INTO public.notice VALUES (28086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704540035);
INSERT INTO public.notice VALUES (28087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704540635);
INSERT INTO public.notice VALUES (28088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704541235);
INSERT INTO public.notice VALUES (28089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704541836);
INSERT INTO public.notice VALUES (28090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704542435);
INSERT INTO public.notice VALUES (28091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704543035);
INSERT INTO public.notice VALUES (28092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704543636);
INSERT INTO public.notice VALUES (28093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704544237);
INSERT INTO public.notice VALUES (28094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704544835);
INSERT INTO public.notice VALUES (28095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704545435);
INSERT INTO public.notice VALUES (28096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704546036);
INSERT INTO public.notice VALUES (28097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704546636);
INSERT INTO public.notice VALUES (28098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704547235);
INSERT INTO public.notice VALUES (28099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704547844);
INSERT INTO public.notice VALUES (28100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704548439);
INSERT INTO public.notice VALUES (28101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704549035);
INSERT INTO public.notice VALUES (28102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704549635);
INSERT INTO public.notice VALUES (28103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704550236);
INSERT INTO public.notice VALUES (28104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704550836);
INSERT INTO public.notice VALUES (28105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704551435);
INSERT INTO public.notice VALUES (28106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704552034);
INSERT INTO public.notice VALUES (28107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704552636);
INSERT INTO public.notice VALUES (28108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704553236);
INSERT INTO public.notice VALUES (28109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704553835);
INSERT INTO public.notice VALUES (28110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704554436);
INSERT INTO public.notice VALUES (28111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704555036);
INSERT INTO public.notice VALUES (28112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704555635);
INSERT INTO public.notice VALUES (28113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704556237);
INSERT INTO public.notice VALUES (28114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704556837);
INSERT INTO public.notice VALUES (28115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704557435);
INSERT INTO public.notice VALUES (28116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704558035);
INSERT INTO public.notice VALUES (28117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704558636);
INSERT INTO public.notice VALUES (28118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704559236);
INSERT INTO public.notice VALUES (28119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704559836);
INSERT INTO public.notice VALUES (28120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704560436);
INSERT INTO public.notice VALUES (28121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704561035);
INSERT INTO public.notice VALUES (28122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704561635);
INSERT INTO public.notice VALUES (28123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704562237);
INSERT INTO public.notice VALUES (28124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704562836);
INSERT INTO public.notice VALUES (28125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704563435);
INSERT INTO public.notice VALUES (28126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704564036);
INSERT INTO public.notice VALUES (28127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704564636);
INSERT INTO public.notice VALUES (28128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704565236);
INSERT INTO public.notice VALUES (28131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704567036);
INSERT INTO public.notice VALUES (28135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704569436);
INSERT INTO public.notice VALUES (28129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704565835);
INSERT INTO public.notice VALUES (28130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704566436);
INSERT INTO public.notice VALUES (28132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704567643);
INSERT INTO public.notice VALUES (28133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704568235);
INSERT INTO public.notice VALUES (28134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704568836);
INSERT INTO public.notice VALUES (28136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704570036);
INSERT INTO public.notice VALUES (28137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704570635);
INSERT INTO public.notice VALUES (28138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704571236);
INSERT INTO public.notice VALUES (28139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704571835);
INSERT INTO public.notice VALUES (28140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704572435);
INSERT INTO public.notice VALUES (28141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704573036);
INSERT INTO public.notice VALUES (28142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704573636);
INSERT INTO public.notice VALUES (28143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704574235);
INSERT INTO public.notice VALUES (28144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704574835);
INSERT INTO public.notice VALUES (28145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704575436);
INSERT INTO public.notice VALUES (28146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704576036);
INSERT INTO public.notice VALUES (28147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704576635);
INSERT INTO public.notice VALUES (28148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704577245);
INSERT INTO public.notice VALUES (28149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704577840);
INSERT INTO public.notice VALUES (28150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704578435);
INSERT INTO public.notice VALUES (28151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704579035);
INSERT INTO public.notice VALUES (28152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704579636);
INSERT INTO public.notice VALUES (28153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704580235);
INSERT INTO public.notice VALUES (28154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704580835);
INSERT INTO public.notice VALUES (28155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704581436);
INSERT INTO public.notice VALUES (28156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704582036);
INSERT INTO public.notice VALUES (28157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704582635);
INSERT INTO public.notice VALUES (28158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704583235);
INSERT INTO public.notice VALUES (28159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704583836);
INSERT INTO public.notice VALUES (28160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704584435);
INSERT INTO public.notice VALUES (28161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704585035);
INSERT INTO public.notice VALUES (28162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704585636);
INSERT INTO public.notice VALUES (28163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704586236);
INSERT INTO public.notice VALUES (28164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704586835);
INSERT INTO public.notice VALUES (28165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704587435);
INSERT INTO public.notice VALUES (28166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704588036);
INSERT INTO public.notice VALUES (28167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704588637);
INSERT INTO public.notice VALUES (28168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704589235);
INSERT INTO public.notice VALUES (28169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704589834);
INSERT INTO public.notice VALUES (28170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704590436);
INSERT INTO public.notice VALUES (28171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704591035);
INSERT INTO public.notice VALUES (28172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704591635);
INSERT INTO public.notice VALUES (28173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704592236);
INSERT INTO public.notice VALUES (28174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704592836);
INSERT INTO public.notice VALUES (28175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704593435);
INSERT INTO public.notice VALUES (28176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704594036);
INSERT INTO public.notice VALUES (28177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704594636);
INSERT INTO public.notice VALUES (28178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704595235);
INSERT INTO public.notice VALUES (28179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704595835);
INSERT INTO public.notice VALUES (28180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704596436);
INSERT INTO public.notice VALUES (28181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704597043);
INSERT INTO public.notice VALUES (28182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704597635);
INSERT INTO public.notice VALUES (28183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704598237);
INSERT INTO public.notice VALUES (28184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704598836);
INSERT INTO public.notice VALUES (28185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704599435);
INSERT INTO public.notice VALUES (28186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704600035);
INSERT INTO public.notice VALUES (28187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704600636);
INSERT INTO public.notice VALUES (28188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704601236);
INSERT INTO public.notice VALUES (28189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704601835);
INSERT INTO public.notice VALUES (28190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704602437);
INSERT INTO public.notice VALUES (28191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704603036);
INSERT INTO public.notice VALUES (28192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704603635);
INSERT INTO public.notice VALUES (28193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704604235);
INSERT INTO public.notice VALUES (28194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704604836);
INSERT INTO public.notice VALUES (28195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704605436);
INSERT INTO public.notice VALUES (28197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704606644);
INSERT INTO public.notice VALUES (28196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704606035);
INSERT INTO public.notice VALUES (28198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704607240);
INSERT INTO public.notice VALUES (28199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704607835);
INSERT INTO public.notice VALUES (28200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704608435);
INSERT INTO public.notice VALUES (28201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704609038);
INSERT INTO public.notice VALUES (28202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704609636);
INSERT INTO public.notice VALUES (28203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704610235);
INSERT INTO public.notice VALUES (28204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704610836);
INSERT INTO public.notice VALUES (28205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704611436);
INSERT INTO public.notice VALUES (28206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704612035);
INSERT INTO public.notice VALUES (28207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704612635);
INSERT INTO public.notice VALUES (28208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704613236);
INSERT INTO public.notice VALUES (28209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704613836);
INSERT INTO public.notice VALUES (28210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704614435);
INSERT INTO public.notice VALUES (28211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704615036);
INSERT INTO public.notice VALUES (28212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704615636);
INSERT INTO public.notice VALUES (28213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704616235);
INSERT INTO public.notice VALUES (28214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704616835);
INSERT INTO public.notice VALUES (28215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704617436);
INSERT INTO public.notice VALUES (28222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704621636);
INSERT INTO public.notice VALUES (28216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704618035);
INSERT INTO public.notice VALUES (28217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704618635);
INSERT INTO public.notice VALUES (28218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704619236);
INSERT INTO public.notice VALUES (28219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704619836);
INSERT INTO public.notice VALUES (28220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704620435);
INSERT INTO public.notice VALUES (28221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704621035);
INSERT INTO public.notice VALUES (28223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704622236);
INSERT INTO public.notice VALUES (28224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704622835);
INSERT INTO public.notice VALUES (28225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704623437);
INSERT INTO public.notice VALUES (28226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704624036);
INSERT INTO public.notice VALUES (28227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704624635);
INSERT INTO public.notice VALUES (28228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704625235);
INSERT INTO public.notice VALUES (28229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704625836);
INSERT INTO public.notice VALUES (28230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704626442);
INSERT INTO public.notice VALUES (28231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704627035);
INSERT INTO public.notice VALUES (28232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704627637);
INSERT INTO public.notice VALUES (28236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704630036);
INSERT INTO public.notice VALUES (28233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704628236);
INSERT INTO public.notice VALUES (28234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704628835);
INSERT INTO public.notice VALUES (28235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704629435);
INSERT INTO public.notice VALUES (28237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704630635);
INSERT INTO public.notice VALUES (28238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704631235);
INSERT INTO public.notice VALUES (28239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704631836);
INSERT INTO public.notice VALUES (28240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704632436);
INSERT INTO public.notice VALUES (28241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704633035);
INSERT INTO public.notice VALUES (28242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704633635);
INSERT INTO public.notice VALUES (28243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704634237);
INSERT INTO public.notice VALUES (28244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704634835);
INSERT INTO public.notice VALUES (28245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704635435);
INSERT INTO public.notice VALUES (28246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704636044);
INSERT INTO public.notice VALUES (28247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704636640);
INSERT INTO public.notice VALUES (28248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704637235);
INSERT INTO public.notice VALUES (28249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704637835);
INSERT INTO public.notice VALUES (28250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704638437);
INSERT INTO public.notice VALUES (28251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704639036);
INSERT INTO public.notice VALUES (28252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704639635);
INSERT INTO public.notice VALUES (28253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704640237);
INSERT INTO public.notice VALUES (28254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704640836);
INSERT INTO public.notice VALUES (28255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704641435);
INSERT INTO public.notice VALUES (28256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704642035);
INSERT INTO public.notice VALUES (28257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704642636);
INSERT INTO public.notice VALUES (28258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704643235);
INSERT INTO public.notice VALUES (28259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704643835);
INSERT INTO public.notice VALUES (28260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704644437);
INSERT INTO public.notice VALUES (28261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704645036);
INSERT INTO public.notice VALUES (28262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704645635);
INSERT INTO public.notice VALUES (28263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704646235);
INSERT INTO public.notice VALUES (28264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704646836);
INSERT INTO public.notice VALUES (28265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704647436);
INSERT INTO public.notice VALUES (28266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704648035);
INSERT INTO public.notice VALUES (28268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704649236);
INSERT INTO public.notice VALUES (28270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704650437);
INSERT INTO public.notice VALUES (28271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704651035);
INSERT INTO public.notice VALUES (28267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704648636);
INSERT INTO public.notice VALUES (28269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704649835);
INSERT INTO public.notice VALUES (28272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704651636);
INSERT INTO public.notice VALUES (28273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704652236);
INSERT INTO public.notice VALUES (28274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704652835);
INSERT INTO public.notice VALUES (28275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704653436);
INSERT INTO public.notice VALUES (28276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704654036);
INSERT INTO public.notice VALUES (28277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704654635);
INSERT INTO public.notice VALUES (28278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704655235);
INSERT INTO public.notice VALUES (28279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704655843);
INSERT INTO public.notice VALUES (28280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704656436);
INSERT INTO public.notice VALUES (28281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704657036);
INSERT INTO public.notice VALUES (28282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704657635);
INSERT INTO public.notice VALUES (28283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704658236);
INSERT INTO public.notice VALUES (28284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704658836);
INSERT INTO public.notice VALUES (28285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704659435);
INSERT INTO public.notice VALUES (28286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704660035);
INSERT INTO public.notice VALUES (28287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704660636);
INSERT INTO public.notice VALUES (28288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704661235);
INSERT INTO public.notice VALUES (28289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704661835);
INSERT INTO public.notice VALUES (28291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704663036);
INSERT INTO public.notice VALUES (28290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704662436);
INSERT INTO public.notice VALUES (28292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704663635);
INSERT INTO public.notice VALUES (28293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704664235);
INSERT INTO public.notice VALUES (28294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704664836);
INSERT INTO public.notice VALUES (28295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704665444);
INSERT INTO public.notice VALUES (28296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704666038);
INSERT INTO public.notice VALUES (28297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704666636);
INSERT INTO public.notice VALUES (28298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704667236);
INSERT INTO public.notice VALUES (28299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704667835);
INSERT INTO public.notice VALUES (28300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704668435);
INSERT INTO public.notice VALUES (28301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704669036);
INSERT INTO public.notice VALUES (28302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704669636);
INSERT INTO public.notice VALUES (28303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704670235);
INSERT INTO public.notice VALUES (28304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704670834);
INSERT INTO public.notice VALUES (28305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704671436);
INSERT INTO public.notice VALUES (28306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704672035);
INSERT INTO public.notice VALUES (28307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704672635);
INSERT INTO public.notice VALUES (28308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704673236);
INSERT INTO public.notice VALUES (28309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704673835);
INSERT INTO public.notice VALUES (28310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704674435);
INSERT INTO public.notice VALUES (28311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704675036);
INSERT INTO public.notice VALUES (28312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704675636);
INSERT INTO public.notice VALUES (28313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704676235);
INSERT INTO public.notice VALUES (28314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704676835);
INSERT INTO public.notice VALUES (28315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704677437);
INSERT INTO public.notice VALUES (28316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704678036);
INSERT INTO public.notice VALUES (28317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704678635);
INSERT INTO public.notice VALUES (28318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704679237);
INSERT INTO public.notice VALUES (28319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704679834);
INSERT INTO public.notice VALUES (28320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704680436);
INSERT INTO public.notice VALUES (28321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704681654);
INSERT INTO public.notice VALUES (28322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704682253);
INSERT INTO public.notice VALUES (28323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704682852);
INSERT INTO public.notice VALUES (28324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704683454);
INSERT INTO public.notice VALUES (28325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704684054);
INSERT INTO public.notice VALUES (28326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704684662);
INSERT INTO public.notice VALUES (28327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704685252);
INSERT INTO public.notice VALUES (28328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704685852);
INSERT INTO public.notice VALUES (28329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704686453);
INSERT INTO public.notice VALUES (28330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704687053);
INSERT INTO public.notice VALUES (28331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704687655);
INSERT INTO public.notice VALUES (28332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704688251);
INSERT INTO public.notice VALUES (28333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704688853);
INSERT INTO public.notice VALUES (28334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704689452);
INSERT INTO public.notice VALUES (28335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704690052);
INSERT INTO public.notice VALUES (28336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704690653);
INSERT INTO public.notice VALUES (28337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704691253);
INSERT INTO public.notice VALUES (28338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704691852);
INSERT INTO public.notice VALUES (28339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704692454);
INSERT INTO public.notice VALUES (28340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704693053);
INSERT INTO public.notice VALUES (28341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704693652);
INSERT INTO public.notice VALUES (28342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704694259);
INSERT INTO public.notice VALUES (28343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704694857);
INSERT INTO public.notice VALUES (28344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704695453);
INSERT INTO public.notice VALUES (28345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704696052);
INSERT INTO public.notice VALUES (28346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704696652);
INSERT INTO public.notice VALUES (28347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704697253);
INSERT INTO public.notice VALUES (28348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704697853);
INSERT INTO public.notice VALUES (28349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704698452);
INSERT INTO public.notice VALUES (28350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704699052);
INSERT INTO public.notice VALUES (28351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704699653);
INSERT INTO public.notice VALUES (28352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704700253);
INSERT INTO public.notice VALUES (28353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704700852);
INSERT INTO public.notice VALUES (28354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704701452);
INSERT INTO public.notice VALUES (28355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704702052);
INSERT INTO public.notice VALUES (28356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704702653);
INSERT INTO public.notice VALUES (28357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704703252);
INSERT INTO public.notice VALUES (28358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704703852);
INSERT INTO public.notice VALUES (28359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704704452);
INSERT INTO public.notice VALUES (28360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704705052);
INSERT INTO public.notice VALUES (28361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704705652);
INSERT INTO public.notice VALUES (28362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704706253);
INSERT INTO public.notice VALUES (28363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704706853);
INSERT INTO public.notice VALUES (28364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704707453);
INSERT INTO public.notice VALUES (28365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704708055);
INSERT INTO public.notice VALUES (28366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704708654);
INSERT INTO public.notice VALUES (28367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704709253);
INSERT INTO public.notice VALUES (28368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704709852);
INSERT INTO public.notice VALUES (28369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704710453);
INSERT INTO public.notice VALUES (28370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704711053);
INSERT INTO public.notice VALUES (28371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704711653);
INSERT INTO public.notice VALUES (28372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704712252);
INSERT INTO public.notice VALUES (28373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704712854);
INSERT INTO public.notice VALUES (28374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704713453);
INSERT INTO public.notice VALUES (28375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704714062);
INSERT INTO public.notice VALUES (28376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704714653);
INSERT INTO public.notice VALUES (28377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704715253);
INSERT INTO public.notice VALUES (28378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704715853);
INSERT INTO public.notice VALUES (28379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704716452);
INSERT INTO public.notice VALUES (28380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704717052);
INSERT INTO public.notice VALUES (28381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704717653);
INSERT INTO public.notice VALUES (28382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704718253);
INSERT INTO public.notice VALUES (28383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704718852);
INSERT INTO public.notice VALUES (28385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704720053);
INSERT INTO public.notice VALUES (28384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704719454);
INSERT INTO public.notice VALUES (28386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704720653);
INSERT INTO public.notice VALUES (28387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704721252);
INSERT INTO public.notice VALUES (28388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704721853);
INSERT INTO public.notice VALUES (28389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704722453);
INSERT INTO public.notice VALUES (28390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704723052);
INSERT INTO public.notice VALUES (28391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704723661);
INSERT INTO public.notice VALUES (28392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704724257);
INSERT INTO public.notice VALUES (28393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704724852);
INSERT INTO public.notice VALUES (28394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704725452);
INSERT INTO public.notice VALUES (28395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704726053);
INSERT INTO public.notice VALUES (28396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704726653);
INSERT INTO public.notice VALUES (28397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704727252);
INSERT INTO public.notice VALUES (28398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704727854);
INSERT INTO public.notice VALUES (28399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704728452);
INSERT INTO public.notice VALUES (28400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704729054);
INSERT INTO public.notice VALUES (28401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704729653);
INSERT INTO public.notice VALUES (28402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704730252);
INSERT INTO public.notice VALUES (28403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704730852);
INSERT INTO public.notice VALUES (28404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704731453);
INSERT INTO public.notice VALUES (28405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704732053);
INSERT INTO public.notice VALUES (28406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704732652);
INSERT INTO public.notice VALUES (28407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704733254);
INSERT INTO public.notice VALUES (28408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704733853);
INSERT INTO public.notice VALUES (28409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704734452);
INSERT INTO public.notice VALUES (28410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704735052);
INSERT INTO public.notice VALUES (28411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704735653);
INSERT INTO public.notice VALUES (28412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704736253);
INSERT INTO public.notice VALUES (28413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704736853);
INSERT INTO public.notice VALUES (28414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704737454);
INSERT INTO public.notice VALUES (28415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704738053);
INSERT INTO public.notice VALUES (28416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704738653);
INSERT INTO public.notice VALUES (28417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704739253);
INSERT INTO public.notice VALUES (28418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704739853);
INSERT INTO public.notice VALUES (28419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704740453);
INSERT INTO public.notice VALUES (28420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704741052);
INSERT INTO public.notice VALUES (28421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704741652);
INSERT INTO public.notice VALUES (28422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704742253);
INSERT INTO public.notice VALUES (28423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704742853);
INSERT INTO public.notice VALUES (28424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704743460);
INSERT INTO public.notice VALUES (28425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704744053);
INSERT INTO public.notice VALUES (28426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704744653);
INSERT INTO public.notice VALUES (28427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704745253);
INSERT INTO public.notice VALUES (28428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704745852);
INSERT INTO public.notice VALUES (28429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704746453);
INSERT INTO public.notice VALUES (28430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704747053);
INSERT INTO public.notice VALUES (28431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704747652);
INSERT INTO public.notice VALUES (28432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704748252);
INSERT INTO public.notice VALUES (28433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704748853);
INSERT INTO public.notice VALUES (28434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704749452);
INSERT INTO public.notice VALUES (28435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704750052);
INSERT INTO public.notice VALUES (28436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704750653);
INSERT INTO public.notice VALUES (28437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704751253);
INSERT INTO public.notice VALUES (28438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704751852);
INSERT INTO public.notice VALUES (28439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704752452);
INSERT INTO public.notice VALUES (28440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704753061);
INSERT INTO public.notice VALUES (28441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704753657);
INSERT INTO public.notice VALUES (28442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704754252);
INSERT INTO public.notice VALUES (28443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704754853);
INSERT INTO public.notice VALUES (28444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704755453);
INSERT INTO public.notice VALUES (28445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704756052);
INSERT INTO public.notice VALUES (28446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704756652);
INSERT INTO public.notice VALUES (28447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704757253);
INSERT INTO public.notice VALUES (28448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704757853);
INSERT INTO public.notice VALUES (28450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704759054);
INSERT INTO public.notice VALUES (28452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704760253);
INSERT INTO public.notice VALUES (28453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704760852);
INSERT INTO public.notice VALUES (28455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704762053);
INSERT INTO public.notice VALUES (28456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704762652);
INSERT INTO public.notice VALUES (28449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704758452);
INSERT INTO public.notice VALUES (28451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704759653);
INSERT INTO public.notice VALUES (28454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704761453);
INSERT INTO public.notice VALUES (28457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704763252);
INSERT INTO public.notice VALUES (28458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704763853);
INSERT INTO public.notice VALUES (28459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704764453);
INSERT INTO public.notice VALUES (28460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704765052);
INSERT INTO public.notice VALUES (28461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704765653);
INSERT INTO public.notice VALUES (28462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704766252);
INSERT INTO public.notice VALUES (28463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704766852);
INSERT INTO public.notice VALUES (28464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704767452);
INSERT INTO public.notice VALUES (28465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704768052);
INSERT INTO public.notice VALUES (28466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704768653);
INSERT INTO public.notice VALUES (28467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704769253);
INSERT INTO public.notice VALUES (28468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704769853);
INSERT INTO public.notice VALUES (28469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704770453);
INSERT INTO public.notice VALUES (28470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704771053);
INSERT INTO public.notice VALUES (28471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704771652);
INSERT INTO public.notice VALUES (28472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704772253);
INSERT INTO public.notice VALUES (28473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704772861);
INSERT INTO public.notice VALUES (28474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704773452);
INSERT INTO public.notice VALUES (28475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704774052);
INSERT INTO public.notice VALUES (28476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704774652);
INSERT INTO public.notice VALUES (28477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704775252);
INSERT INTO public.notice VALUES (28478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704775853);
INSERT INTO public.notice VALUES (28479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704776453);
INSERT INTO public.notice VALUES (28480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704777052);
INSERT INTO public.notice VALUES (28481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704777654);
INSERT INTO public.notice VALUES (28482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704778253);
INSERT INTO public.notice VALUES (28483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704778852);
INSERT INTO public.notice VALUES (28484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704779452);
INSERT INTO public.notice VALUES (28485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704780053);
INSERT INTO public.notice VALUES (28486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704780653);
INSERT INTO public.notice VALUES (28487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704781252);
INSERT INTO public.notice VALUES (28488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704781852);
INSERT INTO public.notice VALUES (28489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704782461);
INSERT INTO public.notice VALUES (28490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704783056);
INSERT INTO public.notice VALUES (28491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704783652);
INSERT INTO public.notice VALUES (28492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704784252);
INSERT INTO public.notice VALUES (28493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704784853);
INSERT INTO public.notice VALUES (28494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704785453);
INSERT INTO public.notice VALUES (28495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704786052);
INSERT INTO public.notice VALUES (28496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704786652);
INSERT INTO public.notice VALUES (28497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704787253);
INSERT INTO public.notice VALUES (28498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704787853);
INSERT INTO public.notice VALUES (28499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704788453);
INSERT INTO public.notice VALUES (28500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704789052);
INSERT INTO public.notice VALUES (28501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704789652);
INSERT INTO public.notice VALUES (28502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704790253);
INSERT INTO public.notice VALUES (28504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704791453);
INSERT INTO public.notice VALUES (28505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704792052);
INSERT INTO public.notice VALUES (28510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704795052);
INSERT INTO public.notice VALUES (28513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704796853);
INSERT INTO public.notice VALUES (28514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704797453);
INSERT INTO public.notice VALUES (28519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704800453);
INSERT INTO public.notice VALUES (28520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704801052);
INSERT INTO public.notice VALUES (28521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704801653);
INSERT INTO public.notice VALUES (28522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704802262);
INSERT INTO public.notice VALUES (28523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704802852);
INSERT INTO public.notice VALUES (28526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704804653);
INSERT INTO public.notice VALUES (28527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704805252);
INSERT INTO public.notice VALUES (28528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704805854);
INSERT INTO public.notice VALUES (28529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704806453);
INSERT INTO public.notice VALUES (28503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704790853);
INSERT INTO public.notice VALUES (28506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704792652);
INSERT INTO public.notice VALUES (28507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704793253);
INSERT INTO public.notice VALUES (28508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704793853);
INSERT INTO public.notice VALUES (28509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704794453);
INSERT INTO public.notice VALUES (28511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704795653);
INSERT INTO public.notice VALUES (28512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704796252);
INSERT INTO public.notice VALUES (28515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704798053);
INSERT INTO public.notice VALUES (28516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704798652);
INSERT INTO public.notice VALUES (28517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704799252);
INSERT INTO public.notice VALUES (28518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704799853);
INSERT INTO public.notice VALUES (28524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704803452);
INSERT INTO public.notice VALUES (28525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704804053);
INSERT INTO public.notice VALUES (28530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704807053);
INSERT INTO public.notice VALUES (28531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704807652);
INSERT INTO public.notice VALUES (28532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704808252);
INSERT INTO public.notice VALUES (28533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704808854);
INSERT INTO public.notice VALUES (28534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704809453);
INSERT INTO public.notice VALUES (28535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704810052);
INSERT INTO public.notice VALUES (28536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704810653);
INSERT INTO public.notice VALUES (28538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704811861);
INSERT INTO public.notice VALUES (28537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704811253);
INSERT INTO public.notice VALUES (28539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704812457);
INSERT INTO public.notice VALUES (28540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704813053);
INSERT INTO public.notice VALUES (28541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704813653);
INSERT INTO public.notice VALUES (28542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704814252);
INSERT INTO public.notice VALUES (28543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704814853);
INSERT INTO public.notice VALUES (28544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704815453);
INSERT INTO public.notice VALUES (28545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704816052);
INSERT INTO public.notice VALUES (28546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704816652);
INSERT INTO public.notice VALUES (28547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704817253);
INSERT INTO public.notice VALUES (28548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704817853);
INSERT INTO public.notice VALUES (28549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704818452);
INSERT INTO public.notice VALUES (28550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704819054);
INSERT INTO public.notice VALUES (28551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704819653);
INSERT INTO public.notice VALUES (28552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704820252);
INSERT INTO public.notice VALUES (28553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704820852);
INSERT INTO public.notice VALUES (28556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704822652);
INSERT INTO public.notice VALUES (28558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704823853);
INSERT INTO public.notice VALUES (28554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704821453);
INSERT INTO public.notice VALUES (28555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704822053);
INSERT INTO public.notice VALUES (28557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704823254);
INSERT INTO public.notice VALUES (28559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704824452);
INSERT INTO public.notice VALUES (28560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704825052);
INSERT INTO public.notice VALUES (28561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704825653);
INSERT INTO public.notice VALUES (28562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704826253);
INSERT INTO public.notice VALUES (28563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704826852);
INSERT INTO public.notice VALUES (28564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704827452);
INSERT INTO public.notice VALUES (28565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704828053);
INSERT INTO public.notice VALUES (28566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704828653);
INSERT INTO public.notice VALUES (28567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704829252);
INSERT INTO public.notice VALUES (28568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704829854);
INSERT INTO public.notice VALUES (28569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704830453);
INSERT INTO public.notice VALUES (28570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704831053);
INSERT INTO public.notice VALUES (28571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704831659);
INSERT INTO public.notice VALUES (28572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704832254);
INSERT INTO public.notice VALUES (28573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704832853);
INSERT INTO public.notice VALUES (28574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704833452);
INSERT INTO public.notice VALUES (28575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704834052);
INSERT INTO public.notice VALUES (28576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704834653);
INSERT INTO public.notice VALUES (28577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704835253);
INSERT INTO public.notice VALUES (28578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704835852);
INSERT INTO public.notice VALUES (28579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704836453);
INSERT INTO public.notice VALUES (28580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704837053);
INSERT INTO public.notice VALUES (28581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704837652);
INSERT INTO public.notice VALUES (28582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704838252);
INSERT INTO public.notice VALUES (28583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704838854);
INSERT INTO public.notice VALUES (28584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704839453);
INSERT INTO public.notice VALUES (28585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704840052);
INSERT INTO public.notice VALUES (28586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704840654);
INSERT INTO public.notice VALUES (28587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704841261);
INSERT INTO public.notice VALUES (28588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704841856);
INSERT INTO public.notice VALUES (28591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704843653);
INSERT INTO public.notice VALUES (28592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704844253);
INSERT INTO public.notice VALUES (28589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704842452);
INSERT INTO public.notice VALUES (28590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704843053);
INSERT INTO public.notice VALUES (28593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704844852);
INSERT INTO public.notice VALUES (28594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704845453);
INSERT INTO public.notice VALUES (28595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704846053);
INSERT INTO public.notice VALUES (28596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704846652);
INSERT INTO public.notice VALUES (28597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704847254);
INSERT INTO public.notice VALUES (28598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704847853);
INSERT INTO public.notice VALUES (28599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704848452);
INSERT INTO public.notice VALUES (28600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704849052);
INSERT INTO public.notice VALUES (28601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704849653);
INSERT INTO public.notice VALUES (28602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704850253);
INSERT INTO public.notice VALUES (28603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704850853);
INSERT INTO public.notice VALUES (28604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704851452);
INSERT INTO public.notice VALUES (28605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704852053);
INSERT INTO public.notice VALUES (28606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704852653);
INSERT INTO public.notice VALUES (28607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704853252);
INSERT INTO public.notice VALUES (28608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704853852);
INSERT INTO public.notice VALUES (28609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704854453);
INSERT INTO public.notice VALUES (28610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704855053);
INSERT INTO public.notice VALUES (28611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704855652);
INSERT INTO public.notice VALUES (28612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704856252);
INSERT INTO public.notice VALUES (28613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704856853);
INSERT INTO public.notice VALUES (28614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704857452);
INSERT INTO public.notice VALUES (28615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704858052);
INSERT INTO public.notice VALUES (28616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704858654);
INSERT INTO public.notice VALUES (28617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704859252);
INSERT INTO public.notice VALUES (28618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704859854);
INSERT INTO public.notice VALUES (28619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704860452);
INSERT INTO public.notice VALUES (28620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704861062);
INSERT INTO public.notice VALUES (28621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704861652);
INSERT INTO public.notice VALUES (28622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704862252);
INSERT INTO public.notice VALUES (28623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704862853);
INSERT INTO public.notice VALUES (28624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704863453);
INSERT INTO public.notice VALUES (28625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704864052);
INSERT INTO public.notice VALUES (28626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704864653);
INSERT INTO public.notice VALUES (28627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704865253);
INSERT INTO public.notice VALUES (28628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704865852);
INSERT INTO public.notice VALUES (28629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704866452);
INSERT INTO public.notice VALUES (28630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704867053);
INSERT INTO public.notice VALUES (28631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704867652);
INSERT INTO public.notice VALUES (28632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704868252);
INSERT INTO public.notice VALUES (28633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704868852);
INSERT INTO public.notice VALUES (28634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704869453);
INSERT INTO public.notice VALUES (28635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704870053);
INSERT INTO public.notice VALUES (28636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704870660);
INSERT INTO public.notice VALUES (28637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704871256);
INSERT INTO public.notice VALUES (28638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704871853);
INSERT INTO public.notice VALUES (28639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704872453);
INSERT INTO public.notice VALUES (28640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704873052);
INSERT INTO public.notice VALUES (28641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704873652);
INSERT INTO public.notice VALUES (28642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704874253);
INSERT INTO public.notice VALUES (28643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704874853);
INSERT INTO public.notice VALUES (28644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704875452);
INSERT INTO public.notice VALUES (28645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704876053);
INSERT INTO public.notice VALUES (28646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704876653);
INSERT INTO public.notice VALUES (28647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704877253);
INSERT INTO public.notice VALUES (28648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704877852);
INSERT INTO public.notice VALUES (28649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704878452);
INSERT INTO public.notice VALUES (28650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704879051);
INSERT INTO public.notice VALUES (28651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704879653);
INSERT INTO public.notice VALUES (28652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704880253);
INSERT INTO public.notice VALUES (28653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704880852);
INSERT INTO public.notice VALUES (28654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704881453);
INSERT INTO public.notice VALUES (28655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704882053);
INSERT INTO public.notice VALUES (28656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704882652);
INSERT INTO public.notice VALUES (28657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704883252);
INSERT INTO public.notice VALUES (28658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704883853);
INSERT INTO public.notice VALUES (28659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704884453);
INSERT INTO public.notice VALUES (28660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704885052);
INSERT INTO public.notice VALUES (28661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704885654);
INSERT INTO public.notice VALUES (28662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704886253);
INSERT INTO public.notice VALUES (28663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704886853);
INSERT INTO public.notice VALUES (28664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704887452);
INSERT INTO public.notice VALUES (28665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704888053);
INSERT INTO public.notice VALUES (28666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704888653);
INSERT INTO public.notice VALUES (28667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704889252);
INSERT INTO public.notice VALUES (28668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704889852);
INSERT INTO public.notice VALUES (28669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704890462);
INSERT INTO public.notice VALUES (28670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704891053);
INSERT INTO public.notice VALUES (28671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704891653);
INSERT INTO public.notice VALUES (28672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704892254);
INSERT INTO public.notice VALUES (28673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704892853);
INSERT INTO public.notice VALUES (28674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704893452);
INSERT INTO public.notice VALUES (28675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704894053);
INSERT INTO public.notice VALUES (28676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704894653);
INSERT INTO public.notice VALUES (28677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704895253);
INSERT INTO public.notice VALUES (28678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704895852);
INSERT INTO public.notice VALUES (28679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704896452);
INSERT INTO public.notice VALUES (28680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704897053);
INSERT INTO public.notice VALUES (28681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704897653);
INSERT INTO public.notice VALUES (28682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704898252);
INSERT INTO public.notice VALUES (28683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704898853);
INSERT INTO public.notice VALUES (28684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704899453);
INSERT INTO public.notice VALUES (28685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704900060);
INSERT INTO public.notice VALUES (28686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704900656);
INSERT INTO public.notice VALUES (28687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704901253);
INSERT INTO public.notice VALUES (28688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704901853);
INSERT INTO public.notice VALUES (28689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704902452);
INSERT INTO public.notice VALUES (28690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704903052);
INSERT INTO public.notice VALUES (28691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704903654);
INSERT INTO public.notice VALUES (28692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704904252);
INSERT INTO public.notice VALUES (28693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704904852);
INSERT INTO public.notice VALUES (28694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704905453);
INSERT INTO public.notice VALUES (28695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704906053);
INSERT INTO public.notice VALUES (28696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704906652);
INSERT INTO public.notice VALUES (28697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704907254);
INSERT INTO public.notice VALUES (28698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704907853);
INSERT INTO public.notice VALUES (28699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704908453);
INSERT INTO public.notice VALUES (28702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704910253);
INSERT INTO public.notice VALUES (28703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704910852);
INSERT INTO public.notice VALUES (28700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704909052);
INSERT INTO public.notice VALUES (28701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704909655);
INSERT INTO public.notice VALUES (28704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704911454);
INSERT INTO public.notice VALUES (28705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704912053);
INSERT INTO public.notice VALUES (28706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704912653);
INSERT INTO public.notice VALUES (28707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704913252);
INSERT INTO public.notice VALUES (28708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704913854);
INSERT INTO public.notice VALUES (28709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704914453);
INSERT INTO public.notice VALUES (28710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704915052);
INSERT INTO public.notice VALUES (28711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704915652);
INSERT INTO public.notice VALUES (28712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704916254);
INSERT INTO public.notice VALUES (28713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704916853);
INSERT INTO public.notice VALUES (28714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704917453);
INSERT INTO public.notice VALUES (28715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704918054);
INSERT INTO public.notice VALUES (28716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704918653);
INSERT INTO public.notice VALUES (28717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704919252);
INSERT INTO public.notice VALUES (28718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704919859);
INSERT INTO public.notice VALUES (28719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704920454);
INSERT INTO public.notice VALUES (28721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704921652);
INSERT INTO public.notice VALUES (28722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704922254);
INSERT INTO public.notice VALUES (28724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704923453);
INSERT INTO public.notice VALUES (28720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704921054);
INSERT INTO public.notice VALUES (28723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704922853);
INSERT INTO public.notice VALUES (28725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704924052);
INSERT INTO public.notice VALUES (28726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704924653);
INSERT INTO public.notice VALUES (28727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704925253);
INSERT INTO public.notice VALUES (28728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704925852);
INSERT INTO public.notice VALUES (28729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704926454);
INSERT INTO public.notice VALUES (28730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704927053);
INSERT INTO public.notice VALUES (28731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704927653);
INSERT INTO public.notice VALUES (28732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704928252);
INSERT INTO public.notice VALUES (28733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704928853);
INSERT INTO public.notice VALUES (28734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704929462);
INSERT INTO public.notice VALUES (28735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704930056);
INSERT INTO public.notice VALUES (28736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704930653);
INSERT INTO public.notice VALUES (28737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704931253);
INSERT INTO public.notice VALUES (28738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704931853);
INSERT INTO public.notice VALUES (28739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704932452);
INSERT INTO public.notice VALUES (28740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704933053);
INSERT INTO public.notice VALUES (28741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704933653);
INSERT INTO public.notice VALUES (28742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704934252);
INSERT INTO public.notice VALUES (28743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704934852);
INSERT INTO public.notice VALUES (28744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704935454);
INSERT INTO public.notice VALUES (28745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704936053);
INSERT INTO public.notice VALUES (28746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704936652);
INSERT INTO public.notice VALUES (28747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704937252);
INSERT INTO public.notice VALUES (28748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704937852);
INSERT INTO public.notice VALUES (28749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704938453);
INSERT INTO public.notice VALUES (28750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704939052);
INSERT INTO public.notice VALUES (28751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704939652);
INSERT INTO public.notice VALUES (28752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704940253);
INSERT INTO public.notice VALUES (28753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704940853);
INSERT INTO public.notice VALUES (28754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704941452);
INSERT INTO public.notice VALUES (28755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704942052);
INSERT INTO public.notice VALUES (28756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704942653);
INSERT INTO public.notice VALUES (28757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704943253);
INSERT INTO public.notice VALUES (28758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704943852);
INSERT INTO public.notice VALUES (28759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704944452);
INSERT INTO public.notice VALUES (28760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704945053);
INSERT INTO public.notice VALUES (28761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704945653);
INSERT INTO public.notice VALUES (28762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704946252);
INSERT INTO public.notice VALUES (28768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704949852);
INSERT INTO public.notice VALUES (28769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704950452);
INSERT INTO public.notice VALUES (28771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704951653);
INSERT INTO public.notice VALUES (28773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704952851);
INSERT INTO public.notice VALUES (28776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704954652);
INSERT INTO public.notice VALUES (28763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704946852);
INSERT INTO public.notice VALUES (28764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704947453);
INSERT INTO public.notice VALUES (28765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704948052);
INSERT INTO public.notice VALUES (28766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704948653);
INSERT INTO public.notice VALUES (28767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704949262);
INSERT INTO public.notice VALUES (28770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704951053);
INSERT INTO public.notice VALUES (28772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704952252);
INSERT INTO public.notice VALUES (28774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704953453);
INSERT INTO public.notice VALUES (28775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704954052);
INSERT INTO public.notice VALUES (28777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704955254);
INSERT INTO public.notice VALUES (28778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704955853);
INSERT INTO public.notice VALUES (28779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704956453);
INSERT INTO public.notice VALUES (28780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704957052);
INSERT INTO public.notice VALUES (28781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704957653);
INSERT INTO public.notice VALUES (28782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704958253);
INSERT INTO public.notice VALUES (28783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704958860);
INSERT INTO public.notice VALUES (28788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704961852);
INSERT INTO public.notice VALUES (28790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704963053);
INSERT INTO public.notice VALUES (28791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704963652);
INSERT INTO public.notice VALUES (28793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704964852);
INSERT INTO public.notice VALUES (28784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704959455);
INSERT INTO public.notice VALUES (28785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704960053);
INSERT INTO public.notice VALUES (28786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704960653);
INSERT INTO public.notice VALUES (28787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704961252);
INSERT INTO public.notice VALUES (28789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704962454);
INSERT INTO public.notice VALUES (28792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704964254);
INSERT INTO public.notice VALUES (28794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704965452);
INSERT INTO public.notice VALUES (28795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704966053);
INSERT INTO public.notice VALUES (28796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704966652);
INSERT INTO public.notice VALUES (28797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704967252);
INSERT INTO public.notice VALUES (28798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704967853);
INSERT INTO public.notice VALUES (28799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704968453);
INSERT INTO public.notice VALUES (28800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704969052);
INSERT INTO public.notice VALUES (28801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704969652);
INSERT INTO public.notice VALUES (28802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704970253);
INSERT INTO public.notice VALUES (28803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704970852);
INSERT INTO public.notice VALUES (28805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704972053);
INSERT INTO public.notice VALUES (28806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704972653);
INSERT INTO public.notice VALUES (28807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704973252);
INSERT INTO public.notice VALUES (28804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704971453);
INSERT INTO public.notice VALUES (28808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704973852);
INSERT INTO public.notice VALUES (28809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704974453);
INSERT INTO public.notice VALUES (28810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704975053);
INSERT INTO public.notice VALUES (28811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704975653);
INSERT INTO public.notice VALUES (28812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704976252);
INSERT INTO public.notice VALUES (28813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704976854);
INSERT INTO public.notice VALUES (28814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704977452);
INSERT INTO public.notice VALUES (28815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704978052);
INSERT INTO public.notice VALUES (28816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704978662);
INSERT INTO public.notice VALUES (28817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704979253);
INSERT INTO public.notice VALUES (28818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704979852);
INSERT INTO public.notice VALUES (28819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704980452);
INSERT INTO public.notice VALUES (28820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704981053);
INSERT INTO public.notice VALUES (28821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704981653);
INSERT INTO public.notice VALUES (28822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704982252);
INSERT INTO public.notice VALUES (28823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704982852);
INSERT INTO public.notice VALUES (28825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704984053);
INSERT INTO public.notice VALUES (28827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704985253);
INSERT INTO public.notice VALUES (28830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704987052);
INSERT INTO public.notice VALUES (28831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704987654);
INSERT INTO public.notice VALUES (28833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704988856);
INSERT INTO public.notice VALUES (28824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704983453);
INSERT INTO public.notice VALUES (28826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704984652);
INSERT INTO public.notice VALUES (28828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704985853);
INSERT INTO public.notice VALUES (28829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704986452);
INSERT INTO public.notice VALUES (28832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704988260);
INSERT INTO public.notice VALUES (28834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704989451);
INSERT INTO public.notice VALUES (28835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704990053);
INSERT INTO public.notice VALUES (28836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704990653);
INSERT INTO public.notice VALUES (28837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704991253);
INSERT INTO public.notice VALUES (28838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704991852);
INSERT INTO public.notice VALUES (28839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704992769);
INSERT INTO public.notice VALUES (28840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704993368);
INSERT INTO public.notice VALUES (28841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704993967);
INSERT INTO public.notice VALUES (28842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704994567);
INSERT INTO public.notice VALUES (28843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704995168);
INSERT INTO public.notice VALUES (28844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704995767);
INSERT INTO public.notice VALUES (28845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704996367);
INSERT INTO public.notice VALUES (28847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704997568);
INSERT INTO public.notice VALUES (28846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704996969);
INSERT INTO public.notice VALUES (28848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704998167);
INSERT INTO public.notice VALUES (28849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704998767);
INSERT INTO public.notice VALUES (28850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704999369);
INSERT INTO public.notice VALUES (28851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1704999968);
INSERT INTO public.notice VALUES (28852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705000567);
INSERT INTO public.notice VALUES (28853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705001166);
INSERT INTO public.notice VALUES (28854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705001768);
INSERT INTO public.notice VALUES (28855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705002368);
INSERT INTO public.notice VALUES (28856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705002967);
INSERT INTO public.notice VALUES (28857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705003568);
INSERT INTO public.notice VALUES (28858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705004168);
INSERT INTO public.notice VALUES (28859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705004767);
INSERT INTO public.notice VALUES (28860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705005367);
INSERT INTO public.notice VALUES (28861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705005968);
INSERT INTO public.notice VALUES (28862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705006567);
INSERT INTO public.notice VALUES (28863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705007167);
INSERT INTO public.notice VALUES (28864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705007776);
INSERT INTO public.notice VALUES (28865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705008368);
INSERT INTO public.notice VALUES (28866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705008967);
INSERT INTO public.notice VALUES (28867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705009567);
INSERT INTO public.notice VALUES (28868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705010168);
INSERT INTO public.notice VALUES (28869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705010768);
INSERT INTO public.notice VALUES (28870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705011367);
INSERT INTO public.notice VALUES (28871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705011966);
INSERT INTO public.notice VALUES (28872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705012569);
INSERT INTO public.notice VALUES (28873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705013167);
INSERT INTO public.notice VALUES (28874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705013767);
INSERT INTO public.notice VALUES (28875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705014368);
INSERT INTO public.notice VALUES (28876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705014968);
INSERT INTO public.notice VALUES (28877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705015567);
INSERT INTO public.notice VALUES (28882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705018568);
INSERT INTO public.notice VALUES (28883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705019168);
INSERT INTO public.notice VALUES (28887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705021567);
INSERT INTO public.notice VALUES (28888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705022167);
INSERT INTO public.notice VALUES (28878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705016168);
INSERT INTO public.notice VALUES (28879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705016768);
INSERT INTO public.notice VALUES (28880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705017375);
INSERT INTO public.notice VALUES (28881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705017971);
INSERT INTO public.notice VALUES (28884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705019767);
INSERT INTO public.notice VALUES (28885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705020369);
INSERT INTO public.notice VALUES (28886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705020968);
INSERT INTO public.notice VALUES (28889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705022768);
INSERT INTO public.notice VALUES (28890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705023368);
INSERT INTO public.notice VALUES (28891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705023967);
INSERT INTO public.notice VALUES (28892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705024567);
INSERT INTO public.notice VALUES (28893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705025168);
INSERT INTO public.notice VALUES (28894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705025768);
INSERT INTO public.notice VALUES (28895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705026368);
INSERT INTO public.notice VALUES (28896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705026967);
INSERT INTO public.notice VALUES (28897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705027568);
INSERT INTO public.notice VALUES (28898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705028168);
INSERT INTO public.notice VALUES (28899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705028767);
INSERT INTO public.notice VALUES (28900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705029367);
INSERT INTO public.notice VALUES (28901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705029968);
INSERT INTO public.notice VALUES (28902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705030567);
INSERT INTO public.notice VALUES (28903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705031168);
INSERT INTO public.notice VALUES (28904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705031767);
INSERT INTO public.notice VALUES (28905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705032369);
INSERT INTO public.notice VALUES (28906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705032968);
INSERT INTO public.notice VALUES (28907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705033569);
INSERT INTO public.notice VALUES (28908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705034169);
INSERT INTO public.notice VALUES (28909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705034769);
INSERT INTO public.notice VALUES (28910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705035371);
INSERT INTO public.notice VALUES (28911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705035967);
INSERT INTO public.notice VALUES (28912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705036569);
INSERT INTO public.notice VALUES (28913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705037179);
INSERT INTO public.notice VALUES (28916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705038968);
INSERT INTO public.notice VALUES (28917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705039568);
INSERT INTO public.notice VALUES (28919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705040769);
INSERT INTO public.notice VALUES (28914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705037768);
INSERT INTO public.notice VALUES (28915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705038369);
INSERT INTO public.notice VALUES (28918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705040167);
INSERT INTO public.notice VALUES (28920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705041368);
INSERT INTO public.notice VALUES (28921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705041969);
INSERT INTO public.notice VALUES (28922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705042569);
INSERT INTO public.notice VALUES (28923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705043168);
INSERT INTO public.notice VALUES (28924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705043767);
INSERT INTO public.notice VALUES (28925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705044368);
INSERT INTO public.notice VALUES (28926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705044968);
INSERT INTO public.notice VALUES (28927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705045569);
INSERT INTO public.notice VALUES (28928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705046167);
INSERT INTO public.notice VALUES (28929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705046777);
INSERT INTO public.notice VALUES (28930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705047372);
INSERT INTO public.notice VALUES (28931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705047968);
INSERT INTO public.notice VALUES (28932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705048567);
INSERT INTO public.notice VALUES (28934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705049769);
INSERT INTO public.notice VALUES (28933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705049169);
INSERT INTO public.notice VALUES (28935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705050367);
INSERT INTO public.notice VALUES (28936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705050968);
INSERT INTO public.notice VALUES (28937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705051568);
INSERT INTO public.notice VALUES (28938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705052167);
INSERT INTO public.notice VALUES (28939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705052767);
INSERT INTO public.notice VALUES (28940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705053369);
INSERT INTO public.notice VALUES (28941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705053968);
INSERT INTO public.notice VALUES (28942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705054568);
INSERT INTO public.notice VALUES (28943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705055169);
INSERT INTO public.notice VALUES (28944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705055768);
INSERT INTO public.notice VALUES (28945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705056368);
INSERT INTO public.notice VALUES (28946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705056968);
INSERT INTO public.notice VALUES (28947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705057569);
INSERT INTO public.notice VALUES (28948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705058168);
INSERT INTO public.notice VALUES (28949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705058769);
INSERT INTO public.notice VALUES (28950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705059369);
INSERT INTO public.notice VALUES (28951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705059971);
INSERT INTO public.notice VALUES (28952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705060569);
INSERT INTO public.notice VALUES (28953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705061170);
INSERT INTO public.notice VALUES (28954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705061769);
INSERT INTO public.notice VALUES (28955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705062368);
INSERT INTO public.notice VALUES (28956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705062967);
INSERT INTO public.notice VALUES (28957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705063569);
INSERT INTO public.notice VALUES (28958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705064169);
INSERT INTO public.notice VALUES (28959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705064768);
INSERT INTO public.notice VALUES (28960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705065367);
INSERT INTO public.notice VALUES (28961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705065968);
INSERT INTO public.notice VALUES (28962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705066579);
INSERT INTO public.notice VALUES (28963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705067169);
INSERT INTO public.notice VALUES (28964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705067769);
INSERT INTO public.notice VALUES (28965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705068368);
INSERT INTO public.notice VALUES (28966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705068968);
INSERT INTO public.notice VALUES (28967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705069567);
INSERT INTO public.notice VALUES (28968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705070168);
INSERT INTO public.notice VALUES (28969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705070768);
INSERT INTO public.notice VALUES (28970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705071367);
INSERT INTO public.notice VALUES (28971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705071968);
INSERT INTO public.notice VALUES (28972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705072569);
INSERT INTO public.notice VALUES (28973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705073168);
INSERT INTO public.notice VALUES (28974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705073767);
INSERT INTO public.notice VALUES (28975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705074368);
INSERT INTO public.notice VALUES (28976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705074968);
INSERT INTO public.notice VALUES (28977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705075567);
INSERT INTO public.notice VALUES (28978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705076175);
INSERT INTO public.notice VALUES (28979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705076772);
INSERT INTO public.notice VALUES (28980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705077369);
INSERT INTO public.notice VALUES (28981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705077967);
INSERT INTO public.notice VALUES (28982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705078569);
INSERT INTO public.notice VALUES (28983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705079168);
INSERT INTO public.notice VALUES (28984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705079768);
INSERT INTO public.notice VALUES (28985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705080367);
INSERT INTO public.notice VALUES (28986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705080968);
INSERT INTO public.notice VALUES (28987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705081568);
INSERT INTO public.notice VALUES (28988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705082167);
INSERT INTO public.notice VALUES (28989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705082767);
INSERT INTO public.notice VALUES (28990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705083368);
INSERT INTO public.notice VALUES (28991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705083967);
INSERT INTO public.notice VALUES (28992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705084567);
INSERT INTO public.notice VALUES (28993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705085169);
INSERT INTO public.notice VALUES (28994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705085769);
INSERT INTO public.notice VALUES (28995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705086367);
INSERT INTO public.notice VALUES (28996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705086967);
INSERT INTO public.notice VALUES (28997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705087568);
INSERT INTO public.notice VALUES (29001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705089968);
INSERT INTO public.notice VALUES (29002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705090567);
INSERT INTO public.notice VALUES (29006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705092967);
INSERT INTO public.notice VALUES (28998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705088168);
INSERT INTO public.notice VALUES (28999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705088767);
INSERT INTO public.notice VALUES (29000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705089369);
INSERT INTO public.notice VALUES (29003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705091167);
INSERT INTO public.notice VALUES (29004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705091768);
INSERT INTO public.notice VALUES (29005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705092368);
INSERT INTO public.notice VALUES (29007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705093569);
INSERT INTO public.notice VALUES (29008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705094168);
INSERT INTO public.notice VALUES (29009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705094767);
INSERT INTO public.notice VALUES (29010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705095367);
INSERT INTO public.notice VALUES (29011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705095976);
INSERT INTO public.notice VALUES (29012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705096568);
INSERT INTO public.notice VALUES (29013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705097167);
INSERT INTO public.notice VALUES (29014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705097769);
INSERT INTO public.notice VALUES (29015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705098368);
INSERT INTO public.notice VALUES (29016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705098967);
INSERT INTO public.notice VALUES (29017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705099567);
INSERT INTO public.notice VALUES (29018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705100168);
INSERT INTO public.notice VALUES (29019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705100768);
INSERT INTO public.notice VALUES (29020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705101367);
INSERT INTO public.notice VALUES (29021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705101967);
INSERT INTO public.notice VALUES (29022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705102568);
INSERT INTO public.notice VALUES (29023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705103168);
INSERT INTO public.notice VALUES (29024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705103767);
INSERT INTO public.notice VALUES (29025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705104369);
INSERT INTO public.notice VALUES (29026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705104968);
INSERT INTO public.notice VALUES (29027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705105575);
INSERT INTO public.notice VALUES (29028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705106170);
INSERT INTO public.notice VALUES (29029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705106768);
INSERT INTO public.notice VALUES (29030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705107368);
INSERT INTO public.notice VALUES (29031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705107967);
INSERT INTO public.notice VALUES (29032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705108569);
INSERT INTO public.notice VALUES (29033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705109168);
INSERT INTO public.notice VALUES (29034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705109767);
INSERT INTO public.notice VALUES (29035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705110367);
INSERT INTO public.notice VALUES (29036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705110968);
INSERT INTO public.notice VALUES (29037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705111568);
INSERT INTO public.notice VALUES (29038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705112167);
INSERT INTO public.notice VALUES (29039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705112767);
INSERT INTO public.notice VALUES (29040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705113368);
INSERT INTO public.notice VALUES (29041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705113967);
INSERT INTO public.notice VALUES (29042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705114567);
INSERT INTO public.notice VALUES (29043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705115168);
INSERT INTO public.notice VALUES (29044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705115768);
INSERT INTO public.notice VALUES (29045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705116367);
INSERT INTO public.notice VALUES (29046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705116967);
INSERT INTO public.notice VALUES (29049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705118767);
INSERT INTO public.notice VALUES (29054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705121768);
INSERT INTO public.notice VALUES (29057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705123569);
INSERT INTO public.notice VALUES (29059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705124767);
INSERT INTO public.notice VALUES (29047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705117568);
INSERT INTO public.notice VALUES (29048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705118168);
INSERT INTO public.notice VALUES (29050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705119369);
INSERT INTO public.notice VALUES (29051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705119968);
INSERT INTO public.notice VALUES (29052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705120567);
INSERT INTO public.notice VALUES (29053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705121167);
INSERT INTO public.notice VALUES (29055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705122368);
INSERT INTO public.notice VALUES (29056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705122967);
INSERT INTO public.notice VALUES (29058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705124169);
INSERT INTO public.notice VALUES (29060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705125374);
INSERT INTO public.notice VALUES (29061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705125968);
INSERT INTO public.notice VALUES (29062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705126568);
INSERT INTO public.notice VALUES (29063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705127167);
INSERT INTO public.notice VALUES (29064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705127768);
INSERT INTO public.notice VALUES (29065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705128368);
INSERT INTO public.notice VALUES (29066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705128967);
INSERT INTO public.notice VALUES (29068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705130169);
INSERT INTO public.notice VALUES (29067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705129567);
INSERT INTO public.notice VALUES (29069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705130768);
INSERT INTO public.notice VALUES (29070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705131367);
INSERT INTO public.notice VALUES (29071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705131967);
INSERT INTO public.notice VALUES (29072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705132568);
INSERT INTO public.notice VALUES (29073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705133168);
INSERT INTO public.notice VALUES (29074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705133767);
INSERT INTO public.notice VALUES (29075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705134367);
INSERT INTO public.notice VALUES (29076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705134976);
INSERT INTO public.notice VALUES (29077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705135571);
INSERT INTO public.notice VALUES (29078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705136167);
INSERT INTO public.notice VALUES (29079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705136766);
INSERT INTO public.notice VALUES (29080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705137368);
INSERT INTO public.notice VALUES (29081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705137967);
INSERT INTO public.notice VALUES (29082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705138567);
INSERT INTO public.notice VALUES (29083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705139168);
INSERT INTO public.notice VALUES (29084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705139768);
INSERT INTO public.notice VALUES (29085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705140367);
INSERT INTO public.notice VALUES (29086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705140967);
INSERT INTO public.notice VALUES (29087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705141568);
INSERT INTO public.notice VALUES (29088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705142167);
INSERT INTO public.notice VALUES (29089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705142767);
INSERT INTO public.notice VALUES (29090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705143368);
INSERT INTO public.notice VALUES (29091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705143968);
INSERT INTO public.notice VALUES (29092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705144567);
INSERT INTO public.notice VALUES (29093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705145169);
INSERT INTO public.notice VALUES (29094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705145768);
INSERT INTO public.notice VALUES (29095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705146367);
INSERT INTO public.notice VALUES (29096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705146967);
INSERT INTO public.notice VALUES (29097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705147568);
INSERT INTO public.notice VALUES (29098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705148168);
INSERT INTO public.notice VALUES (29099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705148767);
INSERT INTO public.notice VALUES (29100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705149367);
INSERT INTO public.notice VALUES (29101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705149968);
INSERT INTO public.notice VALUES (29102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705150567);
INSERT INTO public.notice VALUES (29103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705151167);
INSERT INTO public.notice VALUES (29104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705151768);
INSERT INTO public.notice VALUES (29105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705152368);
INSERT INTO public.notice VALUES (29106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705152967);
INSERT INTO public.notice VALUES (29107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705153567);
INSERT INTO public.notice VALUES (29108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705154168);
INSERT INTO public.notice VALUES (29109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705154775);
INSERT INTO public.notice VALUES (29110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705155367);
INSERT INTO public.notice VALUES (29111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705155968);
INSERT INTO public.notice VALUES (29112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705156568);
INSERT INTO public.notice VALUES (29113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705157169);
INSERT INTO public.notice VALUES (29115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705158368);
INSERT INTO public.notice VALUES (29114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705157767);
INSERT INTO public.notice VALUES (29116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705158968);
INSERT INTO public.notice VALUES (29117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705159567);
INSERT INTO public.notice VALUES (29118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705160167);
INSERT INTO public.notice VALUES (29119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705160768);
INSERT INTO public.notice VALUES (29120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705161367);
INSERT INTO public.notice VALUES (29121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705161967);
INSERT INTO public.notice VALUES (29122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705162568);
INSERT INTO public.notice VALUES (29123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705163168);
INSERT INTO public.notice VALUES (29124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705163767);
INSERT INTO public.notice VALUES (29125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705164377);
INSERT INTO public.notice VALUES (29126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705164972);
INSERT INTO public.notice VALUES (29127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705165567);
INSERT INTO public.notice VALUES (29128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705166168);
INSERT INTO public.notice VALUES (29129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705166768);
INSERT INTO public.notice VALUES (29130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705167368);
INSERT INTO public.notice VALUES (29131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705167967);
INSERT INTO public.notice VALUES (29132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705168568);
INSERT INTO public.notice VALUES (29133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705169168);
INSERT INTO public.notice VALUES (29134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705169768);
INSERT INTO public.notice VALUES (29135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705170367);
INSERT INTO public.notice VALUES (29136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705170969);
INSERT INTO public.notice VALUES (29137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705171568);
INSERT INTO public.notice VALUES (29138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705172168);
INSERT INTO public.notice VALUES (29139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705172767);
INSERT INTO public.notice VALUES (29140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705173368);
INSERT INTO public.notice VALUES (29141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705173968);
INSERT INTO public.notice VALUES (29142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705174567);
INSERT INTO public.notice VALUES (29143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705175168);
INSERT INTO public.notice VALUES (29144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705175768);
INSERT INTO public.notice VALUES (29145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705176367);
INSERT INTO public.notice VALUES (29147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705177569);
INSERT INTO public.notice VALUES (29150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705179366);
INSERT INTO public.notice VALUES (29151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705179968);
INSERT INTO public.notice VALUES (29152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705180567);
INSERT INTO public.notice VALUES (29155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705182368);
INSERT INTO public.notice VALUES (29156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705182967);
INSERT INTO public.notice VALUES (29158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705184176);
INSERT INTO public.notice VALUES (29161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705185968);
INSERT INTO public.notice VALUES (29163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705187167);
INSERT INTO public.notice VALUES (29165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705188368);
INSERT INTO public.notice VALUES (29146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705176967);
INSERT INTO public.notice VALUES (29148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705178168);
INSERT INTO public.notice VALUES (29149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705178767);
INSERT INTO public.notice VALUES (29153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705181167);
INSERT INTO public.notice VALUES (29154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705181769);
INSERT INTO public.notice VALUES (29157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705183567);
INSERT INTO public.notice VALUES (29159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705184768);
INSERT INTO public.notice VALUES (29160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705185367);
INSERT INTO public.notice VALUES (29162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705186568);
INSERT INTO public.notice VALUES (29164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705187767);
INSERT INTO public.notice VALUES (29166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705188968);
INSERT INTO public.notice VALUES (29167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705189567);
INSERT INTO public.notice VALUES (29168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705190167);
INSERT INTO public.notice VALUES (29169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705190768);
INSERT INTO public.notice VALUES (29170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705191367);
INSERT INTO public.notice VALUES (29171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705191967);
INSERT INTO public.notice VALUES (29172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705192568);
INSERT INTO public.notice VALUES (29173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705193168);
INSERT INTO public.notice VALUES (29176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705194968);
INSERT INTO public.notice VALUES (29180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705197368);
INSERT INTO public.notice VALUES (29182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705198567);
INSERT INTO public.notice VALUES (29186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705200968);
INSERT INTO public.notice VALUES (29174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705193776);
INSERT INTO public.notice VALUES (29175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705194370);
INSERT INTO public.notice VALUES (29177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705195568);
INSERT INTO public.notice VALUES (29178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705196167);
INSERT INTO public.notice VALUES (29179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705196766);
INSERT INTO public.notice VALUES (29181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705197967);
INSERT INTO public.notice VALUES (29183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705199168);
INSERT INTO public.notice VALUES (29184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705199768);
INSERT INTO public.notice VALUES (29185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705200367);
INSERT INTO public.notice VALUES (29187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705201569);
INSERT INTO public.notice VALUES (29188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705202167);
INSERT INTO public.notice VALUES (29189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705202767);
INSERT INTO public.notice VALUES (29190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705203368);
INSERT INTO public.notice VALUES (29191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705203968);
INSERT INTO public.notice VALUES (29192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705204567);
INSERT INTO public.notice VALUES (29193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705205168);
INSERT INTO public.notice VALUES (29194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705205768);
INSERT INTO public.notice VALUES (29195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705206367);
INSERT INTO public.notice VALUES (29196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705206967);
INSERT INTO public.notice VALUES (29197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705207568);
INSERT INTO public.notice VALUES (29198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705208169);
INSERT INTO public.notice VALUES (29199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705208767);
INSERT INTO public.notice VALUES (29200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705209367);
INSERT INTO public.notice VALUES (29201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705209968);
INSERT INTO public.notice VALUES (29202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705210568);
INSERT INTO public.notice VALUES (29203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705211167);
INSERT INTO public.notice VALUES (29204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705211767);
INSERT INTO public.notice VALUES (29205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705212368);
INSERT INTO public.notice VALUES (29206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705212968);
INSERT INTO public.notice VALUES (29207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705213575);
INSERT INTO public.notice VALUES (29208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705214166);
INSERT INTO public.notice VALUES (29209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705214768);
INSERT INTO public.notice VALUES (29210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705215367);
INSERT INTO public.notice VALUES (29211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705215967);
INSERT INTO public.notice VALUES (29212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705216568);
INSERT INTO public.notice VALUES (29213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705217168);
INSERT INTO public.notice VALUES (29214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705217767);
INSERT INTO public.notice VALUES (29215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705218367);
INSERT INTO public.notice VALUES (29216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705218968);
INSERT INTO public.notice VALUES (29217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705219567);
INSERT INTO public.notice VALUES (29218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705220167);
INSERT INTO public.notice VALUES (29219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705220768);
INSERT INTO public.notice VALUES (29220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705221368);
INSERT INTO public.notice VALUES (29221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705221967);
INSERT INTO public.notice VALUES (29222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705222568);
INSERT INTO public.notice VALUES (29223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705223176);
INSERT INTO public.notice VALUES (29224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705223771);
INSERT INTO public.notice VALUES (29225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705224367);
INSERT INTO public.notice VALUES (29226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705224968);
INSERT INTO public.notice VALUES (29227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705225568);
INSERT INTO public.notice VALUES (29228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705226167);
INSERT INTO public.notice VALUES (29229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705226767);
INSERT INTO public.notice VALUES (29230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705227368);
INSERT INTO public.notice VALUES (29231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705227967);
INSERT INTO public.notice VALUES (29232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705228567);
INSERT INTO public.notice VALUES (29233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705229168);
INSERT INTO public.notice VALUES (29234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705229768);
INSERT INTO public.notice VALUES (29235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705230367);
INSERT INTO public.notice VALUES (29236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705230967);
INSERT INTO public.notice VALUES (29237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705231568);
INSERT INTO public.notice VALUES (29238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705232168);
INSERT INTO public.notice VALUES (29239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705232767);
INSERT INTO public.notice VALUES (29240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705233368);
INSERT INTO public.notice VALUES (29241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705233968);
INSERT INTO public.notice VALUES (29242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705234567);
INSERT INTO public.notice VALUES (29243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705235167);
INSERT INTO public.notice VALUES (29244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705235768);
INSERT INTO public.notice VALUES (29245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705236368);
INSERT INTO public.notice VALUES (29248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705238168);
INSERT INTO public.notice VALUES (29246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705236967);
INSERT INTO public.notice VALUES (29247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705237567);
INSERT INTO public.notice VALUES (29249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705238767);
INSERT INTO public.notice VALUES (29250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705239367);
INSERT INTO public.notice VALUES (29251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705239968);
INSERT INTO public.notice VALUES (29252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705240568);
INSERT INTO public.notice VALUES (29253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705241167);
INSERT INTO public.notice VALUES (29254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705241767);
INSERT INTO public.notice VALUES (29255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705242368);
INSERT INTO public.notice VALUES (29256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705242975);
INSERT INTO public.notice VALUES (29257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705243567);
INSERT INTO public.notice VALUES (29258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705244168);
INSERT INTO public.notice VALUES (29259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705244768);
INSERT INTO public.notice VALUES (29260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705245367);
INSERT INTO public.notice VALUES (29261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705245967);
INSERT INTO public.notice VALUES (29262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705246569);
INSERT INTO public.notice VALUES (29263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705247167);
INSERT INTO public.notice VALUES (29264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705247769);
INSERT INTO public.notice VALUES (29265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705248366);
INSERT INTO public.notice VALUES (29266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705248968);
INSERT INTO public.notice VALUES (29267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705249567);
INSERT INTO public.notice VALUES (29268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705250167);
INSERT INTO public.notice VALUES (29269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705250768);
INSERT INTO public.notice VALUES (29270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705251368);
INSERT INTO public.notice VALUES (29271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705251967);
INSERT INTO public.notice VALUES (29272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705252574);
INSERT INTO public.notice VALUES (29273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705253171);
INSERT INTO public.notice VALUES (29274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705253767);
INSERT INTO public.notice VALUES (29275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705254367);
INSERT INTO public.notice VALUES (29276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705254968);
INSERT INTO public.notice VALUES (29277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705255568);
INSERT INTO public.notice VALUES (29278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705256167);
INSERT INTO public.notice VALUES (29279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705256770);
INSERT INTO public.notice VALUES (29280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705257368);
INSERT INTO public.notice VALUES (29281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705257967);
INSERT INTO public.notice VALUES (29282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705258567);
INSERT INTO public.notice VALUES (29283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705259169);
INSERT INTO public.notice VALUES (29284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705259768);
INSERT INTO public.notice VALUES (29285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705260367);
INSERT INTO public.notice VALUES (29286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705260967);
INSERT INTO public.notice VALUES (29287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705261568);
INSERT INTO public.notice VALUES (29288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705262168);
INSERT INTO public.notice VALUES (29289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705262767);
INSERT INTO public.notice VALUES (29290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705263367);
INSERT INTO public.notice VALUES (29291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705263969);
INSERT INTO public.notice VALUES (29292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705264568);
INSERT INTO public.notice VALUES (29293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705265167);
INSERT INTO public.notice VALUES (29294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705265768);
INSERT INTO public.notice VALUES (29295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705266368);
INSERT INTO public.notice VALUES (29296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705266968);
INSERT INTO public.notice VALUES (29297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705267568);
INSERT INTO public.notice VALUES (29298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705268168);
INSERT INTO public.notice VALUES (29299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705268768);
INSERT INTO public.notice VALUES (29300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705269367);
INSERT INTO public.notice VALUES (29301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705269968);
INSERT INTO public.notice VALUES (29302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705270568);
INSERT INTO public.notice VALUES (29303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705271167);
INSERT INTO public.notice VALUES (29304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705271767);
INSERT INTO public.notice VALUES (29305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705272376);
INSERT INTO public.notice VALUES (29306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705272968);
INSERT INTO public.notice VALUES (29307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705273567);
INSERT INTO public.notice VALUES (29308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705274167);
INSERT INTO public.notice VALUES (29309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705274768);
INSERT INTO public.notice VALUES (29310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705275367);
INSERT INTO public.notice VALUES (29311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705275967);
INSERT INTO public.notice VALUES (29312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705276568);
INSERT INTO public.notice VALUES (29313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705277168);
INSERT INTO public.notice VALUES (29314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705277767);
INSERT INTO public.notice VALUES (29315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705278367);
INSERT INTO public.notice VALUES (29316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705278968);
INSERT INTO public.notice VALUES (29317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705279567);
INSERT INTO public.notice VALUES (29318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705280167);
INSERT INTO public.notice VALUES (29319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705280768);
INSERT INTO public.notice VALUES (29320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705281368);
INSERT INTO public.notice VALUES (29321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705281975);
INSERT INTO public.notice VALUES (29322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705282571);
INSERT INTO public.notice VALUES (29323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705283168);
INSERT INTO public.notice VALUES (29324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705283768);
INSERT INTO public.notice VALUES (29325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705284367);
INSERT INTO public.notice VALUES (29326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705284967);
INSERT INTO public.notice VALUES (29327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705285568);
INSERT INTO public.notice VALUES (29328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705286167);
INSERT INTO public.notice VALUES (29329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705286768);
INSERT INTO public.notice VALUES (29330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705287367);
INSERT INTO public.notice VALUES (29331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705287967);
INSERT INTO public.notice VALUES (29332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705288566);
INSERT INTO public.notice VALUES (29333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705289168);
INSERT INTO public.notice VALUES (29334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705289767);
INSERT INTO public.notice VALUES (29335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705290367);
INSERT INTO public.notice VALUES (29336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705290968);
INSERT INTO public.notice VALUES (29337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705291567);
INSERT INTO public.notice VALUES (29338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705292169);
INSERT INTO public.notice VALUES (29339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705292768);
INSERT INTO public.notice VALUES (29340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705293367);
INSERT INTO public.notice VALUES (29341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705293967);
INSERT INTO public.notice VALUES (29342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705294568);
INSERT INTO public.notice VALUES (29343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705295168);
INSERT INTO public.notice VALUES (29344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705295767);
INSERT INTO public.notice VALUES (29345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705296370);
INSERT INTO public.notice VALUES (29346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705296968);
INSERT INTO public.notice VALUES (29347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705297567);
INSERT INTO public.notice VALUES (29348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705298167);
INSERT INTO public.notice VALUES (29349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705298768);
INSERT INTO public.notice VALUES (29350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705299368);
INSERT INTO public.notice VALUES (29351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705299967);
INSERT INTO public.notice VALUES (29352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705300567);
INSERT INTO public.notice VALUES (29353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705301168);
INSERT INTO public.notice VALUES (29354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705301777);
INSERT INTO public.notice VALUES (29355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705302367);
INSERT INTO public.notice VALUES (29356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705302968);
INSERT INTO public.notice VALUES (29357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705303568);
INSERT INTO public.notice VALUES (29358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705304167);
INSERT INTO public.notice VALUES (29359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705304767);
INSERT INTO public.notice VALUES (29360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705305368);
INSERT INTO public.notice VALUES (29361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705305967);
INSERT INTO public.notice VALUES (29362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705306568);
INSERT INTO public.notice VALUES (29363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705307167);
INSERT INTO public.notice VALUES (29364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705307768);
INSERT INTO public.notice VALUES (29365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705308367);
INSERT INTO public.notice VALUES (29366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705308967);
INSERT INTO public.notice VALUES (29367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705309568);
INSERT INTO public.notice VALUES (29368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705310168);
INSERT INTO public.notice VALUES (29369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705310767);
INSERT INTO public.notice VALUES (29370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705311376);
INSERT INTO public.notice VALUES (29371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705311971);
INSERT INTO public.notice VALUES (29372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705312568);
INSERT INTO public.notice VALUES (29374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705313767);
INSERT INTO public.notice VALUES (29373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705313168);
INSERT INTO public.notice VALUES (29375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705314367);
INSERT INTO public.notice VALUES (29376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705314968);
INSERT INTO public.notice VALUES (29377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705315568);
INSERT INTO public.notice VALUES (29378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705316167);
INSERT INTO public.notice VALUES (29379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705316767);
INSERT INTO public.notice VALUES (29380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705317369);
INSERT INTO public.notice VALUES (29381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705317967);
INSERT INTO public.notice VALUES (29382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705318567);
INSERT INTO public.notice VALUES (29383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705319168);
INSERT INTO public.notice VALUES (29384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705319768);
INSERT INTO public.notice VALUES (29385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705320367);
INSERT INTO public.notice VALUES (29386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705320967);
INSERT INTO public.notice VALUES (29387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705321567);
INSERT INTO public.notice VALUES (29388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705322168);
INSERT INTO public.notice VALUES (29389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705322768);
INSERT INTO public.notice VALUES (29390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705323367);
INSERT INTO public.notice VALUES (29391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705323967);
INSERT INTO public.notice VALUES (29392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705324568);
INSERT INTO public.notice VALUES (29393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705325168);
INSERT INTO public.notice VALUES (29397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705327568);
INSERT INTO public.notice VALUES (29398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705328168);
INSERT INTO public.notice VALUES (29394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705325767);
INSERT INTO public.notice VALUES (29395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705326367);
INSERT INTO public.notice VALUES (29396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705326968);
INSERT INTO public.notice VALUES (29399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705328768);
INSERT INTO public.notice VALUES (29400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705329368);
INSERT INTO public.notice VALUES (29401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705329968);
INSERT INTO public.notice VALUES (29402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705330567);
INSERT INTO public.notice VALUES (29403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705331176);
INSERT INTO public.notice VALUES (29404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705331768);
INSERT INTO public.notice VALUES (29405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705332367);
INSERT INTO public.notice VALUES (29406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705332967);
INSERT INTO public.notice VALUES (29407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705333568);
INSERT INTO public.notice VALUES (29408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705334168);
INSERT INTO public.notice VALUES (29409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705334767);
INSERT INTO public.notice VALUES (29410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705335369);
INSERT INTO public.notice VALUES (29411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705335968);
INSERT INTO public.notice VALUES (29412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705336567);
INSERT INTO public.notice VALUES (29413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705337167);
INSERT INTO public.notice VALUES (29414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705337768);
INSERT INTO public.notice VALUES (29415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705338369);
INSERT INTO public.notice VALUES (29416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705338968);
INSERT INTO public.notice VALUES (29417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705339569);
INSERT INTO public.notice VALUES (29418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705340168);
INSERT INTO public.notice VALUES (29419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705340775);
INSERT INTO public.notice VALUES (29420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705341371);
INSERT INTO public.notice VALUES (29421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705341968);
INSERT INTO public.notice VALUES (29422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705342568);
INSERT INTO public.notice VALUES (29423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705343167);
INSERT INTO public.notice VALUES (29424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705343767);
INSERT INTO public.notice VALUES (29425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705344368);
INSERT INTO public.notice VALUES (29426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705344968);
INSERT INTO public.notice VALUES (29427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705345567);
INSERT INTO public.notice VALUES (29428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705346168);
INSERT INTO public.notice VALUES (29429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705346768);
INSERT INTO public.notice VALUES (29430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705347367);
INSERT INTO public.notice VALUES (29431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705347967);
INSERT INTO public.notice VALUES (29432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705348568);
INSERT INTO public.notice VALUES (29433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705349168);
INSERT INTO public.notice VALUES (29434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705349767);
INSERT INTO public.notice VALUES (29435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705350368);
INSERT INTO public.notice VALUES (29436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705350968);
INSERT INTO public.notice VALUES (29437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705351567);
INSERT INTO public.notice VALUES (29438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705352166);
INSERT INTO public.notice VALUES (29439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705352768);
INSERT INTO public.notice VALUES (29440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705353369);
INSERT INTO public.notice VALUES (29441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705353967);
INSERT INTO public.notice VALUES (29446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705356968);
INSERT INTO public.notice VALUES (29442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705354569);
INSERT INTO public.notice VALUES (29443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705355168);
INSERT INTO public.notice VALUES (29444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705355768);
INSERT INTO public.notice VALUES (29445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705356367);
INSERT INTO public.notice VALUES (29447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705357568);
INSERT INTO public.notice VALUES (29448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705358167);
INSERT INTO public.notice VALUES (29449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705358768);
INSERT INTO public.notice VALUES (29450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705359368);
INSERT INTO public.notice VALUES (29451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705359967);
INSERT INTO public.notice VALUES (29452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705360574);
INSERT INTO public.notice VALUES (29453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705361169);
INSERT INTO public.notice VALUES (29454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705361768);
INSERT INTO public.notice VALUES (29455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705362368);
INSERT INTO public.notice VALUES (29456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705362967);
INSERT INTO public.notice VALUES (29457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705363568);
INSERT INTO public.notice VALUES (29458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705364168);
INSERT INTO public.notice VALUES (29459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705364767);
INSERT INTO public.notice VALUES (29460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705365368);
INSERT INTO public.notice VALUES (29461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705365968);
INSERT INTO public.notice VALUES (29462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705366567);
INSERT INTO public.notice VALUES (29463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705367167);
INSERT INTO public.notice VALUES (29464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705367768);
INSERT INTO public.notice VALUES (29465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705368367);
INSERT INTO public.notice VALUES (29466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705368972);
INSERT INTO public.notice VALUES (29467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705369567);
INSERT INTO public.notice VALUES (29468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705370176);
INSERT INTO public.notice VALUES (29469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705370771);
INSERT INTO public.notice VALUES (29470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705371368);
INSERT INTO public.notice VALUES (29471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705371968);
INSERT INTO public.notice VALUES (29472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705372567);
INSERT INTO public.notice VALUES (29473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705373169);
INSERT INTO public.notice VALUES (29474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705373768);
INSERT INTO public.notice VALUES (29475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705374368);
INSERT INTO public.notice VALUES (29476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705374967);
INSERT INTO public.notice VALUES (29477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705375568);
INSERT INTO public.notice VALUES (29478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705376168);
INSERT INTO public.notice VALUES (29479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705376767);
INSERT INTO public.notice VALUES (29480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705377369);
INSERT INTO public.notice VALUES (29481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705377968);
INSERT INTO public.notice VALUES (29482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705378568);
INSERT INTO public.notice VALUES (29483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705379167);
INSERT INTO public.notice VALUES (29484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705379768);
INSERT INTO public.notice VALUES (29485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705380368);
INSERT INTO public.notice VALUES (29486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705380967);
INSERT INTO public.notice VALUES (29487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705381567);
INSERT INTO public.notice VALUES (29488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705382168);
INSERT INTO public.notice VALUES (29489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705382768);
INSERT INTO public.notice VALUES (29490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705383367);
INSERT INTO public.notice VALUES (29491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705383967);
INSERT INTO public.notice VALUES (29493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705385167);
INSERT INTO public.notice VALUES (29492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705384568);
INSERT INTO public.notice VALUES (29494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705385767);
INSERT INTO public.notice VALUES (29495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705386368);
INSERT INTO public.notice VALUES (29496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705386968);
INSERT INTO public.notice VALUES (29497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705387567);
INSERT INTO public.notice VALUES (29498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705388168);
INSERT INTO public.notice VALUES (29499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705388768);
INSERT INTO public.notice VALUES (29500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705389369);
INSERT INTO public.notice VALUES (29501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705389973);
INSERT INTO public.notice VALUES (29502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705390568);
INSERT INTO public.notice VALUES (29503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705391168);
INSERT INTO public.notice VALUES (29504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705391767);
INSERT INTO public.notice VALUES (29505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705392367);
INSERT INTO public.notice VALUES (29506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705392968);
INSERT INTO public.notice VALUES (29507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705393568);
INSERT INTO public.notice VALUES (29508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705394167);
INSERT INTO public.notice VALUES (29509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705394767);
INSERT INTO public.notice VALUES (29510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705395367);
INSERT INTO public.notice VALUES (29511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705395968);
INSERT INTO public.notice VALUES (29512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705396567);
INSERT INTO public.notice VALUES (29513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705397168);
INSERT INTO public.notice VALUES (29514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705397767);
INSERT INTO public.notice VALUES (29515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705398369);
INSERT INTO public.notice VALUES (29516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705398968);
INSERT INTO public.notice VALUES (29517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705399575);
INSERT INTO public.notice VALUES (29518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705400171);
INSERT INTO public.notice VALUES (29519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705400768);
INSERT INTO public.notice VALUES (29520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705401368);
INSERT INTO public.notice VALUES (29521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705401967);
INSERT INTO public.notice VALUES (29522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705402567);
INSERT INTO public.notice VALUES (29523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705403168);
INSERT INTO public.notice VALUES (29524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705403767);
INSERT INTO public.notice VALUES (29526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705404968);
INSERT INTO public.notice VALUES (29530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705407368);
INSERT INTO public.notice VALUES (29525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705404367);
INSERT INTO public.notice VALUES (29527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705405568);
INSERT INTO public.notice VALUES (29528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705406167);
INSERT INTO public.notice VALUES (29529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705406767);
INSERT INTO public.notice VALUES (29531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705407968);
INSERT INTO public.notice VALUES (29532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705408567);
INSERT INTO public.notice VALUES (29533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705409168);
INSERT INTO public.notice VALUES (29534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705409768);
INSERT INTO public.notice VALUES (29535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705410371);
INSERT INTO public.notice VALUES (29536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705410967);
INSERT INTO public.notice VALUES (29537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705411568);
INSERT INTO public.notice VALUES (29538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705412168);
INSERT INTO public.notice VALUES (29539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705412768);
INSERT INTO public.notice VALUES (29540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705413368);
INSERT INTO public.notice VALUES (29541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705413968);
INSERT INTO public.notice VALUES (29542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705414567);
INSERT INTO public.notice VALUES (29546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705416967);
INSERT INTO public.notice VALUES (29543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705415167);
INSERT INTO public.notice VALUES (29544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705415768);
INSERT INTO public.notice VALUES (29545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705416368);
INSERT INTO public.notice VALUES (29547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705417568);
INSERT INTO public.notice VALUES (29548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705418169);
INSERT INTO public.notice VALUES (29549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705418767);
INSERT INTO public.notice VALUES (29550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705419377);
INSERT INTO public.notice VALUES (29551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705419968);
INSERT INTO public.notice VALUES (29552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705420568);
INSERT INTO public.notice VALUES (29553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705421167);
INSERT INTO public.notice VALUES (29554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705421769);
INSERT INTO public.notice VALUES (29555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705422368);
INSERT INTO public.notice VALUES (29556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705422967);
INSERT INTO public.notice VALUES (29557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705423567);
INSERT INTO public.notice VALUES (29558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705424168);
INSERT INTO public.notice VALUES (29559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705424768);
INSERT INTO public.notice VALUES (29560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705425368);
INSERT INTO public.notice VALUES (29561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705425968);
INSERT INTO public.notice VALUES (29562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705426568);
INSERT INTO public.notice VALUES (29563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705427167);
INSERT INTO public.notice VALUES (29564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705427767);
INSERT INTO public.notice VALUES (29565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705428368);
INSERT INTO public.notice VALUES (29566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705428976);
INSERT INTO public.notice VALUES (29567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705429572);
INSERT INTO public.notice VALUES (29568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705430167);
INSERT INTO public.notice VALUES (29569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705430768);
INSERT INTO public.notice VALUES (29570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705431368);
INSERT INTO public.notice VALUES (29571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705431967);
INSERT INTO public.notice VALUES (29572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705432568);
INSERT INTO public.notice VALUES (29573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705433168);
INSERT INTO public.notice VALUES (29574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705433767);
INSERT INTO public.notice VALUES (29575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705434367);
INSERT INTO public.notice VALUES (29576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705434968);
INSERT INTO public.notice VALUES (29577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705435567);
INSERT INTO public.notice VALUES (29578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705436167);
INSERT INTO public.notice VALUES (29579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705436768);
INSERT INTO public.notice VALUES (29580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705437368);
INSERT INTO public.notice VALUES (29581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705437967);
INSERT INTO public.notice VALUES (29582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705438566);
INSERT INTO public.notice VALUES (29583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705439168);
INSERT INTO public.notice VALUES (29584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705439767);
INSERT INTO public.notice VALUES (29585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705440367);
INSERT INTO public.notice VALUES (29586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705440969);
INSERT INTO public.notice VALUES (29587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705441568);
INSERT INTO public.notice VALUES (29588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705442167);
INSERT INTO public.notice VALUES (29589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705442766);
INSERT INTO public.notice VALUES (29590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705443368);
INSERT INTO public.notice VALUES (29591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705443967);
INSERT INTO public.notice VALUES (29592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705444567);
INSERT INTO public.notice VALUES (29593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705445168);
INSERT INTO public.notice VALUES (29594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705445768);
INSERT INTO public.notice VALUES (29595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705446367);
INSERT INTO public.notice VALUES (29596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705446967);
INSERT INTO public.notice VALUES (29597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705447568);
INSERT INTO public.notice VALUES (29598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705448167);
INSERT INTO public.notice VALUES (29599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705448775);
INSERT INTO public.notice VALUES (29600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705449368);
INSERT INTO public.notice VALUES (29601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705449968);
INSERT INTO public.notice VALUES (29602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705450567);
INSERT INTO public.notice VALUES (29603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705451167);
INSERT INTO public.notice VALUES (29604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705451768);
INSERT INTO public.notice VALUES (29605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705452368);
INSERT INTO public.notice VALUES (29606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705452967);
INSERT INTO public.notice VALUES (29608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705454168);
INSERT INTO public.notice VALUES (29607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705453568);
INSERT INTO public.notice VALUES (29609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705454767);
INSERT INTO public.notice VALUES (29610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705455367);
INSERT INTO public.notice VALUES (29611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705455968);
INSERT INTO public.notice VALUES (29612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705456567);
INSERT INTO public.notice VALUES (29613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705457167);
INSERT INTO public.notice VALUES (29614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705457767);
INSERT INTO public.notice VALUES (29615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705458377);
INSERT INTO public.notice VALUES (29616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705458972);
INSERT INTO public.notice VALUES (29617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705459567);
INSERT INTO public.notice VALUES (29618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705460167);
INSERT INTO public.notice VALUES (29619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705460768);
INSERT INTO public.notice VALUES (29620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705461368);
INSERT INTO public.notice VALUES (29621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705461967);
INSERT INTO public.notice VALUES (29622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705462567);
INSERT INTO public.notice VALUES (29623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705463168);
INSERT INTO public.notice VALUES (29625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705464369);
INSERT INTO public.notice VALUES (29627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705465567);
INSERT INTO public.notice VALUES (29628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705466167);
INSERT INTO public.notice VALUES (29629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705466769);
INSERT INTO public.notice VALUES (29630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705467367);
INSERT INTO public.notice VALUES (29632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705468569);
INSERT INTO public.notice VALUES (29624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705463768);
INSERT INTO public.notice VALUES (29626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705464968);
INSERT INTO public.notice VALUES (29631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705467967);
INSERT INTO public.notice VALUES (29633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705469168);
INSERT INTO public.notice VALUES (29634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705469767);
INSERT INTO public.notice VALUES (29635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705470367);
INSERT INTO public.notice VALUES (29636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705470968);
INSERT INTO public.notice VALUES (29637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705471568);
INSERT INTO public.notice VALUES (29638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705472167);
INSERT INTO public.notice VALUES (29639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705472769);
INSERT INTO public.notice VALUES (29640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705473368);
INSERT INTO public.notice VALUES (29641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705473967);
INSERT INTO public.notice VALUES (29642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705474567);
INSERT INTO public.notice VALUES (29643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705475168);
INSERT INTO public.notice VALUES (29644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705475768);
INSERT INTO public.notice VALUES (29645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705476370);
INSERT INTO public.notice VALUES (29646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705476969);
INSERT INTO public.notice VALUES (29647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705477568);
INSERT INTO public.notice VALUES (29648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705478176);
INSERT INTO public.notice VALUES (29649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705478767);
INSERT INTO public.notice VALUES (29650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705479368);
INSERT INTO public.notice VALUES (29651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705479969);
INSERT INTO public.notice VALUES (29652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705480567);
INSERT INTO public.notice VALUES (29653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705481167);
INSERT INTO public.notice VALUES (29654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705481768);
INSERT INTO public.notice VALUES (29655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705482368);
INSERT INTO public.notice VALUES (29656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705482967);
INSERT INTO public.notice VALUES (29657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705483568);
INSERT INTO public.notice VALUES (29658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705484168);
INSERT INTO public.notice VALUES (29659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705484767);
INSERT INTO public.notice VALUES (29660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705485367);
INSERT INTO public.notice VALUES (29661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705485968);
INSERT INTO public.notice VALUES (29662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705486567);
INSERT INTO public.notice VALUES (29663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705487168);
INSERT INTO public.notice VALUES (29664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705487775);
INSERT INTO public.notice VALUES (29665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705488371);
INSERT INTO public.notice VALUES (29666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705488969);
INSERT INTO public.notice VALUES (29667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705489568);
INSERT INTO public.notice VALUES (29668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705490167);
INSERT INTO public.notice VALUES (29669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705490767);
INSERT INTO public.notice VALUES (29670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705491370);
INSERT INTO public.notice VALUES (29671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705491968);
INSERT INTO public.notice VALUES (29672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705492567);
INSERT INTO public.notice VALUES (29673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705493167);
INSERT INTO public.notice VALUES (29674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705493768);
INSERT INTO public.notice VALUES (29675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705494368);
INSERT INTO public.notice VALUES (29676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705494967);
INSERT INTO public.notice VALUES (29678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705496168);
INSERT INTO public.notice VALUES (29681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705497969);
INSERT INTO public.notice VALUES (29682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705498567);
INSERT INTO public.notice VALUES (29685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705500368);
INSERT INTO public.notice VALUES (29688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705502169);
INSERT INTO public.notice VALUES (29677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705495568);
INSERT INTO public.notice VALUES (29679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705496767);
INSERT INTO public.notice VALUES (29680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705497369);
INSERT INTO public.notice VALUES (29683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705499167);
INSERT INTO public.notice VALUES (29684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705499768);
INSERT INTO public.notice VALUES (29686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705500967);
INSERT INTO public.notice VALUES (29687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705501567);
INSERT INTO public.notice VALUES (29689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705502769);
INSERT INTO public.notice VALUES (29690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705503367);
INSERT INTO public.notice VALUES (29691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705503968);
INSERT INTO public.notice VALUES (29692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705504568);
INSERT INTO public.notice VALUES (29693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705505167);
INSERT INTO public.notice VALUES (29694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705505767);
INSERT INTO public.notice VALUES (29695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705506369);
INSERT INTO public.notice VALUES (29696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705506967);
INSERT INTO public.notice VALUES (29697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705507575);
INSERT INTO public.notice VALUES (29698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705508168);
INSERT INTO public.notice VALUES (29699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705508768);
INSERT INTO public.notice VALUES (29700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705509367);
INSERT INTO public.notice VALUES (29701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705509967);
INSERT INTO public.notice VALUES (29702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705510568);
INSERT INTO public.notice VALUES (29703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705511168);
INSERT INTO public.notice VALUES (29704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705511768);
INSERT INTO public.notice VALUES (29705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705512368);
INSERT INTO public.notice VALUES (29706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705512968);
INSERT INTO public.notice VALUES (29707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705513567);
INSERT INTO public.notice VALUES (29708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705514167);
INSERT INTO public.notice VALUES (29709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705514768);
INSERT INTO public.notice VALUES (29710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705515368);
INSERT INTO public.notice VALUES (29711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705515967);
INSERT INTO public.notice VALUES (29712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705516568);
INSERT INTO public.notice VALUES (29713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705517176);
INSERT INTO public.notice VALUES (29714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705517771);
INSERT INTO public.notice VALUES (29715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705518367);
INSERT INTO public.notice VALUES (29716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705518968);
INSERT INTO public.notice VALUES (29717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705519567);
INSERT INTO public.notice VALUES (29718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705520167);
INSERT INTO public.notice VALUES (29719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705520768);
INSERT INTO public.notice VALUES (29720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705521368);
INSERT INTO public.notice VALUES (29721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705521967);
INSERT INTO public.notice VALUES (29722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705522567);
INSERT INTO public.notice VALUES (29723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705523168);
INSERT INTO public.notice VALUES (29724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705523768);
INSERT INTO public.notice VALUES (29725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705524367);
INSERT INTO public.notice VALUES (29726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705524968);
INSERT INTO public.notice VALUES (29727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705525568);
INSERT INTO public.notice VALUES (29728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705526167);
INSERT INTO public.notice VALUES (29729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705526768);
INSERT INTO public.notice VALUES (29732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705528567);
INSERT INTO public.notice VALUES (29733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705529166);
INSERT INTO public.notice VALUES (29734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705529768);
INSERT INTO public.notice VALUES (29735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705530367);
INSERT INTO public.notice VALUES (29736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705530967);
INSERT INTO public.notice VALUES (29742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705534567);
INSERT INTO public.notice VALUES (29730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705527368);
INSERT INTO public.notice VALUES (29731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705527968);
INSERT INTO public.notice VALUES (29737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705531568);
INSERT INTO public.notice VALUES (29738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705532168);
INSERT INTO public.notice VALUES (29739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705532767);
INSERT INTO public.notice VALUES (29740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705533366);
INSERT INTO public.notice VALUES (29741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705533968);
INSERT INTO public.notice VALUES (29743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705535167);
INSERT INTO public.notice VALUES (29744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705535768);
INSERT INTO public.notice VALUES (29745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705536368);
INSERT INTO public.notice VALUES (29746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705536974);
INSERT INTO public.notice VALUES (29747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705537566);
INSERT INTO public.notice VALUES (29748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705538168);
INSERT INTO public.notice VALUES (29749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705538767);
INSERT INTO public.notice VALUES (29750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705539367);
INSERT INTO public.notice VALUES (29751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705539968);
INSERT INTO public.notice VALUES (29752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705540568);
INSERT INTO public.notice VALUES (29755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705542368);
INSERT INTO public.notice VALUES (29756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705542967);
INSERT INTO public.notice VALUES (29758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705544168);
INSERT INTO public.notice VALUES (29760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705545367);
INSERT INTO public.notice VALUES (29753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705541167);
INSERT INTO public.notice VALUES (29754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705541769);
INSERT INTO public.notice VALUES (29757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705543567);
INSERT INTO public.notice VALUES (29759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705544767);
INSERT INTO public.notice VALUES (29761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705545967);
INSERT INTO public.notice VALUES (29762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705546577);
INSERT INTO public.notice VALUES (29763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705547171);
INSERT INTO public.notice VALUES (29764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705547768);
INSERT INTO public.notice VALUES (29765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705548367);
INSERT INTO public.notice VALUES (29766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705548968);
INSERT INTO public.notice VALUES (29767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705549567);
INSERT INTO public.notice VALUES (29768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705550167);
INSERT INTO public.notice VALUES (29769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705550768);
INSERT INTO public.notice VALUES (29770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705551368);
INSERT INTO public.notice VALUES (29771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705551967);
INSERT INTO public.notice VALUES (29772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705552567);
INSERT INTO public.notice VALUES (29773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705553168);
INSERT INTO public.notice VALUES (29774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705553767);
INSERT INTO public.notice VALUES (29775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705554367);
INSERT INTO public.notice VALUES (29776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705554969);
INSERT INTO public.notice VALUES (29777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705555568);
INSERT INTO public.notice VALUES (29778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705556167);
INSERT INTO public.notice VALUES (29779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705556767);
INSERT INTO public.notice VALUES (29780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705557368);
INSERT INTO public.notice VALUES (29781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705557968);
INSERT INTO public.notice VALUES (29782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705558567);
INSERT INTO public.notice VALUES (29783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705559169);
INSERT INTO public.notice VALUES (29784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705559769);
INSERT INTO public.notice VALUES (29785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705560367);
INSERT INTO public.notice VALUES (29786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705560967);
INSERT INTO public.notice VALUES (29787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705561568);
INSERT INTO public.notice VALUES (29788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705562168);
INSERT INTO public.notice VALUES (29789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705562768);
INSERT INTO public.notice VALUES (29790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705563367);
INSERT INTO public.notice VALUES (29791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705563968);
INSERT INTO public.notice VALUES (29792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705564568);
INSERT INTO public.notice VALUES (29793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705565167);
INSERT INTO public.notice VALUES (29794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705565767);
INSERT INTO public.notice VALUES (29795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705566375);
INSERT INTO public.notice VALUES (29796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705566967);
INSERT INTO public.notice VALUES (29797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705567567);
INSERT INTO public.notice VALUES (29798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705568168);
INSERT INTO public.notice VALUES (29799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705568768);
INSERT INTO public.notice VALUES (29800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705569367);
INSERT INTO public.notice VALUES (29801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705569967);
INSERT INTO public.notice VALUES (29802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705570568);
INSERT INTO public.notice VALUES (29803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705571167);
INSERT INTO public.notice VALUES (29804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705571911);
INSERT INTO public.notice VALUES (29805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705572511);
INSERT INTO public.notice VALUES (29806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705573110);
INSERT INTO public.notice VALUES (29807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705573710);
INSERT INTO public.notice VALUES (29808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705574311);
INSERT INTO public.notice VALUES (29809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705574911);
INSERT INTO public.notice VALUES (29810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705575520);
INSERT INTO public.notice VALUES (29811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705576115);
INSERT INTO public.notice VALUES (29812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705576711);
INSERT INTO public.notice VALUES (29813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705577310);
INSERT INTO public.notice VALUES (29814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705577910);
INSERT INTO public.notice VALUES (29815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705578511);
INSERT INTO public.notice VALUES (29816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705579111);
INSERT INTO public.notice VALUES (29817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705579710);
INSERT INTO public.notice VALUES (29818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705580312);
INSERT INTO public.notice VALUES (29819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705580911);
INSERT INTO public.notice VALUES (29820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705581510);
INSERT INTO public.notice VALUES (29821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705582110);
INSERT INTO public.notice VALUES (29822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705582711);
INSERT INTO public.notice VALUES (29823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705583311);
INSERT INTO public.notice VALUES (29824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705583910);
INSERT INTO public.notice VALUES (29825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705584510);
INSERT INTO public.notice VALUES (29826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705585111);
INSERT INTO public.notice VALUES (29827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705585711);
INSERT INTO public.notice VALUES (29828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705586311);
INSERT INTO public.notice VALUES (29829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705586913);
INSERT INTO public.notice VALUES (29830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705587511);
INSERT INTO public.notice VALUES (29831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705588110);
INSERT INTO public.notice VALUES (29832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705588710);
INSERT INTO public.notice VALUES (29833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705589311);
INSERT INTO public.notice VALUES (29834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705589911);
INSERT INTO public.notice VALUES (29835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705590510);
INSERT INTO public.notice VALUES (29836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705591110);
INSERT INTO public.notice VALUES (29839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705592910);
INSERT INTO public.notice VALUES (29840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705593511);
INSERT INTO public.notice VALUES (29837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705591711);
INSERT INTO public.notice VALUES (29838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705592311);
INSERT INTO public.notice VALUES (29841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705594111);
INSERT INTO public.notice VALUES (29842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705594710);
INSERT INTO public.notice VALUES (29843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705595317);
INSERT INTO public.notice VALUES (29844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705595911);
INSERT INTO public.notice VALUES (29845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705596510);
INSERT INTO public.notice VALUES (29846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705597111);
INSERT INTO public.notice VALUES (29847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705597712);
INSERT INTO public.notice VALUES (29848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705598311);
INSERT INTO public.notice VALUES (29849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705598911);
INSERT INTO public.notice VALUES (29850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705599510);
INSERT INTO public.notice VALUES (29851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705600111);
INSERT INTO public.notice VALUES (29852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705600711);
INSERT INTO public.notice VALUES (29853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705601310);
INSERT INTO public.notice VALUES (29854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705601912);
INSERT INTO public.notice VALUES (29855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705602511);
INSERT INTO public.notice VALUES (29856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705603110);
INSERT INTO public.notice VALUES (29857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705603710);
INSERT INTO public.notice VALUES (29858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705604312);
INSERT INTO public.notice VALUES (29859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705604920);
INSERT INTO public.notice VALUES (29860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705605514);
INSERT INTO public.notice VALUES (29861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705606110);
INSERT INTO public.notice VALUES (29862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705606711);
INSERT INTO public.notice VALUES (29863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705607310);
INSERT INTO public.notice VALUES (29864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705607910);
INSERT INTO public.notice VALUES (29865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705608511);
INSERT INTO public.notice VALUES (29866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705609111);
INSERT INTO public.notice VALUES (29867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705609710);
INSERT INTO public.notice VALUES (29868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705610310);
INSERT INTO public.notice VALUES (29869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705610911);
INSERT INTO public.notice VALUES (29870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705611511);
INSERT INTO public.notice VALUES (29871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705612110);
INSERT INTO public.notice VALUES (29872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705612709);
INSERT INTO public.notice VALUES (29873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705613311);
INSERT INTO public.notice VALUES (29874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705613910);
INSERT INTO public.notice VALUES (29875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705614510);
INSERT INTO public.notice VALUES (29876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705615111);
INSERT INTO public.notice VALUES (29877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705615711);
INSERT INTO public.notice VALUES (29878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705616310);
INSERT INTO public.notice VALUES (29879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705616910);
INSERT INTO public.notice VALUES (29880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705617511);
INSERT INTO public.notice VALUES (29881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705618110);
INSERT INTO public.notice VALUES (29882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705618710);
INSERT INTO public.notice VALUES (29883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705619311);
INSERT INTO public.notice VALUES (29884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705619911);
INSERT INTO public.notice VALUES (29885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705620510);
INSERT INTO public.notice VALUES (29886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705621110);
INSERT INTO public.notice VALUES (29887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705621711);
INSERT INTO public.notice VALUES (29891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705624111);
INSERT INTO public.notice VALUES (29892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705624718);
INSERT INTO public.notice VALUES (29888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705622311);
INSERT INTO public.notice VALUES (29889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705622910);
INSERT INTO public.notice VALUES (29890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705623511);
INSERT INTO public.notice VALUES (29893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705625310);
INSERT INTO public.notice VALUES (29894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705625911);
INSERT INTO public.notice VALUES (29895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705626511);
INSERT INTO public.notice VALUES (29896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705627110);
INSERT INTO public.notice VALUES (29897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705627711);
INSERT INTO public.notice VALUES (29898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705628311);
INSERT INTO public.notice VALUES (29899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705628910);
INSERT INTO public.notice VALUES (29900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705629510);
INSERT INTO public.notice VALUES (29901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705630111);
INSERT INTO public.notice VALUES (29902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705630711);
INSERT INTO public.notice VALUES (29903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705631310);
INSERT INTO public.notice VALUES (29904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705631910);
INSERT INTO public.notice VALUES (29905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705632511);
INSERT INTO public.notice VALUES (29906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705633111);
INSERT INTO public.notice VALUES (29907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705633710);
INSERT INTO public.notice VALUES (29908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705634317);
INSERT INTO public.notice VALUES (29909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705634915);
INSERT INTO public.notice VALUES (29910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705636111);
INSERT INTO public.notice VALUES (29911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705636710);
INSERT INTO public.notice VALUES (29912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705637312);
INSERT INTO public.notice VALUES (29913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705637911);
INSERT INTO public.notice VALUES (29914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705639111);
INSERT INTO public.notice VALUES (29915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705639710);
INSERT INTO public.notice VALUES (29916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705640312);
INSERT INTO public.notice VALUES (29917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705640911);
INSERT INTO public.notice VALUES (29918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705641510);
INSERT INTO public.notice VALUES (29919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705642110);
INSERT INTO public.notice VALUES (29920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705642711);
INSERT INTO public.notice VALUES (29921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705643311);
INSERT INTO public.notice VALUES (29922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705643910);
INSERT INTO public.notice VALUES (29923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied
fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/''
', 1705644510);


--
-- Data for Name: notification; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.notification VALUES (15, 1, 21, 2, 2, 9, '', 0, 1, 1702610171, 1703235699);
INSERT INTO public.notification VALUES (1, 2, 1, 1, 1, 1, '', 0, 1, 1685071485, 1685071535);
INSERT INTO public.notification VALUES (18, 1, 21, 2, 2, 10, '', 0, 1, 1702615292, 1703235699);
INSERT INTO public.notification VALUES (19, 1, 21, 2, 2, 11, '', 0, 1, 1702625970, 1703235699);
INSERT INTO public.notification VALUES (2, 5, 21, 1, 2, 2, '', 0, 1, 1702096330, 1702096971);
INSERT INTO public.notification VALUES (22, 1, 21, 2, 2, 12, '', 0, 1, 1702626230, 1703235699);
INSERT INTO public.notification VALUES (23, 1, 21, 2, 2, 13, '', 0, 1, 1702641380, 1703235699);
INSERT INTO public.notification VALUES (25, 1, 21, 2, 2, 14, '', 0, 1, 1702641474, 1703235699);
INSERT INTO public.notification VALUES (3, 5, 21, 1, 2, 3, '', 0, 11, 1702262295, 1702262654);
INSERT INTO public.notification VALUES (27, 1, 21, 2, 2, 15, '', 0, 1, 1702883680, 1703235699);
INSERT INTO public.notification VALUES (29, 1, 21, 2, 2, 16, '', 0, 1, 1702887104, 1703235699);
INSERT INTO public.notification VALUES (5, 5, 21, 1, 2, 4, '', 0, 11, 1702268904, 1702268925);
INSERT INTO public.notification VALUES (32, 1, 21, 2, 2, 17, '', 0, 1, 1702887897, 1703235699);
INSERT INTO public.notification VALUES (33, 1, 21, 2, 2, 18, '', 0, 1, 1702891929, 1703235699);
INSERT INTO public.notification VALUES (36, 1, 21, 2, 2, 19, '', 0, 1, 1702950877, 1703235699);
INSERT INTO public.notification VALUES (8, 5, 21, 1, 2, 5, '', 0, 11, 1702367036, 1702367055);
INSERT INTO public.notification VALUES (37, 1, 21, 2, 2, 20, '', 0, 1, 1702957085, 1703235699);
INSERT INTO public.notification VALUES (40, 1, 21, 2, 2, 21, '', 0, 1, 1702958708, 1703235699);
INSERT INTO public.notification VALUES (41, 1, 21, 2, 2, 22, '', 0, 1, 1702978976, 1703235699);
INSERT INTO public.notification VALUES (9, 5, 21, 1, 2, 6, '', 0, 11, 1702372533, 1702372550);
INSERT INTO public.notification VALUES (44, 1, 21, 2, 2, 23, '', 0, 1, 1703217102, 1703235699);
INSERT INTO public.notification VALUES (12, 5, 21, 1, 2, 7, '', 0, 11, 1702438669, 1702438684);
INSERT INTO public.notification VALUES (4, 1, 21, 2, 2, 3, '', 0, 1, 1702262295, 1702460313);
INSERT INTO public.notification VALUES (6, 1, 21, 2, 2, 4, '', 0, 1, 1702268904, 1702460313);
INSERT INTO public.notification VALUES (7, 1, 21, 2, 2, 5, '', 0, 1, 1702367036, 1702460313);
INSERT INTO public.notification VALUES (10, 1, 21, 2, 2, 6, '', 0, 1, 1702372533, 1702460313);
INSERT INTO public.notification VALUES (11, 1, 21, 2, 2, 7, '', 0, 1, 1702438669, 1702460313);
INSERT INTO public.notification VALUES (45, 5, 21, 1, 2, 24, '', 0, 11, 1703581443, 1703581458);
INSERT INTO public.notification VALUES (142, 16, 21, 1, 2, 57, '', 0, 11, 1704679123, 1704679143);
INSERT INTO public.notification VALUES (13, 5, 21, 1, 2, 8, '', 0, 11, 1702545119, 1702545136);
INSERT INTO public.notification VALUES (14, 1, 21, 2, 2, 8, '', 0, 11, 1702545119, 1702603423);
INSERT INTO public.notification VALUES (47, 5, 21, 1, 2, 25, '', 0, 11, 1703733086, 1703733102);
INSERT INTO public.notification VALUES (58, 1, 21, 2, 2, 29, '', 0, 1, 1703842273, 1704675363);
INSERT INTO public.notification VALUES (16, 5, 21, 1, 2, 9, '', 0, 11, 1702610171, 1702610184);
INSERT INTO public.notification VALUES (61, 1, 21, 2, 2, 30, '', 0, 1, 1704247128, 1704675363);
INSERT INTO public.notification VALUES (65, 1, 21, 2, 2, 31, '', 0, 1, 1704247791, 1704675363);
INSERT INTO public.notification VALUES (17, 5, 21, 1, 2, 10, '', 0, 11, 1702615292, 1702615309);
INSERT INTO public.notification VALUES (49, 5, 21, 1, 2, 26, '', 0, 11, 1703749799, 1703749814);
INSERT INTO public.notification VALUES (20, 5, 21, 1, 2, 11, '', 0, 11, 1702625970, 1702625987);
INSERT INTO public.notification VALUES (143, 1, 21, 2, 2, 57, '', 0, 1, 1704679123, 1704701226);
INSERT INTO public.notification VALUES (46, 1, 21, 2, 2, 24, '', 0, 1, 1703581443, 1703754294);
INSERT INTO public.notification VALUES (48, 1, 21, 2, 2, 25, '', 0, 1, 1703733086, 1703754294);
INSERT INTO public.notification VALUES (21, 5, 21, 1, 2, 12, '', 0, 11, 1702626230, 1702626249);
INSERT INTO public.notification VALUES (50, 1, 21, 2, 2, 26, '', 0, 1, 1703749799, 1703754294);
INSERT INTO public.notification VALUES (24, 5, 21, 1, 2, 13, '', 0, 11, 1702641380, 1702641399);
INSERT INTO public.notification VALUES (52, 5, 21, 1, 2, 27, '', 0, 11, 1703757401, 1703757416);
INSERT INTO public.notification VALUES (26, 5, 21, 1, 2, 14, '', 0, 11, 1702641474, 1702642087);
INSERT INTO public.notification VALUES (28, 5, 21, 1, 2, 15, '', 0, 11, 1702883680, 1702883703);
INSERT INTO public.notification VALUES (30, 5, 21, 1, 2, 16, '', 0, 11, 1702887104, 1702887119);
INSERT INTO public.notification VALUES (31, 5, 21, 1, 2, 17, '', 0, 11, 1702887897, 1702887924);
INSERT INTO public.notification VALUES (56, 5, 21, 1, 2, 28, '', 0, 11, 1703820636, 1703820651);
INSERT INTO public.notification VALUES (51, 1, 21, 2, 2, 27, '', 0, 1, 1703757401, 1703834616);
INSERT INTO public.notification VALUES (34, 5, 21, 1, 2, 18, '', 0, 11, 1702891929, 1702891944);
INSERT INTO public.notification VALUES (55, 1, 21, 2, 2, 28, '', 0, 1, 1703820636, 1703834616);
INSERT INTO public.notification VALUES (53, 16, 21, 2, 2, 27, '', 0, 16, 1703757401, 1703836418);
INSERT INTO public.notification VALUES (54, 16, 21, 2, 2, 28, '', 0, 16, 1703820636, 1703836418);
INSERT INTO public.notification VALUES (35, 5, 21, 1, 2, 19, '', 0, 11, 1702950877, 1702953626);
INSERT INTO public.notification VALUES (38, 5, 21, 1, 2, 20, '', 0, 11, 1702957085, 1702957101);
INSERT INTO public.notification VALUES (59, 16, 21, 1, 2, 29, '', 0, 11, 1703842273, 1703842290);
INSERT INTO public.notification VALUES (39, 5, 21, 1, 2, 21, '', 0, 11, 1702958708, 1702958723);
INSERT INTO public.notification VALUES (57, 5, 21, 1, 2, 29, '', 0, 11, 1703842273, 1703842290);
INSERT INTO public.notification VALUES (42, 5, 21, 1, 2, 22, '', 0, 11, 1702978976, 1702979015);
INSERT INTO public.notification VALUES (43, 5, 21, 1, 2, 23, '', 0, 11, 1703217102, 1703217120);
INSERT INTO public.notification VALUES (62, 5, 21, 1, 2, 30, '', 0, 11, 1704247129, 1704247146);
INSERT INTO public.notification VALUES (60, 16, 21, 1, 2, 30, '', 0, 11, 1704247128, 1704247146);
INSERT INTO public.notification VALUES (64, 16, 21, 1, 2, 31, '', 0, 11, 1704247791, 1704247806);
INSERT INTO public.notification VALUES (63, 5, 21, 1, 2, 31, '', 0, 11, 1704247791, 1704247806);
INSERT INTO public.notification VALUES (68, 5, 21, 1, 2, 32, '', 0, 11, 1704254947, 1704254968);
INSERT INTO public.notification VALUES (66, 16, 21, 1, 2, 32, '', 0, 11, 1704254947, 1704254968);
INSERT INTO public.notification VALUES (70, 5, 21, 1, 2, 33, '', 0, 11, 1704270128, 1704270143);
INSERT INTO public.notification VALUES (71, 16, 21, 1, 2, 33, '', 0, 11, 1704270128, 1704270143);
INSERT INTO public.notification VALUES (89, 16, 21, 1, 2, 39, '', 0, 11, 1704428630, 1704428657);
INSERT INTO public.notification VALUES (88, 5, 21, 1, 2, 39, '', 0, 11, 1704428630, 1704428657);
INSERT INTO public.notification VALUES (141, 5, 21, 1, 2, 57, '', 0, 11, 1704679123, 1704679143);
INSERT INTO public.notification VALUES (72, 16, 21, 1, 2, 34, '', 0, 11, 1704337474, 1704337489);
INSERT INTO public.notification VALUES (233, 5, 21, 1, 2, 87, '', 0, 11, 1705044514, 1705044538);
INSERT INTO public.notification VALUES (73, 5, 21, 1, 2, 34, '', 0, 11, 1704337474, 1704337489);
INSERT INTO public.notification VALUES (91, 5, 21, 1, 2, 40, '', 0, 11, 1704444553, 1704444568);
INSERT INTO public.notification VALUES (92, 16, 21, 1, 2, 40, '', 0, 11, 1704444553, 1704444568);
INSERT INTO public.notification VALUES (231, 16, 21, 1, 2, 87, '', 0, 11, 1705044514, 1705044538);
INSERT INTO public.notification VALUES (75, 16, 21, 1, 2, 35, '', 0, 11, 1704337712, 1704337728);
INSERT INTO public.notification VALUES (76, 5, 21, 1, 2, 35, '', 0, 11, 1704337712, 1704337728);
INSERT INTO public.notification VALUES (304, 5, 21, 1, 2, 226, '', 0, 11, 1705561420, 1705561435);
INSERT INTO public.notification VALUES (303, 16, 21, 1, 2, 226, '', 0, 11, 1705561420, 1705561435);
INSERT INTO public.notification VALUES (144, 5, 21, 1, 2, 58, '', 0, 11, 1704679832, 1704679845);
INSERT INTO public.notification VALUES (145, 16, 21, 1, 2, 58, '', 0, 11, 1704679832, 1704679845);
INSERT INTO public.notification VALUES (79, 5, 21, 1, 2, 36, '', 0, 11, 1704349758, 1704349775);
INSERT INTO public.notification VALUES (151, 16, 21, 1, 2, 60, '', 0, 11, 1704685356, 1704685373);
INSERT INTO public.notification VALUES (80, 16, 21, 1, 2, 36, '', 0, 11, 1704349758, 1704349775);
INSERT INTO public.notification VALUES (95, 5, 21, 1, 2, 41, '', 0, 11, 1704446448, 1704446464);
INSERT INTO public.notification VALUES (94, 16, 21, 1, 2, 41, '', 0, 11, 1704446448, 1704446464);
INSERT INTO public.notification VALUES (82, 5, 21, 1, 2, 37, '', 0, 11, 1704352558, 1704352575);
INSERT INTO public.notification VALUES (81, 16, 21, 1, 2, 37, '', 0, 11, 1704352558, 1704352575);
INSERT INTO public.notification VALUES (152, 5, 21, 1, 2, 60, '', 0, 11, 1704685356, 1704685373);
INSERT INTO public.notification VALUES (146, 1, 21, 2, 2, 58, '', 0, 1, 1704679832, 1704701226);
INSERT INTO public.notification VALUES (150, 1, 21, 2, 2, 60, '', 0, 1, 1704685356, 1704701226);
INSERT INTO public.notification VALUES (158, 16, 21, 1, 2, 62, '', 0, 11, 1704705502, 1704705565);
INSERT INTO public.notification VALUES (85, 5, 21, 1, 2, 38, '', 0, 11, 1704422993, 1704423008);
INSERT INTO public.notification VALUES (156, 5, 21, 1, 2, 62, '', 0, 11, 1704705502, 1704705565);
INSERT INTO public.notification VALUES (86, 16, 21, 1, 2, 38, '', 0, 11, 1704422993, 1704423008);
INSERT INTO public.notification VALUES (305, 1, 21, 2, 2, 226, '', 0, 1, 1705561420, 1705571335);
INSERT INTO public.notification VALUES (96, 16, 21, 1, 2, 42, '', 0, 11, 1704464891, 1704464907);
INSERT INTO public.notification VALUES (97, 5, 21, 1, 2, 42, '', 0, 11, 1704464891, 1704464907);
INSERT INTO public.notification VALUES (101, 16, 21, 1, 2, 43, '', 0, 11, 1704526102, 1704526121);
INSERT INTO public.notification VALUES (99, 5, 21, 1, 2, 43, '', 0, 11, 1704526102, 1704526121);
INSERT INTO public.notification VALUES (167, 5, 21, 1, 2, 65, '', 0, 11, 1704766196, 1704766277);
INSERT INTO public.notification VALUES (166, 16, 21, 1, 2, 65, '', 0, 11, 1704766196, 1704766277);
INSERT INTO public.notification VALUES (104, 5, 21, 1, 2, 44, '', 0, 11, 1704530831, 1704530898);
INSERT INTO public.notification VALUES (102, 16, 21, 1, 2, 44, '', 0, 11, 1704530831, 1704530898);
INSERT INTO public.notification VALUES (173, 16, 21, 1, 2, 67, '', 0, 11, 1704774826, 1704774844);
INSERT INTO public.notification VALUES (171, 5, 21, 1, 2, 67, '', 0, 11, 1704774826, 1704774844);
INSERT INTO public.notification VALUES (107, 5, 21, 1, 2, 45, '', 0, 11, 1704533562, 1704533603);
INSERT INTO public.notification VALUES (105, 16, 21, 1, 2, 45, '', 0, 11, 1704533562, 1704533603);
INSERT INTO public.notification VALUES (110, 5, 21, 1, 2, 46, '', 0, 11, 1704534499, 1704534542);
INSERT INTO public.notification VALUES (177, 16, 21, 1, 2, 69, '', 0, 11, 1704784780, 1704784797);
INSERT INTO public.notification VALUES (109, 16, 21, 1, 2, 46, '', 0, 11, 1704534499, 1704534542);
INSERT INTO public.notification VALUES (178, 5, 21, 1, 2, 69, '', 0, 11, 1704784780, 1704784797);
INSERT INTO public.notification VALUES (113, 5, 21, 1, 2, 47, '', 0, 11, 1704534885, 1704534900);
INSERT INTO public.notification VALUES (111, 16, 21, 1, 2, 47, '', 0, 11, 1704534885, 1704534900);
INSERT INTO public.notification VALUES (183, 5, 21, 1, 2, 71, '', 0, 11, 1704807691, 1704807708);
INSERT INTO public.notification VALUES (184, 16, 21, 1, 2, 71, '', 0, 11, 1704807691, 1704807708);
INSERT INTO public.notification VALUES (116, 16, 21, 1, 2, 48, '', 0, 11, 1704535520, 1704535535);
INSERT INTO public.notification VALUES (115, 5, 21, 1, 2, 48, '', 0, 11, 1704535520, 1704535535);
INSERT INTO public.notification VALUES (117, 5, 21, 1, 2, 49, '', 0, 11, 1704538842, 1704538859);
INSERT INTO public.notification VALUES (118, 16, 21, 1, 2, 49, '', 0, 11, 1704538842, 1704538859);
INSERT INTO public.notification VALUES (122, 16, 21, 1, 2, 50, '', 0, 11, 1704540571, 1704540616);
INSERT INTO public.notification VALUES (120, 5, 21, 1, 2, 50, '', 0, 11, 1704540571, 1704540616);
INSERT INTO public.notification VALUES (125, 16, 21, 1, 2, 51, '', 0, 11, 1704558890, 1704558907);
INSERT INTO public.notification VALUES (124, 5, 21, 1, 2, 51, '', 0, 11, 1704558890, 1704558907);
INSERT INTO public.notification VALUES (128, 16, 21, 1, 2, 52, '', 0, 11, 1704559648, 1704559664);
INSERT INTO public.notification VALUES (127, 5, 21, 1, 2, 52, '', 0, 11, 1704559648, 1704559664);
INSERT INTO public.notification VALUES (129, 16, 21, 1, 2, 53, '', 0, 11, 1704561814, 1704561831);
INSERT INTO public.notification VALUES (131, 5, 21, 1, 2, 53, '', 0, 11, 1704561814, 1704561831);
INSERT INTO public.notification VALUES (134, 5, 21, 1, 2, 54, '', 0, 11, 1704563539, 1704563580);
INSERT INTO public.notification VALUES (133, 16, 21, 1, 2, 54, '', 0, 11, 1704563539, 1704563580);
INSERT INTO public.notification VALUES (137, 5, 21, 1, 2, 55, '', 0, 11, 1704649714, 1704649733);
INSERT INTO public.notification VALUES (136, 16, 21, 1, 2, 55, '', 0, 11, 1704649714, 1704649733);
INSERT INTO public.notification VALUES (139, 5, 21, 1, 2, 56, '', 0, 11, 1704650083, 1704650454);
INSERT INTO public.notification VALUES (138, 16, 21, 1, 2, 56, '', 0, 11, 1704650083, 1704650454);
INSERT INTO public.notification VALUES (67, 1, 21, 2, 2, 32, '', 0, 1, 1704254947, 1704675363);
INSERT INTO public.notification VALUES (69, 1, 21, 2, 2, 33, '', 0, 1, 1704270128, 1704675363);
INSERT INTO public.notification VALUES (87, 1, 21, 2, 2, 39, '', 0, 1, 1704428630, 1704675363);
INSERT INTO public.notification VALUES (74, 1, 21, 2, 2, 34, '', 0, 1, 1704337474, 1704675363);
INSERT INTO public.notification VALUES (90, 1, 21, 2, 2, 40, '', 0, 1, 1704444553, 1704675363);
INSERT INTO public.notification VALUES (77, 1, 21, 2, 2, 35, '', 0, 1, 1704337712, 1704675363);
INSERT INTO public.notification VALUES (78, 1, 21, 2, 2, 36, '', 0, 1, 1704349758, 1704675363);
INSERT INTO public.notification VALUES (93, 1, 21, 2, 2, 41, '', 0, 1, 1704446448, 1704675363);
INSERT INTO public.notification VALUES (83, 1, 21, 2, 2, 37, '', 0, 1, 1704352558, 1704675363);
INSERT INTO public.notification VALUES (84, 1, 21, 2, 2, 38, '', 0, 1, 1704422993, 1704675363);
INSERT INTO public.notification VALUES (98, 1, 21, 2, 2, 42, '', 0, 1, 1704464892, 1704675363);
INSERT INTO public.notification VALUES (100, 1, 21, 2, 2, 43, '', 0, 1, 1704526102, 1704675363);
INSERT INTO public.notification VALUES (103, 1, 21, 2, 2, 44, '', 0, 1, 1704530831, 1704675363);
INSERT INTO public.notification VALUES (106, 1, 21, 2, 2, 45, '', 0, 1, 1704533562, 1704675363);
INSERT INTO public.notification VALUES (108, 1, 21, 2, 2, 46, '', 0, 1, 1704534499, 1704675363);
INSERT INTO public.notification VALUES (112, 1, 21, 2, 2, 47, '', 0, 1, 1704534885, 1704675363);
INSERT INTO public.notification VALUES (114, 1, 21, 2, 2, 48, '', 0, 1, 1704535520, 1704675363);
INSERT INTO public.notification VALUES (119, 1, 21, 2, 2, 49, '', 0, 1, 1704538842, 1704675363);
INSERT INTO public.notification VALUES (121, 1, 21, 2, 2, 50, '', 0, 1, 1704540571, 1704675363);
INSERT INTO public.notification VALUES (123, 1, 21, 2, 2, 51, '', 0, 1, 1704558890, 1704675363);
INSERT INTO public.notification VALUES (126, 1, 21, 2, 2, 52, '', 0, 1, 1704559648, 1704675363);
INSERT INTO public.notification VALUES (130, 1, 21, 2, 2, 53, '', 0, 1, 1704561814, 1704675363);
INSERT INTO public.notification VALUES (132, 1, 21, 2, 2, 54, '', 0, 1, 1704563539, 1704675363);
INSERT INTO public.notification VALUES (135, 1, 21, 2, 2, 55, '', 0, 1, 1704649714, 1704675363);
INSERT INTO public.notification VALUES (140, 1, 21, 2, 2, 56, '', 0, 1, 1704650083, 1704675363);
INSERT INTO public.notification VALUES (237, 5, 21, 1, 2, 89, '', 0, 11, 1705047314, 1705047332);
INSERT INTO public.notification VALUES (238, 16, 21, 1, 2, 89, '', 0, 11, 1705047314, 1705047332);
INSERT INTO public.notification VALUES (148, 5, 21, 1, 2, 59, '', 0, 11, 1704681578, 1704681601);
INSERT INTO public.notification VALUES (147, 16, 21, 1, 2, 59, '', 0, 11, 1704681578, 1704681601);
INSERT INTO public.notification VALUES (308, 5, 21, 1, 2, 227, '', 0, 11, 1705561838, 1705561865);
INSERT INTO public.notification VALUES (307, 16, 21, 1, 2, 227, '', 0, 11, 1705561838, 1705561865);
INSERT INTO public.notification VALUES (153, 16, 21, 1, 2, 61, '', 0, 11, 1704698142, 1704698167);
INSERT INTO public.notification VALUES (154, 5, 21, 1, 2, 61, '', 0, 11, 1704698142, 1704698167);
INSERT INTO public.notification VALUES (149, 1, 21, 2, 2, 59, '', 0, 1, 1704681578, 1704701226);
INSERT INTO public.notification VALUES (155, 1, 21, 2, 2, 61, '', 0, 1, 1704698142, 1704701226);
INSERT INTO public.notification VALUES (159, 5, 21, 1, 2, 63, '', 0, 11, 1704706461, 1704706492);
INSERT INTO public.notification VALUES (161, 16, 21, 1, 2, 63, '', 0, 11, 1704706461, 1704706492);
INSERT INTO public.notification VALUES (306, 1, 21, 2, 2, 227, '', 0, 1, 1705561838, 1705571335);
INSERT INTO public.notification VALUES (162, 5, 21, 1, 2, 64, '', 0, 11, 1704707850, 1704707885);
INSERT INTO public.notification VALUES (311, 5, 21, 1, 2, 228, '', 0, 11, 1705631065, 1705631136);
INSERT INTO public.notification VALUES (163, 16, 21, 1, 2, 64, '', 0, 11, 1704707850, 1704707885);
INSERT INTO public.notification VALUES (310, 16, 21, 1, 2, 228, '', 0, 11, 1705631065, 1705631136);
INSERT INTO public.notification VALUES (309, 1, 21, 1, 2, 228, '', 0, 11, 1705631065, 1705631136);
INSERT INTO public.notification VALUES (168, 16, 21, 1, 2, 66, '', 0, 11, 1704767040, 1704767056);
INSERT INTO public.notification VALUES (169, 5, 21, 1, 2, 66, '', 0, 11, 1704767040, 1704767056);
INSERT INTO public.notification VALUES (175, 16, 21, 1, 2, 68, '', 0, 11, 1704783851, 1704783868);
INSERT INTO public.notification VALUES (174, 5, 21, 1, 2, 68, '', 0, 11, 1704783851, 1704783868);
INSERT INTO public.notification VALUES (181, 5, 21, 1, 2, 70, '', 0, 11, 1704787811, 1704787827);
INSERT INTO public.notification VALUES (180, 16, 21, 1, 2, 70, '', 0, 11, 1704787811, 1704787827);
INSERT INTO public.notification VALUES (187, 16, 21, 1, 2, 72, '', 0, 11, 1704853905, 1704853921);
INSERT INTO public.notification VALUES (188, 5, 21, 1, 2, 72, '', 0, 11, 1704853905, 1704853921);
INSERT INTO public.notification VALUES (190, 16, 21, 1, 2, 73, '', 0, 11, 1704854938, 1704854953);
INSERT INTO public.notification VALUES (191, 5, 21, 1, 2, 73, '', 0, 11, 1704854938, 1704854953);
INSERT INTO public.notification VALUES (193, 16, 21, 1, 2, 74, '', 0, 11, 1704868563, 1704868580);
INSERT INTO public.notification VALUES (192, 5, 21, 1, 2, 74, '', 0, 11, 1704868563, 1704868580);
INSERT INTO public.notification VALUES (196, 16, 21, 1, 2, 75, '', 0, 11, 1704870392, 1704870510);
INSERT INTO public.notification VALUES (195, 5, 21, 1, 2, 75, '', 0, 11, 1704870392, 1704870510);
INSERT INTO public.notification VALUES (198, 16, 21, 1, 2, 76, '', 0, 11, 1704878200, 1704878218);
INSERT INTO public.notification VALUES (200, 5, 21, 1, 2, 76, '', 0, 11, 1704878200, 1704878218);
INSERT INTO public.notification VALUES (201, 5, 21, 1, 2, 77, '', 0, 11, 1704878895, 1704878912);
INSERT INTO public.notification VALUES (202, 16, 21, 1, 2, 77, '', 0, 11, 1704878895, 1704878912);
INSERT INTO public.notification VALUES (205, 16, 21, 1, 2, 78, '', 0, 11, 1704937757, 1704937772);
INSERT INTO public.notification VALUES (204, 5, 21, 1, 2, 78, '', 0, 11, 1704937757, 1704937772);
INSERT INTO public.notification VALUES (209, 16, 21, 1, 2, 79, '', 0, 11, 1704944131, 1704944216);
INSERT INTO public.notification VALUES (207, 5, 21, 1, 2, 79, '', 0, 11, 1704944131, 1704944216);
INSERT INTO public.notification VALUES (210, 5, 21, 1, 2, 80, '', 0, 11, 1704945582, 1704945597);
INSERT INTO public.notification VALUES (211, 16, 21, 1, 2, 80, '', 0, 11, 1704945582, 1704945597);
INSERT INTO public.notification VALUES (215, 16, 21, 1, 2, 81, '', 0, 11, 1704947473, 1704947506);
INSERT INTO public.notification VALUES (213, 5, 21, 1, 2, 81, '', 0, 11, 1704947473, 1704947506);
INSERT INTO public.notification VALUES (216, 5, 21, 1, 2, 82, '', 0, 11, 1704956679, 1704956853);
INSERT INTO public.notification VALUES (218, 16, 21, 1, 2, 82, '', 0, 11, 1704956679, 1704956853);
INSERT INTO public.notification VALUES (234, 5, 21, 1, 2, 88, '', 0, 11, 1705045393, 1705045582);
INSERT INTO public.notification VALUES (236, 16, 21, 1, 2, 88, '', 0, 11, 1705045393, 1705045582);
INSERT INTO public.notification VALUES (220, 16, 21, 1, 2, 83, '', 0, 11, 1704958014, 1704958043);
INSERT INTO public.notification VALUES (221, 5, 21, 1, 2, 83, '', 0, 11, 1704958014, 1704958043);
INSERT INTO public.notification VALUES (224, 5, 21, 1, 2, 84, '', 0, 11, 1704990706, 1704990833);
INSERT INTO public.notification VALUES (223, 16, 21, 1, 2, 84, '', 0, 11, 1704990706, 1704990833);
INSERT INTO public.notification VALUES (242, 5, 21, 1, 2, 90, '', 0, 11, 1705050072, 1705050103);
INSERT INTO public.notification VALUES (240, 16, 21, 1, 2, 90, '', 0, 11, 1705050072, 1705050103);
INSERT INTO public.notification VALUES (225, 5, 21, 1, 2, 85, '', 0, 11, 1705025963, 1705025978);
INSERT INTO public.notification VALUES (227, 16, 21, 1, 2, 85, '', 0, 11, 1705025963, 1705025978);
INSERT INTO public.notification VALUES (230, 16, 21, 1, 2, 86, '', 0, 11, 1705030728, 1705030759);
INSERT INTO public.notification VALUES (229, 5, 21, 1, 2, 86, '', 0, 11, 1705030728, 1705030759);
INSERT INTO public.notification VALUES (243, 5, 21, 1, 2, 91, '', 0, 11, 1705052728, 1705052743);
INSERT INTO public.notification VALUES (244, 16, 21, 1, 2, 91, '', 0, 11, 1705052728, 1705052743);
INSERT INTO public.notification VALUES (248, 16, 21, 1, 2, 92, '', 0, 11, 1705207983, 1705208014);
INSERT INTO public.notification VALUES (246, 5, 21, 1, 2, 92, '', 0, 11, 1705207983, 1705208014);
INSERT INTO public.notification VALUES (250, 5, 21, 1, 2, 93, '', 0, 11, 1705311362, 1705311411);
INSERT INTO public.notification VALUES (251, 16, 21, 1, 2, 93, '', 0, 11, 1705311362, 1705311411);
INSERT INTO public.notification VALUES (253, 5, 21, 1, 2, 94, '', 0, 11, 1705311944, 1705312014);
INSERT INTO public.notification VALUES (254, 16, 21, 1, 2, 94, '', 0, 11, 1705311944, 1705312014);
INSERT INTO public.notification VALUES (255, 5, 21, 1, 2, 95, '', 0, 11, 1705312953, 1705312968);
INSERT INTO public.notification VALUES (257, 16, 21, 1, 2, 95, '', 0, 11, 1705312953, 1705312969);
INSERT INTO public.notification VALUES (260, 16, 21, 1, 2, 96, '', 0, 11, 1705320583, 1705320612);
INSERT INTO public.notification VALUES (259, 5, 21, 1, 2, 96, '', 0, 11, 1705320583, 1705320612);
INSERT INTO public.notification VALUES (261, 5, 21, 1, 2, 97, '', 0, 11, 1705321134, 1705321151);
INSERT INTO public.notification VALUES (263, 16, 21, 1, 2, 97, '', 0, 11, 1705321134, 1705321151);
INSERT INTO public.notification VALUES (266, 16, 21, 1, 2, 98, '', 0, 11, 1705321824, 1705321842);
INSERT INTO public.notification VALUES (265, 5, 21, 1, 2, 98, '', 0, 11, 1705321824, 1705321842);
INSERT INTO public.notification VALUES (267, 16, 21, 1, 2, 99, '', 0, 11, 1705329306, 1705329331);
INSERT INTO public.notification VALUES (269, 5, 21, 1, 2, 99, '', 0, 11, 1705329306, 1705329331);
INSERT INTO public.notification VALUES (271, 16, 21, 1, 2, 215, '', 0, 11, 1705369970, 1705369983);
INSERT INTO public.notification VALUES (270, 5, 21, 1, 2, 215, '', 0, 11, 1705369970, 1705369983);
INSERT INTO public.notification VALUES (273, 5, 21, 1, 2, 216, '', 0, 11, 1705389573, 1705389626);
INSERT INTO public.notification VALUES (275, 16, 21, 1, 2, 216, '', 0, 11, 1705389573, 1705389626);
INSERT INTO public.notification VALUES (277, 5, 21, 1, 2, 217, '', 0, 11, 1705393323, 1705393336);
INSERT INTO public.notification VALUES (278, 16, 21, 1, 2, 217, '', 0, 11, 1705393323, 1705393336);
INSERT INTO public.notification VALUES (280, 5, 21, 1, 2, 218, '', 0, 11, 1705394274, 1705394333);
INSERT INTO public.notification VALUES (279, 16, 21, 1, 2, 218, '', 0, 11, 1705394274, 1705394333);
INSERT INTO public.notification VALUES (282, 5, 21, 1, 2, 219, '', 0, 11, 1705395695, 1705395800);
INSERT INTO public.notification VALUES (284, 16, 21, 1, 2, 219, '', 0, 11, 1705395695, 1705395800);
INSERT INTO public.notification VALUES (287, 5, 21, 1, 2, 220, '', 0, 11, 1705396612, 1705396643);
INSERT INTO public.notification VALUES (285, 16, 21, 1, 2, 220, '', 0, 11, 1705396612, 1705396643);
INSERT INTO public.notification VALUES (214, 1, 21, 2, 2, 81, '', 0, 1, 1704947473, 1705464797);
INSERT INTO public.notification VALUES (235, 1, 21, 2, 2, 88, '', 0, 1, 1705045393, 1705464797);
INSERT INTO public.notification VALUES (217, 1, 21, 2, 2, 82, '', 0, 1, 1704956679, 1705464797);
INSERT INTO public.notification VALUES (289, 5, 21, 1, 2, 221, '', 0, 11, 1705396846, 1705396863);
INSERT INTO public.notification VALUES (288, 16, 21, 1, 2, 221, '', 0, 11, 1705396846, 1705396863);
INSERT INTO public.notification VALUES (292, 5, 21, 1, 2, 222, '', 0, 11, 1705397255, 1705397270);
INSERT INTO public.notification VALUES (293, 16, 21, 1, 2, 222, '', 0, 11, 1705397255, 1705397270);
INSERT INTO public.notification VALUES (294, 16, 21, 1, 2, 223, '', 0, 11, 1705457141, 1705457158);
INSERT INTO public.notification VALUES (295, 5, 21, 1, 2, 223, '', 0, 11, 1705457141, 1705457158);
INSERT INTO public.notification VALUES (299, 16, 21, 1, 2, 224, '', 0, 11, 1705458412, 1705458439);
INSERT INTO public.notification VALUES (298, 5, 21, 1, 2, 224, '', 0, 11, 1705458412, 1705458439);
INSERT INTO public.notification VALUES (301, 5, 21, 1, 2, 225, '', 0, 11, 1705463152, 1705463233);
INSERT INTO public.notification VALUES (300, 16, 21, 1, 2, 225, '', 0, 11, 1705463152, 1705463233);
INSERT INTO public.notification VALUES (157, 1, 21, 2, 2, 62, '', 0, 1, 1704705502, 1705464797);
INSERT INTO public.notification VALUES (165, 1, 21, 2, 2, 65, '', 0, 1, 1704766196, 1705464797);
INSERT INTO public.notification VALUES (172, 1, 21, 2, 2, 67, '', 0, 1, 1704774826, 1705464797);
INSERT INTO public.notification VALUES (179, 1, 21, 2, 2, 69, '', 0, 1, 1704784780, 1705464797);
INSERT INTO public.notification VALUES (232, 1, 21, 2, 2, 87, '', 0, 1, 1705044514, 1705464797);
INSERT INTO public.notification VALUES (160, 1, 21, 2, 2, 63, '', 0, 1, 1704706461, 1705464797);
INSERT INTO public.notification VALUES (164, 1, 21, 2, 2, 64, '', 0, 1, 1704707850, 1705464797);
INSERT INTO public.notification VALUES (170, 1, 21, 2, 2, 66, '', 0, 1, 1704767040, 1705464797);
INSERT INTO public.notification VALUES (176, 1, 21, 2, 2, 68, '', 0, 1, 1704783851, 1705464797);
INSERT INTO public.notification VALUES (182, 1, 21, 2, 2, 70, '', 0, 1, 1704787811, 1705464797);
INSERT INTO public.notification VALUES (185, 1, 21, 2, 2, 71, '', 0, 1, 1704807691, 1705464797);
INSERT INTO public.notification VALUES (186, 1, 21, 2, 2, 72, '', 0, 1, 1704853905, 1705464797);
INSERT INTO public.notification VALUES (189, 1, 21, 2, 2, 73, '', 0, 1, 1704854938, 1705464797);
INSERT INTO public.notification VALUES (194, 1, 21, 2, 2, 74, '', 0, 1, 1704868563, 1705464797);
INSERT INTO public.notification VALUES (197, 1, 21, 2, 2, 75, '', 0, 1, 1704870392, 1705464797);
INSERT INTO public.notification VALUES (199, 1, 21, 2, 2, 76, '', 0, 1, 1704878200, 1705464797);
INSERT INTO public.notification VALUES (203, 1, 21, 2, 2, 77, '', 0, 1, 1704878895, 1705464797);
INSERT INTO public.notification VALUES (206, 1, 21, 2, 2, 78, '', 0, 1, 1704937757, 1705464797);
INSERT INTO public.notification VALUES (208, 1, 21, 2, 2, 79, '', 0, 1, 1704944131, 1705464797);
INSERT INTO public.notification VALUES (212, 1, 21, 2, 2, 80, '', 0, 1, 1704945582, 1705464797);
INSERT INTO public.notification VALUES (239, 1, 21, 2, 2, 89, '', 0, 1, 1705047314, 1705464797);
INSERT INTO public.notification VALUES (219, 1, 21, 2, 2, 83, '', 0, 1, 1704958014, 1705464797);
INSERT INTO public.notification VALUES (222, 1, 21, 2, 2, 84, '', 0, 1, 1704990706, 1705464797);
INSERT INTO public.notification VALUES (241, 1, 21, 2, 2, 90, '', 0, 1, 1705050072, 1705464797);
INSERT INTO public.notification VALUES (226, 1, 21, 2, 2, 85, '', 0, 1, 1705025963, 1705464797);
INSERT INTO public.notification VALUES (228, 1, 21, 2, 2, 86, '', 0, 1, 1705030728, 1705464797);
INSERT INTO public.notification VALUES (245, 1, 21, 2, 2, 91, '', 0, 1, 1705052728, 1705464797);
INSERT INTO public.notification VALUES (247, 1, 21, 2, 2, 92, '', 0, 1, 1705207983, 1705464797);
INSERT INTO public.notification VALUES (249, 1, 21, 2, 2, 93, '', 0, 1, 1705311362, 1705464797);
INSERT INTO public.notification VALUES (252, 1, 21, 2, 2, 94, '', 0, 1, 1705311944, 1705464797);
INSERT INTO public.notification VALUES (256, 1, 21, 2, 2, 95, '', 0, 1, 1705312953, 1705464797);
INSERT INTO public.notification VALUES (258, 1, 21, 2, 2, 96, '', 0, 1, 1705320583, 1705464797);
INSERT INTO public.notification VALUES (262, 1, 21, 2, 2, 97, '', 0, 1, 1705321134, 1705464797);
INSERT INTO public.notification VALUES (264, 1, 21, 2, 2, 98, '', 0, 1, 1705321824, 1705464797);
INSERT INTO public.notification VALUES (268, 1, 21, 2, 2, 99, '', 0, 1, 1705329306, 1705464797);
INSERT INTO public.notification VALUES (272, 1, 21, 2, 2, 215, '', 0, 1, 1705369970, 1705464797);
INSERT INTO public.notification VALUES (274, 1, 21, 2, 2, 216, '', 0, 1, 1705389573, 1705464797);
INSERT INTO public.notification VALUES (276, 1, 21, 2, 2, 217, '', 0, 1, 1705393323, 1705464797);
INSERT INTO public.notification VALUES (281, 1, 21, 2, 2, 218, '', 0, 1, 1705394274, 1705464797);
INSERT INTO public.notification VALUES (283, 1, 21, 2, 2, 219, '', 0, 1, 1705395695, 1705464797);
INSERT INTO public.notification VALUES (286, 1, 21, 2, 2, 220, '', 0, 1, 1705396612, 1705464797);
INSERT INTO public.notification VALUES (290, 1, 21, 2, 2, 221, '', 0, 1, 1705396846, 1705464797);
INSERT INTO public.notification VALUES (291, 1, 21, 2, 2, 222, '', 0, 1, 1705397255, 1705464797);
INSERT INTO public.notification VALUES (296, 1, 21, 2, 2, 223, '', 0, 1, 1705457141, 1705464797);
INSERT INTO public.notification VALUES (297, 1, 21, 2, 2, 224, '', 0, 1, 1705458412, 1705464797);
INSERT INTO public.notification VALUES (302, 1, 21, 2, 2, 225, '', 0, 1, 1705463152, 1705464797);


--
-- Data for Name: oauth2_application; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.oauth2_application VALUES (1, 0, 'Git Credential Manager', 'e90ee53c-94e2-48ac-9358-a874fb9e0662', '', false, '["http://127.0.0.1","https://127.0.0.1"]', 1700119911, 1700119911);
INSERT INTO public.oauth2_application VALUES (2, 0, 'git-credential-oauth', 'a4792ccc-144e-407e-86c9-5e7d8d9c3269', '', false, '["http://127.0.0.1","https://127.0.0.1"]', 1700119911, 1700119911);


--
-- Data for Name: oauth2_authorization_code; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: oauth2_grant; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: org_user; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.org_user VALUES (2, 1, 3, false);
INSERT INTO public.org_user VALUES (4, 4, 3, false);
INSERT INTO public.org_user VALUES (5, 2, 3, false);
INSERT INTO public.org_user VALUES (6, 5, 3, false);
INSERT INTO public.org_user VALUES (7, 1, 6, false);
INSERT INTO public.org_user VALUES (8, 5, 6, false);
INSERT INTO public.org_user VALUES (9, 1, 7, false);
INSERT INTO public.org_user VALUES (10, 4, 7, false);
INSERT INTO public.org_user VALUES (11, 1, 8, false);
INSERT INTO public.org_user VALUES (12, 4, 8, false);
INSERT INTO public.org_user VALUES (13, 9, 8, false);
INSERT INTO public.org_user VALUES (14, 4, 10, false);
INSERT INTO public.org_user VALUES (15, 1, 10, false);
INSERT INTO public.org_user VALUES (16, 11, 10, false);
INSERT INTO public.org_user VALUES (17, 5, 12, false);
INSERT INTO public.org_user VALUES (18, 1, 13, false);
INSERT INTO public.org_user VALUES (19, 4, 13, false);
INSERT INTO public.org_user VALUES (20, 1, 14, false);
INSERT INTO public.org_user VALUES (21, 5, 14, false);
INSERT INTO public.org_user VALUES (22, 11, 14, false);
INSERT INTO public.org_user VALUES (23, 2, 14, false);
INSERT INTO public.org_user VALUES (24, 1, 12, false);
INSERT INTO public.org_user VALUES (25, 2, 12, false);
INSERT INTO public.org_user VALUES (26, 15, 12, false);
INSERT INTO public.org_user VALUES (27, 16, 14, false);
INSERT INTO public.org_user VALUES (28, 16, 10, false);
INSERT INTO public.org_user VALUES (29, 9, 12, false);
INSERT INTO public.org_user VALUES (30, 16, 12, false);
INSERT INTO public.org_user VALUES (31, 11, 12, false);
INSERT INTO public.org_user VALUES (32, 1, 17, false);
INSERT INTO public.org_user VALUES (33, 5, 17, false);
INSERT INTO public.org_user VALUES (34, 2, 17, false);
INSERT INTO public.org_user VALUES (35, 15, 17, false);
INSERT INTO public.org_user VALUES (36, 1, 18, false);


--
-- Data for Name: package; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: package_blob; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: package_blob_upload; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: package_cleanup_rule; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: package_file; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: package_property; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: package_version; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: project; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: project_board; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: project_issue; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: protected_branch; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: protected_tag; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: public_key; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.public_key VALUES (3, 5, 'lap-dell', 'SHA256:9EDjKnNR/1cxgp+SBu0co5OQhTniSyl/cgxk0CVPL5w', 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDgPEtHmz2CBwX0P50/gF0ooyZ81MnshjlSwX0jOKzY3eobevspXRAM4djBn5yd8ifVfR6IQF9QBSJxHmqIHkyqF1as5wGp+2FCh+l/A1dEdLS7Linp3G2LYN3vcRJ2KmqNa6azif0PsYbtlEU6l2um8eMtEkEULaJyFOADHRsU52tvzmyIRYCqTPvyTguysi/FFZ82tb3rXsL1tIStT4+hiOhcIvEOXeNlJ142olzQpY2hai5r2PMRZODtIl0+i7JIwpGScaGxvaJzCIqp1Z6fnkpbNMGZwbqPgf7p9Jia6VGz4M1YEqZ0p4LtDatFD7rEgZAbtYwAeC5N9fVvTefIpM7jTN/HzhZhWBjIkTUSAhCB0K9J2MOCY++y0qDksXdYdeBfhUBuclQ6t1IcWl+bwY5xWYU9GrnxRkUyY9FzEE35BwqOFbryqMmeBmGSibwsHcK2c2b1w8dfOdvPxul2pHH9upiXpvCIkmwYKd7Z1dsDaJTvTQOiYqAGkSxKxDK31GJDBJEQZcVdqJhR5/cGTZCRmBu3uYUSTnNzEyFluZrQPCwZ+gm3F5TLRR85z6i503WPcnMEZRi6OWAW25egK1Hw7fBR9hEwFZwKNGxnptgFAYxJbnVp92zE6jPL1WZ+nHOFh+XEA96JiQ472XsjUOI+5rxshWLncO2+5sqy+Q== anh.vu@quynhon.dev', 2, 1, 0, 1704352021, 1705630611, false);
INSERT INTO public.public_key VALUES (2, 4, 'dongtv2510@gmail.com', 'SHA256:mVWdVj0aPPJatzQwPbr08Gag/5QuTgoIpvpSDdSTh7Y', 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKQhiDRbHkYBaUAgQz10CkEVtt1tSKG7G7P/b0XnLoyM dongtv2510@gmail.com', 2, 1, 0, 1685070123, 1700798064, false);
INSERT INTO public.public_key VALUES (1, 1, 'local', 'SHA256:Cgr1969B0qe9XUkCYFWKLePhPuU8eyfQHRk34eFVgio', 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIS0xGTDSq6A8pM17AlFM1vu5WEJRSHeBkkh0vO/eGQ6 cognvn@gmail.com', 2, 1, 0, 1685008027, 1703835147, false);


--
-- Data for Name: pull_auto_merge; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: pull_request; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.pull_request VALUES (18, 0, 2, '[]', 2, 17, 'null', 19, 18, 21, 21, 'thinh', 'dev', '89fb4ac9700c29f0ea1d3cb0712be070cf24839b', false, true, '1209d08a6048529593be305903318410955b3285', 11, 1702953625, 0);
INSERT INTO public.pull_request VALUES (12, 0, 2, '[]', 2, 11, 'null', 13, 12, 21, 21, 'thinh', 'dev', '0a16148c62a86e5f2259c49170108b92db418562', false, true, 'c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac', 11, 1702641398, 0);
INSERT INTO public.pull_request VALUES (1, 0, 2, '[]', 4, 0, 'null', 2, 1, 21, 21, 'thinh', 'dev', '8ef4febd9e8c6827566c2608358e733f70f816ef', false, true, '453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802', 1, 1702096969, 0);
INSERT INTO public.pull_request VALUES (2, 0, 2, '[]', 3, 1, 'null', 3, 2, 21, 21, 'thinh', 'dev', '20a08df4682d10433b053e6660a2ef3e31127449', false, true, '332b7c2db9feb5c0cd39791dabb28f9f7adb999f', 11, 1702262652, 0);
INSERT INTO public.pull_request VALUES (3, 0, 2, '[]', 1, 2, 'null', 4, 3, 21, 21, 'thinh', 'dev', 'ba9ff55b3992311f8d8c8134aaebf4fa09653853', false, true, '7780a4feeb614a456ab7396ad139fb4f27cf99c5', 11, 1702268923, 0);
INSERT INTO public.pull_request VALUES (4, 0, 2, '[]', 1, 3, 'null', 5, 4, 21, 21, 'thinh', 'dev', 'c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a', false, true, '217e5489936cc894c29132432bcdb3a402d853b4', 11, 1702367054, 0);
INSERT INTO public.pull_request VALUES (5, 0, 2, '[]', 1, 4, 'null', 6, 5, 21, 21, 'thinh', 'dev', '84df5778e5198b6e1fddebc0cac9a844f2cfbafd', false, true, '30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c', 11, 1702372549, 0);
INSERT INTO public.pull_request VALUES (24, 0, 2, '[]', 1, 23, 'null', 25, 24, 21, 21, 'thinh', 'dev', '3224d74b3cd0c13e306f28eda021073d097d8b21', false, true, '3d25992786d4defa328177d93bd82a78507ca708', 11, 1703733100, 0);
INSERT INTO public.pull_request VALUES (6, 0, 2, '[]', 1, 5, 'null', 7, 6, 21, 21, 'thinh', 'dev', 'fd360e903f0823d329f8f01976d950865c273eee', false, true, 'f6bf8a15c6b2454168641323bb68f95fd262bfdf', 11, 1702438681, 0);
INSERT INTO public.pull_request VALUES (13, 0, 2, '[]', 1, 12, 'null', 14, 13, 21, 21, 'thinh', 'dev', 'e49bfa1312e27644964f043a52ca88ea71a9be89', false, true, '66267b2a985da79086f96d0013f67de1c3f6cdfc', 11, 1702642084, 0);
INSERT INTO public.pull_request VALUES (7, 0, 2, '[]', 1, 6, 'null', 8, 7, 21, 21, 'thinh', 'dev', '7aa25777f9721eb11360ff4de9bc32ef1fb134d5', false, true, '055af998354057d294f13a0acd4d47817548b2b1', 11, 1702545134, 0);
INSERT INTO public.pull_request VALUES (8, 0, 2, '[]', 1, 7, 'null', 9, 8, 21, 21, 'thinh', 'dev', '80dddcc1a779ef72ce358f1fe885ef56d4ea9fec', false, true, '2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88', 11, 1702610183, 0);
INSERT INTO public.pull_request VALUES (19, 0, 2, '[]', 1, 18, 'null', 20, 19, 21, 21, 'thinh', 'dev', '23ad4cdb757b62bcce915abba7bd545b47297107', false, true, '2b00bcf2f6390dd90b579b59e0b0d42e617a9529', 11, 1702957099, 0);
INSERT INTO public.pull_request VALUES (9, 0, 2, '[]', 1, 8, 'null', 10, 9, 21, 21, 'thinh', 'dev', '35d9e420aca16b467c2f15fe29201a908f8a50e0', false, true, '9a2ac98f33fd96bee643e3f6f36f36575c197232', 11, 1702615307, 0);
INSERT INTO public.pull_request VALUES (14, 0, 2, '[]', 1, 13, 'null', 15, 14, 21, 21, 'thinh', 'dev', '31a4a839d6a2d78343031b022b5809584d8d7ca5', false, true, '527e8c8156be1324b94845f5d0a29fb74e03a75e', 11, 1702883703, 0);
INSERT INTO public.pull_request VALUES (10, 0, 2, '[]', 1, 9, 'null', 11, 10, 21, 21, 'thinh', 'dev', '27be87b9f58af8a7c1789a168c9f824d069a8c9b', false, true, 'd10c1afe4570b2760d435db0b189e8d4beb9e1e4', 11, 1702625985, 0);
INSERT INTO public.pull_request VALUES (11, 0, 2, '[]', 2, 10, 'null', 12, 11, 21, 21, 'thinh', 'dev', 'a2285a074737d3cd8e28b97aa2840e0a3742f0c3', false, true, 'c85f3e0ffd126207716573905e05bc00287cfe56', 11, 1702626247, 0);
INSERT INTO public.pull_request VALUES (15, 0, 2, '[]', 1, 14, 'null', 16, 15, 21, 21, 'thinh', 'dev', '82dc42aa48c0d98347fec8bd387a63ed36c10c59', false, true, 'fe2b7e3827ed06be7308235f0d4289609621e3f5', 11, 1702887117, 0);
INSERT INTO public.pull_request VALUES (16, 0, 2, '[]', 1, 15, 'null', 17, 16, 21, 21, 'thinh', 'dev', '556555eb7a356a27df965b962179d6296fd85b80', false, true, '1a92e62351728bac3c7f0afd5f4c8716ad0f3a53', 11, 1702887923, 0);
INSERT INTO public.pull_request VALUES (20, 0, 2, '[]', 2, 19, 'null', 21, 20, 21, 21, 'thinh', 'dev', 'a20d3725ce75fdd102fd1a0e8865f08474e1c238', false, true, '0e5cba3900c9c08060dc1e082efb182ce1d2f261', 11, 1702958721, 0);
INSERT INTO public.pull_request VALUES (17, 0, 2, '[]', 1, 16, 'null', 18, 17, 21, 21, 'thinh', 'dev', '2354be6f98057d9f214ca12779f11e288b0fcd8b', false, true, 'f138f26d87044c4d2801f8c46e13b0c2cc47c806', 11, 1702891942, 0);
INSERT INTO public.pull_request VALUES (31, 0, 2, '[]', 2, 30, 'null', 32, 31, 21, 21, 'thinh', 'dev', '97b72611674d4b7b1aef7a4ccf73d301d3b95704', false, true, '8e828e6f4421b1493f308e824c9e8bdb69e3c312', 11, 1704254966, 0);
INSERT INTO public.pull_request VALUES (25, 0, 2, '[]', 1, 24, 'null', 26, 25, 21, 21, 'thinh', 'dev', 'dcabae26407e5a8ebe3ee60dae45c490ebf05dc2', false, true, '087ed25ee9fded2df43d96f7a624b301d0ed3bf0', 11, 1703749812, 0);
INSERT INTO public.pull_request VALUES (21, 0, 2, '[]', 1, 20, 'null', 22, 21, 21, 21, 'thinh', 'dev', '7875dd1cb94f8d0563fdadfac04da1e77ef997f9', false, true, '822137c72238e461cd8224bd07bf7738c907aeed', 11, 1702979013, 0);
INSERT INTO public.pull_request VALUES (22, 0, 2, '[]', 1, 21, 'null', 23, 22, 21, 21, 'thinh', 'dev', 'e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c', false, true, 'ce4364a6eea788d602dd8008bf176dad3cee591f', 11, 1703217118, 0);
INSERT INTO public.pull_request VALUES (28, 0, 2, '[]', 2, 27, 'null', 29, 28, 21, 21, 'thinh', 'dev', '911fdad30b51628a28e001ccf1645d9d5172e84f', false, true, 'b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9', 11, 1703842288, 0);
INSERT INTO public.pull_request VALUES (23, 0, 2, '[]', 1, 22, 'null', 24, 23, 21, 21, 'thinh', 'dev', '2550e5ce7cff1b368a88b7e07aa9191935e579bc', false, true, 'b20e2920ff823bba807cf855b884c109ccb833e3', 11, 1703581455, 0);
INSERT INTO public.pull_request VALUES (26, 0, 2, '[]', 1, 25, 'null', 27, 26, 21, 21, 'thinh', 'dev', '1686d02897942b3d60ace6745b52b898c77010f5', false, true, '6cbac64de2f6655baf854915aac73011498c4afc', 11, 1703757414, 0);
INSERT INTO public.pull_request VALUES (30, 0, 2, '[]', 1, 29, 'null', 31, 30, 21, 21, 'thinh', 'dev', '93d05635290ecb9e83937118a5aa9baf089d30ac', false, true, 'd478dd60abc83b3d9ca9128a2d6976b1322f2ac5', 11, 1704247805, 0);
INSERT INTO public.pull_request VALUES (27, 0, 2, '[]', 2, 26, 'null', 28, 27, 21, 21, 'thinh', 'dev', '146f91e88fec6c748e4378c029300694f4599df8', false, true, '71da43b9b4f4ec6f2aab698e1cade5906e604d35', 11, 1703820649, 0);
INSERT INTO public.pull_request VALUES (29, 0, 2, '[]', 3, 28, 'null', 30, 29, 21, 21, 'thinh', 'dev', '77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a', false, true, '1b4fab6a15956bae864162531765607648272383', 11, 1704247144, 0);
INSERT INTO public.pull_request VALUES (32, 0, 2, '[]', 2, 31, 'null', 33, 32, 21, 21, 'thinh', 'dev', '1f50a9600f44e3ab03f9211932cd46b5e9acf664', false, true, '66485a7986ab26e07dab856017d0ee7f84234a04', 11, 1704270141, 0);
INSERT INTO public.pull_request VALUES (33, 0, 2, '[]', 1, 32, 'null', 34, 33, 21, 21, 'thinh', 'dev', 'a0b1080d5e7d96c9e634012be07424dcb88c4418', false, true, 'f34630cbea2ecac67dcb069e4e4a27967ac7b10c', 11, 1704337487, 0);
INSERT INTO public.pull_request VALUES (34, 0, 2, '[]', 1, 33, 'null', 35, 34, 21, 21, 'thinh', 'dev', '205a7f5347c0e379199e46265c084c9be88049dc', false, true, '3f0e55f14d544cea196d2bf018b613a7176bd7fd', 11, 1704337726, 0);
INSERT INTO public.pull_request VALUES (35, 0, 2, '[]', 2, 34, 'null', 36, 35, 21, 21, 'thinh', 'dev', 'f099d4b729877303d88c26254708d44fea9a6b91', false, true, '209d45fee56b3c30e8134399acf07f2ed034d99a', 11, 1704349774, 0);
INSERT INTO public.pull_request VALUES (36, 0, 2, '[]', 1, 35, 'null', 37, 36, 21, 21, 'thinh', 'dev', 'f958d58054337a2fa79a21d97be215ab782e5ead', false, true, 'e06ac97be44f6830d36c492759a4857e370bcb1f', 11, 1704352572, 0);
INSERT INTO public.pull_request VALUES (43, 0, 2, '[]', 1, 42, 'null', 44, 43, 21, 21, 'thinh', 'dev', 'fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5', false, true, '1d296848df6920c81b2395ba376ff937f4b8849b', 11, 1704530897, 0);
INSERT INTO public.pull_request VALUES (37, 0, 2, '[]', 1, 36, 'null', 38, 37, 21, 21, 'thinh', 'dev', '3d35753a6ca494289412e6435ad81b388dce8022', false, true, '568299bc2fd76e6410ce6c4a6115e561e1c1aa38', 11, 1704423005, 0);
INSERT INTO public.pull_request VALUES (53, 0, 2, '[]', 3, 52, 'null', 54, 53, 21, 21, 'thinh', 'dev', '5185419c13b6fec46874892354cc8730462e41f4', false, true, '2681e6728650033a8895e8b079f6af34a88c842c', 11, 1704563577, 0);
INSERT INTO public.pull_request VALUES (44, 0, 2, '[]', 1, 43, 'null', 45, 44, 21, 21, 'thinh', 'dev', '119cfde3f4a42038a41db374df8ff0d36954b1b8', false, true, '4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c', 11, 1704533602, 0);
INSERT INTO public.pull_request VALUES (38, 0, 2, '[]', 1, 37, 'null', 39, 38, 21, 21, 'thinh', 'dev', '2423bb737a918b32bc59efe85c222a9f3128c7ab', false, true, 'a83c5eae96d22b60f72fa4c1a88aed04b88835af', 11, 1704428655, 0);
INSERT INTO public.pull_request VALUES (39, 0, 2, '[]', 1, 38, 'null', 40, 39, 21, 21, 'thinh', 'dev', '792bcff3d21254a02cb1dc70989f44cd948b788e', false, true, '1511625e8a850a70547c23e491168c2ac465a5e6', 11, 1704444567, 0);
INSERT INTO public.pull_request VALUES (45, 0, 2, '[]', 1, 44, 'null', 46, 45, 21, 21, 'thinh', 'dev', '617e946b080534877c3abc010d4e567d2044a504', false, true, 'b8964d98cd5165235ae9910046babd2b3cb7bf55', 11, 1704534540, 0);
INSERT INTO public.pull_request VALUES (40, 0, 2, '[]', 1, 39, 'null', 41, 40, 21, 21, 'thinh', 'dev', 'abb8ae120157a6719fa9094c0b05ff6c11052efd', false, true, 'ae5188bd0ff0b0618b16428867ff1d4c001a580b', 11, 1704446462, 0);
INSERT INTO public.pull_request VALUES (59, 0, 2, '[]', 1, 58, 'null', 60, 59, 21, 21, 'thinh', 'dev', '4e4fdd8f67557bd5fa3129c9bad708d15b67971a', false, true, 'a2ef85dd7af229c8630f60b81daea4f3a2a04c43', 11, 1704685372, 0);
INSERT INTO public.pull_request VALUES (46, 0, 2, '[]', 1, 45, 'null', 47, 46, 21, 21, 'thinh', 'dev', 'bd49447e927e089e113e894c4cecbbc57f723a98', false, true, 'd3c53ffa7ca196f1375e95e6cc5d49bc461272fc', 11, 1704534900, 0);
INSERT INTO public.pull_request VALUES (41, 0, 2, '[]', 2, 40, 'null', 42, 41, 21, 21, 'thinh', 'dev', '984ab8bc6fa2d923599f3f1241b528745fabcf57', false, true, '1f5dbedbc5ac086f344c259aa6523dd859e55509', 11, 1704464904, 0);
INSERT INTO public.pull_request VALUES (54, 0, 2, '[]', 1, 53, 'null', 55, 54, 21, 21, 'thinh', 'dev', 'b4cb97cfc03652702704d947d95da87772a7267a', false, true, '90acec64f4430f307723d76cea501291a61614f9', 11, 1704649732, 0);
INSERT INTO public.pull_request VALUES (42, 0, 2, '[]', 1, 41, 'null', 43, 42, 21, 21, 'thinh', 'dev', 'a560a9bc5fc9ec190342b2afbed08fc5a252c0a9', false, true, '6918848f9c759b000de2893835b5d1c027f8ba14', 11, 1704526119, 0);
INSERT INTO public.pull_request VALUES (47, 0, 2, '[]', 1, 46, 'null', 48, 47, 21, 21, 'thinh', 'dev', 'e5c3a3e2b2b1535da512fd85ccade301eb9e184d', false, true, '0d37213eee90283bab8283fb75293086478de453', 11, 1704535534, 0);
INSERT INTO public.pull_request VALUES (48, 0, 2, '[]', 1, 47, 'null', 49, 48, 21, 21, 'thinh', 'dev', 'df9b7ce86feb0b36c4d22201228a3e7f52791f31', false, true, '95f1005c26023ce855c24052f06d6e81ce780724', 11, 1704538858, 0);
INSERT INTO public.pull_request VALUES (49, 0, 2, '[]', 1, 48, 'null', 50, 49, 21, 21, 'thinh', 'dev', '9748ba33191bfbf094a58a9f8070796b54ca6c95', false, true, 'b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af', 11, 1704540615, 0);
INSERT INTO public.pull_request VALUES (55, 0, 2, '[]', 1, 54, 'null', 56, 55, 21, 21, 'thinh', 'dev', 'de110d6bef4e4af5e2f1749a46e5000bab208e47', false, true, 'b9c768a9904229490cf45090e6edc9f229f94497', 11, 1704650452, 0);
INSERT INTO public.pull_request VALUES (50, 0, 2, '[]', 1, 49, 'null', 51, 50, 21, 21, 'thinh', 'dev', '4d34351dde0810f72be0eb994338cf114049dace', false, true, 'ab844c362a09a6559ca0a8a4b5d0ace86a82784b', 11, 1704558905, 0);
INSERT INTO public.pull_request VALUES (51, 0, 2, '[]', 1, 50, 'null', 52, 51, 21, 21, 'thinh', 'dev', '78578129269292fceb7625c884e5ea7eed543acb', false, true, '9088ce508353da84638b2c28888657686694e6d5', 11, 1704559662, 0);
INSERT INTO public.pull_request VALUES (66, 0, 2, '[]', 2, 65, 'null', 67, 66, 21, 21, 'thinh', 'dev', 'ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150', false, true, '4a1e20f14835559c8bb4f994be3bdbbaa72cdac2', 11, 1704774842, 0);
INSERT INTO public.pull_request VALUES (52, 0, 2, '[]', 1, 51, 'null', 53, 52, 21, 21, 'thinh', 'dev', 'b8b1e9d8ca222077ac01cd383e3f4818284508ec', false, true, '06d085be3928daaed5477b3b93f0b645021dc268', 11, 1704561828, 0);
INSERT INTO public.pull_request VALUES (60, 0, 2, '[]', 1, 59, 'null', 61, 60, 21, 21, 'thinh', 'dev', '7f7c96671126ae1b236dd7b6f0ece8be147517c9', false, true, 'c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf', 11, 1704698165, 0);
INSERT INTO public.pull_request VALUES (56, 0, 2, '[]', 2, 55, 'null', 57, 56, 21, 21, 'thinh', 'dev', '1d8f88af23f789b2ede493c1d79dd803e096bb05', false, true, '17223a69f9d2c7982c99e9d063d7796bad0734ad', 11, 1704679141, 0);
INSERT INTO public.pull_request VALUES (57, 0, 2, '[]', 1, 56, 'null', 58, 57, 21, 21, 'thinh', 'dev', '1648b96afc95a1c2a74360ae3223ec9016b6019e', false, true, 'a5dfd620c51a9baabd25312a8ee7268e03395cec', 11, 1704679844, 0);
INSERT INTO public.pull_request VALUES (63, 0, 2, '[]', 1, 62, 'null', 64, 63, 21, 21, 'thinh', 'dev', 'f4e3881a081a31795d2162f9cbc281b4aba8ef27', false, true, '5674ad927bb01fce2f1f31cb2bbee967c0147568', 11, 1704707882, 0);
INSERT INTO public.pull_request VALUES (58, 0, 2, '[]', 1, 57, 'null', 59, 58, 21, 21, 'thinh', 'dev', '128401d049b3f492a8950948ee794aca9bc472e4', false, true, '480eb6217718c62029da79a52f43e3c0b31e5526', 11, 1704681599, 0);
INSERT INTO public.pull_request VALUES (61, 0, 2, '[]', 1, 60, 'null', 62, 61, 21, 21, 'thinh', 'dev', 'd47e007a7e3bf39970904a203d5c3b50fd7c355c', false, true, '426a1faa2094a598744486c24ae40977eceee332', 11, 1704705564, 0);
INSERT INTO public.pull_request VALUES (65, 0, 2, '[]', 1, 64, 'null', 66, 65, 21, 21, 'thinh', 'dev', 'cd975fd61522e19149dd713289ee1e0199a4c04d', false, true, '6e09f0acfd90921544a46a80a0fa99c37c13ecd1', 11, 1704767054, 0);
INSERT INTO public.pull_request VALUES (62, 0, 2, '[]', 1, 61, 'null', 63, 62, 21, 21, 'thinh', 'dev', 'dc1b5b62b753d93980b10f171b24d473d172b2c8', false, true, '59b787e85b18879fb9d8f189914021acb7746405', 11, 1704706490, 0);
INSERT INTO public.pull_request VALUES (64, 0, 2, '[]', 1, 63, 'null', 65, 64, 21, 21, 'thinh', 'dev', 'efc00fcfeaafade84d8cbe9eebd39891331630c5', false, true, '2e4d83e639d3a02e175d16951cdb2e2654baab6a', 11, 1704766275, 0);
INSERT INTO public.pull_request VALUES (67, 0, 2, '[]', 1, 66, 'null', 68, 67, 21, 21, 'thinh', 'dev', 'f84a3dfbb60e8522bd2a4e5b4bfc811486bce001', false, true, '7d38765ee7248f74597c22ad61fac6a865a76263', 11, 1704783866, 0);
INSERT INTO public.pull_request VALUES (68, 0, 2, '[]', 1, 67, 'null', 69, 68, 21, 21, 'thinh', 'dev', 'ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb', false, true, 'e938e87dccb49b7a9c0fd0c02a54920b7ef0d925', 11, 1704784795, 0);
INSERT INTO public.pull_request VALUES (69, 0, 2, '[]', 1, 68, 'null', 70, 69, 21, 21, 'thinh', 'dev', 'f2389db592f2b5230471326f66fa942bbafb1ca4', false, true, '84e51ab1a10e1be4299a3924c9379a9732aa726b', 11, 1704787825, 0);
INSERT INTO public.pull_request VALUES (70, 0, 2, '[]', 1, 69, 'null', 71, 70, 21, 21, 'thinh', 'dev', 'ba7fc72161054e3a1085ed4b8c70d84198ce961b', false, true, 'ca8a43c962e9597749bca9604a23617d805bae38', 11, 1704807707, 0);
INSERT INTO public.pull_request VALUES (108, 0, 2, '[]', 1, 2, 'null', 224, 108, 21, 21, 'thinh', 'dev', 'b51a2a2db8b6c480c487c33ce3cad9f3e94bb872', false, true, '99934589e07a2e5021fb88d8e95cd0701a3c3d8f', 11, 1705458436, 0);
INSERT INTO public.pull_request VALUES (71, 0, 2, '[]', 1, 70, 'null', 72, 71, 21, 21, 'thinh', 'dev', '18d73caa2573e24d8b765dbac7ddb10d036a7e2c', false, true, '1669b03cec92558923e86c96f89e177f983d7e66', 11, 1704853918, 0);
INSERT INTO public.pull_request VALUES (72, 0, 2, '[]', 1, 71, 'null', 73, 72, 21, 21, 'thinh', 'dev', '60913e501d422158067d25f877b8db01f2433abe', false, true, '2450107fb2f67f6adad8cfe8683ded6dce63a0a2', 11, 1704854952, 0);
INSERT INTO public.pull_request VALUES (73, 0, 2, '[]', 2, 72, 'null', 74, 73, 21, 21, 'thinh', 'dev', '919d45696e37045a2346ec721738b205ccb683a6', false, true, '221a94ac133d4b35ce6145276c4094662a6fe4d1', 11, 1704868578, 0);
INSERT INTO public.pull_request VALUES (84, 0, 2, '[]', 2, 83, 'null', 85, 84, 21, 21, 'thinh', 'dev', '2ea9bc82fbf36de091bb11804d7a7ffae089c611', false, true, 'd48e38d9a17ce739803e4e98d015c2fc443742ac', 11, 1705025976, 0);
INSERT INTO public.pull_request VALUES (74, 0, 2, '[]', 1, 73, 'null', 75, 74, 21, 21, 'thinh', 'dev', 'a537b38790dca067cd5d107807932adb39f23a99', false, true, '07b329f3e772c8eefb2d36090487965eef74c9e4', 11, 1704870508, 0);
INSERT INTO public.pull_request VALUES (75, 0, 2, '[]', 1, 74, 'null', 76, 75, 21, 21, 'thinh', 'dev', 'adee15cab9cef8728d2dbce1099fb43c2a2efabf', false, true, '8cb811be2927c486df5dbb09a8aa0a63535709d3', 11, 1704878216, 0);
INSERT INTO public.pull_request VALUES (96, 0, 2, '[]', 1, 95, 'null', 97, 96, 21, 21, 'thinh', 'dev', '8f60ed32b2d8d1c029f54144b9426d2b865b6bd9', false, true, '81ebe9e1ea91c561cfd2d8b2778830a808e2104e', 11, 1705321148, 0);
INSERT INTO public.pull_request VALUES (76, 0, 2, '[]', 1, 75, 'null', 77, 76, 21, 21, 'thinh', 'dev', 'e3e580b4e1bedadc760640fc3572e51a2a805b27', false, true, 'd8568ef2cb388ffa029778d557c778ce2efa3353', 11, 1704878912, 0);
INSERT INTO public.pull_request VALUES (85, 0, 2, '[]', 1, 84, 'null', 86, 85, 21, 21, 'thinh', 'dev', 'd727cc3cd0303928173eddab019be9d9615d69da', false, true, '6e16637a65f7d4d092a3cdbdbd178eb1636964e1', 11, 1705030758, 0);
INSERT INTO public.pull_request VALUES (77, 0, 2, '[]', 1, 76, 'null', 78, 77, 21, 21, 'thinh', 'dev', 'b72b77ce6d6441f022c666171f558d3b6ff8994f', false, true, '5b398e4f4feead79e0fcaa363254896d4c7749c3', 11, 1704937771, 0);
INSERT INTO public.pull_request VALUES (78, 0, 2, '[]', 1, 77, 'null', 79, 78, 21, 21, 'thinh', 'dev', 'b864b6c508a7e992ec724257ba8068066dea62c2', false, true, 'b39634acf119d7a5698c952dfd10dc0e1ee5bb3d', 11, 1704944215, 0);
INSERT INTO public.pull_request VALUES (92, 0, 2, '[]', 1, 91, 'null', 93, 92, 21, 21, 'thinh', 'dev', '11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1', false, true, '9b29db610b20afcdaeec0f83db697b5c93ff5abf', 11, 1705311410, 0);
INSERT INTO public.pull_request VALUES (79, 0, 2, '[]', 1, 78, 'null', 80, 79, 21, 21, 'thinh', 'dev', 'd182a2a0bf08c8ccaca3d9a68a87540beb06e085', false, true, '414c6952e2434c3fc7f37c73c1309937925396c6', 11, 1704945594, 0);
INSERT INTO public.pull_request VALUES (86, 0, 2, '[]', 1, 85, 'null', 87, 86, 21, 21, 'thinh', 'dev', 'c78cbbacb228029e2f7904edb91659aa06135be7', false, true, '6189e5347420d4bbcee5c4f550ed3cd17a77ba41', 11, 1705044537, 0);
INSERT INTO public.pull_request VALUES (80, 0, 2, '[]', 1, 79, 'null', 81, 80, 21, 21, 'thinh', 'dev', 'd311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d', false, true, '29e0c4ea27c7052d9017a2b0896367a0bab5d9db', 11, 1704947505, 0);
INSERT INTO public.pull_request VALUES (81, 0, 2, '[]', 1, 80, 'null', 82, 81, 21, 21, 'thinh', 'dev', '39cb06392b78a4b3529ef0a69ecdc485adfd1a06', false, true, 'e8b876ae81f072d85a259f7fe20b4629f98da421', 11, 1704956850, 0);
INSERT INTO public.pull_request VALUES (82, 0, 2, '[]', 1, 81, 'null', 83, 82, 21, 21, 'thinh', 'dev', 'f67d1811ee946b4368988f806d6c91b5161f2aca', false, true, '891890aa28aae52d5c4d12f2b351251d3b1be143', 11, 1704958041, 0);
INSERT INTO public.pull_request VALUES (87, 0, 2, '[]', 1, 86, 'null', 88, 87, 21, 21, 'thinh', 'dev', 'bf230208b1efd148c1dec00f3c4eb158311100bd', false, true, '1b5b07b0d95cd7b123fbc052e003045a1ea4530f', 11, 1705045581, 0);
INSERT INTO public.pull_request VALUES (83, 0, 2, '[]', 1, 82, 'null', 84, 83, 21, 21, 'thinh', 'dev', '6fe0578df227fb4bd84cba9bc4376c0048ba5af3', false, true, '50815ab17a48609b68bcfab8f7f40e59e7dcb4f3', 11, 1704990830, 0);
INSERT INTO public.pull_request VALUES (88, 0, 2, '[]', 1, 87, 'null', 89, 88, 21, 21, 'thinh', 'dev', '8d033bdc680e69f37d6b0c7530e23ace16ad7ab6', false, true, '9dbf9d1817992c4fee7c955f584497c9faefcc50', 11, 1705047329, 0);
INSERT INTO public.pull_request VALUES (93, 0, 2, '[]', 1, 92, 'null', 94, 93, 21, 21, 'thinh', 'dev', '5562d2823f0ace47c1fca2f8fe994e65241e8bea', false, true, '5b4556aaf08d874c598d4e9213153ede266d695d', 11, 1705312011, 0);
INSERT INTO public.pull_request VALUES (89, 0, 2, '[]', 2, 88, 'null', 90, 89, 21, 21, 'thinh', 'dev', '8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f', false, true, '773815950340a50498ed3995ebb83bdcacecc237', 11, 1705050102, 0);
INSERT INTO public.pull_request VALUES (90, 0, 2, '[]', 1, 89, 'null', 91, 90, 21, 21, 'thinh', 'dev', '18d5c8f72559020069d731f9b8b1e4073a955df7', false, true, '4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6', 11, 1705052742, 0);
INSERT INTO public.pull_request VALUES (99, 0, 2, '[]', 1, 98, 'null', 215, 99, 21, 21, 'thinh', 'dev', '67a5311e4cf2834ef7fc0b767015be48d669696d', false, true, 'c94f86451988d6cf98b90a9f0e74a88515b66f9a', 11, 1705369982, 0);
INSERT INTO public.pull_request VALUES (91, 0, 2, '[]', 1, 90, 'null', 92, 91, 21, 21, 'thinh', 'dev', '52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63', false, true, '7b0e4a3aa34a91347178a93361fc9e193abd595d', 11, 1705208013, 0);
INSERT INTO public.pull_request VALUES (94, 0, 2, '[]', 1, 93, 'null', 95, 94, 21, 21, 'thinh', 'dev', '489a7a7fdc58d8144acd13c4cd58f66912cb341c', false, true, 'c1781de2627ad32061687b7324e88a13d1040bb1', 11, 1705312967, 0);
INSERT INTO public.pull_request VALUES (97, 0, 2, '[]', 1, 96, 'null', 98, 97, 21, 21, 'thinh', 'dev', 'da91d00953fc86aef94866d081a1d25a46b94d02', false, true, '99df42f181517ecde830cfba0d18f5bb48283de8', 11, 1705321840, 0);
INSERT INTO public.pull_request VALUES (95, 0, 2, '[]', 1, 94, 'null', 96, 95, 21, 21, 'thinh', 'dev', '7b2383b817c645ebfa98deeb3863743633d3deae', false, true, 'cebbfb98f2b56f439f19e5720eb0f1bab9f3b518', 11, 1705320610, 0);
INSERT INTO public.pull_request VALUES (98, 0, 2, '[]', 1, 97, 'null', 99, 98, 21, 21, 'thinh', 'dev', 'a328fa9eb323e241b28e295cac0680456d0a1338', false, true, 'ddb1e1f9c86e1477341fd41cae9b0350d5807140', 11, 1705329329, 0);
INSERT INTO public.pull_request VALUES (101, 0, 2, '[]', 1, 100, 'null', 217, 101, 21, 21, 'thinh', 'dev', 'b4fa71025f54e4fa94ba095169119fa40b06d27c', false, true, '53d1f72211fde4e1c022b04df50724ed8080ad37', 11, 1705393335, 0);
INSERT INTO public.pull_request VALUES (100, 0, 2, '[]', 1, 99, 'null', 216, 100, 21, 21, 'thinh', 'dev', '122c6ba57907664a26aac6393e0880e02d8d2610', false, true, '2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2', 11, 1705389625, 0);
INSERT INTO public.pull_request VALUES (102, 0, 2, '[]', 1, 101, 'null', 218, 102, 21, 21, 'thinh', 'dev', 'ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6', false, true, '8eece73dc814f23997466b778c570a25145163df', 11, 1705394331, 0);
INSERT INTO public.pull_request VALUES (103, 0, 2, '[]', 1, 102, 'null', 219, 103, 21, 21, 'thinh', 'dev', 'a2d31a4f4ea5f3e8278eb7a3f446302831381ddb', false, true, 'cf4715110a114ad27e4779af22c58cfb819d78c9', 11, 1705395799, 0);
INSERT INTO public.pull_request VALUES (104, 0, 2, '[]', 1, 103, 'null', 220, 104, 21, 21, 'thinh', 'dev', '65e6485ae4926938a51adf2f31db4aeb6d7e7e41', false, true, '645b7c2b051a49e16e1ba1d5dd9af1918230b2c2', 11, 1705396640, 0);
INSERT INTO public.pull_request VALUES (105, 0, 2, '[]', 3, 104, 'null', 221, 105, 21, 21, 'thinh', 'dev', '6b059fd277af151a3e10327be3a8be3e4ba084a2', false, true, 'd268ef005af0e0adcc49b9b4100f0479116d31d4', 11, 1705396862, 0);
INSERT INTO public.pull_request VALUES (106, 0, 2, '[]', 2, 0, 'null', 222, 106, 21, 21, 'thinh', 'dev', 'd268ef005af0e0adcc49b9b4100f0479116d31d4', false, true, 'f0f201ffadd72a9c710659316fad0c14ed6d69c1', 11, 1705397268, 0);
INSERT INTO public.pull_request VALUES (109, 0, 2, '[]', 2, 3, 'null', 225, 109, 21, 21, 'thinh', 'dev', '8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8', false, true, 'd27bbd1a398cd332a453a4301f2539d4741f4829', 11, 1705463231, 0);
INSERT INTO public.pull_request VALUES (107, 0, 2, '[]', 1, 1, 'null', 223, 107, 21, 21, 'thinh', 'dev', '7650c10f1a92cffc96d99f4f9923dc49763c69c7', false, true, '8151ab7ce5fcfdf01ceb05db6de7cea9190aff45', 11, 1705457156, 0);
INSERT INTO public.pull_request VALUES (110, 0, 2, '[]', 1, 4, 'null', 226, 110, 21, 21, 'thinh', 'dev', 'e3fb0e313b51381d7d07b910bfed3963036f3119', false, true, '6ae7b846816d579b60abebb037d74ce8e8d332df', 11, 1705561433, 0);
INSERT INTO public.pull_request VALUES (111, 0, 2, '[]', 1, 5, 'null', 227, 111, 21, 21, 'thinh', 'dev', 'dc9b1cd7ec18ad4fed9579e27f394b14858c3cde', false, true, 'e3af78fc47531563603cb74b00a581af88476433', 11, 1705561862, 0);
INSERT INTO public.pull_request VALUES (112, 0, 2, '[]', 1, 6, 'null', 228, 112, 21, 21, 'thinh', 'dev', '0fcc16b3a944af679c58d4542042b1e00f05572d', false, true, '8de6e2711f638af8b35485c887f3c10229f7fca6', 11, 1705631135, 0);


--
-- Data for Name: push_mirror; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.push_mirror VALUES (2, 12, 'remote_mirror_TylGUvQkR8', true, 28800000000000, 1701226167, 1705621713, '', 'https://gitlab.com/quan-ly-phuong-tien-do/frontend.git');
INSERT INTO public.push_mirror VALUES (7, 21, 'remote_mirror_TLYpcIZFWQ', true, 28800000000000, 1702096221, 1705631141, '', 'https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/frontend.git');
INSERT INTO public.push_mirror VALUES (8, 26, 'remote_mirror_DHzY5SRay8', true, 28800000000000, 1704701126, 1705636113, '', 'https://gitlab.com/khieunai/admin.git');


--
-- Data for Name: reaction; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: release; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: renamed_branch; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: repo_archiver; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: repo_indexer_status; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.repo_indexer_status VALUES (1, 1, '69239c62fdf7a0f80d409af5ec5be9fdacb7f57c', 1);
INSERT INTO public.repo_indexer_status VALUES (2, 5, '2f139a8e94a15b037dc31fcc30e5823857257013', 1);
INSERT INTO public.repo_indexer_status VALUES (3, 6, 'ea13e1d90318274180b5572fbf7d109463ce01b0', 1);
INSERT INTO public.repo_indexer_status VALUES (4, 7, 'db631c23c653da1f63b740d7e7814fc345df17c0', 1);
INSERT INTO public.repo_indexer_status VALUES (5, 8, '997c70fb991ad1c41df5d8dd04873f291b57becd', 1);
INSERT INTO public.repo_indexer_status VALUES (6, 9, 'eecc690536ed3f49a97cbb6bb416175b0ff4eb06', 1);
INSERT INTO public.repo_indexer_status VALUES (7, 10, '580251b795de3f4ab4760b74af176873ee4129d7', 1);
INSERT INTO public.repo_indexer_status VALUES (8, 11, '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', 1);
INSERT INTO public.repo_indexer_status VALUES (13, 18, '15aab07c22634b263f541cf2a5740d0fbc6e18d7', 1);
INSERT INTO public.repo_indexer_status VALUES (14, 20, '28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a', 1);
INSERT INTO public.repo_indexer_status VALUES (21, 27, '67c62e1bb972c3731c1207adab34819d00dda8c6', 1);
INSERT INTO public.repo_indexer_status VALUES (22, 28, '94169c8272994c848786971f0f5b1231c24fefd0', 1);
INSERT INTO public.repo_indexer_status VALUES (23, 29, 'f48875268f70978021fd327c465baf007dd868b9', 1);
INSERT INTO public.repo_indexer_status VALUES (19, 25, 'd6c2e64af79bb97a5b57cf8e173d2f2d29f3019b', 1);
INSERT INTO public.repo_indexer_status VALUES (12, 17, '3388156ba70abc12c5d9f57ba31b3273f2bc34ae', 1);
INSERT INTO public.repo_indexer_status VALUES (16, 22, 'fdee172356b6f9f25ce145921047bafcb1d2e5ca', 1);
INSERT INTO public.repo_indexer_status VALUES (15, 21, '8bbccb90e29c9a50d5b4cd4b69ddf590a1507613', 1);
INSERT INTO public.repo_indexer_status VALUES (17, 23, 'dff222e66d727340377ee089801d61d867450f43', 1);
INSERT INTO public.repo_indexer_status VALUES (20, 26, '814c2834abecae300e8f733df62b8c2d0e7f835f', 1);
INSERT INTO public.repo_indexer_status VALUES (18, 24, 'f87e57452ea8eb0c41bbdb0f03c41522f317dfb7', 1);
INSERT INTO public.repo_indexer_status VALUES (11, 15, '35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5', 1);
INSERT INTO public.repo_indexer_status VALUES (9, 12, '7b700cce960bebc6fad9e06adb1d76eba7ebc29f', 1);


--
-- Data for Name: repo_redirect; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.repo_redirect VALUES (3, 6, 'gdt', 25);
INSERT INTO public.repo_redirect VALUES (4, 6, 'gdt-si', 25);


--
-- Data for Name: repo_topic; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.repo_topic VALUES (11, 1);
INSERT INTO public.repo_topic VALUES (11, 2);
INSERT INTO public.repo_topic VALUES (11, 3);
INSERT INTO public.repo_topic VALUES (9, 4);
INSERT INTO public.repo_topic VALUES (9, 5);
INSERT INTO public.repo_topic VALUES (9, 7);
INSERT INTO public.repo_topic VALUES (10, 8);
INSERT INTO public.repo_topic VALUES (10, 9);
INSERT INTO public.repo_topic VALUES (10, 10);
INSERT INTO public.repo_topic VALUES (7, 11);
INSERT INTO public.repo_topic VALUES (7, 12);
INSERT INTO public.repo_topic VALUES (7, 8);
INSERT INTO public.repo_topic VALUES (7, 13);


--
-- Data for Name: repo_transfer; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: repo_unit; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.repo_unit VALUES (1, 1, 1, NULL, 1685008492);
INSERT INTO public.repo_unit VALUES (2, 1, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1685008492);
INSERT INTO public.repo_unit VALUES (3, 1, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1685008492);
INSERT INTO public.repo_unit VALUES (4, 1, 4, NULL, 1685008492);
INSERT INTO public.repo_unit VALUES (5, 1, 5, NULL, 1685008492);
INSERT INTO public.repo_unit VALUES (6, 1, 8, NULL, 1685008492);
INSERT INTO public.repo_unit VALUES (7, 1, 9, NULL, 1685008492);
INSERT INTO public.repo_unit VALUES (29, 5, 1, NULL, 1685070673);
INSERT INTO public.repo_unit VALUES (30, 5, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1685070673);
INSERT INTO public.repo_unit VALUES (31, 5, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1685070673);
INSERT INTO public.repo_unit VALUES (32, 5, 4, NULL, 1685070673);
INSERT INTO public.repo_unit VALUES (33, 5, 5, NULL, 1685070673);
INSERT INTO public.repo_unit VALUES (34, 5, 8, NULL, 1685070673);
INSERT INTO public.repo_unit VALUES (35, 5, 9, NULL, 1685070673);
INSERT INTO public.repo_unit VALUES (36, 6, 1, NULL, 1685353317);
INSERT INTO public.repo_unit VALUES (37, 6, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1685353317);
INSERT INTO public.repo_unit VALUES (38, 6, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1685353317);
INSERT INTO public.repo_unit VALUES (39, 6, 4, NULL, 1685353317);
INSERT INTO public.repo_unit VALUES (40, 6, 5, NULL, 1685353317);
INSERT INTO public.repo_unit VALUES (41, 6, 8, NULL, 1685353317);
INSERT INTO public.repo_unit VALUES (42, 6, 9, NULL, 1685353317);
INSERT INTO public.repo_unit VALUES (43, 7, 1, NULL, 1685678586);
INSERT INTO public.repo_unit VALUES (44, 7, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1685678586);
INSERT INTO public.repo_unit VALUES (45, 7, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1685678586);
INSERT INTO public.repo_unit VALUES (46, 7, 4, NULL, 1685678586);
INSERT INTO public.repo_unit VALUES (47, 7, 5, NULL, 1685678586);
INSERT INTO public.repo_unit VALUES (48, 7, 8, NULL, 1685678586);
INSERT INTO public.repo_unit VALUES (49, 7, 9, NULL, 1685678586);
INSERT INTO public.repo_unit VALUES (50, 8, 1, NULL, 1685678896);
INSERT INTO public.repo_unit VALUES (51, 8, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1685678896);
INSERT INTO public.repo_unit VALUES (52, 8, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1685678896);
INSERT INTO public.repo_unit VALUES (53, 8, 4, NULL, 1685678896);
INSERT INTO public.repo_unit VALUES (54, 8, 5, NULL, 1685678896);
INSERT INTO public.repo_unit VALUES (55, 8, 8, NULL, 1685678896);
INSERT INTO public.repo_unit VALUES (56, 8, 9, NULL, 1685678896);
INSERT INTO public.repo_unit VALUES (57, 9, 1, NULL, 1685933299);
INSERT INTO public.repo_unit VALUES (58, 9, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1685933299);
INSERT INTO public.repo_unit VALUES (59, 9, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1685933299);
INSERT INTO public.repo_unit VALUES (60, 9, 4, NULL, 1685933299);
INSERT INTO public.repo_unit VALUES (61, 9, 5, NULL, 1685933299);
INSERT INTO public.repo_unit VALUES (62, 9, 8, NULL, 1685933299);
INSERT INTO public.repo_unit VALUES (63, 9, 9, NULL, 1685933299);
INSERT INTO public.repo_unit VALUES (64, 10, 1, NULL, 1685933662);
INSERT INTO public.repo_unit VALUES (65, 10, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1685933662);
INSERT INTO public.repo_unit VALUES (66, 10, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1685933662);
INSERT INTO public.repo_unit VALUES (67, 10, 4, NULL, 1685933662);
INSERT INTO public.repo_unit VALUES (68, 10, 5, NULL, 1685933662);
INSERT INTO public.repo_unit VALUES (69, 10, 8, NULL, 1685933662);
INSERT INTO public.repo_unit VALUES (70, 10, 9, NULL, 1685933662);
INSERT INTO public.repo_unit VALUES (78, 11, 1, NULL, 1686803181);
INSERT INTO public.repo_unit VALUES (79, 11, 5, '{}', 1686803181);
INSERT INTO public.repo_unit VALUES (80, 11, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1686803181);
INSERT INTO public.repo_unit VALUES (81, 11, 8, NULL, 1686803181);
INSERT INTO public.repo_unit VALUES (82, 11, 4, NULL, 1686803181);
INSERT INTO public.repo_unit VALUES (83, 11, 9, NULL, 1686803181);
INSERT INTO public.repo_unit VALUES (84, 11, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1686803181);
INSERT INTO public.repo_unit VALUES (85, 12, 1, NULL, 1686814438);
INSERT INTO public.repo_unit VALUES (86, 12, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1686814438);
INSERT INTO public.repo_unit VALUES (87, 12, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1686814438);
INSERT INTO public.repo_unit VALUES (88, 12, 4, NULL, 1686814438);
INSERT INTO public.repo_unit VALUES (89, 12, 5, NULL, 1686814438);
INSERT INTO public.repo_unit VALUES (90, 12, 8, NULL, 1686814438);
INSERT INTO public.repo_unit VALUES (91, 12, 9, NULL, 1686814438);
INSERT INTO public.repo_unit VALUES (106, 15, 1, NULL, 1700798584);
INSERT INTO public.repo_unit VALUES (107, 15, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1700798584);
INSERT INTO public.repo_unit VALUES (108, 15, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1700798584);
INSERT INTO public.repo_unit VALUES (109, 15, 4, NULL, 1700798584);
INSERT INTO public.repo_unit VALUES (110, 15, 5, NULL, 1700798584);
INSERT INTO public.repo_unit VALUES (111, 15, 8, NULL, 1700798584);
INSERT INTO public.repo_unit VALUES (112, 15, 9, NULL, 1700798584);
INSERT INTO public.repo_unit VALUES (120, 17, 1, NULL, 1701226087);
INSERT INTO public.repo_unit VALUES (121, 17, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1701226087);
INSERT INTO public.repo_unit VALUES (122, 17, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1701226087);
INSERT INTO public.repo_unit VALUES (123, 17, 4, NULL, 1701226087);
INSERT INTO public.repo_unit VALUES (124, 17, 5, NULL, 1701226087);
INSERT INTO public.repo_unit VALUES (125, 17, 8, NULL, 1701226087);
INSERT INTO public.repo_unit VALUES (126, 17, 9, NULL, 1701226087);
INSERT INTO public.repo_unit VALUES (127, 18, 1, NULL, 1701226304);
INSERT INTO public.repo_unit VALUES (128, 18, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1701226304);
INSERT INTO public.repo_unit VALUES (129, 18, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1701226304);
INSERT INTO public.repo_unit VALUES (130, 18, 4, NULL, 1701226304);
INSERT INTO public.repo_unit VALUES (131, 18, 5, NULL, 1701226304);
INSERT INTO public.repo_unit VALUES (132, 18, 8, NULL, 1701226304);
INSERT INTO public.repo_unit VALUES (133, 18, 9, NULL, 1701226304);
INSERT INTO public.repo_unit VALUES (141, 20, 1, NULL, 1701226689);
INSERT INTO public.repo_unit VALUES (142, 20, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1701226689);
INSERT INTO public.repo_unit VALUES (143, 20, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1701226689);
INSERT INTO public.repo_unit VALUES (144, 20, 4, NULL, 1701226689);
INSERT INTO public.repo_unit VALUES (145, 20, 5, NULL, 1701226689);
INSERT INTO public.repo_unit VALUES (146, 20, 8, NULL, 1701226689);
INSERT INTO public.repo_unit VALUES (147, 20, 9, NULL, 1701226689);
INSERT INTO public.repo_unit VALUES (155, 22, 1, NULL, 1701833889);
INSERT INTO public.repo_unit VALUES (156, 22, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1701833889);
INSERT INTO public.repo_unit VALUES (157, 22, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1701833889);
INSERT INTO public.repo_unit VALUES (158, 22, 4, NULL, 1701833889);
INSERT INTO public.repo_unit VALUES (159, 22, 5, NULL, 1701833889);
INSERT INTO public.repo_unit VALUES (160, 22, 8, NULL, 1701833889);
INSERT INTO public.repo_unit VALUES (161, 22, 9, NULL, 1701833889);
INSERT INTO public.repo_unit VALUES (162, 23, 1, NULL, 1701833946);
INSERT INTO public.repo_unit VALUES (163, 23, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1701833946);
INSERT INTO public.repo_unit VALUES (164, 23, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1701833946);
INSERT INTO public.repo_unit VALUES (165, 23, 4, NULL, 1701833946);
INSERT INTO public.repo_unit VALUES (166, 23, 5, NULL, 1701833946);
INSERT INTO public.repo_unit VALUES (167, 23, 8, NULL, 1701833946);
INSERT INTO public.repo_unit VALUES (168, 23, 9, NULL, 1701833946);
INSERT INTO public.repo_unit VALUES (169, 21, 1, NULL, 1702025202);
INSERT INTO public.repo_unit VALUES (170, 21, 5, '{}', 1702025202);
INSERT INTO public.repo_unit VALUES (171, 21, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1702025202);
INSERT INTO public.repo_unit VALUES (172, 21, 4, NULL, 1702025202);
INSERT INTO public.repo_unit VALUES (173, 21, 9, NULL, 1702025202);
INSERT INTO public.repo_unit VALUES (174, 21, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1702025202);
INSERT INTO public.repo_unit VALUES (175, 24, 1, NULL, 1703824082);
INSERT INTO public.repo_unit VALUES (176, 24, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1703824082);
INSERT INTO public.repo_unit VALUES (177, 24, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1703824082);
INSERT INTO public.repo_unit VALUES (178, 24, 4, NULL, 1703824082);
INSERT INTO public.repo_unit VALUES (179, 24, 5, NULL, 1703824082);
INSERT INTO public.repo_unit VALUES (180, 24, 8, NULL, 1703824082);
INSERT INTO public.repo_unit VALUES (181, 24, 9, NULL, 1703824082);
INSERT INTO public.repo_unit VALUES (182, 25, 1, NULL, 1703834670);
INSERT INTO public.repo_unit VALUES (183, 25, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1703834670);
INSERT INTO public.repo_unit VALUES (184, 25, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1703834670);
INSERT INTO public.repo_unit VALUES (185, 25, 4, NULL, 1703834670);
INSERT INTO public.repo_unit VALUES (186, 25, 5, NULL, 1703834670);
INSERT INTO public.repo_unit VALUES (187, 25, 8, NULL, 1703834670);
INSERT INTO public.repo_unit VALUES (188, 25, 9, NULL, 1703834670);
INSERT INTO public.repo_unit VALUES (189, 26, 1, NULL, 1704424147);
INSERT INTO public.repo_unit VALUES (190, 26, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1704424147);
INSERT INTO public.repo_unit VALUES (191, 26, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1704424147);
INSERT INTO public.repo_unit VALUES (192, 26, 4, NULL, 1704424147);
INSERT INTO public.repo_unit VALUES (193, 26, 5, NULL, 1704424147);
INSERT INTO public.repo_unit VALUES (194, 26, 8, NULL, 1704424147);
INSERT INTO public.repo_unit VALUES (195, 26, 9, NULL, 1704424147);
INSERT INTO public.repo_unit VALUES (196, 27, 1, NULL, 1705366257);
INSERT INTO public.repo_unit VALUES (197, 27, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1705366257);
INSERT INTO public.repo_unit VALUES (198, 27, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1705366257);
INSERT INTO public.repo_unit VALUES (199, 27, 4, NULL, 1705366257);
INSERT INTO public.repo_unit VALUES (200, 27, 5, NULL, 1705366257);
INSERT INTO public.repo_unit VALUES (201, 27, 8, NULL, 1705366257);
INSERT INTO public.repo_unit VALUES (202, 27, 9, NULL, 1705366257);
INSERT INTO public.repo_unit VALUES (203, 28, 1, NULL, 1705366311);
INSERT INTO public.repo_unit VALUES (204, 28, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1705366311);
INSERT INTO public.repo_unit VALUES (205, 28, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1705366311);
INSERT INTO public.repo_unit VALUES (206, 28, 4, NULL, 1705366311);
INSERT INTO public.repo_unit VALUES (207, 28, 5, NULL, 1705366311);
INSERT INTO public.repo_unit VALUES (208, 28, 8, NULL, 1705366311);
INSERT INTO public.repo_unit VALUES (209, 28, 9, NULL, 1705366311);
INSERT INTO public.repo_unit VALUES (210, 29, 1, NULL, 1705366706);
INSERT INTO public.repo_unit VALUES (211, 29, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1705366706);
INSERT INTO public.repo_unit VALUES (212, 29, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1705366706);
INSERT INTO public.repo_unit VALUES (213, 29, 4, NULL, 1705366706);
INSERT INTO public.repo_unit VALUES (214, 29, 5, NULL, 1705366706);
INSERT INTO public.repo_unit VALUES (215, 29, 8, NULL, 1705366706);
INSERT INTO public.repo_unit VALUES (216, 29, 9, NULL, 1705366706);


--
-- Data for Name: repository; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.repository VALUES (23, 14, 'giao-duc-nghe-nghiep', 'mobile', 'mobile', '', '', 4, 'https://cognvn@gitlab.com/quan-ly-giao-duc-nghe-nghiep/mobile.git', 'master', 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false, false, true, 0, false, 0, false, 0, 1762460, false, false, 'null', 0, '', 1701833946, 1680231254, 0, 1762460, 0);
INSERT INTO public.repository VALUES (24, 12, 'khieu-nai', 'mobile', 'mobile', '', '', 0, '', 'dev-ios', 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false, false, false, 0, false, 0, false, 0, 2412083, true, false, 'null', 0, '', 1703824082, 1704676997, 0, 2412083, 0);
INSERT INTO public.repository VALUES (21, 14, 'giao-duc-nghe-nghiep', 'frontend', 'frontend', '', '', 4, 'https://cognvn@gitlab.com/quan-ly-giao-duc-nghe-nghiep/frontend.git', 'main', 3, 0, 0, 0, 0, 112, 112, 0, 0, 0, 0, 0, 0, false, false, false, false, 0, false, 0, false, 0, 82260940, false, false, 'null', 0, '', 1701832974, 1705631139, 0, 82260940, 0);
INSERT INTO public.repository VALUES (18, 13, 'binh-dinh-f1', 'admin', 'admin', '', '', 4, 'https://cognvn@gitlab.com/binh-dinh-f1/admin.git', 'main', 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false, false, true, 0, false, 0, false, 0, 42753131, false, false, 'null', 0, '', 1701226304, 1703466506, 0, 42753131, 0);
INSERT INTO public.repository VALUES (20, 13, 'binh-dinh-f1', 'webapi', 'webapi', '', '', 4, 'https://cognvn@gitlab.com/binh-dinh-f1/webapi.git', 'main', 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false, false, true, 0, false, 0, false, 0, 136828, false, false, 'null', 0, '', 1701226689, 1703473351, 0, 136828, 0);
INSERT INTO public.repository VALUES (29, 17, 'eCabinet', 'mobile', 'mobile', 'okay', '', 4, 'https://gitlab.com/gdt_hophanh/meet-react-native.git', 'dev', 4, 0, 0, 115, 12, 0, 0, 0, 0, 0, 0, 0, 0, false, false, false, false, 0, false, 0, false, 0, 460123908, true, false, 'null', 0, '', 1705366706, 1705366920, 0, 460123908, 0);
INSERT INTO public.repository VALUES (8, 7, 'xuc-tien-dau-tu', 'frontend', 'frontend', '', '', 0, '', 'main', 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, true, false, false, false, 0, false, 0, false, 0, 69380064, true, false, 'null', 0, '', 1685678896, 1686109360, 0, 69380064, 0);
INSERT INTO public.repository VALUES (10, 8, 'buu-chinh-vien-thong', 'api', 'api', '', '', 0, '', 'dev', 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, true, false, false, false, 0, false, 0, false, 0, 3961764, true, false, '["api","net-framework","net4"]', 0, '', 1685933662, 1689242204, 0, 3961764, 0);
INSERT INTO public.repository VALUES (11, 8, 'buu-chinh-vien-thong', 'web-admin', 'web-admin', '', '', 0, '', 'dev', 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, true, false, false, false, 0, false, 0, false, 0, 15771835, true, false, '["react","vite","admin"]', 0, '', 1685934907, 1689242204, 0, 15771835, 0);
INSERT INTO public.repository VALUES (9, 8, 'buu-chinh-vien-thong', 'web-gis', 'web-gis', '', '', 0, '', 'master', 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, true, false, false, false, 0, false, 0, false, 0, 20289544, true, false, '["angular","typescript","arcgis"]', 0, '', 1685933299, 1689838832, 0, 20289544, 0);
INSERT INTO public.repository VALUES (27, 17, 'eCabinet', 'admin', 'admin', '', '', 4, 'https://gitlab.com/gdt_hophanh/meet_frontend_admin.git', 'dev', 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false, false, false, 0, false, 0, false, 0, 31419008, true, false, 'null', 0, '', 1705366257, 1705366276, 0, 31419008, 0);
INSERT INTO public.repository VALUES (26, 12, 'khieu-nai', 'admin', 'admin', '', '', 0, '', 'main', 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false, false, false, 0, false, 0, false, 0, 83565295, true, false, 'null', 0, '', 1704424147, 1705547956, 0, 83565295, 0);
INSERT INTO public.repository VALUES (5, 4, 'dongvntran', 'quanly-datdai', 'quanly-datdai', '', '', 4, 'https://gitlab.com/dongtv2510/quanly-datdai.git', 'main', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false, false, true, 0, false, 0, false, 0, 2319181, false, false, 'null', 0, '', 1685070673, 1669774897, 0, 2319181, 0);
INSERT INTO public.repository VALUES (7, 7, 'xuc-tien-dau-tu', 'api', 'api', '', '', 0, '', 'dev', 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, true, false, false, false, 0, false, 0, false, 0, 270491, true, false, '["api","nestjs","nodejs","typeorm"]', 0, '', 1685678586, 1687427677, 0, 270491, 0);
INSERT INTO public.repository VALUES (1, 2, 'tuan', 'test', 'test', '', '', 0, '', 'main', 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false, false, false, 0, false, 0, false, 0, 307088, true, false, 'null', 0, '', 1685008492, 1685008696, 0, 307088, 0);
INSERT INTO public.repository VALUES (22, 14, 'giao-duc-nghe-nghiep', 'backend', 'backend', '', '', 4, 'https://cognvn@gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend.git', 'main', 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false, false, true, 0, false, 0, false, 0, 8769474, false, false, 'null', 0, '', 1701833889, 1705456653, 0, 8769474, 0);
INSERT INTO public.repository VALUES (15, 12, 'khieu-nai', 'backend', 'backend', '', '', 0, '', 'main', 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false, false, false, 0, false, 0, false, 0, 9794328, true, false, 'null', 0, '', 1700798584, 1705630613, 0, 9794328, 0);
INSERT INTO public.repository VALUES (17, 13, 'binh-dinh-f1', 'website', 'website', '', '', 4, 'https://cognvn@gitlab.com/binh-dinh-f1/binhdinhf1-website.git', 'main', 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false, false, true, 0, false, 0, false, 0, 212927886, false, false, 'null', 0, '', 1701226087, 1704109510, 0, 212927886, 0);
INSERT INTO public.repository VALUES (25, 6, 'gdt-base', 'gdt-signed', 'gdt-signed', 'Plugin hỗ trợ ký số doanh nghiệp', '', 0, '', 'main', 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false, false, false, 0, false, 0, false, 0, 2997610, true, false, 'null', 0, '', 1703834670, 1703835149, 0, 2997610, 0);
INSERT INTO public.repository VALUES (6, 6, 'gdt-base', 'adapter', 'adapter', 'Adapter cho frontend, quản lý session, proxy tới api server', '', 0, '', 'main', 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false, false, false, 0, false, 0, false, 0, 42625, true, false, 'null', 0, '', 1685353317, 1700810764, 0, 42625, 0);
INSERT INTO public.repository VALUES (12, 10, 'phuong-tien-do', 'frontend', 'frontend', '', '', 0, '', 'main', 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, true, false, false, false, 0, false, 0, false, 0, 28068717, true, false, 'null', 0, '', 1686814438, 1702008061, 0, 28068717, 0);
INSERT INTO public.repository VALUES (28, 17, 'eCabinet', 'backend', 'backend', '', '', 4, 'https://gitlab.com/gdt_hophanh/meet_backend.git', 'dev', 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false, false, false, 0, false, 0, false, 0, 11006483, true, false, 'null', 0, '', 1705366311, 1705366326, 0, 11006483, 0);


--
-- Data for Name: review; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: review_state; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: secret; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: session; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.session VALUES ('dbd23dbee9e5e9d9', '\x0d7f040102ff800001100110000062ff80000306737472696e670c070005756e616d6506737472696e670c0d000b68756e677468696e686e6506737472696e670c0a00085f6f6c645f75696406737472696e670c040002313106737472696e670c05000375696405696e74363404020016', 1705571294);
INSERT INTO public.session VALUES ('f80bf85bdf6e1cfe', '\x0d7f040102ff800001100110000061ff80000306737472696e670c05000375696405696e7436340402000a06737472696e670c070005756e616d6506737472696e670c0d000b6769745f666f725f64657606737472696e670c0a00085f6f6c645f75696406737472696e670c03000135', 1705571294);
INSERT INTO public.session VALUES ('ff7bcf7d48849a5c', '\x0d7f040102ff800001100110000062ff80000306737472696e670c0a00085f6f6c645f75696406737472696e670c040002313106737472696e670c05000375696405696e7436340402001606737472696e670c070005756e616d6506737472696e670c0d000b68756e677468696e686e65', 1705632463);
INSERT INTO public.session VALUES ('5a33bb617742c2db', '\x0d7f040102ff80000110011000005cff80000306737472696e670c0a00085f6f6c645f75696406737472696e670c0300013106737472696e670c070005756e616d6506737472696e670c0800066c686e676f6306737472696e670c05000375696405696e74363404020002', 1705571984);
INSERT INTO public.session VALUES ('654f0e9c80620c97', '\x0d7f040102ff80000110011000005dff80000306737472696e670c070005756e616d6506737472696e670c080006486f6167647406737472696e670c0a00085f6f6c645f75696406737472696e670c040002313506737472696e670c05000375696405696e7436340402001e', 1705571032);
INSERT INTO public.session VALUES ('7d6761be9634ca8a', '\x0d7f040102ff800001100110000062ff80000306737472696e670c0a00085f6f6c645f75696406737472696e670c040002313106737472696e670c05000375696405696e7436340402001606737472696e670c070005756e616d6506737472696e670c0d000b68756e677468696e686e65', 1705485741);


--
-- Data for Name: star; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: stopwatch; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: system_setting; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.system_setting VALUES (1, 'picture.disable_gravatar', 'true', 4, 1685007296, 1685007296);
INSERT INTO public.system_setting VALUES (2, 'picture.enable_federated_avatar', 'false', 4, 1685007296, 1685007296);
INSERT INTO public.system_setting VALUES (3, 'revision', '', 1, 1700119922, 1700119922);


--
-- Data for Name: task; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.task VALUES (1, 4, 4, 0, 0, 3, 1685070459, 1685070460, '{"clone_addr":"https://sanitized-credential@gitlab.com/dongtv2510/quanly-datdai.git","clone_addr_encrypted":"8d2849794f3dc166afd521044888bd318d183e37a5070a28bd83e31622ad110d598fa427098c1affdbb0c66f857c24ebec33d7940f43c2ea1b4d6f382f643fe9615f643d80192d197b68f9c4f10848fca8a62c8e663a02aeb9227e0d7be8b20d","auth_username":"","auth_password_encrypted":"60a5a7867e87b3795e93e2f782019e33","auth_token_encrypted":"68e08d29d9a1812224fc776e6102f946739a92b43c47af1d46eaa074c923eeb1cc87d7e6eb02ebfe14495848d6cc5d5da13fdc20","uid":0,"repo_name":"quanly-datdai","mirror":true,"lfs":false,"lfs_endpoint":"","private":false,"description":"","OriginalURL":"https://dongtv2510@gitlab.com/dongtv2510/quanly-datdai.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '', 1685070459);
INSERT INTO public.task VALUES (2, 4, 4, 0, 0, 3, 1685070544, 1685070545, '{"clone_addr":"https://gitlab.com/dongtv2510/quanly-datdai","clone_addr_encrypted":"b4e0adc8156f49cff7340dfcd3294433b62b79431c95ba68256356d9eb36dfef4fd171471b0d2df9e8bba8d5d2f233678167d24d6a5aa094b8626612beed7f6ccbc4b9a33be865ba551d3c2f","auth_username":"","auth_password_encrypted":"ab3ff92348fbea4f3955a0517b4ccde9","auth_token_encrypted":"979e35f0d299637922b0b1f2e27f5809710b07a419c43c71e54e35ea03658691d77413dc6fa0f71b32a957576bf42e4c5f746ab0","uid":0,"repo_name":"dongtv2510","mirror":true,"lfs":false,"lfs_endpoint":"","private":false,"description":"","OriginalURL":"https://gitlab.com/dongtv2510/quanly-datdai","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '', 1685070543);
INSERT INTO public.task VALUES (3, 4, 4, 5, 0, 4, 1685070673, 1685070683, '{"clone_addr":"https://gitlab.com/dongtv2510/quanly-datdai.git","auth_username":"","uid":0,"repo_name":"quanly-datdai","mirror":true,"lfs":false,"lfs_endpoint":"","private":false,"description":"","OriginalURL":"https://gitlab.com/dongtv2510/quanly-datdai.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1685070673);
INSERT INTO public.task VALUES (5, 1, 13, 17, 0, 4, 1701226089, 1701226116, '{"clone_addr":"https://sanitized-credential@gitlab.com/binh-dinh-f1/binhdinhf1-website.git","auth_username":"","uid":0,"repo_name":"website","mirror":true,"lfs":false,"lfs_endpoint":"","private":false,"description":"","OriginalURL":"https://cognvn@gitlab.com/binh-dinh-f1/binhdinhf1-website.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1701226087);
INSERT INTO public.task VALUES (8, 1, 13, 20, 0, 4, 1701226689, 1701226696, '{"clone_addr":"https://sanitized-credential@gitlab.com/binh-dinh-f1/webapi.git","auth_username":"","uid":0,"repo_name":"webapi","mirror":true,"lfs":false,"lfs_endpoint":"","private":false,"description":"","OriginalURL":"https://cognvn@gitlab.com/binh-dinh-f1/webapi.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1701226689);
INSERT INTO public.task VALUES (13, 1, 17, 28, 0, 4, 1705366313, 1705366326, '{"clone_addr":"https://gitlab.com/gdt_hophanh/meet_backend.git","auth_username":"","uid":0,"repo_name":"backend","mirror":false,"lfs":true,"lfs_endpoint":"","private":false,"description":"","OriginalURL":"https://gitlab.com/gdt_hophanh/meet_backend.git","GitServiceType":4,"Wiki":true,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1705366311);
INSERT INTO public.task VALUES (14, 1, 17, 29, 0, 4, 1705366708, 1705366920, '{"clone_addr":"https://gitlab.com/gdt_hophanh/meet-react-native.git","auth_username":"","uid":0,"repo_name":"mobile","mirror":false,"lfs":true,"lfs_endpoint":"","private":false,"description":"","OriginalURL":"https://gitlab.com/gdt_hophanh/meet-react-native.git","GitServiceType":4,"Wiki":true,"Issues":true,"Milestones":false,"Labels":true,"Releases":false,"Comments":true,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_issues","omitempty":null}', 1705366706);
INSERT INTO public.task VALUES (9, 1, 14, 21, 0, 4, 1701832976, 1701832989, '{"clone_addr":"https://sanitized-credential@gitlab.com/quan-ly-giao-duc-nghe-nghiep/frontend.git","auth_username":"","uid":0,"repo_name":"frontend","mirror":true,"lfs":false,"lfs_endpoint":"","private":false,"description":"","OriginalURL":"https://cognvn@gitlab.com/quan-ly-giao-duc-nghe-nghiep/frontend.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1701832974);
INSERT INTO public.task VALUES (6, 1, 13, 18, 0, 4, 1701226306, 1701226319, '{"clone_addr":"https://sanitized-credential@gitlab.com/binh-dinh-f1/admin.git","auth_username":"","uid":0,"repo_name":"admin","mirror":true,"lfs":false,"lfs_endpoint":"","private":false,"description":"","OriginalURL":"https://cognvn@gitlab.com/binh-dinh-f1/admin.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1701226304);
INSERT INTO public.task VALUES (10, 1, 14, 22, 0, 4, 1701833891, 1701833899, '{"clone_addr":"https://sanitized-credential@gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend.git","auth_username":"","uid":0,"repo_name":"backend","mirror":true,"lfs":false,"lfs_endpoint":"","private":false,"description":"","OriginalURL":"https://cognvn@gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1701833889);
INSERT INTO public.task VALUES (11, 1, 14, 23, 0, 4, 1701833947, 1701833953, '{"clone_addr":"https://sanitized-credential@gitlab.com/quan-ly-giao-duc-nghe-nghiep/mobile.git","auth_username":"","uid":0,"repo_name":"mobile","mirror":true,"lfs":false,"lfs_endpoint":"","private":false,"description":"","OriginalURL":"https://cognvn@gitlab.com/quan-ly-giao-duc-nghe-nghiep/mobile.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1701833946);
INSERT INTO public.task VALUES (12, 1, 17, 27, 0, 4, 1705366259, 1705366276, '{"clone_addr":"https://gitlab.com/gdt_hophanh/meet_frontend_admin.git","auth_username":"","uid":0,"repo_name":"admin","mirror":false,"lfs":true,"lfs_endpoint":"","private":false,"description":"","OriginalURL":"https://gitlab.com/gdt_hophanh/meet_frontend_admin.git","GitServiceType":4,"Wiki":true,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1705366257);


--
-- Data for Name: team; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.team VALUES (14, 12, 'developer', 'Developer', '', 1, 3, 4, true, true);
INSERT INTO public.team VALUES (3, 3, 'maintainers', 'Maintainers', '', 3, 0, 2, true, true);
INSERT INTO public.team VALUES (1, 3, 'owners', 'Owners', '', 4, 0, 3, true, true);
INSERT INTO public.team VALUES (5, 7, 'owners', 'Owners', '', 4, 2, 2, true, true);
INSERT INTO public.team VALUES (17, 17, 'owners', 'Owners', '', 4, 3, 2, true, true);
INSERT INTO public.team VALUES (18, 17, 'dev', 'Dev', '', 1, 3, 2, true, false);
INSERT INTO public.team VALUES (19, 18, 'owners', 'Owners', '', 4, 0, 1, true, true);
INSERT INTO public.team VALUES (6, 8, 'owners', 'Owners', '', 4, 3, 2, true, true);
INSERT INTO public.team VALUES (7, 8, 'ci', 'CI', 'Team for running Jenkins CI/CD', 1, 3, 1, true, false);
INSERT INTO public.team VALUES (8, 10, 'owners', 'Owners', '', 4, 1, 2, true, true);
INSERT INTO public.team VALUES (11, 13, 'owners', 'Owners', '', 4, 3, 2, true, true);
INSERT INTO public.team VALUES (12, 14, 'owners', 'Owners', '', 4, 3, 2, true, true);
INSERT INTO public.team VALUES (13, 14, 'dev', 'Dev', '', 1, 3, 3, true, false);
INSERT INTO public.team VALUES (9, 10, 'developer', 'Developer', '', 1, 1, 2, true, false);
INSERT INTO public.team VALUES (4, 6, 'owners', 'Owners', '', 4, 2, 2, true, true);
INSERT INTO public.team VALUES (10, 12, 'owners', 'Owners', '', 4, 3, 2, true, true);
INSERT INTO public.team VALUES (15, 12, 'ci', 'CI', '', 1, 3, 1, true, false);


--
-- Data for Name: team_invite; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: team_repo; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.team_repo VALUES (1, 6, 4, 6);
INSERT INTO public.team_repo VALUES (2, 7, 5, 7);
INSERT INTO public.team_repo VALUES (3, 7, 5, 8);
INSERT INTO public.team_repo VALUES (4, 8, 6, 9);
INSERT INTO public.team_repo VALUES (5, 8, 6, 10);
INSERT INTO public.team_repo VALUES (6, 8, 6, 11);
INSERT INTO public.team_repo VALUES (7, 8, 7, 10);
INSERT INTO public.team_repo VALUES (8, 8, 7, 9);
INSERT INTO public.team_repo VALUES (9, 8, 7, 11);
INSERT INTO public.team_repo VALUES (10, 10, 8, 12);
INSERT INTO public.team_repo VALUES (11, 10, 9, 12);
INSERT INTO public.team_repo VALUES (12, 12, 10, 15);
INSERT INTO public.team_repo VALUES (14, 13, 11, 17);
INSERT INTO public.team_repo VALUES (15, 13, 11, 18);
INSERT INTO public.team_repo VALUES (17, 13, 11, 20);
INSERT INTO public.team_repo VALUES (18, 14, 12, 21);
INSERT INTO public.team_repo VALUES (19, 14, 12, 22);
INSERT INTO public.team_repo VALUES (20, 14, 12, 23);
INSERT INTO public.team_repo VALUES (21, 14, 13, 21);
INSERT INTO public.team_repo VALUES (22, 14, 13, 23);
INSERT INTO public.team_repo VALUES (23, 14, 13, 22);
INSERT INTO public.team_repo VALUES (24, 12, 14, 15);
INSERT INTO public.team_repo VALUES (25, 12, 10, 24);
INSERT INTO public.team_repo VALUES (26, 12, 14, 24);
INSERT INTO public.team_repo VALUES (27, 6, 4, 25);
INSERT INTO public.team_repo VALUES (28, 12, 10, 26);
INSERT INTO public.team_repo VALUES (29, 12, 14, 26);
INSERT INTO public.team_repo VALUES (30, 12, 15, 24);
INSERT INTO public.team_repo VALUES (31, 12, 15, 26);
INSERT INTO public.team_repo VALUES (32, 12, 15, 15);
INSERT INTO public.team_repo VALUES (33, 12, 16, 24);
INSERT INTO public.team_repo VALUES (34, 12, 16, 26);
INSERT INTO public.team_repo VALUES (35, 12, 16, 15);
INSERT INTO public.team_repo VALUES (36, 17, 17, 27);
INSERT INTO public.team_repo VALUES (37, 17, 18, 27);
INSERT INTO public.team_repo VALUES (38, 17, 17, 28);
INSERT INTO public.team_repo VALUES (39, 17, 18, 28);
INSERT INTO public.team_repo VALUES (40, 17, 17, 29);
INSERT INTO public.team_repo VALUES (41, 17, 18, 29);


--
-- Data for Name: team_unit; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.team_unit VALUES (101, 10, 9, 1, 2);
INSERT INTO public.team_unit VALUES (102, 10, 9, 2, 2);
INSERT INTO public.team_unit VALUES (103, 10, 9, 5, 1);
INSERT INTO public.team_unit VALUES (104, 10, 9, 6, 1);
INSERT INTO public.team_unit VALUES (105, 10, 9, 10, 1);
INSERT INTO public.team_unit VALUES (106, 10, 9, 3, 2);
INSERT INTO public.team_unit VALUES (107, 10, 9, 4, 1);
INSERT INTO public.team_unit VALUES (108, 10, 9, 7, 1);
INSERT INTO public.team_unit VALUES (109, 10, 9, 8, 1);
INSERT INTO public.team_unit VALUES (110, 10, 9, 9, 1);
INSERT INTO public.team_unit VALUES (121, 13, 11, 1, 4);
INSERT INTO public.team_unit VALUES (122, 13, 11, 2, 4);
INSERT INTO public.team_unit VALUES (123, 13, 11, 3, 4);
INSERT INTO public.team_unit VALUES (124, 13, 11, 4, 4);
INSERT INTO public.team_unit VALUES (125, 13, 11, 5, 4);
INSERT INTO public.team_unit VALUES (126, 13, 11, 6, 1);
INSERT INTO public.team_unit VALUES (127, 13, 11, 7, 1);
INSERT INTO public.team_unit VALUES (128, 13, 11, 8, 4);
INSERT INTO public.team_unit VALUES (129, 13, 11, 9, 4);
INSERT INTO public.team_unit VALUES (130, 13, 11, 10, 4);
INSERT INTO public.team_unit VALUES (171, 12, 14, 7, 0);
INSERT INTO public.team_unit VALUES (172, 12, 14, 8, 1);
INSERT INTO public.team_unit VALUES (173, 12, 14, 9, 1);
INSERT INTO public.team_unit VALUES (174, 12, 14, 1, 2);
INSERT INTO public.team_unit VALUES (81, 8, 7, 8, 1);
INSERT INTO public.team_unit VALUES (82, 8, 7, 6, 1);
INSERT INTO public.team_unit VALUES (83, 8, 7, 7, 1);
INSERT INTO public.team_unit VALUES (84, 8, 7, 9, 1);
INSERT INTO public.team_unit VALUES (85, 8, 7, 4, 1);
INSERT INTO public.team_unit VALUES (86, 8, 7, 2, 1);
INSERT INTO public.team_unit VALUES (87, 8, 7, 5, 1);
INSERT INTO public.team_unit VALUES (88, 8, 7, 3, 1);
INSERT INTO public.team_unit VALUES (89, 8, 7, 1, 2);
INSERT INTO public.team_unit VALUES (90, 8, 7, 10, 1);
INSERT INTO public.team_unit VALUES (175, 12, 14, 2, 2);
INSERT INTO public.team_unit VALUES (176, 12, 14, 4, 1);
INSERT INTO public.team_unit VALUES (177, 12, 14, 5, 1);
INSERT INTO public.team_unit VALUES (178, 12, 14, 3, 2);
INSERT INTO public.team_unit VALUES (179, 12, 14, 6, 0);
INSERT INTO public.team_unit VALUES (180, 12, 14, 10, 1);
INSERT INTO public.team_unit VALUES (1, 3, 1, 1, 4);
INSERT INTO public.team_unit VALUES (2, 3, 1, 2, 4);
INSERT INTO public.team_unit VALUES (3, 3, 1, 3, 4);
INSERT INTO public.team_unit VALUES (4, 3, 1, 4, 4);
INSERT INTO public.team_unit VALUES (5, 3, 1, 5, 4);
INSERT INTO public.team_unit VALUES (8, 3, 1, 8, 4);
INSERT INTO public.team_unit VALUES (9, 3, 1, 9, 4);
INSERT INTO public.team_unit VALUES (10, 3, 1, 10, 4);
INSERT INTO public.team_unit VALUES (21, 6, 4, 1, 4);
INSERT INTO public.team_unit VALUES (22, 6, 4, 2, 4);
INSERT INTO public.team_unit VALUES (23, 6, 4, 3, 4);
INSERT INTO public.team_unit VALUES (24, 6, 4, 4, 4);
INSERT INTO public.team_unit VALUES (25, 6, 4, 5, 4);
INSERT INTO public.team_unit VALUES (28, 6, 4, 8, 4);
INSERT INTO public.team_unit VALUES (29, 6, 4, 9, 4);
INSERT INTO public.team_unit VALUES (30, 6, 4, 10, 4);
INSERT INTO public.team_unit VALUES (31, 7, 5, 1, 4);
INSERT INTO public.team_unit VALUES (32, 7, 5, 2, 4);
INSERT INTO public.team_unit VALUES (33, 7, 5, 3, 4);
INSERT INTO public.team_unit VALUES (34, 7, 5, 4, 4);
INSERT INTO public.team_unit VALUES (35, 7, 5, 5, 4);
INSERT INTO public.team_unit VALUES (38, 7, 5, 8, 4);
INSERT INTO public.team_unit VALUES (39, 7, 5, 9, 4);
INSERT INTO public.team_unit VALUES (40, 7, 5, 10, 4);
INSERT INTO public.team_unit VALUES (41, 8, 6, 1, 4);
INSERT INTO public.team_unit VALUES (42, 8, 6, 2, 4);
INSERT INTO public.team_unit VALUES (43, 8, 6, 3, 4);
INSERT INTO public.team_unit VALUES (44, 8, 6, 4, 4);
INSERT INTO public.team_unit VALUES (45, 8, 6, 5, 4);
INSERT INTO public.team_unit VALUES (211, 17, 18, 1, 2);
INSERT INTO public.team_unit VALUES (6, 3, 1, 6, 1);
INSERT INTO public.team_unit VALUES (7, 3, 1, 7, 1);
INSERT INTO public.team_unit VALUES (26, 6, 4, 6, 1);
INSERT INTO public.team_unit VALUES (27, 6, 4, 7, 1);
INSERT INTO public.team_unit VALUES (36, 7, 5, 6, 1);
INSERT INTO public.team_unit VALUES (37, 7, 5, 7, 1);
INSERT INTO public.team_unit VALUES (46, 8, 6, 6, 1);
INSERT INTO public.team_unit VALUES (212, 17, 18, 2, 2);
INSERT INTO public.team_unit VALUES (213, 17, 18, 8, 1);
INSERT INTO public.team_unit VALUES (214, 17, 18, 9, 1);
INSERT INTO public.team_unit VALUES (215, 17, 18, 10, 1);
INSERT INTO public.team_unit VALUES (216, 17, 18, 3, 2);
INSERT INTO public.team_unit VALUES (217, 17, 18, 4, 2);
INSERT INTO public.team_unit VALUES (218, 17, 18, 5, 1);
INSERT INTO public.team_unit VALUES (219, 17, 18, 6, 0);
INSERT INTO public.team_unit VALUES (220, 17, 18, 7, 0);
INSERT INTO public.team_unit VALUES (48, 8, 6, 8, 4);
INSERT INTO public.team_unit VALUES (49, 8, 6, 9, 4);
INSERT INTO public.team_unit VALUES (50, 8, 6, 10, 4);
INSERT INTO public.team_unit VALUES (91, 10, 8, 1, 4);
INSERT INTO public.team_unit VALUES (92, 10, 8, 2, 4);
INSERT INTO public.team_unit VALUES (93, 10, 8, 3, 4);
INSERT INTO public.team_unit VALUES (94, 10, 8, 4, 4);
INSERT INTO public.team_unit VALUES (95, 10, 8, 5, 4);
INSERT INTO public.team_unit VALUES (98, 10, 8, 8, 4);
INSERT INTO public.team_unit VALUES (99, 10, 8, 9, 4);
INSERT INTO public.team_unit VALUES (100, 10, 8, 10, 4);
INSERT INTO public.team_unit VALUES (47, 8, 6, 7, 1);
INSERT INTO public.team_unit VALUES (96, 10, 8, 6, 1);
INSERT INTO public.team_unit VALUES (97, 10, 8, 7, 1);
INSERT INTO public.team_unit VALUES (111, 12, 10, 1, 4);
INSERT INTO public.team_unit VALUES (112, 12, 10, 2, 4);
INSERT INTO public.team_unit VALUES (113, 12, 10, 3, 4);
INSERT INTO public.team_unit VALUES (114, 12, 10, 4, 4);
INSERT INTO public.team_unit VALUES (115, 12, 10, 5, 4);
INSERT INTO public.team_unit VALUES (116, 12, 10, 6, 1);
INSERT INTO public.team_unit VALUES (117, 12, 10, 7, 1);
INSERT INTO public.team_unit VALUES (118, 12, 10, 8, 4);
INSERT INTO public.team_unit VALUES (119, 12, 10, 9, 4);
INSERT INTO public.team_unit VALUES (120, 12, 10, 10, 4);
INSERT INTO public.team_unit VALUES (131, 14, 12, 1, 4);
INSERT INTO public.team_unit VALUES (132, 14, 12, 2, 4);
INSERT INTO public.team_unit VALUES (133, 14, 12, 3, 4);
INSERT INTO public.team_unit VALUES (134, 14, 12, 4, 4);
INSERT INTO public.team_unit VALUES (135, 14, 12, 5, 4);
INSERT INTO public.team_unit VALUES (136, 14, 12, 6, 1);
INSERT INTO public.team_unit VALUES (137, 14, 12, 7, 1);
INSERT INTO public.team_unit VALUES (138, 14, 12, 8, 4);
INSERT INTO public.team_unit VALUES (139, 14, 12, 9, 4);
INSERT INTO public.team_unit VALUES (140, 14, 12, 10, 4);
INSERT INTO public.team_unit VALUES (161, 14, 13, 1, 2);
INSERT INTO public.team_unit VALUES (162, 14, 13, 2, 2);
INSERT INTO public.team_unit VALUES (163, 14, 13, 5, 1);
INSERT INTO public.team_unit VALUES (164, 14, 13, 6, 1);
INSERT INTO public.team_unit VALUES (165, 14, 13, 8, 1);
INSERT INTO public.team_unit VALUES (166, 14, 13, 10, 1);
INSERT INTO public.team_unit VALUES (167, 14, 13, 3, 2);
INSERT INTO public.team_unit VALUES (168, 14, 13, 4, 2);
INSERT INTO public.team_unit VALUES (169, 14, 13, 7, 1);
INSERT INTO public.team_unit VALUES (170, 14, 13, 9, 1);
INSERT INTO public.team_unit VALUES (181, 12, 15, 7, 1);
INSERT INTO public.team_unit VALUES (182, 12, 15, 9, 1);
INSERT INTO public.team_unit VALUES (183, 12, 15, 3, 1);
INSERT INTO public.team_unit VALUES (184, 12, 15, 5, 1);
INSERT INTO public.team_unit VALUES (185, 12, 15, 6, 1);
INSERT INTO public.team_unit VALUES (186, 12, 15, 8, 1);
INSERT INTO public.team_unit VALUES (187, 12, 15, 10, 1);
INSERT INTO public.team_unit VALUES (188, 12, 15, 1, 2);
INSERT INTO public.team_unit VALUES (189, 12, 15, 2, 1);
INSERT INTO public.team_unit VALUES (190, 12, 15, 4, 1);
INSERT INTO public.team_unit VALUES (201, 17, 17, 1, 4);
INSERT INTO public.team_unit VALUES (202, 17, 17, 2, 4);
INSERT INTO public.team_unit VALUES (203, 17, 17, 3, 4);
INSERT INTO public.team_unit VALUES (204, 17, 17, 4, 4);
INSERT INTO public.team_unit VALUES (205, 17, 17, 5, 4);
INSERT INTO public.team_unit VALUES (206, 17, 17, 6, 1);
INSERT INTO public.team_unit VALUES (207, 17, 17, 7, 1);
INSERT INTO public.team_unit VALUES (208, 17, 17, 8, 4);
INSERT INTO public.team_unit VALUES (209, 17, 17, 9, 4);
INSERT INTO public.team_unit VALUES (210, 17, 17, 10, 4);
INSERT INTO public.team_unit VALUES (221, 18, 19, 1, 4);
INSERT INTO public.team_unit VALUES (222, 18, 19, 2, 4);
INSERT INTO public.team_unit VALUES (223, 18, 19, 3, 4);
INSERT INTO public.team_unit VALUES (224, 18, 19, 4, 4);
INSERT INTO public.team_unit VALUES (225, 18, 19, 5, 4);
INSERT INTO public.team_unit VALUES (226, 18, 19, 6, 1);
INSERT INTO public.team_unit VALUES (227, 18, 19, 7, 1);
INSERT INTO public.team_unit VALUES (228, 18, 19, 8, 4);
INSERT INTO public.team_unit VALUES (229, 18, 19, 9, 4);
INSERT INTO public.team_unit VALUES (230, 18, 19, 10, 4);


--
-- Data for Name: team_user; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.team_user VALUES (2, 3, 1, 1);
INSERT INTO public.team_user VALUES (5, 3, 3, 4);
INSERT INTO public.team_user VALUES (6, 3, 3, 2);
INSERT INTO public.team_user VALUES (7, 3, 1, 2);
INSERT INTO public.team_user VALUES (8, 3, 1, 5);
INSERT INTO public.team_user VALUES (9, 6, 4, 1);
INSERT INTO public.team_user VALUES (10, 6, 4, 5);
INSERT INTO public.team_user VALUES (11, 7, 5, 1);
INSERT INTO public.team_user VALUES (12, 7, 5, 4);
INSERT INTO public.team_user VALUES (13, 8, 6, 1);
INSERT INTO public.team_user VALUES (14, 8, 6, 4);
INSERT INTO public.team_user VALUES (15, 8, 7, 9);
INSERT INTO public.team_user VALUES (17, 10, 8, 4);
INSERT INTO public.team_user VALUES (18, 10, 8, 1);
INSERT INTO public.team_user VALUES (19, 10, 9, 11);
INSERT INTO public.team_user VALUES (20, 12, 10, 5);
INSERT INTO public.team_user VALUES (21, 13, 11, 1);
INSERT INTO public.team_user VALUES (22, 13, 11, 4);
INSERT INTO public.team_user VALUES (23, 14, 12, 1);
INSERT INTO public.team_user VALUES (24, 14, 12, 5);
INSERT INTO public.team_user VALUES (25, 14, 13, 11);
INSERT INTO public.team_user VALUES (26, 14, 13, 2);
INSERT INTO public.team_user VALUES (27, 12, 10, 1);
INSERT INTO public.team_user VALUES (28, 12, 14, 2);
INSERT INTO public.team_user VALUES (29, 12, 14, 15);
INSERT INTO public.team_user VALUES (30, 14, 13, 16);
INSERT INTO public.team_user VALUES (31, 10, 9, 16);
INSERT INTO public.team_user VALUES (33, 12, 15, 9);
INSERT INTO public.team_user VALUES (36, 12, 14, 11);
INSERT INTO public.team_user VALUES (37, 12, 14, 16);
INSERT INTO public.team_user VALUES (38, 17, 17, 1);
INSERT INTO public.team_user VALUES (39, 17, 17, 5);
INSERT INTO public.team_user VALUES (40, 17, 18, 2);
INSERT INTO public.team_user VALUES (41, 17, 18, 15);
INSERT INTO public.team_user VALUES (42, 18, 19, 1);


--
-- Data for Name: topic; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.topic VALUES (1, 'react', 1, 1686810084, 1686810084);
INSERT INTO public.topic VALUES (2, 'vite', 1, 1686810084, 1686810084);
INSERT INTO public.topic VALUES (3, 'admin', 1, 1686810085, 1686810085);
INSERT INTO public.topic VALUES (4, 'angular', 1, 1686889855, 1686889855);
INSERT INTO public.topic VALUES (5, 'typescript', 1, 1686889855, 1686889855);
INSERT INTO public.topic VALUES (6, 'gis', 0, 1686889855, 1686889867);
INSERT INTO public.topic VALUES (7, 'arcgis', 1, 1686889872, 1686889872);
INSERT INTO public.topic VALUES (9, 'net-framework', 1, 1687254674, 1687254674);
INSERT INTO public.topic VALUES (10, 'net4', 1, 1687254674, 1687254674);
INSERT INTO public.topic VALUES (11, 'nestjs', 1, 1687427677, 1687427677);
INSERT INTO public.topic VALUES (12, 'nodejs', 1, 1687427677, 1687427677);
INSERT INTO public.topic VALUES (8, 'api', 2, 1687254674, 1687427677);
INSERT INTO public.topic VALUES (13, 'typeorm', 1, 1687427677, 1687427677);


--
-- Data for Name: tracked_time; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: two_factor; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: upload; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: user; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public."user" VALUES (8, 'buu-chinh-vien-thong', 'buu-chinh-vien-thong', 'Bưu chính viễn thông', '', false, '', '', '', false, 0, 0, '', 1, 'Số 112E Bà Triệu, Tp Kon Tum, tỉnh Kon Tum.', 'https://bcvt.kontum.gov.vn', 'f6a2966c79e5bbfc334841665f74b3c4', '10aa7d98a23a1863f08528bae2029a34', '', 'Hạ tầng bưu chính viễn thông', 1685933043, 1689242204, 0, true, -1, true, false, false, false, false, false, false, '4062a65b3979f9198700ef0daaa9081c', '', false, 0, 0, 0, 3, 2, 3, 2, true, '', '', false);
INSERT INTO public."user" VALUES (14, 'giao-duc-nghe-nghiep', 'giao-duc-nghe-nghiep', 'Quản lý giáo dục nghề nghiệp', '', false, '', '', '', false, 0, 0, '', 1, '210 Diên Hồng - TP Quy Nhơn - Bình Định', 'https://gdnn.gdtsolutions.vn', 'c8bc50bf60b99976d9932314edf19aa3', 'b91d4a6fc7cedc751021e9a4b0d8c904', '', 'Website quản lý giáo dục nghề nghiệp của Sở Lao động Thương Binh & Xã hội', 1701832799, 1702024442, 0, false, -1, true, false, false, false, false, false, false, '802cdf8532d94c10cd481e4e3983c194bc5f4fc5742e4a5d699a740361409a4c', '', true, 0, 0, 0, 3, 2, 5, 2, true, '', '', false);
INSERT INTO public."user" VALUES (10, 'phuong-tien-do', 'phuong-tien-do', 'Quản lý phương tiện đo', '', false, '', '', '', false, 0, 0, '', 1, '', '', 'd16f7a1a39809f2edccdcee52ae9fd2e', 'd575019c7ef5c103868a1ea6ce435aa5', '', '', 1686814374, 1687254447, 0, true, -1, true, false, false, false, false, false, false, 'd4a70dd2eca9254569cadd7650bfc094', '', true, 0, 0, 0, 1, 2, 4, 2, true, '', '', false);
INSERT INTO public."user" VALUES (6, 'gdt-base', 'gdt-base', 'GDT Base', '', false, '', '', '', false, 0, 0, '', 1, '', '', '96bfcd5504752c297dedef86b5280de5', '987043c52394b3c57abdfbdabe97281a', '', '', 1685353248, 1703834670, 0, false, -1, true, false, false, false, false, false, false, '79165eda11b40d79c2274f3b6ba6f9fb02dc06219fd0771569a0f07f2a5f2346', '', true, 0, 0, 0, 2, 1, 2, 1, true, '', '', false);
INSERT INTO public."user" VALUES (7, 'xuc-tien-dau-tu', 'xuc-tien-dau-tu', 'Xúc tiến đầu tư', '', false, '', '', '', false, 0, 0, '', 1, '', '', '0349a2ff2622ae177f73339019ecb1e7', '1250cf78b6ebfd8c3c8f8a188353ddff', '', '', 1685678556, 1685678896, 0, true, -1, true, false, false, false, false, false, false, 'c0fc8972e4e4c050b3c10053556fc9cd', '', true, 0, 0, 0, 2, 1, 2, 1, true, '', '', false);
INSERT INTO public."user" VALUES (13, 'binh-dinh-f1', 'binh-dinh-f1', 'Bình Định F1', 'info@binhdinhf1.com', false, '', '', '', false, 0, 0, '', 1, '', 'https://binhdinhf1h2o.com/', '97eccc8030462ddc58e81390b2642c76', '5e0c976d06660115a42471f6c17da860', '', '', 1701225748, 1702024530, 0, false, -1, true, false, false, false, false, false, false, 'a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2', '', true, 0, 0, 0, 3, 1, 2, 2, true, '', '', false);
INSERT INTO public."user" VALUES (17, 'ecabinet', 'eCabinet', '', '', false, '', '', '', false, 0, 0, '', 1, '', '', '6263ed07cd4b7f886735be563651cf25', '608e70e4de45174de6f70525dab6af74', '', '', 1705366044, 1705366706, 0, false, -1, true, false, false, false, false, false, false, '4187a7469d13b35460d45b8355e8b79b', '', true, 0, 0, 0, 3, 2, 4, 2, true, '', '', false);
INSERT INTO public."user" VALUES (18, 'ho-ngheo', 'ho-ngheo', 'Quản lý hộ nghèo, cận nghèo', '', false, '', '', '', false, 0, 0, '', 1, '', '', '52ae48423b95fea85b9582dc78d005c1', '1844eb6e1bb51f394761342b55b7980c', '', '', 1705375092, 1705375111, 0, false, -1, true, false, false, false, false, false, false, '6cede2a8a4c68a2171c7aa35cc6de2d8', '', true, 0, 0, 0, 0, 1, 1, 2, true, '', '', false);
INSERT INTO public."user" VALUES (3, 'kiem-ke-gpmb', 'kiem-ke-gpmb', 'Kiểm kê giải phóng mặt bằng', '', false, '', '', '', false, 0, 0, '', 1, '', '', '38cca1c0709843952aa840c286c1f79e', '5390851956acffe7cc0e538c48be79ed', '', '', 1685009016, 1685009103, 0, false, -1, true, false, false, false, false, false, false, 'ca18fc7a6aecf38d4387822752267ea3', '', true, 0, 0, 0, 0, 2, 4, 2, true, '', '', false);
INSERT INTO public."user" VALUES (2, 'tuan', 'tuan', '', 'tuan1996qn@gmail.com', false, 'enabled', '293d4496916a0f95116cadd831c90858cb0d13fd9262b81eb35b5d7a21bec6978a17d43a734af82810b38fbf78ad9f167820', 'pbkdf2$50000$50', false, 0, 0, '', 0, '', '', '382247fe2467a0b32e3f4fcb2dc85aa6', '61fc0e86dd22b412ef3c5eae2067d1f5', 'en-US', '', 1685008460, 1704424083, 1704424083, false, -1, true, false, false, false, false, true, false, 'ef8cb8091e07736d503797a3fd007bb52d58ce27f461213703866d303da8e9a0', 'tuan1996qn@gmail.com', true, 0, 0, 0, 1, 0, 0, 0, false, '', 'park-power', false);
INSERT INTO public."user" VALUES (15, 'hoagdt', 'Hoagdt', 'Nguyễn Chí Hoà', 'it.nguyenchihoa@gmail.com', false, 'enabled', '0708f23c15f607b023e791857734c385497efe6e47b2d8f86525fa0239d790a333c8babca33fa7ddb5a1fe6e8c8deec619e7', 'pbkdf2$50000$50', false, 0, 0, '', 0, '', '', 'ee7b1450560162858f591114e4fa12a7', '1c842dc857127945501e03d6bac69a65', 'en-US', '', 1703472026, 1705546701, 1705546701, false, -1, true, false, false, false, false, true, false, '71955e5d26ad26c5d213888a1d650773566d606fea1b0ea0ed6cc85e4b347bcc', 'it.nguyenchihoa@gmail.com', true, 0, 0, 0, 0, 0, 0, 0, false, 'unified', 'auto', false);
INSERT INTO public."user" VALUES (1, 'lhngoc', 'lhngoc', 'Lê Hồng Ngọc', 'cognvn@gmail.com', false, 'enabled', 'fc06a3e24c939f29b03fb8d5dd1ed56c5f0c15f7251401fe93e03bf0c4ac1bde7a5055db9dec235058b4c0ab018ff740e290', 'pbkdf2$50000$50', false, 0, 0, '', 0, '', 'https://paste.cogn.io.vn', 'de51a06fb36be6a610c88849d66e7239', 'd4ea906d832289ed2ba818e46c3f93b1', 'en-US', '', 1685007353, 1705571348, 1705287800, false, -1, true, true, false, false, false, true, false, '51fb7a1b5abc6465f0237197e57ec12f5d9f4aac5d951fc8d53422b7397b6287', 'cognvn@gmail.com', true, 0, 0, 0, 0, 0, 0, 0, false, 'unified', 'auto', false);
INSERT INTO public."user" VALUES (11, 'hungthinhne', 'hungthinhne', '', 'hungthinh11122000@gmail.com', false, 'enabled', 'dbd3ab3f41284c586e8ddf7b2b49a8365f0aad5fbfff903bf9f62dd677fbb1f2588964a4f461aa2c48c0b7da1cd840fd8501', 'pbkdf2$50000$50', false, 0, 0, '', 0, '', '', '4520c8be7526c974bcc104bf133d5625', '84100d943e3d455fe4e6645c28e0cc21', 'en-US', '', 1700798231, 1705631048, 1705207959, false, -1, true, false, false, false, false, true, false, '7715c4a2fab7ac70f672adb17b14cee3', 'hungthinh11122000@gmail.com', false, 0, 0, 0, 0, 0, 0, 0, false, 'unified', 'auto', false);
INSERT INTO public."user" VALUES (5, 'git_for_dev', 'git_for_dev', '', 'nguyentrananhvu88@gmail.com', false, 'enabled', '21b522a44ec5e9fbe6ebdd08da531ac5817273498b8a41b10a60a30d0f47b603bae3595b1b0ee196c77ae507a114c2cb1c65', 'pbkdf2$50000$50', false, 0, 0, '', 0, '', '', 'd9bfec568d0ef4df69bce9567f3ab770', '031a47d68772c4fcd69e69d9ed14810b', 'en-US', '', 1685340471, 1705285025, 1705285025, false, -1, true, true, false, false, false, true, false, '009e520c8a20ee8d22d0087b59f6496f', 'nguyentrananhvu88@gmail.com', false, 0, 0, 0, 0, 0, 0, 0, false, 'unified', 'auto', false);
INSERT INTO public."user" VALUES (9, 'jenkins', 'jenkins', '', 'jenkins@gdtvietnam.com', false, 'enabled', '893f60f9c884754c11927949e3df43968ff442e838952dca0edc6f2aecb369702928e09bd15b86ab613630642ce92b967741', 'pbkdf2$50000$50', false, 0, 0, '', 0, '', '', '14d6d2724547cc3a7fe8de5aa5fe267c', '63abcc75078b641ed248cb6c242786b0', 'en-US', '', 1686799344, 1704678668, 1704678668, false, -1, true, false, false, false, false, false, false, 'd6d4e72454d062e67294f0bacaf46b0e1d5d67db71079e6165b84badbbee082b', 'jenkins@gdtvietnam.com', true, 0, 0, 0, 0, 0, 0, 0, false, '', 'auto', false);
INSERT INTO public."user" VALUES (16, 'lqdat', 'lqdat', '', 'datqn1234@gmail.com', false, 'enabled', '2db830d78cb7e7901f75cd4b5ba84a644ddc264b966114b705f7a93c80f4a92aed45f45641581484e8c9860aa4efaabdd475', 'pbkdf2$50000$50', false, 0, 0, '', 0, '', '', 'b7e52031e9a7b08617803be86bee4c05', '6fbe6adb77f36a478f5f7e719c3a0169', 'en-US', '', 1703753707, 1705287451, 1705287451, false, -1, true, false, false, false, false, true, false, '887f94f8c1ddc165ff3f51dd5e1691f71fd981dc5d0a182f7e97ce6070501322', 'datqn1234@gmail.com', true, 0, 0, 0, 0, 0, 0, 0, false, '', 'auto', false);
INSERT INTO public."user" VALUES (4, 'dongvntran', 'dongvntran', 'tran van dong', 'dongvntran@gmail.com', false, 'enabled', '3216ea3e004b581bcbaa87325ff2a9cd12686a37acc84374637f6c14b96b3e062a240ccd8984f8a5339402e6337067342770', 'pbkdf2$50000$50', false, 0, 0, '', 0, '', '', '368d9c79dd47c5c83bd6a1243e8e5537', 'a6abe312c1a5d503a56e44cbc51932f6', 'en-US', '', 1685070030, 1700798079, 1700798079, false, -1, true, false, false, false, false, true, false, 'd17492dbc671764f2cb5636309bffc640b2844528b67ca738068bc193b465964', 'dongvntran@gmail.com', true, 0, 0, 0, 1, 0, 0, 0, false, 'unified', 'auto', false);
INSERT INTO public."user" VALUES (12, 'khieu-nai', 'khieu-nai', 'Khiếu nại', '', false, '', '', '', false, 0, 0, '', 1, '', '', 'd17f8560e76d2be2295a666632e1e4f5', 'da6af533d66a5dd529344ec30a5841f2', '', '', 1700798438, 1704676997, 0, false, -1, true, false, false, false, false, false, false, '4ffc83386d694810e1f9e72b2d76104c', '', true, 0, 0, 0, 3, 3, 7, 2, true, '', '', false);


--
-- Data for Name: user_badge; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: user_open_id; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: user_redirect; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.user_redirect VALUES (2, 'tuan1996qn', 2);
INSERT INTO public.user_redirect VALUES (4, 'cognvn', 1);
INSERT INTO public.user_redirect VALUES (5, 'hungthinh', 11);


--
-- Data for Name: user_setting; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: version; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.version VALUES (1, 280);


--
-- Data for Name: watch; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.watch VALUES (1, 2, 1, 1, 1685008492, 1685008492);
INSERT INTO public.watch VALUES (5, 4, 5, 1, 1685070673, 1685070673);
INSERT INTO public.watch VALUES (7, 5, 6, 1, 1685353905, 1685353905);
INSERT INTO public.watch VALUES (8, 1, 6, 1, 1685439334, 1685439334);
INSERT INTO public.watch VALUES (9, 1, 7, 1, 1685678586, 1685678586);
INSERT INTO public.watch VALUES (10, 4, 7, 1, 1685678620, 1685678620);
INSERT INTO public.watch VALUES (11, 1, 8, 1, 1685678896, 1685678896);
INSERT INTO public.watch VALUES (12, 4, 8, 1, 1685678896, 1685678896);
INSERT INTO public.watch VALUES (13, 1, 9, 1, 1685933299, 1685933299);
INSERT INTO public.watch VALUES (14, 4, 9, 1, 1685933299, 1685933299);
INSERT INTO public.watch VALUES (15, 1, 10, 1, 1685933662, 1685933662);
INSERT INTO public.watch VALUES (16, 4, 10, 1, 1685933662, 1685933662);
INSERT INTO public.watch VALUES (17, 1, 11, 1, 1685934907, 1685934907);
INSERT INTO public.watch VALUES (18, 4, 11, 1, 1685934907, 1685934907);
INSERT INTO public.watch VALUES (19, 9, 10, 1, 1686801520, 1686801520);
INSERT INTO public.watch VALUES (20, 9, 11, 1, 1686801520, 1686801520);
INSERT INTO public.watch VALUES (21, 9, 9, 1, 1686801520, 1686801520);
INSERT INTO public.watch VALUES (22, 1, 12, 1, 1686814438, 1686814438);
INSERT INTO public.watch VALUES (23, 4, 12, 1, 1686814438, 1686814438);
INSERT INTO public.watch VALUES (25, 11, 12, 1, 1700798397, 1700798397);
INSERT INTO public.watch VALUES (27, 5, 15, 1, 1700798584, 1700798584);
INSERT INTO public.watch VALUES (30, 1, 17, 1, 1701226087, 1701226087);
INSERT INTO public.watch VALUES (31, 4, 17, 1, 1701226087, 1701226087);
INSERT INTO public.watch VALUES (32, 1, 18, 1, 1701226304, 1701226304);
INSERT INTO public.watch VALUES (33, 4, 18, 1, 1701226304, 1701226304);
INSERT INTO public.watch VALUES (36, 1, 20, 1, 1701226689, 1701226689);
INSERT INTO public.watch VALUES (37, 4, 20, 1, 1701226689, 1701226689);
INSERT INTO public.watch VALUES (38, 1, 21, 1, 1701832974, 1701832974);
INSERT INTO public.watch VALUES (39, 1, 22, 1, 1701833890, 1701833890);
INSERT INTO public.watch VALUES (40, 1, 23, 1, 1701833946, 1701833946);
INSERT INTO public.watch VALUES (41, 5, 22, 1, 1701834147, 1701834147);
INSERT INTO public.watch VALUES (42, 5, 21, 1, 1701834147, 1701834147);
INSERT INTO public.watch VALUES (43, 5, 23, 1, 1701834147, 1701834147);
INSERT INTO public.watch VALUES (46, 11, 23, 1, 1702025360, 1702025360);
INSERT INTO public.watch VALUES (47, 2, 23, 1, 1702025360, 1702025360);
INSERT INTO public.watch VALUES (48, 11, 22, 1, 1702025360, 1702025360);
INSERT INTO public.watch VALUES (49, 2, 22, 1, 1702025360, 1702025360);
INSERT INTO public.watch VALUES (50, 1, 15, 1, 1703470894, 1703470894);
INSERT INTO public.watch VALUES (51, 2, 15, 1, 1703470936, 1703470936);
INSERT INTO public.watch VALUES (52, 15, 15, 1, 1703472068, 1703472068);
INSERT INTO public.watch VALUES (53, 16, 22, 1, 1703753925, 1703753925);
INSERT INTO public.watch VALUES (54, 16, 21, 1, 1703753925, 1703753925);
INSERT INTO public.watch VALUES (55, 16, 23, 1, 1703753925, 1703753925);
INSERT INTO public.watch VALUES (56, 16, 12, 1, 1703753969, 1703753969);
INSERT INTO public.watch VALUES (57, 5, 24, 1, 1703824082, 1703824082);
INSERT INTO public.watch VALUES (58, 1, 24, 1, 1703824082, 1703824082);
INSERT INTO public.watch VALUES (59, 2, 24, 1, 1703824082, 1703824082);
INSERT INTO public.watch VALUES (60, 15, 24, 1, 1703824082, 1703824082);
INSERT INTO public.watch VALUES (61, 5, 25, 1, 1703834670, 1703834670);
INSERT INTO public.watch VALUES (62, 1, 25, 1, 1703834670, 1703834670);
INSERT INTO public.watch VALUES (63, 5, 26, 1, 1704424147, 1704424147);
INSERT INTO public.watch VALUES (64, 1, 26, 1, 1704424147, 1704424147);
INSERT INTO public.watch VALUES (65, 2, 26, 1, 1704424147, 1704424147);
INSERT INTO public.watch VALUES (66, 15, 26, 1, 1704424147, 1704424147);
INSERT INTO public.watch VALUES (67, 9, 26, 1, 1704675683, 1704675683);
INSERT INTO public.watch VALUES (68, 9, 15, 1, 1704675683, 1704675683);
INSERT INTO public.watch VALUES (69, 9, 24, 1, 1704675683, 1704675683);
INSERT INTO public.watch VALUES (70, 16, 26, 1, 1705287693, 1705287693);
INSERT INTO public.watch VALUES (71, 16, 15, 1, 1705287693, 1705287693);
INSERT INTO public.watch VALUES (72, 16, 24, 1, 1705287693, 1705287693);
INSERT INTO public.watch VALUES (73, 11, 26, 1, 1705287826, 1705287826);
INSERT INTO public.watch VALUES (74, 11, 15, 1, 1705287826, 1705287826);
INSERT INTO public.watch VALUES (75, 11, 24, 1, 1705287826, 1705287826);
INSERT INTO public.watch VALUES (76, 5, 27, 1, 1705366257, 1705366257);
INSERT INTO public.watch VALUES (77, 1, 27, 1, 1705366257, 1705366257);
INSERT INTO public.watch VALUES (78, 2, 27, 1, 1705366257, 1705366257);
INSERT INTO public.watch VALUES (79, 15, 27, 1, 1705366257, 1705366257);
INSERT INTO public.watch VALUES (80, 5, 28, 1, 1705366311, 1705366311);
INSERT INTO public.watch VALUES (81, 1, 28, 1, 1705366311, 1705366311);
INSERT INTO public.watch VALUES (82, 2, 28, 1, 1705366312, 1705366312);
INSERT INTO public.watch VALUES (83, 15, 28, 1, 1705366312, 1705366312);
INSERT INTO public.watch VALUES (84, 5, 29, 1, 1705366706, 1705366706);
INSERT INTO public.watch VALUES (85, 1, 29, 1, 1705366706, 1705366706);
INSERT INTO public.watch VALUES (86, 2, 29, 1, 1705366706, 1705366706);
INSERT INTO public.watch VALUES (87, 15, 29, 1, 1705366706, 1705366706);


--
-- Data for Name: webauthn_credential; Type: TABLE DATA; Schema: public; Owner: gitea
--



--
-- Data for Name: webhook; Type: TABLE DATA; Schema: public; Owner: gitea
--

INSERT INTO public.webhook VALUES (3, 6, 0, false, 'https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9', '', 1, '', '{"push_only":false,"send_everything":true,"choose_events":false,"branch_filter":"*","events":{"create":false,"delete":false,"fork":false,"issues":false,"issue_assign":false,"issue_label":false,"issue_milestone":false,"issue_comment":false,"push":false,"pull_request":false,"pull_request_assign":false,"pull_request_label":false,"pull_request_milestone":false,"pull_request_comment":false,"pull_request_review":false,"pull_request_sync":false,"wiki":false,"repository":false,"release":false,"package":false}}', true, 'discord', '{"username":"Gitea","icon_url":"https://try.gitea.io/assets/img/logo.svg"}', 1, '', 1685353317, 1685353382);
INSERT INTO public.webhook VALUES (8, 11, 0, false, 'https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9', '', 1, '', '{"push_only":false,"send_everything":true,"choose_events":false,"branch_filter":"*","events":{"create":false,"delete":false,"fork":false,"issues":false,"issue_assign":false,"issue_label":false,"issue_milestone":false,"issue_comment":false,"push":false,"pull_request":false,"pull_request_assign":false,"pull_request_label":false,"pull_request_milestone":false,"pull_request_comment":false,"pull_request_review":false,"pull_request_sync":false,"wiki":false,"repository":false,"release":false,"package":false}}', true, 'discord', '{"username":"Gitea","icon_url":"https://try.gitea.io/assets/img/logo.svg"}', 1, '', 1685934907, 1686812263);
INSERT INTO public.webhook VALUES (4, 7, 0, false, 'https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9', '', 1, '', '{"push_only":false,"send_everything":true,"choose_events":false,"branch_filter":"*","events":{"create":false,"delete":false,"fork":false,"issues":false,"issue_assign":false,"issue_label":false,"issue_milestone":false,"issue_comment":false,"push":false,"pull_request":false,"pull_request_assign":false,"pull_request_label":false,"pull_request_milestone":false,"pull_request_comment":false,"pull_request_review":false,"pull_request_sync":false,"wiki":false,"repository":false,"release":false,"package":false}}', true, 'discord', '{"username":"Gitea","icon_url":"https://try.gitea.io/assets/img/logo.svg"}', 1, '', 1685678586, 1685678670);
INSERT INTO public.webhook VALUES (1, 0, 0, true, 'https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9', '', 1, '', '{"push_only":false,"send_everything":true,"choose_events":false,"branch_filter":"*","events":{"create":true,"delete":true,"fork":true,"issues":true,"issue_assign":true,"issue_label":false,"issue_milestone":false,"issue_comment":false,"push":true,"pull_request":false,"pull_request_assign":false,"pull_request_label":false,"pull_request_milestone":false,"pull_request_comment":false,"pull_request_review":false,"pull_request_sync":false,"wiki":false,"repository":true,"release":false,"package":true}}', true, 'discord', '{"username":"Gitea","icon_url":"https://try.gitea.io/assets/img/logo.png"}', 1, '', 1685028499, 1705634318);
INSERT INTO public.webhook VALUES (6, 9, 0, false, 'https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9', '', 1, '', '{"push_only":false,"send_everything":true,"choose_events":false,"branch_filter":"*","events":{"create":false,"delete":false,"fork":false,"issues":false,"issue_assign":false,"issue_label":false,"issue_milestone":false,"issue_comment":false,"push":false,"pull_request":false,"pull_request_assign":false,"pull_request_label":false,"pull_request_milestone":false,"pull_request_comment":false,"pull_request_review":false,"pull_request_sync":false,"wiki":false,"repository":false,"release":false,"package":false}}', true, 'discord', '{"username":"Gitea","icon_url":"https://try.gitea.io/assets/img/logo.svg"}', 1, '', 1685933299, 1689230559);
INSERT INTO public.webhook VALUES (10, 0, 8, false, 'https://jenkins.gdtsolutions.vn/gitea-webhook/post', 'POST', 1, '', '{"push_only":false,"send_everything":false,"choose_events":true,"branch_filter":"*","events":{"create":false,"delete":false,"fork":false,"issues":false,"issue_assign":false,"issue_label":false,"issue_milestone":false,"issue_comment":false,"push":true,"pull_request":false,"pull_request_assign":false,"pull_request_label":false,"pull_request_milestone":false,"pull_request_comment":false,"pull_request_review":true,"pull_request_sync":false,"wiki":false,"repository":false,"release":false,"package":false}}', true, 'gitea', '', 1, '', 1686812463, 1689230560);
INSERT INTO public.webhook VALUES (7, 10, 0, false, 'https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9', '', 1, '', '{"push_only":false,"send_everything":true,"choose_events":false,"branch_filter":"*","events":{"create":false,"delete":false,"fork":false,"issues":false,"issue_assign":false,"issue_label":false,"issue_milestone":false,"issue_comment":false,"push":false,"pull_request":false,"pull_request_assign":false,"pull_request_label":false,"pull_request_milestone":false,"pull_request_comment":false,"pull_request_review":false,"pull_request_sync":false,"wiki":false,"repository":false,"release":false,"package":false}}', true, 'discord', '{"username":"Gitea","icon_url":"https://try.gitea.io/assets/img/logo.svg"}', 1, '', 1685933662, 1685934825);
INSERT INTO public.webhook VALUES (5, 8, 0, false, 'https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9', '', 1, '', '{"push_only":false,"send_everything":true,"choose_events":false,"branch_filter":"*","events":{"create":false,"delete":false,"fork":false,"issues":false,"issue_assign":false,"issue_label":false,"issue_milestone":false,"issue_comment":false,"push":false,"pull_request":false,"pull_request_assign":false,"pull_request_label":false,"pull_request_milestone":false,"pull_request_comment":false,"pull_request_review":false,"pull_request_sync":false,"wiki":false,"repository":false,"release":false,"package":false}}', true, 'discord', '{"username":"Gitea","icon_url":"https://try.gitea.io/assets/img/logo.svg"}', 1, '', 1685678896, 1686109360);


--
-- Name: access_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.access_id_seq', 193, true);


--
-- Name: access_token_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.access_token_id_seq', 3, true);


--
-- Name: action_artifact_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.action_artifact_id_seq', 1, false);


--
-- Name: action_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.action_id_seq', 4437, true);


--
-- Name: action_run_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.action_run_id_seq', 1, false);


--
-- Name: action_run_job_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.action_run_job_id_seq', 1, false);


--
-- Name: action_runner_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.action_runner_id_seq', 1, true);


--
-- Name: action_runner_token_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.action_runner_token_id_seq', 4, true);


--
-- Name: action_schedule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.action_schedule_id_seq', 1, false);


--
-- Name: action_schedule_spec_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.action_schedule_spec_id_seq', 1, false);


--
-- Name: action_task_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.action_task_id_seq', 1, false);


--
-- Name: action_task_output_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.action_task_output_id_seq', 1, false);


--
-- Name: action_task_step_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.action_task_step_id_seq', 1, false);


--
-- Name: action_tasks_version_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.action_tasks_version_id_seq', 1, false);


--
-- Name: action_variable_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.action_variable_id_seq', 1, false);


--
-- Name: attachment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.attachment_id_seq', 1, false);


--
-- Name: badge_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.badge_id_seq', 1, false);


--
-- Name: branch_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.branch_id_seq', 50, true);


--
-- Name: collaboration_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.collaboration_id_seq', 5, true);


--
-- Name: comment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.comment_id_seq', 783, true);


--
-- Name: commit_status_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.commit_status_id_seq', 39, true);


--
-- Name: commit_status_index_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.commit_status_index_id_seq', 39, true);


--
-- Name: dbfs_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.dbfs_data_id_seq', 1, false);


--
-- Name: dbfs_meta_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.dbfs_meta_id_seq', 1, false);


--
-- Name: deploy_key_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.deploy_key_id_seq', 1, false);


--
-- Name: email_address_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.email_address_id_seq', 11, true);


--
-- Name: follow_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.follow_id_seq', 1, false);


--
-- Name: gpg_key_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.gpg_key_id_seq', 2, true);


--
-- Name: hook_task_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.hook_task_id_seq', 1156, true);


--
-- Name: issue_assignees_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.issue_assignees_id_seq', 1, false);


--
-- Name: issue_content_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.issue_content_history_id_seq', 1, false);


--
-- Name: issue_dependency_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.issue_dependency_id_seq', 1, false);


--
-- Name: issue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.issue_id_seq', 228, true);


--
-- Name: issue_label_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.issue_label_id_seq', 157, true);


--
-- Name: issue_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.issue_user_id_seq', 537, true);


--
-- Name: issue_watch_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.issue_watch_id_seq', 1, false);


--
-- Name: label_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.label_id_seq', 7, true);


--
-- Name: language_stat_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.language_stat_id_seq', 95, true);


--
-- Name: lfs_lock_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.lfs_lock_id_seq', 1, false);


--
-- Name: lfs_meta_object_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.lfs_meta_object_id_seq', 1, false);


--
-- Name: login_source_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.login_source_id_seq', 1, false);


--
-- Name: milestone_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.milestone_id_seq', 1, false);


--
-- Name: mirror_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.mirror_id_seq', 7, true);


--
-- Name: notice_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.notice_id_seq', 29923, true);


--
-- Name: notification_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.notification_id_seq', 311, true);


--
-- Name: oauth2_application_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.oauth2_application_id_seq', 2, true);


--
-- Name: oauth2_authorization_code_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.oauth2_authorization_code_id_seq', 1, false);


--
-- Name: oauth2_grant_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.oauth2_grant_id_seq', 1, false);


--
-- Name: org_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.org_user_id_seq', 36, true);


--
-- Name: package_blob_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.package_blob_id_seq', 1, false);


--
-- Name: package_cleanup_rule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.package_cleanup_rule_id_seq', 1, false);


--
-- Name: package_file_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.package_file_id_seq', 1, false);


--
-- Name: package_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.package_id_seq', 1, false);


--
-- Name: package_property_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.package_property_id_seq', 1, false);


--
-- Name: package_version_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.package_version_id_seq', 1, false);


--
-- Name: project_board_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.project_board_id_seq', 1, false);


--
-- Name: project_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.project_id_seq', 1, false);


--
-- Name: project_issue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.project_issue_id_seq', 1, false);


--
-- Name: protected_branch_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.protected_branch_id_seq', 1, false);


--
-- Name: protected_tag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.protected_tag_id_seq', 1, false);


--
-- Name: public_key_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.public_key_id_seq', 3, true);


--
-- Name: pull_auto_merge_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.pull_auto_merge_id_seq', 1, false);


--
-- Name: pull_request_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.pull_request_id_seq', 112, true);


--
-- Name: push_mirror_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.push_mirror_id_seq', 8, true);


--
-- Name: reaction_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.reaction_id_seq', 1, false);


--
-- Name: release_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.release_id_seq', 1, false);


--
-- Name: renamed_branch_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.renamed_branch_id_seq', 1, false);


--
-- Name: repo_archiver_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.repo_archiver_id_seq', 1, false);


--
-- Name: repo_indexer_status_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.repo_indexer_status_id_seq', 23, true);


--
-- Name: repo_redirect_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.repo_redirect_id_seq', 4, true);


--
-- Name: repo_transfer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.repo_transfer_id_seq', 1, false);


--
-- Name: repo_unit_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.repo_unit_id_seq', 216, true);


--
-- Name: repository_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.repository_id_seq', 29, true);


--
-- Name: review_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.review_id_seq', 1, false);


--
-- Name: review_state_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.review_state_id_seq', 1, false);


--
-- Name: secret_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.secret_id_seq', 1, false);


--
-- Name: star_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.star_id_seq', 1, false);


--
-- Name: stopwatch_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.stopwatch_id_seq', 1, false);


--
-- Name: system_setting_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.system_setting_id_seq', 3, true);


--
-- Name: task_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.task_id_seq', 14, true);


--
-- Name: team_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.team_id_seq', 19, true);


--
-- Name: team_invite_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.team_invite_id_seq', 1, false);


--
-- Name: team_repo_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.team_repo_id_seq', 41, true);


--
-- Name: team_unit_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.team_unit_id_seq', 230, true);


--
-- Name: team_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.team_user_id_seq', 42, true);


--
-- Name: topic_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.topic_id_seq', 13, true);


--
-- Name: tracked_time_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.tracked_time_id_seq', 1, false);


--
-- Name: two_factor_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.two_factor_id_seq', 1, false);


--
-- Name: upload_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.upload_id_seq', 1, false);


--
-- Name: user_badge_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.user_badge_id_seq', 1, false);


--
-- Name: user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.user_id_seq', 18, true);


--
-- Name: user_open_id_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.user_open_id_id_seq', 1, false);


--
-- Name: user_redirect_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.user_redirect_id_seq', 5, true);


--
-- Name: user_setting_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.user_setting_id_seq', 1, false);


--
-- Name: version_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.version_id_seq', 1, true);


--
-- Name: watch_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.watch_id_seq', 87, true);


--
-- Name: webauthn_credential_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.webauthn_credential_id_seq', 1, false);


--
-- Name: webhook_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--

SELECT pg_catalog.setval('public.webhook_id_seq', 11, true);


--
-- Name: access access_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.access
    ADD CONSTRAINT access_pkey PRIMARY KEY (id);


--
-- Name: access_token access_token_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.access_token
    ADD CONSTRAINT access_token_pkey PRIMARY KEY (id);


--
-- Name: action_artifact action_artifact_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.action_artifact
    ADD CONSTRAINT action_artifact_pkey PRIMARY KEY (id);


--
-- Name: action action_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.action
    ADD CONSTRAINT action_pkey PRIMARY KEY (id);


--
-- Name: action_run_index action_run_index_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.action_run_index
    ADD CONSTRAINT action_run_index_pkey PRIMARY KEY (group_id);


--
-- Name: action_run_job action_run_job_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.action_run_job
    ADD CONSTRAINT action_run_job_pkey PRIMARY KEY (id);


--
-- Name: action_run action_run_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.action_run
    ADD CONSTRAINT action_run_pkey PRIMARY KEY (id);


--
-- Name: action_runner action_runner_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.action_runner
    ADD CONSTRAINT action_runner_pkey PRIMARY KEY (id);


--
-- Name: action_runner_token action_runner_token_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.action_runner_token
    ADD CONSTRAINT action_runner_token_pkey PRIMARY KEY (id);


--
-- Name: action_schedule action_schedule_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.action_schedule
    ADD CONSTRAINT action_schedule_pkey PRIMARY KEY (id);


--
-- Name: action_schedule_spec action_schedule_spec_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.action_schedule_spec
    ADD CONSTRAINT action_schedule_spec_pkey PRIMARY KEY (id);


--
-- Name: action_task_output action_task_output_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.action_task_output
    ADD CONSTRAINT action_task_output_pkey PRIMARY KEY (id);


--
-- Name: action_task action_task_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.action_task
    ADD CONSTRAINT action_task_pkey PRIMARY KEY (id);


--
-- Name: action_task_step action_task_step_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.action_task_step
    ADD CONSTRAINT action_task_step_pkey PRIMARY KEY (id);


--
-- Name: action_tasks_version action_tasks_version_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.action_tasks_version
    ADD CONSTRAINT action_tasks_version_pkey PRIMARY KEY (id);


--
-- Name: action_variable action_variable_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.action_variable
    ADD CONSTRAINT action_variable_pkey PRIMARY KEY (id);


--
-- Name: app_state app_state_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.app_state
    ADD CONSTRAINT app_state_pkey PRIMARY KEY (id);


--
-- Name: attachment attachment_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.attachment
    ADD CONSTRAINT attachment_pkey PRIMARY KEY (id);


--
-- Name: badge badge_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.badge
    ADD CONSTRAINT badge_pkey PRIMARY KEY (id);


--
-- Name: branch branch_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.branch
    ADD CONSTRAINT branch_pkey PRIMARY KEY (id);


--
-- Name: collaboration collaboration_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.collaboration
    ADD CONSTRAINT collaboration_pkey PRIMARY KEY (id);


--
-- Name: comment comment_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.comment
    ADD CONSTRAINT comment_pkey PRIMARY KEY (id);


--
-- Name: commit_status_index commit_status_index_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.commit_status_index
    ADD CONSTRAINT commit_status_index_pkey PRIMARY KEY (id);


--
-- Name: commit_status commit_status_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.commit_status
    ADD CONSTRAINT commit_status_pkey PRIMARY KEY (id);


--
-- Name: dbfs_data dbfs_data_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.dbfs_data
    ADD CONSTRAINT dbfs_data_pkey PRIMARY KEY (id);


--
-- Name: dbfs_meta dbfs_meta_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.dbfs_meta
    ADD CONSTRAINT dbfs_meta_pkey PRIMARY KEY (id);


--
-- Name: deploy_key deploy_key_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.deploy_key
    ADD CONSTRAINT deploy_key_pkey PRIMARY KEY (id);


--
-- Name: email_address email_address_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.email_address
    ADD CONSTRAINT email_address_pkey PRIMARY KEY (id);


--
-- Name: email_hash email_hash_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.email_hash
    ADD CONSTRAINT email_hash_pkey PRIMARY KEY (hash);


--
-- Name: external_login_user external_login_user_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.external_login_user
    ADD CONSTRAINT external_login_user_pkey PRIMARY KEY (external_id, login_source_id);


--
-- Name: follow follow_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.follow
    ADD CONSTRAINT follow_pkey PRIMARY KEY (id);


--
-- Name: gpg_key_import gpg_key_import_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.gpg_key_import
    ADD CONSTRAINT gpg_key_import_pkey PRIMARY KEY (key_id);


--
-- Name: gpg_key gpg_key_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.gpg_key
    ADD CONSTRAINT gpg_key_pkey PRIMARY KEY (id);


--
-- Name: hook_task hook_task_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.hook_task
    ADD CONSTRAINT hook_task_pkey PRIMARY KEY (id);


--
-- Name: issue_assignees issue_assignees_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.issue_assignees
    ADD CONSTRAINT issue_assignees_pkey PRIMARY KEY (id);


--
-- Name: issue_content_history issue_content_history_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.issue_content_history
    ADD CONSTRAINT issue_content_history_pkey PRIMARY KEY (id);


--
-- Name: issue_dependency issue_dependency_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.issue_dependency
    ADD CONSTRAINT issue_dependency_pkey PRIMARY KEY (id);


--
-- Name: issue_index issue_index_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.issue_index
    ADD CONSTRAINT issue_index_pkey PRIMARY KEY (group_id);


--
-- Name: issue_label issue_label_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.issue_label
    ADD CONSTRAINT issue_label_pkey PRIMARY KEY (id);


--
-- Name: issue issue_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.issue
    ADD CONSTRAINT issue_pkey PRIMARY KEY (id);


--
-- Name: issue_user issue_user_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.issue_user
    ADD CONSTRAINT issue_user_pkey PRIMARY KEY (id);


--
-- Name: issue_watch issue_watch_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.issue_watch
    ADD CONSTRAINT issue_watch_pkey PRIMARY KEY (id);


--
-- Name: label label_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.label
    ADD CONSTRAINT label_pkey PRIMARY KEY (id);


--
-- Name: language_stat language_stat_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.language_stat
    ADD CONSTRAINT language_stat_pkey PRIMARY KEY (id);


--
-- Name: lfs_lock lfs_lock_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.lfs_lock
    ADD CONSTRAINT lfs_lock_pkey PRIMARY KEY (id);


--
-- Name: lfs_meta_object lfs_meta_object_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.lfs_meta_object
    ADD CONSTRAINT lfs_meta_object_pkey PRIMARY KEY (id);


--
-- Name: login_source login_source_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.login_source
    ADD CONSTRAINT login_source_pkey PRIMARY KEY (id);


--
-- Name: milestone milestone_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.milestone
    ADD CONSTRAINT milestone_pkey PRIMARY KEY (id);


--
-- Name: mirror mirror_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.mirror
    ADD CONSTRAINT mirror_pkey PRIMARY KEY (id);


--
-- Name: notice notice_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.notice
    ADD CONSTRAINT notice_pkey PRIMARY KEY (id);


--
-- Name: notification notification_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.notification
    ADD CONSTRAINT notification_pkey PRIMARY KEY (id);


--
-- Name: oauth2_application oauth2_application_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.oauth2_application
    ADD CONSTRAINT oauth2_application_pkey PRIMARY KEY (id);


--
-- Name: oauth2_authorization_code oauth2_authorization_code_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.oauth2_authorization_code
    ADD CONSTRAINT oauth2_authorization_code_pkey PRIMARY KEY (id);


--
-- Name: oauth2_grant oauth2_grant_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.oauth2_grant
    ADD CONSTRAINT oauth2_grant_pkey PRIMARY KEY (id);


--
-- Name: org_user org_user_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.org_user
    ADD CONSTRAINT org_user_pkey PRIMARY KEY (id);


--
-- Name: package_blob package_blob_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.package_blob
    ADD CONSTRAINT package_blob_pkey PRIMARY KEY (id);


--
-- Name: package_blob_upload package_blob_upload_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.package_blob_upload
    ADD CONSTRAINT package_blob_upload_pkey PRIMARY KEY (id);


--
-- Name: package_cleanup_rule package_cleanup_rule_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.package_cleanup_rule
    ADD CONSTRAINT package_cleanup_rule_pkey PRIMARY KEY (id);


--
-- Name: package_file package_file_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.package_file
    ADD CONSTRAINT package_file_pkey PRIMARY KEY (id);


--
-- Name: package package_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.package
    ADD CONSTRAINT package_pkey PRIMARY KEY (id);


--
-- Name: package_property package_property_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.package_property
    ADD CONSTRAINT package_property_pkey PRIMARY KEY (id);


--
-- Name: package_version package_version_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.package_version
    ADD CONSTRAINT package_version_pkey PRIMARY KEY (id);


--
-- Name: project_board project_board_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.project_board
    ADD CONSTRAINT project_board_pkey PRIMARY KEY (id);


--
-- Name: project_issue project_issue_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.project_issue
    ADD CONSTRAINT project_issue_pkey PRIMARY KEY (id);


--
-- Name: project project_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.project
    ADD CONSTRAINT project_pkey PRIMARY KEY (id);


--
-- Name: protected_branch protected_branch_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.protected_branch
    ADD CONSTRAINT protected_branch_pkey PRIMARY KEY (id);


--
-- Name: protected_tag protected_tag_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.protected_tag
    ADD CONSTRAINT protected_tag_pkey PRIMARY KEY (id);


--
-- Name: public_key public_key_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.public_key
    ADD CONSTRAINT public_key_pkey PRIMARY KEY (id);


--
-- Name: pull_auto_merge pull_auto_merge_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.pull_auto_merge
    ADD CONSTRAINT pull_auto_merge_pkey PRIMARY KEY (id);


--
-- Name: pull_request pull_request_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.pull_request
    ADD CONSTRAINT pull_request_pkey PRIMARY KEY (id);


--
-- Name: push_mirror push_mirror_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.push_mirror
    ADD CONSTRAINT push_mirror_pkey PRIMARY KEY (id);


--
-- Name: reaction reaction_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.reaction
    ADD CONSTRAINT reaction_pkey PRIMARY KEY (id);


--
-- Name: release release_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.release
    ADD CONSTRAINT release_pkey PRIMARY KEY (id);


--
-- Name: renamed_branch renamed_branch_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.renamed_branch
    ADD CONSTRAINT renamed_branch_pkey PRIMARY KEY (id);


--
-- Name: repo_archiver repo_archiver_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.repo_archiver
    ADD CONSTRAINT repo_archiver_pkey PRIMARY KEY (id);


--
-- Name: repo_indexer_status repo_indexer_status_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.repo_indexer_status
    ADD CONSTRAINT repo_indexer_status_pkey PRIMARY KEY (id);


--
-- Name: repo_redirect repo_redirect_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.repo_redirect
    ADD CONSTRAINT repo_redirect_pkey PRIMARY KEY (id);


--
-- Name: repo_topic repo_topic_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.repo_topic
    ADD CONSTRAINT repo_topic_pkey PRIMARY KEY (repo_id, topic_id);


--
-- Name: repo_transfer repo_transfer_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.repo_transfer
    ADD CONSTRAINT repo_transfer_pkey PRIMARY KEY (id);


--
-- Name: repo_unit repo_unit_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.repo_unit
    ADD CONSTRAINT repo_unit_pkey PRIMARY KEY (id);


--
-- Name: repository repository_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.repository
    ADD CONSTRAINT repository_pkey PRIMARY KEY (id);


--
-- Name: review review_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.review
    ADD CONSTRAINT review_pkey PRIMARY KEY (id);


--
-- Name: review_state review_state_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.review_state
    ADD CONSTRAINT review_state_pkey PRIMARY KEY (id);


--
-- Name: secret secret_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.secret
    ADD CONSTRAINT secret_pkey PRIMARY KEY (id);


--
-- Name: session session_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.session
    ADD CONSTRAINT session_pkey PRIMARY KEY (key);


--
-- Name: star star_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.star
    ADD CONSTRAINT star_pkey PRIMARY KEY (id);


--
-- Name: stopwatch stopwatch_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.stopwatch
    ADD CONSTRAINT stopwatch_pkey PRIMARY KEY (id);


--
-- Name: system_setting system_setting_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.system_setting
    ADD CONSTRAINT system_setting_pkey PRIMARY KEY (id);


--
-- Name: task task_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.task
    ADD CONSTRAINT task_pkey PRIMARY KEY (id);


--
-- Name: team_invite team_invite_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.team_invite
    ADD CONSTRAINT team_invite_pkey PRIMARY KEY (id);


--
-- Name: team team_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.team
    ADD CONSTRAINT team_pkey PRIMARY KEY (id);


--
-- Name: team_repo team_repo_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.team_repo
    ADD CONSTRAINT team_repo_pkey PRIMARY KEY (id);


--
-- Name: team_unit team_unit_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.team_unit
    ADD CONSTRAINT team_unit_pkey PRIMARY KEY (id);


--
-- Name: team_user team_user_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.team_user
    ADD CONSTRAINT team_user_pkey PRIMARY KEY (id);


--
-- Name: topic topic_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.topic
    ADD CONSTRAINT topic_pkey PRIMARY KEY (id);


--
-- Name: tracked_time tracked_time_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.tracked_time
    ADD CONSTRAINT tracked_time_pkey PRIMARY KEY (id);


--
-- Name: two_factor two_factor_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.two_factor
    ADD CONSTRAINT two_factor_pkey PRIMARY KEY (id);


--
-- Name: upload upload_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.upload
    ADD CONSTRAINT upload_pkey PRIMARY KEY (id);


--
-- Name: user_badge user_badge_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.user_badge
    ADD CONSTRAINT user_badge_pkey PRIMARY KEY (id);


--
-- Name: user_open_id user_open_id_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.user_open_id
    ADD CONSTRAINT user_open_id_pkey PRIMARY KEY (id);


--
-- Name: user user_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public."user"
    ADD CONSTRAINT user_pkey PRIMARY KEY (id);


--
-- Name: user_redirect user_redirect_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.user_redirect
    ADD CONSTRAINT user_redirect_pkey PRIMARY KEY (id);


--
-- Name: user_setting user_setting_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.user_setting
    ADD CONSTRAINT user_setting_pkey PRIMARY KEY (id);


--
-- Name: version version_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.version
    ADD CONSTRAINT version_pkey PRIMARY KEY (id);


--
-- Name: watch watch_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.watch
    ADD CONSTRAINT watch_pkey PRIMARY KEY (id);


--
-- Name: webauthn_credential webauthn_credential_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.webauthn_credential
    ADD CONSTRAINT webauthn_credential_pkey PRIMARY KEY (id);


--
-- Name: webhook webhook_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--

ALTER TABLE ONLY public.webhook
    ADD CONSTRAINT webhook_pkey PRIMARY KEY (id);


--
-- Name: IDX_access_token_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_access_token_created_unix" ON public.access_token USING btree (created_unix);


--
-- Name: IDX_access_token_token_last_eight; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_access_token_token_last_eight" ON public.access_token USING btree (token_last_eight);


--
-- Name: IDX_access_token_uid; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_access_token_uid" ON public.access_token USING btree (uid);


--
-- Name: IDX_access_token_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_access_token_updated_unix" ON public.access_token USING btree (updated_unix);


--
-- Name: IDX_action_artifact_artifact_name; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_artifact_artifact_name" ON public.action_artifact USING btree (artifact_name);


--
-- Name: IDX_action_artifact_artifact_path; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_artifact_artifact_path" ON public.action_artifact USING btree (artifact_path);


--
-- Name: IDX_action_artifact_expired_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_artifact_expired_unix" ON public.action_artifact USING btree (expired_unix);


--
-- Name: IDX_action_artifact_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_artifact_repo_id" ON public.action_artifact USING btree (repo_id);


--
-- Name: IDX_action_artifact_run_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_artifact_run_id" ON public.action_artifact USING btree (run_id);


--
-- Name: IDX_action_artifact_status; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_artifact_status" ON public.action_artifact USING btree (status);


--
-- Name: IDX_action_artifact_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_artifact_updated_unix" ON public.action_artifact USING btree (updated_unix);


--
-- Name: IDX_action_au_r_c_u_d; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_au_r_c_u_d" ON public.action USING btree (act_user_id, repo_id, created_unix, user_id, is_deleted);


--
-- Name: IDX_action_c_u_d; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_c_u_d" ON public.action USING btree (created_unix, user_id, is_deleted);


--
-- Name: IDX_action_comment_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_comment_id" ON public.action USING btree (comment_id);


--
-- Name: IDX_action_r_u_d; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_r_u_d" ON public.action USING btree (repo_id, user_id, is_deleted);


--
-- Name: IDX_action_run_approved_by; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_run_approved_by" ON public.action_run USING btree (approved_by);


--
-- Name: IDX_action_run_index; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_run_index" ON public.action_run USING btree (index);


--
-- Name: IDX_action_run_index_max_index; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_run_index_max_index" ON public.action_run_index USING btree (max_index);


--
-- Name: IDX_action_run_job_commit_sha; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_run_job_commit_sha" ON public.action_run_job USING btree (commit_sha);


--
-- Name: IDX_action_run_job_owner_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_run_job_owner_id" ON public.action_run_job USING btree (owner_id);


--
-- Name: IDX_action_run_job_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_run_job_repo_id" ON public.action_run_job USING btree (repo_id);


--
-- Name: IDX_action_run_job_run_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_run_job_run_id" ON public.action_run_job USING btree (run_id);


--
-- Name: IDX_action_run_job_status; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_run_job_status" ON public.action_run_job USING btree (status);


--
-- Name: IDX_action_run_job_updated; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_run_job_updated" ON public.action_run_job USING btree (updated);


--
-- Name: IDX_action_run_owner_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_run_owner_id" ON public.action_run USING btree (owner_id);


--
-- Name: IDX_action_run_ref; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_run_ref" ON public.action_run USING btree (ref);


--
-- Name: IDX_action_run_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_run_repo_id" ON public.action_run USING btree (repo_id);


--
-- Name: IDX_action_run_status; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_run_status" ON public.action_run USING btree (status);


--
-- Name: IDX_action_run_trigger_user_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_run_trigger_user_id" ON public.action_run USING btree (trigger_user_id);


--
-- Name: IDX_action_run_workflow_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_run_workflow_id" ON public.action_run USING btree (workflow_id);


--
-- Name: IDX_action_runner_last_active; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_runner_last_active" ON public.action_runner USING btree (last_active);


--
-- Name: IDX_action_runner_last_online; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_runner_last_online" ON public.action_runner USING btree (last_online);


--
-- Name: IDX_action_runner_owner_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_runner_owner_id" ON public.action_runner USING btree (owner_id);


--
-- Name: IDX_action_runner_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_runner_repo_id" ON public.action_runner USING btree (repo_id);


--
-- Name: IDX_action_runner_token_owner_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_runner_token_owner_id" ON public.action_runner_token USING btree (owner_id);


--
-- Name: IDX_action_runner_token_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_runner_token_repo_id" ON public.action_runner_token USING btree (repo_id);


--
-- Name: IDX_action_schedule_owner_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_schedule_owner_id" ON public.action_schedule USING btree (owner_id);


--
-- Name: IDX_action_schedule_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_schedule_repo_id" ON public.action_schedule USING btree (repo_id);


--
-- Name: IDX_action_schedule_spec_next; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_schedule_spec_next" ON public.action_schedule_spec USING btree (next);


--
-- Name: IDX_action_schedule_spec_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_schedule_spec_repo_id" ON public.action_schedule_spec USING btree (repo_id);


--
-- Name: IDX_action_schedule_spec_schedule_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_schedule_spec_schedule_id" ON public.action_schedule_spec USING btree (schedule_id);


--
-- Name: IDX_action_task_commit_sha; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_task_commit_sha" ON public.action_task USING btree (commit_sha);


--
-- Name: IDX_action_task_output_task_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_task_output_task_id" ON public.action_task_output USING btree (task_id);


--
-- Name: IDX_action_task_owner_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_task_owner_id" ON public.action_task USING btree (owner_id);


--
-- Name: IDX_action_task_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_task_repo_id" ON public.action_task USING btree (repo_id);


--
-- Name: IDX_action_task_runner_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_task_runner_id" ON public.action_task USING btree (runner_id);


--
-- Name: IDX_action_task_started; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_task_started" ON public.action_task USING btree (started);


--
-- Name: IDX_action_task_status; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_task_status" ON public.action_task USING btree (status);


--
-- Name: IDX_action_task_step_index; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_task_step_index" ON public.action_task_step USING btree (index);


--
-- Name: IDX_action_task_step_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_task_step_repo_id" ON public.action_task_step USING btree (repo_id);


--
-- Name: IDX_action_task_step_status; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_task_step_status" ON public.action_task_step USING btree (status);


--
-- Name: IDX_action_task_step_task_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_task_step_task_id" ON public.action_task_step USING btree (task_id);


--
-- Name: IDX_action_task_token_last_eight; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_task_token_last_eight" ON public.action_task USING btree (token_last_eight);


--
-- Name: IDX_action_task_updated; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_task_updated" ON public.action_task USING btree (updated);


--
-- Name: IDX_action_tasks_version_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_tasks_version_repo_id" ON public.action_tasks_version USING btree (repo_id);


--
-- Name: IDX_action_user_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_user_id" ON public.action USING btree (user_id);


--
-- Name: IDX_action_variable_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_action_variable_repo_id" ON public.action_variable USING btree (repo_id);


--
-- Name: IDX_attachment_issue_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_attachment_issue_id" ON public.attachment USING btree (issue_id);


--
-- Name: IDX_attachment_release_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_attachment_release_id" ON public.attachment USING btree (release_id);


--
-- Name: IDX_attachment_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_attachment_repo_id" ON public.attachment USING btree (repo_id);


--
-- Name: IDX_attachment_uploader_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_attachment_uploader_id" ON public.attachment USING btree (uploader_id);


--
-- Name: IDX_branch_deleted_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_branch_deleted_unix" ON public.branch USING btree (deleted_unix);


--
-- Name: IDX_branch_is_deleted; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_branch_is_deleted" ON public.branch USING btree (is_deleted);


--
-- Name: IDX_collaboration_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_collaboration_created_unix" ON public.collaboration USING btree (created_unix);


--
-- Name: IDX_collaboration_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_collaboration_repo_id" ON public.collaboration USING btree (repo_id);


--
-- Name: IDX_collaboration_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_collaboration_updated_unix" ON public.collaboration USING btree (updated_unix);


--
-- Name: IDX_collaboration_user_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_collaboration_user_id" ON public.collaboration USING btree (user_id);


--
-- Name: IDX_comment_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_comment_created_unix" ON public.comment USING btree (created_unix);


--
-- Name: IDX_comment_dependent_issue_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_comment_dependent_issue_id" ON public.comment USING btree (dependent_issue_id);


--
-- Name: IDX_comment_issue_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_comment_issue_id" ON public.comment USING btree (issue_id);


--
-- Name: IDX_comment_poster_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_comment_poster_id" ON public.comment USING btree (poster_id);


--
-- Name: IDX_comment_ref_comment_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_comment_ref_comment_id" ON public.comment USING btree (ref_comment_id);


--
-- Name: IDX_comment_ref_issue_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_comment_ref_issue_id" ON public.comment USING btree (ref_issue_id);


--
-- Name: IDX_comment_ref_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_comment_ref_repo_id" ON public.comment USING btree (ref_repo_id);


--
-- Name: IDX_comment_review_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_comment_review_id" ON public.comment USING btree (review_id);


--
-- Name: IDX_comment_type; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_comment_type" ON public.comment USING btree (type);


--
-- Name: IDX_comment_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_comment_updated_unix" ON public.comment USING btree (updated_unix);


--
-- Name: IDX_commit_status_context_hash; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_commit_status_context_hash" ON public.commit_status USING btree (context_hash);


--
-- Name: IDX_commit_status_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_commit_status_created_unix" ON public.commit_status USING btree (created_unix);


--
-- Name: IDX_commit_status_index; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_commit_status_index" ON public.commit_status USING btree (index);


--
-- Name: IDX_commit_status_index_max_index; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_commit_status_index_max_index" ON public.commit_status_index USING btree (max_index);


--
-- Name: IDX_commit_status_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_commit_status_repo_id" ON public.commit_status USING btree (repo_id);


--
-- Name: IDX_commit_status_sha; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_commit_status_sha" ON public.commit_status USING btree (sha);


--
-- Name: IDX_commit_status_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_commit_status_updated_unix" ON public.commit_status USING btree (updated_unix);


--
-- Name: IDX_dbfs_data_meta_offset; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_dbfs_data_meta_offset" ON public.dbfs_data USING btree (meta_id, blob_offset);


--
-- Name: IDX_deploy_key_key_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_deploy_key_key_id" ON public.deploy_key USING btree (key_id);


--
-- Name: IDX_deploy_key_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_deploy_key_repo_id" ON public.deploy_key USING btree (repo_id);


--
-- Name: IDX_email_address_uid; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_email_address_uid" ON public.email_address USING btree (uid);


--
-- Name: IDX_external_login_user_provider; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_external_login_user_provider" ON public.external_login_user USING btree (provider);


--
-- Name: IDX_external_login_user_user_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_external_login_user_user_id" ON public.external_login_user USING btree (user_id);


--
-- Name: IDX_follow_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_follow_created_unix" ON public.follow USING btree (created_unix);


--
-- Name: IDX_gpg_key_key_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_gpg_key_key_id" ON public.gpg_key USING btree (key_id);


--
-- Name: IDX_gpg_key_owner_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_gpg_key_owner_id" ON public.gpg_key USING btree (owner_id);


--
-- Name: IDX_hook_task_hook_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_hook_task_hook_id" ON public.hook_task USING btree (hook_id);


--
-- Name: IDX_issue_assignees_assignee_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_issue_assignees_assignee_id" ON public.issue_assignees USING btree (assignee_id);


--
-- Name: IDX_issue_assignees_issue_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_issue_assignees_issue_id" ON public.issue_assignees USING btree (issue_id);


--
-- Name: IDX_issue_closed_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_issue_closed_unix" ON public.issue USING btree (closed_unix);


--
-- Name: IDX_issue_content_history_comment_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_issue_content_history_comment_id" ON public.issue_content_history USING btree (comment_id);


--
-- Name: IDX_issue_content_history_edited_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_issue_content_history_edited_unix" ON public.issue_content_history USING btree (edited_unix);


--
-- Name: IDX_issue_content_history_issue_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_issue_content_history_issue_id" ON public.issue_content_history USING btree (issue_id);


--
-- Name: IDX_issue_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_issue_created_unix" ON public.issue USING btree (created_unix);


--
-- Name: IDX_issue_deadline_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_issue_deadline_unix" ON public.issue USING btree (deadline_unix);


--
-- Name: IDX_issue_index_max_index; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_issue_index_max_index" ON public.issue_index USING btree (max_index);


--
-- Name: IDX_issue_is_closed; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_issue_is_closed" ON public.issue USING btree (is_closed);


--
-- Name: IDX_issue_is_pull; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_issue_is_pull" ON public.issue USING btree (is_pull);


--
-- Name: IDX_issue_milestone_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_issue_milestone_id" ON public.issue USING btree (milestone_id);


--
-- Name: IDX_issue_original_author_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_issue_original_author_id" ON public.issue USING btree (original_author_id);


--
-- Name: IDX_issue_poster_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_issue_poster_id" ON public.issue USING btree (poster_id);


--
-- Name: IDX_issue_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_issue_repo_id" ON public.issue USING btree (repo_id);


--
-- Name: IDX_issue_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_issue_updated_unix" ON public.issue USING btree (updated_unix);


--
-- Name: IDX_issue_user_issue_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_issue_user_issue_id" ON public.issue_user USING btree (issue_id);


--
-- Name: IDX_issue_user_uid; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_issue_user_uid" ON public.issue_user USING btree (uid);


--
-- Name: IDX_label_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_label_created_unix" ON public.label USING btree (created_unix);


--
-- Name: IDX_label_org_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_label_org_id" ON public.label USING btree (org_id);


--
-- Name: IDX_label_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_label_repo_id" ON public.label USING btree (repo_id);


--
-- Name: IDX_label_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_label_updated_unix" ON public.label USING btree (updated_unix);


--
-- Name: IDX_language_stat_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_language_stat_created_unix" ON public.language_stat USING btree (created_unix);


--
-- Name: IDX_language_stat_language; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_language_stat_language" ON public.language_stat USING btree (language);


--
-- Name: IDX_language_stat_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_language_stat_repo_id" ON public.language_stat USING btree (repo_id);


--
-- Name: IDX_lfs_lock_owner_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_lfs_lock_owner_id" ON public.lfs_lock USING btree (owner_id);


--
-- Name: IDX_lfs_lock_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_lfs_lock_repo_id" ON public.lfs_lock USING btree (repo_id);


--
-- Name: IDX_lfs_meta_object_oid; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_lfs_meta_object_oid" ON public.lfs_meta_object USING btree (oid);


--
-- Name: IDX_lfs_meta_object_repository_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_lfs_meta_object_repository_id" ON public.lfs_meta_object USING btree (repository_id);


--
-- Name: IDX_lfs_meta_object_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_lfs_meta_object_updated_unix" ON public.lfs_meta_object USING btree (updated_unix);


--
-- Name: IDX_login_source_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_login_source_created_unix" ON public.login_source USING btree (created_unix);


--
-- Name: IDX_login_source_is_active; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_login_source_is_active" ON public.login_source USING btree (is_active);


--
-- Name: IDX_login_source_is_sync_enabled; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_login_source_is_sync_enabled" ON public.login_source USING btree (is_sync_enabled);


--
-- Name: IDX_login_source_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_login_source_updated_unix" ON public.login_source USING btree (updated_unix);


--
-- Name: IDX_milestone_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_milestone_created_unix" ON public.milestone USING btree (created_unix);


--
-- Name: IDX_milestone_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_milestone_repo_id" ON public.milestone USING btree (repo_id);


--
-- Name: IDX_milestone_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_milestone_updated_unix" ON public.milestone USING btree (updated_unix);


--
-- Name: IDX_mirror_next_update_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_mirror_next_update_unix" ON public.mirror USING btree (next_update_unix);


--
-- Name: IDX_mirror_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_mirror_repo_id" ON public.mirror USING btree (repo_id);


--
-- Name: IDX_mirror_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_mirror_updated_unix" ON public.mirror USING btree (updated_unix);


--
-- Name: IDX_notice_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_notice_created_unix" ON public.notice USING btree (created_unix);


--
-- Name: IDX_notification_commit_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_notification_commit_id" ON public.notification USING btree (commit_id);


--
-- Name: IDX_notification_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_notification_created_unix" ON public.notification USING btree (created_unix);


--
-- Name: IDX_notification_issue_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_notification_issue_id" ON public.notification USING btree (issue_id);


--
-- Name: IDX_notification_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_notification_repo_id" ON public.notification USING btree (repo_id);


--
-- Name: IDX_notification_source; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_notification_source" ON public.notification USING btree (source);


--
-- Name: IDX_notification_status; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_notification_status" ON public.notification USING btree (status);


--
-- Name: IDX_notification_updated_by; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_notification_updated_by" ON public.notification USING btree (updated_by);


--
-- Name: IDX_notification_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_notification_updated_unix" ON public.notification USING btree (updated_unix);


--
-- Name: IDX_notification_user_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_notification_user_id" ON public.notification USING btree (user_id);


--
-- Name: IDX_oauth2_application_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_oauth2_application_created_unix" ON public.oauth2_application USING btree (created_unix);


--
-- Name: IDX_oauth2_application_uid; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_oauth2_application_uid" ON public.oauth2_application USING btree (uid);


--
-- Name: IDX_oauth2_application_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_oauth2_application_updated_unix" ON public.oauth2_application USING btree (updated_unix);


--
-- Name: IDX_oauth2_authorization_code_valid_until; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_oauth2_authorization_code_valid_until" ON public.oauth2_authorization_code USING btree (valid_until);


--
-- Name: IDX_oauth2_grant_application_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_oauth2_grant_application_id" ON public.oauth2_grant USING btree (application_id);


--
-- Name: IDX_oauth2_grant_user_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_oauth2_grant_user_id" ON public.oauth2_grant USING btree (user_id);


--
-- Name: IDX_org_user_is_public; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_org_user_is_public" ON public.org_user USING btree (is_public);


--
-- Name: IDX_org_user_org_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_org_user_org_id" ON public.org_user USING btree (org_id);


--
-- Name: IDX_org_user_uid; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_org_user_uid" ON public.org_user USING btree (uid);


--
-- Name: IDX_package_blob_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_blob_created_unix" ON public.package_blob USING btree (created_unix);


--
-- Name: IDX_package_blob_hash_md5; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_blob_hash_md5" ON public.package_blob USING btree (hash_md5);


--
-- Name: IDX_package_blob_hash_sha1; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_blob_hash_sha1" ON public.package_blob USING btree (hash_sha1);


--
-- Name: IDX_package_blob_hash_sha256; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_blob_hash_sha256" ON public.package_blob USING btree (hash_sha256);


--
-- Name: IDX_package_blob_hash_sha512; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_blob_hash_sha512" ON public.package_blob USING btree (hash_sha512);


--
-- Name: IDX_package_blob_upload_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_blob_upload_updated_unix" ON public.package_blob_upload USING btree (updated_unix);


--
-- Name: IDX_package_cleanup_rule_enabled; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_cleanup_rule_enabled" ON public.package_cleanup_rule USING btree (enabled);


--
-- Name: IDX_package_cleanup_rule_owner_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_cleanup_rule_owner_id" ON public.package_cleanup_rule USING btree (owner_id);


--
-- Name: IDX_package_cleanup_rule_type; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_cleanup_rule_type" ON public.package_cleanup_rule USING btree (type);


--
-- Name: IDX_package_file_blob_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_file_blob_id" ON public.package_file USING btree (blob_id);


--
-- Name: IDX_package_file_composite_key; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_file_composite_key" ON public.package_file USING btree (composite_key);


--
-- Name: IDX_package_file_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_file_created_unix" ON public.package_file USING btree (created_unix);


--
-- Name: IDX_package_file_lower_name; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_file_lower_name" ON public.package_file USING btree (lower_name);


--
-- Name: IDX_package_file_version_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_file_version_id" ON public.package_file USING btree (version_id);


--
-- Name: IDX_package_lower_name; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_lower_name" ON public.package USING btree (lower_name);


--
-- Name: IDX_package_owner_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_owner_id" ON public.package USING btree (owner_id);


--
-- Name: IDX_package_property_name; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_property_name" ON public.package_property USING btree (name);


--
-- Name: IDX_package_property_ref_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_property_ref_id" ON public.package_property USING btree (ref_id);


--
-- Name: IDX_package_property_ref_type; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_property_ref_type" ON public.package_property USING btree (ref_type);


--
-- Name: IDX_package_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_repo_id" ON public.package USING btree (repo_id);


--
-- Name: IDX_package_type; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_type" ON public.package USING btree (type);


--
-- Name: IDX_package_version_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_version_created_unix" ON public.package_version USING btree (created_unix);


--
-- Name: IDX_package_version_is_internal; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_version_is_internal" ON public.package_version USING btree (is_internal);


--
-- Name: IDX_package_version_lower_version; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_version_lower_version" ON public.package_version USING btree (lower_version);


--
-- Name: IDX_package_version_package_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_package_version_package_id" ON public.package_version USING btree (package_id);


--
-- Name: IDX_project_board_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_project_board_created_unix" ON public.project_board USING btree (created_unix);


--
-- Name: IDX_project_board_project_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_project_board_project_id" ON public.project_board USING btree (project_id);


--
-- Name: IDX_project_board_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_project_board_updated_unix" ON public.project_board USING btree (updated_unix);


--
-- Name: IDX_project_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_project_created_unix" ON public.project USING btree (created_unix);


--
-- Name: IDX_project_is_closed; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_project_is_closed" ON public.project USING btree (is_closed);


--
-- Name: IDX_project_issue_issue_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_project_issue_issue_id" ON public.project_issue USING btree (issue_id);


--
-- Name: IDX_project_issue_project_board_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_project_issue_project_board_id" ON public.project_issue USING btree (project_board_id);


--
-- Name: IDX_project_issue_project_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_project_issue_project_id" ON public.project_issue USING btree (project_id);


--
-- Name: IDX_project_owner_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_project_owner_id" ON public.project USING btree (owner_id);


--
-- Name: IDX_project_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_project_repo_id" ON public.project USING btree (repo_id);


--
-- Name: IDX_project_title; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_project_title" ON public.project USING btree (title);


--
-- Name: IDX_project_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_project_updated_unix" ON public.project USING btree (updated_unix);


--
-- Name: IDX_public_key_fingerprint; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_public_key_fingerprint" ON public.public_key USING btree (fingerprint);


--
-- Name: IDX_public_key_owner_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_public_key_owner_id" ON public.public_key USING btree (owner_id);


--
-- Name: IDX_pull_request_base_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_pull_request_base_repo_id" ON public.pull_request USING btree (base_repo_id);


--
-- Name: IDX_pull_request_has_merged; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_pull_request_has_merged" ON public.pull_request USING btree (has_merged);


--
-- Name: IDX_pull_request_head_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_pull_request_head_repo_id" ON public.pull_request USING btree (head_repo_id);


--
-- Name: IDX_pull_request_issue_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_pull_request_issue_id" ON public.pull_request USING btree (issue_id);


--
-- Name: IDX_pull_request_merged_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_pull_request_merged_unix" ON public.pull_request USING btree (merged_unix);


--
-- Name: IDX_pull_request_merger_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_pull_request_merger_id" ON public.pull_request USING btree (merger_id);


--
-- Name: IDX_push_mirror_last_update; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_push_mirror_last_update" ON public.push_mirror USING btree (last_update);


--
-- Name: IDX_push_mirror_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_push_mirror_repo_id" ON public.push_mirror USING btree (repo_id);


--
-- Name: IDX_reaction_comment_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_reaction_comment_id" ON public.reaction USING btree (comment_id);


--
-- Name: IDX_reaction_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_reaction_created_unix" ON public.reaction USING btree (created_unix);


--
-- Name: IDX_reaction_issue_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_reaction_issue_id" ON public.reaction USING btree (issue_id);


--
-- Name: IDX_reaction_original_author; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_reaction_original_author" ON public.reaction USING btree (original_author);


--
-- Name: IDX_reaction_original_author_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_reaction_original_author_id" ON public.reaction USING btree (original_author_id);


--
-- Name: IDX_reaction_type; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_reaction_type" ON public.reaction USING btree (type);


--
-- Name: IDX_reaction_user_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_reaction_user_id" ON public.reaction USING btree (user_id);


--
-- Name: IDX_release_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_release_created_unix" ON public.release USING btree (created_unix);


--
-- Name: IDX_release_original_author_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_release_original_author_id" ON public.release USING btree (original_author_id);


--
-- Name: IDX_release_publisher_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_release_publisher_id" ON public.release USING btree (publisher_id);


--
-- Name: IDX_release_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_release_repo_id" ON public.release USING btree (repo_id);


--
-- Name: IDX_release_tag_name; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_release_tag_name" ON public.release USING btree (tag_name);


--
-- Name: IDX_renamed_branch_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_renamed_branch_repo_id" ON public.renamed_branch USING btree (repo_id);


--
-- Name: IDX_repo_archiver_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repo_archiver_created_unix" ON public.repo_archiver USING btree (created_unix);


--
-- Name: IDX_repo_archiver_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repo_archiver_repo_id" ON public.repo_archiver USING btree (repo_id);


--
-- Name: IDX_repo_indexer_status_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repo_indexer_status_s" ON public.repo_indexer_status USING btree (repo_id, indexer_type);


--
-- Name: IDX_repo_redirect_lower_name; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repo_redirect_lower_name" ON public.repo_redirect USING btree (lower_name);


--
-- Name: IDX_repo_transfer_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repo_transfer_created_unix" ON public.repo_transfer USING btree (created_unix);


--
-- Name: IDX_repo_transfer_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repo_transfer_updated_unix" ON public.repo_transfer USING btree (updated_unix);


--
-- Name: IDX_repo_unit_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repo_unit_created_unix" ON public.repo_unit USING btree (created_unix);


--
-- Name: IDX_repo_unit_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repo_unit_s" ON public.repo_unit USING btree (repo_id, type);


--
-- Name: IDX_repository_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repository_created_unix" ON public.repository USING btree (created_unix);


--
-- Name: IDX_repository_fork_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repository_fork_id" ON public.repository USING btree (fork_id);


--
-- Name: IDX_repository_is_archived; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repository_is_archived" ON public.repository USING btree (is_archived);


--
-- Name: IDX_repository_is_empty; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repository_is_empty" ON public.repository USING btree (is_empty);


--
-- Name: IDX_repository_is_fork; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repository_is_fork" ON public.repository USING btree (is_fork);


--
-- Name: IDX_repository_is_mirror; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repository_is_mirror" ON public.repository USING btree (is_mirror);


--
-- Name: IDX_repository_is_private; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repository_is_private" ON public.repository USING btree (is_private);


--
-- Name: IDX_repository_is_template; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repository_is_template" ON public.repository USING btree (is_template);


--
-- Name: IDX_repository_lower_name; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repository_lower_name" ON public.repository USING btree (lower_name);


--
-- Name: IDX_repository_name; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repository_name" ON public.repository USING btree (name);


--
-- Name: IDX_repository_original_service_type; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repository_original_service_type" ON public.repository USING btree (original_service_type);


--
-- Name: IDX_repository_owner_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repository_owner_id" ON public.repository USING btree (owner_id);


--
-- Name: IDX_repository_template_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repository_template_id" ON public.repository USING btree (template_id);


--
-- Name: IDX_repository_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_repository_updated_unix" ON public.repository USING btree (updated_unix);


--
-- Name: IDX_review_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_review_created_unix" ON public.review USING btree (created_unix);


--
-- Name: IDX_review_issue_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_review_issue_id" ON public.review USING btree (issue_id);


--
-- Name: IDX_review_reviewer_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_review_reviewer_id" ON public.review USING btree (reviewer_id);


--
-- Name: IDX_review_state_pull_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_review_state_pull_id" ON public.review_state USING btree (pull_id);


--
-- Name: IDX_review_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_review_updated_unix" ON public.review USING btree (updated_unix);


--
-- Name: IDX_secret_owner_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_secret_owner_id" ON public.secret USING btree (owner_id);


--
-- Name: IDX_secret_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_secret_repo_id" ON public.secret USING btree (repo_id);


--
-- Name: IDX_star_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_star_created_unix" ON public.star USING btree (created_unix);


--
-- Name: IDX_stopwatch_issue_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_stopwatch_issue_id" ON public.stopwatch USING btree (issue_id);


--
-- Name: IDX_stopwatch_user_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_stopwatch_user_id" ON public.stopwatch USING btree (user_id);


--
-- Name: IDX_task_doer_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_task_doer_id" ON public.task USING btree (doer_id);


--
-- Name: IDX_task_owner_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_task_owner_id" ON public.task USING btree (owner_id);


--
-- Name: IDX_task_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_task_repo_id" ON public.task USING btree (repo_id);


--
-- Name: IDX_task_status; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_task_status" ON public.task USING btree (status);


--
-- Name: IDX_team_invite_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_team_invite_created_unix" ON public.team_invite USING btree (created_unix);


--
-- Name: IDX_team_invite_org_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_team_invite_org_id" ON public.team_invite USING btree (org_id);


--
-- Name: IDX_team_invite_team_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_team_invite_team_id" ON public.team_invite USING btree (team_id);


--
-- Name: IDX_team_invite_token; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_team_invite_token" ON public.team_invite USING btree (token);


--
-- Name: IDX_team_invite_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_team_invite_updated_unix" ON public.team_invite USING btree (updated_unix);


--
-- Name: IDX_team_org_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_team_org_id" ON public.team USING btree (org_id);


--
-- Name: IDX_team_repo_org_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_team_repo_org_id" ON public.team_repo USING btree (org_id);


--
-- Name: IDX_team_unit_org_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_team_unit_org_id" ON public.team_unit USING btree (org_id);


--
-- Name: IDX_team_user_org_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_team_user_org_id" ON public.team_user USING btree (org_id);


--
-- Name: IDX_topic_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_topic_created_unix" ON public.topic USING btree (created_unix);


--
-- Name: IDX_topic_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_topic_updated_unix" ON public.topic USING btree (updated_unix);


--
-- Name: IDX_tracked_time_issue_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_tracked_time_issue_id" ON public.tracked_time USING btree (issue_id);


--
-- Name: IDX_tracked_time_user_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_tracked_time_user_id" ON public.tracked_time USING btree (user_id);


--
-- Name: IDX_two_factor_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_two_factor_created_unix" ON public.two_factor USING btree (created_unix);


--
-- Name: IDX_two_factor_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_two_factor_updated_unix" ON public.two_factor USING btree (updated_unix);


--
-- Name: IDX_user_badge_user_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_user_badge_user_id" ON public.user_badge USING btree (user_id);


--
-- Name: IDX_user_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_user_created_unix" ON public."user" USING btree (created_unix);


--
-- Name: IDX_user_is_active; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_user_is_active" ON public."user" USING btree (is_active);


--
-- Name: IDX_user_last_login_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_user_last_login_unix" ON public."user" USING btree (last_login_unix);


--
-- Name: IDX_user_open_id_uid; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_user_open_id_uid" ON public.user_open_id USING btree (uid);


--
-- Name: IDX_user_redirect_lower_name; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_user_redirect_lower_name" ON public.user_redirect USING btree (lower_name);


--
-- Name: IDX_user_setting_setting_key; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_user_setting_setting_key" ON public.user_setting USING btree (setting_key);


--
-- Name: IDX_user_setting_user_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_user_setting_user_id" ON public.user_setting USING btree (user_id);


--
-- Name: IDX_user_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_user_updated_unix" ON public."user" USING btree (updated_unix);


--
-- Name: IDX_watch_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_watch_created_unix" ON public.watch USING btree (created_unix);


--
-- Name: IDX_watch_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_watch_updated_unix" ON public.watch USING btree (updated_unix);


--
-- Name: IDX_webauthn_credential_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_webauthn_credential_created_unix" ON public.webauthn_credential USING btree (created_unix);


--
-- Name: IDX_webauthn_credential_credential_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_webauthn_credential_credential_id" ON public.webauthn_credential USING btree (credential_id);


--
-- Name: IDX_webauthn_credential_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_webauthn_credential_updated_unix" ON public.webauthn_credential USING btree (updated_unix);


--
-- Name: IDX_webauthn_credential_user_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_webauthn_credential_user_id" ON public.webauthn_credential USING btree (user_id);


--
-- Name: IDX_webhook_created_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_webhook_created_unix" ON public.webhook USING btree (created_unix);


--
-- Name: IDX_webhook_is_active; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_webhook_is_active" ON public.webhook USING btree (is_active);


--
-- Name: IDX_webhook_org_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_webhook_org_id" ON public.webhook USING btree (owner_id);


--
-- Name: IDX_webhook_repo_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_webhook_repo_id" ON public.webhook USING btree (repo_id);


--
-- Name: IDX_webhook_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--

CREATE INDEX "IDX_webhook_updated_unix" ON public.webhook USING btree (updated_unix);


--
-- Name: UQE_access_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_access_s" ON public.access USING btree (user_id, repo_id);


--
-- Name: UQE_access_token_token_hash; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_access_token_token_hash" ON public.access_token USING btree (token_hash);


--
-- Name: UQE_action_artifact_runid_name_path; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_action_artifact_runid_name_path" ON public.action_artifact USING btree (run_id, artifact_path, artifact_name);


--
-- Name: UQE_action_run_repo_index; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_action_run_repo_index" ON public.action_run USING btree (repo_id, index);


--
-- Name: UQE_action_runner_token_hash; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_action_runner_token_hash" ON public.action_runner USING btree (token_hash);


--
-- Name: UQE_action_runner_token_token; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_action_runner_token_token" ON public.action_runner_token USING btree (token);


--
-- Name: UQE_action_runner_uuid; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_action_runner_uuid" ON public.action_runner USING btree (uuid);


--
-- Name: UQE_action_task_output_task_id_output_key; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_action_task_output_task_id_output_key" ON public.action_task_output USING btree (task_id, output_key);


--
-- Name: UQE_action_task_step_task_index; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_action_task_step_task_index" ON public.action_task_step USING btree (task_id, index);


--
-- Name: UQE_action_task_token_hash; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_action_task_token_hash" ON public.action_task USING btree (token_hash);


--
-- Name: UQE_action_tasks_version_owner_repo; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_action_tasks_version_owner_repo" ON public.action_tasks_version USING btree (owner_id, repo_id);


--
-- Name: UQE_action_variable_owner_repo_name; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_action_variable_owner_repo_name" ON public.action_variable USING btree (owner_id, repo_id, name);


--
-- Name: UQE_attachment_uuid; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_attachment_uuid" ON public.attachment USING btree (uuid);


--
-- Name: UQE_branch_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_branch_s" ON public.branch USING btree (repo_id, name);


--
-- Name: UQE_collaboration_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_collaboration_s" ON public.collaboration USING btree (repo_id, user_id);


--
-- Name: UQE_commit_status_index_repo_sha; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_commit_status_index_repo_sha" ON public.commit_status_index USING btree (repo_id, sha);


--
-- Name: UQE_commit_status_repo_sha_index; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_commit_status_repo_sha_index" ON public.commit_status USING btree (index, repo_id, sha);


--
-- Name: UQE_dbfs_meta_full_path; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_dbfs_meta_full_path" ON public.dbfs_meta USING btree (full_path);


--
-- Name: UQE_deploy_key_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_deploy_key_s" ON public.deploy_key USING btree (key_id, repo_id);


--
-- Name: UQE_email_address_email; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_email_address_email" ON public.email_address USING btree (email);


--
-- Name: UQE_email_address_lower_email; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_email_address_lower_email" ON public.email_address USING btree (lower_email);


--
-- Name: UQE_email_hash_email; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_email_hash_email" ON public.email_hash USING btree (email);


--
-- Name: UQE_follow_follow; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_follow_follow" ON public.follow USING btree (user_id, follow_id);


--
-- Name: UQE_hook_task_uuid; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_hook_task_uuid" ON public.hook_task USING btree (uuid);


--
-- Name: UQE_issue_dependency_issue_dependency; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_issue_dependency_issue_dependency" ON public.issue_dependency USING btree (issue_id, dependency_id);


--
-- Name: UQE_issue_label_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_issue_label_s" ON public.issue_label USING btree (issue_id, label_id);


--
-- Name: UQE_issue_repo_index; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_issue_repo_index" ON public.issue USING btree (repo_id, index);


--
-- Name: UQE_issue_watch_watch; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_issue_watch_watch" ON public.issue_watch USING btree (user_id, issue_id);


--
-- Name: UQE_language_stat_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_language_stat_s" ON public.language_stat USING btree (repo_id, language);


--
-- Name: UQE_lfs_meta_object_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_lfs_meta_object_s" ON public.lfs_meta_object USING btree (oid, repository_id);


--
-- Name: UQE_login_source_name; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_login_source_name" ON public.login_source USING btree (name);


--
-- Name: UQE_oauth2_application_client_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_oauth2_application_client_id" ON public.oauth2_application USING btree (client_id);


--
-- Name: UQE_oauth2_authorization_code_code; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_oauth2_authorization_code_code" ON public.oauth2_authorization_code USING btree (code);


--
-- Name: UQE_oauth2_grant_user_application; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_oauth2_grant_user_application" ON public.oauth2_grant USING btree (user_id, application_id);


--
-- Name: UQE_org_user_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_org_user_s" ON public.org_user USING btree (uid, org_id);


--
-- Name: UQE_package_blob_md5; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_package_blob_md5" ON public.package_blob USING btree (hash_md5);


--
-- Name: UQE_package_blob_sha1; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_package_blob_sha1" ON public.package_blob USING btree (hash_sha1);


--
-- Name: UQE_package_blob_sha256; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_package_blob_sha256" ON public.package_blob USING btree (hash_sha256);


--
-- Name: UQE_package_blob_sha512; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_package_blob_sha512" ON public.package_blob USING btree (hash_sha512);


--
-- Name: UQE_package_cleanup_rule_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_package_cleanup_rule_s" ON public.package_cleanup_rule USING btree (owner_id, type);


--
-- Name: UQE_package_file_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_package_file_s" ON public.package_file USING btree (version_id, lower_name, composite_key);


--
-- Name: UQE_package_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_package_s" ON public.package USING btree (owner_id, type, lower_name);


--
-- Name: UQE_package_version_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_package_version_s" ON public.package_version USING btree (package_id, lower_version);


--
-- Name: UQE_protected_branch_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_protected_branch_s" ON public.protected_branch USING btree (repo_id, branch_name);


--
-- Name: UQE_pull_auto_merge_pull_id; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_pull_auto_merge_pull_id" ON public.pull_auto_merge USING btree (pull_id);


--
-- Name: UQE_reaction_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_reaction_s" ON public.reaction USING btree (type, issue_id, comment_id, user_id, original_author_id, original_author);


--
-- Name: UQE_release_n; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_release_n" ON public.release USING btree (repo_id, tag_name);


--
-- Name: UQE_repo_archiver_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_repo_archiver_s" ON public.repo_archiver USING btree (repo_id, type, commit_id);


--
-- Name: UQE_repo_redirect_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_repo_redirect_s" ON public.repo_redirect USING btree (owner_id, lower_name);


--
-- Name: UQE_repository_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_repository_s" ON public.repository USING btree (owner_id, lower_name);


--
-- Name: UQE_review_state_pull_commit_user; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_review_state_pull_commit_user" ON public.review_state USING btree (user_id, pull_id, commit_sha);


--
-- Name: UQE_secret_owner_repo_name; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_secret_owner_repo_name" ON public.secret USING btree (owner_id, repo_id, name);


--
-- Name: UQE_star_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_star_s" ON public.star USING btree (uid, repo_id);


--
-- Name: UQE_system_setting_setting_key; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_system_setting_setting_key" ON public.system_setting USING btree (setting_key);


--
-- Name: UQE_team_invite_team_mail; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_team_invite_team_mail" ON public.team_invite USING btree (team_id, email);


--
-- Name: UQE_team_repo_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_team_repo_s" ON public.team_repo USING btree (team_id, repo_id);


--
-- Name: UQE_team_unit_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_team_unit_s" ON public.team_unit USING btree (team_id, type);


--
-- Name: UQE_team_user_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_team_user_s" ON public.team_user USING btree (team_id, uid);


--
-- Name: UQE_topic_name; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_topic_name" ON public.topic USING btree (name);


--
-- Name: UQE_two_factor_uid; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_two_factor_uid" ON public.two_factor USING btree (uid);


--
-- Name: UQE_upload_uuid; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_upload_uuid" ON public.upload USING btree (uuid);


--
-- Name: UQE_user_lower_name; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_user_lower_name" ON public."user" USING btree (lower_name);


--
-- Name: UQE_user_name; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_user_name" ON public."user" USING btree (name);


--
-- Name: UQE_user_open_id_uri; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_user_open_id_uri" ON public.user_open_id USING btree (uri);


--
-- Name: UQE_user_redirect_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_user_redirect_s" ON public.user_redirect USING btree (lower_name);


--
-- Name: UQE_user_setting_key_userid; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_user_setting_key_userid" ON public.user_setting USING btree (user_id, setting_key);


--
-- Name: UQE_watch_watch; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_watch_watch" ON public.watch USING btree (user_id, repo_id);


--
-- Name: UQE_webauthn_credential_s; Type: INDEX; Schema: public; Owner: gitea
--

CREATE UNIQUE INDEX "UQE_webauthn_credential_s" ON public.webauthn_credential USING btree (lower_name, user_id);


--
-- PostgreSQL database dump complete
--

--
-- Database "invest" dump
--

--
-- PostgreSQL database dump
--

-- Dumped from database version 15.5
-- Dumped by pg_dump version 16.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: invest; Type: DATABASE; Schema: -; Owner: postgres
--

CREATE DATABASE invest WITH TEMPLATE = template0 ENCODING = 'UTF8' LOCALE_PROVIDER = libc LOCALE = 'English_United States.1252';


ALTER DATABASE invest OWNER TO postgres;

\connect invest

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: postgis; Type: EXTENSION; Schema: -; Owner: -
--

CREATE EXTENSION IF NOT EXISTS postgis WITH SCHEMA public;


--
-- Name: EXTENSION postgis; Type: COMMENT; Schema: -; Owner: 
--

COMMENT ON EXTENSION postgis IS 'PostGIS geometry and geography spatial types and functions';


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



--
-- PostgreSQL database dump complete
--

--
-- Database "postgres" dump
--

\connect postgres

--
-- PostgreSQL database dump
--

-- Dumped from database version 15.5
-- Dumped by pg_dump version 16.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;

--
-- PostgreSQL database dump complete
--

--
-- Database "redmine" dump
--

--
-- PostgreSQL database dump
--

-- Dumped from database version 15.5
-- Dumped by pg_dump version 16.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: redmine; Type: DATABASE; Schema: -; Owner: postgres
--

CREATE DATABASE redmine WITH TEMPLATE = template0 ENCODING = 'UTF8' LOCALE_PROVIDER = libc LOCALE = 'English_United States.1252';


ALTER DATABASE redmine OWNER TO postgres;

\connect redmine

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

COMMENT ON SCHEMA public IS '';


SET default_tablespace = '';

SET default_table_access_method = heap;

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

CREATE TABLE public.agile_colors (
    id bigint NOT NULL,
    container_type character varying(255) DEFAULT NULL::character varying,
    container_id bigint,
    color character varying(255) DEFAULT NULL::character varying
);


ALTER TABLE public.agile_colors OWNER TO postgres;

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

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


ALTER SEQUENCE public.agile_colors_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.agile_colors_id_seq OWNED BY public.agile_colors.id;


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

CREATE TABLE public.agile_data (
    id bigint NOT NULL,
    issue_id bigint,
    "position" bigint,
    story_points bigint,
    agile_sprint_id bigint
);


ALTER TABLE public.agile_data OWNER TO postgres;

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

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


ALTER SEQUENCE public.agile_data_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.agile_data_id_seq OWNED BY public.agile_data.id;


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

CREATE TABLE public.agile_sprints (
    id bigint NOT NULL,
    project_id bigint,
    name character varying(255) NOT NULL,
    description text,
    status bigint DEFAULT '0'::bigint NOT NULL,
    start_date date NOT NULL,
    end_date date NOT NULL,
    created_at timestamp with time zone NOT NULL,
    updated_at timestamp with time zone NOT NULL,
    sharing bigint DEFAULT '0'::bigint NOT NULL
);


ALTER TABLE public.agile_sprints OWNER TO postgres;

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

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


ALTER SEQUENCE public.agile_sprints_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.agile_sprints_id_seq OWNED BY public.agile_sprints.id;


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

CREATE TABLE public.ar_internal_metadata (
    key character varying(255) NOT NULL,
    value character varying(255) DEFAULT NULL::character varying,
    created_at timestamp with time zone NOT NULL,
    updated_at timestamp with time zone NOT NULL
);


ALTER TABLE public.ar_internal_metadata OWNER TO postgres;

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

CREATE TABLE public.attachments (
    id bigint NOT NULL,
    container_id bigint,
    container_type character varying(30) DEFAULT NULL::character varying,
    filename character varying(255) DEFAULT ''::character varying NOT NULL,
    disk_filename character varying(255) DEFAULT ''::character varying NOT NULL,
    filesize bigint DEFAULT '0'::bigint NOT NULL,
    content_type character varying(255) DEFAULT ''::character varying,
    digest character varying(64) DEFAULT ''::character varying NOT NULL,
    downloads bigint DEFAULT '0'::bigint NOT NULL,
    author_id bigint DEFAULT '0'::bigint NOT NULL,
    created_on timestamp with time zone,
    description character varying(255) DEFAULT NULL::character varying,
    disk_directory character varying(255) DEFAULT NULL::character varying
);


ALTER TABLE public.attachments OWNER TO postgres;

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

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


ALTER SEQUENCE public.attachments_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.attachments_id_seq OWNED BY public.attachments.id;


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

CREATE TABLE public.auth_sources (
    id bigint NOT NULL,
    type character varying(30) DEFAULT ''::character varying NOT NULL,
    name character varying(60) DEFAULT ''::character varying NOT NULL,
    host character varying(60) DEFAULT NULL::character varying,
    port bigint,
    account character varying(255) DEFAULT NULL::character varying,
    account_password character varying(255) DEFAULT ''::character varying,
    base_dn character varying(255) DEFAULT NULL::character varying,
    attr_login character varying(30) DEFAULT NULL::character varying,
    attr_firstname character varying(30) DEFAULT NULL::character varying,
    attr_lastname character varying(30) DEFAULT NULL::character varying,
    attr_mail character varying(30) DEFAULT NULL::character varying,
    onthefly_register boolean DEFAULT false NOT NULL,
    tls boolean DEFAULT false NOT NULL,
    filter text,
    timeout bigint,
    verify_peer boolean DEFAULT true NOT NULL
);


ALTER TABLE public.auth_sources OWNER TO postgres;

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

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


ALTER SEQUENCE public.auth_sources_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.auth_sources_id_seq OWNED BY public.auth_sources.id;


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

CREATE TABLE public.boards (
    id bigint NOT NULL,
    project_id bigint NOT NULL,
    name character varying(255) DEFAULT ''::character varying NOT NULL,
    description character varying(255) DEFAULT NULL::character varying,
    "position" bigint,
    topics_count bigint DEFAULT '0'::bigint NOT NULL,
    messages_count bigint DEFAULT '0'::bigint NOT NULL,
    last_message_id bigint,
    parent_id bigint
);


ALTER TABLE public.boards OWNER TO postgres;

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

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


ALTER SEQUENCE public.boards_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.boards_id_seq OWNED BY public.boards.id;


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

CREATE TABLE public.changes (
    id bigint NOT NULL,
    changeset_id bigint NOT NULL,
    action character varying(1) DEFAULT ''::character varying NOT NULL,
    path text NOT NULL,
    from_path text,
    from_revision character varying(255) DEFAULT NULL::character varying,
    revision character varying(255) DEFAULT NULL::character varying,
    branch character varying(255) DEFAULT NULL::character varying
);


ALTER TABLE public.changes OWNER TO postgres;

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

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


ALTER SEQUENCE public.changes_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.changes_id_seq OWNED BY public.changes.id;


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

CREATE TABLE public.changeset_parents (
    changeset_id bigint NOT NULL,
    parent_id bigint NOT NULL
);


ALTER TABLE public.changeset_parents OWNER TO postgres;

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

CREATE TABLE public.changesets (
    id bigint NOT NULL,
    repository_id bigint NOT NULL,
    revision character varying(255) NOT NULL,
    committer character varying(255) DEFAULT NULL::character varying,
    committed_on timestamp with time zone NOT NULL,
    comments text,
    commit_date date,
    scmid character varying(255) DEFAULT NULL::character varying,
    user_id bigint
);


ALTER TABLE public.changesets OWNER TO postgres;

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

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


ALTER SEQUENCE public.changesets_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.changesets_id_seq OWNED BY public.changesets.id;


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

CREATE TABLE public.changesets_issues (
    changeset_id bigint NOT NULL,
    issue_id bigint NOT NULL
);


ALTER TABLE public.changesets_issues OWNER TO postgres;

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

CREATE TABLE public.checklist_template_categories (
    id bigint NOT NULL,
    name character varying(255) DEFAULT NULL::character varying,
    "position" bigint DEFAULT '1'::bigint
);


ALTER TABLE public.checklist_template_categories OWNER TO postgres;

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

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


ALTER SEQUENCE public.checklist_template_categories_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.checklist_template_categories_id_seq OWNED BY public.checklist_template_categories.id;


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

CREATE TABLE public.checklist_templates (
    id bigint NOT NULL,
    name character varying(255) DEFAULT NULL::character varying,
    project_id bigint,
    category_id bigint,
    user_id bigint,
    is_public boolean,
    template_items text,
    is_default boolean DEFAULT false,
    tracker_id bigint
);


ALTER TABLE public.checklist_templates OWNER TO postgres;

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

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


ALTER SEQUENCE public.checklist_templates_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.checklist_templates_id_seq OWNED BY public.checklist_templates.id;


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

CREATE TABLE public.checklists (
    id bigint NOT NULL,
    is_done boolean DEFAULT false,
    subject character varying(512) DEFAULT NULL::character varying,
    "position" bigint DEFAULT '1'::bigint,
    issue_id bigint NOT NULL,
    created_at timestamp with time zone,
    updated_at timestamp with time zone,
    is_section boolean DEFAULT false
);


ALTER TABLE public.checklists OWNER TO postgres;

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

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


ALTER SEQUENCE public.checklists_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.checklists_id_seq OWNED BY public.checklists.id;


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

CREATE TABLE public.comments (
    id bigint NOT NULL,
    commented_type character varying(30) DEFAULT ''::character varying NOT NULL,
    commented_id bigint DEFAULT '0'::bigint NOT NULL,
    author_id bigint DEFAULT '0'::bigint NOT NULL,
    content text,
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL
);


ALTER TABLE public.comments OWNER TO postgres;

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

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


ALTER SEQUENCE public.comments_id_seq OWNER TO postgres;

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

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


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

CREATE TABLE public.custom_field_enumerations (
    id bigint NOT NULL,
    custom_field_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    active boolean DEFAULT true NOT NULL,
    "position" bigint DEFAULT '1'::bigint NOT NULL
);


ALTER TABLE public.custom_field_enumerations OWNER TO postgres;

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

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


ALTER SEQUENCE public.custom_field_enumerations_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.custom_field_enumerations_id_seq OWNED BY public.custom_field_enumerations.id;


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

CREATE TABLE public.custom_fields (
    id bigint NOT NULL,
    type character varying(30) DEFAULT ''::character varying NOT NULL,
    name character varying(30) DEFAULT ''::character varying NOT NULL,
    field_format character varying(30) DEFAULT ''::character varying NOT NULL,
    possible_values text,
    regexp character varying(255) DEFAULT ''::character varying,
    min_length bigint,
    max_length bigint,
    is_required boolean DEFAULT false NOT NULL,
    is_for_all boolean DEFAULT false NOT NULL,
    is_filter boolean DEFAULT false NOT NULL,
    "position" bigint,
    searchable boolean DEFAULT false,
    default_value text,
    editable boolean DEFAULT true,
    visible boolean DEFAULT true NOT NULL,
    multiple boolean DEFAULT false,
    format_store text,
    description text
);


ALTER TABLE public.custom_fields OWNER TO postgres;

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

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


ALTER SEQUENCE public.custom_fields_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.custom_fields_id_seq OWNED BY public.custom_fields.id;


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

CREATE TABLE public.custom_fields_projects (
    custom_field_id bigint DEFAULT '0'::bigint NOT NULL,
    project_id bigint DEFAULT '0'::bigint NOT NULL
);


ALTER TABLE public.custom_fields_projects OWNER TO postgres;

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

CREATE TABLE public.custom_fields_roles (
    custom_field_id bigint NOT NULL,
    role_id bigint NOT NULL
);


ALTER TABLE public.custom_fields_roles OWNER TO postgres;

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

CREATE TABLE public.custom_fields_trackers (
    custom_field_id bigint DEFAULT '0'::bigint NOT NULL,
    tracker_id bigint DEFAULT '0'::bigint NOT NULL
);


ALTER TABLE public.custom_fields_trackers OWNER TO postgres;

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

CREATE TABLE public.custom_values (
    id bigint NOT NULL,
    customized_type character varying(30) DEFAULT ''::character varying NOT NULL,
    customized_id bigint DEFAULT '0'::bigint NOT NULL,
    custom_field_id bigint DEFAULT '0'::bigint NOT NULL,
    value text
);


ALTER TABLE public.custom_values OWNER TO postgres;

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

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


ALTER SEQUENCE public.custom_values_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.custom_values_id_seq OWNED BY public.custom_values.id;


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

CREATE TABLE public.dayoffs (
    id integer NOT NULL,
    user_id integer NOT NULL,
    leave_type_id integer NOT NULL,
    approved boolean DEFAULT false NOT NULL,
    start_date timestamp without time zone NOT NULL,
    end_date timestamp without time zone,
    hours_per_day double precision,
    notes text,
    created_at timestamp without time zone NOT NULL,
    updated_at timestamp without time zone NOT NULL
);


ALTER TABLE public.dayoffs OWNER TO postgres;

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

CREATE SEQUENCE public.dayoffs_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.dayoffs_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.dayoffs_id_seq OWNED BY public.dayoffs.id;


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

CREATE TABLE public.departments (
    id integer NOT NULL,
    parent_id integer,
    lft integer,
    rgt integer,
    name character varying,
    background text,
    head_id integer,
    created_at timestamp without time zone NOT NULL,
    updated_at timestamp without time zone NOT NULL
);


ALTER TABLE public.departments OWNER TO postgres;

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

CREATE SEQUENCE public.departments_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.departments_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.departments_id_seq OWNED BY public.departments.id;


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

CREATE TABLE public.documents (
    id bigint NOT NULL,
    project_id bigint DEFAULT '0'::bigint NOT NULL,
    category_id bigint DEFAULT '0'::bigint NOT NULL,
    title character varying(255) DEFAULT ''::character varying NOT NULL,
    description text,
    created_on timestamp with time zone
);


ALTER TABLE public.documents OWNER TO postgres;

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

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


ALTER SEQUENCE public.documents_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.documents_id_seq OWNED BY public.documents.id;


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

CREATE TABLE public.drive_entries (
    id bigint NOT NULL,
    project_id bigint,
    parent_id bigint,
    author_id bigint NOT NULL,
    name character varying(255) DEFAULT NULL::character varying,
    shared boolean DEFAULT false NOT NULL,
    description text,
    created_at timestamp with time zone NOT NULL,
    updated_at timestamp with time zone NOT NULL,
    version bigint DEFAULT '1'::bigint NOT NULL,
    version_name character varying(255) DEFAULT NULL::character varying,
    comments_count bigint DEFAULT '0'::bigint NOT NULL
);


ALTER TABLE public.drive_entries OWNER TO postgres;

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

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


ALTER SEQUENCE public.drive_entries_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.drive_entries_id_seq OWNED BY public.drive_entries.id;


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

CREATE TABLE public.email_addresses (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    address character varying(255) NOT NULL,
    is_default boolean DEFAULT false NOT NULL,
    notify boolean DEFAULT true NOT NULL,
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL
);


ALTER TABLE public.email_addresses OWNER TO postgres;

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

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


ALTER SEQUENCE public.email_addresses_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.email_addresses_id_seq OWNED BY public.email_addresses.id;


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

CREATE TABLE public.enabled_modules (
    id bigint NOT NULL,
    project_id bigint,
    name character varying(255) NOT NULL
);


ALTER TABLE public.enabled_modules OWNER TO postgres;

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

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


ALTER SEQUENCE public.enabled_modules_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.enabled_modules_id_seq OWNED BY public.enabled_modules.id;


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

CREATE TABLE public.enumerations (
    id bigint NOT NULL,
    name character varying(30) DEFAULT ''::character varying NOT NULL,
    "position" bigint,
    is_default boolean DEFAULT false NOT NULL,
    type character varying(255) DEFAULT NULL::character varying,
    active boolean DEFAULT true NOT NULL,
    project_id bigint,
    parent_id bigint,
    position_name character varying(30) DEFAULT NULL::character varying
);


ALTER TABLE public.enumerations OWNER TO postgres;

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

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


ALTER SEQUENCE public.enumerations_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.enumerations_id_seq OWNED BY public.enumerations.id;


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

CREATE TABLE public.groups_users (
    group_id bigint NOT NULL,
    user_id bigint NOT NULL
);


ALTER TABLE public.groups_users OWNER TO postgres;

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

CREATE TABLE public.import_items (
    id bigint NOT NULL,
    import_id bigint NOT NULL,
    "position" bigint NOT NULL,
    obj_id bigint,
    message text,
    unique_id character varying(255) DEFAULT NULL::character varying
);


ALTER TABLE public.import_items OWNER TO postgres;

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

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


ALTER SEQUENCE public.import_items_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.import_items_id_seq OWNED BY public.import_items.id;


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

CREATE TABLE public.imports (
    id bigint NOT NULL,
    type character varying(255) DEFAULT NULL::character varying,
    user_id bigint NOT NULL,
    filename character varying(255) DEFAULT NULL::character varying,
    settings text,
    total_items bigint,
    finished boolean DEFAULT false NOT NULL,
    created_at timestamp with time zone NOT NULL,
    updated_at timestamp with time zone NOT NULL
);


ALTER TABLE public.imports OWNER TO postgres;

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

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


ALTER SEQUENCE public.imports_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.imports_id_seq OWNED BY public.imports.id;


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

CREATE TABLE public.issue_categories (
    id bigint NOT NULL,
    project_id bigint DEFAULT '0'::bigint NOT NULL,
    name character varying(60) DEFAULT ''::character varying NOT NULL,
    assigned_to_id bigint
);


ALTER TABLE public.issue_categories OWNER TO postgres;

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

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


ALTER SEQUENCE public.issue_categories_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.issue_categories_id_seq OWNED BY public.issue_categories.id;


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

CREATE TABLE public.issue_drive_files (
    id bigint NOT NULL,
    issue_id bigint,
    drive_entry_id bigint,
    created_at timestamp with time zone NOT NULL
);


ALTER TABLE public.issue_drive_files OWNER TO postgres;

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

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


ALTER SEQUENCE public.issue_drive_files_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.issue_drive_files_id_seq OWNED BY public.issue_drive_files.id;


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

CREATE TABLE public.issue_relations (
    id bigint NOT NULL,
    issue_from_id bigint NOT NULL,
    issue_to_id bigint NOT NULL,
    relation_type character varying(255) DEFAULT ''::character varying NOT NULL,
    delay bigint
);


ALTER TABLE public.issue_relations OWNER TO postgres;

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

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


ALTER SEQUENCE public.issue_relations_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.issue_relations_id_seq OWNED BY public.issue_relations.id;


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

CREATE TABLE public.issue_statuses (
    id bigint NOT NULL,
    name character varying(30) DEFAULT ''::character varying NOT NULL,
    is_closed boolean DEFAULT false NOT NULL,
    "position" bigint,
    default_done_ratio bigint
);


ALTER TABLE public.issue_statuses OWNER TO postgres;

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

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


ALTER SEQUENCE public.issue_statuses_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.issue_statuses_id_seq OWNED BY public.issue_statuses.id;


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

CREATE TABLE public.issues (
    id bigint NOT NULL,
    tracker_id bigint NOT NULL,
    project_id bigint NOT NULL,
    subject character varying(255) DEFAULT ''::character varying NOT NULL,
    description text,
    due_date date,
    category_id bigint,
    status_id bigint NOT NULL,
    assigned_to_id bigint,
    priority_id bigint NOT NULL,
    fixed_version_id bigint,
    author_id bigint NOT NULL,
    lock_version bigint DEFAULT '0'::bigint NOT NULL,
    created_on timestamp with time zone,
    updated_on timestamp with time zone,
    start_date date,
    done_ratio bigint DEFAULT '0'::bigint NOT NULL,
    estimated_hours double precision,
    parent_id bigint,
    root_id bigint,
    lft bigint,
    rgt bigint,
    is_private boolean DEFAULT false NOT NULL,
    closed_on timestamp with time zone
);


ALTER TABLE public.issues OWNER TO postgres;

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

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


ALTER SEQUENCE public.issues_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.issues_id_seq OWNED BY public.issues.id;


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

CREATE TABLE public.journal_details (
    id bigint NOT NULL,
    journal_id bigint DEFAULT '0'::bigint NOT NULL,
    property character varying(30) DEFAULT ''::character varying NOT NULL,
    prop_key character varying(30) DEFAULT ''::character varying NOT NULL,
    old_value text,
    value text
);


ALTER TABLE public.journal_details OWNER TO postgres;

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

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


ALTER SEQUENCE public.journal_details_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.journal_details_id_seq OWNED BY public.journal_details.id;


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

CREATE TABLE public.journals (
    id bigint NOT NULL,
    journalized_id bigint DEFAULT '0'::bigint NOT NULL,
    journalized_type character varying(30) DEFAULT ''::character varying NOT NULL,
    user_id bigint DEFAULT '0'::bigint NOT NULL,
    notes text,
    created_on timestamp with time zone NOT NULL,
    private_notes boolean DEFAULT false NOT NULL
);


ALTER TABLE public.journals OWNER TO postgres;

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

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


ALTER SEQUENCE public.journals_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.journals_id_seq OWNED BY public.journals.id;


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

CREATE TABLE public.leave_types (
    id integer NOT NULL,
    name character varying,
    color character varying,
    paid boolean,
    approvable boolean
);


ALTER TABLE public.leave_types OWNER TO postgres;

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

CREATE SEQUENCE public.leave_types_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.leave_types_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.leave_types_id_seq OWNED BY public.leave_types.id;


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

CREATE TABLE public.member_roles (
    id bigint NOT NULL,
    member_id bigint NOT NULL,
    role_id bigint NOT NULL,
    inherited_from bigint
);


ALTER TABLE public.member_roles OWNER TO postgres;

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

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


ALTER SEQUENCE public.member_roles_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.member_roles_id_seq OWNED BY public.member_roles.id;


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

CREATE TABLE public.members (
    id bigint NOT NULL,
    user_id bigint DEFAULT '0'::bigint NOT NULL,
    project_id bigint DEFAULT '0'::bigint NOT NULL,
    created_on timestamp with time zone,
    mail_notification boolean DEFAULT false NOT NULL
);


ALTER TABLE public.members OWNER TO postgres;

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

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


ALTER SEQUENCE public.members_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.members_id_seq OWNED BY public.members.id;


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

CREATE TABLE public.messages (
    id bigint NOT NULL,
    board_id bigint NOT NULL,
    parent_id bigint,
    subject character varying(255) DEFAULT ''::character varying NOT NULL,
    content text,
    author_id bigint,
    replies_count bigint DEFAULT '0'::bigint NOT NULL,
    last_reply_id bigint,
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL,
    locked boolean DEFAULT false,
    sticky bigint DEFAULT '0'::bigint
);


ALTER TABLE public.messages OWNER TO postgres;

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

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


ALTER SEQUENCE public.messages_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.messages_id_seq OWNED BY public.messages.id;


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

CREATE TABLE public.news (
    id bigint NOT NULL,
    project_id bigint,
    title character varying(60) DEFAULT ''::character varying NOT NULL,
    summary character varying(255) DEFAULT ''::character varying,
    description text,
    author_id bigint DEFAULT '0'::bigint NOT NULL,
    created_on timestamp with time zone,
    comments_count bigint DEFAULT '0'::bigint NOT NULL
);


ALTER TABLE public.news OWNER TO postgres;

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

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


ALTER SEQUENCE public.news_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.news_id_seq OWNED BY public.news.id;


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

CREATE TABLE public.people_announcements (
    id integer NOT NULL,
    description text,
    start_date date,
    end_date date,
    frequency character varying,
    kind character varying,
    active boolean DEFAULT false,
    created_at timestamp without time zone NOT NULL,
    updated_at timestamp without time zone NOT NULL,
    department_id integer
);


ALTER TABLE public.people_announcements OWNER TO postgres;

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

CREATE SEQUENCE public.people_announcements_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.people_announcements_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.people_announcements_id_seq OWNED BY public.people_announcements.id;


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

CREATE TABLE public.people_holidays (
    id integer NOT NULL,
    name character varying,
    start_date date,
    end_date date,
    description text,
    is_workday boolean,
    created_on timestamp without time zone,
    updated_on timestamp without time zone
);


ALTER TABLE public.people_holidays OWNER TO postgres;

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

CREATE SEQUENCE public.people_holidays_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.people_holidays_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.people_holidays_id_seq OWNED BY public.people_holidays.id;


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

CREATE TABLE public.people_information (
    user_id integer NOT NULL,
    phone character varying,
    address character varying,
    skype character varying,
    birthday date,
    job_title character varying,
    company character varying,
    middlename character varying,
    gender smallint,
    twitter character varying,
    facebook character varying,
    linkedin character varying,
    background text,
    appearance_date date,
    department_id integer,
    is_system boolean DEFAULT false,
    manager_id integer,
    workday_length double precision
);


ALTER TABLE public.people_information OWNER TO postgres;

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

CREATE SEQUENCE public.people_information_user_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.people_information_user_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.people_information_user_id_seq OWNED BY public.people_information.user_id;


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

CREATE TABLE public.people_work_experiences (
    id integer NOT NULL,
    previous_company_name character varying,
    job_title character varying,
    from_date timestamp without time zone,
    to_date timestamp without time zone,
    description text,
    user_id integer
);


ALTER TABLE public.people_work_experiences OWNER TO postgres;

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

CREATE SEQUENCE public.people_work_experiences_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.people_work_experiences_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.people_work_experiences_id_seq OWNED BY public.people_work_experiences.id;


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

CREATE TABLE public.projects (
    id bigint NOT NULL,
    name character varying(255) DEFAULT ''::character varying NOT NULL,
    description text,
    homepage character varying(255) DEFAULT ''::character varying,
    is_public boolean DEFAULT true NOT NULL,
    parent_id bigint,
    created_on timestamp with time zone,
    updated_on timestamp with time zone,
    identifier character varying(255) DEFAULT NULL::character varying,
    status bigint DEFAULT '1'::bigint NOT NULL,
    lft bigint,
    rgt bigint,
    inherit_members boolean DEFAULT false NOT NULL,
    default_version_id bigint,
    default_assigned_to_id bigint,
    default_issue_query_id integer
);


ALTER TABLE public.projects OWNER TO postgres;

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

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


ALTER SEQUENCE public.projects_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.projects_id_seq OWNED BY public.projects.id;


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

CREATE TABLE public.projects_trackers (
    project_id bigint DEFAULT '0'::bigint NOT NULL,
    tracker_id bigint DEFAULT '0'::bigint NOT NULL
);


ALTER TABLE public.projects_trackers OWNER TO postgres;

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

CREATE TABLE public.queries (
    id bigint NOT NULL,
    project_id bigint,
    name character varying(255) DEFAULT ''::character varying NOT NULL,
    filters text,
    user_id bigint DEFAULT '0'::bigint NOT NULL,
    column_names text,
    sort_criteria text,
    group_by character varying(255) DEFAULT NULL::character varying,
    type character varying(255) DEFAULT NULL::character varying,
    visibility bigint DEFAULT '0'::bigint,
    options text
);


ALTER TABLE public.queries OWNER TO postgres;

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

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


ALTER SEQUENCE public.queries_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.queries_id_seq OWNED BY public.queries.id;


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

CREATE TABLE public.queries_roles (
    query_id bigint NOT NULL,
    role_id bigint NOT NULL
);


ALTER TABLE public.queries_roles OWNER TO postgres;

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

CREATE TABLE public.repositories (
    id bigint NOT NULL,
    project_id bigint DEFAULT '0'::bigint NOT NULL,
    url character varying(255) DEFAULT ''::character varying NOT NULL,
    login character varying(60) DEFAULT ''::character varying,
    password character varying(255) DEFAULT ''::character varying,
    root_url character varying(255) DEFAULT ''::character varying,
    type character varying(255) DEFAULT NULL::character varying,
    path_encoding character varying(64) DEFAULT NULL::character varying,
    log_encoding character varying(64) DEFAULT NULL::character varying,
    extra_info text,
    identifier character varying(255) DEFAULT NULL::character varying,
    is_default boolean DEFAULT false,
    created_on timestamp with time zone
);


ALTER TABLE public.repositories OWNER TO postgres;

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

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


ALTER SEQUENCE public.repositories_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.repositories_id_seq OWNED BY public.repositories.id;


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

CREATE TABLE public.rich_rich_files (
    id bigint NOT NULL,
    created_at timestamp with time zone,
    updated_at timestamp with time zone,
    rich_file_file_name character varying(255) DEFAULT NULL::character varying,
    rich_file_content_type character varying(255) DEFAULT NULL::character varying,
    rich_file_file_size bigint,
    rich_file_updated_at timestamp with time zone,
    owner_type character varying(255) DEFAULT NULL::character varying,
    owner_id bigint,
    uri_cache text,
    simplified_type character varying(255) DEFAULT 'file'::character varying
);


ALTER TABLE public.rich_rich_files OWNER TO postgres;

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

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


ALTER SEQUENCE public.rich_rich_files_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.rich_rich_files_id_seq OWNED BY public.rich_rich_files.id;


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

CREATE TABLE public.roles (
    id bigint NOT NULL,
    name character varying(255) DEFAULT ''::character varying NOT NULL,
    "position" bigint,
    assignable boolean DEFAULT true,
    builtin bigint DEFAULT '0'::bigint NOT NULL,
    permissions text,
    issues_visibility character varying(30) DEFAULT 'default'::character varying NOT NULL,
    users_visibility character varying(30) DEFAULT 'all'::character varying NOT NULL,
    time_entries_visibility character varying(30) DEFAULT 'all'::character varying NOT NULL,
    all_roles_managed boolean DEFAULT true NOT NULL,
    settings text
);


ALTER TABLE public.roles OWNER TO postgres;

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

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


ALTER SEQUENCE public.roles_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.roles_id_seq OWNED BY public.roles.id;


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

CREATE TABLE public.roles_managed_roles (
    role_id bigint NOT NULL,
    managed_role_id bigint NOT NULL
);


ALTER TABLE public.roles_managed_roles OWNER TO postgres;

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

CREATE TABLE public.schema_migrations (
    version character varying(255) NOT NULL
);


ALTER TABLE public.schema_migrations OWNER TO postgres;

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

CREATE TABLE public.settings (
    id bigint NOT NULL,
    name character varying(255) DEFAULT ''::character varying NOT NULL,
    value text,
    updated_on timestamp with time zone
);


ALTER TABLE public.settings OWNER TO postgres;

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

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


ALTER SEQUENCE public.settings_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.settings_id_seq OWNED BY public.settings.id;


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

CREATE TABLE public.taggings (
    id bigint NOT NULL,
    tag_id bigint,
    taggable_id bigint,
    taggable_type character varying(255) DEFAULT NULL::character varying,
    created_at timestamp with time zone
);


ALTER TABLE public.taggings OWNER TO postgres;

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

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


ALTER SEQUENCE public.taggings_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.taggings_id_seq OWNED BY public.taggings.id;


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

CREATE TABLE public.tags (
    id bigint NOT NULL,
    name character varying(255) DEFAULT NULL::character varying
);


ALTER TABLE public.tags OWNER TO postgres;

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

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


ALTER SEQUENCE public.tags_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.tags_id_seq OWNED BY public.tags.id;


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

CREATE TABLE public.theme_changer_user_settings (
    id bigint NOT NULL,
    user_id bigint,
    theme character varying(255) DEFAULT NULL::character varying,
    updated_at timestamp with time zone
);


ALTER TABLE public.theme_changer_user_settings OWNER TO postgres;

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

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


ALTER SEQUENCE public.theme_changer_user_settings_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.theme_changer_user_settings_id_seq OWNED BY public.theme_changer_user_settings.id;


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

CREATE TABLE public.time_entries (
    id bigint NOT NULL,
    project_id bigint NOT NULL,
    author_id bigint,
    user_id bigint NOT NULL,
    issue_id bigint,
    hours double precision NOT NULL,
    comments character varying(1024) DEFAULT NULL::character varying,
    activity_id bigint NOT NULL,
    spent_on date NOT NULL,
    tyear bigint NOT NULL,
    tmonth bigint NOT NULL,
    tweek bigint NOT NULL,
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL
);


ALTER TABLE public.time_entries OWNER TO postgres;

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

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


ALTER SEQUENCE public.time_entries_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.time_entries_id_seq OWNED BY public.time_entries.id;


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

CREATE TABLE public.tokens (
    id bigint NOT NULL,
    user_id bigint DEFAULT '0'::bigint NOT NULL,
    action character varying(30) DEFAULT ''::character varying NOT NULL,
    value character varying(40) DEFAULT ''::character varying NOT NULL,
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone
);


ALTER TABLE public.tokens OWNER TO postgres;

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

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


ALTER SEQUENCE public.tokens_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.tokens_id_seq OWNED BY public.tokens.id;


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

CREATE TABLE public.trackers (
    id bigint NOT NULL,
    name character varying(30) DEFAULT ''::character varying NOT NULL,
    description character varying(255) DEFAULT NULL::character varying,
    "position" bigint,
    is_in_roadmap boolean DEFAULT true NOT NULL,
    fields_bits bigint DEFAULT '0'::bigint,
    default_status_id bigint
);


ALTER TABLE public.trackers OWNER TO postgres;

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

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


ALTER SEQUENCE public.trackers_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.trackers_id_seq OWNED BY public.trackers.id;


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

CREATE TABLE public.user_preferences (
    id bigint NOT NULL,
    user_id bigint DEFAULT '0'::bigint NOT NULL,
    others text,
    hide_mail boolean DEFAULT true,
    time_zone character varying(255) DEFAULT NULL::character varying
);


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

CREATE TABLE public.users (
    id bigint NOT NULL,
    login character varying(255) DEFAULT ''::character varying NOT NULL,
    hashed_password character varying(40) DEFAULT ''::character varying NOT NULL,
    firstname character varying(30) DEFAULT ''::character varying NOT NULL,
    lastname character varying(255) DEFAULT ''::character varying NOT NULL,
    admin boolean DEFAULT false NOT NULL,
    status bigint DEFAULT '1'::bigint NOT NULL,
    last_login_on timestamp with time zone,
    language character varying(5) DEFAULT ''::character varying,
    auth_source_id bigint,
    created_on timestamp with time zone,
    updated_on timestamp with time zone,
    type character varying(255) DEFAULT NULL::character varying,
    mail_notification character varying(255) DEFAULT ''::character varying NOT NULL,
    salt character varying(64) DEFAULT NULL::character varying,
    must_change_passwd boolean DEFAULT false NOT NULL,
    passwd_changed_on timestamp with time zone,
    twofa_scheme character varying(255) DEFAULT NULL::character varying,
    twofa_totp_key character varying(255) DEFAULT NULL::character varying,
    twofa_totp_last_used_at bigint,
    twofa_required boolean DEFAULT false
);


ALTER TABLE public.users OWNER TO postgres;

--
-- 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 SEQUENCE public.users_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;


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

CREATE TABLE public.versions (
    id bigint NOT NULL,
    project_id bigint DEFAULT '0'::bigint NOT NULL,
    name character varying(255) DEFAULT ''::character varying NOT NULL,
    description character varying(255) DEFAULT ''::character varying,
    effective_date date,
    created_on timestamp with time zone,
    updated_on timestamp with time zone,
    wiki_page_title character varying(255) DEFAULT NULL::character varying,
    status character varying(255) DEFAULT 'open'::character varying,
    sharing character varying(255) DEFAULT 'none'::character varying NOT NULL
);


ALTER TABLE public.versions OWNER TO postgres;

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

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


ALTER SEQUENCE public.versions_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.versions_id_seq OWNED BY public.versions.id;


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

CREATE TABLE public.viewings (
    id bigint NOT NULL,
    viewer_id bigint,
    viewed_id bigint,
    viewed_type character varying(255) DEFAULT NULL::character varying,
    ip character varying(24) DEFAULT NULL::character varying,
    created_at timestamp with time zone
);


ALTER TABLE public.viewings OWNER TO postgres;

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

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


ALTER SEQUENCE public.viewings_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.viewings_id_seq OWNED BY public.viewings.id;


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

CREATE TABLE public.watchers (
    id bigint NOT NULL,
    watchable_type character varying(255) DEFAULT ''::character varying NOT NULL,
    watchable_id bigint DEFAULT '0'::bigint NOT NULL,
    user_id bigint
);


ALTER TABLE public.watchers OWNER TO postgres;

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

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


ALTER SEQUENCE public.watchers_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.watchers_id_seq OWNED BY public.watchers.id;


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

CREATE TABLE public.wiki_content_versions (
    id bigint NOT NULL,
    wiki_content_id bigint NOT NULL,
    page_id bigint NOT NULL,
    author_id bigint,
    data bytea,
    compression character varying(6) DEFAULT ''::character varying,
    comments character varying(1024) DEFAULT ''::character varying,
    updated_on timestamp with time zone NOT NULL,
    version bigint NOT NULL
);


ALTER TABLE public.wiki_content_versions OWNER TO postgres;

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

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


ALTER SEQUENCE public.wiki_content_versions_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.wiki_content_versions_id_seq OWNED BY public.wiki_content_versions.id;


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

CREATE TABLE public.wiki_contents (
    id bigint NOT NULL,
    page_id bigint NOT NULL,
    author_id bigint,
    text text,
    comments character varying(1024) DEFAULT ''::character varying,
    updated_on timestamp with time zone NOT NULL,
    version bigint NOT NULL
);


ALTER TABLE public.wiki_contents OWNER TO postgres;

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

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


ALTER SEQUENCE public.wiki_contents_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.wiki_contents_id_seq OWNED BY public.wiki_contents.id;


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

CREATE TABLE public.wiki_pages (
    id bigint NOT NULL,
    wiki_id bigint NOT NULL,
    title character varying(255) NOT NULL,
    created_on timestamp with time zone NOT NULL,
    protected boolean DEFAULT false NOT NULL,
    parent_id bigint
);


ALTER TABLE public.wiki_pages OWNER TO postgres;

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

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


ALTER SEQUENCE public.wiki_pages_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.wiki_pages_id_seq OWNED BY public.wiki_pages.id;


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

CREATE TABLE public.wiki_redirects (
    id bigint NOT NULL,
    wiki_id bigint NOT NULL,
    title character varying(255) DEFAULT NULL::character varying,
    redirects_to character varying(255) DEFAULT NULL::character varying,
    created_on timestamp with time zone NOT NULL,
    redirects_to_wiki_id bigint NOT NULL
);


ALTER TABLE public.wiki_redirects OWNER TO postgres;

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

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


ALTER SEQUENCE public.wiki_redirects_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.wiki_redirects_id_seq OWNED BY public.wiki_redirects.id;


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

CREATE TABLE public.wikis (
    id bigint NOT NULL,
    project_id bigint NOT NULL,
    start_page character varying(255) NOT NULL,
    status bigint DEFAULT '1'::bigint NOT NULL
);


ALTER TABLE public.wikis OWNER TO postgres;

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

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


ALTER SEQUENCE public.wikis_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.wikis_id_seq OWNED BY public.wikis.id;


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

CREATE TABLE public.workflows (
    id bigint NOT NULL,
    tracker_id bigint DEFAULT '0'::bigint NOT NULL,
    old_status_id bigint DEFAULT '0'::bigint NOT NULL,
    new_status_id bigint DEFAULT '0'::bigint NOT NULL,
    role_id bigint DEFAULT '0'::bigint NOT NULL,
    assignee boolean DEFAULT false NOT NULL,
    author boolean DEFAULT false NOT NULL,
    type character varying(30) DEFAULT NULL::character varying,
    field_name character varying(30) DEFAULT NULL::character varying,
    rule character varying(30) DEFAULT NULL::character varying
);


ALTER TABLE public.workflows OWNER TO postgres;

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

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


ALTER SEQUENCE public.workflows_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.workflows_id_seq OWNED BY public.workflows.id;


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


--
-- Name: people_information user_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.people_information ALTER COLUMN user_id SET DEFAULT nextval('public.people_information_user_id_seq'::regclass);


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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

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


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



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

INSERT INTO public.agile_data VALUES (1, 2, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2, 9, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3, 14, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (4, 16, 151, NULL, NULL);
INSERT INTO public.agile_data VALUES (5, 19, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (6, 20, 146, NULL, NULL);
INSERT INTO public.agile_data VALUES (7, 21, 141, NULL, NULL);
INSERT INTO public.agile_data VALUES (8, 18, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (9, 32, 106, NULL, NULL);
INSERT INTO public.agile_data VALUES (10, 38, 101, NULL, NULL);
INSERT INTO public.agile_data VALUES (11, 40, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (12, 44, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (13, 50, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (14, 47, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (15, 66, 96, NULL, NULL);
INSERT INTO public.agile_data VALUES (16, 67, 153, NULL, NULL);
INSERT INTO public.agile_data VALUES (17, 64, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (18, 69, 86, NULL, NULL);
INSERT INTO public.agile_data VALUES (19, 30, 116, NULL, NULL);
INSERT INTO public.agile_data VALUES (20, 51, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (21, 45, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (22, 41, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (23, 58, 152, NULL, NULL);
INSERT INTO public.agile_data VALUES (24, 74, 66, NULL, NULL);
INSERT INTO public.agile_data VALUES (25, 43, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (27, 72, 76, NULL, NULL);
INSERT INTO public.agile_data VALUES (28, 73, 71, NULL, NULL);
INSERT INTO public.agile_data VALUES (29, 75, 61, NULL, NULL);
INSERT INTO public.agile_data VALUES (30, 71, 81, NULL, NULL);
INSERT INTO public.agile_data VALUES (31, 96, 158, NULL, NULL);
INSERT INTO public.agile_data VALUES (32, 26, 136, NULL, NULL);
INSERT INTO public.agile_data VALUES (33, 90, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (34, 91, 154, NULL, NULL);
INSERT INTO public.agile_data VALUES (35, 92, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (36, 107, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (37, 103, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (38, 104, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (39, 105, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (40, 106, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (41, 28, 126, NULL, NULL);
INSERT INTO public.agile_data VALUES (42, 31, 111, NULL, NULL);
INSERT INTO public.agile_data VALUES (43, 128, 46, NULL, NULL);
INSERT INTO public.agile_data VALUES (44, 136, 161, NULL, NULL);
INSERT INTO public.agile_data VALUES (45, 138, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (46, 142, 166, NULL, NULL);
INSERT INTO public.agile_data VALUES (47, 155, 26, NULL, NULL);
INSERT INTO public.agile_data VALUES (48, 156, 21, NULL, NULL);
INSERT INTO public.agile_data VALUES (50, 12, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (51, 158, 11, NULL, NULL);
INSERT INTO public.agile_data VALUES (52, 164, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (53, 162, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (54, 93, 155, NULL, NULL);
INSERT INTO public.agile_data VALUES (55, 94, 156, NULL, NULL);
INSERT INTO public.agile_data VALUES (56, 95, 157, NULL, NULL);
INSERT INTO public.agile_data VALUES (57, 134, 159, NULL, NULL);
INSERT INTO public.agile_data VALUES (58, 135, 160, NULL, NULL);
INSERT INTO public.agile_data VALUES (59, 137, 162, NULL, NULL);
INSERT INTO public.agile_data VALUES (60, 139, 163, NULL, NULL);
INSERT INTO public.agile_data VALUES (61, 140, 164, NULL, NULL);
INSERT INTO public.agile_data VALUES (62, 141, 165, NULL, NULL);
INSERT INTO public.agile_data VALUES (63, 143, 167, NULL, NULL);
INSERT INTO public.agile_data VALUES (64, 149, 168, NULL, NULL);
INSERT INTO public.agile_data VALUES (65, 150, 169, NULL, NULL);
INSERT INTO public.agile_data VALUES (66, 151, 170, NULL, NULL);
INSERT INTO public.agile_data VALUES (67, 152, 171, NULL, NULL);
INSERT INTO public.agile_data VALUES (68, 153, 172, NULL, NULL);
INSERT INTO public.agile_data VALUES (69, 154, 173, NULL, NULL);
INSERT INTO public.agile_data VALUES (70, 166, 174, NULL, NULL);
INSERT INTO public.agile_data VALUES (71, 168, 175, NULL, NULL);
INSERT INTO public.agile_data VALUES (72, 169, 176, NULL, NULL);
INSERT INTO public.agile_data VALUES (73, 27, 131, NULL, NULL);
INSERT INTO public.agile_data VALUES (74, 29, 121, NULL, NULL);
INSERT INTO public.agile_data VALUES (75, 68, 91, NULL, NULL);
INSERT INTO public.agile_data VALUES (76, 86, 56, NULL, NULL);
INSERT INTO public.agile_data VALUES (77, 89, 51, NULL, NULL);
INSERT INTO public.agile_data VALUES (78, 129, 41, NULL, NULL);
INSERT INTO public.agile_data VALUES (79, 130, 36, NULL, NULL);
INSERT INTO public.agile_data VALUES (80, 131, 31, NULL, NULL);
INSERT INTO public.agile_data VALUES (81, 157, 16, NULL, NULL);
INSERT INTO public.agile_data VALUES (82, 159, 6, NULL, NULL);
INSERT INTO public.agile_data VALUES (83, 160, 1, NULL, NULL);
INSERT INTO public.agile_data VALUES (84, 161, 0, NULL, NULL);
INSERT INTO public.agile_data VALUES (85, 147, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (86, 148, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (87, 205, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (88, 249, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (89, 254, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (90, 284, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (91, 285, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (92, 287, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (93, 288, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (94, 289, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (95, 292, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (97, 380, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (99, 398, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (100, 412, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (101, 413, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (102, 417, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (105, 433, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (106, 415, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (108, 419, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (109, 454, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (110, 426, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (111, 427, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (112, 429, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (113, 421, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (114, 423, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (115, 425, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (116, 458, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (117, 462, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (118, 464, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (119, 467, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (120, 460, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (121, 461, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (122, 474, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (123, 472, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (124, 476, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (125, 475, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (129, 473, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (130, 410, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (131, 411, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (132, 484, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (133, 463, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (134, 402, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (135, 495, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (136, 527, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (137, 528, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (138, 529, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (139, 490, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (140, 530, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (141, 492, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (142, 534, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (143, 541, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (144, 466, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (145, 468, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (146, 469, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (147, 544, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (148, 545, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (149, 470, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (150, 571, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (151, 572, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (152, 575, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (157, 629, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (158, 628, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (159, 634, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (161, 635, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (163, 641, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (164, 646, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (165, 648, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (166, 594, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (167, 627, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (170, 663, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (171, 667, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (172, 647, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (173, 630, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (174, 672, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (175, 676, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (176, 690, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (177, 693, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (178, 694, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (179, 700, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (180, 654, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (181, 702, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (182, 755, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (184, 800, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (185, 815, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (186, 778, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (187, 777, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (188, 776, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (189, 870, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (190, 855, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (191, 888, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (192, 334, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (193, 335, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (194, 891, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (195, 910, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (196, 911, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (197, 912, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (198, 913, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (199, 337, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (200, 336, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (201, 894, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (202, 895, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (203, 896, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (204, 897, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (205, 898, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (206, 900, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (207, 889, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (208, 890, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (209, 901, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (210, 902, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (211, 903, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (212, 904, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (213, 905, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (214, 906, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (215, 920, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (216, 925, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (217, 928, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (218, 929, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (219, 923, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (220, 926, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (221, 995, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (222, 1002, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (223, 1001, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (224, 967, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (225, 1007, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (226, 1006, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (227, 968, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (229, 972, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (230, 924, 0, NULL, NULL);
INSERT INTO public.agile_data VALUES (231, 966, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (232, 1021, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (233, 1031, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (236, 1034, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (237, 1024, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (238, 1025, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (239, 1026, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (240, 1020, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (241, 1022, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (242, 1023, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (243, 1028, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (244, 1027, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (246, 1044, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (248, 1050, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (249, 1052, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (250, 1054, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (251, 1053, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (252, 1051, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (253, 1058, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (254, 1066, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (255, 1067, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (256, 1079, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (257, 1088, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (258, 1089, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (259, 1092, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (260, 1100, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (261, 1104, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (262, 1105, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (263, 1106, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (264, 1107, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (265, 1091, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (266, 1108, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (267, 1110, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (268, 1117, 516, NULL, NULL);
INSERT INTO public.agile_data VALUES (269, 1124, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (270, 1178, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (271, 1173, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (272, 1179, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (273, 1181, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (274, 1142, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (275, 1126, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (276, 1114, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (277, 1116, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (278, 1194, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (279, 1191, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (280, 1192, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (281, 1115, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (282, 1119, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (283, 1193, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (284, 1074, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (285, 1199, 517, NULL, NULL);
INSERT INTO public.agile_data VALUES (286, 1211, 126, NULL, NULL);
INSERT INTO public.agile_data VALUES (287, 1216, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (288, 1190, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (289, 1042, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (290, 1041, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (292, 1310, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (293, 1309, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (294, 1339, 62, NULL, NULL);
INSERT INTO public.agile_data VALUES (295, 1011, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (296, 1029, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (297, 1030, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (298, 1351, 391, NULL, NULL);
INSERT INTO public.agile_data VALUES (299, 1363, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (300, 1362, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (301, 1196, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (302, 1073, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (303, 1348, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (304, 1307, 491, NULL, NULL);
INSERT INTO public.agile_data VALUES (305, 1311, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (306, 1171, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (307, 1172, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (308, 1370, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (309, 1182, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (310, 1180, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (312, 1144, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (313, 1169, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (315, 1368, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (316, 1176, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (320, 1367, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (321, 1118, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (327, 1141, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (328, 1392, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (329, 1389, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (330, 1390, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (331, 1133, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (332, 1134, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (333, 1135, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (334, 1136, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (335, 1137, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (336, 1138, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (337, 1139, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (338, 1140, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (339, 1143, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (340, 1387, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (341, 1402, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (342, 1403, 0, NULL, NULL);
INSERT INTO public.agile_data VALUES (343, 1407, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (344, 1419, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (345, 1418, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (346, 1420, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (347, 1428, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (348, 1427, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (356, 1488, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (357, 1487, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (358, 1491, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (359, 1492, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (362, 1526, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (364, 1535, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (365, 1530, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (366, 1412, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (367, 1538, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (368, 1539, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (369, 1551, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (370, 1552, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (371, 1421, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (372, 1561, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (373, 1562, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (374, 1567, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (375, 1484, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (376, 1431, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (377, 1584, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (379, 1560, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (380, 1175, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (381, 1582, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (382, 1594, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (383, 1047, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (384, 1586, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (385, 1587, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (386, 1608, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (387, 1559, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (388, 1612, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (389, 1613, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (390, 1557, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (391, 1554, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (392, 1595, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (393, 1599, 103, NULL, NULL);
INSERT INTO public.agile_data VALUES (395, 1271, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (396, 1422, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (397, 1609, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (398, 1503, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (400, 1635, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (401, 1621, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (402, 1622, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (404, 1629, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (405, 1602, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (406, 1616, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (407, 1401, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (408, 1603, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (409, 1049, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (410, 1614, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (411, 1615, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (412, 1617, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (413, 1186, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (414, 1183, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (415, 1623, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (416, 1504, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (417, 1505, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (418, 1659, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (419, 1660, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (420, 1661, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (421, 1662, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (422, 1663, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (423, 1664, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (424, 1665, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (425, 1666, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (426, 1667, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (427, 1123, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (428, 1607, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (429, 1673, 105, NULL, NULL);
INSERT INTO public.agile_data VALUES (430, 1683, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (431, 1685, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (432, 1693, 46, NULL, NULL);
INSERT INTO public.agile_data VALUES (433, 1694, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (434, 1692, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (435, 1695, 91, NULL, NULL);
INSERT INTO public.agile_data VALUES (436, 1699, 41, NULL, NULL);
INSERT INTO public.agile_data VALUES (437, 1696, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (438, 1689, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (439, 1690, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (440, 1702, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (441, 1706, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (442, 1688, 51, NULL, NULL);
INSERT INTO public.agile_data VALUES (443, 1708, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (444, 1719, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (445, 1707, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (446, 1711, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (447, 1712, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (448, 1697, 21, NULL, NULL);
INSERT INTO public.agile_data VALUES (449, 1698, 81, NULL, NULL);
INSERT INTO public.agile_data VALUES (450, 1674, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (451, 1726, 26, NULL, NULL);
INSERT INTO public.agile_data VALUES (452, 1735, 6, NULL, NULL);
INSERT INTO public.agile_data VALUES (453, 1736, 1, NULL, NULL);
INSERT INTO public.agile_data VALUES (454, 1737, 0, NULL, NULL);
INSERT INTO public.agile_data VALUES (455, 1732, 86, NULL, NULL);
INSERT INTO public.agile_data VALUES (456, 1741, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (457, 1746, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (458, 1752, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (459, 1757, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (460, 1760, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (461, 1009, 6, NULL, NULL);
INSERT INTO public.agile_data VALUES (462, 1019, 1, NULL, NULL);
INSERT INTO public.agile_data VALUES (463, 1008, 7, NULL, NULL);
INSERT INTO public.agile_data VALUES (464, 1756, 96, NULL, NULL);
INSERT INTO public.agile_data VALUES (465, 1745, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (466, 1733, 76, NULL, NULL);
INSERT INTO public.agile_data VALUES (467, 1734, 71, NULL, NULL);
INSERT INTO public.agile_data VALUES (468, 1611, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (470, 1681, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (471, 1772, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (472, 1740, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (473, 1669, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (474, 1777, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (475, 1778, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (476, 1779, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (477, 1785, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (478, 1122, 522, NULL, NULL);
INSERT INTO public.agile_data VALUES (479, 1295, 511, NULL, NULL);
INSERT INTO public.agile_data VALUES (480, 1299, 506, NULL, NULL);
INSERT INTO public.agile_data VALUES (481, 1300, 501, NULL, NULL);
INSERT INTO public.agile_data VALUES (482, 1304, 496, NULL, NULL);
INSERT INTO public.agile_data VALUES (483, 1308, 486, NULL, NULL);
INSERT INTO public.agile_data VALUES (484, 1381, 481, NULL, NULL);
INSERT INTO public.agile_data VALUES (485, 1340, 476, NULL, NULL);
INSERT INTO public.agile_data VALUES (486, 1306, 471, NULL, NULL);
INSERT INTO public.agile_data VALUES (487, 1285, 466, NULL, NULL);
INSERT INTO public.agile_data VALUES (488, 1287, 461, NULL, NULL);
INSERT INTO public.agile_data VALUES (489, 1288, 456, NULL, NULL);
INSERT INTO public.agile_data VALUES (490, 1289, 451, NULL, NULL);
INSERT INTO public.agile_data VALUES (491, 1292, 446, NULL, NULL);
INSERT INTO public.agile_data VALUES (492, 1293, 441, NULL, NULL);
INSERT INTO public.agile_data VALUES (493, 1305, 436, NULL, NULL);
INSERT INTO public.agile_data VALUES (494, 1314, 431, NULL, NULL);
INSERT INTO public.agile_data VALUES (495, 1316, 421, NULL, NULL);
INSERT INTO public.agile_data VALUES (496, 1317, 416, NULL, NULL);
INSERT INTO public.agile_data VALUES (497, 1318, 411, NULL, NULL);
INSERT INTO public.agile_data VALUES (498, 1352, 426, NULL, NULL);
INSERT INTO public.agile_data VALUES (499, 1355, 392, NULL, NULL);
INSERT INTO public.agile_data VALUES (500, 1356, 398, NULL, NULL);
INSERT INTO public.agile_data VALUES (501, 1357, 393, NULL, NULL);
INSERT INTO public.agile_data VALUES (502, 1360, 386, NULL, NULL);
INSERT INTO public.agile_data VALUES (503, 1361, 381, NULL, NULL);
INSERT INTO public.agile_data VALUES (504, 1321, 376, NULL, NULL);
INSERT INTO public.agile_data VALUES (505, 1322, 371, NULL, NULL);
INSERT INTO public.agile_data VALUES (506, 1323, 366, NULL, NULL);
INSERT INTO public.agile_data VALUES (507, 1326, 361, NULL, NULL);
INSERT INTO public.agile_data VALUES (508, 1328, 356, NULL, NULL);
INSERT INTO public.agile_data VALUES (509, 1329, 346, NULL, NULL);
INSERT INTO public.agile_data VALUES (510, 1330, 341, NULL, NULL);
INSERT INTO public.agile_data VALUES (511, 1331, 336, NULL, NULL);
INSERT INTO public.agile_data VALUES (512, 1334, 326, NULL, NULL);
INSERT INTO public.agile_data VALUES (513, 1336, 331, NULL, NULL);
INSERT INTO public.agile_data VALUES (514, 1337, 316, NULL, NULL);
INSERT INTO public.agile_data VALUES (515, 1341, 317, NULL, NULL);
INSERT INTO public.agile_data VALUES (516, 1343, 351, NULL, NULL);
INSERT INTO public.agile_data VALUES (517, 1249, 311, NULL, NULL);
INSERT INTO public.agile_data VALUES (518, 1250, 306, NULL, NULL);
INSERT INTO public.agile_data VALUES (519, 1251, 301, NULL, NULL);
INSERT INTO public.agile_data VALUES (520, 1253, 271, NULL, NULL);
INSERT INTO public.agile_data VALUES (521, 1255, 261, NULL, NULL);
INSERT INTO public.agile_data VALUES (522, 1256, 256, NULL, NULL);
INSERT INTO public.agile_data VALUES (523, 1257, 251, NULL, NULL);
INSERT INTO public.agile_data VALUES (524, 1258, 246, NULL, NULL);
INSERT INTO public.agile_data VALUES (525, 1260, 231, NULL, NULL);
INSERT INTO public.agile_data VALUES (526, 1261, 237, NULL, NULL);
INSERT INTO public.agile_data VALUES (527, 1262, 226, NULL, NULL);
INSERT INTO public.agile_data VALUES (528, 1263, 221, NULL, NULL);
INSERT INTO public.agile_data VALUES (529, 1265, 216, NULL, NULL);
INSERT INTO public.agile_data VALUES (530, 1267, 211, NULL, NULL);
INSERT INTO public.agile_data VALUES (531, 1268, 206, NULL, NULL);
INSERT INTO public.agile_data VALUES (532, 1269, 286, NULL, NULL);
INSERT INTO public.agile_data VALUES (533, 1277, 281, NULL, NULL);
INSERT INTO public.agile_data VALUES (534, 1278, 196, NULL, NULL);
INSERT INTO public.agile_data VALUES (535, 1279, 266, NULL, NULL);
INSERT INTO public.agile_data VALUES (536, 1266, 191, NULL, NULL);
INSERT INTO public.agile_data VALUES (537, 1224, 197, NULL, NULL);
INSERT INTO public.agile_data VALUES (538, 1225, 186, NULL, NULL);
INSERT INTO public.agile_data VALUES (539, 1226, 296, NULL, NULL);
INSERT INTO public.agile_data VALUES (540, 1227, 291, NULL, NULL);
INSERT INTO public.agile_data VALUES (541, 1228, 181, NULL, NULL);
INSERT INTO public.agile_data VALUES (542, 1229, 176, NULL, NULL);
INSERT INTO public.agile_data VALUES (543, 1230, 171, NULL, NULL);
INSERT INTO public.agile_data VALUES (544, 1231, 272, NULL, NULL);
INSERT INTO public.agile_data VALUES (545, 1232, 166, NULL, NULL);
INSERT INTO public.agile_data VALUES (546, 1233, 161, NULL, NULL);
INSERT INTO public.agile_data VALUES (547, 1234, 156, NULL, NULL);
INSERT INTO public.agile_data VALUES (548, 1235, 151, NULL, NULL);
INSERT INTO public.agile_data VALUES (549, 1236, 146, NULL, NULL);
INSERT INTO public.agile_data VALUES (550, 1237, 141, NULL, NULL);
INSERT INTO public.agile_data VALUES (551, 1238, 136, NULL, NULL);
INSERT INTO public.agile_data VALUES (552, 1239, 232, NULL, NULL);
INSERT INTO public.agile_data VALUES (553, 1240, 131, NULL, NULL);
INSERT INTO public.agile_data VALUES (554, 1241, 121, NULL, NULL);
INSERT INTO public.agile_data VALUES (555, 1242, 116, NULL, NULL);
INSERT INTO public.agile_data VALUES (556, 1243, 111, NULL, NULL);
INSERT INTO public.agile_data VALUES (557, 1244, 106, NULL, NULL);
INSERT INTO public.agile_data VALUES (558, 1245, 101, NULL, NULL);
INSERT INTO public.agile_data VALUES (559, 1246, 96, NULL, NULL);
INSERT INTO public.agile_data VALUES (560, 1247, 91, NULL, NULL);
INSERT INTO public.agile_data VALUES (561, 1223, 86, NULL, NULL);
INSERT INTO public.agile_data VALUES (562, 1215, 76, NULL, NULL);
INSERT INTO public.agile_data VALUES (563, 1214, 61, NULL, NULL);
INSERT INTO public.agile_data VALUES (564, 1213, 56, NULL, NULL);
INSERT INTO public.agile_data VALUES (565, 1212, 51, NULL, NULL);
INSERT INTO public.agile_data VALUES (566, 1210, 46, NULL, NULL);
INSERT INTO public.agile_data VALUES (567, 1264, 36, NULL, NULL);
INSERT INTO public.agile_data VALUES (568, 1259, 16, NULL, NULL);
INSERT INTO public.agile_data VALUES (569, 1254, 31, NULL, NULL);
INSERT INTO public.agile_data VALUES (570, 1252, 81, NULL, NULL);
INSERT INTO public.agile_data VALUES (571, 1248, 71, NULL, NULL);
INSERT INTO public.agile_data VALUES (572, 1335, 22, NULL, NULL);
INSERT INTO public.agile_data VALUES (573, 1354, 41, NULL, NULL);
INSERT INTO public.agile_data VALUES (574, 1350, 11, NULL, NULL);
INSERT INTO public.agile_data VALUES (575, 1315, 17, NULL, NULL);
INSERT INTO public.agile_data VALUES (576, 1313, 6, NULL, NULL);
INSERT INTO public.agile_data VALUES (577, 1290, 0, NULL, NULL);
INSERT INTO public.agile_data VALUES (578, 1282, 1, NULL, NULL);
INSERT INTO public.agile_data VALUES (579, 1682, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (580, 1766, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (581, 1767, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (582, 1768, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (583, 1769, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (584, 1771, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (585, 1680, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (586, 1776, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (587, 1790, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (588, 1796, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (589, 1764, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (590, 1786, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (591, 1793, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (592, 1791, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (593, 1739, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (594, 1803, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (595, 1804, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (596, 1798, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (597, 1805, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (598, 1812, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (599, 1817, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (600, 1828, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (601, 1834, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (602, 1738, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (603, 1835, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (604, 1416, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (605, 1376, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (606, 1830, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (607, 1057, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (608, 1787, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (609, 1788, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (610, 1845, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (611, 1668, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (612, 1373, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (613, 1087, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (614, 1095, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (615, 1727, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (616, 1754, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (617, 1851, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (618, 1846, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (619, 1852, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (620, 1670, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (621, 1855, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (622, 1789, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (623, 1847, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (624, 1860, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (625, 1863, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (626, 1869, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (627, 1868, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (628, 1871, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (629, 1872, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (630, 1876, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (631, 1875, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (632, 1874, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (633, 1639, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (634, 1880, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (635, 1879, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (636, 1861, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (637, 1862, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (638, 1883, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (639, 1638, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (640, 1865, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (641, 1017, 101, NULL, NULL);
INSERT INTO public.agile_data VALUES (642, 1598, 102, NULL, NULL);
INSERT INTO public.agile_data VALUES (643, 1646, 104, NULL, NULL);
INSERT INTO public.agile_data VALUES (644, 1589, 66, NULL, NULL);
INSERT INTO public.agile_data VALUES (645, 1590, 61, NULL, NULL);
INSERT INTO public.agile_data VALUES (646, 1591, 56, NULL, NULL);
INSERT INTO public.agile_data VALUES (647, 1721, 36, NULL, NULL);
INSERT INTO public.agile_data VALUES (648, 1722, 31, NULL, NULL);
INSERT INTO public.agile_data VALUES (649, 1729, 16, NULL, NULL);
INSERT INTO public.agile_data VALUES (650, 1731, 11, NULL, NULL);
INSERT INTO public.agile_data VALUES (651, 1890, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (652, 1895, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (653, 1898, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (654, 1145, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (655, 1902, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (656, 1903, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (657, 1881, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (658, 1904, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (659, 1824, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (660, 1912, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (661, 1925, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (662, 1910, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (663, 1928, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (664, 1929, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (665, 1930, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (666, 1931, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (667, 1932, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (668, 1933, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (669, 1934, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (670, 1935, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (671, 1936, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (672, 1940, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (673, 1946, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (674, 1950, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (675, 1951, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (676, 1952, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (677, 1920, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (678, 1953, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (679, 1954, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (680, 1955, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (681, 1956, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (682, 1957, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (683, 1958, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (684, 1919, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (685, 1959, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (686, 1960, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (687, 1961, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (688, 1962, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (689, 1963, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (690, 1968, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (691, 1969, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (692, 1970, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (693, 1971, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (694, 1972, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (695, 1973, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (696, 1974, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (698, 1976, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (699, 1977, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (700, 1978, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (702, 1980, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (703, 1981, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (704, 1624, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (705, 1184, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (706, 1185, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (707, 1600, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (708, 1982, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (709, 1146, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (710, 1640, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (711, 1641, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (712, 1601, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (713, 1983, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (714, 1885, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (715, 1154, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (716, 1155, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (717, 1156, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (718, 1157, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (719, 1158, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (720, 1159, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (721, 1160, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (722, 1161, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (723, 1162, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (724, 1163, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (725, 1164, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (726, 1165, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (727, 1166, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (728, 1984, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (729, 1985, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (730, 1986, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (731, 1897, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (732, 1896, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (733, 1987, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (734, 1988, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (735, 1989, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (736, 1990, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (737, 1991, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (738, 1992, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (739, 1993, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (740, 1994, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (741, 1995, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (742, 1996, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (743, 1997, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (744, 1998, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (745, 1999, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (746, 1507, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (747, 1508, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (748, 1509, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (749, 1510, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (750, 1432, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (751, 1433, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (752, 1495, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (753, 1496, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (754, 1498, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (755, 1568, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (756, 1569, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (757, 1570, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (758, 1710, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (759, 1716, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (760, 1717, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (761, 1718, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (762, 1506, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (763, 1485, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (764, 1489, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (765, 1490, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (766, 1493, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (767, 1494, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (768, 1499, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (769, 1500, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (770, 1501, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (771, 1486, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (772, 1525, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (773, 1528, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (774, 1529, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (775, 1564, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (776, 1578, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (777, 1579, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (778, 1565, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (779, 1566, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (780, 1571, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (781, 1572, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (782, 1573, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (783, 1574, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (784, 1679, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (785, 1770, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (786, 1715, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (787, 1780, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (788, 1781, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (789, 1782, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (790, 1783, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (791, 2000, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (792, 1720, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (793, 1627, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (794, 1626, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (795, 2001, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (796, 2002, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (797, 2003, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (798, 2004, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (799, 2005, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (800, 2006, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (801, 2007, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (802, 2008, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (803, 2009, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (804, 2010, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (805, 2011, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (806, 2012, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (807, 2013, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (808, 2014, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (810, 2016, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (811, 2017, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (812, 2018, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (813, 2019, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (814, 2020, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (815, 2021, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (816, 2022, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (817, 2023, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (818, 2024, NULL, 2, NULL);
INSERT INTO public.agile_data VALUES (819, 2025, NULL, 1, NULL);
INSERT INTO public.agile_data VALUES (820, 2026, NULL, 2, NULL);
INSERT INTO public.agile_data VALUES (821, 2027, NULL, 2, NULL);
INSERT INTO public.agile_data VALUES (822, 2028, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (823, 2029, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (824, 2030, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (826, 2032, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (827, 2033, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (828, 2034, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (829, 2035, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (830, 2036, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (831, 2037, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (832, 2038, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (835, 2041, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (836, 2042, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (842, 2048, NULL, 1, NULL);
INSERT INTO public.agile_data VALUES (843, 2049, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (844, 2050, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (845, 2051, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (846, 2052, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (847, 2053, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (848, 2054, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (849, 2055, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (850, 2056, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (851, 2057, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (852, 2058, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (853, 2059, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (854, 2060, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (855, 2061, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (856, 2062, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (858, 2064, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (859, 2065, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (860, 2066, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (861, 2067, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (862, 2068, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (863, 2069, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (864, 2070, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (865, 2071, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (866, 2072, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (867, 2073, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (868, 2074, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (869, 2075, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (870, 2076, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (871, 2077, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (872, 2078, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (873, 2079, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (874, 2080, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (875, 2081, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (876, 2082, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (877, 2083, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (878, 2084, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (879, 2085, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (880, 2086, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (881, 2087, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (882, 2088, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (883, 2089, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (884, 2090, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (885, 2091, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (886, 2092, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (887, 2093, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (888, 2094, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (889, 2095, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (890, 2096, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (891, 2097, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (892, 2098, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (893, 2099, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (894, 2100, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (895, 2101, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (896, 2102, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (897, 2103, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (898, 2104, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (899, 2105, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (900, 2106, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (901, 2107, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (902, 2108, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (903, 2109, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (904, 2110, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (905, 2111, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (906, 2112, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (907, 2113, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (908, 2114, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (909, 2115, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (910, 2116, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (911, 2117, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (912, 2118, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (913, 2119, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (917, 2123, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (918, 2124, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (919, 2125, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (920, 2126, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (921, 2127, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (922, 2128, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (923, 2129, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (924, 2130, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (925, 2131, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (926, 2132, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (928, 2134, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (929, 2135, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (930, 2136, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (931, 2137, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (932, 2138, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (933, 2139, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (934, 2140, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (935, 2141, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (937, 2143, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (938, 2144, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (939, 2145, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (940, 2146, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (941, 2147, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (942, 2148, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (943, 2149, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (944, 2150, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (945, 2151, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (946, 2152, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (947, 2153, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (948, 2154, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (949, 2155, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (950, 2156, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (951, 2157, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (952, 2158, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (953, 2159, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (954, 2160, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (955, 2161, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (956, 2162, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (957, 2163, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (958, 2164, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (959, 2165, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (960, 2166, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (961, 2167, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (962, 2168, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (963, 2169, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (964, 2170, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (965, 2171, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (966, 2172, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (967, 2173, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (968, 2174, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (969, 2175, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (970, 2176, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (971, 2177, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (972, 2178, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (973, 2179, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (974, 2180, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (975, 2181, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (976, 2182, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (977, 2183, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (979, 2185, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (980, 2186, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (981, 2187, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (982, 2188, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (983, 2189, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (984, 2190, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (985, 2191, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (986, 2192, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (987, 2193, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (991, 2197, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (992, 2198, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (993, 2199, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (994, 2200, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (995, 2201, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (996, 2202, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (997, 2203, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (998, 2204, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (999, 2205, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1000, 2206, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1001, 2207, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1002, 2208, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1003, 2209, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1004, 2210, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1005, 2211, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1006, 2212, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1007, 2213, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1009, 2215, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1010, 2216, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1011, 2217, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1012, 2218, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1013, 2219, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1014, 2220, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1015, 2221, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1016, 2222, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1017, 2223, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1018, 2224, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1019, 2225, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1020, 2226, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1021, 2227, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1023, 2229, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1024, 2230, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1025, 2231, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1026, 2232, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1027, 2233, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1028, 2234, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1029, 2235, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1030, 2236, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1031, 2237, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1032, 2238, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1033, 2239, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1036, 2242, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1037, 2243, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1038, 2244, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1039, 2245, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1040, 2246, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1041, 2247, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1042, 2248, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1043, 2249, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1044, 2250, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1045, 2251, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1046, 2252, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1047, 2253, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1048, 2254, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1049, 2255, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1050, 2256, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1051, 2257, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1052, 2258, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1053, 2259, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1054, 2260, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1056, 2262, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1057, 2263, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1058, 2264, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1059, 2265, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1060, 2266, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1061, 2267, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1062, 2268, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1063, 2269, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1064, 2270, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1065, 2271, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1068, 2274, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1069, 2275, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1070, 2276, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1071, 2277, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1073, 2279, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1074, 2280, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1075, 2281, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1076, 2282, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1077, 2283, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1078, 2284, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1079, 2285, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1080, 2286, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1081, 2287, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1082, 2288, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1083, 2289, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1084, 2290, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1085, 2291, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1086, 2292, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1087, 2293, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1088, 2294, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1089, 2295, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1090, 2296, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1091, 2297, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1092, 2298, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1093, 2299, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1094, 2300, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1095, 2301, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1096, 2302, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1097, 2303, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1098, 2304, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1099, 2305, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1100, 2306, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1101, 2307, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1103, 2309, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1104, 2310, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1105, 2311, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1106, 2312, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1107, 2313, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1108, 2314, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1109, 2315, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1110, 2316, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1111, 2317, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1112, 2318, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1113, 2319, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1114, 2320, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1115, 2321, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1116, 2322, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1117, 2323, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1118, 2324, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1119, 2325, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1120, 2326, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1121, 2327, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1122, 2328, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1123, 2329, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1124, 2330, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1125, 2331, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1126, 2332, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1127, 2333, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1128, 2334, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1129, 2335, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1130, 2336, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1131, 2337, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1132, 2338, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1133, 2339, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1134, 2340, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1135, 2341, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1136, 2342, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1137, 2343, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1138, 2344, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1139, 2345, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1142, 2348, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1143, 2349, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1144, 2350, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1145, 2351, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1146, 2352, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1147, 2353, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1148, 2354, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1149, 2355, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1150, 2356, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1151, 2357, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1152, 2358, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1153, 2359, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1154, 2360, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1155, 2361, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1156, 2362, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1157, 2363, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1158, 2364, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1159, 2365, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1160, 2366, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1161, 2367, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1162, 2368, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1163, 2369, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1164, 2370, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1165, 2371, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1166, 2372, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1167, 2373, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1168, 2374, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1169, 2375, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1170, 2376, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1171, 2377, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1172, 2378, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1173, 2379, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1174, 2380, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1176, 2382, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1177, 2383, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1178, 2384, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1179, 2385, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1180, 2386, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1181, 2387, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1182, 2388, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1183, 2389, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1184, 2390, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1185, 2391, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1186, 2392, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1187, 2393, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1188, 2394, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1189, 2395, 9, NULL, NULL);
INSERT INTO public.agile_data VALUES (1190, 2396, 8, NULL, NULL);
INSERT INTO public.agile_data VALUES (1191, 2397, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1192, 2398, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1193, 2399, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1194, 2400, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1195, 2401, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1196, 2402, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1197, 2403, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1198, 2404, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1199, 2405, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1200, 2406, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1201, 2407, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1202, 2408, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1203, 2409, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1204, 2410, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1205, 2411, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1206, 2412, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1207, 2413, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1208, 2414, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1209, 2415, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1210, 2416, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1211, 2417, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1212, 2418, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1213, 2419, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1214, 2420, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1215, 2421, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1216, 2422, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1217, 2423, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1218, 2424, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1219, 2425, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1221, 2427, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1222, 2428, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1223, 2429, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1224, 2430, 10, NULL, NULL);
INSERT INTO public.agile_data VALUES (1225, 2431, 11, NULL, NULL);
INSERT INTO public.agile_data VALUES (1226, 2432, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1227, 2433, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1228, 2434, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1229, 2435, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1230, 2436, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1231, 2437, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1232, 2438, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1233, 2439, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1234, 2440, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1235, 2441, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1236, 2442, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1237, 2443, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1238, 2444, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1239, 2445, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1240, 2446, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1241, 2447, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1242, 2448, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1243, 2449, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1244, 2450, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1245, 2451, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1246, 2452, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1247, 2453, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1248, 2454, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1249, 2455, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1251, 2457, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1252, 2458, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1253, 2459, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1254, 2460, 12, NULL, NULL);
INSERT INTO public.agile_data VALUES (1255, 2461, 4, NULL, NULL);
INSERT INTO public.agile_data VALUES (1256, 2462, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1257, 2463, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1258, 2464, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1270, 2476, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1272, 2478, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1273, 2479, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1274, 2480, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1275, 2481, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1276, 2482, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1277, 2483, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1278, 2484, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1279, 2485, 5, NULL, NULL);
INSERT INTO public.agile_data VALUES (1280, 2486, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1281, 2487, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1282, 2488, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1283, 2489, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1286, 2492, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1287, 2493, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1288, 2494, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1289, 2495, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1290, 2496, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1291, 2497, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1292, 2498, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1293, 2499, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1294, 2500, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1295, 2501, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1296, 2502, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1297, 2503, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1298, 2504, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1299, 2505, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1300, 2506, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1301, 2507, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1302, 2508, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1303, 2509, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1304, 2510, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1305, 2511, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1306, 2512, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1307, 2513, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1308, 2514, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1309, 2515, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1310, 2516, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1311, 2517, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1312, 2518, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1313, 2519, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1314, 2520, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1315, 2521, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1316, 2522, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1317, 2523, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1318, 2524, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1319, 2525, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1320, 2526, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1323, 2529, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1324, 2530, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1325, 2531, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1326, 2532, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1328, 2534, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1329, 2535, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1330, 2536, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1331, 2537, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1332, 2538, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1333, 2539, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1334, 2540, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1335, 2541, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1336, 2542, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1337, 2543, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1338, 2544, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1339, 2545, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1340, 2546, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1341, 2547, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1342, 2548, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1343, 2549, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1344, 2550, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1345, 2551, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1346, 2552, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1347, 2553, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1348, 2554, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1349, 2555, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1350, 2556, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1351, 2557, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1352, 2558, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1353, 2559, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1354, 2560, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1355, 2561, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1356, 2562, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1357, 2563, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1358, 2564, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1359, 2565, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1360, 2566, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1361, 2567, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1362, 2568, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1363, 2569, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1364, 2570, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1365, 2571, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1366, 2572, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1367, 2573, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1368, 2574, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1369, 2575, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1370, 2576, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1371, 2577, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1372, 2578, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1373, 2579, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1374, 2580, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1375, 2581, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1376, 2582, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1377, 2583, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1378, 2584, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1379, 2585, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1380, 2586, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1381, 2587, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1382, 2588, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1383, 2589, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1384, 2590, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1385, 2591, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1386, 2592, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1387, 2593, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1388, 2594, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1389, 2595, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1390, 2596, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1391, 2597, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1392, 2598, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1393, 2599, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1394, 2600, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1395, 2601, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1396, 2602, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1397, 2603, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1398, 2604, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1399, 2605, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1400, 2606, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1401, 2607, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1402, 2608, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1403, 2609, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1404, 2610, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1405, 2611, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1406, 2612, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1407, 2613, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1408, 2614, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1409, 2615, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1410, 2616, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1411, 2617, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1412, 2618, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1413, 2619, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1414, 2620, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1415, 2621, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1416, 2622, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1417, 2623, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1418, 2624, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1419, 2625, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1420, 2626, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1421, 2627, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1422, 2628, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1423, 2629, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1424, 2630, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1425, 2631, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1426, 2632, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1427, 2633, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1428, 2634, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1430, 2636, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1431, 2637, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1432, 2638, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1433, 2639, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1434, 2640, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1435, 2641, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1436, 2642, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1437, 2643, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1438, 2644, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1439, 2645, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1440, 2646, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1441, 2647, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1443, 2649, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1444, 2650, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1445, 2651, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1446, 2652, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1447, 2653, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1448, 2654, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1449, 2655, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1450, 2656, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1451, 2657, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1452, 2658, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1453, 2659, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1454, 2660, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1455, 2661, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1456, 2662, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1457, 2663, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1458, 2664, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1459, 2665, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1460, 2666, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1461, 2667, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1462, 2668, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1463, 2669, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1464, 2670, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1465, 2671, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1466, 2672, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1467, 2673, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1468, 2674, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1469, 2675, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1470, 2676, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1471, 2677, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1472, 2678, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1473, 2679, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1474, 2680, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1475, 2681, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1476, 2682, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1477, 2683, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1478, 2684, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1479, 2685, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1480, 2686, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1481, 2687, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1482, 2688, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1483, 2689, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1484, 2690, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1485, 2691, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1486, 2692, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1487, 2693, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1488, 2694, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1489, 2695, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1490, 2696, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1491, 2697, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1492, 2698, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1493, 2699, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1494, 2700, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1495, 2701, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1496, 2702, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1497, 2703, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1498, 2704, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1499, 2705, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1500, 2706, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1501, 2707, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1502, 2708, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1503, 2709, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1504, 2710, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1505, 2711, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1506, 2712, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1507, 2713, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1508, 2714, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1509, 2715, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1510, 2716, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1511, 2717, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1512, 2718, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1513, 2719, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1514, 2720, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1515, 2721, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1516, 2722, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1517, 2723, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1518, 2724, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1519, 2725, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1520, 2726, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1521, 2727, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1522, 2728, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1523, 2729, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1524, 2730, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1525, 2731, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1526, 2732, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1527, 2733, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1528, 2734, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1529, 2735, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1530, 2736, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1532, 2738, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1533, 2739, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1534, 2740, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1535, 2741, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1536, 2742, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1537, 2743, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1542, 2748, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1543, 2749, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1545, 2751, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1546, 2752, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1547, 2753, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1548, 2754, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1549, 2755, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1550, 2756, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1551, 2757, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1552, 2758, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1553, 2759, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1554, 2760, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1555, 2761, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1556, 2762, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1557, 2763, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1558, 2764, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1559, 2765, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1560, 2766, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1561, 2767, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1562, 2768, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1563, 2769, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1564, 2770, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1565, 2771, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1566, 2772, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1567, 2773, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1568, 2774, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1569, 2775, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1570, 2776, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1571, 2777, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1572, 2778, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1573, 2779, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1574, 2780, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1575, 2781, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1576, 2782, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1577, 2783, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1578, 2784, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1579, 2785, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1580, 2786, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1581, 2787, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1582, 2788, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1583, 2789, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1585, 2791, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1586, 2792, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1587, 2793, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1588, 2794, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1589, 2795, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1590, 2796, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1591, 2797, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1592, 2798, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1593, 2799, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1594, 2800, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1595, 2801, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1596, 2802, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1597, 2803, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1598, 2804, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1599, 2805, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1600, 2806, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1601, 2807, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1602, 2808, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1604, 2809, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1605, 2810, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1606, 2811, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1607, 2812, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1608, 2813, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1609, 2814, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1610, 2815, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1614, 2819, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1615, 2820, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1616, 2821, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1617, 2822, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1618, 2823, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1619, 2824, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1620, 2825, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1621, 2826, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1622, 2827, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1623, 2828, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1624, 2829, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1625, 2830, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1626, 2831, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1627, 1809, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1628, 1810, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1629, 2832, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1630, 2833, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1631, 2834, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1632, 2835, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1633, 2836, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1634, 2837, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1635, 2838, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1636, 2839, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1637, 2840, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1640, 2843, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1641, 2844, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1642, 2845, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1643, 2846, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1644, 2847, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1645, 2848, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1646, 2849, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1647, 2850, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1648, 2851, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1649, 2852, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1650, 2853, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1651, 2854, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1653, 2856, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1658, 2861, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1659, 2862, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1660, 2863, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1661, 2864, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1662, 2865, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1663, 2866, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1664, 2867, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1665, 2868, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1666, 2869, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1668, 2871, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1669, 2872, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1670, 2873, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1671, 2874, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1672, 2875, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1673, 2876, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1674, 2877, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1675, 2878, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1676, 2879, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1677, 2880, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1678, 2881, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1679, 1672, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1680, 2882, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1681, 2883, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1682, 2884, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1683, 2885, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1684, 2886, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1685, 2887, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1686, 2888, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1687, 2889, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1690, 2892, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1691, 2893, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1692, 2894, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1693, 2895, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1694, 1583, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1695, 1806, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1696, 1819, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1697, 1411, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1698, 2896, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1699, 2897, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1700, 2898, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1701, 2899, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1702, 2900, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1703, 2901, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1704, 2902, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1705, 2903, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1706, 2904, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1707, 2905, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1708, 2906, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1709, 2907, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1714, 2912, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1715, 2913, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1716, 2914, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1717, 2915, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1718, 2916, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1719, 2917, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1720, 2918, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1721, 2919, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1722, 2920, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1724, 2922, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1725, 2923, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1726, 2924, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1727, 2925, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1728, 2926, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1729, 2927, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1730, 2928, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1734, 2932, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1735, 2933, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1736, 2934, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1737, 2935, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1738, 2936, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1739, 2937, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1740, 2938, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1741, 2939, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1742, 2940, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1743, 2941, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1744, 2942, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1745, 2943, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1746, 2944, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1747, 2945, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1748, 2946, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1749, 2947, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1750, 2948, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1751, 2949, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1752, 2950, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1753, 2951, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1754, 2952, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1755, 2953, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1756, 2954, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1757, 2955, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1758, 2956, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1759, 2957, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1760, 2958, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1761, 2959, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1762, 2960, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1763, 2961, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1764, 2962, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1765, 2963, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1766, 2964, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1767, 2965, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1768, 2966, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1769, 2967, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1770, 2968, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1771, 2969, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1772, 2970, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1773, 2971, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1774, 2972, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1775, 2973, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1776, 2974, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1777, 2975, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1778, 2976, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1779, 2977, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1780, 2978, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1781, 2979, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1782, 2980, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1783, 2981, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1784, 2982, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1785, 2983, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1786, 2984, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1787, 2985, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1789, 2987, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1790, 2988, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1791, 2989, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1792, 2990, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1793, 2991, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1794, 2992, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1795, 2993, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1796, 2994, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1797, 2995, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1798, 2996, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1799, 2997, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1800, 2998, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1801, 2999, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1802, 3000, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1804, 3002, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1805, 3003, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1806, 3004, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1808, 3006, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1809, 3007, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1810, 3008, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1811, 3009, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1812, 3010, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1813, 3011, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1814, 3012, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1815, 3013, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1816, 3014, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1817, 3015, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1818, 3016, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1819, 3017, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1820, 3018, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1821, 3019, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1822, 3020, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1823, 3021, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1824, 3022, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1825, 3023, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1826, 3024, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1827, 3025, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1828, 3026, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1829, 3027, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1830, 3028, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1831, 3029, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1832, 3030, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1833, 3031, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1834, 3032, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1835, 3033, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1836, 3034, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1837, 3035, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1838, 3036, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1839, 3037, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1840, 3038, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1841, 3039, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1842, 3040, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1843, 3041, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1844, 3042, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1845, 3043, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1846, 3044, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1847, 3045, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1848, 3046, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1849, 3047, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1850, 3048, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1851, 3049, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1852, 3050, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1853, 3051, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1854, 3052, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1855, 3053, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1856, 3054, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1857, 3055, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1858, 3056, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1859, 3057, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1860, 3058, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1861, 3059, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1862, 3060, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1863, 3061, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1864, 3062, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1865, 3063, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1866, 3064, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1867, 3065, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1868, 3066, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1869, 3067, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1870, 3068, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1871, 3069, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1872, 3070, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1873, 3071, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1874, 3072, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1875, 3073, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1876, 3074, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1877, 3075, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1878, 3076, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1879, 3077, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1880, 3078, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1881, 3079, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1882, 3080, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1883, 3081, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1884, 3082, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1885, 3083, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1886, 3084, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1887, 3085, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1888, 3086, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1889, 3087, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1890, 3088, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1891, 3089, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1892, 3090, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1893, 3091, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1894, 3092, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1895, 3093, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1896, 3094, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1897, 3095, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1898, 3096, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1899, 3097, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1900, 3098, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1902, 3100, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1903, 3101, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1904, 3102, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1905, 3103, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1906, 3104, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1907, 3105, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1908, 3106, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1909, 3107, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1910, 3108, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1911, 3109, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1912, 3110, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1913, 3111, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1914, 3112, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1915, 3113, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1916, 3114, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1917, 3115, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1918, 3116, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1919, 3117, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1920, 3118, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1921, 3119, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1922, 3120, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1923, 3121, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1924, 3122, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1925, 3123, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1926, 3124, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1927, 3125, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1928, 3126, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1929, 3127, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1930, 3128, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1931, 3129, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1932, 3130, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1933, 3131, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1934, 3132, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1935, 3133, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1936, 3134, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1937, 3135, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1938, 3136, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1939, 3137, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1940, 3138, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1941, 3139, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1942, 3140, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1943, 3141, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1944, 3142, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1945, 3143, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1946, 3144, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1947, 3145, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1948, 3146, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1949, 3147, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1950, 3148, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1951, 3149, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1952, 3150, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1953, 3151, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1954, 3152, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1955, 3153, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1956, 3154, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1957, 3155, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1958, 3156, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1959, 3157, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1960, 3158, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1961, 3159, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1962, 3160, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1963, 3161, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1964, 3162, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1965, 3163, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1966, 3164, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1967, 3165, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1968, 3166, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1969, 3167, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1970, 3168, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1971, 3169, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1973, 3171, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1975, 3173, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1976, 3174, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1977, 3175, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1978, 3176, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1979, 3177, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1980, 3178, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1981, 3179, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1982, 3180, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1983, 3181, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1984, 3182, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1985, 3183, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1986, 3184, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1987, 3185, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1988, 3186, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1989, 3187, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1990, 3188, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1991, 3189, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1992, 3190, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1993, 3191, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1994, 3192, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1995, 3193, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1996, 3194, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1997, 3195, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1998, 3196, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (1999, 3197, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2000, 3198, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2001, 3199, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2002, 3200, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2003, 3201, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2004, 3202, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2005, 3203, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2006, 3204, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2007, 3205, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2008, 3206, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2009, 3207, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2010, 3208, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2011, 3209, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2012, 3210, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2013, 3211, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2014, 3212, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2015, 3213, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2016, 3214, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2017, 3215, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2018, 3216, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2019, 3217, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2020, 3218, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2021, 3219, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2022, 3220, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2023, 3221, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2024, 3222, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2026, 3224, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2027, 3225, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2028, 3226, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2029, 3227, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2030, 3228, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2032, 3230, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2033, 3231, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2034, 3232, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2035, 3233, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2036, 3234, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2037, 3235, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2038, 3236, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2039, 3237, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2040, 3238, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2041, 3239, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2042, 3240, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2043, 3241, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2044, 3242, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2045, 3243, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2046, 3244, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2047, 3245, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2048, 3246, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2049, 3247, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2050, 3248, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2051, 3249, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2052, 3250, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2053, 3251, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2054, 3252, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2055, 3253, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2056, 3254, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2057, 3255, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2058, 3256, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2059, 3257, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2060, 3258, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2061, 3259, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2062, 3260, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2063, 3261, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2064, 3262, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2065, 3263, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2066, 3264, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2067, 3265, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2068, 3266, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2069, 3267, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2070, 3268, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2071, 3269, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2073, 3271, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2074, 3272, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2075, 3273, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2076, 3274, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2077, 3275, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2078, 3276, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2079, 3277, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2080, 3278, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2081, 3279, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2082, 3280, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2083, 3281, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2084, 3282, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2085, 3283, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2086, 3284, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2087, 3285, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2088, 3286, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2089, 3287, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2090, 3288, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2091, 3289, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2092, 3290, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2093, 3291, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2094, 3292, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2095, 3293, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2096, 3294, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2097, 3295, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2098, 3296, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2099, 3297, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2100, 3298, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2101, 3299, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2102, 3300, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2103, 3301, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2104, 3302, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2105, 3303, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2106, 3304, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2107, 3305, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2108, 3306, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2109, 3307, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2110, 3308, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2111, 3309, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2112, 3310, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2113, 3311, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2114, 3312, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2115, 3313, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2116, 3314, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2117, 3315, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2118, 3316, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2119, 3317, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2120, 3318, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2121, 3319, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2122, 3320, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2123, 3321, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2124, 3322, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2125, 3323, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2126, 3324, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2127, 3325, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2128, 3326, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2129, 3327, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2130, 3328, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2131, 3329, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2132, 3330, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2133, 3331, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2134, 3332, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2136, 3334, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2137, 3335, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2139, 3337, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2140, 3338, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2141, 3339, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2142, 3340, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2143, 3341, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2144, 3342, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2145, 3343, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2146, 3344, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2147, 3345, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2148, 3346, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2149, 3347, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2150, 3348, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2151, 3349, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2152, 3350, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2153, 3351, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2154, 3352, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2155, 3353, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2156, 3354, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2157, 3355, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2158, 3356, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2159, 3357, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2160, 3358, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2161, 3359, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2162, 3360, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2163, 3361, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2164, 3362, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2165, 3363, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2166, 3364, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2167, 3365, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2168, 3366, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2169, 3367, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2170, 3368, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2171, 3369, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2172, 3370, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2173, 3371, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2174, 3372, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2175, 3373, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2176, 3374, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2177, 3375, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2178, 3376, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2179, 3377, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2180, 3378, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2181, 3379, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2182, 3380, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2183, 3381, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2184, 3382, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2185, 3383, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2186, 3384, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2187, 3385, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2188, 3386, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2189, 3387, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2190, 3388, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2191, 3389, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2192, 3390, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2193, 3391, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2194, 3392, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2195, 3393, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2196, 3394, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2197, 3395, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2198, 3396, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2199, 3397, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2200, 3398, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2201, 3399, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2202, 3400, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2203, 3401, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2204, 3402, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2205, 3403, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2206, 3404, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2207, 3405, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2208, 3406, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2209, 3407, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2210, 3408, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2211, 3409, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2213, 3411, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2214, 3412, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2215, 3413, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2216, 3414, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2217, 3415, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2218, 3416, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2219, 3417, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2220, 3418, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2221, 3419, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2222, 3420, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2223, 3421, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2224, 3422, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2225, 3423, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2227, 3425, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2228, 3426, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2229, 3427, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2230, 3428, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2231, 3429, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2232, 3430, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2233, 3431, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2234, 3432, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2235, 3433, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2236, 3434, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2237, 3435, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2238, 3436, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2239, 3437, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2240, 3438, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2241, 3439, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2242, 3440, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2243, 3441, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2244, 3442, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2245, 3443, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2246, 3444, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2247, 3445, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2248, 3446, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2249, 3447, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2250, 3448, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2251, 3449, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2252, 3450, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2253, 3451, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2254, 3452, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2255, 3453, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2256, 3454, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2259, 3457, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2260, 3458, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2261, 3459, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2262, 3460, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2263, 3461, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2264, 3462, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2265, 3463, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2266, 3464, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2267, 3465, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2268, 3466, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2269, 3467, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2270, 3468, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2271, 3469, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2272, 3470, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2273, 3471, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2274, 3472, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2275, 3473, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2276, 3474, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2277, 3475, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2278, 3476, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2279, 3477, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2280, 3478, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2281, 3479, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2282, 3480, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2283, 3481, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2284, 3482, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2285, 3483, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2286, 3484, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2287, 3485, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2288, 3486, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2289, 3487, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2290, 3488, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2291, 3489, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2292, 3490, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2293, 3491, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2294, 3492, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2295, 3493, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2296, 3494, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2297, 3495, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2298, 3496, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2299, 3497, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2300, 3498, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2301, 3499, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2302, 3500, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2303, 3501, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2304, 3502, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2305, 3503, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2306, 3504, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2307, 3505, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2308, 3506, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2309, 3507, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2310, 3508, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2311, 3509, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2312, 3510, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2313, 3511, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2314, 3512, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2315, 3513, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2316, 3514, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2317, 3515, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2318, 3516, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2319, 3517, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2320, 3518, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2321, 3519, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2322, 3520, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2323, 3521, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2324, 3522, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2325, 3523, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2326, 3524, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2327, 3525, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2328, 3526, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2329, 3527, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2330, 3528, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2331, 3529, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2332, 3530, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2333, 3531, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2334, 3532, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2335, 3533, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2336, 3534, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2337, 3535, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2338, 3536, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2339, 3537, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2340, 3538, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2341, 3539, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2342, 3540, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2343, 3541, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2344, 3542, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2345, 3543, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2346, 3544, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2347, 3545, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2348, 3546, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2349, 3547, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2350, 3548, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2351, 3549, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2352, 3550, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2353, 3551, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2354, 3552, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2355, 3553, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2356, 3554, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2357, 3555, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2358, 3556, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2359, 3557, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2360, 3558, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2361, 3559, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2362, 3560, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2363, 3561, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2364, 3562, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2365, 3563, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2366, 3564, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2367, 3565, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2368, 3566, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2369, 3567, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2370, 3568, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2371, 3569, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2372, 3570, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2373, 3571, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2374, 3572, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2375, 3573, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2376, 3574, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2377, 3575, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2378, 3576, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2379, 3577, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2380, 3578, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2381, 3579, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2382, 3580, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2383, 3581, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2384, 3582, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2385, 3583, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2386, 3584, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2387, 3585, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2388, 3586, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2389, 3587, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2390, 3588, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2391, 3589, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2392, 3590, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2393, 3591, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2394, 3592, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2395, 3593, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2396, 3594, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2397, 3595, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2398, 3596, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2399, 3597, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2400, 3598, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2401, 3599, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2402, 3600, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2403, 3601, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2404, 3602, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2405, 3603, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2406, 3604, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2407, 3605, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2408, 3606, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2409, 3607, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2410, 3608, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2411, 3609, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2412, 3610, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2413, 3611, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2415, 3613, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2416, 3614, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2417, 3615, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2418, 3616, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2419, 3617, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2420, 3618, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2421, 3619, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2422, 3620, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2423, 3621, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2424, 3622, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2425, 3623, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2426, 3624, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2427, 3625, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2428, 3626, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2429, 3627, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2430, 3628, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2431, 3629, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2432, 3630, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2433, 3631, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2434, 3632, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2435, 3633, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2436, 3634, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2437, 3635, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2438, 3636, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2439, 3637, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2440, 3638, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2441, 3639, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2442, 3640, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2443, 3641, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2444, 3642, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2445, 3643, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2446, 3644, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2447, 3645, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2448, 3646, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2449, 3647, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2450, 3648, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2451, 3649, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2452, 3650, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2453, 3651, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2454, 3652, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2455, 3653, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2456, 3654, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2457, 3655, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2458, 3656, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2459, 3657, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2460, 3658, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2461, 3659, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2462, 3660, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2463, 3661, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2464, 3662, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2465, 3663, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2466, 3664, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2467, 3665, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2468, 3666, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2470, 3668, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2472, 3670, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2473, 3671, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2474, 3672, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2475, 3673, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2476, 3674, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2477, 3675, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2478, 3676, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2479, 3677, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2480, 3678, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2481, 3679, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2482, 3680, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2483, 3681, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2484, 3682, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2485, 3683, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2486, 1848, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2487, 1849, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2488, 1850, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2489, 1891, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2490, 3684, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2491, 3685, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2492, 3686, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2493, 3687, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2494, 3688, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2495, 3689, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2496, 3690, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2497, 3691, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2498, 3692, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2499, 3693, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2500, 3694, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2501, 3695, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2502, 3696, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2503, 3697, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2504, 3698, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2505, 3699, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2506, 3700, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2507, 3701, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2508, 3702, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2509, 3703, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2510, 3704, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2511, 3705, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2513, 3707, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2514, 3708, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2515, 3709, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2516, 3710, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2517, 3711, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2518, 3712, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2520, 1873, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2521, 1878, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2522, 1887, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2523, 1882, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2524, 1886, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2525, 1916, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2526, 1917, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2527, 1926, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2528, 1750, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2529, 1775, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2530, 1826, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2531, 1827, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2532, 1829, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2533, 1831, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2534, 1839, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2535, 1840, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2536, 1864, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2537, 211, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2538, 212, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2539, 215, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2540, 216, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2541, 217, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2542, 218, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2543, 220, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2544, 221, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2545, 222, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2546, 223, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2547, 224, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2548, 225, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2549, 246, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2550, 247, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2551, 248, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2552, 238, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2553, 303, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2554, 300, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2555, 344, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2556, 299, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2557, 348, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2558, 351, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2559, 356, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2560, 301, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2561, 304, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2562, 914, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2563, 958, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2564, 959, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2565, 960, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2566, 961, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2567, 239, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2568, 240, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2569, 244, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2570, 245, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2571, 927, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2572, 1588, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2573, 1593, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2574, 1691, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2575, 1730, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2576, 1743, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2577, 1592, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2578, 1610, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2579, 1632, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2580, 1633, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2581, 1596, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2582, 1597, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2583, 1410, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2584, 207, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2585, 209, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2586, 962, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2587, 964, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2588, 1000, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2589, 1018, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2590, 1366, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2591, 971, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2592, 993, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2593, 1035, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2594, 1040, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2595, 1103, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2596, 210, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2597, 226, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2598, 179, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2599, 256, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2600, 252, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2601, 230, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2602, 258, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2603, 195, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2604, 761, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2605, 762, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2606, 763, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2607, 786, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2608, 787, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2609, 793, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2610, 803, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2611, 804, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2612, 822, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2613, 710, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2614, 607, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2615, 688, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2616, 707, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2617, 711, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2618, 712, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2619, 823, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2620, 827, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2621, 828, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2622, 829, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2623, 830, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2624, 831, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2625, 835, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2626, 837, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2627, 839, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2628, 842, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2629, 843, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2630, 867, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2631, 869, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2632, 887, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2633, 608, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2634, 609, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2635, 614, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2636, 668, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2637, 669, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2638, 615, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2639, 611, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2640, 671, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2641, 673, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2642, 674, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2643, 675, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2644, 709, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2645, 752, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2646, 760, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2647, 678, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2648, 832, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2649, 746, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2650, 750, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2651, 751, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2652, 854, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2653, 840, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2654, 841, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2655, 846, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2656, 907, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2657, 908, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2658, 909, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2659, 1013, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2660, 1014, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2661, 1015, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2662, 1016, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2663, 1153, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2664, 1168, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2665, 612, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2666, 613, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2667, 610, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2668, 616, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2670, 3715, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2671, 3716, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2672, 3717, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2673, 3718, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2674, 3719, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2675, 3720, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2678, 3723, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2680, 3725, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2681, 3726, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2682, 3727, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2683, 3728, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2684, 3729, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2685, 3730, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2686, 3731, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2687, 3732, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2688, 3733, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2689, 3734, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2690, 3735, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2691, 3736, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2693, 3738, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2694, 3739, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2695, 3740, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2696, 3741, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2697, 3742, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2698, 3743, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2699, 3744, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2700, 3745, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2701, 3746, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2702, 3747, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2703, 3748, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2704, 3749, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2705, 3750, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2706, 3751, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2707, 3752, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2708, 3753, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2709, 3754, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2710, 3755, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2711, 3756, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2712, 3757, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2713, 3758, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2714, 3759, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2715, 3760, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2716, 3761, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2717, 3762, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2718, 3763, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2719, 3764, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2720, 3765, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2721, 3766, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2722, 3767, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2723, 3768, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2724, 3769, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2725, 3770, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2726, 3771, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2727, 3772, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2728, 3773, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2729, 3774, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2730, 3775, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2731, 3776, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2732, 3777, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2733, 3778, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2734, 3779, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2735, 3780, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2736, 3781, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2737, 3782, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2738, 3783, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2739, 3784, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2740, 3785, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2741, 3786, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2742, 3787, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2743, 3788, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2744, 3789, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2745, 3790, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2746, 3791, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2747, 3792, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2748, 3793, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2749, 3794, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2750, 3795, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2751, 3796, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2752, 3797, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2753, 3798, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2754, 3799, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2755, 3800, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2756, 3801, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2757, 3802, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2758, 3803, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2759, 3804, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2760, 3805, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2761, 3806, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2762, 3807, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2763, 3808, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2764, 3809, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2765, 3810, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2766, 3811, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2767, 3812, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2768, 3813, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2769, 3814, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2770, 3815, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2771, 3816, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2772, 3817, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2773, 3818, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2774, 3819, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2775, 3820, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2776, 3821, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2777, 3822, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2778, 3823, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2779, 3824, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2780, 3825, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2781, 3826, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2782, 3827, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2783, 3828, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2784, 3829, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2785, 3830, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2786, 3831, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2787, 3832, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2788, 3833, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2789, 3834, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2790, 3835, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2791, 3836, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2792, 3837, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2793, 3838, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2794, 3839, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2795, 3840, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2796, 3841, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2797, 3842, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2798, 3843, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2799, 3844, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2800, 3845, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2801, 3846, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2802, 3847, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2803, 3848, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2804, 3849, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2805, 3850, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2806, 3851, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2807, 3852, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2808, 3853, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2809, 3854, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2810, 3855, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2811, 3856, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2812, 3857, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2813, 3858, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2814, 3859, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2815, 3860, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2816, 3861, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2817, 3862, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2818, 3863, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2819, 3864, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2820, 3865, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2821, 3866, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2822, 3867, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2823, 3868, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2824, 3869, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2825, 3870, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2826, 3871, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2827, 3872, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2828, 3873, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2829, 3874, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2830, 3875, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2831, 3876, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2832, 3877, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2833, 3878, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2834, 3879, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2835, 3880, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2836, 3881, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2837, 3882, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2838, 3883, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2839, 3884, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2840, 3885, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2841, 3886, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2842, 3887, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2843, 3888, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2848, 3893, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2851, 3896, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2852, 3897, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2853, 3898, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2854, 3899, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2855, 3900, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2856, 3901, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2857, 3902, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2858, 3903, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2859, 3904, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2860, 3905, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2861, 3906, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2862, 3907, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2863, 3908, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2864, 3909, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2865, 3910, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2866, 3911, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2867, 3912, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2868, 3913, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2869, 3914, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2870, 3915, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2871, 3916, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2872, 3917, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2873, 3918, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2874, 3919, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2875, 3920, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2877, 3922, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2878, 3923, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2879, 3924, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2880, 3925, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2881, 3926, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2882, 3927, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2883, 3928, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2884, 3929, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2885, 3930, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2886, 3931, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2887, 3932, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2888, 3933, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2889, 3934, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2890, 3935, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2891, 3936, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2892, 3937, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2893, 3938, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2894, 3939, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2895, 3940, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2896, 3941, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2897, 3942, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2898, 3943, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2899, 3944, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2900, 3945, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2901, 3946, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2902, 3947, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2903, 3948, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2904, 3949, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2905, 3950, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2906, 3951, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2907, 3952, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2908, 3953, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2909, 3954, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2910, 3955, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2911, 3956, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2912, 3957, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2913, 3958, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2914, 3959, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2915, 3960, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2916, 3961, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2917, 3962, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2918, 3963, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2920, 3965, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2921, 3966, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2922, 3967, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2923, 3968, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2924, 3969, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2925, 3970, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2926, 3971, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2927, 3972, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2928, 3973, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2929, 3974, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2930, 3975, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2931, 3976, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2932, 3977, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2933, 3978, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2934, 3979, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2935, 3980, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2936, 3981, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2937, 3982, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2938, 3983, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2939, 3984, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2940, 3985, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2941, 3986, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2942, 3987, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2943, 3988, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2944, 3989, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2945, 3990, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2947, 3992, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2948, 3993, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2949, 3994, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2950, 3995, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2951, 3996, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2952, 3997, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2953, 3998, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2954, 3999, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2955, 4000, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2956, 4001, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2957, 4002, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2958, 4003, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2959, 4004, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2960, 4005, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2961, 4006, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2962, 4007, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2963, 4008, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2964, 4009, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2965, 4010, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2966, 4011, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2967, 4012, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2968, 4013, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2969, 4014, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2970, 4015, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2971, 4016, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2972, 4017, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2973, 4018, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2974, 4019, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2975, 4020, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2976, 4021, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2977, 4022, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2978, 4023, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2979, 4024, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2980, 4025, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2981, 4026, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2982, 4027, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2983, 4028, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2984, 4029, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2985, 4030, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2986, 4031, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2987, 4032, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2988, 4033, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2989, 4034, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2990, 4035, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2991, 4036, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2992, 4037, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2994, 4039, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2995, 4040, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2996, 4041, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2997, 4042, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2998, 4043, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (2999, 4044, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3000, 4045, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3001, 4046, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3002, 4047, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3003, 4048, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3004, 4049, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3005, 4050, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3006, 4051, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3007, 4052, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3008, 4053, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3009, 4054, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3010, 4055, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3011, 4056, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3012, 4057, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3013, 4058, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3014, 4059, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3015, 4060, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3016, 4061, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3017, 4062, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3018, 4063, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3019, 4064, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3020, 4065, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3021, 4066, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3022, 4067, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3023, 4068, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3024, 4069, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3025, 4070, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3026, 4071, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3027, 4072, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3028, 4073, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3029, 4074, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3031, 4076, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3032, 4077, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3033, 4078, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3035, 4080, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3036, 4081, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3037, 4082, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3038, 4083, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3039, 4084, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3040, 4085, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3041, 4086, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3042, 4087, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3043, 4088, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3044, 4089, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3045, 4090, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3046, 4091, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3047, 4092, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3048, 4093, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3049, 4094, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3050, 4095, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3051, 4096, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3052, 4097, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3053, 4098, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3054, 4099, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3055, 4100, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3056, 4101, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3057, 4102, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3058, 4103, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3059, 4104, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3060, 4105, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3061, 4106, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3062, 4107, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3063, 4108, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3064, 4109, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3065, 4110, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3066, 4111, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3067, 4112, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3068, 4113, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3069, 4114, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3070, 4115, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3071, 4116, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3072, 4117, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3073, 4118, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3074, 4119, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3075, 4120, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3076, 4121, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3077, 4122, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3078, 4123, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3079, 4124, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3080, 4125, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3081, 4126, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3082, 4127, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3083, 4128, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3084, 4129, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3085, 4130, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3086, 4131, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3087, 4132, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3088, 4133, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3089, 4134, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3090, 4135, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3091, 4136, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3092, 4137, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3093, 4138, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3094, 4139, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3100, 4145, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3101, 4146, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3102, 4147, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3103, 4148, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3104, 4149, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3105, 4150, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3106, 4151, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3107, 4152, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3108, 4153, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3109, 4154, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3110, 4155, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3111, 4156, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3112, 4157, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3113, 4158, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3114, 4159, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3115, 4160, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3116, 4161, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3117, 4162, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3118, 4163, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3119, 4164, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3120, 4165, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3121, 4166, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3122, 4167, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3123, 4168, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3124, 4169, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3125, 4170, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3126, 4171, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3127, 4172, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3128, 4173, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3129, 4174, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3130, 4175, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3131, 4176, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3132, 4177, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3133, 4178, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3134, 4179, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3135, 4180, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3136, 4181, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3137, 4182, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3138, 4183, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3139, 4184, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3140, 4185, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3141, 4186, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3142, 4187, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3143, 4188, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3144, 4189, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3145, 4190, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3146, 4191, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3147, 4192, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3148, 4193, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3149, 4194, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3150, 4195, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3151, 4196, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3152, 4197, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3153, 4198, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3154, 4199, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3155, 4200, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3156, 4201, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3157, 4202, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3158, 4203, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3159, 4204, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3160, 4205, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3161, 4206, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3162, 4207, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3163, 4208, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3164, 4209, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3165, 4210, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3166, 4211, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3167, 4212, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3168, 4213, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3169, 4214, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3170, 4215, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3171, 4216, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3172, 4217, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3173, 4218, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3174, 4219, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3175, 4220, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3176, 4221, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3177, 4222, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3178, 4223, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3179, 4224, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3180, 4225, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3181, 4226, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3182, 4227, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3183, 4228, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3184, 4229, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3185, 4230, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3186, 4231, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3187, 4232, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3188, 4233, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3189, 4234, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3190, 4235, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3191, 4236, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3192, 4237, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3193, 4238, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3194, 4239, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3195, 4240, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3196, 4241, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3197, 4242, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3198, 4243, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3199, 4244, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3200, 4245, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3201, 4246, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3202, 4247, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3203, 4248, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3204, 4249, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3205, 4250, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3206, 4251, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3208, 4253, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3210, 4255, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3212, 4257, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3213, 4258, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3214, 4259, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3215, 4260, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3216, 4261, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3217, 4262, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3218, 4263, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3220, 4265, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3221, 4266, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3222, 4267, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3223, 4268, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3233, 4278, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3235, 4280, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3236, 4281, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3237, 4282, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3238, 4283, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3239, 4284, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3240, 4285, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3241, 4286, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3242, 4287, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3243, 4288, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3244, 4289, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3245, 4290, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3246, 4291, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3247, 4292, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3248, 4293, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3249, 4294, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3250, 4295, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3251, 4296, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3252, 4297, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3253, 4298, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3254, 4299, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3255, 4300, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3256, 4301, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3257, 4302, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3258, 4303, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3259, 4304, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3260, 4305, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3261, 4306, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3262, 4307, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3263, 4308, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3264, 4309, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3265, 4310, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3266, 4311, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3267, 4312, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3268, 4313, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3269, 4314, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3270, 4315, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3271, 4316, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3272, 4317, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3273, 4318, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3274, 4319, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3275, 4320, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3276, 4321, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3277, 4322, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3278, 4323, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3279, 4324, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3280, 4325, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3281, 4326, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3282, 4327, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3283, 4328, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3284, 4329, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3285, 4330, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3286, 4331, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3287, 4332, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3288, 4333, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3289, 4334, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3290, 4335, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3291, 4336, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3292, 4337, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3293, 4338, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3294, 4339, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3295, 4340, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3296, 4341, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3297, 4342, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3298, 4343, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3299, 4344, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3300, 4345, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3301, 4346, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3302, 4347, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3303, 4348, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3304, 4349, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3305, 4350, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3306, 4351, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3307, 4352, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3308, 4353, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3309, 4354, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3310, 4355, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3311, 4356, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3312, 4357, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3313, 4358, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3314, 4359, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3315, 4360, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3316, 4361, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3317, 4362, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3318, 4363, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3319, 4364, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3320, 4365, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3321, 4366, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3322, 4367, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3323, 4368, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3324, 4369, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3325, 4370, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3326, 4371, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3327, 4372, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3328, 4373, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3329, 4374, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3330, 4375, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3331, 4376, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3332, 4377, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3333, 4378, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3334, 4379, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3335, 4380, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3336, 4381, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3337, 4382, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3338, 4383, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3339, 4384, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3340, 4385, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3341, 4386, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3342, 4387, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3343, 4388, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3344, 4389, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3345, 4390, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3346, 4391, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3347, 4392, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3348, 4393, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3349, 4394, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3350, 4395, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3351, 4396, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3352, 4397, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3353, 4398, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3354, 4399, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3355, 4400, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3356, 4401, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3357, 4402, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3358, 4403, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3359, 4404, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3360, 4405, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3361, 4406, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3362, 4407, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3363, 4408, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3364, 4409, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3365, 4410, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3368, 4413, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3369, 4414, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3370, 4415, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3371, 4416, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3372, 4417, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3373, 4418, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3374, 4419, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3375, 4420, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3376, 4421, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3377, 4422, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3378, 4423, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3379, 4424, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3380, 4425, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3381, 4426, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3382, 4427, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3383, 4428, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3384, 4429, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3385, 4430, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3386, 4431, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3387, 4432, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3388, 4433, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3389, 4434, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3390, 4435, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3391, 4436, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3392, 4437, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3393, 4438, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3394, 4439, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3395, 4440, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3396, 4441, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3397, 4442, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3398, 4443, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3399, 4444, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3400, 4445, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3401, 4446, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3402, 4447, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3403, 4448, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3404, 4449, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3407, 4452, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3409, 4454, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3410, 4455, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3411, 4456, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3412, 4457, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3413, 4458, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3415, 4460, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3416, 4461, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3418, 4463, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3419, 4464, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3420, 4465, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3421, 4466, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3422, 4467, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3424, 4469, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3425, 4470, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3426, 4471, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3427, 4472, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3428, 4473, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3429, 4474, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3430, 4475, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3431, 4476, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3432, 4477, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3433, 4478, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3434, 4479, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3435, 4480, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3436, 4481, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3437, 4482, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3438, 4483, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3439, 4484, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3440, 4485, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3441, 4486, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3442, 4487, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3443, 4488, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3444, 4489, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3445, 4490, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3446, 4491, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3447, 4492, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3448, 4493, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3449, 4494, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3450, 4495, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3451, 4496, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3452, 4497, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3453, 4498, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3454, 4499, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3455, 4500, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3456, 4501, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3457, 4502, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3458, 4503, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3459, 4504, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3460, 4505, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3461, 4506, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3462, 4507, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3463, 4508, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3464, 4509, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3465, 4510, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3466, 4511, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3468, 4513, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3469, 4514, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3470, 4515, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3471, 4516, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3472, 4517, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3473, 4518, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3474, 4519, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3475, 4520, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3476, 4521, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3477, 4522, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3478, 4523, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3479, 4524, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3480, 4525, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3481, 4526, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3482, 4527, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3483, 4528, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3484, 4529, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3485, 4530, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3486, 4531, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3487, 4532, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3488, 4533, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3489, 4534, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3490, 4535, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3492, 4537, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3493, 4538, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3494, 4539, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3495, 4540, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3496, 4541, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3497, 4542, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3498, 4543, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3499, 4544, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3500, 4545, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3501, 4546, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3502, 4547, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3503, 4548, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3504, 4549, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3505, 4550, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3506, 4551, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3507, 4552, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3508, 4553, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3509, 4554, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3510, 4555, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3511, 4556, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3512, 4557, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3513, 4558, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3514, 4559, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3515, 4560, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3516, 4561, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3517, 4562, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3518, 4563, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3519, 4564, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3520, 4565, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3521, 4566, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3522, 4567, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3523, 4568, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3524, 4569, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3525, 4570, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3526, 4571, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3527, 4572, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3528, 4573, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3529, 4574, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3530, 4575, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3531, 4576, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3532, 4577, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3533, 4578, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3534, 4579, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3535, 4580, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3536, 4581, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3537, 4582, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3538, 4583, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3539, 4584, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3540, 4585, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3541, 4586, NULL, NULL, NULL);
INSERT INTO public.agile_data VALUES (3542, 4587, NULL, NULL, NULL);


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



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

INSERT INTO public.ar_internal_metadata VALUES ('environment', 'production', '2020-02-14 08:20:43+07', '2020-02-14 08:20:43+07');


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

INSERT INTO public.attachments VALUES (2, 956, 'Issue', 'wrongDisplayname.png', '200626152610_wrongDisplayname.png', 23066, 'image/png', '0635a6dddb343776a6b91afb64efaef30f8f5015d86ca182e20244b4a67bc2c7', 0, 19, '2020-06-26 15:26:10+07', '', '2020/06');
INSERT INTO public.attachments VALUES (4, 4, 'Project', 'xtdt_2.mm', '200708165830_xtdt_2.mm', 24288, NULL, '4fca627c3e44e2788fff6a7c34e536caeee09a68e9e1e33d7c83f29f06b8c241', 4, 5, '2020-07-08 16:58:30+07', '', '2020/07');
INSERT INTO public.attachments VALUES (5, 1088, 'Issue', 'screencapture-daugia-gdtvietnam-detail-6849d03b863b42eca36e44c7688c53c24xSiEXEFc-2020-07-13-10_34_11.png', '200713103539_f78d823c3fdb78fe94e00773a7ab5424.png', 728408, 'image/png', '9fb907c766c2211ed4dce7409d71f909407391f9be482d241bb45de2f051f6f0', 0, 4, '2020-07-13 10:35:39+07', '', '2020/07');
INSERT INTO public.attachments VALUES (6, 1089, 'Issue', 'Capture.PNG', '200713104233_Capture.PNG', 5599, 'image/png', '8c6fc8c02715a6d700c58683fcacb0ec2cf9ee115959a06f4f6466ba2d56ff21', 0, 4, '2020-07-13 10:42:33+07', '', '2020/07');
INSERT INTO public.attachments VALUES (7, 1100, 'Issue', 'Capture.PNG', '200713135416_Capture.PNG', 24376, 'image/png', '799c0c4b7a77b59725692645ca0690cf0eacc9003b5c476be5ef4062387efb33', 0, 4, '2020-07-13 13:54:16+07', '', '2020/07');
INSERT INTO public.attachments VALUES (8, 1104, 'Issue', 'Capture.PNG', '200713142410_Capture.PNG', 468929, 'image/png', '2bab8eb542c9effc564194e06a4c62f876198156d5bef658ba76752ec7f98c79', 0, 4, '2020-07-13 14:24:10+07', '', '2020/07');
INSERT INTO public.attachments VALUES (9, 1105, 'Issue', 'Capture.PNG', '200713142936_Capture.PNG', 210239, 'image/png', '2cf2613b684b1543200955bed79e591fba921c5a4c4b2612b589ed0023cf2b78', 0, 4, '2020-07-13 14:29:36+07', '', '2020/07');
INSERT INTO public.attachments VALUES (10, 1107, 'Issue', 'Capture.PNG', '200713143737_Capture.PNG', 29673, 'image/png', '39b19aefa3dccedb16300d19c44aa4d8aedb1e45ffa9cd910d5081a0ce21bd7f', 0, 4, '2020-07-13 14:37:37+07', '', '2020/07');
INSERT INTO public.attachments VALUES (11, 1091, 'Issue', 'Untitled.png', '200713144204_Untitled.png', 403846, 'image/png', '83b8c86b73d6d44b6cab7df085056edb77b9258522ce17b24808efe8421acc08', 0, 4, '2020-07-13 14:42:04+07', '', '2020/07');
INSERT INTO public.attachments VALUES (12, NULL, NULL, 'clipboard-202007131526-giysz.png', '200713152633_clipboard-202007131526-giysz.png', 129199, 'image/png', '330c21efe2358d54da5e39c89fb5f59db91b8e85f253f0a4bbd0a9035688f8eb', 0, 4, '2020-07-13 15:26:33+07', NULL, '2020/07');
INSERT INTO public.attachments VALUES (13, 1177, 'Issue', 'clipboard-202007131526-3xqbq.png', '200713152633_clipboard-202007131526-giysz.png', 129199, 'image/png', '330c21efe2358d54da5e39c89fb5f59db91b8e85f253f0a4bbd0a9035688f8eb', 0, 4, '2020-07-13 15:26:44+07', '', '2020/07');
INSERT INTO public.attachments VALUES (14, 1181, 'Issue', 'clipboard-202007131529-imbd4.png', '200713152958_clipboard-202007131529-imbd4.png', 77029, 'image/png', '8c8e5123b114f3f0273f5e64bce8c498ce71bcdc3026f23c92e40866ce0f1451', 0, 4, '2020-07-13 15:29:58+07', '', '2020/07');
INSERT INTO public.attachments VALUES (15, 1189, 'Issue', 'clipboard-202007131536-ollfu.png', '200713153652_clipboard-202007131536-ollfu.png', 42864, 'image/png', 'a681b993aebc74f6e924e00088447b6d0d22ab789f05c1adbd99d10baabbb7d5', 0, 4, '2020-07-13 15:36:52+07', '', '2020/07');
INSERT INTO public.attachments VALUES (16, 1, 'CustomValue', '18766031_1313640258703739_7215013731164481887_n.jpg', '200714100556_51e479dd091480a5475bdb3f040afcbd.jpg', 71631, 'image/jpeg', 'f7e0de94c61b5b0caed0feb069842dc5327aa5c803b30cffdbcb30a96f2aeb21', 0, 5, '2020-07-14 10:05:56+07', NULL, '2020/07');
INSERT INTO public.attachments VALUES (17, 1200, 'Issue', 'clipboard-202007141122-yqust.png', '200714112207_clipboard-202007141122-yqust.png', 18741, 'image/png', '3d2e14aa4b5c5abfb87131cbf50e16c78ee3b97ed11d5ca31169ee0b0cb35903', 0, 4, '2020-07-14 11:22:07+07', '', '2020/07');
INSERT INTO public.attachments VALUES (18, 1206, 'Issue', 'clipboard-202007141312-yzp2w.png', '200714131246_clipboard-202007141312-yzp2w.png', 153432, 'image/png', '8c77bc2d72c23d2f0f1941ff4e277c643728f2945e75588643ba6346c8802f22', 0, 4, '2020-07-14 13:12:46+07', '', '2020/07');
INSERT INTO public.attachments VALUES (19, 1207, 'Issue', 'clipboard-202007141314-ra19f.png', '200714131437_clipboard-202007141314-ra19f.png', 38092, 'image/png', 'f6a1b4c132f984409cfdaf0645e377617aadb98a8fb983cc7256260042f63df8', 0, 4, '2020-07-14 13:14:37+07', '', '2020/07');
INSERT INTO public.attachments VALUES (20, 1209, 'Issue', 'clipboard-202007141445-mttf2.png', '200714144508_clipboard-202007141445-mttf2.png', 181809, 'image/png', '8105317dee04c79511a06885de65104b183b8c76b1bea135044b3a7ca99f5c67', 0, 4, '2020-07-14 14:45:08+07', '', '2020/07');
INSERT INTO public.attachments VALUES (21, 2, 'Document', 'BANG KE CAT HUNG-36 LO.xlsx', '200714163252_f1607ff9185d244f629ae7934ce2af73.xlsx', 24675, 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '0a4f33e68c2d645978163f3e3da677f687667cedfc2a9eb66b44364eedc1e880', 0, 21, '2020-07-14 16:32:52+07', '', '2020/07');
INSERT INTO public.attachments VALUES (22, 2, 'Document', 'DS CAT HUNG-HD 88.2019-26 LO.doc', '200714163253_11eaf95273df4ff4d7ff0cae0f8ef8b6.doc', 196096, 'application/msword', '30fe0d4fcc35ac330c8d2eda04c2738274f8c423c9467483e425212ea118db1c', 0, 21, '2020-07-14 16:32:53+07', '', '2020/07');
INSERT INTO public.attachments VALUES (23, 2, 'Document', 'DS TRUNG DG CAT HUNG.xlsx', '200714163253_351fd078e6f2920a832db6740593353e.xlsx', 67368, 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '4feaf3795f50bd1536ea175642789408a820f49c1bee306f731b9aa78d499f93', 0, 21, '2020-07-14 16:32:53+07', '', '2020/07');
INSERT INTO public.attachments VALUES (24, 2, 'Document', 'BCHIEU CAT HUNG-DG ngay 10.01.2020.xls', '200714163253_5f6f1d760b5a6320345311c16d39563e.xls', 479744, 'application/vnd.ms-excel', '87f5c68e46086b60d8bd4940d1ab95a4fb97b51f5e04faadb18ed7b9bb7cd543', 0, 21, '2020-07-14 16:32:53+07', '', '2020/07');
INSERT INTO public.attachments VALUES (25, 1279, 'Issue', 'clipboard-202007151047-jpuio.png', '200715104742_clipboard-202007151047-jpuio.png', 43293, 'image/png', '47a240520451d461a43d5b40a7e41ded01a35ae73e920ceabac4a56e9f43e92d', 0, 4, '2020-07-15 10:47:42+07', '', '2020/07');
INSERT INTO public.attachments VALUES (26, 3, 'Document', '13TT.PDF', '200715111620_13TT.PDF', 2445230, 'application/pdf', 'bf5e240293058114c837630988811546a78ab3ee43498ddcb0758ff1cfe180f8', 0, 21, '2020-07-15 11:16:20+07', '', '2020/07');
INSERT INTO public.attachments VALUES (27, 1371, 'Issue', 'clipboard-202007171441-juass.png', '200717144135_clipboard-202007171441-juass.png', 224506, 'image/png', 'f16ab5d5113f9e25f5502b1eb6774e01f1defc4840bfc864741f739e9947a64c', 0, 4, '2020-07-17 14:41:35+07', '', '2020/07');
INSERT INTO public.attachments VALUES (28, 1372, 'Issue', 'clipboard-202007171446-yfuiu.png', '200717144601_clipboard-202007171446-yfuiu.png', 239410, 'image/png', 'ea89b2784bae2f762dfb05c5c1c84673481744471ab613611a890ff3dcfa0906', 0, 4, '2020-07-17 14:46:01+07', '', '2020/07');
INSERT INTO public.attachments VALUES (30, 1373, 'Issue', 'clipboard-202007171449-wi3oq.png', '200717144955_clipboard-202007171449-wi3oq.png', 416174, 'image/png', 'bcc455a494cab2dd0041f1c00ee699a3019d42340f50569c5711be1d87efef88', 0, 4, '2020-07-17 14:49:55+07', '', '2020/07');
INSERT INTO public.attachments VALUES (31, 1378, 'Issue', 'clipboard-202007171501-afnoz.png', '200717150100_clipboard-202007171501-afnoz.png', 80932, 'image/png', '3ddff47e234df62413e73550f707360ccc2e5f3b96b9959315bb146c43b5a4f7', 0, 4, '2020-07-17 15:01:00+07', '', '2020/07');
INSERT INTO public.attachments VALUES (32, 1378, 'Issue', 'clipboard-202007171501-fbx7n.png', '200717150133_clipboard-202007171501-fbx7n.png', 45045, 'image/png', '8cd191e411129f147ae0f65a63a6e6e587d9bd93acdf0ff984ea9b704224789a', 0, 4, '2020-07-17 15:01:33+07', '', '2020/07');
INSERT INTO public.attachments VALUES (33, 1402, 'Issue', 'QCVN_ChatLuongQuanTrac.docx', '200718140927_QCVN_ChatLuongQuanTrac.docx', 261241, 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', '3b2f2456c576e851c3a65e7a9e90ee707ec18b8f3cb1e436041d61acbdf22ed5', 0, 19, '2020-07-18 14:09:27+07', '', '2020/07');
INSERT INTO public.attachments VALUES (34, 28, 'Project', 'BANG KE CAT HUNG-36 LO (1).xlsx', '200714163252_f1607ff9185d244f629ae7934ce2af73.xlsx', 24675, 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '0a4f33e68c2d645978163f3e3da677f687667cedfc2a9eb66b44364eedc1e880', 16, 16, '2020-07-18 15:03:33+07', '', '2020/07');
INSERT INTO public.attachments VALUES (35, 28, 'Project', 'BCHIEU CAT HUNG-DG ngay 10.01.2020.xls', '200718150334_5f6f1d760b5a6320345311c16d39563e.xls', 479744, 'application/vnd.ms-excel', '8720a4a06a12284ac11488a65478b9cbf9943c89f73ebd9f08278067dcb64c1d', 13, 16, '2020-07-18 15:03:34+07', '', '2020/07');
INSERT INTO public.attachments VALUES (36, 28, 'Project', 'DS TRUNG DG CAT HUNG.xlsx', '200714163253_351fd078e6f2920a832db6740593353e.xlsx', 67368, 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '4feaf3795f50bd1536ea175642789408a820f49c1bee306f731b9aa78d499f93', 6, 16, '2020-07-18 15:03:34+07', '', '2020/07');
INSERT INTO public.attachments VALUES (37, 28, 'Project', 'DS CAT HUNG-HD 88.2019-26 LO.doc', '200714163253_11eaf95273df4ff4d7ff0cae0f8ef8b6.doc', 196096, 'application/msword', '30fe0d4fcc35ac330c8d2eda04c2738274f8c423c9467483e425212ea118db1c', 16, 16, '2020-07-18 15:03:35+07', '', '2020/07');
INSERT INTO public.attachments VALUES (40, 1491, 'Issue', 'screencapture-stp-binhdinh-gov-vn-content-php-2020-07-20-15_38_57.png', '200720153932_7c5c20f24ac66acbb9bacc4e11ef2124.png', 1535830, 'image/png', 'e96acccdd327223a740b74c528d8d5333daa68c7055eefebc1db9699118d4671', 0, 4, '2020-07-20 15:39:32+07', '', '2020/07');
INSERT INTO public.attachments VALUES (41, 1492, 'Issue', 'screencapture-daugiaso5-vn-2020-07-20-15_40_20.png', '200720154103_screencapture-daugiaso5-vn-2020-07-20-15_40_20.png', 344691, 'image/png', 'ebdd819c7f72df75d1b061004312d8af6a619b2ab9b7c9578f5d3f7f6ca13a27', 0, 4, '2020-07-20 15:41:03+07', '', '2020/07');
INSERT INTO public.attachments VALUES (42, 7, 'Document', '108-BQL.PDF', '200720165553_108-BQL.PDF', 1194569, 'application/pdf', 'f0cc06007b8d3e7d030c0059071116c40cd6ec1f8bece18b5bd2f2454ab6f566', 0, 4, '2020-07-20 16:55:53+07', '', '2020/07');
INSERT INTO public.attachments VALUES (43, 7, 'Document', 'Thong bao sau khi dieu chinh gia thang 7.pdf', '200720165557_9c0191624744a85e9909583268bd351b.pdf', 2524911, 'application/pdf', '7ff190f42f90bae19b736ca3a6845a75663eae62e9c28c1d789204d96d31846b', 0, 4, '2020-07-20 16:55:57+07', '', '2020/07');
INSERT INTO public.attachments VALUES (44, 7, 'Document', '17_2020_TB_DGBHN.pdf', '200720165600_17_2020_TB_DGBHN.pdf', 2941241, 'application/pdf', '9a1d65a7b3e4768dc1c3b54f2a2b5eaad94894da96511560a5d75d6678e62976', 0, 4, '2020-07-20 16:56:00+07', '', '2020/07');
INSERT INTO public.attachments VALUES (45, 1538, 'Issue', 'clipboard-202007221439-jfgmx.png', '200722143958_clipboard-202007221439-jfgmx.png', 197977, 'image/png', '595d1ab39d3feccd7d0db1c7fa3d1c7c49eb3d2b529e278555f927d67373ed7b', 0, 4, '2020-07-22 14:39:58+07', '', '2020/07');
INSERT INTO public.attachments VALUES (46, 1539, 'Issue', 'clipboard-202007221442-x8vui.png', '200722143958_clipboard-202007221439-jfgmx.png', 197977, 'image/png', '595d1ab39d3feccd7d0db1c7fa3d1c7c49eb3d2b529e278555f927d67373ed7b', 0, 4, '2020-07-22 14:42:05+07', '', '2020/07');
INSERT INTO public.attachments VALUES (47, 1540, 'Issue', 'clipboard-202007221442-3nbut.png', '200722144253_clipboard-202007221442-3nbut.png', 110549, 'image/png', '92ebaefc932c9ada033967bcd48ee8efb932ff1f474d60bee013a480e2c75f26', 0, 4, '2020-07-22 14:42:53+07', '', '2020/07');
INSERT INTO public.attachments VALUES (48, 8, 'Document', 'Luật đấu giá 2016.doc', '200722145253_ca222a025d7ece15716041ae686f7acf.doc', 276480, 'application/msword', '2036a4ff7cf3f2a3572d2084f84f2b6e01358324184490ea4a5b3274cd0127d5', 0, 21, '2020-07-22 14:52:53+07', '', '2020/07');
INSERT INTO public.attachments VALUES (49, 9, 'Document', '62.2017.ND.CP.doc', '200722145327_62.2017.ND.CP.doc', 99328, 'application/msword', '3fd4f75ed114aba563576bab92d6c467dcd2fb85129528d328ddd07111586156', 0, 21, '2020-07-22 14:53:27+07', '', '2020/07');
INSERT INTO public.attachments VALUES (50, 10, 'Document', '06.2017.TT.BTP.doc', '200722145722_06.2017.TT.BTP.doc', 182692, 'application/msword', '0576d3be3b167cbd408f1ae0ff70089eae3d6d6a51a9138a90bb918c3642007b', 0, 21, '2020-07-22 14:57:22+07', '', '2020/07');
INSERT INTO public.attachments VALUES (51, 10, 'Document', '06.2017.TT.BTPBieumaukemtheo.doc', '200722145722_06.2017.TT.BTPBieumaukemtheo.doc', 233942, 'application/msword', '155c0e9c89573f9984d683ecf70d9fb8c11b9257af2cc6c20d78df80736c631f', 0, 21, '2020-07-22 14:57:22+07', 'Biểu mẫu kèm theo', '2020/07');
INSERT INTO public.attachments VALUES (52, 1548, 'Issue', 'clipboard-202007221457-vgiso.png', '200722145725_clipboard-202007221457-vgiso.png', 106571, 'image/png', 'dce170a79f23d189b696ef694217ba40d29cb6753c8f2a88ae66d71c52867ea7', 0, 4, '2020-07-22 14:57:25+07', '', '2020/07');
INSERT INTO public.attachments VALUES (53, 11, 'Document', '51.2005.QH11.doc', '200722150053_51.2005.QH11.doc', 159132, 'application/msword', 'bf8b5651aa01a2d0786739dba91ff1852dfd25f159fee68328415d18d7a93bb6', 0, 21, '2020-07-22 15:00:53+07', '', '2020/07');
INSERT INTO public.attachments VALUES (54, 1552, 'Issue', 'QCVN 05-2013.pdf', '200722153308_a00a9a130405bd0a2e5a19559d84b209.pdf', 492390, 'application/pdf', '07fd0a6794cba6e6714c165b0e4fc3d58fca83e4ebae3c280eff9be87e88a2dd', 0, 19, '2020-07-22 15:33:08+07', '', '2020/07');
INSERT INTO public.attachments VALUES (55, 28, 'Project', 'dau gia so tu phap.mm', '200724082139_405132995d0c2eda7e5a044fbed02d09.mm', 12081, NULL, '7d33c69f980b2fd9f28c3e999ee8d218faa056f720727bfdf4747a924b38e5a6', 7, 5, '2020-07-24 08:21:39+07', 'file phân tích', '2020/07');
INSERT INTO public.attachments VALUES (56, 1659, 'Issue', 'QCVN 05-2013.pdf', '200722153308_a00a9a130405bd0a2e5a19559d84b209.pdf', 492390, 'application/pdf', '07fd0a6794cba6e6714c165b0e4fc3d58fca83e4ebae3c280eff9be87e88a2dd', 0, 19, '2020-07-22 15:33:08+07', '', '2020/07');
INSERT INTO public.attachments VALUES (57, NULL, NULL, 'Nội quy lao động.docx', '200730164126_a2214ce35b523eb9ec1d0e007fd0a953.docx', 64519, 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', '386abe52f9150742d49daedee7dfa74658259d65b2b16eaca9c6a069387a1a2a', 0, 22, '2020-07-30 16:41:26+07', NULL, '2020/07');
INSERT INTO public.attachments VALUES (58, 12, 'Document', 'Nội quy lao động.docx', '200730164126_a2214ce35b523eb9ec1d0e007fd0a953.docx', 64519, 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', '386abe52f9150742d49daedee7dfa74658259d65b2b16eaca9c6a069387a1a2a', 0, 22, '2020-07-30 16:42:12+07', '', '2020/07');
INSERT INTO public.attachments VALUES (59, 1672, 'Issue', 'Nội quy lao động.docx', '200730164126_a2214ce35b523eb9ec1d0e007fd0a953.docx', 64519, 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', '386abe52f9150742d49daedee7dfa74658259d65b2b16eaca9c6a069387a1a2a', 0, 22, '2020-07-30 16:45:43+07', '', '2020/07');
INSERT INTO public.attachments VALUES (60, 13, 'Document', 'QDQP 20 - 7. Ban hanh Quy dinh che do bao cao dinh ky linh vuc tai chinh tren dia ban tinh.pdf', '200731081837_e6d71fcddd70b69f99229a1047280ce0.pdf', 3048141, 'application/pdf', 'a7a1369d9d5c0fdf979f2e53340affd3720d6a42b2c56e7604bb1d1b20f7dfb6', 0, 5, '2020-07-31 08:18:37+07', '', '2020/07');
INSERT INTO public.attachments VALUES (61, 1616, 'Issue', 'QD 1459 TCMT ngay 12.11.2019 AQI.pdf', '200731163948_9b666fc841c4ecda6a2ed4759f1c6cde.pdf', 1006222, 'application/pdf', '968c4cbb9bf5cf03e4a9bf30850afd8695d130f767324ac57ca02e2d54a48c26', 0, 19, '2020-07-31 16:39:48+07', '', '2020/07');
INSERT INTO public.attachments VALUES (62, 14, 'Document', '216.2005.QD.TTg.doc', '200805104233_216.2005.QD.TTg.doc', 78848, 'application/msword', 'd34ef9f3fdfd3b668222ba2c560c08a78d804037a40f4ff249fbe1785ee04786', 0, 6, '2020-08-05 10:42:33+07', '', '2020/08');
INSERT INTO public.attachments VALUES (63, 15, 'Document', '43_2018_QD-UBND_393173.doc', '200805111158_43_2018_QD-UBND_393173.doc', 161792, 'application/msword', '374bf5b72cd9ffc795cf791ed89a720c9cf2c1f18fba11c5612b328afd3c6382', 0, 21, '2020-08-05 11:11:58+07', '', '2020/08');
INSERT INTO public.attachments VALUES (64, 16, 'Document', '48_2017_TT-BTC_344849.doc', '200805111454_48_2017_TT-BTC_344849.doc', 80896, 'application/msword', '45b6e45db87dcbc5d1ed74551d74aa108858e832d6a419616afb1498fcbd5932', 0, 21, '2020-08-05 11:14:54+07', '', '2020/08');
INSERT INTO public.attachments VALUES (65, 1732, 'Issue', 'thong ke doanh nghiep.png', '200806153103_c7da5f8d4528b8018e383fbcc9d0d3f0.png', 80201, 'image/png', 'b4ecf085eee27641c0117372575e69782dbffbbe487cc674eca00bc5a8691bc1', 0, 5, '2020-08-06 15:31:03+07', 'Thống kê doanh nghiệp', '2020/08');
INSERT INTO public.attachments VALUES (66, 43, 'Project', 'chuong trinh tieng Bana.pdf', '200808145557_fa678150bb05e71a377a0dc864fe7e27.pdf', 1518111, 'application/pdf', '921bc9c7986ef291d2fac8b52bc75736b450bd414b270a4140601a7b4d45d599', 3, 21, '2020-08-08 14:55:57+07', '', '2020/08');
INSERT INTO public.attachments VALUES (67, 1582, 'Issue', 'QD 1459 TCMT ngay 12.11.2019 AQI.pdf', '200731163948_9b666fc841c4ecda6a2ed4759f1c6cde.pdf', 1006222, 'application/pdf', '968c4cbb9bf5cf03e4a9bf30850afd8695d130f767324ac57ca02e2d54a48c26', 0, 19, '2020-08-10 11:09:50+07', '', '2020/07');
INSERT INTO public.attachments VALUES (68, 1790, 'Issue', 'GÓP Ý GIAO DIỆN PHẦN MỀM.docx', '200811110702_8e6020d69f12a2f29a81deabf2f3ef83.docx', 660799, 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', '629cb82573e18ab5258bff7e79cb8667dea19e5be72deff0193c90a226f6205a', 0, 13, '2020-08-11 11:07:02+07', '', '2020/08');
INSERT INTO public.attachments VALUES (69, 1804, 'Issue', 'hoan-tra-tien-coc.png', '200813083040_hoan-tra-tien-coc.png', 60627, 'image/png', '3a71ffc5684a64d97fe580cea5103963e91c2e4ce80a3f1b92c607948854e614', 0, 6, '2020-08-13 08:30:40+07', 'Yêu cầu của Viettel', '2020/08');
INSERT INTO public.attachments VALUES (70, 1811, 'Issue', 'Daugia_phien ban doi tac_v1.xlsx', '200813092637_2166888c8b6009ad6a2d06745d4f37da.xlsx', 42876, 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'd2bd5ef291598805327310401730ccdfe9ff5f492e65fa96bfdba57fba340b91', 0, 6, '2020-08-13 09:26:37+07', 'Mẫu báo cáo', '2020/08');
INSERT INTO public.attachments VALUES (71, 1815, 'Issue', 'thanh-toan-trung-gian.png', '200813093205_thanh-toan-trung-gian.png', 44256, 'image/png', '99d60b0fa9619919cee419a7d049b7936c37c34597878ef8ccd02d8519d39981', 0, 6, '2020-08-13 09:32:05+07', 'Yêu cầu của Viettel', '2020/08');
INSERT INTO public.attachments VALUES (72, 1819, 'Issue', 'De nghi them dang flash cho web.docx', '200813100646_8dc92177a6866e4183ea73e9019c0228.docx', 18832, 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', '22b0b4691328453b2edd9a6a02c890d89f85f6723434c4e626e6510165c53e8e', 0, 24, '2020-08-13 10:06:46+07', '', '2020/08');
INSERT INTO public.attachments VALUES (73, 1832, 'Issue', '20200812_Kiểm lỗi_v2.xlsx', '200813163432_7d6aa359d99259bb7e4aec91e2a28df0.xlsx', 1603421, 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '8dcfe1b9307b2d2ce139cb5ef8c905f8101b78ad7f0c0a19ea75a471dcafd87d', 0, 33, '2020-08-13 16:34:32+07', '', '2020/08');
INSERT INTO public.attachments VALUES (74, 1832, 'Issue', '20200803_KiểmDL_Đợt 2_Ver1.xlsx', '200813163432_e16b39e0dc3fcf2f230b7fa690a9f04f.xlsx', 2148539, 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'b23a851640133882d9b067eca3c5e95c1b53a08a6b4e28cf89b7dd575ee34cf8', 0, 33, '2020-08-13 16:34:32+07', '', '2020/08');
INSERT INTO public.attachments VALUES (75, 1554, 'Issue', 'qcvn-14-nước-thải-sinh-hoạt.pdf', '200815105515_4709f6f653183bb17596aba317ce3550.pdf', 59290, 'application/pdf', '3805b009715099c950b73dc25fc0c8512b1509d566bcc5455850d583b0607810', 0, 19, '2020-08-15 10:55:15+07', '', '2020/08');
INSERT INTO public.attachments VALUES (76, 1866, 'Issue', 'dung-khung.PNG', '200818095647_dung-khung.PNG', 24269, 'image/png', 'ad6bad1b117f8f164ad9cc8b630ed831cc735c1f11d2edac2ebce9f65427aec8', 0, 12, '2020-08-18 09:56:47+07', '', '2020/08');
INSERT INTO public.attachments VALUES (77, 1877, 'Issue', '03-TV_10-8-2019.doc', '200819133710_03-TV_10-8-2019.doc', 99328, 'application/msword', '3cb3b668c846b4a0d2c3390498dabf255da84def556474ee997329f6e154976a', 0, 33, '2020-08-19 13:37:10+07', 'Tiếng Việt', '2020/08');
INSERT INTO public.attachments VALUES (78, 1877, 'Issue', '03-BN_10-8-2019.doc', '200819133710_03-BN_10-8-2019.doc', 73216, 'application/msword', '4aa65f89245f43f6aef08ad73074aaf9fb47049011b7f8827ff43326e68cd087', 0, 33, '2020-08-19 13:37:10+07', 'Tiếng BaNa', '2020/08');
INSERT INTO public.attachments VALUES (79, 1877, 'Issue', 'DLieu 01_27-7-2019.doc', '200819133740_c3725dd0aaeb11e91d38e0b75a754ddb.doc', 17560, 'application/msword', '2114bcd0aa4da9c3028ed3afa60247071a949d46382821c8a5cfff2c20656aa6', 0, 33, '2020-08-19 13:37:40+07', 'File tách câu', '2020/08');
INSERT INTO public.attachments VALUES (80, 1884, 'Issue', '04-BN_31-8-2019.doc', '200820100641_04-BN_31-8-2019.doc', 51712, 'application/msword', '588ab12b4862a3d04fd4a024a1a12ac7434e6ef31c1835c595c4e2e8379da4cb', 0, 33, '2020-08-20 10:06:41+07', 'Tiếng Ba Na', '2020/08');
INSERT INTO public.attachments VALUES (81, 1884, 'Issue', '04-TV_31-8-2019.doc', '200820100641_04-TV_31-8-2019.doc', 113152, 'application/msword', '507077b73022fc797e8211be5484e4356ee837be5e86ce271954883380ab28f0', 0, 33, '2020-08-20 10:06:41+07', 'Tiếng Việt', '2020/08');
INSERT INTO public.attachments VALUES (82, 1888, 'Issue', '09-TV_05-10-2019.doc', '200821133325_09-TV_05-10-2019.doc', 2006016, 'application/msword', 'a4532a2d25d2e7dbd8cbcd24d014e604214fa382ef367da136cfbba014eac923', 0, 33, '2020-08-21 13:33:25+07', '', '2020/08');
INSERT INTO public.attachments VALUES (83, 1888, 'Issue', '09-BN_05-10-2019.doc', '200821133330_09-BN_05-10-2019.doc', 44032, 'application/msword', '79b1c5a556df8947a67e80037db93db044ca5c2961dc5bf88d5e37dfed7b11f5', 0, 33, '2020-08-21 13:33:30+07', '', '2020/08');
INSERT INTO public.attachments VALUES (84, 5, 'Principal', '18766031_1313640258703739_7215013731164481887_n.jpg', '200714100556_51e479dd091480a5475bdb3f040afcbd.jpg', 71631, 'image/jpeg', 'f7e0de94c61b5b0caed0feb069842dc5327aa5c803b30cffdbcb30a96f2aeb21', 0, 5, '2020-08-21 15:37:32+07', 'avatar', '2020/07');
INSERT INTO public.attachments VALUES (87, 1896, 'Issue', '14-BN_30-11-2019.doc', '200822154811_14-BN_30-11-2019.doc', 41472, 'application/msword', '7a7134a96932e5353115acd650fdef2a1402493b2c2a433fb73a9950801639da', 0, 33, '2020-08-22 15:48:11+07', '', '2020/08');
INSERT INTO public.attachments VALUES (88, 1896, 'Issue', '14-TV_30-11-2019.doc', '200822154811_14-TV_30-11-2019.doc', 130048, 'application/msword', 'dbeeccd8ebef2025a198f0ce428f66fb7e8693e97c18a08cb8d378d3fcc70e7f', 0, 33, '2020-08-22 15:48:11+07', '', '2020/08');
INSERT INTO public.attachments VALUES (89, 1896, 'Issue', '15-BN_7-12-2019.doc', '200822154819_15-BN_7-12-2019.doc', 38912, 'application/msword', '9303ecca8149d8ec3c5f8a613e9a77cd707a27463ea39e7e1d0661d2c219f633', 0, 33, '2020-08-22 15:48:19+07', '', '2020/08');
INSERT INTO public.attachments VALUES (90, 1896, 'Issue', '15-TV_7-12-2019.doc', '200822154819_15-TV_7-12-2019.doc', 100352, 'application/msword', 'f8ef9490dc09b994b3a5afac6d99b1ae805da586fd57d2141a210a5822c384ca', 0, 33, '2020-08-22 15:48:19+07', '', '2020/08');
INSERT INTO public.attachments VALUES (91, 1896, 'Issue', '16-TV_20-12-2019.doc', '200822154829_16-TV_20-12-2019.doc', 67584, 'application/msword', '40d5afac7665111ca2b679e9b709c2401d01da4415c35d19a3e001935fae2f3f', 0, 33, '2020-08-22 15:48:29+07', '', '2020/08');
INSERT INTO public.attachments VALUES (92, 1896, 'Issue', '16-BN_20-12-2019.doc', '200822154829_16-BN_20-12-2019.doc', 49664, 'application/msword', '02dcffac0b9adbaa11d2a1b531aeb490ca5dc5cfd15a542ade7647902be548ed', 0, 33, '2020-08-22 15:48:29+07', '', '2020/08');
INSERT INTO public.attachments VALUES (93, 1896, 'Issue', '17-BN_28-12-2019.doc', '200822154840_17-BN_28-12-2019.doc', 40960, 'application/msword', '3479cd9d8517b12fc5f487fba853169109c33684117106b04f9fbb129fdeff9a', 0, 33, '2020-08-22 15:48:40+07', '', '2020/08');
INSERT INTO public.attachments VALUES (94, 1896, 'Issue', '17-TV_28-12-2019.doc', '200822154840_17-TV_28-12-2019.doc', 130560, 'application/msword', '52a86714d75ce81f02a0f8fb5073f7aba4083ea99ee17a4957c1ad3c73920639', 0, 33, '2020-08-22 15:48:40+07', '', '2020/08');
INSERT INTO public.attachments VALUES (95, 1897, 'Issue', '13-BN_23-11-2019.doc', '200822155249_13-BN_23-11-2019.doc', 48640, 'application/msword', '44dd03ea273d395d6b240a3d6ceb330fed6587a3065c52478d5f33b9e2f9f45b', 0, 33, '2020-08-22 15:52:49+07', '', '2020/08');
INSERT INTO public.attachments VALUES (96, 1897, 'Issue', '13-TV_23-11-2019.doc', '200822155249_13-TV_23-11-2019.doc', 126976, 'application/msword', '96daa3eedb8109c589a7487ceb6d62db9e5a83456e43a91d92509e41ddd3bce3', 0, 33, '2020-08-22 15:52:49+07', '', '2020/08');
INSERT INTO public.attachments VALUES (97, 1845, 'Issue', 'dashboard.PNG', '200826111656_dashboard.PNG', 22924, 'image/png', 'fa953c8286d2f51fce88a59e4e1a24c19ca7385ba0755baf41324e86be17e169', 0, 12, '2020-08-26 11:16:56+07', '', '2020/08');
INSERT INTO public.attachments VALUES (98, 18, 'Document', 'Chức năng phần mềm.docx', '200901135104_8d8939f8bfcc42bfab9526d6fd9ae74a.docx', 15107, 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', '52093818c6f77793c7f430d608010661b225c3d6cca4452bdda2f894f2e3bdfd', 0, 5, '2020-09-01 13:51:04+07', '', '2020/09');
INSERT INTO public.attachments VALUES (99, 1982, 'Issue', 'trang-thong-tin-nguoi-dung.pdf', '200905100610_trang-thong-tin-nguoi-dung.pdf', 77205, 'application/pdf', 'cb7a407165a2e0ea70133f5a754a6bcf8041dd80a1709db37589ca8051eb4aa3', 0, 13, '2020-09-05 10:06:10+07', 'mo ta giao dien', '2020/09');
INSERT INTO public.attachments VALUES (100, 1982, 'Issue', 'clipboard-202009051022-otpob.png', '200905102259_clipboard-202009051022-otpob.png', 16688, 'image/png', '1b3e04e25efbda2251079182f47789b954d42a5173df0da453b869841a94fed8', 0, 13, '2020-09-05 10:22:59+07', '', '2020/09');
INSERT INTO public.attachments VALUES (103, 2003, 'Issue', 'clipboard-202009090900-y9l2v.png', '200909090037_clipboard-202009090900-y9l2v.png', 940268, 'image/png', '87b6ffda4ac3871ae62c8e06e1380a381ba2d8640294f7d6af018e6bdf46c5ae', 0, 13, '2020-09-09 09:00:37+07', '', '2020/09');
INSERT INTO public.attachments VALUES (104, 2003, 'Issue', 'clipboard-202009090903-v92qa.png', '200909090339_clipboard-202009090903-v92qa.png', 948458, 'image/png', 'd9c5981160de07dc6f207760996360ed670302658b18025f5c7c559efb12fb1d', 0, 13, '2020-09-09 09:03:39+07', '', '2020/09');
INSERT INTO public.attachments VALUES (105, 2003, 'Issue', 'clipboard-202009091312-1esa1.png', '200909131243_clipboard-202009091312-1esa1.png', 309475, 'image/png', 'e770ce3b3577da4aab5d41a3e88f1bed3c8f6de9bda25bbb5e23ad9fed3e5edf', 0, 13, '2020-09-09 13:12:43+07', '', '2020/09');
INSERT INTO public.attachments VALUES (106, 19, 'Document', 'ban hang bang RFID.mm', '200911161536_2f15e3f693ee78eaf1e589693192acae.mm', 13087, NULL, '48984fe4e4969de2a07b248cc2c91310d88416e86543d30d20499057eda4f407', 0, 5, '2020-09-11 16:15:36+07', '', '2020/09');
INSERT INTO public.attachments VALUES (108, 21, 'Document', 'QUẢN LÝ THANH TOÁN BẰNG RFID (1).xlsx', '200912152959_93c112ccb3e3b376aabd125a0d99e03b.xlsx', 65158, 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '713e909453cb2569229049e29d513195284c982e1cbff359f48b269c957e9032', 0, 5, '2020-09-12 15:29:59+07', '', '2020/09');
INSERT INTO public.attachments VALUES (109, 2217, 'Issue', 'dash.PNG', '201001083841_dash.PNG', 116319, 'image/png', '365ecf3609d0b9106ceedb19d2ac0e9a7fa14f681b01d73f53d0eedf2a5c8c0c', 0, 12, '2020-10-01 08:38:41+07', '', '2020/10');
INSERT INTO public.attachments VALUES (110, 2234, 'Issue', 'baoCaoKQKD.png', '201001084302_baoCaoKQKD.png', 147031, 'image/png', '5d678f2e1f863ccb7c9afe1be8978e505a12ee1da4fc63357d1b350ba9f3c362', 0, 19, '2020-10-01 08:43:02+07', '', '2020/10');
INSERT INTO public.attachments VALUES (111, 2217, 'Issue', 'sss.PNG', '201001084327_sss.PNG', 187933, 'image/png', '49da2f6a8c789fc607f8a9fd6903c23e1b7023a0c2cb6098ce0bdf3f7fec39d2', 0, 12, '2020-10-01 08:43:27+07', '', '2020/10');
INSERT INTO public.attachments VALUES (112, 2217, 'Issue', 'eeee.PNG', '201001091251_eeee.PNG', 7235, 'image/png', 'ccb7885aea0302c32a9988d5b2d03d7c913afaa5e6435c31473d6c971f2dd1fc', 0, 12, '2020-10-01 09:12:51+07', '', '2020/10');
INSERT INTO public.attachments VALUES (113, 48, 'Project', '[HDSD] - QuanlyHoso.pdf', '201006072705_5a74691aaaa4d00ba9b515670e6e1271.pdf', 2178954, 'application/pdf', 'd95f82f874f568b9c382151e97d8bad0b93ba4760c80639bf2ea6f797ebb5498', 6, 21, '2020-10-06 07:27:05+07', '', '2020/10');
INSERT INTO public.attachments VALUES (114, 48, 'Project', '[HDSD] - QuanlyNghiepvuHoso.pdf', '201006142745_3782f31a5c878e4db24dc5bc3be8c14d.pdf', 2891502, 'application/pdf', 'c7e2a66e21d46902b225ee0774e0a1651728f44a0cbd228abab08a5566cdaa0c', 4, 21, '2020-10-06 14:27:45+07', '', '2020/10');
INSERT INTO public.attachments VALUES (115, 48, 'Project', '[HDSD] - TimKiem.pdf', '201006142757_37151f117a3a7fe4a38228dd8c6424e5.pdf', 1114798, 'application/pdf', '8dd68ad66c61617972ccf59d6f158383bf8e1df89ca75df26d81ff9f1ee12c1e', 3, 21, '2020-10-06 14:27:57+07', '', '2020/10');
INSERT INTO public.attachments VALUES (116, 48, 'Project', '[HDSD] - BaocaoThongke.pdf', '201006142810_e5d958456e41bb271e7a4d3760363afb.pdf', 1060791, 'application/pdf', '9cd2152205cefd69ec11cdfd6e993d25ed8da8f9d010d152d2dfc9016777edbf', 16, 21, '2020-10-06 14:28:10+07', '', '2020/10');
INSERT INTO public.attachments VALUES (117, 2342, 'Issue', '20201006_DS4 gửi BĐ_10.xlsx', '201008081404_1cbafea6eee94c9662e13f7b902b2246.xlsx', 39829, 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '805dcd7c88a3c177207e764791fca3f9547d8fa1b13befec492d17479ab635c4', 0, 33, '2020-10-08 08:14:04+07', '', '2020/10');
INSERT INTO public.attachments VALUES (119, 2355, 'Issue', 'Loi_Thongtinquyhoach.PNG', '201009151546_loi.PNG', 689208, 'image/png', '3c3a2fbd3187f9eb1a8dc23dbc0dfc961dfa6e6e2f41c21af12268d2ed2fe636', 0, 40, '2020-10-09 15:16:22+07', '', '2020/10');
INSERT INTO public.attachments VALUES (120, 2356, 'Issue', 'Loi_SuaThongTinQuyHoach.PNG', '201009151901_Loi_SuaThongTinQuyHoach.PNG', 25363, 'image/png', '1eb8a8b4ef241e6c490fd79e2bc04f6bc6eb772638f78bf6c9226fd5d635e8c3', 0, 40, '2020-10-09 15:19:01+07', '', '2020/10');
INSERT INTO public.attachments VALUES (121, 2358, 'Issue', 'LoiThemChiTietThueDatDoanhNghiẹp.png', '201009152702_49a63b3e0c493ad67be7777303232a82.png', 942632, 'image/png', 'c0844e5c36d497a1c50a55703c038f9cfb5b569c316eb030bfcc159d187b39b8', 0, 40, '2020-10-09 15:27:02+07', '', '2020/10');
INSERT INTO public.attachments VALUES (122, 2359, 'Issue', 'Loi_GiaoDienThongTinoiGoi.png', '201009152906_Loi_GiaoDienThongTinoiGoi.png', 137437, 'image/png', 'd1f98871632b0fba7fc6817776459a1d4ea537324ac92ceafca1c7b3eb2dc974', 0, 40, '2020-10-09 15:29:06+07', '', '2020/10');
INSERT INTO public.attachments VALUES (123, 2360, 'Issue', 'Loi_SuaDiemDauTu.png', '201009154542_Loi_SuaDiemDauTu.png', 43292, 'image/png', 'b2a327230eea70b90190fe8504da9b165508e35a2413016a1513d93dc644b52f', 0, 40, '2020-10-09 15:45:42+07', '', '2020/10');
INSERT INTO public.attachments VALUES (124, 2362, 'Issue', 'Loi_SuaKhuCongNghiep.png', '201009164900_Loi_SuaKhuCongNghiep.png', 54331, 'image/png', '2f05098115cdc25707456281d281de47cd2de1d54390f0056416b41f36b42249', 0, 40, '2020-10-09 16:49:00+07', '', '2020/10');
INSERT INTO public.attachments VALUES (125, 48, 'Project', 'danh mục chức năng.xlsx', '201010102521_b654d10972a4138c8c2df66c9489e922.xlsx', 10367, 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '7af16c4ad1ba2ac3de74f033f71087a4a5652518e4e51e8c838c6f87400ac4f7', 2, 21, '2020-10-10 10:25:21+07', '', '2020/10');
INSERT INTO public.attachments VALUES (126, 2389, 'Issue', 'Loi Giao Dien.png', '201012083732_2f4296c13b676335065c5f70a4e6994a.png', 42956, 'image/png', 'ac94f990f6861dd0049344f833d12b37aa1711539a15b4cfa1161cc72603c57a', 0, 40, '2020-10-12 08:37:32+07', '', '2020/10');
INSERT INTO public.attachments VALUES (127, NULL, NULL, 'Q3_GTGT_2020.xls', '201022083355_Q3_GTGT_2020.xls', 367104, 'application/vnd.ms-excel', '76be8837fab2c4d60955e87111bc912477c18adcce47f10444fd9113ed3a37bb', 0, 4, '2020-10-22 08:33:55+07', NULL, '2020/10');
INSERT INTO public.attachments VALUES (129, 2529, 'Issue', 'clipboard-202010221130-09aa7.png', '201022113050_clipboard-202010221130-twwqn.png', 59720, 'image/png', 'ddd6aa155078a8abedaba87dfe049fdf8a92d6c1051f6af1871a5513bba3c8d3', 0, 40, '2020-10-22 11:30:51+07', '', '2020/10');
INSERT INTO public.attachments VALUES (130, 2546, 'Issue', 'Số liệu trên bản đồ.png', '201023151936_b828cf9441c70c298f9f3d729cf0d299.png', 57259, 'image/png', '05918f25ee1aa9573e317426f725016b9dec17fc543d62b220117865254724ee', 0, 40, '2020-10-23 15:19:36+07', '', '2020/10');
INSERT INTO public.attachments VALUES (131, 2547, 'Issue', 'tổng số lieeujj doanh nghiệp.png', '201023152350_11e290eb5b892066689e2f6171d9af0e.png', 61517, 'image/png', '14bd322d872c1528d65c480cf9f4036a121dd51f9e7ad3d4a38671d6764220d1', 0, 40, '2020-10-23 15:23:50+07', '', '2020/10');
INSERT INTO public.attachments VALUES (132, 2559, 'Issue', 'tổng số vốn đầu tư.png', '201024082817_fbaf18c485b5028f80254399a61c1bdf.png', 47271, 'image/png', '95659227b6f384fd8d08378d1f89c04201b56f85e0a985c360705e031aff42a4', 0, 40, '2020-10-24 08:28:17+07', '', '2020/10');
INSERT INTO public.attachments VALUES (133, 2589, 'Issue', 'clipboard-202010290903-iixyx.png', '201029090318_clipboard-202010290903-iixyx.png', 125558, 'image/png', '97d20f391268e3c26883d818fff951e49dd7642faea08c299c3df0cb6335a08b', 0, 40, '2020-10-29 09:03:18+07', '', '2020/10');
INSERT INTO public.attachments VALUES (134, 2590, 'Issue', 'clipboard-202010290915-slkpj.png', '201029091559_clipboard-202010290915-slkpj.png', 61253, 'image/png', 'f5e7258b1574794c634989a2f6433717520a2cde90fb7d3e9291fa9069dda1ad', 0, 40, '2020-10-29 09:15:59+07', '', '2020/10');
INSERT INTO public.attachments VALUES (135, 22, 'Document', 'BÁN RA TỔNG HỢP.xls', '201030170556_2d43e2b6d29ee316427a91d924f711bd.xls', 30208, 'application/vnd.ms-excel', '8a0e8d64793b7cbde23c4215d7bd1ba751046bd47bb04cc1c33f55f3ebf50dba', 0, 40, '2020-10-30 17:05:56+07', '', '2020/10');
INSERT INTO public.attachments VALUES (136, 23, 'Document', 'BẢNG KÊ CÁC ĐƠN GIAO HÀNG CHI TIẾT THEO NVGH.jpg', '201030170732_1f31a3a951138ce834fd8e00a14fba6b.jpg', 183804, 'image/jpeg', 'd28e556d2bfd4f7e1e984032c80a4d66245aab44c5e326c91fabff51503f42d0', 0, 40, '2020-10-30 17:07:32+07', '', '2020/10');
INSERT INTO public.attachments VALUES (137, 24, 'Document', 'BÁO CÁO BÁN HÀNG CHI TIẾT.xlsx', '201030170954_a891f6b854574eb5da67ad76dafd6859.xlsx', 828584, 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '22b3d808df3504824a26827bb4a5f35e413054c5aafc12da3ca938cc7f05318d', 0, 40, '2020-10-30 17:09:54+07', '', '2020/10');
INSERT INTO public.attachments VALUES (138, 25, 'Document', 'BÁO CÁO BẢNG KÊ GIAO HÀNG CHI TIẾT.xls', '201030171135_63db547e3770eba4874fa6fab22c7013.xls', 2907136, 'application/vnd.ms-excel', 'cfa82ad10c2210f013321b42ba4cf2e550f7ca9707b3660afb97aa11cfdbb17f', 0, 40, '2020-10-30 17:11:35+07', '', '2020/10');
INSERT INTO public.attachments VALUES (139, 26, 'Document', 'BÁO CÁO KHUYẾN MÃI.xlsx', '201030171248_a65b107878c876a476a82a9f0c416475.xlsx', 12897, 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'b351c7f97e1c925d9ea91d47803f9d6d220ebd590368611b04fcf51f43cb6213', 0, 40, '2020-10-30 17:12:48+07', '', '2020/10');
INSERT INTO public.attachments VALUES (140, 27, 'Document', 'BÁO CÁO SẢN LƯỢNG NVBH.xls', '201030171331_79355b3259b58d12e1e537f6e35630b1.xls', 55296, 'application/vnd.ms-excel', '5425f965844e11e65a0ee14df7d0851932872bee5e2937e54ce5ed1c3f3933dd', 0, 40, '2020-10-30 17:13:31+07', '', '2020/10');
INSERT INTO public.attachments VALUES (141, 28, 'Document', 'BÁO CÁO TỒN KHO.xls', '201030171424_846551b2846c140582248409bae21b03.xls', 73728, 'application/vnd.ms-excel', 'c65a299522df4da64676567a0f6881b4874619d1f5f7087155e928edc7d99744', 0, 40, '2020-10-30 17:14:24+07', '', '2020/10');
INSERT INTO public.attachments VALUES (142, 29, 'Document', 'DANH MỤC SẢN PHẨM.xls', '201030171512_9b53fff156fdffabc301c29b26638bb5.xls', 39936, 'application/vnd.ms-excel', 'e8598f3d1cd57a695ea9bd225b8454c90afef75edc7a7c333864aba4446c105c', 0, 40, '2020-10-30 17:15:12+07', '', '2020/10');
INSERT INTO public.attachments VALUES (143, 30, 'Document', 'DANH SÁCH KHÁCH HÀNG THEO NVBH.xls', '201030171523_6ba83b7b77ef188a8bd03035c036a4b6.xls', 317952, 'application/vnd.ms-excel', '19cf5a71630d7e9ce6e44cb9edc984a567d4e66294e95ed3e319676e343d84ea', 0, 40, '2020-10-30 17:15:23+07', '', '2020/10');
INSERT INTO public.attachments VALUES (144, 31, 'Document', 'DANH SÁCH KHUYẾN MÃI THÁNG 10.xlsx', '201030171630_92e940f13acb936a4de4a0190eafd362.xlsx', 28376, 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '85d687f20fc369d805bd937fef813f16871230efa99e3ba819957a61e77d899b', 0, 40, '2020-10-30 17:16:30+07', '', '2020/10');
INSERT INTO public.attachments VALUES (145, 32, 'Document', 'MUA HÀNG CHI TIẾT.xls', '201030171658_9a1e965b941baa84b2dd6dd7fd25b4ba.xls', 140800, 'application/vnd.ms-excel', '0d78cf5437c8162697e9efdd50513f8bc2dd1ad5e21e1eef9f7409709df9ab17', 0, 40, '2020-10-30 17:16:58+07', '', '2020/10');
INSERT INTO public.attachments VALUES (146, 33, 'Document', 'MUA HÀNG TỔNG HỢP.xls', '201030171738_b371826b487182c39a2996b04417f233.xls', 39424, 'application/vnd.ms-excel', '9165e7b76fd510c9274be247b4f8d87adc57a54e7044b07bd2be45b02dc3131a', 0, 40, '2020-10-30 17:17:38+07', '', '2020/10');
INSERT INTO public.attachments VALUES (147, 34, 'Document', 'PHIẾU GIAO NHẬN VÀ THANH TOÁN.jpg', '201030171820_4a0d85df52ab5ef5730bb68d5d39d2dc.jpg', 202612, 'image/jpeg', '58d1534c048306d19fd123405accb79f8cdf0ca014f679117b4ceeb45172434c', 0, 40, '2020-10-30 17:18:20+07', '', '2020/10');
INSERT INTO public.attachments VALUES (148, 35, 'Document', 'PHIẾU XUẤT HÀNG THEO NVGH.jpg', '201030171922_4d38f1d6c88de0a0ad44617e29200c28.jpg', 147831, 'image/jpeg', '316ac5c2e2a54f0fdd9eb6434c07f0be4646dc479213f165fb65a6248b931fd2', 0, 40, '2020-10-30 17:19:22+07', '', '2020/10');
INSERT INTO public.attachments VALUES (149, 36, 'Document', 'Thư gởi NPP giá tháng 10_DN.pdf', '201030171955_265d8bb7985bb2ccf6dd6e34b65e78f3.pdf', 291830, 'application/pdf', '329a16283084e5914ef2c240249efda07f8531a739f8cc3b3fbbdd353072886d', 0, 40, '2020-10-30 17:19:55+07', '', '2020/10');
INSERT INTO public.attachments VALUES (150, 37, 'Document', 'Thư gởi NPP giá tháng 11_DN.pdf', '201030172110_29af37abca371beb6a332b57deaa9a37.pdf', 291957, 'application/pdf', '8b0038e06df75e5b504cc74fe50be8de78560c8adece4c0a5982b92c216f666f', 0, 40, '2020-10-30 17:21:10+07', '', '2020/10');
INSERT INTO public.attachments VALUES (151, 2588, 'Issue', 'XayDungHeThongBaoCao.pptx', '201102082246_XayDungHeThongBaoCao.pptx', 4846238, 'application/vnd.openxmlformats-officedocument.presentationml.presentation', 'ddb99ab89f16c8acff8dfa2a57dd4910cc095a6ef65bf45912559133dd34f89f', 0, 19, '2020-11-02 08:22:46+07', '', '2020/11');
INSERT INTO public.attachments VALUES (152, 2588, 'Issue', 'QDQP 20 - 7. Ban hanh Quy dinh che do bao cao dinh ky linh vuc tai chinh tren dia ban tinh.pdf', '200731081837_e6d71fcddd70b69f99229a1047280ce0.pdf', 3048141, 'application/pdf', 'a7a1369d9d5c0fdf979f2e53340affd3720d6a42b2c56e7604bb1d1b20f7dfb6', 0, 19, '2020-11-02 11:13:23+07', '', '2020/07');
INSERT INTO public.attachments VALUES (153, 2710, 'Issue', '20-QD-HDTV.pdf', '201109091750_20-QD-HDTV.pdf', 212749, 'application/pdf', 'cb36d30144e629425b3249abf1e50d3a34b095a3c84584e2bd84287946ec395e', 0, 4, '2020-11-09 09:17:50+07', '', '2020/11');
INSERT INTO public.attachments VALUES (154, 2710, 'Issue', 'ND QUY CHE REDMINE.pdf', '201109091751_7fee84f6ae18302ad1c51dfdc4bfeac5.pdf', 1609379, 'application/pdf', '90b34681959480970eb168d7c8d8df7c56670a7cbc0a40c65e7b6aa64dd21148', 0, 4, '2020-11-09 09:17:51+07', '', '2020/11');
INSERT INTO public.attachments VALUES (155, 2808, 'Issue', 'Định mức chi công tác.doc', '201116083503_1ff37832dedac17d0d268754973ce81e.doc', 72192, 'application/msword', '3ac946c9f48f8721eb4c92bea0a8d5d65673f16b64b49c3b613a38c0ab042368', 0, 21, '2020-11-16 08:35:03+07', '', '2020/11');
INSERT INTO public.attachments VALUES (156, 2808, 'Issue', 'Quy chế tiền lương.docx', '201116083509_06cae1e33b21be22cbf05169792c75b7.docx', 29290, 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', '99f49ba3bbee5ae97957bb45806084217075fc6c784a7859b425a0c7fdd6d3b2', 0, 21, '2020-11-16 08:35:09+07', '', '2020/11');
INSERT INTO public.attachments VALUES (157, 2811, 'Issue', 'Hệ Thống Báo Cáo.xlsx', '201116142015_645ecaec15fb93e3c7ced563211b0675.xlsx', 13048, 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '7913087fdcba5d05fb1db40564eeb1c26b167fea6d6f1e9b05d79e58ee3176be', 0, 19, '2020-11-16 14:20:15+07', '', '2020/11');
INSERT INTO public.attachments VALUES (158, 3090, 'Issue', 'clipboard-202012050854-aco5l.png', '201205085423_clipboard-202012050854-aco5l.png', 60570, 'image/png', '1a56078eb161a28ed3f8e65f906a5d37f758822b7b399ae0df7daae5349bef02', 0, 40, '2020-12-05 08:54:23+07', '', '2020/12');
INSERT INTO public.attachments VALUES (159, 3199, 'Issue', 'clipboard-202012050926-ptvqr.png', '201205092611_clipboard-202012050926-ptvqr.png', 102116, 'image/png', 'd9614cf243aa86159a20f50397fcc8f372d10445415da1d2345bb4e41be48b41', 0, 40, '2020-12-05 09:26:11+07', '', '2020/12');
INSERT INTO public.attachments VALUES (160, 3199, 'Issue', 'clipboard-202012050927-ayq8s.png', '201205092715_clipboard-202012050927-ayq8s.png', 75914, 'image/png', 'd5d186dbe570e1ac3e72b4debc5f23199f8faf76fa73c9a1e33652fb08da7417', 0, 40, '2020-12-05 09:27:15+07', '', '2020/12');
INSERT INTO public.attachments VALUES (161, 3222, 'Issue', 'Sản lượng bán hàng theo nhân viên.jpg', '201208092250_4cf3ffaa40baebc937b70d95ec02dff1.jpg', 209521, 'image/jpeg', '467db3ecce269038ff97a28f4eae1d1252146d328b1d7bf9027b24e587d90095', 0, 40, '2020-12-08 09:22:50+07', '', '2020/12');
INSERT INTO public.attachments VALUES (162, 3243, 'Issue', 'clipboard-202012090922-szn9v.png', '201209092228_clipboard-202012090922-szn9v.png', 194985, 'image/png', 'f0588ed635b4d989a23b035ec8ae3a0e4426a859066c0a0a1774ec4b22ad9ea2', 0, 40, '2020-12-09 09:22:28+07', '', '2020/12');
INSERT INTO public.attachments VALUES (164, 3246, 'Issue', 'clipboard-202012091041-ezjbb.png', '201209104129_clipboard-202012091041-ezjbb.png', 77032, 'image/png', 'fa4890cf7f2b35f9f59e8f986f189545fb8886473730ffea04a324cba715a3e8', 0, 40, '2020-12-09 10:41:29+07', '', '2020/12');
INSERT INTO public.attachments VALUES (165, 3247, 'Issue', 'clipboard-202012091043-sapof.png', '201209104341_clipboard-202012091043-sapof.png', 594564, 'image/png', '4a0771e016336d8766795eabb79bf7c19d8010773e8ad2d942497791e6933cf3', 0, 40, '2020-12-09 10:43:41+07', '', '2020/12');
INSERT INTO public.attachments VALUES (166, 3259, 'Issue', 'clipboard-202012091419-iuxvd.png', '201209141921_clipboard-202012091419-iuxvd.png', 232480, 'image/png', '52763c0a7acab59461877c6fedb16513d13828003ab2a22849790b56c66db8b1', 0, 40, '2020-12-09 14:19:21+07', '', '2020/12');
INSERT INTO public.attachments VALUES (167, 3261, 'Issue', 'clipboard-202012091629-pu0xy.png', '201209162936_clipboard-202012091629-pu0xy.png', 81978, 'image/png', 'baa8f53706ff73b28981fc08e6623aa8758943b79a963e3da7f79a2ee7d48fa8', 0, 40, '2020-12-09 16:29:36+07', '', '2020/12');
INSERT INTO public.attachments VALUES (168, 3264, 'Issue', 'clipboard-202012091701-qvlst.png', '201209170104_clipboard-202012091701-qvlst.png', 74475, 'image/png', '85c8335a2c2f283e82e54b91513da21404a5f9d44a6ed9ef1e4151fbe0075a97', 0, 40, '2020-12-09 17:01:04+07', '', '2020/12');
INSERT INTO public.attachments VALUES (169, 6, 'Principal', 'avatar.jpg', '201214100122_avatar.jpg', 27351, 'image/jpeg', '93f46b493441e6548ff7e11a39c862ed2967d54a1272b008c61a7441ecebf6ec', 0, 6, '2020-12-14 10:01:22+07', 'avatar', '2020/12');
INSERT INTO public.attachments VALUES (170, 3354, 'Issue', 'clipboard-202012190957-wzhhl.png', '201219095722_clipboard-202012190957-wzhhl.png', 107047, 'image/png', 'fad3ddefd6b790df8e3eca254a8a484fd4a72f4ebf7572ebd4731a18e0c0aaad', 0, 40, '2020-12-19 09:57:22+07', '', '2020/12');
INSERT INTO public.attachments VALUES (171, 3384, 'Issue', 'clipboard-202012220828-dwpxl.png', '201222012802_clipboard-202012220828-dwpxl.png', 113317, 'image/png', 'e8ea7759d2bec9bdd9ca707396830ee1f3544ca8ed80c390cd905a73908a3cd1', 0, 40, '2020-12-22 01:28:02+07', '', '2020/12');
INSERT INTO public.attachments VALUES (172, 3397, 'Issue', 'clipboard-202012231653-m9m1k.png', '201223165331_clipboard-202012231653-m9m1k.png', 191126, 'image/png', 'acf83a62d248c8ebd2621ed847cc307a48810c72a58c47637f59aa16d46a150c', 0, 40, '2020-12-23 16:53:31+07', '', '2020/12');
INSERT INTO public.attachments VALUES (174, 3707, 'Issue', 'clipboard-202102040843-zovau.png', '210204084327_clipboard-202102040843-zovau.png', 73358, 'image/png', 'cd72cac8b10be7c5f8b2640bb271d60f849f3b9dc289fdfe85a8d2f524786803', 0, 13, '2021-02-04 08:43:27+07', '', '2021/02');
INSERT INTO public.attachments VALUES (175, 3708, 'Issue', 'clipboard-202102040844-lryze.png', '210204084427_clipboard-202102040844-lryze.png', 44216, 'image/png', 'b816246906363d840aa04213e7d1b4c86bce89c84ce5b6215ee752436650c8c1', 0, 13, '2021-02-04 08:44:27+07', '', '2021/02');
INSERT INTO public.attachments VALUES (176, 3709, 'Issue', 'clipboard-202102040846-6rmt2.png', '210204084638_clipboard-202102040846-6rmt2.png', 62609, 'image/png', '363effd82b6703655f56981cfb6ed177796711649b91e9f666d84a10c0ade0d7', 0, 13, '2021-02-04 08:46:38+07', '', '2021/02');
INSERT INTO public.attachments VALUES (177, 3709, 'Issue', 'clipboard-202102040851-yxwqf.png', '210204085109_clipboard-202102040851-yxwqf.png', 277647, 'image/png', '60afc069e0ba05c95742693bf6836729a1d2de87c325d3324813f1e2c100a3e5', 0, 13, '2021-02-04 08:51:09+07', '', '2021/02');
INSERT INTO public.attachments VALUES (178, 1, 'DriveEntry', 'NỘI DUNG CUỘC HỌP.docx', '210301173056_9177a61ee62c381ee68ce05e0120b9cc.docx', 15627, 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'a518a2455d114ccb842b024c21cd34775d386afe98f7b1042cf1931aebdde96f', 0, 6, '2021-03-01 17:30:56+07', NULL, '2021/03');
INSERT INTO public.attachments VALUES (179, 3951, 'Issue', 'clipboard-202103260002-aburx.png', '210325170233_clipboard-202103260002-aburx.png', 103098, 'image/png', '5a8576ba67d6673f3e0bdb3c7f6cd0709fd502b2c8ab2b5d3be938edc61baed5', 0, 40, '2021-03-25 17:02:33+07', '', '2021/03');
INSERT INTO public.attachments VALUES (180, 3952, 'Issue', 'clipboard-202103260006-hhvj6.png', '210325170622_clipboard-202103260006-hhvj6.png', 92142, 'image/png', 'c98457aa824271a2ff533e280b35faa32d241d37371d3a6ca11fb1bf4aa13795', 0, 40, '2021-03-25 17:06:22+07', '', '2021/03');
INSERT INTO public.attachments VALUES (181, 3954, 'Issue', 'clipboard-202103260912-va9lg.png', '210326021255_clipboard-202103260912-va9lg.png', 88182, 'image/png', '969079e55cb193d52a65f304fd66adbe7e04305cde4b18ff13363a9ff7ce9da9', 0, 40, '2021-03-26 02:12:55+07', '', '2021/03');
INSERT INTO public.attachments VALUES (182, 4021, 'Issue', '849.doc', '210329092016_849.doc', 250368, 'application/msword', '857bcb523753bd71b1d003e98de354e66ca1480c943bdef0c8e502fdd233ec47', 0, 40, '2021-03-29 09:20:16+07', '', '2021/03');
INSERT INTO public.attachments VALUES (183, 4073, 'Issue', 'clipboard-202104010918-eu9bv.png', '210401091821_clipboard-202104010918-eu9bv.png', 130957, 'image/png', 'b4f174747cb6c16484a750f67770c642b516fedd319d6bbdccc9daa357e0ab7b', 0, 40, '2021-04-01 09:18:21+07', '', '2021/04');
INSERT INTO public.attachments VALUES (184, 4148, 'Issue', 'clipboard-202104160914-wyuzg.png', '210416021405_clipboard-202104160914-wyuzg.png', 124281, 'image/png', 'a6c710dc9ff0a00e7a54e0d423eb0227c9bd89e0332567269defcd403d976d71', 0, 40, '2021-04-16 02:14:05+07', '', '2021/04');
INSERT INTO public.attachments VALUES (185, 4188, 'Issue', 'clipboard-202105041439-kla2i.png', '210504143925_clipboard-202105041439-kla2i.png', 89945, 'image/png', 'f8434a83038a3cb8d3f2f0cb15b6c22d66b5bc1ab5ee8d4539266370becfb903', 0, 40, '2021-05-04 14:39:25+07', '', '2021/05');
INSERT INTO public.attachments VALUES (186, 4188, 'Issue', 'clipboard-202105041439-iw7s9.png', '210504143925_clipboard-202105041439-kla2i.png', 89945, 'image/png', 'f8434a83038a3cb8d3f2f0cb15b6c22d66b5bc1ab5ee8d4539266370becfb903', 0, 40, '2021-05-04 14:39:38+07', '', '2021/05');
INSERT INTO public.attachments VALUES (187, 4195, 'Issue', 'clipboard-202105061021-ef4lj.png', '210506102150_clipboard-202105061021-ef4lj.png', 71886, 'image/png', 'a951ffc535caf3fed3ff4266196c401ea9d6a2aaaabe86f8a9b5928c4c7832da', 0, 40, '2021-05-06 10:21:50+07', '', '2021/05');
INSERT INTO public.attachments VALUES (188, 4205, 'Issue', 'logo TTKP.pdf', '210507154649_b8917978323061c40c7ad72c1c95495b.pdf', 402941, 'application/pdf', 'ae34373f4c72c3c54005371a4ad5a704a46d9f71a64f7057b685de4f00855e68', 0, 40, '2021-05-07 15:46:49+07', '', '2021/05');
INSERT INTO public.attachments VALUES (189, 4221, 'Issue', 'clipboard-202105140822-698pz.png', '210514012237_clipboard-202105140822-698pz.png', 141924, 'image/png', 'de29da49d5c80749a2a6731d6cd1a068b64956a7bc8e441f547c67ee08399ab9', 0, 40, '2021-05-14 01:22:37+07', '', '2021/05');
INSERT INTO public.attachments VALUES (191, 4234, 'Issue', 'clipboard-202105140951-jiane.png', '210514025151_clipboard-202105140951-jiane.png', 93901, 'image/png', '527f86028f96a4233084aed7e887d78d7b12c828572441422794bbc0940fd75e', 0, 40, '2021-05-14 02:51:51+07', '', '2021/05');
INSERT INTO public.attachments VALUES (192, 4235, 'Issue', 'clipboard-202105150931-idksc.png', '210515023110_clipboard-202105150931-idksc.png', 148262, 'image/png', '4ba242876a2b915fc10319867c64c6f208787b44e0eaea217931573c3ef56ce6', 0, 40, '2021-05-15 02:31:10+07', '', '2021/05');
INSERT INTO public.attachments VALUES (193, 4236, 'Issue', 'clipboard-202105150941-gkmh4.png', '210515024103_clipboard-202105150941-gkmh4.png', 112187, 'image/png', 'b709dfab4fef88365fed7a39e7ba0f49d0782f11d257b0cadea7031c208a3cef', 0, 40, '2021-05-15 02:41:03+07', '', '2021/05');
INSERT INTO public.attachments VALUES (194, 4241, 'Issue', 'clipboard-202105150945-esydm.png', '210515024547_clipboard-202105150945-esydm.png', 61025, 'image/png', '93dda630d67e77bd327ffd565ffb17554587bfac9cd8dd1de92082b25fda149f', 0, 40, '2021-05-15 02:45:47+07', '', '2021/05');
INSERT INTO public.attachments VALUES (195, 4245, 'Issue', 'clipboard-202105150951-3kjll.png', '210515025100_clipboard-202105150951-3kjll.png', 266394, 'image/png', '8dd87b8188f0a93c533bc838cb8cde6ae49663686a2d7136fd91bb939e340ea5', 0, 40, '2021-05-15 02:51:00+07', '', '2021/05');
INSERT INTO public.attachments VALUES (197, 72, 'Project', 'FILE_20210423_102903_yêu cầu phần mềm.docx', '210515034658_545e3ae8147c826423cf0961092897f0.docx', 26339, 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'c177640b2f72b1d08afa5cd1bec192e25462e3739c6cdcb5a468a634634c402c', 0, 38, '2021-05-15 03:46:58+07', '', '2021/05');
INSERT INTO public.attachments VALUES (200, 4310, 'Issue', 'clipboard-202105211419-nmfqo.png', '210521141948_clipboard-202105211419-nmfqo.png', 228009, 'image/png', '9823800a10f42e8b3515f77fc491f86f8900dfd862ae2655c4132b2f6446089f', 0, 39, '2021-05-21 14:19:48+07', '', '2021/05');
INSERT INTO public.attachments VALUES (201, 4358, 'Issue', 'clipboard-202106030822-ocftu.png', '210603082207_clipboard-202106030822-ocftu.png', 94405, 'image/png', '3742a3b9e481a94d29e09024c35b6c3ac3e73a3bb63717c70ab52ce8399a8c37', 0, 5, '2021-06-03 08:22:07+07', '', '2021/06');
INSERT INTO public.attachments VALUES (202, 4433, 'Issue', 'clipboard-202107130936-es0gz.png', '210713093455_clipboard-202107130936-es0gz.png', 350033, 'image/png', '2e7a854a29068613a68e3f64fe8c88340ccbe5282920f55e6f6eefa29853bb21', 0, 40, '2021-07-13 09:34:55+07', '', '2021/07');
INSERT INTO public.attachments VALUES (203, 4434, 'Issue', 'clipboard-202107130937-kv5rj.png', '210713093557_clipboard-202107130937-kv5rj.png', 509283, 'image/png', '48b1a1cb6573ea40342f576b3de43e80c9433b22f12a8c2ebdfb0083d3ca42da', 0, 40, '2021-07-13 09:35:57+07', '', '2021/07');
INSERT INTO public.attachments VALUES (204, 4470, 'Issue', 'clipboard-202108271413-qmjnl.png', '210827141300_clipboard-202108271413-qmjnl.png', 30986, 'image/png', '0f9fbd73c7a70dc98c90adeab48c42936a398aa594958ab41765be235e05388b', 0, 5, '2021-08-27 14:13:00+07', '', '2021/08');
INSERT INTO public.attachments VALUES (205, 4477, 'Issue', 'clipboard-202108271519-rd1zu.png', '210827151955_clipboard-202108271519-rd1zu.png', 42011, 'image/png', '7fd7120aeca48a9348b8ba0913b1948406d1057c178239ec04546ec0f2d3efc4', 0, 5, '2021-08-27 15:19:55+07', '', '2021/08');
INSERT INTO public.attachments VALUES (207, 4452, 'Issue', 'thiet lap linh vuc trong dieu 12 mau 06; dieu 13, PL5.png', '210828103439_5e7fb1993321ac169bca6d89edf26446.png', 246749, 'image/png', '5243cd1c33c1ed454a88c0dbe5116664e6bdc3f1744d5737172c718161017fb8', 0, 5, '2021-08-28 10:34:39+07', '', '2021/08');
INSERT INTO public.attachments VALUES (208, 38, 'Document', '15_2019_TT-BLDTBXH_425349.doc', '221006120721_15_2019_TT-BLDTBXH_425349.doc', 1538560, 'application/msword', '4ce08e0534dadba71db5ea3bdd854da1a42b47470312cd125e34f570f1fd4a17', 0, 5, '2022-10-06 12:07:21+07', '', '2022/10');
INSERT INTO public.attachments VALUES (209, 39, 'Document', 'Mẫu số 01 NLĐ.docx', '221006120825_b0e1b76359b32960d6094dcd519df74b.docx', 22503, 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', '84196d51b12038989b80009f2da6c571c2c630d738f081bc88f78f11753f6529', 0, 5, '2022-10-06 12:08:25+07', '', '2022/10');
INSERT INTO public.attachments VALUES (210, 40, 'Document', 'Mẫu số 02 (Cơ sở GDNN).docx', '221006120838_0a42ce23f18bf89c433055d6af54068c.docx', 23948, 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', '1078b1f7f457264f58673054a510dd21ffacb774f7676f74803245a037ed1789', 0, 5, '2022-10-06 12:08:38+07', '', '2022/10');
INSERT INTO public.attachments VALUES (211, 41, 'Document', 'Mô tả phần mềm giáo dục nghề nghiệp.docx', '221006120924_4e695ec6c7698678641fa110ccfb7c47.docx', 49502, 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'ddea14fcc00e9b9328088b5bbded5c63f2d82b6ca7dede650912313ca13ccdfc', 0, 5, '2022-10-06 12:09:24+07', '', '2022/10');
INSERT INTO public.attachments VALUES (212, 42, 'Document', 'Yêu cầu xuất báo cáo.docx', '221006120959_11561ad09aca13c8a2f89b3e0be4dd95.docx', 16324, 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', '49081de7cb3cc1ba70f6baaabd4431c735b1321a9cda566a7e5f0eff5155bcce', 0, 5, '2022-10-06 12:09:59+07', '', '2022/10');
INSERT INTO public.attachments VALUES (214, 4571, 'Issue', 'clipboard-202210281109-rroz6.png', '221028110902_clipboard-202210281109-rroz6.png', 116147, 'image/png', '0bc980aeb451a203e3ba5fe89579554f8f7e96666542757fa83c349584cfbddf', 0, 5, '2022-10-28 11:09:02+07', '', '2022/10');
INSERT INTO public.attachments VALUES (216, 4572, 'Issue', 'clipboard-202210310908-hjvtw.png', '221031090812_clipboard-202210310908-hjvtw.png', 37117, 'image/png', 'e573fc0fe9d9c12c18aef2a469cb6f068334d7517d654ecc5fc29ff150b31579', 0, 5, '2022-10-31 09:08:12+07', '', '2022/10');
INSERT INTO public.attachments VALUES (217, 4572, 'Issue', 'clipboard-202210310908-hmatw.png', '221031090845_clipboard-202210310908-hmatw.png', 122299, 'image/png', '69b2368fc9655517774df85edea303db6cb08bc5548d5798af29816d484a13ee', 0, 5, '2022-10-31 09:08:45+07', '', '2022/10');
INSERT INTO public.attachments VALUES (218, 4576, 'Issue', 'clipboard-202211011032-cobpw.png', '221101103217_clipboard-202211011032-cobpw.png', 56858, 'image/png', '057783f0c3d7205aab524521b7689e42799bdeab6586fecfd881e5fc056bac5d', 0, 5, '2022-11-01 10:32:17+07', '', '2022/11');
INSERT INTO public.attachments VALUES (219, 4576, 'Issue', 'clipboard-202211011032-h1yue.png', '221101103243_clipboard-202211011032-h1yue.png', 12357, 'image/png', '3e41d9f54f46243b5b0ff13612ea1a9889023a2deb9237cbb82ff1d21e092efc', 0, 5, '2022-11-01 10:32:43+07', '', '2022/11');
INSERT INTO public.attachments VALUES (220, 43, 'Document', 'Danh muc dan toc TDT 2019_update.docx', '221102103827_ef8be4576a1167f8f118ef6b0c0f89e8.docx', 25381, 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', '0d33ae9aaf4aeecf824871d9909ab5f9e87280f62146595ec1335f4fd7282cc9', 0, 5, '2022-11-02 10:38:27+07', '', '2022/11');
INSERT INTO public.attachments VALUES (221, 43, 'Document', 'Danh muc ton giao TDT 2019_update.docx', '221102103828_781799004dae8854cf7302dbcc2b2638.docx', 23922, 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', '3f0ea429202c6c13bfa6af09850fdb2cc9a6b88053f1519a1dcd3a7b2774133a', 0, 5, '2022-11-02 10:38:28+07', '', '2022/11');
INSERT INTO public.attachments VALUES (222, 43, 'Document', 'Danh muc dvhc 124.2004.QD.TTg.doc', '221102103830_1ca5bea896aa8779c41a49bf332a8e6f.doc', 102219, 'application/msword', 'fcec80154acf4546e953ffa7d1a54e4cf0a067def93f91b723d6db4afd2c3b85', 0, 5, '2022-11-02 10:38:30+07', '', '2022/11');
INSERT INTO public.attachments VALUES (224, 44, 'Document', 'tt-26-2020-bldtbxh.pdf', '221116103227_tt-26-2020-bldtbxh.pdf', 4023691, 'application/pdf', 'f35b85133dd7b6321142d4ab929e67257c14403997b789b394dc6868256ee155', 0, 5, '2022-11-16 10:32:27+07', '', '2022/11');
INSERT INTO public.attachments VALUES (225, 45, 'Document', 'Quyết định số 01.2017.QĐ-TTg.pdf', '221116103303_84d80c5012db223b6b160cd6e9d3391a.pdf', 852071, 'application/pdf', '23e90d4722126349a572172ceeb730fd82eec3f61f00f00130eceec2c4c424cd', 0, 5, '2022-11-16 10:33:03+07', '', '2022/11');


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



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



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



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



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



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



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



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



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

INSERT INTO public.checklists VALUES (1, true, 'Theo mã doanh nghiệp', 1, 924, '2020-06-17 15:19:08+07', '2020-08-08 11:08:37+07', false);
INSERT INTO public.checklists VALUES (2, true, 'Theo mã số thuế', 1, 924, '2020-06-17 15:19:08+07', '2020-08-08 11:08:38+07', false);
INSERT INTO public.checklists VALUES (7, false, 'Load thông tin trạm', 1, 1667, '2020-07-29 14:02:17+07', '2020-07-29 14:02:17+07', false);
INSERT INTO public.checklists VALUES (8, false, 'Danh sách 24h', 2, 1667, '2020-07-29 14:02:17+07', '2020-07-29 14:02:17+07', false);
INSERT INTO public.checklists VALUES (9, false, 'Danh sách 30 ngày', 2, 1667, '2020-07-29 14:02:17+07', '2020-07-29 14:02:17+07', false);
INSERT INTO public.checklists VALUES (10, false, 'Đồng hồ 24h', 3, 1667, '2020-07-29 14:02:17+07', '2020-07-29 14:02:17+07', false);
INSERT INTO public.checklists VALUES (11, false, 'Biểu đồ 24h', 4, 1667, '2020-07-29 14:02:17+07', '2020-07-29 14:02:17+07', false);
INSERT INTO public.checklists VALUES (12, false, 'Đồng hồ 30 ngày', 5, 1667, '2020-07-29 14:02:17+07', '2020-07-29 14:02:17+07', false);
INSERT INTO public.checklists VALUES (13, false, 'Biều đồ 30 ngày', 6, 1667, '2020-07-29 14:02:17+07', '2020-07-29 14:02:17+07', false);
INSERT INTO public.checklists VALUES (14, false, 'Load trạm trên bản đồ', 7, 1667, '2020-07-29 14:02:17+07', '2020-07-29 14:02:17+07', false);
INSERT INTO public.checklists VALUES (15, false, 'Load thông tin trạm', 1, 1668, '2020-07-29 14:03:11+07', '2020-09-03 10:51:10+07', false);
INSERT INTO public.checklists VALUES (16, false, 'Danh sách 24h', 2, 1668, '2020-07-29 14:03:11+07', '2020-07-29 14:03:11+07', false);
INSERT INTO public.checklists VALUES (17, false, 'Danh sách 30 ngày', 2, 1668, '2020-07-29 14:03:11+07', '2020-07-29 14:03:11+07', false);
INSERT INTO public.checklists VALUES (18, false, 'Đồng hồ 24h', 3, 1668, '2020-07-29 14:03:11+07', '2020-07-29 14:03:11+07', false);
INSERT INTO public.checklists VALUES (19, false, 'Biểu đồ 24h', 4, 1668, '2020-07-29 14:03:11+07', '2020-07-29 14:03:11+07', false);
INSERT INTO public.checklists VALUES (20, false, 'Đồng hồ 30 ngày', 5, 1668, '2020-07-29 14:03:11+07', '2020-07-29 14:03:11+07', false);
INSERT INTO public.checklists VALUES (21, false, 'Biều đồ 30 ngày', 6, 1668, '2020-07-29 14:03:11+07', '2020-07-29 14:03:11+07', false);
INSERT INTO public.checklists VALUES (22, false, 'Load trạm trên bản đồ', 7, 1668, '2020-07-29 14:03:11+07', '2020-07-29 14:03:11+07', false);
INSERT INTO public.checklists VALUES (23, false, 'Load thông tin trạm', 1, 1669, '2020-07-29 14:02:17+07', '2020-07-29 14:02:17+07', false);
INSERT INTO public.checklists VALUES (24, false, 'Danh sách 24h', 2, 1669, '2020-07-29 14:02:17+07', '2020-07-29 14:02:17+07', false);
INSERT INTO public.checklists VALUES (25, false, 'Danh sách 30 ngày', 2, 1669, '2020-07-29 14:02:17+07', '2020-07-29 14:02:17+07', false);
INSERT INTO public.checklists VALUES (26, false, 'Đồng hồ 24h', 3, 1669, '2020-07-29 14:02:17+07', '2020-07-29 14:02:17+07', false);
INSERT INTO public.checklists VALUES (27, false, 'Biểu đồ 24h', 4, 1669, '2020-07-29 14:02:17+07', '2020-07-29 14:02:17+07', false);
INSERT INTO public.checklists VALUES (28, false, 'Đồng hồ 30 ngày', 5, 1669, '2020-07-29 14:02:17+07', '2020-07-29 14:02:17+07', false);
INSERT INTO public.checklists VALUES (29, false, 'Biều đồ 30 ngày', 6, 1669, '2020-07-29 14:02:17+07', '2020-07-29 14:02:17+07', false);
INSERT INTO public.checklists VALUES (30, false, 'Load trạm trên bản đồ', 7, 1669, '2020-07-29 14:02:17+07', '2020-07-29 14:02:17+07', false);
INSERT INTO public.checklists VALUES (31, false, 'Load thông tin trạm', 1, 1670, '2020-07-29 14:03:11+07', '2020-07-29 14:03:11+07', false);
INSERT INTO public.checklists VALUES (32, false, 'Danh sách 24h', 2, 1670, '2020-07-29 14:03:11+07', '2020-07-29 14:03:11+07', false);
INSERT INTO public.checklists VALUES (33, false, 'Danh sách 30 ngày', 2, 1670, '2020-07-29 14:03:11+07', '2020-07-29 14:03:11+07', false);
INSERT INTO public.checklists VALUES (34, false, 'Đồng hồ 24h', 3, 1670, '2020-07-29 14:03:11+07', '2020-07-29 14:03:11+07', false);
INSERT INTO public.checklists VALUES (35, false, 'Biểu đồ 24h', 4, 1670, '2020-07-29 14:03:11+07', '2020-07-29 14:03:11+07', false);
INSERT INTO public.checklists VALUES (36, false, 'Đồng hồ 30 ngày', 5, 1670, '2020-07-29 14:03:11+07', '2020-07-29 14:03:11+07', false);
INSERT INTO public.checklists VALUES (37, false, 'Biều đồ 30 ngày', 6, 1670, '2020-07-29 14:03:11+07', '2020-07-29 14:03:11+07', false);
INSERT INTO public.checklists VALUES (38, false, 'Load trạm trên bản đồ', 7, 1670, '2020-07-29 14:03:11+07', '2020-07-29 14:03:11+07', false);
INSERT INTO public.checklists VALUES (39, false, 'Danh sách các đơn đặt hàng đã được thanh toán qua giỏ hàng', 1, 1805, '2020-08-13 09:25:43+07', '2020-08-13 09:25:43+07', false);
INSERT INTO public.checklists VALUES (40, false, 'Danh sách số tiền đặt cọc đã hoàn trả cho khách hàng đấu giá và trả giá không thành công', 8, 1805, '2020-08-13 09:25:44+07', '2020-08-13 09:25:44+07', false);
INSERT INTO public.checklists VALUES (41, false, 'Đấu giá', 1, 1813, '2020-08-13 09:28:51+07', '2020-08-13 09:28:51+07', false);
INSERT INTO public.checklists VALUES (42, false, 'Trả giá', 9, 1813, '2020-08-13 09:28:51+07', '2020-08-13 09:28:51+07', false);
INSERT INTO public.checklists VALUES (43, false, 'Bán trực tiếp', 10, 1813, '2020-08-13 09:28:51+07', '2020-08-13 09:28:51+07', false);
INSERT INTO public.checklists VALUES (44, false, 'Doanh thu', 1, 1814, '2020-08-13 09:29:58+07', '2020-08-13 09:29:58+07', false);
INSERT INTO public.checklists VALUES (45, false, 'Số lượng phiên đấu giá', 11, 1814, '2020-08-13 09:29:58+07', '2020-08-13 09:29:58+07', false);
INSERT INTO public.checklists VALUES (46, false, 'Số lượng phiên trả giá', 12, 1814, '2020-08-13 09:29:58+07', '2020-08-13 09:29:58+07', false);
INSERT INTO public.checklists VALUES (47, false, 'Số lượng bán trực tiếp', 13, 1814, '2020-08-13 09:29:58+07', '2020-08-13 09:29:58+07', false);
INSERT INTO public.checklists VALUES (48, false, 'Số tài khoản hiện tại trong hệ thống', 14, 1814, '2020-08-13 09:29:58+07', '2020-08-13 09:29:58+07', false);
INSERT INTO public.checklists VALUES (49, false, 'Doanh thu', 1, 1812, '2020-08-13 09:31:16+07', '2020-08-13 09:31:16+07', false);
INSERT INTO public.checklists VALUES (50, false, 'Số lượng phiên đấu giá', 15, 1812, '2020-08-13 09:31:16+07', '2020-08-13 09:31:16+07', false);
INSERT INTO public.checklists VALUES (51, false, 'Số lượng phiên trả giá', 16, 1812, '2020-08-13 09:31:16+07', '2020-08-13 09:31:16+07', false);
INSERT INTO public.checklists VALUES (52, false, 'Số lượng bán trực tiếp', 17, 1812, '2020-08-13 09:31:16+07', '2020-08-13 09:31:16+07', false);
INSERT INTO public.checklists VALUES (53, false, 'Số tiền cần phải trả cho trang quản trị hệ thống', 18, 1812, '2020-08-13 09:31:16+07', '2020-08-13 09:31:16+07', false);
INSERT INTO public.checklists VALUES (54, true, 'Xóa CompanyAgentController (auth, public nếu có)', 1, 1940, '2020-09-03 08:23:17+07', '2020-09-03 15:28:53+07', false);
INSERT INTO public.checklists VALUES (55, true, 'Xóa CompanyAgentService', 19, 1940, '2020-09-03 08:23:17+07', '2020-09-03 15:28:52+07', false);
INSERT INTO public.checklists VALUES (56, true, 'Xóa CompanyAgentRepository', 20, 1940, '2020-09-03 08:23:17+07', '2020-09-03 15:28:52+07', false);
INSERT INTO public.checklists VALUES (57, true, 'Xóa các liên kết từ các model khác đến CompanyAgent', 21, 1940, '2020-09-03 08:23:17+07', '2020-09-03 15:28:47+07', false);
INSERT INTO public.checklists VALUES (58, true, 'Xóa model CompanyAgent', 22, 1940, '2020-09-03 08:23:17+07', '2020-09-03 15:28:48+07', false);
INSERT INTO public.checklists VALUES (59, true, 'Xóa TagCompanyAgent', 23, 1940, '2020-09-03 08:23:17+07', '2020-09-03 15:28:46+07', false);
INSERT INTO public.checklists VALUES (60, true, 'Xóa DTO liên quan đến CompanyAgent (nếu có)', 24, 1940, '2020-09-03 08:23:17+07', '2020-09-03 15:28:47+07', false);
INSERT INTO public.checklists VALUES (61, true, 'Xóa AuctionsOnlineAssetPropertiesController (auth, public nếu có)', 0, 1946, '2020-09-03 08:26:17+07', '2020-09-03 15:29:19+07', false);
INSERT INTO public.checklists VALUES (62, true, 'Xóa AuctionsOnlineAssetPropertiesService', 1, 1946, '2020-09-03 08:26:17+07', '2020-09-03 15:29:18+07', false);
INSERT INTO public.checklists VALUES (63, true, 'Xóa AuctionsOnlineAssetPropertiesRepository', 2, 1946, '2020-09-03 08:26:17+07', '2020-09-03 15:29:18+07', false);
INSERT INTO public.checklists VALUES (64, true, 'Xóa liên kết từ các model khác đến AuctionsOnlineAssetProperties (nếu có)', 3, 1946, '2020-09-03 08:26:17+07', '2020-09-03 15:29:17+07', false);
INSERT INTO public.checklists VALUES (65, true, 'Xóa model AuctionsOnlineAssetProperties', 25, 1946, '2020-09-03 08:26:17+07', '2020-09-03 15:29:16+07', false);
INSERT INTO public.checklists VALUES (66, true, 'Xóa TagAuctionsOnlineAssetProperties', 26, 1946, '2020-09-03 08:26:17+07', '2020-09-03 15:29:14+07', false);
INSERT INTO public.checklists VALUES (67, true, 'Xóa DTO liên quan AuctionsOnlineAssetProperties (nếu có)', 27, 1946, '2020-09-03 08:26:17+07', '2020-09-03 15:29:16+07', false);
INSERT INTO public.checklists VALUES (68, true, 'Hiển thị 2 ô nhập văn bản tiếng Việt và tiếng Bahnar', 1, 3296, '2020-12-14 13:49:10+07', '2020-12-25 14:52:40+07', false);
INSERT INTO public.checklists VALUES (69, true, 'Cho phép chọn nguồn văn bản từ ảnh camera hoặc trong bộ nhớ', 28, 3296, '2020-12-14 13:49:10+07', '2020-12-25 14:52:39+07', false);
INSERT INTO public.checklists VALUES (70, true, 'Hiển thị nút dịch văn bản từ tiếng Việt => Bahnar', 29, 3296, '2020-12-14 13:49:10+07', '2020-12-25 14:52:41+07', false);
INSERT INTO public.checklists VALUES (71, false, 'Cho phép chỉnh sửa văn bản của cả 2 thứ tiếng', 30, 3296, '2020-12-14 13:49:10+07', '2020-12-14 13:49:10+07', false);
INSERT INTO public.checklists VALUES (72, false, 'Hiển thị nút và xử lý cho chức năng đọc văn bản', 31, 3296, '2020-12-14 13:49:10+07', '2020-12-14 13:49:10+07', false);
INSERT INTO public.checklists VALUES (73, false, 'Chỉnh sửa thông tin cá nhân cơ bản', 1, 3298, '2020-12-14 13:53:57+07', '2020-12-14 13:53:57+07', false);
INSERT INTO public.checklists VALUES (74, false, 'Đổi mật khẩu', 32, 3298, '2020-12-14 13:53:57+07', '2020-12-14 13:54:13+07', false);
INSERT INTO public.checklists VALUES (75, false, 'Thay đổi hình đại diện', 33, 3298, '2020-12-14 13:53:57+07', '2020-12-14 13:53:57+07', false);
INSERT INTO public.checklists VALUES (76, false, 'Xử lý cắt ảnh sau khi chọn hoặc chụp hình', 34, 3296, '2020-12-25 14:53:51+07', '2020-12-25 14:53:51+07', false);


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



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



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



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



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



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



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



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



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



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

INSERT INTO public.documents VALUES (2, 12, 7, 'Biểu mẫu Đấu giá QSDĐ Sở Tư Pháp', '', '2020-07-14 16:33:00+07');
INSERT INTO public.documents VALUES (3, 19, 6, 'Căn cứ pháp lý ưu đãi thuế', 'Thông tư số 13/2020/TT-BTTTT Quy định việc xác định hoạt động sản xuất phần mềm đáp ứng quy trình', '2020-07-15 11:16:26+07');
INSERT INTO public.documents VALUES (4, 12, 6, 'https://www.kodamakoifarm.com/', 'https://www.kodamakoifarm.com/', '2020-07-15 11:28:54+07');
INSERT INTO public.documents VALUES (5, 12, 6, 'https://www.catawiki.com/', 'https://www.catawiki.com/', '2020-07-15 11:29:09+07');
INSERT INTO public.documents VALUES (6, 12, 6, 'https://www.liveauctioneers.com/', 'https://www.liveauctioneers.com/', '2020-07-15 11:29:23+07');
INSERT INTO public.documents VALUES (7, 29, 6, 'Phiên đấu giá', 'Hiển thị đầy đủ các bước để đăng đấu giá:
- Bước 1: Chọn danh mục đấu giá: chọn đấu giá đất hoặc đấu giá nhà
- Bước 2: Cài đặt cho phiên đấu giá: 
     + Phương thức đấu giá (bắt buộc)
     + Hình thức đấu giá (bắt buộc)
     + Phương thức đấu giá (bắt buộc)
     + Thời gian bắt đầu (bắt buộc)
     + Số tiền cần nộp để tham gia phiên đấu giá (bắt buộc)
     + Thời hạn nộp tiền để tham gia phiên đấu giá (bắt buộc)
     + Tổng diện tích (bắt buộc)
     + Tài khoản ngân hàng để nộp tiền đặt cọc (Nhập nhiều tài khoản)
     + Yêu cầu nội dung nộp tiền
     + Điều kiện tham gia đấu giá
- Bước 3: Nhập thông tin từng lô đất:
     + Đối với thông tin lô đất: 
          * Ký hiệu lô đất(Số lô) - bắt buộc
          * Diện tích (m2) - bắt buộc
          * Khu đất
          * Tên đường
          * Lộ giới(m)
          * Đơn giá khởi điểm(VNĐ) - bắt buộc
          * Giá khởi điểm(VNĐ) - bắt buộc
          * Tiền đặt trước(VNĐ) - bắt buộc
          * Bước giá(VNĐ) - bắt buộc
     + Gộp thành danh sách các lô và đếm tổng số lô đã nhập.
- Bước 4: Nhập thông tin cá nhân/tổ chức đấu giá:
     + Chọn một cá nhân/tố chức đấu giá đã nhập trong hệ thống
     + Hoặc nhập mới một cá nhân/tổ chức đấu giá', '2020-07-20 16:56:02+07');
INSERT INTO public.documents VALUES (8, 28, 6, 'Luật đấu giá ', 'Chương II, Mục 1, Điều 19: Quyền và nghĩa vụ đấu giá viên
Chương II, Mục 2, Điều 24: Quyền và nghĩa vụ tổ chức đấu giá
Chương III. Quy trình và thủ tục đấu giá tài sản', '2020-07-22 14:53:08+07');
INSERT INTO public.documents VALUES (9, 28, 6, 'Nghị định 62/2017/NĐ-CP', 'Quy định chi tiết một số điều và biện pháp thi hành Luật đấu giá tài sản', '2020-07-22 14:54:22+07');
INSERT INTO public.documents VALUES (10, 28, 6, 'Thông tư 06/2017/TT-BTP', 'Quy định về chương trình khung của khóa đào tạo nghề đấu giá, cơ sở đào tạo nghề đấu giá, việc tập sự và kiểm tra kết quả tập sự hành nghề đấu giá và biểu mẫu trong lĩnh vực đấu giá tài sản', '2020-07-22 14:57:29+07');
INSERT INTO public.documents VALUES (11, 28, 6, 'Luật giao dịch điện tử', '', '2020-07-22 15:00:55+07');
INSERT INTO public.documents VALUES (12, 25, 6, 'NỘI QUY LAO ĐỘNG', 'Xem File đính kèm ', '2020-07-30 16:42:26+07');
INSERT INTO public.documents VALUES (13, 42, 6, 'Quyết định 38/2020', '', '2020-07-31 08:19:10+07');
INSERT INTO public.documents VALUES (14, 28, 6, 'Quyết định 216/2005/QĐ-TTg', 'Quyết định ban hành Quy chế đấu giá quyền sử dụng đất để giao đất có thu tiền sử dụng đất hoặc cho thuê đất của Thủ tướng Chính phủ', '2020-08-05 10:42:58+07');
INSERT INTO public.documents VALUES (15, 28, 7, 'Số: 43/2018/QĐ-UBND Quy định Đấu giá QSDĐ', 'QUY ĐỊNH VỀ ĐẤU GIÁ QUYỀN SỬ DỤNG ĐẤT ĐỂ NHÀ NƯỚC GIAO ĐẤT CÓ THU TIỀN SỬ DỤNG ĐẤT HOẶC CHO THUÊ ĐẤT TRÊN ĐỊA BÀN TỈNH BÌNH ĐỊNH', '2020-08-05 11:12:19+07');
INSERT INTO public.documents VALUES (16, 28, 6, 'Thông tư 48/2017/TT-BTC Chế độ tài chính', 'QUY ĐỊNH CHẾ ĐỘ TÀI CHÍNH TRONG HOẠT ĐỘNG ĐẤU GIÁ TÀI SẢN', '2020-08-05 11:15:06+07');
INSERT INTO public.documents VALUES (17, 43, 6, 'File âm thanh cần xử lý', 'https://drive.google.com/file/d/10k9nuzVHJe9O88qvLuXs5PEqttfqyzKv/view?usp=sharing
Thực hiện xử lý cắt âm thanh theo tài liệu bên tag Tập tin', '2020-08-08 15:10:24+07');
INSERT INTO public.documents VALUES (18, 45, 6, 'Bảng yêu cầu chức năng', '', '2020-09-01 13:51:06+07');
INSERT INTO public.documents VALUES (19, 46, 7, 'phân tích', '', '2020-09-11 16:15:38+07');
INSERT INTO public.documents VALUES (21, 46, 6, 'chức năng, mẫu báo cáo', '', '2020-09-12 15:30:05+07');
INSERT INTO public.documents VALUES (22, 46, 6, 'Sản lượng bán tổng hợp', '', '2020-10-30 17:06:42+07');
INSERT INTO public.documents VALUES (23, 46, 6, 'Bảng kê các đơn giao hàng chi tiết theo nhân viên giao hàng', '', '2020-10-30 17:08:52+07');
INSERT INTO public.documents VALUES (24, 46, 6, 'Báo cáo bán hàng chi tiết', '', '2020-10-30 17:10:04+07');
INSERT INTO public.documents VALUES (25, 46, 6, 'Bảng kê các đơn giao hàng chi tiết theo NVGH', '', '2020-10-30 17:11:37+07');
INSERT INTO public.documents VALUES (26, 46, 6, 'Báo cáo phân tích hiệu quả khuyến mãi', '', '2020-10-30 17:12:50+07');
INSERT INTO public.documents VALUES (27, 46, 6, 'Báo cáo sản lượng NVBH', '', '2020-10-30 17:13:50+07');
INSERT INTO public.documents VALUES (28, 46, 6, 'Báo cáo hàng tồn kho', '', '2020-10-30 17:14:27+07');
INSERT INTO public.documents VALUES (29, 46, 6, 'Danh mục sản phẩm', '', '2020-10-30 17:15:13+07');
INSERT INTO public.documents VALUES (30, 46, 6, 'Danh sách khách hàng theo NVBH', '', '2020-10-30 17:15:54+07');
INSERT INTO public.documents VALUES (31, 46, 6, 'Danh sách khuyến mãi tháng 10', '', '2020-10-30 17:16:51+07');
INSERT INTO public.documents VALUES (32, 46, 6, 'Bảng kê chi tiết mua hàng', '', '2020-10-30 17:17:30+07');
INSERT INTO public.documents VALUES (33, 46, 6, 'Bảng kê hàng hóa mua vào', '', '2020-10-30 17:18:07+07');
INSERT INTO public.documents VALUES (34, 46, 6, 'Phiếu giao nhận và thanh toán', '', '2020-10-30 17:18:36+07');
INSERT INTO public.documents VALUES (35, 46, 6, 'Phiếu xuất hàng theo NVGH', '', '2020-10-30 17:19:29+07');
INSERT INTO public.documents VALUES (36, 46, 6, 'Thư gởi NPP giá tháng 10_DN', '', '2020-10-30 17:21:02+07');
INSERT INTO public.documents VALUES (37, 46, 6, 'Thư gởi NPP giá tháng 11_DN', '', '2020-10-30 17:21:21+07');
INSERT INTO public.documents VALUES (38, 76, 7, 'THÔNG TƯ QUY ĐỊNH CHẾ ĐỘ BÁO CÁO THỐNG KÊ NGÀNH LAO ĐỘNG - THƯƠNG BINH VÀ XÃ HỘI', '', '2022-10-06 12:07:47+07');
INSERT INTO public.documents VALUES (39, 76, 7, 'Mẫu số 01 NLĐ', '', '2022-10-06 12:08:30+07');
INSERT INTO public.documents VALUES (40, 76, 7, 'Mẫu số 02 (Cơ sở GDNN)', '', '2022-10-06 12:08:44+07');
INSERT INTO public.documents VALUES (41, 76, 7, 'Mô tả phần mềm giáo dục nghề nghiệp', '', '2022-10-06 12:09:32+07');
INSERT INTO public.documents VALUES (42, 76, 7, 'Yêu cầu xuất báo cáo', '', '2022-10-06 12:10:05+07');
INSERT INTO public.documents VALUES (43, 76, 6, 'Danh mục dùng chung', '', '2022-11-02 10:38:43+07');
INSERT INTO public.documents VALUES (44, 76, 6, 'tt-26-2020-bldtbxh.pdf', '', '2022-11-16 10:32:54+07');
INSERT INTO public.documents VALUES (45, 76, 6, 'Quyết định số 01.2017.QĐ-TTg.pdf', '', '2022-11-16 10:33:07+07');


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

INSERT INTO public.drive_entries VALUES (1, 56, NULL, 6, 'NỘI DUNG CUỘC HỌP.docx', false, '', '2021-03-01 17:31:00+07', '2021-03-01 17:31:00+07', 1, NULL, 0);


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

INSERT INTO public.email_addresses VALUES (1, 1, 'admin@gdtvietnam.com', true, true, '2020-02-14 08:20:43+07', '2020-02-14 08:22:08+07');
INSERT INTO public.email_addresses VALUES (2, 5, 'nghiakhanh@gmail.com', true, true, '2020-02-14 08:50:52+07', '2020-02-14 08:50:52+07');
INSERT INTO public.email_addresses VALUES (3, 6, 'lhngoc@gdtvietnam.com', true, true, '2020-02-14 09:41:34+07', '2020-02-14 09:41:34+07');
INSERT INTO public.email_addresses VALUES (5, 8, 'trantien12qn@gmail.com', true, true, '2020-02-21 16:51:03+07', '2020-02-21 16:51:03+07');
INSERT INTO public.email_addresses VALUES (6, 9, 'huynhthao30893@gmail.com', true, true, '2020-02-21 16:56:40+07', '2020-02-21 16:56:40+07');
INSERT INTO public.email_addresses VALUES (7, 10, 'dungnguyn713@gmail.com', true, true, '2020-02-24 08:34:37+07', '2020-02-24 08:34:37+07');
INSERT INTO public.email_addresses VALUES (9, 12, 'pr.phamtinh@gmail.com', true, true, '2020-03-17 16:12:27+07', '2020-03-17 16:12:27+07');
INSERT INTO public.email_addresses VALUES (10, 13, 'dongtv2510@gmail.com', true, true, '2020-03-18 14:18:43+07', '2020-03-18 14:18:43+07');
INSERT INTO public.email_addresses VALUES (11, 14, 'trunggdt@gmail.com', true, true, '2020-03-21 15:38:23+07', '2020-03-21 15:38:23+07');
INSERT INTO public.email_addresses VALUES (12, 15, 'tuan1996qn@gmail.com', true, true, '2020-04-06 13:50:32+07', '2020-04-06 13:50:32+07');
INSERT INTO public.email_addresses VALUES (13, 16, 'gdtvietnam2019@gmail.com', true, true, '2020-04-10 15:27:31+07', '2020-04-10 15:27:31+07');
INSERT INTO public.email_addresses VALUES (14, 17, 'tr.quocdat31@gmail.com', true, true, '2020-04-10 15:27:37+07', '2020-04-10 15:27:37+07');
INSERT INTO public.email_addresses VALUES (16, 19, 'tqtien27@gmail.com', true, true, '2020-06-25 16:29:32+07', '2020-06-25 16:29:32+07');
INSERT INTO public.email_addresses VALUES (17, 20, 'info@gdtvietnam.com', true, true, '2020-07-13 09:01:49+07', '2020-07-13 09:01:49+07');
INSERT INTO public.email_addresses VALUES (18, 21, 'anhtrandbg@gmail.com', true, true, '2020-07-13 13:34:18+07', '2020-07-18 10:22:53+07');
INSERT INTO public.email_addresses VALUES (19, 22, 'info2@gdtvietnam.com', true, true, '2020-07-13 13:36:53+07', '2020-07-13 13:36:53+07');
INSERT INTO public.email_addresses VALUES (20, 23, 'vanthanh90.qn@gmail.com', true, true, '2020-07-13 13:44:03+07', '2020-07-13 13:44:03+07');
INSERT INTO public.email_addresses VALUES (21, 24, 'cuong.ictbd@gmail.com', true, true, '2020-07-13 16:19:02+07', '2020-07-13 16:19:02+07');
INSERT INTO public.email_addresses VALUES (23, 26, 'hny.91@gmail.com', true, true, '2020-07-15 09:02:00+07', '2020-07-15 09:02:00+07');
INSERT INTO public.email_addresses VALUES (24, 27, 'kimqui@gmail.com', true, true, '2020-07-15 09:03:02+07', '2020-07-15 09:03:02+07');
INSERT INTO public.email_addresses VALUES (25, 28, 'thuquyen123@gmail.com', true, true, '2020-07-15 09:04:58+07', '2020-07-15 09:04:58+07');
INSERT INTO public.email_addresses VALUES (26, 29, 'hoangvu123@gmail.com', true, true, '2020-07-15 09:07:13+07', '2020-07-15 09:07:13+07');
INSERT INTO public.email_addresses VALUES (27, 30, 'levu123@gmail.com', true, true, '2020-07-15 09:08:54+07', '2020-07-15 09:08:54+07');
INSERT INTO public.email_addresses VALUES (28, 31, 'mynhon123@gmail.com', true, true, '2020-07-15 09:10:30+07', '2020-07-15 09:10:30+07');
INSERT INTO public.email_addresses VALUES (29, 32, 'nguyentiensy@gmail.com', true, true, '2020-07-15 02:13:29+07', '2020-07-15 02:13:29+07');
INSERT INTO public.email_addresses VALUES (30, 33, 'quochuy.gis@gmail.com', true, true, '2020-07-15 09:21:15+07', '2020-07-15 09:21:15+07');
INSERT INTO public.email_addresses VALUES (31, 32, 'tiensyqn95@gmail.com', false, true, '2020-07-15 09:59:49+07', '2020-07-15 09:59:49+07');
INSERT INTO public.email_addresses VALUES (32, 34, 'hajkuteo9x@gmail.com', true, true, '2020-07-18 10:21:04+07', '2020-07-18 10:21:04+07');
INSERT INTO public.email_addresses VALUES (33, 30, 'Ken.trang58@gmail.com', false, true, '2020-07-18 10:23:25+07', '2020-07-18 10:25:01+07');
INSERT INTO public.email_addresses VALUES (34, 31, 'Mynhontranle97@gmail.com', false, true, '2020-07-18 10:24:55+07', '2020-07-18 10:33:48+07');
INSERT INTO public.email_addresses VALUES (35, 26, 'hny.0391@gmail.com', false, false, '2020-07-18 10:25:04+07', '2020-07-18 10:25:12+07');
INSERT INTO public.email_addresses VALUES (36, 35, 'yphuong123@gmail.com', true, true, '2020-07-18 16:20:49+07', '2020-07-18 16:20:49+07');
INSERT INTO public.email_addresses VALUES (37, 35, 'yphuong972@gmail.com', false, false, '2020-07-24 18:26:18+07', '2020-07-24 18:27:00+07');
INSERT INTO public.email_addresses VALUES (38, 37, 'dangngoctien98@gmail.com', true, true, '2020-08-19 13:13:50+07', '2020-08-19 13:13:50+07');
INSERT INTO public.email_addresses VALUES (39, 38, 'tn.toannguyen2811@gmail.com', true, true, '2020-08-25 08:16:56+07', '2020-08-25 08:16:56+07');
INSERT INTO public.email_addresses VALUES (40, 39, 'vovanviettqt2016@gmail.com', true, true, '2020-09-01 08:12:29+07', '2020-09-01 08:12:29+07');
INSERT INTO public.email_addresses VALUES (41, 40, 'honggamqn1998@gmail.com', true, true, '2020-09-03 09:11:21+07', '2020-09-03 09:11:21+07');
INSERT INTO public.email_addresses VALUES (42, 41, 'leanhquyqn22@gmail.com', true, true, '2020-09-03 09:12:18+07', '2020-09-03 09:12:18+07');
INSERT INTO public.email_addresses VALUES (44, 43, 'quocdung@gmail.com', true, true, '2020-11-12 15:01:35+07', '2020-11-12 15:02:17+07');
INSERT INTO public.email_addresses VALUES (45, 44, 'hongphuc@gmail.com', true, true, '2020-11-12 15:06:36+07', '2020-11-12 15:06:36+07');
INSERT INTO public.email_addresses VALUES (46, 44, 'Nguyenthihongphuc494@gmail.com', false, false, '2020-11-12 17:50:42+07', '2020-11-12 17:51:26+07');
INSERT INTO public.email_addresses VALUES (47, 45, 'thuhuong@gmail.com', true, true, '2020-11-16 08:48:30+07', '2020-11-16 08:48:30+07');
INSERT INTO public.email_addresses VALUES (49, 47, 'trangle111@gmail.com', true, true, '2020-12-09 09:15:02+07', '2020-12-09 09:15:02+07');
INSERT INTO public.email_addresses VALUES (50, 48, 'hoangly123@gmail.com', true, true, '2021-03-17 16:42:16+07', '2021-03-17 16:42:16+07');
INSERT INTO public.email_addresses VALUES (51, 49, 'thanhngoc123@gmail.com', true, true, '2021-03-17 16:45:40+07', '2021-03-17 16:45:40+07');
INSERT INTO public.email_addresses VALUES (52, 50, 'hongdiem123@gmail.com', true, true, '2021-03-17 16:46:09+07', '2021-03-17 16:46:09+07');
INSERT INTO public.email_addresses VALUES (53, 51, 'hieu12345@gmail.com', true, true, '2021-03-17 16:48:30+07', '2021-03-17 16:48:30+07');
INSERT INTO public.email_addresses VALUES (54, 52, 'phamduynam.qn95@gmail.com', true, true, '2021-06-02 08:14:51+07', '2021-06-02 08:14:51+07');
INSERT INTO public.email_addresses VALUES (55, 53, 'bienvanle204@gmail.com', true, true, '2021-07-12 03:17:35+07', '2021-07-12 03:17:35+07');
INSERT INTO public.email_addresses VALUES (56, 54, 'datqn1234@gmail.com', true, true, '2021-07-16 14:18:20+07', '2021-07-16 14:18:20+07');
INSERT INTO public.email_addresses VALUES (57, 55, 'cppointer@gmail.com', true, true, '2022-06-16 13:24:07+07', '2022-06-16 13:24:07+07');
INSERT INTO public.email_addresses VALUES (58, 56, 'mathanhhoang2506@gmail.com', true, true, '2022-06-16 13:25:22+07', '2022-06-16 13:25:22+07');
INSERT INTO public.email_addresses VALUES (59, 57, 'hungthinh11122000@gmail.com', true, true, '2022-10-27 10:20:06+07', '2022-10-27 10:20:06+07');


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

INSERT INTO public.enabled_modules VALUES (1, 1, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (2, 1, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (3, 1, 'news');
INSERT INTO public.enabled_modules VALUES (4, 1, 'documents');
INSERT INTO public.enabled_modules VALUES (5, 1, 'files');
INSERT INTO public.enabled_modules VALUES (6, 1, 'wiki');
INSERT INTO public.enabled_modules VALUES (7, 1, 'repository');
INSERT INTO public.enabled_modules VALUES (8, 1, 'boards');
INSERT INTO public.enabled_modules VALUES (9, 1, 'calendar');
INSERT INTO public.enabled_modules VALUES (10, 1, 'gantt');
INSERT INTO public.enabled_modules VALUES (11, 2, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (12, 2, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (13, 2, 'news');
INSERT INTO public.enabled_modules VALUES (14, 2, 'documents');
INSERT INTO public.enabled_modules VALUES (15, 2, 'files');
INSERT INTO public.enabled_modules VALUES (16, 2, 'wiki');
INSERT INTO public.enabled_modules VALUES (17, 2, 'repository');
INSERT INTO public.enabled_modules VALUES (18, 2, 'boards');
INSERT INTO public.enabled_modules VALUES (19, 2, 'calendar');
INSERT INTO public.enabled_modules VALUES (20, 2, 'gantt');
INSERT INTO public.enabled_modules VALUES (23, 1, 'agile');
INSERT INTO public.enabled_modules VALUES (24, 1, 'kanbantool_module');
INSERT INTO public.enabled_modules VALUES (25, 2, 'agile');
INSERT INTO public.enabled_modules VALUES (26, 3, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (27, 3, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (28, 3, 'documents');
INSERT INTO public.enabled_modules VALUES (29, 3, 'files');
INSERT INTO public.enabled_modules VALUES (30, 3, 'wiki');
INSERT INTO public.enabled_modules VALUES (31, 3, 'repository');
INSERT INTO public.enabled_modules VALUES (32, 3, 'calendar');
INSERT INTO public.enabled_modules VALUES (33, 3, 'gantt');
INSERT INTO public.enabled_modules VALUES (34, 4, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (35, 4, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (36, 4, 'documents');
INSERT INTO public.enabled_modules VALUES (37, 4, 'files');
INSERT INTO public.enabled_modules VALUES (38, 4, 'wiki');
INSERT INTO public.enabled_modules VALUES (39, 4, 'repository');
INSERT INTO public.enabled_modules VALUES (40, 4, 'calendar');
INSERT INTO public.enabled_modules VALUES (41, 4, 'gantt');
INSERT INTO public.enabled_modules VALUES (42, 5, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (43, 5, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (44, 5, 'news');
INSERT INTO public.enabled_modules VALUES (45, 5, 'documents');
INSERT INTO public.enabled_modules VALUES (46, 5, 'files');
INSERT INTO public.enabled_modules VALUES (47, 5, 'wiki');
INSERT INTO public.enabled_modules VALUES (48, 5, 'repository');
INSERT INTO public.enabled_modules VALUES (49, 5, 'boards');
INSERT INTO public.enabled_modules VALUES (50, 5, 'calendar');
INSERT INTO public.enabled_modules VALUES (51, 5, 'gantt');
INSERT INTO public.enabled_modules VALUES (52, 6, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (53, 6, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (54, 6, 'news');
INSERT INTO public.enabled_modules VALUES (55, 6, 'documents');
INSERT INTO public.enabled_modules VALUES (56, 6, 'files');
INSERT INTO public.enabled_modules VALUES (57, 6, 'wiki');
INSERT INTO public.enabled_modules VALUES (58, 6, 'repository');
INSERT INTO public.enabled_modules VALUES (59, 6, 'calendar');
INSERT INTO public.enabled_modules VALUES (60, 6, 'gantt');
INSERT INTO public.enabled_modules VALUES (61, 7, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (62, 7, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (63, 7, 'news');
INSERT INTO public.enabled_modules VALUES (64, 7, 'documents');
INSERT INTO public.enabled_modules VALUES (65, 7, 'files');
INSERT INTO public.enabled_modules VALUES (66, 7, 'wiki');
INSERT INTO public.enabled_modules VALUES (67, 7, 'repository');
INSERT INTO public.enabled_modules VALUES (68, 7, 'calendar');
INSERT INTO public.enabled_modules VALUES (69, 7, 'gantt');
INSERT INTO public.enabled_modules VALUES (70, 8, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (71, 8, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (72, 8, 'news');
INSERT INTO public.enabled_modules VALUES (73, 8, 'documents');
INSERT INTO public.enabled_modules VALUES (74, 8, 'files');
INSERT INTO public.enabled_modules VALUES (75, 8, 'wiki');
INSERT INTO public.enabled_modules VALUES (76, 8, 'repository');
INSERT INTO public.enabled_modules VALUES (77, 8, 'calendar');
INSERT INTO public.enabled_modules VALUES (78, 8, 'gantt');
INSERT INTO public.enabled_modules VALUES (79, 9, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (80, 9, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (81, 9, 'news');
INSERT INTO public.enabled_modules VALUES (82, 9, 'documents');
INSERT INTO public.enabled_modules VALUES (83, 9, 'files');
INSERT INTO public.enabled_modules VALUES (84, 9, 'wiki');
INSERT INTO public.enabled_modules VALUES (85, 9, 'repository');
INSERT INTO public.enabled_modules VALUES (86, 9, 'calendar');
INSERT INTO public.enabled_modules VALUES (87, 9, 'gantt');
INSERT INTO public.enabled_modules VALUES (89, 4, 'agile');
INSERT INTO public.enabled_modules VALUES (90, 10, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (91, 10, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (92, 10, 'news');
INSERT INTO public.enabled_modules VALUES (93, 10, 'documents');
INSERT INTO public.enabled_modules VALUES (94, 10, 'files');
INSERT INTO public.enabled_modules VALUES (95, 10, 'wiki');
INSERT INTO public.enabled_modules VALUES (96, 10, 'repository');
INSERT INTO public.enabled_modules VALUES (97, 10, 'boards');
INSERT INTO public.enabled_modules VALUES (98, 10, 'calendar');
INSERT INTO public.enabled_modules VALUES (99, 10, 'gantt');
INSERT INTO public.enabled_modules VALUES (100, 10, 'kanbantool_module');
INSERT INTO public.enabled_modules VALUES (101, 10, 'agile');
INSERT INTO public.enabled_modules VALUES (102, 3, 'agile');
INSERT INTO public.enabled_modules VALUES (103, 11, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (104, 11, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (105, 11, 'news');
INSERT INTO public.enabled_modules VALUES (106, 11, 'documents');
INSERT INTO public.enabled_modules VALUES (107, 11, 'files');
INSERT INTO public.enabled_modules VALUES (108, 11, 'wiki');
INSERT INTO public.enabled_modules VALUES (109, 11, 'repository');
INSERT INTO public.enabled_modules VALUES (110, 11, 'boards');
INSERT INTO public.enabled_modules VALUES (111, 11, 'calendar');
INSERT INTO public.enabled_modules VALUES (112, 11, 'gantt');
INSERT INTO public.enabled_modules VALUES (113, 11, 'agile');
INSERT INTO public.enabled_modules VALUES (114, 12, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (115, 12, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (116, 12, 'news');
INSERT INTO public.enabled_modules VALUES (117, 12, 'documents');
INSERT INTO public.enabled_modules VALUES (118, 12, 'files');
INSERT INTO public.enabled_modules VALUES (119, 12, 'wiki');
INSERT INTO public.enabled_modules VALUES (120, 12, 'repository');
INSERT INTO public.enabled_modules VALUES (121, 12, 'boards');
INSERT INTO public.enabled_modules VALUES (122, 12, 'calendar');
INSERT INTO public.enabled_modules VALUES (123, 12, 'gantt');
INSERT INTO public.enabled_modules VALUES (124, 12, 'agile');
INSERT INTO public.enabled_modules VALUES (125, 13, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (126, 13, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (127, 13, 'news');
INSERT INTO public.enabled_modules VALUES (128, 13, 'documents');
INSERT INTO public.enabled_modules VALUES (129, 13, 'files');
INSERT INTO public.enabled_modules VALUES (130, 13, 'wiki');
INSERT INTO public.enabled_modules VALUES (131, 13, 'repository');
INSERT INTO public.enabled_modules VALUES (132, 13, 'boards');
INSERT INTO public.enabled_modules VALUES (133, 13, 'calendar');
INSERT INTO public.enabled_modules VALUES (134, 13, 'gantt');
INSERT INTO public.enabled_modules VALUES (135, 13, 'agile');
INSERT INTO public.enabled_modules VALUES (136, 14, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (137, 14, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (138, 14, 'news');
INSERT INTO public.enabled_modules VALUES (139, 14, 'documents');
INSERT INTO public.enabled_modules VALUES (140, 14, 'files');
INSERT INTO public.enabled_modules VALUES (141, 14, 'wiki');
INSERT INTO public.enabled_modules VALUES (142, 14, 'repository');
INSERT INTO public.enabled_modules VALUES (143, 14, 'boards');
INSERT INTO public.enabled_modules VALUES (144, 14, 'calendar');
INSERT INTO public.enabled_modules VALUES (145, 14, 'gantt');
INSERT INTO public.enabled_modules VALUES (146, 14, 'agile');
INSERT INTO public.enabled_modules VALUES (147, 15, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (148, 15, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (149, 15, 'news');
INSERT INTO public.enabled_modules VALUES (150, 15, 'documents');
INSERT INTO public.enabled_modules VALUES (151, 15, 'files');
INSERT INTO public.enabled_modules VALUES (152, 15, 'wiki');
INSERT INTO public.enabled_modules VALUES (153, 15, 'repository');
INSERT INTO public.enabled_modules VALUES (154, 15, 'boards');
INSERT INTO public.enabled_modules VALUES (155, 15, 'calendar');
INSERT INTO public.enabled_modules VALUES (156, 15, 'gantt');
INSERT INTO public.enabled_modules VALUES (157, 15, 'agile');
INSERT INTO public.enabled_modules VALUES (158, 16, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (159, 16, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (160, 16, 'news');
INSERT INTO public.enabled_modules VALUES (161, 16, 'documents');
INSERT INTO public.enabled_modules VALUES (162, 16, 'files');
INSERT INTO public.enabled_modules VALUES (163, 16, 'wiki');
INSERT INTO public.enabled_modules VALUES (164, 16, 'repository');
INSERT INTO public.enabled_modules VALUES (165, 16, 'boards');
INSERT INTO public.enabled_modules VALUES (166, 16, 'calendar');
INSERT INTO public.enabled_modules VALUES (167, 16, 'gantt');
INSERT INTO public.enabled_modules VALUES (168, 16, 'agile');
INSERT INTO public.enabled_modules VALUES (169, 17, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (170, 17, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (171, 17, 'news');
INSERT INTO public.enabled_modules VALUES (172, 17, 'documents');
INSERT INTO public.enabled_modules VALUES (173, 17, 'files');
INSERT INTO public.enabled_modules VALUES (174, 17, 'wiki');
INSERT INTO public.enabled_modules VALUES (175, 17, 'repository');
INSERT INTO public.enabled_modules VALUES (176, 17, 'boards');
INSERT INTO public.enabled_modules VALUES (177, 17, 'calendar');
INSERT INTO public.enabled_modules VALUES (178, 17, 'gantt');
INSERT INTO public.enabled_modules VALUES (179, 17, 'agile');
INSERT INTO public.enabled_modules VALUES (180, 18, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (181, 18, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (182, 18, 'news');
INSERT INTO public.enabled_modules VALUES (183, 18, 'documents');
INSERT INTO public.enabled_modules VALUES (184, 18, 'files');
INSERT INTO public.enabled_modules VALUES (185, 18, 'wiki');
INSERT INTO public.enabled_modules VALUES (186, 18, 'repository');
INSERT INTO public.enabled_modules VALUES (187, 18, 'boards');
INSERT INTO public.enabled_modules VALUES (188, 18, 'calendar');
INSERT INTO public.enabled_modules VALUES (189, 18, 'gantt');
INSERT INTO public.enabled_modules VALUES (190, 18, 'agile');
INSERT INTO public.enabled_modules VALUES (191, 19, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (192, 19, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (193, 19, 'news');
INSERT INTO public.enabled_modules VALUES (194, 19, 'documents');
INSERT INTO public.enabled_modules VALUES (195, 19, 'files');
INSERT INTO public.enabled_modules VALUES (196, 19, 'wiki');
INSERT INTO public.enabled_modules VALUES (197, 19, 'repository');
INSERT INTO public.enabled_modules VALUES (198, 19, 'boards');
INSERT INTO public.enabled_modules VALUES (199, 19, 'calendar');
INSERT INTO public.enabled_modules VALUES (200, 19, 'gantt');
INSERT INTO public.enabled_modules VALUES (201, 19, 'agile');
INSERT INTO public.enabled_modules VALUES (202, 20, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (203, 20, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (204, 20, 'news');
INSERT INTO public.enabled_modules VALUES (205, 20, 'documents');
INSERT INTO public.enabled_modules VALUES (206, 20, 'files');
INSERT INTO public.enabled_modules VALUES (207, 20, 'wiki');
INSERT INTO public.enabled_modules VALUES (208, 20, 'repository');
INSERT INTO public.enabled_modules VALUES (209, 20, 'boards');
INSERT INTO public.enabled_modules VALUES (210, 20, 'calendar');
INSERT INTO public.enabled_modules VALUES (211, 20, 'gantt');
INSERT INTO public.enabled_modules VALUES (212, 20, 'agile');
INSERT INTO public.enabled_modules VALUES (213, 21, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (214, 21, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (215, 21, 'news');
INSERT INTO public.enabled_modules VALUES (216, 21, 'documents');
INSERT INTO public.enabled_modules VALUES (217, 21, 'files');
INSERT INTO public.enabled_modules VALUES (218, 21, 'wiki');
INSERT INTO public.enabled_modules VALUES (219, 21, 'repository');
INSERT INTO public.enabled_modules VALUES (220, 21, 'boards');
INSERT INTO public.enabled_modules VALUES (221, 21, 'calendar');
INSERT INTO public.enabled_modules VALUES (222, 21, 'gantt');
INSERT INTO public.enabled_modules VALUES (223, 21, 'agile');
INSERT INTO public.enabled_modules VALUES (224, 22, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (225, 22, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (226, 22, 'news');
INSERT INTO public.enabled_modules VALUES (227, 22, 'documents');
INSERT INTO public.enabled_modules VALUES (228, 22, 'files');
INSERT INTO public.enabled_modules VALUES (229, 22, 'wiki');
INSERT INTO public.enabled_modules VALUES (230, 22, 'repository');
INSERT INTO public.enabled_modules VALUES (231, 22, 'boards');
INSERT INTO public.enabled_modules VALUES (232, 22, 'calendar');
INSERT INTO public.enabled_modules VALUES (233, 22, 'gantt');
INSERT INTO public.enabled_modules VALUES (234, 22, 'agile');
INSERT INTO public.enabled_modules VALUES (235, 23, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (236, 23, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (237, 23, 'news');
INSERT INTO public.enabled_modules VALUES (238, 23, 'documents');
INSERT INTO public.enabled_modules VALUES (239, 23, 'files');
INSERT INTO public.enabled_modules VALUES (240, 23, 'wiki');
INSERT INTO public.enabled_modules VALUES (241, 23, 'repository');
INSERT INTO public.enabled_modules VALUES (242, 23, 'boards');
INSERT INTO public.enabled_modules VALUES (243, 23, 'calendar');
INSERT INTO public.enabled_modules VALUES (244, 23, 'gantt');
INSERT INTO public.enabled_modules VALUES (245, 23, 'agile');
INSERT INTO public.enabled_modules VALUES (246, 24, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (247, 24, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (248, 24, 'news');
INSERT INTO public.enabled_modules VALUES (249, 24, 'documents');
INSERT INTO public.enabled_modules VALUES (250, 24, 'files');
INSERT INTO public.enabled_modules VALUES (251, 24, 'wiki');
INSERT INTO public.enabled_modules VALUES (252, 24, 'repository');
INSERT INTO public.enabled_modules VALUES (253, 24, 'boards');
INSERT INTO public.enabled_modules VALUES (254, 24, 'calendar');
INSERT INTO public.enabled_modules VALUES (255, 24, 'gantt');
INSERT INTO public.enabled_modules VALUES (256, 24, 'agile');
INSERT INTO public.enabled_modules VALUES (257, 25, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (258, 25, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (259, 25, 'news');
INSERT INTO public.enabled_modules VALUES (260, 25, 'documents');
INSERT INTO public.enabled_modules VALUES (261, 25, 'files');
INSERT INTO public.enabled_modules VALUES (262, 25, 'wiki');
INSERT INTO public.enabled_modules VALUES (263, 25, 'repository');
INSERT INTO public.enabled_modules VALUES (264, 25, 'boards');
INSERT INTO public.enabled_modules VALUES (265, 25, 'calendar');
INSERT INTO public.enabled_modules VALUES (266, 25, 'gantt');
INSERT INTO public.enabled_modules VALUES (267, 25, 'agile');
INSERT INTO public.enabled_modules VALUES (268, 26, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (269, 26, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (270, 26, 'news');
INSERT INTO public.enabled_modules VALUES (271, 26, 'documents');
INSERT INTO public.enabled_modules VALUES (272, 26, 'files');
INSERT INTO public.enabled_modules VALUES (273, 26, 'wiki');
INSERT INTO public.enabled_modules VALUES (274, 26, 'repository');
INSERT INTO public.enabled_modules VALUES (275, 26, 'boards');
INSERT INTO public.enabled_modules VALUES (276, 26, 'calendar');
INSERT INTO public.enabled_modules VALUES (277, 26, 'gantt');
INSERT INTO public.enabled_modules VALUES (278, 26, 'agile');
INSERT INTO public.enabled_modules VALUES (279, 27, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (280, 27, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (281, 27, 'news');
INSERT INTO public.enabled_modules VALUES (282, 27, 'documents');
INSERT INTO public.enabled_modules VALUES (283, 27, 'files');
INSERT INTO public.enabled_modules VALUES (284, 27, 'wiki');
INSERT INTO public.enabled_modules VALUES (285, 27, 'repository');
INSERT INTO public.enabled_modules VALUES (286, 27, 'boards');
INSERT INTO public.enabled_modules VALUES (287, 27, 'calendar');
INSERT INTO public.enabled_modules VALUES (288, 27, 'gantt');
INSERT INTO public.enabled_modules VALUES (289, 27, 'agile');
INSERT INTO public.enabled_modules VALUES (290, 28, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (291, 28, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (292, 28, 'news');
INSERT INTO public.enabled_modules VALUES (293, 28, 'documents');
INSERT INTO public.enabled_modules VALUES (294, 28, 'files');
INSERT INTO public.enabled_modules VALUES (295, 28, 'wiki');
INSERT INTO public.enabled_modules VALUES (296, 28, 'repository');
INSERT INTO public.enabled_modules VALUES (297, 28, 'boards');
INSERT INTO public.enabled_modules VALUES (298, 28, 'calendar');
INSERT INTO public.enabled_modules VALUES (299, 28, 'gantt');
INSERT INTO public.enabled_modules VALUES (300, 28, 'agile');
INSERT INTO public.enabled_modules VALUES (301, 29, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (302, 29, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (303, 29, 'news');
INSERT INTO public.enabled_modules VALUES (304, 29, 'documents');
INSERT INTO public.enabled_modules VALUES (305, 29, 'files');
INSERT INTO public.enabled_modules VALUES (306, 29, 'wiki');
INSERT INTO public.enabled_modules VALUES (307, 29, 'repository');
INSERT INTO public.enabled_modules VALUES (308, 29, 'boards');
INSERT INTO public.enabled_modules VALUES (309, 29, 'calendar');
INSERT INTO public.enabled_modules VALUES (310, 29, 'gantt');
INSERT INTO public.enabled_modules VALUES (311, 29, 'agile');
INSERT INTO public.enabled_modules VALUES (312, 30, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (313, 30, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (314, 30, 'news');
INSERT INTO public.enabled_modules VALUES (315, 30, 'documents');
INSERT INTO public.enabled_modules VALUES (316, 30, 'files');
INSERT INTO public.enabled_modules VALUES (317, 30, 'wiki');
INSERT INTO public.enabled_modules VALUES (318, 30, 'repository');
INSERT INTO public.enabled_modules VALUES (319, 30, 'boards');
INSERT INTO public.enabled_modules VALUES (320, 30, 'calendar');
INSERT INTO public.enabled_modules VALUES (321, 30, 'gantt');
INSERT INTO public.enabled_modules VALUES (322, 30, 'agile');
INSERT INTO public.enabled_modules VALUES (323, 31, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (324, 31, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (325, 31, 'news');
INSERT INTO public.enabled_modules VALUES (326, 31, 'documents');
INSERT INTO public.enabled_modules VALUES (327, 31, 'files');
INSERT INTO public.enabled_modules VALUES (328, 31, 'wiki');
INSERT INTO public.enabled_modules VALUES (329, 31, 'repository');
INSERT INTO public.enabled_modules VALUES (330, 31, 'boards');
INSERT INTO public.enabled_modules VALUES (331, 31, 'calendar');
INSERT INTO public.enabled_modules VALUES (332, 31, 'gantt');
INSERT INTO public.enabled_modules VALUES (333, 31, 'agile');
INSERT INTO public.enabled_modules VALUES (334, 32, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (335, 32, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (336, 32, 'news');
INSERT INTO public.enabled_modules VALUES (337, 32, 'documents');
INSERT INTO public.enabled_modules VALUES (338, 32, 'files');
INSERT INTO public.enabled_modules VALUES (339, 32, 'wiki');
INSERT INTO public.enabled_modules VALUES (340, 32, 'repository');
INSERT INTO public.enabled_modules VALUES (341, 32, 'boards');
INSERT INTO public.enabled_modules VALUES (342, 32, 'calendar');
INSERT INTO public.enabled_modules VALUES (343, 32, 'gantt');
INSERT INTO public.enabled_modules VALUES (344, 32, 'agile');
INSERT INTO public.enabled_modules VALUES (345, 33, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (346, 33, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (347, 33, 'news');
INSERT INTO public.enabled_modules VALUES (348, 33, 'documents');
INSERT INTO public.enabled_modules VALUES (349, 33, 'files');
INSERT INTO public.enabled_modules VALUES (350, 33, 'wiki');
INSERT INTO public.enabled_modules VALUES (351, 33, 'repository');
INSERT INTO public.enabled_modules VALUES (352, 33, 'boards');
INSERT INTO public.enabled_modules VALUES (353, 33, 'calendar');
INSERT INTO public.enabled_modules VALUES (354, 33, 'gantt');
INSERT INTO public.enabled_modules VALUES (355, 33, 'agile');
INSERT INTO public.enabled_modules VALUES (356, 34, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (357, 34, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (358, 34, 'news');
INSERT INTO public.enabled_modules VALUES (359, 34, 'documents');
INSERT INTO public.enabled_modules VALUES (360, 34, 'files');
INSERT INTO public.enabled_modules VALUES (361, 34, 'wiki');
INSERT INTO public.enabled_modules VALUES (362, 34, 'repository');
INSERT INTO public.enabled_modules VALUES (363, 34, 'boards');
INSERT INTO public.enabled_modules VALUES (364, 34, 'calendar');
INSERT INTO public.enabled_modules VALUES (365, 34, 'gantt');
INSERT INTO public.enabled_modules VALUES (366, 34, 'agile');
INSERT INTO public.enabled_modules VALUES (367, 35, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (368, 35, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (369, 35, 'news');
INSERT INTO public.enabled_modules VALUES (370, 35, 'documents');
INSERT INTO public.enabled_modules VALUES (371, 35, 'files');
INSERT INTO public.enabled_modules VALUES (372, 35, 'wiki');
INSERT INTO public.enabled_modules VALUES (373, 35, 'repository');
INSERT INTO public.enabled_modules VALUES (374, 35, 'boards');
INSERT INTO public.enabled_modules VALUES (375, 35, 'calendar');
INSERT INTO public.enabled_modules VALUES (376, 35, 'gantt');
INSERT INTO public.enabled_modules VALUES (377, 35, 'agile');
INSERT INTO public.enabled_modules VALUES (378, 36, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (379, 36, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (380, 36, 'news');
INSERT INTO public.enabled_modules VALUES (381, 36, 'documents');
INSERT INTO public.enabled_modules VALUES (382, 36, 'files');
INSERT INTO public.enabled_modules VALUES (383, 36, 'wiki');
INSERT INTO public.enabled_modules VALUES (384, 36, 'repository');
INSERT INTO public.enabled_modules VALUES (385, 36, 'boards');
INSERT INTO public.enabled_modules VALUES (386, 36, 'calendar');
INSERT INTO public.enabled_modules VALUES (387, 36, 'gantt');
INSERT INTO public.enabled_modules VALUES (388, 36, 'agile');
INSERT INTO public.enabled_modules VALUES (389, 37, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (390, 37, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (391, 37, 'news');
INSERT INTO public.enabled_modules VALUES (392, 37, 'documents');
INSERT INTO public.enabled_modules VALUES (393, 37, 'files');
INSERT INTO public.enabled_modules VALUES (394, 37, 'wiki');
INSERT INTO public.enabled_modules VALUES (395, 37, 'repository');
INSERT INTO public.enabled_modules VALUES (396, 37, 'boards');
INSERT INTO public.enabled_modules VALUES (397, 37, 'calendar');
INSERT INTO public.enabled_modules VALUES (398, 37, 'gantt');
INSERT INTO public.enabled_modules VALUES (399, 37, 'agile');
INSERT INTO public.enabled_modules VALUES (400, 38, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (401, 38, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (402, 38, 'news');
INSERT INTO public.enabled_modules VALUES (403, 38, 'documents');
INSERT INTO public.enabled_modules VALUES (404, 38, 'files');
INSERT INTO public.enabled_modules VALUES (405, 38, 'wiki');
INSERT INTO public.enabled_modules VALUES (406, 38, 'repository');
INSERT INTO public.enabled_modules VALUES (407, 38, 'boards');
INSERT INTO public.enabled_modules VALUES (408, 38, 'calendar');
INSERT INTO public.enabled_modules VALUES (409, 38, 'gantt');
INSERT INTO public.enabled_modules VALUES (410, 38, 'agile');
INSERT INTO public.enabled_modules VALUES (411, 39, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (412, 39, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (413, 39, 'news');
INSERT INTO public.enabled_modules VALUES (414, 39, 'documents');
INSERT INTO public.enabled_modules VALUES (415, 39, 'files');
INSERT INTO public.enabled_modules VALUES (416, 39, 'wiki');
INSERT INTO public.enabled_modules VALUES (417, 39, 'repository');
INSERT INTO public.enabled_modules VALUES (418, 39, 'boards');
INSERT INTO public.enabled_modules VALUES (419, 39, 'calendar');
INSERT INTO public.enabled_modules VALUES (420, 39, 'gantt');
INSERT INTO public.enabled_modules VALUES (421, 39, 'agile');
INSERT INTO public.enabled_modules VALUES (422, 40, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (423, 40, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (424, 40, 'news');
INSERT INTO public.enabled_modules VALUES (425, 40, 'documents');
INSERT INTO public.enabled_modules VALUES (426, 40, 'files');
INSERT INTO public.enabled_modules VALUES (427, 40, 'wiki');
INSERT INTO public.enabled_modules VALUES (428, 40, 'repository');
INSERT INTO public.enabled_modules VALUES (429, 40, 'boards');
INSERT INTO public.enabled_modules VALUES (430, 40, 'calendar');
INSERT INTO public.enabled_modules VALUES (431, 40, 'gantt');
INSERT INTO public.enabled_modules VALUES (432, 40, 'agile');
INSERT INTO public.enabled_modules VALUES (433, 41, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (434, 41, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (435, 41, 'news');
INSERT INTO public.enabled_modules VALUES (436, 41, 'documents');
INSERT INTO public.enabled_modules VALUES (437, 41, 'files');
INSERT INTO public.enabled_modules VALUES (438, 41, 'wiki');
INSERT INTO public.enabled_modules VALUES (439, 41, 'repository');
INSERT INTO public.enabled_modules VALUES (440, 41, 'boards');
INSERT INTO public.enabled_modules VALUES (441, 41, 'calendar');
INSERT INTO public.enabled_modules VALUES (442, 41, 'gantt');
INSERT INTO public.enabled_modules VALUES (443, 41, 'agile');
INSERT INTO public.enabled_modules VALUES (444, 42, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (445, 42, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (446, 42, 'news');
INSERT INTO public.enabled_modules VALUES (447, 42, 'documents');
INSERT INTO public.enabled_modules VALUES (448, 42, 'files');
INSERT INTO public.enabled_modules VALUES (449, 42, 'wiki');
INSERT INTO public.enabled_modules VALUES (450, 42, 'repository');
INSERT INTO public.enabled_modules VALUES (451, 42, 'boards');
INSERT INTO public.enabled_modules VALUES (452, 42, 'calendar');
INSERT INTO public.enabled_modules VALUES (453, 42, 'gantt');
INSERT INTO public.enabled_modules VALUES (454, 42, 'agile');
INSERT INTO public.enabled_modules VALUES (455, 43, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (456, 43, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (457, 43, 'news');
INSERT INTO public.enabled_modules VALUES (458, 43, 'documents');
INSERT INTO public.enabled_modules VALUES (459, 43, 'files');
INSERT INTO public.enabled_modules VALUES (460, 43, 'wiki');
INSERT INTO public.enabled_modules VALUES (461, 43, 'repository');
INSERT INTO public.enabled_modules VALUES (462, 43, 'boards');
INSERT INTO public.enabled_modules VALUES (463, 43, 'calendar');
INSERT INTO public.enabled_modules VALUES (464, 43, 'gantt');
INSERT INTO public.enabled_modules VALUES (465, 43, 'agile');
INSERT INTO public.enabled_modules VALUES (466, 44, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (467, 44, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (468, 44, 'news');
INSERT INTO public.enabled_modules VALUES (469, 44, 'documents');
INSERT INTO public.enabled_modules VALUES (470, 44, 'files');
INSERT INTO public.enabled_modules VALUES (471, 44, 'wiki');
INSERT INTO public.enabled_modules VALUES (472, 44, 'repository');
INSERT INTO public.enabled_modules VALUES (473, 44, 'boards');
INSERT INTO public.enabled_modules VALUES (474, 44, 'calendar');
INSERT INTO public.enabled_modules VALUES (475, 44, 'gantt');
INSERT INTO public.enabled_modules VALUES (476, 44, 'agile');
INSERT INTO public.enabled_modules VALUES (477, 45, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (478, 45, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (479, 45, 'news');
INSERT INTO public.enabled_modules VALUES (480, 45, 'documents');
INSERT INTO public.enabled_modules VALUES (481, 45, 'files');
INSERT INTO public.enabled_modules VALUES (482, 45, 'wiki');
INSERT INTO public.enabled_modules VALUES (483, 45, 'repository');
INSERT INTO public.enabled_modules VALUES (484, 45, 'boards');
INSERT INTO public.enabled_modules VALUES (485, 45, 'calendar');
INSERT INTO public.enabled_modules VALUES (486, 45, 'gantt');
INSERT INTO public.enabled_modules VALUES (487, 45, 'agile');
INSERT INTO public.enabled_modules VALUES (488, 46, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (489, 46, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (490, 46, 'news');
INSERT INTO public.enabled_modules VALUES (491, 46, 'documents');
INSERT INTO public.enabled_modules VALUES (492, 46, 'files');
INSERT INTO public.enabled_modules VALUES (493, 46, 'wiki');
INSERT INTO public.enabled_modules VALUES (494, 46, 'repository');
INSERT INTO public.enabled_modules VALUES (495, 46, 'boards');
INSERT INTO public.enabled_modules VALUES (496, 46, 'calendar');
INSERT INTO public.enabled_modules VALUES (497, 46, 'gantt');
INSERT INTO public.enabled_modules VALUES (498, 46, 'agile');
INSERT INTO public.enabled_modules VALUES (499, 47, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (500, 47, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (501, 47, 'news');
INSERT INTO public.enabled_modules VALUES (502, 47, 'documents');
INSERT INTO public.enabled_modules VALUES (503, 47, 'files');
INSERT INTO public.enabled_modules VALUES (504, 47, 'wiki');
INSERT INTO public.enabled_modules VALUES (505, 47, 'repository');
INSERT INTO public.enabled_modules VALUES (506, 47, 'boards');
INSERT INTO public.enabled_modules VALUES (507, 47, 'calendar');
INSERT INTO public.enabled_modules VALUES (508, 47, 'gantt');
INSERT INTO public.enabled_modules VALUES (509, 47, 'agile');
INSERT INTO public.enabled_modules VALUES (510, 48, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (511, 48, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (512, 48, 'news');
INSERT INTO public.enabled_modules VALUES (513, 48, 'documents');
INSERT INTO public.enabled_modules VALUES (514, 48, 'files');
INSERT INTO public.enabled_modules VALUES (515, 48, 'wiki');
INSERT INTO public.enabled_modules VALUES (516, 48, 'repository');
INSERT INTO public.enabled_modules VALUES (517, 48, 'boards');
INSERT INTO public.enabled_modules VALUES (518, 48, 'calendar');
INSERT INTO public.enabled_modules VALUES (519, 48, 'gantt');
INSERT INTO public.enabled_modules VALUES (520, 48, 'agile');
INSERT INTO public.enabled_modules VALUES (521, 49, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (522, 49, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (523, 49, 'news');
INSERT INTO public.enabled_modules VALUES (524, 49, 'documents');
INSERT INTO public.enabled_modules VALUES (525, 49, 'files');
INSERT INTO public.enabled_modules VALUES (526, 49, 'wiki');
INSERT INTO public.enabled_modules VALUES (527, 49, 'repository');
INSERT INTO public.enabled_modules VALUES (528, 49, 'boards');
INSERT INTO public.enabled_modules VALUES (529, 49, 'calendar');
INSERT INTO public.enabled_modules VALUES (530, 49, 'gantt');
INSERT INTO public.enabled_modules VALUES (531, 49, 'agile');
INSERT INTO public.enabled_modules VALUES (532, 50, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (533, 50, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (534, 50, 'news');
INSERT INTO public.enabled_modules VALUES (535, 50, 'documents');
INSERT INTO public.enabled_modules VALUES (536, 50, 'files');
INSERT INTO public.enabled_modules VALUES (537, 50, 'wiki');
INSERT INTO public.enabled_modules VALUES (538, 50, 'repository');
INSERT INTO public.enabled_modules VALUES (539, 50, 'boards');
INSERT INTO public.enabled_modules VALUES (540, 50, 'calendar');
INSERT INTO public.enabled_modules VALUES (541, 50, 'gantt');
INSERT INTO public.enabled_modules VALUES (542, 50, 'agile');
INSERT INTO public.enabled_modules VALUES (543, 51, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (544, 51, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (545, 51, 'news');
INSERT INTO public.enabled_modules VALUES (546, 51, 'documents');
INSERT INTO public.enabled_modules VALUES (547, 51, 'files');
INSERT INTO public.enabled_modules VALUES (548, 51, 'wiki');
INSERT INTO public.enabled_modules VALUES (549, 51, 'repository');
INSERT INTO public.enabled_modules VALUES (550, 51, 'boards');
INSERT INTO public.enabled_modules VALUES (551, 51, 'calendar');
INSERT INTO public.enabled_modules VALUES (552, 51, 'gantt');
INSERT INTO public.enabled_modules VALUES (553, 51, 'agile');
INSERT INTO public.enabled_modules VALUES (554, 52, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (555, 52, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (556, 52, 'news');
INSERT INTO public.enabled_modules VALUES (557, 52, 'documents');
INSERT INTO public.enabled_modules VALUES (558, 52, 'files');
INSERT INTO public.enabled_modules VALUES (559, 52, 'wiki');
INSERT INTO public.enabled_modules VALUES (560, 52, 'repository');
INSERT INTO public.enabled_modules VALUES (561, 52, 'boards');
INSERT INTO public.enabled_modules VALUES (562, 52, 'calendar');
INSERT INTO public.enabled_modules VALUES (563, 52, 'gantt');
INSERT INTO public.enabled_modules VALUES (564, 52, 'agile');
INSERT INTO public.enabled_modules VALUES (565, 53, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (566, 53, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (567, 53, 'news');
INSERT INTO public.enabled_modules VALUES (568, 53, 'documents');
INSERT INTO public.enabled_modules VALUES (569, 53, 'files');
INSERT INTO public.enabled_modules VALUES (570, 53, 'wiki');
INSERT INTO public.enabled_modules VALUES (571, 53, 'repository');
INSERT INTO public.enabled_modules VALUES (572, 53, 'boards');
INSERT INTO public.enabled_modules VALUES (573, 53, 'calendar');
INSERT INTO public.enabled_modules VALUES (574, 53, 'gantt');
INSERT INTO public.enabled_modules VALUES (575, 53, 'agile');
INSERT INTO public.enabled_modules VALUES (576, 54, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (577, 54, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (578, 54, 'news');
INSERT INTO public.enabled_modules VALUES (579, 54, 'documents');
INSERT INTO public.enabled_modules VALUES (580, 54, 'files');
INSERT INTO public.enabled_modules VALUES (581, 54, 'wiki');
INSERT INTO public.enabled_modules VALUES (582, 54, 'repository');
INSERT INTO public.enabled_modules VALUES (583, 54, 'boards');
INSERT INTO public.enabled_modules VALUES (584, 54, 'calendar');
INSERT INTO public.enabled_modules VALUES (585, 54, 'gantt');
INSERT INTO public.enabled_modules VALUES (586, 54, 'agile');
INSERT INTO public.enabled_modules VALUES (587, 55, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (588, 55, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (589, 55, 'news');
INSERT INTO public.enabled_modules VALUES (590, 55, 'documents');
INSERT INTO public.enabled_modules VALUES (591, 55, 'files');
INSERT INTO public.enabled_modules VALUES (592, 55, 'wiki');
INSERT INTO public.enabled_modules VALUES (593, 55, 'repository');
INSERT INTO public.enabled_modules VALUES (594, 55, 'boards');
INSERT INTO public.enabled_modules VALUES (595, 55, 'calendar');
INSERT INTO public.enabled_modules VALUES (596, 55, 'gantt');
INSERT INTO public.enabled_modules VALUES (597, 55, 'agile');
INSERT INTO public.enabled_modules VALUES (598, 56, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (599, 56, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (600, 56, 'news');
INSERT INTO public.enabled_modules VALUES (601, 56, 'documents');
INSERT INTO public.enabled_modules VALUES (602, 56, 'files');
INSERT INTO public.enabled_modules VALUES (603, 56, 'wiki');
INSERT INTO public.enabled_modules VALUES (604, 56, 'repository');
INSERT INTO public.enabled_modules VALUES (605, 56, 'boards');
INSERT INTO public.enabled_modules VALUES (606, 56, 'calendar');
INSERT INTO public.enabled_modules VALUES (607, 56, 'gantt');
INSERT INTO public.enabled_modules VALUES (608, 56, 'agile');
INSERT INTO public.enabled_modules VALUES (609, 57, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (610, 57, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (611, 57, 'news');
INSERT INTO public.enabled_modules VALUES (612, 57, 'documents');
INSERT INTO public.enabled_modules VALUES (613, 57, 'files');
INSERT INTO public.enabled_modules VALUES (614, 57, 'wiki');
INSERT INTO public.enabled_modules VALUES (615, 57, 'repository');
INSERT INTO public.enabled_modules VALUES (616, 57, 'boards');
INSERT INTO public.enabled_modules VALUES (617, 57, 'calendar');
INSERT INTO public.enabled_modules VALUES (618, 57, 'gantt');
INSERT INTO public.enabled_modules VALUES (619, 57, 'agile');
INSERT INTO public.enabled_modules VALUES (631, 59, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (632, 59, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (633, 59, 'news');
INSERT INTO public.enabled_modules VALUES (634, 59, 'documents');
INSERT INTO public.enabled_modules VALUES (635, 59, 'files');
INSERT INTO public.enabled_modules VALUES (636, 59, 'wiki');
INSERT INTO public.enabled_modules VALUES (637, 59, 'repository');
INSERT INTO public.enabled_modules VALUES (638, 59, 'boards');
INSERT INTO public.enabled_modules VALUES (639, 59, 'calendar');
INSERT INTO public.enabled_modules VALUES (640, 59, 'gantt');
INSERT INTO public.enabled_modules VALUES (641, 59, 'agile');
INSERT INTO public.enabled_modules VALUES (653, 61, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (654, 61, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (655, 61, 'news');
INSERT INTO public.enabled_modules VALUES (656, 61, 'documents');
INSERT INTO public.enabled_modules VALUES (657, 61, 'files');
INSERT INTO public.enabled_modules VALUES (658, 61, 'wiki');
INSERT INTO public.enabled_modules VALUES (659, 61, 'repository');
INSERT INTO public.enabled_modules VALUES (660, 61, 'boards');
INSERT INTO public.enabled_modules VALUES (661, 61, 'calendar');
INSERT INTO public.enabled_modules VALUES (662, 61, 'gantt');
INSERT INTO public.enabled_modules VALUES (663, 61, 'agile');
INSERT INTO public.enabled_modules VALUES (664, 56, 'drive');
INSERT INTO public.enabled_modules VALUES (665, 62, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (666, 62, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (667, 62, 'news');
INSERT INTO public.enabled_modules VALUES (668, 62, 'documents');
INSERT INTO public.enabled_modules VALUES (669, 62, 'files');
INSERT INTO public.enabled_modules VALUES (670, 62, 'wiki');
INSERT INTO public.enabled_modules VALUES (671, 62, 'repository');
INSERT INTO public.enabled_modules VALUES (672, 62, 'boards');
INSERT INTO public.enabled_modules VALUES (673, 62, 'calendar');
INSERT INTO public.enabled_modules VALUES (674, 62, 'gantt');
INSERT INTO public.enabled_modules VALUES (675, 62, 'agile');
INSERT INTO public.enabled_modules VALUES (676, 63, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (677, 63, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (678, 63, 'news');
INSERT INTO public.enabled_modules VALUES (679, 63, 'documents');
INSERT INTO public.enabled_modules VALUES (680, 63, 'files');
INSERT INTO public.enabled_modules VALUES (681, 63, 'wiki');
INSERT INTO public.enabled_modules VALUES (682, 63, 'repository');
INSERT INTO public.enabled_modules VALUES (683, 63, 'boards');
INSERT INTO public.enabled_modules VALUES (684, 63, 'calendar');
INSERT INTO public.enabled_modules VALUES (685, 63, 'gantt');
INSERT INTO public.enabled_modules VALUES (686, 63, 'agile');
INSERT INTO public.enabled_modules VALUES (687, 64, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (688, 64, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (689, 64, 'news');
INSERT INTO public.enabled_modules VALUES (690, 64, 'documents');
INSERT INTO public.enabled_modules VALUES (691, 64, 'files');
INSERT INTO public.enabled_modules VALUES (692, 64, 'wiki');
INSERT INTO public.enabled_modules VALUES (693, 64, 'repository');
INSERT INTO public.enabled_modules VALUES (694, 64, 'boards');
INSERT INTO public.enabled_modules VALUES (695, 64, 'calendar');
INSERT INTO public.enabled_modules VALUES (696, 64, 'gantt');
INSERT INTO public.enabled_modules VALUES (697, 64, 'agile');
INSERT INTO public.enabled_modules VALUES (698, 65, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (699, 65, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (700, 65, 'news');
INSERT INTO public.enabled_modules VALUES (701, 65, 'documents');
INSERT INTO public.enabled_modules VALUES (702, 65, 'files');
INSERT INTO public.enabled_modules VALUES (703, 65, 'wiki');
INSERT INTO public.enabled_modules VALUES (704, 65, 'repository');
INSERT INTO public.enabled_modules VALUES (705, 65, 'boards');
INSERT INTO public.enabled_modules VALUES (706, 65, 'calendar');
INSERT INTO public.enabled_modules VALUES (707, 65, 'gantt');
INSERT INTO public.enabled_modules VALUES (708, 65, 'agile');
INSERT INTO public.enabled_modules VALUES (709, 66, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (710, 66, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (711, 66, 'news');
INSERT INTO public.enabled_modules VALUES (712, 66, 'documents');
INSERT INTO public.enabled_modules VALUES (713, 66, 'files');
INSERT INTO public.enabled_modules VALUES (714, 66, 'wiki');
INSERT INTO public.enabled_modules VALUES (715, 66, 'repository');
INSERT INTO public.enabled_modules VALUES (716, 66, 'boards');
INSERT INTO public.enabled_modules VALUES (717, 66, 'calendar');
INSERT INTO public.enabled_modules VALUES (718, 66, 'gantt');
INSERT INTO public.enabled_modules VALUES (719, 66, 'agile');
INSERT INTO public.enabled_modules VALUES (720, 67, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (721, 67, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (722, 67, 'news');
INSERT INTO public.enabled_modules VALUES (723, 67, 'documents');
INSERT INTO public.enabled_modules VALUES (724, 67, 'files');
INSERT INTO public.enabled_modules VALUES (725, 67, 'wiki');
INSERT INTO public.enabled_modules VALUES (726, 67, 'repository');
INSERT INTO public.enabled_modules VALUES (727, 67, 'boards');
INSERT INTO public.enabled_modules VALUES (728, 67, 'calendar');
INSERT INTO public.enabled_modules VALUES (729, 67, 'gantt');
INSERT INTO public.enabled_modules VALUES (730, 67, 'agile');
INSERT INTO public.enabled_modules VALUES (731, 68, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (732, 68, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (733, 68, 'news');
INSERT INTO public.enabled_modules VALUES (734, 68, 'documents');
INSERT INTO public.enabled_modules VALUES (735, 68, 'files');
INSERT INTO public.enabled_modules VALUES (736, 68, 'wiki');
INSERT INTO public.enabled_modules VALUES (737, 68, 'repository');
INSERT INTO public.enabled_modules VALUES (738, 68, 'boards');
INSERT INTO public.enabled_modules VALUES (739, 68, 'calendar');
INSERT INTO public.enabled_modules VALUES (740, 68, 'gantt');
INSERT INTO public.enabled_modules VALUES (741, 68, 'agile');
INSERT INTO public.enabled_modules VALUES (742, 69, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (743, 69, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (744, 69, 'news');
INSERT INTO public.enabled_modules VALUES (745, 69, 'documents');
INSERT INTO public.enabled_modules VALUES (746, 69, 'files');
INSERT INTO public.enabled_modules VALUES (747, 69, 'wiki');
INSERT INTO public.enabled_modules VALUES (748, 69, 'repository');
INSERT INTO public.enabled_modules VALUES (749, 69, 'boards');
INSERT INTO public.enabled_modules VALUES (750, 69, 'calendar');
INSERT INTO public.enabled_modules VALUES (751, 69, 'gantt');
INSERT INTO public.enabled_modules VALUES (752, 69, 'agile');
INSERT INTO public.enabled_modules VALUES (753, 70, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (754, 70, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (755, 70, 'news');
INSERT INTO public.enabled_modules VALUES (756, 70, 'documents');
INSERT INTO public.enabled_modules VALUES (757, 70, 'files');
INSERT INTO public.enabled_modules VALUES (758, 70, 'wiki');
INSERT INTO public.enabled_modules VALUES (759, 70, 'repository');
INSERT INTO public.enabled_modules VALUES (760, 70, 'boards');
INSERT INTO public.enabled_modules VALUES (761, 70, 'calendar');
INSERT INTO public.enabled_modules VALUES (762, 70, 'gantt');
INSERT INTO public.enabled_modules VALUES (763, 70, 'agile');
INSERT INTO public.enabled_modules VALUES (764, 71, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (765, 71, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (766, 71, 'news');
INSERT INTO public.enabled_modules VALUES (767, 71, 'documents');
INSERT INTO public.enabled_modules VALUES (768, 71, 'files');
INSERT INTO public.enabled_modules VALUES (769, 71, 'wiki');
INSERT INTO public.enabled_modules VALUES (770, 71, 'repository');
INSERT INTO public.enabled_modules VALUES (771, 71, 'boards');
INSERT INTO public.enabled_modules VALUES (772, 71, 'calendar');
INSERT INTO public.enabled_modules VALUES (773, 71, 'gantt');
INSERT INTO public.enabled_modules VALUES (774, 71, 'agile');
INSERT INTO public.enabled_modules VALUES (775, 72, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (776, 72, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (777, 72, 'news');
INSERT INTO public.enabled_modules VALUES (778, 72, 'documents');
INSERT INTO public.enabled_modules VALUES (779, 72, 'files');
INSERT INTO public.enabled_modules VALUES (780, 72, 'wiki');
INSERT INTO public.enabled_modules VALUES (781, 72, 'repository');
INSERT INTO public.enabled_modules VALUES (782, 72, 'boards');
INSERT INTO public.enabled_modules VALUES (783, 72, 'calendar');
INSERT INTO public.enabled_modules VALUES (784, 72, 'gantt');
INSERT INTO public.enabled_modules VALUES (785, 72, 'agile');
INSERT INTO public.enabled_modules VALUES (786, 73, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (787, 73, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (788, 73, 'news');
INSERT INTO public.enabled_modules VALUES (789, 73, 'documents');
INSERT INTO public.enabled_modules VALUES (790, 73, 'files');
INSERT INTO public.enabled_modules VALUES (791, 73, 'wiki');
INSERT INTO public.enabled_modules VALUES (792, 73, 'repository');
INSERT INTO public.enabled_modules VALUES (793, 73, 'boards');
INSERT INTO public.enabled_modules VALUES (794, 73, 'calendar');
INSERT INTO public.enabled_modules VALUES (795, 73, 'gantt');
INSERT INTO public.enabled_modules VALUES (796, 73, 'agile');
INSERT INTO public.enabled_modules VALUES (797, 43, 'drive');
INSERT INTO public.enabled_modules VALUES (798, 43, 'visual_editor');
INSERT INTO public.enabled_modules VALUES (799, 74, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (800, 74, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (801, 74, 'news');
INSERT INTO public.enabled_modules VALUES (802, 74, 'documents');
INSERT INTO public.enabled_modules VALUES (803, 74, 'files');
INSERT INTO public.enabled_modules VALUES (804, 74, 'wiki');
INSERT INTO public.enabled_modules VALUES (805, 74, 'repository');
INSERT INTO public.enabled_modules VALUES (806, 74, 'boards');
INSERT INTO public.enabled_modules VALUES (807, 74, 'calendar');
INSERT INTO public.enabled_modules VALUES (808, 74, 'gantt');
INSERT INTO public.enabled_modules VALUES (809, 74, 'agile');
INSERT INTO public.enabled_modules VALUES (810, 75, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (811, 75, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (812, 75, 'news');
INSERT INTO public.enabled_modules VALUES (813, 75, 'documents');
INSERT INTO public.enabled_modules VALUES (814, 75, 'files');
INSERT INTO public.enabled_modules VALUES (815, 75, 'wiki');
INSERT INTO public.enabled_modules VALUES (816, 75, 'repository');
INSERT INTO public.enabled_modules VALUES (817, 75, 'boards');
INSERT INTO public.enabled_modules VALUES (818, 75, 'calendar');
INSERT INTO public.enabled_modules VALUES (819, 75, 'gantt');
INSERT INTO public.enabled_modules VALUES (820, 75, 'agile');
INSERT INTO public.enabled_modules VALUES (821, 76, 'issue_tracking');
INSERT INTO public.enabled_modules VALUES (822, 76, 'time_tracking');
INSERT INTO public.enabled_modules VALUES (823, 76, 'documents');
INSERT INTO public.enabled_modules VALUES (825, 76, 'repository');
INSERT INTO public.enabled_modules VALUES (826, 76, 'calendar');
INSERT INTO public.enabled_modules VALUES (827, 76, 'gantt');
INSERT INTO public.enabled_modules VALUES (828, 76, 'agile');


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

INSERT INTO public.enumerations VALUES (1, 'Thấp', 1, false, 'IssuePriority', true, NULL, NULL, 'lowest');
INSERT INTO public.enumerations VALUES (2, 'Bình thường', 2, true, 'IssuePriority', true, NULL, NULL, 'default');
INSERT INTO public.enumerations VALUES (3, 'Cao', 3, false, 'IssuePriority', true, NULL, NULL, 'high3');
INSERT INTO public.enumerations VALUES (4, 'Khẩn cấp', 4, false, 'IssuePriority', true, NULL, NULL, 'high2');
INSERT INTO public.enumerations VALUES (5, 'Trung bình', 5, false, 'IssuePriority', true, NULL, NULL, 'highest');
INSERT INTO public.enumerations VALUES (6, 'Tài liệu người dùng', 1, false, 'DocumentCategory', true, NULL, NULL, NULL);
INSERT INTO public.enumerations VALUES (7, 'Tài liệu kỹ thuật', 2, false, 'DocumentCategory', true, NULL, NULL, NULL);
INSERT INTO public.enumerations VALUES (8, 'Thiết kế', 1, false, 'TimeEntryActivity', true, NULL, NULL, NULL);
INSERT INTO public.enumerations VALUES (9, 'Phát triển', 2, false, 'TimeEntryActivity', true, NULL, NULL, NULL);
INSERT INTO public.enumerations VALUES (10, 'Theo dõi', 3, false, 'TimeEntryActivity', true, NULL, NULL, NULL);


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

INSERT INTO public.groups_users VALUES (36, 5);
INSERT INTO public.groups_users VALUES (36, 6);
INSERT INTO public.groups_users VALUES (36, 8);
INSERT INTO public.groups_users VALUES (36, 9);
INSERT INTO public.groups_users VALUES (36, 10);
INSERT INTO public.groups_users VALUES (36, 12);
INSERT INTO public.groups_users VALUES (36, 13);
INSERT INTO public.groups_users VALUES (36, 14);
INSERT INTO public.groups_users VALUES (36, 15);
INSERT INTO public.groups_users VALUES (36, 16);
INSERT INTO public.groups_users VALUES (36, 17);
INSERT INTO public.groups_users VALUES (36, 19);
INSERT INTO public.groups_users VALUES (36, 20);
INSERT INTO public.groups_users VALUES (36, 21);
INSERT INTO public.groups_users VALUES (36, 22);
INSERT INTO public.groups_users VALUES (36, 23);
INSERT INTO public.groups_users VALUES (36, 24);
INSERT INTO public.groups_users VALUES (36, 26);
INSERT INTO public.groups_users VALUES (36, 27);
INSERT INTO public.groups_users VALUES (36, 28);
INSERT INTO public.groups_users VALUES (36, 29);
INSERT INTO public.groups_users VALUES (36, 30);
INSERT INTO public.groups_users VALUES (36, 31);
INSERT INTO public.groups_users VALUES (36, 32);
INSERT INTO public.groups_users VALUES (36, 33);
INSERT INTO public.groups_users VALUES (36, 34);
INSERT INTO public.groups_users VALUES (36, 35);


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



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



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

INSERT INTO public.issue_categories VALUES (1, 2, 'Trang khách hàng', 6);
INSERT INTO public.issue_categories VALUES (2, 2, 'Trang admin', NULL);
INSERT INTO public.issue_categories VALUES (3, 2, 'Trang đối tác', NULL);
INSERT INTO public.issue_categories VALUES (4, 1, 'Web', 8);
INSERT INTO public.issue_categories VALUES (5, 1, 'Service ký số', 5);
INSERT INTO public.issue_categories VALUES (6, 1, 'Mobile', 10);
INSERT INTO public.issue_categories VALUES (7, 3, 'QUẢN LÝ HỌC VIÊN', 12);
INSERT INTO public.issue_categories VALUES (8, 3, 'QUẢN TRỊ HỆ THỐNG', 12);
INSERT INTO public.issue_categories VALUES (9, 1, 'Đào tạo & Triển khai', 9);
INSERT INTO public.issue_categories VALUES (10, 4, 'Đề tài', 13);
INSERT INTO public.issue_categories VALUES (11, 4, 'Quản trị + CMS', 6);
INSERT INTO public.issue_categories VALUES (12, 1, 'Cần làm rõ', 8);
INSERT INTO public.issue_categories VALUES (13, 3, 'Nâng cấp', 12);
INSERT INTO public.issue_categories VALUES (14, 26, 'Nâng cấp, bổ sung tính năng của phần mềm Quản lý tiền lương', 22);
INSERT INTO public.issue_categories VALUES (15, 19, 'Thủ tục pháp lý cho phần mềm', NULL);
INSERT INTO public.issue_categories VALUES (16, 18, 'Số hóa Bản đồ (Đợt 2-10 dự án)', 33);
INSERT INTO public.issue_categories VALUES (17, 32, 'Thiết kế Profile Công ty', 14);
INSERT INTO public.issue_categories VALUES (18, 18, 'Chỉnh lý Thanh Tra tỉnh', 23);
INSERT INTO public.issue_categories VALUES (23, 18, 'Chỉnh lý phòng Nội vụ Huyện Phù Cát', 23);
INSERT INTO public.issue_categories VALUES (24, 18, 'Xử lý 50 dự án Bình Phước "Tháng 11"', 33);
INSERT INTO public.issue_categories VALUES (26, 57, 'Thực hiện số hóa 23 dồ án Bình Phước', 33);
INSERT INTO public.issue_categories VALUES (27, 61, 'Số hóa 10 dự án (1 QHPK và 9 BDHTSDD) Cần Thơ', 33);
INSERT INTO public.issue_categories VALUES (29, 67, 'Chỉnh lý tài liệu Phòng Quản lý Công nghiệp', 35);
INSERT INTO public.issue_categories VALUES (30, 69, 'android', NULL);
INSERT INTO public.issue_categories VALUES (31, 69, 'Web', NULL);
INSERT INTO public.issue_categories VALUES (32, 73, 'Công việc phát sinh', NULL);


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



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

INSERT INTO public.issue_relations VALUES (1, 571, 572, 'copied_to', NULL);
INSERT INTO public.issue_relations VALUES (2, 1552, 1659, 'copied_to', NULL);
INSERT INTO public.issue_relations VALUES (3, 1559, 1660, 'copied_to', NULL);
INSERT INTO public.issue_relations VALUES (4, 1612, 1661, 'copied_to', NULL);
INSERT INTO public.issue_relations VALUES (5, 1613, 1662, 'copied_to', NULL);
INSERT INTO public.issue_relations VALUES (6, 1614, 1663, 'copied_to', NULL);
INSERT INTO public.issue_relations VALUES (7, 1615, 1664, 'copied_to', NULL);
INSERT INTO public.issue_relations VALUES (8, 1616, 1665, 'copied_to', NULL);
INSERT INTO public.issue_relations VALUES (9, 1617, 1666, 'copied_to', NULL);
INSERT INTO public.issue_relations VALUES (10, 1634, 2832, 'copied_to', NULL);
INSERT INTO public.issue_relations VALUES (11, 4457, 4483, 'copied_to', NULL);


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

INSERT INTO public.issue_statuses VALUES (1, 'Mới', false, 1, NULL);
INSERT INTO public.issue_statuses VALUES (2, 'Đang tiến hành', false, 2, NULL);
INSERT INTO public.issue_statuses VALUES (3, 'Đã được giải quyết', false, 3, NULL);
INSERT INTO public.issue_statuses VALUES (4, 'Phản hồi', false, 4, NULL);
INSERT INTO public.issue_statuses VALUES (5, 'Đã đóng', true, 5, NULL);
INSERT INTO public.issue_statuses VALUES (6, 'Từ chối', true, 6, NULL);


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

INSERT INTO public.issues VALUES (1, 2, 2, 'Trang chủ', '', '2020-02-22', 1, 5, 5, 2, NULL, 5, 9, '2020-02-21 17:00:28+07', '2020-03-02 08:36:19+07', '2020-02-22', 100, NULL, NULL, 1, 1, 16, false, '2020-03-02 08:36:19+07');
INSERT INTO public.issues VALUES (2, 2, 2, 'Html + css feature post', '', '2020-02-22', 1, 5, 5, 2, NULL, 5, 4, '2020-02-21 17:01:12+07', '2020-03-02 08:36:07+07', '2020-02-22', 100, NULL, 1, 1, 2, 3, false, '2020-03-02 08:36:07+07');
INSERT INTO public.issues VALUES (3, 2, 2, 'Html + css tin tức cá coi', '', '2020-02-22', 1, 5, 5, 2, NULL, 5, 3, '2020-02-21 17:02:21+07', '2020-03-02 08:36:07+07', '2020-02-22', 100, NULL, 1, 1, 4, 5, false, '2020-03-02 08:36:07+07');
INSERT INTO public.issues VALUES (4, 2, 2, 'Html + css khung tìm kiếm', '', '2020-02-22', 1, 5, 5, 2, NULL, 5, 3, '2020-02-21 17:08:57+07', '2020-03-02 08:36:07+07', '2020-02-22', 100, NULL, 1, 1, 6, 7, false, '2020-03-02 08:36:07+07');
INSERT INTO public.issues VALUES (5, 2, 2, 'Html + css danh sách cá', '', '2020-02-22', 1, 5, 5, 2, NULL, 5, 2, '2020-02-21 17:09:17+07', '2020-03-02 08:36:07+07', '2020-02-22', 100, NULL, 1, 1, 8, 9, false, '2020-03-02 08:36:07+07');
INSERT INTO public.issues VALUES (6, 2, 2, 'Html + css mid post', '', '2020-02-22', 1, 5, 5, 2, NULL, 5, 2, '2020-02-21 17:10:26+07', '2020-03-02 08:36:07+07', '2020-02-22', 100, NULL, 1, 1, 10, 11, false, '2020-03-02 08:36:07+07');
INSERT INTO public.issues VALUES (7, 2, 2, 'Html + css group sản phẩm: tranh hội họa, trang sức', '', '2020-02-22', 1, 5, 5, 2, NULL, 5, 2, '2020-02-21 17:11:23+07', '2020-03-02 08:36:07+07', '2020-02-22', 100, NULL, 1, 1, 12, 13, false, '2020-03-02 08:36:07+07');
INSERT INTO public.issues VALUES (8, 2, 2, 'Html + css footer', '', '2020-02-22', 1, 5, 5, 2, NULL, 5, 2, '2020-02-21 17:12:37+07', '2020-03-02 08:36:08+07', '2020-02-22', 100, NULL, 1, 1, 14, 15, false, '2020-03-02 08:36:08+07');
INSERT INTO public.issues VALUES (9, 2, 1, 'Danh mục tài sản công phải nhập ', '', '2020-03-09', 4, 5, 8, 2, NULL, 8, 9, '2020-02-22 08:06:59+07', '2020-03-28 14:21:56+07', '2020-03-09', 100, NULL, NULL, 9, 1, 2, false, '2020-03-28 14:21:48+07');
INSERT INTO public.issues VALUES (10, 2, 1, 'Giá trị tài sản phải nhập bao nhiêu', '', '2020-03-09', 4, 5, 8, 2, NULL, 8, 7, '2020-02-22 08:08:49+07', '2020-03-28 14:21:56+07', '2020-03-09', 100, NULL, NULL, 10, 1, 2, false, '2020-03-28 14:21:48+07');
INSERT INTO public.issues VALUES (11, 2, 1, 'Nút từ chối hồ sơ của các đơn vị chủ quản', '', '2020-02-22', 4, 5, 8, 2, NULL, 8, 4, '2020-02-22 08:09:28+07', '2020-03-10 10:13:46+07', '2020-02-22', 100, NULL, NULL, 11, 1, 2, false, '2020-03-10 10:13:46+07');
INSERT INTO public.issues VALUES (12, 2, 1, 'Ký số cho đơn vị trực thuộc', '', '2020-04-01', 12, 5, 8, 2, NULL, 8, 10, '2020-02-22 08:09:48+07', '2020-06-03 08:12:50+07', '2020-04-01', 0, NULL, NULL, 12, 1, 2, false, '2020-06-03 08:12:50+07');
INSERT INTO public.issues VALUES (13, 2, 1, 'Sửa tên Giá sản phẩm, dịch vụ công ích', '', '2020-02-22', 4, 5, 8, 2, NULL, 8, 4, '2020-02-22 08:11:01+07', '2020-03-10 10:13:46+07', '2020-02-22', 100, NULL, NULL, 13, 1, 2, false, '2020-03-10 10:13:46+07');
INSERT INTO public.issues VALUES (14, 2, 1, 'Import dữ liệu HHDV khám bệnh, chữa bệnh', '', '2020-03-20', 4, 5, 8, 2, NULL, 8, 16, '2020-02-22 08:11:32+07', '2020-04-03 13:53:44+07', '2020-03-20', 100, NULL, NULL, 14, 1, 2, false, '2020-04-03 13:53:44+07');
INSERT INTO public.issues VALUES (15, 2, 1, 'Phần giá trị nhà xem lại VB pháp lý loại khác tùy theo (VD: thất lạc, không có)', '', '2020-04-01', 12, 5, 8, 2, NULL, 8, 11, '2020-02-22 08:13:22+07', '2020-05-13 06:44:43+07', '2020-04-01', 100, NULL, NULL, 15, 1, 2, false, '2020-05-13 06:44:43+07');
INSERT INTO public.issues VALUES (16, 2, 1, 'Check lại các button thêm xóa sửa trong danh mục ', '- Xét theo quyền truy cập (ẩn hiện Tab Danh mục)
- Trong từng đơn vị (Quyền danh mục chỉ cho quyền truy cập còn lại ẩn hết)', '2020-03-07', 4, 5, 8, 2, NULL, 8, 9, '2020-02-22 16:03:03+07', '2020-04-03 13:53:44+07', '2020-03-07', 100, NULL, NULL, 16, 1, 2, false, '2020-04-03 13:53:44+07');
INSERT INTO public.issues VALUES (17, 2, 1, 'Bỏ phân quyền lệ phí trước bạ cho bên xây dựng', '', '2020-02-24', 4, 5, 8, 2, NULL, 5, 4, '2020-02-24 08:18:40+07', '2020-03-10 10:13:46+07', '2020-02-24', 100, NULL, NULL, 17, 1, 2, false, '2020-03-10 10:13:46+07');
INSERT INTO public.issues VALUES (18, 2, 1, 'Trang login', 'API: http://171.244.38.75:8989

export async function loginAccount(username, password) {
    let response = await callApiPublic(`Login/Authenticate`, ''POST'', JSON.stringify({
        UserName: username,
        Password: password
    })).then(res => res.json()).catch(err => CHECK_ERROR(err));
    try {
        if (response.Message !== undefined) {
            CHECK_ERROR(response.Message);
            return false;
        }
        localStorage.setItem(ID_TOKEN_INFO, JSON.stringify(response.TaiKhoan));
        Cookies.set(ID_TOKEN_CLIENT, response.Token, { path: ''/'' });
        window.location.replace(response.TaiKhoan.TrangChu ? response.TaiKhoan.TrangChu : ''/'');
    } catch (err) {
        CHECK_ERROR("Không thể đăng nhập !");
        return false;
    }
}', '2020-02-28', 6, 5, 10, 2, NULL, 5, 14, '2020-02-24 08:36:35+07', '2020-06-03 08:12:58+07', '2020-02-27', 100, NULL, NULL, 18, 1, 12, false, '2020-06-03 08:12:58+07');
INSERT INTO public.issues VALUES (19, 2, 1, 'Trang dashboard', '', '2020-02-28', 6, 5, 10, 2, NULL, 10, 11, '2020-02-24 08:39:43+07', '2020-03-02 08:27:25+07', '2020-02-27', 100, NULL, NULL, 19, 1, 12, false, '2020-03-02 08:27:25+07');
INSERT INTO public.issues VALUES (20, 2, 1, 'Trang danh sách', '', '2020-03-03', 6, 5, 10, 2, NULL, 10, 16, '2020-02-24 08:55:16+07', '2020-04-25 08:16:44+07', '2020-03-02', 100, NULL, NULL, 20, 1, 6, false, '2020-04-25 08:16:44+07');
INSERT INTO public.issues VALUES (21, 2, 1, 'Trang chi tiết', '', '2020-03-19', 6, 5, 10, 2, NULL, 10, 75, '2020-02-24 08:55:48+07', '2020-04-25 08:17:17+07', '2020-03-06', 100, NULL, NULL, 21, 1, 46, false, '2020-04-25 08:17:17+07');
INSERT INTO public.issues VALUES (22, 2, 2, 'Trang chi tiết sản phẩm', '', '2020-02-24', 1, 5, 5, 2, NULL, 5, 5, '2020-02-24 09:36:22+07', '2020-03-02 08:36:19+07', '2020-02-24', 100, NULL, NULL, 22, 1, 8, false, '2020-03-02 08:36:19+07');
INSERT INTO public.issues VALUES (23, 2, 2, 'product-summary', '', '2020-02-24', 1, 5, 5, 2, NULL, 5, 3, '2020-02-24 09:36:45+07', '2020-03-02 08:36:08+07', '2020-02-24', 100, NULL, 22, 22, 2, 3, false, '2020-03-02 08:36:08+07');
INSERT INTO public.issues VALUES (24, 2, 2, 'product-content', '', '2020-02-24', 1, 5, 5, 2, NULL, 5, 3, '2020-02-24 09:37:04+07', '2020-03-02 08:36:08+07', '2020-02-24', 100, NULL, 22, 22, 4, 5, false, '2020-03-02 08:36:08+07');
INSERT INTO public.issues VALUES (25, 2, 2, 'product-related', '', '2020-02-24', 1, 5, 5, 2, NULL, 5, 3, '2020-02-24 09:37:46+07', '2020-03-02 08:36:08+07', '2020-02-24', 100, NULL, 22, 22, 6, 7, false, '2020-03-02 08:36:08+07');
INSERT INTO public.issues VALUES (26, 2, 1, 'Thông tin hồ sơ', '', '2020-03-12', 6, 5, NULL, 2, NULL, 5, 17, '2020-02-25 08:38:09+07', '2020-04-25 08:16:44+07', '2020-03-06', 100, NULL, 21, 21, 2, 9, false, '2020-04-25 08:16:44+07');
INSERT INTO public.issues VALUES (27, 2, 1, 'Chi tiết hồ sơ', '', '2020-03-12', 6, 5, 10, 2, NULL, 5, 17, '2020-02-25 08:38:24+07', '2020-04-25 08:16:44+07', '2020-03-07', 100, NULL, 21, 21, 10, 17, false, '2020-04-25 08:16:44+07');
INSERT INTO public.issues VALUES (28, 2, 1, 'Văn bản đính kèm', '', '2020-03-12', 6, 5, 10, 2, NULL, 5, 12, '2020-02-25 08:38:40+07', '2020-04-25 08:16:31+07', '2020-03-12', 100, NULL, 21, 21, 18, 19, false, '2020-04-25 08:16:31+07');
INSERT INTO public.issues VALUES (29, 2, 1, 'File PDF hồ sơ dữ liệu', '', '2020-03-12', 6, 5, 10, 2, NULL, 5, 13, '2020-02-25 08:38:59+07', '2020-04-25 08:16:31+07', '2020-03-12', 100, NULL, 21, 21, 20, 21, false, '2020-04-25 08:16:31+07');
INSERT INTO public.issues VALUES (30, 2, 1, 'Xem file PDF', '', '2020-03-13', 6, 5, 10, 2, NULL, 5, 18, '2020-02-25 08:39:22+07', '2020-04-25 08:16:31+07', '2020-03-13', 100, NULL, 21, 21, 22, 23, false, '2020-04-25 08:16:31+07');
INSERT INTO public.issues VALUES (31, 2, 1, 'Ký số', '', '2020-03-19', 6, 5, 10, 2, NULL, 5, 25, '2020-02-25 08:39:40+07', '2020-04-25 08:16:44+07', '2020-03-14', 100, NULL, 21, 21, 24, 31, false, '2020-04-25 08:16:44+07');
INSERT INTO public.issues VALUES (32, 2, 1, 'Gửi hồ sơ', '', '2020-03-19', 6, 5, 10, 2, NULL, 5, 25, '2020-02-25 08:40:12+07', '2020-04-25 08:16:44+07', '2020-03-14', 100, NULL, 21, 21, 32, 39, false, '2020-04-25 08:16:44+07');
INSERT INTO public.issues VALUES (33, 2, 2, 'Trang tìm kiếm cá', '', '2020-02-25', 1, 5, 5, 2, NULL, 5, 5, '2020-02-25 14:09:00+07', '2020-03-02 08:36:19+07', '2020-02-25', 100, NULL, NULL, 33, 1, 8, false, '2020-03-02 08:36:19+07');
INSERT INTO public.issues VALUES (34, 2, 2, 'Left Filter', '', '2020-02-25', 1, 5, 5, 2, NULL, 5, 3, '2020-02-25 14:29:57+07', '2020-03-02 08:36:08+07', '2020-02-25', 100, NULL, 33, 33, 2, 3, false, '2020-03-02 08:36:08+07');
INSERT INTO public.issues VALUES (35, 2, 2, 'Top filter', '', '2020-02-25', 1, 5, 5, 2, NULL, 5, 3, '2020-02-25 14:30:07+07', '2020-03-02 08:36:08+07', '2020-02-25', 100, NULL, 33, 33, 4, 5, false, '2020-03-02 08:36:08+07');
INSERT INTO public.issues VALUES (36, 2, 2, 'Product list', '', '2020-02-25', 1, 5, 5, 2, NULL, 5, 3, '2020-02-25 14:30:20+07', '2020-03-02 08:36:08+07', '2020-02-25', 100, NULL, 33, 33, 6, 7, false, '2020-03-02 08:36:08+07');
INSERT INTO public.issues VALUES (37, 2, 2, 'Trang chủ đất', '', '2020-02-26', 1, 5, 5, 2, NULL, 5, 3, '2020-02-26 11:04:44+07', '2020-03-02 08:36:19+07', '2020-02-26', 100, NULL, NULL, 37, 1, 2, false, '2020-03-02 08:36:19+07');
INSERT INTO public.issues VALUES (38, 2, 1, 'Sở Tài nguyên và Môi trường', '', '2020-03-10', NULL, 5, 8, 2, NULL, 8, 14, '2020-02-26 14:36:13+07', '2020-04-25 08:16:32+07', '2020-03-02', 100, NULL, NULL, 38, 1, 8, false, '2020-04-25 08:16:32+07');
INSERT INTO public.issues VALUES (39, 2, 1, 'Đề xuất đơn vị nhập liệu ký số (ký số 2 cấp)', '', '2020-03-09', 4, 5, 8, 2, NULL, 8, 6, '2020-02-26 14:38:19+07', '2020-03-28 14:21:56+07', '2020-03-09', 100, NULL, 38, 38, 2, 3, false, '2020-03-28 14:21:48+07');
INSERT INTO public.issues VALUES (40, 2, 1, 'Format lại datetime trong file PDF của giá trúng thầu', '', '2020-03-02', 5, 5, 5, 2, NULL, 8, 6, '2020-02-26 14:43:02+07', '2020-03-10 09:06:16+07', '2020-03-02', 100, NULL, 38, 38, 4, 5, false, '2020-03-10 09:06:16+07');
INSERT INTO public.issues VALUES (41, 2, 1, 'Báo cáo thống kê hồ sơ theo từng đơn vị ', '', '2020-03-10', 4, 5, 8, 2, NULL, 8, 8, '2020-02-26 14:44:15+07', '2020-03-28 14:21:56+07', '2020-03-10', 100, NULL, 38, 38, 6, 7, false, '2020-03-28 14:21:48+07');
INSERT INTO public.issues VALUES (42, 2, 1, 'Sửa trạng thái "Chờ duyệt hồ sơ" thành "Hồ sơ chờ duyệt"', '', '2020-02-26', 4, 5, 8, 2, NULL, 8, 3, '2020-02-26 14:50:16+07', '2020-03-10 10:13:47+07', '2020-02-26', 100, NULL, NULL, 42, 1, 2, false, '2020-03-10 10:13:47+07');
INSERT INTO public.issues VALUES (43, 2, 1, 'Thêm "Thời hạn ổn định đơn giá" cho Cục thuế và Ban quản lý khu kinh tế', '', '2020-03-20', 4, 5, 8, 2, NULL, 8, 10, '2020-02-26 15:05:57+07', '2020-04-03 13:53:45+07', '2020-03-20', 100, NULL, NULL, 43, 1, 2, false, '2020-04-03 13:53:45+07');
INSERT INTO public.issues VALUES (44, 2, 1, 'Liên hệ lấy danh sách ĐVTT chính xác', '', '2020-03-16', 9, 5, 8, 2, NULL, 8, 22, '2020-02-26 15:07:41+07', '2020-05-13 06:46:27+07', '2020-03-16', 100, NULL, NULL, 44, 1, 12, false, '2020-05-13 06:46:27+07');
INSERT INTO public.issues VALUES (45, 2, 1, 'Thêm chức năng tìm kiếm hồ sơ', ' ( Tìm theo tên hồ sơ, tên đơn vị tất cả loại giá ) ( Gõ không dấu )', '2020-03-02', 4, 5, 8, 2, NULL, 8, 8, '2020-02-26 15:12:21+07', '2020-03-10 10:13:47+07', '2020-03-02', 100, NULL, NULL, 45, 1, 2, false, '2020-03-10 10:13:47+07');
INSERT INTO public.issues VALUES (46, 2, 1, 'Giao diện', '', '2020-02-27', 6, 5, 10, 2, NULL, 5, 4, '2020-02-27 09:50:34+07', '2020-02-27 10:03:56+07', '2020-02-27', 0, NULL, 19, 19, 2, 3, false, '2020-02-27 10:03:04+07');
INSERT INTO public.issues VALUES (47, 2, 1, 'Api dasboard', '/Dashboard/ThongKeHoSo?IDDV=&start_date=01/01/2020&end_date=31/01/2020', '2020-02-27', 6, 5, 10, 2, NULL, 5, 4, '2020-02-27 09:51:03+07', '2020-03-02 08:27:14+07', '2020-02-27', 100, NULL, 19, 19, 4, 5, false, '2020-03-02 08:27:14+07');
INSERT INTO public.issues VALUES (48, 2, 1, 'Đăng nhập lỗi thì thông báo', '', '2020-02-27', 6, 5, 10, 2, NULL, 5, 3, '2020-02-27 09:52:06+07', '2020-03-02 08:27:34+07', '2020-02-27', 100, NULL, 18, 18, 2, 3, false, '2020-03-02 08:27:34+07');
INSERT INTO public.issues VALUES (49, 2, 1, 'Giao diện', '', '2020-02-27', 6, 5, 10, 2, NULL, 5, 3, '2020-02-27 09:52:26+07', '2020-03-02 08:27:35+07', '2020-02-27', 100, NULL, 18, 18, 4, 5, false, '2020-03-02 08:27:35+07');
INSERT INTO public.issues VALUES (50, 2, 1, 'Giao diện', '', '2020-02-27', 6, 5, NULL, 2, NULL, 10, 4, '2020-02-27 10:05:36+07', '2020-03-02 08:27:14+07', '2020-02-27', 100, NULL, 19, 19, 6, 7, false, '2020-03-02 08:27:14+07');
INSERT INTO public.issues VALUES (51, 2, 1, 'Khi bấm vào ô tên đăng nhập, nó thu lại chút chíu', '', '2020-02-27', 6, 5, 5, 2, NULL, 5, 3, '2020-02-27 14:28:10+07', '2020-06-03 08:12:51+07', '2020-02-27', 0, NULL, 18, 18, 6, 7, false, '2020-06-03 08:12:51+07');
INSERT INTO public.issues VALUES (52, 2, 1, 'Thêm loading', '', '2020-02-27', 6, 5, 10, 2, NULL, 5, 3, '2020-02-27 14:28:37+07', '2020-03-02 08:27:35+07', '2020-02-27', 100, NULL, 18, 18, 8, 9, false, '2020-03-02 08:27:35+07');
INSERT INTO public.issues VALUES (53, 2, 1, 'Sửa lại icon hồ sơ', '', '2020-02-28', 6, 5, 10, 2, NULL, 5, 3, '2020-02-28 09:37:27+07', '2020-03-02 08:27:14+07', '2020-02-28', 100, NULL, 19, 19, 8, 9, false, '2020-03-02 08:27:14+07');
INSERT INTO public.issues VALUES (54, 2, 1, 'Thêm hồ sơ đã duyệt + api', '', '2020-02-28', 6, 5, 10, 2, NULL, 5, 3, '2020-02-28 09:37:59+07', '2020-03-02 08:27:15+07', '2020-02-28', 100, NULL, 19, 19, 10, 11, false, '2020-03-02 08:27:15+07');
INSERT INTO public.issues VALUES (55, 2, 1, 'Fix css tên phần mềm, input', '', '2020-02-28', 6, 5, 5, 2, NULL, 5, 3, '2020-02-28 09:41:05+07', '2020-03-02 08:27:35+07', '2020-02-28', 100, NULL, 18, 18, 10, 11, false, '2020-03-02 08:27:35+07');
INSERT INTO public.issues VALUES (57, 2, 1, 'Sửa tên Giá sản phẩm, dịch vụ công ích (PDF)', '', '2020-03-02', 5, 5, 5, 2, NULL, 8, 4, '2020-02-28 15:30:12+07', '2020-03-10 09:06:16+07', '2020-03-02', 100, NULL, NULL, 57, 1, 2, false, '2020-03-10 09:06:16+07');
INSERT INTO public.issues VALUES (58, 2, 1, 'Ưu tiên thứ tự báo cáo tài sản công (1. đất, 2. nhà, 3. khác)', '', '2020-03-03', 4, 5, 5, 2, NULL, 8, 7, '2020-02-28 15:35:38+07', '2020-04-03 13:53:45+07', '2020-03-03', 100, NULL, NULL, 58, 1, 2, false, '2020-04-03 13:53:45+07');
INSERT INTO public.issues VALUES (59, 2, 1, 'API cho kê khai giá ', '', '2020-02-28', 5, 5, 5, 2, NULL, 8, 5, '2020-02-28 15:37:01+07', '2020-03-02 08:02:20+07', '2020-02-28', 100, NULL, NULL, 59, 1, 8, false, '2020-03-02 08:02:20+07');
INSERT INTO public.issues VALUES (60, 2, 1, 'Số công văn', '', '2020-02-28', 5, 5, 5, 2, NULL, 8, 3, '2020-02-28 15:37:32+07', '2020-03-02 08:02:05+07', '2020-02-28', 100, NULL, 59, 59, 2, 3, false, '2020-03-02 08:02:05+07');
INSERT INTO public.issues VALUES (61, 2, 1, 'Ngày tháng kê khai áp dụng', '', '2020-02-28', 5, 5, 5, 2, NULL, 8, 3, '2020-02-28 15:38:16+07', '2020-03-02 08:02:05+07', '2020-02-28', 100, NULL, 59, 59, 4, 5, false, '2020-03-02 08:02:05+07');
INSERT INTO public.issues VALUES (62, 2, 1, 'Nhập 2, 3 ở trang 2', '', '2020-02-28', 5, 5, 5, 2, NULL, 8, 3, '2020-02-28 15:38:41+07', '2020-03-02 08:02:05+07', '2020-02-28', 100, NULL, 59, 59, 6, 7, false, '2020-03-02 08:02:05+07');
INSERT INTO public.issues VALUES (63, 2, 1, 'Bỏ các mức giá tại cửa kho/nhà máy, tại các địa bàn, khu vực khác (nếu có) (PDF)', '', '2020-03-02', 5, 5, 5, 2, NULL, 8, 4, '2020-02-28 15:39:46+07', '2020-03-10 09:06:16+07', '2020-03-02', 100, NULL, NULL, 63, 1, 2, false, '2020-03-10 09:06:16+07');
INSERT INTO public.issues VALUES (64, 2, 1, 'Kê khai giá cho chọn mẫu: kê khai, thông báo', '', '2020-03-03', 4, 5, 8, 2, NULL, 8, 7, '2020-02-28 15:42:32+07', '2020-03-10 10:13:47+07', '2020-03-03', 100, NULL, NULL, 64, 1, 2, false, '2020-03-10 10:13:47+07');
INSERT INTO public.issues VALUES (66, 2, 1, 'Trang profile', '', '2020-03-05', 6, 5, 10, 2, NULL, 10, 23, '2020-02-29 16:11:24+07', '2020-04-25 08:16:44+07', '2020-02-29', 100, NULL, NULL, 66, 1, 16, false, '2020-04-25 08:16:44+07');
INSERT INTO public.issues VALUES (67, 2, 1, 'Giao diện trang profile', '', '2020-02-29', 6, 5, NULL, 2, NULL, 10, 4, '2020-02-29 16:12:25+07', '2020-04-25 08:16:32+07', '2020-02-29', 100, NULL, 66, 66, 2, 3, false, '2020-04-25 08:16:32+07');
INSERT INTO public.issues VALUES (68, 2, 1, 'Giao diện lúc click vào đổi mật khẩu', '', '2020-03-02', 6, 5, 10, 2, NULL, 10, 3, '2020-02-29 16:14:19+07', '2020-04-25 08:16:32+07', '2020-03-02', 100, NULL, 66, 66, 4, 5, false, '2020-04-25 08:16:32+07');
INSERT INTO public.issues VALUES (69, 2, 1, 'Giao diện lúc click vào cập nhật thông tin', '', '2020-03-02', 6, 5, 10, 2, NULL, 10, 6, '2020-02-29 16:15:01+07', '2020-04-25 08:16:32+07', '2020-03-02', 100, NULL, 66, 66, 6, 7, false, '2020-04-25 08:16:32+07');
INSERT INTO public.issues VALUES (70, 2, 1, 'Sửa file pdf kê khai giá', '- Số công văn
- Ngày áp dụng kê khai
- Mục 2, 3', '2020-03-02', 5, 5, 5, 2, NULL, 5, 3, '2020-03-02 08:18:32+07', '2020-03-10 09:06:16+07', '2020-03-02', 100, NULL, NULL, 70, 1, 2, false, '2020-03-10 09:06:16+07');
INSERT INTO public.issues VALUES (71, 2, 1, 'Gắn api trang profile', '', '2020-03-02', 6, 5, 10, 2, NULL, 5, 6, '2020-03-02 08:25:57+07', '2020-04-25 08:16:32+07', '2020-03-02', 100, NULL, 66, 66, 8, 9, false, '2020-04-25 08:16:32+07');
INSERT INTO public.issues VALUES (72, 2, 1, 'Gắn api đổi mật khẩu', 'QuanLyTaiKhoan/DoiMatKhau
{
  ma_tai_khoan: '''',
  mat_khau_cu: '''',
  mat_khau_moi: ''''
}', '2020-03-02', 6, 5, 10, 2, NULL, 5, 8, '2020-03-02 08:26:15+07', '2020-04-25 08:16:32+07', '2020-03-02', 100, NULL, 66, 66, 10, 11, false, '2020-04-25 08:16:32+07');
INSERT INTO public.issues VALUES (73, 2, 1, 'Gắn api chỉnh sửa thông tin', 'Dùng formData
QuanLyTaiKhoan/ChinhSuaThongTin
{
   MaTaiKhoan: '''',
   HoVaTen: '''',
   GioiTinh: ''true/false'',
   DiaChi: '''',
   DienThoai: '''',
   NgaySinh: '''', => kiểu "dd/MM/yyyy"
}

-- dùng hàm này post hình luôn', '2020-03-02', 6, 5, 10, 2, NULL, 5, 8, '2020-03-02 08:26:50+07', '2020-04-25 08:16:33+07', '2020-03-02', 100, NULL, 66, 66, 12, 13, false, '2020-04-25 08:16:33+07');
INSERT INTO public.issues VALUES (74, 2, 1, 'Giao diện danh sách hồ sơ', 'Hiển thị thông tin:
- Mã hồ sơ
- Tên hồ sơ
- Ngày cập nhật: ThoiGianBanHanh
- Trạng thái
- Loại hồ sơ: Kê khai giá/Đăng ký giá', '2020-03-03', 6, 5, 10, 2, NULL, 5, 6, '2020-03-02 08:31:29+07', '2020-04-25 08:16:30+07', '2020-03-03', 100, NULL, 20, 20, 2, 3, false, '2020-04-25 08:16:30+07');
INSERT INTO public.issues VALUES (75, 2, 1, 'Gắn Api danh sách hồ sơ lọc theo trạng thái', '/HoSoCSDLGia/GetList?LoaiHoSo=CSDLG_HHDVK&TrangThai=&TenHoSo=test&IDDV=&StartDate&EndDate&skip=0&take=10', '2020-03-02', 6, 5, 10, 2, NULL, 5, 8, '2020-03-02 08:31:56+07', '2020-04-25 08:16:30+07', '2020-03-02', 100, NULL, 20, 20, 4, 5, false, '2020-04-25 08:16:30+07');
INSERT INTO public.issues VALUES (77, 2, 1, 'Sửa cột thời gian cập nhật thành thời gian ban hành', '', '2020-03-02', 4, 5, 8, 2, NULL, 8, 3, '2020-03-02 09:15:54+07', '2020-03-10 10:13:47+07', '2020-03-02', 100, NULL, NULL, 77, 1, 2, false, '2020-03-10 10:13:47+07');
INSERT INTO public.issues VALUES (78, 2, 1, 'Các chức năng tìm kiếm của từng hồ sơ để xuống 1 dòng', '', '2020-03-03', 4, 5, 8, 2, NULL, 8, 2, '2020-03-02 09:21:29+07', '2020-03-10 10:13:47+07', '2020-03-03', 100, NULL, NULL, 78, 1, 2, false, '2020-03-10 10:13:47+07');
INSERT INTO public.issues VALUES (79, 2, 1, 'Thêm nút kết xuất báo cáo trong từng hồ sơ', '', '2020-03-03', 4, 5, 8, 2, NULL, 8, 3, '2020-03-02 09:22:51+07', '2020-03-10 10:13:47+07', '2020-03-03', 100, NULL, NULL, 79, 1, 2, false, '2020-03-10 10:13:47+07');
INSERT INTO public.issues VALUES (81, 2, 1, 'Sửa api GetList cho lọc dữ liệu', '- Tên hồ sơ: Name
- IDDV
- Từ ngày đến ngày: StartDate => EndDate', '2020-03-02', 5, 5, 5, 2, NULL, 5, 3, '2020-03-02 09:31:08+07', '2020-03-10 09:06:16+07', '2020-03-02', 100, NULL, NULL, 81, 1, 2, false, '2020-03-10 09:06:16+07');
INSERT INTO public.issues VALUES (82, 2, 1, ' Kê khai giá (riêng ngày tháng thì thông báo giá lấy theo ngày cập nhật)', '', '2020-03-02', 5, 5, 5, 2, NULL, 5, 3, '2020-03-02 09:38:43+07', '2020-03-10 09:06:17+07', '2020-03-02', 100, NULL, NULL, 82, 1, 2, false, '2020-03-10 09:06:17+07');
INSERT INTO public.issues VALUES (83, 2, 1, 'Thêm Authorize vào tất cả api', '', '2020-03-04', 5, 5, 5, 2, NULL, 5, 3, '2020-03-02 09:56:50+07', '2020-03-10 09:06:17+07', '2020-03-04', 100, NULL, NULL, 83, 1, 2, false, '2020-03-10 09:06:17+07');
INSERT INTO public.issues VALUES (84, 2, 1, 'API Import KKG chưa hiện được', ' - Số công văn 
 - Chính sách
 - Phân tích nguyên nhân
 - Mẫu kê khai
 - Ngày kê khai', '2020-03-03', 5, 5, 5, 2, NULL, 8, 3, '2020-03-03 09:45:58+07', '2020-03-10 09:06:17+07', '2020-03-03', 100, NULL, NULL, 84, 1, 2, false, '2020-03-10 09:06:17+07');
INSERT INTO public.issues VALUES (85, 2, 1, 'Trang tin tức', '', '2020-03-17', 6, 5, 10, 2, NULL, 10, 6, '2020-03-03 14:46:40+07', '2020-04-25 08:16:44+07', '2020-03-03', 100, NULL, NULL, 85, 1, 6, false, '2020-04-25 08:16:44+07');
INSERT INTO public.issues VALUES (86, 2, 1, 'Giao diện trang tin tức', '', '2020-03-03', 6, 5, NULL, 2, NULL, 10, 3, '2020-03-03 14:47:44+07', '2020-04-25 08:16:33+07', '2020-03-03', 100, NULL, 85, 85, 2, 3, false, '2020-04-25 08:16:33+07');
INSERT INTO public.issues VALUES (89, 2, 1, 'Gắn api cập nhật hình ảnh', '', '2020-03-05', 6, 5, 10, 2, NULL, 10, 5, '2020-03-06 07:52:08+07', '2020-04-25 08:16:33+07', '2020-03-05', 100, NULL, 66, 66, 14, 15, false, '2020-04-25 08:16:33+07');
INSERT INTO public.issues VALUES (90, 2, 1, 'Trang message', '', '2020-03-21', 6, 5, 10, 2, NULL, 10, 12, '2020-03-06 07:53:57+07', '2020-05-13 06:47:05+07', '2020-03-16', 100, NULL, NULL, 90, 1, 10, false, '2020-05-13 06:47:05+07');
INSERT INTO public.issues VALUES (91, 2, 1, 'Giá trúng thầu sửa 3 cột thời gian', '- Bỏ 3 cột thời gian
- Thêm cột (Thời gian tổ chức lựa chọn nhà thầu)
- Thêm cột (Thời gian phê duyệt kết quả lựa chọn nhà thầu)', '2020-03-11', 4, 5, 8, 2, NULL, 8, 6, '2020-03-07 10:07:53+07', '2020-04-03 13:53:45+07', '2020-03-11', 100, NULL, NULL, 91, 1, 2, false, '2020-04-03 13:53:45+07');
INSERT INTO public.issues VALUES (92, 2, 1, 'Import dữ liệu module Giá trúng đấu giá QSD đất', '', '2020-06-09', 4, 5, 8, 2, NULL, 8, 16, '2020-03-07 10:09:09+07', '2020-06-22 11:30:01+07', '2020-06-09', 100, NULL, NULL, 92, 1, 2, false, '2020-06-22 11:30:01+07');
INSERT INTO public.issues VALUES (93, 2, 1, 'Sửa đổi tên mục 1.8', '- Đối với Huyện chỉ có (Giá dịch vụ giáo dục của giáo dục mầm non)
- Đối với Sở Giáo dục (Giá dịch vụ giáo dục của giáo dục mầm non, phổ thông công lập thuộc tỉnh)', '2020-03-11', 4, 5, 8, 2, NULL, 8, 5, '2020-03-07 10:11:28+07', '2020-04-03 13:53:45+07', '2020-03-11', 100, NULL, NULL, 93, 1, 2, false, '2020-04-03 13:53:45+07');
INSERT INTO public.issues VALUES (94, 2, 1, 'Đổi mật khẩu trong quản trị ', '- Sửa tên tiêu đề thành ( Cấp lại mật khẩu )
- Bỏ nhập lại mật khẩu cũ', '2020-03-07', 4, 5, 8, 2, NULL, 8, 5, '2020-03-07 10:13:31+07', '2020-04-03 13:53:45+07', '2020-03-07', 100, NULL, NULL, 94, 1, 2, false, '2020-04-03 13:53:45+07');
INSERT INTO public.issues VALUES (95, 2, 1, 'Đổi mật khẩu trong từng đơn vị', '- Sửa lại popup thông báo
- Test đổi mật khẩu', '2020-03-07', 4, 5, 8, 2, NULL, 8, 5, '2020-03-07 10:14:23+07', '2020-04-03 13:53:45+07', '2020-03-07', 100, NULL, NULL, 95, 1, 2, false, '2020-04-03 13:53:45+07');
INSERT INTO public.issues VALUES (96, 2, 1, 'API cho danh mục dịch vụ công ích', '- Where theo từng đơn vị ', '2020-03-09', 4, 5, 5, 2, NULL, 8, 6, '2020-03-07 17:26:38+07', '2020-04-03 13:53:45+07', '2020-03-09', 100, NULL, NULL, 96, 1, 2, false, '2020-04-03 13:53:45+07');
INSERT INTO public.issues VALUES (97, 2, 1, 'API kết xuất báo cáo cho từng đơn vị', '', '2020-03-11', 5, 5, 5, 2, NULL, 8, 1, '2020-03-09 11:08:08+07', '2020-03-10 10:28:18+07', '2020-03-11', 0, NULL, NULL, 97, 1, 2, false, '2020-03-10 10:28:18+07');
INSERT INTO public.issues VALUES (103, 2, 1, 'API kết xuất báo cáo cho giá các loại đất (1.1)', '', '2020-03-23', 4, 5, 5, 2, NULL, 8, 7, '2020-03-10 14:53:47+07', '2020-04-03 13:52:55+07', '2020-03-23', 100, NULL, 138, 138, 2, 3, false, '2020-04-03 13:52:55+07');
INSERT INTO public.issues VALUES (104, 2, 1, 'API kết xuất báo cáo cho giá cho thuê đất (1.2)', '', '2020-03-23', 4, 5, 5, 2, NULL, 8, 9, '2020-03-10 14:54:11+07', '2020-04-03 13:52:55+07', '2020-03-23', 100, NULL, 138, 138, 4, 5, false, '2020-04-03 13:52:55+07');
INSERT INTO public.issues VALUES (105, 2, 1, 'API kết xuất báo cáo cho giá cho thuê mặt nước (1.2)', '', '2020-03-23', 4, 5, 5, 2, NULL, 8, 7, '2020-03-10 14:54:37+07', '2020-04-03 13:52:55+07', '2020-03-23', 100, NULL, 138, 138, 6, 7, false, '2020-04-03 13:52:55+07');
INSERT INTO public.issues VALUES (106, 2, 1, 'API kết xuất báo cáo cho giá rừng (1.3)', '', '2020-03-23', 4, 5, 5, 2, NULL, 8, 7, '2020-03-10 14:55:03+07', '2020-04-03 13:52:55+07', '2020-03-23', 100, NULL, 138, 138, 8, 9, false, '2020-04-03 13:52:55+07');
INSERT INTO public.issues VALUES (107, 2, 1, 'API kết xuất báo cáo cho giá cho thuê, thuê mua nhà ở xã hội, nhà ở công vụ (1.4)', '', '2020-03-24', 4, 5, 5, 2, NULL, 8, 9, '2020-03-10 14:55:55+07', '2020-04-03 13:52:55+07', '2020-03-24', 100, NULL, 138, 138, 10, 11, false, '2020-04-03 13:52:55+07');
INSERT INTO public.issues VALUES (108, 2, 1, 'API kết xuất báo cáo cho giá nước sinh hoạt (1.5)', '', '2020-03-24', 4, 5, 5, 2, NULL, 8, 8, '2020-03-10 14:58:24+07', '2020-04-03 13:52:55+07', '2020-03-24', 100, NULL, 138, 138, 12, 13, false, '2020-04-03 13:52:55+07');
INSERT INTO public.issues VALUES (109, 2, 1, 'API kết xuất báo cáo cho giá cho thuê tài sản là công trình kết cấu hạ tầng (1.6)', '', '2020-03-24', 4, 5, 5, 2, NULL, 8, 8, '2020-03-10 14:59:03+07', '2020-04-03 13:52:55+07', '2020-03-24', 100, NULL, 138, 138, 14, 15, false, '2020-04-03 13:52:55+07');
INSERT INTO public.issues VALUES (110, 2, 1, 'API kết xuất báo cáo cho giá sản phẩm dịch vụ công ích (1.7)', '', '2020-03-24', 4, 5, 5, 2, NULL, 8, 8, '2020-03-10 14:59:31+07', '2020-04-03 13:52:55+07', '2020-03-24', 100, NULL, 138, 138, 16, 17, false, '2020-04-03 13:52:55+07');
INSERT INTO public.issues VALUES (111, 2, 1, 'API kết xuất báo cáo cho giá dịch vụ giáo dục (1.8)', '', '2020-03-24', 4, 5, 5, 2, NULL, 8, 8, '2020-03-10 14:59:57+07', '2020-04-03 13:52:56+07', '2020-03-24', 100, NULL, 138, 138, 18, 19, false, '2020-04-03 13:52:56+07');
INSERT INTO public.issues VALUES (112, 2, 1, 'API kết xuất báo cáo cho giá khám bệnh, chữa bệnh (1.9)', '', '2020-03-24', 4, 5, 5, 2, NULL, 8, 8, '2020-03-10 15:00:25+07', '2020-04-03 13:52:56+07', '2020-03-24', 100, NULL, 138, 138, 20, 21, false, '2020-04-03 13:52:56+07');
INSERT INTO public.issues VALUES (113, 2, 1, 'API kết xuất báo cáo cho trợ giá trợ cước (1.10)', '', '2020-03-24', 4, 5, 5, 2, NULL, 8, 8, '2020-03-10 15:00:57+07', '2020-04-03 13:52:56+07', '2020-03-24', 100, NULL, 138, 138, 22, 23, false, '2020-04-03 13:52:56+07');
INSERT INTO public.issues VALUES (114, 2, 1, 'API kết xuất báo cáo cho giá hàng hóa, dịch vụ khác theo quy định của pháp luật (1.11)', '', '2020-03-24', 4, 5, 5, 2, NULL, 8, 8, '2020-03-10 15:01:55+07', '2020-04-03 13:52:56+07', '2020-03-24', 100, NULL, 138, 138, 24, 25, false, '2020-04-03 13:52:56+07');
INSERT INTO public.issues VALUES (115, 2, 1, 'API kết xuất báo cáo cho giá thị trường HHDV khác (2)', '', '2020-03-24', 4, 5, 5, 2, NULL, 8, 8, '2020-03-10 15:02:43+07', '2020-04-03 13:52:56+07', '2020-03-24', 100, NULL, 138, 138, 26, 27, false, '2020-04-03 13:52:56+07');
INSERT INTO public.issues VALUES (116, 2, 1, 'API kết xuất báo cáo cho giá tài sản công, tài sản vô hình (3)', '', '2020-03-24', 4, 5, 5, 2, NULL, 8, 8, '2020-03-10 15:03:08+07', '2020-04-03 13:52:56+07', '2020-03-24', 100, NULL, 138, 138, 28, 29, false, '2020-04-03 13:52:56+07');
INSERT INTO public.issues VALUES (117, 2, 1, 'API kết xuất báo cáo cho giá nhà tính lệ phí trước bạ (4)', '', '2020-03-25', 4, 5, 5, 2, NULL, 8, 8, '2020-03-10 15:03:32+07', '2020-04-03 13:52:56+07', '2020-03-25', 100, NULL, 138, 138, 30, 31, false, '2020-04-03 13:52:56+07');
INSERT INTO public.issues VALUES (118, 2, 1, 'API kết xuất báo cáo cho khung giá đất (5)', '', '2020-03-25', 4, 5, 5, 2, NULL, 8, 8, '2020-03-10 15:03:54+07', '2020-04-03 13:52:56+07', '2020-03-25', 100, NULL, 138, 138, 32, 33, false, '2020-04-03 13:52:56+07');
INSERT INTO public.issues VALUES (119, 2, 1, 'API kết xuất báo cáo cho bảng giá đất (6)', '', '2020-03-25', 4, 5, 5, 2, NULL, 8, 8, '2020-03-10 15:04:14+07', '2020-04-03 13:52:56+07', '2020-03-25', 100, NULL, 138, 138, 34, 35, false, '2020-04-03 13:52:56+07');
INSERT INTO public.issues VALUES (120, 2, 1, 'API kết xuất báo cáo cho giá trúng đấu giá QSD đất (7)', '', '2020-03-25', 4, 5, 5, 2, NULL, 8, 8, '2020-03-10 15:04:41+07', '2020-04-03 13:52:57+07', '2020-03-25', 100, NULL, 138, 138, 36, 37, false, '2020-04-03 13:52:57+07');
INSERT INTO public.issues VALUES (121, 2, 1, 'API kết xuất báo cáo cho giá đất giao dịch thực tế trên thị trường (8)', '', '2020-03-25', 4, 5, 5, 2, NULL, 8, 8, '2020-03-10 15:05:14+07', '2020-04-03 13:52:57+07', '2020-03-25', 100, NULL, 138, 138, 38, 39, false, '2020-04-03 13:52:57+07');
INSERT INTO public.issues VALUES (122, 2, 1, 'API kết xuất báo cáo cho giá bất động sản (9)', '', '2020-03-26', 4, 5, 5, 2, NULL, 8, 8, '2020-03-10 15:06:32+07', '2020-04-03 13:52:57+07', '2020-03-26', 100, NULL, 138, 138, 40, 41, false, '2020-04-03 13:52:57+07');
INSERT INTO public.issues VALUES (123, 2, 1, 'API kết xuất báo cáo cho giá trúng thầu của HHDV (10)', '', '2020-03-26', 4, 5, 5, 2, NULL, 8, 8, '2020-03-10 15:07:00+07', '2020-04-03 13:52:57+07', '2020-03-26', 100, NULL, 138, 138, 42, 43, false, '2020-04-03 13:52:57+07');
INSERT INTO public.issues VALUES (124, 2, 1, 'API kết xuất báo cáo cho giá trị tài sản được thẩm định giá (11)', '', '2020-03-26', 4, 5, 5, 2, NULL, 8, 8, '2020-03-10 15:07:45+07', '2020-04-03 13:52:57+07', '2020-03-26', 100, NULL, 138, 138, 44, 45, false, '2020-04-03 13:52:57+07');
INSERT INTO public.issues VALUES (125, 2, 1, 'API kết xuất báo cáo cho báo cáo thị trường (12)', '', '2020-03-26', 4, 5, 5, 2, NULL, 8, 8, '2020-03-10 15:08:23+07', '2020-04-03 13:52:57+07', '2020-03-26', 100, NULL, 138, 138, 46, 47, false, '2020-04-03 13:52:57+07');
INSERT INTO public.issues VALUES (126, 2, 1, 'API kết xuất báo cáo cho kê khai giá', '', '2020-03-26', 4, 5, 5, 2, NULL, 8, 8, '2020-03-10 15:11:39+07', '2020-04-03 13:52:57+07', '2020-03-26', 100, NULL, 138, 138, 48, 49, false, '2020-04-03 13:52:57+07');
INSERT INTO public.issues VALUES (127, 2, 1, 'API kết xuất báo cáo cho đăng ký giá', '', '2020-03-26', 4, 5, 5, 2, NULL, 8, 8, '2020-03-10 15:11:57+07', '2020-04-03 13:52:57+07', '2020-03-26', 100, NULL, 138, 138, 50, 51, false, '2020-04-03 13:52:57+07');
INSERT INTO public.issues VALUES (128, 2, 1, 'Gắn api thông tin hồ sơ', '', '2020-03-12', 6, 5, 10, 2, NULL, 10, 5, '2020-03-11 08:18:25+07', '2020-04-25 08:16:30+07', '2020-03-12', 100, NULL, 26, 21, 3, 4, false, '2020-04-25 08:16:30+07');
INSERT INTO public.issues VALUES (129, 2, 1, 'Gắn api chi tiết hồ sơ', '', '2020-03-12', 6, 5, 10, 2, NULL, 10, 3, '2020-03-11 08:20:33+07', '2020-04-25 08:16:30+07', '2020-03-12', 100, NULL, 27, 21, 11, 12, false, '2020-04-25 08:16:30+07');
INSERT INTO public.issues VALUES (130, 2, 1, 'Giao diện thông tin hồ sơ', '', '2020-03-06', 6, 5, 10, 2, NULL, 10, 3, '2020-03-11 08:21:53+07', '2020-04-25 08:16:30+07', '2020-03-06', 100, NULL, 26, 21, 5, 6, false, '2020-04-25 08:16:30+07');
INSERT INTO public.issues VALUES (131, 2, 1, 'Giao diện chi tiết hồ sơ', '', '2020-03-07', 6, 5, 10, 2, NULL, 10, 4, '2020-03-11 08:22:48+07', '2020-04-25 08:16:31+07', '2020-03-07', 100, NULL, 27, 21, 13, 14, false, '2020-04-25 08:16:31+07');
INSERT INTO public.issues VALUES (132, 2, 1, 'Tạo api thông tin hồ sơ', '', '2020-03-11', 6, 5, 5, 2, NULL, 10, 2, '2020-03-11 08:25:55+07', '2020-03-13 09:11:10+07', '2020-03-11', 0, NULL, 26, 21, 7, 8, false, '2020-03-13 09:11:10+07');
INSERT INTO public.issues VALUES (133, 2, 1, 'Tạo api chi tiết hồ sơ', '', '2020-03-12', 6, 5, 5, 2, NULL, 10, 2, '2020-03-11 08:27:05+07', '2020-03-13 09:10:22+07', '2020-03-12', 0, NULL, 27, 21, 15, 16, false, '2020-03-13 09:10:22+07');
INSERT INTO public.issues VALUES (134, 2, 1, 'Form Đăng ký bắt buộc nhập', '- Tên tài khoản
- Mật khẩu
- Mã số thuế
- Tên doanh nghiệp
- Địa chỉ 
- Số điện thoại
- Giấy phép kinh doanh', '2020-03-12', 4, 5, 8, 2, NULL, 8, 4, '2020-03-12 09:04:52+07', '2020-04-03 13:53:45+07', '2020-03-12', 100, NULL, NULL, 134, 1, 2, false, '2020-04-03 13:53:45+07');
INSERT INTO public.issues VALUES (135, 2, 1, 'Hồ sơ KKG bỏ thời gian cập nhật', '- Trong thông tin hồ sơ', '2020-03-12', 4, 5, 8, 2, NULL, 8, 4, '2020-03-12 09:05:55+07', '2020-04-03 13:53:45+07', '2020-03-12', 100, NULL, NULL, 135, 1, 2, false, '2020-04-03 13:53:45+07');
INSERT INTO public.issues VALUES (168, 2, 1, 'API cập nhật Mã nhóm không trùng lặp trong DMKBCB_NhomHHDV', '', '2020-03-16', 4, 5, 5, 2, NULL, 8, 4, '2020-03-16 09:12:10+07', '2020-04-03 13:53:46+07', '2020-03-16', 100, NULL, NULL, 168, 1, 2, false, '2020-04-03 13:53:46+07');
INSERT INTO public.issues VALUES (136, 2, 1, 'Sửa chức năng phê duyệt hồ sơ', '- Đổi lại view hiện thị tất cả không trạng thái
- Hiển thị bộ lọc trạng thái
- Hiển thi 3 cột: + Ngày cập nhật
                  + Ngày đến hạn xử lý
                  + Ngày phê duyệt', '2020-03-12', 4, 5, 8, 2, NULL, 8, 5, '2020-03-12 09:06:49+07', '2020-04-03 13:53:45+07', '2020-03-12', 100, NULL, NULL, 136, 1, 2, false, '2020-04-03 13:53:45+07');
INSERT INTO public.issues VALUES (137, 2, 1, 'Sửa import kê khai giá', '- Bỏ thông tin có mấy HHDV thêm mới
- Tên hồ sơ tự tạo chỉ cần hiển thị tên công ty', '2020-03-12', 4, 5, 8, 2, NULL, 8, 4, '2020-03-12 09:10:27+07', '2020-04-03 13:53:45+07', '2020-03-12', 100, NULL, NULL, 137, 1, 2, false, '2020-04-03 13:53:45+07');
INSERT INTO public.issues VALUES (138, 2, 1, 'Báo cáo CSDL về giá', '', '2020-03-26', 4, 5, NULL, 2, NULL, 5, 43, '2020-03-12 09:38:28+07', '2020-04-03 13:53:45+07', '2020-03-23', 100, NULL, NULL, 138, 1, 52, false, '2020-04-03 13:53:45+07');
INSERT INTO public.issues VALUES (139, 2, 1, 'Chỉnh lại con dấu', '', '2020-03-12', 4, 5, 5, 2, NULL, 5, 4, '2020-03-12 15:15:32+07', '2020-04-03 13:53:45+07', '2020-03-12', 100, NULL, NULL, 139, 1, 2, false, '2020-04-03 13:53:45+07');
INSERT INTO public.issues VALUES (140, 2, 1, 'Thêm chức năng lọc trạng thái (chưa kích hoạt/hoạt động) ', '', '2020-03-12', 4, 5, 8, 2, NULL, 8, 4, '2020-03-12 16:32:49+07', '2020-04-03 13:53:45+07', '2020-03-12', 100, NULL, NULL, 140, 1, 2, false, '2020-04-03 13:53:45+07');
INSERT INTO public.issues VALUES (141, 2, 1, 'Chức năng phê duyệt hồ sơ cho 2 lựa chọn đóng dấu hoặc xét duyệt', '', '2020-03-12', 4, 5, 8, 2, NULL, 8, 4, '2020-03-12 16:34:22+07', '2020-04-03 13:53:45+07', '2020-03-12', 100, NULL, NULL, 141, 1, 2, false, '2020-04-03 13:53:45+07');
INSERT INTO public.issues VALUES (142, 2, 1, 'Import hồ sơ KKG bỏ dòng thông báo', '- có 4 HHDV được thêm mới', '2020-03-12', 4, 5, 8, 2, NULL, 8, 5, '2020-03-12 16:34:42+07', '2020-04-03 13:53:45+07', '2020-03-12', 100, NULL, NULL, 142, 1, 2, false, '2020-04-03 13:53:45+07');
INSERT INTO public.issues VALUES (143, 2, 1, 'Import hồ sơ KKG tên tạo ra bỏ ngày cập nhật, chỉ giữ tên doanh nghiệp', '', '2020-03-12', 4, 5, 5, 2, NULL, 8, 4, '2020-03-12 16:36:00+07', '2020-04-03 13:53:45+07', '2020-03-12', 100, NULL, NULL, 143, 1, 2, false, '2020-04-03 13:53:45+07');
INSERT INTO public.issues VALUES (144, 2, 1, 'Trang dashboard cho lãnh đạo STC', '', '2020-03-30', 6, 5, 10, 2, NULL, 5, 5, '2020-03-13 08:26:18+07', '2020-06-03 08:12:58+07', '2020-03-30', 100, NULL, NULL, 144, 1, 6, false, '2020-06-03 08:12:58+07');
INSERT INTO public.issues VALUES (145, 2, 1, 'Thống kê hồ sơ theo trạng thái (% đúng hạn)', '', '2020-03-30', 6, 5, 10, 2, NULL, 5, 2, '2020-03-13 08:30:45+07', '2020-06-03 08:12:51+07', '2020-03-30', 0, NULL, 144, 144, 2, 3, false, '2020-06-03 08:12:51+07');
INSERT INTO public.issues VALUES (146, 2, 1, 'Thống kê hồ sơ theo khối tỉnh, huyện', '', '2020-03-30', 6, 5, 10, 2, NULL, 5, 2, '2020-03-13 08:31:27+07', '2020-06-03 08:12:51+07', '2020-03-30', 0, NULL, 144, 144, 4, 5, false, '2020-06-03 08:12:51+07');
INSERT INTO public.issues VALUES (147, 2, 1, ' Giao diện trang danh sách message', '', '2020-03-16', 6, 5, 10, 2, NULL, 5, 4, '2020-03-13 08:32:46+07', '2020-04-25 08:17:17+07', '2020-03-16', 100, NULL, 90, 90, 2, 3, false, '2020-04-25 08:17:17+07');
INSERT INTO public.issues VALUES (148, 2, 1, 'Giao diện trang chi tiết message', '', '2020-03-18', 6, 5, 10, 2, NULL, 5, 4, '2020-03-13 08:33:08+07', '2020-05-13 06:46:51+07', '2020-03-18', 100, NULL, 90, 90, 4, 5, false, '2020-05-13 06:46:51+07');
INSERT INTO public.issues VALUES (149, 2, 1, 'Tách hồ sơ kê khai giá doanh nghiệp riêng, SBN riêng', '', '2020-03-13', 4, 5, 8, 2, NULL, 8, 4, '2020-03-13 08:44:36+07', '2020-04-03 13:53:46+07', '2020-03-13', 100, NULL, NULL, 149, 1, 2, false, '2020-04-03 13:53:46+07');
INSERT INTO public.issues VALUES (150, 2, 1, 'Thêm chức năng đóng dấu để tăng con số đến', '', '2020-03-13', 4, 5, 8, 2, NULL, 8, 4, '2020-03-13 08:46:53+07', '2020-04-03 13:53:46+07', '2020-03-13', 100, NULL, NULL, 150, 1, 2, false, '2020-04-03 13:53:46+07');
INSERT INTO public.issues VALUES (151, 2, 1, 'Đính kèm file PDF không ràng buộc', '- tên file bỏ dô trích yếu', '2020-03-13', 4, 5, 8, 2, NULL, 8, 4, '2020-03-13 09:04:15+07', '2020-04-03 13:53:46+07', '2020-03-13', 100, NULL, NULL, 151, 1, 2, false, '2020-04-03 13:53:46+07');
INSERT INTO public.issues VALUES (152, 2, 1, 'Đính kèm văn bản cập nhật IsAttachment == true', '- kiểm tra load danh sách file đính kèm', '2020-03-13', 4, 5, 8, 2, NULL, 8, 4, '2020-03-13 09:07:11+07', '2020-04-03 13:53:46+07', '2020-03-13', 100, NULL, NULL, 152, 1, 2, false, '2020-04-03 13:53:46+07');
INSERT INTO public.issues VALUES (153, 2, 1, 'FomatDate lại mức giá kê khai thực hiện từ ngày ', '- Không để giờ', '2020-03-13', 4, 5, 8, 2, NULL, 8, 4, '2020-03-13 09:17:26+07', '2020-04-03 13:53:46+07', '2020-03-13', 100, NULL, NULL, 153, 1, 2, false, '2020-04-03 13:53:46+07');
INSERT INTO public.issues VALUES (154, 2, 1, 'Mẫu kê khai cho hiện text', '', '2020-03-13', 4, 5, 8, 2, NULL, 8, 4, '2020-03-13 09:18:14+07', '2020-04-03 13:53:46+07', '2020-03-13', 100, NULL, NULL, 154, 1, 2, false, '2020-04-03 13:53:46+07');
INSERT INTO public.issues VALUES (155, 2, 1, 'Download file văn bản', '', '2020-03-13', 6, 5, 10, 2, NULL, 10, 5, '2020-03-13 16:21:15+07', '2020-04-25 08:16:32+07', '2020-03-13', 100, NULL, 21, 21, 40, 41, false, '2020-04-25 08:16:32+07');
INSERT INTO public.issues VALUES (156, 2, 1, 'Download file hồ sơ', '', '2020-03-14', 6, 5, 10, 2, NULL, 10, 6, '2020-03-13 16:21:38+07', '2020-04-25 08:16:32+07', '2020-03-14', 100, NULL, 21, 21, 42, 43, false, '2020-04-25 08:16:32+07');
INSERT INTO public.issues VALUES (157, 2, 1, 'Hiển thị nút gửi hồ sơ khi trạng thái hồ sơ là 1', '', '2020-03-16', 6, 5, 10, 2, NULL, 10, 3, '2020-03-14 08:18:18+07', '2020-04-25 08:16:31+07', '2020-03-16', 100, NULL, 32, 21, 33, 34, false, '2020-04-25 08:16:31+07');
INSERT INTO public.issues VALUES (158, 2, 1, 'Gắn api gửi hồ sơ', '', '2020-03-14', 6, 5, 10, 2, NULL, 10, 4, '2020-03-14 08:18:47+07', '2020-04-25 08:16:31+07', '2020-03-14', 100, NULL, 32, 21, 35, 36, false, '2020-04-25 08:16:31+07');
INSERT INTO public.issues VALUES (159, 2, 1, 'Hiển thị nút ký số khi trạng thái hồ sơ là 0', '', '2020-03-14', 6, 5, 10, 2, NULL, 10, 5, '2020-03-14 08:19:34+07', '2020-04-25 08:16:31+07', '2020-03-14', 100, NULL, 31, 21, 25, 26, false, '2020-04-25 08:16:31+07');
INSERT INTO public.issues VALUES (160, 2, 1, 'Gắn api ký số', '', '2020-03-14', 6, 5, 10, 2, NULL, 10, 5, '2020-03-14 08:19:51+07', '2020-04-25 08:16:31+07', '2020-03-14', 100, NULL, 31, 21, 27, 28, false, '2020-04-25 08:16:31+07');
INSERT INTO public.issues VALUES (161, 2, 1, 'Format lại tiền, thêm nút tăng giảm', '', '2020-03-16', 6, 5, 10, 2, NULL, 10, 3, '2020-03-14 08:24:04+07', '2020-04-25 08:16:32+07', '2020-03-16', 100, NULL, 21, 21, 44, 45, false, '2020-04-25 08:16:32+07');
INSERT INTO public.issues VALUES (162, 2, 1, 'File ĐVTT Sở Khoa học - Công nghệ', '', '2020-03-16', 9, 5, 8, 2, NULL, 5, 6, '2020-03-14 10:41:42+07', '2020-05-13 06:46:04+07', '2020-03-16', 100, NULL, 44, 44, 2, 3, false, '2020-05-13 06:46:04+07');
INSERT INTO public.issues VALUES (163, 2, 1, 'File ĐVTT Sở Lao động', '', '2020-03-16', 9, 5, 8, 2, NULL, 5, 4, '2020-03-14 10:42:47+07', '2020-04-25 08:17:17+07', '2020-03-16', 100, NULL, 44, 44, 4, 5, false, '2020-04-25 08:17:17+07');
INSERT INTO public.issues VALUES (164, 2, 1, 'File ĐVTT Sở Y tế', '', '2020-03-16', 9, 5, 8, 2, NULL, 5, 5, '2020-03-14 10:43:08+07', '2020-05-13 06:46:04+07', '2020-03-16', 100, NULL, 44, 44, 6, 7, false, '2020-05-13 06:46:04+07');
INSERT INTO public.issues VALUES (165, 2, 1, 'File ĐVTT Sở Y tế', '', '2020-03-16', NULL, 5, NULL, 2, NULL, 5, 1, '2020-03-14 10:43:23+07', '2020-05-13 06:46:22+07', '2020-03-16', 0, NULL, 44, 44, 8, 9, false, '2020-05-13 06:46:22+07');
INSERT INTO public.issues VALUES (166, 2, 1, 'File ĐVTT Ban quản lý khu kinh tế', '', '2020-03-16', 9, 5, 8, 2, NULL, 5, 4, '2020-03-14 10:43:54+07', '2020-04-25 08:17:17+07', '2020-03-16', 100, NULL, 44, 44, 10, 11, false, '2020-04-25 08:17:17+07');
INSERT INTO public.issues VALUES (167, 2, 1, 'Gắn api trang tin tức', '', '2020-03-17', 6, 5, 10, 2, NULL, 10, 3, '2020-03-16 08:35:54+07', '2020-04-25 08:16:33+07', '2020-03-17', 100, NULL, 85, 85, 4, 5, false, '2020-04-25 08:16:33+07');
INSERT INTO public.issues VALUES (169, 2, 1, 'Cập nhật đơn vị trực thuộc của Ban quản lý khu kinh tế', '', '2020-03-17', 4, 5, 8, 2, NULL, 8, 4, '2020-03-17 08:28:47+07', '2020-04-03 13:53:46+07', '2020-03-17', 100, NULL, NULL, 169, 1, 2, false, '2020-04-03 13:53:46+07');
INSERT INTO public.issues VALUES (170, 2, 1, 'Chỉnh sửa, bổ sung giao diện cũng như tính năng', '', '2020-03-17', 6, 5, 10, 2, NULL, 10, 3, '2020-03-17 16:48:52+07', '2020-04-25 08:18:18+07', '2020-03-17', 100, NULL, NULL, 170, 1, 4, false, '2020-04-25 08:18:18+07');
INSERT INTO public.issues VALUES (171, 2, 1, 'Tạo ảnh mặc định khi tài khoản người dùng không có hình ảnh', '', '2020-03-17', 6, 5, 10, 2, NULL, 10, 3, '2020-03-17 16:49:35+07', '2020-04-25 08:17:17+07', '2020-03-17', 100, NULL, 170, 170, 2, 3, false, '2020-04-25 08:17:17+07');
INSERT INTO public.issues VALUES (172, 2, 3, 'QUẢN LÝ LỚP HỌC', '', '2020-03-18', 7, 5, 12, 2, NULL, 5, 20, '2020-03-17 17:04:11+07', '2020-04-21 13:28:01+07', '2020-03-18', 100, NULL, NULL, 172, 1, 10, false, '2020-04-21 13:28:01+07');
INSERT INTO public.issues VALUES (173, 2, 3, 'Danh sách lớp học', '', '2020-03-18', 7, 5, 12, 2, NULL, 5, 6, '2020-03-17 17:04:48+07', '2020-04-21 13:22:16+07', '2020-03-18', 100, NULL, 172, 172, 2, 3, false, '2020-04-21 13:22:16+07');
INSERT INTO public.issues VALUES (174, 2, 3, 'Điểm danh', '', '2020-03-28', 7, 5, 12, 2, NULL, 12, 12, '2020-03-17 21:15:13+07', '2020-04-21 13:28:14+07', '2020-03-26', 100, NULL, 330, 330, 2, 3, false, '2020-04-21 13:28:14+07');
INSERT INTO public.issues VALUES (176, 2, 3, 'Mở Lớp', '', '2020-03-18', 7, 5, 12, 2, NULL, 12, 4, '2020-03-17 21:16:02+07', '2020-04-21 13:22:16+07', '2020-03-18', 100, NULL, 172, 172, 4, 5, false, '2020-04-21 13:22:16+07');
INSERT INTO public.issues VALUES (177, 2, 3, 'Chỉnh sửa thông tin lớp', '', '2020-03-18', 7, 5, 12, 2, NULL, 12, 4, '2020-03-17 21:16:14+07', '2020-04-21 13:22:16+07', '2020-03-18', 100, NULL, 172, 172, 6, 7, false, '2020-04-21 13:22:16+07');
INSERT INTO public.issues VALUES (178, 2, 3, 'Sơ Đồ Lớp', '', '2020-03-18', 7, 5, 12, 2, NULL, 12, 4, '2020-03-17 21:16:28+07', '2020-04-21 13:22:16+07', '2020-03-18', 100, NULL, 172, 172, 8, 9, false, '2020-04-21 13:22:16+07');
INSERT INTO public.issues VALUES (179, 2, 3, 'QUẢN LÝ HỌC VIÊN', '', '2020-03-25', 7, 5, 12, 2, NULL, 12, 23, '2020-03-17 21:22:01+07', '2021-02-05 09:07:51+07', '2020-03-18', 100, NULL, NULL, 179, 1, 12, false, '2020-04-21 13:28:01+07');
INSERT INTO public.issues VALUES (180, 2, 3, 'Xem Danh Sách Học Viên', '', '2020-03-20', 7, 5, 12, 2, NULL, 12, 7, '2020-03-17 21:22:59+07', '2020-04-21 13:22:35+07', '2020-03-20', 100, NULL, 179, 179, 2, 5, false, '2020-04-21 13:22:35+07');
INSERT INTO public.issues VALUES (181, 2, 3, 'In Thẻ Học Viên', '', '2020-03-18', 7, 5, 12, 2, NULL, 12, 4, '2020-03-17 21:23:08+07', '2020-04-21 13:22:35+07', '2020-03-18', 100, NULL, 179, 179, 6, 7, false, '2020-04-21 13:22:35+07');
INSERT INTO public.issues VALUES (182, 2, 3, 'Lọc', '', '2020-03-18', 7, 5, 12, 2, NULL, 12, 4, '2020-03-17 21:23:18+07', '2020-04-21 13:22:35+07', '2020-03-18', 100, NULL, 179, 179, 8, 9, false, '2020-04-21 13:22:35+07');
INSERT INTO public.issues VALUES (186, 2, 3, 'QUẢN LÝ ĐIỂM', '', '2020-03-18', 7, 5, 12, 2, NULL, 12, 6, '2020-03-17 21:27:51+07', '2020-04-21 13:28:01+07', '2020-03-18', 100, NULL, NULL, 186, 1, 6, false, '2020-04-21 13:28:01+07');
INSERT INTO public.issues VALUES (187, 2, 3, 'Dang sách điểm thi', '', '2020-03-18', 7, 5, 12, 2, NULL, 12, 3, '2020-03-17 21:28:49+07', '2020-04-21 13:22:41+07', '2020-03-18', 100, NULL, 186, 186, 2, 3, false, '2020-04-21 13:22:41+07');
INSERT INTO public.issues VALUES (188, 2, 3, 'Cập nhật điểm', '', '2020-03-18', 7, 5, 12, 2, NULL, 12, 5, '2020-03-17 21:29:05+07', '2020-04-21 13:22:41+07', '2020-03-18', 100, NULL, 186, 186, 4, 5, false, '2020-04-21 13:22:41+07');
INSERT INTO public.issues VALUES (190, 2, 3, 'BÁO CÁO', '', '2020-03-21', 7, 5, 12, 2, NULL, 12, 25, '2020-03-17 21:30:28+07', '2020-04-21 13:28:01+07', '2020-03-17', 100, NULL, NULL, 190, 1, 14, false, '2020-04-21 13:28:01+07');
INSERT INTO public.issues VALUES (191, 2, 3, 'Tổng hợp kết quả học tập', '', '2020-04-04', 7, 5, 12, 2, NULL, 12, 17, '2020-03-17 21:31:06+07', '2020-04-21 13:28:26+07', '2020-04-03', 100, NULL, 330, 330, 4, 11, false, '2020-04-21 13:28:26+07');
INSERT INTO public.issues VALUES (192, 2, 3, 'Danh sách điểm danh', '', '2020-03-30', 7, 5, 12, 2, NULL, 12, 13, '2020-03-17 21:31:24+07', '2020-04-21 13:28:14+07', '2020-03-27', 100, NULL, 330, 330, 12, 13, false, '2020-04-21 13:28:14+07');
INSERT INTO public.issues VALUES (193, 2, 3, 'Danh sách lớp học', '', '2020-03-19', 7, 5, 12, 2, NULL, 12, 4, '2020-03-17 21:31:39+07', '2020-04-21 13:22:06+07', '2020-03-19', 100, NULL, 190, 190, 2, 3, false, '2020-04-21 13:22:06+07');
INSERT INTO public.issues VALUES (194, 2, 3, 'Tổng hợp kết quả điểm', '', '2020-03-20', 7, 5, 12, 2, NULL, 12, 4, '2020-03-17 21:32:24+07', '2020-04-21 13:22:06+07', '2020-03-17', 100, NULL, 190, 190, 4, 5, false, '2020-04-21 13:22:06+07');
INSERT INTO public.issues VALUES (195, 2, 3, 'Ký nhận tốt nghiệp', '', '2020-04-10', 7, 5, 12, 2, NULL, 12, 16, '2020-03-17 21:32:40+07', '2021-02-05 09:07:52+07', '2020-04-10', 100, NULL, 330, 330, 14, 15, false, '2020-04-21 13:28:26+07');
INSERT INTO public.issues VALUES (196, 2, 3, 'Học viên', '', '2020-03-21', 7, 5, 12, 2, NULL, 12, 12, '2020-03-17 21:33:00+07', '2020-04-21 13:22:07+07', '2020-03-19', 100, NULL, 190, 190, 6, 13, false, '2020-04-21 13:22:07+07');
INSERT INTO public.issues VALUES (197, 2, 3, 'QUẢN LÝ ĐIỂM DANH', '', '2020-03-20', 7, 5, 12, 2, NULL, 12, 13, '2020-03-17 21:33:25+07', '2020-04-21 13:28:02+07', '2020-03-20', 100, NULL, NULL, 197, 1, 4, false, '2020-04-21 13:28:02+07');
INSERT INTO public.issues VALUES (198, 2, 3, 'Xem danh sách điểm danh theo lớp', '', '2020-03-28', 7, 5, 12, 2, NULL, 12, 9, '2020-03-17 21:34:20+07', '2020-04-21 13:28:14+07', '2020-03-28', 100, NULL, 330, 330, 16, 17, false, '2020-04-21 13:28:14+07');
INSERT INTO public.issues VALUES (199, 2, 3, 'Điểm danh theo lớp', '', '2020-03-28', 7, 5, 12, 2, NULL, 12, 9, '2020-03-17 21:34:38+07', '2020-04-21 13:28:14+07', '2020-03-26', 100, NULL, 330, 330, 18, 19, false, '2020-04-21 13:28:14+07');
INSERT INTO public.issues VALUES (201, 2, 3, 'QUẢN LÝ PHÒNG HỌC', '', '2020-03-18', 7, 5, 12, 2, NULL, 12, 6, '2020-03-17 21:35:52+07', '2020-04-21 13:28:02+07', '2020-03-18', 100, NULL, NULL, 201, 1, 8, false, '2020-04-21 13:28:02+07');
INSERT INTO public.issues VALUES (202, 2, 3, 'Danh sách phòng học', '', '2020-03-18', 7, 5, 12, 2, NULL, 12, 4, '2020-03-17 21:36:27+07', '2020-04-21 13:22:48+07', '2020-03-18', 100, NULL, 201, 201, 2, 3, false, '2020-04-21 13:22:48+07');
INSERT INTO public.issues VALUES (203, 2, 3, 'Thêm phòng học', '', '2020-03-18', 7, 5, 12, 2, NULL, 12, 4, '2020-03-17 21:36:56+07', '2020-04-21 13:22:48+07', '2020-03-18', 100, NULL, 201, 201, 4, 5, false, '2020-04-21 13:22:48+07');
INSERT INTO public.issues VALUES (204, 2, 3, 'Chỉnh sửa sơ đồ phòng học', '', '2020-03-18', 7, 5, 12, 2, NULL, 12, 4, '2020-03-17 21:37:21+07', '2020-04-21 13:22:48+07', '2020-03-18', 100, NULL, 201, 201, 6, 7, false, '2020-04-21 13:22:48+07');
INSERT INTO public.issues VALUES (205, 3, 1, 'Video hướng dẫn kê khai giá', 'Thảo, Trung
thảm khảo video wework
https://www.youtube.com/watch?v=YqX_iJ2orcg&feature=youtu.be
https://www.misa.com.vn/tin-tuc/chi-tiet/newsid/48603/Phim-demo-san-pham-MISA-SME-NET-2015', '2020-03-28', 9, 5, 9, 2, NULL, 5, 29, '2020-03-18 09:17:16+07', '2020-05-13 06:46:05+07', '2020-03-20', 100, NULL, NULL, 205, 1, 28, false, '2020-05-13 06:46:05+07');
INSERT INTO public.issues VALUES (206, 2, 1, 'File import KKG xóa cột % tăng giảm nhân thêm 100', '', '2020-03-20', 4, 5, 5, 2, NULL, 5, 5, '2020-03-18 09:59:17+07', '2020-04-03 13:53:46+07', '2020-03-20', 100, NULL, NULL, 206, 1, 2, false, '2020-04-03 13:53:46+07');
INSERT INTO public.issues VALUES (207, 2, 4, 'BẢN ĐỒ', '', '2020-03-23', 10, 5, 13, 2, NULL, 5, 7, '2020-03-18 13:28:35+07', '2021-02-05 09:00:10+07', '2020-03-18', 100, NULL, NULL, 207, 1, 6, false, '2020-06-03 11:42:06+07');
INSERT INTO public.issues VALUES (209, 2, 4, 'BÁO CÁO, THỐNG KÊ', '', '2020-03-28', 10, 5, 13, 2, NULL, 5, 13, '2020-03-18 13:29:18+07', '2021-02-05 09:00:10+07', '2020-03-26', 100, NULL, NULL, 209, 1, 10, false, '2020-06-03 11:42:06+07');
INSERT INTO public.issues VALUES (210, 2, 4, 'QUẢN TRỊ', '', '2020-06-20', 10, 5, 10, 2, NULL, 5, 29, '2020-03-18 13:29:27+07', '2021-02-05 09:00:19+07', '2020-03-18', 100, NULL, NULL, 210, 1, 28, false, '2020-07-08 08:23:02+07');
INSERT INTO public.issues VALUES (211, 2, 4, 'Tìm kiếm', '', '2020-03-18', 10, 5, 13, 2, NULL, 5, 5, '2020-03-18 13:29:48+07', '2021-02-05 08:56:45+07', '2020-03-18', 100, NULL, 207, 207, 2, 3, false, '2020-06-03 11:41:52+07');
INSERT INTO public.issues VALUES (212, 2, 4, 'Xem thông tin các đối tượng', '- Điểm đầu tư
- Cụm CN
- Khu CN
- Khu kinh tế
- QHSD đất
- Doanh nghiệp', '2020-03-23', 10, 5, 13, 2, NULL, 5, 6, '2020-03-18 13:30:45+07', '2021-02-05 08:56:46+07', '2020-03-23', 100, NULL, 207, 207, 4, 5, false, '2020-06-03 11:41:53+07');
INSERT INTO public.issues VALUES (215, 2, 4, 'Thống kê dự án đầu tư', '', '2020-03-26', 10, 5, 13, 2, NULL, 5, 7, '2020-03-18 13:34:04+07', '2021-02-05 08:56:46+07', '2020-03-26', 100, NULL, 209, 209, 2, 3, false, '2020-06-03 11:41:53+07');
INSERT INTO public.issues VALUES (216, 2, 4, 'Thống kê khu công nghiệp', '', '2020-03-27', 10, 5, 13, 2, NULL, 5, 7, '2020-03-18 13:34:23+07', '2021-02-05 08:56:46+07', '2020-03-27', 100, NULL, 209, 209, 4, 5, false, '2020-06-03 11:41:53+07');
INSERT INTO public.issues VALUES (217, 2, 4, 'Thống kê cụm công nghiệp', '', '2020-03-27', 10, 5, 13, 2, NULL, 5, 7, '2020-03-18 13:35:49+07', '2021-02-05 08:56:46+07', '2020-03-27', 100, NULL, 209, 209, 6, 7, false, '2020-06-03 11:41:53+07');
INSERT INTO public.issues VALUES (218, 2, 4, 'Thống kê khu kinh tế', '', '2020-03-28', 10, 5, 13, 2, NULL, 5, 7, '2020-03-18 13:36:04+07', '2021-02-05 08:56:46+07', '2020-03-28', 100, NULL, 209, 209, 8, 9, false, '2020-06-03 11:41:53+07');
INSERT INTO public.issues VALUES (220, 2, 4, 'Điểm đầu tư', '', '2020-03-23', 10, 5, 12, 2, NULL, 5, 7, '2020-03-18 13:37:40+07', '2021-02-05 08:57:02+07', '2020-03-23', 100, NULL, 210, 210, 2, 3, false, '2020-06-03 11:41:54+07');
INSERT INTO public.issues VALUES (221, 2, 4, 'Cụm CN', '', '2020-03-23', 10, 5, 12, 2, NULL, 5, 6, '2020-03-18 13:37:54+07', '2021-02-05 08:57:03+07', '2020-03-23', 100, NULL, 210, 210, 4, 5, false, '2020-06-03 11:41:54+07');
INSERT INTO public.issues VALUES (222, 2, 4, 'Khu công nghiệp', '', '2020-03-24', 10, 5, 12, 2, NULL, 5, 8, '2020-03-18 13:38:06+07', '2021-02-05 08:57:03+07', '2020-03-24', 100, NULL, 210, 210, 6, 7, false, '2020-06-03 11:41:54+07');
INSERT INTO public.issues VALUES (223, 2, 4, 'Khu kinh tế', '', '2020-03-24', 10, 5, 12, 2, NULL, 5, 8, '2020-03-18 13:38:12+07', '2021-02-05 08:57:03+07', '2020-03-24', 100, NULL, 210, 210, 8, 9, false, '2020-06-03 11:41:54+07');
INSERT INTO public.issues VALUES (224, 2, 4, 'Doanh nghiệp', '', '2020-03-18', 10, 5, 12, 2, NULL, 5, 6, '2020-03-18 13:38:22+07', '2021-02-05 08:57:03+07', '2020-03-18', 100, NULL, 210, 210, 10, 11, false, '2020-06-03 11:41:54+07');
INSERT INTO public.issues VALUES (225, 2, 4, 'Quy hoạch sử dụng đất', '', '2020-03-18', 10, 5, 12, 2, NULL, 5, 6, '2020-03-18 13:38:31+07', '2021-02-05 08:57:03+07', '2020-03-18', 100, NULL, 210, 210, 12, 13, false, '2020-06-03 11:41:54+07');
INSERT INTO public.issues VALUES (226, 2, 4, 'ADMINISTRATION', '', '2020-04-11', 11, 5, 10, 2, NULL, 5, 73, '2020-03-18 13:41:35+07', '2021-02-05 09:00:19+07', '2020-03-26', 100, NULL, NULL, 226, 1, 66, false, '2020-06-05 10:50:01+07');
INSERT INTO public.issues VALUES (227, 2, 3, 'Quản lý giảng viên', '', '2020-03-25', 7, 5, 12, 2, NULL, 12, 18, '2020-03-18 14:06:28+07', '2020-04-21 13:28:02+07', '2020-03-20', 100, NULL, NULL, 227, 1, 16, false, '2020-04-21 13:28:02+07');
INSERT INTO public.issues VALUES (229, 2, 3, 'Danh sách giảng viên', '', '2020-03-25', 7, 5, 12, 2, NULL, 12, 12, '2020-03-18 14:08:25+07', '2020-04-21 13:23:17+07', '2020-03-20', 100, NULL, 227, 227, 2, 7, false, '2020-04-21 13:23:17+07');
INSERT INTO public.issues VALUES (230, 2, 3, 'Xem thông tin giảng viên', '', '2020-03-24', 7, 5, 12, 2, NULL, 12, 6, '2020-03-18 14:08:40+07', '2021-02-05 09:07:52+07', '2020-03-24', 100, NULL, 227, 227, 8, 9, false, '2020-04-21 13:23:31+07');
INSERT INTO public.issues VALUES (231, 2, 3, 'Cập nhật thông tin giảng viên', '', '2020-03-21', 7, 5, 12, 2, NULL, 12, 7, '2020-03-18 14:09:00+07', '2020-04-21 13:23:31+07', '2020-03-21', 100, NULL, 227, 227, 10, 13, false, '2020-04-21 13:23:31+07');
INSERT INTO public.issues VALUES (233, 2, 3, 'Lớp phụ trách', '', '2020-03-25', 7, 5, 12, 2, NULL, 12, 9, '2020-03-18 14:09:34+07', '2020-04-21 13:23:31+07', '2020-03-25', 100, NULL, 227, 227, 14, 15, false, '2020-04-21 13:23:31+07');
INSERT INTO public.issues VALUES (238, 2, 4, 'Đơn vị', '', '2020-04-04', 11, 5, 10, 2, NULL, 5, 20, '2020-03-18 14:10:56+07', '2021-02-05 08:57:42+07', '2020-04-03', 100, NULL, 226, 226, 2, 9, false, '2020-06-05 10:49:49+07');
INSERT INTO public.issues VALUES (239, 2, 4, 'Tài khoản', '', '2020-04-09', 11, 5, 10, 2, NULL, 5, 12, '2020-03-18 14:11:01+07', '2021-02-05 08:57:53+07', '2020-04-08', 100, NULL, 226, 226, 10, 15, false, '2020-06-05 10:49:29+07');
INSERT INTO public.issues VALUES (240, 2, 4, 'Vai trò', '', '2020-04-03', 11, 5, 10, 2, NULL, 5, 14, '2020-03-18 14:11:07+07', '2021-02-05 08:57:54+07', '2020-03-26', 100, NULL, 226, 226, 16, 23, false, '2020-06-05 10:49:29+07');
INSERT INTO public.issues VALUES (242, 2, 4, 'Chức năng', '', '2020-04-04', 11, 5, 10, 2, NULL, 5, 29, '2020-03-18 14:12:06+07', '2020-06-05 10:49:50+07', '2020-03-27', 100, NULL, 226, 226, 24, 47, false, '2020-06-05 10:49:50+07');
INSERT INTO public.issues VALUES (244, 2, 4, 'Cấu hình vài trò gồm những quyền gì', '', '2020-04-07', 11, 5, 10, 2, NULL, 5, 17, '2020-03-18 14:14:25+07', '2021-02-05 08:57:54+07', '2020-04-04', 100, NULL, 226, 226, 48, 55, false, '2020-06-05 10:49:50+07');
INSERT INTO public.issues VALUES (245, 2, 4, 'Phân quyền cho tài khoản', '', '2020-04-11', 11, 5, 10, 2, NULL, 5, 15, '2020-03-18 14:14:36+07', '2021-02-05 08:57:54+07', '2020-04-06', 100, NULL, 226, 226, 56, 63, false, '2020-06-05 10:49:50+07');
INSERT INTO public.issues VALUES (246, 2, 4, 'Xem và xuất file các dự án mời gọi đầu tư', '', '2020-04-03', 10, 5, 12, 2, NULL, 13, 8, '2020-03-18 14:29:57+07', '2021-02-05 08:57:04+07', '2020-04-03', 100, NULL, 210, 210, 14, 15, false, '2020-06-03 11:41:54+07');
INSERT INTO public.issues VALUES (247, 2, 4, 'Xem và xuất file các dự án đầu tư trong nước', '', '2020-04-03', 10, 5, 12, 2, NULL, 13, 8, '2020-03-18 14:30:33+07', '2021-02-05 08:57:04+07', '2020-04-03', 100, NULL, 210, 210, 16, 17, false, '2020-06-03 11:41:54+07');
INSERT INTO public.issues VALUES (248, 2, 4, 'Xem và xuất file các dự án đầu tư nước ngoài', '', '2020-04-03', 10, 5, 12, 2, NULL, 13, 8, '2020-03-18 14:31:07+07', '2021-02-05 08:57:04+07', '2020-04-03', 100, NULL, 210, 210, 18, 19, false, '2020-06-03 11:41:54+07');
INSERT INTO public.issues VALUES (249, 2, 1, 'Gắn api trang message', '', '2020-03-19', 6, 5, NULL, 2, NULL, 10, 4, '2020-03-18 16:47:33+07', '2020-05-13 06:46:51+07', '2020-03-19', 100, NULL, 90, 90, 6, 7, false, '2020-05-13 06:46:51+07');
INSERT INTO public.issues VALUES (250, 2, 3, 'Danh sách trích ngang theo đơn vị', '', '2020-03-19', 7, 5, 12, 2, NULL, 12, 7, '2020-03-18 17:04:25+07', '2020-04-21 13:21:58+07', '2020-03-19', 100, NULL, 196, 190, 7, 8, false, '2020-04-21 13:21:58+07');
INSERT INTO public.issues VALUES (252, 2, 3, 'Giao diện danh sách giảng viên', '', '2020-03-20', 7, 5, 12, 2, NULL, 12, 7, '2020-03-19 08:21:38+07', '2021-02-05 09:07:52+07', '2020-03-20', 100, NULL, 229, 227, 3, 4, false, '2020-04-21 13:23:10+07');
INSERT INTO public.issues VALUES (253, 2, 3, 'Đổ dữ liệu vào giao diện danh sách giảng viên', '', '2020-03-25', 7, 5, 12, 2, NULL, 12, 6, '2020-03-19 08:22:45+07', '2020-04-21 13:23:10+07', '2020-03-25', 100, NULL, 229, 227, 5, 6, false, '2020-04-21 13:23:10+07');
INSERT INTO public.issues VALUES (254, 2, 1, 'Lúc ký số xong sẽ mất nút ký số luôn', '', '2020-03-19', 6, 5, NULL, 2, NULL, 10, 4, '2020-03-19 08:31:37+07', '2020-04-25 08:16:31+07', '2020-03-19', 100, NULL, 31, 21, 29, 30, false, '2020-04-25 08:16:31+07');
INSERT INTO public.issues VALUES (255, 2, 1, 'Lúc gửi hồ sơ xong thì mất nút gửi hồ sơ', '', '2020-03-19', 6, 5, 10, 2, NULL, 10, 3, '2020-03-19 08:32:38+07', '2020-04-25 08:16:31+07', '2020-03-19', 100, NULL, 32, 21, 37, 38, false, '2020-04-25 08:16:31+07');
INSERT INTO public.issues VALUES (256, 2, 3, 'Nhập học viên', 'Thêm học viên mới vào lớp với status là 1
Lọc những học viên cho vào danh sách dự bị với status = 2
Xác nhận học viên vào lớp học với status = 3
Tự động xếp tổ cho học viên (có 3|| 4 || 5 || 6 tổ)
Tự động xếp vị trí ngồi cho học viên', '2020-03-25', 7, 5, 12, 2, NULL, 12, 10, '2020-03-19 08:37:06+07', '2021-02-05 09:07:51+07', '2020-03-25', 100, NULL, 179, 179, 10, 11, false, '2020-04-21 13:22:35+07');
INSERT INTO public.issues VALUES (258, 2, 3, 'Giao diện cập nhật thông tin giảng viên', '', '2020-03-21', 7, 5, 12, 2, NULL, 12, 6, '2020-03-19 08:58:45+07', '2021-02-05 09:07:52+07', '2020-03-21', 100, NULL, 231, 227, 11, 12, false, '2020-04-21 13:23:24+07');
INSERT INTO public.issues VALUES (259, 2, 3, 'import danh sách học vên từ file excel', '', '2020-05-06', 7, 5, 12, 2, NULL, 12, 13, '2020-03-19 06:51:46+07', '2020-06-03 09:44:47+07', '2020-05-06', 100, NULL, 330, 330, 20, 21, false, '2020-06-03 09:44:47+07');
INSERT INTO public.issues VALUES (260, 2, 3, 'Tự động xếp vị trí ngồi cho học viên', '', '2020-05-25', 7, 5, 12, 2, NULL, 12, 33, '2020-03-19 06:53:20+07', '2020-06-03 09:45:54+07', '2020-05-16', 100, NULL, 330, 330, 22, 43, false, '2020-06-03 09:45:54+07');
INSERT INTO public.issues VALUES (261, 1, 1, 'Fix lỗi bên doanh nghiệp', '', '2020-03-20', 4, 5, 8, 2, NULL, 5, 31, '2020-03-19 16:30:52+07', '2020-04-03 13:53:46+07', '2020-03-18', 100, NULL, NULL, 261, 1, 44, false, '2020-04-03 13:53:46+07');
INSERT INTO public.issues VALUES (262, 2, 1, 'Sửa lại file Excel bình thường', '', '2020-03-19', 4, 5, 5, 2, NULL, 8, 4, '2020-03-19 17:01:10+07', '2020-04-03 13:53:05+07', '2020-03-18', 100, NULL, 261, 261, 2, 3, false, '2020-04-03 13:53:05+07');
INSERT INTO public.issues VALUES (263, 2, 1, 'Trong tài khoản doanh nghiệp : cho lọc theo trạng thái khởi tạo hồ sơ, hồ sơ đã ký số, hồ sơ chờ duyệt, hồ sơ đã ký số, hồ sơ từ chối', '', '2020-03-19', 4, 5, 8, 2, NULL, 8, 4, '2020-03-19 17:01:28+07', '2020-04-03 13:53:05+07', '2020-03-18', 100, NULL, 261, 261, 4, 5, false, '2020-04-03 13:53:05+07');
INSERT INTO public.issues VALUES (264, 2, 1, 'Trong tài khoản doanh nghiệp : Sửa ngày kê khai phải lớn hơn hoặc bằng ngày cập nhật', '', '2020-03-19', 4, 5, 8, 2, NULL, 8, 4, '2020-03-19 17:01:43+07', '2020-04-03 13:53:05+07', '2020-03-18', 100, NULL, 261, 261, 6, 7, false, '2020-04-03 13:53:05+07');
INSERT INTO public.issues VALUES (265, 2, 1, 'Trang chi tiết trong hồ sơ KKG của doanh nghiệp : chỉnh sửa sắp xếp theo đúng trình tự', '', '2020-03-19', 4, 5, 8, 2, NULL, 8, 4, '2020-03-19 17:01:58+07', '2020-04-03 13:53:05+07', '2020-03-18', 100, NULL, 261, 261, 8, 9, false, '2020-04-03 13:53:05+07');
INSERT INTO public.issues VALUES (266, 2, 1, 'Trang chi tiết trong hồ sơ KKG của doanh nghiệp : thêm chức năng tìm kiếm theo tên HHDV', '', '2020-03-19', 4, 5, 8, 2, NULL, 8, 4, '2020-03-19 17:02:14+07', '2020-04-03 13:53:06+07', '2020-03-18', 100, NULL, 261, 261, 10, 11, false, '2020-04-03 13:53:06+07');
INSERT INTO public.issues VALUES (267, 2, 1, 'Trang phê duyệt tài khoản doanh nghiệp : chức năng tìm kiếm theo ngày, phải tìm theo thời gian gửi hồ sơ ', '', '2020-03-19', 4, 5, 8, 2, NULL, 8, 4, '2020-03-19 17:02:28+07', '2020-04-03 13:53:06+07', '2020-03-18', 100, NULL, 261, 261, 12, 13, false, '2020-04-03 13:53:06+07');
INSERT INTO public.issues VALUES (268, 2, 1, 'Trang phê duyệt tài khoản doanh nghiệp : sắp xếp hồ sơ cũ trước để dễ quản lý', '', '2020-03-19', 4, 5, 8, 2, NULL, 8, 4, '2020-03-19 17:02:42+07', '2020-04-03 13:53:06+07', '2020-03-18', 100, NULL, 261, 261, 14, 15, false, '2020-04-03 13:53:06+07');
INSERT INTO public.issues VALUES (269, 2, 1, 'Trong tài khoản doanh nghiệp : sắp xếp hồ sơ mới trước', '', '2020-03-19', 4, 5, 8, 2, NULL, 8, 4, '2020-03-19 17:02:59+07', '2020-04-03 13:53:06+07', '2020-03-18', 100, NULL, 261, 261, 16, 17, false, '2020-04-03 13:53:06+07');
INSERT INTO public.issues VALUES (270, 2, 1, 'Trong tài khoản doanh nghiệp : thêm ô thời gian đến hạn ', '', '2020-03-19', 4, 5, 8, 2, NULL, 8, 4, '2020-03-19 17:03:13+07', '2020-04-03 13:53:06+07', '2020-03-18', 100, NULL, 261, 261, 18, 19, false, '2020-04-03 13:53:06+07');
INSERT INTO public.issues VALUES (271, 2, 1, 'Thêm lý do từ chối bên dưới trạng thái trong trang thông tin hồ sơ', '', '2020-03-19', 4, 5, 5, 2, NULL, 8, 4, '2020-03-19 17:03:26+07', '2020-04-03 13:53:06+07', '2020-03-18', 100, NULL, 261, 261, 20, 21, false, '2020-04-03 13:53:06+07');
INSERT INTO public.issues VALUES (272, 2, 1, 'Phải có file đính kèm khi hồ sơ bị từ chối', '', '2020-03-19', 4, 5, 5, 2, NULL, 8, 4, '2020-03-19 17:03:38+07', '2020-04-03 13:53:06+07', '2020-03-18', 100, NULL, 261, 261, 22, 23, false, '2020-04-03 13:53:06+07');
INSERT INTO public.issues VALUES (273, 2, 1, 'Phụ luc số 5 ( Mẫu thông báo giá ) : sửa text file PDF "Mức thông báo giá kê khai từ ngày" => Mức giá thông báo này  ', '', '2020-03-19', 4, 5, 5, 2, NULL, 8, 4, '2020-03-19 17:03:48+07', '2020-04-03 13:53:06+07', '2020-03-18', 100, NULL, 261, 261, 24, 25, false, '2020-04-03 13:53:06+07');
INSERT INTO public.issues VALUES (274, 2, 1, 'Sửa lại các ô thời gian ( TG gửi hồ sơ, TG duyệt hồ sơ, TG đến hạn xử lý ) : hiện thời gian khi hồ sơ bị từ chối', '', '2020-03-19', 4, 5, 5, 2, NULL, 8, 4, '2020-03-19 17:03:59+07', '2020-04-03 13:53:06+07', '2020-03-18', 100, NULL, 261, 261, 26, 27, false, '2020-04-03 13:53:06+07');
INSERT INTO public.issues VALUES (275, 2, 1, 'Phụ luc số 5 ( Mẫu thông báo giá ) : sửa text file PDF "V/v thông báo mức giá điều chỉnh tăng giảm ..."  => V/v thông báo mức giá  ', '', '2020-03-19', 4, 5, 5, 2, NULL, 8, 4, '2020-03-19 17:04:09+07', '2020-04-03 13:53:06+07', '2020-03-18', 100, NULL, 261, 261, 28, 29, false, '2020-04-03 13:53:06+07');
INSERT INTO public.issues VALUES (276, 2, 1, 'Sửa Text TG Duyệt hồ sơ => TG đã được xử lý', '', '2020-03-19', 4, 5, 8, 2, NULL, 8, 4, '2020-03-19 17:04:21+07', '2020-04-03 13:53:06+07', '2020-03-18', 100, NULL, 261, 261, 30, 31, false, '2020-04-03 13:53:06+07');
INSERT INTO public.issues VALUES (277, 2, 1, 'Sửa lại ô trong thông báo giá theo phụ lục số 5 ( Mẫu thông báo giá )', '', '2020-03-19', 4, 5, 8, 2, NULL, 8, 4, '2020-03-19 17:04:36+07', '2020-04-03 13:53:06+07', '2020-03-18', 100, NULL, 261, 261, 32, 33, false, '2020-04-03 13:53:06+07');
INSERT INTO public.issues VALUES (278, 2, 1, 'Đối với phụ lục số 5, thời gian ngày cập nhật hiện để doanh nghiệp tự điền ', '', '2020-03-19', 4, 5, 8, 2, NULL, 8, 4, '2020-03-19 17:05:05+07', '2020-04-03 13:53:07+07', '2020-03-18', 100, NULL, 261, 261, 34, 35, false, '2020-04-03 13:53:07+07');
INSERT INTO public.issues VALUES (280, 2, 3, 'In thẻ học viên theo lớp', '', '2020-03-19', 7, 5, 12, 2, NULL, 12, 3, '2020-03-19 23:11:21+07', '2020-04-21 13:21:58+07', '2020-03-19', 100, NULL, 196, 190, 9, 10, false, '2020-04-21 13:21:58+07');
INSERT INTO public.issues VALUES (281, 1, 3, 'Chưa sang trang khi thẻ lớn hơn 10', '', '2020-03-21', 7, 5, 12, 2, NULL, 12, 4, '2020-03-19 23:13:04+07', '2020-04-21 13:21:58+07', '2020-03-21', 100, NULL, 196, 190, 11, 12, false, '2020-04-21 13:21:58+07');
INSERT INTO public.issues VALUES (282, 3, 1, 'Viết kịch bản', '', '2020-03-21', 9, 5, NULL, 2, NULL, 5, 4, '2020-03-20 08:51:22+07', '2020-04-25 08:17:18+07', '2020-03-20', 100, NULL, 205, 205, 2, 3, false, '2020-04-25 08:17:18+07');
INSERT INTO public.issues VALUES (283, 3, 1, 'Dựng video mẫu có intro', '', '2020-03-21', 9, 5, NULL, 2, NULL, 5, 4, '2020-03-20 08:52:46+07', '2020-04-25 08:17:18+07', '2020-03-20', 100, NULL, 205, 205, 4, 5, false, '2020-04-25 08:17:18+07');
INSERT INTO public.issues VALUES (284, 3, 1, 'Làm video hướng dẫn import kê khai giá', '', '2020-03-23', 9, 5, 9, 2, NULL, 5, 8, '2020-03-20 08:53:53+07', '2020-04-25 08:17:18+07', '2020-03-23', 100, NULL, 205, 205, 6, 7, false, '2020-04-25 08:17:18+07');
INSERT INTO public.issues VALUES (285, 3, 1, 'Thu âm hướng dẫn kê khai giá', '', '2020-03-23', 9, 5, 9, 2, NULL, 5, 6, '2020-03-20 08:54:19+07', '2020-04-25 08:17:18+07', '2020-03-23', 100, NULL, 205, 205, 8, 9, false, '2020-04-25 08:17:18+07');
INSERT INTO public.issues VALUES (286, 2, 3, 'Xuất danh sách học viên theo alphabet', '', '2020-03-20', 7, 5, 12, 2, NULL, 12, 4, '2020-03-20 08:54:36+07', '2020-04-21 13:22:26+07', '2020-03-20', 100, NULL, 180, 179, 3, 4, false, '2020-04-21 13:22:26+07');
INSERT INTO public.issues VALUES (287, 3, 1, 'Ghép video hướng dẫn, file thu âm vào video hướng dẫn', '', '2020-03-23', 9, 5, NULL, 2, NULL, 5, 6, '2020-03-20 08:55:48+07', '2020-04-25 08:17:18+07', '2020-03-23', 100, NULL, 205, 205, 10, 11, false, '2020-04-25 08:17:18+07');
INSERT INTO public.issues VALUES (454, 2, 10, 'Hiển thị danh sách', '', NULL, NULL, 5, NULL, 2, NULL, 5, 4, '2020-04-10 17:14:19+07', '2020-04-11 14:15:52+07', NULL, 0, NULL, 449, 433, 35, 36, false, '2020-04-11 14:15:52+07');
INSERT INTO public.issues VALUES (288, 3, 1, 'Hiệu chỉnh video và xuất bản', '', '2020-03-23', 9, 5, NULL, 2, NULL, 5, 6, '2020-03-20 08:56:09+07', '2020-04-25 08:17:18+07', '2020-03-23', 100, NULL, 205, 205, 12, 13, false, '2020-04-25 08:17:18+07');
INSERT INTO public.issues VALUES (289, 3, 1, 'Tạo kênh & upload youtube', '', '2020-03-28', 9, 5, NULL, 2, NULL, 5, 5, '2020-03-20 01:59:13+07', '2020-04-25 08:17:18+07', '2020-03-28', 100, NULL, 205, 205, 14, 15, false, '2020-04-25 08:17:18+07');
INSERT INTO public.issues VALUES (290, 3, 1, 'Gắn link youtube vào web dlg.binhdinh.gov.vn', '', '2020-03-28', 9, 5, 8, 2, NULL, 5, 4, '2020-03-20 01:59:56+07', '2020-04-25 08:17:18+07', '2020-03-28', 100, NULL, 205, 205, 16, 17, false, '2020-04-25 08:17:18+07');
INSERT INTO public.issues VALUES (291, 3, 1, 'Gắn link youtube vào web công ty', 'A. Cường', '2020-03-28', 9, 5, NULL, 2, NULL, 5, 3, '2020-03-20 02:00:21+07', '2020-04-25 08:25:15+07', '2020-03-28', 100, NULL, 205, 205, 18, 19, false, '2020-04-25 08:25:15+07');
INSERT INTO public.issues VALUES (292, 2, 1, 'Phụ lục số 5 ( Thông báo giá ) : Sữa text PDF', '- trong phạm vi 5% so với mức giá đã kê khai liền kề trước đó (bỏ đi)', '2020-03-20', 4, 5, 5, 2, NULL, 8, 5, '2020-03-20 13:53:33+07', '2020-04-03 13:53:07+07', '2020-03-20', 100, NULL, 261, 261, 36, 37, false, '2020-04-03 13:53:07+07');
INSERT INTO public.issues VALUES (293, 2, 1, 'Phụ lục số 4 ( Kê khai giá ) : Chỉnh text chỗ V/v cho ngắn để dễ nhìn', '', '2020-03-20', 4, 5, 5, 2, NULL, 8, 4, '2020-03-20 13:55:45+07', '2020-04-03 13:53:07+07', '2020-03-20', 100, NULL, 261, 261, 38, 39, false, '2020-04-03 13:53:07+07');
INSERT INTO public.issues VALUES (294, 2, 1, 'Trong phê duyệt hồ sơ của doanh nghiệp : sữa văn bản đính kèm như bên doanh nghiệp', '', '2020-03-20', 4, 5, 8, 2, NULL, 8, 4, '2020-03-20 06:56:28+07', '2020-04-03 13:53:07+07', '2020-03-20', 100, NULL, 261, 261, 40, 41, false, '2020-04-03 13:53:07+07');
INSERT INTO public.issues VALUES (295, 2, 1, 'Ngày kê khai bên thông báo giá : không có ràng buộc ngày tháng theo thời gian tạo hồ sơ', '', '2020-03-20', 4, 5, 8, 2, NULL, 8, 4, '2020-03-20 06:57:13+07', '2020-04-03 13:53:07+07', '2020-03-20', 100, NULL, 261, 261, 42, 43, false, '2020-04-03 13:53:07+07');
INSERT INTO public.issues VALUES (296, 3, 1, 'Quay video thao tác đăng ký tài khoản', '', '2020-03-23', 9, 5, 9, 2, NULL, 5, 3, '2020-03-20 07:03:12+07', '2020-04-25 08:17:18+07', '2020-03-23', 100, NULL, 205, 205, 20, 21, false, '2020-04-25 08:17:18+07');
INSERT INTO public.issues VALUES (297, 2, 3, 'Xuất phiếu điểm danh theo lớp va theo tổ', '', '2020-03-20', 7, 5, 12, 2, NULL, 12, 3, '2020-03-20 15:34:58+07', '2020-04-21 13:22:56+07', '2020-03-20', 100, NULL, 197, 197, 2, 3, false, '2020-04-21 13:22:56+07');
INSERT INTO public.issues VALUES (299, 2, 4, 'Gắn api chức năng', '', '2020-03-28', 11, 5, 10, 2, NULL, 5, 8, '2020-03-21 10:20:04+07', '2021-02-05 08:57:43+07', '2020-03-28', 100, NULL, 242, 226, 25, 26, false, '2020-06-03 11:41:55+07');
INSERT INTO public.issues VALUES (300, 2, 4, 'Gắn api vai trò', '', '2020-03-26', 11, 5, 10, 2, NULL, 5, 9, '2020-03-21 10:20:15+07', '2021-02-05 08:57:43+07', '2020-03-26', 100, NULL, 240, 226, 17, 18, false, '2020-06-03 11:41:55+07');
INSERT INTO public.issues VALUES (301, 2, 4, 'Gắn api cấu hình vai trò', '', '2020-04-07', 11, 5, 10, 2, NULL, 5, 11, '2020-03-21 10:20:30+07', '2021-02-05 08:57:44+07', '2020-04-06', 100, NULL, 244, 226, 49, 50, false, '2020-06-03 11:41:57+07');
INSERT INTO public.issues VALUES (303, 2, 4, 'Gắn api tài khoản', '', '2020-04-09', 11, 5, 10, 2, NULL, 5, 9, '2020-03-21 10:21:01+07', '2021-02-05 08:57:42+07', '2020-04-09', 100, NULL, 239, 226, 11, 12, false, '2020-06-03 11:41:55+07');
INSERT INTO public.issues VALUES (304, 2, 4, 'Gắn api phân quyền tài khoản', '', '2020-04-11', 11, 5, 10, 2, NULL, 5, 10, '2020-03-21 10:21:18+07', '2021-02-05 08:57:44+07', '2020-04-11', 100, NULL, 245, 226, 57, 58, false, '2020-06-03 11:41:57+07');
INSERT INTO public.issues VALUES (306, 2, 1, 'Thông báo trên trang chủ', '', '2020-03-23', 4, 5, 8, 2, NULL, 5, 4, '2020-03-21 15:15:05+07', '2020-04-03 13:53:46+07', '2020-03-23', 100, NULL, NULL, 306, 1, 2, false, '2020-04-03 13:53:46+07');
INSERT INTO public.issues VALUES (307, 2, 1, 'Menu hướng dẫn sử dụng', '', '2020-03-27', 4, 5, 8, 2, NULL, 5, 5, '2020-03-21 15:15:33+07', '2020-04-03 13:53:46+07', '2020-03-27', 100, NULL, NULL, 307, 1, 2, false, '2020-04-03 13:53:46+07');
INSERT INTO public.issues VALUES (308, 2, 1, 'Gắn api cho trang chi tiết', '', '2020-03-21', 6, 5, 10, 2, NULL, 10, 3, '2020-03-21 16:05:37+07', '2020-05-13 06:46:51+07', '2020-03-21', 100, NULL, 90, 90, 8, 9, false, '2020-05-13 06:46:51+07');
INSERT INTO public.issues VALUES (311, 2, 6, 'PHẦN MỀM CSDL VỀ GIÁ', '', '2020-03-31', NULL, 5, 5, 2, NULL, 5, 8, '2020-03-23 18:40:40+07', '2020-06-23 13:20:07+07', '2020-03-01', 100, NULL, NULL, 311, 1, 8, false, '2020-06-23 13:20:07+07');
INSERT INTO public.issues VALUES (312, 2, 6, 'QUẢN LÝ HỌC VIÊN', '', '2020-03-31', NULL, 5, 12, 2, NULL, 5, 5, '2020-03-23 18:41:45+07', '2020-06-23 13:19:27+07', '2020-01-01', 50, NULL, NULL, 312, 1, 2, false, '2020-06-23 13:19:27+07');
INSERT INTO public.issues VALUES (313, 2, 6, 'XÚC TIẾN ĐẦU TƯ', '', '2020-04-04', NULL, 1, 13, 2, NULL, 5, 5, '2020-03-23 18:42:18+07', '2020-03-25 08:45:03+07', '2020-01-01', 35, NULL, NULL, 313, 1, 6, false, NULL);
INSERT INTO public.issues VALUES (314, 2, 6, 'SÀN ĐẤU GIÁ TRỰC TUYẾN', '', '2020-04-18', NULL, 1, NULL, 2, NULL, 5, 4, '2020-03-23 18:42:51+07', '2020-03-25 08:45:03+07', '2020-01-01', 20, NULL, NULL, 314, 1, 6, false, NULL);
INSERT INTO public.issues VALUES (315, 2, 6, 'QUẢN LÝ TiỀN LƯƠNG', '', '2020-03-31', NULL, 5, NULL, 2, NULL, 5, 9, '2020-03-23 18:43:15+07', '2020-06-23 13:20:00+07', '2020-01-01', 100, NULL, NULL, 315, 1, 8, false, '2020-06-23 13:20:00+07');
INSERT INTO public.issues VALUES (316, 2, 6, 'HẠ TẦNG BCVT Kontum', '', NULL, NULL, 1, 13, 2, NULL, 5, 1, '2020-03-23 18:43:46+07', '2020-06-23 13:19:46+07', '2020-04-15', 0, NULL, NULL, 316, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (317, 2, 6, 'PHẦN MỀM TiẾNG BANA', '', NULL, NULL, 6, 6, 2, NULL, 5, 1, '2020-03-23 18:43:59+07', '2020-06-13 08:51:14+07', '2020-05-01', 0, NULL, NULL, 317, 1, 2, false, '2020-06-13 08:51:14+07');
INSERT INTO public.issues VALUES (318, 2, 6, 'Dev web', '', '2020-03-31', NULL, 5, NULL, 2, NULL, 5, 5, '2020-03-23 18:44:54+07', '2020-06-23 13:19:26+07', '2020-03-01', 70, NULL, 311, 311, 2, 3, false, '2020-06-23 13:19:26+07');
INSERT INTO public.issues VALUES (319, 2, 6, 'Dev mobile', '', '2020-03-21', NULL, 5, NULL, 2, NULL, 5, 3, '2020-03-23 18:45:13+07', '2020-06-23 13:19:27+07', '2020-03-01', 100, NULL, 311, 311, 4, 5, false, '2020-06-23 13:19:27+07');
INSERT INTO public.issues VALUES (320, 2, 6, 'Đào tạo & Video', '', '2020-03-28', NULL, 5, NULL, 2, NULL, 5, 3, '2020-03-23 18:46:18+07', '2020-06-23 13:19:27+07', '2020-03-23', 0, NULL, 311, 311, 6, 7, false, '2020-06-23 13:19:27+07');
INSERT INTO public.issues VALUES (321, 2, 6, 'Đề tài', '', '2020-03-28', NULL, 1, NULL, 2, NULL, 5, 4, '2020-03-23 18:52:09+07', '2020-03-25 08:45:03+07', '2020-01-01', 70, NULL, 313, 313, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (322, 2, 6, 'Quản trị + cms website', '', '2020-04-04', NULL, 1, NULL, 2, NULL, 5, 0, '2020-03-23 18:52:38+07', '2020-03-23 18:52:38+07', '2020-03-23', 0, NULL, 313, 313, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (323, 2, 6, 'Dev mobile', '', '2020-02-29', NULL, 5, NULL, 2, NULL, 5, 2, '2020-03-23 18:54:50+07', '2020-06-23 13:19:27+07', '2020-02-01', 100, NULL, 315, 315, 2, 3, false, '2020-06-23 13:19:27+07');
INSERT INTO public.issues VALUES (324, 2, 6, 'Dev web', '', '2020-03-31', NULL, 5, NULL, 2, NULL, 5, 4, '2020-03-23 18:55:10+07', '2020-06-23 13:19:27+07', '2020-01-01', 90, NULL, 315, 315, 4, 5, false, '2020-06-23 13:19:27+07');
INSERT INTO public.issues VALUES (325, 2, 6, 'Đào tạo & Video', '', '2020-03-28', NULL, 5, NULL, 2, NULL, 5, 1, '2020-03-23 18:55:48+07', '2020-06-23 13:19:27+07', '2020-03-23', 0, NULL, 315, 315, 6, 7, false, '2020-06-23 13:19:27+07');
INSERT INTO public.issues VALUES (326, 2, 6, 'Dev web', '', '2020-04-18', NULL, 1, NULL, 2, NULL, 5, 4, '2020-03-23 11:56:57+07', '2020-03-25 08:45:03+07', '2020-01-01', 40, NULL, 314, 314, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (327, 2, 6, 'Dev mobile', '', '2020-04-18', NULL, 1, NULL, 2, NULL, 5, 0, '2020-03-23 11:57:26+07', '2020-03-23 11:57:26+07', '2020-03-16', 0, NULL, 314, 314, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (328, 2, 1, 'Thêm cột Tên doanh nghiệp vào KKG', '', '2020-03-28', 4, 5, 8, 2, NULL, 5, 6, '2020-03-25 08:19:03+07', '2020-04-03 13:53:46+07', '2020-03-28', 100, NULL, NULL, 328, 1, 2, false, '2020-04-03 13:53:46+07');
INSERT INTO public.issues VALUES (329, 2, 1, 'Tạo mẫu KKG cho công thương, GTVT bình thường không phải 233', '', '2020-04-03', 4, 5, 8, 2, NULL, 5, 6, '2020-03-25 08:19:37+07', '2020-04-25 08:19:15+07', '2020-04-03', 100, NULL, NULL, 329, 1, 2, false, '2020-04-25 08:19:15+07');
INSERT INTO public.issues VALUES (330, 2, 3, 'Task Còn Lại', '', '2020-06-11', 7, 1, 12, 2, NULL, 12, 147, '2020-03-25 13:16:54+07', '2020-06-15 16:32:04+07', '2020-03-26', 100, NULL, NULL, 330, 1, 108, false, NULL);
INSERT INTO public.issues VALUES (331, 3, 1, 'Làm video hướng dẫn kê khai giá thủ công', '', '2020-03-26', 9, 5, 9, 2, NULL, 5, 3, '2020-03-26 09:32:04+07', '2020-04-25 08:17:18+07', '2020-03-26', 100, NULL, 205, 205, 22, 23, false, '2020-04-25 08:17:18+07');
INSERT INTO public.issues VALUES (332, 3, 1, 'Làm video hướng dẫn import đăng ký giá', '', '2020-03-27', 9, 5, 9, 2, NULL, 5, 2, '2020-03-26 09:32:27+07', '2020-04-25 08:25:15+07', '2020-03-27', 100, NULL, 205, 205, 24, 25, false, '2020-04-25 08:25:15+07');
INSERT INTO public.issues VALUES (333, 3, 1, 'Làm video hướng dẫn đăng ký giá thủ công', '', '2020-03-28', NULL, 5, NULL, 2, NULL, 5, 2, '2020-03-26 09:32:48+07', '2020-04-25 08:25:15+07', '2020-03-28', 100, NULL, 205, 205, 26, 27, false, '2020-04-25 08:25:15+07');
INSERT INTO public.issues VALUES (334, 2, 4, 'Quản lý bài viết', '', '2020-06-22', 11, 5, 8, 2, NULL, 5, 35, '2020-03-26 13:59:31+07', '2020-07-08 01:18:55+07', '2020-06-18', 100, NULL, NULL, 334, 1, 12, false, '2020-07-08 01:18:55+07');
INSERT INTO public.issues VALUES (335, 2, 4, 'Danh sách bài viết', '', '2020-06-20', 11, 5, 8, 2, NULL, 5, 13, '2020-03-26 14:00:36+07', '2020-07-08 01:18:35+07', '2020-06-20', 100, NULL, 334, 334, 2, 3, false, '2020-07-08 01:18:35+07');
INSERT INTO public.issues VALUES (336, 2, 4, 'Thêm mới bài viết', '', '2020-06-20', 11, 5, 8, 2, NULL, 5, 11, '2020-03-26 14:00:51+07', '2020-07-08 01:18:35+07', '2020-06-20', 100, NULL, 334, 334, 4, 5, false, '2020-07-08 01:18:35+07');
INSERT INTO public.issues VALUES (337, 2, 4, 'Chỉnh sửa bài viết', '', '2020-06-22', 11, 5, 8, 2, NULL, 5, 11, '2020-03-26 14:01:05+07', '2020-07-08 01:18:35+07', '2020-06-22', 100, NULL, 334, 334, 6, 7, false, '2020-07-08 01:18:35+07');
INSERT INTO public.issues VALUES (338, 2, 4, 'Chỉnh menu', '', '2020-04-03', 10, 5, 13, 2, NULL, 5, 4, '2020-03-26 15:05:21+07', '2020-06-03 11:41:55+07', '2020-04-03', 100, NULL, 210, 210, 20, 21, false, '2020-06-03 11:41:55+07');
INSERT INTO public.issues VALUES (339, 2, 1, '(Sửa chữa phần mềm) đổi thành đơn vị phát triển phần mềm', '', '2020-03-28', 4, 5, 8, 2, NULL, 5, 4, '2020-03-28 15:47:22+07', '2020-04-03 13:53:47+07', '2020-03-28', 100, NULL, NULL, 339, 1, 2, false, '2020-04-03 13:53:47+07');
INSERT INTO public.issues VALUES (340, 2, 1, 'Thay hình hướng dẫn vào hình cái cân', '', '2020-03-28', 4, 5, 8, 2, NULL, 5, 4, '2020-03-28 15:47:42+07', '2020-04-03 13:53:47+07', '2020-03-28', 100, NULL, NULL, 340, 1, 2, false, '2020-04-03 13:53:47+07');
INSERT INTO public.issues VALUES (341, 2, 4, 'Ẩn hiện tính năng theo phân quyền', '', '2020-06-15', 10, 5, 13, 2, NULL, 5, 5, '2020-03-30 09:08:28+07', '2020-07-08 01:18:54+07', '2020-06-15', 100, NULL, 210, 210, 22, 23, false, '2020-07-08 01:18:54+07');
INSERT INTO public.issues VALUES (342, 2, 4, 'Xem xét về owner dữ liệu', '', '2020-06-15', 10, 5, 13, 2, NULL, 5, 5, '2020-03-30 09:09:05+07', '2020-07-08 01:18:54+07', '2020-06-15', 100, NULL, 210, 210, 24, 25, false, '2020-07-08 01:18:54+07');
INSERT INTO public.issues VALUES (343, 2, 4, 'Đăng nhập trả về menu', '1. Mã đơn vị
2. Danh sách quyền đã cấp cho tài khoản', '2020-04-03', 11, 5, 6, 2, NULL, 5, 6, '2020-03-30 09:09:50+07', '2020-06-05 10:49:30+07', '2020-04-03', 100, NULL, 226, 226, 64, 65, false, '2020-06-05 10:49:30+07');
INSERT INTO public.issues VALUES (344, 2, 4, 'Danh sách vai trò', '', '2020-03-26', 11, 5, 10, 2, NULL, 5, 6, '2020-03-30 09:23:34+07', '2021-02-05 08:57:43+07', '2020-03-26', 100, NULL, 240, 226, 19, 20, false, '2020-06-03 11:41:55+07');
INSERT INTO public.issues VALUES (345, 2, 4, 'Thêm vai trò', '', '2020-04-03', 11, 5, 10, 2, NULL, 5, 6, '2020-03-30 09:24:05+07', '2020-06-03 11:41:55+07', '2020-04-03', 100, NULL, 240, 226, 21, 22, false, '2020-06-03 11:41:55+07');
INSERT INTO public.issues VALUES (346, 2, 4, 'Danh sách chức năng', '', '2020-03-28', NULL, 5, 10, 2, NULL, 10, 4, '2020-03-30 09:58:45+07', '2020-06-03 11:41:55+07', '2020-03-28', 100, NULL, 242, 226, 27, 28, false, '2020-06-03 11:41:55+07');
INSERT INTO public.issues VALUES (347, 2, 4, 'Gắn api nhóm chức năng', '', '2020-03-30', NULL, 5, 10, 2, NULL, 10, 8, '2020-03-30 09:59:31+07', '2020-06-03 11:41:55+07', '2020-03-30', 100, NULL, 242, 226, 29, 30, false, '2020-06-03 11:41:55+07');
INSERT INTO public.issues VALUES (348, 2, 4, 'Gắn api nhóm chức năng', '', '2020-03-27', NULL, 5, 10, 2, NULL, 10, 4, '2020-03-30 10:00:27+07', '2021-02-05 08:57:43+07', '2020-03-27', 100, NULL, 242, 226, 31, 32, false, '2020-06-03 11:41:56+07');
INSERT INTO public.issues VALUES (349, 2, 4, 'Thêm nhóm chức năng', '', '2020-03-31', 11, 5, 10, 2, NULL, 10, 3, '2020-03-30 10:01:36+07', '2020-06-03 11:41:56+07', '2020-03-31', 100, NULL, 242, 226, 33, 34, false, '2020-06-03 11:41:56+07');
INSERT INTO public.issues VALUES (350, 2, 4, 'Xóa nhóm chức năng', '', '2020-03-31', 11, 5, 10, 2, NULL, 10, 4, '2020-03-30 10:03:44+07', '2020-06-03 11:41:56+07', '2020-03-31', 100, NULL, 242, 226, 35, 36, false, '2020-06-03 11:41:56+07');
INSERT INTO public.issues VALUES (351, 2, 4, 'Sửa nhóm chức năng', '', '2020-04-01', NULL, 5, 10, 2, NULL, 10, 4, '2020-03-30 10:03:57+07', '2021-02-05 08:57:44+07', '2020-04-01', 100, NULL, 242, 226, 37, 38, false, '2020-06-03 11:41:56+07');
INSERT INTO public.issues VALUES (352, 2, 4, 'Thêm chức năng', '', '2020-03-30', 11, 5, 10, 2, NULL, 10, 4, '2020-03-30 10:24:05+07', '2020-06-03 11:41:56+07', '2020-03-30', 100, NULL, 242, 226, 39, 40, false, '2020-06-03 11:41:56+07');
INSERT INTO public.issues VALUES (353, 2, 4, 'Danh sách đơn vị', '', '2020-04-03', 11, 5, 10, 2, NULL, 4, 11, '2020-03-30 10:27:40+07', '2020-06-05 10:49:28+07', '2020-04-03', 100, NULL, 238, 226, 3, 4, false, '2020-06-05 10:49:28+07');
INSERT INTO public.issues VALUES (354, 2, 4, 'Gắn api cho đơn vị', '', '2020-04-03', 11, 5, 10, 2, NULL, 4, 8, '2020-03-30 10:28:17+07', '2020-06-05 10:49:29+07', '2020-04-03', 100, NULL, 238, 226, 5, 6, false, '2020-06-05 10:49:29+07');
INSERT INTO public.issues VALUES (355, 2, 4, 'Danh sách nhóm chức năng', '', '2020-03-30', 11, 5, 10, 2, NULL, 10, 3, '2020-03-30 16:07:46+07', '2020-06-03 11:41:56+07', '2020-03-30', 100, NULL, 242, 226, 41, 42, false, '2020-06-03 11:41:56+07');
INSERT INTO public.issues VALUES (356, 2, 4, 'Giao diện dialog thêm chức năng', '', '2020-04-03', NULL, 5, 10, 2, NULL, 10, 4, '2020-03-30 16:15:39+07', '2021-02-05 08:57:44+07', '2020-04-03', 100, NULL, 242, 226, 43, 44, false, '2020-06-05 10:49:29+07');
INSERT INTO public.issues VALUES (357, 2, 3, 'Thêm avatar cho học viên', '', '2020-04-07', 7, 5, 12, 2, NULL, 12, 9, '2020-03-30 17:15:43+07', '2020-04-21 13:28:26+07', '2020-04-06', 100, NULL, 330, 330, 44, 49, false, '2020-04-21 13:28:26+07');
INSERT INTO public.issues VALUES (358, 2, 4, 'Giao diện thông báo cho ràng buôc, lúc thêm, sửa hay xóa.', '', '2020-04-04', 11, 5, 10, 2, NULL, 10, 4, '2020-03-31 10:07:34+07', '2020-06-03 11:41:57+07', '2020-04-04', 100, NULL, 242, 226, 45, 46, false, '2020-06-03 11:41:57+07');
INSERT INTO public.issues VALUES (359, 2, 4, 'Giao diện cấu hình vai trò', '', '2020-04-04', 11, 5, 10, 2, NULL, 5, 5, '2020-04-03 09:11:49+07', '2020-06-03 11:41:57+07', '2020-04-04', 100, NULL, 244, 226, 51, 52, false, '2020-06-03 11:41:57+07');
INSERT INTO public.issues VALUES (360, 2, 4, 'Giao diện tài khoản', '', '2020-04-08', 11, 5, 10, 2, NULL, 5, 3, '2020-04-03 09:12:48+07', '2020-06-03 11:41:55+07', '2020-04-08', 100, NULL, 239, 226, 13, 14, false, '2020-06-03 11:41:55+07');
INSERT INTO public.issues VALUES (361, 2, 4, 'Giao diện phân quyền cho tài khoản', '', '2020-04-10', 11, 5, 10, 2, NULL, 5, 3, '2020-04-03 09:14:02+07', '2020-06-03 11:41:57+07', '2020-04-10', 100, NULL, 245, 226, 59, 60, false, '2020-06-03 11:41:57+07');
INSERT INTO public.issues VALUES (367, 2, 3, 'API Tổng Số Học Viên Giỏi, Khá, Trung Bình Của Lớp', '', '2020-04-09', 7, 5, 12, 2, NULL, 12, 4, '2020-04-03 15:17:54+07', '2020-04-21 13:28:26+07', '2020-04-09', 100, NULL, 330, 330, 50, 51, false, '2020-04-21 13:28:26+07');
INSERT INTO public.issues VALUES (368, 2, 3, 'Giao điện đăng nhập xuất hiện khi truy cập ứng dụng', '', '2020-04-08', 7, 5, 12, 2, NULL, 12, 5, '2020-04-03 15:19:17+07', '2020-04-21 13:28:27+07', '2020-04-08', 100, NULL, 330, 330, 52, 53, false, '2020-04-21 13:28:27+07');
INSERT INTO public.issues VALUES (369, 2, 3, 'Thêm module phần học', '', '2020-04-03', NULL, 5, 12, 2, NULL, 12, 3, '2020-04-03 16:46:04+07', '2020-04-21 13:27:37+07', '2020-04-03', 100, NULL, 191, 330, 5, 6, false, '2020-04-21 13:27:37+07');
INSERT INTO public.issues VALUES (370, 2, 3, 'Thêm trường điểm lần 2', '', '2020-04-03', 7, 5, 12, 2, NULL, 12, 3, '2020-04-03 16:46:46+07', '2020-04-21 13:27:38+07', '2020-04-03', 100, NULL, 191, 330, 7, 8, false, '2020-04-21 13:27:38+07');
INSERT INTO public.issues VALUES (371, 2, 3, 'Hiển thị nội dung lên bảng báo cáo', '', '2020-04-04', 7, 5, 12, 2, NULL, 12, 5, '2020-04-03 16:47:28+07', '2020-04-21 13:27:38+07', '2020-04-04', 100, NULL, 191, 330, 9, 10, false, '2020-04-21 13:27:38+07');
INSERT INTO public.issues VALUES (372, 2, 4, 'Thêm đơn vị', '', '2020-04-04', 11, 5, 10, 2, NULL, 10, 3, '2020-04-04 07:42:17+07', '2020-06-03 11:41:55+07', '2020-04-04', 100, NULL, 238, 226, 7, 8, false, '2020-06-03 11:41:55+07');
INSERT INTO public.issues VALUES (374, 2, 1, 'Import KKG sở công thương', '', '2020-04-04', 4, 5, 8, 2, NULL, 5, 7, '2020-04-04 08:16:35+07', '2020-06-03 09:26:55+07', '2020-04-04', 100, NULL, NULL, 374, 1, 10, false, '2020-06-03 09:26:55+07');
INSERT INTO public.issues VALUES (375, 2, 1, 'Import KKG sở GTVT', '', '2020-04-04', 4, 5, 8, 2, NULL, 5, 7, '2020-04-04 08:17:28+07', '2020-06-03 09:26:55+07', '2020-04-04', 100, NULL, NULL, 375, 1, 10, false, '2020-06-03 09:26:55+07');
INSERT INTO public.issues VALUES (376, 2, 1, 'Tạo mẫu file excel', '', '2020-04-04', 4, 5, 8, 2, NULL, 5, 3, '2020-04-04 09:38:38+07', '2020-04-25 08:19:15+07', '2020-04-04', 100, NULL, 374, 374, 2, 3, false, '2020-04-25 08:19:15+07');
INSERT INTO public.issues VALUES (377, 2, 1, 'Giao diện import', '', '2020-04-04', 4, 5, 8, 2, NULL, 5, 3, '2020-04-04 09:38:49+07', '2020-04-25 08:19:15+07', '2020-04-04', 100, NULL, 374, 374, 4, 5, false, '2020-04-25 08:19:15+07');
INSERT INTO public.issues VALUES (378, 2, 1, 'Api PreImport', '', '2020-04-04', 4, 5, 8, 2, NULL, 5, 3, '2020-04-04 09:39:11+07', '2020-06-03 09:24:53+07', '2020-04-04', 100, NULL, 374, 374, 6, 7, false, '2020-06-03 09:24:53+07');
INSERT INTO public.issues VALUES (379, 2, 1, 'Api Import', '', '2020-04-04', 4, 5, 8, 2, NULL, 5, 3, '2020-04-04 09:39:23+07', '2020-06-03 09:24:53+07', '2020-04-04', 100, NULL, 374, 374, 8, 9, false, '2020-06-03 09:24:53+07');
INSERT INTO public.issues VALUES (380, 2, 1, 'Tạo mẫu file excel', '', '2020-04-04', 4, 5, 8, 2, NULL, 8, 4, '2020-04-04 09:42:31+07', '2020-04-25 08:19:15+07', '2020-04-04', 100, NULL, 375, 375, 2, 3, false, '2020-04-25 08:19:15+07');
INSERT INTO public.issues VALUES (381, 2, 1, 'Giao diện import', '', '2020-04-04', 4, 5, 8, 2, NULL, 8, 3, '2020-04-04 09:43:37+07', '2020-04-25 08:19:15+07', '2020-04-04', 100, NULL, 375, 375, 4, 5, false, '2020-04-25 08:19:15+07');
INSERT INTO public.issues VALUES (382, 2, 1, 'Api PreImport', '', '2020-04-04', 4, 5, 8, 2, NULL, 8, 3, '2020-04-04 09:43:57+07', '2020-06-03 09:24:53+07', '2020-04-04', 100, NULL, 375, 375, 6, 7, false, '2020-06-03 09:24:53+07');
INSERT INTO public.issues VALUES (383, 2, 1, 'Api Import', '', '2020-04-04', 4, 5, 8, 2, NULL, 8, 3, '2020-04-04 09:44:10+07', '2020-06-03 09:24:53+07', '2020-04-04', 100, NULL, 375, 375, 8, 9, false, '2020-06-03 09:24:53+07');
INSERT INTO public.issues VALUES (384, 2, 4, 'Viết api thiết lập quyền', '', '2020-04-04', 11, 5, 6, 2, NULL, 5, 4, '2020-04-04 16:06:41+07', '2020-06-05 10:49:29+07', '2020-04-04', 100, NULL, 244, 226, 53, 54, false, '2020-06-05 10:49:29+07');
INSERT INTO public.issues VALUES (385, 2, 3, 'API avatar học viên', '', '2020-04-06', 7, 5, 12, 2, NULL, 12, 3, '2020-04-06 09:16:03+07', '2020-04-21 13:27:45+07', '2020-04-06', 100, NULL, 357, 330, 45, 46, false, '2020-04-21 13:27:45+07');
INSERT INTO public.issues VALUES (386, 2, 3, 'Hiển thị avatar học viên', '', '2020-04-07', NULL, 5, 12, 2, NULL, 12, 4, '2020-04-06 09:16:37+07', '2020-04-21 13:27:45+07', '2020-04-07', 100, NULL, 357, 330, 47, 48, false, '2020-04-21 13:27:45+07');
INSERT INTO public.issues VALUES (387, 2, 4, 'api phân quyền cho tài khoản', '', '2020-04-06', 11, 5, 6, 2, NULL, 5, 3, '2020-04-06 13:04:31+07', '2020-06-05 10:49:29+07', '2020-04-06', 100, NULL, 245, 226, 61, 62, false, '2020-06-05 10:49:29+07');
INSERT INTO public.issues VALUES (388, 2, 8, 'Dựng source backend up gitlab', 'http://api-bcvt-kontum.gdtvietnam.com', '2020-04-06', NULL, 5, 5, 2, NULL, 5, 3, '2020-04-06 13:21:11+07', '2020-05-20 09:19:35+07', '2020-04-06', 100, NULL, NULL, 388, 1, 2, false, '2020-05-20 09:19:35+07');
INSERT INTO public.issues VALUES (389, 2, 8, 'Dựng source frontend up gitlab + jenskin', 'http://bcvt-kontum.gdtvietnam.com', '2020-04-27', NULL, 5, 13, 2, NULL, 5, 2, '2020-04-06 13:22:15+07', '2020-05-08 14:38:26+07', '2020-04-27', 0, NULL, NULL, 389, 1, 2, false, '2020-05-08 14:38:26+07');
INSERT INTO public.issues VALUES (391, 2, 9, 'Tast cập nhật còn lại', '', '2020-04-07', NULL, 5, 15, 2, NULL, 15, 11, '2020-04-06 14:13:39+07', '2020-05-18 13:59:33+07', '2020-04-06', 100, NULL, NULL, 391, 1, 12, false, '2020-05-18 13:59:33+07');
INSERT INTO public.issues VALUES (392, 2, 9, 'Chỉnh sửa giao diện quản lý tài khoản', '', '2020-04-06', NULL, 5, NULL, 2, NULL, 15, 4, '2020-04-06 14:16:52+07', '2020-05-18 13:59:08+07', '2020-04-06', 100, NULL, 391, 391, 2, 3, false, '2020-05-18 13:59:08+07');
INSERT INTO public.issues VALUES (393, 1, 9, 'Cập nhật lỗi hiển thị trong loại đơn vị ( danh sách tài khoản )', '', '2020-04-06', NULL, 5, NULL, 2, NULL, 15, 4, '2020-04-06 14:17:43+07', '2020-05-18 13:59:12+07', '2020-04-06', 100, NULL, 391, 391, 4, 5, false, '2020-05-18 13:59:12+07');
INSERT INTO public.issues VALUES (394, 2, 9, 'Phân chia list đơn vị phân cấp dựa trên tỉnh + 11 huyện thành phố', '', '2020-04-06', NULL, 5, NULL, 2, NULL, 15, 5, '2020-04-06 14:18:56+07', '2020-05-18 13:59:18+07', '2020-04-06', 100, NULL, 391, 391, 6, 7, false, '2020-05-18 13:59:18+07');
INSERT INTO public.issues VALUES (395, 2, 9, 'Cập nhật chức năng số biên chế  ( tài khoản thống kê )', '', '2020-04-06', NULL, 5, NULL, 2, NULL, 15, 4, '2020-04-06 14:19:50+07', '2020-05-18 13:59:23+07', '2020-04-06', 100, NULL, 391, 391, 8, 9, false, '2020-05-18 13:59:23+07');
INSERT INTO public.issues VALUES (396, 2, 9, 'Phân cấp đơn vị báo cáo thống kê', 'phân cấp list chọn đơn vị theo cấp tỉnh + 11 huyện thành phố trong mục chọn đơn vị ( chức năng báo cáo thống kê )', '2020-04-07', NULL, 5, NULL, 2, NULL, 15, 7, '2020-04-06 14:21:41+07', '2020-05-18 13:59:27+07', '2020-04-07', 100, NULL, 391, 391, 10, 11, false, '2020-05-18 13:59:27+07');
INSERT INTO public.issues VALUES (398, 2, 10, 'Thiết kế database', '', '2020-04-10', NULL, 5, NULL, 2, NULL, 5, 4, '2020-04-10 16:09:25+07', '2020-04-14 19:11:17+07', '2020-04-10', 100, NULL, NULL, 398, 1, 2, false, '2020-04-14 19:11:17+07');
INSERT INTO public.issues VALUES (399, 2, 10, 'Cá nhân', '', '2020-04-13', NULL, 5, NULL, 2, NULL, 5, 15, '2020-04-10 16:09:42+07', '2020-04-15 08:17:28+07', '2020-04-10', 100, NULL, NULL, 399, 1, 16, false, '2020-04-15 08:17:28+07');
INSERT INTO public.issues VALUES (400, 2, 10, 'Người giám hộ', '', '2020-04-10', NULL, 5, NULL, 2, NULL, 5, 6, '2020-04-10 16:09:57+07', '2020-04-15 08:32:09+07', '2020-04-10', 100, NULL, NULL, 400, 1, 4, false, '2020-04-15 08:32:09+07');
INSERT INTO public.issues VALUES (401, 2, 10, 'Doanh nghiệp', '', '2020-04-11', NULL, 5, NULL, 2, NULL, 5, 5, '2020-04-10 16:10:07+07', '2020-04-15 08:02:40+07', '2020-04-10', 100, NULL, NULL, 401, 1, 6, false, '2020-04-15 08:02:40+07');
INSERT INTO public.issues VALUES (402, 2, 10, 'Hộ gia đình', '', '2020-04-15', NULL, 5, NULL, 2, NULL, 5, 11, '2020-04-10 16:10:13+07', '2020-04-17 10:21:31+07', '2020-04-13', 100, NULL, 461, 535, 5, 10, false, '2020-04-17 10:21:31+07');
INSERT INTO public.issues VALUES (403, 2, 10, 'Nội dung hỗ trợ', '', '2020-04-11', NULL, 5, NULL, 2, NULL, 5, 8, '2020-04-10 16:10:23+07', '2020-04-15 08:02:40+07', '2020-04-11', 100, NULL, NULL, 403, 1, 8, false, '2020-04-15 08:02:40+07');
INSERT INTO public.issues VALUES (404, 2, 10, 'Mức hỗ trợ', '', '2020-04-12', NULL, 5, NULL, 2, NULL, 5, 5, '2020-04-10 16:10:41+07', '2020-04-15 08:02:40+07', '2020-04-11', 100, NULL, NULL, 404, 1, 6, false, '2020-04-15 08:02:40+07');
INSERT INTO public.issues VALUES (405, 2, 10, 'Hồ sơ', '', '2020-04-17', NULL, 5, NULL, 2, NULL, 5, 44, '2020-04-10 16:11:10+07', '2020-04-21 08:19:44+07', '2020-04-11', 100, NULL, NULL, 405, 1, 38, false, '2020-04-21 08:19:44+07');
INSERT INTO public.issues VALUES (406, 2, 10, 'Báo cáo', '', '2020-04-17', NULL, 5, NULL, 2, NULL, 5, 19, '2020-04-10 16:11:18+07', '2020-04-21 08:19:44+07', '2020-04-15', 100, NULL, NULL, 406, 1, 20, false, '2020-04-21 08:19:44+07');
INSERT INTO public.issues VALUES (407, 2, 10, 'MOBILE', '', '2020-04-14', NULL, 5, NULL, 2, NULL, 5, 10, '2020-04-10 16:12:08+07', '2020-04-11 13:37:55+07', '2020-04-10', 100, NULL, NULL, 407, 1, 12, false, '2020-04-11 13:37:55+07');
INSERT INTO public.issues VALUES (408, 2, 10, 'Tạo dữ liệu ban đầu', '', '2020-04-11', NULL, 5, NULL, 2, NULL, 5, 6, '2020-04-10 16:13:04+07', '2020-04-15 08:02:40+07', '2020-04-10', 100, NULL, NULL, 408, 1, 8, false, '2020-04-15 08:02:40+07');
INSERT INTO public.issues VALUES (409, 2, 10, 'Tạo tài khoản cho sở lao động', '', '2020-04-10', NULL, 5, 8, 2, NULL, 5, 3, '2020-04-10 16:13:32+07', '2020-04-14 19:22:57+07', '2020-04-10', 100, NULL, 408, 408, 2, 3, false, '2020-04-14 19:22:57+07');
INSERT INTO public.issues VALUES (410, 2, 10, 'Tạo tk cho phòng lao động', '', '2020-04-11', NULL, 5, 8, 2, NULL, 5, 5, '2020-04-10 16:14:01+07', '2020-04-14 19:22:57+07', '2020-04-11', 100, NULL, 408, 408, 4, 5, false, '2020-04-14 19:22:57+07');
INSERT INTO public.issues VALUES (411, 2, 10, 'Tạo tk cho xã', '', '2020-04-11', NULL, 5, 8, 2, NULL, 5, 5, '2020-04-10 16:14:45+07', '2020-04-14 19:22:57+07', '2020-04-11', 100, NULL, 408, 408, 6, 7, false, '2020-04-14 19:22:57+07');
INSERT INTO public.issues VALUES (412, 2, 10, 'Api cá nhân', '', '2020-04-10', NULL, 5, 16, 2, NULL, 5, 6, '2020-04-10 16:19:21+07', '2020-04-14 19:11:17+07', '2020-04-10', 100, NULL, 399, 399, 2, 3, false, '2020-04-14 19:11:17+07');
INSERT INTO public.issues VALUES (413, 2, 10, 'Giao diện cá nhân', '', '2020-04-13', NULL, 5, 15, 2, NULL, 5, 16, '2020-04-10 16:19:30+07', '2020-04-15 08:17:20+07', '2020-04-12', 100, NULL, 399, 399, 4, 13, false, '2020-04-15 08:17:20+07');
INSERT INTO public.issues VALUES (414, 2, 10, 'Api người giám hộ', '', '2020-04-10', NULL, 5, 16, 2, NULL, 5, 5, '2020-04-10 16:20:17+07', '2020-04-14 19:22:54+07', '2020-04-10', 100, NULL, 400, 400, 2, 3, false, '2020-04-14 19:22:54+07');
INSERT INTO public.issues VALUES (415, 2, 10, 'Giao diện người giám hộ', '', '2020-04-11', NULL, 5, 8, 2, NULL, 5, 9, '2020-04-10 16:20:28+07', '2020-04-17 10:21:20+07', '2020-04-11', 100, NULL, 535, 535, 2, 3, false, '2020-04-17 10:21:20+07');
INSERT INTO public.issues VALUES (416, 2, 10, 'Api doanh nghiệp', '', '2020-04-10', NULL, 5, 16, 2, NULL, 5, 5, '2020-04-10 16:20:40+07', '2020-04-14 19:22:55+07', '2020-04-10', 100, NULL, 401, 401, 2, 3, false, '2020-04-14 19:22:55+07');
INSERT INTO public.issues VALUES (417, 2, 10, 'Giao diện doanh nghiệp', '', '2020-04-11', NULL, 5, 5, 2, NULL, 5, 5, '2020-04-10 16:20:47+07', '2020-04-14 19:22:55+07', '2020-04-11', 100, NULL, 401, 401, 4, 5, false, '2020-04-14 19:22:55+07');
INSERT INTO public.issues VALUES (418, 2, 10, 'Api hộ gia đình', '', '2020-04-13', NULL, 5, 16, 2, NULL, 5, 6, '2020-04-10 16:21:28+07', '2020-04-14 19:22:54+07', '2020-04-13', 100, NULL, 402, 535, 6, 7, false, '2020-04-14 19:22:54+07');
INSERT INTO public.issues VALUES (419, 2, 10, 'Giao diện hộ gia đình', '', '2020-04-15', NULL, 5, 15, 2, NULL, 5, 6, '2020-04-10 16:21:34+07', '2020-04-17 10:21:20+07', '2020-04-15', 100, NULL, 402, 535, 8, 9, false, '2020-04-17 10:21:20+07');
INSERT INTO public.issues VALUES (420, 2, 10, 'Api nội dung hỗ trợ', '', '2020-04-11', NULL, 5, 16, 2, NULL, 5, 6, '2020-04-10 16:21:52+07', '2020-04-14 19:22:55+07', '2020-04-11', 100, NULL, 403, 403, 2, 3, false, '2020-04-14 19:22:55+07');
INSERT INTO public.issues VALUES (421, 2, 10, 'Giao diện nội dung hỗ trợ', '', '2020-04-11', NULL, 5, NULL, 2, NULL, 5, 7, '2020-04-10 16:22:00+07', '2020-04-14 19:22:55+07', '2020-04-11', 100, NULL, 403, 403, 4, 5, false, '2020-04-14 19:22:55+07');
INSERT INTO public.issues VALUES (422, 2, 10, 'Api mức hỗ trợ', '', '2020-04-11', NULL, 5, 16, 2, NULL, 5, 5, '2020-04-10 16:22:18+07', '2020-04-14 19:22:56+07', '2020-04-11', 100, NULL, 404, 404, 2, 3, false, '2020-04-14 19:22:56+07');
INSERT INTO public.issues VALUES (423, 2, 10, 'Giao diện mức hỗ trợ', '', '2020-04-12', NULL, 5, NULL, 2, NULL, 5, 5, '2020-04-10 16:22:26+07', '2020-04-14 19:22:56+07', '2020-04-12', 100, NULL, 404, 404, 4, 5, false, '2020-04-14 19:22:56+07');
INSERT INTO public.issues VALUES (424, 2, 10, 'Api hồ sơ', '', '2020-04-11', NULL, 5, 16, 2, NULL, 5, 5, '2020-04-10 16:22:37+07', '2020-04-14 19:22:56+07', '2020-04-11', 100, NULL, 405, 405, 2, 3, false, '2020-04-14 19:22:56+07');
INSERT INTO public.issues VALUES (425, 2, 10, 'Danh sách hồ sơ', '', '2020-04-15', NULL, 5, 8, 2, NULL, 5, 9, '2020-04-10 16:22:44+07', '2020-04-17 10:21:19+07', '2020-04-15', 100, NULL, 405, 405, 4, 5, false, '2020-04-17 10:21:19+07');
INSERT INTO public.issues VALUES (426, 2, 10, 'Nộp hồ sơ', '', '2020-04-11', NULL, 5, 17, 2, NULL, 4, 4, '2020-04-10 16:27:06+07', '2020-04-11 13:37:47+07', '2020-04-10', 0, NULL, 407, 407, 2, 3, false, '2020-04-11 13:37:47+07');
INSERT INTO public.issues VALUES (427, 2, 10, 'Tra cứu hồ sơ', '', '2020-04-13', NULL, 5, 17, 2, NULL, 4, 3, '2020-04-10 16:30:20+07', '2020-04-11 13:37:48+07', '2020-04-12', 0, NULL, 407, 407, 4, 5, false, '2020-04-11 13:37:48+07');
INSERT INTO public.issues VALUES (428, 2, 10, 'Cảnh báo', '', '2020-04-10', NULL, 5, 17, 2, NULL, 4, 2, '2020-04-10 16:32:44+07', '2020-04-11 13:37:48+07', '2020-04-10', 0, NULL, 407, 407, 6, 7, false, '2020-04-11 13:37:48+07');
INSERT INTO public.issues VALUES (429, 2, 10, 'Tin tức', '', '2020-04-14', NULL, 5, 17, 2, NULL, 4, 3, '2020-04-10 16:35:36+07', '2020-04-11 13:37:48+07', '2020-04-13', 0, NULL, 407, 407, 8, 9, false, '2020-04-11 13:37:48+07');
INSERT INTO public.issues VALUES (430, 2, 10, 'Bản đồ', '', '2020-04-10', NULL, 5, 17, 2, NULL, 4, 2, '2020-04-10 16:37:14+07', '2020-04-11 13:37:48+07', '2020-04-10', 0, NULL, 407, 407, 10, 11, false, '2020-04-11 13:37:48+07');
INSERT INTO public.issues VALUES (433, 2, 10, 'Import dữ liệu', '', NULL, NULL, 5, NULL, 2, NULL, 5, 21, '2020-04-10 16:51:20+07', '2020-04-11 14:18:04+07', '2020-04-10', 100, NULL, NULL, 433, 1, 38, false, '2020-04-11 14:18:04+07');
INSERT INTO public.issues VALUES (435, 2, 10, 'Danh sách người có công', '', NULL, NULL, 5, NULL, 2, NULL, 5, 6, '2020-04-10 16:55:31+07', '2020-04-11 14:17:53+07', '2020-04-10', 100, NULL, 433, 433, 2, 13, false, '2020-04-11 14:17:53+07');
INSERT INTO public.issues VALUES (438, 2, 10, 'Tạo mẫu excel', '', NULL, NULL, 5, NULL, 2, NULL, 5, 1, '2020-04-10 17:05:34+07', '2020-04-11 14:15:50+07', '2020-04-10', 0, NULL, 435, 433, 3, 4, false, '2020-04-11 14:15:50+07');
INSERT INTO public.issues VALUES (439, 2, 10, 'Api PreImport', '', NULL, NULL, 5, NULL, 2, NULL, 5, 1, '2020-04-10 17:06:17+07', '2020-04-11 14:15:50+07', '2020-04-10', 0, NULL, 435, 433, 5, 6, false, '2020-04-11 14:15:50+07');
INSERT INTO public.issues VALUES (440, 2, 10, 'Api Import', '', NULL, NULL, 5, NULL, 2, NULL, 5, 1, '2020-04-10 17:06:24+07', '2020-04-11 14:15:50+07', '2020-04-10', 0, NULL, 435, 433, 7, 8, false, '2020-04-11 14:15:50+07');
INSERT INTO public.issues VALUES (441, 2, 10, 'Giao diện import', '', NULL, NULL, 5, NULL, 2, NULL, 5, 1, '2020-04-10 17:06:31+07', '2020-04-11 14:15:50+07', '2020-04-10', 0, NULL, 435, 433, 9, 10, false, '2020-04-11 14:15:50+07');
INSERT INTO public.issues VALUES (442, 2, 10, 'Hiển thị danh sách người có công', '', NULL, NULL, 5, NULL, 2, NULL, 5, 1, '2020-04-10 17:06:49+07', '2020-04-11 14:15:51+07', '2020-04-10', 0, NULL, 435, 433, 11, 12, false, '2020-04-11 14:15:51+07');
INSERT INTO public.issues VALUES (443, 2, 10, 'Danh sách hộ nghèo', '', NULL, NULL, 5, NULL, 2, NULL, 5, 6, '2020-04-10 17:08:15+07', '2020-04-11 14:17:53+07', '2020-04-10', 100, NULL, 433, 433, 14, 25, false, '2020-04-11 14:17:53+07');
INSERT INTO public.issues VALUES (444, 2, 10, 'Tạo mẫu excel', '', NULL, NULL, 5, NULL, 2, NULL, 5, 1, '2020-04-10 17:08:41+07', '2020-04-11 14:15:51+07', '2020-04-10', 0, NULL, 443, 433, 15, 16, false, '2020-04-11 14:15:51+07');
INSERT INTO public.issues VALUES (445, 2, 10, 'Api PreImport', '', NULL, NULL, 5, NULL, 2, NULL, 5, 1, '2020-04-10 17:08:49+07', '2020-04-11 14:15:51+07', '2020-04-10', 0, NULL, 443, 433, 17, 18, false, '2020-04-11 14:15:51+07');
INSERT INTO public.issues VALUES (446, 2, 10, 'Api Import', '', NULL, NULL, 5, NULL, 2, NULL, 5, 1, '2020-04-10 17:08:55+07', '2020-04-11 14:15:51+07', '2020-04-10', 0, NULL, 443, 433, 19, 20, false, '2020-04-11 14:15:51+07');
INSERT INTO public.issues VALUES (447, 2, 10, 'Giao diện import', '', NULL, NULL, 5, NULL, 2, NULL, 5, 1, '2020-04-10 17:09:12+07', '2020-04-11 14:15:51+07', '2020-04-10', 0, NULL, 443, 433, 21, 22, false, '2020-04-11 14:15:51+07');
INSERT INTO public.issues VALUES (448, 2, 10, 'Hiển thị danh sách', '', NULL, NULL, 5, NULL, 2, NULL, 5, 1, '2020-04-10 17:09:24+07', '2020-04-11 14:15:51+07', '2020-04-10', 0, NULL, 443, 433, 23, 24, false, '2020-04-11 14:15:51+07');
INSERT INTO public.issues VALUES (449, 2, 10, 'Danh sách người lao động', '', NULL, NULL, 5, NULL, 2, NULL, 5, 12, '2020-04-10 17:13:42+07', '2020-04-11 14:17:53+07', NULL, 100, NULL, 433, 433, 26, 37, false, '2020-04-11 14:17:53+07');
INSERT INTO public.issues VALUES (450, 2, 10, 'Tạo mẫu excel', '', NULL, NULL, 5, NULL, 2, NULL, 5, 4, '2020-04-10 17:13:53+07', '2020-04-11 14:15:51+07', NULL, 0, NULL, 449, 433, 27, 28, false, '2020-04-11 14:15:51+07');
INSERT INTO public.issues VALUES (451, 2, 10, 'Api PreImport', '', NULL, NULL, 5, NULL, 2, NULL, 5, 4, '2020-04-10 17:14:00+07', '2020-04-11 14:15:51+07', NULL, 0, NULL, 449, 433, 29, 30, false, '2020-04-11 14:15:51+07');
INSERT INTO public.issues VALUES (452, 2, 10, 'Api Import', '', NULL, NULL, 5, NULL, 2, NULL, 5, 4, '2020-04-10 17:14:05+07', '2020-04-11 14:15:51+07', NULL, 0, NULL, 449, 433, 31, 32, false, '2020-04-11 14:15:51+07');
INSERT INTO public.issues VALUES (453, 2, 10, 'Giao diện import', '', NULL, NULL, 5, NULL, 2, NULL, 5, 4, '2020-04-10 17:14:12+07', '2020-04-11 14:15:52+07', NULL, 0, NULL, 449, 433, 33, 34, false, '2020-04-11 14:15:52+07');
INSERT INTO public.issues VALUES (456, 2, 10, 'Kết xuất báo cáo theo đối tượng', '', '2020-04-15', NULL, 5, 5, 2, NULL, 5, 7, '2020-04-10 17:18:52+07', '2020-04-15 15:46:55+07', '2020-04-15', 0, NULL, 405, 405, 6, 7, false, '2020-04-15 15:46:55+07');
INSERT INTO public.issues VALUES (458, 2, 10, 'Thêm mới hồ sơ', '', '2020-04-15', NULL, 5, 6, 2, NULL, 5, 21, '2020-04-10 20:00:37+07', '2020-04-17 10:34:12+07', '2020-04-14', 100, NULL, 405, 405, 8, 29, false, '2020-04-17 10:34:12+07');
INSERT INTO public.issues VALUES (459, 2, 10, 'Api ảnh cá nhân', '', '2020-04-11', NULL, 5, 16, 2, NULL, 8, 3, '2020-04-11 09:09:21+07', '2020-04-14 19:11:18+07', '2020-04-11', 100, NULL, 399, 399, 14, 15, false, '2020-04-14 19:11:18+07');
INSERT INTO public.issues VALUES (460, 2, 10, 'Danh mục người có công', '', '2020-04-12', NULL, 5, 15, 2, NULL, 15, 5, '2020-04-11 09:11:00+07', '2020-04-14 19:11:17+07', '2020-04-12', 100, NULL, 413, 399, 5, 6, false, '2020-04-14 19:11:17+07');
INSERT INTO public.issues VALUES (461, 2, 10, 'Danh mục hộ nghèo, cận nghèo', '', '2020-04-15', NULL, 5, 17, 2, NULL, 15, 12, '2020-04-11 09:11:25+07', '2020-04-17 10:34:12+07', '2020-04-13', 100, NULL, 535, 535, 4, 13, false, '2020-04-17 10:34:12+07');
INSERT INTO public.issues VALUES (462, 2, 10, 'Người sử dụng lao động tạm hoãn thực hiện hợp dồng', '', '2020-04-12', NULL, 5, 8, 2, NULL, 15, 6, '2020-04-11 09:11:53+07', '2020-04-14 19:11:17+07', '2020-04-12', 100, NULL, 413, 399, 7, 8, false, '2020-04-14 19:11:17+07');
INSERT INTO public.issues VALUES (463, 2, 10, 'Chương IV: Danh mục hộ kinh doanh cá thể', '', '2020-04-13', NULL, 5, 15, 2, NULL, 15, 6, '2020-04-11 09:12:14+07', '2020-04-14 19:11:17+07', '2020-04-13', 100, NULL, 413, 399, 9, 10, false, '2020-04-14 19:11:17+07');
INSERT INTO public.issues VALUES (464, 2, 10, 'Chương V: Người lao động k đủ đk', '', '2020-04-13', NULL, 5, 15, 2, NULL, 15, 6, '2020-04-11 09:14:03+07', '2020-04-14 19:11:18+07', '2020-04-13', 100, NULL, 413, 399, 11, 12, false, '2020-04-14 19:11:18+07');
INSERT INTO public.issues VALUES (466, 2, 10, 'Dashboard', '', '2020-04-16', NULL, 5, 15, 2, NULL, 5, 13, '2020-04-11 10:11:12+07', '2020-04-21 08:19:44+07', '2020-04-16', 100, NULL, NULL, 466, 1, 10, false, '2020-04-21 08:19:44+07');
INSERT INTO public.issues VALUES (467, 2, 10, 'Thống kê số lượng hồ sơ theo trạng thái', '', '2020-04-16', NULL, 5, 15, 2, NULL, 5, 12, '2020-04-11 10:13:16+07', '2020-04-21 08:18:57+07', '2020-04-16', 100, NULL, 466, 466, 2, 3, false, '2020-04-21 08:18:57+07');
INSERT INTO public.issues VALUES (468, 2, 10, 'Biểu đồ bánh thống kê số lượng hs mỗi đối tượng', '', '2020-04-16', NULL, 5, 15, 2, NULL, 5, 11, '2020-04-11 10:13:30+07', '2020-04-21 08:18:57+07', '2020-04-16', 100, NULL, 466, 466, 4, 5, false, '2020-04-21 08:18:57+07');
INSERT INTO public.issues VALUES (469, 2, 10, 'Biểu đồ bánh thống kê số tiền mỗi đối tượng', '', '2020-04-16', NULL, 5, 15, 2, NULL, 5, 13, '2020-04-11 10:15:02+07', '2020-04-21 08:18:58+07', '2020-04-16', 100, NULL, 466, 466, 6, 7, false, '2020-04-21 08:18:58+07');
INSERT INTO public.issues VALUES (470, 2, 10, 'Thống kê tổng tiền, đã chi, còn lại', '', '2020-04-16', NULL, 5, 15, 2, NULL, 5, 10, '2020-04-11 10:15:20+07', '2020-04-21 08:18:58+07', '2020-04-16', 100, NULL, 466, 466, 8, 9, false, '2020-04-21 08:18:58+07');
INSERT INTO public.issues VALUES (472, 2, 10, 'Đối tượng', '', '2020-04-11', NULL, 5, NULL, 2, NULL, 5, 7, '2020-04-11 13:31:47+07', '2020-04-15 08:06:55+07', '2020-04-11', 100, NULL, NULL, 472, 1, 8, false, '2020-04-15 08:06:55+07');
INSERT INTO public.issues VALUES (473, 2, 10, 'Giao diện đối tượng', '', '2020-04-11', NULL, 5, 8, 2, NULL, 5, 5, '2020-04-11 13:31:54+07', '2020-04-14 19:22:57+07', '2020-04-11', 100, NULL, 472, 472, 2, 3, false, '2020-04-14 19:22:57+07');
INSERT INTO public.issues VALUES (474, 2, 10, 'Import dữ liệu Nội dung hỗ trợ', '', '2020-04-11', NULL, 5, NULL, 2, NULL, 4, 6, '2020-04-11 13:31:58+07', '2020-04-14 19:22:56+07', '2020-04-11', 100, NULL, 403, 403, 6, 7, false, '2020-04-14 19:22:56+07');
INSERT INTO public.issues VALUES (475, 2, 10, 'Api đối tượng', '', '2020-04-11', NULL, 5, NULL, 2, NULL, 5, 5, '2020-04-11 13:32:02+07', '2020-04-14 19:22:57+07', '2020-04-11', 100, NULL, 472, 472, 4, 5, false, '2020-04-14 19:22:57+07');
INSERT INTO public.issues VALUES (476, 2, 10, 'Import dữ liệu Đối tượng', '', '2020-04-11', NULL, 5, NULL, 2, NULL, 4, 3, '2020-04-11 13:33:50+07', '2020-04-14 19:22:57+07', '2020-04-11', 0, NULL, 472, 472, 6, 7, false, '2020-04-14 19:22:57+07');
INSERT INTO public.issues VALUES (484, 2, 10, 'Chương VIII: đối tượng đang hưởng bảo trợ xã hội', '', '2020-04-15', NULL, 5, 17, 2, NULL, 6, 11, '2020-04-11 20:04:13+07', '2020-04-17 10:21:21+07', '2020-04-15', 100, NULL, 535, 535, 14, 15, false, '2020-04-17 10:21:21+07');
INSERT INTO public.issues VALUES (485, 2, 10, 'Tạo file docx mẫu đơn đề nghị hỗ trợ', '', '2020-04-12', NULL, 5, 5, 2, NULL, 5, 7, '2020-04-11 20:35:34+07', '2020-04-15 08:06:55+07', '2020-04-12', 100, NULL, NULL, 485, 1, 8, false, '2020-04-15 08:06:55+07');
INSERT INTO public.issues VALUES (486, 2, 10, 'Mẫu hộ nghèo', '', '2020-04-12', NULL, 5, 5, 2, NULL, 5, 8, '2020-04-11 20:35:42+07', '2020-04-14 19:22:57+07', '2020-04-12', 100, NULL, 485, 485, 2, 3, false, '2020-04-14 19:22:57+07');
INSERT INTO public.issues VALUES (487, 2, 10, 'Mẫu người lao động có HĐ', '', '2020-04-12', NULL, 5, 5, 2, NULL, 5, 6, '2020-04-11 20:36:13+07', '2020-04-14 19:22:57+07', '2020-04-12', 100, NULL, 485, 485, 4, 5, false, '2020-04-14 19:22:57+07');
INSERT INTO public.issues VALUES (488, 2, 10, 'Mẫu người lao động không giao kết', '', '2020-04-12', NULL, 5, 5, 2, NULL, 5, 6, '2020-04-11 20:36:25+07', '2020-04-14 19:22:57+07', '2020-04-12', 100, NULL, 485, 485, 6, 7, false, '2020-04-14 19:22:57+07');
INSERT INTO public.issues VALUES (489, 2, 10, 'Thêm mới hồ sơ hộ nghèo, cận nghèo', 'Tạo các hồ sơ hộ nghèo, cận nghèo theo hộ', '2020-04-15', NULL, 5, NULL, 2, NULL, 6, 2, '2020-04-12 09:55:12+07', '2020-04-15 08:03:40+07', '2020-04-15', 0, NULL, 458, 405, 9, 10, false, '2020-04-15 08:03:40+07');
INSERT INTO public.issues VALUES (490, 2, 10, 'CHƯƠNG V,, CHƯƠNG VI: Thêm mới hồ sơ người lao động', 'Chung cho người lao động:
- Đủ điều kiện hưởng trợ cấp thất nghiệp
- Không đủ điều kiện hưởng trợ cấp thất nghiệp
- Không có hợp đồng lao động', '2020-04-14', NULL, 5, NULL, 2, NULL, 6, 2, '2020-04-12 11:13:29+07', '2020-04-15 08:03:41+07', '2020-04-14', 0, NULL, 458, 405, 11, 12, false, '2020-04-15 08:03:41+07');
INSERT INTO public.issues VALUES (491, 2, 10, 'Thêm mới hồ sơ hộ kinh doanh cá thể', '', '2020-04-14', NULL, 5, NULL, 2, NULL, 6, 2, '2020-04-12 11:13:49+07', '2020-04-15 08:03:41+07', '2020-04-14', 100, NULL, 458, 405, 13, 14, false, '2020-04-15 08:03:41+07');
INSERT INTO public.issues VALUES (492, 2, 10, 'Quy trình xét duyệt, chi trả', '', '2020-04-19', NULL, 5, NULL, 2, NULL, 6, 21, '2020-04-12 11:14:59+07', '2020-04-21 08:19:44+07', '2020-04-15', 100, NULL, NULL, 492, 1, 24, false, '2020-04-21 08:19:44+07');
INSERT INTO public.issues VALUES (493, 2, 10, 'Thêm mới hồ sơ cho người có công', 'Phòng Lao động - Thương binh Xã hội cấp huyện/thành phố tạo hồ sơ, xuất danh sách để gửi yêu cầu lên sở Lao động - Thương binh Xã hội', '2020-04-14', NULL, 5, NULL, 2, NULL, 6, 2, '2020-04-12 11:18:07+07', '2020-04-15 08:03:41+07', '2020-04-14', 100, NULL, 458, 405, 15, 16, false, '2020-04-15 08:03:41+07');
INSERT INTO public.issues VALUES (494, 2, 10, 'Thêm mới hồ sơ các đối tượng đang hưởng bảo trợ xã hội', 'Phòng Lao động  - Thương binh Xã hội tạo hồ sơ, xuất danh sách để trình UBND cấp huyện', '2020-04-15', NULL, 5, NULL, 2, NULL, 6, 2, '2020-04-12 11:20:25+07', '2020-04-15 08:03:41+07', '2020-04-15', 0, NULL, 458, 405, 17, 18, false, '2020-04-15 08:03:41+07');
INSERT INTO public.issues VALUES (495, 2, 10, 'Thêm cá nhân vào hộ và nội dung là hộ nghèo', '', '2020-04-15', NULL, 5, NULL, 2, NULL, 5, 5, '2020-04-12 13:52:26+07', '2020-04-17 10:21:21+07', '2020-04-15', 100, NULL, 461, 535, 11, 12, false, '2020-04-17 10:21:21+07');
INSERT INTO public.issues VALUES (496, 2, 8, 'Xây dựng mô hình database', '', '2020-04-13', NULL, 5, 13, 2, NULL, 13, 4, '2020-04-12 16:15:23+07', '2020-05-20 09:19:35+07', '2020-04-12', 100, NULL, NULL, 496, 1, 2, false, '2020-05-20 09:19:35+07');
INSERT INTO public.issues VALUES (497, 2, 8, 'Vẽ giao diện', '', '2020-04-13', NULL, 5, 13, 2, NULL, 13, 3, '2020-04-12 16:17:47+07', '2020-05-20 09:19:35+07', '2020-04-12', 100, NULL, NULL, 497, 1, 2, false, '2020-05-20 09:19:35+07');
INSERT INTO public.issues VALUES (498, 2, 8, 'Quản lý trạm BTS', '', '2020-05-20', NULL, 5, 13, 2, NULL, 13, 25, '2020-04-12 16:18:27+07', '2020-06-03 10:13:59+07', '2020-04-11', 100, 48, NULL, 498, 1, 26, false, '2020-06-03 10:13:59+07');
INSERT INTO public.issues VALUES (499, 2, 8, 'Quản lý tuyến cáp ngầm', '', '2020-04-27', NULL, 5, 13, 2, NULL, 13, 14, '2020-04-12 16:19:10+07', '2020-05-20 09:21:37+07', '2020-04-11', 100, NULL, NULL, 499, 1, 22, false, '2020-05-20 09:21:37+07');
INSERT INTO public.issues VALUES (500, 2, 8, 'Quản lý các điểm dịch vụ', '', '2020-05-20', NULL, 5, 13, 2, NULL, 13, 18, '2020-04-12 16:19:28+07', '2020-06-03 10:14:00+07', '2020-04-11', 100, NULL, NULL, 500, 1, 22, false, '2020-06-03 10:14:00+07');
INSERT INTO public.issues VALUES (501, 2, 8, 'Bản đồ', '', '2020-05-26', NULL, 5, 13, 2, NULL, 13, 27, '2020-04-12 16:20:38+07', '2020-06-23 09:41:17+07', '2020-04-12', 100, NULL, NULL, 501, 1, 30, false, '2020-06-23 09:41:17+07');
INSERT INTO public.issues VALUES (502, 2, 8, 'Quản trị', '', '2020-05-11', NULL, 5, 13, 2, NULL, 13, 14, '2020-04-12 16:24:27+07', '2020-06-03 10:13:50+07', '2020-05-11', 100, NULL, NULL, 502, 1, 6, false, '2020-06-03 10:13:50+07');
INSERT INTO public.issues VALUES (503, 2, 8, 'Quản lý hồ sơ', '', '2020-06-03', NULL, 5, 13, 2, NULL, 13, 35, '2020-04-12 16:27:29+07', '2020-06-23 09:41:17+07', '2020-05-23', 100, NULL, NULL, 503, 1, 42, false, '2020-06-23 09:41:17+07');
INSERT INTO public.issues VALUES (504, 2, 8, 'Thêm mới', '', '2020-05-20', NULL, 5, 13, 2, NULL, 13, 18, '2020-04-12 16:28:42+07', '2020-06-03 10:13:50+07', '2020-04-14', 100, NULL, 498, 498, 2, 11, false, '2020-06-03 10:13:50+07');
INSERT INTO public.issues VALUES (505, 2, 8, 'Sửa', '', '2020-04-27', NULL, 5, 13, 2, NULL, 13, 10, '2020-04-12 16:28:57+07', '2020-05-20 09:20:55+07', '2020-04-27', 100, NULL, 498, 498, 12, 17, false, '2020-05-20 09:20:55+07');
INSERT INTO public.issues VALUES (506, 2, 8, 'Xóa ', '', '2020-04-27', NULL, 5, 13, 2, NULL, 13, 5, '2020-04-12 16:29:21+07', '2020-05-20 09:19:36+07', '2020-04-27', 100, NULL, 498, 498, 18, 19, false, '2020-05-20 09:19:36+07');
INSERT INTO public.issues VALUES (507, 2, 8, 'Danh sách hiển thị', '', '2020-05-20', NULL, 5, 13, 2, NULL, 13, 9, '2020-04-12 16:30:08+07', '2020-06-03 10:13:50+07', '2020-04-11', 100, NULL, 498, 498, 20, 25, false, '2020-06-03 10:13:50+07');
INSERT INTO public.issues VALUES (508, 2, 8, 'Danh sách hiển thị', '', '2020-04-13', NULL, 5, 13, 2, NULL, 13, 8, '2020-04-12 16:30:27+07', '2020-05-20 09:20:55+07', '2020-04-11', 100, NULL, 499, 499, 2, 7, false, '2020-05-20 09:20:55+07');
INSERT INTO public.issues VALUES (509, 2, 8, 'Thêm mới', '', '2020-04-27', NULL, 5, 13, 2, NULL, 13, 9, '2020-04-12 16:30:54+07', '2020-05-20 09:21:31+07', '2020-04-14', 100, NULL, 499, 499, 8, 13, false, '2020-05-20 09:21:31+07');
INSERT INTO public.issues VALUES (510, 2, 8, 'Chỉnh sửa thông tin', '', '2020-04-27', NULL, 5, 13, 2, NULL, 13, 9, '2020-04-12 16:31:18+07', '2020-05-20 09:20:55+07', '2020-04-27', 100, NULL, 499, 499, 14, 19, false, '2020-05-20 09:20:55+07');
INSERT INTO public.issues VALUES (511, 2, 8, 'Xóa', '', '2020-04-27', NULL, 5, 13, 2, NULL, 13, 5, '2020-04-12 16:31:35+07', '2020-05-20 09:19:37+07', '2020-04-27', 100, NULL, 499, 499, 20, 21, false, '2020-05-20 09:19:37+07');
INSERT INTO public.issues VALUES (512, 2, 8, 'Danh sách hiển thị', '', '2020-04-27', NULL, 5, 13, 2, NULL, 13, 9, '2020-04-12 16:32:10+07', '2020-05-20 09:22:46+07', '2020-04-11', 100, NULL, 500, 500, 2, 7, false, '2020-05-20 09:22:46+07');
INSERT INTO public.issues VALUES (513, 2, 8, 'Thêm mới', '', '2020-05-20', NULL, 5, 13, 2, NULL, 13, 10, '2020-04-12 16:32:25+07', '2020-06-03 10:13:50+07', '2020-04-13', 100, NULL, 500, 500, 8, 13, false, '2020-06-03 10:13:50+07');
INSERT INTO public.issues VALUES (514, 2, 8, 'Chỉnh sửa thông tin', '', '2020-04-27', NULL, 5, 13, 2, NULL, 13, 9, '2020-04-12 16:32:46+07', '2020-05-20 09:20:55+07', '2020-04-27', 100, NULL, 500, 500, 14, 19, false, '2020-05-20 09:20:55+07');
INSERT INTO public.issues VALUES (515, 2, 8, 'Xóa', '', '2020-04-27', NULL, 5, 13, 2, NULL, 13, 5, '2020-04-12 16:32:59+07', '2020-05-20 09:19:38+07', '2020-04-27', 100, NULL, 500, 500, 20, 21, false, '2020-05-20 09:19:38+07');
INSERT INTO public.issues VALUES (516, 2, 8, 'Hiển thị bản đồ', '', '2020-04-17', NULL, 5, 13, 2, NULL, 13, 3, '2020-04-12 16:35:40+07', '2020-05-20 09:19:38+07', '2020-04-12', 100, NULL, 501, 501, 2, 3, false, '2020-05-20 09:19:38+07');
INSERT INTO public.issues VALUES (517, 2, 8, 'Hiển thị các lớp dữ liệu', '', '2020-04-27', NULL, 5, 13, 2, NULL, 13, 4, '2020-04-12 16:36:14+07', '2020-05-20 09:19:38+07', '2020-04-27', 100, NULL, 501, 501, 4, 5, false, '2020-05-20 09:19:38+07');
INSERT INTO public.issues VALUES (518, 2, 8, 'Chức năng thao tác bản đồ', '', '2020-05-20', NULL, 5, 13, 2, NULL, 13, 5, '2020-04-12 16:37:20+07', '2020-06-03 10:13:25+07', '2020-05-20', 100, NULL, 501, 501, 6, 7, false, '2020-06-03 10:13:25+07');
INSERT INTO public.issues VALUES (519, 2, 8, 'Tìm kiếm', '', '2020-05-20', NULL, 5, 13, 2, NULL, 13, 9, '2020-04-12 16:37:36+07', '2020-06-03 10:13:50+07', '2020-04-27', 100, NULL, 501, 501, 8, 13, false, '2020-06-03 10:13:50+07');
INSERT INTO public.issues VALUES (520, 2, 8, 'Tính năng bật tắt lớp dữ liệu', '', '2020-04-27', NULL, 5, 13, 2, NULL, 13, 4, '2020-04-12 16:38:22+07', '2020-05-20 09:19:38+07', '2020-04-27', 100, NULL, 501, 501, 14, 15, false, '2020-05-20 09:19:38+07');
INSERT INTO public.issues VALUES (521, 2, 8, 'Thể hiện chú thích', '', '2020-04-27', NULL, 5, 13, 2, NULL, 13, 4, '2020-04-12 16:39:10+07', '2020-05-20 09:19:38+07', '2020-04-27', 100, NULL, 501, 501, 16, 17, false, '2020-05-20 09:19:38+07');
INSERT INTO public.issues VALUES (522, 2, 8, 'Theo không gian', '', '2020-04-27', NULL, 5, 13, 2, NULL, 13, 4, '2020-04-12 16:39:42+07', '2020-05-20 09:19:38+07', '2020-04-27', 100, NULL, 519, 501, 9, 10, false, '2020-05-20 09:19:38+07');
INSERT INTO public.issues VALUES (523, 2, 8, 'Theo thuộc tính', '', '2020-05-20', NULL, 5, 13, 2, NULL, 13, 5, '2020-04-12 16:40:05+07', '2020-06-03 10:13:25+07', '2020-05-20', 100, NULL, 519, 501, 11, 12, false, '2020-06-03 10:13:25+07');
INSERT INTO public.issues VALUES (524, 2, 8, 'Thêm mới thuộc tính', '', '2020-04-27', NULL, 5, 13, 2, NULL, 13, 9, '2020-04-12 16:41:08+07', '2020-05-20 09:19:35+07', '2020-04-27', 100, NULL, 504, 498, 3, 4, false, '2020-05-20 09:19:35+07');
INSERT INTO public.issues VALUES (525, 2, 8, 'Thêm mới không gian', '', '2020-05-20', NULL, 5, 13, 2, NULL, 13, 8, '2020-04-12 16:41:45+07', '2020-06-03 10:13:25+07', '2020-05-20', 100, NULL, 504, 498, 5, 6, false, '2020-06-03 10:13:25+07');
INSERT INTO public.issues VALUES (526, 2, 10, 'Sửa lại login', '', NULL, NULL, 5, NULL, 2, NULL, 5, 1, '2020-04-13 13:13:48+07', '2020-04-16 16:58:26+07', '2020-04-13', 0, NULL, NULL, 526, 1, 2, false, '2020-04-16 16:58:26+07');
INSERT INTO public.issues VALUES (527, 1, 10, 'Import dữ liệu', '', '2020-04-13', NULL, 5, NULL, 2, NULL, 4, 5, '2020-04-13 14:10:09+07', '2020-04-15 08:06:44+07', '2020-04-13', 100, NULL, NULL, 527, 1, 6, false, '2020-04-15 08:06:44+07');
INSERT INTO public.issues VALUES (528, 1, 10, 'Import dữ liệu Hộ nghèo - Huyện Tuy Phước', '', '2020-04-13', NULL, 5, NULL, 2, NULL, 4, 3, '2020-04-13 14:10:53+07', '2020-04-14 19:22:58+07', '2020-04-13', 100, NULL, 527, 527, 2, 3, false, '2020-04-14 19:22:58+07');
INSERT INTO public.issues VALUES (529, 1, 10, 'Import dữ liệu Hộ cận nghèo - Huyện Tuy Phước', '', '2020-04-13', NULL, 5, NULL, 2, NULL, 4, 2, '2020-04-13 14:12:32+07', '2020-04-14 19:22:58+07', '2020-04-13', 100, NULL, 527, 527, 4, 5, false, '2020-04-14 19:22:58+07');
INSERT INTO public.issues VALUES (530, 2, 10, 'Nhập Chương V, Chương VI', '', '2020-04-15', NULL, 5, 15, 2, NULL, 5, 8, '2020-04-14 19:21:58+07', '2020-04-17 10:21:21+07', '2020-04-15', 100, NULL, 535, 535, 16, 17, false, '2020-04-17 10:21:21+07');
INSERT INTO public.issues VALUES (531, 2, 10, 'Chương II: người lao động có hợp đồng', '', '2020-04-14', NULL, 5, NULL, 2, NULL, 5, 1, '2020-04-14 20:10:45+07', '2020-04-15 08:03:41+07', '2020-04-14', 0, NULL, 458, 405, 19, 20, false, '2020-04-15 08:03:41+07');
INSERT INTO public.issues VALUES (532, 2, 10, 'Trường hợp chưa có hồ sơ, có cá nhân', '', '2020-04-15', NULL, 5, 6, 2, NULL, 5, 2, '2020-04-15 08:08:53+07', '2020-04-17 10:21:19+07', '2020-04-15', 100, NULL, 458, 405, 21, 22, false, '2020-04-17 10:21:19+07');
INSERT INTO public.issues VALUES (533, 2, 10, 'Trường hợp chưa có hồ sơ, chưa có cá nhân', '', '2020-04-15', NULL, 5, 6, 2, NULL, 5, 3, '2020-04-15 08:09:19+07', '2020-04-17 10:21:19+07', '2020-04-15', 100, NULL, 458, 405, 23, 24, false, '2020-04-17 10:21:19+07');
INSERT INTO public.issues VALUES (534, 2, 10, 'Trường hợp có hồ sơ thì cảnh báo', '', '2020-04-15', NULL, 5, NULL, 2, NULL, 5, 3, '2020-04-15 08:09:45+07', '2020-04-17 10:21:20+07', '2020-04-15', 100, NULL, 458, 405, 25, 26, false, '2020-04-17 10:21:20+07');
INSERT INTO public.issues VALUES (535, 2, 10, 'Dữ liệu', '', '2020-04-17', NULL, 5, NULL, 2, NULL, 5, 20, '2020-04-15 08:13:43+07', '2020-04-21 08:19:44+07', '2020-04-11', 100, NULL, NULL, 535, 1, 28, false, '2020-04-21 08:19:44+07');
INSERT INTO public.issues VALUES (536, 2, 10, 'Mẫu nghèo 1', '', '2020-04-15', NULL, 5, 16, 2, NULL, 5, 3, '2020-04-15 08:19:10+07', '2020-04-21 08:19:21+07', '2020-04-15', 100, NULL, 406, 406, 2, 3, false, '2020-04-21 08:19:21+07');
INSERT INTO public.issues VALUES (537, 2, 10, 'Mẫu nghèo 2', '', '2020-04-15', NULL, 5, 16, 2, NULL, 5, 3, '2020-04-15 08:19:19+07', '2020-04-21 08:19:21+07', '2020-04-15', 100, NULL, 406, 406, 4, 5, false, '2020-04-21 08:19:21+07');
INSERT INTO public.issues VALUES (538, 2, 10, 'Mẫu nghèo 3', '', '2020-04-15', NULL, 5, 16, 2, NULL, 5, 3, '2020-04-15 08:19:30+07', '2020-04-21 08:19:21+07', '2020-04-15', 100, NULL, 406, 406, 6, 7, false, '2020-04-21 08:19:21+07');
INSERT INTO public.issues VALUES (539, 2, 10, 'Mẫu người có công 1/NCC', '', '2020-04-15', NULL, 5, 16, 2, NULL, 5, 3, '2020-04-15 08:20:15+07', '2020-04-21 08:19:21+07', '2020-04-15', 100, NULL, 406, 406, 8, 9, false, '2020-04-21 08:19:21+07');
INSERT INTO public.issues VALUES (540, 2, 10, 'Mẫu 01/BTXH', '', '2020-04-15', NULL, 5, 16, 2, NULL, 5, 3, '2020-04-15 08:21:00+07', '2020-04-21 08:19:21+07', '2020-04-15', 100, NULL, 406, 406, 10, 11, false, '2020-04-21 08:19:21+07');
INSERT INTO public.issues VALUES (541, 2, 10, 'Mẫu doanh nghiệp liệt kê lao động', '', '2020-04-15', NULL, 5, NULL, 2, NULL, 5, 4, '2020-04-15 08:26:18+07', '2020-04-21 08:19:21+07', '2020-04-15', 100, NULL, 406, 406, 12, 13, false, '2020-04-21 08:19:21+07');
INSERT INTO public.issues VALUES (542, 2, 10, 'Mẫu doanh nghiệp liệt kê tổng số', '', '2020-04-15', NULL, 5, 16, 2, NULL, 5, 3, '2020-04-15 08:29:18+07', '2020-04-21 08:19:21+07', '2020-04-15', 100, NULL, 406, 406, 14, 15, false, '2020-04-21 08:19:21+07');
INSERT INTO public.issues VALUES (543, 2, 10, 'Load danh sách xét duyệt', '', '2020-04-15', NULL, 5, 5, 2, NULL, 5, 4, '2020-04-15 15:45:30+07', '2020-04-21 08:19:08+07', '2020-04-15', 100, NULL, 492, 492, 2, 3, false, '2020-04-21 08:19:08+07');
INSERT INTO public.issues VALUES (544, 2, 10, 'Tạo danh sách xét duyệt', 'Chuyển trạng thái của những hồ sơ này => 1: Hồ sơ chờ xét duyệt
- Nếu doanh nghiệp thì, có IDDoanhNghiep. Tên hồ sơ: Danh sách hồ sơ đối tượng 1 (công ty ABC)
- Nếu loại khác thì, Tên hồ sơ: Danh sách hồ sơ đối tượng 2 từ ngày 1/4 - 30/4

DanhSachXetDuyets/TaoDanhSach', '2020-04-15', NULL, 5, 8, 2, NULL, 5, 6, '2020-04-15 15:45:52+07', '2020-04-21 08:19:08+07', '2020-04-15', 100, NULL, 492, 492, 4, 5, false, '2020-04-21 08:19:08+07');
INSERT INTO public.issues VALUES (545, 2, 10, 'Load trang chi tiết danh sách', '', '2020-04-16', NULL, 5, 6, 2, NULL, 5, 6, '2020-04-15 15:56:42+07', '2020-04-21 08:19:08+07', '2020-04-16', 100, NULL, 492, 492, 6, 7, false, '2020-04-21 08:19:08+07');
INSERT INTO public.issues VALUES (546, 2, 10, 'Cập nhật trạng thái hàng loạt hồ sơ', 'Có nhập lý do nếu từ chối', '2020-04-16', NULL, 5, 6, 2, NULL, 5, 5, '2020-04-15 16:22:58+07', '2020-04-21 08:19:08+07', '2020-04-16', 100, NULL, 492, 492, 8, 9, false, '2020-04-21 08:19:08+07');
INSERT INTO public.issues VALUES (547, 2, 10, 'Cho sửa inline trạng thái, lý do từ chối', '', '2020-04-16', NULL, 5, 6, 2, NULL, 5, 4, '2020-04-15 16:24:02+07', '2020-04-21 08:19:09+07', '2020-04-16', 100, NULL, 492, 492, 10, 11, false, '2020-04-21 08:19:09+07');
INSERT INTO public.issues VALUES (548, 2, 10, 'Thêm mới cá nhân doanh nghiệp ra hồ sơ', '', '2020-04-15', NULL, 5, 8, 2, NULL, 5, 3, '2020-04-15 19:05:02+07', '2020-04-17 10:21:20+07', '2020-04-15', 100, NULL, 458, 405, 27, 28, false, '2020-04-17 10:21:20+07');
INSERT INTO public.issues VALUES (549, 2, 10, 'Trang chi tiết cá nhân', '- Hiển thị thông tin cá nhân
- Hiển thị các nội dung mà ổng có
- Hiển thị hồ sơ nếu có', '2020-04-16', NULL, 5, 15, 2, NULL, 5, 4, '2020-04-15 19:40:36+07', '2020-04-21 08:19:29+07', '2020-04-16', 100, NULL, 535, 535, 18, 19, false, '2020-04-21 08:19:29+07');
INSERT INTO public.issues VALUES (550, 2, 10, 'Trang chi tiết hồ sơ', '', '2020-04-16', NULL, 5, NULL, 2, NULL, 5, 4, '2020-04-15 13:29:33+07', '2020-04-21 08:19:09+07', '2020-04-16', 100, NULL, 492, 492, 12, 13, false, '2020-04-21 08:19:09+07');
INSERT INTO public.issues VALUES (551, 2, 10, 'Cập nhật đã chi tiền', '', '2020-04-16', NULL, 5, 6, 2, NULL, 5, 5, '2020-04-15 13:31:10+07', '2020-04-21 08:19:09+07', '2020-04-16', 100, NULL, 492, 492, 14, 15, false, '2020-04-21 08:19:09+07');
INSERT INTO public.issues VALUES (552, 2, 8, 'giao diện', '', '2020-04-27', NULL, 5, 13, 2, NULL, 13, 6, '2020-04-16 08:49:04+07', '2020-05-20 09:19:36+07', '2020-04-27', 100, NULL, 505, 498, 13, 14, false, '2020-05-20 09:19:36+07');
INSERT INTO public.issues VALUES (553, 2, 8, 'kết nối api', '', '2020-04-27', NULL, 5, NULL, 2, NULL, 13, 5, '2020-04-16 08:49:16+07', '2020-05-20 09:19:36+07', '2020-04-27', 100, NULL, 505, 498, 15, 16, false, '2020-05-20 09:19:36+07');
INSERT INTO public.issues VALUES (554, 2, 8, 'giao diện', '', '2020-04-13', NULL, 5, 13, 2, NULL, 13, 4, '2020-04-16 08:49:46+07', '2020-05-20 09:19:36+07', '2020-04-11', 100, NULL, 507, 498, 21, 22, false, '2020-05-20 09:19:36+07');
INSERT INTO public.issues VALUES (555, 2, 8, 'kết nối api', '', '2020-05-20', NULL, 5, 13, 2, NULL, 13, 6, '2020-04-16 08:50:17+07', '2020-06-03 10:13:25+07', '2020-05-20', 100, NULL, 507, 498, 23, 24, false, '2020-06-03 10:13:25+07');
INSERT INTO public.issues VALUES (556, 2, 8, 'giao diện', '', '2020-04-13', NULL, 5, 13, 2, NULL, 13, 4, '2020-04-16 08:50:45+07', '2020-05-20 09:19:36+07', '2020-04-11', 100, NULL, 508, 499, 3, 4, false, '2020-05-20 09:19:36+07');
INSERT INTO public.issues VALUES (557, 2, 8, 'kết nối api', '', '2020-04-13', NULL, 5, 13, 2, NULL, 13, 4, '2020-04-16 08:51:00+07', '2020-05-20 09:19:36+07', '2020-04-11', 100, NULL, 508, 499, 5, 6, false, '2020-05-20 09:19:36+07');
INSERT INTO public.issues VALUES (558, 2, 8, 'gao diện', '', '2020-04-17', NULL, 5, 13, 2, NULL, 13, 4, '2020-04-16 08:51:28+07', '2020-05-20 09:19:36+07', '2020-04-14', 100, NULL, 509, 499, 9, 10, false, '2020-05-20 09:19:36+07');
INSERT INTO public.issues VALUES (559, 2, 8, 'kết nối api', '', '2020-04-27', NULL, 5, 13, 2, NULL, 13, 5, '2020-04-16 08:51:50+07', '2020-05-20 09:19:36+07', '2020-04-27', 100, NULL, 509, 499, 11, 12, false, '2020-05-20 09:19:36+07');
INSERT INTO public.issues VALUES (560, 2, 8, 'giao diện', '', '2020-04-27', NULL, 5, 13, 2, NULL, 13, 5, '2020-04-16 08:52:37+07', '2020-05-20 09:19:36+07', '2020-04-27', 100, NULL, 510, 499, 15, 16, false, '2020-05-20 09:19:36+07');
INSERT INTO public.issues VALUES (561, 2, 8, 'kết nối api', '', '2020-04-27', NULL, 5, 13, 2, NULL, 13, 5, '2020-04-16 08:52:57+07', '2020-05-20 09:19:37+07', '2020-04-27', 100, NULL, 510, 499, 17, 18, false, '2020-05-20 09:19:37+07');
INSERT INTO public.issues VALUES (562, 2, 8, 'giao diện', '', '2020-04-12', NULL, 5, 13, 2, NULL, 13, 4, '2020-04-16 08:53:24+07', '2020-05-20 09:19:37+07', '2020-04-11', 100, NULL, 512, 500, 3, 4, false, '2020-05-20 09:19:37+07');
INSERT INTO public.issues VALUES (563, 2, 8, 'kết nối api', '', '2020-04-27', NULL, 5, 13, 2, NULL, 13, 4, '2020-04-16 08:53:42+07', '2020-05-20 09:19:37+07', '2020-04-27', 100, NULL, 512, 500, 5, 6, false, '2020-05-20 09:19:37+07');
INSERT INTO public.issues VALUES (564, 2, 8, 'giao diện', '', '2020-04-15', NULL, 5, 13, 2, NULL, 13, 4, '2020-04-16 08:58:46+07', '2020-05-20 09:19:37+07', '2020-04-13', 100, NULL, 513, 500, 9, 10, false, '2020-05-20 09:19:37+07');
INSERT INTO public.issues VALUES (565, 2, 8, 'kết nối api', '', '2020-05-20', NULL, 5, 13, 2, NULL, 13, 6, '2020-04-16 08:59:09+07', '2020-06-03 10:13:25+07', '2020-05-20', 100, NULL, 513, 500, 11, 12, false, '2020-06-03 10:13:25+07');
INSERT INTO public.issues VALUES (566, 2, 8, 'giao diện', '', '2020-04-18', NULL, 5, 13, 2, NULL, 13, 3, '2020-04-16 09:00:06+07', '2020-05-20 09:19:38+07', '2020-04-16', 100, NULL, 501, 501, 18, 19, false, '2020-05-20 09:19:38+07');
INSERT INTO public.issues VALUES (567, 2, 8, 'giao diện', '', '2020-04-17', NULL, 5, 13, 2, NULL, 13, 5, '2020-04-16 09:04:44+07', '2020-05-20 09:19:35+07', '2020-04-14', 100, NULL, 504, 498, 7, 8, false, '2020-05-20 09:19:35+07');
INSERT INTO public.issues VALUES (568, 2, 8, 'kết nối api', '', '2020-05-20', NULL, 5, 13, 2, NULL, 13, 6, '2020-04-16 09:05:04+07', '2020-06-03 10:13:25+07', '2020-05-20', 100, NULL, 504, 498, 9, 10, false, '2020-06-03 10:13:25+07');
INSERT INTO public.issues VALUES (569, 2, 10, 'Kết xuất danh sách', '', '2020-04-16', NULL, 5, 17, 2, NULL, 5, 5, '2020-04-16 19:09:05+07', '2020-04-21 08:19:09+07', '2020-04-16', 100, NULL, 492, 492, 16, 17, false, '2020-04-21 08:19:09+07');
INSERT INTO public.issues VALUES (570, 2, 10, 'Tạo cột để biết doanh nghiệp đó là mầm non', '', '2020-04-16', NULL, 5, 16, 2, NULL, 5, 3, '2020-04-16 20:03:23+07', '2020-04-21 08:19:29+07', '2020-04-16', 100, NULL, 535, 535, 20, 21, false, '2020-04-21 08:19:29+07');
INSERT INTO public.issues VALUES (571, 2, 10, 'Thêm mới hồ sơ hộ cá thể bổ sung các cột', 'ngày cấp cmnd
ngành nghề => danh mục
doanh thu
thời gian
tạm ngưng
đang gặp khó

==> ghi đúng theo mẫu, và bắt buộc nhập', '2020-04-17', NULL, 5, 6, 2, NULL, 5, 4, '2020-04-17 10:37:38+07', '2020-04-21 08:19:35+07', '2020-04-17', 100, NULL, 405, 405, 30, 31, false, '2020-04-21 08:19:35+07');
INSERT INTO public.issues VALUES (572, 2, 10, 'Thêm mới hộ cá thể bổ sung các cột', 'ngày cấp cmnd
ngành nghề => danh mục
doanh thu
thời gian
tạm ngưng
đang gặp khó

==> ghi đúng theo mẫu, và bắt buộc nhập', '2020-04-17', NULL, 5, 8, 2, NULL, 5, 5, '2020-04-17 10:48:44+07', '2020-04-21 08:19:29+07', '2020-04-17', 100, NULL, 535, 535, 22, 23, false, '2020-04-21 08:19:29+07');
INSERT INTO public.issues VALUES (573, 2, 10, 'Mẫu hộ cá thể theo phường/xã', '', '2020-04-17', NULL, 5, 16, 2, NULL, 5, 3, '2020-04-17 10:51:04+07', '2020-04-21 08:19:21+07', '2020-04-17', 100, NULL, 406, 406, 16, 17, false, '2020-04-21 08:19:21+07');
INSERT INTO public.issues VALUES (574, 2, 10, 'Mẫu hộ cá thể theo toàn huyện/tp', '', '2020-04-17', NULL, 5, 16, 2, NULL, 5, 3, '2020-04-17 10:51:34+07', '2020-04-21 08:19:22+07', '2020-04-17', 100, NULL, 406, 406, 18, 19, false, '2020-04-21 08:19:22+07');
INSERT INTO public.issues VALUES (575, 2, 10, 'Thêm tài khoản thuê cho chợ đầm, chợ khu 6', '', '2020-04-17', NULL, 5, 6, 2, NULL, 5, 3, '2020-04-17 11:27:54+07', '2020-04-21 08:19:29+07', '2020-04-17', 100, NULL, 535, 535, 24, 25, false, '2020-04-21 08:19:29+07');
INSERT INTO public.issues VALUES (576, 2, 10, 'Thêm tra cứu thông tin hồ sơ', '', '2020-04-17', NULL, 5, 8, 2, NULL, 5, 3, '2020-04-17 13:03:11+07', '2020-04-21 08:19:35+07', '2020-04-17', 100, NULL, 405, 405, 32, 33, false, '2020-04-21 08:19:35+07');
INSERT INTO public.issues VALUES (577, 2, 10, 'Danh mục ngành nghề kinh doanh', '', '2020-04-17', NULL, 5, 8, 2, NULL, 5, 2, '2020-04-17 13:18:03+07', '2020-04-21 08:19:30+07', '2020-04-17', 100, NULL, 535, 535, 26, 27, false, '2020-04-21 08:19:30+07');
INSERT INTO public.issues VALUES (578, 2, 10, 'Check trường hợp đã có hồ sơ trạng thái chờ duyệt', 'Thì khi thêm mới hiển thị như thế nào?', '2020-04-17', NULL, 5, 6, 2, NULL, 5, 3, '2020-04-17 14:21:54+07', '2020-04-21 08:19:35+07', '2020-04-17', 100, NULL, 405, 405, 34, 35, false, '2020-04-21 08:19:35+07');
INSERT INTO public.issues VALUES (580, 2, 10, 'Nếu tìm CMND đã có hố sơ, thì load thông tin hồ sơ', '- Số hồ sơ
- Ngày tạo
- Trạng thái
- Ghi chú
- Lý do từ chối', '2020-04-17', NULL, 5, 6, 2, NULL, 5, 3, '2020-04-17 15:20:55+07', '2020-04-21 08:19:36+07', '2020-04-17', 100, NULL, 405, 405, 36, 37, false, '2020-04-21 08:19:36+07');
INSERT INTO public.issues VALUES (581, 2, 10, 'Tính năng hồ sơ đã chi tiền', '', '2020-04-18', NULL, 5, NULL, 2, NULL, 5, 4, '2020-04-18 14:41:18+07', '2020-04-21 08:19:09+07', '2020-04-18', 100, NULL, 492, 492, 18, 19, false, '2020-04-21 08:19:09+07');
INSERT INTO public.issues VALUES (582, 2, 10, 'Tab doanh nghiệp đối tượng 4', '', '2020-04-19', NULL, 5, 15, 2, NULL, 5, 4, '2020-04-19 09:06:43+07', '2020-04-21 08:19:09+07', '2020-04-19', 100, NULL, 492, 492, 20, 21, false, '2020-04-21 08:19:09+07');
INSERT INTO public.issues VALUES (583, 2, 10, 'Tạo danh sách xét duyệt cho đối tượng 1', '', '2020-04-19', NULL, 5, 6, 2, NULL, 5, 4, '2020-04-19 09:07:23+07', '2020-04-21 08:19:09+07', '2020-04-19', 100, NULL, 492, 492, 22, 23, false, '2020-04-21 08:19:09+07');
INSERT INTO public.issues VALUES (584, 2, 10, 'Api public hồ sơ cho dân tra cứu', '', '2020-04-21', NULL, 5, 6, 2, NULL, 5, 3, '2020-04-19 10:44:43+07', '2020-04-21 08:19:53+07', '2020-04-21', 100, NULL, NULL, 584, 1, 2, false, '2020-04-21 08:19:53+07');
INSERT INTO public.issues VALUES (588, 1, 10, 'Hồ sơ đang dùng chung trạng thái với xét duyệt', '', '2020-04-21', NULL, 5, NULL, 2, NULL, 5, 3, '2020-04-19 20:56:48+07', '2020-04-21 08:19:53+07', '2020-04-21', 100, NULL, NULL, 588, 1, 2, false, '2020-04-21 08:19:53+07');
INSERT INTO public.issues VALUES (589, 1, 10, 'Cập nhật thời gian nghỉ thay icon edit', '', '2020-04-19', NULL, 5, NULL, 2, NULL, 5, 3, '2020-04-19 20:58:32+07', '2020-04-24 14:53:38+07', '2020-04-19', 100, NULL, NULL, 589, 1, 2, false, '2020-04-24 14:53:38+07');
INSERT INTO public.issues VALUES (591, 2, 10, 'Trang rà soát dữ liệu', 'Hiển thị số lượng CMND trùng
Hiển thị số lượng không có CMND', '2020-04-21', NULL, 5, 6, 2, NULL, 5, 3, '2020-04-21 08:21:07+07', '2020-05-08 08:41:40+07', '2020-04-21', 0, NULL, 667, 667, 2, 3, false, '2020-05-08 08:36:39+07');
INSERT INTO public.issues VALUES (592, 2, 10, 'Khi dữ liệu chưa đúng thì k cho làm gì khác', '', '2020-04-21', NULL, 5, 6, 2, NULL, 5, 3, '2020-04-21 08:26:52+07', '2020-05-08 08:41:40+07', '2020-04-21', 0, NULL, 667, 667, 4, 5, false, '2020-05-08 08:36:40+07');
INSERT INTO public.issues VALUES (593, 1, 10, 'Nguyên nhân tạo tài khoản trong admin lỗi', 'Chưa tạo đơn vị trong loại đơn vị
Mà đã load danh sách tài khoản ra
Nên khi tạo tài khoản, nó gán IDDonVi = id của loại', '2020-04-21', NULL, 5, 8, 2, NULL, 5, 1, '2020-04-21 09:22:15+07', '2020-05-08 09:42:40+07', '2020-04-21', 0, NULL, NULL, 593, 1, 2, false, '2020-05-08 09:42:40+07');
INSERT INTO public.issues VALUES (594, 1, 10, 'Xem lại đối tượng 4 where iddoanhnghiep == null', '', '2020-04-21', NULL, 5, 6, 2, NULL, 5, 2, '2020-04-21 10:07:13+07', '2020-04-23 10:03:26+07', '2020-04-21', 100, NULL, NULL, 594, 1, 2, false, '2020-04-23 10:03:26+07');
INSERT INTO public.issues VALUES (595, 2, 8, 'Trang thông tin tài khoản', '', '2020-05-20', NULL, 5, NULL, 2, NULL, 13, 13, '2020-04-21 10:10:20+07', '2020-06-03 10:14:00+07', '2020-04-14', 100, NULL, NULL, 595, 1, 12, false, '2020-06-03 10:14:00+07');
INSERT INTO public.issues VALUES (596, 2, 8, 'giao diện', '', '2020-04-27', NULL, 5, NULL, 2, NULL, 13, 6, '2020-04-21 10:11:01+07', '2020-05-20 09:19:39+07', '2020-04-27', 100, NULL, 595, 595, 2, 3, false, '2020-05-20 09:19:39+07');
INSERT INTO public.issues VALUES (597, 2, 8, 'kết nối api', '', '2020-05-20', NULL, 5, 10, 2, NULL, 13, 8, '2020-04-21 10:11:19+07', '2020-06-03 10:13:27+07', '2020-05-20', 100, NULL, 595, 595, 4, 5, false, '2020-06-03 10:13:27+07');
INSERT INTO public.issues VALUES (598, 2, 8, 'Đổi mật khẩu', '', '2020-05-20', NULL, 5, NULL, 2, NULL, 13, 9, '2020-04-21 10:11:37+07', '2020-06-03 10:13:51+07', '2020-04-14', 100, NULL, 595, 595, 6, 11, false, '2020-06-03 10:13:51+07');
INSERT INTO public.issues VALUES (599, 2, 8, 'giao diện', '', '2020-04-16', NULL, 5, NULL, 2, NULL, 13, 4, '2020-04-21 10:11:54+07', '2020-05-20 09:19:39+07', '2020-04-14', 100, NULL, 598, 595, 7, 8, false, '2020-05-20 09:19:39+07');
INSERT INTO public.issues VALUES (600, 2, 8, 'api', '', '2020-05-20', NULL, 5, NULL, 2, NULL, 13, 8, '2020-04-21 10:12:04+07', '2020-06-03 10:13:27+07', '2020-05-20', 100, NULL, 598, 595, 9, 10, false, '2020-06-03 10:13:27+07');
INSERT INTO public.issues VALUES (601, 2, 3, 'Quản lý tiết dạy của giảng viên mỗi lớp', '', '2020-05-14', 7, 5, 12, 2, NULL, 12, 15, '2020-04-21 14:27:04+07', '2020-06-03 09:45:55+07', '2020-05-14', 100, NULL, 330, 330, 54, 57, false, '2020-06-03 09:45:55+07');
INSERT INTO public.issues VALUES (602, 2, 3, 'Tạo thư mục lưu những file xuất cho riêng từng lớp học', '', '2020-05-07', 7, 5, 12, 2, NULL, 12, 4, '2020-04-21 15:06:19+07', '2020-05-09 16:00:46+07', '2020-05-07', 0, NULL, 330, 330, 58, 59, false, '2020-05-09 16:00:46+07');
INSERT INTO public.issues VALUES (603, 1, 3, 'Sửa lại phiếu kí nhận tốt nghiệp theo mẫu mới', '', '2020-04-22', 7, 5, 12, 2, NULL, 12, 7, '2020-04-21 15:11:25+07', '2020-05-06 10:20:36+07', '2020-04-22', 100, NULL, 330, 330, 60, 61, false, '2020-05-06 10:20:36+07');
INSERT INTO public.issues VALUES (604, 2, 3, 'xuất ds thi(ds học viên theo lớp)', '', '2020-04-22', 7, 5, 12, 2, NULL, 12, 4, '2020-04-21 15:17:43+07', '2020-05-06 10:20:36+07', '2020-04-22', 100, NULL, 330, 330, 62, 63, false, '2020-05-06 10:20:36+07');
INSERT INTO public.issues VALUES (605, 2, 3, 'Xuất ds học viên kí nộp bài thi (ds học viên đủ điều kiện dự thi)', '', '2020-04-22', 7, 5, 12, 2, NULL, 12, 5, '2020-04-21 15:20:10+07', '2020-04-24 15:40:03+07', '2020-04-22', 100, NULL, 330, 330, 64, 65, false, '2020-04-24 15:40:03+07');
INSERT INTO public.issues VALUES (606, 2, 3, 'xuất bảng điểm thi hết học phần của môn học theo lớp', '', '2020-04-23', 7, 5, 12, 2, NULL, 12, 5, '2020-04-21 15:22:26+07', '2020-05-06 10:20:36+07', '2020-04-23', 100, NULL, 330, 330, 66, 67, false, '2020-05-06 10:20:36+07');
INSERT INTO public.issues VALUES (607, 2, 3, 'duyệt học viên đủ điều kiện thi', '', '2020-04-22', NULL, 5, 12, 2, NULL, 12, 5, '2020-04-21 15:31:36+07', '2021-02-05 09:07:54+07', '2020-04-22', 100, NULL, 330, 330, 68, 69, false, '2020-05-06 10:20:36+07');
INSERT INTO public.issues VALUES (608, 2, 3, 'QUẢN TRỊ', '', '2020-06-03', 8, 3, 12, 2, NULL, 12, 37, '2020-04-21 15:35:01+07', '2021-02-05 12:25:25+07', '2020-04-21', 100, NULL, NULL, 608, 1, 42, false, NULL);
INSERT INTO public.issues VALUES (609, 2, 3, 'Phân quyền', '', '2020-05-11', NULL, 5, 10, 2, NULL, 12, 14, '2020-04-21 15:36:29+07', '2021-02-05 12:29:45+07', '2020-04-21', 100, NULL, 608, 608, 2, 13, false, '2020-06-03 09:46:29+07');
INSERT INTO public.issues VALUES (610, 2, 3, 'Phân quyền cho giảng viên', 'Giảng viên chủ nhiệm chỉ có quyền:
+ xem 
+ xếp tổ
+ xếp vị trí ngồi
+ xuất sơ đồ vị trí ngồi của học viên,
+ Xuất phiếu điểm danh của lớp', '2020-04-21', 8, 5, 10, 2, NULL, 12, 8, '2020-04-21 15:36:49+07', '2021-02-05 12:29:45+07', '2020-04-21', 100, NULL, 608, 608, 14, 19, false, '2020-04-25 08:30:16+07');
INSERT INTO public.issues VALUES (611, 2, 3, 'Đăng nhập', '', '2020-05-16', NULL, 5, 10, 2, NULL, 12, 9, '2020-04-21 15:37:10+07', '2021-02-05 12:19:06+07', '2020-05-16', 100, NULL, 608, 608, 20, 21, false, '2020-06-03 09:46:29+07');
INSERT INTO public.issues VALUES (612, 2, 3, 'chuyên viên tuyển sinh', 'Chuyên viên tuyển sinh có quyền được nhập học viên vào lớp, duyệt học viên vào danh sách dự bị,
nhập học viên vào danh sách học chính thức', '2020-04-21', 8, 5, 10, 2, NULL, 12, 4, '2020-04-21 15:39:31+07', '2021-02-05 12:26:14+07', '2020-04-21', 100, NULL, 609, 608, 3, 4, false, '2020-04-25 08:29:24+07');
INSERT INTO public.issues VALUES (613, 2, 3, 'Chuyên viên khảo thí', 'Liên quan điếm thi cử và điểm: 
+ xuất các ds học viên, ds học viên đủ điều kiện thi, ds điểm thi của all học viên của các lớp 
+ Nhập điểm thi, điểm chuyên cần,', '2020-04-21', 8, 5, 10, 2, NULL, 12, 3, '2020-04-21 15:48:06+07', '2021-02-05 12:26:14+07', '2020-04-21', 100, NULL, 609, 608, 5, 6, false, '2020-04-25 08:29:50+07');
INSERT INTO public.issues VALUES (614, 2, 3, 'Chuyên viên tổng hợp', 'Có các quyền của 2 chuyên tuyển sinh và chuyên viên khảo thí.

Lưu ý: các chuyên viên có thể đổi nhiệm vụ cho nhau theo sự phân quyền của admin', NULL, NULL, 5, 10, 2, NULL, 12, 3, '2020-04-21 15:49:42+07', '2021-02-05 12:20:13+07', '2020-04-21', 0, NULL, 609, 608, 7, 8, false, '2020-04-25 08:30:08+07');
INSERT INTO public.issues VALUES (615, 2, 3, 'Giảng viên chủ nhiệm', '', '2020-04-21', 8, 5, 10, 2, NULL, 12, 4, '2020-04-21 15:56:26+07', '2021-02-05 12:29:46+07', '2020-04-21', 0, NULL, 610, 608, 15, 16, false, '2020-04-25 08:30:08+07');
INSERT INTO public.issues VALUES (616, 2, 3, 'Giảng viên bộ môn', '', '2020-04-21', 8, 5, 10, 2, NULL, 12, 2, '2020-04-21 15:56:48+07', '2021-02-05 12:29:46+07', '2020-04-21', 0, NULL, 610, 608, 17, 18, false, '2020-04-25 08:30:08+07');
INSERT INTO public.issues VALUES (625, 2, 10, 'Họp 4/22/2020', '', '2020-04-23', NULL, 5, NULL, 2, NULL, 15, 24, '2020-04-22 13:54:10+07', '2020-05-08 09:41:59+07', '2020-04-22', 100, NULL, NULL, 625, 1, 10, false, '2020-05-08 09:41:59+07');
INSERT INTO public.issues VALUES (626, 2, 10, 'Loại hồ sơ NCC, Nghèo , BTXH ra khỏi thống kê', '', '2020-04-23', NULL, 5, 15, 2, NULL, 15, 5, '2020-04-22 13:55:05+07', '2020-05-08 08:41:39+07', '2020-04-22', 100, NULL, 625, 625, 2, 3, false, '2020-05-08 08:36:37+07');
INSERT INTO public.issues VALUES (627, 2, 10, 'Dữ liệu phải có ngày tạo, Sort ngày tạo giảm dần', '', '2020-04-23', NULL, 5, 8, 2, NULL, 15, 5, '2020-04-22 13:55:54+07', '2020-04-24 14:53:38+07', '2020-04-22', 100, NULL, 625, 625, 4, 5, false, '2020-04-24 14:53:38+07');
INSERT INTO public.issues VALUES (628, 2, 10, 'Bỏ từ thông tin từ ngày - đến ngày đối với 3 đối tượng (Chỉ đối tượng 1 có {Chi tiết} )', '', '2020-04-23', NULL, 5, 8, 2, NULL, 15, 7, '2020-04-22 13:58:44+07', '2020-04-26 14:24:47+07', '2020-04-22', 100, NULL, 625, 625, 6, 9, false, '2020-04-26 14:24:47+07');
INSERT INTO public.issues VALUES (629, 2, 10, 'Thêm tên đối tượng vào Detail cá nhân', '', '2020-04-23', NULL, 5, 8, 2, NULL, 15, 5, '2020-04-22 13:59:49+07', '2020-04-26 14:24:40+07', '2020-04-22', 100, NULL, 628, 625, 7, 8, false, '2020-04-26 14:24:40+07');
INSERT INTO public.issues VALUES (630, 2, 10, 'Dữ liệu', '', '2020-04-23', NULL, 5, NULL, 2, NULL, 15, 27, '2020-04-22 14:02:15+07', '2020-04-27 08:47:41+07', '2020-04-22', 100, NULL, NULL, 630, 1, 16, false, '2020-04-27 08:47:41+07');
INSERT INTO public.issues VALUES (631, 2, 10, 'Thêm mới dữ liệu', '', '2020-04-23', NULL, 5, NULL, 2, NULL, 15, 8, '2020-04-22 14:03:41+07', '2020-04-25 09:29:44+07', '2020-04-22', 100, NULL, 630, 630, 2, 9, false, '2020-04-25 09:29:44+07');
INSERT INTO public.issues VALUES (632, 2, 10, 'CMND bôi đen', '', '2020-04-23', NULL, 5, 8, 2, NULL, 15, 4, '2020-04-22 14:04:06+07', '2020-04-24 14:53:38+07', '2020-04-22', 100, NULL, 631, 630, 3, 4, false, '2020-04-24 14:53:38+07');
INSERT INTO public.issues VALUES (634, 2, 10, 'Quy đinh CMND 9 hoặc 12 số', '', '2020-04-23', NULL, 5, 8, 2, NULL, 15, 5, '2020-04-22 14:05:06+07', '2020-04-25 09:29:24+07', '2020-04-22', 100, NULL, 631, 630, 5, 6, false, '2020-04-25 09:29:24+07');
INSERT INTO public.issues VALUES (635, 2, 10, 'Giới tính ( lỗi không hiển thị )', '', '2020-04-23', NULL, 5, NULL, 2, NULL, 15, 4, '2020-04-22 14:06:14+07', '2020-04-23 10:09:50+07', '2020-04-22', 100, NULL, 631, 630, 7, 8, false, '2020-04-23 10:09:50+07');
INSERT INTO public.issues VALUES (641, 2, 1, 'Tài sản công Tỉ lệ, giá trị còn lại cho nhập 17,9', 'Tại modul "Tài sản công, dịch vụ công ích", cột Tỉ lệ và cột Giá trị còn lại cho lưu được cả số lẻ và số chẵn - Theo phản hồi của Sở Ngoại vụ', '2020-04-23', 9, 5, 8, 2, NULL, 9, 4, '2020-04-22 14:10:09+07', '2020-05-13 06:46:05+07', '2020-04-22', 100, NULL, NULL, 641, 1, 2, false, '2020-05-13 06:46:05+07');
INSERT INTO public.issues VALUES (644, 2, 10, 'Doanh nghiệp', '', '2020-04-23', NULL, 5, NULL, 2, NULL, 15, 3, '2020-04-22 14:12:07+07', '2020-04-23 15:03:47+07', '2020-04-22', 100, NULL, 630, 630, 10, 15, false, '2020-04-23 15:03:47+07');
INSERT INTO public.issues VALUES (645, 2, 10, 'Thêm cột tổng số nhân sự', '', '2020-04-23', NULL, 5, NULL, 2, NULL, 15, 3, '2020-04-22 14:12:29+07', '2020-04-23 14:13:36+07', '2020-04-22', 100, NULL, 644, 630, 11, 12, false, '2020-04-23 14:13:36+07');
INSERT INTO public.issues VALUES (646, 2, 10, 'Thêm mô tả công việc vào chi tiết cá nhân để biết ổng làm gì', '', '2020-04-23', NULL, 5, NULL, 2, NULL, 15, 4, '2020-04-22 14:13:10+07', '2020-04-23 15:03:35+07', '2020-04-22', 100, NULL, 644, 630, 13, 14, false, '2020-04-23 15:03:35+07');
INSERT INTO public.issues VALUES (647, 2, 10, 'Quy trình', '', '2020-05-12', NULL, 5, NULL, 2, NULL, 15, 28, '2020-04-22 14:13:51+07', '2020-06-03 08:08:28+07', '2020-04-22', 100, NULL, NULL, 647, 1, 36, false, '2020-06-03 08:08:28+07');
INSERT INTO public.issues VALUES (648, 2, 10, 'Chỉnh tạo danh sách xét duyệt NCC', 'Popup lên cho chọn từng ông
Filter, sort
Lọc theo đối tượng
Cho đặt tên danh sách', '2020-04-23', NULL, 5, NULL, 2, NULL, 5, 4, '2020-04-22 15:30:45+07', '2020-04-24 14:53:38+07', '2020-04-22', 100, NULL, 647, 647, 2, 3, false, '2020-04-24 14:53:38+07');
INSERT INTO public.issues VALUES (649, 2, 10, '3 đối tượng 5,6,7 tạo sẵn hồ sơ, không tiếp nhận', '', '2020-04-22', NULL, 5, 15, 2, NULL, 5, 2, '2020-04-22 15:30:57+07', '2020-04-24 15:04:50+07', '2020-04-22', 100, NULL, 647, 647, 4, 5, false, '2020-04-24 15:04:50+07');
INSERT INTO public.issues VALUES (651, 2, 10, 'Chi tiết cột kết xuất báo cáo chi', 'STT
CMND
HỌ TÊN
GIỚI TÍNH
SĐT
ĐỊA CHỈ
SỐ TIỀN
SỐ THÁNG
THÀNH TIỀN
KÝ TÊN
GHI CHÚ
', '2020-04-23', NULL, 5, NULL, 2, NULL, 5, 3, '2020-04-22 15:31:26+07', '2020-04-24 15:04:51+07', '2020-04-23', 100, NULL, 647, 647, 6, 7, false, '2020-04-24 15:04:51+07');
INSERT INTO public.issues VALUES (652, 2, 10, 'KẾT XUẤT DANH SÁCH KÝ TÊN ', '    Có watter mark         vua quang trung         góc phải', '2020-04-23', NULL, 5, NULL, 2, NULL, 5, 3, '2020-04-22 15:31:40+07', '2020-04-24 15:04:51+07', '2020-04-23', 100, NULL, 647, 647, 8, 9, false, '2020-04-24 15:04:51+07');
INSERT INTO public.issues VALUES (653, 2, 10, 'Kết xuất danh sách đã chi', '', '2020-04-23', NULL, 5, NULL, 2, NULL, 5, 3, '2020-04-22 15:31:48+07', '2020-04-24 15:04:51+07', '2020-04-23', 100, NULL, 647, 647, 10, 11, false, '2020-04-24 15:04:51+07');
INSERT INTO public.issues VALUES (654, 2, 10, 'Ký số file chốt xã', '', '2020-04-28', NULL, 5, 15, 2, NULL, 5, 5, '2020-04-22 15:31:53+07', '2020-05-08 08:41:39+07', '2020-04-28', 0, NULL, 647, 647, 12, 13, false, '2020-05-08 08:36:38+07');
INSERT INTO public.issues VALUES (655, 2, 10, 'Lỗi chưa bỏ chọn được của danh sách xét duyệt', '', '2020-04-23', NULL, 5, NULL, 2, NULL, 5, 4, '2020-04-22 15:32:08+07', '2020-04-25 09:08:10+07', '2020-04-23', 100, NULL, 647, 647, 14, 15, false, '2020-04-25 09:08:10+07');
INSERT INTO public.issues VALUES (656, 2, 10, 'Tìm CMND của hộ gia đình bị lỗi', '', '2020-04-23', NULL, 5, NULL, 2, NULL, 5, 4, '2020-04-22 15:32:51+07', '2020-04-23 14:12:31+07', '2020-04-23', 100, NULL, 647, 647, 16, 17, false, '2020-04-23 14:12:31+07');
INSERT INTO public.issues VALUES (658, 2, 8, 'Giao diện', '', '2020-04-27', NULL, 5, NULL, 2, NULL, 13, 5, '2020-04-23 09:01:56+07', '2020-05-20 09:19:37+07', '2020-04-27', 100, NULL, 514, 500, 15, 16, false, '2020-05-20 09:19:37+07');
INSERT INTO public.issues VALUES (659, 2, 8, 'kết nối api', '', '2020-04-27', NULL, 5, NULL, 2, NULL, 13, 5, '2020-04-23 09:02:09+07', '2020-05-20 09:19:37+07', '2020-04-27', 100, NULL, 514, 500, 17, 18, false, '2020-05-20 09:19:37+07');
INSERT INTO public.issues VALUES (660, 2, 10, 'TEST 23/04', '', '2020-04-24', NULL, 5, 9, 2, NULL, 5, 6, '2020-04-23 09:59:18+07', '2020-04-24 15:05:03+07', '2020-04-23', 100, NULL, NULL, 660, 1, 4, false, '2020-04-24 15:05:03+07');
INSERT INTO public.issues VALUES (663, 2, 10, 'cho trường "Số điện thoại" ko bắt buộc phải nhập', 'Tại "Dữ liệu" - đối tượng 7 - khi thêm mới các thành viên của một hộ cho trường "Số điện thoại" ko bắt buộc phải nhập', '2020-04-24', NULL, 5, 15, 2, NULL, 9, 3, '2020-04-23 11:17:30+07', '2020-04-24 14:53:39+07', '2020-04-23', 100, NULL, 660, 660, 2, 3, false, '2020-04-24 14:53:39+07');
INSERT INTO public.issues VALUES (667, 2, 10, 'Import dữ liệu', '', '2020-04-26', NULL, 5, NULL, 2, NULL, 6, 18, '2020-04-25 08:10:07+07', '2020-05-08 09:42:05+07', '2020-04-21', 100, NULL, NULL, 667, 1, 22, false, '2020-05-08 09:42:05+07');
INSERT INTO public.issues VALUES (668, 2, 3, 'Phân quyền cho tài khoản', '', '2020-05-11', NULL, 5, 10, 2, NULL, 10, 7, '2020-04-25 08:30:59+07', '2021-02-05 12:20:14+07', '2020-05-11', 100, NULL, 609, 608, 9, 10, false, '2020-06-03 09:46:14+07');
INSERT INTO public.issues VALUES (669, 2, 3, 'Phân quyền cho vài trò', '', '2020-05-11', NULL, 5, 10, 2, NULL, 10, 7, '2020-04-25 08:31:21+07', '2021-02-05 12:20:14+07', '2020-05-11', 100, NULL, 609, 608, 11, 12, false, '2020-06-03 09:46:14+07');
INSERT INTO public.issues VALUES (670, 2, 10, 'Load danh sách quận huyện', '', '2020-04-25', NULL, 5, NULL, 2, NULL, 5, 3, '2020-04-25 08:34:05+07', '2020-04-26 11:23:35+07', '2020-04-25', 100, NULL, 667, 667, 6, 7, false, '2020-04-26 11:23:35+07');
INSERT INTO public.issues VALUES (671, 2, 3, 'Gắn api đơn vị', '', '2020-04-27', NULL, 5, 10, 2, NULL, 10, 6, '2020-04-25 08:34:07+07', '2021-02-05 12:15:51+07', '2020-04-27', 100, NULL, 608, 608, 22, 23, false, '2020-05-06 10:21:20+07');
INSERT INTO public.issues VALUES (672, 2, 10, 'Load danh sách phường xã theo quận huyện', '', '2020-04-25', NULL, 5, NULL, 2, NULL, 5, 4, '2020-04-25 08:34:17+07', '2020-04-26 11:23:50+07', '2020-04-25', 100, NULL, 667, 667, 8, 9, false, '2020-04-26 11:23:50+07');
INSERT INTO public.issues VALUES (673, 2, 3, 'Giao diện đơn vị', '', '2020-04-25', NULL, 5, 10, 2, NULL, 10, 5, '2020-04-25 08:34:26+07', '2021-02-05 12:19:06+07', '2020-04-25', 100, NULL, 608, 608, 24, 25, false, '2020-05-06 10:21:20+07');
INSERT INTO public.issues VALUES (674, 2, 3, 'Giao diện chức năng và nhóm chức năng', '', '2020-04-25', NULL, 5, 10, 2, NULL, 10, 5, '2020-04-25 08:34:57+07', '2021-02-05 12:19:07+07', '2020-04-25', 100, NULL, 608, 608, 26, 27, false, '2020-05-06 10:21:21+07');
INSERT INTO public.issues VALUES (675, 2, 3, 'Gắn api chức năng, nhóm chức năng', '', '2020-04-27', NULL, 5, 10, 2, NULL, 10, 6, '2020-04-25 08:35:20+07', '2021-02-05 12:19:07+07', '2020-04-27', 100, NULL, 608, 608, 28, 29, false, '2020-05-06 10:21:21+07');
INSERT INTO public.issues VALUES (676, 2, 10, 'Kiểm tra có file cho check xanh UPDATE TỔNG SỐ DÒNG', '', '2020-04-25', NULL, 5, NULL, 2, NULL, 5, 5, '2020-04-25 08:58:10+07', '2020-04-27 08:46:46+07', '2020-04-25', 100, NULL, 667, 667, 10, 11, false, '2020-04-27 08:46:46+07');
INSERT INTO public.issues VALUES (677, 2, 10, 'Hàm import chạy xong update 4 thông số', 'OK
TRÙNG
NULL
CHƯA', '2020-04-26', NULL, 5, NULL, 2, NULL, 5, 9, '2020-04-25 08:59:01+07', '2020-05-08 09:41:59+07', '2020-04-26', 100, NULL, 667, 667, 12, 21, false, '2020-05-08 09:41:59+07');
INSERT INTO public.issues VALUES (678, 2, 3, 'Báo cáo', '', '2020-06-12', NULL, 1, 12, 2, NULL, 12, 65, '2020-04-25 08:59:40+07', '2021-02-05 09:08:00+07', '2020-05-15', 100, NULL, NULL, 678, 1, 36, false, NULL);
INSERT INTO public.issues VALUES (679, 2, 10, 'Gắn component nội dung cho 3 menu', 'DỮ LIỆU
XÉT DUYỆT
CHI TIỀN', '2020-04-27', NULL, 5, NULL, 2, NULL, 5, 5, '2020-04-25 10:02:23+07', '2020-05-08 09:41:39+07', '2020-04-27', 100, NULL, NULL, 679, 1, 10, false, '2020-05-08 09:41:39+07');
INSERT INTO public.issues VALUES (680, 2, 10, 'Gắn tree quận huyện/xã phường vào tra cứu cá nhân', '', '2020-04-25', NULL, 5, NULL, 2, NULL, 5, 2, '2020-04-25 10:03:54+07', '2020-05-08 08:41:40+07', '2020-04-25', 0, NULL, NULL, 680, 1, 2, false, '2020-05-08 08:36:41+07');
INSERT INTO public.issues VALUES (681, 2, 10, 'Gắn tree quận huyện/xã phường vào tra cứu hồ sơ', '', '2020-04-25', NULL, 5, NULL, 2, NULL, 5, 2, '2020-04-25 10:04:04+07', '2020-05-08 08:41:41+07', '2020-04-25', 0, NULL, NULL, 681, 1, 2, false, '2020-05-08 08:36:41+07');
INSERT INTO public.issues VALUES (682, 2, 10, 'Gắn tree quận huyện/xã phường vào dữ liệu', '', '2020-04-25', NULL, 5, NULL, 2, NULL, 5, 4, '2020-04-25 10:04:15+07', '2020-05-08 08:41:41+07', '2020-04-25', 100, NULL, NULL, 682, 1, 2, false, '2020-05-08 08:36:41+07');
INSERT INTO public.issues VALUES (683, 2, 10, 'Gắn tree quận huyện/xã phường vào quản lý hồ sơ', '', '2020-04-25', NULL, 5, NULL, 2, NULL, 5, 4, '2020-04-25 10:04:28+07', '2020-05-08 08:41:41+07', '2020-04-25', 100, NULL, NULL, 683, 1, 2, false, '2020-05-08 08:36:41+07');
INSERT INTO public.issues VALUES (684, 2, 10, 'Gắn tree quận huyện/xã phường vào xét duyệt', '', '2020-04-25', NULL, 5, NULL, 2, NULL, 5, 4, '2020-04-25 10:04:37+07', '2020-05-08 08:41:41+07', '2020-04-25', 100, NULL, NULL, 684, 1, 2, false, '2020-05-08 08:36:41+07');
INSERT INTO public.issues VALUES (685, 2, 10, 'Gắn tree quận huyện/xã phường vào chi tiền', '', '2020-04-25', NULL, 5, NULL, 2, NULL, 5, 4, '2020-04-25 10:04:45+07', '2020-05-08 08:41:41+07', '2020-04-25', 100, NULL, NULL, 685, 1, 2, false, '2020-05-08 08:36:41+07');
INSERT INTO public.issues VALUES (686, 2, 10, 'Đồng nhất 1 trang chi tiết cá nhân/hồ sơ', 'bên trái 2 tab: THÔNG TIN CÁ NHÂN/THÔNG TIN HỒ SƠ
bên phải: NỘI DUNG HỖ TRỢ', '2020-04-25', NULL, 5, NULL, 2, NULL, 5, 2, '2020-04-25 10:08:55+07', '2020-05-08 08:41:41+07', '2020-04-25', 0, NULL, NULL, 686, 1, 2, false, '2020-05-08 08:36:41+07');
INSERT INTO public.issues VALUES (687, 2, 3, 'Thêm bảng ql khoa ', '', '2020-04-26', 7, 5, 12, 2, NULL, 12, 3, '2020-04-26 09:18:21+07', '2020-05-06 10:20:36+07', '2020-04-26', 100, NULL, 330, 330, 70, 71, false, '2020-05-06 10:20:36+07');
INSERT INTO public.issues VALUES (688, 2, 3, 'Thêm bảng chi tiết giờ dạy của giảng viên', '', '2020-05-07', NULL, 5, 12, 2, NULL, 12, 6, '2020-04-26 09:20:05+07', '2021-02-05 09:07:54+07', '2020-05-07', 100, NULL, 330, 330, 72, 73, false, '2020-05-06 10:22:20+07');
INSERT INTO public.issues VALUES (689, 2, 10, 'Import NCC', '', '2020-04-26', NULL, 5, 6, 2, NULL, 5, 4, '2020-04-26 14:39:34+07', '2020-05-08 08:41:40+07', '2020-04-26', 60, NULL, 677, 667, 13, 14, false, '2020-05-08 08:36:40+07');
INSERT INTO public.issues VALUES (690, 2, 10, 'Import TNNCC', '', '2020-04-26', NULL, 5, 6, 2, NULL, 5, 3, '2020-04-26 14:50:57+07', '2020-05-08 08:41:40+07', '2020-04-26', 60, NULL, 677, 667, 15, 16, false, '2020-05-08 08:36:40+07');
INSERT INTO public.issues VALUES (691, 2, 10, 'Import BTXH', '', '2020-04-26', NULL, 5, 5, 2, NULL, 5, 2, '2020-04-26 14:51:12+07', '2020-05-08 08:41:40+07', '2020-04-26', 0, NULL, 677, 667, 17, 18, false, '2020-05-08 08:36:40+07');
INSERT INTO public.issues VALUES (692, 2, 10, 'Import HNCN', '', '2020-04-26', NULL, 5, 5, 2, NULL, 5, 2, '2020-04-26 14:51:24+07', '2020-05-08 08:41:40+07', '2020-04-26', 0, NULL, 677, 667, 19, 20, false, '2020-05-08 08:36:41+07');
INSERT INTO public.issues VALUES (693, 2, 10, 'Tách nội dung 4', '', '2020-04-28', NULL, 5, NULL, 2, NULL, 15, 11, '2020-04-26 16:04:55+07', '2020-05-08 09:42:00+07', '2020-04-28', 100, NULL, NULL, 693, 1, 18, false, '2020-05-08 09:42:00+07');
INSERT INTO public.issues VALUES (694, 2, 10, 'Nội dung 4.1 ( Người lao động không đủ điều kiện )', '', '2020-04-28', NULL, 5, NULL, 2, NULL, 15, 8, '2020-04-26 16:05:47+07', '2020-05-08 09:41:40+07', '2020-04-28', 100, NULL, 693, 693, 2, 9, false, '2020-05-08 09:41:40+07');
INSERT INTO public.issues VALUES (695, 2, 10, 'Nội dung 4.2 ( Người lao động tự do không có hợp đồng )', '', '2020-04-28', NULL, 5, NULL, 2, NULL, 15, 8, '2020-04-26 16:06:29+07', '2020-05-08 09:41:40+07', '2020-04-28', 100, NULL, 693, 693, 10, 17, false, '2020-05-08 09:41:40+07');
INSERT INTO public.issues VALUES (696, 2, 10, 'Quản lý theo cá nhân  (tách khỏi doanh nghiệp)', '', '2020-04-28', NULL, 5, NULL, 2, NULL, 15, 7, '2020-04-26 16:08:40+07', '2020-05-08 08:41:41+07', '2020-04-28', 100, NULL, 694, 693, 3, 4, false, '2020-05-08 08:36:41+07');
INSERT INTO public.issues VALUES (697, 2, 10, 'Thêm nơi làm việc ( cho nhập Text )', '', '2020-04-28', NULL, 5, NULL, 2, NULL, 15, 5, '2020-04-26 16:09:32+07', '2020-05-08 08:41:41+07', '2020-04-28', 100, NULL, 694, 693, 5, 6, false, '2020-05-08 08:36:42+07');
INSERT INTO public.issues VALUES (698, 2, 10, 'Thêm hình thức nhận tiền vào thêm mới ', '- Qua ngân hàng : thêm trường ( tài khoản, số tài khoản,ngân hàng )
- Bưu điện ( theo địa chỉ nơi ở )
- Trực tiếp', '2020-04-28', NULL, 5, NULL, 2, NULL, 15, 6, '2020-04-26 16:12:27+07', '2020-05-08 08:41:41+07', '2020-04-28', 100, NULL, 695, 693, 11, 12, false, '2020-05-08 08:36:42+07');
INSERT INTO public.issues VALUES (699, 2, 10, 'Thêm hình thức nhận tiền vào thêm mới ', '- Qua ngân hàng : thêm trường ( tài khoản, số tài khoản,ngân hàng )
- Bưu điện ( theo địa chỉ nơi ở )
- Trực tiếp', '2020-04-28', NULL, 5, NULL, 2, NULL, 15, 5, '2020-04-26 16:12:59+07', '2020-05-08 08:41:41+07', '2020-04-28', 100, NULL, 694, 693, 7, 8, false, '2020-05-08 08:36:42+07');
INSERT INTO public.issues VALUES (700, 2, 10, 'Thêm trường ( Công việc chính ) vào form', '', '2020-04-28', NULL, 5, NULL, 2, NULL, 15, 7, '2020-04-26 16:14:42+07', '2020-05-08 08:41:41+07', '2020-04-28', 100, NULL, 695, 693, 13, 14, false, '2020-05-08 08:36:42+07');
INSERT INTO public.issues VALUES (701, 2, 10, 'Tạo danh mục công việc chính', '', '2020-04-28', NULL, 5, NULL, 2, NULL, 15, 6, '2020-04-26 16:15:27+07', '2020-05-08 08:41:41+07', '2020-04-28', 100, NULL, 695, 693, 15, 16, false, '2020-05-08 08:36:42+07');
INSERT INTO public.issues VALUES (702, 2, 10, 'Quy trình ký số cấp huyện', '', '2020-04-28', NULL, 5, NULL, 2, NULL, 5, 4, '2020-04-26 17:07:42+07', '2020-05-08 08:41:39+07', '2020-04-28', 0, NULL, 647, 647, 18, 19, false, '2020-05-08 08:36:39+07');
INSERT INTO public.issues VALUES (703, 2, 10, 'Dữ liệu', '', '2020-04-27', NULL, 5, 15, 2, NULL, 6, 3, '2020-04-27 08:13:48+07', '2020-05-08 08:41:40+07', '2020-04-27', 100, NULL, 679, 679, 2, 3, false, '2020-05-08 08:36:41+07');
INSERT INTO public.issues VALUES (704, 2, 10, 'Hồ sơ', '', '2020-04-27', NULL, 5, 15, 2, NULL, 6, 3, '2020-04-27 08:14:07+07', '2020-05-08 08:41:40+07', '2020-04-27', 100, NULL, 679, 679, 4, 5, false, '2020-05-08 08:36:41+07');
INSERT INTO public.issues VALUES (705, 2, 10, 'Xét duyệt', '', '2020-04-27', NULL, 5, 8, 2, NULL, 6, 3, '2020-04-27 08:14:27+07', '2020-05-08 08:41:40+07', '2020-04-27', 100, NULL, 679, 679, 6, 7, false, '2020-05-08 08:36:41+07');
INSERT INTO public.issues VALUES (706, 2, 10, 'Chi tiền', '', '2020-04-27', NULL, 5, 15, 2, NULL, 6, 4, '2020-04-27 08:14:54+07', '2020-05-08 08:41:40+07', '2020-04-27', 100, NULL, 679, 679, 8, 9, false, '2020-05-08 08:36:41+07');
INSERT INTO public.issues VALUES (707, 2, 3, 'Api quản trị', '', '2020-05-05', NULL, 5, 12, 2, NULL, 12, 4, '2020-05-05 14:07:01+07', '2021-02-05 09:07:54+07', '2020-05-05', 100, NULL, 330, 330, 74, 75, false, '2020-05-06 10:20:57+07');
INSERT INTO public.issues VALUES (709, 2, 3, 'vaitro/thiet-lap-quyen chưa được', '', '2020-05-11', NULL, 5, 10, 2, NULL, 12, 9, '2020-05-05 14:26:39+07', '2021-02-05 12:19:07+07', '2020-05-11', 100, NULL, 608, 608, 30, 31, false, '2020-06-03 09:46:29+07');
INSERT INTO public.issues VALUES (710, 2, 3, 'Nhập liệu tiết dạy', '', '2020-05-14', NULL, 5, 12, 2, NULL, 12, 9, '2020-05-06 11:12:42+07', '2021-02-05 09:07:54+07', '2020-05-14', 100, NULL, 601, 330, 55, 56, false, '2020-06-03 09:44:56+07');
INSERT INTO public.issues VALUES (711, 2, 3, 'Sau khi thêm lớp gọi hàm cài đặt môn cho lớp', '', '2020-05-11', NULL, 5, 12, 2, NULL, 12, 5, '2020-05-06 11:17:56+07', '2021-02-05 09:07:54+07', '2020-05-11', 100, NULL, 330, 330, 76, 77, false, '2020-06-03 09:44:47+07');
INSERT INTO public.issues VALUES (712, 2, 3, 'Thêm nút xếp giảng viên cho lớp', '', '2020-05-09', NULL, 5, 12, 2, NULL, 12, 5, '2020-05-06 11:18:26+07', '2021-02-05 09:07:55+07', '2020-05-09', 100, NULL, 330, 330, 78, 79, false, '2020-06-03 09:44:47+07');
INSERT INTO public.issues VALUES (713, 2, 8, 'Vùng phủ bts', '', '2020-04-16', NULL, 5, 13, 2, NULL, 13, 4, '2020-05-07 08:12:04+07', '2020-05-20 09:19:38+07', '2020-04-14', 100, NULL, 501, 501, 20, 21, false, '2020-05-20 09:19:38+07');
INSERT INTO public.issues VALUES (714, 2, 8, 'Đo khoản cách', '', '2020-04-16', NULL, 5, 13, 2, NULL, 13, 4, '2020-05-07 08:12:32+07', '2020-05-20 09:19:39+07', '2020-04-14', 100, NULL, 501, 501, 22, 23, false, '2020-05-20 09:19:39+07');
INSERT INTO public.issues VALUES (715, 2, 8, 'Đo diện tích', '', '2020-04-16', NULL, 5, 13, 2, NULL, 13, 4, '2020-05-07 08:12:47+07', '2020-05-20 09:19:39+07', '2020-04-14', 100, NULL, 501, 501, 24, 25, false, '2020-05-20 09:19:39+07');
INSERT INTO public.issues VALUES (716, 2, 10, 'Xuất danh sách rà soát 3 đối trượng còn lại', '', '2020-05-12', NULL, 5, 15, 2, NULL, 5, 5, '2020-05-08 13:48:30+07', '2020-06-03 08:07:21+07', '2020-05-12', 100, NULL, 647, 647, 20, 27, false, '2020-06-03 08:07:21+07');
INSERT INTO public.issues VALUES (717, 2, 10, 'Xuất danh sách chi tiền 3 đối trượng còn lại', '', '2020-05-12', NULL, 5, 15, 2, NULL, 5, 5, '2020-05-08 13:49:54+07', '2020-06-03 08:07:22+07', '2020-05-12', 100, NULL, 647, 647, 28, 35, false, '2020-06-03 08:07:22+07');
INSERT INTO public.issues VALUES (718, 2, 10, 'Dashboard người dân', '', '2020-05-09', NULL, 5, NULL, 2, NULL, 5, 8, '2020-05-08 14:12:33+07', '2020-06-03 08:07:33+07', '2020-05-09', 100, NULL, NULL, 718, 1, 12, false, '2020-06-03 08:07:33+07');
INSERT INTO public.issues VALUES (719, 2, 10, 'Thống kê chung - Đã chi', '', '2020-05-09', NULL, 5, 8, 2, NULL, 5, 5, '2020-05-08 14:12:47+07', '2020-06-03 08:07:04+07', '2020-05-09', 100, NULL, 718, 718, 2, 3, false, '2020-06-03 08:07:04+07');
INSERT INTO public.issues VALUES (720, 2, 10, 'Thống kê chung - Phê duyệt', '', '2020-05-09', NULL, 5, 8, 2, NULL, 5, 5, '2020-05-08 14:13:01+07', '2020-06-03 08:07:04+07', '2020-05-09', 100, NULL, 718, 718, 4, 5, false, '2020-06-03 08:07:04+07');
INSERT INTO public.issues VALUES (721, 2, 10, 'Biểu đồ bánh', '', '2020-05-09', NULL, 5, 8, 2, NULL, 5, 4, '2020-05-08 14:13:11+07', '2020-06-03 08:07:05+07', '2020-05-09', 100, NULL, 718, 718, 6, 7, false, '2020-06-03 08:07:05+07');
INSERT INTO public.issues VALUES (722, 2, 10, 'Biểu đồ cột', '', '2020-05-09', NULL, 5, 8, 2, NULL, 5, 4, '2020-05-08 14:13:17+07', '2020-06-03 08:07:05+07', '2020-05-09', 100, NULL, 718, 718, 8, 9, false, '2020-06-03 08:07:05+07');
INSERT INTO public.issues VALUES (723, 2, 10, 'Thông kê chi tiết', '', '2020-05-09', NULL, 5, 8, 2, NULL, 5, 4, '2020-05-08 14:13:25+07', '2020-06-03 08:07:05+07', '2020-05-09', 100, NULL, 718, 718, 10, 11, false, '2020-06-03 08:07:05+07');
INSERT INTO public.issues VALUES (724, 2, 8, 'Thêm vai trò, tạo tài khoản doanh nghiệp', 'Viettel
VNPT
Mobifone', '2020-05-11', NULL, 5, 5, 2, NULL, 5, 5, '2020-05-08 16:02:36+07', '2020-06-03 10:13:25+07', '2020-05-11', 100, NULL, 502, 502, 2, 3, false, '2020-06-03 10:13:25+07');
INSERT INTO public.issues VALUES (727, 2, 8, 'Thêm vài trò, tk sở tttt', '', '2020-05-11', NULL, 5, 10, 2, NULL, 5, 5, '2020-05-08 16:04:03+07', '2020-06-03 10:13:26+07', '2020-05-11', 100, NULL, 502, 502, 4, 5, false, '2020-06-03 10:13:26+07');
INSERT INTO public.issues VALUES (728, 2, 8, 'Trang danh sách hồ sơ', '', '2020-05-23', NULL, 5, 10, 2, NULL, 5, 8, '2020-05-08 16:17:39+07', '2020-06-03 10:13:26+07', '2020-05-23', 100, NULL, 503, 503, 2, 3, false, '2020-06-03 10:13:26+07');
INSERT INTO public.issues VALUES (729, 2, 8, 'Trang thêm mới hồ sơ', '', '2020-06-03', NULL, 5, NULL, 2, NULL, 5, 21, '2020-05-08 16:17:49+07', '2020-06-23 09:41:08+07', '2020-05-23', 100, NULL, 503, 503, 4, 17, false, '2020-06-23 09:41:08+07');
INSERT INTO public.issues VALUES (730, 2, 8, 'Trang chi tiết hồ sơ', '', '2020-05-27', NULL, 5, 8, 2, NULL, 5, 11, '2020-05-08 16:18:04+07', '2020-06-03 10:13:51+07', '2020-05-27', 100, NULL, 503, 503, 18, 23, false, '2020-06-03 10:13:51+07');
INSERT INTO public.issues VALUES (731, 2, 8, 'Trang chỉnh sửa hồ sơ', '', '2020-06-03', NULL, 5, NULL, 2, NULL, 5, 10, '2020-05-08 16:18:14+07', '2020-06-23 09:41:09+07', '2020-05-28', 100, NULL, 503, 503, 24, 29, false, '2020-06-23 09:41:09+07');
INSERT INTO public.issues VALUES (732, 2, 8, 'Xem file PDF hồ sơ', '', '2020-05-26', NULL, 5, 10, 2, NULL, 5, 10, '2020-05-08 16:18:36+07', '2020-06-03 10:13:27+07', '2020-05-26', 100, NULL, 503, 503, 30, 31, false, '2020-06-03 10:13:27+07');
INSERT INTO public.issues VALUES (733, 2, 8, 'Ký số doanh nghiệp', '', '2020-05-26', NULL, 5, 10, 2, NULL, 5, 12, '2020-05-08 16:18:42+07', '2020-06-03 10:13:27+07', '2020-05-26', 100, NULL, 503, 503, 32, 33, false, '2020-06-03 10:13:27+07');
INSERT INTO public.issues VALUES (734, 2, 8, 'Gửi hồ sơ', '', '2020-05-26', NULL, 5, 10, 2, NULL, 5, 10, '2020-05-08 16:18:48+07', '2020-06-03 10:13:27+07', '2020-05-26', 100, NULL, 503, 503, 34, 35, false, '2020-06-03 10:13:27+07');
INSERT INTO public.issues VALUES (735, 2, 8, 'Đính kèm văn bản', '', '2020-05-26', NULL, 5, 12, 2, NULL, 5, 9, '2020-05-08 16:19:15+07', '2020-06-03 10:13:27+07', '2020-05-26', 100, NULL, 503, 503, 36, 37, false, '2020-06-03 10:13:27+07');
INSERT INTO public.issues VALUES (736, 2, 8, 'Phê duyệt, từ chối hồ sơ', 'Từ chối có nhập lý do', '2020-05-27', NULL, 5, NULL, 2, NULL, 5, 11, '2020-05-08 16:19:33+07', '2020-06-03 10:13:27+07', '2020-05-27', 100, NULL, 503, 503, 38, 39, false, '2020-06-03 10:13:27+07');
INSERT INTO public.issues VALUES (737, 2, 8, 'Trang phê duyệt hồ sơ', '', '2020-05-27', NULL, 5, NULL, 2, NULL, 5, 11, '2020-05-08 16:19:45+07', '2020-06-03 10:13:27+07', '2020-05-27', 100, NULL, 503, 503, 40, 41, false, '2020-06-03 10:13:27+07');
INSERT INTO public.issues VALUES (738, 2, 8, 'Dashboard', '', '2020-05-23', NULL, 5, NULL, 2, NULL, 5, 10, '2020-05-08 16:21:12+07', '2020-06-03 10:13:51+07', '2020-05-20', 100, NULL, NULL, 738, 1, 10, false, '2020-06-03 10:13:51+07');
INSERT INTO public.issues VALUES (739, 2, 8, 'Thống kê số trạm BTS theo nhà mạng', '', '2020-05-23', NULL, 5, 10, 2, NULL, 5, 5, '2020-05-08 16:21:51+07', '2020-06-03 10:13:28+07', '2020-05-23', 100, NULL, 738, 738, 2, 3, false, '2020-06-03 10:13:28+07');
INSERT INTO public.issues VALUES (740, 2, 8, 'Thống kê số trạm BTS theo nhà mạng, từng huyện', '', '2020-05-23', NULL, 5, 10, 2, NULL, 5, 5, '2020-05-08 16:23:28+07', '2020-06-03 10:13:28+07', '2020-05-23', 100, NULL, 738, 738, 4, 5, false, '2020-06-03 10:13:28+07');
INSERT INTO public.issues VALUES (741, 2, 3, 'Báo cáo danh sách học viên sort theo đơn vị (1)', '', '2020-05-15', NULL, 3, 6, 2, NULL, 12, 7, '2020-05-09 16:53:19+07', '2020-05-26 15:27:41+07', '2020-05-15', 100, NULL, 678, 678, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (742, 2, 3, 'Bảng theo dõi học tập (2)', '', '2020-06-08', NULL, 3, 6, 2, NULL, 12, 19, '2020-05-11 08:31:30+07', '2020-06-09 10:56:43+07', '2020-06-03', 100, NULL, 678, 678, 4, 9, false, NULL);
INSERT INTO public.issues VALUES (743, 2, 3, 'Danh sách học viên sort ABC (3)', '', '2020-05-16', NULL, 3, 6, 2, NULL, 12, 11, '2020-05-11 08:32:48+07', '2020-05-26 15:28:00+07', '2020-05-16', 100, NULL, 678, 678, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (744, 2, 3, 'Ds học viên dự thi (4)', '', '2020-06-10', NULL, 3, 6, 2, NULL, 12, 17, '2020-05-11 08:33:54+07', '2020-06-10 16:41:32+07', '2020-06-10', 100, NULL, 678, 678, 12, 15, false, NULL);
INSERT INTO public.issues VALUES (745, 2, 3, 'Bảng điểm thi hết học phần (5-6)', '', '2020-05-26', NULL, 3, 12, 2, NULL, 12, 11, '2020-05-11 08:35:07+07', '2020-05-29 14:43:38+07', '2020-05-26', 100, NULL, 678, 678, 16, 17, false, NULL);
INSERT INTO public.issues VALUES (746, 2, 3, 'Tổng hợp kết quả học tập và rèn luyện theo lớp (7)', '', '2020-05-26', NULL, 3, 12, 2, NULL, 12, 10, '2020-05-11 08:35:58+07', '2021-02-05 09:08:01+07', '2020-05-26', 100, NULL, 678, 678, 18, 19, false, NULL);
INSERT INTO public.issues VALUES (747, 2, 3, 'Bảng kết quả học tập và rèn luyện theo học viên (8)', '', '2020-06-03', NULL, 3, 6, 2, NULL, 12, 10, '2020-05-11 08:36:36+07', '2020-06-03 16:38:58+07', '2020-06-03', 100, NULL, 678, 678, 20, 21, false, NULL);
INSERT INTO public.issues VALUES (748, 2, 3, 'Ds công nhận tốt nghiệp theo lớp (9)', '', '2020-06-08', NULL, 3, 12, 2, NULL, 12, 11, '2020-05-11 08:37:15+07', '2020-06-08 15:20:34+07', '2020-06-08', 100, NULL, 678, 678, 22, 23, false, NULL);
INSERT INTO public.issues VALUES (749, 2, 3, 'Ds kí nhận tốt nghiệp (10)', '', '2020-06-09', NULL, 3, 12, 2, NULL, 12, 13, '2020-05-11 08:37:35+07', '2020-06-08 15:24:14+07', '2020-06-09', 100, NULL, 678, 678, 24, 25, false, NULL);
INSERT INTO public.issues VALUES (750, 2, 3, 'Bảng theo dõi giờ giảng (11)', '', '2020-06-10', NULL, 3, 12, 2, NULL, 12, 16, '2020-05-11 08:38:46+07', '2021-02-05 09:08:01+07', '2020-06-10', 100, NULL, 678, 678, 26, 27, false, NULL);
INSERT INTO public.issues VALUES (751, 2, 3, 'Tổng hợp giờ giảng theo năm (12)', '', '2020-06-10', NULL, 3, 12, 2, NULL, 12, 17, '2020-05-11 08:39:16+07', '2021-02-05 09:08:01+07', '2020-06-10', 100, NULL, 678, 678, 28, 29, false, NULL);
INSERT INTO public.issues VALUES (752, 2, 3, 'Tạo vai trò, mỗi vai trò 1 tk, ghi vào wiki', '', '2020-05-16', NULL, 5, 12, 2, NULL, 5, 6, '2020-05-11 14:21:48+07', '2021-02-05 09:08:00+07', '2020-05-16', 100, NULL, 608, 608, 32, 33, false, '2020-06-03 09:46:30+07');
INSERT INTO public.issues VALUES (753, 2, 10, 'Doanh nghiệp', '', '2020-05-12', NULL, 5, NULL, 2, NULL, 5, 2, '2020-05-12 08:29:49+07', '2020-06-03 08:07:03+07', '2020-05-12', 100, NULL, 716, 647, 21, 22, false, '2020-06-03 08:07:03+07');
INSERT INTO public.issues VALUES (754, 2, 10, 'Đối tượng 4.1', '', '2020-05-12', NULL, 5, NULL, 2, NULL, 5, 2, '2020-05-12 08:30:34+07', '2020-06-03 08:07:03+07', '2020-05-12', 100, NULL, 716, 647, 23, 24, false, '2020-06-03 08:07:03+07');
INSERT INTO public.issues VALUES (755, 2, 10, 'Đối tượng 4.2', '', '2020-05-12', NULL, 5, NULL, 2, NULL, 5, 3, '2020-05-12 08:30:38+07', '2020-06-03 08:07:03+07', '2020-05-12', 100, NULL, 716, 647, 25, 26, false, '2020-06-03 08:07:03+07');
INSERT INTO public.issues VALUES (756, 2, 10, 'Doanh nghiệp', '', '2020-05-12', NULL, 5, NULL, 2, NULL, 5, 2, '2020-05-12 08:30:55+07', '2020-06-03 08:07:03+07', '2020-05-12', 100, NULL, 717, 647, 29, 30, false, '2020-06-03 08:07:03+07');
INSERT INTO public.issues VALUES (757, 2, 10, 'Đối tượng 4.1', '', '2020-05-12', NULL, 5, NULL, 2, NULL, 5, 2, '2020-05-12 08:31:04+07', '2020-06-03 08:07:04+07', '2020-05-12', 100, NULL, 717, 647, 31, 32, false, '2020-06-03 08:07:04+07');
INSERT INTO public.issues VALUES (758, 2, 10, 'Đối tượng 4.2', '', '2020-05-12', NULL, 5, NULL, 2, NULL, 5, 2, '2020-05-12 08:31:11+07', '2020-06-03 08:07:04+07', '2020-05-12', 100, NULL, 717, 647, 33, 34, false, '2020-06-03 08:07:04+07');
INSERT INTO public.issues VALUES (759, 2, 3, 'Thêm, sửa, xóa nhóm chức năng', '', '2020-05-12', 8, 5, 10, 2, NULL, 10, 3, '2020-05-12 09:54:42+07', '2020-06-03 09:46:30+07', '2020-05-12', 100, NULL, 608, 608, 34, 35, false, '2020-06-03 09:46:30+07');
INSERT INTO public.issues VALUES (760, 2, 3, 'Load menu theo vai trò', '', '2020-05-16', NULL, 5, 12, 2, NULL, 12, 6, '2020-05-14 08:51:01+07', '2021-02-05 09:08:00+07', '2020-05-16', 100, NULL, 608, 608, 36, 37, false, '2020-06-03 09:46:30+07');
INSERT INTO public.issues VALUES (761, 2, 3, 'Api load dãy ghế theo sơ đồ', '', '2020-05-16', NULL, 5, 6, 2, NULL, 12, 7, '2020-05-14 09:08:16+07', '2021-02-05 12:17:43+07', '2020-05-16', 100, NULL, 260, 330, 23, 24, false, '2020-06-03 09:45:08+07');
INSERT INTO public.issues VALUES (762, 2, 3, 'Api xếp ghế ', 'id ghế 
trạng thái: true, false;', '2020-05-16', NULL, 5, 6, 2, NULL, 12, 6, '2020-05-14 09:09:46+07', '2021-02-05 12:17:44+07', '2020-05-16', 100, NULL, 260, 330, 25, 26, false, '2020-06-03 09:45:08+07');
INSERT INTO public.issues VALUES (763, 2, 3, 'Api xếp học viên tự động', '', '2020-05-16', NULL, 5, 6, 2, NULL, 12, 7, '2020-05-14 09:11:33+07', '2021-02-05 12:17:44+07', '2020-05-16', 100, NULL, 260, 330, 27, 28, false, '2020-06-03 09:45:09+07');
INSERT INTO public.issues VALUES (766, 2, 8, 'Trang đăng nhập', '', '2020-05-16', NULL, 5, 10, 2, NULL, 13, 6, '2020-05-16 10:19:18+07', '2020-06-03 10:13:51+07', '2020-05-16', 100, NULL, NULL, 766, 1, 4, false, '2020-06-03 10:13:51+07');
INSERT INTO public.issues VALUES (767, 2, 8, 'Load menu theo phân quyền', '', '2020-05-19', NULL, 5, 10, 2, NULL, 13, 6, '2020-05-16 10:20:20+07', '2020-06-03 10:13:28+07', '2020-05-19', 100, NULL, NULL, 767, 1, 2, false, '2020-06-03 10:13:28+07');
INSERT INTO public.issues VALUES (768, 2, 8, 'Phân quyền dữ liệu', '', '2020-06-03', NULL, 5, 13, 2, NULL, 13, 13, '2020-05-16 10:21:00+07', '2020-06-23 09:41:17+07', '2020-05-25', 100, NULL, NULL, 768, 1, 12, false, '2020-06-23 09:41:17+07');
INSERT INTO public.issues VALUES (769, 2, 8, 'Kiểm tra đăng nhập', '', '2020-05-16', NULL, 5, 10, 2, NULL, 13, 6, '2020-05-16 10:22:47+07', '2020-06-03 10:13:28+07', '2020-05-16', 100, NULL, 766, 766, 2, 3, false, '2020-06-03 10:13:28+07');
INSERT INTO public.issues VALUES (773, 2, 9, 'Front end hoãn chi lương trong tháng.', '', '2020-05-19', NULL, 5, NULL, 2, NULL, 6, 2, '2020-05-18 19:12:12+07', '2020-05-20 13:41:51+07', '2020-05-18', 100, NULL, NULL, 773, 1, 2, false, '2020-05-20 13:41:51+07');
INSERT INTO public.issues VALUES (774, 1, 9, 'Máy tính không hiểu dấu )', '', '2020-05-19', NULL, 5, NULL, 2, NULL, 6, 1, '2020-05-18 19:12:35+07', '2020-05-20 13:41:22+07', '2020-05-18', 100, NULL, NULL, 774, 1, 2, false, '2020-05-20 13:41:22+07');
INSERT INTO public.issues VALUES (775, 1, 10, 'Kiểm tra thêm mới hồ sơ nhân viên trong doanh nghiệp chưa được', '<p>CMND: 215087047</p>
', '2020-05-19', NULL, 5, 8, 2, NULL, 5, 2, '2020-05-19 11:33:49+07', '2020-06-03 08:07:05+07', '2020-05-19', 100, NULL, NULL, 775, 1, 2, false, '2020-06-03 08:07:05+07');
INSERT INTO public.issues VALUES (776, 2, 1, 'Báo cáo SBN đã tạo hồ sơ', '', '2020-06-10', 4, 5, 8, 2, NULL, 8, 6, '2020-05-19 11:38:36+07', '2020-06-22 11:30:02+07', '2020-06-10', 100, NULL, NULL, 776, 1, 2, false, '2020-06-22 11:30:02+07');
INSERT INTO public.issues VALUES (777, 2, 1, 'Báo cáo doanh nghiệp đã tạo hồ sơ', '', '2020-06-10', 4, 5, 8, 2, NULL, 8, 6, '2020-05-19 11:39:03+07', '2020-06-22 11:30:02+07', '2020-06-10', 100, NULL, NULL, 777, 1, 2, false, '2020-06-22 11:30:02+07');
INSERT INTO public.issues VALUES (778, 2, 1, 'Báo cáo SBN đã tạo tk', '', '2020-06-11', 4, 5, 8, 2, NULL, 8, 7, '2020-05-19 11:39:40+07', '2020-06-22 11:30:02+07', '2020-06-11', 100, NULL, NULL, 778, 1, 2, false, '2020-06-22 11:30:02+07');
INSERT INTO public.issues VALUES (780, 2, 8, 'Dữ liệu bản đồ', '', '2020-06-03', NULL, 5, 13, 2, NULL, 5, 5, '2020-05-19 14:08:27+07', '2020-06-23 09:40:59+07', '2020-06-03', 100, NULL, 768, 768, 2, 3, false, '2020-06-23 09:40:59+07');
INSERT INTO public.issues VALUES (781, 2, 8, 'Dữ liệu trạm BTS', '', '2020-05-25', NULL, 5, 13, 2, NULL, 5, 4, '2020-05-19 14:08:44+07', '2020-06-03 10:13:28+07', '2020-05-25', 100, NULL, 768, 768, 4, 5, false, '2020-06-03 10:13:28+07');
INSERT INTO public.issues VALUES (782, 2, 8, 'Dữ liệu tuyến cáp ngầm', '', '2020-05-25', NULL, 5, 13, 2, NULL, 5, 4, '2020-05-19 14:09:05+07', '2020-06-03 10:13:28+07', '2020-05-25', 100, NULL, 768, 768, 6, 7, false, '2020-06-03 10:13:28+07');
INSERT INTO public.issues VALUES (783, 2, 8, 'Dữ liệu tuyến cáp nổi', '', '2020-05-25', NULL, 5, 13, 2, NULL, 5, 4, '2020-05-19 14:09:27+07', '2020-06-03 10:13:28+07', '2020-05-25', 100, NULL, 768, 768, 8, 9, false, '2020-06-03 10:13:28+07');
INSERT INTO public.issues VALUES (784, 2, 8, 'Dữ liệu điểm dịch vụ', '', '2020-05-25', NULL, 5, 13, 2, NULL, 5, 4, '2020-05-19 14:09:42+07', '2020-06-03 10:13:29+07', '2020-05-25', 100, NULL, 768, 768, 10, 11, false, '2020-06-03 10:13:29+07');
INSERT INTO public.issues VALUES (785, 2, 3, 'Giao diện + chức năng danh sách phòng', '', '2020-05-21', NULL, 5, 12, 2, NULL, 5, 5, '2020-05-19 14:22:02+07', '2020-06-03 09:45:09+07', '2020-05-21', 100, NULL, 260, 330, 29, 30, false, '2020-06-03 09:45:09+07');
INSERT INTO public.issues VALUES (786, 2, 3, 'Giao diện + tính năng tạo phòng kèm sơ đồ', '', '2020-05-21', NULL, 5, 12, 2, NULL, 5, 8, '2020-05-19 14:31:03+07', '2021-02-05 09:07:53+07', '2020-05-21', 100, NULL, 260, 330, 31, 32, false, '2020-06-03 09:45:09+07');
INSERT INTO public.issues VALUES (787, 2, 3, 'Giao diện sắp xếp học viên', '', '2020-05-23', NULL, 5, 12, 2, NULL, 5, 6, '2020-05-19 14:31:37+07', '2021-02-05 09:07:53+07', '2020-05-23', 100, NULL, 260, 330, 33, 34, false, '2020-06-03 09:45:09+07');
INSERT INTO public.issues VALUES (788, 2, 8, 'bổ sung tuyến cáp nổi vào trang dashboard', '', '2020-05-21', NULL, 5, 10, 2, NULL, 13, 4, '2020-05-20 08:13:32+07', '2020-06-03 10:13:28+07', '2020-05-20', 100, NULL, 738, 738, 6, 7, false, '2020-06-03 10:13:28+07');
INSERT INTO public.issues VALUES (789, 2, 8, 'Hiển thị số lượng điểm dịch vụ của doanh nghiệp theo Huyện/TP', '', '2020-05-21', NULL, 5, NULL, 2, NULL, 13, 6, '2020-05-20 08:15:39+07', '2020-06-03 10:13:28+07', '2020-05-20', 100, NULL, 738, 738, 8, 9, false, '2020-06-03 10:13:28+07');
INSERT INTO public.issues VALUES (790, 1, 9, 'Xóa bảng lương tháng trước, đã truy lĩnh tháng sau không xóa được', '', NULL, NULL, 3, NULL, 2, NULL, 6, 1, '2020-05-20 13:42:54+07', '2020-06-13 16:36:35+07', '2020-05-20', 100, NULL, NULL, 790, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (792, 1, 10, 'Mẫu PDF của Phụ lục 1a (UBND Huyện, UBND Xã)', '', '2020-05-21', NULL, 5, NULL, 2, NULL, 8, 5, '2020-05-21 09:09:19+07', '2020-06-03 08:07:33+07', '2020-05-21', 100, NULL, NULL, 792, 1, 10, false, '2020-06-03 08:07:33+07');
INSERT INTO public.issues VALUES (793, 2, 3, 'Giao diện chỉnh sửa và set up ghế cho phòng', '', '2020-05-23', NULL, 5, 12, 2, NULL, 12, 5, '2020-05-21 09:48:47+07', '2021-02-05 09:07:53+07', '2020-05-23', 100, NULL, 260, 330, 35, 36, false, '2020-06-03 09:45:09+07');
INSERT INTO public.issues VALUES (794, 1, 10, 'Sửa cột như biểu mẫu phụ lục số 1a (của thị trấn)', '<table>
  <thead>
  	<tr>
      <td rowspan="3">STT</td>
      <td rowspan="3">Họ và tên</td>
      <td colspan="2" >Ngày tháng năm sinh</td>
      <td rowspan="3">Số CMND</td>
      <td rowspan="3">Thường trú</td>
      <td rowspan="3">Tạm trú</td>
      <td rowspan="3">Công việc chính trước khi mất việc làm</td>
      <td rowspan="3">Thông tin về nơi làm việc trước khi mất việc làm</td>
      <td rowspan="3">Thu nhập hiện nay đồng/tháng (Sau khi được xét duyệt)</td>
      <td rowspan="3">Số tiền được hỗ trợ (đồng/tháng)</td>
      <td colspan="5">Hỗ trợ qua hình thức</td>
      <td rowspan="3">Ghi chú</td>
    </tr>
    <tr>
      <td rowspan="2">Nam</td>
      <td rowspan="2">Nữ</td>
      <td colspan="3">Chuyển khoản qua ngân hàng</td>
      <td>Nhận trực tiếp bằng tiền mặt</td>
      <td>Ký nhận</td>
    </tr>
    <tr>
      <td>Tên tài khoản</td>
      <td>Số tài khoản</td>
      <td>Tên ngân hàng</td>
      <td></td>
      <td></td>
    </tr>
  </thead>
  <tbody>
    <td>A</td>
    <td>B</td>
    <td>1</td>
    <td>2</td>
    <td>3</td>
    <td>4</td>
    <td>5</td>
    <td>6</td>
    <td>7</td>
    <td>8</td>
    <td>9</td>
    <td>10</td>
    <td>11</td>
    <td>12</td>
    <td>13</td>
    <td>14</td>
    <td>15</td>
  </tbody>
</table>', '2020-05-21', NULL, 5, NULL, 2, NULL, 8, 2, '2020-05-21 10:10:51+07', '2020-06-03 08:07:06+07', '2020-05-21', 100, NULL, 792, 792, 2, 3, false, '2020-06-03 08:07:06+07');
INSERT INTO public.issues VALUES (795, 1, 10, 'Góc trái trên file PDF là UBND Huyện, UBND Xã', '', '2020-05-21', NULL, 5, NULL, 2, NULL, 8, 2, '2020-05-21 13:33:18+07', '2020-06-03 08:07:06+07', '2020-05-21', 100, NULL, 792, 792, 4, 5, false, '2020-06-03 08:07:06+07');
INSERT INTO public.issues VALUES (797, 1, 10, 'Thêm người lập biểu góc trái bên dưới file PDF ', '', '2020-05-21', NULL, 5, NULL, 2, NULL, 8, 2, '2020-05-21 13:35:07+07', '2020-06-03 08:07:06+07', '2020-05-21', 100, NULL, 792, 792, 6, 7, false, '2020-06-03 08:07:06+07');
INSERT INTO public.issues VALUES (798, 1, 10, 'Chỗ ghi chú: Sửa " cột số 8 " thành " cột số 6 "', '', '2020-05-21', NULL, 5, NULL, 2, NULL, 8, 2, '2020-05-21 13:35:55+07', '2020-06-03 08:07:06+07', '2020-05-21', 100, NULL, 792, 792, 8, 9, false, '2020-06-03 08:07:06+07');
INSERT INTO public.issues VALUES (799, 1, 10, 'Mẫu PDF của Phụ lục 2a (UBND Huyện, UBND Xã)', '', '2020-05-21', NULL, 5, NULL, 2, NULL, 8, 4, '2020-05-21 13:40:06+07', '2020-06-03 08:07:33+07', '2020-05-21', 100, NULL, NULL, 799, 1, 4, false, '2020-06-03 08:07:33+07');
INSERT INTO public.issues VALUES (800, 1, 10, 'Sửa cột như biểu mẫu phụ lục số 2a (của thị trấn, phường, xã)', '<table>
	<thead>
		<tr>
			<td rowspan="3">STT</td>
			<td rowspan="3">Họ v&agrave; t&ecirc;n</td>
			<td colspan="2">Ng&agrave;y th&aacute;ng năm sinh</td>
			<td rowspan="3">Số CMND</td>
			<td rowspan="3">Thường tr&uacute;</td>
			<td rowspan="3">Tạm tr&uacute;</td>
			<td colspan="3">Sổ BHXH</td>
			<td rowspan="3">Th&ocirc;ng tin về nơi l&agrave;m việc trước khi chấm dứt HĐLĐ</td>
			<td rowspan="3">Thu nhập hiện nay đ&ocirc;ng/th&aacute;ng (Sau khi được x&eacute;t duyệt)</td>
			<td rowspan="3">Số tiền được hỗ trợ (đồng/th&aacute;ng)</td>
			<td colspan="5">Hỗ trợ qua h&igrave;nh thức</td>
			<td rowspan="3">Ghi ch&uacute;</td>
		</tr>
		<tr>
			<td rowspan="2">Nam</td>
			<td rowspan="2">Nữ</td>
			<td rowspan="2">Số sổ BHXH</td>
			<td colspan="2">X&aacute;c nhận của cơ quan BHXH</td>
			<td colspan="3">Chuyển khoản qua ng&acirc;n h&agrave;ng</td>
			<td rowspan="2">Nhận trực tiếp bằng tiền mặt</td>
			<td rowspan="2">K&yacute; nhận</td>
		</tr>
		<tr>
			<td>Số</td>
			<td>Ng&agrave;y</td>
			<td>T&ecirc;n t&agrave;i khoản</td>
			<td>Số t&agrave;i khoản</td>
			<td>T&ecirc;n ng&acirc;n h&agrave;ng</td>
		</tr>
	</thead>
  	<tbody>
  	  <td>A</td>
      <td>B</td>
      <td>1</td>
      <td>2</td>
      <td>3</td>
      <td>4</td>
      <td>5</td>
      <td>6</td>
      <td>7</td>
      <td>8</td>
      <td>9</td>
      <td>10</td>
      <td>11</td>
      <td>12</td>
      <td>13</td>
      <td>14</td>
      <td>15</td>
      <td>16</td>
      <td>17</td>
  	</tbody>
</table>
', '2020-05-21', NULL, 5, NULL, 2, NULL, 8, 4, '2020-05-21 13:56:42+07', '2020-06-03 08:07:06+07', '2020-05-21', 100, NULL, 799, 799, 2, 3, false, '2020-06-03 08:07:06+07');
INSERT INTO public.issues VALUES (801, 1, 10, 'Mẫu PDF của Phụ lục 3a (UBND Huyện)', '', '2020-06-03', NULL, 5, NULL, 2, NULL, 8, 3, '2020-05-21 13:57:28+07', '2020-06-03 08:08:38+07', '2020-06-03', 100, NULL, NULL, 801, 1, 4, false, '2020-06-03 08:08:38+07');
INSERT INTO public.issues VALUES (837, 2, 3, 'Sửa lại chức năng nhập giờ dạy của giảng viên (Cho phép cập nhật hằng ngày)', '', '2020-06-08', NULL, 3, 12, 2, NULL, 12, 11, '2020-06-03 09:56:35+07', '2021-02-05 09:07:56+07', '2020-06-08', 100, NULL, 330, 330, 94, 95, false, NULL);
INSERT INTO public.issues VALUES (802, 1, 10, 'Sửa cột như biểu mẫu phụ lục số 3a (của Huyện)', '<table>
	<thead>
		<tr>
			<td rowspan="3">STT</td>
			<td rowspan="3">Tên Xã/Tên hộ kinh doanh</td>
			<td colspan="2">Ngày tháng năm sinh của đại diện Hộ kinh doanh</td>
			<td rowspan="3">Số CMND</td>
			<td rowspan="3">Mã số thuế hoặc mã đăng ký kinh doanh</td>
			<td rowspan="3">Nơi ở hiện nay</td>
			<td rowspan="3">Số tiền được hỗ trợ</td>
			<td colspan="5">Hỗ trợ qua h&igrave;nh thức</td>
			<td rowspan="3">Ghi ch&uacute;</td>
		</tr>
		<tr>
			<td rowspan="2">Nam</td>
			<td rowspan="2">Nữ</td>
			<td colspan="3">Chuyển khoản qua ng&acirc;n h&agrave;ng</td>
			<td rowspan="2">Nhận trực tiếp bằng tiền mặt</td>
			<td rowspan="2">K&yacute; nhận</td>
		</tr>
		<tr>
			<td>T&ecirc;n t&agrave;i khoản</td>
			<td>Số t&agrave;i khoản</td>
			<td>T&ecirc;n ng&acirc;n h&agrave;ng</td>
		</tr>
	</thead>
  	<tbody>
  	  <td>A</td>
      <td>B</td>
      <td>1</td>
      <td>2</td>
      <td>3</td>
      <td>4</td>
      <td>5</td>
      <td>6</td>
      <td>7</td>
      <td>8</td>
      <td>9</td>
      <td>10</td>
      <td>11</td>
      <td>12</td>
  	</tbody>
</table>
', '2020-06-03', NULL, 5, NULL, 2, NULL, 8, 3, '2020-05-21 14:02:56+07', '2020-06-03 08:08:28+07', '2020-06-03', 100, NULL, 801, 801, 2, 3, false, '2020-06-03 08:08:28+07');
INSERT INTO public.issues VALUES (803, 2, 3, 'sửa tên phòng', '', '2020-05-23', NULL, 5, 12, 2, NULL, 12, 4, '2020-05-23 08:43:36+07', '2021-02-05 09:07:53+07', '2020-05-23', 100, NULL, 260, 330, 37, 38, false, '2020-06-03 09:45:09+07');
INSERT INTO public.issues VALUES (804, 2, 3, 'cập nhật số bàn cho tổ', '', '2020-05-23', NULL, 5, 12, 2, NULL, 12, 5, '2020-05-23 08:47:28+07', '2021-02-05 09:07:54+07', '2020-05-23', 100, NULL, 260, 330, 39, 40, false, '2020-06-03 09:45:10+07');
INSERT INTO public.issues VALUES (805, 2, 8, 'Thêm mới, thông tin hồ sơ', '', '2020-05-23', NULL, 5, NULL, 2, NULL, 13, 6, '2020-05-23 09:20:37+07', '2020-06-03 10:13:26+07', '2020-05-23', 100, NULL, 729, 503, 5, 6, false, '2020-06-03 10:13:26+07');
INSERT INTO public.issues VALUES (806, 2, 8, 'Nút thêm mới trạm hiển thị lên popup, lưu xuống list chi tiết', '', '2020-05-23', NULL, 5, NULL, 2, NULL, 13, 7, '2020-05-23 09:21:34+07', '2020-06-03 10:13:26+07', '2020-05-23', 100, NULL, 729, 503, 7, 8, false, '2020-06-03 10:13:26+07');
INSERT INTO public.issues VALUES (807, 2, 8, 'Nút thêm mới tuyến cáp ngầm hiển thị lên popup, lưu xuống list chi tiết', '', '2020-05-25', NULL, 5, NULL, 2, NULL, 13, 6, '2020-05-23 09:25:10+07', '2020-06-03 10:13:26+07', '2020-05-25', 100, NULL, 729, 503, 9, 10, false, '2020-06-03 10:13:26+07');
INSERT INTO public.issues VALUES (808, 2, 8, 'Nút thêm mới tuyến cáp nổi hiển thị lên popup, lưu xuống list chi tiết', '', '2020-05-25', NULL, 5, NULL, 2, NULL, 13, 6, '2020-05-23 09:25:18+07', '2020-06-03 10:13:26+07', '2020-05-25', 100, NULL, 729, 503, 11, 12, false, '2020-06-03 10:13:26+07');
INSERT INTO public.issues VALUES (809, 2, 8, 'Nút thêm mới dịch vụ hiển thị lên popup, lưu xuống list chi tiết', '', '2020-05-26', NULL, 5, NULL, 2, NULL, 13, 6, '2020-05-23 09:25:36+07', '2020-06-03 10:13:26+07', '2020-05-26', 100, NULL, 729, 503, 13, 14, false, '2020-06-03 10:13:26+07');
INSERT INTO public.issues VALUES (810, 2, 8, 'Call api lưu hồ sơ', '', '2020-06-03', NULL, 5, 13, 2, NULL, 13, 8, '2020-05-23 09:27:34+07', '2020-06-23 09:40:59+07', '2020-06-03', 100, NULL, 729, 503, 15, 16, false, '2020-06-23 09:40:59+07');
INSERT INTO public.issues VALUES (811, 2, 8, 'Giao diện trang chi tiết', '', '2020-05-27', NULL, 5, 10, 2, NULL, 13, 5, '2020-05-23 09:36:18+07', '2020-06-03 10:13:26+07', '2020-05-27', 100, NULL, 730, 503, 19, 20, false, '2020-06-03 10:13:26+07');
INSERT INTO public.issues VALUES (812, 2, 8, 'Api lấy thông tin hồ sơ', '', '2020-05-27', NULL, 5, NULL, 2, NULL, 13, 4, '2020-05-23 09:36:29+07', '2020-06-03 10:13:27+07', '2020-05-27', 100, NULL, 730, 503, 21, 22, false, '2020-06-03 10:13:27+07');
INSERT INTO public.issues VALUES (813, 2, 8, 'Giao diện trang chỉnh sửa', '', '2020-05-28', NULL, 5, NULL, 2, NULL, 13, 4, '2020-05-23 09:38:08+07', '2020-06-03 10:13:27+07', '2020-05-28', 100, NULL, 731, 503, 25, 26, false, '2020-06-03 10:13:27+07');
INSERT INTO public.issues VALUES (814, 2, 8, 'Call api chỉnh sửa hồ sơ', '', '2020-06-03', NULL, 5, 13, 2, NULL, 13, 5, '2020-05-23 09:38:27+07', '2020-06-23 09:40:59+07', '2020-06-03', 100, NULL, 731, 503, 27, 28, false, '2020-06-23 09:40:59+07');
INSERT INTO public.issues VALUES (815, 2, 10, 'Sửa mẫu phụ lục 4 doanh nghiệp', '', '2020-06-03', NULL, 5, NULL, 2, NULL, 5, 5, '2020-05-25 09:56:43+07', '2020-06-03 08:08:28+07', '2020-06-03', 100, NULL, NULL, 815, 1, 2, false, '2020-06-03 08:08:28+07');
INSERT INTO public.issues VALUES (816, 2, 10, 'Tách xổ số ra riêng 1 nội dung', '', '2020-05-25', NULL, 5, NULL, 2, NULL, 5, 4, '2020-05-25 10:02:09+07', '2020-06-03 08:07:06+07', '2020-05-25', 100, NULL, NULL, 816, 1, 2, false, '2020-06-03 08:07:06+07');
INSERT INTO public.issues VALUES (820, 2, 10, 'Thêm đối tượng cho BTXH, NCC', '', '2020-05-25', NULL, 5, NULL, 2, NULL, 5, 3, '2020-05-25 10:08:24+07', '2020-06-03 08:07:06+07', '2020-05-25', 100, NULL, NULL, 820, 1, 2, false, '2020-06-03 08:07:06+07');
INSERT INTO public.issues VALUES (821, 2, 10, 'call api báo cáo gửi IDDanhSach', '', '2020-05-25', NULL, 5, NULL, 2, NULL, 5, 3, '2020-05-25 10:08:45+07', '2020-06-03 08:07:07+07', '2020-05-25', 100, NULL, NULL, 821, 1, 2, false, '2020-06-03 08:07:07+07');
INSERT INTO public.issues VALUES (822, 2, 3, 'thay đổi vị trí ngồi của học viên', '', '2020-05-25', NULL, 5, 12, 2, NULL, 12, 4, '2020-05-25 16:08:36+07', '2021-02-05 09:07:54+07', '2020-05-25', 100, NULL, 260, 330, 41, 42, false, '2020-06-03 09:45:10+07');
INSERT INTO public.issues VALUES (823, 1, 3, '(lỗi)Sửa lại tính năng điểm danh', '', '2020-05-26', NULL, 5, 12, 2, NULL, 12, 5, '2020-05-26 08:10:43+07', '2021-02-05 09:07:55+07', '2020-05-26', 100, NULL, 330, 330, 80, 81, false, '2020-06-03 09:45:55+07');
INSERT INTO public.issues VALUES (824, 2, 8, 'hiển thị trạm bts theo tình trạng cấp phép', '', '2020-05-26', NULL, 5, NULL, 2, NULL, 13, 4, '2020-05-26 09:11:22+07', '2020-06-03 10:13:25+07', '2020-05-26', 100, NULL, 501, 501, 26, 27, false, '2020-06-03 10:13:25+07');
INSERT INTO public.issues VALUES (825, 2, 8, 'hiển thị vùng phủ bts theo từng loại', '', '2020-06-23', NULL, 5, NULL, 2, NULL, 13, 5, '2020-05-26 09:19:27+07', '2020-06-27 14:15:38+07', '2020-06-23', 0, NULL, 884, 884, 2, 3, false, '2020-06-27 14:15:38+07');
INSERT INTO public.issues VALUES (826, 2, 8, 'phân quyền lớp dữ liệu', '', '2020-05-26', NULL, 5, NULL, 2, NULL, 13, 3, '2020-05-26 09:21:42+07', '2020-06-03 10:13:25+07', '2020-05-26', 100, NULL, 501, 501, 28, 29, false, '2020-06-03 10:13:25+07');
INSERT INTO public.issues VALUES (827, 2, 3, 'Chỉnh sửa phiếu điểm danh(Đổi avata + thêm quốc huy)', '', '2020-05-30', NULL, 5, 12, 2, NULL, 12, 4, '2020-05-30 14:08:08+07', '2021-02-05 09:07:55+07', '2020-05-30', 100, NULL, 330, 330, 82, 83, false, '2020-06-03 09:45:55+07');
INSERT INTO public.issues VALUES (828, 2, 3, 'Sửa lại niên khóa cho lớp', '', '2020-05-30', NULL, 5, 12, 2, NULL, 12, 4, '2020-05-30 15:33:03+07', '2021-02-05 09:07:55+07', '2020-05-30', 100, NULL, 330, 330, 84, 85, false, '2020-06-03 09:45:55+07');
INSERT INTO public.issues VALUES (829, 2, 3, 'Xuất danh sách theo đơn vị với học viên đã được duyệt', '', '2020-06-08', NULL, 3, 12, 2, NULL, 12, 9, '2020-05-30 16:38:29+07', '2021-02-05 09:07:55+07', '2020-06-08', 100, NULL, 330, 330, 86, 87, false, NULL);
INSERT INTO public.issues VALUES (830, 2, 3, 'Nhập lý do khi học viên không đủ điều kiện thi', '', '2020-06-03', NULL, 3, 12, 2, NULL, 12, 5, '2020-06-01 10:02:21+07', '2021-02-05 09:07:56+07', '2020-06-03', 100, NULL, 330, 330, 88, 89, false, NULL);
INSERT INTO public.issues VALUES (831, 2, 3, 'lọc học viên để phê duyệt dự thi', '', '2020-06-05', NULL, 3, 12, 2, NULL, 12, 9, '2020-06-03 09:47:36+07', '2021-02-05 09:07:56+07', '2020-06-05', 100, NULL, 330, 330, 90, 91, false, NULL);
INSERT INTO public.issues VALUES (832, 2, 3, 'Xuất ds dự thi theo môn học, những học viên không thi phải ghi chú lý do', '', '2020-06-10', NULL, 3, 12, 2, NULL, 12, 12, '2020-06-03 09:49:47+07', '2021-02-05 09:08:01+07', '2020-06-10', 100, NULL, 744, 678, 13, 14, false, NULL);
INSERT INTO public.issues VALUES (835, 2, 3, 'Chức năng thêm mới, chỉnh sửa, xóa hệ số giảng dạy', '', '2020-06-04', NULL, 3, 12, 2, NULL, 12, 8, '2020-06-03 09:54:00+07', '2021-02-05 09:07:56+07', '2020-06-04', 100, NULL, 330, 330, 92, 93, false, NULL);
INSERT INTO public.issues VALUES (1593, 1, 4, 'Bug', '', '2020-08-03', NULL, 1, 13, 2, 6, 12, 26, '2020-07-24 11:28:33+07', '2021-02-05 08:59:03+07', '2020-07-25', 100, NULL, NULL, 1593, 1, 10, false, NULL);
INSERT INTO public.issues VALUES (839, 2, 3, 'Sửa chức năng cấu hình môn học (Thêm trường để lưu khoa cho môn) ', '', '2020-06-04', NULL, 3, 12, 2, NULL, 12, 8, '2020-06-03 09:58:45+07', '2021-02-05 09:07:56+07', '2020-06-04', 100, NULL, 330, 330, 96, 97, false, NULL);
INSERT INTO public.issues VALUES (840, 2, 3, 'Fix demo ngày 30/05/2020', '', '2020-06-08', NULL, 1, 12, 2, NULL, 6, 12, '2020-06-03 10:03:29+07', '2021-02-05 09:08:02+07', '2020-06-03', 100, NULL, NULL, 840, 1, 14, false, NULL);
INSERT INTO public.issues VALUES (841, 2, 3, 'Sửa CSDL', '', '2020-06-08', NULL, 3, 12, 2, NULL, 6, 11, '2020-06-03 10:03:53+07', '2021-02-05 12:26:29+07', '2020-06-03', 100, NULL, 840, 840, 2, 13, false, NULL);
INSERT INTO public.issues VALUES (842, 2, 3, 'Thêm vai trò tổ trưởng cho mỗi tổ', '', '2020-06-03', NULL, 3, 12, 2, NULL, 12, 4, '2020-06-03 10:04:10+07', '2021-02-05 09:07:57+07', '2020-06-03', 100, NULL, 330, 330, 98, 99, false, NULL);
INSERT INTO public.issues VALUES (843, 2, 3, 'Lưu thông tin tổ chức thi', '', '2020-06-05', NULL, 3, 12, 2, NULL, 12, 7, '2020-06-03 10:04:39+07', '2021-02-05 09:07:57+07', '2020-06-05', 100, NULL, 330, 330, 100, 101, false, NULL);
INSERT INTO public.issues VALUES (845, 2, 3, 'Quản lý niên khóa theo lớp', '<p>Bỏ bảng school_year, th&ecirc;m cột openingDate + closingDate</p>
', '2020-06-03', NULL, 3, 6, 2, NULL, 6, 1, '2020-06-03 10:07:02+07', '2020-06-03 10:07:15+07', '2020-06-03', 100, NULL, 841, 840, 3, 4, false, NULL);
INSERT INTO public.issues VALUES (846, 2, 3, 'Sửa thông tin môn học', '<ol>
	<li>Chia nhỏ danh mục c&aacute;c m&ocirc;n học.</li>
	<li>Bố tr&iacute; danh s&aacute;ch m&ocirc;n học theo m&ocirc; h&igrave;nh c&acirc;y.</li>
	<li>Bổ sung th&ecirc;m số tiết l&yacute; thuyết, thảo luận, tự học, thi.</li>
	<li>Bổ sung khoa cho c&aacute;c m&ocirc;n học.</li>
</ol>
', '2020-06-08', NULL, 3, 12, 2, NULL, 6, 5, '2020-06-03 10:14:20+07', '2021-02-05 09:08:02+07', '2020-06-08', 100, NULL, 841, 840, 5, 6, false, NULL);
INSERT INTO public.issues VALUES (847, 2, 3, 'Thêm bảng lưu thông tin buổi thi', '<p>Lưu c&aacute;c th&ocirc;ng tin về buổi thi</p>

<ol>
	<li>Lớp học</li>
	<li>M&ocirc;n học</li>
	<li>H&igrave;nh thức thi</li>
	<li>Ng&agrave;y thi</li>
	<li>Ph&ograve;ng thi</li>
</ol>
', '2020-06-03', NULL, 3, 6, 2, NULL, 6, 2, '2020-06-03 10:18:50+07', '2020-06-03 10:45:35+07', '2020-06-03', 100, NULL, 841, 840, 7, 8, false, NULL);
INSERT INTO public.issues VALUES (848, 2, 3, 'Sửa lại bảng theo dõi giờ dạy của giảng viên theo ngày', '', '2020-06-03', NULL, 3, 6, 2, NULL, 6, 2, '2020-06-03 10:24:10+07', '2020-06-03 10:45:42+07', '2020-06-03', 100, NULL, 841, 840, 9, 10, false, NULL);
INSERT INTO public.issues VALUES (851, 2, 3, 'Thêm thông tin điều kiện dự thi của học viên', '', '2020-06-03', NULL, 3, 6, 2, NULL, 6, 1, '2020-06-03 10:27:42+07', '2020-06-03 10:36:36+07', '2020-06-03', 100, NULL, 841, 840, 11, 12, false, NULL);
INSERT INTO public.issues VALUES (852, 2, 3, 'Xuất phiếu điểm danh trắng để giảng viên đánh dấu', '', '2020-06-03', NULL, 3, 6, 2, NULL, 6, 1, '2020-06-03 10:30:15+07', '2020-06-03 10:38:28+07', '2020-06-03', 100, NULL, 742, 678, 5, 6, false, NULL);
INSERT INTO public.issues VALUES (853, 2, 3, 'Xuất danh sách học viên đủ điều kiện viết khóa luận, dự thi tốt nghiệp', '<ol>
	<li>Xếp theo thứ tự điểm trung b&igrave;nh c&aacute;c m&ocirc;n học</li>
	<li>20% học vi&ecirc;n cao điểm nhất đủ điều kiện viết kh&oacute;a luận</li>
	<li>Liệt k&ecirc; danh s&aacute;ch c&aacute;c học vi&ecirc;n kh&ocirc;ng đủ điều kiện thi tốt nghiệp</li>
</ol>
', '2020-06-12', NULL, 3, 6, 2, NULL, 6, 11, '2020-06-03 10:32:35+07', '2020-06-13 14:08:14+07', '2020-06-12', 100, NULL, 678, 678, 30, 31, false, NULL);
INSERT INTO public.issues VALUES (854, 2, 3, 'Xuất sơ đồ lớp PDF, cho lựa chọn khổ giấy A3 hoặc A4', '', '2020-06-09', NULL, 3, 12, 2, NULL, 6, 11, '2020-06-03 10:33:19+07', '2021-02-05 09:08:01+07', '2020-06-09', 100, NULL, 678, 678, 32, 33, false, NULL);
INSERT INTO public.issues VALUES (855, 2, 3, 'Cho phép ẩn bớt các cột cần báo cáo trong báo cáo giờ giảng của giảng viên (11 + 12)', '', '2020-06-12', NULL, 3, 6, 2, NULL, 6, 13, '2020-06-03 10:34:25+07', '2020-06-12 17:27:45+07', '2020-06-12', 100, NULL, 678, 678, 34, 35, false, NULL);
INSERT INTO public.issues VALUES (856, 2, 3, 'Xuất báo cáo theo dõi học tập trong thời gian được chọn', '', '2020-06-08', NULL, 3, 6, 2, NULL, 6, 5, '2020-06-03 10:38:06+07', '2020-06-09 10:56:50+07', '2020-06-08', 100, NULL, 742, 678, 7, 8, false, NULL);
INSERT INTO public.issues VALUES (857, 2, 3, 'Gửi JWT token mỗi khi gửi request', '', '2020-06-03', NULL, 3, 6, 2, NULL, 6, 1, '2020-06-03 10:40:22+07', '2020-06-03 10:41:50+07', '2020-06-03', 100, NULL, 608, 608, 38, 39, false, NULL);
INSERT INTO public.issues VALUES (858, 2, 3, 'Kiểm tra quyền trên backend, trả lỗi 401 nếu không gửi jwt token', '', '2020-06-03', NULL, 3, 6, 2, NULL, 6, 1, '2020-06-03 10:41:42+07', '2020-06-03 10:41:57+07', '2020-06-03', 100, NULL, 608, 608, 40, 41, false, NULL);
INSERT INTO public.issues VALUES (859, 2, 8, 'Task còn lại', '', '2020-06-10', NULL, 5, NULL, 2, NULL, 5, 16, '2020-06-03 10:51:47+07', '2020-06-23 09:40:59+07', '2020-06-03', 100, NULL, NULL, 859, 1, 20, false, '2020-06-23 09:40:59+07');
INSERT INTO public.issues VALUES (860, 2, 8, 'Hiển thị cảnh báo trùng vị trí ở mỗi dòng của trạm', '', '2020-06-08', NULL, 5, 13, 2, NULL, 5, 6, '2020-06-03 11:10:24+07', '2020-06-23 09:40:23+07', '2020-06-08', 100, NULL, 859, 859, 2, 3, false, '2020-06-23 09:40:23+07');
INSERT INTO public.issues VALUES (861, 2, 8, 'Cho lọc theo trạng thái hồ sơ trên map', '', '2020-06-04', NULL, 5, 13, 2, NULL, 5, 5, '2020-06-03 11:10:55+07', '2020-06-23 09:40:23+07', '2020-06-04', 100, NULL, 859, 859, 4, 5, false, '2020-06-23 09:40:23+07');
INSERT INTO public.issues VALUES (862, 2, 8, 'Phúc đáp hồ sơ, cho đính kèm văn bản pháp lý', '', '2020-06-03', NULL, 5, 10, 2, NULL, 5, 5, '2020-06-03 11:11:22+07', '2020-06-23 09:40:23+07', '2020-06-03', 100, NULL, 859, 859, 6, 7, false, '2020-06-23 09:40:23+07');
INSERT INTO public.issues VALUES (863, 2, 8, 'Cho phê duyệt từ chối từng trạm, ghi rõ lý do', '', '2020-06-08', NULL, 5, 13, 2, NULL, 5, 7, '2020-06-03 11:11:58+07', '2020-06-23 09:40:24+07', '2020-06-08', 100, NULL, 859, 859, 8, 9, false, '2020-06-23 09:40:24+07');
INSERT INTO public.issues VALUES (864, 2, 8, 'Xuất file phụ lục, sau khi phê duyệt', '', '2020-06-09', NULL, 5, 10, 2, NULL, 5, 8, '2020-06-03 11:12:52+07', '2020-06-23 09:40:24+07', '2020-06-09', 100, NULL, 859, 859, 10, 11, false, '2020-06-23 09:40:24+07');
INSERT INTO public.issues VALUES (865, 2, 8, 'Cho đính kèm văn bản dành cho sở', '', '2020-06-03', NULL, 5, 10, 2, NULL, 5, 6, '2020-06-03 11:36:16+07', '2020-06-23 09:40:24+07', '2020-06-03', 100, NULL, 859, 859, 12, 13, false, '2020-06-23 09:40:24+07');
INSERT INTO public.issues VALUES (866, 2, 8, 'Hiển thị nội dung phúc đáp, lý do từ chối, trang chi tiết hồ sơ', '', '2020-06-03', NULL, 5, 10, 2, NULL, 5, 5, '2020-06-03 11:36:58+07', '2020-06-23 09:40:24+07', '2020-06-03', 100, NULL, 859, 859, 14, 15, false, '2020-06-23 09:40:24+07');
INSERT INTO public.issues VALUES (867, 2, 3, 'Chỉnh sửa chức vụ ở lớp trên sơ đồ lớp', '<p>Khi nhấn đ&uacute;p chuột v&agrave;o học vi&ecirc;n c&oacute; tr&ecirc;n sơ đồ -&gt; hiển thị dialog chỉnh sửa chức vụ tại lớp -&gt; request&nbsp;update</p>
', '2020-06-03', NULL, 3, 12, 2, NULL, 12, 3, '2020-06-03 16:37:03+07', '2021-02-05 09:07:57+07', '2020-06-03', 100, NULL, 330, 330, 102, 103, false, NULL);
INSERT INTO public.issues VALUES (868, 2, 8, 'cho phép xóa file đính kèm', '', '2020-06-04', NULL, 5, NULL, 2, NULL, 13, 5, '2020-06-04 08:50:43+07', '2020-06-23 09:40:25+07', '2020-06-04', 100, NULL, 859, 859, 16, 17, false, '2020-06-23 09:40:25+07');
INSERT INTO public.issues VALUES (869, 2, 3, '(Admin)Lọc chức năng theo tên', '', '2020-06-04', NULL, 3, 12, 2, NULL, 12, 2, '2020-06-04 09:05:15+07', '2021-02-05 09:07:57+07', '2020-06-04', 100, NULL, 330, 330, 104, 105, false, NULL);
INSERT INTO public.issues VALUES (870, 2, 1, 'Báo cáo doanh nghiệp đã tạo tk', '', '2020-06-12', NULL, 5, NULL, 2, NULL, 5, 4, '2020-06-09 15:43:01+07', '2020-06-22 11:30:02+07', '2020-06-12', 100, NULL, NULL, 870, 1, 2, false, '2020-06-22 11:30:02+07');
INSERT INTO public.issues VALUES (871, 2, 8, 'phân trang trang hồ sơ và phê duyệt', '', '2020-06-10', NULL, 5, 10, 2, NULL, 13, 4, '2020-06-10 09:12:03+07', '2020-06-23 09:40:26+07', '2020-06-10', 100, NULL, 859, 859, 18, 19, false, '2020-06-23 09:40:26+07');
INSERT INTO public.issues VALUES (872, 2, 8, 'Hoàn thiện quy trình file word', '<p>Teamview chị Nguyệt để thống nhất quy tr&igrave;nh</p>
', '2020-06-11', NULL, 5, 13, 2, NULL, 5, 3, '2020-06-10 11:00:36+07', '2020-06-23 09:40:26+07', '2020-06-11', 100, NULL, NULL, 872, 1, 2, false, '2020-06-23 09:40:26+07');
INSERT INTO public.issues VALUES (873, 2, 8, 'Xóa trống dữ liệu', '', '2020-06-11', NULL, 5, 13, 2, NULL, 5, 4, '2020-06-10 11:01:59+07', '2020-06-23 09:40:26+07', '2020-06-11', 100, NULL, NULL, 873, 1, 2, false, '2020-06-23 09:40:26+07');
INSERT INTO public.issues VALUES (874, 2, 8, 'Đưa bản đồ nền Kontum vào', '', '2020-06-12', NULL, 5, NULL, 2, NULL, 5, 3, '2020-06-10 11:02:35+07', '2020-06-23 09:40:26+07', '2020-06-12', 100, NULL, NULL, 874, 1, 2, false, '2020-06-23 09:40:26+07');
INSERT INTO public.issues VALUES (875, 2, 8, 'Đưa danh mục quận huyện/phường xã vào', '', '2020-06-12', NULL, 5, NULL, 2, NULL, 5, 3, '2020-06-10 11:03:03+07', '2020-06-23 09:40:26+07', '2020-06-12', 100, NULL, NULL, 875, 1, 2, false, '2020-06-23 09:40:26+07');
INSERT INTO public.issues VALUES (876, 2, 8, 'Nhận file dữ liệu trạm BTS', '<p>Đầu mối: c. Nguyệt</p>
', '2020-06-15', NULL, 5, NULL, 2, NULL, 5, 3, '2020-06-10 11:04:31+07', '2020-06-23 09:40:26+07', '2020-06-15', 100, NULL, NULL, 876, 1, 2, false, '2020-06-23 09:40:26+07');
INSERT INTO public.issues VALUES (877, 2, 8, 'Import dữ liệu trạm BTS', '', '2020-06-15', NULL, 5, NULL, 2, NULL, 5, 3, '2020-06-10 11:05:03+07', '2020-06-23 09:40:27+07', '2020-06-15', 100, NULL, NULL, 877, 1, 2, false, '2020-06-23 09:40:27+07');
INSERT INTO public.issues VALUES (882, 2, 8, 'Nhận file dữ liệu điểm dịch vụ', '', '2020-06-22', NULL, 5, NULL, 2, NULL, 5, 5, '2020-06-10 11:10:12+07', '2020-07-26 10:26:17+07', '2020-06-22', 100, NULL, 884, 884, 4, 5, false, '2020-07-26 10:26:17+07');
INSERT INTO public.issues VALUES (883, 2, 8, 'Import dữ liệu điểm dịch vụ', '', '2020-06-22', NULL, 5, NULL, 2, NULL, 5, 4, '2020-06-10 11:10:28+07', '2020-07-26 10:26:17+07', '2020-06-22', 100, NULL, 884, 884, 6, 7, false, '2020-07-26 10:26:17+07');
INSERT INTO public.issues VALUES (884, 2, 8, 'Task còn lại', '', '2020-06-27', NULL, 5, NULL, 2, NULL, 5, 23, '2020-06-10 11:12:32+07', '2020-07-26 10:26:29+07', '2020-06-22', 100, NULL, NULL, 884, 1, 18, false, '2020-07-26 10:26:29+07');
INSERT INTO public.issues VALUES (886, 2, 8, 'Thêm dropdown chọn phân loại điểm dịch vụ', '', '2020-06-23', NULL, 5, NULL, 2, NULL, 5, 5, '2020-06-10 14:03:55+07', '2020-07-26 10:26:17+07', '2020-06-23', 100, NULL, 884, 884, 8, 9, false, '2020-07-26 10:26:17+07');
INSERT INTO public.issues VALUES (887, 2, 3, 'Xét điều kiện dự thi của học viên sau khi tạo thông tin buổi thi', '', '2020-06-11', NULL, 3, 12, 2, NULL, 6, 5, '2020-06-10 16:34:55+07', '2021-02-05 09:07:57+07', '2020-06-10', 100, NULL, 330, 330, 106, 107, false, NULL);
INSERT INTO public.issues VALUES (888, 2, 4, 'Trang chủ', '', '2020-07-02', NULL, 5, 13, 2, NULL, 5, 26, '2020-06-15 08:29:03+07', '2020-07-08 01:18:36+07', '2020-06-19', 100, NULL, NULL, 888, 1, 16, false, '2020-07-08 01:18:36+07');
INSERT INTO public.issues VALUES (889, 2, 4, 'Load menu', '', '2020-06-19', NULL, 5, 13, 2, NULL, 5, 6, '2020-06-15 08:29:54+07', '2020-07-08 01:18:00+07', '2020-06-19', 100, NULL, 888, 888, 2, 3, false, '2020-07-08 01:18:00+07');
INSERT INTO public.issues VALUES (890, 2, 4, 'Load slider', '', '2020-07-02', NULL, 5, 13, 2, NULL, 5, 11, '2020-06-15 08:30:20+07', '2020-07-08 01:18:00+07', '2020-07-02', 100, NULL, 888, 888, 4, 5, false, '2020-07-08 01:18:00+07');
INSERT INTO public.issues VALUES (891, 2, 4, 'Load tin tức section 1', 'theo code danh mục', '2020-07-02', NULL, 5, 13, 2, NULL, 5, 11, '2020-06-15 08:30:40+07', '2020-07-08 01:18:00+07', '2020-07-02', 100, NULL, 888, 888, 6, 7, false, '2020-07-08 01:18:00+07');
INSERT INTO public.issues VALUES (892, 2, 4, 'Quản lý menu', '', '2020-06-19', NULL, 5, 10, 2, NULL, 5, 10, '2020-06-15 08:32:15+07', '2020-07-08 08:22:47+07', '2020-06-15', 100, NULL, NULL, 892, 1, 8, false, '2020-07-08 08:22:47+07');
INSERT INTO public.issues VALUES (893, 2, 4, 'Quản lý hình ảnh', '', '2020-06-20', NULL, 5, 12, 2, NULL, 5, 18, '2020-06-15 08:32:25+07', '2020-07-08 01:18:55+07', '2020-06-18', 100, NULL, NULL, 893, 1, 10, false, '2020-07-08 01:18:55+07');
INSERT INTO public.issues VALUES (894, 2, 4, 'Danh sách menu theo tree', '', '2020-06-19', NULL, 5, 10, 2, NULL, 5, 9, '2020-06-15 08:33:18+07', '2020-07-08 01:18:55+07', '2020-06-15', 100, NULL, 892, 892, 2, 3, false, '2020-07-08 01:18:55+07');
INSERT INTO public.issues VALUES (895, 2, 4, 'Thêm/xóa/sửa menu', '', '2020-06-19', NULL, 5, 10, 2, NULL, 5, 7, '2020-06-15 08:33:30+07', '2020-07-08 01:18:55+07', '2020-06-19', 100, NULL, 892, 892, 4, 5, false, '2020-07-08 01:18:55+07');
INSERT INTO public.issues VALUES (896, 2, 4, 'Nhập liệu menu như web cũ', '', '2020-06-19', NULL, 5, 10, 2, NULL, 5, 8, '2020-06-15 08:33:40+07', '2020-07-08 01:18:55+07', '2020-06-19', 100, NULL, 892, 892, 6, 7, false, '2020-07-08 01:18:55+07');
INSERT INTO public.issues VALUES (897, 2, 4, 'Danh sách hình theo danh mục', '', '2020-06-19', NULL, 5, 12, 2, NULL, 5, 10, '2020-06-15 08:42:21+07', '2020-07-08 01:18:36+07', '2020-06-18', 100, NULL, 893, 893, 2, 3, false, '2020-07-08 01:18:36+07');
INSERT INTO public.issues VALUES (898, 2, 4, 'Thêm/xóa/sửa hình', '', '2020-06-20', NULL, 5, 12, 2, NULL, 5, 10, '2020-06-15 08:42:32+07', '2020-07-08 01:18:36+07', '2020-06-20', 100, NULL, 893, 893, 4, 5, false, '2020-07-08 01:18:36+07');
INSERT INTO public.issues VALUES (899, 2, 4, 'Thêm danh mục hình slider', '', '2020-06-20', NULL, 5, 12, 2, NULL, 5, 10, '2020-06-15 08:42:54+07', '2020-07-08 01:18:36+07', '2020-06-20', 100, NULL, 893, 893, 6, 7, false, '2020-07-08 01:18:36+07');
INSERT INTO public.issues VALUES (900, 2, 4, 'Thêm danh mục hình anh hoạt động', '', '2020-06-20', NULL, 5, 12, 2, NULL, 5, 8, '2020-06-15 08:43:03+07', '2020-07-08 01:18:36+07', '2020-06-20', 100, NULL, 893, 893, 8, 9, false, '2020-07-08 01:18:36+07');
INSERT INTO public.issues VALUES (901, 2, 4, 'Load tin tức section 2', '', '2020-07-02', NULL, 5, 13, 2, NULL, 5, 7, '2020-06-15 08:46:36+07', '2020-07-08 01:18:01+07', '2020-07-02', 100, NULL, 888, 888, 8, 9, false, '2020-07-08 01:18:01+07');
INSERT INTO public.issues VALUES (902, 2, 4, 'Load mời gọi đầu tư', '', '2020-07-02', NULL, 5, 13, 2, NULL, 5, 7, '2020-06-15 08:47:04+07', '2020-07-08 01:18:01+07', '2020-07-02', 100, NULL, 888, 888, 10, 11, false, '2020-07-08 01:18:01+07');
INSERT INTO public.issues VALUES (903, 2, 4, 'Load khu kt, khu, cụm CN', '', '2020-07-02', NULL, 5, 13, 2, NULL, 5, 7, '2020-06-15 08:47:22+07', '2020-07-08 01:18:01+07', '2020-07-02', 100, NULL, 888, 888, 12, 13, false, '2020-07-08 01:18:01+07');
INSERT INTO public.issues VALUES (904, 2, 4, 'Load hình ảnh hoạt động', '', '2020-07-02', NULL, 5, 13, 2, NULL, 5, 8, '2020-06-15 08:47:34+07', '2020-07-08 01:18:01+07', '2020-07-02', 100, NULL, 888, 888, 14, 15, false, '2020-07-08 01:18:01+07');
INSERT INTO public.issues VALUES (905, 2, 4, 'Trang danh sách tin tức', '', '2020-07-02', NULL, 5, 15, 2, NULL, 5, 9, '2020-06-15 08:48:33+07', '2020-07-08 01:18:02+07', '2020-07-02', 100, NULL, NULL, 905, 1, 2, false, '2020-07-08 01:18:02+07');
INSERT INTO public.issues VALUES (906, 2, 4, 'Trang hiển thị 1 tin tức', '', '2020-06-22', NULL, 5, 15, 2, NULL, 5, 8, '2020-06-15 08:48:41+07', '2020-07-08 01:18:03+07', '2020-06-22', 100, NULL, NULL, 906, 1, 2, false, '2020-07-08 01:18:03+07');
INSERT INTO public.issues VALUES (907, 1, 3, 'Fix bug', '', '2020-06-15', NULL, 1, 12, 2, NULL, 12, 8, '2020-06-15 09:30:00+07', '2021-02-05 09:08:02+07', '2020-06-15', 100, NULL, NULL, 907, 1, 14, false, NULL);
INSERT INTO public.issues VALUES (908, 1, 3, 'Không lưu được Avatar', '', '2020-06-15', NULL, 3, 12, 2, NULL, 4, 4, '2020-06-15 09:32:02+07', '2021-02-05 12:24:57+07', '2020-06-15', 100, NULL, 907, 907, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (909, 1, 3, 'Lọc theo tổ của một lớp đã chọn nhưng xuất hiện thành viên lớp khác có trùng tên tổ', '', '2020-06-15', NULL, 3, 12, 2, NULL, 4, 3, '2020-06-15 09:32:42+07', '2021-02-05 12:24:57+07', '2020-06-15', 100, NULL, 907, 907, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (910, 1, 3, 'Chưa xuất được phiếu điểm danh.', '', '2020-06-15', NULL, 3, 12, 2, NULL, 4, 4, '2020-06-15 09:32:59+07', '2021-02-05 12:24:58+07', '2020-06-15', 100, NULL, 907, 907, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (911, 1, 3, 'Chưa xuất được Tổng hợp kết quả học tập.', '', '2020-06-15', NULL, 3, 12, 2, NULL, 4, 4, '2020-06-15 10:08:43+07', '2021-02-05 12:24:58+07', '2020-06-15', 100, NULL, 907, 907, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (1251, 2, 20, 'API lấy tên hiển thị mặc định', '', '2020-03-17', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 16:18:57+07', '2020-08-11 11:40:20+07', '2020-03-17', 100, NULL, 1248, 1248, 6, 7, false, '2020-08-11 11:40:20+07');
INSERT INTO public.issues VALUES (912, 1, 3, 'Chọn từng lớp học, danh sách học viên không load lại theo lớp, vẫn hiển thị chung trong 1 trang.', '', '2020-06-15', NULL, 3, 12, 2, NULL, 4, 4, '2020-06-15 10:09:15+07', '2021-02-05 12:24:58+07', '2020-06-15', 100, NULL, 907, 907, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (913, 1, 3, 'Giới hạn điểm VKL', '', '2020-06-15', NULL, 3, 12, 2, NULL, 4, 5, '2020-06-15 10:09:29+07', '2021-02-05 12:24:58+07', '2020-06-15', 100, NULL, 907, 907, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (914, 2, 4, 'Database & Api', '', '2020-06-20', NULL, 5, 10, 2, NULL, 5, 30, '2020-06-15 10:58:06+07', '2021-02-05 08:57:44+07', '2020-06-15', 100, NULL, NULL, 914, 1, 22, false, '2020-07-08 08:23:02+07');
INSERT INTO public.issues VALUES (915, 2, 4, 'Thiết kế database', 'Menu

DanhMucBaiViet
BaiViet

DanhMucHinhAnh
HinhAnh
', '2020-06-17', NULL, 5, 6, 2, NULL, 5, 4, '2020-06-15 10:59:46+07', '2020-07-08 01:18:56+07', '2020-06-15', 100, NULL, 914, 914, 2, 3, false, '2020-07-08 01:18:56+07');
INSERT INTO public.issues VALUES (916, 2, 4, 'Api bài viết', '', '2020-06-18', NULL, 5, 6, 2, NULL, 5, 5, '2020-06-15 10:59:58+07', '2020-07-08 01:18:56+07', '2020-06-18', 100, NULL, 914, 914, 4, 5, false, '2020-07-08 01:18:56+07');
INSERT INTO public.issues VALUES (917, 2, 4, 'Api danh mục bài viết', '', '2020-06-18', NULL, 5, 6, 2, NULL, 5, 5, '2020-06-15 11:00:04+07', '2020-07-08 01:18:56+07', '2020-06-18', 100, NULL, 914, 914, 6, 7, false, '2020-07-08 01:18:56+07');
INSERT INTO public.issues VALUES (918, 2, 4, 'Api danh mục hình ảnh', '', '2020-06-18', NULL, 5, 12, 2, NULL, 5, 5, '2020-06-15 11:00:12+07', '2020-07-08 01:18:56+07', '2020-06-18', 100, NULL, 914, 914, 8, 9, false, '2020-07-08 01:18:56+07');
INSERT INTO public.issues VALUES (919, 2, 4, 'Api hình ảnh', '', '2020-06-18', NULL, 5, 12, 2, NULL, 5, 5, '2020-06-15 11:00:20+07', '2020-07-08 01:18:56+07', '2020-06-18', 100, NULL, 914, 914, 10, 11, false, '2020-07-08 01:18:56+07');
INSERT INTO public.issues VALUES (920, 2, 4, 'Api menu', '', '2020-06-18', NULL, 5, 12, 2, NULL, 5, 5, '2020-06-15 11:00:28+07', '2020-07-08 01:18:57+07', '2020-06-18', 100, NULL, 914, 914, 12, 13, false, '2020-07-08 01:18:57+07');
INSERT INTO public.issues VALUES (921, 2, 4, 'Api getlist bài viết theo code danh mục', '', '2020-06-20', NULL, 5, 12, 2, NULL, 5, 7, '2020-06-15 11:03:01+07', '2020-07-08 01:18:57+07', '2020-06-20', 100, NULL, 914, 914, 14, 15, false, '2020-07-08 01:18:57+07');
INSERT INTO public.issues VALUES (922, 2, 4, 'Api getlist hình ảnh theo code danh mục', '', '2020-06-20', NULL, 5, 12, 2, NULL, 5, 7, '2020-06-15 11:03:20+07', '2020-07-08 01:18:57+07', '2020-06-20', 100, NULL, 914, 914, 16, 17, false, '2020-07-08 01:18:57+07');
INSERT INTO public.issues VALUES (923, 2, 4, 'Api get menu đa cấp', '', '2020-06-18', NULL, 5, 6, 2, NULL, 5, 5, '2020-06-15 11:03:42+07', '2020-07-08 01:18:57+07', '2020-06-18', 100, NULL, 914, 914, 18, 19, false, '2020-07-08 01:18:57+07');
INSERT INTO public.issues VALUES (924, 2, 4, 'Api tìm kiếm theo mã doanh nghiệp', '', '2020-08-15', NULL, 5, 6, 2, 7, 6, 23, '2020-06-17 15:19:08+07', '2020-08-08 11:08:43+07', '2020-08-10', 100, NULL, NULL, 924, 1, 2, false, '2020-08-08 11:08:43+07');
INSERT INTO public.issues VALUES (925, 2, 4, 'Api upload hinh anh', '', '2020-06-19', NULL, 5, 6, 2, NULL, 13, 6, '2020-06-18 09:42:47+07', '2020-07-08 01:18:57+07', '2020-06-19', 100, NULL, 914, 914, 20, 21, false, '2020-07-08 01:18:57+07');
INSERT INTO public.issues VALUES (926, 2, 4, 'Trả về id tài khoản mỗi khi gửi jwt token lên', '', '2020-06-20', NULL, 5, 6, 2, NULL, 6, 3, '2020-06-18 09:46:50+07', '2020-07-08 01:18:55+07', '2020-06-20', 100, NULL, 210, 210, 26, 27, false, '2020-07-08 01:18:55+07');
INSERT INTO public.issues VALUES (927, 2, 4, 'File manager', '', '2020-06-19', NULL, 5, 10, 2, NULL, 13, 7, '2020-06-18 10:25:50+07', '2021-02-05 08:58:02+07', '2020-06-18', 100, NULL, NULL, 927, 1, 6, false, '2020-07-08 01:18:57+07');
INSERT INTO public.issues VALUES (928, 2, 4, 'Danh sach hinh anh', '', '2020-06-18', NULL, 5, 10, 2, NULL, 13, 3, '2020-06-18 10:27:25+07', '2021-02-05 08:57:44+07', '2020-06-18', 100, NULL, 927, 927, 2, 3, false, '2020-07-08 01:18:37+07');
INSERT INTO public.issues VALUES (929, 2, 4, 'Them/xoa/sua', '', '2020-06-19', NULL, 5, 10, 2, NULL, 13, 6, '2020-06-18 10:27:34+07', '2021-02-05 08:57:45+07', '2020-06-19', 100, NULL, 927, 927, 4, 5, false, '2020-07-08 01:18:37+07');
INSERT INTO public.issues VALUES (930, 2, 4, 'Danh mục bài viết', '', '2020-06-18', NULL, 5, 8, 2, NULL, 5, 4, '2020-06-18 10:43:17+07', '2020-07-08 01:18:36+07', '2020-06-18', 100, NULL, 334, 334, 8, 9, false, '2020-07-08 01:18:36+07');
INSERT INTO public.issues VALUES (931, 2, 4, 'Thêm/xóa/sửa chuyên mục', '', '2020-06-19', NULL, 5, 8, 2, NULL, 5, 4, '2020-06-18 10:43:42+07', '2020-07-08 01:18:36+07', '2020-06-19', 100, NULL, 334, 334, 10, 11, false, '2020-07-08 01:18:36+07');
INSERT INTO public.issues VALUES (932, 3, 8, 'Viết hướng dẫn sử dụng', '', '2020-06-22', NULL, 5, NULL, 2, NULL, 5, 4, '2020-06-19 08:34:23+07', '2020-07-26 10:26:17+07', '2020-06-22', 100, NULL, 884, 884, 10, 11, false, '2020-07-26 10:26:17+07');
INSERT INTO public.issues VALUES (933, 2, 8, 'Tạo 9 tk huyện', '', '2020-06-23', NULL, 5, NULL, 2, NULL, 5, 4, '2020-06-23 09:35:24+07', '2020-07-26 10:26:18+07', '2020-06-23', 100, NULL, 884, 884, 12, 13, false, '2020-07-26 10:26:18+07');
INSERT INTO public.issues VALUES (934, 2, 8, 'Phân quyền tk huyện', '- Cập nhật đại lý internet công cộng

- Xem điểm phục vụ bưu chính

- Xem điểm cung cấp dịch vụ viễn thông

- Xem hệ thống cáp treo', '2020-06-23', NULL, 5, NULL, 2, NULL, 5, 6, '2020-06-23 09:37:23+07', '2020-07-26 10:26:18+07', '2020-06-23', 100, NULL, 884, 884, 14, 15, false, '2020-07-26 10:26:18+07');
INSERT INTO public.issues VALUES (936, 1, 8, 'bug', '', '2020-08-03', NULL, 5, NULL, 2, NULL, 12, 16, '2020-06-26 10:41:54+07', '2020-08-14 09:53:28+07', '2020-06-26', 100, NULL, NULL, 936, 1, 24, false, '2020-08-14 09:53:28+07');
INSERT INTO public.issues VALUES (937, 1, 8, 'Điều chỉnh width của datatable', '', '2020-06-26', NULL, 5, NULL, 2, NULL, 12, 4, '2020-06-26 10:42:53+07', '2020-07-26 10:26:18+07', '2020-06-26', 100, NULL, 936, 936, 2, 3, false, '2020-07-26 10:26:18+07');
INSERT INTO public.issues VALUES (938, 1, 8, 'Khó xác định được điểm dịch vụ or trạm bts vừa được thêm', '', '2020-06-26', NULL, 5, NULL, 2, NULL, 12, 4, '2020-06-26 10:45:54+07', '2020-07-26 10:26:18+07', '2020-06-26', 100, NULL, 936, 936, 4, 5, false, '2020-07-26 10:26:18+07');
INSERT INTO public.issues VALUES (939, 1, 8, 'menu Map: input Search click vào mũi tên không có event nào thực hiện', '', '2020-06-26', NULL, 5, 12, 2, NULL, 12, 6, '2020-06-26 10:47:30+07', '2020-07-26 10:26:18+07', '2020-06-26', 100, NULL, 936, 936, 6, 7, false, '2020-07-26 10:26:18+07');
INSERT INTO public.issues VALUES (940, 1, 8, 'Thêm mới trạm bts: Thêm tooltip "Có thể chọn vị trí trên bản đồ"', '', '2020-06-26', NULL, 5, NULL, 2, NULL, 12, 4, '2020-06-26 10:52:11+07', '2020-07-26 10:26:19+07', '2020-06-26', 100, NULL, 936, 936, 8, 9, false, '2020-07-26 10:26:19+07');
INSERT INTO public.issues VALUES (941, 1, 8, 'Thêm mới trạm BTS: sửa lại nút chọn file', '', '2020-08-03', NULL, 5, NULL, 2, 11, 12, 5, '2020-06-26 10:54:50+07', '2020-08-14 09:52:27+07', '2020-08-03', 100, NULL, 936, 936, 10, 11, false, '2020-08-14 09:52:27+07');
INSERT INTO public.issues VALUES (942, 1, 8, 'Dashboard: Điểm dịch vụ chưa có dữ liệu', '', '2020-06-26', NULL, 5, NULL, 2, NULL, 12, 4, '2020-06-26 10:55:51+07', '2020-07-26 10:26:19+07', '2020-06-26', 100, NULL, 936, 936, 12, 13, false, '2020-07-26 10:26:19+07');
INSERT INTO public.issues VALUES (943, 1, 8, 'chart Dữ liệu viễn thông DN Chưa có info tuyến cáp nổi', '', '2020-06-26', NULL, 5, NULL, 2, NULL, 12, 4, '2020-06-26 10:57:40+07', '2020-07-26 10:26:19+07', '2020-06-26', 100, NULL, 936, 936, 14, 15, false, '2020-07-26 10:26:19+07');
INSERT INTO public.issues VALUES (944, 1, 8, 'chart Tình trạng hồ sơ sai data so với list hồ sơ trong phần Phê duyệt', '', '2020-06-26', NULL, 5, 12, 2, NULL, 12, 5, '2020-06-26 10:59:00+07', '2020-07-26 10:26:19+07', '2020-06-26', 100, NULL, 936, 936, 16, 17, false, '2020-07-26 10:26:19+07');
INSERT INTO public.issues VALUES (945, 1, 8, 'area search của menu Trạm bts, cáp nổi,... thiếu danh nghiệp Gtel', '', '2020-06-26', NULL, 5, 12, 2, NULL, 12, 5, '2020-06-26 11:01:04+07', '2020-07-26 10:26:19+07', '2020-06-26', 100, NULL, 936, 936, 18, 19, false, '2020-07-26 10:26:19+07');
INSERT INTO public.issues VALUES (946, 1, 8, 'menu Điểm dịch vụ: chức năng tìm kiếm chưa tối ưu', '', '2020-06-26', NULL, 5, 12, 2, NULL, 12, 5, '2020-06-26 11:02:09+07', '2020-07-26 10:26:20+07', '2020-06-26', 100, NULL, 936, 936, 20, 21, false, '2020-07-26 10:26:20+07');
INSERT INTO public.issues VALUES (1252, 2, 20, 'API lấy id hình đại diện mặc định', '', '2020-03-14', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 16:19:44+07', '2020-08-11 11:42:02+07', '2020-03-14', 100, NULL, 1248, 1248, 8, 9, false, '2020-08-11 11:42:02+07');
INSERT INTO public.issues VALUES (947, 1, 8, 'menu Điểm dịch vụ: Khóa chỉnh sửa loại dịch vụ của tài khoản quận huyện', '', '2020-06-26', NULL, 5, 12, 2, NULL, 12, 5, '2020-06-26 11:03:05+07', '2020-07-26 10:26:20+07', '2020-06-26', 100, NULL, 936, 936, 22, 23, false, '2020-07-26 10:26:20+07');
INSERT INTO public.issues VALUES (955, 2, 8, 'Sửa trang login', 'Thay hình sở

Top Banner

https://dichvucong.kontum.gov.vn/trang-chu', '2020-06-27', NULL, 5, NULL, 2, NULL, 5, 4, '2020-06-26 15:23:28+07', '2020-07-26 10:26:18+07', '2020-06-27', 100, NULL, 884, 884, 16, 17, false, '2020-07-26 10:26:18+07');
INSERT INTO public.issues VALUES (956, 1, 8, 'Lỗi hiển thị', 'Lỗi hiển thị
![](wrongDisplayname.png)
', '2020-06-26', NULL, 5, 5, 2, NULL, 19, 6, '2020-06-26 15:26:33+07', '2020-07-26 10:26:20+07', '2020-06-26', 100, NULL, NULL, 956, 1, 2, false, '2020-07-26 10:26:20+07');
INSERT INTO public.issues VALUES (958, 2, 4, 'Link menu vào trang Khu kinh tế', '', '2020-07-02', NULL, 5, 10, 2, NULL, 5, 6, '2020-06-30 10:41:42+07', '2021-02-05 08:57:45+07', '2020-07-02', 100, NULL, NULL, 958, 1, 2, false, '2020-07-08 01:18:03+07');
INSERT INTO public.issues VALUES (959, 2, 4, 'Link menu vào trang khu công nghiệp', '', '2020-07-02', NULL, 5, 10, 2, NULL, 5, 5, '2020-06-30 10:41:55+07', '2021-02-05 08:57:45+07', '2020-07-02', 100, NULL, NULL, 959, 1, 2, false, '2020-07-08 01:18:03+07');
INSERT INTO public.issues VALUES (960, 2, 4, 'Link menu vào trang cụm công nghiệp', '', '2020-07-02', NULL, 5, 10, 2, NULL, 5, 5, '2020-06-30 10:42:04+07', '2021-02-05 08:57:45+07', '2020-07-02', 100, NULL, NULL, 960, 1, 2, false, '2020-07-08 01:18:03+07');
INSERT INTO public.issues VALUES (961, 2, 4, 'Link menu vào trang dự án mời gọi', '', '2020-07-02', NULL, 5, 10, 2, NULL, 5, 5, '2020-06-30 10:42:23+07', '2021-02-05 08:57:45+07', '2020-07-02', 100, NULL, NULL, 961, 1, 2, false, '2020-07-08 01:18:04+07');
INSERT INTO public.issues VALUES (962, 1, 4, 'Doanh nghiệp chưa load được', '', '2020-07-02', NULL, 5, 13, 2, NULL, 5, 4, '2020-07-01 08:28:13+07', '2021-02-05 09:00:11+07', '2020-07-02', 100, NULL, NULL, 962, 1, 2, false, '2020-07-08 01:18:04+07');
INSERT INTO public.issues VALUES (964, 1, 4, 'Thông tin một đối tượng: ktt,kcn, ccn bị che', '', '2020-07-02', NULL, 5, 13, 2, NULL, 5, 4, '2020-07-01 08:29:38+07', '2021-02-05 09:00:11+07', '2020-07-02', 100, NULL, NULL, 964, 1, 2, false, '2020-07-08 01:18:04+07');
INSERT INTO public.issues VALUES (965, 1, 4, 'Xuất excel chưa được', '', '2020-08-15', NULL, 3, 12, 2, 7, 5, 13, '2020-07-01 08:29:49+07', '2020-08-25 14:58:51+07', '2020-08-15', 100, NULL, NULL, 965, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (966, 1, 4, 'Khi vẽ quy hoạch, bấm chọn hình đã vẽ k được', '', '2020-08-15', NULL, 3, 12, 2, 7, 5, 14, '2020-07-01 08:31:37+07', '2020-08-25 14:58:51+07', '2020-08-15', 100, NULL, NULL, 966, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (967, 2, 4, 'Danh sách hiển thị điểm đầu tư, KKT, KCN, CCN', '', '2020-07-08', NULL, 5, 12, 2, NULL, 13, 5, '2020-07-03 08:52:55+07', '2020-08-03 08:09:05+07', '2020-07-07', 100, NULL, 1008, 1008, 2, 3, false, '2020-08-03 08:09:05+07');
INSERT INTO public.issues VALUES (968, 2, 4, 'Gắn bản đồ vào danh sách các đối tượng', '', '2020-08-26', NULL, 5, 12, 2, 13, 13, 10, '2020-07-03 08:53:52+07', '2020-08-29 08:34:00+07', '2020-08-26', 0, NULL, NULL, 968, 1, 2, false, '2020-08-29 08:34:00+07');
INSERT INTO public.issues VALUES (970, 2, 4, 'cập nhật dữ liệu menu ( tất cả click có dữ liệu) ', '', '2020-07-27', NULL, 5, 15, 2, NULL, 15, 7, '2020-07-06 08:38:37+07', '2020-08-03 08:09:31+07', '2020-07-27', 100, NULL, 1017, 1017, 2, 3, false, '2020-08-03 08:09:31+07');
INSERT INTO public.issues VALUES (971, 2, 4, 'Bỏ khung tìm kiếm trong cụm công nghiệp , khu công nghiệp', '', '2020-07-08', NULL, 5, 13, 2, NULL, 15, 6, '2020-07-06 08:39:28+07', '2021-02-05 09:00:12+07', '2020-07-08', 100, NULL, 1017, 1017, 4, 5, false, '2020-07-13 14:10:59+07');
INSERT INTO public.issues VALUES (972, 2, 4, 'cập nhật dữ liệu vào ( tổng dự án mời gọi đầu tư )', '', '2020-07-07', NULL, 5, 13, 2, NULL, 15, 5, '2020-07-06 08:46:18+07', '2021-02-05 09:00:11+07', '2020-07-06', 100, NULL, NULL, 972, 1, 2, false, '2020-07-08 08:25:02+07');
INSERT INTO public.issues VALUES (973, 2, 8, 'Hồ Sơ', '', '2020-08-05', NULL, 5, NULL, 2, 11, 4, 20, '2020-07-06 09:02:34+07', '2020-08-14 09:59:28+07', '2020-08-05', 100, NULL, NULL, 973, 1, 4, false, '2020-08-14 09:58:48+07');
INSERT INTO public.issues VALUES (974, 2, 8, 'Đo khoảng cách trạm BTS khi phê duyệt hồ sơ', '', '2020-08-17', NULL, 5, 12, 2, 12, 4, 8, '2020-07-06 09:03:12+07', '2020-08-17 09:31:43+07', '2020-08-17', 0, NULL, NULL, 974, 1, 2, false, '2020-08-17 09:31:43+07');
INSERT INTO public.issues VALUES (975, 2, 4, 'Menu thủ tục, chủ trương đầu tư bị che', '', '2020-07-27', NULL, 5, 15, 2, NULL, 5, 7, '2020-07-06 09:06:12+07', '2020-08-03 08:09:31+07', '2020-07-27', 100, NULL, 1017, 1017, 6, 7, false, '2020-08-03 08:09:31+07');
INSERT INTO public.issues VALUES (976, 2, 8, 'Đo khoảng cách trạm BTS khi phê duyệt hồ sơ.', 'Trong chức năng phê duyệt hồ sơ', '2020-08-17', NULL, 3, 12, 2, 12, 4, 11, '2020-07-06 09:07:15+07', '2020-08-17 17:09:51+07', '2020-08-17', 100, NULL, NULL, 976, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (977, 2, 8, 'Làm nổi bật các trạm BTS trong bán kính xác định với trạm BTS đang xét duyệt.', 'trong chức năng phê duyệt hồ sơ, làm nổi bật trạm bts trong bán kính 100m', '2020-08-20', NULL, 3, 12, 2, 12, 4, 13, '2020-07-06 09:07:24+07', '2020-08-20 17:04:04+07', '2020-08-20', 100, NULL, NULL, 977, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (978, 2, 8, 'Hiển thị tên doanh nghiệp trong chi tiết hồ sơ.', '', '2020-08-18', NULL, 3, NULL, 2, 12, 4, 11, '2020-07-06 09:07:29+07', '2020-08-18 15:28:40+07', '2020-08-18', 100, NULL, NULL, 978, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (979, 2, 8, 'Đưa trường doanh nghiệp lên đầu khi xem chi tiết trạm BTS trong bản đồ.', '', '2020-08-05', NULL, 5, NULL, 2, 11, 4, 7, '2020-07-06 09:08:40+07', '2020-08-14 09:52:27+07', '2020-08-05', 100, NULL, 973, 973, 2, 3, false, '2020-08-14 09:52:27+07');
INSERT INTO public.issues VALUES (980, 2, 8, 'Kiểm tra nhập đủ các điều kiện mới cho phép hoàn công', '+ Giấy phép xây dựng: Số, ngày cấp, file đính kèm.
+ Giấy kiểm định: Số/thông báo, ngày cấp, file đính kèm.
Trong list trạm BTS.
', '2020-08-19', NULL, 3, 12, 2, 12, 4, 17, '2020-07-06 09:08:59+07', '2020-08-24 08:38:06+07', '2020-08-19', 100, NULL, NULL, 980, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (981, 2, 8, 'Sở không được xóa file đính kèm trong chi tiết trạm bts (doanh nghiệp được xóa của nó)', '', '2020-08-18', NULL, 3, 12, 2, 12, 4, 16, '2020-07-06 09:09:10+07', '2020-08-18 11:09:24+07', '2020-08-18', 100, NULL, NULL, 981, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (982, 2, 8, 'Bản đồ', '', '2020-08-08', NULL, 5, NULL, 2, 11, 4, 14, '2020-07-06 09:11:55+07', '2020-08-14 09:59:28+07', '2020-08-08', 100, NULL, NULL, 982, 1, 4, false, '2020-08-14 09:58:15+07');
INSERT INTO public.issues VALUES (983, 2, 8, 'Bổ sung thêm trường truy vấn theo doanh nghiệp.', '', '2020-08-08', NULL, 5, NULL, 2, 11, 4, 8, '2020-07-06 09:12:05+07', '2020-08-14 09:52:28+07', '2020-08-08', 100, NULL, 982, 982, 2, 3, false, '2020-08-14 09:52:28+07');
INSERT INTO public.issues VALUES (984, 2, 8, 'Đối với tài khoản huyện không hiển thị trường truy vấn theo huyện/TP, thêm truy vấn theo xã, phường, thị trấn ', 'trong map. phần truy vấn', '2020-08-19', NULL, 3, NULL, 2, 12, 4, 17, '2020-07-06 09:12:14+07', '2020-08-19 15:57:28+07', '2020-08-19', 100, NULL, NULL, 984, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (985, 2, 8, 'Điểm dịch vụ', '', '2020-08-25', NULL, 3, NULL, 2, 12, 4, 14, '2020-07-06 09:12:43+07', '2020-08-26 14:22:52+07', '2020-08-19', 100, NULL, NULL, 985, 1, 6, false, NULL);
INSERT INTO public.issues VALUES (986, 2, 8, 'Bổ sung thêm trường giấy phép kinh doanh bao gồm các thông tin: số, ngày cấp, file đính kèm.', '', '2020-08-25', NULL, 3, 12, 2, 12, 4, 15, '2020-07-06 09:12:53+07', '2020-08-25 17:28:11+07', '2020-08-25', 100, NULL, 985, 985, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (987, 2, 8, 'Bổ sung lọc theo doanh nghiệp trên bảng dữ liệu.', '', '2020-08-19', NULL, 5, NULL, 2, 12, 4, 8, '2020-07-06 09:13:08+07', '2020-08-17 08:59:51+07', '2020-08-19', 0, NULL, 985, 985, 4, 5, false, '2020-08-17 08:59:51+07');
INSERT INTO public.issues VALUES (988, 2, 8, 'Tài khoản', '', '2020-08-03', NULL, 5, NULL, 2, NULL, 4, 6, '2020-07-06 09:14:54+07', '2020-08-14 09:53:22+07', '2020-08-01', 0, NULL, NULL, 988, 1, 2, false, '2020-08-14 09:53:22+07');
INSERT INTO public.issues VALUES (989, 2, 8, 'Thêm trường số điện thoại, email để các doanh nghiệp, huyện/TP cập nhật thông tin.', '', '2020-08-17', NULL, 3, NULL, 2, 12, 4, 13, '2020-07-06 09:15:27+07', '2020-08-17 17:08:48+07', '2020-08-17', 100, NULL, NULL, 989, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (990, 2, 8, 'Doanh nghiệp', '', '2020-08-25', NULL, 1, NULL, 2, 12, 4, 20, '2020-07-06 09:17:38+07', '2020-08-25 16:41:12+07', '2020-08-20', 83, NULL, NULL, 990, 1, 14, false, NULL);
INSERT INTO public.issues VALUES (991, 2, 8, 'Đánh dấu * đối với các thông tin bắt buộc khi thêm trạm BTS trong khởi tạo hồ sơ.', '', '2020-08-20', NULL, 3, NULL, 2, 12, 4, 10, '2020-07-06 09:17:54+07', '2020-08-18 15:54:51+07', '2020-08-20', 100, NULL, 990, 990, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (992, 2, 8, 'Quy trình ký số của doanh nghiệp phức tạp, khác nhau -> dùng hệ thống ký số của doanh nghiệp để ký sau đó upload vào phần mềm.', 'bỏ chức năng kí số, thay bằng nút lưu và kiểm tra có file pdf', '2020-08-24', NULL, 3, 12, 2, 12, 4, 14, '2020-07-06 09:18:07+07', '2020-08-24 17:03:24+07', '2020-08-24', 100, NULL, 990, 990, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (993, 2, 4, 'Thêm filter cho datatable quản trị.', '', '2020-07-06', NULL, 5, 13, 2, NULL, 10, 5, '2020-07-06 09:18:11+07', '2021-02-05 09:00:12+07', '2020-07-06', 100, NULL, 1017, 1017, 8, 9, false, '2020-07-13 14:10:59+07');
INSERT INTO public.issues VALUES (994, 2, 8, 'Hồ sơ khi di dời trạm BTS.', '', '2020-08-25', NULL, 1, 12, 2, 12, 4, 10, '2020-07-06 09:18:16+07', '2020-08-24 15:47:29+07', '2020-08-25', 0, NULL, 990, 990, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (995, 2, 4, 'Phân trang cho datatable quản trị.', '', '2020-08-26', NULL, 5, 10, 2, 13, 10, 14, '2020-07-06 09:18:37+07', '2020-08-29 08:34:15+07', '2020-08-26', 0, NULL, NULL, 995, 1, 2, false, '2020-08-29 08:34:15+07');
INSERT INTO public.issues VALUES (996, 2, 8, 'Bổ sung thông tin khả năng dùng chung cho trạm BTS:', '+ Trạm BTS có khả năng dùng chung hay không.
+ Khi doanh nghiệp khác muốn dùng chung (thuộc doanh nghiệp, tọa độ, loại (nhà, trụ, tất cả).', '2020-08-25', NULL, 3, 12, 2, 12, 4, 11, '2020-07-06 09:19:20+07', '2020-08-25 16:41:12+07', '2020-08-25', 100, NULL, 990, 990, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (997, 2, 8, 'Thay trường góc ngẩn bằng số lượng ăn ten phát.', '', '2020-08-21', NULL, 3, NULL, 2, 12, 4, 11, '2020-07-06 09:20:08+07', '2020-08-18 15:54:51+07', '2020-08-21', 100, NULL, 990, 990, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (998, 2, 8, 'Chi tiết hồ sơ: đổi icon tương ứng với tình trạng cấp phép trong phần bản đồ.', '', '2020-08-21', NULL, 3, 12, 2, 12, 4, 9, '2020-07-06 09:20:20+07', '2020-08-20 16:47:29+07', '2020-08-21', 100, NULL, 990, 990, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (999, 2, 8, 'Loại dịch vụ đại lý internet công cộng chia làm hai loại: điểm cung cấp trò chơi điện tử và điểm cung cấp internet.', '', '2020-08-22', NULL, 3, NULL, 2, 12, 4, 10, '2020-07-06 09:20:34+07', '2020-08-19 09:42:37+07', '2020-08-22', 100, NULL, NULL, 999, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1000, 2, 4, 'Sửa header datatable.', '', '2020-07-07', NULL, 5, 13, 2, NULL, 10, 3, '2020-07-06 17:01:06+07', '2021-02-05 09:00:11+07', '2020-07-07', 100, NULL, NULL, 1000, 1, 2, false, '2020-07-08 08:25:02+07');
INSERT INTO public.issues VALUES (1001, 1, 4, 'Thêm mới chưa được', '', '2020-07-08', NULL, 5, 13, 2, NULL, 13, 13, '2020-07-07 08:49:56+07', '2020-08-03 08:09:29+07', '2020-07-07', 100, NULL, 1008, 1008, 4, 13, false, '2020-08-03 08:09:29+07');
INSERT INTO public.issues VALUES (1002, 1, 4, 'Thêm mới khu kinh tế', '', '2020-07-08', NULL, 5, 13, 2, NULL, 13, 5, '2020-07-07 11:09:31+07', '2020-08-03 08:09:05+07', '2020-07-07', 100, NULL, 1001, 1008, 5, 6, false, '2020-08-03 08:09:05+07');
INSERT INTO public.issues VALUES (1003, 1, 4, 'Thêm khu công nghiệp', '', '2020-07-08', NULL, 5, 13, 2, NULL, 13, 8, '2020-07-07 11:11:03+07', '2020-08-03 08:09:05+07', '2020-07-07', 100, NULL, 1001, 1008, 7, 8, false, '2020-08-03 08:09:05+07');
INSERT INTO public.issues VALUES (1004, 1, 4, 'Thêm cụm công nghiệp', '', '2020-07-08', NULL, 5, 13, 2, NULL, 13, 4, '2020-07-07 11:11:49+07', '2020-08-03 08:09:06+07', '2020-07-07', 100, NULL, 1001, 1008, 9, 10, false, '2020-08-03 08:09:06+07');
INSERT INTO public.issues VALUES (1005, 1, 4, 'Thêm điểm đầu tư', '', '2020-07-08', NULL, 5, 13, 2, NULL, 13, 4, '2020-07-07 11:12:07+07', '2020-08-03 08:09:06+07', '2020-07-07', 100, NULL, 1001, 1008, 11, 12, false, '2020-08-03 08:09:06+07');
INSERT INTO public.issues VALUES (1006, 2, 4, 'tìm kiếm, lọc danh sách điểm đầu tư, KKT, KCN, CCN', '', '2020-07-08', NULL, 5, 13, 2, NULL, 13, 6, '2020-07-07 11:26:29+07', '2020-08-03 08:09:06+07', '2020-07-07', 100, NULL, 1008, 1008, 14, 15, false, '2020-08-03 08:09:06+07');
INSERT INTO public.issues VALUES (1007, 2, 4, 'Xem, sửa, xóa dữ liệu trên danh sách điểm đầu tư, KKT, KCN, CCN', '', '2020-07-08', NULL, 5, 13, 2, NULL, 13, 6, '2020-07-07 11:29:18+07', '2020-08-03 08:09:06+07', '2020-07-07', 100, NULL, 1008, 1008, 16, 17, false, '2020-08-03 08:09:06+07');
INSERT INTO public.issues VALUES (1008, 2, 4, 'Quản lý nội dung đề tài', '', '2020-07-22', NULL, 5, 13, 2, 7, 13, 81, '2020-07-07 11:30:58+07', '2021-02-05 08:59:02+07', '2020-07-07', 100, NULL, NULL, 1008, 1, 80, false, '2020-08-08 11:09:06+07');
INSERT INTO public.issues VALUES (1009, 2, 4, 'Bản đồ', '', '2020-07-18', NULL, 5, 13, 2, 7, 13, 22, '2020-07-07 11:33:35+07', '2021-02-05 08:59:02+07', '2020-07-07', 100, NULL, 1008, 1008, 18, 29, false, '2020-08-08 11:09:04+07');
INSERT INTO public.issues VALUES (1010, 2, 4, 'api tìm kiếm', '', '2020-07-08', NULL, 5, 6, 2, NULL, 13, 4, '2020-07-07 11:34:25+07', '2020-08-03 08:09:06+07', '2020-07-07', 100, NULL, 1009, 1008, 19, 20, false, '2020-08-03 08:09:06+07');
INSERT INTO public.issues VALUES (1011, 2, 4, 'Tìm kiếm cơ bản', '', '2020-07-18', NULL, 5, 13, 2, NULL, 13, 8, '2020-07-07 11:35:18+07', '2020-08-03 08:09:06+07', '2020-07-16', 100, NULL, 1009, 1008, 21, 22, false, '2020-08-03 08:09:06+07');
INSERT INTO public.issues VALUES (1013, 1, 3, 'Fix một vài chỗ(7/7)', '', '2020-07-11', NULL, 1, 12, 2, NULL, 12, 10, '2020-07-08 08:07:55+07', '2021-02-05 09:08:03+07', '2020-07-08', 100, NULL, NULL, 1013, 1, 10, false, NULL);
INSERT INTO public.issues VALUES (1014, 1, 3, 'Bỏ ràng buộc ở các form', '', '2020-07-08', NULL, 3, 12, 2, NULL, 12, 4, '2020-07-08 08:08:23+07', '2021-02-05 09:08:04+07', '2020-07-08', 100, NULL, 1013, 1013, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1015, 1, 3, 'Sửa lại chức năng nhập giờ giảng cho giảng viên', '', '2020-07-08', NULL, 3, 12, 2, NULL, 12, 4, '2020-07-08 08:08:58+07', '2021-02-05 09:08:04+07', '2020-07-08', 100, NULL, 1013, 1013, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1016, 1, 3, 'Sửa css cho báo cáo kết quả điểm', '', '2020-07-08', NULL, 3, 12, 2, NULL, 12, 4, '2020-07-08 08:09:17+07', '2021-02-05 09:08:04+07', '2020-07-08', 100, NULL, 1013, 1013, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1017, 2, 4, 'Task còn lại CMS', '', '2020-07-27', NULL, 5, 13, 2, 6, 5, 19, '2020-07-08 08:24:36+07', '2021-02-05 08:59:02+07', '2020-07-06', 100, NULL, NULL, 1017, 1, 12, false, '2020-08-12 08:53:22+07');
INSERT INTO public.issues VALUES (1018, 2, 4, 'Doanh nghiệp', '', '2020-07-22', NULL, 5, 13, 2, NULL, 5, 36, '2020-07-09 08:10:56+07', '2021-02-05 09:00:11+07', '2020-07-13', 100, NULL, 1008, 1008, 30, 51, false, '2020-08-03 08:10:22+07');
INSERT INTO public.issues VALUES (1019, 2, 4, 'Điểm mời gọi đầu tư', '', '2020-07-20', NULL, 5, 13, 2, 7, 5, 40, '2020-07-09 08:11:31+07', '2021-02-05 08:59:02+07', '2020-07-09', 100, NULL, 1008, 1008, 52, 79, false, '2020-08-08 11:09:05+07');
INSERT INTO public.issues VALUES (1020, 2, 4, 'Trang danh sách', 'Tìm kiếm: tên doanh nghiệp, Quốc gia, Chọn KCN, CCN', '2020-07-13', NULL, 5, 10, 2, NULL, 5, 6, '2020-07-09 08:13:51+07', '2020-08-03 08:09:30+07', '2020-07-13', 100, NULL, 1018, 1008, 31, 32, false, '2020-08-03 08:09:30+07');
INSERT INTO public.issues VALUES (1021, 2, 4, 'Danh mục quốc gia', '', '2020-07-14', NULL, 5, 10, 2, NULL, 5, 10, '2020-07-09 08:14:05+07', '2021-02-05 08:59:45+07', '2020-07-14', 100, NULL, 1103, 1103, 2, 3, false, '2020-08-03 08:10:03+07');
INSERT INTO public.issues VALUES (1022, 2, 4, 'Trang thêm mới', '', '2020-07-18', NULL, 5, 10, 2, NULL, 5, 9, '2020-07-09 08:14:32+07', '2020-08-03 08:09:30+07', '2020-07-14', 100, NULL, 1018, 1008, 33, 34, false, '2020-08-03 08:09:30+07');
INSERT INTO public.issues VALUES (1023, 2, 4, 'Trang chi tiết doanh nghiệp', '- Có load danh sách thông tin đầu tư', '2020-07-17', NULL, 5, 13, 2, NULL, 5, 9, '2020-07-09 08:15:02+07', '2021-02-05 09:00:11+07', '2020-07-16', 100, NULL, 1018, 1008, 35, 36, false, '2020-08-03 08:09:30+07');
INSERT INTO public.issues VALUES (1024, 2, 4, 'Trang danh sách điểm mời gọi', '', '2020-07-09', NULL, 5, 8, 2, NULL, 5, 6, '2020-07-09 08:16:12+07', '2020-08-03 08:09:07+07', '2020-07-09', 100, NULL, 1019, 1008, 53, 54, false, '2020-08-03 08:09:07+07');
INSERT INTO public.issues VALUES (1025, 2, 4, 'Trang thêm mới', '', '2020-07-16', NULL, 5, 8, 2, NULL, 5, 10, '2020-07-09 08:16:27+07', '2020-08-03 08:09:07+07', '2020-07-13', 100, NULL, 1019, 1008, 55, 56, false, '2020-08-03 08:09:07+07');
INSERT INTO public.issues VALUES (1026, 2, 4, 'Trang chi tiết điểm mời gọi', '', '2020-07-10', NULL, 5, 15, 2, NULL, 5, 5, '2020-07-09 08:16:43+07', '2020-08-03 08:09:07+07', '2020-07-10', 100, NULL, 1019, 1008, 57, 58, false, '2020-08-03 08:09:07+07');
INSERT INTO public.issues VALUES (1027, 2, 4, 'List quy hoạch của ĐMG', '- Nằm trong trang chi tiết ĐMG

- Liệt kê danh sách

- Bấm vào 1 QH sẽ hiển thị trên bản đồ

- Tìm theo mã QH', '2020-07-16', NULL, 5, 15, 2, NULL, 5, 8, '2020-07-09 08:23:45+07', '2020-08-03 08:09:08+07', '2020-07-15', 100, NULL, 1019, 1008, 59, 60, false, '2020-08-03 08:09:08+07');
INSERT INTO public.issues VALUES (1028, 2, 4, 'Thêm mới 1 QH', '- Bên trái là thông tin

- Bên phải là bản đồ

- Vẽ ranh quy hoạch', '2020-07-18', NULL, 5, 15, 2, NULL, 5, 8, '2020-07-09 08:24:45+07', '2020-08-03 08:09:08+07', '2020-07-17', 100, NULL, 1019, 1008, 61, 62, false, '2020-08-03 08:09:08+07');
INSERT INTO public.issues VALUES (1029, 2, 4, 'List thông tin đầu tư của ĐMG', '', '2020-07-17', NULL, 5, 12, 2, NULL, 5, 9, '2020-07-09 08:25:04+07', '2020-08-03 08:09:08+07', '2020-07-13', 100, NULL, 1019, 1008, 63, 64, false, '2020-08-03 08:09:08+07');
INSERT INTO public.issues VALUES (1030, 2, 4, 'Thêm mới thông tin thuê (đầu tư)', '- Chọn doanh nghiệp hiển thị popup, không có doanh nghiệp thì thêm mới

- Chọn mã QH: có thể chọn từ danh sách, hoặc bấm vào bản đồ đề lấy mã', '2020-07-18', NULL, 5, 12, 2, NULL, 5, 9, '2020-07-09 08:26:29+07', '2020-08-03 08:09:08+07', '2020-07-17', 100, NULL, 1019, 1008, 65, 66, false, '2020-08-03 08:09:08+07');
INSERT INTO public.issues VALUES (1031, 2, 4, 'Danh mục huyện/tp', '', '2020-07-15', NULL, 5, 10, 2, NULL, 5, 12, '2020-07-09 08:28:38+07', '2021-02-05 08:59:45+07', '2020-07-15', 100, NULL, 1103, 1103, 4, 5, false, '2020-08-03 08:10:03+07');
INSERT INTO public.issues VALUES (1034, 2, 4, 'Danh mục đơn vị tính', '', '2020-07-14', NULL, 5, 10, 2, NULL, 5, 9, '2020-07-09 08:29:22+07', '2021-02-05 08:59:45+07', '2020-07-14', 100, NULL, 1103, 1103, 6, 7, false, '2020-08-03 08:10:03+07');
INSERT INTO public.issues VALUES (1035, 2, 4, 'Dashboard', '', '2020-07-18', NULL, 5, 13, 2, NULL, 5, 16, '2020-07-09 08:30:09+07', '2021-02-05 09:00:12+07', '2020-07-14', 100, NULL, NULL, 1035, 1, 16, false, '2020-08-03 08:10:22+07');
INSERT INTO public.issues VALUES (1036, 2, 4, 'Bao nhiêu Khu kinh tế', '', '2020-07-14', NULL, 5, 13, 2, NULL, 5, 9, '2020-07-09 08:31:03+07', '2020-08-06 10:20:33+07', '2020-07-14', 100, NULL, 1035, 1035, 2, 3, false, '2020-08-03 08:09:44+07');
INSERT INTO public.issues VALUES (1037, 2, 4, 'Bao nhiêu Khu công nghiệp', 'Trong đó:

- Diện tích đã thuê

- Diện tích còn trống

- Tỉ lệ lấp đầy', '2020-07-15', NULL, 5, 13, 2, NULL, 5, 7, '2020-07-09 08:31:37+07', '2020-08-03 08:09:44+07', '2020-07-15', 100, NULL, 1035, 1035, 4, 5, false, '2020-08-03 08:09:44+07');
INSERT INTO public.issues VALUES (1038, 2, 4, 'Bao nhiêu Cụm công nghiệp', 'Trong đó:

- Diện tích đã thuê

- Diện tích còn trống

- Tỉ lệ lấp đầy', '2020-07-15', NULL, 5, 13, 2, NULL, 5, 7, '2020-07-09 08:31:45+07', '2020-08-03 08:09:44+07', '2020-07-15', 100, NULL, 1035, 1035, 6, 7, false, '2020-08-03 08:09:44+07');
INSERT INTO public.issues VALUES (1039, 2, 4, 'Bao nhiêu Điểm đang mời gọi', '- Top 5 điểm mời gọi hot nhất

- Biểu đồ phần trăm theo lĩnh vực đầu tư', '2020-07-16', NULL, 5, 13, 2, NULL, 5, 5, '2020-07-09 08:31:59+07', '2020-07-16 08:44:42+07', '2020-07-16', 0, NULL, 1035, 1035, 8, 9, false, '2020-07-16 08:44:42+07');
INSERT INTO public.issues VALUES (1040, 2, 4, 'Bao nhiêu Doanh nghiệp đã đầu tư', 'Trong đó:

- Trong nước chiếm bao nhiêu?

- Nước ngoài chiếm bao nhiêu?', '2020-07-16', NULL, 5, 13, 2, NULL, 5, 9, '2020-07-09 08:32:17+07', '2021-02-05 09:00:12+07', '2020-07-16', 100, NULL, 1035, 1035, 10, 11, false, '2020-08-03 08:09:45+07');
INSERT INTO public.issues VALUES (1041, 2, 4, 'Tổng số vốn đã kêu gọi', 'Trong nước chiếm bao nhiêu?

Nước ngoài chiếm bao nhiêu?', '2020-07-17', NULL, 5, 13, 2, NULL, 5, 9, '2020-07-09 08:32:37+07', '2021-02-05 09:00:12+07', '2020-07-17', 100, NULL, 1035, 1035, 12, 13, false, '2020-08-03 08:09:45+07');
INSERT INTO public.issues VALUES (1042, 2, 4, 'Tổng vốn nước ngoài đầu tư', 'Hàn Quốc bao nhiêu?

Nhật Bản bao nhiêu?

...?', '2020-07-18', NULL, 5, 13, 2, NULL, 5, 9, '2020-07-09 08:32:52+07', '2021-02-05 09:00:12+07', '2020-07-18', 100, NULL, 1035, 1035, 14, 15, false, '2020-08-03 08:09:45+07');
INSERT INTO public.issues VALUES (1044, 2, 11, 'Publish api', '- Xóa bảng của GIS, bảng k dùng của bcvt

- Build model

- Publish và ghi link api vào wiki', '2020-07-13', NULL, 5, 19, 2, 1, 5, 11, '2020-07-10 08:49:08+07', '2020-08-07 16:41:30+07', '2020-07-13', 100, NULL, 1387, 1387, 2, 3, false, '2020-08-07 16:41:30+07');
INSERT INTO public.issues VALUES (1046, 2, 11, 'Danh mục', '', '2020-07-29', NULL, 5, NULL, 2, 1, 5, 44, '2020-07-10 08:49:52+07', '2020-08-07 16:43:23+07', '2020-07-13', 100, NULL, NULL, 1046, 1, 32, false, '2020-08-07 16:43:23+07');
INSERT INTO public.issues VALUES (1047, 2, 11, 'Số liệu quan trắc tự động', '', '2020-07-29', NULL, 5, NULL, 2, 1, 5, 27, '2020-07-10 08:50:20+07', '2020-08-07 16:42:37+07', '2020-07-24', 100, NULL, NULL, 1047, 1, 10, false, '2020-08-07 16:42:37+07');
INSERT INTO public.issues VALUES (1049, 2, 11, 'Theo dõi QT trên bản đồ', '', '2020-07-29', NULL, 5, NULL, 2, 1, 5, 39, '2020-07-10 08:53:14+07', '2020-08-07 16:43:12+07', '2020-07-01', 100, NULL, NULL, 1049, 1, 26, false, '2020-08-07 16:43:12+07');
INSERT INTO public.issues VALUES (1050, 2, 3, 'Chức năng nhập giờ giảng chuẩn của giảng viên', '', '2020-07-11', NULL, 3, 12, 2, NULL, 12, 4, '2020-07-11 09:20:45+07', '2021-02-05 09:08:04+07', '2020-07-11', 100, NULL, 1013, 1013, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (1051, 1, 14, 'Giao diện trang chủ', '', '2020-08-05', NULL, 1, 17, 3, NULL, 4, 40, '2020-07-13 09:21:26+07', '2020-08-15 11:18:38+07', '2020-06-01', 80, NULL, NULL, 1051, 1, 58, false, NULL);
INSERT INTO public.issues VALUES (1052, 1, 14, 'Tìm kiếm', '', '2020-08-05', NULL, 1, 17, 2, NULL, 4, 17, '2020-07-13 09:22:57+07', '2020-08-15 10:54:08+07', '2020-07-08', 67, NULL, 1051, 1051, 2, 21, false, NULL);
INSERT INTO public.issues VALUES (1053, 1, 14, 'bổ sung các tham số tìm kiếm Giá(theo dạng kéo giống kích thước)', '', '2020-07-13', NULL, 1, 17, 2, NULL, 4, 2, '2020-07-13 09:24:21+07', '2020-07-13 09:47:00+07', '2020-07-08', 0, NULL, 1052, 1051, 3, 4, false, NULL);
INSERT INTO public.issues VALUES (1054, 1, 14, 'bổ sung đánh giá( 1-7 sao)', '', '2020-07-16', NULL, 3, 17, 2, NULL, 4, 4, '2020-07-13 09:25:24+07', '2020-08-15 10:54:07+07', '2020-07-13', 100, NULL, 1052, 1051, 5, 6, false, NULL);
INSERT INTO public.issues VALUES (1055, 1, 14, 'bổ sung hình thức(đấu giá, trả giá, bán trực tiếp', '', '2020-07-16', NULL, 3, 17, 2, NULL, 4, 3, '2020-07-13 09:25:58+07', '2020-08-15 10:54:07+07', '2020-07-13', 100, NULL, 1052, 1051, 7, 8, false, NULL);
INSERT INTO public.issues VALUES (1056, 1, 14, 'bổ sung hình cá khi chọn loại cá - chỉ dành cho đấu giá cá', '', '2020-07-18', NULL, 3, 17, 2, NULL, 4, 3, '2020-07-13 09:31:07+07', '2020-08-15 10:54:07+07', '2020-07-13', 100, NULL, 1052, 1051, 9, 10, false, NULL);
INSERT INTO public.issues VALUES (1057, 1, 14, 'bổ sung tìm kiếm theo chứng nhận(có hoặc không có)', '', '2020-07-16', NULL, 1, 17, 2, NULL, 4, 2, '2020-07-13 09:31:54+07', '2020-08-15 08:04:06+07', '2020-07-13', 0, NULL, 1052, 1051, 11, 12, false, NULL);
INSERT INTO public.issues VALUES (1058, 1, 14, 'dòng kích thước nên để thang từ 0-100(bước thang là 5) và bổ sung cm(kích thước – cm)', '', '2020-07-15', NULL, 3, 17, 2, NULL, 4, 4, '2020-07-13 09:32:34+07', '2020-08-15 10:54:08+07', '2020-07-13', 100, NULL, 1052, 1051, 13, 14, false, NULL);
INSERT INTO public.issues VALUES (1059, 1, 14, 'dòng năm sinh bổ sung thêm tháng, chọn từ 0-120 tháng, bước nhảy là 3', '', '2020-07-14', NULL, 3, 17, 2, NULL, 4, 3, '2020-07-13 09:34:37+07', '2020-08-15 10:54:08+07', '2020-07-13', 100, NULL, 1052, 1051, 15, 16, false, NULL);
INSERT INTO public.issues VALUES (1060, 1, 14, 'Dánh sách sản phẩm', '', '2020-07-24', NULL, 1, 17, 2, NULL, 4, 11, '2020-07-13 09:36:42+07', '2020-08-15 10:54:09+07', '2020-07-13', 100, NULL, 1051, 1051, 22, 33, false, NULL);
INSERT INTO public.issues VALUES (1061, 1, 14, 'Hình cá vẫn chưa hiển thị đủ hình.', '', '2020-07-14', NULL, 3, 17, 2, NULL, 4, 3, '2020-07-13 09:37:29+07', '2020-08-15 10:54:08+07', '2020-07-13', 100, NULL, 1060, 1051, 23, 24, false, NULL);
INSERT INTO public.issues VALUES (1062, 1, 14, 'Hình đầu tiên chưa rõ nghĩa', 'Hình đầu tiên chưa rõ nghĩa: theo hình đầu tiên(sản phẩm nổi bật hôm trước), thì đang hiểu là cá sắp đấu giá, tuy nhiên chưa có câu thời gian dự kiến bắt đầu và hiển thị thời gian còn lại.', '2020-07-16', NULL, 3, 17, 2, NULL, 4, 3, '2020-07-13 09:38:11+07', '2020-08-15 10:54:08+07', '2020-07-13', 100, NULL, 1060, 1051, 25, 26, false, NULL);
INSERT INTO public.issues VALUES (1063, 1, 14, 'bổ sung view trên hình: kích thước, giới tính(nếu không xác định thì để biểu tượng đực và cái), loại hình(nếu đâu giá gắn hình cái búa đấu giá, các loại bán trực tiếp và trả giá thì dùng chữ trả giá, bán trực tiếp), gắn số lượngsao-do người bán gắn.', 'bổ sung view trên hình: kích thước, giới tính(nếu không xác định thì để biểu tượng đực và cái), loại hình(nếu đâu giá gắn hình cái búa đấu giá, các loại bán trực tiếp và trả giá thì dùng chữ trả giá, bán trực tiếp), gắn số lượngsao-do người bán gắn.', '2020-07-14', NULL, 3, 17, 2, NULL, 4, 3, '2020-07-13 09:38:44+07', '2020-08-15 10:54:09+07', '2020-07-13', 100, NULL, 1060, 1051, 27, 28, false, NULL);
INSERT INTO public.issues VALUES (1064, 1, 14, 'Sửa tên ''danh sách sắp diễn ra''  -> ''Dòng danh sách đấu giá sắp diễn ra''', '', '2020-07-13', NULL, 3, 17, 2, NULL, 4, 3, '2020-07-13 09:39:52+07', '2020-08-15 10:54:09+07', '2020-07-13', 100, NULL, 1060, 1051, 29, 30, false, NULL);
INSERT INTO public.issues VALUES (1065, 1, 14, 'Chưa có dòng cá nổi bật: như cá được trả giá nhiều nhất, cá được nhiều người yêu thích nhất, cá gần hết thời gian đấu giá/trả giá; cá mới kết thú', 'Chưa có dòng cá nổi bật: như cá được trả giá nhiều nhất, cá được nhiều người yêu thích nhất, cá gần hết thời gian đấu giá/trả giá; cá mới kết thú', '2020-07-24', NULL, 3, 17, 2, NULL, 4, 3, '2020-07-13 09:41:09+07', '2020-08-15 10:54:09+07', '2020-07-20', 100, NULL, 1060, 1051, 31, 32, false, NULL);
INSERT INTO public.issues VALUES (1066, 1, 14, 'Giao diện trang sub Tìm kiếm - Đấu giá', '', '2020-08-05', NULL, 3, 17, 2, NULL, 4, 6, '2020-07-13 09:41:57+07', '2020-08-15 10:54:10+07', '2020-07-20', 50, NULL, NULL, 1066, 1, 6, false, NULL);
INSERT INTO public.issues VALUES (1067, 1, 14, 'Làm bộ lọc filter cho cho tìm kiếm - nằm ngang', '', '2020-07-25', NULL, 3, 17, 2, NULL, 4, 4, '2020-07-13 09:42:34+07', '2020-08-15 10:54:10+07', '2020-07-20', 100, NULL, 1066, 1066, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1068, 1, 14, 'Sắp xếp: Giá, thời gian đăng, thời gian gần kết thúc , kích thước, yêu thích, nhiều người tham gia trả giá-đấu giá,...(Nút sắp xếp dưới nút tìm kiếm)', '', '2020-07-22', NULL, 3, 17, 2, NULL, 4, 3, '2020-07-13 09:43:12+07', '2020-08-15 10:54:08+07', '2020-07-17', 100, NULL, 1052, 1051, 17, 18, false, NULL);
INSERT INTO public.issues VALUES (1069, 2, 14, 'Hình thức Bán trực tiếp - bổ sung nút mua hàng', '', '2020-07-21', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-13 09:48:37+07', '2020-08-15 10:54:10+07', '2020-07-20', 100, NULL, NULL, 1069, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1070, 2, 14, 'Hình thức Trả giá - bổ sung nút trả giá', '', '2020-07-23', NULL, 1, 17, 2, NULL, 4, 0, '2020-07-13 09:50:24+07', '2020-07-13 09:50:24+07', '2020-07-23', 0, NULL, NULL, 1070, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1071, 1, 14, 'Trang chi tiết', '', '2020-08-01', NULL, 1, 17, 3, NULL, 4, 39, '2020-07-13 09:51:20+07', '2020-08-15 11:22:38+07', '2020-06-12', 73, NULL, NULL, 1071, 1, 64, false, NULL);
INSERT INTO public.issues VALUES (1072, 1, 14, 'Chứng chỉ cần hiển thị full kích thước - click chuột vào zoom ra màn hình', '', '2020-07-27', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-13 09:53:03+07', '2020-08-15 10:54:10+07', '2020-07-27', 100, NULL, 1071, 1071, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1073, 1, 14, 'Khi bấm vào hình cá view hình cá to ra - tương tự như các chứng chỉ', '', '2020-07-28', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-13 09:53:48+07', '2020-08-15 10:54:10+07', '2020-07-27', 100, NULL, 1071, 1071, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1074, 1, 14, 'Chưa có nút share facebookcho cá( khi share hiển thị như hình của chính cá đó hiển thị ở trang chủ)', '', '2020-07-29', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-13 09:54:28+07', '2020-07-17 13:52:52+07', '2020-07-27', 0, NULL, 1071, 1071, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1075, 1, 14, 'Kẻ bảng, thay đổi cấu trúc chỗ danh sách đặt BID, hiển thị ngày tháng theo định dạng ''dd/MM/yyyy, hh:mm:ss''', '', '2020-07-27', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-13 09:55:55+07', '2020-08-15 10:54:10+07', '2020-07-27', 100, NULL, 1071, 1071, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (1076, 2, 14, 'Hiển thị số yêu thích của cá đó(cần hiển thị gần lượt xem)', '', '2020-07-29', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-13 09:56:39+07', '2020-08-15 10:54:10+07', '2020-07-29', 100, NULL, 1071, 1071, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (1077, 2, 14, 'Thêm các hàng bên dưới bình luận trong sub: Tiêu đề tượng tự - nổi bật: cá được nhiều người trả giá, cá được nhiều người yêu thích, cá gần hết thời gian, cá mới kết thúc(thuộc sub nào thì query trong sub đó ví dụ cá trong mục đấu giá thì các cá nổi bật', '', '2020-08-01', NULL, 1, 17, 2, NULL, 4, 1, '2020-07-13 09:57:58+07', '2020-08-15 11:22:38+07', '2020-07-29', 100, NULL, 1071, 1071, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (1078, 1, 14, 'bỏ dòng: Trang chủ>Cá koi>Doisu(trên hình ảnh sản phẩm)', '', '2020-07-18', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-13 09:58:41+07', '2020-08-15 10:54:10+07', '2020-07-18', 100, NULL, 1071, 1071, 14, 15, false, NULL);
INSERT INTO public.issues VALUES (1079, 2, 14, 'Giao diện mobile', '', '2020-07-31', NULL, 1, 6, 2, NULL, 4, 4, '2020-07-13 10:05:18+07', '2020-07-13 10:14:54+07', '2020-07-13', 10, NULL, NULL, 1079, 1, 8, false, NULL);
INSERT INTO public.issues VALUES (1080, 2, 14, 'Hộ trợ Responsive cho thiết bị Ipad', '', '2020-07-31', NULL, 1, 6, 2, NULL, 4, 0, '2020-07-13 10:07:15+07', '2020-07-13 10:07:15+07', '2020-07-20', 10, NULL, 1079, 1079, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1081, 1, 14, 'Hỗ trợ Responsive cho thiết bị mobile - hình bị chạy lung tung', '', '2020-07-22', NULL, 1, 6, 2, NULL, 4, 0, '2020-07-13 10:08:47+07', '2020-07-13 10:08:47+07', '2020-07-13', 20, NULL, 1079, 1079, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1082, 2, 14, 'Chỗ bán trực tiếp thì cần có mục thêm vào giỏ hàng và thanh toán vì lỡ có nhiều người chọn nhiều con xong mới mua', '', '2020-07-21', NULL, 1, 17, 2, NULL, 4, 0, '2020-07-13 10:12:14+07', '2020-07-13 10:12:14+07', '2020-07-20', 0, NULL, 1071, 1071, 16, 17, false, NULL);
INSERT INTO public.issues VALUES (1083, 1, 14, 'Thông tin phí giao hàng chỉ hiển thị phần tổng tiền cần thanh toán với thời gian giao hàng', '', '2020-07-18', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-13 10:13:34+07', '2020-08-15 10:54:11+07', '2020-07-17', 100, NULL, 1071, 1071, 18, 19, false, NULL);
INSERT INTO public.issues VALUES (1113, 1, 14, 'Làm bộ lọc filter cho cho tìm kiếm - nằm ngang', '', '2020-07-29', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-13 15:04:21+07', '2020-08-15 10:54:13+07', '2020-07-28', 100, NULL, 1112, 1112, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1084, 2, 14, 'Trên mobile em làm theo kiểu ví dụ đấu giá(như sản phẩm ưu đãi) có các hình trượt qua trượt lại, tiếp đến các mục khác như trả giá, bán trực tiếp,...  - làm theo trang https://scan.com.vn', 'https://scan.com.vn', '2020-07-31', NULL, 1, 6, 2, NULL, 4, 0, '2020-07-13 10:14:54+07', '2020-07-13 10:14:54+07', '2020-07-22', 0, NULL, 1079, 1079, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1085, 1, 14, 'Phần cuối trang cần sửa lại theo trang https://scan.com.vn', '![](https://b-f24-zpg.zdn.vn/4822998538773747502/10124109d5a528fb71b4.jpg)', '2020-07-30', NULL, 1, 17, 2, NULL, 4, 0, '2020-07-13 10:16:26+07', '2020-07-13 10:16:26+07', '2020-07-29', 0, NULL, 1051, 1051, 34, 35, false, NULL);
INSERT INTO public.issues VALUES (1086, 1, 14, 'Hình thức Bán trực tiếp - bổ sung thêm icon để phân biệt', '', '2020-07-17', NULL, 1, 17, 2, NULL, 4, 1, '2020-07-13 10:22:23+07', '2020-08-15 11:17:12+07', '2020-07-16', 100, NULL, NULL, 1086, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1087, 1, 14, 'Hình thức Trả giá - bổ sung nút mua hàng', '', '2020-07-30', NULL, 1, 17, 2, NULL, 4, 1, '2020-07-13 10:23:38+07', '2020-08-15 10:45:47+07', '2020-07-30', 0, NULL, NULL, 1087, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1088, 1, 14, 'Lỗi css đối với sản phẩm có mã là : 6849d03b863b42eca36e44c7688c53c24xSiEXEFc', '', '2020-07-24', NULL, 3, 17, 2, NULL, 4, 3, '2020-07-13 10:35:23+07', '2020-08-15 10:54:11+07', '2020-07-22', 100, NULL, 1071, 1071, 20, 21, false, NULL);
INSERT INTO public.issues VALUES (1089, 1, 14, 'Hai nút Yêu thích và Giỏ hàng - không hiện ra khi chưa đăng nhập', '', '2020-07-30', NULL, 3, 17, 2, NULL, 4, 3, '2020-07-13 10:39:42+07', '2020-08-15 10:54:13+07', '2020-07-29', 100, NULL, NULL, 1089, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1090, 1, 14, 'Sản phẩm nổi bật', '', '2020-08-03', NULL, 1, 17, 2, NULL, 4, 1, '2020-07-13 10:45:38+07', '2020-08-15 11:18:38+07', '2020-08-01', 100, NULL, 1051, 1051, 36, 37, false, NULL);
INSERT INTO public.issues VALUES (1091, 1, 14, 'Sửa lại phần sắp xếp theo yêu cầu đã đặc tả', 'Có 2 phầ, phần tìm kiếm là có các tiêu chí cụ thể hiển thị ra chọn để tìm kiếm, còn phần sắp xếp thì bấm vào button sắp xếp sẽ ra các tiêu chí sắp xếp như theo giá từ cao đến thấp, giá từ thấp đến cao, theo gần hết thời gian, còn nhiều thời gian, theo kích thước từ lớn đến nhỏ, theo kích thuoc tù nhỏ đến lớn, theo số lượng tham gia nhiều đến ít, theo số lượt thích nhiều đến ít', '2020-08-05', NULL, 1, 17, 2, NULL, 4, 1, '2020-07-13 11:19:24+07', '2020-07-13 14:43:44+07', '2020-08-04', 10, NULL, 1052, 1051, 19, 20, false, NULL);
INSERT INTO public.issues VALUES (1092, 1, 14, 'Không hiển thị được thông tin tài khoản', '', '2020-07-25', NULL, 1, 17, 2, NULL, 4, 1, '2020-07-13 13:40:03+07', '2020-07-13 13:41:36+07', '2020-07-24', 0, NULL, 1093, 1093, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1093, 2, 14, 'Trang thông tin tài khoản', '', '2020-07-29', NULL, 1, 17, 2, NULL, 4, 6, '2020-07-13 13:40:48+07', '2020-08-15 11:18:13+07', '2020-07-21', 36, NULL, NULL, 1093, 1, 12, false, NULL);
INSERT INTO public.issues VALUES (1094, 2, 14, 'Giỏ hàng', '', '2020-07-25', NULL, 1, 17, 2, NULL, 4, 1, '2020-07-13 13:43:02+07', '2020-07-13 13:44:09+07', '2020-07-21', 10, NULL, 1093, 1093, 4, 7, false, NULL);
INSERT INTO public.issues VALUES (1095, 2, 14, 'Thanh toán danh sách giỏ hàng', '', '2020-07-25', NULL, 1, 17, 2, NULL, 4, 1, '2020-07-13 13:44:09+07', '2020-08-15 11:20:12+07', '2020-07-21', 10, NULL, 1094, 1093, 5, 6, false, NULL);
INSERT INTO public.issues VALUES (1096, 2, 14, 'Sổ địa chỉ', '', '2020-07-29', NULL, 1, 17, 2, NULL, 4, 2, '2020-07-13 13:44:46+07', '2020-08-15 11:18:13+07', '2020-07-28', 100, NULL, 1093, 1093, 8, 11, false, NULL);
INSERT INTO public.issues VALUES (1097, 2, 14, 'Hiển thị địa chỉ bị sai - Ví dụ: tỉnh Bắc Ninh, thuộc Afghanistan', '', '2020-07-29', NULL, 1, 17, 2, NULL, 4, 1, '2020-07-13 13:46:28+07', '2020-08-15 11:18:13+07', '2020-07-28', 100, NULL, 1096, 1093, 9, 10, false, NULL);
INSERT INTO public.issues VALUES (1098, 1, 14, 'Hình thức Trả giá - không có Icon của đấu giá', '', '2020-07-14', NULL, 1, 17, 2, NULL, 4, 0, '2020-07-13 13:50:08+07', '2020-07-13 13:50:08+07', '2020-07-13', 0, NULL, NULL, 1098, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1099, 1, 14, 'Hình thức Bán trực tiếp - không có Icon của đấu giá', '', '2020-07-13', NULL, 1, 17, 2, NULL, 4, 1, '2020-07-13 13:50:48+07', '2020-08-15 11:18:53+07', '2020-07-13', 100, NULL, NULL, 1099, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1100, 1, 14, 'Chưa hiển thị được số lượt thích của sản phẩm - Khi chưa đăng nhập', '', '2020-07-20', NULL, 3, 17, 3, NULL, 4, 4, '2020-07-13 13:53:20+07', '2020-08-15 10:54:09+07', '2020-07-18', 100, NULL, 1051, 1051, 38, 39, false, NULL);
INSERT INTO public.issues VALUES (1102, 1, 14, 'Đồng hồ đếm ngược chưa phân biệt sản phẩm đang đấu giá với sản phẩm chuẩn bị đấu giá', '- sản phẩm sắp kết thúc: nên hiển thị màu sắc khác
- sản phẩm chuẩn bị đấu giá: nên hiển thị màu sắc khác', '2020-07-29', NULL, 1, 17, 2, NULL, 4, 0, '2020-07-13 14:03:04+07', '2020-07-13 14:03:04+07', '2020-07-28', 0, NULL, NULL, 1102, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1103, 2, 4, 'Danh mục', '', '2020-07-18', NULL, 5, 13, 2, NULL, 5, 16, '2020-07-13 14:10:02+07', '2021-02-05 09:00:13+07', '2020-07-14', 100, NULL, NULL, 1103, 1, 10, false, '2020-08-03 08:10:22+07');
INSERT INTO public.issues VALUES (1104, 1, 14, 'Đối với các sản phẩm thuộc hình thức đấu giá/trả giá - nếu chưa tới thời gian bắt đầu thì không cho đặt Bid/Trả giá', '', '2020-07-22', NULL, 3, 17, 3, NULL, 4, 4, '2020-07-13 14:11:49+07', '2020-08-15 10:54:11+07', '2020-07-15', 100, NULL, 1071, 1071, 22, 23, false, NULL);
INSERT INTO public.issues VALUES (1105, 2, 14, 'Hiển thị danh sách các sản phẩm cùng loại', '', '2020-07-28', NULL, 1, 17, 2, NULL, 4, 2, '2020-07-13 14:28:27+07', '2020-07-13 14:29:40+07', '2020-07-25', 0, NULL, 1071, 1071, 24, 25, false, NULL);
INSERT INTO public.issues VALUES (1106, 1, 14, 'hiển thị kết quả: chưa bắt đầu, đang diễn ra, đã mua: đối với đấu giá thành công, đã kết thúc(đã hết thời gian đối với đấu giá hết thời gian)', '', '2020-08-05', NULL, 1, 17, 2, NULL, 4, 1, '2020-07-13 14:33:03+07', '2020-07-13 14:34:10+07', '2020-07-30', 0, NULL, 1066, 1066, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1107, 2, 14, 'Thêm nút Back to Top - khi khách hàng kéo xuống 10% độ cao của giao diện', '', '2020-08-04', NULL, 1, 17, 2, NULL, 4, 1, '2020-07-13 14:36:08+07', '2020-07-13 14:37:39+07', '2020-08-03', 0, NULL, 1051, 1051, 40, 41, false, NULL);
INSERT INTO public.issues VALUES (1108, 1, 14, 'Đối với hình thức Đấu giá - cần gửi thêm API đặt bid số bước nhảy của lần đặt bid và số tiền đặt bid tương ứng với số bước nhảy', 'số tiền đặt bid = giá khởi điểm + (số bước nhảy + bước giá)', NULL, NULL, 3, NULL, 2, NULL, 4, 2, '2020-07-13 14:48:04+07', '2020-07-24 17:06:36+07', '2020-07-13', 0, NULL, 1071, 1071, 26, 27, false, NULL);
INSERT INTO public.issues VALUES (1109, 1, 14, 'Giao diện trang sub Tìm kiếm - Trả giá', '', '2020-08-05', NULL, 1, 17, 2, NULL, 4, 3, '2020-07-13 15:00:55+07', '2020-08-15 10:54:13+07', '2020-07-28', 50, NULL, NULL, 1109, 1, 6, false, NULL);
INSERT INTO public.issues VALUES (1110, 1, 14, 'Làm bộ lọc filter cho cho tìm kiếm - nằm ngang', '', '2020-08-05', NULL, 3, 17, 2, NULL, 4, 3, '2020-07-13 15:01:38+07', '2020-08-15 10:54:13+07', '2020-07-28', 100, NULL, 1109, 1109, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1111, 1, 14, 'hiển thị kết quả: chưa bắt đầu, đang diễn ra, đã mua: đối với đấu giá thành công, đã kết thúc(đã hết thời gian đối với trả giá hết thời gian)', '', '2020-08-01', NULL, 1, 17, 2, NULL, 4, 0, '2020-07-13 15:03:02+07', '2020-07-13 15:03:02+07', '2020-07-29', 0, NULL, 1109, 1109, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1112, 1, 14, 'Giao diện trang sub Tìm kiếm - Bán trực tiếp', '', '2020-07-29', NULL, 1, 17, 2, NULL, 4, 1, '2020-07-13 15:03:50+07', '2020-08-15 10:54:13+07', '2020-07-28', 100, NULL, NULL, 1112, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (1114, 2, 11, 'Geo server + openlayers + tích hợp react', 'Geo server:  https://tomcat.gdtsolutions.vn/geoserver', '2020-07-09', NULL, 5, 5, 2, 1, 5, 6, '2020-07-13 15:05:03+07', '2020-08-07 16:39:59+07', '2020-07-01', 100, NULL, 1049, 1049, 2, 3, false, '2020-08-07 16:39:59+07');
INSERT INTO public.issues VALUES (1115, 2, 11, 'Hiển thị bản đồ vệ tinh', '', '2020-07-20', NULL, 5, 24, 2, 1, 5, 7, '2020-07-13 15:05:13+07', '2020-08-07 16:39:59+07', '2020-07-20', 100, NULL, 1049, 1049, 4, 5, false, '2020-08-07 16:39:59+07');
INSERT INTO public.issues VALUES (1116, 2, 11, 'Hiển thị lớp các trạm QT', 'Tự động

Bán tự động

Doanh nghiệp', '2020-07-11', NULL, 5, 24, 2, 1, 5, 6, '2020-07-13 15:05:40+07', '2020-08-07 16:39:59+07', '2020-07-10', 100, NULL, 1049, 1049, 6, 7, false, '2020-08-07 16:39:59+07');
INSERT INTO public.issues VALUES (1117, 2, 15, 'Thêm menu - Trả giá', '', '2020-07-07', NULL, 5, 16, 2, NULL, 4, 2, '2020-07-13 15:05:57+07', '2020-07-13 15:17:06+07', '2020-07-07', 100, NULL, NULL, 1117, 1, 2, false, '2020-07-13 15:17:06+07');
INSERT INTO public.issues VALUES (1118, 2, 11, 'Hiển thị nhấp nháy các trạm vượt ngưỡng', '', '2020-07-23', NULL, 5, 24, 2, 1, 5, 6, '2020-07-13 15:05:57+07', '2020-08-07 16:40:00+07', '2020-07-22', 100, NULL, 1049, 1049, 8, 9, false, '2020-08-07 16:40:00+07');
INSERT INTO public.issues VALUES (1119, 2, 11, 'Bảng chú thích', '', '2020-07-18', NULL, 5, 24, 2, 1, 5, 5, '2020-07-13 15:07:08+07', '2020-08-07 16:40:00+07', '2020-07-18', 100, NULL, 1049, 1049, 10, 11, false, '2020-08-07 16:40:00+07');
INSERT INTO public.issues VALUES (1120, 2, 11, 'Bấm xem thông tin 1 trạm QT', '', '2020-07-24', NULL, 5, 24, 2, 1, 5, 6, '2020-07-13 15:07:25+07', '2020-08-07 16:40:00+07', '2020-07-24', 100, NULL, 1049, 1049, 12, 13, false, '2020-08-07 16:40:00+07');
INSERT INTO public.issues VALUES (1122, 2, 15, 'Thêm menu - Bán trực tiếp', '', '2020-07-08', NULL, 5, 16, 2, NULL, 4, 1, '2020-07-13 15:08:13+07', '2020-07-13 15:17:15+07', '2020-07-08', 100, NULL, NULL, 1122, 1, 2, false, '2020-07-13 15:17:15+07');
INSERT INTO public.issues VALUES (1123, 2, 11, 'Tìm kiếm trạm QT', 'Mã trạm

Tên trạm

Loại hình

Loại trạm

Quận/Huyện/TP', '2020-07-29', NULL, 5, 24, 2, 1, 5, 8, '2020-07-13 15:09:02+07', '2020-08-07 16:40:00+07', '2020-07-24', 100, NULL, 1049, 1049, 14, 15, false, '2020-08-07 16:40:00+07');
INSERT INTO public.issues VALUES (1124, 2, 15, 'Danh sách đối tác vận chuyển', '', '2020-07-18', NULL, 1, 16, 2, NULL, 4, 6, '2020-07-13 15:09:26+07', '2020-07-16 10:01:58+07', '2020-04-28', 20, NULL, NULL, 1124, 1, 12, false, NULL);
INSERT INTO public.issues VALUES (1125, 2, 15, 'Cấu hình thông tin kết nối cho các đối tác vận chuyển', '', '2020-07-13', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-13 15:11:09+07', '2020-07-13 15:11:09+07', '2020-07-13', 0, NULL, NULL, 1125, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1126, 2, 15, 'Danh sách đối tác thanh toán', '', '2020-07-18', NULL, 1, 16, 2, NULL, 4, 4, '2020-07-13 15:12:45+07', '2020-07-13 15:37:03+07', '2020-07-16', 0, NULL, NULL, 1126, 1, 8, false, NULL);
INSERT INTO public.issues VALUES (1132, 2, 15, 'Cấu hình thông tin kết nối cho các đối tác thanh toán', '', '2020-07-16', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-13 15:14:29+07', '2020-07-13 15:14:29+07', '2020-07-16', 0, NULL, NULL, 1132, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1133, 2, 11, 'Theo dữ liệu trong 1 ngày dưới dạng báo cáo', '', '2020-09-12', NULL, 2, NULL, 2, 3, 5, 14, '2020-07-13 15:14:49+07', '2021-02-05 11:14:17+07', '2020-09-07', 0, 16, 1401, 1401, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1134, 2, 11, 'Theo dữ liệu trong 1 ngày dưới dạng biểu đồ dạng đường', '', '2020-09-12', NULL, 1, 39, 2, 3, 5, 14, '2020-07-13 15:14:54+07', '2020-09-09 15:35:00+07', '2020-09-09', 100, 24, 1401, 1401, 4, 7, false, NULL);
INSERT INTO public.issues VALUES (1135, 2, 11, 'Theo giá trị trung bình trong nhiều ngày dưới dạng báo cáo', '', '2020-09-12', NULL, 1, NULL, 2, 3, 5, 14, '2020-07-13 15:15:03+07', '2021-02-05 11:14:17+07', '2020-09-09', 0, NULL, 1401, 1401, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (1136, 2, 11, 'Theo giá trị trung bình trong nhiều ngày dưới dạng biểu đồ dạng đường', '', '2020-09-09', NULL, 1, 39, 2, 3, 5, 15, '2020-07-13 15:15:30+07', '2020-09-09 17:00:21+07', '2020-09-09', 100, NULL, 1401, 1401, 10, 13, false, NULL);
INSERT INTO public.issues VALUES (1137, 2, 11, 'Theo giá trị lớn nhất trong nhiều ngày dưới dạng báo cáo', '', '2020-09-12', NULL, 1, NULL, 2, 3, 5, 14, '2020-07-13 15:15:37+07', '2021-02-05 11:14:17+07', '2020-09-07', 0, NULL, 1401, 1401, 14, 15, false, NULL);
INSERT INTO public.issues VALUES (1138, 2, 11, 'Theo giá trị lớn nhất trong nhiều ngày dưới dạng biểu đồ dạng đường', '', '2020-09-12', NULL, 1, NULL, 2, 3, 5, 14, '2020-07-13 15:15:46+07', '2021-02-05 11:14:17+07', '2020-09-10', 0, NULL, 1401, 1401, 16, 19, false, NULL);
INSERT INTO public.issues VALUES (1139, 2, 11, 'Theo giá trị nhỏ nhất trong nhiều ngày dưới dạng báo cáo', '', '2020-09-12', NULL, 1, NULL, 2, 3, 5, 12, '2020-07-13 15:15:51+07', '2021-02-05 11:14:18+07', '2020-09-05', 0, NULL, 1401, 1401, 20, 21, false, NULL);
INSERT INTO public.issues VALUES (1140, 2, 11, 'Theo giá trị nhỏ nhất trong nhiều ngày dưới dạng biểu đồ dạng đường', '', '2020-09-12', NULL, 1, NULL, 2, 3, 5, 13, '2020-07-13 15:15:55+07', '2021-02-05 11:14:18+07', '2020-09-10', 0, NULL, 1401, 1401, 22, 25, false, NULL);
INSERT INTO public.issues VALUES (1141, 2, 11, 'Xuất biểu đồ thống kê dưới dạng hình ảnh', '', '2020-09-12', NULL, 1, NULL, 2, 4, 5, 10, '2020-07-13 15:16:12+07', '2021-02-05 11:14:15+07', '2020-09-07', 0, NULL, NULL, 1141, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1142, 2, 15, 'Tạo chức năng gán các id của đối tác vận chuyển trùng khớp với id hệ thống', '', '2020-07-18', NULL, 1, 16, 2, NULL, 4, 1, '2020-07-13 15:16:27+07', '2020-07-13 15:33:16+07', '2020-07-17', 0, NULL, 1124, 1124, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1143, 2, 11, 'Liệt kê các trạm quan trắc vượt ngưỡng', 'Liệt kê danh sách các trạm quan trắc vượt ngưỡng theo trạng thái của từng loại thông số của trạm quan trắc', '2020-08-18', NULL, 3, 8, 2, 2, 5, 13, '2020-07-13 15:17:36+07', '2020-09-03 10:52:06+07', '2020-08-17', 100, NULL, NULL, 1143, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (1144, 2, 11, 'Hiển thị camera của các trạm quan trắc dashboard', 'với các trạm quan trắc đã được gắn camera tại trạm quan trắc', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 15, '2020-07-13 15:17:49+07', '2021-02-05 11:14:19+07', '2020-09-14', 0, NULL, 1601, 1601, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1145, 2, 11, 'Hiển thị các bảng điện tử trên bản đồ', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 15, '2020-07-13 15:17:56+07', '2021-02-05 11:14:19+07', '2020-09-14', 0, NULL, 1600, 1600, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1146, 2, 11, 'Xem thông tin bảng điện tử trên bản đồ', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 12, '2020-07-13 15:18:02+07', '2021-02-05 11:14:19+07', '2020-09-14', 0, NULL, 1600, 1600, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1147, 2, 15, 'Đấu giá', '', '2020-07-25', NULL, 1, 16, 2, NULL, 4, 7, '2020-07-13 15:18:06+07', '2020-07-16 10:16:32+07', '2020-07-15', 10, NULL, NULL, 1147, 1, 20, false, NULL);
INSERT INTO public.issues VALUES (1148, 2, 15, 'Hiển thị danh sách chờ phê duyệt', '', '2020-07-25', NULL, 1, 16, 2, NULL, 4, 4, '2020-07-13 15:18:52+07', '2020-07-16 10:16:32+07', '2020-07-17', 40, NULL, 1147, 1147, 2, 13, false, NULL);
INSERT INTO public.issues VALUES (1149, 2, 15, 'Hiển thị danh sách đang diễn ra', '', '2020-07-15', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-13 15:19:23+07', '2020-07-13 15:19:23+07', '2020-07-15', 0, NULL, 1147, 1147, 14, 15, false, NULL);
INSERT INTO public.issues VALUES (1150, 2, 15, 'Hiển thị danh sách bị từ chối phê duyệt', '', '2020-07-16', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-13 15:20:05+07', '2020-07-13 15:20:05+07', '2020-07-15', 0, NULL, 1147, 1147, 16, 17, false, NULL);
INSERT INTO public.issues VALUES (1151, 2, 15, 'Hiển thị danh sách bị hủy bởi tài khoản có vai trò được phép hủy phiên đấu giá', '', '2020-07-17', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-13 15:21:43+07', '2020-07-13 15:21:43+07', '2020-07-16', 0, NULL, 1147, 1147, 18, 19, false, NULL);
INSERT INTO public.issues VALUES (1152, 2, 15, 'Phân biệt danh sách nào thuộc tài sản công, danh sách nào thuộc tài sản thường để phê duyệt', '', '2020-07-17', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-13 15:23:16+07', '2020-07-13 15:23:16+07', '2020-07-17', 0, NULL, 1148, 1147, 3, 4, false, NULL);
INSERT INTO public.issues VALUES (1153, 2, 11, 'Nhập liệu', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 10, '2020-07-13 15:23:26+07', '2021-02-05 11:14:15+07', '2020-09-14', 0, NULL, NULL, 1153, 1, 28, false, NULL);
INSERT INTO public.issues VALUES (1154, 2, 11, 'Chuyển dữ liệu trạm quan trắc tự động sang dữ liệu hệ thống', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 7, '2020-07-13 15:23:35+07', '2021-02-05 11:14:15+07', '2020-09-14', 0, NULL, 1153, 1153, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1155, 2, 11, 'Chuyển dữ liệu ngưỡng của các thông số sang dữ liệu hệ thống', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 7, '2020-07-13 15:23:44+07', '2021-02-05 11:14:15+07', '2020-09-14', 0, NULL, 1153, 1153, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1156, 2, 11, 'Chuyển số liệu quan trắc của các trạm tự động sang dữ liệu hệ thống', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 7, '2020-07-13 15:23:52+07', '2021-02-05 11:14:15+07', '2020-09-14', 0, NULL, 1153, 1153, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1157, 2, 11, 'Chuyển dữ liệu trạm quan trắc bán tự động sang dữ liệu hệ thống', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 7, '2020-07-13 15:23:58+07', '2021-02-05 11:14:15+07', '2020-09-14', 0, NULL, 1153, 1153, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (1158, 2, 11, 'Chuyển dữ liệu loại hình trạm quan trắc sang dữ liệu hệ thống', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 7, '2020-07-13 15:24:03+07', '2021-02-05 11:14:15+07', '2020-09-14', 0, NULL, 1153, 1153, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (1159, 2, 11, 'Chuyển dữ liệu thông số quan trắc sang dữ liệu hệ thống', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 7, '2020-07-13 15:24:07+07', '2021-02-05 11:14:15+07', '2020-09-14', 0, NULL, 1153, 1153, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (1160, 2, 11, 'Chuyển dữ liệu đơn vị tính sang dữ liệu hệ thống', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 7, '2020-07-13 15:24:12+07', '2021-02-05 11:14:16+07', '2020-09-14', 0, NULL, 1153, 1153, 14, 15, false, NULL);
INSERT INTO public.issues VALUES (1161, 2, 11, 'Chuyển dữ liệu quy chuẩn quan trắc sang dữ liệu hệ thống', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 7, '2020-07-13 15:24:18+07', '2021-02-05 11:14:16+07', '2020-09-14', 0, NULL, 1153, 1153, 16, 17, false, NULL);
INSERT INTO public.issues VALUES (1162, 2, 11, 'Chuyển dữ liệu loại hình - thông số sang dữ liệu hệ thống', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 7, '2020-07-13 15:24:28+07', '2021-02-05 11:14:16+07', '2020-09-14', 0, NULL, 1153, 1153, 18, 19, false, NULL);
INSERT INTO public.issues VALUES (1163, 2, 11, 'Chuyển dữ liệu quy chuẩn - thông số sang dữ liệu hệ thống', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 7, '2020-07-13 15:24:32+07', '2021-02-05 11:14:16+07', '2020-09-14', 0, NULL, 1153, 1153, 20, 21, false, NULL);
INSERT INTO public.issues VALUES (1164, 2, 11, 'Chuyển dữ liệu vị trí trạm sang dữ liệu hệ thống', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 7, '2020-07-13 15:24:38+07', '2021-02-05 11:14:16+07', '2020-09-14', 0, NULL, 1153, 1153, 22, 23, false, NULL);
INSERT INTO public.issues VALUES (1165, 2, 11, 'Chuyển số liệu quan trắc của các trạm bán tự động sang dữ liệu hệ thống', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 7, '2020-07-13 15:24:48+07', '2021-02-05 11:14:16+07', '2020-09-14', 0, NULL, 1153, 1153, 24, 25, false, NULL);
INSERT INTO public.issues VALUES (1166, 2, 11, 'Chuyển số liệu quan trắc của các trạm tại doanh nghiệp từ FTP Server sang dữ liệu hệ thống', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 7, '2020-07-13 15:25:06+07', '2021-02-05 11:14:16+07', '2020-09-14', 0, NULL, 1153, 1153, 26, 27, false, NULL);
INSERT INTO public.issues VALUES (1167, 2, 15, 'Thêm/Sửa một đối tác', '', '2020-07-13', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-13 15:25:06+07', '2020-07-13 15:25:06+07', '2020-07-13', 0, NULL, 1124, 1124, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1168, 2, 11, 'Quản trị', '', '2020-09-12', NULL, 1, NULL, 2, 3, 5, 15, '2020-07-13 15:25:36+07', '2021-02-05 11:14:16+07', '2020-09-05', 0, NULL, NULL, 1168, 1, 16, false, NULL);
INSERT INTO public.issues VALUES (1169, 2, 11, 'Cấu hình thông số, thời gian chuyển dữ liệu từ trạm', '', '2020-09-12', NULL, 1, NULL, 2, 3, 5, 11, '2020-07-13 15:25:44+07', '2021-02-05 11:14:16+07', '2020-09-05', 0, NULL, 1168, 1168, 2, 7, false, NULL);
INSERT INTO public.issues VALUES (1171, 2, 11, 'Danh mục loại quan trắc', '', '2020-07-22', NULL, 5, 8, 2, 1, 5, 15, '2020-07-13 15:26:22+07', '2020-08-07 16:40:42+07', '2020-07-22', 100, NULL, 1046, 1046, 2, 3, false, '2020-08-07 16:40:42+07');
INSERT INTO public.issues VALUES (1172, 2, 11, 'Danh mục loại môi trường', '', '2020-07-22', NULL, 5, 8, 2, 1, 5, 9, '2020-07-13 15:26:32+07', '2020-08-07 16:40:42+07', '2020-07-22', 100, NULL, 1046, 1046, 4, 5, false, '2020-08-07 16:40:42+07');
INSERT INTO public.issues VALUES (1173, 2, 11, 'Danh mục trạm quan trắc', 'Quản trị vị trí trạm', '2020-07-29', NULL, 5, NULL, 2, 1, 5, 27, '2020-07-13 15:26:40+07', '2020-08-07 16:40:42+07', '2020-07-13', 100, NULL, 1046, 1046, 6, 21, false, '2020-08-07 16:40:42+07');
INSERT INTO public.issues VALUES (1174, 2, 11, 'Danh mục thông số quan trắc', '', '2020-07-24', NULL, 5, 8, 2, 1, 5, 7, '2020-07-13 15:26:46+07', '2020-08-07 16:40:59+07', '2020-07-24', 100, NULL, 1046, 1046, 22, 23, false, '2020-08-07 16:40:59+07');
INSERT INTO public.issues VALUES (1175, 2, 11, 'Danh mục đơn vị tính', '', '2020-07-25', NULL, 5, 8, 2, 1, 5, 10, '2020-07-13 15:26:53+07', '2020-08-07 16:40:59+07', '2020-07-25', 100, NULL, 1046, 1046, 24, 25, false, '2020-08-07 16:40:59+07');
INSERT INTO public.issues VALUES (1176, 2, 11, 'Danh mục quy chuẩn quan trắc', '', '2020-07-23', NULL, 5, NULL, 2, 1, 5, 12, '2020-07-13 15:27:01+07', '2020-08-07 16:43:12+07', '2020-07-22', 100, NULL, 1046, 1046, 26, 31, false, '2020-08-07 16:43:12+07');
INSERT INTO public.issues VALUES (1177, 1, 15, 'Form hiển thị Thêm cần tăng chiều rộng (đổi từ lg -> xl)', '![](clipboard-202007131526-3xqbq.png)
', '2020-07-13', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-13 15:27:08+07', '2020-07-13 15:27:08+07', '2020-07-13', 0, NULL, 1124, 1124, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1178, 2, 11, 'Danh mục bảng điện tử', 'Quản trị vị trí tọa độ cho các bảng điện tử', '2020-09-21', NULL, 3, 8, 2, 4, 5, 16, '2020-07-13 15:27:28+07', '2020-09-05 10:12:57+07', '2020-09-12', 100, NULL, 1600, 1600, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1179, 2, 11, 'Số liệu quan trắc của bảng điện tử', 'Lọc theo:

Mã bảng điện tử

Tên

Quận/Huyện/TP

Hiển thị ra danh sách bảng bên trái, bên phải là bản đồ

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

Bấm vào 1 bảng => hiển thị danh sách thông số, kèm giá trị, xem nội dung task

https://redmine.gdtvietnam.com/issues/1641

Cho thêm/xóa sửa thông số', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 18, '2020-07-13 15:28:15+07', '2021-02-05 11:14:19+07', '2020-09-12', 0, NULL, 1600, 1600, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (1180, 2, 11, 'Gởi SMS thông báo khi số liệu trạm vượt ngưỡng', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 11, '2020-07-13 15:30:05+07', '2021-02-05 11:14:17+07', '2020-09-14', 0, NULL, NULL, 1180, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1181, 1, 15, 'Trường API để lấy danh sách dịch vụ mở rộng, API tính cước cho tất cả dịch vụ - không bắt buộc', '![](clipboard-202007131529-imbd4.png)
', '2020-07-14', NULL, 1, 16, 2, NULL, 4, 2, '2020-07-13 15:30:49+07', '2020-09-08 10:25:50+07', '2020-07-14', 0, NULL, 1124, 1124, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (1182, 2, 11, 'List số liệu quan trắc', 'Mã trạm

Tên trạm

Loại môi trường

Loại trạm

Thời gian đo

Thông số', '2020-07-28', NULL, 5, 8, 2, 1, 5, 13, '2020-07-13 15:31:18+07', '2020-08-07 16:41:46+07', '2020-07-27', 100, NULL, 1047, 1047, 2, 3, false, '2020-08-07 16:41:46+07');
INSERT INTO public.issues VALUES (1183, 2, 11, 'Định thời trích xuất dữ liệu quan trắc ra dạng file theo định nghĩa của Tổng cục môi trường, lưu vào thư mục hệ thống', '', '2020-09-12', NULL, 1, NULL, 2, 3, 5, 7, '2020-07-13 15:33:10+07', '2021-02-05 11:14:17+07', '2020-09-05', 0, NULL, 1168, 1168, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (1184, 2, 11, 'Sao chép file dữ liệu lên thư mục FTP của Tổng cục môi trường', '', '2020-09-12', NULL, 1, NULL, 2, 3, 5, 7, '2020-07-13 15:33:17+07', '2021-02-05 11:14:17+07', '2020-09-05', 0, NULL, 1168, 1168, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (1185, 2, 11, 'Lưu lịch sử truyền dữ liệu', '', '2020-09-12', NULL, 1, NULL, 2, 3, 5, 7, '2020-07-13 15:33:28+07', '2021-02-05 11:14:17+07', '2020-09-05', 0, NULL, 1168, 1168, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (1186, 2, 11, 'Cấu hình thông số FTP Server của Tổng cục môi trường, thời gian truyền', '', '2020-09-12', NULL, 1, NULL, 2, 3, 5, 7, '2020-07-13 15:33:34+07', '2021-02-05 11:14:17+07', '2020-09-05', 0, NULL, 1168, 1168, 14, 15, false, NULL);
INSERT INTO public.issues VALUES (1187, 1, 15, 'Form hiển thị Thêm cần tăng chiều rộng (đổi từ lg -> xl)', '', '2020-07-17', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-13 15:35:19+07', '2020-07-13 15:35:19+07', '2020-07-17', 0, NULL, 1126, 1126, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1188, 2, 15, 'Thêm/Sửa một đối tác', '', '2020-07-16', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-13 15:35:48+07', '2020-07-13 15:35:48+07', '2020-07-16', 0, NULL, 1126, 1126, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1189, 1, 15, 'Hiển thị hình ảnh đối tác bị méo', '![](clipboard-202007131536-ollfu.png)
', '2020-07-18', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-13 15:37:03+07', '2020-07-13 15:37:03+07', '2020-07-18', 0, NULL, 1126, 1126, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1190, 2, 11, 'Tool lấy file từ máy trạm', 'Lấy file txt từ máy trạm, đẩy về server

Xử lý file và lưu dữ liệu

Windown service thường trú

Mở máy tính trạm lên là khởi động luôn

Nhận các cấu hình từ server', '2020-07-27', NULL, 5, 19, 2, 1, 5, 13, '2020-07-13 15:38:58+07', '2020-08-07 16:41:30+07', '2020-07-14', 100, 24, 1387, 1387, 4, 5, false, '2020-08-07 16:41:30+07');
INSERT INTO public.issues VALUES (1191, 2, 11, 'Load icon theo trạng thái', '', '2020-07-17', NULL, 5, 24, 2, 1, 5, 13, '2020-07-13 16:07:34+07', '2020-08-07 16:40:00+07', '2020-07-17', 100, NULL, 1049, 1049, 16, 17, false, '2020-08-07 16:40:00+07');
INSERT INTO public.issues VALUES (1192, 2, 11, 'Bật tắt lớp bản đồ', '', '2020-07-18', NULL, 5, 24, 2, 1, 5, 8, '2020-07-13 16:07:47+07', '2020-08-07 16:40:00+07', '2020-07-17', 100, NULL, 1049, 1049, 18, 19, false, '2020-08-07 16:40:00+07');
INSERT INTO public.issues VALUES (1193, 2, 11, 'Lưu Shape cho điểm quan trắc', 'Thống nhất tọa độ, cách lưu dữ liệu, ghi vào đây', '2020-07-15', NULL, 5, 24, 2, 1, 5, 7, '2020-07-13 16:12:07+07', '2020-08-07 16:40:08+07', '2020-07-13', 100, NULL, 1173, 1046, 7, 8, false, '2020-08-07 16:40:08+07');
INSERT INTO public.issues VALUES (1194, 2, 11, 'Thay icon điểm quan trắc', '', '2020-07-15', NULL, 5, 5, 2, 1, 5, 7, '2020-07-13 16:29:50+07', '2020-08-07 16:40:00+07', '2020-07-15', 100, NULL, 1049, 1049, 20, 21, false, '2020-08-07 16:40:00+07');
INSERT INTO public.issues VALUES (1195, 2, 4, 'Filter theo quốc gia.', '', '2020-07-20', NULL, 5, 10, 2, NULL, 10, 6, '2020-07-14 08:57:24+07', '2020-08-03 08:09:30+07', '2020-07-20', 100, NULL, 1018, 1008, 37, 38, false, '2020-08-03 08:09:30+07');
INSERT INTO public.issues VALUES (1196, 2, 4, 'Filter theo KCN, CCN, ĐMGĐT', '', '2020-07-21', NULL, 5, 10, 2, NULL, 10, 8, '2020-07-14 08:57:45+07', '2020-08-03 08:09:30+07', '2020-07-21', 100, NULL, 1018, 1008, 39, 40, false, '2020-08-03 08:09:30+07');
INSERT INTO public.issues VALUES (1197, 1, 14, 'Lối Footer khi gắn thêm Zalo chia sẻ', '', '2020-07-31', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-14 11:13:09+07', '2020-08-15 10:54:11+07', '2020-07-30', 100, NULL, 1071, 1071, 28, 29, false, NULL);
INSERT INTO public.issues VALUES (1198, 3, 14, 'Tối ưu các file CSS cho giao diện Web và Mobile', '', '2020-07-31', NULL, 1, 6, 2, NULL, 4, 0, '2020-07-14 11:14:11+07', '2020-07-14 11:14:11+07', '2020-07-14', 0, NULL, NULL, 1198, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1199, 2, 14, 'Tích hợp chia sẻ Zalo plugin ( khi share hiển thị như hình của chính cá đó hiển thị ở trang chủ)', '', '2020-07-14', NULL, 5, NULL, 2, NULL, 4, 4, '2020-07-14 11:17:06+07', '2020-08-11 11:38:33+07', '2020-07-14', 100, NULL, 1071, 1071, 30, 31, false, '2020-08-11 11:38:33+07');
INSERT INTO public.issues VALUES (1200, 1, 14, 'Các assets như hình ảnh, video không được dùng đường link ngoài: như logo ViettelPay, VNPay,...', '![](clipboard-202007141122-yqust.png)
', '2020-07-17', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-14 11:22:17+07', '2020-08-15 10:54:13+07', '2020-07-17', 100, NULL, NULL, 1200, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1201, 2, 15, 'Phê duyệt đăng ký cho các công ty đấu giá hợp danh', '', '2020-07-30', NULL, 1, 16, 2, NULL, 4, 3, '2020-07-14 11:24:01+07', '2020-07-14 11:26:20+07', '2020-07-27', 0, NULL, NULL, 1201, 1, 8, false, NULL);
INSERT INTO public.issues VALUES (1202, 2, 15, 'Hiển thị danh sách chờ phê duyệt', '', '2020-07-28', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-14 11:24:53+07', '2020-07-14 11:24:53+07', '2020-07-27', 0, NULL, 1201, 1201, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1203, 2, 15, 'Hiển thị danh sách bị từ chối phê duyệt', '', '2020-07-29', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-14 11:25:35+07', '2020-07-14 11:25:35+07', '2020-07-28', 0, NULL, 1201, 1201, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1204, 2, 15, 'Xem chi tiết thông tin công ty đấu giá hợp danh', '', '2020-07-30', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-14 11:26:20+07', '2020-07-14 11:26:20+07', '2020-07-29', 0, NULL, 1201, 1201, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1205, 1, 24, 'Java Not Support: No converter for with preset Content-Type ''video/mp4''', '', '2020-07-25', NULL, 1, NULL, 2, NULL, 4, 0, '2020-07-14 11:36:20+07', '2020-07-14 11:36:20+07', '2020-07-17', 0, NULL, NULL, 1205, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1206, 1, 14, 'react_devtools_backend.js:562 Warning: Each child in a list should have a unique "key" prop.', '![](clipboard-202007141312-yzp2w.png)
', '2020-07-17', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-14 13:13:14+07', '2020-08-15 10:54:09+07', '2020-07-16', 100, NULL, 1051, 1051, 42, 43, false, NULL);
INSERT INTO public.issues VALUES (1207, 1, 14, 'Prop `id` did not match. Server: "react-select-4-input" Client: "react-select-2-input"', '![](clipboard-202007141314-ra19f.png)
', '2020-07-25', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-14 13:14:51+07', '2020-08-15 10:54:09+07', '2020-07-18', 100, NULL, 1051, 1051, 44, 45, false, NULL);
INSERT INTO public.issues VALUES (1208, 2, 22, 'API lấy danh sách các sản phẩm cùng danh mục sản phẩm, sắp xếp theo thời gian mới nhất - hình thức đấu giá', '', '2020-07-24', NULL, 1, NULL, 2, NULL, 4, 0, '2020-07-14 14:25:27+07', '2020-07-14 14:25:27+07', '2020-07-20', 0, NULL, NULL, 1208, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1209, 1, 14, 'Lối lấy dữ liệu Hình thức đăng đấu giá', '![](clipboard-202007141445-mttf2.png)
', '2020-07-16', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-14 14:45:32+07', '2020-08-15 10:54:10+07', '2020-07-15', 100, NULL, 1051, 1051, 46, 47, false, NULL);
INSERT INTO public.issues VALUES (1210, 2, 24, 'Quản lý file trên server', '', '2020-06-16', NULL, 5, NULL, 2, NULL, 4, 24, '2020-07-14 14:46:57+07', '2020-08-11 11:41:57+07', '2020-06-01', 100, NULL, NULL, 1210, 1, 62, false, '2020-08-11 11:41:57+07');
INSERT INTO public.issues VALUES (1211, 2, 24, 'Danh sách các file Picture - Avartar tài khoản', '', '2020-06-03', NULL, 5, NULL, 2, NULL, 4, 6, '2020-07-14 14:47:55+07', '2020-08-11 11:41:56+07', '2020-06-01', 100, NULL, 1210, 1210, 2, 11, false, '2020-08-11 11:41:56+07');
INSERT INTO public.issues VALUES (1212, 2, 24, 'Danh sách các file Product - Hình ảnh sản phẩm', '', '2020-06-05', NULL, 5, NULL, 2, NULL, 4, 8, '2020-07-14 14:48:55+07', '2020-08-11 11:41:54+07', '2020-06-03', 100, NULL, 1210, 1210, 12, 21, false, '2020-08-11 11:41:54+07');
INSERT INTO public.issues VALUES (1213, 2, 24, 'Danh sách các file Video - Sản phẩm', '', '2020-06-09', NULL, 5, NULL, 2, NULL, 4, 8, '2020-07-14 14:49:23+07', '2020-08-11 11:41:53+07', '2020-06-05', 100, NULL, 1210, 1210, 22, 31, false, '2020-08-11 11:41:53+07');
INSERT INTO public.issues VALUES (1214, 2, 24, 'Danh sách các file Certificate - Chứng chỉ của sản phẩm', '', '2020-06-15', NULL, 5, NULL, 2, NULL, 4, 5, '2020-07-14 14:55:46+07', '2020-08-11 11:41:51+07', '2020-06-09', 100, NULL, 1210, 1210, 32, 41, false, '2020-08-11 11:41:51+07');
INSERT INTO public.issues VALUES (1215, 2, 24, 'Danh sách các file Others - Khác', '', '2020-06-16', NULL, 5, NULL, 2, NULL, 4, 6, '2020-07-14 14:56:39+07', '2020-08-11 11:41:48+07', '2020-06-11', 100, NULL, 1210, 1210, 42, 51, false, '2020-08-11 11:41:48+07');
INSERT INTO public.issues VALUES (1216, 2, 15, 'Danh sách các file Picture - Avartar tài khoản', '', '2020-07-28', NULL, 1, 16, 2, NULL, 4, 1, '2020-07-14 14:58:30+07', '2020-07-14 15:00:26+07', '2020-07-27', 0, NULL, 1217, 1217, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1217, 2, 15, 'Quản lý file trên server', '', '2020-08-01', NULL, 1, 16, 2, NULL, 4, 4, '2020-07-14 15:00:00+07', '2020-07-14 15:03:38+07', '2020-07-27', 0, NULL, NULL, 1217, 1, 14, false, NULL);
INSERT INTO public.issues VALUES (1218, 2, 15, 'Danh sách các file Others - Khác', '', '2020-07-29', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-14 15:01:29+07', '2020-07-14 15:01:29+07', '2020-07-28', 0, NULL, 1217, 1217, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1219, 2, 15, 'Danh sách các file Product - Hình ảnh sản phẩm', '', '2020-07-30', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-14 15:01:58+07', '2020-07-14 15:01:58+07', '2020-07-29', 0, NULL, 1217, 1217, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1220, 2, 15, 'Danh sách các file Video - Sản phẩm', '', '2020-07-31', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-14 15:02:41+07', '2020-07-14 15:02:41+07', '2020-07-30', 0, NULL, 1217, 1217, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (1221, 2, 15, 'Danh sách các file Certificate - Chứng chỉ của sản phẩm', '', '2020-08-01', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-14 15:03:38+07', '2020-07-14 15:03:38+07', '2020-07-31', 0, NULL, 1217, 1217, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (1222, 2, 15, 'Danh sách các file Document - Tài liệu', '', '2020-08-01', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-14 15:04:46+07', '2020-07-14 15:04:46+07', '2020-08-01', 0, NULL, 1217, 1217, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (1223, 2, 24, 'Danh sách các file Document - Tài liệu', '', '2020-06-16', NULL, 5, NULL, 2, NULL, 4, 4, '2020-07-14 15:06:12+07', '2020-08-11 11:41:46+07', '2020-06-10', 100, NULL, 1210, 1210, 52, 61, false, '2020-08-11 11:41:46+07');
INSERT INTO public.issues VALUES (1224, 2, 24, 'API tải file hình ảnh', '', '2020-06-02', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 15:08:25+07', '2020-08-11 11:41:12+07', '2020-06-01', 100, NULL, 1211, 1210, 3, 4, false, '2020-08-11 11:41:12+07');
INSERT INTO public.issues VALUES (1225, 2, 24, 'API lấy danh sách phân trang các file đã đăng tải', '', '2020-06-02', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 15:14:36+07', '2020-08-11 11:41:14+07', '2020-06-01', 100, NULL, 1211, 1210, 5, 6, false, '2020-08-11 11:41:14+07');
INSERT INTO public.issues VALUES (1226, 2, 24, 'API xóa file không hợp lệ', '', '2020-06-03', NULL, 5, NULL, 2, NULL, 4, 2, '2020-07-14 15:15:22+07', '2020-08-11 11:41:16+07', '2020-06-02', 100, NULL, 1211, 1210, 7, 8, false, '2020-08-11 11:41:16+07');
INSERT INTO public.issues VALUES (1227, 2, 24, 'API xóa file không hợp lệ', '', '2020-06-03', NULL, 5, NULL, 2, NULL, 4, 2, '2020-07-14 15:16:46+07', '2020-08-11 11:41:17+07', '2020-06-03', 100, NULL, 1212, 1210, 13, 14, false, '2020-08-11 11:41:17+07');
INSERT INTO public.issues VALUES (1228, 2, 24, 'API tải file hình ảnh', '', '2020-06-04', NULL, 5, 16, 2, NULL, 4, 2, '2020-07-14 15:17:13+07', '2020-08-11 11:41:19+07', '2020-06-04', 100, NULL, 1212, 1210, 15, 16, false, '2020-08-11 11:41:19+07');
INSERT INTO public.issues VALUES (1229, 2, 24, 'API lấy danh sách các file đã đăng tải', '', '2020-06-05', NULL, 5, NULL, 2, NULL, 4, 2, '2020-07-14 15:17:51+07', '2020-08-11 11:41:20+07', '2020-06-05', 100, NULL, 1212, 1210, 17, 18, false, '2020-08-11 11:41:20+07');
INSERT INTO public.issues VALUES (1230, 2, 24, 'API upload lên server', '', '2020-06-02', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 15:20:43+07', '2020-08-11 11:41:21+07', '2020-06-02', 100, NULL, 1211, 1210, 9, 10, false, '2020-08-11 11:41:21+07');
INSERT INTO public.issues VALUES (1231, 2, 24, 'API upload lên server', '', '2020-06-04', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 15:21:14+07', '2020-08-11 11:41:23+07', '2020-06-04', 100, NULL, 1212, 1210, 19, 20, false, '2020-08-11 11:41:23+07');
INSERT INTO public.issues VALUES (1232, 2, 24, 'API xóa file không hợp lệ', '', '2020-06-05', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 15:23:28+07', '2020-08-11 11:41:25+07', '2020-06-05', 100, NULL, 1213, 1210, 23, 24, false, '2020-08-11 11:41:25+07');
INSERT INTO public.issues VALUES (1233, 2, 24, 'API tải file video', '', '2020-06-06', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 15:24:34+07', '2020-08-11 11:41:26+07', '2020-06-06', 100, NULL, 1213, 1210, 25, 26, false, '2020-08-11 11:41:26+07');
INSERT INTO public.issues VALUES (1234, 2, 24, 'API upload lên server', '', '2020-06-08', NULL, 5, NULL, 2, NULL, 4, 2, '2020-07-14 15:25:02+07', '2020-08-11 11:41:28+07', '2020-06-08', 100, NULL, 1213, 1210, 27, 28, false, '2020-08-11 11:41:28+07');
INSERT INTO public.issues VALUES (1235, 2, 24, 'API lấy danh sách các file đã đăng tải', '', '2020-06-09', NULL, 5, NULL, 2, NULL, 4, 2, '2020-07-14 15:25:25+07', '2020-08-11 11:41:29+07', '2020-06-09', 100, NULL, 1213, 1210, 29, 30, false, '2020-08-11 11:41:29+07');
INSERT INTO public.issues VALUES (1236, 2, 24, 'API lấy danh sách các file đã đăng tải', '', '2020-06-09', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 15:26:26+07', '2020-08-11 11:41:30+07', '2020-06-09', 100, NULL, 1214, 1210, 33, 34, false, '2020-08-11 11:41:30+07');
INSERT INTO public.issues VALUES (1237, 2, 24, 'API lấy danh sách các file đã đăng tải', '', '2020-06-11', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 15:26:55+07', '2020-08-11 11:41:32+07', '2020-06-11', 100, NULL, 1215, 1210, 43, 44, false, '2020-08-11 11:41:32+07');
INSERT INTO public.issues VALUES (1238, 2, 24, 'API lấy danh sách các file đã đăng tải', '', '2020-06-10', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 15:27:33+07', '2020-08-11 11:41:33+07', '2020-06-10', 100, NULL, 1223, 1210, 53, 54, false, '2020-08-11 11:41:33+07');
INSERT INTO public.issues VALUES (1239, 2, 24, 'API xóa file không hợp lệ', '', '2020-06-13', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 15:28:40+07', '2020-08-11 11:41:35+07', '2020-06-13', 100, NULL, 1223, 1210, 55, 56, false, '2020-08-11 11:41:35+07');
INSERT INTO public.issues VALUES (1240, 2, 24, 'API xóa file không hợp lệ', '', '2020-06-12', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 15:29:46+07', '2020-08-11 11:41:36+07', '2020-06-12', 100, NULL, 1215, 1210, 45, 46, false, '2020-08-11 11:41:36+07');
INSERT INTO public.issues VALUES (1241, 2, 24, 'API xóa file không hợp lệ', '', '2020-06-13', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 15:31:35+07', '2020-08-11 11:41:37+07', '2020-06-13', 100, NULL, 1214, 1210, 35, 36, false, '2020-08-11 11:41:37+07');
INSERT INTO public.issues VALUES (1242, 2, 24, 'API upload lên server', '', '2020-06-15', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 15:49:47+07', '2020-08-11 11:41:39+07', '2020-06-15', 100, NULL, 1214, 1210, 37, 38, false, '2020-08-11 11:41:39+07');
INSERT INTO public.issues VALUES (1243, 2, 24, 'API lấy danh sách các file đã đăng tải', '', '2020-06-15', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 15:50:18+07', '2020-08-11 11:41:40+07', '2020-06-15', 100, NULL, 1214, 1210, 39, 40, false, '2020-08-11 11:41:40+07');
INSERT INTO public.issues VALUES (1244, 2, 24, 'API lấy danh sách các file đã đăng tải', '', '2020-06-16', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 15:56:51+07', '2020-08-11 11:41:41+07', '2020-06-16', 100, NULL, 1223, 1210, 57, 58, false, '2020-08-11 11:41:41+07');
INSERT INTO public.issues VALUES (1245, 2, 24, 'API lấy danh sách các file đã đăng tải', '', '2020-06-15', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 15:57:16+07', '2020-08-11 11:41:43+07', '2020-06-15', 100, NULL, 1215, 1210, 47, 48, false, '2020-08-11 11:41:43+07');
INSERT INTO public.issues VALUES (1246, 2, 24, 'API upload lên server', '', '2020-06-16', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 15:58:00+07', '2020-08-11 11:41:44+07', '2020-06-16', 100, NULL, 1223, 1210, 59, 60, false, '2020-08-11 11:41:44+07');
INSERT INTO public.issues VALUES (1247, 2, 24, 'API upload lên server', '', '2020-06-16', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 15:58:37+07', '2020-08-11 11:41:45+07', '2020-06-16', 100, NULL, 1215, 1210, 49, 50, false, '2020-08-11 11:41:45+07');
INSERT INTO public.issues VALUES (1248, 2, 20, 'Tài khoản', '', '2020-03-18', NULL, 5, NULL, 2, NULL, 4, 5, '2020-07-14 16:17:23+07', '2020-08-11 11:42:03+07', '2020-03-14', 100, NULL, NULL, 1248, 1, 12, false, '2020-08-11 11:42:03+07');
INSERT INTO public.issues VALUES (1249, 2, 20, 'API đăng nhập', '', '2020-03-15', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 16:17:52+07', '2020-08-11 11:40:17+07', '2020-03-14', 100, NULL, 1248, 1248, 2, 3, false, '2020-08-11 11:40:17+07');
INSERT INTO public.issues VALUES (1250, 2, 20, 'API đăng ký', '', '2020-03-16', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 16:18:21+07', '2020-08-11 11:40:19+07', '2020-03-16', 100, NULL, 1248, 1248, 4, 5, false, '2020-08-11 11:40:19+07');
INSERT INTO public.issues VALUES (1253, 2, 20, 'API lấy danh sách vai trò của tài khoản', '', '2020-03-18', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 16:21:05+07', '2020-08-11 11:40:22+07', '2020-03-18', 100, NULL, 1248, 1248, 10, 11, false, '2020-08-11 11:40:22+07');
INSERT INTO public.issues VALUES (1254, 2, 20, 'Menu', '', '2020-03-25', NULL, 5, NULL, 2, NULL, 4, 5, '2020-07-14 16:22:22+07', '2020-08-11 11:42:01+07', '2020-03-11', 100, NULL, NULL, 1254, 1, 10, false, '2020-08-11 11:42:01+07');
INSERT INTO public.issues VALUES (1255, 2, 20, 'API thêm, xóa, sửa Menu hệ thống', '', '2020-03-11', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 16:23:02+07', '2020-08-11 11:40:25+07', '2020-03-11', 100, NULL, 1254, 1254, 2, 3, false, '2020-08-11 11:40:25+07');
INSERT INTO public.issues VALUES (1256, 2, 20, 'API thêm, xóa, sửa Menu đối tác', '', '2020-03-12', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 16:23:41+07', '2020-08-11 11:40:27+07', '2020-03-12', 100, NULL, 1254, 1254, 4, 5, false, '2020-08-11 11:40:27+07');
INSERT INTO public.issues VALUES (1257, 2, 20, 'API thêm, xóa, sửa Menu khách hàng', '', '2020-03-13', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 16:24:23+07', '2020-08-11 11:40:29+07', '2020-03-13', 100, NULL, 1254, 1254, 6, 7, false, '2020-08-11 11:40:29+07');
INSERT INTO public.issues VALUES (1258, 2, 20, 'Cấp quyền xem theo vai trò tài khoản', '', '2020-03-25', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 16:30:47+07', '2020-08-11 11:40:30+07', '2020-03-18', 100, NULL, 1254, 1254, 8, 9, false, '2020-08-11 11:40:30+07');
INSERT INTO public.issues VALUES (1259, 2, 20, 'Giỏ hàng', '', '2020-04-03', NULL, 5, NULL, 2, NULL, 4, 4, '2020-07-14 16:42:41+07', '2020-08-11 11:42:00+07', '2020-03-04', 100, NULL, NULL, 1259, 1, 10, false, '2020-08-11 11:42:00+07');
INSERT INTO public.issues VALUES (1260, 2, 20, 'API thêm sản phẩm vào giỏ hàng', '', '2020-04-02', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 16:43:42+07', '2020-08-11 11:40:33+07', '2020-04-02', 100, NULL, 1259, 1259, 2, 3, false, '2020-08-11 11:40:33+07');
INSERT INTO public.issues VALUES (1261, 2, 20, 'API xóa sản phẩm khỏi giỏ hàng', '', '2020-04-03', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 16:44:59+07', '2020-08-11 11:40:35+07', '2020-04-03', 100, NULL, 1259, 1259, 4, 5, false, '2020-08-11 11:40:35+07');
INSERT INTO public.issues VALUES (1262, 2, 20, 'API cập nhật lại sản phẩm của giỏ hàng', '', '2020-04-03', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 16:45:59+07', '2020-08-11 11:40:36+07', '2020-04-03', 100, NULL, 1259, 1259, 6, 7, false, '2020-08-11 11:40:36+07');
INSERT INTO public.issues VALUES (1263, 2, 20, 'API thanh toán giỏ hàng', '', '2020-03-04', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 16:46:50+07', '2020-08-11 11:40:38+07', '2020-03-04', 100, NULL, 1259, 1259, 8, 9, false, '2020-08-11 11:40:38+07');
INSERT INTO public.issues VALUES (1264, 2, 20, 'Quyền truy cập', '', '2020-04-02', NULL, 5, NULL, 2, NULL, 4, 2, '2020-07-14 16:51:53+07', '2020-08-11 11:41:58+07', '2020-03-31', 100, NULL, NULL, 1264, 1, 4, false, '2020-08-11 11:41:58+07');
INSERT INTO public.issues VALUES (1265, 2, 20, 'Danh sách các quyền', '', '2020-04-02', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 16:52:51+07', '2020-08-11 11:40:41+07', '2020-03-31', 100, NULL, 1264, 1264, 2, 3, false, '2020-08-11 11:40:41+07');
INSERT INTO public.issues VALUES (1266, 2, 20, 'Vai trò tài khoản', '', '2020-04-15', NULL, 5, NULL, 2, NULL, 4, 4, '2020-07-14 16:53:56+07', '2020-08-11 11:40:56+07', '2020-04-01', 100, NULL, NULL, 1266, 1, 8, false, '2020-08-11 11:40:56+07');
INSERT INTO public.issues VALUES (1267, 2, 20, 'Thêm/Sửa/Xóa một vai trò', '', '2020-04-05', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 16:55:31+07', '2020-08-11 11:40:44+07', '2020-04-01', 100, NULL, 1266, 1266, 2, 3, false, '2020-08-11 11:40:44+07');
INSERT INTO public.issues VALUES (1268, 2, 20, 'Cấp quyền theo từng vai trò', '', '2020-04-08', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 16:56:14+07', '2020-08-11 11:40:46+07', '2020-04-02', 100, NULL, 1266, 1266, 4, 5, false, '2020-08-11 11:40:46+07');
INSERT INTO public.issues VALUES (1269, 2, 20, 'Chọn hiện thị menu đối tác, menu khách hàng, menu hệ thống cho từng vai trò', '', '2020-04-15', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-14 16:57:40+07', '2020-08-11 11:40:47+07', '2020-04-09', 100, NULL, 1266, 1266, 6, 7, false, '2020-08-11 11:40:47+07');
INSERT INTO public.issues VALUES (1270, 4, 26, 'Lập E-HSDT', 'Thực hiện tất cả thủ tục cần thiết cho E-HSDT', '2020-07-27', 14, 1, 22, 3, NULL, 21, 2, '2020-07-15 10:20:33+07', '2020-07-27 08:03:38+07', '2020-07-15', 0, NULL, NULL, 1270, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (1271, 4, 26, 'Chuẩn bị thư bảo lãnh dự thầu', '', '2020-07-27', 14, 1, NULL, 3, NULL, 21, 2, '2020-07-15 10:22:40+07', '2020-07-27 08:03:38+07', '2020-07-15', 0, NULL, 1270, 1270, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1273, 4, 26, 'Dự toán tài chính thực hiện gói thầu', 'Thực hiện dự toán lợi nhuận thực hiện gói thầu, các chi phí thực hiện và phát sinh', '2020-07-25', 14, 1, 22, 3, NULL, 21, 0, '2020-07-15 10:27:54+07', '2020-07-15 10:27:54+07', '2020-07-20', 0, NULL, NULL, 1273, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1274, 2, 23, 'API thanh toán cho sản phẩm đấu giá thành công', '', '2020-07-24', NULL, 1, NULL, 2, NULL, 4, 8, '2020-07-15 10:28:36+07', '2020-07-15 10:49:55+07', '2020-07-15', 42, NULL, NULL, 1274, 1, 16, false, NULL);
INSERT INTO public.issues VALUES (1275, 2, 23, 'Tích hợp thanh toán cho ViettelPay', '', '2020-07-17', NULL, 1, NULL, 2, NULL, 4, 0, '2020-07-15 10:29:19+07', '2020-07-15 10:29:19+07', '2020-07-15', 0, NULL, 1274, 1274, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1276, 2, 23, 'Tích hợp thanh toán cho VNPay', '', '2020-07-18', NULL, 1, NULL, 2, NULL, 4, 0, '2020-07-15 10:30:09+07', '2020-07-15 10:30:09+07', '2020-07-17', 0, NULL, 1274, 1274, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1277, 2, 23, 'Đăng ký làm đối tác của VNPAY - mục đích Test', '', '2020-07-20', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-15 10:45:56+07', '2020-08-11 11:40:50+07', '2020-07-20', 100, NULL, 1274, 1274, 6, 7, false, '2020-08-11 11:40:50+07');
INSERT INTO public.issues VALUES (1278, 2, 23, 'Đăng ký làm đối tác của ViettelPAY - mục đích Test', '', '2020-07-20', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-15 10:46:25+07', '2020-08-11 11:40:51+07', '2020-07-20', 100, NULL, 1274, 1274, 8, 9, false, '2020-08-11 11:40:51+07');
INSERT INTO public.issues VALUES (1279, 2, 23, 'Thiết lập mô hình kết nối cho VNPAY, ViettelPay', '![](clipboard-202007151047-jpuio.png)
', '2020-07-21', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-15 10:48:04+07', '2020-08-11 11:40:53+07', '2020-07-21', 100, NULL, 1274, 1274, 10, 11, false, '2020-08-11 11:40:53+07');
INSERT INTO public.issues VALUES (1280, 2, 23, 'Thiết lập bảng mã kết nối cho VNPAY (lỗi, mã trả về, thông tin kết nối,...)', '', '2020-07-22', NULL, 1, NULL, 2, NULL, 4, 0, '2020-07-15 10:49:30+07', '2020-07-15 10:49:30+07', '2020-07-16', 0, NULL, 1274, 1274, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (1281, 2, 23, 'Thiết lập bảng mã kết nối cho ViettelPAY (lỗi, mã trả về, thông tin kết nối,...)', '', '2020-07-24', NULL, 1, NULL, 2, NULL, 4, 0, '2020-07-15 10:49:55+07', '2020-07-15 10:49:55+07', '2020-07-18', 0, NULL, 1274, 1274, 14, 15, false, NULL);
INSERT INTO public.issues VALUES (1282, 2, 14, 'Trang đăng ký tài khoản', '', '2020-05-30', NULL, 5, 17, 2, NULL, 4, 5, '2020-07-15 10:53:51+07', '2020-08-11 11:42:14+07', '2020-05-28', 100, NULL, NULL, 1282, 1, 16, false, '2020-08-11 11:42:14+07');
INSERT INTO public.issues VALUES (1283, 4, 19, 'Thủ tục pháp lý cho các sản phẩm phần mềm', '', '2020-08-15', 15, 1, NULL, 2, NULL, 21, 1, '2020-07-15 10:54:10+07', '2020-07-15 10:59:28+07', '2020-07-15', 0, NULL, NULL, 1283, 1, 10, false, NULL);
INSERT INTO public.issues VALUES (1284, 4, 19, 'Đăng ký bản quyền tác giả phần mềm', 'Cập nhật trạng thái hồ sơ đăng ký, liên hệ đầu mối', '2020-07-30', NULL, 1, NULL, 2, NULL, 21, 0, '2020-07-15 10:55:38+07', '2020-07-15 10:55:38+07', '2020-07-15', 0, NULL, 1283, 1283, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1285, 1, 14, 'Chưa cho đăng ký với số điện thoại khác Việt Nam', '', '2020-05-28', NULL, 5, 17, 2, NULL, 4, 1, '2020-07-15 10:56:19+07', '2020-08-11 11:38:58+07', '2020-05-28', 100, NULL, 1282, 1282, 2, 3, false, '2020-08-11 11:38:58+07');
INSERT INTO public.issues VALUES (1286, 4, 19, 'Thanh toán phí đăng ký', '', '2020-07-30', NULL, 1, NULL, 2, NULL, 21, 0, '2020-07-15 10:56:38+07', '2020-07-15 10:56:38+07', '2020-07-15', 0, NULL, 1283, 1283, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1287, 1, 14, 'Chưa chọn được địa chỉ', '', '2020-05-28', NULL, 5, 17, 2, NULL, 4, 2, '2020-07-15 10:56:52+07', '2020-08-11 11:39:00+07', '2020-05-28', 100, NULL, 1282, 1282, 4, 5, false, '2020-08-11 11:39:00+07');
INSERT INTO public.issues VALUES (1288, 1, 14, 'Chưa nhập được ngày tháng năm sinh trực tiếp', '', '2020-05-28', NULL, 5, 17, 2, NULL, 4, 2, '2020-07-15 10:57:21+07', '2020-08-11 11:39:02+07', '2020-05-28', 100, NULL, 1282, 1282, 6, 7, false, '2020-08-11 11:39:02+07');
INSERT INTO public.issues VALUES (1289, 1, 14, 'Năm sinh chưa được chọn theo list', '', '2020-05-28', NULL, 5, 17, 2, NULL, 4, 1, '2020-07-15 10:57:59+07', '2020-08-11 11:39:04+07', '2020-05-28', 100, NULL, 1282, 1282, 8, 9, false, '2020-08-11 11:39:04+07');
INSERT INTO public.issues VALUES (1290, 2, 14, 'Chưa có xác thực qua điện thoại và email', '', '2020-05-30', NULL, 5, 17, 2, NULL, 4, 3, '2020-07-15 10:58:44+07', '2020-08-11 11:42:13+07', '2020-05-29', 100, NULL, 1282, 1282, 10, 15, false, '2020-08-11 11:42:13+07');
INSERT INTO public.issues VALUES (1291, 4, 19, 'Soạn thảo quy trình sản xuất phần mềm', '', '2020-08-15', NULL, 1, 21, 2, NULL, 21, 0, '2020-07-15 10:59:28+07', '2020-07-15 10:59:28+07', '2020-07-15', 0, NULL, 1283, 1283, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1292, 2, 14, 'Đăng ký đối tác để xác thực OTP (hiện tại đang dùng đối tác Firebase của Google)', '', '2020-05-29', NULL, 5, 17, 2, NULL, 4, 1, '2020-07-15 11:00:00+07', '2020-08-11 11:39:09+07', '2020-05-29', 100, NULL, 1290, 1282, 11, 12, false, '2020-08-11 11:39:09+07');
INSERT INTO public.issues VALUES (1293, 2, 14, 'Tích hợp vào hệ thống', '', '2020-05-30', NULL, 5, 17, 2, NULL, 4, 1, '2020-07-15 11:00:31+07', '2020-08-11 11:39:11+07', '2020-05-30', 100, NULL, 1290, 1282, 13, 14, false, '2020-08-11 11:39:11+07');
INSERT INTO public.issues VALUES (1294, 1, 14, 'Bố trí chưa hài hòa: Trang chủ, tìm kiếm, đấu giá, Liên hệ', '', '2020-06-22', NULL, 1, 17, 2, NULL, 4, 0, '2020-07-15 11:06:14+07', '2020-07-15 11:06:14+07', '2020-06-01', 80, NULL, 1051, 1051, 48, 49, false, NULL);
INSERT INTO public.issues VALUES (1295, 1, 14, 'Bố trí chưa hài hòa:  Mục Tin tức mới - Bỏ nội dung này', '', '2020-06-02', NULL, 5, 17, 2, NULL, 4, 2, '2020-07-15 11:06:44+07', '2020-08-11 11:38:34+07', '2020-06-01', 100, NULL, 1051, 1051, 50, 51, false, '2020-08-11 11:38:34+07');
INSERT INTO public.issues VALUES (1296, 2, 14, 'Hiển thị các nội dung KEY: Cá vừa mới kết thúc, cá vừa mới đăng, cá được nhiều người quan tâm, cá được nhiều người yêu thích', '', '2020-06-30', NULL, 1, 17, 2, NULL, 4, 1, '2020-07-15 11:07:32+07', '2020-08-15 10:54:55+07', '2020-06-02', 100, NULL, 1051, 1051, 52, 53, false, NULL);
INSERT INTO public.issues VALUES (1297, 2, 14, 'Các phương thức thanh toán vận chuyển phải hiển thị ở bên ngoài', '', '2020-06-15', NULL, 1, 17, 2, NULL, 4, 0, '2020-07-15 11:09:18+07', '2020-07-15 11:09:18+07', '2020-06-15', 80, NULL, 1051, 1051, 54, 55, false, NULL);
INSERT INTO public.issues VALUES (1298, 1, 14, 'Đối với hình thức Trả Giá - Chưa có nút trả giá', '', '2020-06-26', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-15 11:10:45+07', '2020-08-15 10:54:11+07', '2020-06-25', 100, NULL, 1071, 1071, 32, 33, false, NULL);
INSERT INTO public.issues VALUES (1299, 1, 14, 'Chưa có nút dấu trái tim để bấm vào để dưa vào danh sách theo dõi', '', '2020-06-12', NULL, 5, 17, 2, NULL, 4, 2, '2020-07-15 11:11:26+07', '2020-08-11 11:38:36+07', '2020-06-12', 100, NULL, 1071, 1071, 34, 35, false, '2020-08-11 11:38:36+07');
INSERT INTO public.issues VALUES (1300, 1, 14, 'Chưa có nút dấu trái tim cho từng sản phẩm để bấm vào để dưa vào danh sách theo dõi', '', '2020-06-15', NULL, 5, 17, 2, NULL, 4, 2, '2020-07-15 11:12:04+07', '2020-08-11 11:38:38+07', '2020-06-15', 100, NULL, 1051, 1051, 56, 57, false, '2020-08-11 11:38:38+07');
INSERT INTO public.issues VALUES (1301, 4, 19, 'Lập các thủ tục pháp lý về ưu đãi thuế đối với sản xuất phần mềm', '', '2020-08-15', NULL, 1, NULL, 2, NULL, 21, 1, '2020-07-15 11:13:37+07', '2020-07-21 09:11:41+07', '2020-07-15', 0, NULL, 1283, 1283, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (1302, 2, 14, 'Nên điều chỉnh các nội dung chính sách, thời gian, thanh toán thành chính sách, lịch sử, vận chuyển và thanh toán, câu hỏi thường gặp; lưu ý hiển thị đúng vị trí như đang xây dựng hiện tại', 'Trang cần tham khảo: 
https://www.kodamakoifarm.com/product/live-koi/auction/may-24-2020/showa-koi-s0414s008/
', '2020-07-01', NULL, 1, 17, 2, NULL, 4, 0, '2020-07-15 11:13:42+07', '2020-07-15 11:13:42+07', '2020-07-01', 40, NULL, 1071, 1071, 36, 37, false, NULL);
INSERT INTO public.issues VALUES (1303, 2, 14, 'Có thể không cần đăng nhập, trả giá/mua/đấu giá xong tiến hành thanh toán và nhập thông tin cá nhân, từ thông tin cá nhân sẽ tạo thành user và mật khẩu cho khách hàng(Đối với cá, còn đối với nhà đất phải được cấp tài khoản mới cho thực hiện các thao tác)', '', '2020-07-31', NULL, 1, 17, 3, NULL, 4, 0, '2020-07-15 11:15:48+07', '2020-07-15 11:15:48+07', '2020-07-02', 20, NULL, NULL, 1303, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1304, 1, 14, 'Đối với hình cá có biểu tượng  certi,  hình trại cá, kích thức cá, male/hoặc female', '', '2020-07-10', NULL, 5, 17, 2, NULL, 4, 2, '2020-07-15 11:17:07+07', '2020-08-11 11:38:40+07', '2020-07-03', 100, NULL, NULL, 1304, 1, 2, false, '2020-08-11 11:38:40+07');
INSERT INTO public.issues VALUES (1305, 3, 14, 'Chỉnh lại style CSS - đối với hình cá có biểu tượng  certi,  hình trại cá, kích thức cá, male/hoặc female', '', '2020-07-12', NULL, 5, 6, 2, NULL, 4, 1, '2020-07-15 11:18:07+07', '2020-08-11 11:39:14+07', '2020-07-10', 100, NULL, NULL, 1305, 1, 2, false, '2020-08-11 11:39:14+07');
INSERT INTO public.issues VALUES (1306, 2, 14, 'Hiển thị icon liên hệ gọi, zalo, talkto, gửi email, facebook', '', '2020-07-06', NULL, 5, 17, 2, NULL, 4, 4, '2020-07-15 11:20:52+07', '2020-08-11 11:38:52+07', '2020-07-05', 100, NULL, NULL, 1306, 1, 6, false, '2020-08-11 11:38:52+07');
INSERT INTO public.issues VALUES (1307, 1, 14, 'Dùng đường link hình ảnh trong website. Không dùng đường link ngoài để gắn vào', '', '2020-07-05', NULL, 5, 17, 2, NULL, 4, 2, '2020-07-15 11:22:32+07', '2020-08-11 11:38:45+07', '2020-07-05', 100, NULL, 1306, 1306, 2, 3, false, '2020-08-11 11:38:45+07');
INSERT INTO public.issues VALUES (1308, 1, 14, 'Nén ảnh xuống mức tối thiểu để hiển thị (Hiện tại kích thước ảnh quá lớn)', '', '2020-07-06', NULL, 5, 17, 2, NULL, 4, 2, '2020-07-15 11:23:33+07', '2020-08-11 11:38:47+07', '2020-07-06', 100, NULL, 1306, 1306, 4, 5, false, '2020-08-11 11:38:47+07');
INSERT INTO public.issues VALUES (1309, 2, 11, 'List trạm qt', '', '2020-07-15', NULL, 5, 5, 2, 1, 5, 6, '2020-07-15 13:34:33+07', '2020-08-07 16:40:08+07', '2020-07-15', 100, NULL, 1173, 1046, 9, 10, false, '2020-08-07 16:40:08+07');
INSERT INTO public.issues VALUES (1310, 2, 11, 'Add trạm qt', 'Nhập:

Mã trạm

Tên trạm

string ToaDo: ''POINT(xxx, yyy)'' vn-2000', '2020-07-16', NULL, 5, 24, 2, 1, 5, 7, '2020-07-15 13:34:59+07', '2020-08-07 16:40:08+07', '2020-07-15', 100, NULL, 1173, 1046, 11, 12, false, '2020-08-07 16:40:08+07');
INSERT INTO public.issues VALUES (1311, 2, 11, 'Detail trạm qt', 'Mã điểm

Tên điểm

Địa chỉ, quận huyện

Tọa độ

Loại môi trường quan trắc

Loại quan trắc: tự động, định kỳ

Áp dụng bộ quy chuẩn nào', '2020-07-27', NULL, 5, 8, 2, 1, 5, 11, '2020-07-15 13:35:33+07', '2020-08-07 16:40:08+07', '2020-07-27', 100, NULL, 1173, 1046, 13, 14, false, '2020-08-07 16:40:08+07');
INSERT INTO public.issues VALUES (1312, 2, 14, 'Webmasters', '', '2020-06-19', NULL, 1, NULL, 2, NULL, 4, 4, '2020-07-15 15:42:54+07', '2020-07-15 15:48:30+07', '2020-06-09', 75, NULL, NULL, 1312, 1, 16, false, NULL);
INSERT INTO public.issues VALUES (1313, 2, 14, 'Facebook Crawler', '', '2020-06-12', NULL, 5, NULL, 2, NULL, 4, 3, '2020-07-15 15:43:24+07', '2020-08-11 11:42:11+07', '2020-06-09', 100, NULL, 1312, 1312, 2, 9, false, '2020-08-11 11:42:11+07');
INSERT INTO public.issues VALUES (1314, 2, 14, 'Zalo Crawler', '', '2020-06-15', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-15 15:44:12+07', '2020-08-11 11:39:17+07', '2020-06-13', 100, NULL, 1312, 1312, 10, 11, false, '2020-08-11 11:39:17+07');
INSERT INTO public.issues VALUES (1315, 2, 14, 'Link Sharing FAQ', '', '2020-06-09', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-15 15:45:19+07', '2020-08-11 11:42:10+07', '2020-06-09', 100, NULL, 1313, 1312, 3, 4, false, '2020-08-11 11:42:10+07');
INSERT INTO public.issues VALUES (1316, 2, 14, 'Optimizing Metadata', '', '2020-06-12', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-15 15:45:41+07', '2020-08-11 11:39:20+07', '2020-06-11', 100, NULL, 1313, 1312, 5, 6, false, '2020-08-11 11:39:20+07');
INSERT INTO public.issues VALUES (1317, 2, 14, 'Images in Link Shares', '', '2020-06-12', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-15 15:46:10+07', '2020-08-11 11:39:22+07', '2020-06-11', 100, NULL, 1313, 1312, 7, 8, false, '2020-08-11 11:39:22+07');
INSERT INTO public.issues VALUES (1318, 2, 14, 'Google Webmaster Tool', '', '2020-06-18', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-15 15:47:42+07', '2020-08-11 11:39:24+07', '2020-06-15', 100, NULL, 1312, 1312, 12, 13, false, '2020-08-11 11:39:24+07');
INSERT INTO public.issues VALUES (1319, 2, 14, 'Google Search Console', '', '2020-06-19', NULL, 1, NULL, 2, NULL, 4, 0, '2020-07-15 15:48:30+07', '2020-07-15 15:48:30+07', '2020-06-18', 0, NULL, 1312, 1312, 14, 15, false, NULL);
INSERT INTO public.issues VALUES (1320, 2, 16, 'Thanh toán', '', '2020-07-20', NULL, 1, 16, 2, NULL, 4, 3, '2020-07-15 15:58:30+07', '2020-07-15 16:02:02+07', '2020-07-01', 75, NULL, NULL, 1320, 1, 10, false, NULL);
INSERT INTO public.issues VALUES (1321, 2, 16, 'Hiển thị danh sách các đối tác', '', '2020-07-02', NULL, 5, 16, 2, NULL, 4, 1, '2020-07-15 15:59:02+07', '2020-08-11 11:39:49+07', '2020-07-01', 100, NULL, 1320, 1320, 2, 3, false, '2020-08-11 11:39:49+07');
INSERT INTO public.issues VALUES (1322, 2, 16, 'Kiểm tra đối tác hệ thống đã kết nối tới ViettelPay, VNPay,...', '', '2020-07-02', NULL, 5, 16, 2, NULL, 4, 1, '2020-07-15 16:00:14+07', '2020-08-11 11:39:50+07', '2020-07-02', 100, NULL, 1320, 1320, 4, 5, false, '2020-08-11 11:39:50+07');
INSERT INTO public.issues VALUES (1323, 2, 16, 'Cập nhật lại kết nối cho đối tác trong hệ thống', '', '2020-07-04', NULL, 5, 16, 2, NULL, 4, 1, '2020-07-15 16:01:06+07', '2020-08-11 11:39:51+07', '2020-07-03', 100, NULL, 1320, 1320, 6, 7, false, '2020-08-11 11:39:51+07');
INSERT INTO public.issues VALUES (1324, 1, 16, 'Khi cập nhật kết nối chưa hiển thị lên thông báo để xác nhận', '', '2020-07-20', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-15 16:02:02+07', '2020-07-15 16:02:02+07', '2020-07-20', 0, NULL, 1320, 1320, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (1325, 2, 16, 'Quản Trị', '', '2020-07-21', NULL, 1, NULL, 2, NULL, 4, 4, '2020-07-15 16:02:56+07', '2020-07-15 16:08:39+07', '2020-05-28', 90, NULL, NULL, 1325, 1, 16, false, NULL);
INSERT INTO public.issues VALUES (1326, 2, 16, 'Hiển thị danh sách vai trò được phép cho đối tác', '', '2020-05-28', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-15 16:03:46+07', '2020-08-11 11:39:53+07', '2020-05-28', 100, NULL, 1325, 1325, 2, 3, false, '2020-08-11 11:39:53+07');
INSERT INTO public.issues VALUES (1327, 2, 16, 'Quản lí tài khoản', '', '2020-07-21', NULL, 1, 16, 2, NULL, 4, 4, '2020-07-15 16:04:29+07', '2020-07-15 16:08:39+07', '2020-06-21', 80, NULL, 1325, 1325, 4, 15, false, NULL);
INSERT INTO public.issues VALUES (1328, 2, 16, 'Hiển thị danh sách các tài khoản', '', '2020-06-22', NULL, 5, 16, 2, NULL, 4, 1, '2020-07-15 16:05:06+07', '2020-08-11 11:39:55+07', '2020-06-21', 100, NULL, 1327, 1325, 5, 6, false, '2020-08-11 11:39:55+07');
INSERT INTO public.issues VALUES (1329, 2, 16, 'Thêm tài khoản', '', '2020-06-23', NULL, 5, 16, 2, NULL, 4, 1, '2020-07-15 16:05:42+07', '2020-08-11 11:39:56+07', '2020-06-22', 100, NULL, 1327, 1325, 7, 8, false, '2020-08-11 11:39:56+07');
INSERT INTO public.issues VALUES (1330, 2, 16, 'Cập nhật lại mật khẩu cho từng tài khoản', '', '2020-06-23', NULL, 5, 16, 2, NULL, 4, 1, '2020-07-15 16:06:27+07', '2020-08-11 11:39:58+07', '2020-06-23', 100, NULL, 1327, 1325, 9, 10, false, '2020-08-11 11:39:58+07');
INSERT INTO public.issues VALUES (1331, 2, 16, 'Cập nhật các vai trò cho từng tài khoản', '', '2020-06-24', NULL, 5, 16, 2, NULL, 4, 1, '2020-07-15 16:07:12+07', '2020-08-11 11:40:00+07', '2020-06-23', 100, NULL, 1327, 1325, 11, 12, false, '2020-08-11 11:40:00+07');
INSERT INTO public.issues VALUES (1332, 1, 16, 'Tài khoản có tối thiểu 1 vai trò. Hiện tại cập nhật vai trò vẫn cho phép rỗng', '', '2020-07-21', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-15 16:08:39+07', '2020-07-15 16:08:39+07', '2020-07-21', 0, NULL, 1327, 1325, 13, 14, false, NULL);
INSERT INTO public.issues VALUES (1333, 2, 16, 'Đối tác vận chuyển', '', '2020-05-20', NULL, 1, 17, 2, NULL, 4, 4, '2020-07-15 16:11:20+07', '2020-07-15 16:18:33+07', '2020-05-05', 66, NULL, NULL, 1333, 1, 12, false, NULL);
INSERT INTO public.issues VALUES (1334, 2, 16, 'Hiển thị danh sách các đối tác', '', '2020-05-08', NULL, 5, 17, 2, NULL, 4, 1, '2020-07-15 16:11:52+07', '2020-08-11 11:40:01+07', '2020-05-05', 100, NULL, 1333, 1333, 2, 3, false, '2020-08-11 11:40:01+07');
INSERT INTO public.issues VALUES (1335, 2, 16, 'Tạo kết nối đến đối tác vận chuyển Viettel Post bao gồm: Username/Password được cấp bởi ', '', '2020-05-17', NULL, 5, 17, 2, NULL, 4, 3, '2020-07-15 16:13:34+07', '2020-08-11 11:42:06+07', '2020-05-14', 100, NULL, 1333, 1333, 4, 9, false, '2020-08-11 11:42:06+07');
INSERT INTO public.issues VALUES (1336, 2, 16, 'Lấy danh sách kho hàng sau khi kết nối thành công', '', '2020-05-15', NULL, 5, 17, 2, NULL, 4, 1, '2020-07-15 16:14:44+07', '2020-08-11 11:40:06+07', '2020-05-14', 100, NULL, 1335, 1333, 5, 6, false, '2020-08-11 11:40:06+07');
INSERT INTO public.issues VALUES (1337, 2, 16, 'Kết nối sổ địa chỉ của công ty với danh sách kho hàng đã kết nối với Viettel Post', '', '2020-05-17', NULL, 5, 17, 2, NULL, 4, 1, '2020-07-15 16:16:02+07', '2020-08-11 11:40:09+07', '2020-05-16', 100, NULL, 1335, 1333, 7, 8, false, '2020-08-11 11:40:09+07');
INSERT INTO public.issues VALUES (1338, 2, 16, 'Cập nhật kết nối cho đối tác Viettel Post', '', '2020-05-20', NULL, 1, 17, 2, NULL, 4, 0, '2020-07-15 16:18:33+07', '2020-07-15 16:18:33+07', '2020-05-18', 0, NULL, 1333, 1333, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (1339, 2, 16, 'Kho hàng', '', '2020-05-23', NULL, 5, 16, 2, NULL, 4, 4, '2020-07-15 16:20:17+07', '2020-08-11 11:42:05+07', '2020-05-21', 100, NULL, NULL, 1339, 1, 6, false, '2020-08-11 11:42:05+07');
INSERT INTO public.issues VALUES (1340, 2, 16, 'Hiển thị danh sách kho hàng', '', '2020-05-22', NULL, 5, 16, 2, NULL, 4, 3, '2020-07-15 16:21:14+07', '2020-08-11 11:38:50+07', '2020-05-21', 100, NULL, 1339, 1339, 2, 3, false, '2020-08-11 11:38:50+07');
INSERT INTO public.issues VALUES (1341, 2, 16, 'Thêm/Sửa/Xóa một kho hàng', '', '2020-05-23', NULL, 5, 16, 2, NULL, 4, 1, '2020-07-15 16:24:00+07', '2020-08-11 11:40:12+07', '2020-05-22', 100, NULL, 1339, 1339, 4, 5, false, '2020-08-11 11:40:12+07');
INSERT INTO public.issues VALUES (1342, 2, 16, 'Đấu giá', '', '2020-07-31', NULL, 1, 17, 2, NULL, 4, 4, '2020-07-16 08:20:07+07', '2020-07-16 08:34:38+07', '2020-03-01', 25, NULL, NULL, 1342, 1, 10, false, NULL);
INSERT INTO public.issues VALUES (1343, 2, 16, 'Đăng đấu giá', '', '2020-05-10', NULL, 5, 17, 2, NULL, 4, 1, '2020-07-16 08:22:14+07', '2020-08-11 11:40:13+07', '2020-03-01', 100, NULL, 1342, 1342, 2, 3, false, '2020-08-11 11:40:13+07');
INSERT INTO public.issues VALUES (1344, 2, 16, 'Bước 1: Danh mục sản phẩm - chỉ lấy những tài sản thường (Tài sản công có thể viết một menu mới)', '', '2020-07-30', NULL, 1, 17, 2, NULL, 4, 1, '2020-07-16 08:25:30+07', '2020-07-16 08:36:57+07', '2020-07-30', 0, NULL, 1342, 1342, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1345, 2, 4, 'Api lấy thông tin doanh nghiệp', 'IdDoanhNghiep

TenDoanhNghiep

....

ListThongTinThue: KCNA - L1 - Tọa độ - Diện tích?, ......', '2020-07-16', NULL, 5, 6, 2, NULL, 5, 3, '2020-07-16 08:26:23+07', '2020-08-03 08:09:06+07', '2020-07-16', 100, NULL, 1009, 1008, 23, 24, false, '2020-08-03 08:09:06+07');
INSERT INTO public.issues VALUES (1346, 2, 16, 'Bước 2: Cài Đặt Cho Phiên Đấu Giá - đối với hình thức trả giá cần có thêm ngày bắt đầu trả giá và ngày kết thúc trả giá', '', '2020-07-31', NULL, 1, 17, 2, NULL, 4, 2, '2020-07-16 08:26:55+07', '2020-07-16 08:37:07+07', '2020-07-31', 0, NULL, 1342, 1342, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1347, 2, 16, 'Bước 2: Cài Đặt Cho Phiên Đấu Giá - đối với hình thức trả giá cần có thêm mốc tiền cao nhất và mốc tiền thấp nhất', 'Chỗ trả giá mình sợ anh em làm nhầm nên mình nói lại tư tưởng: là khi chủ cá thực hiện đăng cá và cho thời gian trả giá, kèm theo 2 mốc giá(mốc 1 cao, mốc 2 thấp), nếu như 90% thời gian đầu thì khi người dùng trả giá đến mức 1 thì thực hiện bán, nếu còn 10% thời gian còn lại thì áp dụng mốc 2(nghĩa là khi người dùng đã trả giá bằng hoặc hơn mốc 2 thì bán).', '2020-07-30', NULL, 1, 17, 2, NULL, 4, 2, '2020-07-16 08:34:37+07', '2020-07-16 08:37:11+07', '2020-07-29', 0, NULL, 1342, 1342, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (1348, 1, 14, 'Hiển thị số lượt yêu thích bị lỗi', '', '2020-07-22', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-16 08:50:05+07', '2020-08-15 10:54:13+07', '2020-07-22', 100, NULL, NULL, 1348, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1349, 2, 15, 'Danh mục', '', '2020-03-01', NULL, 1, NULL, 2, NULL, 4, 6, '2020-07-16 09:21:00+07', '2020-07-16 09:28:08+07', '2020-02-26', 66, NULL, NULL, 1349, 1, 10, false, NULL);
INSERT INTO public.issues VALUES (1350, 2, 15, 'Danh mục dành cho các sản phẩm', '', '2020-02-26', NULL, 5, NULL, 2, NULL, 4, 2, '2020-07-16 09:22:26+07', '2020-08-11 11:42:09+07', '2020-02-26', 100, NULL, 1349, 1349, 2, 5, false, '2020-08-11 11:42:09+07');
INSERT INTO public.issues VALUES (1351, 2, 15, 'Danh mục cho Cá Koi', '', '2020-02-26', NULL, 5, NULL, 2, NULL, 4, 2, '2020-07-16 09:22:52+07', '2020-08-11 11:39:34+07', '2020-02-26', 100, NULL, 1350, 1349, 3, 4, false, '2020-08-11 11:39:34+07');
INSERT INTO public.issues VALUES (1352, 2, 15, 'Danh mục cho vị trí', '', '2020-03-01', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-16 09:24:22+07', '2020-08-11 11:39:35+07', '2020-02-28', 100, NULL, 1349, 1349, 6, 7, false, '2020-08-11 11:39:35+07');
INSERT INTO public.issues VALUES (1353, 2, 15, 'Danh mục dùng chung', '', '2020-03-01', NULL, 1, NULL, 2, NULL, 4, 0, '2020-07-16 09:28:08+07', '2020-07-16 09:28:08+07', '2020-03-01', 0, NULL, 1349, 1349, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (1354, 2, 15, 'Quản Trị', '', '2020-03-18', NULL, 5, NULL, 2, NULL, 4, 3, '2020-07-16 09:28:58+07', '2020-08-11 11:42:07+07', '2020-03-10', 100, NULL, NULL, 1354, 1, 6, false, '2020-08-11 11:42:07+07');
INSERT INTO public.issues VALUES (1355, 2, 15, 'Cấu hình vai trò', '', '2020-03-15', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-16 09:30:32+07', '2020-08-11 11:39:39+07', '2020-03-10', 100, NULL, 1354, 1354, 2, 3, false, '2020-08-11 11:39:39+07');
INSERT INTO public.issues VALUES (1356, 2, 15, 'Danh sách tài khoản', '', '2020-03-18', NULL, 5, NULL, 2, NULL, 4, 1, '2020-07-16 09:31:15+07', '2020-08-11 11:39:41+07', '2020-03-16', 100, NULL, 1354, 1354, 4, 5, false, '2020-08-11 11:39:41+07');
INSERT INTO public.issues VALUES (1357, 2, 15, 'Tra cứu bưu cục', '', '2020-04-30', NULL, 5, 17, 2, NULL, 4, 1, '2020-07-16 10:01:58+07', '2020-08-11 11:39:43+07', '2020-04-28', 100, NULL, 1124, 1124, 10, 11, false, '2020-08-11 11:39:43+07');
INSERT INTO public.issues VALUES (1358, 2, 15, 'Đối với Tài sản công - Trước khi phê duyệt yêu cầu phải có ký số', '', NULL, NULL, 1, NULL, 2, NULL, 4, 0, '2020-07-16 10:12:37+07', '2020-07-16 10:12:37+07', '2020-07-20', 0, NULL, 1148, 1147, 5, 6, false, NULL);
INSERT INTO public.issues VALUES (1359, 2, 15, 'Đối với Tài sản thường - Phê duyệt yêu cầu nhập nội dung phê duyệt', '', '2020-07-25', NULL, 1, 16, 2, NULL, 4, 0, '2020-07-16 10:14:28+07', '2020-07-16 10:14:28+07', '2020-07-23', 0, NULL, 1148, 1147, 7, 8, false, NULL);
INSERT INTO public.issues VALUES (1360, 2, 15, 'Đối với Tài sản thường - Từ chối phê duyệt yêu cầu nhập nội dung từ chối', '', '2020-07-25', NULL, 5, 16, 2, NULL, 4, 1, '2020-07-16 10:15:31+07', '2020-08-11 11:39:45+07', '2020-07-24', 100, NULL, 1148, 1147, 9, 10, false, '2020-08-11 11:39:45+07');
INSERT INTO public.issues VALUES (1361, 2, 15, 'Hiện thị chi tiết nội dung phê duyệt', '', '2020-07-22', NULL, 5, 16, 2, NULL, 4, 1, '2020-07-16 10:16:32+07', '2020-08-11 11:39:47+07', '2020-07-21', 100, NULL, 1148, 1147, 11, 12, false, '2020-08-11 11:39:47+07');
INSERT INTO public.issues VALUES (1362, 2, 22, 'API trả giá cho phiên đấu giá thuộc hình thức đăng trả giá', '', '2020-07-21', NULL, 1, NULL, 2, NULL, 4, 1, '2020-07-16 10:33:52+07', '2020-07-16 10:38:21+07', '2020-07-20', 0, NULL, 1364, 1364, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1363, 2, 22, 'API lấy danh sách những người đã trả giá cho sản phẩm', '', '2020-07-22', NULL, 1, NULL, 2, NULL, 4, 2, '2020-07-16 10:36:55+07', '2020-07-16 10:37:57+07', '2020-07-21', 0, NULL, 1364, 1364, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1364, 2, 22, 'Hình thức đăng trả giá', '', '2020-07-22', NULL, 1, NULL, 2, NULL, 4, 2, '2020-07-16 10:37:39+07', '2020-07-16 10:38:21+07', '2020-07-20', 0, NULL, NULL, 1364, 1, 6, false, NULL);
INSERT INTO public.issues VALUES (1365, 2, 4, 'Trang cập nhật', '', '2020-07-17', NULL, 5, 8, 2, NULL, 5, 3, '2020-07-17 08:20:27+07', '2020-08-03 08:09:08+07', '2020-07-17', 100, NULL, 1019, 1008, 67, 68, false, '2020-08-03 08:09:08+07');
INSERT INTO public.issues VALUES (1366, 2, 4, 'Hiển thị danh sách thuê của doanh nghiệp', '', '2020-07-18', NULL, 5, 13, 2, NULL, 5, 4, '2020-07-17 08:22:18+07', '2021-02-05 09:00:11+07', '2020-07-18', 100, NULL, 1018, 1008, 41, 42, false, '2020-08-03 08:09:30+07');
INSERT INTO public.issues VALUES (1367, 2, 11, 'Edit điểm quan trắc', 'Full thông tin', '2020-07-27', NULL, 5, 8, 2, 1, 5, 7, '2020-07-17 09:16:28+07', '2020-08-07 16:40:09+07', '2020-07-27', 100, NULL, 1173, 1046, 15, 16, false, '2020-08-07 16:40:09+07');
INSERT INTO public.issues VALUES (1368, 2, 11, 'Đo khoảng cách', '', '2020-07-27', NULL, 5, 24, 2, 1, 5, 7, '2020-07-17 10:06:06+07', '2020-08-07 16:40:01+07', '2020-07-27', 100, NULL, 1049, 1049, 22, 23, false, '2020-08-07 16:40:01+07');
INSERT INTO public.issues VALUES (1369, 2, 14, 'Hình thức Bán trực tiếp', '', '2020-07-25', NULL, 1, 17, 2, NULL, 4, 3, '2020-07-17 14:35:37+07', '2020-08-15 10:54:11+07', '2020-07-17', 33, NULL, 1071, 1071, 38, 45, false, NULL);
INSERT INTO public.issues VALUES (1370, 1, 14, 'Hiện thị nút Mua ngay - Khi thanh toán không yêu cầu phải đăng nhập', '', '2020-07-25', NULL, 1, 17, 2, NULL, 4, 2, '2020-07-17 14:38:59+07', '2020-08-15 10:23:26+07', '2020-07-17', 0, NULL, 1369, 1071, 39, 40, false, NULL);
INSERT INTO public.issues VALUES (1371, 1, 14, 'Sản phẩm thuộc hình thức bán trực tiếp đang hiển thị Tag "Đấu giá"', '![](clipboard-202007171441-juass.png)
', '2020-07-25', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-17 14:41:39+07', '2020-08-15 10:54:13+07', '2020-07-17', 100, NULL, NULL, 1371, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1372, 1, 14, 'Nút bỏ vào giỏ hàng bố trí chưa hợp lí - cần để gần chỗ nút mua ngay', '![](clipboard-202007171446-yfuiu.png)
', '2020-07-18', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-17 14:47:11+07', '2020-08-15 10:54:11+07', '2020-07-17', 100, NULL, 1369, 1071, 41, 42, false, NULL);
INSERT INTO public.issues VALUES (1373, 1, 14, 'Hiển thị thông tin rút gọn của sản phẩm cần hiển thị nút mua ngay và nút thêm vào giỏ hàng (không cần phải vào trang chi tiết để mua ngay và thêm giỏ hàng)', '![](clipboard-202007171449-wi3oq.png)
', '2020-07-25', NULL, 1, 17, 2, NULL, 4, 3, '2020-07-17 14:50:04+07', '2020-08-15 03:25:26+07', '2020-07-20', 0, NULL, 1369, 1071, 43, 44, false, NULL);
INSERT INTO public.issues VALUES (1374, 1, 14, 'Hình thức Trả giá', '', '2020-07-31', NULL, 1, 17, 2, NULL, 4, 13, '2020-07-17 14:52:58+07', '2020-08-15 10:54:13+07', '2020-07-17', 87, NULL, 1071, 1071, 46, 63, false, NULL);
INSERT INTO public.issues VALUES (1375, 1, 14, 'Đối với trường hợp chưa tới thời gian bắt đầu thì không cho đặt Trả giá (không hiển thị nút trả giá)', '', '2020-07-24', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-17 14:55:01+07', '2020-08-15 10:54:12+07', '2020-07-17', 100, NULL, 1374, 1071, 47, 48, false, NULL);
INSERT INTO public.issues VALUES (1376, 1, 14, 'Đối với trường hợp đã qua thời gian bắt đầu và thời gian kết thúc thì không cho trả giá (không hiển thị nút trả giá và hiển thị tên người trả giá thành công)', '', '2020-07-25', NULL, 1, 17, 2, NULL, 4, 1, '2020-07-17 14:57:00+07', '2020-08-15 07:47:12+07', '2020-07-17', 0, NULL, 1374, 1071, 49, 50, false, NULL);
INSERT INTO public.issues VALUES (1377, 1, 14, 'Hình thức Đấu Giá', '', '2020-07-24', NULL, 3, 17, 2, NULL, 4, 4, '2020-07-17 14:59:17+07', '2020-08-15 11:21:50+07', '2020-07-17', 100, NULL, NULL, 1377, 1, 6, false, NULL);
INSERT INTO public.issues VALUES (1378, 1, 14, 'Hiển thị Danh sách đặt bid - Cột STT trang đầu tiên là 1-10, qua trang thứ 2 vẫn là 1-10', '![](clipboard-202007171501-afnoz.png)
![](clipboard-202007171501-fbx7n.png)
', '2020-07-24', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-17 15:01:41+07', '2020-08-15 10:54:13+07', '2020-07-17', 100, NULL, 1377, 1377, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1379, 1, 14, 'Số sao trong bình luận và đánh giá vẫn là 5', '', '2020-07-21', NULL, 3, 17, 2, NULL, 4, 3, '2020-07-17 15:03:32+07', '2020-08-15 10:54:12+07', '2020-07-17', 100, NULL, 1374, 1071, 51, 52, false, NULL);
INSERT INTO public.issues VALUES (1380, 1, 14, 'Chưa hiển thị thời gian còn lại (Cần hiển thị % cho thời gian còn lại để dễ phân biệt các mốc thời gian)', '', '2020-07-31', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-17 15:07:10+07', '2020-08-15 10:54:12+07', '2020-07-17', 100, NULL, 1374, 1071, 53, 54, false, NULL);
INSERT INTO public.issues VALUES (1381, 1, 14, 'Cần hiển thị danh sách những người đã trả giá', '', '2020-07-30', NULL, 3, 17, 2, NULL, 4, 4, '2020-07-17 15:09:09+07', '2020-08-15 10:54:12+07', '2020-07-17', 100, NULL, 1374, 1071, 55, 56, false, '2020-08-11 11:38:49+07');
INSERT INTO public.issues VALUES (1382, 1, 14, 'Yêu cầu đăng nhập trước khi trả giá', '', '2020-07-31', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-17 15:09:39+07', '2020-08-15 10:54:12+07', '2020-07-17', 100, NULL, 1374, 1071, 57, 58, false, NULL);
INSERT INTO public.issues VALUES (1383, 1, 14, 'Cần kiểm tra số tiền đặt cọc đã cấu hình cho từng sản phẩm. Nếu số tiền đặt cọc bằng 0vnđ thì không yêu cầu thanh toán.', '', '2020-07-30', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-17 15:16:31+07', '2020-08-15 10:54:12+07', '2020-07-17', 100, NULL, 1374, 1071, 59, 60, false, NULL);
INSERT INTO public.issues VALUES (1384, 1, 14, 'Đối với trường hợp chuẩn bị đấu giá cần hiển thị thời gian đếm ngược tới thời gian bắt đầu (hiển thị đồng hộ đếm ngược theo style khác không nên giống với đồng hồ đếm ngược của sản phẩm đang đấu giá)', '', NULL, NULL, 3, 17, 2, NULL, 4, 2, '2020-07-17 15:19:24+07', '2020-08-15 11:21:50+07', '2020-07-17', 100, NULL, 1377, 1377, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1385, 1, 14, 'Cần kiểm tra người tham gia trả giá đã đặt cọc hay chưa, tránh trường hợp đặt cọc lần 2', '', '2020-07-30', NULL, 3, 17, 2, NULL, 4, 2, '2020-07-17 15:24:34+07', '2020-08-15 10:54:12+07', '2020-07-17', 100, NULL, 1374, 1071, 61, 62, false, NULL);
INSERT INTO public.issues VALUES (1386, 2, 4, 'Trang cập nhật', '', '2020-07-20', NULL, 5, 10, 2, NULL, 5, 3, '2020-07-17 15:39:31+07', '2020-08-03 08:09:31+07', '2020-07-20', 100, NULL, 1018, 1008, 43, 44, false, '2020-08-03 08:09:31+07');
INSERT INTO public.issues VALUES (1387, 2, 11, 'Api - Backend', '', '2020-07-27', NULL, 5, 19, 2, 1, 5, 64, '2020-07-17 15:45:25+07', '2020-08-07 16:43:12+07', '2020-07-13', 100, NULL, NULL, 1387, 1, 10, false, '2020-08-07 16:43:12+07');
INSERT INTO public.issues VALUES (1389, 2, 11, 'Danh sách camera', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 12, '2020-07-17 15:48:06+07', '2021-02-05 11:14:19+07', '2020-09-14', 0, NULL, 1601, 1601, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1390, 2, 11, 'Cấu hình thông số camera', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 12, '2020-07-17 15:48:39+07', '2021-02-05 11:14:19+07', '2020-09-14', 0, NULL, 1601, 1601, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1391, 2, 11, 'Danh sách quy chuẩn', '', '2020-07-22', NULL, 5, 8, 2, 1, 5, 7, '2020-07-17 16:32:33+07', '2020-08-07 16:40:59+07', '2020-07-22', 100, NULL, 1176, 1046, 27, 28, false, '2020-08-07 16:40:59+07');
INSERT INTO public.issues VALUES (1392, 2, 11, 'Chi tiết quy chuẩn', '', '2020-07-23', NULL, 5, 8, 2, 1, 5, 8, '2020-07-17 16:32:47+07', '2020-08-07 16:40:59+07', '2020-07-23', 100, NULL, 1176, 1046, 29, 30, false, '2020-08-07 16:40:59+07');
INSERT INTO public.issues VALUES (1401, 2, 11, 'Thống kê số liệu của nhiều trạm', '', '2020-09-12', NULL, 1, 8, 2, 3, 5, 44, '2020-07-18 13:12:19+07', '2020-09-09 17:00:21+07', '2020-09-01', 36, NULL, NULL, 1401, 1, 30, false, NULL);
INSERT INTO public.issues VALUES (1402, 2, 11, 'Bộ QCVN chất lượng quan trắc', '', '2020-07-18', NULL, 5, 19, 2, 1, 19, 10, '2020-07-18 14:06:08+07', '2020-08-07 16:41:30+07', '2020-07-18', 100, 2, 1387, 1387, 6, 7, false, '2020-08-07 16:41:30+07');
INSERT INTO public.issues VALUES (1403, 2, 4, 'Tìm kiếm nâng cao trên trang thông tin ', '', '2020-08-26', NULL, 2, 13, 2, 13, 13, 12, '2020-07-18 14:39:33+07', '2020-08-24 16:32:03+07', '2020-08-26', 50, NULL, NULL, 1403, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1404, 2, 4, 'Menu bản đồ', '', '2020-07-18', NULL, 5, 10, 2, NULL, 13, 4, '2020-07-18 14:46:58+07', '2020-08-03 08:09:07+07', '2020-07-18', 100, NULL, 1009, 1008, 25, 26, false, '2020-08-03 08:09:07+07');
INSERT INTO public.issues VALUES (1405, 2, 4, 'Lấy doanh nghiệp bằng api nestjs', 'doanhnghiep', '2020-07-18', NULL, 5, 13, 2, NULL, 13, 3, '2020-07-18 15:03:46+07', '2020-08-03 08:09:07+07', '2020-07-18', 100, NULL, 1009, 1008, 27, 28, false, '2020-08-03 08:09:07+07');
INSERT INTO public.issues VALUES (1406, 2, 4, 'Cập nhật thông tin quy hoạch', '', NULL, NULL, 5, 15, 2, NULL, 13, 3, '2020-07-18 15:17:23+07', '2020-08-03 08:09:08+07', '2020-07-18', 100, NULL, 1019, 1008, 69, 70, false, '2020-08-03 08:09:08+07');
INSERT INTO public.issues VALUES (1407, 2, 4, 'Chỉnh lại trang chi tiết có ranh', '', '2020-07-20', NULL, 5, 8, 2, NULL, 8, 4, '2020-07-18 15:22:21+07', '2020-08-03 08:09:09+07', '2020-07-20', 100, NULL, 1019, 1008, 71, 72, false, '2020-08-03 08:09:09+07');
INSERT INTO public.issues VALUES (1408, 2, 4, 'filter Tình trạng ', '', '2020-07-20', NULL, 5, 8, 2, NULL, 8, 3, '2020-07-18 15:22:50+07', '2020-08-03 08:09:09+07', '2020-07-20', 100, NULL, 1019, 1008, 73, 74, false, '2020-08-03 08:09:09+07');
INSERT INTO public.issues VALUES (1409, 2, 4, 'filter Lĩnh vực đầu tư', '', '2020-07-20', NULL, 5, 8, 2, NULL, 8, 3, '2020-07-18 15:23:37+07', '2020-08-03 08:09:09+07', '2020-07-20', 100, NULL, 1019, 1008, 75, 76, false, '2020-08-03 08:09:09+07');
INSERT INTO public.issues VALUES (1410, 2, 4, 'Danh mục lĩnh vực đầu tư', '', '2020-07-18', NULL, 5, 10, 2, NULL, 4, 4, '2020-07-18 15:36:14+07', '2021-02-05 08:59:45+07', '2020-07-18', 100, NULL, 1103, 1103, 8, 9, false, '2020-08-03 08:10:03+07');
INSERT INTO public.issues VALUES (1411, 4, 32, 'Thiết kế profile công ty', '', '2020-07-25', NULL, 3, 14, 2, NULL, 21, 2, '2020-07-18 15:47:29+07', '2020-11-21 09:39:46+07', '2020-07-05', 100, NULL, NULL, 1411, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1412, 2, 11, 'List API cơ bản', 'https://api-quantrac-qn.gdtvietnam.com
/odata/CSSXKD
/odata/DMDiemQuanTrac
/odata/DotQuanTracs
/odata/DMCumCongNghiep
/odata/DMLoaiMoiTruongs
/odata/DMLoaiQuanTrac
/odata/DMThongSoDo
/odata/DonViTinh
/odata/DuAn
/odata/LoaiCoSoKD
/odata/LoaiDuAn
/odata/LoaiHoSo
/odata/QuanLyHoSoDuAn
/odata/ChiTietDotDoDinhKy
/odata/DMQCVN
/odata/ChiTietQCVN
/odata/ChiTietDotTruyen
/odata/DotTruyenTongCuc
', '2020-07-18', NULL, 5, 19, 2, 1, 19, 9, '2020-07-18 15:48:17+07', '2020-08-07 16:41:31+07', '2020-07-18', 100, NULL, 1387, 1387, 8, 9, false, '2020-08-07 16:41:31+07');
INSERT INTO public.issues VALUES (1414, 5, 32, 'Cập nhật tin tức cho các website', '- Website công ty: thêm khách hàng mới, update bài viết (đầu mối lấy tin: Kiều)
- Website khách hàng: liên hệ các khách hàng lấy tin update bài viết mới.', '2020-07-21', NULL, 1, 14, 2, NULL, 21, 1, '2020-07-18 15:59:52+07', '2020-07-20 13:58:04+07', '2020-07-18', 100, NULL, NULL, 1414, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1415, 2, 4, 'Kiểm tra có ranh mới cho thêm quy hoạch', '', '2020-07-20', NULL, 5, 15, 2, NULL, 5, 3, '2020-07-18 16:09:34+07', '2020-08-03 08:09:09+07', '2020-07-20', 100, NULL, 1019, 1008, 77, 78, false, '2020-08-03 08:09:09+07');
INSERT INTO public.issues VALUES (1416, 2, 4, 'Cập nhật ranh cho điểm đầu tư', '', '2020-08-26', NULL, 5, 12, 2, 13, 5, 9, '2020-07-18 16:10:19+07', '2020-08-29 08:34:25+07', '2020-08-26', 0, NULL, NULL, 1416, 1, 2, false, '2020-08-29 08:34:25+07');
INSERT INTO public.issues VALUES (1417, 4, 19, 'Kon Tum - hồ sơ nghiệm thu ', '1) Bổ sung thêm thông tin 1 người đi tập huấn vào bảng Danh sách tập huấn. Thứ 2 ngày 20/07 chị Nguyệt - Sở 4t kon tum gửi thông tin qua. 
2) Scan 3 bản danh sách số lượng tập huấn 
2) Kiểm tra hồ sơ nghiệm thu và gửi lên Kon Tum. Hồ sơ nghiệm thu bao gồm:
 + 08 Biên bản nghiệm thu kỹ thuật 
 + 08 Biên bản nghiệm thu đào tạo
 + 08 Biên bản nghiệm thu tổng thể
 + 01 Giấy đề nghị thanh toán
 + 03 mẫu 08a đi kho bạc 
 + 03 bản Danh sách số lượng tập huấn ', '2020-07-20', NULL, 1, NULL, 2, NULL, 22, 1, '2020-07-18 16:29:46+07', '2020-07-21 13:28:28+07', '2020-07-18', 100, NULL, NULL, 1417, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1418, 5, 27, 'Scan Phông Sở LĐ (6.000 trang)', '', '2020-07-31', NULL, 1, 26, 2, NULL, 21, 5, '2020-07-20 09:48:25+07', '2020-07-30 07:51:56+07', '2020-07-20', 100, NULL, NULL, 1418, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (1419, 5, 27, 'Scan Phông SLĐ (6.000 trang)', '', '2020-07-31', NULL, 1, 31, 2, NULL, 21, 4, '2020-07-20 09:49:14+07', '2020-07-31 08:24:09+07', '2020-07-24', 100, NULL, NULL, 1419, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (1420, 5, 27, 'Scan Phông SLĐ (3.000 trang)', '', '2020-07-24', NULL, 1, 27, 2, NULL, 21, 2, '2020-07-20 09:55:45+07', '2020-07-24 15:36:13+07', '2020-07-20', 100, NULL, NULL, 1420, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (1421, 5, 27, 'Scan Phông SLĐ (6.000 trang)', '', '2020-07-31', NULL, 1, 30, 2, NULL, 21, 6, '2020-07-20 10:00:36+07', '2020-07-29 08:52:17+07', '2020-07-20', 100, NULL, NULL, 1421, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (1422, 5, 27, 'Nhập liệu (2500 văn bản)', '', '2020-07-31', NULL, 1, 28, 2, NULL, 21, 5, '2020-07-20 10:15:12+07', '2020-08-03 07:53:12+07', '2020-07-27', 60, 40, NULL, 1422, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (1423, 5, 27, 'Nhập liệu (2.700 văn bản)', '', '2020-07-31', NULL, 1, 29, 2, NULL, 21, 10, '2020-07-20 10:15:53+07', '2020-07-31 16:32:06+07', '2020-07-23', 100, NULL, NULL, 1423, 1, 6, false, NULL);
INSERT INTO public.issues VALUES (1424, 5, 27, 'Scan Phông SLĐ (6.000 trang)', '', '2020-07-31', NULL, 1, 35, 2, NULL, 21, 2, '2020-07-20 10:16:52+07', '2020-07-31 16:08:50+07', '2020-07-20', 100, NULL, NULL, 1424, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (1425, 5, 27, 'Nhập liệu (2.000 văn bản)', '', '2020-07-31', NULL, 1, 34, 2, NULL, 21, 7, '2020-07-20 10:26:37+07', '2020-07-31 16:32:25+07', '2020-07-24', 40, NULL, NULL, 1425, 1, 6, false, NULL);
INSERT INTO public.issues VALUES (1426, 2, 4, 'Xóa quy hoạch, doanh nghiệp liên quan', '', '2020-08-26', NULL, 1, 12, 2, 13, 13, 7, '2020-07-20 11:16:10+07', '2020-08-24 16:32:03+07', '2020-08-26', 0, NULL, NULL, 1426, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1427, 2, 4, 'Xóa thông tin liên quan', '', '2020-07-20', NULL, 5, 10, 2, NULL, 13, 5, '2020-07-20 11:17:09+07', '2020-08-03 08:09:31+07', '2020-07-20', 100, NULL, 1018, 1008, 45, 46, false, '2020-08-03 08:09:31+07');
INSERT INTO public.issues VALUES (1428, 2, 4, 'Nếu doanh nghiệp đã tồn tại, chỉ thêm thông tin thuê và chi tiết thuê đât', '', '2020-07-20', NULL, 5, 10, 2, NULL, 10, 5, '2020-07-20 11:23:10+07', '2020-08-03 08:09:31+07', '2020-07-20', 100, NULL, 1018, 1008, 47, 48, false, '2020-08-03 08:09:31+07');
INSERT INTO public.issues VALUES (1431, 3, 28, 'Dựng Database', '', '2020-07-20', NULL, 5, NULL, 2, NULL, 4, 2, '2020-07-20 14:08:01+07', '2020-09-09 08:11:01+07', '2020-07-20', 100, NULL, NULL, 1431, 1, 6, false, '2020-09-09 08:11:01+07');
INSERT INTO public.issues VALUES (1432, 3, 28, 'Import dữ liệu từ source Đấu giá Viettel', '', '2020-07-20', NULL, 5, NULL, 2, NULL, 4, 3, '2020-07-20 14:09:01+07', '2020-09-09 08:10:02+07', '2020-07-20', 100, NULL, 1431, 1431, 2, 3, false, '2020-09-09 08:10:02+07');
INSERT INTO public.issues VALUES (1433, 3, 28, 'Thêm các khóa ngoại cho các bảng Danh mục', '', '2020-07-20', NULL, 5, NULL, 2, NULL, 4, 3, '2020-07-20 14:10:02+07', '2020-09-09 08:10:02+07', '2020-07-20', 100, NULL, 1431, 1431, 4, 5, false, '2020-09-09 08:10:02+07');
INSERT INTO public.issues VALUES (1456, 2, 14, 'Cập nhật lượt bid - lượt trả giá khi người dùng đặt bid hoặc trả giá mà không cần refresh list', 'hasaghi
', NULL, NULL, 3, 17, 2, NULL, 17, 1, '2020-07-20 14:35:11+07', '2020-07-20 14:35:24+07', '2020-07-20', 0, NULL, NULL, 1456, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1460, 1, 14, 'Cập nhật item bình luận mới có tên ng dùng & avatar khi bình luận thành công mà ko cần refresh list', '', NULL, NULL, 3, 17, 2, NULL, 17, 1, '2020-07-20 14:36:51+07', '2020-07-20 14:37:02+07', '2020-07-20', 0, NULL, NULL, 1460, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1484, 3, 28, 'Clone source Front-End đấu giá', '', '2020-07-18', NULL, 5, NULL, 2, NULL, 4, 4, '2020-07-20 15:25:45+07', '2020-09-09 08:14:08+07', '2020-07-18', 100, NULL, NULL, 1484, 1, 2, false, '2020-09-09 08:14:08+07');
INSERT INTO public.issues VALUES (1485, 2, 28, 'Web người dùng', '', '2020-07-28', NULL, 5, 17, 2, NULL, 4, 26, '2020-07-20 15:32:47+07', '2020-09-09 08:17:56+07', '2020-07-20', 100, NULL, NULL, 1485, 1, 30, false, '2020-09-09 08:17:56+07');
INSERT INTO public.issues VALUES (1486, 2, 28, 'Web quản trị', '', '2020-08-10', NULL, 5, 15, 2, NULL, 4, 45, '2020-07-20 15:33:13+07', '2020-09-09 08:23:45+07', '2020-07-21', 100, NULL, NULL, 1486, 1, 68, false, '2020-09-09 08:23:45+07');
INSERT INTO public.issues VALUES (1487, 2, 28, 'Trang chủ', '', '2020-07-22', NULL, 5, 17, 2, NULL, 4, 4, '2020-07-20 15:34:22+07', '2020-09-09 08:17:28+07', '2020-07-20', 0, NULL, 1485, 1485, 2, 3, false, '2020-09-09 08:17:28+07');
INSERT INTO public.issues VALUES (1488, 2, 28, 'Trang giới thiệu', '', '2020-07-23', NULL, 5, 17, 2, NULL, 4, 6, '2020-07-20 15:35:07+07', '2020-09-09 08:13:48+07', '2020-07-23', 100, NULL, 1485, 1485, 4, 5, false, '2020-09-09 08:10:02+07');
INSERT INTO public.issues VALUES (1489, 2, 28, 'Trang thủ tục đấu giá', '', '2020-07-24', NULL, 5, 17, 2, NULL, 4, 3, '2020-07-20 15:36:46+07', '2020-09-09 08:17:15+07', '2020-07-24', 0, NULL, 1485, 1485, 6, 7, false, '2020-09-09 08:17:15+07');
INSERT INTO public.issues VALUES (1490, 2, 28, 'Tin tức - sự kiện', '', '2020-07-25', NULL, 5, 17, 2, NULL, 4, 3, '2020-07-20 15:37:19+07', '2020-09-09 08:17:15+07', '2020-07-25', 0, NULL, 1485, 1485, 8, 9, false, '2020-09-09 08:17:15+07');
INSERT INTO public.issues VALUES (1491, 2, 28, 'Trang danh sách THÔNG BÁO ĐẤU GIÁ QUYỀN SỬ DỤNG ĐẤT', '', '2020-07-27', NULL, 5, 17, 2, NULL, 4, 4, '2020-07-20 15:39:55+07', '2020-09-09 08:17:15+07', '2020-07-27', 0, NULL, 1485, 1485, 10, 11, false, '2020-09-09 08:17:15+07');
INSERT INTO public.issues VALUES (1492, 2, 28, 'Trang chi tiết phiên đấu giá', '', '2020-07-27', NULL, 5, 17, 2, NULL, 4, 4, '2020-07-20 15:41:40+07', '2020-09-09 08:17:16+07', '2020-07-27', 0, NULL, 1485, 1485, 12, 13, false, '2020-09-09 08:17:16+07');
INSERT INTO public.issues VALUES (1493, 2, 28, 'Trang tìm kiếm phiên đấu giá', 'tham khảo:  https://www.kodamakoifarm.com/shop/live-koi/?swoof=1&price_type=fixed-price', '2020-07-28', NULL, 5, 17, 2, NULL, 4, 3, '2020-07-20 15:44:16+07', '2020-09-09 08:17:16+07', '2020-07-25', 0, NULL, 1485, 1485, 14, 15, false, '2020-09-09 08:17:16+07');
INSERT INTO public.issues VALUES (1494, 2, 28, 'Trang thông tin tài khoản', '', '2020-07-23', NULL, 5, 17, 2, NULL, 4, 6, '2020-07-20 15:45:10+07', '2020-09-09 08:14:19+07', '2020-07-23', 100, NULL, 1485, 1485, 16, 21, false, '2020-09-09 08:14:19+07');
INSERT INTO public.issues VALUES (1495, 2, 28, 'Cập nhật thông tin tài khoản', '', '2020-07-23', NULL, 5, 17, 2, NULL, 4, 4, '2020-07-20 15:45:46+07', '2020-09-09 08:13:48+07', '2020-07-23', 100, NULL, 1494, 1485, 17, 18, false, '2020-09-09 08:10:03+07');
INSERT INTO public.issues VALUES (1496, 2, 28, 'Đổi mật khẩu', '', '2020-07-23', NULL, 5, 17, 2, NULL, 4, 4, '2020-07-20 15:46:03+07', '2020-09-09 08:13:48+07', '2020-07-23', 100, NULL, 1494, 1485, 19, 20, false, '2020-09-09 08:10:03+07');
INSERT INTO public.issues VALUES (1497, 3, 9, 'Hỗ trợ khách hàng', 'Trực điện thoại, hỗ trợ các vấn đề phát sinh của hệ thống từ khách hàng', NULL, NULL, 1, NULL, 2, NULL, 21, 0, '2020-07-20 15:46:37+07', '2020-07-20 15:46:37+07', '2020-07-20', 0, NULL, NULL, 1497, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1498, 2, 28, 'Trang đăng nhập', '', '2020-07-22', NULL, 5, 15, 2, NULL, 4, 5, '2020-07-20 15:48:13+07', '2020-09-09 08:13:49+07', '2020-07-22', 100, NULL, 1485, 1485, 22, 23, false, '2020-09-09 08:10:03+07');
INSERT INTO public.issues VALUES (1499, 2, 28, 'Trang đăng ký', '', '2020-07-21', NULL, 5, 15, 2, NULL, 4, 6, '2020-07-20 15:48:52+07', '2020-09-09 08:17:28+07', '2020-07-21', 100, NULL, 1485, 1485, 24, 29, false, '2020-09-09 08:17:28+07');
INSERT INTO public.issues VALUES (1500, 2, 28, 'Dành cho cá nhân', '', '2020-07-21', NULL, 5, 15, 2, NULL, 4, 4, '2020-07-20 15:49:24+07', '2020-09-09 08:17:16+07', '2020-07-21', 0, NULL, 1499, 1485, 25, 26, false, '2020-09-09 08:17:16+07');
INSERT INTO public.issues VALUES (1501, 2, 28, 'Dành cho tổ chức', '', '2020-07-21', NULL, 5, 15, 2, NULL, 4, 4, '2020-07-20 15:49:44+07', '2020-09-09 08:17:16+07', '2020-07-21', 0, NULL, 1499, 1485, 27, 28, false, '2020-09-09 08:17:16+07');
INSERT INTO public.issues VALUES (1502, 3, 9, 'Hỗ trợ khách hàng', '', NULL, NULL, 1, 9, 2, NULL, 21, 0, '2020-07-20 15:49:55+07', '2020-07-20 15:49:55+07', '2020-07-20', 0, NULL, NULL, 1502, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1503, 2, 28, 'Danh mục (Tỉnh/Thành phố, Quận/Huyện, Phường/Xã)', '', '2020-07-29', NULL, 5, 15, 2, NULL, 4, 9, '2020-07-20 15:53:00+07', '2020-09-09 08:13:50+07', '2020-07-29', 100, NULL, 1486, 1486, 2, 3, false, '2020-09-09 08:09:36+07');
INSERT INTO public.issues VALUES (1504, 2, 28, 'Danh mục (Phương thức đấu giá, hình thức đấu giá, tài sản đấu giá, loại doanh nghiệp, danh mục sản phẩm)', '', '2020-07-30', NULL, 5, 15, 2, NULL, 4, 5, '2020-07-20 15:54:39+07', '2020-09-09 08:13:50+07', '2020-07-30', 100, NULL, 1486, 1486, 4, 5, false, '2020-09-09 08:09:36+07');
INSERT INTO public.issues VALUES (1505, 2, 28, 'Danh mục', ' (thuộc tính sản phẩm, Hình thức sử dụng đất, mục đích sử dụng đất, nguồn gốc sử dụng đất)', '2020-09-14', NULL, 1, 15, 2, 27, 4, 7, '2020-07-20 15:55:53+07', '2020-09-09 08:38:16+07', '2020-09-14', 0, NULL, NULL, 1505, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1506, 2, 28, 'Quản Trị', '', '2020-07-24', NULL, 5, 15, 2, NULL, 4, 7, '2020-07-20 15:56:39+07', '2020-09-09 08:13:50+07', '2020-07-21', 100, NULL, 1486, 1486, 6, 15, false, '2020-09-09 08:10:48+07');
INSERT INTO public.issues VALUES (1507, 2, 28, 'Cấu hình vai trò', '', '2020-07-23', NULL, 5, 15, 2, NULL, 4, 4, '2020-07-20 15:57:12+07', '2020-09-09 08:13:51+07', '2020-07-21', 100, NULL, 1506, 1486, 7, 8, false, '2020-09-09 08:09:37+07');
INSERT INTO public.issues VALUES (1508, 2, 28, 'Danh sách quyền hệ thống', '', '2020-07-22', NULL, 5, 15, 2, NULL, 4, 5, '2020-07-20 15:57:37+07', '2020-09-09 08:13:51+07', '2020-07-22', 100, NULL, 1506, 1486, 9, 10, false, '2020-09-09 08:09:37+07');
INSERT INTO public.issues VALUES (1509, 2, 28, 'Danh sách tài khoản', '', '2020-07-24', NULL, 5, 15, 2, NULL, 4, 4, '2020-07-20 15:58:02+07', '2020-09-09 08:13:51+07', '2020-07-22', 100, NULL, 1506, 1486, 11, 12, false, '2020-09-09 08:09:37+07');
INSERT INTO public.issues VALUES (1510, 2, 28, 'Menu hệ thống', '', '2020-07-24', NULL, 5, 15, 2, NULL, 4, 4, '2020-07-20 15:58:24+07', '2020-09-09 08:13:51+07', '2020-07-23', 100, NULL, 1506, 1486, 13, 14, false, '2020-09-09 08:09:38+07');
INSERT INTO public.issues VALUES (1525, 2, 28, 'Đăng đấu giá', '', '2020-08-03', NULL, 5, 15, 2, NULL, 4, 9, '2020-07-20 16:34:13+07', '2020-09-09 08:19:01+07', '2020-07-27', 100, NULL, 1486, 1486, 16, 23, false, '2020-09-09 08:19:01+07');
INSERT INTO public.issues VALUES (1526, 2, 28, 'Form đăng phiên đấu giá theo thông báo của chủ đầu tư (kèm upload file)', '', '2020-07-31', NULL, 5, 15, 2, NULL, 4, 4, '2020-07-20 16:35:06+07', '2020-09-09 08:18:53+07', '2020-07-27', 0, NULL, 1525, 1486, 17, 18, false, '2020-09-09 08:18:53+07');
INSERT INTO public.issues VALUES (1528, 2, 28, 'Form sửa thông tin phiên đấu giá đã đăng', '', '2020-07-31', NULL, 5, 15, 2, NULL, 4, 3, '2020-07-20 16:36:19+07', '2020-09-09 08:18:53+07', '2020-07-29', 0, NULL, 1525, 1486, 19, 20, false, '2020-09-09 08:18:53+07');
INSERT INTO public.issues VALUES (1529, 2, 28, 'Hiển thị chi tiết phiên đấu giá', '', '2020-08-03', NULL, 5, 15, 2, NULL, 4, 3, '2020-07-20 16:37:05+07', '2020-09-09 08:18:54+07', '2020-07-31', 0, NULL, 1525, 1486, 21, 22, false, '2020-09-09 08:18:54+07');
INSERT INTO public.issues VALUES (1530, 1, 4, 'Chỉnh lại domain quận/huyện cho Bình phước', '', '2020-07-20', NULL, 5, 6, 2, NULL, 5, 2, '2020-07-20 16:41:24+07', '2020-08-03 08:10:03+07', '2020-07-20', 100, NULL, NULL, 1530, 1, 2, false, '2020-08-03 08:10:03+07');
INSERT INTO public.issues VALUES (1535, 1, 40, 'Bình phước bản đồ chưa tìm kiếm được', '', '2020-08-10', NULL, 3, 13, 2, 9, 5, 8, '2020-07-21 08:23:51+07', '2020-08-11 13:37:28+07', '2020-08-10', 100, NULL, NULL, 1535, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1536, 2, 4, 'Viết trigger thay đổi giá trị No thành Yes và ngược lại cho bảng Quy hoạch sử dụng đất', '', '2020-07-22', NULL, 5, 10, 2, NULL, 10, 4, '2020-07-22 09:40:18+07', '2020-08-03 08:09:31+07', '2020-07-22', 100, NULL, 1018, 1008, 49, 50, false, '2020-08-03 08:09:31+07');
INSERT INTO public.issues VALUES (1537, 2, 31, 'Lựa chọn ngôn ngữ phù hợp để generate Code cho hệ điều hành Android và IOS (tham khảo React Native, Ionic,... )', 'https://play.google.com/store/apps/details?id=com.bplus.bankplusbccs&hl=vi', '2020-07-25', NULL, 1, 10, 2, NULL, 4, 0, '2020-07-22 14:26:02+07', '2020-07-22 14:26:02+07', '2020-07-25', 0, NULL, NULL, 1537, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1538, 2, 31, 'Xây dựng Layout', '', '2020-08-08', NULL, 1, 10, 2, NULL, 4, 13, '2020-07-22 14:28:34+07', '2020-07-22 15:23:52+07', '2020-07-27', 0, NULL, NULL, 1538, 1, 30, false, NULL);
INSERT INTO public.issues VALUES (1539, 2, 31, 'Layout Tin tức - sự kiện', '', '2020-07-28', NULL, 1, 10, 2, NULL, 4, 3, '2020-07-22 14:40:47+07', '2020-07-22 14:55:37+07', '2020-07-27', 0, NULL, 1538, 1538, 2, 5, false, NULL);
INSERT INTO public.issues VALUES (1540, 2, 31, 'Layout Thông báo', '![](clipboard-202007221442-3nbut.png)
', '2020-07-29', NULL, 1, 10, 2, NULL, 4, 4, '2020-07-22 14:43:13+07', '2020-07-22 15:10:36+07', '2020-07-27', 0, NULL, 1538, 1538, 6, 13, false, NULL);
INSERT INTO public.issues VALUES (1541, 2, 31, 'Đối với trường hợp chưa đăng nhập cần hiển thị nút đăng nhập để nhảy qua trang đăng nhập', '', '2020-07-28', NULL, 1, 10, 2, NULL, 4, 0, '2020-07-22 14:45:40+07', '2020-07-22 14:45:40+07', '2020-07-27', 0, NULL, 1540, 1538, 7, 8, false, NULL);
INSERT INTO public.issues VALUES (1542, 2, 31, 'Đối với trường hợp đã đăng nhập cần hiển thị như hình đã kèm theo', '', '2020-07-29', NULL, 1, 10, 2, NULL, 4, 0, '2020-07-22 14:46:38+07', '2020-07-22 14:46:38+07', '2020-07-27', 0, NULL, 1540, 1538, 9, 10, false, NULL);
INSERT INTO public.issues VALUES (1543, 2, 31, 'Làm dữ liệu giả trong khi chờ API', '', '2020-07-29', NULL, 1, 10, 2, NULL, 4, 1, '2020-07-22 14:47:30+07', '2020-07-22 15:10:36+07', '2020-07-27', 0, NULL, 1540, 1538, 11, 12, false, NULL);
INSERT INTO public.issues VALUES (1544, 2, 31, 'Xây dựng bộ source', '', '2020-07-25', NULL, 1, 10, 2, NULL, 4, 0, '2020-07-22 14:48:56+07', '2020-07-22 14:48:56+07', '2020-07-25', 0, NULL, NULL, 1544, 1, 6, false, NULL);
INSERT INTO public.issues VALUES (1545, 2, 31, 'Cần có File Config Global cho các thuộc tính cần thiết như: Tên hiển thị của sản phẩm, logo, màu sắc, tên chủ đầu tư,...', '', '2020-07-25', NULL, 1, 10, 2, NULL, 4, 0, '2020-07-22 14:51:23+07', '2020-07-22 14:51:23+07', '2020-07-25', 0, NULL, 1544, 1544, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1546, 2, 31, 'Lựa chọn thư viện phù hợp cho Promise, Alert, Datatable,...', 'Tham khảo:
 - https://www.freecodecamp.org/news/how-to-build-your-first-ionic-4-app-with-api-calls-f6ea747dc17a/', '2020-07-25', NULL, 1, 10, 2, NULL, 4, 0, '2020-07-22 14:54:02+07', '2020-07-22 14:54:02+07', '2020-07-25', 0, NULL, 1544, 1544, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1547, 2, 31, 'Làm dữ liệu giả trong khi chờ API', '', '2020-07-28', NULL, 1, 10, 2, NULL, 4, 0, '2020-07-22 14:55:37+07', '2020-07-22 14:55:37+07', '2020-07-27', 0, NULL, 1539, 1538, 3, 4, false, NULL);
INSERT INTO public.issues VALUES (1548, 2, 31, 'Layout Tài khoản', '![](clipboard-202007221457-vgiso.png)
', '2020-08-08', NULL, 1, 10, 2, NULL, 4, 4, '2020-07-22 14:57:54+07', '2020-07-22 15:23:52+07', '2020-07-30', 0, NULL, 1538, 1538, 14, 25, false, NULL);
INSERT INTO public.issues VALUES (1549, 2, 31, 'Đối với trường hợp chưa đăng nhập cần hiển thị trang đăng nhập', '', '2020-08-01', NULL, 1, 10, 2, NULL, 4, 0, '2020-07-22 14:58:47+07', '2020-07-22 14:58:47+07', '2020-07-30', 0, NULL, 1548, 1538, 15, 16, false, NULL);
INSERT INTO public.issues VALUES (1550, 2, 31, 'Đối với trường hợp đã đăng nhập cần hiển thị như hình đã kèm theo', '', '2020-08-08', NULL, 1, 10, 2, NULL, 4, 3, '2020-07-22 14:59:32+07', '2020-07-22 15:23:52+07', '2020-08-03', 0, NULL, 1548, 1538, 17, 24, false, NULL);
INSERT INTO public.issues VALUES (1551, 2, 31, 'Layout Phòng đấu giá', '', '2020-08-03', NULL, 1, 10, 2, NULL, 4, 3, '2020-07-22 15:12:01+07', '2020-07-22 15:17:03+07', '2020-07-29', 0, NULL, 1538, 1538, 26, 29, false, NULL);
INSERT INTO public.issues VALUES (1552, 2, 11, 'Api dashboard quan trắc không khí', 'ID

TenTram

MaTrangThai

TenTrangThai: Lỗi thiết bị, Đang đo, Đang hiệu chuẩn, Vượt ngưỡng đo, Không nhận được dữ liệu

GiaTri: ngưỡng từ ... đến ...', '2020-08-05', NULL, 5, 19, 2, 1, 5, 26, '2020-07-22 15:15:35+07', '2020-08-07 16:42:37+07', '2020-07-22', 100, NULL, NULL, 1552, 1, 16, false, '2020-08-07 16:42:37+07');
INSERT INTO public.issues VALUES (1553, 2, 31, 'Đối với trường hợp đã đăng nhập cần hiển thị danh sách theo API đã trả về', '', '2020-08-03', NULL, 1, 10, 2, NULL, 4, 1, '2020-07-22 15:17:03+07', '2020-07-22 15:17:08+07', '2020-07-29', 0, NULL, 1551, 1538, 27, 28, false, NULL);
INSERT INTO public.issues VALUES (1554, 2, 11, 'Dashboard quan trắc nước thải', 'ID

TenTram

MaTrangThai

TenTrangThai: Lỗi thiết bị, Đang đo, Đang hiệu chuẩn, Vượt ngưỡng đo, Không nhận được dữ liệu

GiaTri: ngưỡng từ ... đến ...', '2020-08-18', NULL, 1, 8, 2, 3, 5, 27, '2020-07-22 15:19:59+07', '2020-09-05 10:07:27+07', '2020-08-10', 100, NULL, NULL, 1554, 1, 12, false, NULL);
INSERT INTO public.issues VALUES (1555, 2, 31, 'Thông tin tài khoản (Xem và cập nhật thông tin tài khoản)', '', '2020-08-05', NULL, 1, 10, 2, NULL, 4, 0, '2020-07-22 15:20:13+07', '2020-07-22 15:20:13+07', '2020-08-04', 0, NULL, 1550, 1538, 18, 19, false, NULL);
INSERT INTO public.issues VALUES (1556, 2, 31, 'Đổi mật khẩu', '', '2020-08-03', NULL, 1, 10, 2, NULL, 4, 1, '2020-07-22 15:20:38+07', '2020-07-22 15:20:45+07', '2020-08-03', 0, NULL, 1550, 1538, 20, 21, false, NULL);
INSERT INTO public.issues VALUES (1557, 2, 11, 'Dashboard quan trắc nước mặt', 'ID

TenTram

MaTrangThai

TenTrangThai: Lỗi thiết bị, Đang đo, Đang hiệu chuẩn, Vượt ngưỡng đo, Không nhận được dữ liệu

GiaTri: ngưỡng từ ... đến ...', '2020-09-21', NULL, 1, 19, 2, 4, 5, 35, '2020-07-22 15:20:45+07', '2020-09-05 10:11:59+07', '2020-08-22', 21, NULL, NULL, 1557, 1, 14, false, NULL);
INSERT INTO public.issues VALUES (1558, 2, 31, 'Lấy dữ liệu từ API để hiển thị Menu theo vai trò tài khoản', '', '2020-08-08', NULL, 1, 10, 2, NULL, 4, 0, '2020-07-22 15:23:52+07', '2020-07-22 15:23:52+07', '2020-08-03', 0, NULL, 1550, 1538, 22, 23, false, NULL);
INSERT INTO public.issues VALUES (1559, 2, 11, 'Api số liệu quan trắc không khí 24h', '', '2020-07-31', NULL, 5, 19, 2, 1, 5, 7, '2020-07-22 15:28:11+07', '2020-08-07 16:41:38+07', '2020-07-22', 100, 24, 1552, 1552, 2, 3, false, '2020-08-07 16:41:38+07');
INSERT INTO public.issues VALUES (1560, 2, 11, 'Bố cục giao diện theo dõi quan trắc', 'Phân theo tab loại môi trường

Bên trái: thông tin trạm, đồng hồ 1 trạm

Bên phải: 3 tab: bản đồ, số liệu theo giờ, số liệu theo ngày', '2020-07-24', NULL, 5, 5, 2, 1, 5, 3, '2020-07-22 16:05:11+07', '2020-08-07 16:40:01+07', '2020-07-23', 100, NULL, 1049, 1049, 24, 25, false, '2020-08-07 16:40:01+07');
INSERT INTO public.issues VALUES (1561, 2, 4, ' Load trang tin tức (lazy load)', '', '2020-07-23', NULL, 5, 15, 2, NULL, 15, 3, '2020-07-23 08:28:28+07', '2020-08-03 08:09:32+07', '2020-07-23', 100, NULL, 1017, 1017, 10, 11, false, '2020-08-03 08:09:32+07');
INSERT INTO public.issues VALUES (1562, 2, 28, 'Quản lí thuộc tính', '', '2020-08-08', NULL, 5, 15, 2, NULL, 4, 11, '2020-07-23 09:05:07+07', '2020-09-09 08:13:51+07', '2020-08-03', 100, NULL, 1486, 1486, 24, 33, false, '2020-09-09 08:12:55+07');
INSERT INTO public.issues VALUES (1564, 2, 28, 'Quản lí phòng đấu giá', '', '2020-08-01', NULL, 5, 15, 2, NULL, 4, 6, '2020-07-23 09:14:42+07', '2020-09-09 08:22:00+07', '2020-07-29', 100, NULL, 1486, 1486, 34, 39, false, '2020-09-09 08:22:00+07');
INSERT INTO public.issues VALUES (1565, 2, 28, 'Dashboard', '', '2020-09-14', NULL, 1, 15, 2, 27, 4, 5, '2020-07-23 09:15:29+07', '2020-09-09 08:38:16+07', '2020-09-14', 0, NULL, NULL, 1565, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1566, 2, 28, 'Báo cáo', '', '2020-09-14', NULL, 1, 15, 2, 27, 4, 5, '2020-07-23 09:16:02+07', '2020-09-09 08:38:17+07', '2020-09-14', 0, NULL, NULL, 1566, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1567, 2, 28, 'Thêm/Sửa/Xóa', '', '2020-08-08', NULL, 5, 15, 2, NULL, 4, 6, '2020-07-23 09:19:25+07', '2020-09-09 08:13:51+07', '2020-08-03', 100, NULL, 1562, 1486, 25, 26, false, '2020-09-09 08:10:03+07');
INSERT INTO public.issues VALUES (1568, 2, 28, 'Ràng buộc kiểu dữ liệu cho thuộc tính (đáp ứng nhu cầu tìm kiếm)', '', '2020-08-08', NULL, 5, 15, 2, NULL, 4, 5, '2020-07-23 09:20:34+07', '2020-09-09 08:13:52+07', '2020-08-03', 100, NULL, 1562, 1486, 27, 28, false, '2020-09-09 08:10:04+07');
INSERT INTO public.issues VALUES (1569, 2, 28, 'Ràng buộc các thuộc tính mặc đinh khi đăng phiên đấu giá', '', '2020-08-08', NULL, 5, 15, 2, NULL, 4, 5, '2020-07-23 09:20:53+07', '2020-09-09 08:13:52+07', '2020-08-03', 100, NULL, 1562, 1486, 29, 30, false, '2020-09-09 08:10:04+07');
INSERT INTO public.issues VALUES (1570, 2, 28, 'Ràng buộc các thuộc tính bắt buộc phải có dữ liệu cho phiên đấu giá', '', '2020-08-08', NULL, 5, 15, 2, NULL, 4, 5, '2020-07-23 09:21:21+07', '2020-09-09 08:13:52+07', '2020-08-03', 100, NULL, 1562, 1486, 31, 32, false, '2020-09-09 08:10:05+07');
INSERT INTO public.issues VALUES (1571, 2, 28, 'Quản lí tổ chức đấu giá quyền sử dụng đất', '', '2020-08-04', NULL, 5, 15, 2, NULL, 4, 6, '2020-07-23 09:23:19+07', '2020-09-09 08:20:44+07', '2020-07-31', 100, NULL, 1486, 1486, 40, 47, false, '2020-09-09 08:20:44+07');
INSERT INTO public.issues VALUES (1572, 2, 28, 'Thêm/Sửa/Xóa', '', '2020-08-04', NULL, 5, 15, 2, NULL, 4, 3, '2020-07-23 09:24:23+07', '2020-09-09 08:20:38+07', '2020-07-31', 0, NULL, 1571, 1486, 41, 42, false, '2020-09-09 08:20:38+07');
INSERT INTO public.issues VALUES (1573, 2, 28, 'Hiển thị danh sách', '', '2020-07-31', NULL, 5, 15, 2, NULL, 4, 3, '2020-07-23 09:24:50+07', '2020-09-09 08:20:38+07', '2020-07-31', 0, NULL, 1571, 1486, 43, 44, false, '2020-09-09 08:20:38+07');
INSERT INTO public.issues VALUES (1574, 2, 28, 'Hiển thị chi tiết từng tổ chức', '', '2020-08-03', NULL, 5, 15, 2, NULL, 4, 3, '2020-07-23 09:25:30+07', '2020-09-09 08:20:39+07', '2020-07-31', 0, NULL, 1571, 1486, 45, 46, false, '2020-09-09 08:20:39+07');
INSERT INTO public.issues VALUES (1578, 2, 28, 'Hiển thị danh sách', '', '2020-08-01', NULL, 5, 15, 2, NULL, 4, 4, '2020-07-23 09:30:23+07', '2020-09-09 08:21:47+07', '2020-07-29', 100, NULL, 1564, 1486, 35, 36, false, '2020-09-09 08:21:47+07');
INSERT INTO public.issues VALUES (1579, 2, 28, 'Xem chi tiết', '', '2020-08-01', NULL, 5, 15, 2, NULL, 4, 4, '2020-07-23 09:31:12+07', '2020-09-09 08:21:47+07', '2020-07-29', 100, NULL, 1564, 1486, 37, 38, false, '2020-09-09 08:21:47+07');
INSERT INTO public.issues VALUES (1582, 2, 11, 'Api tính toán AQI', 'Tổng hợp tính toán từ các thông số đo của 1 lần', '2020-08-12', NULL, 3, 19, 3, 2, 5, 13, '2020-07-23 10:17:30+07', '2020-08-12 10:43:50+07', '2020-08-04', 100, 24, NULL, 1582, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1583, 5, 32, 'Thiết kế brochure phần mềm Quản lý Hạ tầng bưu chính viễn thông', '- Thiết kế LoGo PTI GDT
- Giới thiệu các tính năng tương tự Xúc tiến đầu tư', '2020-07-27', NULL, 1, 14, 2, NULL, 21, 3, '2020-07-23 14:12:58+07', '2020-11-21 09:35:42+07', '2020-07-23', 100, NULL, NULL, 1583, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1584, 5, 27, 'báo cáo', '20/07 Hop 01 - 255 tr
          11 - 209 tr
21/07 Hop 20 - 339 tr
          28 - 60 tr
          33 - 615 tr
22/07 Hop 48 - 38 tr
          49 - 88 tr
          50 - 456 tr
          70 - 145 tr
23/07 Hop 72 - 869 tr
24/07 Hop 82 - 168 tr
         162 - 261 tr
         187 - 538 tr
27/07 Hop 159 - 840 tr
          214 - 664 tr
28/07 Hop 212 - 1135 tr', '2020-07-31', NULL, 1, NULL, 2, NULL, 26, 3, '2020-07-23 15:38:52+07', '2020-07-30 07:51:56+07', '2020-07-20', 100, NULL, 1418, 1418, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1585, 4, 19, 'Báo cáo thuế quý 2/2020', '', '2020-07-24', NULL, 1, NULL, 3, NULL, 22, 1, '2020-07-23 16:38:25+07', '2020-07-24 15:41:45+07', '2020-07-23', 100, NULL, NULL, 1585, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1586, 5, 27, 'Nhập liệu', '20/7: Hộp 37: 78 văn bản
      Hộp 38: 206 văn bản
21&22/7: Hộp 44: 210 văn bản
         Hộp 45: 310 văn bản
         Hộp 48: 228 văn bản
23/7: Hộp 49: 89 văn bản
      Hộp 50: HS 295: 52 văn bản 
              HS 296: 3 văn bản
              HS 297: 110 văn bản
              HS 298: 12 văn bản
              HS 299: 1 văn bản', '2020-07-31', NULL, 1, NULL, 2, NULL, 29, 6, '2020-07-23 16:44:22+07', '2020-07-31 16:17:14+07', '2020-07-23', 100, NULL, 1423, 1423, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1587, 5, 27, 'Nhập Liệu', '20/7: Hộp 42 (200 văn bản)
21/7: Hộp 43 (151 văn bản)
22/7: Hộp 46 (135 văn bản)
23/7: Hộp 47 (312 văn bản)
      Hộp 51 (71 văn bản)', '2020-07-31', NULL, 1, NULL, 2, NULL, 34, 5, '2020-07-23 16:44:27+07', '2020-07-31 08:23:03+07', '2020-07-24', 40, NULL, 1425, 1425, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1588, 2, 4, 'Xuất báo cáo', '', '2020-08-08', NULL, 1, 13, 2, 6, 13, 8, '2020-07-24 10:51:31+07', '2021-02-05 08:59:03+07', '2020-07-24', 100, NULL, NULL, 1588, 1, 12, false, NULL);
INSERT INTO public.issues VALUES (1589, 2, 4, 'Khu kinh tế', '', '2020-08-08', NULL, 5, 13, 2, 6, 13, 6, '2020-07-24 10:51:50+07', '2021-02-05 08:59:03+07', '2020-08-08', 100, NULL, 1588, 1588, 2, 3, false, '2020-08-21 11:58:22+07');
INSERT INTO public.issues VALUES (1590, 2, 4, 'khu công nghiệp', '', '2020-08-08', NULL, 5, 13, 2, 6, 13, 6, '2020-07-24 10:52:08+07', '2021-02-05 08:59:03+07', '2020-08-08', 100, NULL, 1588, 1588, 4, 5, false, '2020-08-21 11:58:23+07');
INSERT INTO public.issues VALUES (1591, 2, 4, 'Cụm công nghiệp', '', '2020-08-08', NULL, 5, 13, 2, 6, 13, 6, '2020-07-24 10:52:29+07', '2021-02-05 08:59:03+07', '2020-08-08', 100, NULL, 1588, 1588, 6, 7, false, '2020-08-21 11:58:24+07');
INSERT INTO public.issues VALUES (1592, 2, 4, 'Điểm đầu tư', '', '2020-07-25', NULL, 5, 13, 2, NULL, 13, 3, '2020-07-24 10:52:47+07', '2021-02-05 08:59:23+07', '2020-07-24', 100, NULL, 1588, 1588, 8, 9, false, '2020-08-03 08:10:22+07');
INSERT INTO public.issues VALUES (1594, 1, 4, 'Sửa dialog shared', '', '2020-08-12', NULL, 3, 12, 2, 7, 12, 15, '2020-07-24 11:29:06+07', '2020-08-13 14:41:04+07', '2020-08-12', 100, NULL, NULL, 1594, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1595, 2, 4, 'Đổi bố cục menu', '', '2020-07-28', NULL, 5, 13, 2, NULL, 5, 6, '2020-07-24 13:13:51+07', '2021-02-05 08:59:23+07', '2020-07-27', 100, NULL, NULL, 1595, 1, 2, false, '2020-08-03 08:10:23+07');
INSERT INTO public.issues VALUES (1596, 2, 4, 'Đổi tông màu chủ đạo', '', '2020-07-29', NULL, 5, 13, 2, NULL, 5, 6, '2020-07-24 13:14:04+07', '2021-02-05 08:59:24+07', '2020-07-29', 100, NULL, NULL, 1596, 1, 2, false, '2020-08-03 08:10:23+07');
INSERT INTO public.issues VALUES (1597, 2, 4, 'Đổi giao diện login', '', '2020-07-29', NULL, 5, 13, 2, NULL, 5, 6, '2020-07-24 13:14:12+07', '2021-02-05 08:59:24+07', '2020-07-29', 100, NULL, NULL, 1597, 1, 2, false, '2020-08-03 08:10:23+07');
INSERT INTO public.issues VALUES (1598, 2, 4, 'Mặc định login vào thẳng map', '', '2020-07-29', NULL, 5, 13, 2, 6, 5, 5, '2020-07-24 13:14:30+07', '2020-08-03 09:34:35+07', '2020-07-29', 100, NULL, NULL, 1598, 1, 2, false, '2020-08-03 09:34:35+07');
INSERT INTO public.issues VALUES (1599, 2, 4, 'Trang quản lý tài khoản đơn giản', '', '2020-07-31', NULL, 5, 13, 2, 6, 5, 5, '2020-07-24 13:14:45+07', '2020-08-03 09:34:36+07', '2020-07-30', 100, NULL, NULL, 1599, 1, 2, false, '2020-08-03 09:34:36+07');
INSERT INTO public.issues VALUES (1600, 2, 11, 'Bảng điện tử', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 20, '2020-07-24 14:57:07+07', '2020-09-05 10:26:23+07', '2020-09-12', 16, NULL, NULL, 1600, 1, 14, false, NULL);
INSERT INTO public.issues VALUES (1601, 2, 11, 'Camera', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 15, '2020-07-24 14:58:32+07', '2021-02-05 11:14:19+07', '2020-09-14', 0, NULL, NULL, 1601, 1, 8, false, NULL);
INSERT INTO public.issues VALUES (1602, 2, 11, 'Số liệu quan trắc định kỳ', '', '2020-08-26', NULL, 3, 19, 2, 3, 5, 26, '2020-07-24 14:58:52+07', '2020-09-03 10:50:44+07', '2020-08-17', 100, NULL, NULL, 1602, 1, 16, false, NULL);
INSERT INTO public.issues VALUES (1603, 2, 11, 'Tree group trạm quan trắc', 'Lọc mã trạm, tên trạm
Group theo loại môi trường', '2020-07-25', NULL, 5, 8, 2, 1, 5, 6, '2020-07-24 15:03:16+07', '2020-08-07 16:41:46+07', '2020-07-24', 100, NULL, 1047, 1047, 4, 5, false, '2020-08-07 16:41:46+07');
INSERT INTO public.issues VALUES (1606, 5, 27, 'Báo cáo scan tuần', 'Hộp 03 (375 trang) 
Hộp 08 ( 218 trang )
Hộp 15 ( 480 trang )
Hộp 36 ( 514 trang )
Hộp 45 (195 trang )
Hộp 57 ( 232 trang)
Hộp 65 (475 trang)
Hộp 74 (551 trang)
Hộp 88 ( 249 trang)
Hộp 147 (234 trang )
Hộp 193 (270 trang)', '2020-07-24', NULL, 1, NULL, 2, NULL, 27, 0, '2020-07-24 15:36:13+07', '2020-07-24 15:36:13+07', '2020-07-20', 100, NULL, 1420, 1420, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1607, 5, 27, 'Báo cáo scan (ngày 20/07/2020 - 31/07/2020)', '20/07/2020: Hộp 06 - 94; Hộp - 332
21/07/2020: Hộp 12 - 681; Hộp - 681; Hộp - 394
22/07/2020: Hộp 41 - 311; Hộp 58 - 254; Hộp 64 - 75; Hộp 66 - 210
Sáng 23/07/2020 (Chiều nghỉ): Hộp 71 - 379
24/27/2020: Hộp 80 - 222; Hộp 183 - 388
', '2020-07-31', NULL, 1, 31, 2, NULL, 31, 4, '2020-07-24 15:52:54+07', '2020-08-03 08:23:00+07', '2020-07-24', 100, NULL, 1419, 1419, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1608, 5, 27, 'Báo cáo scan 20-31/7', 'Hộp 04-178 trang
    05-577 trang
    18-112 trang
    22-34 trang
    23-513 trang
    43-486 trang
    60-607 trang
    79-450 trang
   161-228 trang
Ngày 27/7 Hộp 02 356 trang, Hộp 215 486 trang
Ngày 28/7 Hộp 160 672 trang,Hộp 199 268 trang
Ngày 29/7 Hộp 04 407 trang, Hộp 05 85 trang
Ngày 30/7 Hộp 14 535 trang
Ngày 31/7 Hộp 30 720 trang -> Tổng 6714 trang

', '2020-07-31', NULL, 1, 35, 2, NULL, 35, 4, '2020-07-24 17:26:00+07', '2020-07-31 16:08:50+07', '2020-07-20', 100, NULL, 1424, 1424, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1609, 5, 27, 'Nhập liệu', '20/07: Hộp 39 (97 văn bản)
21-22/07: Hộp 40 (266 văn bản)
23/07:Hộp 41 + Hộp 52 (229 + 46 văn bản)
24/07: Hộp 53+56+57+58+59 (48+43+74+81+59 văn bản)', '2020-07-31', NULL, 1, 28, 2, NULL, 28, 4, '2020-07-24 18:46:14+07', '2020-08-03 07:53:12+07', '2020-07-27', 60, NULL, 1422, 1422, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1610, 1, 4, 'dialog đổi mật khẩu', '', '2020-07-25', NULL, 5, 13, 2, NULL, 13, 3, '2020-07-25 13:06:07+07', '2021-02-05 08:59:23+07', '2020-07-25', 100, NULL, 1593, 1593, 2, 3, false, '2020-08-03 08:10:22+07');
INSERT INTO public.issues VALUES (1611, 1, 4, 'Thêm hình ảnh KCN, CCN, KKT', '', '2020-08-26', NULL, 3, 13, 2, 13, 4, 15, '2020-07-25 13:56:19+07', '2021-02-05 08:59:03+07', '2020-08-26', 100, NULL, NULL, 1611, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1612, 2, 11, 'API VN_AQI Giờ giá trị cuối', 'Tên Trạm
AQI_giờ
', '2020-07-27', NULL, 5, 19, 2, 1, 19, 6, '2020-07-25 16:40:49+07', '2020-08-07 16:41:39+07', '2020-07-27', 100, 8, 1552, 1552, 4, 5, false, '2020-08-07 16:41:39+07');
INSERT INTO public.issues VALUES (1613, 2, 11, 'API VN_AQI ngày hôm qua', 'Tên trạm
AQI_ngày', '2020-07-29', NULL, 5, 19, 2, 1, 19, 6, '2020-07-25 16:43:06+07', '2020-08-07 16:41:39+07', '2020-07-29', 100, 8, 1552, 1552, 6, 7, false, '2020-08-07 16:41:39+07');
INSERT INTO public.issues VALUES (1614, 2, 11, 'API AQI giờ theo từng thông số', 'Tên trạm
List thông số -> list giá trị, Min, Max


', '2020-08-04', NULL, 5, 19, 2, 1, 19, 4, '2020-07-25 16:49:02+07', '2020-08-07 16:41:39+07', '2020-08-03', 100, 8, 1552, 1552, 8, 9, false, '2020-08-07 16:41:39+07');
INSERT INTO public.issues VALUES (1615, 2, 11, 'API AQI Ngày theo từng thông số', 'Tên trạm
List thông số -> list giá trị ( Max, min)', '2020-08-01', NULL, 5, 19, 2, 1, 19, 4, '2020-07-25 16:50:50+07', '2020-08-07 16:41:39+07', '2020-08-01', 100, NULL, 1552, 1552, 10, 11, false, '2020-08-07 16:41:39+07');
INSERT INTO public.issues VALUES (1616, 2, 11, 'Api số liệu quan trắc không khí 30 ngày', 'Tên trạm
list theo ngày -> {AQI,  list{ thông số }', '2020-08-04', NULL, 5, 19, 2, 1, 19, 7, '2020-07-25 16:56:51+07', '2020-08-07 16:41:39+07', '2020-08-01', 100, 24, 1552, 1552, 12, 13, false, '2020-08-07 16:41:39+07');
INSERT INTO public.issues VALUES (1617, 2, 11, 'Api quan trắc không khí -Bản đồ', 'List trạm -> Trạm ID, tọa độ, trạng thái, AQI', '2020-08-05', NULL, 5, 5, 2, 1, 19, 4, '2020-07-25 17:00:24+07', '2020-08-07 16:41:39+07', '2020-08-05', 100, NULL, 1552, 1552, 14, 15, false, '2020-08-07 16:41:39+07');
INSERT INTO public.issues VALUES (1621, 2, 11, 'Api số liệu quan trắc tự động', 'Lọc theo trạm, từ ngày, đến ngày

Trả về:

mã trạm, tên trạm, huyện, thời gian đo, trạng thái thiết bị, danh sách thông số

- Trạng thái thiết bị: là trạng thái của thiết bị biết có hoạt động hay không

- Trạng thái thông số: biết thông số đó vượt ngưỡng hay không, frontend hiển thị màu nhấp nháy nếu vượt ngưỡng', '2020-07-28', NULL, 5, 19, 2, 1, 5, 14, '2020-07-26 10:56:24+07', '2020-08-07 16:41:47+07', '2020-07-27', 100, 8, 1047, 1047, 6, 7, false, '2020-08-07 16:41:47+07');
INSERT INTO public.issues VALUES (1622, 2, 11, 'Api tree trạm lọc: mã, tên', 'Group lại theo:

Nước thải

---- Trạm 1

---- Trạm 2

Không khí

---- Trạm 1

---- Trạm 2', '2020-07-29', NULL, 5, 5, 2, 1, 5, 9, '2020-07-26 10:58:03+07', '2020-08-07 16:41:47+07', '2020-07-29', 100, NULL, 1047, 1047, 8, 9, false, '2020-08-07 16:41:47+07');
INSERT INTO public.issues VALUES (1623, 2, 11, 'Giao diện cấu hình', '', '2020-09-12', NULL, 1, NULL, 2, 3, 5, 5, '2020-07-26 11:06:41+07', '2021-02-05 11:14:16+07', '2020-09-05', 0, NULL, 1169, 1168, 3, 4, false, NULL);
INSERT INTO public.issues VALUES (1624, 2, 11, 'Api lưu cấu hình', '', '2020-09-12', NULL, 1, NULL, 2, 3, 5, 5, '2020-07-26 11:06:53+07', '2021-02-05 11:14:16+07', '2020-09-05', 0, NULL, 1169, 1168, 5, 6, false, NULL);
INSERT INTO public.issues VALUES (1625, 4, 26, 'Thành thạo pháp lý về đấu giá', '', '2020-08-01', NULL, 1, NULL, 2, NULL, 21, 0, '2020-07-27 08:06:06+07', '2020-07-27 08:06:06+07', '2020-07-27', 0, NULL, NULL, 1625, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1626, 3, 28, 'Nắm các quy định, pháp lý về đấu giá Quyền sử dụng đất', '', '2020-08-01', NULL, 5, NULL, 2, NULL, 21, 2, '2020-07-27 08:07:48+07', '2020-09-09 08:27:10+07', '2020-07-27', 100, NULL, NULL, 1626, 1, 4, false, '2020-09-09 08:27:10+07');
INSERT INTO public.issues VALUES (1627, 3, 28, 'Nắm các quy định, pháp lý về đấu giá tài sản', '', '2020-08-01', NULL, 5, 9, 2, NULL, 21, 1, '2020-07-27 08:08:57+07', '2020-09-09 08:27:05+07', '2020-07-27', 0, NULL, 1626, 1626, 2, 3, false, '2020-09-09 08:27:05+07');
INSERT INTO public.issues VALUES (1628, 4, 27, 'Nhập liệu 2000 văn bản', 'Tạo các tác vụ con hằng ngày (nhập những hộp nào) để kiểm tra đối chiếu.', '2020-08-31', NULL, 1, 27, 2, NULL, 21, 0, '2020-07-27 08:11:21+07', '2020-07-27 08:11:21+07', '2020-07-27', 0, NULL, NULL, 1628, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1629, 5, 27, 'Báo cáo scan', '* 20/7:
Hop 02: 470 trang
Hop 09: 36 trang
* 21/7
Hop 10: 433 trang
Hop 19: 413 trang
Hop 32: 157 trang
Hop 37: 23 trang
Hop 40: 133 trang
* 22/7
Hop 44: 457 trang
Hop 59: 669 trang
* 23/7
Hop 73: 677 trang
Hop 81: 289 trang
* 24/7
Hop 89: 437 trang
', '2020-07-31', NULL, 1, 30, 2, NULL, 30, 8, '2020-07-27 08:38:06+07', '2020-07-31 16:33:24+07', '2020-07-20', 100, NULL, 1421, 1421, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1632, 1, 4, 'hiển thị dialog', '', '2020-07-27', NULL, 5, 13, 2, NULL, 13, 3, '2020-07-27 08:56:19+07', '2021-02-05 08:59:23+07', '2020-07-27', 100, NULL, 1593, 1593, 4, 5, false, '2020-08-03 08:10:22+07');
INSERT INTO public.issues VALUES (1633, 1, 4, 'sửa danh mục', '', '2020-07-27', NULL, 5, 13, 2, NULL, 13, 3, '2020-07-27 08:56:38+07', '2021-02-05 08:59:23+07', '2020-07-27', 100, NULL, 1593, 1593, 6, 7, false, '2020-08-03 08:10:23+07');
INSERT INTO public.issues VALUES (1634, 5, 36, 'Chăm sóc khách hàng và chào sản phẩm VTS', '- Mỗi ngày thực hiện 05 cuộc điện thoại cho 05 đơn vị:
+ Chọn lọc các khách hàng đến kỳ gia hạn chữ ký số, chứng thư số.... 
+ Hỏi thăm tình hình sử dụng hệ thống
+ Chào các sản phẩm của Viettel
+ Báo cáo danh sách các đơn vị đã liên hệ', '2020-07-31', NULL, 1, 9, 2, NULL, 21, 1, '2020-07-27 10:18:41+07', '2020-07-31 13:25:42+07', '2020-07-27', 100, NULL, NULL, 1634, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1635, 5, 36, 'Chăm sóc khách hàng đang sử dụng các phần mềm của công ty', 'Mỗi ngày thực hiện 05 liên lạc cho 5 đơn vị (sử dụng phần mềm QLTL và CSDL về giá)
+ Hỏi tình hình sử dụng hệ thống
+ Cập nhật các khó khăn của khách khi sử dụng
+ Lập danh sách các vấn đề cho đội kỹ thuật
+ Lập danh sách đơn vị theo địa bàn làm cơ sở cho kế hoạch tập huấn', '2020-07-31', NULL, 1, NULL, 2, NULL, 21, 2, '2020-07-27 10:21:52+07', '2020-07-31 13:25:32+07', '2020-07-27', 100, NULL, NULL, 1635, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1636, 4, 19, 'Tuyển dụng lập trình Java ', '', '2020-07-29', NULL, 1, NULL, 3, NULL, 22, 1, '2020-07-27 15:15:31+07', '2020-07-30 11:26:35+07', '2020-07-27', 100, NULL, NULL, 1636, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1638, 2, 11, 'Api tree các trạm định kỳ group theo môi trường', 'Lọc: mã, tên', '2020-08-19', NULL, 3, 5, 2, 2, 5, 8, '2020-07-28 08:55:11+07', '2020-08-20 09:09:32+07', '2020-08-17', 100, NULL, 1602, 1602, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1639, 2, 11, 'Api số liệu quan trắc định kỳ', '', '2020-08-20', NULL, 3, 19, 2, 2, 5, 7, '2020-07-28 08:55:26+07', '2020-08-20 08:32:19+07', '2020-08-19', 100, 8, 1602, 1602, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1640, 2, 11, 'Api tree bảng điện tử theo huyện', 'Lọc: mã, tên', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 8, '2020-07-28 08:57:49+07', '2021-02-05 11:14:19+07', '2020-09-14', 0, NULL, 1600, 1600, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (1641, 2, 11, 'Api số liệu thông số hiển thị lên bảng điện tử', 'Loại môi trường nào?

Thời số gì?

Giá trị bao nhiêu?

Đơn vị tính là gì?

Thời gian cập nhật thông số?', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 8, '2020-07-28 09:03:35+07', '2021-02-05 11:14:19+07', '2020-09-14', 0, NULL, 1600, 1600, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (1643, 2, 11, 'List số liệu quan trắc định kỳ', 'Lọc: trạm, từ ngày đến ngày', '2020-08-19', NULL, 3, 8, 2, 3, 5, 11, '2020-07-28 09:44:25+07', '2020-08-29 09:12:30+07', '2020-08-17', 100, NULL, 1602, 1602, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1644, 2, 11, 'Add đợt quan trắc', '', '2020-08-19', NULL, 3, 8, 2, 3, 5, 10, '2020-07-28 09:45:14+07', '2020-08-29 09:12:30+07', '2020-08-17', 100, NULL, 1602, 1602, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (1645, 2, 11, 'Edit đợt quan trắc', '', '2020-08-19', NULL, 3, 8, 2, 3, 5, 11, '2020-07-28 09:46:56+07', '2020-08-31 16:54:23+07', '2020-08-17', 100, NULL, 1602, 1602, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (1646, 2, 4, 'Tạo trang bản đồ', '', '2020-07-30', NULL, 5, 13, 2, 6, 13, 3, '2020-07-28 14:26:33+07', '2020-08-03 09:34:36+07', '2020-07-28', 100, NULL, NULL, 1646, 1, 2, false, '2020-08-03 09:34:36+07');
INSERT INTO public.issues VALUES (1647, 2, 11, 'Thêm trạm chỉnh thêm', '', '2020-07-28', NULL, 5, 8, 2, 1, 5, 4, '2020-07-28 15:57:46+07', '2020-08-07 16:40:09+07', '2020-07-28', 100, NULL, 1173, 1046, 17, 18, false, '2020-08-07 16:40:09+07');
INSERT INTO public.issues VALUES (1648, 2, 11, 'Lọc theo loại môi trường, loại quan trắc', '', '2020-07-29', NULL, 5, 8, 2, 1, 5, 4, '2020-07-28 16:45:52+07', '2020-08-07 16:40:09+07', '2020-07-29', 100, NULL, 1173, 1046, 19, 20, false, '2020-08-07 16:40:09+07');
INSERT INTO public.issues VALUES (1649, 5, 35, '1 Nhà máy sản xuất đồ gia dụng và đồ trang trí bằng gỗ (Công ty Timberland)', 'Nhập liệu', '2020-07-20', NULL, 1, 23, 2, NULL, 33, 6, '2020-07-29 10:32:58+07', '2020-07-30 09:04:43+07', '2020-07-15', 100, NULL, NULL, 1649, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1650, 5, 35, '2 Nhà máy của công ty TNHH Giấy Kraf Vina', 'Sử lý bản đồ và nhập liệu', '2020-07-21', NULL, 1, 32, 2, NULL, 33, 0, '2020-07-29 10:35:26+07', '2020-07-29 10:35:26+07', '2020-07-15', 100, NULL, NULL, 1650, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1651, 5, 35, '3 Nhà máy công ty TNHH Pacific Textile', 'Nhập liệu', '2020-07-25', NULL, 1, 23, 2, NULL, 33, 4, '2020-07-29 10:36:31+07', '2020-07-30 09:03:52+07', '2020-07-22', 100, NULL, NULL, 1651, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1652, 5, 35, '4 Nhà máy công ty TNHH Kiswire Việt Nam', 'Nhập liệu', '2020-07-24', NULL, 1, 32, 2, NULL, 33, 4, '2020-07-29 10:37:55+07', '2020-07-30 09:03:21+07', '2020-07-22', 100, NULL, NULL, 1652, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1653, 5, 35, '5 Nhà máy sản xuất thực phẩm: Ngũ cốc, bánh quy và các loại hạt', 'Nhập liệu', '2020-07-25', NULL, 1, 23, 2, NULL, 33, 2, '2020-07-29 10:39:26+07', '2020-07-30 09:05:33+07', '2020-07-23', 100, NULL, NULL, 1653, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1654, 5, 35, '6 Nhà máy Nutifood Bình Dương III', 'Nhập liệu', '2020-07-27', NULL, 1, 32, 2, NULL, 33, 0, '2020-07-29 10:40:50+07', '2020-07-29 10:40:50+07', '2020-07-24', 100, NULL, NULL, 1654, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1655, 5, 35, '7 Nhà máy Công ty cổ phần công nghiệp DSVK thuộc KCN Sóng Thần 3', 'Nhập liệu', '2020-07-29', NULL, 1, 23, 2, NULL, 33, 1, '2020-07-29 10:42:28+07', '2020-08-07 09:48:20+07', '2020-07-27', 100, NULL, NULL, 1655, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1656, 5, 35, '8 Nhà máy sản xuất chất tẩy rửa lỏng và tổng kho phân phối thuộc KCN Đại Đăng', 'Sử lý bản đồ và nhập liệu', '2020-07-23', NULL, 1, 33, 2, NULL, 33, 0, '2020-07-29 10:43:42+07', '2020-07-29 10:43:42+07', '2020-07-21', 100, NULL, NULL, 1656, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1657, 5, 35, '9 Nhà máy chi nhánh Công ty TNHH công nghệ Teco Việt Nam', 'Xử lý bản đồ và nhập liệu', '2020-07-27', NULL, 1, 33, 2, NULL, 33, 0, '2020-07-29 10:45:00+07', '2020-07-29 10:45:00+07', '2020-07-24', 100, NULL, NULL, 1657, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1658, 5, 35, '10 Nhà máy Công ty TNHH Moash Enterprise Việt Nam', 'Xử lý bản đồ và nhập liệu', '2020-07-29', NULL, 1, 33, 2, NULL, 33, 0, '2020-07-29 10:45:56+07', '2020-07-29 10:45:56+07', '2020-07-27', 100, NULL, NULL, 1658, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1781, 2, 28, 'Trang chi tiết phòng đấu giá', '', '2020-08-10', NULL, 5, 15, 2, NULL, 15, 7, '2020-08-10 11:03:46+07', '2020-09-09 08:26:46+07', '2020-08-10', 100, NULL, 1779, 1779, 4, 9, false, '2020-09-09 08:26:46+07');
INSERT INTO public.issues VALUES (1659, 2, 11, 'Giao diện dashboard quan trắc không khí', 'ID

TenTram

MaTrangThai

TenTrangThai: Lỗi thiết bị, Đang đo, Đang hiệu chuẩn, Vượt ngưỡng đo, Không nhận được dữ liệu

GiaTri: ngưỡng từ ... đến ...', '2020-08-04', NULL, 5, 8, 2, 1, 5, 40, '2020-07-29 13:36:28+07', '2020-08-07 16:42:37+07', '2020-07-30', 100, NULL, NULL, 1659, 1, 16, false, '2020-08-07 16:42:37+07');
INSERT INTO public.issues VALUES (1660, 2, 11, 'Giao diện số liệu quan trắc không khí 24h', '', '2020-07-30', NULL, 5, 8, 2, 1, 5, 12, '2020-07-29 13:36:29+07', '2020-08-07 16:41:53+07', '2020-07-30', 100, 24, 1659, 1659, 2, 3, false, '2020-08-07 16:41:53+07');
INSERT INTO public.issues VALUES (1661, 2, 11, 'Giao diện VN_AQI Giờ giá trị cuối', 'Tên Trạm
AQI_giờ
', '2020-07-31', NULL, 5, 8, 2, 1, 5, 13, '2020-07-29 13:36:29+07', '2020-08-07 16:41:54+07', '2020-07-31', 100, 8, 1659, 1659, 4, 5, false, '2020-08-07 16:41:54+07');
INSERT INTO public.issues VALUES (1662, 2, 11, 'Giao diện VN_AQI ngày hôm qua', 'Tên trạm
AQI_ngày', '2020-07-31', NULL, 5, 8, 2, 1, 5, 12, '2020-07-29 13:36:29+07', '2020-08-07 16:41:54+07', '2020-07-31', 100, NULL, 1659, 1659, 6, 7, false, '2020-08-07 16:41:54+07');
INSERT INTO public.issues VALUES (1663, 2, 11, 'Giao diện AQI giờ theo từng thông số', 'Tên trạm
List thông số -> list giá trị, Min, Max


', '2020-08-01', NULL, 5, 8, 2, 1, 5, 10, '2020-07-29 13:36:29+07', '2020-08-07 16:41:54+07', '2020-07-31', 100, NULL, 1659, 1659, 8, 9, false, '2020-08-07 16:41:54+07');
INSERT INTO public.issues VALUES (1664, 2, 11, 'Giao diện AQI Ngày theo từng thông số', 'Tên trạm
List thông số -> list giá trị ( Max, min)', '2020-08-03', NULL, 5, 8, 2, 1, 5, 10, '2020-07-29 13:36:29+07', '2020-08-07 16:41:54+07', '2020-08-03', 100, NULL, 1659, 1659, 10, 11, false, '2020-08-07 16:41:54+07');
INSERT INTO public.issues VALUES (1665, 2, 11, 'Giao diện số liệu quan trắc không khí 30 ngày', 'Tên trạm
list theo ngày -> {AQI,  list{ thông số }', '2020-07-30', NULL, 5, 8, 2, 1, 5, 9, '2020-07-29 13:36:29+07', '2020-08-07 16:41:54+07', '2020-07-30', 100, NULL, 1659, 1659, 12, 13, false, '2020-08-07 16:41:54+07');
INSERT INTO public.issues VALUES (1666, 2, 11, 'Giao diện quan trắc không khí -Bản đồ', 'List trạm -> Trạm ID, tọa độ, trạng thái, AQI', '2020-08-04', NULL, 5, 8, 2, 1, 5, 8, '2020-07-29 13:36:29+07', '2020-08-07 16:41:54+07', '2020-08-03', 100, NULL, 1659, 1659, 14, 15, false, '2020-08-07 16:41:54+07');
INSERT INTO public.issues VALUES (1667, 2, 11, 'Giao diện', '', '2020-08-12', NULL, 3, 8, 2, 2, 5, 15, '2020-07-29 13:55:50+07', '2020-08-18 10:15:51+07', '2020-08-10', 100, NULL, 1554, 1554, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1668, 2, 11, 'Api', '', '2020-08-18', NULL, 3, 19, 2, 2, 5, 28, '2020-07-29 14:03:11+07', '2020-09-05 09:57:38+07', '2020-08-15', 100, NULL, 1554, 1554, 4, 11, false, NULL);
INSERT INTO public.issues VALUES (1669, 2, 11, 'Giao diện', '', '2020-09-21', NULL, 1, NULL, 2, 4, 5, 20, '2020-07-29 14:18:14+07', '2021-02-05 11:14:18+07', '2020-09-14', 0, NULL, 1557, 1557, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1670, 2, 11, 'Api', '', '2020-09-21', NULL, 2, 19, 2, 4, 5, 29, '2020-07-29 14:18:15+07', '2020-09-05 10:12:36+07', '2020-08-22', 42, NULL, 1557, 1557, 4, 13, false, NULL);
INSERT INTO public.issues VALUES (1671, 5, 25, 'Thực hiện công tác phòng chống dịch COVID-19', 'Đề nghị tất cả nhân sự công ty thực hiện các biện pháp phòng chống dịch Covid-19 theo hướng dẫn của Bộ Y Tế.
- Mang khẩu trang khi ra đường, đến chỗ đông người và theo yêu cầu của cơ quan nơi làm việc.
- Rửa tay sát khuẩn trước khi vào làm việc.
- Tải ứng dụng khai báo y tế NCOVI tại: https://ncovi.vnpt.vn/
- Tải ứng dụng cảnh báo tiếp xúc với người có nguy cơ nhiễm bệnh Bluezone tại: https://www.bluezone.gov.vn/
', '2020-07-30', NULL, 1, 21, 3, NULL, 21, 0, '2020-07-30 10:02:55+07', '2020-07-30 10:02:55+07', '2020-07-30', 0, NULL, NULL, 1671, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1672, 5, 25, 'Nội quy lao động', 'Xem file đính kèm ', NULL, NULL, 1, NULL, 2, NULL, 22, 2, '2020-07-30 16:46:12+07', '2020-11-20 10:44:12+07', '2020-07-30', 0, NULL, NULL, 1672, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1673, 3, 4, 'Cập nhật tài liệu cấu trúc database', '', '2020-07-31', NULL, 5, 13, 2, 6, 13, 5, '2020-07-31 08:07:27+07', '2021-02-05 08:59:03+07', '2020-07-31', 100, NULL, NULL, 1673, 1, 2, false, '2020-08-03 09:39:46+07');
INSERT INTO public.issues VALUES (1674, 2, 42, 'Lập danh sách chức năng', '', '2020-08-04', NULL, 5, 5, 2, NULL, 5, 2, '2020-07-31 08:19:52+07', '2020-12-16 15:36:56+07', '2020-08-01', 100, NULL, NULL, 1674, 1, 2, false, '2020-12-16 15:36:56+07');
INSERT INTO public.issues VALUES (1675, 2, 8, 'Đổi tên phần mềm', 'Hạ tầng bưu chính viễn thông
Post & Telecommunications Infrastructure', '2020-08-02', NULL, 5, 12, 2, 11, 13, 4, '2020-07-31 09:07:39+07', '2020-08-14 09:52:28+07', '2020-08-02', 100, NULL, NULL, 1675, 1, 2, false, '2020-08-14 09:52:28+07');
INSERT INTO public.issues VALUES (1676, 2, 8, 'Bổ sung logo công ty', '', '2020-08-02', NULL, 5, 12, 2, 11, 13, 4, '2020-07-31 02:08:57+07', '2020-08-14 09:52:28+07', '2020-08-02', 100, NULL, NULL, 1676, 1, 2, false, '2020-08-14 09:52:28+07');
INSERT INTO public.issues VALUES (1677, 1, 8, 'Trang thông tin người dùng và đổi mật khẩu trang quản trị', '', '2020-08-17', NULL, 3, 10, 2, 12, 13, 8, '2020-07-31 02:11:17+07', '2020-08-18 08:16:27+07', '2020-08-17', 100, NULL, NULL, 1677, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1679, 2, 28, 'Phiên đấu giá', '', '2020-08-10', NULL, 5, 17, 2, NULL, 15, 15, '2020-07-31 13:37:57+07', '2020-09-09 08:22:21+07', '2020-07-31', 100, NULL, 1486, 1486, 48, 67, false, '2020-09-09 08:22:21+07');
INSERT INTO public.issues VALUES (1680, 2, 28, 'Thêm mới 1 phiên đấu giá', '', '2020-08-10', NULL, 5, 17, 2, NULL, 15, 5, '2020-07-31 13:38:22+07', '2020-09-09 08:13:53+07', '2020-07-31', 100, NULL, 1679, 1486, 49, 50, false, '2020-09-09 08:09:38+07');
INSERT INTO public.issues VALUES (1681, 2, 28, 'Hiển thị danh sách phiên đấu giá bị từ chối', '', '2020-08-10', NULL, 5, 17, 2, NULL, 15, 6, '2020-07-31 13:38:49+07', '2020-09-09 08:13:53+07', '2020-08-08', 100, NULL, 1679, 1486, 51, 52, false, '2020-09-09 08:09:38+07');
INSERT INTO public.issues VALUES (1682, 2, 28, 'Tìm kiếm phiên đấu giá ( thời gian bắt đầu đấu giá - số lượng người đấu giá ..v.v', '', '2020-08-01', NULL, 5, 17, 2, NULL, 15, 4, '2020-07-31 13:40:13+07', '2020-09-09 08:13:53+07', '2020-07-31', 0, NULL, 1679, 1486, 53, 54, false, '2020-09-09 08:09:39+07');
INSERT INTO public.issues VALUES (1683, 2, 28, 'Xuất báo cáo PDF  ', '', '2020-08-04', NULL, 5, 10, 2, NULL, 15, 14, '2020-07-31 13:47:35+07', '2020-09-09 08:24:50+07', '2020-08-04', 100, NULL, NULL, 1683, 1, 8, false, '2020-09-09 08:24:50+07');
INSERT INTO public.issues VALUES (1684, 5, 27, 'Nhập liệu (27 - 31/7)', '- 27&28/7: 
Hộp 63: 83 văn bản
Hộp 64: 217 văn bản
Hộp 66: 163 văn bản
- 29&30/7:
Hộp 69: 194 văn bản
Hộp 71: 167 văn bản
Hộp 75: 232 văn bản
Hộp 77: 255 văn bản
- 31/7:
Hộp 84: 151 văn bản
Hộp 85: 149 văn bản
', NULL, NULL, 1, NULL, 2, NULL, 29, 1, '2020-07-31 16:22:37+07', '2020-07-31 16:32:06+07', '2020-07-31', 100, NULL, 1423, 1423, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1685, 5, 27, 'Nhập liệu ', 'Hộp 81: 190 văn bản
Hộp 82 : 60 văn bản', '2020-07-31', NULL, 1, 23, 2, NULL, 23, 1, '2020-07-31 16:31:59+07', '2020-07-31 16:34:08+07', '2020-07-31', 0, NULL, NULL, 1685, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1686, 5, 27, 'Nhập Liệu', '28/7: Hộp 65 (173 văn bản)
      Hộp 70 ( 64 văn bản)
29/7: Hộp 72 (169 văn bản)
30/7: Hộp 76 ( 213 văn bản)
31/7: Hộp 80 ( 180 văn bản)', NULL, NULL, 1, NULL, 2, NULL, 34, 1, '2020-07-31 16:32:17+07', '2020-07-31 16:32:25+07', '2020-07-31', 40, NULL, 1425, 1425, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1688, 1, 4, 'Trong điểm đầu tư khi bấm popup lên tiêu đề điểm đầu tư bị thay đổi', '', '2020-08-03', NULL, 5, 12, 2, 6, 5, 6, '2020-08-01 16:41:22+07', '2020-08-21 11:58:25+07', '2020-08-03', 100, NULL, 1593, 1593, 8, 9, false, '2020-08-21 11:58:25+07');
INSERT INTO public.issues VALUES (1830, 2, 44, 'Lập danh sách chức năng', '', '2020-08-14', NULL, 5, 5, 2, 14, 5, 3, '2020-08-13 11:32:40+07', '2020-08-28 15:16:19+07', '2020-08-13', 100, NULL, NULL, 1830, 1, 2, false, '2020-08-28 15:16:19+07');
INSERT INTO public.issues VALUES (1689, 1, 4, 'Mặc định vào điểm đầu tư lọc theo đang kêu gọi', '', '2020-08-10', NULL, 3, 12, 2, 7, 5, 9, '2020-08-01 16:53:30+07', '2020-08-14 16:55:33+07', '2020-08-10', 100, NULL, NULL, 1689, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1690, 1, 4, 'Cập nhật lại chưa thuê cho điểm đầu tư', '', '2020-08-10', NULL, 3, 12, 2, 7, 5, 9, '2020-08-01 17:00:56+07', '2020-08-15 14:41:48+07', '2020-08-10', 100, NULL, NULL, 1690, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1691, 2, 4, 'Chỉnh sửa trang thông tin xúc tiến đầu tư', '', '2020-08-06', NULL, 1, 13, 2, 6, 13, 24, '2020-08-03 08:28:40+07', '2021-02-05 08:59:03+07', '2020-08-03', 100, NULL, NULL, 1691, 1, 8, false, NULL);
INSERT INTO public.issues VALUES (1692, 2, 4, 'Sửa giao diện trang tìm kiếm riêng', '', '2020-08-10', NULL, 3, 13, 2, 7, 13, 10, '2020-08-03 08:29:27+07', '2021-02-05 08:59:04+07', '2020-08-10', 100, NULL, NULL, 1692, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1693, 2, 4, 'Hiển thị danh sách điểm mời gọi theo dạng lưới và bảng', '', '2020-08-04', NULL, 5, 13, 2, 6, 13, 10, '2020-08-03 08:32:22+07', '2021-02-05 08:59:04+07', '2020-08-03', 100, NULL, 1691, 1691, 2, 3, false, '2020-08-21 11:58:26+07');
INSERT INTO public.issues VALUES (1694, 2, 4, 'Giao diện phần tìm kiếm trên trang mời gọi đầu tư', '', '2020-08-11', NULL, 3, 13, 2, 7, 13, 11, '2020-08-03 08:33:04+07', '2021-02-05 08:59:04+07', '2020-08-11', 100, NULL, NULL, 1694, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1695, 2, 4, 'Cập nhật lại trang thêm mới doanh nghiệp', '', '2020-08-05', NULL, 5, 12, 2, 6, 13, 10, '2020-08-03 08:36:52+07', '2020-08-21 11:58:18+07', '2020-08-03', 100, NULL, NULL, 1695, 1, 2, false, '2020-08-21 11:58:18+07');
INSERT INTO public.issues VALUES (1696, 2, 4, 'thêm tính năng làm nổi bật thứ tự điểm mời gọi đầu tư', '', '2020-08-26', NULL, 3, 10, 2, 13, 13, 15, '2020-08-03 08:38:12+07', '2020-08-29 10:35:09+07', '2020-08-26', 100, NULL, NULL, 1696, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1697, 3, 4, 'Rà soát dữ liệu', 'Số lượng A Trí cần 486

**HIỆN TRẠNG PHIẾU**
- Doanh nghiệp: 
     . Trong KCN: 111
     . Trong CCN: 
     . Ngoài KCN/CCN (tức là đã đầu tư ở điểm mời gọi):
- Điểm đang mời gọi: 60


**SAU KHI RÀ SOÁT PHẦN MỀM**
- Doanh nghiệp: 
     . Trong KCN:
     . Trong CCN:
     . Ngoài KCN/CCN (tức là đã đầu tư ở điểm mời gọi):
- Điểm đang mời gọi:', '2020-08-08', NULL, 5, 9, 2, 6, 5, 15, '2020-08-03 09:02:16+07', '2021-02-05 08:59:35+07', '2020-08-05', 100, NULL, NULL, 1697, 1, 10, false, '2020-08-21 11:58:34+07');
INSERT INTO public.issues VALUES (1698, 3, 4, 'Rà soát 200 phiếu', '', '2020-08-08', NULL, 5, 9, 2, 6, 5, 8, '2020-08-03 09:02:26+07', '2021-02-05 08:59:35+07', '2020-08-07', 100, NULL, 1697, 1697, 2, 3, false, '2020-08-21 11:58:20+07');
INSERT INTO public.issues VALUES (1699, 2, 4, 'Sửa api export', '', '2020-08-03', NULL, 5, 12, 2, 6, 5, 6, '2020-08-03 09:15:21+07', '2020-08-21 11:58:29+07', '2020-08-03', 100, NULL, 1588, 1588, 10, 11, false, '2020-08-21 11:58:29+07');
INSERT INTO public.issues VALUES (1700, 4, 27, 'Scan 7000 trang ', '', '2020-08-14', NULL, 1, 26, 2, NULL, 23, 5, '2020-08-03 09:32:07+07', '2020-08-12 04:10:26+07', '2020-08-03', 100, NULL, NULL, 1700, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (1701, 4, 27, 'Scan 7000 trang ', '', '2020-08-14', NULL, 1, 30, 2, NULL, 23, 4, '2020-08-03 09:33:30+07', '2020-08-14 09:21:56+07', '2020-08-03', 100, NULL, NULL, 1701, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (1702, 4, 27, 'Nhập 1700 văn bản', '', NULL, NULL, 1, 29, 2, NULL, 23, 6, '2020-08-03 09:38:18+07', '2020-08-07 16:32:30+07', '2020-08-07', 100, NULL, NULL, 1702, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (1703, 4, 27, 'Nhập 1300 văn bản', '', NULL, NULL, 1, 34, 2, NULL, 23, 1, '2020-08-03 09:48:35+07', '2020-08-07 17:50:15+07', '2020-08-07', 100, NULL, NULL, 1703, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (1704, 4, 27, 'Nhập 1400 văn bản', '', '2020-08-07', NULL, 1, 28, 2, NULL, 23, 1, '2020-08-03 10:03:13+07', '2020-08-10 07:47:01+07', '2020-08-03', 90, NULL, NULL, 1704, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (1705, 4, 27, 'Scan 7000 trang ', '', '2020-08-15', NULL, 1, 31, 2, NULL, 23, 2, '2020-08-03 13:45:10+07', '2020-08-12 16:11:19+07', '2020-08-03', 100, NULL, NULL, 1705, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (1706, 4, 27, 'Scan 5000 trang ', '', '2020-08-15', NULL, 1, 35, 2, NULL, 23, 5, '2020-08-03 13:45:32+07', '2020-08-12 16:43:38+07', '2020-08-03', 100, NULL, NULL, 1706, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (1707, 4, 27, 'Báo cáo Scan', '* 3/8
 Hộp 21: 614 trang', '2020-08-14', NULL, 1, 30, 2, NULL, 30, 8, '2020-08-03 15:53:59+07', '2020-08-14 09:21:56+07', '2020-08-03', 100, NULL, 1701, 1701, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1708, 4, 27, '7144 trang', '29/7 Hop 01 - 251 trang
30/7 Hop 11 - 415 trang
3/8  Hop 20 - 313 trang
     Hop 28 - 547 trang
     Hop 33 - 3 trang
     Hop 48 - 233 trang
     Hop 49 - 178 trang
4/8  Hop 70 - 416 trang
     Hop 75 - 542 trang
5/8  Hop 85 - 490 trang
     Hop 162 - 243 trang
6/8  Hop 88 - 357 trang
7/8  Hop 163 - 662 trang
10/8 Hop 186 - 852 trang
11/8 Hop 201 - 763 trang
         205 - 250 trang
12/8 Hop 69 - 629 trang', '2020-08-14', NULL, 1, NULL, 2, NULL, 26, 5, '2020-08-03 16:13:55+07', '2020-08-12 04:10:26+07', '2020-08-03', 100, NULL, 1700, 1700, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1709, 5, 27, 'Nhập Liệu', 'Hộp 83=131
Hộp 87=196', '2020-08-03', NULL, 1, 32, 2, NULL, 32, 0, '2020-08-03 16:43:46+07', '2020-08-03 16:43:46+07', '2020-08-03', 100, NULL, NULL, 1709, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1710, 2, 28, 'Xuất PDF báo cáo "BẢNG KÊ CHI TIẾT ĐẤU GIÁ"', '				
', '2020-08-04', NULL, 5, 10, 2, NULL, 15, 4, '2020-08-04 08:34:26+07', '2020-09-09 08:13:56+07', '2020-08-04', 100, NULL, 1683, 1683, 2, 3, false, '2020-09-09 08:10:23+07');
INSERT INTO public.issues VALUES (1711, 2, 28, 'Báo cáo "Danh sách người trúng đấu giá"', '', '2020-08-04', NULL, 5, 10, 2, NULL, 15, 5, '2020-08-04 08:35:22+07', '2020-09-09 08:13:56+07', '2020-08-04', 100, NULL, 1683, 1683, 4, 5, false, '2020-09-09 08:10:23+07');
INSERT INTO public.issues VALUES (1712, 2, 28, 'Xuất báo cáo "Danh sách người đăng ký đấu giá"', '', '2020-08-04', NULL, 5, 10, 2, NULL, 15, 5, '2020-08-04 08:37:15+07', '2020-09-09 08:13:56+07', '2020-08-04', 100, NULL, 1683, 1683, 6, 7, false, '2020-09-09 08:10:23+07');
INSERT INTO public.issues VALUES (1715, 2, 28, 'Danh mục online', '', '2020-08-04', NULL, 5, 15, 2, NULL, 15, 6, '2020-08-04 14:11:34+07', '2020-09-09 08:14:19+07', '2020-08-04', 100, NULL, NULL, 1715, 1, 10, false, '2020-09-09 08:14:19+07');
INSERT INTO public.issues VALUES (1716, 2, 28, 'Danh mục phương thức đấu giá', '', '2020-08-04', NULL, 5, 15, 2, NULL, 15, 4, '2020-08-04 14:12:41+07', '2020-09-09 08:13:56+07', '2020-08-04', 100, NULL, 1715, 1715, 2, 3, false, '2020-09-09 08:10:23+07');
INSERT INTO public.issues VALUES (1717, 2, 28, 'Danh mục hình thức đấu giá', '', '2020-08-04', NULL, 5, 15, 2, NULL, 15, 4, '2020-08-04 14:12:56+07', '2020-09-09 08:13:56+07', '2020-08-04', 100, NULL, 1715, 1715, 4, 5, false, '2020-09-09 08:10:23+07');
INSERT INTO public.issues VALUES (1718, 2, 28, 'Danh mục trạng thái sản phẩm', '', '2020-08-04', NULL, 5, 15, 2, NULL, 15, 4, '2020-08-04 14:13:15+07', '2020-09-09 08:13:56+07', '2020-08-04', 100, NULL, 1715, 1715, 6, 7, false, '2020-09-09 08:10:23+07');
INSERT INTO public.issues VALUES (1719, 2, 28, 'Danh mục loại hình doanh nghiệp', '', '2020-08-04', NULL, 5, 15, 2, NULL, 15, 5, '2020-08-04 14:13:49+07', '2020-09-09 08:13:56+07', '2020-08-04', 100, NULL, 1715, 1715, 8, 9, false, '2020-09-09 08:10:23+07');
INSERT INTO public.issues VALUES (1720, 1, 28, 'Sắp xếp menu theo thứ tự quy định', '', NULL, NULL, 5, 15, 2, NULL, 15, 1, '2020-08-05 09:48:52+07', '2020-09-09 08:25:04+07', '2020-08-05', 0, NULL, NULL, 1720, 1, 2, false, '2020-09-09 08:25:04+07');
INSERT INTO public.issues VALUES (1721, 3, 4, 'Doanh nghiệp trong KCN, CCN', '', '2020-08-05', NULL, 5, 9, 2, 6, 13, 6, '2020-08-05 15:36:03+07', '2020-08-21 11:58:30+07', '2020-08-05', 100, NULL, 1697, 1697, 4, 5, false, '2020-08-21 11:58:30+07');
INSERT INTO public.issues VALUES (1722, 3, 4, 'Doanh nghiệp ngoài KCN, CCN', '', '2020-08-05', NULL, 5, 9, 2, 6, 13, 6, '2020-08-05 15:36:24+07', '2020-08-21 11:58:32+07', '2020-08-05', 100, NULL, 1697, 1697, 6, 7, false, '2020-08-21 11:58:32+07');
INSERT INTO public.issues VALUES (1948, 1, 9, 'Sửa select phụ cấp bị Top 30	', '', '2020-09-01', NULL, 3, 15, 2, NULL, 15, 3, '2020-09-03 08:26:33+07', '2020-09-03 08:33:33+07', '2020-09-01', 100, NULL, 1922, 1922, 26, 27, false, NULL);
INSERT INTO public.issues VALUES (1723, 2, 40, 'Thống kê KCN diện tích đã thuê, chưa thuê', '', '2020-08-06', NULL, 3, 13, 2, 9, 5, 5, '2020-08-06 10:22:34+07', '2020-08-08 09:13:14+07', '2020-08-06', 100, NULL, 1741, 1741, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1724, 2, 40, 'Hiển thị đầy đủ thông tin doanh nghiệp trên bản đồ', 'Khi tìm kiếm doanh nghiệp, hoặc click vào 1 doanh nghiệp trên bản đồ', '2020-08-06', NULL, 3, 13, 2, 9, 5, 3, '2020-08-06 10:24:27+07', '2020-08-08 09:09:16+07', '2020-08-06', 100, NULL, NULL, 1724, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1725, 2, 4, 'Xử lý phần tìm kiếm trên trang mời gọi đầu tư', '', '2020-08-26', NULL, 3, 13, 2, 13, 5, 8, '2020-08-06 10:34:30+07', '2020-08-29 16:09:14+07', '2020-08-26', 100, NULL, NULL, 1725, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1726, 2, 4, 'Bỏ khung search chỗ CCN ngoài trang chủ', '', '2020-08-06', NULL, 5, 13, 2, 6, 5, 7, '2020-08-06 10:34:46+07', '2021-02-05 08:59:04+07', '2020-08-06', 100, NULL, 1691, 1691, 4, 5, false, '2020-08-21 11:58:33+07');
INSERT INTO public.issues VALUES (1727, 2, 4, 'Xử lý phần tìm kiếm trên trang KCN, CCN', '', '2020-08-26', NULL, 3, 12, 2, 13, 5, 11, '2020-08-06 10:38:20+07', '2020-08-29 16:09:14+07', '2020-08-26', 100, NULL, NULL, 1727, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1728, 2, 4, 'Xử lý phần tìm kiếm riêng', '', '2020-08-26', NULL, 3, 13, 2, 13, 5, 8, '2020-08-06 10:44:54+07', '2020-08-29 16:09:15+07', '2020-08-26', 100, NULL, NULL, 1728, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1729, 2, 4, 'Mặc định dang list cho ĐMG, KCN, CCN', '', '2020-08-06', NULL, 5, 13, 2, 6, 5, 5, '2020-08-06 10:46:49+07', '2021-02-05 08:59:04+07', '2020-08-06', 100, NULL, 1691, 1691, 6, 7, false, '2020-08-21 11:58:36+07');
INSERT INTO public.issues VALUES (1730, 2, 4, 'Selected table cho chữ màu trắng', 'Hiện tại màu đen k thấy gì', '2020-08-12', NULL, 3, 13, 2, 7, 5, 7, '2020-08-06 10:58:54+07', '2021-02-05 08:59:04+07', '2020-08-12', 100, NULL, NULL, 1730, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1731, 2, 4, 'Thêm mới thông tin thuê cho * đỏ vào', 'Cho * đỏ vào những ô bắt buộc và ưu tiên lên đầu bên trái', '2020-08-07', NULL, 5, 12, 2, 6, 5, 3, '2020-08-06 15:06:38+07', '2020-08-21 11:58:37+07', '2020-08-07', 100, NULL, NULL, 1731, 1, 2, false, '2020-08-21 11:58:37+07');
INSERT INTO public.issues VALUES (1732, 2, 4, 'Thống kê sl DN trong KCN', '', '2020-08-07', NULL, 5, 12, 2, 6, 5, 8, '2020-08-06 15:27:26+07', '2020-08-21 11:58:19+07', '2020-08-07', 100, NULL, NULL, 1732, 1, 2, false, '2020-08-21 11:58:19+07');
INSERT INTO public.issues VALUES (1733, 2, 4, 'Thống kê sl DN trong CCN', '', '2020-08-07', NULL, 5, 12, 2, 6, 5, 7, '2020-08-06 15:27:37+07', '2020-08-21 11:58:20+07', '2020-08-07', 100, NULL, NULL, 1733, 1, 2, false, '2020-08-21 11:58:20+07');
INSERT INTO public.issues VALUES (1734, 2, 4, 'Thống kê sl DN đã đầu tư ngoài KCN/CCN', '', '2020-08-07', NULL, 5, 12, 2, 6, 5, 7, '2020-08-06 15:27:59+07', '2020-08-21 11:58:21+07', '2020-08-07', 100, NULL, NULL, 1734, 1, 2, false, '2020-08-21 11:58:21+07');
INSERT INTO public.issues VALUES (1735, 2, 4, 'SP thống kê sl DN trong KCN', '', '2020-08-07', NULL, 5, 5, 2, 6, 5, 4, '2020-08-06 15:29:17+07', '2020-08-21 11:58:38+07', '2020-08-07', 100, NULL, NULL, 1735, 1, 2, false, '2020-08-21 11:58:38+07');
INSERT INTO public.issues VALUES (1736, 2, 4, 'SP thống kê sl DN trong CCN', '', '2020-08-07', NULL, 5, 5, 2, 6, 5, 4, '2020-08-06 15:29:17+07', '2020-08-21 11:58:38+07', '2020-08-07', 100, NULL, NULL, 1736, 1, 2, false, '2020-08-21 11:58:38+07');
INSERT INTO public.issues VALUES (1737, 2, 4, 'SP thống kê sl DN đã đầu tư ngoài KCN/CCN', '', '2020-08-07', NULL, 5, 5, 2, 6, 5, 4, '2020-08-06 15:29:17+07', '2020-08-21 11:58:39+07', '2020-08-07', 100, NULL, NULL, 1737, 1, 2, false, '2020-08-21 11:58:39+07');
INSERT INTO public.issues VALUES (1738, 1, 4, 'Quy hoạch nhảy sai vị trí', 'https://detaixtdt.gdtvietnam.com/home/cum-cong-nghiep/106?opacity=false&center=109.19876887982966,13.792335356943415&scale=9027.977411', '2020-08-12', NULL, 3, 13, 2, 7, 5, 5, '2020-08-07 11:11:07+07', '2020-08-14 10:48:54+07', '2020-08-12', 100, NULL, NULL, 1738, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1739, 4, 27, 'Báo cáo scan (03/08/2020 - 15/08/2020)', 'Trần Lê Mỹ Nhơn đã viết:
> Ngày 03/08/2020: Hộp 34 - 532; Hộp 47 - 513
> Ngày 04/08/2020: Hộp 56 - 565; Hộp 64 - 550
> Ngày 05//08/2020: Hộp 78 - 432
> Ngày 06/08/2020: Hộp 86 - 1194; Hộp 58 - 399
> Ngày 07/08/2020: Hộp 66 - 263; Hộp 181 - 242
> Ngày 10/08/2020: Hộp 183 - 550
> Ngày 11/08/2020: Hộp 192 - 1199
> Ngày 12/08/2020: Hộp 204 - 709; Hộp 167 - 401', '2020-08-15', NULL, 1, NULL, 2, NULL, 31, 1, '2020-08-07 14:52:41+07', '2020-08-12 16:11:19+07', '2020-08-03', 100, NULL, 1705, 1705, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1740, 2, 40, 'Bổ sung thông tin tìm kiếm trên bản đồ', '', '2020-08-07', NULL, 3, 13, 2, 9, 13, 4, '2020-08-07 15:24:09+07', '2020-08-10 09:11:30+07', '2020-08-07', 100, NULL, NULL, 1740, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1741, 2, 40, 'Cập nhật lại các thống kê trên dashboard', '', '2020-08-08', NULL, 3, 13, 2, 9, 13, 10, '2020-08-07 15:24:33+07', '2020-08-12 09:27:15+07', '2020-08-06', 100, NULL, NULL, 1741, 1, 10, false, NULL);
INSERT INTO public.issues VALUES (1742, 5, 27, 'Báo cáo nhập liệu ', 'Hộp 82: 160 văn bản
Hộp 90: 242
Hộp 99: 101
Hộp 100: 169
Hộp 107: 120
Hộp 108: 178
Hộp 3 – NB: 357
', '2020-08-07', NULL, 1, 23, 2, NULL, 23, 0, '2020-08-07 15:45:21+07', '2020-08-07 15:45:21+07', '2020-08-03', 0, NULL, NULL, 1742, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1743, 1, 4, 'Xem làm tròn % ở menu khu công nghiệp', '', '2020-08-12', NULL, 3, 13, 2, 7, 5, 7, '2020-08-07 15:48:22+07', '2021-02-05 08:59:04+07', '2020-08-12', 100, NULL, NULL, 1743, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1744, 1, 4, 'Trong menu khu vực khác, bấm vào 1 item bị lỗi', '', '2020-08-26', NULL, 5, 12, 2, 13, 5, 8, '2020-08-07 15:56:24+07', '2020-08-28 09:52:37+07', '2020-08-26', 0, NULL, NULL, 1744, 1, 2, false, '2020-08-28 09:52:37+07');
INSERT INTO public.issues VALUES (1745, 1, 4, 'Cập nhật danh mục lĩnh vực đầu tư', 'Liên hệ A. Trí để lấy', '2020-08-26', NULL, 1, 13, 2, 13, 5, 6, '2020-08-07 15:58:03+07', '2021-02-05 08:59:04+07', '2020-08-26', 0, NULL, NULL, 1745, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1746, 5, 27, 'Báo cáo scan ', 'Ngày 3/8. Hộp 46 : 525 trang
Ngày 4/8. Hộp 55 : 593 trang
          Hộp 60 : 10 trang
Ngày 5/8. Hộp 63 : 543 trang
Ngày 6/8. Hộp 77 : 482 trang
Ngày 7/8. Hộp 18 : 481 trang
          Hộp 22 : 290 trang ->Tổng 2924 trang
Ngày 10/8. Hộp 165 : 553 trang
Ngày 11/8. Hộp 185 : 797 trang
Ngày 12/8. Hộp 203 : 694 trang
Ngày 13/8. Hộp 200 : 980 trang 
Ngày 14/8. Hộp 43  : 254 trang-> Tổng 3278 trang 




', '2020-08-15', NULL, 1, NULL, 2, NULL, 35, 4, '2020-08-07 15:59:36+07', '2020-08-18 07:52:29+07', '2020-08-03', 100, NULL, 1706, 1706, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1747, 4, 27, 'Nhập liệu (3-7/8/2020)', '- 03&04/8: 
Hộp 88: 255 văn bản
Hộp 92: 246 văn bản
Hộp 96: 133 văn bản
- 05/8:
Hộp 101: 202 văn bản
Hộp 104: 95 văn bản
Hộp 106: 97 văn bản
- 06/8: 
Hộp 110: 119 văn bản
Hộp 04(mục lục 02): 293 văn bản
- 07/8:
Hộp 01(mục lục 03): 379 văn bản', NULL, NULL, 1, NULL, 2, NULL, 29, 1, '2020-08-07 16:30:40+07', '2020-08-07 16:32:30+07', '2020-08-07', 100, NULL, 1702, 1702, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1748, 2, 4, 'Bắt buộc nhập huyện tp của điểm đầu tư', '', '2020-08-11', NULL, 3, 12, 2, 7, 5, 5, '2020-08-07 16:31:03+07', '2020-08-14 08:52:55+07', '2020-08-11', 100, NULL, NULL, 1748, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1749, 3, 27, 'Báo Cáo Nhập Liệu', 'Hộp 93 = 201
Hộp 98 = 162
Hộp 103 = 187
Hộp 109 = 126
Hộp 2 2004 = 136
Hộp 2 2005 = 238', '2020-08-07', NULL, 1, 32, 2, NULL, 32, 0, '2020-08-07 16:36:18+07', '2020-08-07 16:36:18+07', '2020-08-04', 100, NULL, NULL, 1749, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1780, 2, 28, 'Danh sách phòng đấu giá của 1 phiên đấu giá', '', '2020-08-10', NULL, 5, 15, 2, NULL, 15, 5, '2020-08-10 11:03:22+07', '2020-09-09 08:26:46+07', '2020-08-10', 0, NULL, 1779, 1779, 2, 3, false, '2020-09-09 08:26:46+07');
INSERT INTO public.issues VALUES (1750, 2, 4, 'Format trong trang thông tin doanh nghiệp', 'Diện tích đất đã thuê: phân cách hàng ngàn, làm tròn 2 chữ số decimal, thêm đơn vị (ha hoặc m2)
Tổng vốn đầu tư: phân cách hàng ngàn', '2020-08-11', NULL, 3, 12, 2, 7, 5, 6, '2020-08-07 16:55:25+07', '2021-02-05 08:55:02+07', '2020-08-11', 100, NULL, NULL, 1750, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1751, 2, 4, 'Vị trí thuê, nên lấy tự động từ thông tin thuê', 'Lô C23, KCN Phú Tài, TP.Quy Nhơn

Mã quy hoạch + khu cụm + quận huyện', '2020-08-11', NULL, 5, 12, 2, 7, 5, 3, '2020-08-07 17:01:48+07', '2020-08-15 14:44:39+07', '2020-08-11', 0, NULL, NULL, 1751, 1, 2, false, '2020-08-15 14:44:39+07');
INSERT INTO public.issues VALUES (1752, 2, 4, 'Bắt buộc nhập quốc gia cho doanh nghiệp', '', '2020-08-13', NULL, 3, 12, 2, 7, 5, 8, '2020-08-07 17:02:51+07', '2021-02-05 08:55:02+07', '2020-08-13', 100, NULL, NULL, 1752, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1753, 2, 4, 'Thêm doanh nghiệp không lưu được', '', '2020-08-14', NULL, 3, 12, 2, 7, 5, 5, '2020-08-07 17:03:32+07', '2020-08-15 14:38:39+07', '2020-08-14', 100, NULL, NULL, 1753, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1754, 2, 4, 'Khu cụm đã hết đất thuê, thì khi thêm thông tin thuê sẽ thông báo', 'Hiện lên thông báo khi các khu quy hoạch trong KCN, CCN, DDT đã cho thuê hết', '2020-08-26', NULL, 3, 10, 2, 13, 5, 8, '2020-08-07 17:05:00+07', '2020-08-28 09:35:34+07', '2020-08-26', 100, NULL, NULL, 1754, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1755, 4, 27, 'Nhập liệu', 'Ngày3,4/8:
Hộp 86 (133 văn bản)
Hộp 89 (215 văn bản)
Hộp 97 (93 văn bản) 
Ngày 5,6/8:
Hộp 102 (171 văn bản)
Hộp 105 (99 văn bản)
Hộp 111 (263 văn bản)
Ngày 7/8: 
Hộp 05 (64 văn bản)
Hộp 07 (120 văn bản)
Hộp 08 (hồ sơ 51: 152 văn bản)', NULL, NULL, 1, NULL, 2, NULL, 34, 0, '2020-08-07 17:50:15+07', '2020-08-07 17:50:15+07', '2020-08-07', 100, NULL, 1703, 1703, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1756, 3, 4, 'Rà soát 200 phiếu', '', '2020-08-08', NULL, 5, 9, 2, 6, 5, 4, '2020-08-08 08:34:37+07', '2020-08-21 11:58:17+07', '2020-08-07', 100, NULL, 1697, 1697, 8, 9, false, '2020-08-21 11:58:17+07');
INSERT INTO public.issues VALUES (1757, 2, 40, 'Thêm và hiển thị, ẩn một số trường thông tin của doanh nghiệp', '', '2020-08-08', NULL, 3, 13, 2, 9, 13, 3, '2020-08-08 09:07:10+07', '2020-08-10 08:13:02+07', '2020-08-08', 100, NULL, NULL, 1757, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1758, 2, 40, 'Tạo biểu đồ cột đôi thống kê diện tích đất cho khu công nghiệp', '', '2020-08-08', NULL, 3, 13, 2, 9, 13, 3, '2020-08-08 09:07:56+07', '2020-08-10 08:12:37+07', '2020-08-08', 100, NULL, 1741, 1741, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1759, 2, 40, 'Tạo danh sách thống kê các số liệu khu công nghiệp', '', '2020-08-08', NULL, 3, 13, 2, 9, 13, 3, '2020-08-08 09:14:11+07', '2020-08-11 13:37:47+07', '2020-08-08', 100, NULL, 1741, 1741, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1760, 2, 40, 'Cập nhật lại biểu đồ thống kê theo quốc gia', 'chỉnh kích thước, thêm sô lượng doanh nghiệp', '2020-08-08', NULL, 3, 13, 2, 9, 13, 4, '2020-08-08 09:15:54+07', '2020-08-11 13:37:47+07', '2020-08-08', 100, NULL, 1741, 1741, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (1761, 3, 43, 'Xử lý âm thanh', 'Thực hiện xử lý âm thanh theo tài liệu đính kèm ở mục TẬP TIN
File âm thanh đính kèm trong TÀI LIỆU
Cắt và lọc âm thanh theo từng câu. Mỗi câu lưu thành 1 file âm thanh', '2020-09-08', NULL, 1, 14, 2, NULL, 21, 14, '2020-08-08 15:12:50+07', '2020-09-29 16:57:30+07', '2020-08-19', 100, NULL, NULL, 1761, 1, 14, false, NULL);
INSERT INTO public.issues VALUES (1762, 3, 43, 'Xử lý âm thanh', 'Thực hiện xử lý âm thanh theo tài liệu đính kèm ở mục TẬP TIN
File âm thanh đính kèm trong TÀI LIỆU
Cắt và lọc âm thanh theo từng câu. Mỗi câu lưu thành 1 file âm thanh', '2020-09-08', NULL, 1, 24, 2, NULL, 21, 7, '2020-08-08 15:13:21+07', '2020-09-29 16:57:23+07', '2020-08-26', 100, NULL, NULL, 1762, 1, 8, false, NULL);
INSERT INTO public.issues VALUES (1763, 4, 27, 'Báo cáo', 'Ngày 3/8: Hộp 74: 380 (còn lại 90h/s) + Hộp 79: (214 h/s) 
Ngày 4/8: Hộp 94: 232 hồ sơ
Ngày 5/8: Hộp 95: 199 hồ sơ
Ngày 6/8: Hộp 112: 217 hồ sơ
Ngày 7/8: Hộp 02 + Hộp 11: 68 hồ sơ + 114 hồ sơ', '2020-08-07', NULL, 1, 28, 2, NULL, 28, 0, '2020-08-10 07:47:00+07', '2020-08-10 07:47:00+07', '2020-08-03', 90, NULL, 1704, 1704, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1764, 2, 4, 'Sửa lại chức năng thêm thông tin thuê ở menu doanh nghiệp', 'Sửa lại cho giống với thêm thông tin thuê ở Điểm đầu tư.', '2020-08-13', NULL, 3, 12, 2, 7, 12, 4, '2020-08-10 08:12:34+07', '2020-08-13 16:58:46+07', '2020-08-10', 100, NULL, NULL, 1764, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1766, 2, 28, 'Danh sách phiên đấu giá chờ duyệt', '', '2020-08-10', NULL, 5, 17, 2, NULL, 15, 3, '2020-08-10 08:29:24+07', '2020-09-09 08:13:53+07', '2020-08-08', 100, NULL, 1679, 1486, 55, 56, false, '2020-09-09 08:09:39+07');
INSERT INTO public.issues VALUES (1767, 2, 28, 'Danh mục phiên đấu giá đã duyệt', '', '2020-08-10', NULL, 5, 17, 2, NULL, 15, 3, '2020-08-10 08:30:12+07', '2020-09-09 08:13:53+07', '2020-08-08', 100, NULL, 1679, 1486, 57, 58, false, '2020-09-09 08:09:39+07');
INSERT INTO public.issues VALUES (1768, 2, 28, 'Danh sách phiên đấu giá đã phê duyệt', '', '2020-08-10', NULL, 5, 17, 2, NULL, 15, 3, '2020-08-10 08:30:56+07', '2020-09-09 08:13:53+07', '2020-08-08', 100, NULL, 1679, 1486, 59, 60, false, '2020-09-09 08:09:39+07');
INSERT INTO public.issues VALUES (1769, 2, 28, 'Danh sách phiên đấu giá đã tạm hoãn', '', '2020-08-10', NULL, 5, 17, 2, NULL, 15, 3, '2020-08-10 08:33:35+07', '2020-09-09 08:13:53+07', '2020-08-08', 100, NULL, 1679, 1486, 61, 62, false, '2020-09-09 08:09:39+07');
INSERT INTO public.issues VALUES (1770, 2, 28, 'Danh sách đấu giá đang diễn ra', '', '2020-08-10', NULL, 5, 17, 2, NULL, 15, 4, '2020-08-10 08:34:15+07', '2020-09-09 08:36:56+07', '2020-08-08', 0, NULL, NULL, 1770, 1, 2, false, '2020-09-09 08:36:56+07');
INSERT INTO public.issues VALUES (1771, 2, 28, 'Danh sách tất cả các phiên đấu giá ', '', '2020-08-10', NULL, 5, 17, 2, NULL, 15, 3, '2020-08-10 08:34:48+07', '2020-09-09 08:13:53+07', '2020-08-08', 100, NULL, 1679, 1486, 63, 64, false, '2020-09-09 08:09:40+07');
INSERT INTO public.issues VALUES (1772, 4, 27, 'Nhập 1400 văn bản', '', NULL, NULL, 1, 34, 2, NULL, 23, 2, '2020-08-10 08:47:39+07', '2020-08-26 08:08:19+07', '2020-08-26', 0, NULL, NULL, 1772, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (1773, 4, 27, 'Nhập 1400 văn bản', '', '2020-08-25', NULL, 1, 28, 2, NULL, 23, 3, '2020-08-10 08:48:00+07', '2020-08-25 10:41:14+07', '2020-08-24', 0, NULL, NULL, 1773, 1, 8, false, NULL);
INSERT INTO public.issues VALUES (1774, 4, 27, 'Nhập 1800 văn bản', '', NULL, NULL, 1, 29, 2, NULL, 23, 3, '2020-08-10 08:48:29+07', '2020-08-24 09:22:09+07', '2020-08-14', 35, NULL, NULL, 1774, 1, 6, false, NULL);
INSERT INTO public.issues VALUES (1775, 2, 4, 'Cho tìm mã doanh nghiệp, số điện thoại', '', '2020-08-10', NULL, 3, 12, 2, 7, 5, 4, '2020-08-10 10:44:58+07', '2021-02-05 08:55:02+07', '2020-08-10', 100, NULL, NULL, 1775, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1776, 2, 28, 'Chỉnh sửa phiên đấu giá', '', '2020-08-10', NULL, 5, 17, 2, NULL, 15, 3, '2020-08-10 10:56:33+07', '2020-09-09 08:13:53+07', '2020-08-10', 100, NULL, 1679, 1486, 65, 66, false, '2020-09-09 08:09:40+07');
INSERT INTO public.issues VALUES (1777, 2, 29, 'Danh mục công ty tham gia đấu giá', '', '2020-08-10', NULL, 5, 10, 2, NULL, 15, 4, '2020-08-10 11:00:15+07', '2020-09-09 08:10:24+07', '2020-08-10', 100, NULL, NULL, 1777, 1, 2, false, '2020-09-09 08:10:24+07');
INSERT INTO public.issues VALUES (1778, 2, 29, 'Sắp xếp menu theo độ ưu tiên', '', '2020-08-10', NULL, 5, 10, 2, NULL, 15, 5, '2020-08-10 11:01:21+07', '2020-09-09 08:10:24+07', '2020-08-10', 100, NULL, NULL, 1778, 1, 2, false, '2020-09-09 08:10:24+07');
INSERT INTO public.issues VALUES (1779, 2, 28, 'Trang phòng đấu giá', '', '2020-08-10', NULL, 5, 15, 2, NULL, 15, 6, '2020-08-10 11:02:29+07', '2020-09-09 08:26:51+07', '2020-08-10', 100, NULL, NULL, 1779, 1, 10, false, '2020-09-09 08:26:51+07');
INSERT INTO public.issues VALUES (1782, 2, 28, 'Danh sách người tham gia đấu giá (tại vòng đấu hiện tại)', '', '2020-08-10', NULL, 5, 15, 2, NULL, 15, 5, '2020-08-10 11:04:30+07', '2020-09-09 08:25:52+07', '2020-08-10', 0, NULL, 1781, 1779, 5, 6, false, '2020-09-09 08:25:52+07');
INSERT INTO public.issues VALUES (1783, 2, 28, 'Lịch sử đấu giá của từng cá nhân tham gia', '', '2020-08-10', NULL, 5, 15, 2, NULL, 15, 4, '2020-08-10 11:04:53+07', '2020-09-09 08:25:52+07', '2020-08-10', 0, NULL, 1781, 1779, 7, 8, false, '2020-09-09 08:25:52+07');
INSERT INTO public.issues VALUES (1784, 1, 40, 'Khi chuyển lại trang bản đồ popup không hoạt động', '', '2020-08-10', NULL, 3, 13, 2, 9, 13, 3, '2020-08-10 14:12:02+07', '2020-08-11 13:37:28+07', '2020-08-10', 100, NULL, NULL, 1784, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1785, 1, 4, 'Khi chuyển lại trang bản đồ popup không hoạt động', '', '2020-08-26', NULL, 3, 12, 2, 13, 13, 8, '2020-08-10 14:12:50+07', '2020-08-29 08:15:39+07', '2020-08-26', 100, NULL, NULL, 1785, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1786, 3, 4, 'Kiểm tra và số hóa điểm đầu tư đang mời gọi', '', '2020-08-13', NULL, 3, 9, 2, 7, 5, 3, '2020-08-11 09:25:08+07', '2020-08-24 16:34:16+07', '2020-08-10', 100, NULL, NULL, 1786, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1787, 3, 4, 'Kiểm tra và số hóa doanh nghiệp ngoài KCN/CCN', '', '2020-08-15', NULL, 3, 9, 2, 7, 5, 5, '2020-08-11 09:25:59+07', '2020-08-25 14:58:23+07', '2020-08-14', 100, NULL, NULL, 1787, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1788, 3, 4, 'Kiểm tra và số hóa doanh nghiệp trong CCN', '', '2020-08-22', NULL, 3, 9, 2, 8, 5, 6, '2020-08-11 09:26:31+07', '2020-08-24 16:49:12+07', '2020-08-20', 100, NULL, NULL, 1788, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1789, 3, 4, 'Kiểm tra và số hóa doanh nghiệp trong KCN', '', '2020-08-26', NULL, 1, 9, 2, 13, 5, 5, '2020-08-11 09:26:58+07', '2020-08-24 16:45:40+07', '2020-08-26', 0, NULL, NULL, 1789, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1790, 2, 40, 'Chỉnh sửa giao diện ', '', '2020-08-11', NULL, 3, 13, 2, 9, 13, 3, '2020-08-11 11:07:21+07', '2020-08-12 09:27:05+07', '2020-08-11', 100, NULL, NULL, 1790, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1791, 2, 11, 'Api DMDiemQuanTrac/Tree chưa lọc theo tự động với định kỳ', '', '2020-08-11', NULL, 3, 19, 2, 2, 8, 1, '2020-08-11 11:29:37+07', '2020-08-12 07:24:41+07', '2020-08-11', 100, NULL, NULL, 1791, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1792, 2, 12, 'Những tính năng còn lại', '', NULL, NULL, 1, NULL, 2, NULL, 4, 1, '2020-08-11 15:13:01+07', '2020-08-13 08:29:12+07', '2020-08-13', 0, NULL, NULL, 1792, 1, 16, false, NULL);
INSERT INTO public.issues VALUES (1793, 1, 11, 'Api QuanTrac/SoLieuQuanTracKhiTuDong bị lỗi', '', '2020-08-12', NULL, 3, 19, 2, 2, 8, 1, '2020-08-12 08:28:09+07', '2020-08-12 06:54:56+07', '2020-08-12', 100, NULL, NULL, 1793, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1794, 1, 4, 'Fix bug', '', '2020-08-14', NULL, 3, 12, 2, 7, 12, 31, '2020-08-12 09:44:21+07', '2020-08-24 16:34:36+07', '2020-08-11', 100, NULL, NULL, 1794, 1, 30, false, NULL);
INSERT INTO public.issues VALUES (1795, 1, 4, 'Bỏ trường Quy hoạch sdd, Mô tả, Lĩnh vực đầu tư, trong thông tin Thêm mới thông tin đầu tư', '', '2020-08-11', NULL, 3, 12, 2, 7, 12, 3, '2020-08-12 09:46:45+07', '2020-08-12 09:57:22+07', '2020-08-11', 100, NULL, 1794, 1794, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1796, 1, 4, 'Create thông tin thuê: tìm kiếm doanh nghiệp bị si đa', '', '2020-08-12', NULL, 3, 12, 2, 7, 12, 3, '2020-08-12 09:47:36+07', '2020-08-12 10:00:20+07', '2020-08-12', 100, NULL, 1794, 1794, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1797, 1, 4, 'Create thông tin đầu tư: Bỏ trường Sđt, Fax, Mail', '', '2020-08-11', NULL, 3, 12, 2, 7, 12, 2, '2020-08-12 09:48:43+07', '2020-08-12 09:57:57+07', '2020-08-11', 100, NULL, 1794, 1794, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1798, 1, 4, 'Không handle click khi nhấp vào khu quy hoạch (Lỗi bản đồ -> update version)', '', '2020-08-12', NULL, 3, 13, 2, 7, 12, 2, '2020-08-12 09:49:57+07', '2020-08-13 09:25:37+07', '2020-08-12', 100, NULL, 1794, 1794, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (1799, 1, 4, 'Thêm thanh scrollbar trong thêm thông tin thuê', '', '2020-08-12', NULL, 3, 12, 2, 7, 12, 2, '2020-08-12 09:50:55+07', '2020-08-12 09:59:12+07', '2020-08-12', 100, NULL, 1794, 1794, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (1800, 1, 4, 'Cho nhập vào ô input datepicker + check value trong Chức năng Thêm thông tin thuê', '', '2020-08-26', NULL, 3, 10, 2, 13, 12, 6, '2020-08-12 09:52:22+07', '2020-08-27 15:03:52+07', '2020-08-26', 100, NULL, NULL, 1800, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1801, 1, 4, 'Ẩn trường  Mã định danh, Mã khu, Shapef.sta trong Chức năng Thông tin quy hoạch', '', '2020-08-12', NULL, 3, 12, 2, 7, 12, 3, '2020-08-12 09:53:54+07', '2020-08-13 09:23:24+07', '2020-08-12', 100, NULL, 1794, 1794, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (1802, 2, 4, 'Tìm kiếm nâng cao trên trang bản đồ', '', '2020-08-26', NULL, 3, 13, 2, 13, 13, 2, '2020-08-12 09:58:35+07', '2020-08-29 16:09:15+07', '2020-08-26', 100, NULL, NULL, 1802, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1803, 1, 4, 'Chưa load danh sách thông tin quy hoạch khi thêm mới thành công', '', '2020-08-13', NULL, 3, 12, 2, 7, 4, 3, '2020-08-12 04:20:50+07', '2020-08-13 10:48:12+07', '2020-08-13', 100, NULL, 1794, 1794, 14, 15, false, NULL);
INSERT INTO public.issues VALUES (1804, 2, 12, 'Hoàn trả tiền đặt cọc', 'Hoàn trả tiền đặt cọc cho những người trả giá hoặc đấu giá không thành công', NULL, NULL, 1, NULL, 2, NULL, 6, 2, '2020-08-13 08:29:12+07', '2020-08-13 09:23:47+07', '2020-08-13', 0, NULL, 1792, 1792, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1805, 2, 12, 'Quản lí doanh thu từ VNPAY và ViettelPay', '', NULL, NULL, 1, NULL, 2, NULL, 6, 1, '2020-08-13 08:29:35+07', '2020-08-13 09:25:43+07', '2020-08-13', 0, NULL, 1792, 1792, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1806, 5, 32, 'Hiệu chỉnh website trường chính trị', '- Trả lời phương án thực hiện bằng văn bản phía Trường yêu cầu.
- Thay đổi thứ tự và tên các chuyên mục con theo yêu cầu của Trường
- Kiểm tra nội dung từng chuyên mục sau khi thay đổi (nội dung, liên kết, hình ảnh...) nếu thiếu nội dung yêu cầu phía trường cung cấp.
- Tạo user và phân quyền theo từng chuyên mục (không biết, xem hướng dẫn trên diễn đàn NukeViet).', '2020-08-17', NULL, 1, 24, 3, NULL, 21, 1, '2020-08-13 08:40:57+07', '2020-11-21 09:36:53+07', '2020-08-13', 100, NULL, NULL, 1806, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1807, 5, 32, 'Báo cáo khả thi thiết kế website 3D', '- Tham khảo quy trình, template mẫu dùng để thiết kế website 3D.
- Viết báo cáo tính khả thi (khả năng thực hiện, trang thiết bị cần có, thời gian thực hiện....)
- Viết quy trình thiết kế website', '2020-08-15', NULL, 1, 14, 3, NULL, 21, 1, '2020-08-13 08:47:33+07', '2020-08-17 07:57:04+07', '2020-08-13', 100, NULL, NULL, 1807, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1808, 5, 36, 'Hợp đồng Trung tâm dịch vụ đấu giá tài sản', '- Thực hiện các thủ tục pháp lý thực hiện hợp đồng phần mềm đấu giá quyền sử dụng đất.
- Đã gửi file mềm Thương thảo và Hợp đồng.
- Lấy thông tin phản hồi chỉnh sửa, in trình ký, soạn Biên bản nghiệm thu
- Theo dõi ngày nghiệm thu để xuất hóa đơn.
Liên hệ kế toán: 0914417902 Chị Nhơn.', '2020-08-28', NULL, 1, NULL, 2, NULL, 21, 0, '2020-08-13 09:18:49+07', '2020-08-13 09:18:49+07', '2020-08-13', 0, NULL, NULL, 1808, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1831, 1, 4, 'Thêm đơn vị cho Tổng vốn đầu tư, Tổng số lao động trong nước, tổng số lao động nước ngoài, mật động xây dựng tối đa, diện tích thuê đất trong Thông tin thuê đất của doanh nghiệp', '', '2020-08-13', NULL, 3, 12, 2, 7, 12, 3, '2020-08-13 13:20:32+07', '2021-02-05 08:55:03+07', '2020-08-13', 100, NULL, 1794, 1794, 22, 23, false, NULL);
INSERT INTO public.issues VALUES (1809, 5, 36, 'Hợp đồng Trung tâm Phân tích và Đo lường chất lượng Bình Định', '- Loại hợp đồng: Xây dựng phần mềm.
- Giá trị hợp đồng: 40 triệu.
- Lấy hợp đồng, thương thảo đã ký
- Cập nhật ngày hợp đồng, ngày nghiệm thu
- Theo dõi ngày nghiệm thu để xuất hóa đơn
- Thông tin liên hệ: 0978873189 A. Tài (phòng Hành chính)', '2020-08-17', NULL, 1, NULL, 2, NULL, 21, 1, '2020-08-13 09:22:01+07', '2020-11-17 16:28:42+07', '2020-08-13', 100, NULL, NULL, 1809, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1810, 5, 36, 'Công ty Tân Đại Minh - Lamer 1', '- Lên danh mục chức năng hệ thống
- Báo giá hệ thống từng module
- Thông tin liên hệ: 0935994495 - Tùng (GĐ Tân Đại Minh)', '2020-08-15', NULL, 1, 21, 3, NULL, 21, 1, '2020-08-13 09:25:17+07', '2020-11-17 16:28:57+07', '2020-08-13', 100, NULL, NULL, 1810, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1811, 2, 12, 'Phân hệ báo cáo, các biểu mẫu báo cáo liên quan', '- báo cáo, các biểu mẫu báo cáo liên quan đến đấu giá
- báo cáo, các biểu mẫu báo cáo liên quan đến trả giá
- báo cáo, các biểu mẫu báo cáo liên quan đến bán trực tiếp', NULL, NULL, 1, NULL, 2, NULL, 6, 0, '2020-08-13 09:26:51+07', '2020-08-13 09:26:51+07', '2020-08-13', 0, NULL, 1792, 1792, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1812, 2, 12, 'Dashboard trang đối tác', '- Doanh thu
- Số lượng phiên đấu giá
- Số lượng phiên trả giá
- Số lượng bán trực tiếp
- Số tiền cần phải trả cho trang quản trị hệ thống', NULL, NULL, 1, NULL, 2, NULL, 6, 1, '2020-08-13 09:27:29+07', '2020-08-13 09:31:16+07', '2020-08-13', 0, NULL, 1792, 1792, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (1813, 2, 12, 'Tạo vận đơn theo đơn đặt hàng khi giao dịch thành công', '', NULL, NULL, 1, NULL, 2, NULL, 6, 0, '2020-08-13 09:28:51+07', '2020-08-13 09:28:51+07', '2020-08-13', 0, NULL, 1792, 1792, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (1814, 2, 12, 'Dashboard trang quản trị', '', NULL, NULL, 1, NULL, 2, NULL, 6, 0, '2020-08-13 09:29:58+07', '2020-08-13 09:29:58+07', '2020-08-13', 0, NULL, 1792, 1792, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (1815, 2, 12, 'Thanh toán trung gian', 'Phần thanh toán cho giỏ hàng. Khi người dùng chọn nhiều sản phẩm của nhiều đối tác đăng lên, thì khi thanh toán thì thanh toán nhiều lần cho từng đối tác.', NULL, NULL, 1, NULL, 2, NULL, 6, 0, '2020-08-13 09:32:26+07', '2020-08-13 09:32:26+07', '2020-08-13', 0, NULL, 1792, 1792, 14, 15, false, NULL);
INSERT INTO public.issues VALUES (1817, 3, 11, 'Update API DMDiemQuanTrac/DanhSachTheoTrangThai', '- Check trạng thái điểm quan trắc theo dữ liệu giờ gần nhất.
- Add dữ liệu mẫu để test các lớp bảng đồ theo trạng thái.
', '2020-08-14', NULL, 3, 19, 3, 2, 19, 3, '2020-08-13 09:48:47+07', '2020-08-15 09:29:15+07', '2020-08-13', 100, 16, NULL, 1817, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1818, 5, 36, 'Dự toán đơn giá thực hiện số hóa hồ sơ hộ tịch', '', '2020-09-18', NULL, 1, 21, 2, NULL, 21, 0, '2020-08-13 09:56:18+07', '2020-08-13 09:56:18+07', '2020-08-13', 0, NULL, NULL, 1818, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1819, 3, 32, 'Điều chỉnh cơ cấu website', 'Cần hiển thị file pdf và các tài liệu khác trên website , kiểu nhúng và xem trực tiếp trên website
II. PANEL: ĐÀO TẠO – BỒI DƯỠNG – KHOA HỌC
1. Chương trình đào tạo
2. Thông báo tuyển sinh
3. Các danh sách, biểu mẫu
4. Lịch giảng dạy, học tập
5. Kết quả học tập
Điểm thi các đợt, thi tốt nghiệp, bảo vệ khóa luận…
6. Nghiên cứu khoa học – thực tế
Các bài viết nghiên cứu khoa học, báo cáo nghiên cứu thực tế, …
7. Tọa đàm – Hội thảo khoa học
Tin tức, bài viết tọa đàm và hội thảo khoa học các loại.
8. Thông tin Lý luận và Thực tiễn
Các bài viết tiêu biểu của tập Thông tin Lý luận và Thực tiễn của Trường Chính trị tỉnh Bình Định
9. Tin khoa học, công nghệ
Tin và bài viết khoa học, công nghệ trong và ngoài nước.
III. PANEL: TỔ CHỨC – HÀNH CHÍNH – THÔNG TIN – TƯ LIỆU
1. Lịch công tác
Lịch công tác tuần, quý; kế hoạch công tác năm
2. Công tác tổ chức cán bộ
- Văn bản hướng dẫn
- Một số thủ tục cơ bản
3. Thi đua – Khen thưởng
- Văn bản hướng dẫn
- Tổng hợp các danh hiệu thi đua khen thưởng năm …
4. Quản trị cơ sở vật chất
- Sơ đồ cơ quan; Giới thiệu về các phòng, hội trường (sức chứa, trang bị).
- Lịch giảng dạy tại các phòng, hội trường.
5. Tài chính, kế toán
- Các văn bản, biểu mẫu, quy trình thanh toán.
- Thông báo về tài chính, kế toán của cơ quan.
6. Văn bản, văn kiện
Các văn kiện của Đảng, văn bản chỉ đạo của cấp trên và cấp Trường.
7. Thư viện Trường
- Danh mục sách thư viện Trường
- Tin xuất bản
- Giới thiệu sách mới
IV. PANEL: VĂN BẢN
-	Văn bản đi
-	Văn bản đến
V. PANEL: HỌC VIÊN
- Lịch học tập
- Tài liệu học viên
- Tài liệu tham khảo
- Lấy ý kiến học viên
C. CÁC PANEL DỌC, BÊN PHẢI WEBSITE
	1. Đẩy mạnh học tập và làm theo tấm gương đạo đức, phong cách Hồ Chí Minh
2. Lịch công tác 
3. Lý luận và thực tiễn 
4. Hình ảnh, videoclip hoạt động
Các hình ảnh hoạt động chuyên môn và phong trào của cơ quan
', NULL, NULL, 3, NULL, 2, NULL, 24, 3, '2020-08-13 10:07:06+07', '2020-11-21 09:46:06+07', '2020-08-13', 0, NULL, NULL, 1819, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1820, 5, 36, 'Xây dựng mẫu đề cương dự toán chi tiết Dự án số hóa hồ sơ hộ tịch', 'Tham khảo các mẫu trên trang đấu thầu và mẫu đề cương các gói thầu đã thực hiện
Căn cứ pháp lý:
- Nghị định 87/2020/NĐ-CP Quy định về CSDL hộ tịch điện tử, đăg ký hộ tịch trực tuyến
- Thông tư: 04/2020/TT-BTP QUY ĐỊNH CHI TIẾT THI HÀNH MỘT SỐ ĐIỀU CỦA LUẬT HỘ TỊCH VÀ NGHỊ ĐỊNH SỐ 123/2015/NĐ-CP NGÀY 15 THÁNG 11 NĂM 2015 CỦA CHÍNH PHỦ QUY ĐỊNH CHI TIẾT MỘT SỐ ĐIỀU VÀ BIỆN PHÁP THI HÀNH LUẬT HỘ TỊCH.
- Luật 60/2014/QH13 Luật Hộ tịch 
- Nghị định 123/2015/NĐ-CP QUY ĐỊNH CHI TIẾT MỘT SỐ ĐIỀU VÀ BIỆN PHÁP THI HÀNH LUẬT HỘ TỊCH', '2020-08-29', NULL, 1, NULL, 2, NULL, 21, 0, '2020-08-13 10:07:41+07', '2020-08-13 10:07:41+07', '2020-08-13', 0, NULL, NULL, 1820, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1821, 2, 40, 'api danh mục điểm đầu tư', '', '2020-08-13', NULL, 3, 13, 2, 9, 13, 2, '2020-08-13 10:17:34+07', '2020-08-14 10:38:47+07', '2020-08-13', 100, NULL, NULL, 1821, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1822, 2, 40, 'hiển thị danh mục điểm đầu tư trên dashboard', '', '2020-08-13', NULL, 3, 13, 2, 9, 13, 2, '2020-08-13 10:18:10+07', '2020-08-14 10:38:47+07', '2020-08-13', 100, NULL, NULL, 1822, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1823, 2, 40, 'Hiển thị, thêm, sửa, xóa danh mục điểm đầu tư', '', '2020-08-13', NULL, 3, 13, 2, 9, 13, 1, '2020-08-13 10:19:01+07', '2020-08-14 10:38:47+07', '2020-08-13', 100, NULL, NULL, 1823, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1824, 2, 11, 'Api import dữ liệu quan trắc', '', '2020-08-26', NULL, 3, 19, 2, 3, 5, 4, '2020-08-13 11:10:51+07', '2020-08-28 15:41:57+07', '2020-08-25', 100, 16, 1602, 1602, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (1825, 2, 11, 'Giao diện import dữ liệu quan trắc', '', '2020-08-22', NULL, 3, 8, 2, 3, 5, 4, '2020-08-13 11:11:08+07', '2020-08-29 09:12:30+07', '2020-08-20', 100, NULL, 1602, 1602, 14, 15, false, NULL);
INSERT INTO public.issues VALUES (1826, 1, 4, 'Đổi Tình trạng trong bảng Quy hoạch sử dụng đất "Yes/No" -> "Đã cho thuê/Chưa cho thuê"', '', '2020-08-13', NULL, 3, 12, 2, 7, 12, 5, '2020-08-13 11:18:45+07', '2021-02-05 08:55:02+07', '2020-08-13', 100, NULL, 1794, 1794, 16, 17, false, NULL);
INSERT INTO public.issues VALUES (1827, 1, 4, 'Đổi diện tích thành m2 trong chức năng thêm mới và chỉnh sửa Khu công nghiệp', '', '2020-08-13', NULL, 3, 12, 2, 7, 12, 5, '2020-08-13 11:20:53+07', '2021-02-05 08:55:03+07', '2020-08-13', 100, NULL, 1794, 1794, 18, 19, false, NULL);
INSERT INTO public.issues VALUES (1828, 1, 4, 'format number theo kiểu 1.000,25 cho toàn phần mềm', '', '2020-08-25', NULL, 3, 10, 2, 13, 12, 13, '2020-08-13 11:22:19+07', '2020-08-27 15:52:33+07', '2020-08-25', 100, NULL, NULL, 1828, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1829, 1, 4, 'Đổi loại doanh nghiệp "TN/NT" -> "Trong nước/Ngoài nước" ở chức năng doanh nghiệp', '', NULL, NULL, 3, 12, 2, 7, 12, 3, '2020-08-13 11:25:51+07', '2021-02-05 08:55:03+07', '2020-08-13', 100, NULL, 1794, 1794, 20, 21, false, NULL);
INSERT INTO public.issues VALUES (1832, 1, 35, 'Sửa FB từ Ditagis Ver1 và Ver2', 'Sửa các lỗi chưa đồng bộ CSDL và còn sai soát trong quá trình nhập liệu', '2020-08-13', NULL, 1, 33, 2, NULL, 33, 0, '2020-08-13 16:34:46+07', '2020-08-13 16:34:46+07', '2020-08-04', 100, NULL, NULL, 1832, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1833, 2, 40, 'set domain dm diem dau tu', '', '2020-08-14', NULL, 3, 13, 2, 9, 13, 3, '2020-08-14 09:59:01+07', '2020-08-17 08:15:57+07', '2020-08-14', 100, NULL, NULL, 1833, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1834, 2, 40, 'Cập nhật một số góp ý giao diện', '', '2020-08-15', NULL, 3, 13, 2, 9, 13, 3, '2020-08-14 10:43:45+07', '2020-08-17 08:15:58+07', '2020-08-14', 100, NULL, NULL, 1834, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1835, 2, 11, '/QuanTrac/GiaTriCuoiTungThongSo', 'Số liệu điểm QT 1h cuối:
tên, mã, trạng thái, thông số ( tên, trạng thái, kết quả)', '2020-08-14', NULL, 3, 19, 2, 2, 19, 3, '2020-08-14 10:52:10+07', '2020-08-17 13:16:29+07', '2020-08-13', 100, 8, NULL, 1835, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1836, 1, 4, 'Update giao diện chi tiết doanh nghiệp', '-Thêm thông tin sdt, email, fax cho Doanh nghiệp
-Bỏ email, sdt trong thông tin thuê đất', '2020-08-14', NULL, 3, 12, 2, 7, 12, 1, '2020-08-14 10:54:09+07', '2020-08-14 11:04:08+07', '2020-08-14', 100, NULL, 1794, 1794, 24, 25, false, NULL);
INSERT INTO public.issues VALUES (1837, 1, 4, 'update ds thông tin quy hoạch ở điểm đầu tư', 'Trường Độ cao tầng cao bị trùng', '2020-08-14', NULL, 3, 12, 2, 7, 12, 1, '2020-08-14 10:55:51+07', '2020-08-14 11:04:08+07', '2020-08-14', 100, NULL, 1794, 1794, 26, 27, false, NULL);
INSERT INTO public.issues VALUES (1838, 1, 4, 'Update đơn vị cho các trường có type=number', '', '2020-08-14', NULL, 3, 12, 2, 7, 12, 1, '2020-08-14 10:56:59+07', '2020-08-14 11:04:08+07', '2020-08-14', 100, NULL, 1794, 1794, 28, 29, false, NULL);
INSERT INTO public.issues VALUES (1839, 1, 4, 'Update giao diện xem thông tin chi tiết khi tìm kiếm ở chức năng bản đồ', 'Cần bổ xung thêm vài thông tin của doanh nghiệp', '2020-08-26', NULL, 5, 12, 2, 13, 12, 4, '2020-08-14 11:02:11+07', '2021-02-05 08:55:03+07', '2020-08-26', 0, NULL, NULL, 1839, 1, 2, false, '2020-08-28 10:29:33+07');
INSERT INTO public.issues VALUES (1840, 2, 4, 'Update thông tin quy hoạch sử dụng đất ở trang thêm thông tin thuê đất', 'Ở trang thêm thông tin thuê đất, khi click vào ô quy hoạch hiện lên dialog thêm dn thuê đất,
trong form thêm dn thuê đất có nút sửa thông tin quy hoạch sử dụng đất', '2020-08-26', NULL, 5, 12, 2, 13, 12, 3, '2020-08-14 14:47:27+07', '2021-02-05 08:55:03+07', '2020-08-26', 0, NULL, NULL, 1840, 1, 2, false, '2020-08-28 09:50:27+07');
INSERT INTO public.issues VALUES (1841, 4, 27, 'Nhập liệu (10-14/8)', '- Ngày 10/8:
Hộp 06: 371 văn bản
- Ngày 11/8:
Hộp 14: 350 văn bản
Hộp 22: 159 văn bản
- Ngày 12/8:
Hộp 23: 51 văn bản
Hộp 36: 102 văn bản
Hộp 37: 51 văn bản
- Ngày 14/8:
Hộp 57: 26 văn bản
Hộp 58: 49 văn bản
Hộp 59: 32 văn bản', NULL, NULL, 1, NULL, 2, NULL, 29, 1, '2020-08-14 16:03:32+07', '2020-08-14 16:03:56+07', '2020-08-14', 70, NULL, 1774, 1774, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1842, 5, 27, 'Báo cáo nhập liệu ', 'Hộp 12: 306 văn bản
Hộp 18: 95
Hộp 19: 49
Hộp 28: 210
Hộp 30: 711
Hộp 35: 506
', '2020-08-14', NULL, 1, 23, 2, NULL, 23, 0, '2020-08-14 16:18:21+07', '2020-08-14 16:18:21+07', '2020-08-10', 0, NULL, NULL, 1842, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1843, 5, 27, 'Báo Cáo Nhập Liệu', 'Hộp 9 = 309
Hộp 10 = 63
Hộp 15 = 59
Hộp 20 = 506
Hộp 40 = 146
Hộp 56 = 426', '2020-08-14', NULL, 1, 32, 2, NULL, 32, 0, '2020-08-14 16:26:43+07', '2020-08-14 16:26:43+07', '2020-08-10', 100, NULL, NULL, 1843, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1844, 2, 11, 'Sửa dashboard theo dõi quan trắc không khí', '', '2020-08-15', NULL, 3, 8, 2, 2, 8, 2, '2020-08-14 17:10:08+07', '2020-08-15 14:41:17+07', '2020-08-13', 100, NULL, NULL, 1844, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1845, 2, 4, 'Báo cáo- thống kê', '', '2020-08-26', NULL, 5, 13, 2, 13, 12, 5, '2020-08-15 09:31:32+07', '2020-08-29 08:35:46+07', '2020-08-26', 0, NULL, NULL, 1845, 1, 2, false, '2020-08-29 08:35:46+07');
INSERT INTO public.issues VALUES (1846, 2, 11, 'Chuyển dữ liệu quy chuẩn sang dữ liệu hệ thống', '-Chuyển dữ liệu quy chuẩn môi trường nước thải sang dữ liệu hệ thống -> cảnh báo vượt ngưỡng.
-Tạo dữ liệu mẫu trạm nước thải tự động', '2020-08-17', NULL, 3, 19, 2, 2, 19, 4, '2020-08-15 10:10:40+07', '2020-09-05 09:57:38+07', '2020-08-15', 100, 8, 1668, 1554, 5, 6, false, NULL);
INSERT INTO public.issues VALUES (1847, 1, 40, 'Cập nhật lại chức năng thêm mới khu công nghiệp', '', '2020-08-20', NULL, 3, 13, 2, 10, 13, 4, '2020-08-15 15:41:29+07', '2020-08-20 09:17:25+07', '2020-08-20', 100, NULL, NULL, 1847, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1848, 2, 40, 'Hiển thị chi tiết thông tin doanh nghiệp', '', '2021-02-04', NULL, 1, 13, 2, 93, 13, 5, '2020-08-15 15:45:27+07', '2021-02-02 09:53:34+07', '2021-02-02', 0, NULL, NULL, 1848, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1849, 2, 40, 'Thêm mới tất cả thông tin doanh nghiệp đầu tư', '', '2021-02-04', NULL, 1, 13, 2, 93, 13, 5, '2020-08-15 15:46:34+07', '2021-02-02 09:53:34+07', '2021-02-02', 0, NULL, NULL, 1849, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1850, 2, 40, 'Cập nhật thông tin doanh nghiệp đầu tư', '', '2021-02-04', NULL, 1, 13, 2, 93, 13, 5, '2020-08-15 15:47:05+07', '2021-02-02 09:53:34+07', '2021-02-02', 0, NULL, NULL, 1850, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1851, 2, 11, 'Api số liệu quan trắc nước thải tự động', 'pH, TSS, BOD5,N-NH4+,Tong_P,Tong_N,Chat_Ran_Hoa_Tan,Dau_Mo,Sunfua,Chat_Hoat_Dong_Be_Mat,Coliforms', '2020-08-15', NULL, 3, 19, 2, 2, 19, 3, '2020-08-15 16:33:08+07', '2021-02-05 11:13:07+07', '2020-08-15', 100, 2, 1668, 1554, 7, 8, false, NULL);
INSERT INTO public.issues VALUES (1852, 2, 11, 'Update API DMĐQT theo trạng thái', 'Update API DMĐQT theo trạng thái cho phù hợp với loại môi trường.', '2020-08-18', NULL, 3, 19, 2, 2, 19, 5, '2020-08-15 16:49:47+07', '2021-02-05 11:13:07+07', '2020-08-15', 100, 16, 1668, 1554, 9, 10, false, NULL);
INSERT INTO public.issues VALUES (1853, 4, 27, 'Báo cáo', 'Ngày 10/8: Hộp 13 (337 văn bản)
Ngày 11/8 - 12/8: Hộp 29 (có 461 Văn bản)
Ngày 13/8 - 14/8: Hộp 34 + Hộp 49 (có 297 văn bản + 148 văn bản)', '2020-08-25', NULL, 1, 28, 2, NULL, 28, 2, '2020-08-17 07:50:59+07', '2020-08-25 10:41:14+07', '2020-08-24', 0, NULL, 1773, 1773, 2, 7, false, NULL);
INSERT INTO public.issues VALUES (1854, 1, 8, 'Lọc trạng thái hồ sơ trong chức năng trạm bts', '', '2020-08-18', NULL, 3, 12, 2, 12, 12, 7, '2020-08-17 08:42:40+07', '2020-08-18 16:28:23+07', '2020-08-18', 100, NULL, NULL, 1854, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1855, 2, 11, 'API trạm quan trắc vượt ngưỡng.', 'Group theo loại môi trường.', '2020-08-18', NULL, 3, 19, 2, 2, 19, 4, '2020-08-17 14:13:54+07', '2021-02-05 11:13:07+07', '2020-08-17', 100, 8, 1143, 1143, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1856, 2, 40, 'Chuyển biểu đồ tree thành biểu đồ tròn thống kê doanh nghiệp', '', '2020-08-18', NULL, 3, 13, 2, 10, 13, 3, '2020-08-18 08:12:36+07', '2020-08-19 08:19:53+07', '2020-08-18', 100, NULL, NULL, 1856, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1857, 2, 40, 'Bổ sung biểu đồ cột thống kê số lượng doanh nghiệp của mỗi khu công nghiệp', '', '2020-08-18', NULL, 3, 13, 2, 10, 13, 3, '2020-08-18 08:13:56+07', '2020-08-19 08:19:54+07', '2020-08-18', 100, NULL, NULL, 1857, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1858, 2, 40, 'Danh sách số lượng doanh nghiệp mỗi khu công nghiệp', '', '2020-08-19', NULL, 3, 13, 2, 10, 13, 7, '2020-08-18 08:14:54+07', '2020-08-22 16:07:08+07', '2020-08-19', 100, NULL, NULL, 1858, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1859, 2, 40, 'Thể hiện số lượng doang nghiệp trên kết quả tìm kiếm nhanh của KCN', '', '2020-08-18', NULL, 3, 13, 2, 10, 13, 3, '2020-08-18 08:16:16+07', '2020-08-19 08:19:54+07', '2020-08-18', 100, NULL, NULL, 1859, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1860, 1, 4, 'Fix lỗi phần Chỉnh sửa KCN/CCN', '', '2020-08-26', NULL, 1, 12, 2, 13, 9, 12, '2020-08-18 09:11:25+07', '2021-02-05 08:55:03+07', '2020-08-24', 100, NULL, NULL, 1860, 1, 10, false, NULL);
INSERT INTO public.issues VALUES (1861, 1, 4, 'Các trường diện tích/tỷ lệ thêm đơn vị tính', '', '2020-08-24', NULL, 3, 12, 2, 13, 9, 7, '2020-08-18 09:12:49+07', '2021-02-05 08:55:03+07', '2020-08-24', 100, NULL, 1860, 1860, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1862, 1, 4, 'Trường "Mã quận huyện" và "Diện tích" đang viết liền không dấu', '', '2020-08-25', NULL, 3, 12, 2, 13, 9, 7, '2020-08-18 09:24:26+07', '2021-02-05 08:55:04+07', '2020-08-25', 100, NULL, 1860, 1860, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1863, 1, 4, 'Sau khi hoàn tất thao tác chỉnh sửa, thông tin trên giao diện danh sách KCN/CCN vẫn là thông tin cũ', '', '2020-08-26', NULL, 3, 10, 2, 13, 9, 7, '2020-08-18 09:46:29+07', '2020-08-28 11:41:35+07', '2020-08-26', 100, NULL, 1860, 1860, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1864, 1, 4, 'Fix lỗi phần Thêm mới KCN/CCN', '', '2020-08-26', NULL, 1, 12, 2, 13, 9, 8, '2020-08-18 09:47:14+07', '2021-02-05 08:55:04+07', '2020-08-24', 100, NULL, NULL, 1864, 1, 10, false, NULL);
INSERT INTO public.issues VALUES (1865, 1, 4, 'Thiếu một số trường dữ liệu so với phần "Chỉnh sửa KCN/CCN"', '', '2020-08-24', NULL, 3, 12, 2, 13, 9, 6, '2020-08-18 09:48:37+07', '2021-02-05 08:55:04+07', '2020-08-24', 100, NULL, 1864, 1864, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1866, 1, 8, 'Check valid liên quan đến giấy phép xây dựng', 'Kiểm trả nếu có giấy phép xây dựng thì các trường liên quan có đầy đủ thông tin mới được phép lưu.
', '2020-08-18', NULL, 5, 10, 2, 12, 12, 1, '2020-08-18 09:56:50+07', '2020-08-18 15:11:01+07', '2020-08-18', 0, NULL, NULL, 1866, 1, 2, false, '2020-08-18 15:11:01+07');
INSERT INTO public.issues VALUES (1867, 2, 8, 'hiển thị form confirm khi xóa file đính kèm trong chi tiết trạm bts', '', '2020-08-18', NULL, 3, 12, 2, 12, 12, 3, '2020-08-18 09:58:44+07', '2020-08-18 11:16:03+07', '2020-08-18', 100, NULL, NULL, 1867, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1868, 1, 4, 'Khi hoàn thành 4 bước thêm mới, không trở lại giao diện danh sách KCN/CCN mà quay lại bước 1 thêm mới và không có nút để quay lại hoặc thoát', '', '2020-08-26', NULL, 3, 10, 2, 13, 9, 6, '2020-08-18 10:12:24+07', '2021-02-05 08:54:27+07', '2020-08-26', 100, NULL, 1864, 1864, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1869, 1, 4, 'Click vào KCN/CCN đã tạo không hiện ra giao diện thông tin', 'Trong chức năng khu công nghiệp, cụm công nghiệp: khi click vào 1 row không xuất hiện details giống như ở điểm đầu tư', '2020-08-26', NULL, 5, 10, 2, 13, 9, 5, '2020-08-18 10:13:11+07', '2021-02-05 08:54:27+07', '2020-08-26', 0, NULL, 1864, 1864, 6, 7, false, '2020-08-29 08:34:01+07');
INSERT INTO public.issues VALUES (1870, 1, 8, 'Pie chart tình trạng cấp phép ở trang chủ không đủ 100%', '', '2020-08-18', NULL, 3, NULL, 2, 12, 12, 3, '2020-08-18 10:55:32+07', '2020-08-18 15:28:40+07', '2020-08-18', 100, NULL, NULL, 1870, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1871, 1, 4, 'Trường "Ngày thành lập" thêm chức năng nhập trực tiếp', '', '2020-08-26', NULL, 3, 10, 2, 13, 9, 7, '2020-08-18 14:07:09+07', '2020-08-27 08:11:38+07', '2020-08-26', 100, NULL, 1860, 1860, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (1872, 1, 4, 'Sửa lại trường "Ngày thành lập"', '', '2020-08-26', NULL, 5, 10, 2, 13, 9, 4, '2020-08-19 10:39:28+07', '2021-02-05 08:54:27+07', '2020-08-26', 0, NULL, 1864, 1864, 8, 9, false, '2020-08-28 09:50:41+07');
INSERT INTO public.issues VALUES (1873, 1, 4, 'Bản đồ KCN/CCN', '', '2020-08-26', NULL, 1, 10, 2, 13, 9, 7, '2020-08-19 10:42:57+07', '2021-02-05 08:54:27+07', '2020-08-25', 100, NULL, NULL, 1873, 1, 8, false, NULL);
INSERT INTO public.issues VALUES (1874, 1, 4, 'Trường "Diện tích" đổi đơn vị tính là (m2) và thêm đơn vị tính (m2) cho các trường diện tích khác', '', '2020-08-26', NULL, 3, 10, 2, 13, 9, 6, '2020-08-19 10:43:56+07', '2021-02-05 08:54:27+07', '2020-08-26', 100, NULL, 1873, 1873, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1875, 1, 4, 'Trường "Số DN đã DK" sửa DK thành ĐK cho đúng', '', '2020-08-26', NULL, 3, 10, 2, 13, 9, 6, '2020-08-19 10:44:54+07', '2021-02-05 08:54:28+07', '2020-08-26', 100, NULL, 1873, 1873, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1876, 1, 4, 'Trường "Ngày thành lập" cho dd/mm/yy', '', '2020-08-25', NULL, 3, 10, 2, 13, 9, 6, '2020-08-19 10:45:28+07', '2020-08-27 10:48:39+07', '2020-08-25', 100, NULL, 1873, 1873, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1877, 3, 43, 'Phân tích dữ liệu tiếng Ba Na "03_10-8-2019"', '1-Cắt các văn bản tiếng Việt - Ba Na có sẳn khớp với nhau ghép vào 1 file Word (DLieu ''STT''_''NgayThangNam'') có để sẳn trong Mẫu folder lưu trữ (Đặt tên cho đúng với file giao thực hiện và lưu vào thư mục B-Dữ liệu đã xữ lý)
2-Sau đó cắt các đoạn âm thanh .Mp3 cho khớp với các câu vừa mới cắt (Đặt tên cho đúng với số thứ tự câu và lưu vào thư mục B-Dữ liệu đã xữ lý)
3-Các file gốc lưu vào thư mục A-Dữ liệu gốc', '2020-08-20', NULL, 5, 14, 2, NULL, 33, 1, '2020-08-19 13:38:09+07', '2020-08-21 13:58:13+07', '2020-08-19', 0, NULL, 1761, 1761, 2, 3, false, '2020-08-21 13:58:13+07');
INSERT INTO public.issues VALUES (1878, 1, 4, 'Bản đồ Doanh nghiệp', '', '2020-08-26', NULL, 1, 10, 2, 13, 9, 6, '2020-08-19 16:52:45+07', '2021-02-05 08:54:28+07', '2020-08-19', 100, NULL, NULL, 1878, 1, 8, false, NULL);
INSERT INTO public.issues VALUES (1879, 1, 4, 'Phần "Quy hoạch sử dụng đất" sắp xếp lại thông tin cho rõ ràng', '', '2020-08-25', NULL, 3, 10, 2, 13, 9, 6, '2020-08-19 16:56:06+07', '2020-08-25 10:22:35+07', '2020-08-25', 100, NULL, 1878, 1878, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1880, 1, 4, 'Phần "Quy hoạch sử dụng đất" click vào vị trí thông tin điểm quy hoạch không có động tĩnh', '', NULL, NULL, 5, 10, 2, 13, 9, 3, '2020-08-19 16:57:49+07', '2021-02-05 08:54:28+07', '2020-08-19', 0, NULL, 1878, 1878, 4, 5, false, '2020-08-20 13:21:48+07');
INSERT INTO public.issues VALUES (1881, 1, 4, 'Thêm mới quy hoạch: sau khi thêm mới thành công không có nút thoát/quay lại danh sách DN', '', '2020-08-24', NULL, 3, 10, 2, 13, 9, 5, '2020-08-19 17:00:44+07', '2021-02-05 08:54:28+07', '2020-08-24', 100, NULL, NULL, 1881, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1882, 1, 4, 'Thêm mới DN trong KCN/CCN', '', '2020-08-20', NULL, 1, 10, 2, 8, 9, 5, '2020-08-19 17:01:14+07', '2021-02-05 08:54:28+07', '2020-08-20', 100, NULL, NULL, 1882, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (1883, 1, 4, 'Chức năng chỉnh sửa nhanh thông tin quy hoạch không có tác dụng (ko hiển thị tên ô quy hoạch của cty Habico)', '', '2020-08-20', NULL, 3, 12, 2, 8, 9, 7, '2020-08-19 17:02:04+07', '2020-08-25 14:58:11+07', '2020-08-20', 100, NULL, 1882, 1882, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1884, 3, 43, 'Phân tích dữ liệu tiếng Ba Na "04_31-8-2019"', 'File âm thanh lấy trên ZaLo nhóm !', '2020-08-21', NULL, 3, 14, 2, NULL, 33, 2, '2020-08-20 10:08:15+07', '2020-08-21 13:58:52+07', '2020-08-21', 100, 24, 1761, 1761, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1885, 2, 11, 'API tinh toan WQI', '', '2020-09-21', NULL, 1, NULL, 2, 4, 19, 7, '2020-08-20 16:20:22+07', '2021-02-05 11:14:18+07', '2020-09-14', 0, 32, 1670, 1557, 5, 6, false, NULL);
INSERT INTO public.issues VALUES (1916, 1, 4, 'hiển thị lại số thứ tự trong danh sách dạng lưới trên các trang kcn, ccn...', '', '2020-08-28', NULL, 3, 10, 2, 13, 13, 3, '2020-08-27 14:45:18+07', '2021-02-05 08:54:29+07', '2020-08-27', 100, NULL, NULL, 1916, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1886, 1, 4, 'có 1 quy hoạch trong cụm công nghiệp gò đá không hiện lên trong lúc tạo thông tin thuê đất, nhưng lại hiện ra trong chức năng bản đồ', 'Nghi không có maSDD để query', '2020-08-26', NULL, 1, 10, 2, 13, 12, 2, '2020-08-21 09:17:56+07', '2021-02-05 08:54:28+07', '2020-08-26', 0, NULL, NULL, 1886, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1887, 1, 4, '"Quy hoạch sd đất" nhảy sai vị trí', '', '2020-08-26', NULL, 5, 10, 2, 13, 9, 3, '2020-08-21 10:33:12+07', '2021-02-05 08:54:28+07', '2020-08-26', 0, NULL, 1878, 1878, 6, 7, false, '2020-08-28 16:13:55+07');
INSERT INTO public.issues VALUES (1888, 3, 43, 'Phân tích dữ liệu tiếng Ba Na "09_05-10-2019"', 'File dữ liệu âm thanh gửi trên ZaLo', '2020-08-22', NULL, 3, 14, 2, NULL, 33, 3, '2020-08-21 13:33:57+07', '2020-08-22 15:43:37+07', '2020-08-21', 100, 24, 1761, 1761, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1889, 5, 27, 'Báo Cáo Nhập Liệu', 'Hộp 66 = 64
Hộp 71 = 36
Hộp 72 = 78
Hộp 73 = 338
Hộp 157 = 73
Hộp 159 = 53
Hộp 181 = 28
Hộp 184 = 455', '2020-08-21', NULL, 1, 32, 2, NULL, 32, 0, '2020-08-21 16:42:03+07', '2020-08-21 16:42:03+07', '2020-08-17', 100, NULL, NULL, 1889, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1890, 2, 44, 'Viết presentation quy trình', '', '2020-08-22', NULL, 5, 5, 2, 14, 5, 4, '2020-08-21 16:56:01+07', '2020-08-28 15:16:19+07', '2020-08-20', 100, NULL, NULL, 1890, 1, 2, false, '2020-08-28 15:16:19+07');
INSERT INTO public.issues VALUES (1891, 2, 40, 'Thêm mới thông tin doanh nghiệp', '', '2021-02-04', NULL, 1, 37, 2, 93, 13, 3, '2020-08-22 10:56:50+07', '2021-02-02 09:53:34+07', '2021-02-02', 0, NULL, NULL, 1891, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1892, 2, 40, 'Hiển thị thông tin khu công nghiệp với bản đồ', '', NULL, NULL, 3, 13, 2, 10, 13, 2, '2020-08-22 10:57:55+07', '2020-08-22 16:07:08+07', '2020-08-22', 100, NULL, NULL, 1892, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1893, 2, 40, 'Thể hiện doanh nghiệp trong mỗi khu công nghiệp', '', '2020-08-22', NULL, 3, 13, 2, 10, 13, 2, '2020-08-22 10:58:37+07', '2020-08-22 16:07:08+07', '2020-08-22', 100, NULL, NULL, 1893, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1894, 2, 40, 'Thể hiện quy hoạch sử dụng đất trong khu công nghiệp', '', '2020-08-22', NULL, 3, 13, 2, 10, 13, 2, '2020-08-22 10:59:16+07', '2020-08-22 16:07:08+07', '2020-08-22', 100, NULL, NULL, 1894, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1895, 2, 11, 'API WQI_24Gio', 'QuanTrac/WQI_24Gio', '2020-08-22', NULL, 3, 19, 2, 2, 19, 3, '2020-08-22 15:29:59+07', '2020-08-24 16:59:26+07', '2020-08-22', 100, 4, 1670, 1557, 7, 8, false, NULL);
INSERT INTO public.issues VALUES (1896, 3, 43, 'Phân tích dữ liệu tiếng Ba Na 4 File 14-17', 'File ân thanh nhận trên ZaLo', '2020-08-27', NULL, 3, 14, 2, NULL, 33, 2, '2020-08-22 15:49:03+07', '2020-09-07 14:11:13+07', '2020-08-24', 100, NULL, 1761, 1761, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (1897, 3, 43, 'Phân tích dữ liệu tiếng Ba Na "13_23-11-2019"', 'File dữ liệu âm thanh trên Zalo', '2020-08-24', NULL, 3, 14, 2, NULL, 33, 2, '2020-08-22 15:52:56+07', '2020-09-07 14:11:27+07', '2020-08-22', 100, NULL, 1761, 1761, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (1898, 2, 11, 'API WQIGioTungThongSo', 'API QuanTrac/WQIGioTungThongSo', '2020-08-24', NULL, 3, 19, 2, 2, 19, 3, '2020-08-22 16:32:13+07', '2020-08-24 16:59:26+07', '2020-08-22', 100, 16, 1670, 1557, 9, 10, false, NULL);
INSERT INTO public.issues VALUES (1899, 5, 27, 'Báo cáo nhập liệu ', 'Hộp 61: 347 (văn bản)
Hộp 65: 27
Hộp 75: 374
Hộp 78: 273
Hộp 155: 18
Hộp 161: 206
Hộp 165: 324
Hộp 192: 169
Hộp 200: 142
', '2020-08-22', NULL, 1, 23, 2, NULL, 23, 0, '2020-08-24 07:43:05+07', '2020-08-24 07:43:05+07', '2020-08-17', 0, NULL, NULL, 1899, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1900, 4, 27, 'báo cáo', 'Ngày 17 + 18:Hộp 64 (có 400 văn bản)
Ngày 19 - 20 - 21:Hộp 82 + Hộp 85 (có 7 + 128 văn bản) + Hộp 164 (có 399 văn bản) + Hộp 201 (Nhập lỡ cỡ: 174 văn bản)
', '2020-08-25', NULL, 1, NULL, 2, NULL, 28, 1, '2020-08-24 07:55:54+07', '2020-08-25 10:41:14+07', '2020-08-24', 0, NULL, 1853, 1773, 3, 6, false, NULL);
INSERT INTO public.issues VALUES (1901, 4, 27, 'Nhập liệu (17-21/8/2020)', '- Ngày 17-19/8:
Hộp 60: 565 văn bản
Hộp 74: 480 văn bản
- Ngày 20&21/8:
Hộp 158: 42 văn bản
Hộp 182: 41 văn bản
Hộp 185: 480 văn bản', NULL, NULL, 1, NULL, 2, NULL, 29, 0, '2020-08-24 09:22:09+07', '2020-08-24 09:22:09+07', '2020-08-24', 0, NULL, 1774, 1774, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1902, 2, 11, 'API SoLieuQTNuocMatTuDong', 'QuanTrac/SoLieuQTNuocMatTuDong', '2020-09-12', NULL, 3, 19, 2, 3, 19, 5, '2020-08-24 10:36:05+07', '2021-02-05 11:13:07+07', '2020-09-05', 100, 4, 1670, 1557, 11, 12, false, NULL);
INSERT INTO public.issues VALUES (1903, 5, 27, 'Nhập liệu', 'Hộp 46: 337 văn bản
Hộp 79: 143 
Hộp 81: 29 
Hộp 89: 50 
Hộp 163: 446 
Ngày 25/8 Hộp 203: 438', '2020-08-21', NULL, 1, NULL, 2, NULL, 35, 3, '2020-08-24 14:05:45+07', '2020-08-26 07:46:16+07', '2020-08-17', 100, NULL, NULL, 1903, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1904, 2, 44, 'Dựng source', '', '2020-08-26', NULL, 5, 5, 2, 15, 5, 3, '2020-08-25 08:28:47+07', '2020-08-28 15:16:19+07', '2020-08-24', 100, NULL, NULL, 1904, 1, 2, false, '2020-08-28 15:16:19+07');
INSERT INTO public.issues VALUES (1905, 4, 27, 'báo cáo', 'Ngày 24: Hộp 201:có 367 hồ sơ (Nhập tiếp theo)', '2020-08-25', NULL, 1, NULL, 2, NULL, 28, 0, '2020-08-25 10:41:14+07', '2020-08-25 10:41:14+07', '2020-08-24', 0, NULL, 1900, 1773, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1906, 4, 27, 'Nhập Liệu', '11/8: Hộp 21 (324 văn bản)
13/8: Hộp 41 (17 văn bản)
      Hộp 55 (201 văn bản)
17/8: Hộp 70 (330 văn bản)
19+20/8: Hộp 160 (33 văn bản)
         Hộp 183 (655 văn bản)', NULL, NULL, 1, NULL, 2, NULL, 34, 0, '2020-08-26 08:08:19+07', '2020-08-26 08:08:19+07', '2020-08-26', 0, NULL, 1772, 1772, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1907, 2, 44, 'Danh mục điểm kinh doanh', '', '2020-08-26', NULL, 5, 5, 2, 15, 5, 2, '2020-08-26 14:26:30+07', '2020-08-28 15:16:19+07', '2020-08-26', 100, NULL, NULL, 1907, 1, 2, false, '2020-08-28 15:16:19+07');
INSERT INTO public.issues VALUES (1908, 2, 44, 'Danh mục thiết bị đầu đọc', '', '2020-08-26', NULL, 5, 5, 2, 15, 5, 2, '2020-08-26 14:28:25+07', '2020-08-28 15:16:19+07', '2020-08-26', 100, NULL, NULL, 1908, 1, 2, false, '2020-08-28 15:16:19+07');
INSERT INTO public.issues VALUES (1909, 2, 44, 'In phiếu', '', '2020-08-27', NULL, 5, 5, 2, 15, 5, 2, '2020-08-26 14:29:13+07', '2020-08-28 15:16:19+07', '2020-08-27', 100, NULL, NULL, 1909, 1, 2, false, '2020-08-28 15:16:19+07');
INSERT INTO public.issues VALUES (1910, 2, 44, 'Báo cáo doanh thu', '', NULL, NULL, 5, 5, 2, 21, 5, 4, '2020-08-26 14:29:45+07', '2020-10-05 11:08:38+07', NULL, 0, NULL, NULL, 1910, 1, 2, false, '2020-10-05 11:08:38+07');
INSERT INTO public.issues VALUES (1911, 2, 44, 'Báo cáo lịch sử giao dịch', '', '2020-08-29', NULL, 5, 5, 2, 15, 5, 2, '2020-08-26 14:30:01+07', '2020-08-28 15:16:19+07', '2020-08-29', 100, NULL, NULL, 1911, 1, 2, false, '2020-08-28 15:16:19+07');
INSERT INTO public.issues VALUES (1912, 3, 43, 'Thực hiện cắt âm thanh cho 5 File "0001,0002,0005,0006,0007"', 'File văn bản câu đã có sẵn, chỉ cắt âm thanh cho khớp.
Dữ liệu nhận trên Zalo', '2020-08-28', NULL, 3, 24, 2, NULL, 33, 3, '2020-08-27 08:18:05+07', '2020-09-07 14:11:36+07', '2020-08-26', 100, NULL, 1762, 1762, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1913, 2, 4, 'Sửa giao diện thanh tìm kiếm trên các trang mời gọi đầu tư, kcn, cnn', '', '2020-08-28', NULL, 3, 37, 2, 13, 13, 4, '2020-08-27 08:18:37+07', '2020-08-28 16:35:13+07', '2020-08-27', 100, NULL, NULL, 1913, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1914, 2, 4, 'Chỉnh menu trang thông tin ', '', '2020-08-28', NULL, 3, 37, 2, 13, 13, 2, '2020-08-27 10:30:45+07', '2020-08-28 16:35:03+07', '2020-08-27', 100, NULL, NULL, 1914, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1915, 2, 4, 'chỉnh bố cục các trang giới thiệu, KKT, mời gọi đầu tư, KCN, CCN, tìm kiếm', '', '2020-08-28', NULL, 1, 37, 2, 13, 13, 1, '2020-08-27 10:33:07+07', '2020-08-28 16:34:47+07', '2020-08-27', 100, NULL, NULL, 1915, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1917, 2, 4, 'Thể hiện lại danh sách quy hoạch sdd chỉ theo tình trạng no', '', '2020-08-28', NULL, 3, 10, 2, 13, 13, 3, '2020-08-27 14:46:32+07', '2021-02-05 08:54:29+07', '2020-08-27', 100, NULL, NULL, 1917, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1918, 2, 45, 'Tạo db', '', '2020-08-31', NULL, 3, 5, 2, 19, 5, 2, '2020-08-28 08:40:14+07', '2020-09-01 13:49:02+07', '2020-08-31', 100, NULL, NULL, 1918, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1919, 2, 45, 'Dựng source frontend', '', '2020-09-03', NULL, 3, 12, 2, 19, 5, 2, '2020-08-28 08:40:36+07', '2020-09-03 13:38:03+07', '2020-09-03', 100, NULL, NULL, 1919, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1920, 2, 45, 'Dựng source backend', '', '2020-09-04', NULL, 3, 19, 2, 19, 5, 2, '2020-08-28 08:40:58+07', '2020-09-04 08:06:07+07', '2020-09-03', 100, 8, NULL, 1920, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1921, 2, 45, 'Tạo gitlab', '', '2020-08-31', NULL, 3, 5, 2, 19, 5, 2, '2020-08-28 08:43:16+07', '2020-09-01 13:49:03+07', '2020-08-31', 100, NULL, NULL, 1921, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1922, 1, 9, 'Câp nhật - chỉnh sửa giao diện ( trao đổi vs anh Linh )', '', '2020-09-03', NULL, 1, NULL, 2, NULL, 15, 18, '2020-08-28 09:11:29+07', '2020-09-03 08:33:33+07', '2020-08-28', 100, NULL, NULL, 1922, 1, 30, false, NULL);
INSERT INTO public.issues VALUES (1923, 2, 9, 'Sắp xếp lịch sử ngạch bậc theo create date', '', '2020-08-28', NULL, 3, 15, 2, NULL, 15, 5, '2020-08-28 09:12:13+07', '2020-09-03 08:33:31+07', '2020-08-28', 100, NULL, 1922, 1922, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1924, 1, 9, 'sửa lỗi thêm nhân viên', '', '2020-08-29', NULL, 3, 15, 2, NULL, 15, 4, '2020-08-28 09:12:30+07', '2020-09-03 08:33:31+07', '2020-08-29', 100, NULL, 1922, 1922, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1925, 1, 4, 'Update thông tin quy hoạch sử dụng đất ở trang thêm thông tin thuê đất', '', '2020-08-29', NULL, 3, 12, 2, 13, 10, 4, '2020-08-28 10:23:02+07', '2020-08-29 15:45:37+07', '2020-08-28', 100, NULL, NULL, 1925, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1926, 2, 4, 'hiển thị kết quả tìm kiếm theo dạng bảng trên trang tìm kiếm nâng cao', '', '2020-08-28', 10, 3, 10, 2, 13, 13, 3, '2020-08-28 10:32:22+07', '2021-02-05 08:54:29+07', '2020-08-28', 100, NULL, NULL, 1926, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1927, 1, 9, 'trong thời gian nghỉ phép không cho set nghỉ thêm gì nữa hết', '', '2020-08-28', NULL, 3, 15, 2, NULL, 15, 4, '2020-08-28 10:52:59+07', '2020-09-03 08:33:31+07', '2020-08-28', 100, NULL, 1922, 1922, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1928, 2, 4, 'hiển thị hình ảnh cho kết quả tìm kiếm trên trang tìm kiếm', '', '2020-08-29', 10, 3, 10, 2, 13, 13, 2, '2020-08-29 08:41:18+07', '2021-02-05 08:54:29+07', '2020-08-29', 100, NULL, NULL, 1928, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1929, 2, 4, 'Thay đổi button sau khi tìm kiếm trên các trang mời gọi đầu tư, KCN, CCN', '', '2020-08-29', 10, 5, 37, 2, 13, 13, 1, '2020-08-29 09:29:22+07', '2020-08-31 08:59:43+07', '2020-08-29', 0, NULL, NULL, 1929, 1, 2, false, '2020-08-31 08:59:43+07');
INSERT INTO public.issues VALUES (1930, 1, 4, 'Trang tìm kiếm nâng cao: kết quả tìm kiếm chưa link tới trang chi tiết', '', '2020-08-29', 10, 3, 10, 2, 13, 13, 3, '2020-08-29 09:30:32+07', '2020-08-29 16:18:55+07', '2020-08-29', 100, NULL, NULL, 1930, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1931, 2, 4, 'Thay đổi giao diện thanh tìm kiếm rõ ràng hơn', '', '2020-08-31', NULL, 3, 37, 2, 18, 13, 2, '2020-08-31 09:00:42+07', '2020-09-03 08:27:07+07', '2020-08-31', 100, NULL, NULL, 1931, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1932, 2, 4, 'cập nhật hình ảnh cho các khu công nghiệp, cụm công nghiệp', '', '2020-08-31', 10, 3, 10, 2, 18, 13, 3, '2020-08-31 09:01:51+07', '2021-02-05 08:54:29+07', '2020-08-31', 100, NULL, NULL, 1932, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1933, 2, 4, 'Tìm kiếm hình ảnh đại diện phù hợp cho các kcn, ccn hiển thị trên trang thông tin', '', '2020-08-31', 11, 3, 10, 2, 18, 13, 2, '2020-08-31 09:02:50+07', '2020-08-31 15:30:26+07', '2020-08-31', 100, NULL, NULL, 1933, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1934, 2, 11, 'Thiết lập bộ dữ liệu test cho quan trắc không khí', '-Thiết lập dữ liệu thể hiện hết các trạng thái của quan trắc không khí.', '2020-09-01', NULL, 3, 19, 2, 3, 19, 7, '2020-09-01 09:05:11+07', '2020-09-05 10:10:26+07', '2020-09-01', 100, 8, 1401, 1401, 26, 27, false, NULL);
INSERT INTO public.issues VALUES (1935, 2, 45, 'Publish GEO server điểm quan trắc', 'binhdinh:DMDiemQuanTrac', '2020-09-03', NULL, 3, 5, 2, 19, 5, 2, '2020-09-01 13:54:07+07', '2020-09-03 14:46:19+07', '2020-09-03', 100, NULL, NULL, 1935, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1936, 3, 28, 'Ràng buộc các điều kiện bên trong back-end', '', '2020-09-03', NULL, 5, 38, 2, NULL, 6, 22, '2020-09-03 08:15:41+07', '2020-09-09 08:28:37+07', '2020-09-03', 100, NULL, 2001, 2001, 2, 3, false, '2020-09-09 08:28:37+07');
INSERT INTO public.issues VALUES (1937, 2, 9, 'Danh sách đơn vị chưa xuất bảng lương', '', '2020-09-03', NULL, 3, 15, 2, NULL, 15, 5, '2020-09-03 08:22:28+07', '2020-09-03 08:33:32+07', '2020-09-03', 100, NULL, 1922, 1922, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (1938, 1, 9, 'Làm mới hoàn toàn thống kê trong danh sách đã xuất bảng lương ', '', '2020-09-01', NULL, 3, 15, 2, NULL, 15, 3, '2020-09-03 08:22:53+07', '2020-09-03 08:33:32+07', '2020-09-01', 100, NULL, 1922, 1922, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (1939, 1, 9, 'Danh sách xã không hiện trong danh sách đã xuất bảng lương ', '', '2020-09-01', NULL, 3, 15, 2, NULL, 15, 4, '2020-09-03 08:23:10+07', '2020-09-03 08:33:32+07', '2020-09-01', 100, NULL, 1922, 1922, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (1940, 3, 28, 'Xóa toàn bộ code liên quan đến CompanyAgent', 'Đã bỏ nghiệp vụ liên quan đến người đại diện công ty.
Chỉ cần thông tin công ty, không quan tâm đến người đại diện.', '2020-09-03', NULL, 5, 38, 2, NULL, 6, 13, '2020-09-03 08:23:17+07', '2020-09-09 08:28:37+07', '2020-09-03', 100, NULL, 2001, 2001, 4, 5, false, '2020-09-09 08:28:37+07');
INSERT INTO public.issues VALUES (1941, 2, 9, 'Tự động tăng vị trí ưu tiên trong danh sách quản lý nội dung 4a.', '', '2020-09-02', NULL, 3, 15, 2, NULL, 15, 4, '2020-09-03 08:23:30+07', '2020-09-03 08:33:32+07', '2020-09-02', 100, NULL, 1922, 1922, 14, 15, false, NULL);
INSERT INTO public.issues VALUES (1942, 2, 9, 'chuyển danh sách đơn vị ra bên ngoài báo cáo.( áp dụng cho tất cả luôn)', '', '2020-09-03', NULL, 3, 15, 2, NULL, 15, 4, '2020-09-03 08:23:59+07', '2020-09-03 08:33:32+07', '2020-09-03', 100, NULL, 1922, 1922, 16, 17, false, NULL);
INSERT INTO public.issues VALUES (1943, 1, 9, 'Xem bảng lương trước khi tải xuống ', '', '2020-09-02', NULL, 3, 15, 2, NULL, 15, 3, '2020-09-03 08:24:31+07', '2020-09-03 08:33:32+07', '2020-09-02', 100, NULL, 1922, 1922, 18, 19, false, NULL);
INSERT INTO public.issues VALUES (1944, 1, 9, 'thông tin nhân viên (trong báo cáo) tìm kiếm nhân viên theo đơn vị ', '', '2020-08-31', NULL, 3, 15, 2, NULL, 15, 3, '2020-09-03 08:25:14+07', '2020-09-03 08:33:32+07', '2020-08-31', 100, NULL, 1922, 1922, 20, 21, false, NULL);
INSERT INTO public.issues VALUES (1945, 2, 9, 'Click vào tháng lương trong dashboard thì show ra bảng lương.	', '', '2020-08-29', NULL, 3, 15, 2, NULL, 15, 4, '2020-09-03 08:25:52+07', '2020-09-03 08:33:33+07', '2020-08-29', 100, NULL, 1922, 1922, 22, 23, false, NULL);
INSERT INTO public.issues VALUES (1946, 3, 28, 'Xóa toàn bộ code liên quan đến AuctionsOnlineAssetProperties', 'AuctionsOnlineAssetProperties = định nghĩa các thuộc tính cho tài sản.
Đã chuyển định nghĩa các thuộc tính cho tất cả tài sản trong phiên đấu giá => AuctionsOnlineProperties', '2020-09-03', NULL, 5, 38, 2, NULL, 6, 18, '2020-09-03 08:26:17+07', '2020-09-09 08:28:37+07', '2020-09-03', 100, NULL, 2001, 2001, 6, 7, false, '2020-09-09 08:28:37+07');
INSERT INTO public.issues VALUES (1947, 2, 9, 'Click vào tháng lương trong dashboard thì show ra bảng lương.	', '', '2020-08-31', NULL, 3, 15, 2, NULL, 15, 4, '2020-09-03 08:26:17+07', '2020-09-03 08:33:33+07', '2020-08-31', 100, NULL, 1922, 1922, 24, 25, false, NULL);
INSERT INTO public.issues VALUES (1949, 2, 9, 'Không cho chỉnh  cấp ngân sách trong thông tin đơn vị', '', '2020-08-29', NULL, 3, 15, 2, NULL, 15, 4, '2020-09-03 08:26:59+07', '2020-09-03 08:33:33+07', '2020-08-29', 100, NULL, 1922, 1922, 28, 29, false, NULL);
INSERT INTO public.issues VALUES (1950, 2, 4, 'Điều chỉnh thanh scroll trên xem chi tiết điểm đầu tư', '', '2020-09-03', NULL, 3, 10, 2, 18, 13, 4, '2020-09-03 08:39:25+07', '2021-02-05 08:54:29+07', '2020-09-03', 100, NULL, NULL, 1950, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1951, 2, 4, 'chỉnh bảng phù hợp với màn hình điện thoại', '', '2020-09-27', NULL, 3, 13, 2, 35, 13, 4, '2020-09-03 08:41:12+07', '2020-09-25 10:06:15+07', '2020-09-26', 100, NULL, NULL, 1951, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1952, 1, 4, 'Thêm lĩnh vực du lịch', '', '2020-09-03', NULL, 3, 13, 2, 18, 5, 3, '2020-09-03 09:04:28+07', '2020-09-08 10:43:02+07', '2020-09-03', 100, NULL, NULL, 1952, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1953, 3, 28, 'Thêm hoặc sửa lịch sử đặt bid', 'Tìm lịch sử đặt bid dựa vào **auction_file_uuid** và **round**
Nếu chưa có lịch sử đặt bid => Thêm mới
Nếu đã tồn tại lịch sử đặt bid => Sửa lịch sử đã tồn tại', '2020-09-03', NULL, 5, 38, 2, NULL, 6, 4, '2020-09-03 11:28:14+07', '2020-09-09 08:28:37+07', '2020-09-03', 100, NULL, 2001, 2001, 8, 9, false, '2020-09-09 08:28:37+07');
INSERT INTO public.issues VALUES (1954, 2, 45, 'Thao tác trên bản đồ', '', '2020-09-08', NULL, 1, NULL, 2, 20, 19, 12, '2020-09-03 13:31:45+07', '2020-09-09 11:19:12+07', '2020-09-07', 100, NULL, NULL, 1954, 1, 8, false, NULL);
INSERT INTO public.issues VALUES (1955, 2, 45, 'Hiển thị (bật / tắt) các lớp bản đồ khác nhau.', 'Cho phép xem cùng lúc các loại lớp bản đồ trên nền web
- Tải Bản đồ nền
- Hiển thị/ẩn lớp bản đồ 
', '2020-09-08', NULL, 3, 12, 2, 20, 19, 9, '2020-09-03 13:32:52+07', '2020-09-09 11:19:12+07', '2020-09-08', 100, NULL, 1954, 1954, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1956, 2, 45, 'Xác định khoảng cách, tính diện tích', '- Cho phép xác định khoảng cách 2 điểm trên bản đồ, tính diện tích của vùng chọn trên bản đồ (hình vuông/ chữ nhật, tam giác)
- Đo khoảng cách 2 điểm quan trắc 
- Tính diện tích trên bản đồ trạm 
', '2020-09-07', NULL, 3, 12, 2, 20, 19, 7, '2020-09-03 13:33:33+07', '2020-09-07 16:21:21+07', '2020-09-07', 100, NULL, 1954, 1954, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1957, 2, 45, 'Hiển thị vị trí trạm quan trắc trên bản đồ', 'Cho phép vẽ hình trên bản đồ nền theo các tọa độ nhập.
- Nhập tọa độ
- Nhập các thuộc tính về điểm quan trắc
- Vẽ/ hiển thị trạm trên các lớp bản đồ
- Lưu trạm mới vào CSDL

(Khi thêm mới 1 điểm quan trắc thành công thì hiển thị điểm đó lên bản đồ)
', '2020-09-08', NULL, 3, 12, 2, 20, 19, 10, '2020-09-03 13:35:00+07', '2020-09-09 11:19:12+07', '2020-09-08', 100, NULL, 1954, 1954, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1958, 2, 45, 'In bản đồ (Tạo trang in hoặc file Pdf - Print)', 'Cho phép in bản đồ, in phần chọn, in thành file, in ra giấy:
- In bản đồ các điểm quan trắc (lớp bản đồ theo năm)
', '2020-09-14', NULL, 3, 12, 2, 23, 19, 11, '2020-09-03 13:35:33+07', '2020-09-15 10:24:17+07', '2020-09-14', 100, NULL, NULL, 1958, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1959, 2, 45, 'Quản lý số liệu điểm quan trắc', '', '2020-09-12', NULL, 1, NULL, 2, 20, 19, 16, '2020-09-03 13:39:08+07', '2020-09-12 10:55:22+07', '2020-09-07', 100, NULL, NULL, 1959, 1, 24, false, NULL);
INSERT INTO public.issues VALUES (1960, 2, 45, 'Tìm kiếm, hiển thị thông tin thuộc tính trên WebGIS theo năm', 'Cho phép tìm kiếm theo thông số các điểm quan trắc theo năm.
- Tìm vị trí các điểm quan trắc (theo hoạt độ phóng xạ)
- Tra cứu thông tin thuộc tính
', '2020-09-12', NULL, 1, 12, 2, 20, 19, 14, '2020-09-03 13:40:12+07', '2020-09-12 10:55:22+07', '2020-09-07', 100, NULL, 1959, 1959, 2, 13, false, NULL);
INSERT INTO public.issues VALUES (1961, 2, 45, 'Thống kê/ kết xuất thông tin trên WEBGIS', 'Thống kê, kết xuất thông tin các điểm quan trắc, địa điểm ra file', '2020-09-10', NULL, 1, 12, 2, 20, 19, 10, '2020-09-03 13:40:39+07', '2020-09-09 09:07:45+07', '2020-09-08', 100, NULL, 1959, 1959, 14, 19, false, NULL);
INSERT INTO public.issues VALUES (1962, 2, 45, 'Nhập/sửa/xóa thông số trạm ', 'Cho phép tìm kiếm, xem thông tin về thông số các điểm quan trắc theo vùng. Admin sửa/ tạo mới/ xóa trạm theo thời gian.', '2020-09-11', NULL, 5, 12, 2, 20, 19, 8, '2020-09-03 13:41:04+07', '2020-09-11 09:54:23+07', '2020-09-10', 0, NULL, 1959, 1959, 20, 21, false, '2020-09-11 09:54:23+07');
INSERT INTO public.issues VALUES (1963, 2, 45, 'Quản lý tài liệu, hồ sơ đính kèm theo các trạm ', 'Đính kèm file liên quan đến các điểm quan trắc, tải file về máy.', '2020-09-16', NULL, 3, 8, 2, 23, 19, 6, '2020-09-03 13:44:49+07', '2020-09-16 15:22:02+07', '2020-09-16', 100, NULL, NULL, 1963, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1964, 2, 9, 'Báo cáo thông kê', '', NULL, NULL, 1, NULL, 2, NULL, 15, 1, '2020-09-03 13:59:46+07', '2020-09-03 13:59:59+07', '2020-09-03', 0, NULL, NULL, 1964, 1, 8, false, NULL);
INSERT INTO public.issues VALUES (1965, 2, 9, 'Backend', '', NULL, NULL, 1, NULL, 2, NULL, 15, 0, '2020-09-03 14:00:39+07', '2020-09-03 14:00:39+07', '2020-09-03', 0, NULL, 1964, 1964, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (1966, 2, 9, 'FrontEnd', '', NULL, NULL, 1, NULL, 2, NULL, 15, 0, '2020-09-03 14:00:47+07', '2020-09-03 14:00:47+07', '2020-09-03', 0, NULL, 1964, 1964, 4, 7, false, NULL);
INSERT INTO public.issues VALUES (1967, 2, 9, 'Cập nhật lại dữ liệu Sheet 2a bổ sung cho Sheet 4b', '', NULL, NULL, 1, NULL, 2, NULL, 15, 0, '2020-09-03 14:01:48+07', '2020-09-03 14:01:48+07', '2020-09-03', 0, NULL, 1966, 1964, 5, 6, false, NULL);
INSERT INTO public.issues VALUES (1968, 2, 45, 'Chỉnh giao diện đăng nhập', '', '2020-09-04', NULL, 3, 40, 2, 19, 12, 5, '2020-09-03 14:07:09+07', '2020-09-04 09:53:24+07', '2020-09-03', 100, NULL, NULL, 1968, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1969, 2, 28, 'Đấu giá lại tài sản', 'Hủy kết quả các vòng đấu trực tiếp, giữ lại kết quả vòng đấu gián tiếp
1. Nhận uuid tài sản từ request.
1. Tìm kiếm và xóa lịch sử đấu giá của tất cả hồ sơ trong tài sản có thuộc tính round > .
1. Tìm kiếm và thay đổi trạng thái của tất cả hồ sơ trong tài sản thành `Active`.', '2020-09-05', NULL, 5, 38, 2, NULL, 6, 5, '2020-09-03 16:08:18+07', '2020-09-09 08:28:37+07', '2020-09-03', 100, NULL, 2001, 2001, 10, 11, false, '2020-09-09 08:28:37+07');
INSERT INTO public.issues VALUES (1970, 2, 45, 'Chỉnh sửa database', 'Chỉnh sửa database', '2020-09-05', NULL, 3, 41, 2, 19, 19, 3, '2020-09-04 08:07:57+07', '2020-09-05 09:35:26+07', '2020-09-04', 100, 16, NULL, 1970, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1971, 2, 45, 'Chỉnh sửa giao diện trang liệt kê danh sách trạng vượt ngưỡng và giao diện thêm trạm', '', '2020-09-04', NULL, 3, 40, 2, 19, 12, 3, '2020-09-04 09:53:36+07', '2020-09-07 08:27:40+07', '2020-09-04', 100, NULL, NULL, 1971, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1972, 1, 4, 'Sửa menu', 'Đảm bảo menu ở trang chủ trong suốt, còn các trang còn lại nền trắng chữ đen.
Chỉnh menu responsive

', NULL, NULL, 1, 10, 2, 18, 4, 6, '2020-09-04 10:06:23+07', '2021-02-05 08:54:29+07', '2020-09-04', 100, NULL, NULL, 1972, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1973, 1, 4, 'Tiêu đề bài viết', 'Nhiều nhất là 2 dòng vơi tiêu đề nằm trên hình ảnh, 3 dòng với tiêu đề bên phải hình ảnh', NULL, NULL, 3, 10, 2, 18, 4, 5, '2020-09-04 10:07:20+07', '2021-02-05 08:54:29+07', '2020-09-04', 100, NULL, NULL, 1973, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1974, 1, 4, 'Đổi màu nền footer ', '', NULL, NULL, 3, 10, 2, 18, 4, 5, '2020-09-04 10:07:43+07', '2021-02-05 08:54:30+07', '2020-09-04', 100, NULL, NULL, 1974, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1976, 1, 45, 'Khi thêm mới điểm quan trắc:', 'Khi click vào 1 điểm trên bản đồ để lấy tọa độ. Vị trí click củ không được xóa sau khi click vào 1 vị trí mới', '2020-09-16', NULL, 5, 12, 2, 23, 12, 6, '2020-09-04 10:35:50+07', '2020-09-22 08:16:15+07', '2020-09-16', 0, NULL, NULL, 1976, 1, 2, false, '2020-09-22 08:16:15+07');
INSERT INTO public.issues VALUES (1977, 1, 45, 'Khi chỉnh sửa vị trí điểm quan trắc:', 'Khi chỉnh sửa điểm quan trắc thì điểm củ không được xóa mà chỉ tạo ra 1 điểm mới tương ướng với tọa độ vừa nhập', '2020-09-08', NULL, 3, 12, 2, 20, 12, 4, '2020-09-04 10:44:58+07', '2020-09-08 10:55:05+07', '2020-09-08', 100, NULL, NULL, 1977, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1978, 2, 45, 'API danh sach trạm theo thông số đo', 'API danh sach trạm theo thông số đo', '2020-09-05', NULL, 3, 41, 2, 19, 19, 6, '2020-09-04 10:54:11+07', '2020-09-08 08:42:06+07', '2020-09-04', 100, 24, NULL, 1978, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1980, 2, 4, 'gọi api cho chức năng đổi mật khẩu', '', '2020-09-05', NULL, 1, 37, 2, 18, 13, 1, '2020-09-05 09:35:40+07', '2020-09-07 19:28:42+07', '2020-09-05', 100, NULL, NULL, 1980, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1981, 2, 11, 'Update dashboard danh sách trạm vượt ngưỡng', '', '2020-09-05', NULL, 2, 39, 2, 3, 39, 2, '2020-09-05 09:39:44+07', '2020-09-07 14:03:24+07', '2020-09-05', 80, 8, 1401, 1401, 28, 29, false, NULL);
INSERT INTO public.issues VALUES (1982, 2, 4, 'tạo giao diện trang thông tin người dùng', '', '2020-09-05', NULL, 3, 37, 2, 18, 13, 2, '2020-09-05 10:06:39+07', '2020-09-25 10:08:20+07', '2020-09-05', 100, NULL, NULL, 1982, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1983, 2, 4, 'gọi api cập nhật thông tin người dùng', '', '2020-09-05', NULL, 3, 37, 2, 18, 13, 1, '2020-09-05 10:09:24+07', '2020-09-25 10:08:20+07', '2020-09-05', 100, NULL, NULL, 1983, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1984, 2, 45, 'Danh mục Điểm quan trắc', 'sửa lại vài thuộc tính', '2020-09-07', NULL, 3, 12, 2, 20, 12, 4, '2020-09-07 08:29:44+07', '2020-09-07 16:21:22+07', '2020-09-07', 100, NULL, NULL, 1984, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1985, 2, 45, 'Giao diện tìm kiếm nâng cao', '', '2020-09-07', NULL, 3, 40, 2, 20, 12, 4, '2020-09-07 08:30:43+07', '2020-09-07 16:20:03+07', '2020-09-07', 100, NULL, 1960, 1959, 3, 4, false, NULL);
INSERT INTO public.issues VALUES (1986, 2, 45, 'Xử lý tìm kiếm', '', '2020-09-12', NULL, 1, 12, 2, 20, 12, 8, '2020-09-07 08:31:15+07', '2020-09-12 10:55:22+07', '2020-09-12', 100, NULL, 1960, 1959, 5, 10, false, NULL);
INSERT INTO public.issues VALUES (1987, 3, 43, 'Thực hiện cắt âm thanh cho 10 File "8-10-11-12-18-19-20-21-23-24"', 'Dữ liệu lấy trên Zalo', '2020-09-03', NULL, 3, 24, 2, NULL, 33, 1, '2020-09-07 13:19:51+07', '2020-09-07 14:10:51+07', '2020-08-28', 100, NULL, 1762, 1762, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (1988, 3, 43, 'Thực hiện cắt âm thanh cho 3 File "32-33-34"', 'Dữ liệu lấy trên Zalo do Chung chuyển qua', '2020-09-08', NULL, 2, 24, 2, NULL, 33, 4, '2020-09-07 13:23:15+07', '2020-09-29 16:57:23+07', '2020-09-04', 100, NULL, 1762, 1762, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (1989, 3, 43, 'Thực hiện cắt âm thanh cho 8 File "25-26-27-28-29-30-31-35"', 'Dữ liệu chung lấy trên PC Huy ngày 3/9/2020', '2020-09-08', NULL, 2, NULL, 2, NULL, 33, 4, '2020-09-07 13:28:41+07', '2020-09-29 16:57:30+07', '2020-09-03', 100, NULL, 1761, 1761, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (1990, 2, 45, 'Odata API', 'Odata API', '2020-09-07', NULL, 3, 41, 2, 20, 19, 1, '2020-09-07 13:58:01+07', '2020-09-07 14:06:49+07', '2020-09-07', 100, 12, NULL, 1990, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1991, 2, 45, 'API thống kê dữ liệu trạm theo thời gian', '', '2020-09-07', NULL, 3, 41, 2, 20, 41, 2, '2020-09-07 14:09:59+07', '2020-09-07 14:22:20+07', '2020-09-07', 100, 12, 1960, 1959, 11, 12, false, NULL);
INSERT INTO public.issues VALUES (1992, 2, 45, 'API Giá trị cuối từng thông số', '', '2020-09-09', NULL, 3, 41, 2, 20, 41, 4, '2020-09-07 14:19:38+07', '2020-09-08 13:34:17+07', '2020-09-08', 100, 12, 1961, 1959, 15, 16, false, NULL);
INSERT INTO public.issues VALUES (1993, 2, 45, 'API Số liệu quan trắc định kì', '', '2020-09-10', NULL, 3, 41, 2, 20, 41, 2, '2020-09-07 14:21:11+07', '2020-09-09 09:07:45+07', '2020-09-09', 100, 12, 1961, 1959, 17, 18, false, NULL);
INSERT INTO public.issues VALUES (1994, 2, 45, 'Sprint review meeting', '', '2020-09-12', NULL, 3, 12, 2, 20, 5, 4, '2020-09-08 08:27:30+07', '2020-09-14 07:56:45+07', '2020-09-12', 100, NULL, NULL, 1994, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1995, 2, 4, 'Chỉnh lại giao diện phần tin tức trên trang chủ', '', '2020-09-09', NULL, 3, 10, 2, 25, 13, 3, '2020-09-08 10:12:32+07', '2021-02-05 08:54:30+07', '2020-09-08', 100, NULL, NULL, 1995, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1996, 1, 4, 'Sửa quy thông tin quy hoạch sử dụng đất trong điểm đầu tư', '', '2020-09-12', NULL, 3, 10, 2, 34, 13, 4, '2020-09-08 10:31:35+07', '2021-02-05 08:54:30+07', '2020-09-11', 100, NULL, NULL, 1996, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1997, 1, 4, 'Sửa thông tin trong menu quy hoạch sử dụng đất', '
', '2020-09-27', NULL, 3, 10, 2, 35, 13, 4, '2020-09-08 10:35:40+07', '2021-02-05 08:54:30+07', '2020-09-26', 100, NULL, NULL, 1997, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1998, 2, 4, 'Chỉnh bố cục mục mời gọi đầu tư trên trang chủ', '', '2020-09-09', NULL, 3, 37, 2, 25, 13, 2, '2020-09-08 13:12:57+07', '2020-09-17 15:12:29+07', '2020-09-08', 100, NULL, NULL, 1998, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (1999, 2, 4, 'chỉnh lại bố cục lại phần kkt, kcn, ccn trên trang chủ', '', '2020-09-09', NULL, 3, 37, 2, 25, 13, 2, '2020-09-08 13:20:22+07', '2020-09-17 15:12:29+07', '2020-09-08', 100, NULL, NULL, 1999, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2000, 1, 28, 'Xóa phiên đấu giá lỗi', 'Khi xóa phiên đấu giá cần xóa:
1. Danh sách tài sản đấu giá
  * Tất cả hồ sơ đấu giá
  * Tất cả giá trị thuộc tính của tài sản
1. Danh sách thuộc tính của tài sản', '2020-09-09', NULL, 5, 38, 2, 26, 6, 6, '2020-09-09 08:25:03+07', '2020-09-15 08:12:55+07', '2020-09-09', 100, NULL, NULL, 2000, 1, 2, false, '2020-09-15 08:12:55+07');
INSERT INTO public.issues VALUES (2001, 4, 28, 'Backend', '', '2020-09-05', NULL, 5, NULL, 2, NULL, 6, 5, '2020-09-09 08:28:09+07', '2020-09-09 08:37:36+07', '2020-09-03', 100, NULL, NULL, 2001, 1, 12, false, '2020-09-09 08:37:36+07');
INSERT INTO public.issues VALUES (2002, 2, 28, 'Chuyên viên, muốn giao diện trang chi tiết phiên giống excel', '', '2020-09-09', NULL, 1, 17, 2, 26, 17, 2, '2020-09-09 08:47:19+07', '2020-09-09 09:51:29+07', '2020-09-09', 0, NULL, NULL, 2002, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2003, 1, 4, 'Chỉnh giao diện phù hợp với màn hình điện thoại', '![](clipboard-202009090900-y9l2v.png)
![](clipboard-202009090903-v92qa.png)
', '2020-09-11', NULL, 3, 10, 2, 25, 13, 5, '2020-09-09 09:04:03+07', '2021-02-05 08:54:30+07', '2020-09-11', 100, NULL, NULL, 2003, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2004, 2, 45, 'API Import dữ liệu', '', '2020-09-11', NULL, 3, 41, 2, 20, 41, 3, '2020-09-09 09:09:05+07', '2020-09-10 08:27:17+07', '2020-09-09', 100, NULL, NULL, 2004, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2005, 2, 28, 'Chuyển viên, thêm tài sản trong qlts', '', '2020-09-11', NULL, 1, 17, 2, 26, 5, 4, '2020-09-09 09:20:07+07', '2020-09-12 14:57:19+07', '2020-09-11', 100, NULL, NULL, 2005, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2006, 2, 28, 'Chuyển viên, sửa tài sản trong qlts', '', '2020-09-11', NULL, 1, 17, 2, 26, 5, 4, '2020-09-09 09:20:14+07', '2020-09-12 14:57:38+07', '2020-09-11', 100, NULL, NULL, 2006, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2007, 2, 28, 'Chuyển viên, xóa tài sản trong qlts', '', '2020-09-11', NULL, 1, 17, 2, 26, 5, 4, '2020-09-09 09:20:20+07', '2020-09-12 14:58:06+07', '2020-09-11', 100, NULL, NULL, 2007, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2008, 2, 28, 'Chuyển viên, xem giao diện qlts dưới dạng group', '', '2020-09-12', NULL, 1, 17, 2, 26, 5, 3, '2020-09-09 09:26:12+07', '2020-09-09 09:52:31+07', '2020-09-12', 0, NULL, NULL, 2008, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2009, 2, 28, 'Chuyển viên, quản lý ds người tham gia từng tài sản', 'thêm
sửa
xóa', '2020-09-12', NULL, 1, 17, 2, 26, 5, 3, '2020-09-09 09:26:56+07', '2020-09-09 09:52:31+07', '2020-09-12', 0, NULL, NULL, 2009, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2010, 2, 28, 'Chuyên viên, in phiếu trả giá', '', '2020-09-09', NULL, 3, 10, 4, 26, 5, 7, '2020-09-09 09:40:24+07', '2020-09-10 14:28:33+07', '2020-09-09', 100, NULL, NULL, 2010, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2011, 2, 45, 'Hiển thị popup chi tiết điểm quan trắc, khi click vào 1 điểm trên bản đồ', '', '2020-09-10', NULL, 3, 12, 2, 20, 12, 1, '2020-09-09 11:20:30+07', '2020-09-10 13:56:59+07', '2020-09-09', 100, NULL, NULL, 2011, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2012, 2, 11, 'API dữ liệu biểu đồ đường', 'API dữ liệu biểu đồ đường', '2020-09-12', NULL, 3, 19, 2, 3, 19, 1, '2020-09-09 15:33:19+07', '2020-09-09 15:35:00+07', '2020-09-09', 100, 8, 1134, 1401, 5, 6, false, NULL);
INSERT INTO public.issues VALUES (2013, 5, 35, 'Số hóa 15 dự án Phước Long', '', '2020-09-25', NULL, 1, 33, 2, NULL, 33, 34, '2020-09-09 16:15:09+07', '2020-10-08 17:01:17+07', '2020-09-09', 100, NULL, NULL, 2013, 1, 30, false, NULL);
INSERT INTO public.issues VALUES (2014, 5, 35, '01-Khu du lịch núi Bà Rá, phường Sơn Giang thị xã Phước Long', 'Sữ lý hạ tầng kỹ thuật và nhập liệu
Vũ hỗ trợ nhập liệu', '2020-09-11', NULL, 1, 32, 2, NULL, 33, 2, '2020-09-09 16:18:07+07', '2020-10-08 17:01:17+07', '2020-09-09', 100, NULL, 2013, 2013, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2016, 2, 11, 'API số liệu thống kê nhiều ngày theo giá trị trung bình', 'API số liệu thống kê nhiều ngày theo giá trị trung bình', '2020-09-09', NULL, 3, 19, 2, 3, 19, 3, '2020-09-09 16:59:15+07', '2020-09-09 17:00:21+07', '2020-09-09', 100, 2, 1136, 1401, 11, 12, false, NULL);
INSERT INTO public.issues VALUES (2017, 5, 35, '02-Quy hoạch chung xã Long Giang', 'Nhập liệu nhớ kiễm tra CAD xem có cây xanh và thoát nước không nha, dữ liệu nhận trên Zalo
Ghi chú: Phần sát lòng đường là hành lang an toàn đường bộ chứ không phải vỉa hè nhé.', '2020-09-11', NULL, 1, 23, 2, NULL, 33, 2, '2020-09-10 08:18:43+07', '2020-10-08 17:01:10+07', '2020-09-10', 100, 48, 2013, 2013, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (2018, 2, 11, 'API số liệu thống kê nhiều ngày theo giá trị nhỏ nhất', 'API số liệu thống kê nhiều ngày theo giá trị nhỏ nhất', '2020-09-12', NULL, 1, NULL, 2, 3, 19, 1, '2020-09-10 09:07:28+07', '2021-02-05 11:14:18+07', '2020-09-10', 0, NULL, 1140, 1401, 23, 24, false, NULL);
INSERT INTO public.issues VALUES (2019, 2, 11, 'API số liệu thống kê nhiều ngày theo giá trị lớn nhất', 'API số liệu thống kê nhiều ngày theo giá trị lớn nhất', '2020-09-12', NULL, 1, NULL, 2, 3, 19, 1, '2020-09-10 09:08:30+07', '2021-02-05 11:14:18+07', '2020-09-10', 0, NULL, 1138, 1401, 17, 18, false, NULL);
INSERT INTO public.issues VALUES (2020, 2, 45, 'Front end quản lý số liệu định kỳ', 'Front end quản lý số liệu định kỳ', '2020-09-12', NULL, 1, 39, 2, 20, 19, 2, '2020-09-10 14:42:15+07', '2020-09-11 15:38:29+07', '2020-09-10', 100, 16, 1959, 1959, 22, 23, false, NULL);
INSERT INTO public.issues VALUES (2021, 1, 4, 'menu trên giao diện di động bị lỗi', '', '2020-09-11', NULL, 3, 37, 2, 34, 13, 2, '2020-09-10 15:13:20+07', '2020-09-25 10:08:20+07', '2020-09-10', 100, NULL, NULL, 2021, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2022, 3, 45, 'Tài liệu, văn bản pháp luật hỗ trợ', 'https://thuvienphapluat.vn/van-ban/tai-nguyen-moi-truong/Thong-tu-24-2017-TT-BTNMT-quy-dinh-ky-thuat-quan-trac-moi-truong-315834.aspx
https://vanbanphapluat.co/qcvn-10-2013-bkhcn-mang-luoi-quan-trac-canh-bao-phong-xa-moi-truong-quoc-gia
', NULL, NULL, 3, 19, 2, 19, 19, 1, '2020-09-10 15:36:39+07', '2020-09-10 15:37:06+07', '2020-09-10', 100, NULL, NULL, 2022, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2023, 2, 45, 'Báo cáo điểm lấy mẫu hoạt độ-API', '', '2020-09-12', NULL, 3, 19, 2, 20, 12, 2, '2020-09-10 17:07:12+07', '2020-09-14 08:18:59+07', '2020-09-10', 100, NULL, NULL, 2023, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2024, 2, 46, 'Thiết kê database', '', '2020-09-12', NULL, 5, 5, 2, 29, 5, 5, '2020-09-11 15:52:07+07', '2020-09-23 14:15:10+07', '2020-09-11', 100, NULL, NULL, 2024, 1, 2, false, '2020-09-23 14:15:10+07');
INSERT INTO public.issues VALUES (2025, 2, 46, 'Danh mục hạn mức thẻ', '', '2020-09-14', NULL, 5, 40, 2, 29, 5, 5, '2020-09-11 15:53:43+07', '2020-09-23 14:15:10+07', '2020-09-14', 100, NULL, NULL, 2025, 1, 2, false, '2020-09-23 14:15:10+07');
INSERT INTO public.issues VALUES (2026, 2, 46, 'Danh mục sản phẩm dịch vụ', '', '2020-09-16', NULL, 5, 39, 2, 29, 5, 8, '2020-09-11 15:54:31+07', '2020-09-23 14:15:10+07', '2020-09-15', 100, NULL, NULL, 2026, 1, 2, false, '2020-09-23 14:15:10+07');
INSERT INTO public.issues VALUES (2027, 2, 46, 'Danh mục nhóm sản phẩm dịch vụ', '', '2020-09-14', NULL, 5, 39, 2, 29, 5, 4, '2020-09-11 15:54:40+07', '2020-09-23 14:15:10+07', '2020-09-14', 100, NULL, NULL, 2027, 1, 2, false, '2020-09-23 14:15:10+07');
INSERT INTO public.issues VALUES (2028, 2, 46, 'Bán thẻ QR code', '', '2020-09-18', NULL, 5, 39, 2, 29, 5, 7, '2020-09-11 15:54:50+07', '2020-09-23 14:15:10+07', '2020-09-17', 100, NULL, NULL, 2028, 1, 2, false, '2020-09-23 14:15:10+07');
INSERT INTO public.issues VALUES (2029, 2, 46, 'Test khách sử dụng phiếu dịch vụ WC', '', '2020-09-16', NULL, 5, 40, 2, 29, 5, 7, '2020-09-11 15:58:20+07', '2020-09-23 14:15:11+07', '2020-09-15', 100, NULL, NULL, 2029, 1, 2, false, '2020-09-23 14:15:11+07');
INSERT INTO public.issues VALUES (2030, 2, 46, 'Tạo đơn hàng (cho thuê/bán sp)', '', '2020-09-18', NULL, 5, 8, 2, 29, 5, 9, '2020-09-11 15:58:36+07', '2020-09-23 14:15:11+07', '2020-09-14', 100, NULL, NULL, 2030, 1, 2, false, '2020-09-23 14:15:11+07');
INSERT INTO public.issues VALUES (2032, 2, 46, 'Báo cáo đơn hàng', '', '2020-09-19', NULL, 5, 40, 2, 29, 5, 13, '2020-09-11 15:59:24+07', '2020-09-23 14:15:11+07', '2020-09-16', 100, NULL, NULL, 2032, 1, 2, false, '2020-09-23 14:15:11+07');
INSERT INTO public.issues VALUES (2033, 2, 46, 'Báo cáo sản phẩm dịch vụ', '', '2020-09-21', NULL, 5, 40, 2, 30, 5, 12, '2020-09-11 15:59:31+07', '2020-09-28 08:16:07+07', '2020-09-21', 100, NULL, NULL, 2033, 1, 2, false, '2020-09-28 08:16:07+07');
INSERT INTO public.issues VALUES (2034, 2, 46, 'Báo cáo số dư thẻ', '', '2020-09-19', NULL, 5, 40, 2, 29, 5, 13, '2020-09-11 15:59:41+07', '2020-09-23 14:15:11+07', '2020-09-19', 100, NULL, NULL, 2034, 1, 2, false, '2020-09-23 14:15:11+07');
INSERT INTO public.issues VALUES (2035, 2, 46, 'Danh mục thu', '', '2020-09-16', NULL, 5, 40, 2, 29, 5, 8, '2020-09-11 16:00:31+07', '2020-09-23 14:15:11+07', '2020-09-15', 100, NULL, NULL, 2035, 1, 2, false, '2020-09-23 14:15:11+07');
INSERT INTO public.issues VALUES (2036, 2, 46, 'Danh mục chi', '', '2020-09-22', NULL, 5, 39, 2, 30, 5, 8, '2020-09-11 16:00:38+07', '2020-09-28 08:16:07+07', '2020-09-22', 100, NULL, NULL, 2036, 1, 2, false, '2020-09-28 08:16:07+07');
INSERT INTO public.issues VALUES (2037, 2, 46, 'Lập phiếu thu khác', '', '2020-09-23', NULL, 5, 39, 2, 30, 5, 8, '2020-09-11 16:00:46+07', '2020-09-28 08:16:07+07', '2020-09-23', 100, NULL, NULL, 2037, 1, 2, false, '2020-09-28 08:16:07+07');
INSERT INTO public.issues VALUES (2038, 2, 46, 'Lập phiếu chi', '', '2020-09-22', NULL, 5, 39, 2, 30, 5, 8, '2020-09-11 16:01:41+07', '2020-09-28 08:16:07+07', '2020-09-22', 100, NULL, NULL, 2038, 1, 2, false, '2020-09-28 08:16:07+07');
INSERT INTO public.issues VALUES (2041, 2, 46, 'In phiếu thu', '', '2020-09-24', NULL, 5, 39, 2, 30, 5, 10, '2020-09-11 16:02:09+07', '2020-09-28 08:16:07+07', '2020-09-24', 100, NULL, NULL, 2041, 1, 2, false, '2020-09-28 08:16:07+07');
INSERT INTO public.issues VALUES (2042, 2, 46, 'In phiếu chi', '', '2020-09-22', NULL, 5, 39, 2, 30, 5, 8, '2020-09-11 16:02:15+07', '2020-09-28 08:16:08+07', '2020-09-22', 100, NULL, NULL, 2042, 1, 2, false, '2020-09-28 08:16:08+07');
INSERT INTO public.issues VALUES (2048, 2, 46, 'Mobile - Đăng nhập, đăng xuất', '', '2020-09-14', NULL, 5, 10, 2, 29, 5, 6, '2020-09-11 16:04:43+07', '2020-09-23 14:15:11+07', '2020-09-14', 100, NULL, NULL, 2048, 1, 2, false, '2020-09-23 14:15:11+07');
INSERT INTO public.issues VALUES (2049, 2, 46, 'Mobile - Load menu theo từng vai trò', '', '2020-09-14', NULL, 5, 10, 2, 29, 5, 5, '2020-09-11 16:05:00+07', '2020-09-23 14:15:11+07', '2020-09-14', 100, NULL, NULL, 2049, 1, 2, false, '2020-09-23 14:15:11+07');
INSERT INTO public.issues VALUES (2050, 2, 46, 'Mobile - Báo cáo đơn hàng', '', '2020-09-19', NULL, 5, 10, 2, 29, 5, 7, '2020-09-11 16:05:21+07', '2020-09-23 14:15:11+07', '2020-09-19', 100, NULL, NULL, 2050, 1, 2, false, '2020-09-23 14:15:11+07');
INSERT INTO public.issues VALUES (2051, 2, 46, 'Mobile - Báo cáo sản phẩm dịch vụ', '', '2020-09-21', NULL, 5, 10, 2, 30, 5, 8, '2020-09-11 16:05:52+07', '2020-09-28 08:16:08+07', '2020-09-21', 100, NULL, NULL, 2051, 1, 2, false, '2020-09-28 08:16:08+07');
INSERT INTO public.issues VALUES (2052, 2, 46, 'Mobile - Báo cáo số dư thẻ', '', '2020-09-16', NULL, 5, 10, 2, 29, 5, 8, '2020-09-11 16:06:05+07', '2020-09-23 14:15:11+07', '2020-09-15', 100, NULL, NULL, 2052, 1, 2, false, '2020-09-23 14:15:11+07');
INSERT INTO public.issues VALUES (2053, 2, 45, 'Tìm kiếm cơ bản', '', '2020-09-12', NULL, 3, 12, 2, 20, 12, 3, '2020-09-12 08:45:04+07', '2020-09-12 10:45:23+07', '2020-09-12', 100, NULL, 1986, 1959, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (2054, 2, 45, 'Tìm kiếm nâng cao', '', '2020-09-12', NULL, 3, 12, 2, 20, 12, 4, '2020-09-12 08:45:26+07', '2020-09-14 07:57:39+07', '2020-09-12', 100, NULL, 1986, 1959, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (2055, 1, 45, 'Đo khoảng cách, diện tích', '', '2020-09-19', NULL, 3, 12, 2, 23, 12, 3, '2020-09-12 10:56:32+07', '2020-09-16 13:52:34+07', '2020-09-15', 100, NULL, NULL, 2055, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2056, 2, 28, 'Chuyên viên, hình thức bỏ phiếu gián tiếp + hô miệng trực tiếp', 'Vòng 1: bỏ phiếu gián tiếp
Vòng 2 trở đi: hô miệng trực tiếp', '2020-09-12', NULL, 1, NULL, 2, 26, 17, 0, '2020-09-12 13:43:51+07', '2020-09-12 13:43:51+07', '2020-09-12', 100, NULL, NULL, 2056, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2057, 2, 28, 'Chuyên viên, hình thức bỏ phiếu gián tiếp + bỏ phiếu trực tiếp', 'Vòng 1: bỏ phiếu gián tiếp.
Vòng 2 trở đi: bỏ phiếu trực tiếp.
', '2020-09-12', NULL, 1, NULL, 2, 26, 17, 1, '2020-09-12 13:45:37+07', '2020-09-12 15:36:30+07', '2020-09-12', 100, NULL, NULL, 2057, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2058, 2, 28, 'Chuyên viên, in diễn biến kết quả cuộc đấu giá', '', '2020-09-12', NULL, 1, NULL, 2, 26, 17, 1, '2020-09-12 13:46:19+07', '2020-09-12 15:36:31+07', '2020-09-12', 100, NULL, NULL, 2058, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2059, 2, 28, 'Chuyên viên, in phiếu bốc thăm trúng đấu giá', '', '2020-09-12', NULL, 1, NULL, 2, 26, 17, 3, '2020-09-12 13:46:36+07', '2020-09-12 15:36:31+07', '2020-09-12', 100, NULL, NULL, 2059, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2060, 1, 28, 'Chuyên viên, hình thức đấu giá hô miệng trực tiếp', 'Hô miệng trực tiếp tất cả các vòng', '2020-09-12', NULL, 1, NULL, 2, 26, 17, 0, '2020-09-12 13:49:15+07', '2020-09-12 13:49:15+07', '2020-09-12', 0, NULL, NULL, 2060, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2061, 2, 28, 'Chuyên viên, in phiếu trả giá', 'Cần lọc ra những người thua trước khi in phiếu', '2020-09-12', NULL, 1, NULL, 2, 26, 17, 1, '2020-09-12 14:02:50+07', '2020-09-12 14:15:49+07', '2020-09-12', 100, NULL, NULL, 2061, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2062, 2, 46, 'Báo cáo doanh thu theo tháng', '', '2020-09-21', NULL, 5, 39, 2, 30, 5, 8, '2020-09-12 14:49:56+07', '2020-09-28 08:16:08+07', '2020-09-21', 100, NULL, NULL, 2062, 1, 2, false, '2020-09-28 08:16:08+07');
INSERT INTO public.issues VALUES (2064, 2, 46, 'Báo cáo kết quả kinh doanh', '', '2020-09-29', NULL, 5, 39, 2, 31, 5, 13, '2020-09-12 14:50:30+07', '2020-10-03 08:19:06+07', '2020-09-29', 100, NULL, NULL, 2064, 1, 2, false, '2020-10-03 08:19:06+07');
INSERT INTO public.issues VALUES (2065, 2, 46, 'In đơn hàng', '', '2020-09-21', NULL, 5, 8, 2, 30, 5, 6, '2020-09-12 14:53:03+07', '2020-09-28 08:16:08+07', '2020-09-21', 100, NULL, NULL, 2065, 1, 2, false, '2020-09-28 08:16:08+07');
INSERT INTO public.issues VALUES (2066, 2, 46, 'Sửa đơn hàng', '', '2020-09-22', NULL, 5, 8, 2, 30, 5, 7, '2020-09-12 14:54:50+07', '2020-09-28 08:16:08+07', '2020-09-22', 100, NULL, NULL, 2066, 1, 2, false, '2020-09-28 08:16:08+07');
INSERT INTO public.issues VALUES (2067, 2, 46, 'Hủy đơn hàng', '', '2020-09-22', NULL, 5, 8, 2, 30, 5, 8, '2020-09-12 14:55:14+07', '2020-09-29 11:33:58+07', '2020-09-22', 100, NULL, NULL, 2067, 1, 2, false, '2020-09-29 11:33:58+07');
INSERT INTO public.issues VALUES (2068, 2, 28, 'Chuyên viên, gộp cột các điểm (hoặc khu, đường,...) của danh sách tài sản giống excel', '', NULL, NULL, 1, NULL, 2, 26, 17, 0, '2020-09-12 15:00:26+07', '2020-09-12 15:00:26+07', '2020-09-12', 0, NULL, NULL, 2068, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2069, 5, 35, '03 Quy hoạch chung xã Phước Tín', 'Xử lý bản đồ và nhập liệu', '2020-09-14', NULL, 1, 33, 2, NULL, 33, 2, '2020-09-14 08:09:14+07', '2020-10-08 17:01:03+07', '2020-09-11', 100, NULL, 2013, 2013, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (2070, 5, 35, '04 Quy hoạch chi tiết khu hành chính và dân cư khu 7', 'Nhập liệu', '2020-09-16', NULL, 1, 29, 2, NULL, 33, 2, '2020-09-14 08:10:25+07', '2020-10-08 17:00:56+07', '2020-09-14', 100, 72, 2013, 2013, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (2071, 2, 46, 'api odata/DM_HanMucThe', '', '2020-09-14', NULL, 5, 5, 2, 29, 5, 2, '2020-09-14 10:03:32+07', '2020-09-23 14:15:11+07', '2020-09-14', 100, NULL, NULL, 2071, 1, 2, false, '2020-09-23 14:15:11+07');
INSERT INTO public.issues VALUES (2072, 2, 46, 'api odata/DM_NhomSanPhamDichVu', '', '2020-09-14', NULL, 5, 5, 2, 29, 5, 2, '2020-09-14 10:28:21+07', '2020-09-23 14:15:12+07', '2020-09-14', 100, NULL, NULL, 2072, 1, 2, false, '2020-09-23 14:15:12+07');
INSERT INTO public.issues VALUES (2073, 2, 46, 'api odata/DM_SanPhamDichVu', '', '2020-09-14', NULL, 5, 5, 2, 29, 5, 2, '2020-09-14 10:30:37+07', '2020-09-23 14:15:12+07', '2020-09-14', 100, NULL, NULL, 2073, 1, 2, false, '2020-09-23 14:15:12+07');
INSERT INTO public.issues VALUES (2074, 2, 46, 'api Login/GetMenuMobile', '', '2020-09-14', NULL, 5, 5, 2, 29, 5, 2, '2020-09-14 11:34:45+07', '2020-09-23 14:15:12+07', '2020-09-14', 100, NULL, NULL, 2074, 1, 2, false, '2020-09-23 14:15:12+07');
INSERT INTO public.issues VALUES (2075, 2, 46, 'API tạo đơn hàng ', '', '2020-09-16', NULL, 5, 41, 2, 29, 41, 2, '2020-09-15 09:25:12+07', '2020-09-23 14:15:12+07', '2020-09-15', 100, 16, NULL, 2075, 1, 2, false, '2020-09-23 14:15:12+07');
INSERT INTO public.issues VALUES (2076, 2, 45, 'Làm nhỏ icon hiển thị trên bản đồ', '', '2020-09-15', NULL, 3, 12, 2, 23, 12, 4, '2020-09-15 10:12:57+07', '2020-09-16 13:53:32+07', '2020-09-15', 100, NULL, NULL, 2076, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2077, 2, 45, 'Thay đổi tên ''trạm quan trắc'' thành ''điểm quan trắc''', '', '2020-09-15', NULL, 3, 12, 2, 23, 12, 4, '2020-09-15 10:13:52+07', '2020-09-16 11:41:51+07', '2020-09-15', 100, NULL, NULL, 2077, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2078, 2, 45, 'Đổi nền giao diện đăng nhập thành 1 hình liên quan đến bản đồ', '', '2020-09-15', NULL, 3, 12, 2, 23, 12, 4, '2020-09-15 10:14:36+07', '2020-09-16 11:29:55+07', '2020-09-15', 100, NULL, NULL, 2078, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2079, 2, 45, 'Làm nổi bật vị trí trạm được tìm kiếm', '', '2020-09-19', NULL, 5, NULL, 2, 23, 12, 2, '2020-09-15 10:15:29+07', '2020-09-15 10:25:24+07', '2020-09-15', 0, NULL, NULL, 2079, 1, 2, false, '2020-09-15 10:25:24+07');
INSERT INTO public.issues VALUES (2080, 2, 45, 'Làm nổi bật địa bàn tỉnh bình định trên bản đồ', '', '2020-09-16', NULL, 3, 12, 2, 23, 12, 4, '2020-09-15 10:16:11+07', '2020-09-17 10:14:06+07', '2020-09-16', 100, NULL, NULL, 2080, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2081, 2, 45, 'Khi tìm kiếm thành công: chỉ hiển thị những điểm được tìm trên bản đồ', '', '2020-09-16', NULL, 3, 12, 2, 23, 12, 4, '2020-09-15 10:17:10+07', '2020-09-22 08:14:30+07', '2020-09-16', 100, NULL, NULL, 2081, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2082, 2, 45, 'Tạo danh mục loại môi trường', '', '2020-09-16', NULL, 3, NULL, 2, 23, 12, 4, '2020-09-15 10:17:35+07', '2020-09-16 14:14:54+07', '2020-09-16', 100, NULL, NULL, 2082, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2083, 2, 45, 'Chuyển về hệ tọa độ vn2000', '', '2020-09-15', NULL, 3, 12, 2, 23, 12, 3, '2020-09-15 10:18:07+07', '2020-09-16 10:05:44+07', '2020-09-15', 100, NULL, NULL, 2083, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2084, 2, 46, 'API: Bán thẻ QR code', '', '2020-09-16', NULL, 5, 38, 2, 29, 38, 4, '2020-09-15 16:56:21+07', '2020-09-23 14:15:12+07', '2020-09-15', 100, NULL, NULL, 2084, 1, 2, false, '2020-09-23 14:15:12+07');
INSERT INTO public.issues VALUES (2085, 2, 46, 'API Thêm/Cập nhật Sản phẩm', '', '2020-09-17', NULL, 5, 41, 2, 29, 41, 2, '2020-09-16 09:54:57+07', '2020-09-23 14:15:12+07', '2020-09-16', 100, 16, NULL, 2085, 1, 2, false, '2020-09-23 14:15:12+07');
INSERT INTO public.issues VALUES (2086, 2, 46, 'Tạo mã QR code', '', '2020-09-18', NULL, 5, 39, 2, 29, 5, 3, '2020-09-16 14:58:27+07', '2020-09-23 14:15:12+07', '2020-09-18', 100, NULL, NULL, 2086, 1, 2, false, '2020-09-23 14:15:12+07');
INSERT INTO public.issues VALUES (2087, 2, 46, 'Kích hoạt thẻ QR code', '', '2020-09-19', NULL, 5, 39, 2, 29, 5, 3, '2020-09-16 14:58:43+07', '2020-09-23 14:15:12+07', '2020-09-19', 100, NULL, NULL, 2087, 1, 2, false, '2020-09-23 14:15:12+07');
INSERT INTO public.issues VALUES (2088, 2, 46, 'Xuất file in qr code', '', '2020-09-19', NULL, 5, 39, 2, 29, 5, 3, '2020-09-16 14:58:59+07', '2020-09-23 14:15:13+07', '2020-09-19', 100, NULL, NULL, 2088, 1, 2, false, '2020-09-23 14:15:13+07');
INSERT INTO public.issues VALUES (2089, 2, 46, 'API báo cáo số dư thẻ', '', '2020-09-17', NULL, 5, 41, 2, 29, 41, 3, '2020-09-17 07:51:10+07', '2020-09-23 14:15:13+07', '2020-09-17', 100, 8, NULL, 2089, 1, 2, false, '2020-09-23 14:15:13+07');
INSERT INTO public.issues VALUES (2090, 2, 46, 'API báo cáo đơn hàng', '', '2020-09-18', NULL, 5, 41, 2, 29, 41, 3, '2020-09-17 07:51:57+07', '2020-09-23 14:15:13+07', '2020-09-17', 100, 12, NULL, 2090, 1, 2, false, '2020-09-23 14:15:13+07');
INSERT INTO public.issues VALUES (2091, 2, 4, 'Chỉnh sửa phần tin mới trên trang chủ', '', '2020-09-15', NULL, 3, 13, 2, 34, 13, 3, '2020-09-17 15:16:58+07', '2021-02-05 08:54:14+07', '2020-09-14', 100, NULL, NULL, 2091, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2092, 1, 4, 'Trang chi tiết thông tin đầu tư bị sai đường dẫn', '', '2020-09-16', NULL, 3, 13, 2, 34, 13, 3, '2020-09-17 15:18:18+07', '2021-02-05 08:54:14+07', '2020-09-15', 100, NULL, NULL, 2092, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2093, 2, 4, 'Chỉnh sửa lại kho hình load chậm', '', '2020-09-18', NULL, 3, 13, 2, 34, 13, 3, '2020-09-17 15:20:36+07', '2021-02-05 08:54:14+07', '2020-09-17', 100, NULL, NULL, 2093, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2094, 2, 4, 'Chỉnh lại trang thêm sửa bài viết', '', '2020-09-20', NULL, 3, 13, 2, 34, 13, 2, '2020-09-17 15:21:19+07', '2021-02-05 08:54:14+07', '2020-09-17', 100, NULL, NULL, 2094, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2095, 5, 35, '05 Quy hoạch chi tiết khu dân cư số 2 - Đường Hồ Xuân Hương', 'Nhập Liệu', '2020-09-18', NULL, 1, 32, 2, NULL, 33, 2, '2020-09-18 01:07:01+07', '2020-10-08 17:00:39+07', '2020-09-16', 100, NULL, 2013, 2013, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (2096, 5, 35, '06 Quy hoạch chi tiết khu dân cư trục đường CMT8', 'Nhập liệu', '2020-09-18', NULL, 1, 23, 2, NULL, 33, 2, '2020-09-18 01:08:02+07', '2020-10-08 17:00:33+07', '2020-09-16', 100, NULL, 2013, 2013, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (2097, 2, 46, 'Sprint #1 review meeting', '', '2020-09-19', NULL, 5, 5, 2, 29, 5, 2, '2020-09-18 01:14:11+07', '2020-09-23 14:15:13+07', '2020-09-19', 100, NULL, NULL, 2097, 1, 2, false, '2020-09-23 14:15:13+07');
INSERT INTO public.issues VALUES (2098, 2, 46, 'API kích hoạt thẻ', '', '2020-09-18', NULL, 5, 41, 2, 29, 41, 3, '2020-09-18 01:27:51+07', '2020-09-23 14:15:13+07', '2020-09-18', 100, 8, NULL, 2098, 1, 2, false, '2020-09-23 14:15:13+07');
INSERT INTO public.issues VALUES (2099, 5, 35, '07 Quy hoạch chi tiết khu dân cư trung tâm y tế Phước Long', 'Nhập liệu', '2020-09-21', NULL, 1, 29, 2, NULL, 33, 2, '2020-09-18 10:03:43+07', '2020-10-08 17:00:26+07', '2020-09-19', 100, NULL, 2013, 2013, 14, 15, false, NULL);
INSERT INTO public.issues VALUES (2100, 2, 46, 'Hiện số tiền của phiếu', '', '2020-09-19', NULL, 5, 8, 2, 29, 8, 3, '2020-09-19 02:21:52+07', '2020-09-23 14:15:13+07', '2020-09-19', 100, NULL, NULL, 2100, 1, 2, false, '2020-09-23 14:15:13+07');
INSERT INTO public.issues VALUES (2101, 2, 46, 'Mobile - Báo cáo số dư thẻ - Lịch sử nạp', '', '2020-09-23', NULL, 5, 10, 2, 30, 5, 6, '2020-09-19 10:52:45+07', '2020-09-28 08:16:08+07', '2020-09-23', 100, NULL, NULL, 2101, 1, 2, false, '2020-09-28 08:16:08+07');
INSERT INTO public.issues VALUES (2102, 2, 46, 'Mobile - Báo cáo số dư thẻ - Lịch sử sử dụng', '', '2020-09-23', NULL, 5, 10, 2, 30, 5, 4, '2020-09-19 10:53:02+07', '2020-09-28 08:16:08+07', '2020-09-23', 100, NULL, NULL, 2102, 1, 2, false, '2020-09-28 08:16:08+07');
INSERT INTO public.issues VALUES (2103, 2, 46, 'Mobile - Cập nhật thông tin user', '', '2020-09-29', NULL, 5, 10, 2, 31, 5, 6, '2020-09-19 11:13:06+07', '2020-10-03 08:19:06+07', '2020-09-29', 100, NULL, NULL, 2103, 1, 2, false, '2020-10-03 08:19:06+07');
INSERT INTO public.issues VALUES (2104, 2, 46, 'Mobile - Cập nhật ảnh user', '', '2020-09-29', NULL, 5, 10, 2, 31, 5, 7, '2020-09-19 11:21:06+07', '2020-10-07 16:21:52+07', '2020-09-29', 100, NULL, NULL, 2104, 1, 2, false, '2020-10-07 16:21:52+07');
INSERT INTO public.issues VALUES (2105, 2, 46, 'Mobile - Báo cáo doanh thu theo tháng', '', '2020-09-21', NULL, 5, 10, 2, 30, 5, 5, '2020-09-21 14:45:45+07', '2020-09-28 08:16:08+07', '2020-09-21', 100, NULL, NULL, 2105, 1, 2, false, '2020-09-28 08:16:08+07');
INSERT INTO public.issues VALUES (2106, 2, 46, 'Mobile - Báo cáo kết quả kinh doanh', '', '2020-09-28', NULL, 5, 10, 2, 31, 5, 7, '2020-09-21 14:47:29+07', '2020-10-02 09:04:50+07', '2020-09-28', 100, NULL, NULL, 2106, 1, 2, false, '2020-10-02 09:04:50+07');
INSERT INTO public.issues VALUES (2107, 2, 46, 'Mobile - Báo cáo doanh thu bán thẻ', '', '2020-09-21', NULL, 5, 10, 2, 30, 10, 7, '2020-09-21 14:55:58+07', '2020-09-28 08:16:08+07', '2020-09-21', 100, NULL, NULL, 2107, 1, 2, false, '2020-09-28 08:16:08+07');
INSERT INTO public.issues VALUES (2108, 2, 46, 'Báo cáo doanh thu bán thẻ', '', '2020-09-22', NULL, 5, 39, 2, 30, 5, 2, '2020-09-21 15:14:19+07', '2020-09-28 08:16:08+07', '2020-09-22', 100, NULL, NULL, 2108, 1, 2, false, '2020-09-28 08:16:08+07');
INSERT INTO public.issues VALUES (2109, 3, 45, 'Import dữ liệu excel', '317 điểm quan trắc
525 đợt quan trắc
2114 chi tiết', '2020-09-22', NULL, 3, 19, 2, 23, 19, 1, '2020-09-22 14:32:59+07', '2020-09-22 14:33:23+07', '2020-09-15', 100, NULL, NULL, 2109, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2110, 2, 46, 'Bán bàng, cho thuê mặc định là loại đơn hàng 1', '', '2020-09-23', NULL, 5, 41, 2, 30, 5, 2, '2020-09-22 14:46:34+07', '2020-09-28 08:16:08+07', '2020-09-23', 100, NULL, NULL, 2110, 1, 2, false, '2020-09-28 08:16:08+07');
INSERT INTO public.issues VALUES (2111, 2, 46, 'Sử dụng WC mặc định là loại đơn hàng 2', 'Khi mở cửa thiết bị, đồng thời tạo đơn hàng

Với mã sp tương ứng với thiết bị đã cài đặt', '2020-09-23', NULL, 5, 41, 2, 30, 5, 2, '2020-09-22 14:47:36+07', '2020-09-28 08:16:09+07', '2020-09-23', 100, NULL, NULL, 2111, 1, 2, false, '2020-09-28 08:16:09+07');
INSERT INTO public.issues VALUES (2112, 2, 46, 'Cài đặt sản phẩm dịch vụ cho thiết bị', '', '2020-09-24', NULL, 5, 39, 2, 30, 5, 3, '2020-09-22 14:53:08+07', '2020-09-28 08:16:09+07', '2020-09-24', 100, NULL, NULL, 2112, 1, 2, false, '2020-09-28 08:16:09+07');
INSERT INTO public.issues VALUES (2113, 2, 46, 'API Thông tin phiếu', '', '2020-09-22', NULL, 5, 41, 2, 30, 41, 2, '2020-09-22 15:10:52+07', '2020-09-28 08:16:09+07', '2020-09-22', 100, 12, NULL, 2113, 1, 2, false, '2020-09-28 08:16:09+07');
INSERT INTO public.issues VALUES (2114, 2, 46, 'API báo cáo doanh thu theo tháng', '', '2020-09-22', NULL, 5, 41, 2, 30, 41, 3, '2020-09-22 15:11:20+07', '2020-09-28 08:16:09+07', '2020-09-22', 100, 12, NULL, 2114, 1, 2, false, '2020-09-28 08:16:09+07');
INSERT INTO public.issues VALUES (2115, 2, 46, 'Giao diện chính của  chức năng Sổ quỹ tiền mặt', '', '2020-09-23', NULL, 5, 12, 2, 30, 39, 3, '2020-09-22 16:07:47+07', '2020-09-28 08:16:09+07', '2020-09-22', 100, NULL, NULL, 2115, 1, 2, false, '2020-09-28 08:16:09+07');
INSERT INTO public.issues VALUES (2152, 1, 4, 'Sau khi thêm mới khu công nghiệp table không load lại dữ liệu mới', '', '2020-09-27', NULL, 1, 13, 2, 35, 13, 3, '2020-09-25 08:44:42+07', '2021-02-05 08:54:14+07', '2020-09-26', 100, NULL, NULL, 2152, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2153, 1, 4, 'Thống kê số liệu doanh nghiệp sai', '', '2020-09-29', NULL, 3, 13, 2, 36, 13, 7, '2020-09-25 08:45:28+07', '2020-10-01 15:37:25+07', '2020-09-28', 100, NULL, NULL, 2153, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2116, 4, 1, 'Tập huấn, hướng dẫn sử dụng CSDL về giá Sở GD&ĐT + 52 đơn vị trực thuộc', '- Cán bộ hướng dẫn chính: Nghĩa
- Cán bộ trợ giảng: Lê Trần Tiến, Huỳnh Thị Thanh Thảo
- Ngày tập huấn: 09/10/2020 tại hội trường Sở Giáo dục và Đào tạo (08 Trần Phú, Tp. Quy Nhơn)
  + Tổng hợp cơ sở pháp lý (thông tư, QĐ, các văn bản liên quan về giá....) thuộc lĩnh vực giáo dục tại Bình Định.
  + Chuẩn bị nội dung hướng dẫn, tập huấn', '2020-10-09', 9, 3, 9, 2, NULL, 21, 1, '2020-09-23 08:59:32+07', '2020-10-17 08:35:17+07', '2020-09-23', 100, NULL, NULL, 2116, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2117, 2, 46, 'Mobile - Làm lại giao diện trang chủ', '', '2020-09-22', NULL, 5, 10, 2, 30, 10, 6, '2020-09-23 09:08:03+07', '2020-09-28 08:16:09+07', '2020-09-22', 100, NULL, NULL, 2117, 1, 2, false, '2020-09-28 08:16:09+07');
INSERT INTO public.issues VALUES (2118, 4, 28, 'Báo cáo chốt Phần mềm đấu giá QSD đất', '- Hướng dẫn quy trình, nghiệp vụ đấu giá
- Hướng dẫn quy trình, chức năng phần mềm
- Lên kế hoạch triển khai phần mềm
', NULL, NULL, 1, 21, 2, NULL, 21, 0, '2020-09-23 09:22:24+07', '2020-09-23 09:22:24+07', '2020-09-23', 0, NULL, NULL, 2118, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2119, 2, 46, 'API tạo phiếu thu tự động từ đơn hàng', '', '2020-09-24', NULL, 5, 41, 2, 30, 41, 3, '2020-09-23 09:31:42+07', '2020-09-28 08:16:09+07', '2020-09-23', 100, 12, NULL, 2119, 1, 2, false, '2020-09-28 08:16:09+07');
INSERT INTO public.issues VALUES (2123, 2, 46, 'Sửa API: thêm sản phẩm dịch vụ', '', '2020-09-23', NULL, 5, 38, 2, 30, 38, 4, '2020-09-23 10:38:20+07', '2020-09-28 08:16:10+07', '2020-09-23', 100, NULL, NULL, 2123, 1, 2, false, '2020-09-28 08:16:10+07');
INSERT INTO public.issues VALUES (2124, 2, 46, 'Sửa API: cập nhật sản phẩm dịch vụ', '', '2020-09-23', NULL, 5, 38, 2, 30, 38, 4, '2020-09-23 10:39:04+07', '2020-09-28 08:16:10+07', '2020-09-23', 100, NULL, NULL, 2124, 1, 2, false, '2020-09-28 08:16:10+07');
INSERT INTO public.issues VALUES (2125, 2, 46, 'Sửa API: xóa sản phẩm dịch vụ', '', '2020-09-23', NULL, 5, 38, 2, 30, 38, 5, '2020-09-23 10:39:15+07', '2020-09-28 08:16:10+07', '2020-09-23', 100, NULL, NULL, 2125, 1, 2, false, '2020-09-28 08:16:10+07');
INSERT INTO public.issues VALUES (2126, 2, 46, 'API: tạo đơn nhận hàng', '', '2020-09-23', NULL, 5, 38, 2, 30, 38, 7, '2020-09-23 10:41:16+07', '2020-09-28 08:16:10+07', '2020-09-23', 100, NULL, NULL, 2126, 1, 2, false, '2020-09-28 08:16:10+07');
INSERT INTO public.issues VALUES (2127, 2, 46, 'Sửa API: xuất hóa đơn', 'Trừ số lượng tồn trong kho.', '2020-09-24', NULL, 5, 38, 2, 30, 38, 5, '2020-09-23 10:42:25+07', '2020-09-28 08:16:10+07', '2020-09-23', 100, NULL, NULL, 2127, 1, 2, false, '2020-09-28 08:16:10+07');
INSERT INTO public.issues VALUES (2128, 2, 46, 'API: báo cáo xuất nhật tồn kho', '', '2020-09-24', NULL, 5, 38, 2, 30, 38, 4, '2020-09-23 10:42:57+07', '2020-09-28 08:16:10+07', '2020-09-23', 100, NULL, NULL, 2128, 1, 2, false, '2020-09-28 08:16:10+07');
INSERT INTO public.issues VALUES (2129, 2, 46, 'Mobile - Báo cáo sổ quỹ tiền mặt', '', '2020-09-24', NULL, 5, 10, 2, 30, 5, 2, '2020-09-23 11:06:16+07', '2020-09-28 08:16:10+07', '2020-09-24', 100, NULL, NULL, 2129, 1, 2, false, '2020-09-28 08:16:10+07');
INSERT INTO public.issues VALUES (2130, 2, 46, 'Báo cáo sổ quỹ tiền mặt', '', '2020-09-29', NULL, 5, 39, 2, 31, 5, 7, '2020-09-23 11:07:30+07', '2020-10-02 09:04:50+07', '2020-09-29', 100, NULL, NULL, 2130, 1, 2, false, '2020-10-02 09:04:50+07');
INSERT INTO public.issues VALUES (2131, 2, 46, 'API xem thông tin lịch sử nạp/ sử dụng của Phiếu', '', '2020-09-23', NULL, 5, 41, 2, 30, 41, 2, '2020-09-23 13:38:53+07', '2020-09-28 08:16:10+07', '2020-09-23', 100, 8, NULL, 2131, 1, 2, false, '2020-09-28 08:16:10+07');
INSERT INTO public.issues VALUES (2132, 2, 46, 'Tạo đơn trả hàng', '', '2020-09-28', NULL, 5, 8, 2, 31, 5, 4, '2020-09-23 14:12:03+07', '2020-10-07 16:21:52+07', '2020-09-28', 100, NULL, NULL, 2132, 1, 2, false, '2020-10-07 16:21:52+07');
INSERT INTO public.issues VALUES (2134, 2, 46, 'Xóa đơn trả hàng', '', '2020-10-07', NULL, 5, 8, 2, 32, 5, 10, '2020-09-23 14:12:28+07', '2020-10-10 12:53:50+07', '2020-10-07', 100, NULL, NULL, 2134, 1, 2, false, '2020-10-10 12:53:50+07');
INSERT INTO public.issues VALUES (2135, 2, 46, 'API tạo phiếu thu', '', '2020-09-23', NULL, 5, 41, 2, 30, 41, 2, '2020-09-23 15:57:35+07', '2020-09-28 08:16:10+07', '2020-09-23', 100, 8, NULL, 2135, 1, 2, false, '2020-09-28 08:16:10+07');
INSERT INTO public.issues VALUES (2136, 2, 46, 'API tạo phiếu chi ', '', '2020-09-24', NULL, 5, 41, 2, 30, 41, 3, '2020-09-23 15:58:13+07', '2020-09-28 08:16:10+07', '2020-09-24', 100, 8, NULL, 2136, 1, 2, false, '2020-09-28 08:16:10+07');
INSERT INTO public.issues VALUES (2137, 4, 32, 'Thiết kế brochure phần mềm Đấu giá', '', '2020-09-28', NULL, 3, 14, 2, NULL, 21, 2, '2020-09-24 08:49:06+07', '2020-11-21 09:37:15+07', '2020-09-24', 100, NULL, NULL, 2137, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2138, 4, 32, 'Thiết kế brochure phần mềm quản lý bán hàng', '', '2020-09-30', NULL, 3, 14, 2, NULL, 21, 2, '2020-09-24 08:49:59+07', '2020-11-21 09:37:29+07', '2020-09-25', 100, NULL, NULL, 2138, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2139, 4, 28, 'Làm hướng dẫn sử dụng', '', '2020-09-26', NULL, 1, 9, 2, NULL, 21, 0, '2020-09-24 09:30:53+07', '2020-09-24 09:30:53+07', '2020-09-24', 0, NULL, NULL, 2139, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2140, 2, 46, 'Danh mục Liên hệ', '', '2020-09-24', NULL, 5, 39, 2, 30, 39, 2, '2020-09-24 09:39:25+07', '2020-09-28 08:16:10+07', '2020-09-24', 100, NULL, NULL, 2140, 1, 2, false, '2020-09-28 08:16:10+07');
INSERT INTO public.issues VALUES (2141, 2, 46, 'api sổ quỹ tiền mặt', '', '2020-09-24', NULL, 5, 41, 2, 30, 5, 4, '2020-09-24 10:20:53+07', '2020-09-28 08:16:11+07', '2020-09-24', 100, NULL, NULL, 2141, 1, 2, false, '2020-09-28 08:16:11+07');
INSERT INTO public.issues VALUES (2143, 5, 35, '8 Quy hoạch chi tiết khu dân cư số 5- Phước An', 'Nhập liệu', '2020-09-22', NULL, 1, 32, 2, NULL, 33, 2, '2020-09-25 08:10:14+07', '2020-10-08 17:00:20+07', '2020-09-19', 100, NULL, 2013, 2013, 16, 17, false, NULL);
INSERT INTO public.issues VALUES (2144, 5, 35, '9 Quy hoạch chi tiết khu tái định cư sân bay Phước Bình', 'Xử lý bản đồ và nhập liệu', '2020-09-23', NULL, 1, 33, 2, NULL, 33, 0, '2020-09-25 08:11:33+07', '2020-09-25 08:11:33+07', '2020-09-21', 100, NULL, 2013, 2013, 18, 19, false, NULL);
INSERT INTO public.issues VALUES (2145, 5, 35, '10 Quy hoạch chi tiết khu dân cư số 8', 'Nhập liệu', '2020-09-24', NULL, 1, 23, 2, NULL, 33, 2, '2020-09-25 08:12:41+07', '2020-10-08 17:00:10+07', '2020-09-21', 100, NULL, 2013, 2013, 20, 21, false, NULL);
INSERT INTO public.issues VALUES (2146, 5, 35, '11 Quy hoạch chi tiết khu dân cư Phước Bình', 'Nhập liệu', '2020-09-23', NULL, 1, 29, 2, NULL, 33, 1, '2020-09-25 08:14:36+07', '2020-10-08 17:00:00+07', '2020-09-21', 100, NULL, 2013, 2013, 22, 23, false, NULL);
INSERT INTO public.issues VALUES (2147, 5, 35, '12 Quy hoạch chi tiết trung tâm GD-VH-TDTT-Y tế khu vực xã Sơn Giang', 'Nhập liệu', '2020-09-25', NULL, 1, 32, 2, NULL, 33, 2, '2020-09-25 08:15:24+07', '2020-10-08 16:59:53+07', '2020-09-22', 100, NULL, 2013, 2013, 24, 25, false, NULL);
INSERT INTO public.issues VALUES (2148, 5, 35, '13 Quy hoạch chi tiết trung tâm TDTT phường Sơn Giang', 'Nhập liệu', '2020-09-24', NULL, 1, 29, 2, NULL, 33, 1, '2020-09-25 08:16:28+07', '2020-10-08 16:59:21+07', '2020-09-23', 100, NULL, 2013, 2013, 26, 27, false, NULL);
INSERT INTO public.issues VALUES (2149, 5, 35, '14 Quy hoạch chi tiết trung tâm văn hóa TDTT xã Long Giang', 'Nhập liệu: Nguyễn Trung Cường', '2020-09-21', NULL, 1, 33, 2, NULL, 33, 2, '2020-09-25 08:17:41+07', '2020-10-08 17:00:46+07', '2020-09-14', 100, NULL, 2013, 2013, 28, 29, false, NULL);
INSERT INTO public.issues VALUES (2150, 2, 46, 'API Cập nhật đơn hàng', '', '2020-09-25', NULL, 5, 41, 2, 30, 41, 2, '2020-09-25 08:38:44+07', '2020-09-28 08:16:11+07', '2020-09-25', 100, 12, NULL, 2150, 1, 2, false, '2020-09-28 08:16:11+07');
INSERT INTO public.issues VALUES (2151, 1, 4, 'Quy hoach sử dụng đất sửa thông tin bị sai', '', '2020-09-27', NULL, 1, 13, 2, 35, 13, 3, '2020-09-25 08:43:54+07', '2021-02-05 08:54:14+07', '2020-09-26', 100, NULL, NULL, 2151, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2154, 2, 46, 'Danh mục Kho', '', '2020-09-25', NULL, 5, 39, 2, 30, 39, 2, '2020-09-25 08:47:42+07', '2020-09-28 08:16:11+07', '2020-09-25', 100, NULL, NULL, 2154, 1, 2, false, '2020-09-28 08:16:11+07');
INSERT INTO public.issues VALUES (2155, 2, 46, 'Danh mục Nhà cung cấp', '', '2020-09-25', NULL, 5, 39, 2, 30, 39, 3, '2020-09-25 08:48:01+07', '2020-09-28 08:16:11+07', '2020-09-25', 100, NULL, NULL, 2155, 1, 2, false, '2020-09-28 08:16:11+07');
INSERT INTO public.issues VALUES (2156, 1, 4, 'Xem chi tiết doanh nghiệp', '', '2020-09-27', NULL, 1, 13, 2, 35, 13, 3, '2020-09-25 08:54:51+07', '2021-02-05 08:54:14+07', '2020-09-26', 100, NULL, NULL, 2156, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2157, 1, 4, 'Tạo qhsdd, cho doanh nghiệp thuê đất tính lại diện tích thuê', '', '2020-09-27', NULL, 3, 13, 2, 35, 13, 3, '2020-09-25 09:01:36+07', '2020-09-28 08:18:03+07', '2020-09-26', 100, NULL, NULL, 2157, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2158, 1, 4, 'Tìm kiếm diện tích ', '', '2020-09-29', NULL, 3, 13, 2, 36, 13, 4, '2020-09-25 09:12:51+07', '2020-09-28 11:04:42+07', '2020-09-28', 100, NULL, NULL, 2158, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2159, 1, 4, 'Tìm kiếm theo huyện thành phố', '', '2020-09-29', NULL, 3, 13, 2, 36, 13, 4, '2020-09-25 09:14:20+07', '2020-09-28 11:04:42+07', '2020-09-28', 100, NULL, NULL, 2159, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2160, 1, 4, 'Đổi trạng thái điểm đầu tư sau khi doanh nghiệp đầu tư', '', '2020-09-27', NULL, 3, 13, 2, 35, 13, 3, '2020-09-25 09:19:28+07', '2020-09-28 08:18:37+07', '2020-09-26', 100, NULL, NULL, 2160, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2161, 1, 4, 'Thêm mới, chỉnh sửa bài viết không lưu được hình ảnh', '', '2020-09-29', NULL, 3, 13, 2, 36, 13, 6, '2020-09-25 09:54:27+07', '2021-02-05 08:54:15+07', '2020-09-28', 100, NULL, NULL, 2161, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2162, 1, 4, 'Khi thêm mới quy hoạch sử dụng đất, MucDichSDD không lưu mã sdd', '', '2020-09-29', NULL, 3, 13, 2, 36, 13, 5, '2020-09-25 10:34:10+07', '2021-02-05 08:54:15+07', '2020-09-28', 100, NULL, NULL, 2162, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2163, 1, 4, 'Chỉnh sửa thông tin quy hoạch sử dụng đất: MucDichSDD phải lấy domain', '', '2020-09-29', NULL, 3, 13, 2, 36, 13, 5, '2020-09-25 10:35:13+07', '2021-02-05 08:54:15+07', '2020-09-28', 100, NULL, NULL, 2163, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2164, 2, 46, 'API xem chi tiết phiếu thu chi', '', '2020-09-26', NULL, 5, 41, 2, 30, 41, 2, '2020-09-25 10:55:22+07', '2020-09-28 08:16:11+07', '2020-09-26', 100, 8, NULL, 2164, 1, 2, false, '2020-09-28 08:16:11+07');
INSERT INTO public.issues VALUES (2165, 1, 4, 'Xóa KCN, CCN, DDT chưa xóa các thông tin liên quan ở các bảng khác', '', '2020-09-27', NULL, 3, 13, 2, 35, 13, 2, '2020-09-25 11:10:17+07', '2020-09-28 08:31:45+07', '2020-09-25', 100, NULL, NULL, 2165, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2166, 2, 46, 'Tạo phiếu nhập hàng', '', '2020-09-26', NULL, 5, 39, 2, 30, 39, 2, '2020-09-25 13:05:16+07', '2020-09-28 08:16:11+07', '2020-09-25', 100, NULL, NULL, 2166, 1, 2, false, '2020-09-28 08:16:11+07');
INSERT INTO public.issues VALUES (2167, 2, 46, 'Báo cáo tồn kho', '', '2020-09-28', NULL, 5, 39, 2, 31, 5, 5, '2020-09-25 13:54:58+07', '2020-10-02 09:04:51+07', '2020-09-28', 100, NULL, NULL, 2167, 1, 2, false, '2020-10-02 09:04:51+07');
INSERT INTO public.issues VALUES (2168, 2, 46, 'Báo cáo nhập xuất tồn', '', '2020-09-28', NULL, 5, 39, 2, 31, 5, 4, '2020-09-25 13:55:16+07', '2020-10-02 09:04:51+07', '2020-09-28', 100, NULL, NULL, 2168, 1, 2, false, '2020-10-02 09:04:51+07');
INSERT INTO public.issues VALUES (2169, 2, 46, 'Mobile - Chi tiết từng phiếu trong sổ quỹ tiền mặt', '', '2020-09-25', NULL, 5, 10, 2, 30, 10, 3, '2020-09-25 16:40:07+07', '2020-09-28 08:16:11+07', '2020-09-25', 100, NULL, NULL, 2169, 1, 2, false, '2020-09-28 08:16:11+07');
INSERT INTO public.issues VALUES (2170, 2, 46, 'API hủy đơn hàng', '', '2020-09-26', NULL, 5, 41, 2, 30, 41, 2, '2020-09-26 08:48:29+07', '2020-09-28 08:16:11+07', '2020-09-26', 100, 8, NULL, 2170, 1, 2, false, '2020-09-28 08:16:11+07');
INSERT INTO public.issues VALUES (2171, 2, 46, 'API Tìm kiếm thông tin chi tiết trong Sổ quỹ ', '', '2020-09-27', NULL, 5, 41, 2, 30, 41, 4, '2020-09-26 08:52:19+07', '2020-09-28 08:16:11+07', '2020-09-26', 100, 8, NULL, 2171, 1, 2, false, '2020-09-28 08:16:11+07');
INSERT INTO public.issues VALUES (2172, 1, 4, 'Form thêm mới điểm đầu tư không thể hiện trường Tình trạng đầu tư, mặc định khi thêm mới là DKG', '', '2020-09-29', NULL, 3, 37, 2, 36, 13, 5, '2020-09-26 11:28:38+07', '2020-09-30 09:52:12+07', '2020-09-28', 100, NULL, NULL, 2172, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2173, 1, 4, 'Thêm mới khu công nghiệp (click để xem chi tiết)', 'Không thể hiện các trường: Tỷ lệ lấp đầy, Diện tích đất quy hoạch, diện tích đất đã cho thuê, diện tích đất còn trống trên form. Mặc định khi thêm mới là null.
Trường Lĩnh vực, ngành nghề đầy tư thay input bằng textarea có rows = 5.
Trường Giá thuê chi tiết là text không phải number.
', '2020-09-29', NULL, 3, 37, 2, 36, 13, 3, '2020-09-26 11:36:13+07', '2020-09-30 09:52:40+07', '2020-09-28', 100, NULL, NULL, 2173, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2174, 1, 4, 'Chỉnh sửa thông tin KCN, CCN (click xem chi tiết)', 'Các trường: tỷ lệ lấp đầy, diện tích đất còn trống, diện tích đất đã cho thuê, diện tích đất quy hoạch chỉ cho đọc (readonly).
Ngành nghề đầu tư input chuyển sang textarea rows=5.
Giá cho thuê kiểu text.', '2020-09-29', NULL, 3, 37, 2, 36, 13, 3, '2020-09-26 13:12:23+07', '2020-09-30 09:53:40+07', '2020-09-28', 100, NULL, NULL, 2174, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2175, 1, 4, 'Chỉnh sửa thông tin điểm đầu tư (click xem chi tiết)', 'Tình trạng đầu tư readonly.
Tổng mục đầu tư dự kiến -> Tổng mức đầu tư dự kiến. Input type=''number''', '2020-09-29', NULL, 3, 37, 2, 36, 13, 3, '2020-09-26 13:28:09+07', '2020-09-30 09:53:13+07', '2020-09-28', 100, NULL, NULL, 2175, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2176, 1, 4, 'Thêm mới quy hoạch điểm đầu tư thành công table không load lại dữ liệu vừa thêm', '', '2020-09-29', NULL, 3, 13, 2, 36, 13, 5, '2020-09-26 14:42:44+07', '2021-02-05 08:54:15+07', '2020-09-28', 100, NULL, NULL, 2176, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2177, 1, 4, 'Điểm đầu tư thêm mới doanh nghiệp không load lại bảng', '', '2020-09-29', NULL, 3, 13, 2, 36, 13, 5, '2020-09-26 14:43:31+07', '2021-02-05 08:54:15+07', '2020-09-28', 100, NULL, NULL, 2177, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2178, 2, 46, 'Sổ quỹ tiền măt: Chi tiết phiếu thu, chi', '', NULL, NULL, 5, 12, 2, 30, 12, 2, '2020-09-26 16:51:51+07', '2020-09-28 08:16:11+07', '2020-09-26', 100, NULL, NULL, 2178, 1, 2, false, '2020-09-28 08:16:11+07');
INSERT INTO public.issues VALUES (2179, 2, 46, 'Sổ quỹ tiền măt: Chức năng tìm kiếm', '', '2020-09-26', NULL, 5, 12, 2, 30, 12, 2, '2020-09-26 16:53:47+07', '2020-09-28 08:16:12+07', '2020-09-26', 100, NULL, NULL, 2179, 1, 2, false, '2020-09-28 08:16:12+07');
INSERT INTO public.issues VALUES (2180, 2, 46, 'Sổ quỹ tiền măt: Chức năng cập nhật phiếu thu, chi', '', '2020-09-28', NULL, 5, 12, 2, 31, 12, 4, '2020-09-26 16:54:54+07', '2020-10-02 09:04:51+07', '2020-09-28', 100, NULL, NULL, 2180, 1, 2, false, '2020-10-02 09:04:51+07');
INSERT INTO public.issues VALUES (2181, 2, 46, 'Sổ quỹ tiền măt: Viết lại component in phiếu để dùng chung', '', '2020-09-28', NULL, 5, 12, 2, 31, 12, 4, '2020-09-26 16:55:47+07', '2020-10-02 09:04:51+07', '2020-09-28', 100, NULL, NULL, 2181, 1, 2, false, '2020-10-02 09:04:51+07');
INSERT INTO public.issues VALUES (2182, 2, 46, 'API Xuất báo cáo sổ quỹ tiền mặt', '', '2020-09-28', NULL, 5, 41, 2, 31, 41, 3, '2020-09-28 08:00:22+07', '2020-10-02 09:04:51+07', '2020-09-28', 100, 8, NULL, 2182, 1, 2, false, '2020-10-02 09:04:51+07');
INSERT INTO public.issues VALUES (2183, 2, 46, 'Giao diện tạo phiếu chuyển kho', '', '2020-09-30', NULL, 5, 39, 2, 31, 5, 5, '2020-09-28 08:25:10+07', '2020-10-02 09:04:51+07', '2020-09-29', 100, NULL, NULL, 2183, 1, 2, false, '2020-10-02 09:04:51+07');
INSERT INTO public.issues VALUES (2185, 2, 46, 'Xem phiếu nhập kho', '', '2020-09-28', NULL, 5, 39, 2, 31, 39, 2, '2020-09-28 08:56:36+07', '2020-10-02 09:04:52+07', '2020-09-28', 100, NULL, NULL, 2185, 1, 2, false, '2020-10-02 09:04:52+07');
INSERT INTO public.issues VALUES (2186, 2, 46, 'Sửa phiếu nhập kho', '', '2020-09-28', NULL, 5, 39, 2, 31, 39, 2, '2020-09-28 08:56:59+07', '2020-10-02 09:04:52+07', '2020-09-28', 100, NULL, NULL, 2186, 1, 2, false, '2020-10-02 09:04:52+07');
INSERT INTO public.issues VALUES (2187, 2, 46, 'API cập nhật phiếu thu/chi', '', '2020-09-28', NULL, 5, 41, 2, 31, 41, 2, '2020-09-28 10:14:02+07', '2020-10-02 09:04:52+07', '2020-09-28', 100, 12, NULL, 2187, 1, 2, false, '2020-10-02 09:04:52+07');
INSERT INTO public.issues VALUES (2188, 1, 4, 'Điểm đầu tư: dialog thêm mới quy hoạch sử dụng đất, kiểm tra khi chưa nhập đủ thông tin thì bị tắt', '', '2020-09-29', NULL, 3, 13, 2, 36, 13, 1, '2020-09-28 11:09:35+07', '2020-09-29 14:39:47+07', '2020-09-28', 100, NULL, NULL, 2188, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2189, 1, 4, 'Thêm mới quy hoạch sử dụng đất cho KCN, CCN thiếu trường Lĩnh vực đầu tư', '', '2020-09-29', NULL, 3, 13, 2, 36, 13, 1, '2020-09-28 11:11:18+07', '2020-09-29 14:39:47+07', '2020-09-28', 100, NULL, NULL, 2189, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2190, 2, 46, 'API-Mobile-Báo cáo kết quả kinh doanh', '', '2020-09-30', NULL, 5, 19, 2, 31, 19, 4, '2020-09-28 13:16:26+07', '2020-10-02 09:04:52+07', '2020-09-28', 100, 16, NULL, 2190, 1, 2, false, '2020-10-02 09:04:52+07');
INSERT INTO public.issues VALUES (2191, 1, 4, 'Thêm mới khu, cụm công nghiệp thiếu trường Quận huyện, Phường xã', '', '2020-09-29', NULL, 3, 37, 2, 36, 13, 3, '2020-09-28 13:38:02+07', '2020-09-29 13:23:58+07', '2020-09-28', 100, NULL, NULL, 2191, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2192, 2, 46, 'Mobile - Báo cáo nhập xuất tồn', '', '2020-09-29', NULL, 5, 10, 2, 31, 10, 5, '2020-09-28 16:12:30+07', '2020-10-02 09:04:52+07', '2020-09-29', 100, NULL, NULL, 2192, 1, 2, false, '2020-10-02 09:04:52+07');
INSERT INTO public.issues VALUES (2193, 2, 46, 'Mobile - Báo cáo tồn kho', '', '2020-09-30', NULL, 5, 10, 2, 31, 10, 5, '2020-09-28 16:12:50+07', '2020-10-02 09:04:52+07', '2020-09-30', 100, NULL, NULL, 2193, 1, 2, false, '2020-10-02 09:04:52+07');
INSERT INTO public.issues VALUES (2197, 2, 47, 'Danh mục dự án', '', '2020-10-05', NULL, 1, NULL, 2, 39, 15, 2, '2020-09-29 11:28:38+07', '2020-10-06 10:49:20+07', '2020-10-05', 0, NULL, NULL, 2197, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2198, 2, 47, 'Khu trong dự án', '', '2020-10-05', NULL, 1, NULL, 2, 39, 15, 2, '2020-09-29 11:28:58+07', '2020-10-06 10:49:20+07', '2020-10-05', 0, NULL, NULL, 2198, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2199, 2, 47, 'Danh mục tòa nhà', '', '2020-10-05', NULL, 1, NULL, 2, 39, 15, 2, '2020-09-29 11:29:25+07', '2020-10-06 10:49:21+07', '2020-10-05', 0, NULL, NULL, 2199, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2200, 1, 4, 'Thêm trường Huyện/Tp, Phường/xã cho dialog sửa thông tin khu kinh tế, KCN, CCN', '', '2020-09-30', NULL, 1, 37, 2, 36, 13, 1, '2020-09-29 13:36:21+07', '2020-09-30 09:50:11+07', '2020-09-29', 90, NULL, NULL, 2200, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2201, 2, 46, 'API cập nhật thông tin user', '', '2020-09-29', NULL, 5, 41, 2, 31, 41, 2, '2020-09-29 15:54:28+07', '2020-10-02 09:04:52+07', '2020-09-29', 100, 12, NULL, 2201, 1, 2, false, '2020-10-02 09:04:52+07');
INSERT INTO public.issues VALUES (2202, 3, 43, 'Thực hiện xử lý 200 file văn bản', 'Tổng hợp, phân tích, xử lý âm thanh', '2020-10-09', NULL, 1, 33, 2, NULL, 33, 7, '2020-09-29 16:42:17+07', '2020-10-08 14:05:12+07', '2020-09-29', 75, NULL, NULL, 2202, 1, 10, false, NULL);
INSERT INTO public.issues VALUES (2203, 3, 43, 'Cắt câu : 40 văn bản chủ đề "Kinh Tế - Xã Hội"', 'Phân tích xử lý cắt câu văn bản Tiếng Việt', '2020-10-07', NULL, 1, 32, 2, NULL, 33, 2, '2020-09-29 16:51:58+07', '2020-10-07 13:35:13+07', '2020-09-29', 100, NULL, 2202, 2202, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2204, 2, 46, 'Tạo phiếu kiểm kho', '', '2020-10-07', NULL, 5, 39, 2, 32, 39, 12, '2020-09-29 16:52:42+07', '2020-10-10 12:53:50+07', '2020-10-07', 100, NULL, NULL, 2204, 1, 2, false, '2020-10-10 12:53:50+07');
INSERT INTO public.issues VALUES (2205, 3, 43, 'Cắt câu : 40 văn bản chủ đề "Khuyến Nông"', 'Phân tích xử lý cắt câu văn bản Tiếng Việt', '2020-10-07', NULL, 1, 23, 2, NULL, 33, 0, '2020-09-29 16:53:00+07', '2020-09-29 16:53:00+07', '2020-09-29', 0, NULL, 2202, 2202, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (2206, 3, 43, 'Cắt câu : 45 văn bản chủ đề "Khoa Học - Kỹ Thuật"', 'Phân tích xử lý cắt câu văn bản Tiếng Việt', '2020-10-08', NULL, 1, 29, 2, NULL, 33, 2, '2020-09-29 16:54:31+07', '2020-10-08 14:05:12+07', '2020-09-29', 100, NULL, 2202, 2202, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (2207, 3, 43, 'Cắt câu : 40 văn bản chủ đề "Văn Hóa - Giáo Dục"', 'Phân tích xử lý cắt câu văn bản Tiếng Việt', '2020-10-09', NULL, 1, 24, 2, NULL, 33, 1, '2020-09-29 16:55:37+07', '2020-10-07 13:34:49+07', '2020-09-29', 100, NULL, 2202, 2202, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (2208, 2, 46, 'API tạo đơn trả hàng', '', '2020-10-01', NULL, 5, 41, 2, 31, 41, 2, '2020-09-30 08:00:18+07', '2020-10-02 09:04:52+07', '2020-09-30', 100, 16, NULL, 2208, 1, 2, false, '2020-10-02 09:04:52+07');
INSERT INTO public.issues VALUES (2209, 2, 46, 'api fix tạo đơn hàng, trừ kho', '', '2020-09-30', NULL, 5, 38, 2, 31, 5, 2, '2020-09-30 08:53:02+07', '2020-10-02 09:04:53+07', '2020-09-30', 100, NULL, NULL, 2209, 1, 2, false, '2020-10-02 09:04:53+07');
INSERT INTO public.issues VALUES (2210, 2, 46, 'api fix cập nhật đơn hàng', '', '2020-09-30', NULL, 5, 38, 2, 31, 5, 3, '2020-09-30 08:54:21+07', '2020-10-02 09:04:53+07', '2020-09-30', 100, NULL, NULL, 2210, 1, 2, false, '2020-10-02 09:04:53+07');
INSERT INTO public.issues VALUES (2211, 2, 46, 'api fix hủy đơn hàng', '', '2020-09-30', NULL, 5, 38, 2, 31, 5, 3, '2020-09-30 08:55:09+07', '2020-10-02 09:04:53+07', '2020-09-30', 100, NULL, NULL, 2211, 1, 2, false, '2020-10-02 09:04:53+07');
INSERT INTO public.issues VALUES (2212, 2, 46, 'api tạo phiếu chuyển kho', '', '2020-09-30', NULL, 5, 5, 2, 31, 5, 3, '2020-09-30 08:56:42+07', '2020-10-02 09:04:53+07', '2020-09-30', 100, NULL, NULL, 2212, 1, 2, false, '2020-10-02 09:04:53+07');
INSERT INTO public.issues VALUES (2213, 2, 46, 'api tạo phiếu xuất hàng từ phiếu chuyển kho', '', '2020-10-05', NULL, 5, 38, 2, 32, 5, 6, '2020-09-30 08:57:53+07', '2020-10-07 08:19:59+07', '2020-10-05', 100, NULL, NULL, 2213, 1, 2, false, '2020-10-07 08:19:59+07');
INSERT INTO public.issues VALUES (2215, 2, 46, 'api tạo đơn hàng trả về model để in phiếu', '', '2020-09-30', NULL, 5, 38, 2, 31, 5, 5, '2020-09-30 09:07:15+07', '2020-10-02 09:04:53+07', '2020-09-30', 100, NULL, NULL, 2215, 1, 2, false, '2020-10-02 09:04:53+07');
INSERT INTO public.issues VALUES (2216, 2, 46, 'fix api thêm sản phẩm', 'TrangThaiTonKho
TrangThaiChoThue
...', '2020-09-30', NULL, 5, 41, 2, 31, 5, 2, '2020-09-30 09:11:03+07', '2020-10-02 09:04:53+07', '2020-09-30', 100, NULL, NULL, 2216, 1, 2, false, '2020-10-02 09:04:53+07');
INSERT INTO public.issues VALUES (2217, 2, 46, 'Dashboard biểu đồ doanh thu', '', '2020-10-01', NULL, 5, 12, 2, 31, 5, 7, '2020-09-30 09:14:06+07', '2020-10-17 11:49:33+07', '2020-09-30', 100, NULL, NULL, 2217, 1, 2, false, '2020-10-05 09:39:09+07');
INSERT INTO public.issues VALUES (2218, 2, 46, 'api biểu đồ doanh thu', '', '2020-10-01', NULL, 5, 19, 2, 31, 5, 3, '2020-09-30 09:17:55+07', '2020-10-02 09:04:53+07', '2020-10-01', 100, NULL, NULL, 2218, 1, 2, false, '2020-10-02 09:04:53+07');
INSERT INTO public.issues VALUES (2219, 2, 46, 'api thống kê ngắn trong ngày', '', '2020-10-01', NULL, 5, 19, 2, 31, 5, 2, '2020-09-30 09:19:31+07', '2020-10-02 09:04:54+07', '2020-10-01', 100, NULL, NULL, 2219, 1, 2, false, '2020-10-02 09:04:54+07');
INSERT INTO public.issues VALUES (2220, 2, 46, 'api thống kê ngắn các doanh thu', '', '2020-10-02', NULL, 5, 19, 2, 31, 5, 2, '2020-09-30 09:19:59+07', '2020-10-03 08:19:06+07', '2020-10-02', 100, NULL, NULL, 2220, 1, 2, false, '2020-10-03 08:19:06+07');
INSERT INTO public.issues VALUES (2221, 2, 46, 'api cảnh báo tồn kho', 'lọc theo chi nhánh', '2020-10-03', NULL, 5, 19, 2, 31, 5, 3, '2020-09-30 09:20:30+07', '2020-10-05 09:38:26+07', '2020-10-02', 100, 8, NULL, 2221, 1, 2, false, '2020-10-05 09:38:26+07');
INSERT INTO public.issues VALUES (2555, 2, 4, 'Xem, sửa quy hoạch sử dụng đất', '', '2020-10-20', NULL, 3, 13, 2, 49, 13, 1, '2020-10-23 16:14:16+07', '2020-10-24 08:49:15+07', '2020-10-19', 100, NULL, 2550, 2550, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (2222, 1, 4, 'Chỉnh lại biểu đồ màu diện tích đất còn trống, đã cho thuê trong xem chi tiết giống với màu thống kê tổng bên ngoài', '', '2020-10-01', NULL, 3, 37, 2, 36, 13, 5, '2020-09-30 09:33:45+07', '2020-10-01 16:30:18+07', '2020-09-30', 100, NULL, NULL, 2222, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2223, 2, 4, 'Thêm mục khu kinh tế trên trang chủ', '', '2020-10-07', NULL, 3, 13, 2, 37, 13, 4, '2020-09-30 09:34:13+07', '2021-02-05 08:54:15+07', '2020-10-05', 100, NULL, NULL, 2223, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2224, 2, 4, 'Số liệu thống kê mời gọi đầu tư trên banner trang chủ', '', '2020-10-07', NULL, 3, 37, 2, 37, 13, 4, '2020-09-30 09:34:41+07', '2020-10-05 14:33:36+07', '2020-10-05', 100, NULL, NULL, 2224, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2225, 2, 4, 'Tìm kiếm chia ra đã mời gọi, đang mời gọi, tất cả', '', '2020-10-14', NULL, 3, 13, 2, 45, 13, 6, '2020-09-30 09:35:21+07', '2020-10-19 08:27:02+07', '2020-10-13', 100, NULL, NULL, 2225, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2226, 2, 4, 'Khu công nghiệp becamex trong khu kinh tế', '', '2020-10-01', NULL, 3, 13, 2, 36, 13, 3, '2020-09-30 09:35:46+07', '2021-02-05 08:54:15+07', '2020-09-30', 100, NULL, NULL, 2226, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2227, 2, 4, 'Bổ sung thêm trường nội dung', '', '2020-10-01', NULL, 3, 37, 2, 36, 13, 3, '2020-09-30 09:36:13+07', '2020-10-01 16:29:56+07', '2020-09-30', 100, NULL, NULL, 2227, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2229, 2, 4, 'Xuất danh mục dự án đã đầu tư trong nước và nước ngoài', '', '2020-10-07', NULL, 3, 13, 2, 37, 13, 6, '2020-09-30 09:37:24+07', '2021-02-05 08:54:15+07', '2020-10-05', 100, NULL, 2230, 2230, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2230, 2, 4, 'Thêm mục thống kê báo tất cả', '', '2020-10-14', NULL, 1, 13, 2, 37, 13, 19, '2020-09-30 09:38:06+07', '2020-10-16 13:23:45+07', '2020-10-05', 100, NULL, NULL, 2230, 1, 22, false, NULL);
INSERT INTO public.issues VALUES (2231, 2, 4, 'thêm tìm kiếm khu vực khác thể hiện dự đang mời gọi trên địa bàn huyện/tp, phường xã', '', '2020-10-07', NULL, 3, 13, 2, 37, 13, 3, '2020-09-30 09:40:22+07', '2020-10-07 10:21:36+07', '2020-10-05', 100, NULL, NULL, 2231, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2232, 1, 46, 'Lỗi Tạo mã QR Code ', 'Xác minh chức năng "Tạo mã QR Code" không thành công. Khi người dùng nhập số thẻ cần tạo không hợp lệ và Click "Tạo thẻ"

*Các Bước Thực Hiện:
  1. Click "Tạo thẻ QR Code"
  2. Nhập không hợp lệ số thẻ cần tạo
  3. Click "Tạo thẻ"

*Kết Qủa Mong Đợi: 
  Hiển thị thông báo lỗi và hiển thị số thẻ được tạo trong danh sách

*Kết Qủa Thực Tế:
  Hiển thị thông báo thành công và không hiển thị số thẻ được tạo trong danh sách

*Ví Dụ:
  nhập số lượng thẻ cần tạo là: -1
', '2020-10-12', NULL, 5, 39, 2, 38, 40, 8, '2020-09-30 10:22:16+07', '2020-10-17 11:51:41+07', '2020-10-12', 100, NULL, NULL, 2232, 1, 2, false, '2020-10-03 08:37:52+07');
INSERT INTO public.issues VALUES (2233, 1, 46, 'Lỗi Kích hoạt thẻ Quản lý thẻ', '"Xác minh chức năng "Kích hoạt thẻ" không thành công. Khi người dùng nhập số thẻ cần kích hoạt không hợp lệ và Click "Kích hoạt thẻ"

*Các Bước Thực Hiện: 
  1. Click "Kích hoạt thẻ"
  2. Nhập số thẻ cần kích hoạt
  3. Click "Kích hoạt thẻ"

*Kết Qủa Mong Đợi:
  Hiển thị thông báo lỗi và kích hoạt thẻ không thành công.

*Kết Qủa Thực Tế:
  Hiển thị thông báo thành công và kích hoạt thẻ không thành công.

*Ví dụ:
  Nhập số lượng thẻ cần kích hoạt là: -1
', '2020-10-12', NULL, 5, 39, 2, 38, 40, 7, '2020-09-30 10:31:42+07', '2020-10-17 11:51:41+07', '2020-10-12', 100, NULL, NULL, 2233, 1, 2, false, '2020-10-03 08:37:52+07');
INSERT INTO public.issues VALUES (2234, 2, 46, 'API-Báo cáo kết quả kinh doanh', '', '2020-10-01', NULL, 5, 19, 2, 31, 19, 3, '2020-09-30 10:35:28+07', '2020-10-03 08:19:06+07', '2020-09-30', 100, 16, NULL, 2234, 1, 2, false, '2020-10-03 08:19:06+07');
INSERT INTO public.issues VALUES (2235, 1, 46, 'Lỗi Xuất file in Quản lý thẻ', 'Xác minh chức năng "Xuất file in" không thành công. Khi người dùng  nhập số thẻ cần in không hợp lệ

*Các Bước Thực Hiện:
   1. Click "Xuất file in"
   2. Nhập không hợp lệ số thẻ cần in
   3. Click "Xác nhận"

*Kết Qủa Mong Đợi:
   Hiện thị thông báo lỗi và yêu cầu nhập lại hợp lệ.

*Kết Qủa Thực Tế:
   Không hiển thị thông báo và cho phép thực hiện chức năng in

*Ví dụ:
   Nhập số thẻ cần in từ -5 đến 0
', '2020-10-12', NULL, 5, 39, 2, 38, 40, 6, '2020-09-30 10:38:09+07', '2020-10-17 11:51:41+07', '2020-10-12', 100, NULL, NULL, 2235, 1, 2, false, '2020-10-03 08:37:52+07');
INSERT INTO public.issues VALUES (2236, 1, 46, 'Thiết Bị Đầu Đọc -> Tìm Kiếm', 'Xác minh chức năng "Tìm kiếm" thành công. Khi người dùng nhập đúng thông tin có trong danh sách

*Các Bước Thực Hiện:
  1. Nhập thông tin cần tìm kiếm có trong danh sách
  2. Nhân phím Enter

*Kết Qủa Mong Đợi:
  Hiển thị danh sách các thông tin liên quan đến nội dung tìm kiếm

*Kết Qủa Tìm Kiếm:
  Hiển thị tất cả các thông tin kể cả thông tin không liên quan đến nội dung tìm kiếm

*Ví dụ:
Nhập nội dung tìm kiếm: WC1
', NULL, NULL, 5, NULL, 2, NULL, 40, 3, '2020-09-30 10:42:23+07', '2020-09-30 10:49:32+07', '2020-09-30', 0, NULL, NULL, 2236, 1, 2, false, '2020-09-30 10:49:32+07');
INSERT INTO public.issues VALUES (2237, 1, 46, 'Lỗi tìm kiếm Thiết Bị Đầu Đọc', 'Xác minh chức năng "Tìm kiếm" thành công. Khi người dùng nhập đúng thông tin có trong danh sách

*Các Bước Thực Hiện:
  1. Nhập thông tin cần tìm kiếm có trong danh sách
  2. Nhấn phím Enter
*Kết Qủa Mong Đợi:
  Hiển thị danh sách các thông tin liên quan đến nội dung tìm kiếm

*Kết Qủa Thực Tế:
  Hiển thị tất cả các thông tin kể cả thông tin không liên quan đến nội dung tìm kiếm

*Ví dụ:
  Nhập nội dung tìm kiếm: WC1
------------------------------------------------------------------------------------------
Xác minh chức năng "Tìm kiếm" không thành công. Khi người dùng nhập thông tin không có trong danh sách

*Các Bước Thực Hiện:
  1. Nhập thông tin cần tìm kiếm không có trong danh sách
  2. Nhấn phím Enter
*Kết Qủa Mong Đợi:
  Hiển thị thông báo thông tin tìm kiếm không có trong danh sách.

*Kết Qủa Thực Tế
  Hiển thị tất cả các thông tin kể cả thông tin không liên quan đến nội dung tìm kiếm

*Ví dụ:
Nhập nội dung tìm kiếm: abcdef', '2020-10-12', NULL, 5, 39, 2, 38, 40, 6, '2020-09-30 10:52:49+07', '2020-10-17 11:51:41+07', '2020-10-12', 100, NULL, NULL, 2237, 1, 2, false, '2020-10-03 08:37:52+07');
INSERT INTO public.issues VALUES (2238, 1, 4, 'Danh sách điểm đầu tư lọc theo tình trạng nhiều lần không có dữ liệu', '', '2020-10-04', NULL, 1, 13, 2, 36, 13, 2, '2020-09-30 11:06:44+07', '2021-02-05 08:54:16+07', '2020-10-03', 100, NULL, NULL, 2238, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2239, 1, 46, 'Lỗi Lịch sử giao dịch thẻ', 'Xác minh chức năng "Xem chi tiết" thành công.

*Các Bước Thực Hiện:
  1. Click vào thẻ muốn xem thông tin chi tiết.

*Kết Qủa Mong Đợi:
  Hiển thị đúng thông tin chi tiết của thẻ  cần xem.


*Kết quả Thực Tế:
  Hiển thị sai thông tin lịch sử giao dịch', '2020-10-13', NULL, 5, 41, 2, 38, 40, 6, '2020-09-30 11:51:33+07', '2020-10-17 11:45:07+07', '2020-10-13', 100, NULL, NULL, 2239, 1, 2, false, '2020-10-17 11:45:07+07');
INSERT INTO public.issues VALUES (2242, 1, 46, 'Lỗi Thêm thất bại chi tiết phiếu nhập hàng', 'Xác minh chức năng "Thêm" của chi tiết phiếu nhập hàng  không thành công. Khi người dùng không nhập thông tin vào các trường yêu cầu  hoặc nhập thông tin không hợp lệ

*Các Bước Thực Hiện:
  1. Click "Thêm mới"
  2. Click "+" của Chi tiết phiếu nhập hàng
  3. Không nhập thông tin vào các trường yêu cầu hoặc nhập không hợp lệ
  4. Click "Lưu"

*Kết Qủa Mong Đợi:
  Hiển thị thông báo lỗi

*Kết Qủa Thực Tế:
  Trường số tiền cho nhập kiểu text. Hiển thị thông báo thành công.

*Ví dụ:
  Nhập thông tin ở cột số tiền: 100aaa
', '2020-10-12', NULL, 5, 39, 2, 38, 40, 6, '2020-09-30 13:01:28+07', '2020-10-17 11:51:41+07', '2020-10-12', 100, NULL, NULL, 2242, 1, 2, false, '2020-10-03 08:37:52+07');
INSERT INTO public.issues VALUES (2243, 1, 46, 'Lỗi Sửa Phiếu  nhập', 'Xác minh chức năng "Sửa" thành công. Khi người dùng nhập đầy đủ thông tin cần sửa hợp lệ.

*Các Bước Thực Hiện:
  1. Click "Sửa" ở nội dung cần chỉnh sửa
  2. Nhập thông tin cần sửa hợp lệ
  3. Click "Cập nhật phiếu"

*Kết Qủa Mong Đợi:
  Hiển thị thông báo thành công và cập nhật thông tin vào danh sách

*Kết QUả Thực Tế:
  Hiển thi thông báo thành công. Thông tin được thêm vào danh sách chứ không cập nhật
', '2020-10-12', NULL, 5, 39, 2, 38, 40, 3, '2020-09-30 13:08:00+07', '2020-10-17 11:51:41+07', '2020-10-12', 100, NULL, NULL, 2243, 1, 2, false, '2020-10-03 16:05:24+07');
INSERT INTO public.issues VALUES (2244, 1, 46, 'Bổ sung Phiếu Nhập nên để * cho các trường bắt buộc  ', '', '2020-10-12', NULL, 5, 39, 2, 38, 40, 3, '2020-09-30 13:11:20+07', '2020-10-17 11:51:42+07', '2020-10-12', 100, NULL, NULL, 2244, 1, 2, false, '2020-10-03 08:37:53+07');
INSERT INTO public.issues VALUES (2245, 1, 46, 'Lỗi Xóa Phiếu nhập', 'Xác minh chức năng "Xóa" thành công.

*Các Bước Thực Hiện:
1. Click "Xóa" ở nội dung cần xóa
2. Click "Đồng ý"

*Kết Qủa Mong Đợi:
Hiển thị thông báo thành công và Xóa thông tin ra khỏi danh sách

*Kết Qủa Thực Tế:
Hiển thị thông báo thành công nhưng thông tin không được xóa khỏi danh sách và vẫn ở giao diện xóa

', '2020-10-12', NULL, 5, 39, 2, 38, 40, 3, '2020-09-30 13:15:27+07', '2020-10-17 11:51:42+07', '2020-10-12', 100, NULL, NULL, 2245, 1, 2, false, '2020-10-03 08:37:53+07');
INSERT INTO public.issues VALUES (2246, 1, 46, 'Lỗi Thêm thành công vào Danh sách sản phẩm dịch vụ', 'Xác minh chức năng "Thêm mới" thành công. Khi người dùng nhập đầy đủ thông tin và hợp lệ.

*Các Bước Thực Hiện:
  1. Click "Thêm mới"
  2. Nhập đầy đủ  và hợp lệ các thông tin yêu cầu
  3. Click "Lưu"

*Kết Qủa Mong Đợi:
  Hiển thị thông báo thành công và thêm vào danh sách Sản  phẩm dịch vụ.

*Kết Qủa Thực Tế:
  Hiển thị thông báo thành công không hợp lệ và không thêm vào danh sách sản phẩm dịch vụ
', '2020-10-12', NULL, 5, 39, 2, 38, 40, 4, '2020-09-30 13:21:08+07', '2020-10-17 11:51:42+07', '2020-10-12', 100, NULL, NULL, 2246, 1, 2, false, '2020-10-03 08:37:53+07');
INSERT INTO public.issues VALUES (2247, 1, 46, 'Lỗi thêm thất bại Danh sách sản phẩm dịch vụ', 'Xác minh chức năng "Thêm mới" không thành công. Khi người dùng không nhập thông tin hoặc nhập không hợp lệ.

*Các Bước thực Hiện:
  1. Click "Thêm mới"
  2. Không nhập đầy đủ thông tin hoặc nhập không hợp lệ vào các trường yêu cầu
  3. Click "Lưu"

*Kết Qủa Mong Đợi:
  Hiển thị thông báo lỗi.

*Kết Qủa Thực Tế:
  Hiển thị thông báo thành công không hợp lệ.

*Ví dụ:
Nhập số tiền là : 100abc
', '2020-10-12', NULL, 5, 39, 2, 38, 40, 4, '2020-09-30 13:25:00+07', '2020-10-17 11:51:42+07', '2020-10-12', 100, NULL, NULL, 2247, 1, 2, false, '2020-10-03 08:37:53+07');
INSERT INTO public.issues VALUES (2248, 1, 46, 'Lỗi Sửa thành công DS Sản phẩm dịch vụ', 'Xác minh chức năng "Sửa" thành công. Khi người dùng nhập đầy đủ thông tin cần sửa hợp lệ.

*Các Bước Thực Hiện:
  1. Click "Sửa" ở nội dung cần chỉnh sửa
  2. Nhập thông tin chỉnh sửa hợp lệ
  3. Click "Lưu"

*Kết Quả Mong Đợi:
  Hiển thị thông báo thành công và cập nhật vào danh sách

*Kết Qủa Thực Tế:
  Không cập nhật thông tin chỉnh sửa
', '2020-10-12', NULL, 5, 39, 2, 38, 40, 3, '2020-09-30 13:40:33+07', '2020-10-17 11:51:42+07', '2020-10-12', 100, NULL, NULL, 2248, 1, 2, false, '2020-10-03 08:37:53+07');
INSERT INTO public.issues VALUES (2249, 1, 46, 'Lỗi Sửa thất bại DS Sản phẩm dịch vụ', 'Xác minh chức năng "Sửa" không thành công. Khi người dùng không nhập thông tin vào các trường yêu cầu hoặc nhập thông tin không hợp lệ

*Các Bước Thực Hiện:
  1. Click "Sửa" ở nội dung cần chỉnh sửa
  2. Nhập thông tin chỉnh sửa không hợp lệ
  3. Click "Lưu"

*Kết Quả Mong Đợi:
  Hiển thị thông báo lỗi

*Kết Qủa Thực Tế:
  Đơn giá cho nhập kiểu text. Hiển thị thông báo thành công ', '2020-10-12', NULL, 5, 39, 2, 38, 40, 3, '2020-09-30 13:47:11+07', '2020-10-17 11:51:43+07', '2020-10-12', 100, NULL, NULL, 2249, 1, 2, false, '2020-10-03 08:37:53+07');
INSERT INTO public.issues VALUES (2250, 1, 46, 'Lỗi Tìm kiếm thành công Danh Sách sản phẩm', 'Xác minh chức năng "Tìm kiếm" thành công. Khi người dùng nhập thông tin tìm kiếm có trong danh sách sản phẩm 

*Các Bước Thực Hiện:
  1. Nhập tên, mã hoặc chọn nhóm sản phẩm có trong danh sách
  2. Nhấn phím Enter.

*Kết Qủa Mong Đợi:
  Hiển thị danh sách các thông tin liên quan đến nội dung tìm kiếm

*Kết Qủa Thực Tế:
  Nhóm sản phẩm không được lọc khi tìm kiếm với mã sản phẩm

*Ví dụ:
  Nhập nội dung tìm kiếm là mã sản phẩm: BK
  chọn nhóm sản phẩm là: Cho thuê
', '2020-10-12', NULL, 5, 39, 2, 38, 40, 3, '2020-09-30 14:02:01+07', '2020-10-17 11:51:43+07', '2020-10-12', 100, NULL, NULL, 2250, 1, 2, false, '2020-10-03 08:37:53+07');
INSERT INTO public.issues VALUES (2251, 1, 46, 'Lỗi thêm Thất bại nhóm sản phẩm dịch vụ', 'Xác minh chức năng "Thêm mới" không thành công.Khi người dùng không nhập thông tin vào các trường yêu cầu

*Các Bước Thực Hiện:
1. Click "Thêm mới"
2. Không nhập thông tin vào các trường yêu cầu
3. Click "Đồng ý"

*Kết quả mong đợi:
  Hiển thị thông báo lỗi và yêu cầu nhập lại

*Kết quả thực tế:
 Thêm thành công vào danh sách nhóm sản phẩm dịch vụ
', '2020-10-12', NULL, 5, 39, 2, 38, 40, 3, '2020-09-30 14:04:55+07', '2020-10-17 11:51:43+07', '2020-10-12', 100, NULL, NULL, 2251, 1, 2, false, '2020-10-03 08:37:54+07');
INSERT INTO public.issues VALUES (2252, 1, 46, 'Lỗi sửa thất bại nhóm sản phẩm dịch vụ', 'Xác minh chức năng "Sửa" không thành công. Khi người dùng không nhập thông tin vào các trường yêu cầu

*Các Bước Thực Hiện:
1. Click "Sửa" ở nội dung cần chỉnh sửa
2. Không nhập đầy đủ thông tin vào các trường yêu cầu
3. Click "Đồng ý"

*Kết quả mong đơị:
Hiển thị thông báo lỗi

*Kết quả thực tế:
Cập nhật thành công vào danh sách nhóm sản phẩm dịch vụ
', '2020-10-12', NULL, 5, 39, 2, 38, 40, 3, '2020-09-30 14:07:13+07', '2020-10-17 11:51:43+07', '2020-10-12', 100, NULL, NULL, 2252, 1, 2, false, '2020-10-03 08:37:54+07');
INSERT INTO public.issues VALUES (2287, 2, 46, 'Update giao diện của Thêm và Sửa thiết bị QR Code', '', '2020-10-01', NULL, 5, 39, 2, 31, 39, 3, '2020-10-01 16:39:43+07', '2020-10-03 08:19:06+07', '2020-10-01', 100, NULL, NULL, 2287, 1, 2, false, '2020-10-03 08:19:06+07');
INSERT INTO public.issues VALUES (2253, 1, 46, 'Lỗi thêm thất bại Nhà cung cấp', 'Xác minh chức năng "Thêm mới" không thành công. Khi người dùng không nhập thông tin hoặc nhập không hợp lệ

*Các bước thực hiện:
1. Click "Thêm mới"
2. Không nhập thông tin hoặc nhập thông tin không hợp lệ vào các trường yêu cầu
3. Click "Lưu"

*Kết quả mong đợi:
Hiển thị thông báo lỗi và yêu cầu nhập lại

*Kết quả thực tế:
Thêm thành công vào danh sách nhà cung cấp. Trường số điện thoại cho nhập chữ
', '2020-10-12', NULL, 5, 39, 2, 38, 40, 3, '2020-09-30 14:12:56+07', '2020-10-17 11:51:43+07', '2020-10-12', 100, NULL, NULL, 2253, 1, 2, false, '2020-10-03 08:37:54+07');
INSERT INTO public.issues VALUES (2254, 1, 46, 'Lỗi sửa thất bại Nhà cung cấp', 'Xác minh chức năng "Sửa" không thành công. Khi người dùng không nhập thông tin vào các trường yêu cầu hoặc nhập thông tin không hợp lệ

*Các Bước Thực Hiện:
1. Click "Sửa" ở nội dung cần chỉnh sửa
2. Nhập thông tin chỉnh sửa không hợp lệ hoặc bỏ trống
3. Click "Lưu"

*Kết Qủa Mong Đợi:
Hiển thị thông báo lỗi và yêu cầu nhập lại

*Kết Qủa Thực Tế:
Cập nhật thành công vào danh sách nhà cung cấp. Trường số ddiejn thoại cho nhập chữ
', '2020-10-12', NULL, 5, 39, 2, 38, 40, 3, '2020-09-30 14:16:27+07', '2020-10-17 11:51:43+07', '2020-10-12', 100, NULL, NULL, 2254, 1, 2, false, '2020-10-03 08:37:54+07');
INSERT INTO public.issues VALUES (2255, 1, 46, 'Lỗi thêm Khoản Chi', 'Xác minh chức năng "Thêm mới" không thành công. Khi người dùng không nhập thông tin hoặc nhập không hợp lệ

*Các bước thực hiện:
  1. Click "Thêm mới"
  2. Không nhập thông tin vào các trường
  3. Click "Lưu"

*Kết quả mong đợi:
  Hiển thị thông báo lỗi và yêu cầu nhập lại

*Kết quả Thực tế:
  Thêm thành công vào danh sách khoản chi
', '2020-10-12', NULL, 5, 39, 2, 38, 40, 3, '2020-09-30 17:01:52+07', '2020-10-17 11:51:43+07', '2020-10-12', 100, NULL, NULL, 2255, 1, 2, false, '2020-10-03 08:37:54+07');
INSERT INTO public.issues VALUES (2256, 1, 46, 'Lỗi sửa thất bại của Khoản chi', 'Xác minh chức năng "Sửa" không thành công. Khi người dùng không nhập thông tin vào các trường yêu cầu"

*Các bước thực hiện:
  1. Click "Sửa" ở nội dung cần chỉnh sửa
  2. Nhập thông tin chỉnh sửa không hợp lệ
  3. Click "Lưu"

*Kết quả mong đợi:
  Hiển thị thông báo lỗi.

*Kết quả thực tế:
  Cập nhật thành công vào danh sách khoản chi

', '2020-10-12', NULL, 5, 39, 2, 38, 40, 3, '2020-09-30 17:05:29+07', '2020-10-17 11:51:43+07', '2020-10-12', 100, NULL, NULL, 2256, 1, 2, false, '2020-10-03 08:37:55+07');
INSERT INTO public.issues VALUES (2257, 1, 46, 'Lỗi Thêm thât bại Liên hệ', 'Xác minh chức năng "Thêm mới" không thành công. Khi người dùng không nhập thông tin hoặc nhập không hợp lệ

Các bước thực hiện:
 1. Click "Thêm mới"
 2. Không nhập đầy đủ thông tin vào các trường yêu cầu hoặc nhập không hợp lệ 
 3. Click "Lưu"

Kết quả mong đợi:
Hiển thị thông báo lỗi.

Kết quả thực tế:
Thêm thành công vào danh sách liên hệ.
Số điện thoại cho nhập text"
', '2020-10-12', NULL, 5, 39, 2, 38, 40, 3, '2020-09-30 17:07:59+07', '2020-10-17 11:51:44+07', '2020-10-12', 100, NULL, NULL, 2257, 1, 2, false, '2020-10-03 08:37:55+07');
INSERT INTO public.issues VALUES (2258, 1, 46, 'Lỗi Sửa thất bại Liên hệ', 'Xác minh chức năng "Sửa" không thành công. Khi người dùng không nhập thông tin vào các trường yêu cầu

*Các bước thực hiện:
1. Click "Sửa" ở nội dung cần chỉnh sửa
2. Nhập thông tin chỉnh sửa không hợp lệ hoặc bỏ trống
3. Click "Lưu"

*Kết quả mong đợi:
Hiển thị thông báo lỗi và yêu cầu nhập lại

*Kết quả thực tế
Cập nhật thành công vào danh sách liên hệ
', '2020-10-12', NULL, 5, 39, 2, 38, 40, 4, '2020-09-30 17:09:47+07', '2020-10-17 11:51:44+07', '2020-10-12', 100, NULL, NULL, 2258, 1, 2, false, '2020-10-03 08:37:55+07');
INSERT INTO public.issues VALUES (2259, 1, 46, 'Lỗi lưu phiếu thu thất bại', 'Xác minh chức năng "Lập phiếu thu" thành công. Khi người dùng bỏ trống các trường yêu cầu hoặc nhập thông tin không hợp lệ.

Các bước thực hiện:
 1. Click "Lập phiếu thu"
 2. Bỏ trống các trường yêu cầu hoặc nhập thông tin không hợp lệ
 3. Click "Lưu"

*Kết quả mong đợi:
Hiển thị thông báo lỗi
 
*Kết quả thực tế:
Hiển thị thông báo lỗi của trường loại thu sai
', '2020-10-12', NULL, 5, 39, 2, 38, 40, 3, '2020-09-30 17:12:15+07', '2020-10-17 11:51:44+07', '2020-10-12', 100, NULL, NULL, 2259, 1, 2, false, '2020-10-03 08:37:55+07');
INSERT INTO public.issues VALUES (2260, 1, 46, 'Lỗi Tổng số liệu thông kê Sổ Qũy ', '', '2020-10-12', NULL, 5, 41, 2, 38, 40, 5, '2020-09-30 17:13:01+07', '2020-10-17 11:51:44+07', '2020-10-12', 100, NULL, NULL, 2260, 1, 2, false, '2020-10-05 09:41:22+07');
INSERT INTO public.issues VALUES (2262, 1, 46, 'Lỗi Xuất file Thủ Qũy Tiền Mặt', 'Chưa được thực hiện', '2020-10-12', NULL, 5, NULL, 2, 38, 40, 4, '2020-10-01 10:46:57+07', '2020-10-17 11:52:38+07', '2020-10-12', 100, NULL, NULL, 2262, 1, 2, false, '2020-10-14 08:58:04+07');
INSERT INTO public.issues VALUES (2263, 1, 46, 'Lỗi Báo Cáo Theo Đơn Hàng', 'Xác minh chức năng "báo cáo" thành công. Khi người dùng nhập đầy đủ thông tin yêu cầu và hợp lệ.

*Các bước thực hiện:
1. Click "Báo Cáo Đơn hàng"
2. Nhập đầy đủ  và hợp lệ các thông tin yêu cầu
3. Click "Báo Cáo"

*Kết quả mong đợi:
Hiển thị danh sách Doanh thu đơn hàng theo yêu cầu

*Kết quả thực thế:
Số liệu trong báo cáo không có
', '2020-10-12', NULL, 5, NULL, 2, 38, 40, 3, '2020-10-01 11:01:13+07', '2020-10-17 11:52:38+07', '2020-10-12', 100, NULL, NULL, 2263, 1, 2, false, '2020-10-14 15:19:17+07');
INSERT INTO public.issues VALUES (2264, 1, 46, 'Lỗi Tải Excel BC Đơn Hàng', 'Xác minh chức năng " Tải  file Excel" 

*Các bước thực hiện:
1. Click "Tải file"
2. Click "Excel"

*Kết quả mong đợi:
Danh sách được tải về và xem thành công

*Kết quả thực thế:
Danh sách được tải về nhưng bố cục sai

', '2020-10-15', NULL, 5, 41, 2, 38, 40, 4, '2020-10-01 11:02:50+07', '2020-10-16 09:55:11+07', '2020-10-15', 100, NULL, NULL, 2264, 1, 2, false, '2020-10-16 09:55:11+07');
INSERT INTO public.issues VALUES (2265, 1, 46, 'Lỗi BC Sản Phẩm Dịch Vụ', 'Xác minh chức năng "báo cáo" thành công. Khi người dùng nhập đầy đủ thông tin yêu cầu và hợp lệ.

*Các bước thực hiện:
1. Click "Báo Cáo Sản Phẩm Dịch Vụ"
2. Nhập đầy đủ  và hợp lệ các thông tin yêu cầu
3. Click "Báo Cáo"

*Kết quả mong đợi:
Hiển thị danh sách Doanh thu sản phẩm dịch vụ theo yêu cầu

*Kết quả thực thế:
Số liệu trong báo cáo sai

', '2020-10-15', NULL, 5, 38, 2, 38, 40, 2, '2020-10-01 11:04:25+07', '2020-10-17 13:34:01+07', '2020-10-14', 0, NULL, NULL, 2265, 1, 2, false, '2020-10-17 13:34:01+07');
INSERT INTO public.issues VALUES (2266, 1, 46, 'Lỗi Tải Excel BC Sẩn Phẩm Dịch Vụ', 'Xác minh chức năng "Tải  file Excel" 

*Các bước thực hiện:
1. Click "Tải file"
2. Click "Excel"

*Kết quả mong đợi:
Danh sách được tải về và xem thành công


*Kết quả thực thế:
Danh sách được tải về nhưng bố cục sai

', '2020-10-12', NULL, 5, NULL, 2, 38, 40, 4, '2020-10-01 11:06:37+07', '2020-10-17 11:52:38+07', '2020-10-12', 100, NULL, NULL, 2266, 1, 2, false, '2020-10-17 10:32:14+07');
INSERT INTO public.issues VALUES (2288, 2, 46, 'API hủy đơn trả hàng', '', '2020-10-02', NULL, 5, 41, 2, 31, 41, 2, '2020-10-02 08:23:29+07', '2020-10-03 08:19:06+07', '2020-10-02', 100, NULL, NULL, 2288, 1, 2, false, '2020-10-03 08:19:06+07');
INSERT INTO public.issues VALUES (2267, 1, 46, 'Lỗi BC Doanh thu bán hàng', 'Xác minh chức năng "báo cáo" thành công. Khi người dùng nhập đầy đủ thông tin yêu cầu và hợp lệ.

*Các bước thực hiện:
1. Click "Báo Cáo Doanh Thu Bán Hàng"
2. Nhập đầy đủ  và hợp lệ các thông tin yêu cầu
3. Click "Báo Cáo"

*Kết quả mong đợi:
Hiển thị danh sách Doanh thu bán hàng theo yêu cầu

*Kết quả thực thế:
Số liệu trong báo cáo sai

', '2020-10-12', NULL, 5, NULL, 2, 38, 40, 3, '2020-10-01 11:08:05+07', '2020-10-17 11:52:38+07', '2020-10-12', 100, NULL, NULL, 2267, 1, 2, false, '2020-10-14 15:19:49+07');
INSERT INTO public.issues VALUES (2268, 1, 46, 'Lỗi tải Excel BC Doanh thu bán hàng', '"Xác minh chức năng ""Tải  file Excel"" 

*Các bước thực hiện:
1. Click ""Tải file""
2. Click ""Excel""

*Kết quả mong đợi:
Danh sách được tải về và xem thành công

*Kết quả thực thế:
Danh sách được tải về nhưng bố cục sai"
', '2020-10-12', NULL, 5, NULL, 2, 38, 40, 3, '2020-10-01 11:10:41+07', '2020-10-17 11:52:38+07', '2020-10-12', 100, NULL, NULL, 2268, 1, 2, false, '2020-10-14 15:19:38+07');
INSERT INTO public.issues VALUES (2269, 2, 46, 'Fix API: Cập nhật đơn nhập hàng.', '', '2020-10-01', NULL, 5, 38, 2, 31, 38, 3, '2020-10-01 11:27:03+07', '2020-10-02 09:04:54+07', '2020-10-01', 100, NULL, NULL, 2269, 1, 2, false, '2020-10-02 09:04:54+07');
INSERT INTO public.issues VALUES (2270, 2, 46, 'Create: API xóa đơn nhập hàng.', '', '2020-10-01', NULL, 5, 38, 2, 31, 38, 3, '2020-10-01 11:27:40+07', '2020-10-02 09:04:54+07', '2020-10-01', 100, NULL, NULL, 2270, 1, 2, false, '2020-10-02 09:04:54+07');
INSERT INTO public.issues VALUES (2271, 1, 46, 'Lỗi Báo Cáo số quỹ tiền mặt', 'Xác minh chức năng "báo cáo" thành công. Khi người dùng nhập đầy đủ thông tin yêu cầu và hợp lệ.

*Các bước thực hiện:
1. Click "Báo Cáo Sổ Qũy Tiền Mặt"
2. Nhập đầy đủ  và hợp lệ các thông tin yêu cầu
3. Click "Báo Cáo"

*Kết quả mong đợi:
Hiển thị danh sách Báo cáo sổ quỹ tiền mặt

*Kết quả thực tế:
Tiêu đề giao diện sai.Số liệu hiển thị chưa họp lý.

', '2020-10-14', NULL, 5, 41, 2, 38, 40, 4, '2020-10-01 11:28:36+07', '2020-10-16 09:55:11+07', '2020-10-14', 100, NULL, NULL, 2271, 1, 2, false, '2020-10-16 09:55:11+07');
INSERT INTO public.issues VALUES (2274, 1, 46, 'Lỗi tải Excel Số quỹ tiền mặt', '"Xác minh chức năng ""Tải  file Excel"" 

*Các bước thực hiện:
1. Click "Tải file"
2. Click "Excel"

*Kết quả mong đợi:
Danh sách được tải về và xem thành công

*Kết quả thực thế:
Danh sách được tải về nhưng bố cục sai
', '2020-10-15', NULL, 5, 41, 2, 38, 40, 4, '2020-10-01 11:29:53+07', '2020-10-16 09:55:11+07', '2020-10-15', 100, NULL, NULL, 2274, 1, 2, false, '2020-10-16 09:55:11+07');
INSERT INTO public.issues VALUES (2275, 1, 46, 'Lỗi Báo cáo số dư thẻ', 'Xác minh chức năng "báo cáo" thành công. Khi người dùng nhập đầy đủ thông tin yêu cầu và hợp lệ."

*Các bước thực hiện:
1. Click "Báo Cáo số dư thẻ"
2. Nhập đầy đủ  và hợp lệ các thông tin yêu cầu
3. Click "Báo Cáo"

*Kết quả mong đợi:
Hiển thị danh sách Báo cáo số dư thẻ


*Kết quả thực thế:
Số liệu báo cáo không hợp lý

', '2020-10-15', NULL, 5, 41, 2, 38, 40, 3, '2020-10-01 11:32:17+07', '2020-10-16 09:55:11+07', '2020-10-15', 100, NULL, NULL, 2275, 1, 2, false, '2020-10-16 09:55:11+07');
INSERT INTO public.issues VALUES (2276, 1, 46, 'Lỗi tải Excel Báo cáo số dư thẻ', '"Xác minh chức năng ""Tải  file Excel"" 

*Các bước thực hiện:
1. Click "Tải file"
2. Click "Excel"

*Kết quả mong đợi:
Danh sách được tải về và xem thành công

*Kết quả thực thế:
Danh sách được tải về nhưng bố cục sai', '2020-10-15', NULL, 5, 41, 2, 38, 40, 4, '2020-10-01 11:33:06+07', '2020-10-16 09:55:11+07', '2020-10-15', 100, NULL, NULL, 2276, 1, 2, false, '2020-10-16 09:55:11+07');
INSERT INTO public.issues VALUES (2277, 1, 46, 'Lỗi BC Doanh thu bán thẻ', 'Xác minh chức năng "báo cáo" thành công. Khi người dùng nhập đầy đủ thông tin yêu cầu và hợp lệ.

*Các bước thực hiện:
1. Click "Báo Cáo doanh thu bán thẻ"
2. Nhập đầy đủ  và hợp lệ các thông tin yêu cầu
3. Click "Báo Cáo"

*Kết quả mong đợi:
Hiển thị danh sách Báo cáo Doanh thu bán thẻ


*Kết quả thực thế:
Số liệu báo cáo không hợp lý

', '2020-10-15', NULL, 5, 41, 2, 38, 40, 2, '2020-10-01 11:35:39+07', '2020-10-17 13:34:35+07', '2020-10-15', 0, NULL, NULL, 2277, 1, 2, false, '2020-10-17 13:34:35+07');
INSERT INTO public.issues VALUES (2279, 1, 46, 'Lỗi tải Excel BC Doanh thu bán thẻ', '"Xác minh chức năng ""Tải  file Excel"" 

*Các bước thực hiện:
1. Click "Tải file"
2. Click "Excel"

*Kết quả mong đợi:
Danh sách được tải về và xem thành công

*Kết quả thực thế:
Danh sách được tải về nhưng bố cục sai
', '2020-10-12', NULL, 5, NULL, 2, 38, 40, 4, '2020-10-01 11:38:08+07', '2020-10-17 11:52:38+07', '2020-10-12', 100, NULL, NULL, 2279, 1, 2, false, '2020-10-17 10:32:22+07');
INSERT INTO public.issues VALUES (2280, 1, 46, 'Lỗi Báo cáo tồn kho', 'Xác minh chức năng "báo cáo" thành công. Khi người dùng nhập đầy đủ thông tin yêu cầu và hợp lệ.

*Các bước thực hiện:
1. Click "Báo Cáo Tồn Kho"
2. Nhập đầy đủ  và hợp lệ các thông tin yêu cầu
3. Click "Báo Cáo"


*Kết quả mong đợi:
Hiển thị danh sách Báo cáo Tồn Kho theo điểm kinh doanh


*Kết quả thực thế:
Số liệu báo cáo không hợp lý

', '2020-10-12', NULL, 5, NULL, 2, 38, 40, 5, '2020-10-01 13:11:12+07', '2020-10-17 11:52:38+07', '2020-10-12', 100, NULL, NULL, 2280, 1, 2, false, '2020-10-14 07:47:18+07');
INSERT INTO public.issues VALUES (2281, 2, 46, 'Xem phiếu chuyển kho', '', '2020-10-01', NULL, 5, 39, 2, 31, 39, 3, '2020-10-01 13:11:35+07', '2020-10-02 09:04:54+07', '2020-10-01', 100, NULL, NULL, 2281, 1, 2, false, '2020-10-02 09:04:54+07');
INSERT INTO public.issues VALUES (2282, 1, 46, 'Lỗi tải Excel Báo cáo tồn kho', 'Xác minh chức năng "Tải  file Excel"

*Các bước thực hiện:
1. Click "Tải file"
2. Click "Excel"

*Kết quả mong đợi:
Danh sách được tải về và xem thành công

*Kết quả thực thế:
Danh sách được tải về nhưng bố cục sai
', '2020-10-12', NULL, 5, NULL, 2, 38, 40, 4, '2020-10-01 13:12:02+07', '2020-10-17 11:52:39+07', '2020-10-12', 100, NULL, NULL, 2282, 1, 2, false, '2020-10-17 10:32:28+07');
INSERT INTO public.issues VALUES (2283, 2, 46, 'Sửa phiếu chuyển kho', '', '2020-10-01', NULL, 5, 39, 2, 31, 39, 3, '2020-10-01 13:12:51+07', '2020-10-05 09:38:26+07', '2020-10-01', 100, NULL, NULL, 2283, 1, 2, false, '2020-10-05 09:38:26+07');
INSERT INTO public.issues VALUES (2284, 1, 46, 'Lỗi Báo cáo nhập xuất tồn ', 'Kết quả hiển thị ra số âm


', '2020-10-12', NULL, 5, NULL, 2, 38, 40, 4, '2020-10-01 13:16:11+07', '2020-10-17 11:52:39+07', '2020-10-12', 100, NULL, NULL, 2284, 1, 2, false, '2020-10-14 14:47:26+07');
INSERT INTO public.issues VALUES (2285, 1, 46, 'Lỗi tải Excel Nhập xuất tồn kho', '"Xác minh chức năng ""Tải  file Excel"" 

*Các bước thực hiện:
1. Click "Tải file"
2. Click "Excel"

*Kết quả mong đợi:
Danh sách được tải về và xem thành công

*Kết quả thực thế:
Danh sách được tải về nhưng bố cục sai
', '2020-10-12', NULL, 5, NULL, 2, 38, 40, 4, '2020-10-01 13:16:42+07', '2020-10-17 11:52:39+07', '2020-10-12', 100, NULL, NULL, 2285, 1, 2, false, '2020-10-17 10:32:34+07');
INSERT INTO public.issues VALUES (2286, 2, 46, 'API -Dashboard biểu đồ doanh thu', '/Dashboard/DoanhThuTheoSPDV?Id=&tuNgay=2020-09-01&denNgay=2020-10-22&sortOption=1', '2020-10-03', NULL, 5, 19, 2, 31, 19, 3, '2020-10-01 14:14:42+07', '2020-10-03 08:19:06+07', '2020-10-01', 100, NULL, NULL, 2286, 1, 2, false, '2020-10-03 08:19:06+07');
INSERT INTO public.issues VALUES (2556, 2, 4, 'Tạo mới quy hoạch sử dụng đất', '', '2020-10-20', NULL, 3, 13, 2, 49, 13, 1, '2020-10-23 16:14:49+07', '2020-10-24 08:49:15+07', '2020-10-19', 100, NULL, 2550, 2550, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (2289, 2, 46, 'Giao diện danh sách phiếu xuất hàng', '', '2020-10-02', NULL, 5, 39, 2, 31, 39, 1, '2020-10-02 09:09:16+07', '2020-10-03 08:19:07+07', '2020-10-02', 100, NULL, NULL, 2289, 1, 2, false, '2020-10-03 08:19:07+07');
INSERT INTO public.issues VALUES (2290, 2, 4, 'Api thống kê số lượng và vốn đầu tư của điểm mời gọi đầu tư', '', '2020-10-07', NULL, 3, 13, 2, 37, 13, 3, '2020-10-02 10:09:52+07', '2020-10-06 09:06:50+07', '2020-10-05', 100, NULL, 2230, 2230, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (2291, 2, 4, 'api xuất excel doanh nghiệp', '', '2020-10-14', NULL, 3, 13, 2, 45, 13, 6, '2020-10-02 03:54:37+07', '2020-10-19 08:27:02+07', '2020-10-13', 100, NULL, 2230, 2230, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (2292, 2, 46, 'Xóa phiếu nhập hàng', '', '2020-10-02', NULL, 5, 39, 2, 31, 39, 1, '2020-10-02 03:58:02+07', '2020-10-03 08:19:07+07', '2020-10-02', 100, NULL, NULL, 2292, 1, 2, false, '2020-10-03 08:19:07+07');
INSERT INTO public.issues VALUES (2293, 2, 46, 'Xóa phiếu chuyển kho', '', '2020-10-02', NULL, 5, 39, 2, 31, 39, 3, '2020-10-02 11:13:26+07', '2020-10-05 09:38:26+07', '2020-10-02', 100, NULL, NULL, 2293, 1, 2, false, '2020-10-05 09:38:26+07');
INSERT INTO public.issues VALUES (2294, 2, 4, 'api xuất excel điểm mời gọi đã đầu tư trong nước, ngoài nước', '', '2020-10-07', NULL, 3, 13, 2, 37, 13, 3, '2020-10-02 11:19:56+07', '2020-10-06 09:06:50+07', '2020-10-05', 100, NULL, 2230, 2230, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (2295, 2, 46, 'Xem chi tiết phiếu xuất kho', '', '2020-10-02', NULL, 5, 39, 2, 31, 39, 2, '2020-10-02 11:29:22+07', '2020-10-03 08:19:07+07', '2020-10-02', 100, NULL, NULL, 2295, 1, 2, false, '2020-10-03 08:19:07+07');
INSERT INTO public.issues VALUES (2296, 2, 46, 'API trả đơn hàng', '', '2020-10-02', NULL, 5, 41, 2, 31, 41, 3, '2020-10-02 14:43:40+07', '2020-10-02 14:47:48+07', '2020-10-02', 100, NULL, NULL, 2296, 1, 2, false, '2020-10-02 14:47:48+07');
INSERT INTO public.issues VALUES (2297, 2, 46, 'API Thêm/ Cập nhật thiết bị đọc QR Code', '', '2020-10-02', NULL, 5, 41, 2, 31, 41, 2, '2020-10-02 14:44:12+07', '2020-10-03 08:19:07+07', '2020-10-02', 100, NULL, NULL, 2297, 1, 2, false, '2020-10-03 08:19:07+07');
INSERT INTO public.issues VALUES (2298, 2, 46, 'api tạo phiếu nhập hàng từ phiếu chuyển kho', '', '2020-10-05', NULL, 5, 38, 2, 32, 5, 5, '2020-10-03 01:21:32+07', '2020-10-07 08:19:59+07', '2020-10-05', 100, NULL, NULL, 2298, 1, 2, false, '2020-10-07 08:19:59+07');
INSERT INTO public.issues VALUES (2299, 2, 46, 'Mobile - Thêm sp', '', '2020-10-10', NULL, 5, 10, 2, 32, 5, 4, '2020-10-03 13:40:27+07', '2020-10-14 07:52:39+07', '2020-10-09', 100, NULL, NULL, 2299, 1, 2, false, '2020-10-14 07:52:39+07');
INSERT INTO public.issues VALUES (2300, 2, 46, 'Mobile - Tạo phiếu nhập', '', '2020-10-17', NULL, 5, 10, 2, 38, 5, 5, '2020-10-03 13:40:55+07', '2020-10-20 15:00:31+07', '2020-10-12', 100, NULL, NULL, 2300, 1, 2, false, '2020-10-20 15:00:31+07');
INSERT INTO public.issues VALUES (2301, 2, 46, 'Mobile - Tạo đơn bán hàng', '', '2020-10-17', NULL, 5, 17, 2, 38, 5, 5, '2020-10-03 13:42:44+07', '2020-10-16 09:55:11+07', '2020-10-12', 100, NULL, NULL, 2301, 1, 2, false, '2020-10-16 09:55:11+07');
INSERT INTO public.issues VALUES (2302, 2, 46, 'Mobile - nạp tiền', '', '2020-10-06', NULL, 5, 17, 2, 32, 5, 3, '2020-10-03 13:43:00+07', '2020-10-10 12:53:50+07', '2020-10-05', 100, NULL, NULL, 2302, 1, 2, false, '2020-10-10 12:53:50+07');
INSERT INTO public.issues VALUES (2303, 2, 46, 'API cập nhật đơn chuyển kho', '', '2020-10-03', NULL, 5, 41, 2, 31, 41, 2, '2020-10-03 14:27:57+07', '2020-10-05 09:38:26+07', '2020-10-03', 100, 8, NULL, 2303, 1, 2, false, '2020-10-05 09:38:26+07');
INSERT INTO public.issues VALUES (2304, 1, 46, 'Lỗi xem theo trạng thái đơn hàng của DS đơn hàng', 'Xác minh chức năng "Xem theo trạng thái đơn hàng" thành công.

*Các bước thực hiện:
1. Tick vào trạng thái " Đã Thanh Toán" hoặc "Đã hủy"

*Kết quả mong đợi:
Xem đơn hàng theo trạng thái thành công

*Kết quả thực tế:
Khi tick vào cả 2 chỉ xem được trạng thái đã thanh toán

', '2020-10-12', NULL, 5, NULL, 2, 38, 40, 4, '2020-10-03 15:17:55+07', '2020-10-17 11:51:45+07', '2020-10-12', 100, NULL, NULL, 2304, 1, 2, false, '2020-10-14 16:16:08+07');
INSERT INTO public.issues VALUES (2305, 1, 46, 'Lỗi thêm điểm kinh doanh thất bại', 'Xác minh chức năng"Thêm" điểm kinh doanh không thành công. Khi người dùng không nhập thông tin vào các trường yêu cầu

*Các bước thực hiện:
1. Click "Thêm mới"
2. Không nhập đầy đủ thông tin vào các trường yêu cầu
3. Click "Đồng ý"

*Kết quả mong đợi:
Hiển thị thông báo lỗi

*Kết quả thực tế
Cho phép thêm mới thành công
', '2020-10-12', NULL, 5, 39, 2, 38, 40, 3, '2020-10-03 08:23:56+07', '2020-10-17 11:53:42+07', '2020-10-12', 100, NULL, NULL, 2305, 1, 2, false, '2020-10-05 09:41:23+07');
INSERT INTO public.issues VALUES (2306, 1, 46, 'Lỗi sửa điểm kinh doanh thất bại', 'Xác minh chức năng "Sửa" không thành công. Khi người dùng không nhập thông tin vào các trường yêu cầu

*Các bước thực hiện:
1. Click "Sửa" ở nội dung cần chỉnh sửa
2. Không nhập thông tin vào các trường yêu cầu
3. Click "Đồng ý"

*Kết quả mong đợi:
Hiển thị thông báo lỗi

*Kết quả thực tế:
Cho phép sửa thông tin thành công
', '2020-10-12', NULL, 5, 39, 2, 38, 40, 3, '2020-10-03 08:25:40+07', '2020-10-17 11:53:42+07', '2020-10-12', 100, NULL, NULL, 2306, 1, 2, false, '2020-10-05 09:41:23+07');
INSERT INTO public.issues VALUES (2307, 1, 46, 'lỗi tìm kiếm Điểm kinh doanh', 'Xác minh chức năng "Tìm kiếm". Khi người dùng nhập thông tin vào ô tìm kiếm

*Các bước thực hiện:
1. Nhập thông tin vào tìm kiếm
2. Nhấn phím Enter

*Kết quả mong đợi:
Hiển thị danh sách liên quan đến nội dung tìm kiếm hoặc thông báo lỗi nếu nội dung tìm kiếm không có trong danh sách

*Kết quả thực tế:
Hiển thị tất cả danh sách không liên quan đến nội dung tìm kiếm
', '2020-10-12', NULL, 5, 39, 2, 38, 40, 3, '2020-10-03 15:27:32+07', '2020-10-17 11:53:42+07', '2020-10-12', 100, NULL, NULL, 2307, 1, 2, false, '2020-10-05 09:41:23+07');
INSERT INTO public.issues VALUES (2309, 2, 46, 'api xóa phiếu chuyển', '', '2020-10-05', NULL, 5, 38, 2, 32, 5, 4, '2020-10-03 15:55:18+07', '2020-10-07 08:20:22+07', '2020-10-05', 100, NULL, NULL, 2309, 1, 2, false, '2020-10-07 08:20:22+07');
INSERT INTO public.issues VALUES (2310, 1, 46, 'lỗi Báo cáo nhập xuất tồn thành công', 'Xác minh chức năng "báo cáo" nhập xuất tồn  thành công. Khi người dùng nhập đầy đủ thông tin và hợp lệ

*Các bước thực hiện:

1. Click "Báo Cáo Nhập Xuất Tồn Kho" 
2. Nhập đầy đủ thông tin các trường và hợp lệ
3. Click "Báo Cáo"
*Kết quả mong đợi:
Hiển thị Kết quả báo cáo thành công

*Kết quả thực thế:
Kết quả báo cáo sai', '2020-10-12', NULL, 5, NULL, 2, 38, 40, 2, '2020-10-03 16:05:30+07', '2020-10-17 11:53:42+07', '2020-10-12', 100, NULL, NULL, 2310, 1, 2, false, '2020-10-14 14:47:45+07');
INSERT INTO public.issues VALUES (2311, 1, 46, 'lỗi lọc phiếu trong sổ quỹ tiền mặt', 'Xác minh chức năng "Lọc phiếu" của sổ quỹ tiền mặt

*Các bước thực hiện:
1. Click "Sổ Qũy" của danh mục tài chính
2. Nhập thông tin cần lọc vào ô textbox
3. Click "Lọc"

*Kết quả mong đợi:
Hiển thị kết quả tương ứng với nội dung cần lọc

*Kết quả thực tế:
Hiển thị kết quả lọc sai
', '2020-10-12', NULL, 5, NULL, 2, 38, 40, 2, '2020-10-03 16:43:43+07', '2020-10-17 11:53:42+07', '2020-10-12', 100, NULL, NULL, 2311, 1, 2, false, '2020-10-03 16:50:25+07');
INSERT INTO public.issues VALUES (2312, 2, 46, 'Dashboard: Api thống kê doanh thu từ bán hàng theo điểm kinh doanh từ ngày đến ngày.', '', '2020-10-03', NULL, 5, 19, 2, 31, 12, 3, '2020-10-05 08:08:14+07', '2020-10-05 09:38:26+07', '2020-10-03', 100, NULL, NULL, 2312, 1, 2, false, '2020-10-05 09:38:26+07');
INSERT INTO public.issues VALUES (2313, 2, 46, 'Dashboard: Api thống kê doanh thu từ bán THẺ theo điểm kinh doanh từ ngày đến ngày.', '', '2020-10-03', NULL, 5, 19, 2, 31, 12, 4, '2020-10-05 08:08:45+07', '2020-10-05 09:38:27+07', '2020-10-03', 100, NULL, NULL, 2313, 1, 2, false, '2020-10-05 09:38:27+07');
INSERT INTO public.issues VALUES (2314, 2, 46, 'Dashboard: Api thống kê top sản phẩm bán chạy theo điểm kinh doanh từ ngày đến ngày.', '', '2020-10-03', NULL, 5, 19, 2, 31, 12, 4, '2020-10-05 08:10:01+07', '2020-10-05 09:38:27+07', '2020-10-03', 100, NULL, NULL, 2314, 1, 2, false, '2020-10-05 09:38:27+07');
INSERT INTO public.issues VALUES (2315, 2, 4, 'Xuất excel mục thống kê điểm đầu tư theo điều kiện lọc', '', '2020-10-07', NULL, 3, 13, 2, 37, 13, 6, '2020-10-05 08:10:15+07', '2021-02-05 08:54:16+07', '2020-10-05', 100, NULL, 2230, 2230, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (2316, 2, 46, 'Dashboard: Api thông tin kho tại thời điểm hiện tại', '', '2020-10-03', NULL, 5, 19, 2, 31, 12, 4, '2020-10-05 08:10:50+07', '2020-10-05 09:38:27+07', '2020-10-03', 100, NULL, NULL, 2316, 1, 2, false, '2020-10-05 09:38:27+07');
INSERT INTO public.issues VALUES (2317, 2, 46, 'Dashboard: Giao diện dashboard', '', '2020-10-03', NULL, 5, 12, 2, 31, 12, 4, '2020-10-05 08:11:41+07', '2020-10-05 09:38:27+07', '2020-10-03', 100, NULL, NULL, 2317, 1, 2, false, '2020-10-05 09:38:27+07');
INSERT INTO public.issues VALUES (2318, 2, 46, 'Xử lí trạng thái Phiếu chuyển kho', '', '2020-10-06', NULL, 5, 39, 2, 32, 39, 3, '2020-10-05 08:12:27+07', '2020-10-10 12:53:50+07', '2020-10-05', 100, NULL, NULL, 2318, 1, 2, false, '2020-10-10 12:53:50+07');
INSERT INTO public.issues VALUES (2319, 2, 46, 'Dashboard: Gắn api doanh thu bán hàng theo điểm kinh doanh từ ngày đến ngày.', '', '2020-10-05', NULL, 5, 12, 2, 32, 12, 7, '2020-10-05 08:12:30+07', '2020-10-07 08:20:00+07', '2020-10-05', 100, NULL, NULL, 2319, 1, 2, false, '2020-10-07 08:20:00+07');
INSERT INTO public.issues VALUES (2320, 2, 46, 'Dashboard: Gắn api thống kê doanh thu từ bán thẻ theo điểm kinh doanh từ ngày đến ngày.', '', '2020-10-05', NULL, 5, 12, 2, 32, 12, 8, '2020-10-05 08:12:57+07', '2020-10-07 08:20:22+07', '2020-10-05', 100, NULL, NULL, 2320, 1, 2, false, '2020-10-07 08:20:22+07');
INSERT INTO public.issues VALUES (2321, 2, 4, 'Hiển thị danh sách điểm mời gọi trên trang dashboard', '', '2020-10-07', NULL, 3, 13, 2, 37, 13, 5, '2020-10-05 08:13:18+07', '2021-02-05 08:54:16+07', '2020-10-05', 100, NULL, 2230, 2230, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (2322, 2, 46, 'Dashboard: Api thống kê top sản phẩm bán chạy theo điểm kinh doanh từ ngày đến ngày.', '', '2020-10-03', NULL, 5, 19, 2, 31, 12, 5, '2020-10-05 08:13:32+07', '2020-10-05 09:38:27+07', '2020-10-03', 100, NULL, NULL, 2322, 1, 2, false, '2020-10-05 09:38:27+07');
INSERT INTO public.issues VALUES (2323, 2, 46, 'Dashboard: Gắn api thông tin kho tại thời điển hiện tại', '', '2020-10-05', NULL, 5, 12, 2, 32, 12, 6, '2020-10-05 08:14:21+07', '2020-10-07 08:20:22+07', '2020-10-05', 100, NULL, NULL, 2323, 1, 2, false, '2020-10-07 08:20:22+07');
INSERT INTO public.issues VALUES (2324, 2, 46, 'Dashboard: Gắn api thông kê doanh thu của ngày hiện tại', '', '2020-10-03', NULL, 5, 12, 2, 31, 12, 4, '2020-10-05 08:14:58+07', '2020-10-05 09:38:27+07', '2020-10-03', 100, NULL, NULL, 2324, 1, 2, false, '2020-10-05 09:38:27+07');
INSERT INTO public.issues VALUES (2325, 2, 4, 'Xuất excel các thống kê KKT, KCN, CCN, DDT', '', '2020-10-07', NULL, 3, 37, 2, 37, 13, 4, '2020-10-05 11:23:30+07', '2020-10-06 09:04:17+07', '2020-10-05', 100, NULL, 2230, 2230, 14, 15, false, NULL);
INSERT INTO public.issues VALUES (2326, 2, 4, 'tìm kiếm thống kê theo khu vực khác trên trang chủ', '', '2020-10-06', NULL, 3, 13, 2, 37, 13, 2, '2020-10-05 16:58:23+07', '2020-10-07 10:21:36+07', '2020-10-05', 100, NULL, NULL, 2326, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2327, 2, 46, 'Dashboard: Api doanh thu các điểm kinh doanh', '', '2020-10-06', NULL, 5, 19, 2, 32, 12, 4, '2020-10-06 08:13:30+07', '2020-10-07 08:20:22+07', '2020-10-06', 100, NULL, NULL, 2327, 1, 2, false, '2020-10-07 08:20:22+07');
INSERT INTO public.issues VALUES (2328, 2, 46, 'Dashboard: Gắp api doanh thu các điểm kinh doanh', '', '2020-10-06', NULL, 5, 12, 2, 32, 12, 4, '2020-10-06 08:14:21+07', '2020-10-07 08:20:23+07', '2020-10-06', 100, NULL, NULL, 2328, 1, 2, false, '2020-10-07 08:20:23+07');
INSERT INTO public.issues VALUES (2329, 3, 4, 'Kiểm tra dữ liệu', '', '2020-09-30', NULL, 3, 13, 2, 36, 13, 2, '2020-10-06 08:21:11+07', '2021-02-05 08:54:16+07', '2020-09-29', 100, NULL, NULL, 2329, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2330, 2, 46, 'Cập nhật phiếu kiểm kê', '', '2020-10-08', NULL, 5, 39, 2, 32, 5, 6, '2020-10-06 08:42:27+07', '2020-10-10 12:53:50+07', '2020-10-08', 100, NULL, NULL, 2330, 1, 2, false, '2020-10-10 12:53:50+07');
INSERT INTO public.issues VALUES (2331, 2, 46, 'Xóa phiếu kiểm kê', '', '2020-10-08', NULL, 5, 39, 2, 32, 5, 6, '2020-10-06 08:42:42+07', '2020-10-10 12:53:51+07', '2020-10-08', 100, NULL, NULL, 2331, 1, 2, false, '2020-10-10 12:53:51+07');
INSERT INTO public.issues VALUES (2332, 2, 46, 'Xử lý phiếu kiểm kho', '', '2020-10-08', NULL, 5, 39, 2, 32, 5, 6, '2020-10-06 08:43:31+07', '2020-10-10 12:53:51+07', '2020-10-08', 100, NULL, NULL, 2332, 1, 2, false, '2020-10-10 12:53:51+07');
INSERT INTO public.issues VALUES (2333, 2, 4, 'Giao diện thống kê doanh nghiệp', '', '2020-10-06', NULL, 3, 13, 2, 37, 13, 1, '2020-10-06 09:05:33+07', '2020-10-06 10:21:43+07', '2020-10-06', 100, NULL, 2230, 2230, 16, 17, false, NULL);
INSERT INTO public.issues VALUES (2334, 2, 4, 'api thống kê doanh nghiệp', '', '2020-10-06', NULL, 3, 13, 2, 37, 13, 1, '2020-10-06 09:06:31+07', '2020-10-06 10:21:43+07', '2020-10-06', 100, NULL, 2230, 2230, 18, 19, false, NULL);
INSERT INTO public.issues VALUES (2335, 2, 4, 'Xuất excel doanh nghiệp', '', '2020-10-06', NULL, 3, 37, 2, 37, 13, 2, '2020-10-06 09:07:58+07', '2020-10-06 13:21:39+07', '2020-10-06', 100, NULL, 2230, 2230, 20, 21, false, NULL);
INSERT INTO public.issues VALUES (2336, 2, 47, 'api cho sơ đồ dự án', '', '2020-10-10', NULL, 1, NULL, 2, 39, 5, 0, '2020-10-06 10:51:10+07', '2020-10-06 10:51:10+07', '2020-10-05', 0, NULL, NULL, 2336, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2337, 2, 47, 'Quản lý sản phẩm', '', '2020-10-12', NULL, 1, NULL, 2, 40, 5, 2, '2020-10-06 11:08:27+07', '2020-10-06 11:09:34+07', '2020-10-12', 0, NULL, NULL, 2337, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2338, 2, 47, 'Cài đặt bảng giá', '', '2020-10-12', NULL, 1, NULL, 2, 40, 5, 2, '2020-10-06 11:08:58+07', '2020-10-06 11:09:34+07', '2020-10-12', 0, NULL, NULL, 2338, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2339, 2, 46, 'Tách dashboard', '', '2020-10-07', NULL, 5, 12, 2, 32, 12, 5, '2020-10-06 17:04:53+07', '2020-10-10 12:53:51+07', '2020-10-07', 100, NULL, NULL, 2339, 1, 2, false, '2020-10-10 12:53:51+07');
INSERT INTO public.issues VALUES (2340, 2, 46, 'Check tồn quỹ ', '', '2020-10-07', NULL, 5, 41, 2, 32, 41, 2, '2020-10-07 07:59:17+07', '2020-10-10 12:53:51+07', '2020-10-07', 100, NULL, NULL, 2340, 1, 2, false, '2020-10-10 12:53:51+07');
INSERT INTO public.issues VALUES (2341, 2, 46, 'API tạo phiếu kiểm kho', '', '2020-10-08', NULL, 5, 41, 2, 32, 41, 2, '2020-10-07 13:53:50+07', '2020-10-10 12:53:51+07', '2020-10-07', 100, NULL, NULL, 2341, 1, 2, false, '2020-10-10 12:53:51+07');
INSERT INTO public.issues VALUES (2342, 5, 35, 'Số hóa 10 DA (Đợt 4) QHC-QHPK & QHNTM Huyện Phước Long, Bù Đốp, Hớn Quản, Phú Riềng, Tỉnh Bình Phước', '', '2020-10-31', NULL, 1, 33, 2, NULL, 33, 14, '2020-10-08 08:14:38+07', '2020-11-09 08:29:36+07', '2020-10-08', 100, NULL, NULL, 2342, 1, 18, false, NULL);
INSERT INTO public.issues VALUES (2343, 5, 35, '01 Quy hoạch phân khu phường Phú Đức', 'Xữ Lý bản đồ', '2020-10-12', NULL, 1, 33, 2, NULL, 33, 2, '2020-10-08 08:16:46+07', '2020-11-09 08:29:30+07', '2020-10-09', 100, NULL, 2342, 2342, 2, 5, false, NULL);
INSERT INTO public.issues VALUES (2344, 5, 35, '4 Quy hoạch xây dựng Nông thôn mới xã Hưng Phước', 'Xửa lý bản đồ và nhập liệu', '2020-10-13', NULL, 1, 32, 2, NULL, 33, 1, '2020-10-08 08:17:38+07', '2020-11-05 13:13:38+07', '2020-10-08', 100, NULL, 2342, 2342, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (2345, 5, 35, '5 Quy hoạch xây dựng Nông thôn mới xã Phước Thiện', 'Xử lý bản đồ và nhập liệu', '2020-10-13', NULL, 1, 23, 2, NULL, 33, 1, '2020-10-08 08:18:37+07', '2020-11-09 08:29:16+07', '2020-10-08', 100, NULL, 2342, 2342, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (2348, 2, 46, 'Xem phiếu kiểm kho', '', '2020-10-08', NULL, 5, 39, 2, 32, 39, 2, '2020-10-08 11:05:45+07', '2020-10-10 12:53:51+07', '2020-10-08', 100, NULL, NULL, 2348, 1, 2, false, '2020-10-10 12:53:51+07');
INSERT INTO public.issues VALUES (2349, 2, 46, 'API cập nhật phiếu kiểm kho', '', '2020-10-08', NULL, 5, 41, 2, 32, 41, 2, '2020-10-08 15:05:58+07', '2020-10-10 12:53:51+07', '2020-10-08', 100, 8, NULL, 2349, 1, 2, false, '2020-10-10 12:53:51+07');
INSERT INTO public.issues VALUES (2350, 2, 46, 'API Piechart Doanh thu ban the', 'API Piechart Doanh thu ban the', '2020-10-09', NULL, 5, 19, 2, 32, 19, 3, '2020-10-08 15:12:43+07', '2020-10-10 12:53:51+07', '2020-10-08', 100, 0, NULL, 2350, 1, 2, false, '2020-10-10 12:53:51+07');
INSERT INTO public.issues VALUES (2351, 5, 35, 'QHPK Phú Đức', 'Nhập liệu', '2020-10-12', NULL, 1, 29, 2, NULL, 33, 1, '2020-10-08 16:58:49+07', '2020-11-09 08:29:30+07', '2020-10-09', 100, NULL, 2343, 2342, 3, 4, false, NULL);
INSERT INTO public.issues VALUES (2352, 1, 46, 'Sổ quỹ: Sửa chức năng cập nhật phiếu thu, chi', '', '2020-10-09', NULL, 5, 12, 2, 32, 12, 3, '2020-10-09 11:24:50+07', '2020-10-10 12:53:51+07', '2020-10-09', 100, NULL, NULL, 2352, 1, 2, false, '2020-10-10 12:53:51+07');
INSERT INTO public.issues VALUES (2353, 3, 49, 'Bàn giao nghiệp vụ hỗ trợ khách hàng sử dụng phần mềm', '- Thực hiện hướng dẫn, bàn giao nghiệp vụ, sử dụng hỗ trợ khách hàng khi có yêu cầu hỗ trợ cho Thảo và nhân viên mới tiếp nhận', '2020-12-16', NULL, 1, NULL, 2, NULL, 21, 1, '2020-10-09 14:32:20+07', '2020-12-17 08:33:57+07', '2020-12-16', 100, NULL, NULL, 2353, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2354, 2, 49, 'Tiếp nhận vai trò hỗ trợ khách hàng các hệ thống phần mềm', '- Nhận bàn giao công việc hỗ trợ khách hàng sử dụng hệ thống quản lý tiền lương 
- Thực hiện Soạn thảo các hướng dẫn sử dụng bằng văn bản, video hướng dẫn thao tác các hệ thống
- Vào tài khoản admin Sở Tài chính trong hệ thống sửa tên đồng bộ tất cả các đơn vị sử dụng (Toàn bộ viết hoa và đúng tên của đơn vị)
', '2020-10-17', NULL, 1, 9, 2, NULL, 21, 1, '2020-10-09 14:37:13+07', '2020-11-17 11:36:37+07', '2020-10-09', 0, NULL, NULL, 2354, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2355, 1, 4, 'Thêm Thông tin quy hoạch của Điểm đầu tư', '', '2020-10-20', NULL, 3, 13, 2, 53, 40, 9, '2020-10-09 15:17:15+07', '2020-10-30 14:13:36+07', '2020-10-19', 100, NULL, NULL, 2355, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2356, 1, 4, 'Lỗi Sửa Thông tin quy hoạch của điểm đầu tư', 'Kết quả sai: Không nhập thông tin vào các trường nhưng vẫn cho phép cập nhật thành công', '2020-10-20', NULL, 3, 13, 2, 49, 40, 10, '2020-10-09 15:19:04+07', '2020-10-23 16:06:54+07', '2020-10-19', 100, NULL, NULL, 2356, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2357, 1, 4, 'Lôĩ Thông báo Yes-No của điểm đầu tư', '', '2020-10-14', NULL, 3, 13, 2, 45, 40, 6, '2020-10-09 08:21:18+07', '2020-10-19 08:29:45+07', '2020-10-13', 100, NULL, NULL, 2357, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2358, 1, 4, 'Lỗi_Thêm chi tiết thuê đất doanh nghiệp', '', '2020-10-20', NULL, 3, 13, 2, 53, 40, 9, '2020-10-09 15:27:12+07', '2020-10-30 14:13:36+07', '2020-10-19', 100, NULL, NULL, 2358, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2359, 1, 4, 'Lỗi_Giao diện thông tin mời gọi', '', '2020-10-11', NULL, 3, 13, 2, 37, 40, 5, '2020-10-09 15:29:07+07', '2021-02-05 08:54:16+07', '2020-10-10', 100, NULL, NULL, 2359, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2360, 1, 4, 'Lỗi Sửa điểm đầu tư', 'Các bước thực hiện:
1. Nhấn chuột vào Quản lý xúc tiến đầu tư
2. Chọn Điểm đầu tư
3. Nhấn nút chỉnh sửa
4. Nhập nội dung chỉnh sửa

--> Kết quả sai: Không nhập thông tin vào các trường có dấu * nhưng vẫn cho phép lưu- Bản đồ thông báo cập nhật thành công nhưng không lưu', '2020-10-14', NULL, 3, 13, 2, 45, 40, 8, '2020-10-09 15:46:14+07', '2021-02-05 08:54:16+07', '2020-10-13', 100, NULL, NULL, 2360, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2361, 1, 4, 'Lỗi Sửa Thông tin doanh nghiệp', 'Các bước thực hiện:
1. Vào điểm đầu tư
2. Chọn thông tin đầu tư
3. Chọn 1 doanh nghiệp
4. Chọn biểu tượng Sửa của thông tin thuê
5. Nhập nội dung chỉnh sửa

--> Kết quả sai: 
- Khi nhập sai định dạng --> chọn biểu tượng Lưu --> Thông tin đúng định dạng thì hiển thị, sai định dạng không hiển thị nhưng không có thông báo lỗi.
- Nút hủy chỉnh sửa của thông tin doanh nghiệp và thông tin thuê đều sai', '2020-10-14', NULL, 3, 13, 2, 45, 40, 7, '2020-10-09 16:15:50+07', '2020-10-12 16:33:17+07', '2020-10-13', 100, NULL, NULL, 2361, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2362, 1, 4, 'Lỗi Chỉnh sửa Khu công nghiệp', 'Kết quả sai: Không nhập dữ liệu vào dấu * nhưng vẫn lưu được', '2020-10-11', NULL, 3, 13, 2, 37, 40, 6, '2020-10-09 16:49:04+07', '2021-02-05 08:54:16+07', '2020-10-10', 100, NULL, NULL, 2362, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2363, 1, 4, 'Lỗi chỉnh sửa Khu Kinh Tế', 'Kết quả sai: Không nhập thông tin vào các trường dấu * nhưng vẫn cập nhật thành công', '2020-10-11', NULL, 3, 13, 2, 37, 40, 6, '2020-10-09 16:57:13+07', '2021-02-05 08:54:16+07', '2020-10-10', 100, NULL, NULL, 2363, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2364, 1, 4, 'Lỗi Tìm kiếm Khu Kinh Tế', '', '2020-10-11', NULL, 3, 13, 2, 37, 40, 5, '2020-10-09 16:57:47+07', '2021-02-05 08:54:17+07', '2020-10-10', 100, NULL, NULL, 2364, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2365, 1, 4, 'Lỗi chỉnh sửa cụm công nghiệp', 'kết quả sai: Không nhập thông tin vào trường dấu * vẫn cho phép cập nhật thành công', '2020-10-11', NULL, 3, 13, 2, 37, 40, 6, '2020-10-09 17:04:26+07', '2021-02-05 08:54:17+07', '2020-10-10', 100, NULL, NULL, 2365, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2366, 1, 4, 'Lỗi chỉnh sửa Doanh nghiệp', 'Kết quả sai: Xóa tất cả thông tin nhưng vẫn chp phép cập nhật thành công', '2020-10-14', NULL, 3, 13, 2, 45, 40, 5, '2020-10-09 17:07:13+07', '2020-10-12 16:33:18+07', '2020-10-13', 100, NULL, NULL, 2366, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2367, 1, 4, 'Lỗi Tải Excel ở trang Dashboard ', 'Kết quả sai: File Excel nào có ngày thành lập đều sai.', '2020-10-20', NULL, 5, 13, 2, 53, 40, 9, '2020-10-10 08:01:38+07', '2020-11-03 08:16:44+07', '2020-10-19', 0, NULL, NULL, 2367, 1, 2, false, '2020-11-03 08:16:44+07');
INSERT INTO public.issues VALUES (2368, 1, 4, 'Lỗi Số liệu trên trang Dashboard', 'Số liệu sai: Doanh nghiệp, dự án đầu tư, dự án đang mời gọi, tổng mức đầu tư dự kiến', '2020-10-11', NULL, 3, 13, 2, 37, 40, 5, '2020-10-10 08:12:21+07', '2020-10-12 08:17:24+07', '2020-10-10', 100, NULL, NULL, 2368, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2369, 1, 4, 'Tìm kiếm nâng cao trên bản đồ', 'Tìm kiếm theo địa bàn và diện tích sai', '2020-10-24', NULL, 3, 13, 2, 49, 40, 5, '2020-10-10 08:39:29+07', '2020-10-24 09:36:22+07', '2020-10-23', 100, NULL, NULL, 2369, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2370, 2, 46, 'Trang thông tin tài khoản', '', '2020-10-10', NULL, 5, 39, 2, 32, 39, 3, '2020-10-10 09:29:36+07', '2020-10-14 07:52:39+07', '2020-10-10', 100, NULL, NULL, 2370, 1, 2, false, '2020-10-14 07:52:39+07');
INSERT INTO public.issues VALUES (2371, 2, 46, 'Update giao diện báo cáo', '', '2020-10-10', NULL, 5, 37, 2, 32, 39, 4, '2020-10-10 09:36:18+07', '2020-10-14 07:52:40+07', '2020-10-10', 100, NULL, NULL, 2371, 1, 2, false, '2020-10-14 07:52:40+07');
INSERT INTO public.issues VALUES (2372, 2, 46, 'Danh mục bàn', '', '2020-10-10', NULL, 5, 37, 2, 32, 37, 1, '2020-10-10 09:38:19+07', '2020-10-10 12:53:51+07', '2020-10-10', 100, NULL, NULL, 2372, 1, 2, false, '2020-10-10 12:53:51+07');
INSERT INTO public.issues VALUES (2373, 2, 46, 'Danh mục khu vực bàn', '', '2020-10-10', NULL, 5, 37, 2, 32, 37, 1, '2020-10-10 09:38:45+07', '2020-10-10 12:53:52+07', '2020-10-10', 100, NULL, NULL, 2373, 1, 2, false, '2020-10-10 12:53:52+07');
INSERT INTO public.issues VALUES (2374, 1, 4, 'Tìm kiếm nâng cao của Mời gọi đầu tư', '', '2020-10-23', NULL, 3, 13, 2, 49, 40, 3, '2020-10-10 10:15:41+07', '2020-10-24 09:34:50+07', '2020-10-22', 100, NULL, NULL, 2374, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2405, 1, 46, 'Lỗi tạo phiếp nhập của danh mục chuyển kho', 'Ngày tạo phiếu nhập phải lớn hơn hoặc bằng ngày xuất hàng', '2020-10-15', NULL, 5, 39, 2, 38, 40, 2, '2020-10-14 10:44:59+07', '2020-10-16 09:55:13+07', '2020-10-14', 100, NULL, NULL, 2405, 1, 2, false, '2020-10-16 09:55:13+07');
INSERT INTO public.issues VALUES (2375, 2, 50, 'Team Nghĩa', 'DỰ ÁN: **QUẢN LÝ BÁN HÀNG**

NHÂN SỰ: **NGHĨA(Leader), TOÀN, QUÝ, VIỆT, TIẾN LÊ, TIẾN ĐẶNG, DUNG(Mobile)**

TỔNG ĐIỂM: **191**

ĐÃ HOÀN THÀNH: **166**

CÒN LẠI: **25**

TIẾN ĐỘ: **87%**', '2020-10-24', NULL, 3, 5, 2, 42, 5, 8, '2020-10-10 10:51:55+07', '2020-11-16 11:37:44+07', '2020-10-24', 100, NULL, NULL, 2375, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2376, 2, 50, 'Team A. Vũ', '', '2020-10-24', NULL, 1, NULL, 2, 42, 5, 1, '2020-10-10 10:52:14+07', '2020-11-16 09:48:05+07', '2020-10-24', 0, NULL, NULL, 2376, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2377, 2, 50, 'Team Ngọc', '', '2020-10-24', NULL, 1, NULL, 2, 42, 5, 1, '2020-10-10 10:52:29+07', '2020-11-16 09:48:05+07', '2020-10-24', 0, NULL, NULL, 2377, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2378, 2, 50, 'Team Đồng', '', '2020-10-24', NULL, 1, NULL, 2, 42, 5, 1, '2020-10-10 10:52:42+07', '2020-11-16 09:48:05+07', '2020-10-24', 0, NULL, NULL, 2378, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2379, 2, 50, 'Team A. Tiến', '', '2020-10-24', NULL, 1, NULL, 2, 42, 5, 1, '2020-10-10 10:52:58+07', '2020-11-16 09:48:05+07', '2020-10-24', 0, NULL, NULL, 2379, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2380, 2, 46, 'Tính giá bán', '', '2020-10-13', NULL, 5, 8, 2, 38, 5, 6, '2020-10-10 16:51:25+07', '2020-10-16 09:55:11+07', '2020-10-13', 100, NULL, NULL, 2380, 1, 2, false, '2020-10-16 09:55:11+07');
INSERT INTO public.issues VALUES (2382, 1, 46, 'Chỉnh sửa Chi tiết phiếu chuyển kho', 'Thay đổi giao diện chi tiết phiếu chuyển kho
 + chọn sản phẩm hiển thị sẵn
 + nhập mã sản phẩm ( tránh việc sử dụng chuột quá nhiều)', '2020-10-15', NULL, 5, 39, 2, 38, 40, 7, '2020-10-12 08:16:22+07', '2020-10-17 11:45:07+07', '2020-10-15', 100, NULL, NULL, 2382, 1, 2, false, '2020-10-17 11:45:07+07');
INSERT INTO public.issues VALUES (2383, 1, 46, 'Thêm Đơn vị itính ở mỗi sản phẩm', '', '2020-10-13', NULL, 5, 39, 2, 38, 40, 3, '2020-10-12 08:16:51+07', '2020-10-16 09:55:11+07', '2020-10-12', 100, NULL, NULL, 2383, 1, 2, false, '2020-10-16 09:55:11+07');
INSERT INTO public.issues VALUES (2384, 1, 46, 'Lỗi Cập nhật giờ', 'Cập nhật giờ hiện tại', '2020-10-12', NULL, 5, 39, 2, 38, 40, 4, '2020-10-12 08:19:23+07', '2020-10-16 09:55:12+07', '2020-10-12', 100, NULL, NULL, 2384, 1, 2, false, '2020-10-16 09:55:12+07');
INSERT INTO public.issues VALUES (2385, 1, 46, 'Lỗi khi yêu cầu chuyển kho bên yêu cầu không được biết số lượng kho Tổng', 'Bên được biết số lượng kho Tổng chỉ khi nào đượccho phép', '2020-10-15', NULL, 5, 39, 2, 38, 40, 5, '2020-10-12 08:23:54+07', '2020-10-16 09:55:12+07', '2020-10-14', 100, NULL, NULL, 2385, 1, 2, false, '2020-10-16 09:55:12+07');
INSERT INTO public.issues VALUES (2386, 1, 46, 'Chỉnh sửa Phiếu in', '- Logo nhỏ lại
- thêm mục: số tiền nhận từ khách, số tiền trả lại khách
- Đầy đủ các cột: Tên, đơn giá, số lượng, thành tiền', '2020-10-14', NULL, 5, 8, 2, 38, 40, 6, '2020-10-12 08:27:42+07', '2020-10-16 09:55:12+07', '2020-10-14', 100, NULL, NULL, 2386, 1, 2, false, '2020-10-16 09:55:12+07');
INSERT INTO public.issues VALUES (2387, 1, 46, 'Chỉnh sửa giao diện tạo đơn hàng', 'Giao diện hóa đơn nhỏ lại - giao diện menu lớn hơn', '2020-10-14', NULL, 5, 8, 2, 38, 40, 4, '2020-10-12 08:31:19+07', '2020-10-16 09:55:12+07', '2020-10-14', 100, NULL, NULL, 2387, 1, 2, false, '2020-10-16 09:55:12+07');
INSERT INTO public.issues VALUES (2388, 1, 46, 'Lỗi thanh toán, nhập số thẻ', 'Bằng thiết bị đọc code, không nhập số', '2020-10-15', NULL, 5, 8, 2, 38, 40, 4, '2020-10-12 08:34:16+07', '2020-10-16 09:55:12+07', '2020-10-15', 100, NULL, NULL, 2388, 1, 2, false, '2020-10-16 09:55:12+07');
INSERT INTO public.issues VALUES (2389, 1, 46, 'chỉnh sửa tiêu đề danh mục trong giao diện', 'Nên để tiêu đề danh mục ra thanh ngang', '2020-10-12', NULL, 5, 39, 2, 38, 40, 3, '2020-10-12 08:39:21+07', '2020-10-16 09:55:12+07', '2020-10-12', 100, NULL, NULL, 2389, 1, 2, false, '2020-10-16 09:55:12+07');
INSERT INTO public.issues VALUES (2390, 1, 46, 'Lỗi thanh toán bằng thẻ', '', '2020-10-15', NULL, 5, 8, 2, 38, 40, 4, '2020-10-12 09:03:37+07', '2020-10-16 09:55:12+07', '2020-10-15', 100, NULL, NULL, 2390, 1, 2, false, '2020-10-16 09:55:12+07');
INSERT INTO public.issues VALUES (2391, 1, 46, 'Lỗi báo cáo kết quả kinh doanh', '- Kết quả báo cáo sai
- Chỉnh sửa lại tiêu đề', '2020-10-19', NULL, 5, 19, 2, 48, 40, 10, '2020-10-12 09:33:39+07', '2020-10-22 13:23:41+07', '2020-10-19', 100, NULL, NULL, 2391, 1, 2, false, '2020-10-22 13:23:41+07');
INSERT INTO public.issues VALUES (2392, 1, 46, 'Chỉnh sửa danh mục kho', 'Thêm cột Kho tổng, Kho chi nhánh, Tên thủ kho', '2020-10-16', NULL, 5, 37, 2, 38, 40, 7, '2020-10-12 13:45:06+07', '2020-10-17 11:45:07+07', '2020-10-12', 100, NULL, NULL, 2392, 1, 2, false, '2020-10-17 11:45:07+07');
INSERT INTO public.issues VALUES (2393, 2, 46, 'Update thêm Loại trong Sản phẩm dịch vụ', '', '2020-10-12', NULL, 5, 39, 2, 38, 39, 1, '2020-10-12 16:12:42+07', '2020-10-16 09:55:12+07', '2020-10-12', 100, NULL, NULL, 2393, 1, 2, false, '2020-10-16 09:55:12+07');
INSERT INTO public.issues VALUES (2394, 2, 51, 'Thiết kế database', '', '2020-10-13', NULL, 5, 19, 2, 47, 19, 3, '2020-10-12 16:25:26+07', '2020-10-19 10:33:39+07', '2020-10-09', 100, 24, NULL, 2394, 1, 2, false, '2020-10-19 10:33:39+07');
INSERT INTO public.issues VALUES (2395, 2, 51, 'Odata API', '', '2020-10-12', NULL, 3, 19, 2, 47, 19, 1, '2020-10-12 16:27:29+07', '2020-10-12 16:28:20+07', '2020-10-12', 100, 2, NULL, 2395, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2396, 2, 51, 'Giao diện danh sách request, gắn api theo loại và trạng thái', '', '2020-10-16', NULL, 3, 12, 2, 47, 19, 10, '2020-10-12 16:30:49+07', '2020-10-21 10:08:36+07', '2020-10-12', 100, NULL, NULL, 2396, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2397, 1, 4, 'Chỉ lấy thông tin thuê của điểm đầu tư chưa được', '', '2020-10-12', NULL, 3, 13, 2, 45, 13, 1, '2020-10-12 16:32:28+07', '2020-10-12 16:33:18+07', '2020-10-12', 100, NULL, NULL, 2397, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2398, 1, 46, 'Thu ngân, k đc tạo đơn hàng khi chưa settup ĐKD', 'Vào màn hình tạo đơn hàng, thì thông báo lên khi chưa setup điểm kinh doanh', '2020-10-13', NULL, 5, 8, 2, 38, 5, 4, '2020-10-13 08:07:30+07', '2020-10-17 11:45:07+07', '2020-10-13', 100, NULL, NULL, 2398, 1, 2, false, '2020-10-17 11:45:07+07');
INSERT INTO public.issues VALUES (2399, 5, 35, '10 Quy hoạch chung đô thị huyện Phú Riềng', 'Nhập liệu', '2020-10-17', NULL, 1, 24, 2, NULL, 33, 1, '2020-10-13 08:09:43+07', '2020-11-09 08:29:36+07', '2020-10-13', 100, NULL, 2342, 2342, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (2400, 1, 46, 'Lỗi Thêm Thiết Bị Đầu Đọc', 'Chỉnh sửa lại giao diện', '2020-10-13', NULL, 5, 39, 2, 38, 40, 2, '2020-10-13 08:40:48+07', '2020-10-16 09:55:13+07', '2020-10-13', 100, NULL, NULL, 2400, 1, 2, false, '2020-10-16 09:55:13+07');
INSERT INTO public.issues VALUES (2401, 1, 46, 'Lỗi Kích Hoạt Thẻ', 'Khi kích hoạt số thẻ nhiều hơn số thẻ có trong danh sách vẫn hiển thị thông báo thành công', '2020-10-13', NULL, 5, 39, 2, 38, 40, 2, '2020-10-13 08:50:40+07', '2020-10-16 09:55:13+07', '2020-10-13', 100, NULL, NULL, 2401, 1, 2, false, '2020-10-16 09:55:13+07');
INSERT INTO public.issues VALUES (2402, 1, 46, 'Lỗi Số Liệu Tổng Quan Bán Hàng ', 'sai số liệu: thông tin tại kho ĐKD và thông tin tại kho tổng trong ngày, tổng doanh thu bán hàng trong bản đồ.
Hiển thị thông báo khi người dùng xem thống kê từ ngày lơn hơn đến ngày
', '2020-10-20', NULL, 5, 41, 2, 48, 40, 11, '2020-10-13 13:52:13+07', '2020-10-24 16:58:54+07', '2020-10-19', 100, NULL, NULL, 2402, 1, 2, false, '2020-10-24 16:58:54+07');
INSERT INTO public.issues VALUES (2403, 2, 46, 'Cấu hình đơn vị', '', '2020-10-17', NULL, 5, 17, 2, 38, 39, 5, '2020-10-13 15:13:18+07', '2020-10-20 15:00:31+07', '2020-10-16', 100, NULL, NULL, 2403, 1, 2, false, '2020-10-20 15:00:31+07');
INSERT INTO public.issues VALUES (2404, 2, 46, 'Lưu local storage tạo hóa đơn', '', '2020-10-15', NULL, 5, 8, 2, 38, 5, 2, '2020-10-14 09:17:03+07', '2020-10-16 09:55:13+07', '2020-10-15', 100, NULL, NULL, 2404, 1, 2, false, '2020-10-16 09:55:13+07');
INSERT INTO public.issues VALUES (2554, 2, 4, 'Xem sửa thông tin', '', '2020-10-21', NULL, 3, 13, 2, 49, 13, 1, '2020-10-23 16:13:21+07', '2020-10-24 08:49:14+07', '2020-10-20', 100, NULL, 2550, 2550, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2406, 1, 46, 'Chỉnh sửa giao diện phiếu nhập', 'Bỏ cột hình thức thanh toán và thành tiền ở giao diện phiếu nhập
Trong chi tiết phiếu nhập, chỉnh sửa lại các cột đơn giá và thành tiền', '2020-10-15', NULL, 5, 39, 2, 38, 40, 6, '2020-10-14 03:48:41+07', '2020-10-17 11:45:07+07', '2020-10-15', 100, NULL, NULL, 2406, 1, 2, false, '2020-10-17 11:45:07+07');
INSERT INTO public.issues VALUES (2407, 2, 46, 'Sửa lại giao diện của tính năng Kho (Modal thành FullscreenDialog)', '', '2020-10-14', NULL, 5, 39, 2, 38, 39, 1, '2020-10-14 10:56:32+07', '2020-10-16 09:55:13+07', '2020-10-14', 100, NULL, NULL, 2407, 1, 2, false, '2020-10-16 09:55:13+07');
INSERT INTO public.issues VALUES (2408, 2, 46, 'Phân quyền ở kho', '', '2020-10-16', NULL, 5, 39, 2, 38, 39, 4, '2020-10-14 13:38:10+07', '2020-10-17 11:45:08+07', '2020-10-15', 100, NULL, NULL, 2408, 1, 2, false, '2020-10-17 11:45:08+07');
INSERT INTO public.issues VALUES (2409, 1, 46, 'Lỗi Báo cáo kết quả kinh doanh', 'số liệu báo cáo sai', '2020-10-15', NULL, 5, 38, 2, 38, 40, 1, '2020-10-14 15:21:00+07', '2020-10-14 15:22:25+07', '2020-10-14', 0, NULL, NULL, 2409, 1, 2, false, '2020-10-14 15:22:25+07');
INSERT INTO public.issues VALUES (2410, 1, 46, 'Lỗi bán thẻ, nạp tiền', 'Không nạp được tiền vào thẻ. báo lỗi mã thẻ không hợp lệ nhưng mã thẻ đúng', '2020-10-15', NULL, 5, 39, 2, 38, 40, 2, '2020-10-14 16:19:11+07', '2020-10-16 09:55:13+07', '2020-10-15', 100, NULL, NULL, 2410, 1, 2, false, '2020-10-16 09:55:13+07');
INSERT INTO public.issues VALUES (2411, 1, 46, 'Lỗi Sửa sản phẩm dịch vụ', 'giao diện không cho phép sửa thông tin sản phẩm dịch vụ', '2020-10-15', NULL, 5, 39, 2, 38, 40, 2, '2020-10-14 17:10:28+07', '2020-10-17 15:35:30+07', '2020-10-14', 100, NULL, NULL, 2411, 1, 2, false, '2020-10-16 10:41:25+07');
INSERT INTO public.issues VALUES (2412, 2, 48, 'FRON_END', '', '2021-01-23', NULL, 1, 15, 2, NULL, 15, 122, '2020-10-15 08:43:49+07', '2021-01-25 08:13:28+07', '2020-10-13', 96, NULL, NULL, 2412, 1, 220, false, NULL);
INSERT INTO public.issues VALUES (2413, 2, 48, 'BACK_END', '', NULL, NULL, 1, NULL, 2, NULL, 15, 1, '2020-10-15 08:44:24+07', '2020-10-15 08:44:37+07', '2020-10-12', 0, NULL, NULL, 2413, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2414, 2, 48, 'Quản trị', '', '2020-11-21', NULL, 1, 15, 2, NULL, 15, 37, '2020-10-15 08:45:42+07', '2020-12-02 09:37:27+07', '2020-10-13', 100, NULL, 2412, 2412, 2, 39, false, NULL);
INSERT INTO public.issues VALUES (2415, 2, 48, 'Chức năng người dùng', '', '2020-12-01', NULL, 3, NULL, 2, NULL, 15, 55, '2020-10-15 08:46:02+07', '2020-12-16 13:49:33+07', '2020-10-29', 100, NULL, 2412, 2412, 40, 127, false, NULL);
INSERT INTO public.issues VALUES (2416, 2, 48, 'Giao diện đăng nhập', '', '2020-10-13', NULL, 3, 15, 2, NULL, 15, 5, '2020-10-15 08:47:07+07', '2020-10-17 09:42:38+07', '2020-10-13', 100, NULL, 2414, 2412, 3, 4, false, NULL);
INSERT INTO public.issues VALUES (2417, 2, 48, 'Dựng source trên nền Odata 4', '', '2020-10-14', NULL, 3, NULL, 2, NULL, 15, 1, '2020-10-15 08:50:00+07', '2020-10-15 08:50:34+07', '2020-10-13', 100, NULL, 2412, 2412, 128, 129, false, NULL);
INSERT INTO public.issues VALUES (2418, 2, 48, 'Menu dành cho quản trị', '', '2020-10-15', NULL, 3, 15, 2, NULL, 15, 4, '2020-10-15 08:56:52+07', '2020-10-17 09:42:38+07', '2020-10-14', 100, NULL, 2414, 2412, 5, 6, false, NULL);
INSERT INTO public.issues VALUES (2419, 2, 48, 'Danh sách tài khoản', '', '2020-10-17', NULL, 3, 15, 2, NULL, 15, 5, '2020-10-15 08:58:06+07', '2020-10-17 09:42:38+07', '2020-10-16', 100, NULL, 2414, 2412, 7, 8, false, NULL);
INSERT INTO public.issues VALUES (2420, 2, 48, 'Cấu hình vai trò', '', '2020-10-17', NULL, 3, 15, 2, NULL, 15, 2, '2020-10-15 08:58:36+07', '2020-10-17 09:42:38+07', '2020-10-17', 100, NULL, 2414, 2412, 9, 10, false, NULL);
INSERT INTO public.issues VALUES (2421, 2, 48, 'Dánh sách quyền', '', '2020-10-17', NULL, 3, 15, 2, NULL, 15, 3, '2020-10-15 08:59:03+07', '2020-10-17 16:04:43+07', '2020-10-17', 100, NULL, 2414, 2412, 11, 12, false, NULL);
INSERT INTO public.issues VALUES (2422, 1, 4, 'google map thay đổi bản đồ nền', '', '2020-10-16', NULL, 3, 13, 2, 45, 13, 1, '2020-10-15 10:15:28+07', '2020-10-19 08:27:02+07', '2020-10-15', 100, NULL, NULL, 2422, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2423, 2, 46, 'Tách báo cáo kqkd, sổ quỹ 1 menu', '', '2020-10-22', NULL, 5, 37, 2, 48, 5, 7, '2020-10-16 09:53:25+07', '2020-10-24 16:55:35+07', '2020-10-21', 100, NULL, NULL, 2423, 1, 2, false, '2020-10-24 16:55:35+07');
INSERT INTO public.issues VALUES (2424, 2, 46, 'BC bán hàng - Mối quan tâm => Trả hàng', '', '2020-10-26', NULL, 5, 8, 2, 51, 5, 7, '2020-10-16 09:54:10+07', '2020-10-27 11:38:09+07', '2020-10-26', 100, NULL, NULL, 2424, 1, 2, false, '2020-10-27 11:38:09+07');
INSERT INTO public.issues VALUES (2425, 2, 46, 'Thủ kho tổng/Điều hành xem báo cáo kho tất cả ĐKD', '- Thủ kho của các điểm kinh doanh chỉ được xem Phiếu xuất, yêu cầu chuyển kho,báo cáo kho của 1 điểm kinh doanh đang đăng nhập.
', '2020-10-21', NULL, 5, 37, 2, 48, 40, 8, '2020-10-16 10:24:36+07', '2020-10-24 16:39:55+07', '2020-10-21', 100, NULL, NULL, 2425, 1, 2, false, '2020-10-24 16:39:55+07');
INSERT INTO public.issues VALUES (2427, 1, 46, 'Lỗi Thêm mới yêu cầu chuyển kho', '- Kho yêu cầu lấy ngay tên điểm kinh doanh đang đăng nhập.
- Chỉnh giao diện: thời gian, ghi chú.', '2020-10-17', NULL, 5, 39, 2, 38, 40, 3, '2020-10-16 10:37:19+07', '2020-10-17 11:45:08+07', '2020-10-16', 100, NULL, NULL, 2427, 1, 2, false, '2020-10-17 11:45:08+07');
INSERT INTO public.issues VALUES (2428, 2, 46, 'Thêm chức năng Lọc ở Danh mục sản phẩm dịch vụ', 'Thêm chức năng lọc theo trạng thái của sản phẩm', '2020-10-17', NULL, 5, 39, 2, 38, 40, 5, '2020-10-16 10:40:14+07', '2020-10-17 11:45:08+07', '2020-10-16', 100, NULL, NULL, 2428, 1, 2, false, '2020-10-17 11:45:08+07');
INSERT INTO public.issues VALUES (2429, 2, 46, 'SPDV thay trạng thái tồn kho = Phân loại', 'Hàng hóa
Thành phẩm

Bỏ cột loại', '2020-10-17', NULL, 5, 37, 2, 38, 5, 6, '2020-10-16 11:16:25+07', '2020-10-17 11:45:08+07', '2020-10-17', 100, NULL, NULL, 2429, 1, 2, false, '2020-10-17 11:45:08+07');
INSERT INTO public.issues VALUES (2430, 2, 51, 'Chức năng update trạng thái của request bằng cách kéo thả', '', '2020-10-16', NULL, 3, 12, 2, 47, 12, 2, '2020-10-16 11:18:36+07', '2020-10-16 11:19:58+07', '2020-10-16', 100, NULL, NULL, 2430, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2431, 2, 51, 'Hiển thị danh sách thành viên và thêm mới thành viên ở Request box', '', '2020-10-16', NULL, 3, 12, 2, 47, 12, 3, '2020-10-16 11:19:38+07', '2020-10-26 08:15:34+07', '2020-10-16', 100, NULL, NULL, 2431, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2432, 5, 52, 'Nhận chuyển giao quy trình thực hiện chỉnh lý', '- Nhận chuyển giao công tác chỉnh lý từ đội Vũng Tàu
- Thực hiện xây dựng quy trình chỉnh lý cho từng loại tài liệu
- Thống kê từng loại tài liệu (file excel): Phông tài liệu, năm hình thành, Loại hồ sơ
- Quản lý nhân sự bộ phận số hóa, chấm công.', '2020-11-14', NULL, 1, 28, 2, NULL, 21, 0, '2020-10-16 14:08:38+07', '2020-10-16 14:08:38+07', '2020-10-16', 0, NULL, NULL, 2432, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2433, 5, 52, 'Nhận bàn giao quy trình thực hiện chỉnh lý, biên mục tài liệu', '- Nhận chuyển giao công tác chỉnh lý từ đội Vũng Tàu
- Thực hiện các công việc từ khâu chỉnh lý đến biên mục ra hồ sơ
', '2020-11-14', NULL, 1, 30, 2, NULL, 21, 0, '2020-10-16 14:10:45+07', '2020-10-16 14:10:45+07', '2020-10-16', 0, NULL, NULL, 2433, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2434, 2, 46, 'Điếm số phiếu theo trạng thái ở Chuyển kho, Kiểm Kho', '', '2020-10-17', NULL, 5, 39, 2, 38, 39, 2, '2020-10-17 09:12:36+07', '2020-10-17 11:45:08+07', '2020-10-17', 100, NULL, NULL, 2434, 1, 2, false, '2020-10-17 11:45:08+07');
INSERT INTO public.issues VALUES (2435, 2, 46, 'API cấu hình đơn vị', '', '2020-10-17', NULL, 5, 41, 2, 38, 41, 2, '2020-10-17 11:33:14+07', '2020-10-20 15:00:32+07', '2020-10-17', 100, NULL, NULL, 2435, 1, 2, false, '2020-10-20 15:00:32+07');
INSERT INTO public.issues VALUES (2436, 2, 46, 'Thủ kho ĐKD xem báo cáo kho của điểm đó', '', '2020-10-26', NULL, 5, 37, 2, 51, 5, 6, '2020-10-17 11:40:56+07', '2020-10-30 08:37:47+07', '2020-10-26', 100, NULL, NULL, 2436, 1, 2, false, '2020-10-30 08:37:47+07');
INSERT INTO public.issues VALUES (2437, 2, 46, 'Điều hành, xem báo cáo bán hàng all ĐKD', '', '2020-10-26', NULL, 5, 8, 2, 51, 5, 7, '2020-10-17 11:41:36+07', '2020-10-27 11:38:09+07', '2020-10-26', 100, NULL, NULL, 2437, 1, 2, false, '2020-10-27 11:38:09+07');
INSERT INTO public.issues VALUES (2438, 2, 46, 'Thu ngân, xem báo cáo bán hàng của điểm mình', '', '2020-10-26', NULL, 5, 8, 2, 51, 5, 7, '2020-10-17 11:42:36+07', '2020-10-27 11:38:10+07', '2020-10-26', 100, NULL, NULL, 2438, 1, 2, false, '2020-10-27 11:38:10+07');
INSERT INTO public.issues VALUES (2439, 2, 46, 'Chỉnh sửa sơ đồ bàn', '', '2020-10-19', NULL, 5, 37, 2, 48, 37, 8, '2020-10-17 14:22:57+07', '2020-10-24 17:00:56+07', '2020-10-19', 100, NULL, NULL, 2439, 1, 2, false, '2020-10-24 17:00:56+07');
INSERT INTO public.issues VALUES (2440, 2, 46, 'Fix API: Tạo đơn nhập hàng', 'Tính giá vốn cho mỗi đơn nhập hàng theo phương pháp bình quân gia quyền.
Tạo phiếu chi khi tạo phiếu nhập', '2020-10-19', NULL, 5, 38, 2, 48, 38, 5, '2020-10-17 14:34:03+07', '2020-10-22 13:23:22+07', '2020-10-19', 100, NULL, NULL, 2440, 1, 2, false, '2020-10-22 13:23:22+07');
INSERT INTO public.issues VALUES (2441, 2, 46, 'Fix API: Xóa đơn nhập hàng', 'Tính lại giá vốn cho sản phẩm.', '2020-10-19', NULL, 5, 38, 2, 48, 38, 6, '2020-10-17 14:34:45+07', '2020-10-22 13:23:12+07', '2020-10-19', 100, NULL, NULL, 2441, 1, 2, false, '2020-10-22 13:23:12+07');
INSERT INTO public.issues VALUES (2442, 2, 46, 'Create: API Thẻ kho cho đơn chuyển hàng', '', '2020-10-22', NULL, 5, 38, 2, 48, 38, 6, '2020-10-17 14:35:27+07', '2020-10-24 16:39:56+07', '2020-10-22', 100, NULL, NULL, 2442, 1, 2, false, '2020-10-24 16:39:56+07');
INSERT INTO public.issues VALUES (2443, 2, 46, 'Create: API Thẻ kho cho đơn kiểm hàng', '', '2020-10-22', NULL, 5, 38, 2, 48, 38, 5, '2020-10-17 14:35:44+07', '2020-10-24 16:39:56+07', '2020-10-22', 100, NULL, NULL, 2443, 1, 2, false, '2020-10-24 16:39:56+07');
INSERT INTO public.issues VALUES (2444, 2, 46, 'Create: API Thẻ kho cho đơn trả hàng', '', '2020-10-22', NULL, 5, 38, 2, 48, 38, 5, '2020-10-17 14:36:00+07', '2020-10-24 16:39:56+07', '2020-10-22', 100, NULL, NULL, 2444, 1, 2, false, '2020-10-24 16:39:56+07');
INSERT INTO public.issues VALUES (2445, 2, 46, 'Xem thẻ kho trong chi tiết sp', '', '2020-10-23', NULL, 5, 39, 2, 48, 5, 6, '2020-10-17 14:38:00+07', '2020-10-24 16:39:56+07', '2020-10-23', 100, NULL, NULL, 2445, 1, 2, false, '2020-10-24 16:39:56+07');
INSERT INTO public.issues VALUES (2446, 2, 46, 'api thẻ kho', '', '2020-10-17', NULL, 5, 38, 2, 38, 5, 3, '2020-10-17 14:38:18+07', '2020-10-20 15:00:32+07', '2020-10-17', 100, NULL, NULL, 2446, 1, 2, false, '2020-10-20 15:00:32+07');
INSERT INTO public.issues VALUES (2447, 2, 46, 'Chức năng tra cứu chứng từ', '', '2020-10-17', NULL, 5, 39, 2, 38, 39, 1, '2020-10-17 15:36:26+07', '2020-10-20 15:00:32+07', '2020-10-17', 100, NULL, NULL, 2447, 1, 2, false, '2020-10-20 15:00:32+07');
INSERT INTO public.issues VALUES (2448, 2, 48, 'Danh mục', '', '2020-10-23', NULL, 3, NULL, 2, NULL, 15, 11, '2020-10-19 08:16:40+07', '2020-11-21 13:59:28+07', '2020-10-19', 100, NULL, 2414, 2412, 13, 28, false, NULL);
INSERT INTO public.issues VALUES (2449, 2, 48, 'Danh mục dùng chung', '', '2020-10-23', NULL, 3, NULL, 2, NULL, 15, 11, '2020-10-19 08:17:34+07', '2020-11-21 13:59:28+07', '2020-10-19', 100, NULL, 2448, 2412, 14, 27, false, NULL);
INSERT INTO public.issues VALUES (2450, 2, 48, 'Danh mục phường xã,quận huyện, thành phố', '', '2020-10-20', NULL, 3, 15, 2, NULL, 15, 4, '2020-10-19 08:17:58+07', '2020-11-21 10:29:31+07', '2020-10-19', 100, NULL, 2449, 2412, 15, 16, false, NULL);
INSERT INTO public.issues VALUES (2451, 2, 46, 'Module khách hàng', '', '2020-10-19', NULL, 5, 39, 2, 48, 5, 2, '2020-10-19 08:30:10+07', '2020-10-26 17:22:19+07', '2020-10-19', 100, NULL, NULL, 2451, 1, 2, false, '2020-10-26 17:22:19+07');
INSERT INTO public.issues VALUES (2452, 2, 46, 'Tạo đơn trả hàng nhập', '', NULL, NULL, 1, NULL, 2, 33, 5, 0, '2020-10-19 08:30:36+07', '2020-10-19 08:30:36+07', '2020-10-19', 0, NULL, NULL, 2452, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2453, 2, 46, 'Giao diện Xuất hủy', '', '2021-01-04', NULL, 5, 39, 2, 79, 5, 14, '2020-10-19 08:30:53+07', '2021-01-04 13:22:55+07', '2021-01-04', 100, NULL, NULL, 2453, 1, 2, false, '2021-01-04 13:22:55+07');
INSERT INTO public.issues VALUES (2454, 2, 46, 'Nhập phần tổng quan thẻ => báo cáo thẻ', 'Cột bên trái là radio list:

Kiểu hiển thị:

- Biểu đồ
- Báo cáo

Biểu đồ bên phải: gồm 2 biểu đồ, sẽ thể hiện trên dưới', '2020-10-31', NULL, 5, 37, 2, 51, 5, 5, '2020-10-19 08:34:18+07', '2020-11-02 08:18:31+07', '2020-10-31', 100, NULL, NULL, 2454, 1, 2, false, '2020-11-02 08:18:31+07');
INSERT INTO public.issues VALUES (2455, 2, 46, 'Nếu loại cafe/bar thì load sơ đồ bàn', '', '2020-12-03', NULL, 5, 8, 2, 65, 5, 10, '2020-10-19 09:46:42+07', '2020-12-05 18:23:04+07', '2020-12-03', 100, NULL, NULL, 2455, 1, 2, false, '2020-12-05 18:23:04+07');
INSERT INTO public.issues VALUES (2457, 2, 4, 'Thêm mới khu kinh tế', '', '2020-10-19', NULL, 3, 13, 2, 49, 13, 2, '2020-10-19 11:22:16+07', '2020-10-23 16:06:54+07', '2020-10-19', 100, NULL, NULL, 2457, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2458, 2, 4, 'Thêm mới khu công nghiệp', '', '2020-10-19', NULL, 3, 13, 2, 49, 13, 2, '2020-10-19 11:22:38+07', '2020-10-23 16:06:54+07', '2020-10-19', 100, NULL, NULL, 2458, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2459, 2, 4, 'Thêm mới cụm công nghiệp', '', '2020-10-19', NULL, 3, 13, 2, 49, 13, 2, '2020-10-19 11:23:04+07', '2020-10-23 16:06:54+07', '2020-10-19', 100, NULL, NULL, 2459, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2460, 2, 51, 'Chuyển trạng thái đóng cho request', '', '2020-10-19', NULL, 3, 12, 2, 50, 12, 3, '2020-10-19 14:29:53+07', '2020-10-19 14:32:31+07', '2020-10-19', 100, NULL, NULL, 2460, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2461, 2, 51, 'Gán và hủy gán nhân viên cho mỗi request', '', '2020-10-19', NULL, 3, 12, 2, 50, 12, 9, '2020-10-19 14:31:24+07', '2020-10-21 15:24:46+07', '2020-10-19', 100, NULL, NULL, 2461, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2462, 2, 48, 'Thông tin tài khoản', '', '2020-10-28', NULL, 3, 15, 2, NULL, 15, 17, '2020-10-19 15:04:14+07', '2020-11-21 10:31:13+07', '2020-10-23', 100, NULL, 2414, 2412, 29, 36, false, NULL);
INSERT INTO public.issues VALUES (2463, 2, 48, 'Quản lý danh sách hồ sơ CBCCVC', '', '2020-12-01', NULL, 3, NULL, 2, NULL, 15, 49, '2020-10-19 15:24:10+07', '2020-12-16 13:49:34+07', '2020-10-29', 100, NULL, 2415, 2412, 41, 110, false, NULL);
INSERT INTO public.issues VALUES (2464, 2, 48, 'Danh sách trích ngang', '', '2020-11-30', NULL, 3, NULL, 2, NULL, 15, 50, '2020-10-19 15:24:36+07', '2020-12-16 13:49:34+07', '2020-10-29', 100, NULL, 2463, 2412, 42, 97, false, NULL);
INSERT INTO public.issues VALUES (2476, 2, 48, 'Thông tin Cán bộ', '', '2020-11-30', NULL, 3, NULL, 2, NULL, 15, 48, '2020-10-19 16:12:13+07', '2020-12-16 13:49:34+07', '2020-11-01', 100, NULL, 2464, 2412, 43, 88, false, NULL);
INSERT INTO public.issues VALUES (2478, 2, 46, 'Vai trò cho tài khoản', '', '2020-10-19', NULL, 5, 41, 2, 48, 5, 3, '2020-10-19 16:15:58+07', '2020-10-22 13:24:06+07', '2020-10-19', 100, NULL, NULL, 2478, 1, 2, false, '2020-10-22 13:24:06+07');
INSERT INTO public.issues VALUES (2479, 2, 46, 'Đơn bán hàng hiển thị bảng xuất hàng lote/date', '', NULL, NULL, 1, NULL, 2, 33, 5, 2, '2020-10-20 08:31:09+07', '2020-10-23 10:18:24+07', NULL, 0, NULL, NULL, 2479, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2480, 2, 46, 'Component filter thời gian', '', '2020-11-02', NULL, 5, 8, 2, 54, 5, 5, '2020-10-20 11:17:59+07', '2020-11-05 11:13:19+07', '2020-11-02', 100, NULL, NULL, 2480, 1, 2, false, '2020-11-05 11:13:19+07');
INSERT INTO public.issues VALUES (2481, 1, 46, 'Lỗi giao diện tạo đơn hàng', 'Chỉnh sửa thanh menu', '2020-10-22', NULL, 5, 8, 2, 48, 40, 3, '2020-10-20 13:17:17+07', '2020-10-22 13:23:02+07', '2020-10-20', 100, NULL, NULL, 2481, 1, 2, false, '2020-10-22 13:23:02+07');
INSERT INTO public.issues VALUES (2482, 2, 48, 'Thêm mới tài khoản', '', '2020-10-28', NULL, 3, NULL, 2, NULL, 15, 10, '2020-10-20 14:39:47+07', '2020-11-21 13:59:16+07', '2020-10-28', 100, NULL, 2462, 2412, 30, 31, false, NULL);
INSERT INTO public.issues VALUES (2483, 2, 48, 'Cập nhật thông tin tài khoản', '', '2020-10-23', NULL, 3, 15, 2, NULL, 15, 5, '2020-10-20 14:40:05+07', '2020-11-21 10:30:34+07', '2020-10-23', 100, NULL, 2462, 2412, 32, 33, false, NULL);
INSERT INTO public.issues VALUES (2484, 2, 46, 'Nhập hàng cho nhập lote/date', '', NULL, NULL, 1, NULL, 2, 33, 5, 0, '2020-10-20 15:02:52+07', '2020-10-20 15:02:52+07', '2020-10-20', 0, NULL, NULL, 2484, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3002, 5, 57, 'Nhập Liệu', '', '2020-11-28', NULL, 1, 29, 2, NULL, 33, 2, '2020-11-25 08:12:15+07', '2020-12-07 08:14:59+07', '2020-11-25', 100, NULL, 2949, 2949, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2485, 2, 51, 'API Vận hành sửa chữa', 'API Vận hành sửa chữa.', '2020-10-27', NULL, 1, 19, 2, 52, 19, 1, '2020-10-20 16:28:16+07', '2020-10-20 16:28:29+07', '2020-10-26', 0, NULL, NULL, 2485, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2486, 1, 46, 'Mobile tách biệt sp/dv', '', '2020-10-21', NULL, 5, 10, 2, 48, 5, 3, '2020-10-21 09:28:41+07', '2020-10-22 13:25:10+07', '2020-10-21', 100, NULL, NULL, 2486, 1, 2, false, '2020-10-22 13:25:10+07');
INSERT INTO public.issues VALUES (2487, 1, 46, 'Menu bị double', '', '2020-10-21', NULL, 5, 41, 2, 48, 5, 2, '2020-10-21 09:29:35+07', '2020-10-22 13:25:41+07', '2020-10-21', 100, NULL, NULL, 2487, 1, 2, false, '2020-10-22 13:25:41+07');
INSERT INTO public.issues VALUES (2488, 1, 46, 'Khi thêm ảnh dv bị trùng sp', '', '2020-10-21', NULL, 5, 41, 2, 48, 5, 2, '2020-10-21 09:32:23+07', '2020-10-22 13:25:51+07', '2020-10-21', 100, NULL, NULL, 2488, 1, 2, false, '2020-10-22 13:25:51+07');
INSERT INTO public.issues VALUES (2489, 1, 46, 'Nhập kho dm đề xuất giá nhập cuối', '', '2020-10-21', NULL, 5, 39, 2, 48, 5, 3, '2020-10-21 09:40:04+07', '2020-10-24 16:39:56+07', '2020-10-20', 100, NULL, NULL, 2489, 1, 2, false, '2020-10-24 16:39:56+07');
INSERT INTO public.issues VALUES (2492, 2, 46, 'Định lượng NVL', '', NULL, NULL, 1, NULL, 2, 33, 5, 0, '2020-10-21 10:31:16+07', '2020-10-21 10:31:16+07', '2020-10-21', 0, NULL, NULL, 2492, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2493, 1, 46, 'Tạo phiếu chuyển k chọn thời gian', '', '2020-10-21', NULL, 5, 39, 2, 48, 5, 3, '2020-10-21 10:44:54+07', '2020-10-24 16:39:56+07', '2020-10-21', 100, NULL, NULL, 2493, 1, 2, false, '2020-10-24 16:39:56+07');
INSERT INTO public.issues VALUES (2494, 1, 46, 'Xóa phiếu nhập nhưng lỗi BC nhập xuất tồn', '', '2020-10-23', NULL, 5, 38, 2, 48, 40, 4, '2020-10-21 10:47:25+07', '2020-10-24 16:39:56+07', '2020-10-23', 100, NULL, NULL, 2494, 1, 2, false, '2020-10-24 16:39:56+07');
INSERT INTO public.issues VALUES (2495, 1, 46, 'Thiếu số lượng nhập nhưng báo cáo tồn kho chưa trả về', '', '2020-10-24', NULL, 5, 38, 2, 48, 40, 4, '2020-10-21 10:52:36+07', '2020-10-24 16:55:35+07', '2020-10-24', 100, NULL, NULL, 2495, 1, 2, false, '2020-10-24 16:55:35+07');
INSERT INTO public.issues VALUES (2496, 1, 46, 'Thêm cột thực xuất, thực nhập, ghi chú cho từng sp', 'Trong phần nhập, nhập từ chuyển kho', NULL, NULL, 5, NULL, 2, NULL, 40, 1, '2020-10-21 10:58:36+07', '2020-10-22 10:21:21+07', '2020-10-21', 0, NULL, NULL, 2496, 1, 2, false, '2020-10-22 10:21:21+07');
INSERT INTO public.issues VALUES (2497, 1, 46, 'Số âm là (), bỏ trừ', '', NULL, NULL, 5, NULL, 2, 33, 5, 2, '2020-10-21 11:23:34+07', '2020-10-21 16:57:22+07', '2020-10-21', 0, NULL, NULL, 2497, 1, 2, false, '2020-10-21 16:57:22+07');
INSERT INTO public.issues VALUES (2498, 1, 46, '0', '', NULL, NULL, 5, NULL, 2, NULL, 40, 1, '2020-10-21 11:54:35+07', '2020-10-21 14:18:40+07', '2020-10-21', 0, NULL, NULL, 2498, 1, 2, false, '2020-10-21 14:18:40+07');
INSERT INTO public.issues VALUES (2499, 1, 46, 'Mobile - sai API - BC sản phẩm dịch vụ sai số liệu khi chọn ngày xem báo cáo', '', '2020-10-26', NULL, 5, 38, 2, 51, 40, 8, '2020-10-21 13:29:43+07', '2020-10-27 11:38:10+07', '2020-10-26', 100, NULL, NULL, 2499, 1, 2, false, '2020-10-27 11:38:10+07');
INSERT INTO public.issues VALUES (2500, 1, 46, 'Mobile - check thời gian xem báo cáo', '', '2020-10-22', NULL, 5, 10, 2, 48, 40, 2, '2020-10-21 13:32:21+07', '2020-10-21 16:08:06+07', '2020-10-21', 0, NULL, NULL, 2500, 1, 2, false, '2020-10-21 16:08:06+07');
INSERT INTO public.issues VALUES (2501, 2, 46, 'Mobile - Nhóm BC  doanh thu theo tháng, BC doanh thu theo đơn hàng thành BC doanh thu theo tháng', '', '2020-10-26', NULL, 5, 10, 2, 51, 40, 10, '2020-10-21 14:04:57+07', '2020-10-27 11:38:10+07', '2020-10-26', 100, NULL, NULL, 2501, 1, 2, false, '2020-10-27 11:38:10+07');
INSERT INTO public.issues VALUES (2502, 2, 46, 'Mobile - Update BC sản phẩm dịch vụ', '', '2020-10-24', NULL, 5, 10, 2, 48, 40, 7, '2020-10-21 14:10:12+07', '2020-10-24 16:39:56+07', '2020-10-24', 100, NULL, NULL, 2502, 1, 2, false, '2020-10-24 16:39:56+07');
INSERT INTO public.issues VALUES (2503, 2, 46, 'Mobile - Component thời gian', '', '2020-10-28', NULL, 5, 10, 2, 51, 40, 6, '2020-10-21 14:12:02+07', '2020-10-30 08:37:47+07', '2020-10-26', 100, NULL, NULL, 2503, 1, 2, false, '2020-10-30 08:37:47+07');
INSERT INTO public.issues VALUES (2504, 2, 46, 'Fix API Chuyển kho', '', '2020-10-23', NULL, 5, 38, 2, 48, 39, 4, '2020-10-21 14:26:32+07', '2020-10-24 16:55:36+07', '2020-10-23', 100, NULL, NULL, 2504, 1, 2, false, '2020-10-24 16:55:36+07');
INSERT INTO public.issues VALUES (2505, 2, 46, 'Api tạo đơn mua hàng', 'Nhớ thêm cột chi phí', '2020-10-22', NULL, 5, 41, 2, 48, 5, 2, '2020-10-21 15:06:10+07', '2020-10-24 16:55:36+07', '2020-10-21', 100, NULL, NULL, 2505, 1, 2, false, '2020-10-24 16:55:36+07');
INSERT INTO public.issues VALUES (2506, 2, 46, 'Mobile - Thêm thông báo khi kết quả trống', '', '2020-10-23', NULL, 5, 10, 2, 48, 40, 5, '2020-10-21 15:10:49+07', '2020-10-22 16:06:57+07', '2020-10-23', 100, NULL, NULL, 2506, 1, 2, false, '2020-10-22 16:06:57+07');
INSERT INTO public.issues VALUES (2507, 1, 46, 'Mobile - không cho phép xem báo cáo khi từ ngày lớn hơn đến ngày ', '', '2020-10-22', NULL, 5, 10, 2, 48, 40, 5, '2020-10-21 15:13:37+07', '2020-10-22 13:26:55+07', '2020-10-22', 100, NULL, NULL, 2507, 1, 2, false, '2020-10-22 13:26:55+07');
INSERT INTO public.issues VALUES (2508, 2, 46, 'Mobile - Xem báo cáo doanh thu bán thẻ thêm số serial ở mỗi thẻ', '', '2020-10-26', NULL, 5, 10, 2, 51, 40, 6, '2020-10-21 15:20:58+07', '2020-10-22 16:07:05+07', '2020-10-26', 100, NULL, NULL, 2508, 1, 2, false, '2020-10-22 16:07:05+07');
INSERT INTO public.issues VALUES (2509, 2, 51, 'Xem chi tiết request', '', '2020-10-21', NULL, 3, 12, 2, 50, 12, 3, '2020-10-21 15:25:21+07', '2020-10-23 14:00:43+07', '2020-10-21', 100, NULL, NULL, 2509, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2510, 2, 46, 'Mobile - update giao diện BC tồn kho- BC  nhập xuất tồn', '', '2020-10-24', NULL, 5, 10, 2, 48, 40, 5, '2020-10-21 15:30:54+07', '2020-10-24 16:39:57+07', '2020-10-24', 100, NULL, NULL, 2510, 1, 2, false, '2020-10-24 16:39:57+07');
INSERT INTO public.issues VALUES (2511, 1, 46, 'Sai số liệu BC nhập xuất tồn', 'khi chọn xem báo cáo ngày 21. Số liệu hiển thị sai', '2020-10-24', NULL, 5, 38, 2, 48, 40, 4, '2020-10-21 16:08:55+07', '2020-10-24 16:55:36+07', '2020-10-24', 100, NULL, NULL, 2511, 1, 2, false, '2020-10-24 16:55:36+07');
INSERT INTO public.issues VALUES (2512, 1, 46, 'Mobile - sai API -  Sai số liệu BC nhập xuất tồn', 'ngày 21 bắt đầu nhập sản phẩm bút bi với sô lượng 200. Khi xem báo cáo không phải của ngày 21 thì đầu kỳ là 0 --> đúng. Nhưng khi xem báo cáo của ngày 21 thì đầu kì là 200 --> sai', '2020-10-26', NULL, 5, 38, 2, 51, 40, 7, '2020-10-21 16:11:34+07', '2020-10-27 11:38:10+07', '2020-10-26', 100, NULL, NULL, 2512, 1, 2, false, '2020-10-27 11:38:10+07');
INSERT INTO public.issues VALUES (2513, 2, 46, 'Thêm chức năng CRUD Nhóm sản phẩm dịch vụ trong Danh mục Sản phẩm dịch vụ', '', '2020-10-21', NULL, 5, 39, 2, 48, 39, 2, '2020-10-21 16:41:34+07', '2020-10-22 13:26:37+07', '2020-10-21', 100, NULL, NULL, 2513, 1, 2, false, '2020-10-22 13:26:37+07');
INSERT INTO public.issues VALUES (2514, 1, 46, 'Phân quyền chức năng tìm kiếm của phiếu chuyển kho', '', '2020-10-22', NULL, 5, 39, 2, 48, 40, 2, '2020-10-21 16:41:34+07', '2020-10-23 08:07:31+07', '2020-10-22', 100, NULL, NULL, 2514, 1, 2, false, '2020-10-23 08:07:31+07');
INSERT INTO public.issues VALUES (2515, 2, 46, 'Sửa báo cáo in Phiếu thu, Phiếu chi theo mẫu', '', '2020-10-26', NULL, 5, 41, 2, 51, 39, 5, '2020-10-21 16:45:03+07', '2020-10-27 11:38:10+07', '2020-10-26', 100, NULL, NULL, 2515, 1, 2, false, '2020-10-27 11:38:10+07');
INSERT INTO public.issues VALUES (2516, 2, 46, 'BC kết quả kinh doanh - đối với số âm để dấu () bỏ đi dấu -', '', '2020-10-26', NULL, 5, 41, 2, 51, 40, 4, '2020-10-21 16:49:11+07', '2020-11-02 08:18:31+07', '2020-10-26', 100, NULL, NULL, 2516, 1, 2, false, '2020-11-02 08:18:31+07');
INSERT INTO public.issues VALUES (2517, 2, 46, 'BC sổ quỹ tiền mặt - đối với số âm để dấu () bỏ đi dấu -', '', '2020-10-22', NULL, 5, 41, 2, 48, 40, 2, '2020-10-21 16:50:03+07', '2020-10-22 13:28:53+07', '2020-10-22', 100, NULL, NULL, 2517, 1, 2, false, '2020-10-22 13:28:53+07');
INSERT INTO public.issues VALUES (2518, 2, 46, 'Sổ quỹ - đối với số âm để dấu () bỏ dấu - và số dương thì bỏ dấu +', '', '2020-10-26', NULL, 5, 41, 2, 51, 40, 6, '2020-10-21 16:56:54+07', '2020-10-27 11:38:10+07', '2020-10-26', 100, NULL, NULL, 2518, 1, 2, false, '2020-10-27 11:38:10+07');
INSERT INTO public.issues VALUES (2519, 2, 46, 'Thêm cột thực nhập, thực xuất, ghi chú  cho từng sản phẩm trong Phiếu nhập từ chuyển kho', '', '2020-10-23', NULL, 5, 39, 2, 48, 39, 3, '2020-10-21 17:06:24+07', '2020-10-24 16:55:36+07', '2020-10-21', 100, NULL, NULL, 2519, 1, 2, false, '2020-10-24 16:55:36+07');
INSERT INTO public.issues VALUES (2520, 2, 46, 'Chuyển bc sổ quỹ thành nút xuất file', 'Nằm trong sổ quỹ tiền mặt', '2020-10-23', NULL, 5, 39, 2, 48, 5, 2, '2020-10-22 08:11:21+07', '2020-10-24 16:39:57+07', '2020-10-23', 100, NULL, NULL, 2520, 1, 2, false, '2020-10-24 16:39:57+07');
INSERT INTO public.issues VALUES (2521, 4, 19, 'Báo cáo thuế quý 3/2020', '', '2020-10-23', NULL, 1, NULL, 3, NULL, 22, 1, '2020-10-22 08:25:47+07', '2020-10-22 08:49:48+07', '2020-10-22', 100, NULL, NULL, 2521, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2522, 2, 46, 'Chỉnh sửa báo cáo bán hàng', '', '2020-10-26', NULL, 5, 8, 2, 51, 37, 6, '2020-10-22 09:00:26+07', '2020-10-27 11:38:10+07', '2020-10-26', 100, NULL, NULL, 2522, 1, 2, false, '2020-10-27 11:38:10+07');
INSERT INTO public.issues VALUES (2523, 2, 46, 'Chỉnh sửa báo cáo hàng hóa', '', '2020-10-26', NULL, 5, 37, 2, 51, 37, 4, '2020-10-22 09:00:55+07', '2020-10-30 08:37:48+07', '2020-10-26', 100, NULL, NULL, 2523, 1, 2, false, '2020-10-30 08:37:48+07');
INSERT INTO public.issues VALUES (2524, 2, 46, 'Chỉnh sửa báo cáo KQKD', '', '2020-10-23', NULL, 5, 37, 2, 48, 37, 3, '2020-10-22 09:01:26+07', '2020-10-24 16:39:57+07', '2020-10-22', 100, NULL, NULL, 2524, 1, 2, false, '2020-10-24 16:39:57+07');
INSERT INTO public.issues VALUES (2525, 2, 46, 'Chỉnh sửa báo cáo thẻ', '', '2020-10-26', NULL, 5, 37, 2, 51, 37, 4, '2020-10-22 09:01:48+07', '2020-10-27 11:38:11+07', '2020-10-26', 100, NULL, NULL, 2525, 1, 2, false, '2020-10-27 11:38:11+07');
INSERT INTO public.issues VALUES (2526, 1, 46, 'Mobile - Nhập kho - thay đổi giá --> giá nhập cuối -- chỉnh sửa giao diện ---Thêm thông báo khi thêm hàng hóa vừa mới chọn', '', '2020-10-23', NULL, 5, 10, 2, 48, 40, 4, '2020-10-22 09:13:52+07', '2020-10-24 16:39:57+07', '2020-10-23', 100, NULL, NULL, 2526, 1, 2, false, '2020-10-24 16:39:57+07');
INSERT INTO public.issues VALUES (2529, 1, 46, 'Nạp tiền vào thẻ khi mua hàng với số tiền trong thẻ không đủ số dư', 'nút Nạp tiền vào thẻ không hoạt động. Chỉnh sửa lại giao diện nút nạp tiền vào thẻ và thanh toán', '2020-10-22', NULL, 5, 8, 2, 48, 40, 2, '2020-10-22 11:33:22+07', '2020-10-22 13:46:56+07', '2020-10-22', 0, NULL, NULL, 2529, 1, 2, false, '2020-10-22 13:46:56+07');
INSERT INTO public.issues VALUES (2530, 1, 46, 'Fix update Đếm số lượng ở Filter Trạng Thái, Loại khi Thêm hoặc xóa', '', '2020-10-22', NULL, 5, 39, 2, 48, 39, 2, '2020-10-22 13:55:52+07', '2020-10-24 16:39:57+07', '2020-10-22', 100, NULL, NULL, 2530, 1, 2, false, '2020-10-24 16:39:57+07');
INSERT INTO public.issues VALUES (2531, 1, 46, 'Tạo bảng giá, cập nhật giá vốn cho sản phẩm khi nhập kho.', '', '2020-10-22', NULL, 5, 38, 2, 48, 38, 3, '2020-10-22 15:26:05+07', '2020-10-24 16:39:57+07', '2020-10-22', 100, NULL, NULL, 2531, 1, 2, false, '2020-10-24 16:39:57+07');
INSERT INTO public.issues VALUES (2532, 2, 46, 'Xem chi tiết các loại phiếu trong thẻ kho', '', '2020-10-26', NULL, 5, 39, 2, 51, 39, 7, '2020-10-23 10:12:39+07', '2020-10-27 11:38:11+07', '2020-10-26', 100, NULL, NULL, 2532, 1, 2, false, '2020-10-27 11:38:11+07');
INSERT INTO public.issues VALUES (2534, 2, 46, 'Thêm chi tiết sản phẩm dịch vụ', '', '2020-10-26', NULL, 5, 10, 2, 51, 40, 5, '2020-10-23 11:37:00+07', '2020-10-30 08:37:48+07', '2020-10-26', 100, NULL, NULL, 2534, 1, 2, false, '2020-10-30 08:37:48+07');
INSERT INTO public.issues VALUES (2535, 2, 51, 'Thêm mới request', '', '2020-10-23', NULL, 1, 12, 2, 50, 12, 0, '2020-10-23 14:01:13+07', '2020-10-23 14:01:13+07', '2020-10-23', 0, NULL, NULL, 2535, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2536, 2, 51, 'show comment của request trong chi tiết', '', '2020-10-22', NULL, 3, 12, 2, 50, 12, 2, '2020-10-23 14:02:14+07', '2020-10-23 14:02:58+07', '2020-10-22', 100, NULL, NULL, 2536, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2537, 2, 51, 'Tìm kiếm request', '', '2020-10-28', NULL, 1, 12, 2, 52, 12, 3, '2020-10-23 14:03:25+07', '2020-10-23 14:09:25+07', '2020-10-28', 0, NULL, NULL, 2537, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2538, 2, 51, 'gán attachment cho request', '', '2020-10-31', NULL, 1, 12, 2, 52, 12, 2, '2020-10-23 14:04:33+07', '2020-10-27 09:08:56+07', '2020-10-31', 0, NULL, NULL, 2538, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2539, 2, 51, 'Xem attachment của request', '', '2020-10-31', NULL, 1, 12, 2, 52, 12, 1, '2020-10-23 14:05:00+07', '2020-10-27 09:08:56+07', '2020-10-31', 0, NULL, NULL, 2539, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2540, 2, 51, 'write comment request', '', '2020-10-31', NULL, 1, 12, 2, 52, 12, 2, '2020-10-23 14:05:58+07', '2020-10-27 09:08:56+07', '2020-10-31', 0, NULL, NULL, 2540, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2541, 2, 51, 'Thống kê số comment và attachment trong card request', '', '2020-10-31', NULL, 1, 12, 2, 52, 12, 2, '2020-10-23 14:08:03+07', '2020-10-27 09:08:56+07', '2020-10-31', 0, NULL, NULL, 2541, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2542, 2, 51, 'Tạo dm Process và danh sách các trạng thái ứng với mỗi process', '', '2020-10-27', NULL, 3, 12, 2, 52, 12, 4, '2020-10-23 14:11:56+07', '2020-10-27 09:09:20+07', '2020-10-26', 100, NULL, NULL, 2542, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2543, 2, 51, 'Chỉnh lại code hiển thị columns status theo statusName và thứ tự ưu tiên', '', '2020-10-29', NULL, 3, 12, 2, 52, 12, 4, '2020-10-23 14:13:51+07', '2020-10-29 13:24:18+07', '2020-10-29', 100, NULL, NULL, 2543, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2544, 2, 51, 'Update trạng thái và thứ tự ưu tiên trong mỗi process', '', '2020-10-29', NULL, 3, 12, 2, 52, 12, 2, '2020-10-23 14:14:30+07', '2020-10-29 13:24:37+07', '2020-10-29', 100, NULL, NULL, 2544, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2545, 1, 4, 'Xóa lĩnh vực đầu tư của danh mục', '', '2020-10-24', NULL, 3, 13, 2, 49, 40, 1, '2020-10-23 15:09:07+07', '2020-10-24 08:57:58+07', '2020-10-23', 100, NULL, NULL, 2545, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2546, 1, 4, 'Dashboard - tổng số liệu của doanh nghiệp trên bản đồ không khớp với số liệu doanh nghiệp', '', '2020-10-24', NULL, 3, 13, 2, 49, 40, 4, '2020-10-23 15:20:32+07', '2020-10-24 09:34:39+07', '2020-10-23', 100, NULL, NULL, 2546, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2547, 1, 4, 'Doanh nghiệp - Tổng số liệu trong danh sách không khớp với tổng số lượng doanh nghiệp', '', '2020-10-24', NULL, 3, 13, 2, 49, 40, 1, '2020-10-23 15:25:26+07', '2020-10-24 08:50:38+07', '2020-10-23', 100, NULL, NULL, 2547, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2548, 1, 4, 'Điểm đầu tư - Chỉnh sửa giao diện danh sách điểm đầu tư - lọc điểm đầu tư theo trạng thái', '- ở danh sách điểm đầu tư nội dung ở các cột bị che đi
- Ở lọc điểm đầu tư nên thêm tình trạng "khác"', '2020-10-24', NULL, 3, 13, 2, 49, 40, 1, '2020-10-23 15:55:29+07', '2020-10-24 08:50:38+07', '2020-10-23', 100, NULL, NULL, 2548, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2549, 2, 4, 'Xem chi tiết khu công nghiệp', '', '2020-10-21', NULL, 3, 13, 2, 49, 13, 7, '2020-10-23 16:09:05+07', '2020-10-24 09:36:22+07', '2020-10-20', 100, NULL, NULL, 2549, 1, 12, false, NULL);
INSERT INTO public.issues VALUES (2550, 2, 4, 'Xem chi tiết cụm công nghiệp', '', '2020-10-21', NULL, 3, 13, 2, 49, 13, 7, '2020-10-23 16:09:40+07', '2020-10-24 09:36:22+07', '2020-10-19', 83, NULL, NULL, 2550, 1, 14, false, NULL);
INSERT INTO public.issues VALUES (2551, 2, 4, 'Xem chi tiết khu kinh tế', '', '2020-10-24', NULL, 3, 13, 2, 49, 13, 4, '2020-10-23 16:10:07+07', '2020-10-24 09:36:23+07', '2020-10-23', 100, NULL, NULL, 2551, 1, 6, false, NULL);
INSERT INTO public.issues VALUES (2552, 2, 4, 'Chỉnh lại giao diện xem chi tiết điểm mời gọi đầu tư', '', '2020-10-23', NULL, 3, 13, 2, 49, 13, 2, '2020-10-23 16:11:03+07', '2020-10-24 09:16:17+07', '2020-10-22', 100, NULL, NULL, 2552, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2553, 2, 4, 'Thêm mới điểm mời gọi đầu tư', '', '2020-10-23', NULL, 3, 13, 2, 49, 13, 7, '2020-10-23 16:12:04+07', '2020-10-24 09:36:23+07', '2020-10-22', 100, NULL, NULL, 2553, 1, 12, false, NULL);
INSERT INTO public.issues VALUES (2557, 2, 4, 'Xem sửa doanh nghiệp', '', '2020-10-20', NULL, 3, 13, 2, 49, 13, 1, '2020-10-23 16:30:26+07', '2020-10-24 08:49:15+07', '2020-10-19', 100, NULL, 2550, 2550, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (2558, 2, 46, 'Tạo phiếu nhập/xuất kho', '', '2020-10-26', NULL, 5, 38, 2, 51, 38, 5, '2020-10-24 07:57:51+07', '2020-10-31 19:35:11+07', '2020-10-26', 100, NULL, NULL, 2558, 1, 2, false, '2020-10-26 16:54:57+07');
INSERT INTO public.issues VALUES (2559, 1, 4, 'Dashboard - Không xuất được excel của tổng số vốn đầu tư', '', '2020-10-25', NULL, 3, 13, 2, 49, 40, 1, '2020-10-24 08:28:47+07', '2020-10-24 09:29:07+07', '2020-10-24', 100, NULL, NULL, 2559, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2560, 2, 4, 'Thêm mới doanh nghiệp', '', '2020-10-20', NULL, 1, 13, 2, NULL, 13, 0, '2020-10-24 08:39:20+07', '2020-10-24 08:39:20+07', '2020-10-19', 0, NULL, 2550, 2550, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (2561, 2, 4, 'Tạo mới doanh nghiệp', '', '2020-10-20', NULL, 3, 13, 2, 49, 13, 1, '2020-10-24 08:40:41+07', '2020-10-24 08:49:15+07', '2020-10-19', 100, NULL, 2550, 2550, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (2562, 2, 4, 'Xem, sửa thông tin', '', '2020-10-21', NULL, 3, 13, 2, 49, 13, 1, '2020-10-24 08:41:40+07', '2020-10-24 08:51:00+07', '2020-10-20', 100, NULL, 2549, 2549, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2563, 2, 4, 'Xem, sửa quy hoạch sử dụng đất', '', '2020-10-21', NULL, 3, 13, 2, 49, 13, 1, '2020-10-24 08:42:26+07', '2020-10-24 08:51:00+07', '2020-10-20', 100, NULL, 2549, 2549, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (2564, 2, 4, 'Tạo mới quy hoạch sử dụng đất', '', '2020-10-21', NULL, 3, 13, 2, 49, 13, 1, '2020-10-24 08:42:49+07', '2020-10-24 08:51:00+07', '2020-10-20', 100, NULL, 2549, 2549, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (2565, 2, 4, 'Xem, sửa doanh nghiệp', '', '2020-10-21', NULL, 3, 13, 2, 49, 13, 1, '2020-10-24 08:43:18+07', '2020-10-24 08:51:01+07', '2020-10-20', 100, NULL, 2549, 2549, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (2566, 2, 4, 'Thêm mới doanh nghiệp', '', '2020-10-21', NULL, 3, 13, 2, 49, 13, 1, '2020-10-24 08:43:43+07', '2020-10-24 08:51:01+07', '2020-10-20', 100, NULL, 2549, 2549, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (2567, 2, 4, 'Xem, sửa thông tin', '', '2020-10-23', NULL, 3, 13, 2, 49, 13, 1, '2020-10-24 08:45:09+07', '2020-10-24 08:49:37+07', '2020-10-22', 100, NULL, 2553, 2553, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2568, 2, 4, 'Xem, sửa quy hoạch sử dụng đất', '', '2020-10-23', NULL, 3, 13, 2, 49, 13, 1, '2020-10-24 08:45:39+07', '2020-10-24 08:49:37+07', '2020-10-22', 100, NULL, 2553, 2553, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (2569, 2, 4, 'Tạo mới quy hoạch sử dụng đất', '', '2020-10-23', NULL, 3, 13, 2, 49, 13, 1, '2020-10-24 08:45:55+07', '2020-10-24 08:49:37+07', '2020-10-22', 100, NULL, 2553, 2553, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (2570, 2, 4, 'Xem, sửa doanh nghiệp', '', '2020-10-23', NULL, 3, 13, 2, 49, 13, 1, '2020-10-24 08:46:17+07', '2020-10-24 08:49:37+07', '2020-10-22', 100, NULL, 2553, 2553, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (2571, 2, 4, 'Thêm mới doanh nghiệp', '', '2020-10-23', NULL, 3, 13, 2, 49, 13, 1, '2020-10-24 08:46:49+07', '2020-10-24 08:49:37+07', '2020-10-22', 100, NULL, 2553, 2553, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (2572, 2, 4, 'Xem, sửa thông tin', '', '2020-10-24', NULL, 3, 13, 2, 49, 13, 1, '2020-10-24 08:47:26+07', '2020-10-24 08:50:39+07', '2020-10-23', 100, NULL, 2551, 2551, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2573, 2, 4, 'Danh sách dự án trong khu kinh tế', '', '2020-10-24', NULL, 3, 13, 2, 49, 13, 1, '2020-10-24 08:47:52+07', '2020-10-24 08:50:39+07', '2020-10-23', 100, NULL, 2551, 2551, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (2574, 2, 53, 'Thiết kế file giới thiệu giải pháp số hóa', 'Thực hiện tương tự file Quản lý chung cư', '2020-10-28', NULL, 3, 14, 2, NULL, 21, 2, '2020-10-24 15:45:01+07', '2020-11-21 09:32:39+07', '2020-10-24', 100, NULL, NULL, 2574, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2575, 2, 46, 'In phiếu nhập hàng', '', '2020-10-28', NULL, 5, 38, 2, 51, 5, 3, '2020-10-26 11:31:22+07', '2020-10-27 11:38:11+07', '2020-10-28', 100, NULL, NULL, 2575, 1, 2, false, '2020-10-27 11:38:11+07');
INSERT INTO public.issues VALUES (2576, 2, 46, 'In phiếu xuất chuyển hàng', '', '2020-10-29', NULL, 5, 38, 2, 51, 5, 3, '2020-10-26 11:31:46+07', '2020-10-27 11:38:11+07', '2020-10-29', 100, NULL, NULL, 2576, 1, 2, false, '2020-10-27 11:38:11+07');
INSERT INTO public.issues VALUES (2577, 2, 46, 'In phiếu mua hàng', '', '2020-10-28', NULL, 5, 41, 2, 51, 5, 2, '2020-10-26 11:33:54+07', '2020-11-02 08:18:31+07', '2020-10-28', 100, NULL, NULL, 2577, 1, 2, false, '2020-11-02 08:18:31+07');
INSERT INTO public.issues VALUES (2578, 2, 46, 'API cập nhật nhập kho từ đơn mua hàng', '', '2020-10-26', NULL, 5, 41, 2, 51, 41, 2, '2020-10-26 13:39:51+07', '2020-10-27 11:38:11+07', '2020-10-26', 100, NULL, NULL, 2578, 1, 2, false, '2020-10-27 11:38:11+07');
INSERT INTO public.issues VALUES (2579, 2, 46, 'API hủy nhập hàng từ đơn mua', '', '2020-10-26', NULL, 5, 41, 2, 51, 41, 2, '2020-10-26 13:41:19+07', '2020-10-27 11:38:11+07', '2020-10-26', 100, NULL, NULL, 2579, 1, 2, false, '2020-10-27 11:38:11+07');
INSERT INTO public.issues VALUES (2580, 1, 46, 'Tổng quan bán hàng - sai số sản phẩm dưới định mức và số sản phẩm tồn kho trong kho Tổng', '', '2020-10-27', NULL, 5, 39, 2, 33, 40, 2, '2020-10-26 15:41:11+07', '2020-10-29 10:59:06+07', '2020-10-26', 0, NULL, NULL, 2580, 1, 2, false, '2020-10-29 10:59:06+07');
INSERT INTO public.issues VALUES (2581, 1, 46, 'Tổng quan bán hàng - sai số sản phẩm dưới định mức và số sản phẩm tồn kho tại kho điểm kinh doanh', '', '2020-10-27', NULL, 5, 39, 2, 33, 40, 2, '2020-10-26 15:42:07+07', '2020-10-29 10:59:13+07', '2020-10-26', 0, NULL, NULL, 2581, 1, 2, false, '2020-10-29 10:59:13+07');
INSERT INTO public.issues VALUES (2582, 1, 46, 'Tổng quan bán hàng - trong bản đồ doanh thu bán hàng sai số liệu tổng doanh thu ', '', '2020-10-27', NULL, 5, 39, 2, 33, 40, 2, '2020-10-26 15:44:54+07', '2020-10-29 10:59:18+07', '2020-10-26', 0, NULL, NULL, 2582, 1, 2, false, '2020-10-29 10:59:18+07');
INSERT INTO public.issues VALUES (2583, 2, 46, 'API tạo điểm kinh doanh sinh ra kho trùng tên', '', '2020-10-27', NULL, 5, 41, 2, 51, 41, 2, '2020-10-27 08:41:39+07', '2020-10-27 11:38:11+07', '2020-10-27', 100, NULL, NULL, 2583, 1, 2, false, '2020-10-27 11:38:11+07');
INSERT INTO public.issues VALUES (2584, 2, 51, 'Tạo status box cho từng process', '', '2020-10-27', NULL, 2, 12, 2, 52, 12, 2, '2020-10-27 09:08:19+07', '2020-10-29 13:25:03+07', '2020-10-27', 100, NULL, NULL, 2584, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2585, 2, 46, 'Sửa giao diện dashboard', '', '2020-10-29', NULL, 5, 39, 2, 51, 39, 2, '2020-10-27 11:01:24+07', '2020-11-02 08:18:31+07', '2020-10-27', 100, NULL, NULL, 2585, 1, 2, false, '2020-11-02 08:18:31+07');
INSERT INTO public.issues VALUES (2586, 2, 46, 'Mobile - Gộp báo cáo tồn kho và báo cáo nhập xuất tồn vào báo cáo hàng hóa.', '', '2020-10-28', NULL, 5, 10, 2, 51, 10, 4, '2020-10-27 11:07:39+07', '2020-10-30 08:37:48+07', '2020-10-28', 100, NULL, NULL, 2586, 1, 2, false, '2020-10-30 08:37:48+07');
INSERT INTO public.issues VALUES (2587, 2, 46, 'Sửa chức năng thêm bàn theo điểm kinh doanh', '', '2020-10-27', NULL, 5, 37, 2, 51, 37, 3, '2020-10-27 07:21:34+07', '2020-10-30 08:37:48+07', '2020-10-27', 100, NULL, NULL, 2587, 1, 2, false, '2020-10-30 08:37:48+07');
INSERT INTO public.issues VALUES (2588, 3, 42, 'Họp phòng nghiệp vụ lấy yêu cầu', '- Vào lúc 14h ngày 30/10/2020 tại phòng họp Sở Tài Chính
- Nội dung: Định hình quy trình nghiệp vụ Báo cáo các phòng chuyên môn
- Chuẩn bị: Đề xuất tính năng, quy trình hệ thống theo QĐ 38/QĐ-UBND
- Thành phần tham dự:
 + Sở Tài chính: 5 phòng nghiệp vụ quản lý 5 lĩnh vực báo cáo
 + Công ty: Trần Quốc Tiến (leader), Nguyễn Khánh Nghĩa (Đại diện BLĐ, đề xuất kỹ thuật), Lê Thị Hồng Gấm (Thư ký, tiếp nhận yêu cầu).', '2020-10-30', NULL, 5, 19, 3, NULL, 21, 3, '2020-10-29 08:53:15+07', '2020-12-16 15:36:56+07', '2020-10-29', 100, NULL, NULL, 2588, 1, 2, false, '2020-12-16 15:36:56+07');
INSERT INTO public.issues VALUES (2589, 1, 46, 'Nhập hàng - Khi sửa phiếu nhập hàng tất cả thời gian đều được chỉnh sửa ở 1 thời điểm', 'ví dụ đơn nhập ngày 24/10/2020 15:00 với 20 bò húc. Ngày 29/10/2020 9:00 chỉnh thành 30 bò húc sau đó nhấn "Cập nhập phiếu" thì thời gian trong danh sách lại là 29/10/2020 8:46 và tất cả các đơn chỉnh sửa sau đó đều khung giờ 29/10/2020 8:46
', '2020-10-31', NULL, 5, 41, 2, 51, 40, 3, '2020-10-29 09:07:50+07', '2020-11-02 08:18:31+07', '2020-10-29', 100, NULL, NULL, 2589, 1, 2, false, '2020-11-02 08:18:31+07');
INSERT INTO public.issues VALUES (2590, 1, 46, 'Chuyển kho - ở chuyển kho tất cả các phiếu đều chưa cập nhật thời gian hiện tại', '
', '2020-10-31', NULL, 5, 38, 2, 33, 40, 3, '2020-10-29 09:16:28+07', '2020-10-30 08:38:01+07', '2020-10-29', 100, NULL, NULL, 2590, 1, 2, false, '2020-10-30 08:38:01+07');
INSERT INTO public.issues VALUES (2591, 1, 46, 'Yêu cầu chuyển kho - Kho tổng không được xóa yêu cầu chuyển kho của KCN, chỉ có kho nào tạo yêu cầu thì mới được xóa', '', '2020-10-31', NULL, 5, 39, 2, 33, 40, 2, '2020-10-29 09:35:17+07', '2020-10-30 08:38:02+07', '2020-10-29', 100, NULL, NULL, 2591, 1, 2, false, '2020-10-30 08:38:02+07');
INSERT INTO public.issues VALUES (2592, 2, 46, 'Tạo form thêm KH', '', '2020-11-02', NULL, 5, 8, 2, 54, 8, 5, '2020-10-29 09:44:38+07', '2020-11-05 11:13:19+07', '2020-11-02', 100, NULL, NULL, 2592, 1, 2, false, '2020-11-05 11:13:19+07');
INSERT INTO public.issues VALUES (2593, 1, 46, 'BC nhập xuất tồn - không xem được báo cáo', '', '2020-10-31', NULL, 5, 8, 2, 51, 40, 2, '2020-10-29 11:21:41+07', '2020-11-02 08:18:31+07', '2020-10-29', 100, NULL, NULL, 2593, 1, 2, false, '2020-11-02 08:18:31+07');
INSERT INTO public.issues VALUES (2594, 2, 46, 'Xem chi tiết phiếu nhập, xuất trong chi tiết phiếu kiểm kho', '', '2020-10-29', NULL, 5, 39, 2, 51, 39, 2, '2020-10-29 11:35:00+07', '2020-10-30 08:37:48+07', '2020-10-29', 100, NULL, NULL, 2594, 1, 2, false, '2020-10-30 08:37:48+07');
INSERT INTO public.issues VALUES (2595, 1, 46, 'In phiếu thu - Không in được phiếu thu', 'chuỗi json: phieuThuId=643&mode=download_pdf', '2020-10-30', NULL, 5, 41, 2, 51, 40, 3, '2020-10-29 13:59:30+07', '2020-11-02 08:18:31+07', '2020-10-30', 100, NULL, NULL, 2595, 1, 2, false, '2020-11-02 08:18:31+07');
INSERT INTO public.issues VALUES (2596, 2, 46, 'Cấu hình đơn vị - Cài đặt thông tin', 'Thêm 1 radio "Cài đăt thông tin", để thực hiện cài đặt

- Logo

- Tên

- Địa chỉ

- Số điện thoại', '2020-10-30', NULL, 5, 37, 2, 51, 5, 3, '2020-10-29 16:42:19+07', '2020-11-02 08:18:32+07', '2020-10-30', 100, NULL, NULL, 2596, 1, 2, false, '2020-11-02 08:18:32+07');
INSERT INTO public.issues VALUES (2597, 2, 46, 'Báo cáo nhân viên', '', '2020-11-09', NULL, 5, 37, 2, 58, 5, 6, '2020-10-29 17:13:12+07', '2020-11-16 08:44:50+07', '2020-11-09', 100, NULL, NULL, 2597, 1, 2, false, '2020-11-16 08:44:50+07');
INSERT INTO public.issues VALUES (2598, 2, 46, 'Báo cáo khách hàng', '', '2020-11-09', NULL, 5, 37, 2, 58, 5, 6, '2020-10-29 17:13:19+07', '2020-11-16 08:44:50+07', '2020-11-09', 100, NULL, NULL, 2598, 1, 2, false, '2020-11-16 08:44:50+07');
INSERT INTO public.issues VALUES (2599, 2, 46, 'Báo cáo nhà cung cấp', '', '2020-11-09', NULL, 5, 37, 2, 58, 5, 8, '2020-10-29 17:13:26+07', '2020-11-16 08:44:50+07', '2020-11-09', 100, NULL, NULL, 2599, 1, 2, false, '2020-11-16 08:44:50+07');
INSERT INTO public.issues VALUES (2600, 2, 46, 'Sửa thiết lập giá theo bảng giá', '', '2020-11-02', NULL, 5, 8, 2, 54, 5, 5, '2020-10-30 08:43:18+07', '2020-11-09 15:08:20+07', '2020-11-02', 100, NULL, NULL, 2600, 1, 2, false, '2020-11-09 15:08:20+07');
INSERT INTO public.issues VALUES (2601, 2, 46, 'Gắn nút in phiếu trong phiếu nhập', '', '2020-11-06', NULL, 5, 37, 2, 54, 39, 7, '2020-10-30 10:23:01+07', '2020-11-09 15:08:20+07', '2020-11-05', 100, NULL, NULL, 2601, 1, 2, false, '2020-11-09 15:08:20+07');
INSERT INTO public.issues VALUES (2602, 2, 46, 'Doashboard - Kết quả bán hàng', '', '2020-11-02', NULL, 5, 39, 2, 54, 39, 6, '2020-10-30 10:23:54+07', '2020-11-05 11:13:19+07', '2020-11-02', 100, NULL, NULL, 2602, 1, 2, false, '2020-11-05 11:13:19+07');
INSERT INTO public.issues VALUES (2603, 2, 46, 'Doashboard - Doanh số bán hàng', '', '2020-10-30', NULL, 5, 39, 2, 51, 39, 3, '2020-10-30 10:24:29+07', '2020-11-02 08:18:32+07', '2020-10-30', 100, NULL, NULL, 2603, 1, 2, false, '2020-11-02 08:18:32+07');
INSERT INTO public.issues VALUES (2604, 2, 46, 'Doashboard - Doanh số theo chi nhánh', '', '2020-10-30', NULL, 5, 39, 2, 51, 39, 2, '2020-10-30 10:24:49+07', '2020-11-02 08:18:32+07', '2020-10-30', 100, NULL, NULL, 2604, 1, 2, false, '2020-11-02 08:18:32+07');
INSERT INTO public.issues VALUES (2605, 2, 46, 'Doashboard - Top sản phẩm bán chạy', '', '2020-10-30', NULL, 5, 39, 2, 51, 39, 2, '2020-10-30 10:25:07+07', '2020-11-02 08:18:32+07', '2020-10-30', 100, NULL, NULL, 2605, 1, 2, false, '2020-11-02 08:18:32+07');
INSERT INTO public.issues VALUES (2606, 1, 46, 'Mobile - BC bán hàng theo thời gian lỗi chọn ngày', '- Chọn thời gian 7 ngày qua trở lên không được --> thông báo hiển thị: "Vui lòng chọn từ ngày nhỏ hơn đến ngày.
- Sửa giao diện lịch ở ô từ ngày - đến ngày.', '2020-10-31', NULL, 5, 10, 2, 51, 40, 3, '2020-10-30 13:31:10+07', '2020-11-02 08:18:32+07', '2020-10-30', 100, NULL, NULL, 2606, 1, 2, false, '2020-11-02 08:18:32+07');
INSERT INTO public.issues VALUES (2607, 2, 46, 'API tạo khách hàng mới', '', '2020-10-30', NULL, 5, 41, 2, 51, 41, 2, '2020-10-30 15:34:57+07', '2020-11-02 08:18:32+07', '2020-10-30', 100, NULL, NULL, 2607, 1, 2, false, '2020-11-02 08:18:32+07');
INSERT INTO public.issues VALUES (2608, 2, 46, 'Mobile - Gộp báo cáo số dư thẻ và doanh thu thẻ.', '', '2020-10-31', NULL, 5, 10, 2, 51, 10, 5, '2020-10-30 16:06:12+07', '2020-11-02 08:18:32+07', '2020-10-30', 100, NULL, NULL, 2608, 1, 2, false, '2020-11-02 08:18:32+07');
INSERT INTO public.issues VALUES (2609, 2, 46, 'API cập nhật khách hàng/ nhà cung cấp', '', '2020-10-30', NULL, 5, 41, 2, 51, 41, 2, '2020-10-30 16:25:32+07', '2020-11-02 08:18:32+07', '2020-10-30', 100, NULL, NULL, 2609, 1, 2, false, '2020-11-02 08:18:32+07');
INSERT INTO public.issues VALUES (2610, 2, 46, 'API tạo mới đơn vị', '', '2020-10-31', NULL, 5, 41, 2, 51, 41, 2, '2020-10-31 08:52:27+07', '2020-11-02 08:18:32+07', '2020-10-31', 100, NULL, NULL, 2610, 1, 2, false, '2020-11-02 08:18:32+07');
INSERT INTO public.issues VALUES (2611, 2, 46, 'API dashboard tỉ lệ % tăng trưởng bán hàng , khách hàng  ', '', '2020-10-31', NULL, 5, 41, 2, 51, 41, 2, '2020-10-31 08:53:25+07', '2020-11-02 08:18:32+07', '2020-10-31', 100, NULL, NULL, 2611, 1, 2, false, '2020-11-02 08:18:32+07');
INSERT INTO public.issues VALUES (2612, 2, 46, 'API dashboard doanh thu bán hàng theo tháng', '', '2020-11-01', NULL, 5, 41, 2, 51, 41, 2, '2020-10-31 08:54:09+07', '2020-11-02 08:18:33+07', '2020-10-31', 100, NULL, NULL, 2612, 1, 2, false, '2020-11-02 08:18:33+07');
INSERT INTO public.issues VALUES (2613, 1, 46, 'Danh mục hàng hóa, chọn loại sản phẩm nhưng k load lại nhóm', '', '2020-10-31', NULL, 5, 39, 2, 51, 5, 2, '2020-10-31 09:59:09+07', '2020-11-02 08:18:33+07', '2020-10-31', 100, NULL, NULL, 2613, 1, 2, false, '2020-11-02 08:18:33+07');
INSERT INTO public.issues VALUES (2614, 1, 46, 'Mobile - BC kết quả kinh doanh sai số liệu doanh thu đồ ăn thức uống', 'Kết quả doanh thu là doanh thu khi đã giảm giá ', '2020-10-31', NULL, 5, 10, 2, 51, 40, 3, '2020-10-31 10:08:09+07', '2020-11-02 08:18:33+07', '2020-10-31', 100, NULL, NULL, 2614, 1, 2, false, '2020-11-02 08:18:33+07');
INSERT INTO public.issues VALUES (2615, 1, 46, 'BC kết quả kinh doanh - sai số liệu doanh thu --> lấy doanh thu đã giảm', '', '2020-11-02', NULL, 5, 41, 2, 54, 40, 4, '2020-10-31 10:10:19+07', '2020-11-05 11:13:20+07', '2020-11-02', 100, NULL, NULL, 2615, 1, 2, false, '2020-11-05 11:13:20+07');
INSERT INTO public.issues VALUES (2616, 2, 46, 'Mobile - Sửa giao diện sổ quỹ tiền mặt', '', '2020-11-02', NULL, 5, 10, 2, 54, 40, 4, '2020-10-31 10:13:09+07', '2020-11-05 11:13:20+07', '2020-11-02', 100, NULL, NULL, 2616, 1, 2, false, '2020-11-05 11:13:20+07');
INSERT INTO public.issues VALUES (2617, 2, 46, 'Mobile - BC sổ quỹ tiền mặt --> sai số tiền thu từ bán hàng khi đơn hàng đó 0 đồng', '', '2020-11-02', NULL, 5, 10, 2, 54, 40, 4, '2020-10-31 10:18:47+07', '2020-11-05 11:13:20+07', '2020-11-02', 100, NULL, NULL, 2617, 1, 2, false, '2020-11-05 11:13:20+07');
INSERT INTO public.issues VALUES (2618, 2, 46, 'Mobile - Chỉnh sửa giao diện Tồn kho', '', '2020-11-02', NULL, 5, 10, 2, 54, 40, 4, '2020-10-31 10:19:34+07', '2020-11-05 11:13:20+07', '2020-11-02', 100, NULL, NULL, 2618, 1, 2, false, '2020-11-05 11:13:20+07');
INSERT INTO public.issues VALUES (2619, 1, 46, 'Mobile - sai Doanh thu thẻ  --> không hiển thị chi tiết doanh thu của thẻ chỉ hiển thị tổng doanh thu', '', '2020-11-02', NULL, 5, 10, 2, 54, 40, 5, '2020-10-31 10:28:24+07', '2020-11-05 11:13:20+07', '2020-11-02', 100, NULL, NULL, 2619, 1, 2, false, '2020-11-05 11:13:20+07');
INSERT INTO public.issues VALUES (2620, 1, 46, 'Mobile - không quét được mã thẻ trong số dư thẻ', '', '2020-11-02', NULL, 5, 10, 2, 54, 40, 4, '2020-10-31 10:31:04+07', '2020-11-05 11:13:20+07', '2020-11-02', 100, NULL, NULL, 2620, 1, 2, false, '2020-11-05 11:13:20+07');
INSERT INTO public.issues VALUES (2621, 1, 46, 'Mobile - Thêm sản phẩm --> Nhấn lưu khi không nhập đủ dữ liệu --> hệ thống thoát ra ngoài', '', '2020-11-02', NULL, 5, 10, 2, 54, 40, 4, '2020-10-31 10:41:38+07', '2020-11-05 11:13:20+07', '2020-11-02', 100, NULL, NULL, 2621, 1, 2, false, '2020-11-05 11:13:20+07');
INSERT INTO public.issues VALUES (2622, 2, 42, 'Dựng giao diện tổng quan', '', '2020-11-07', NULL, 5, 12, 2, 55, 19, 3, '2020-11-02 08:27:54+07', '2020-12-16 15:36:57+07', '2020-11-02', 100, NULL, NULL, 2622, 1, 2, false, '2020-12-16 15:36:57+07');
INSERT INTO public.issues VALUES (2623, 2, 42, 'Thiết kế database', '', '2020-11-07', NULL, 5, 19, 2, 55, 19, 2, '2020-11-02 08:28:32+07', '2020-12-16 15:36:57+07', '2020-11-02', 100, NULL, NULL, 2623, 1, 2, false, '2020-12-16 15:36:57+07');
INSERT INTO public.issues VALUES (2624, 2, 42, 'Dựng source project', '', '2020-11-07', NULL, 5, 38, 2, 55, 19, 4, '2020-11-02 08:30:02+07', '2020-12-16 15:36:57+07', '2020-11-02', 100, NULL, NULL, 2624, 1, 2, false, '2020-12-16 15:36:57+07');
INSERT INTO public.issues VALUES (2625, 2, 46, 'Form cấu hình thông tin', '', '2020-11-02', NULL, 5, 37, 2, 54, 5, 2, '2020-11-02 10:18:34+07', '2020-11-05 11:13:20+07', '2020-11-02', 100, NULL, NULL, 2625, 1, 2, false, '2020-11-05 11:13:20+07');
INSERT INTO public.issues VALUES (2626, 2, 46, 'Module khuyến mãi', '', '2020-11-04', NULL, 5, 39, 2, 54, 5, 4, '2020-11-02 10:21:30+07', '2020-11-09 15:08:20+07', '2020-11-03', 100, NULL, NULL, 2626, 1, 2, false, '2020-11-09 15:08:20+07');
INSERT INTO public.issues VALUES (2627, 2, 46, 'Load khuyến mãi vào đơn hàng', '', '2020-11-04', NULL, 5, 8, 2, 54, 5, 5, '2020-11-02 10:22:13+07', '2020-11-09 15:08:20+07', '2020-11-04', 100, NULL, NULL, 2627, 1, 2, false, '2020-11-09 15:08:20+07');
INSERT INTO public.issues VALUES (2628, 2, 46, 'Báo cáo khuyến mãi', '', '2020-11-09', NULL, 5, 37, 2, 58, 5, 6, '2020-11-02 10:22:40+07', '2020-11-16 08:44:50+07', '2020-11-09', 100, NULL, NULL, 2628, 1, 2, false, '2020-11-16 08:44:50+07');
INSERT INTO public.issues VALUES (2629, 2, 46, 'Danh sách công nợ phải trả NCC', '', '2020-11-23', NULL, 5, 39, 2, 62, 5, 11, '2020-11-02 10:23:31+07', '2020-11-26 13:34:43+07', '2020-11-23', 100, NULL, NULL, 2629, 1, 2, false, '2020-11-26 13:34:43+07');
INSERT INTO public.issues VALUES (2630, 2, 46, 'Danh sách công nợ phải thu khách hàng', '', '2020-11-23', NULL, 5, 39, 2, 62, 5, 10, '2020-11-02 10:23:57+07', '2020-11-26 13:34:43+07', '2020-11-23', 100, NULL, NULL, 2630, 1, 2, false, '2020-11-26 13:34:43+07');
INSERT INTO public.issues VALUES (2631, 2, 46, 'Detail nhà cung cấp', '', '2020-11-06', NULL, 5, 39, 2, 54, 5, 6, '2020-11-02 11:28:59+07', '2020-11-09 15:08:20+07', '2020-11-06', 100, NULL, NULL, 2631, 1, 2, false, '2020-11-09 15:08:20+07');
INSERT INTO public.issues VALUES (2632, 2, 46, 'Detail khách hàng', '', '2020-11-06', NULL, 5, 39, 2, 54, 5, 6, '2020-11-02 11:29:24+07', '2020-11-09 15:08:21+07', '2020-11-06', 100, NULL, NULL, 2632, 1, 2, false, '2020-11-09 15:08:21+07');
INSERT INTO public.issues VALUES (2633, 2, 46, 'Sản phẩm cho lọc nhà cung cấp', '', '2020-11-02', NULL, 5, 39, 2, 54, 5, 2, '2020-11-02 11:37:10+07', '2020-11-05 11:13:20+07', '2020-11-02', 100, NULL, NULL, 2633, 1, 2, false, '2020-11-05 11:13:20+07');
INSERT INTO public.issues VALUES (2634, 1, 46, 'Không load đc báo cáo tồn kho', '', '2020-11-02', NULL, 5, 38, 2, 54, 5, 2, '2020-11-02 11:54:46+07', '2020-11-05 11:13:20+07', '2020-11-02', 100, NULL, NULL, 2634, 1, 2, false, '2020-11-05 11:13:20+07');
INSERT INTO public.issues VALUES (2636, 2, 46, 'Thêm BC NXT chi tiết', 'Trong báo cáo hàng hóa, thêm mối quan tâm nhập xuất tồn chi tiết', '2020-11-09', NULL, 5, 37, 2, 58, 5, 4, '2020-11-02 12:01:47+07', '2020-11-16 08:44:50+07', '2020-11-09', 100, NULL, NULL, 2636, 1, 2, false, '2020-11-16 08:44:50+07');
INSERT INTO public.issues VALUES (2637, 2, 46, 'Module thiết lập mẫu in', '', '2020-11-11', NULL, 5, 8, 2, 58, 5, 3, '2020-11-02 15:30:24+07', '2020-11-16 08:44:50+07', '2020-11-11', 100, NULL, NULL, 2637, 1, 2, false, '2020-11-16 08:44:50+07');
INSERT INTO public.issues VALUES (2638, 2, 46, 'Cập nhật mẫu in', '', '2020-11-16', NULL, 5, 37, 2, 60, 5, 6, '2020-11-02 15:34:36+07', '2020-11-20 08:31:00+07', '2020-11-16', 100, NULL, NULL, 2638, 1, 2, false, '2020-11-20 08:31:00+07');
INSERT INTO public.issues VALUES (2639, 2, 46, 'Danh mục khổ giấy in', '', '2020-11-11', NULL, 5, 8, 2, 58, 5, 3, '2020-11-02 15:34:59+07', '2020-11-16 08:44:51+07', '2020-11-11', 100, NULL, NULL, 2639, 1, 2, false, '2020-11-16 08:44:51+07');
INSERT INTO public.issues VALUES (2640, 2, 46, 'Đẩy dữ liệu khách hàng', '', '2020-11-03', NULL, 5, 41, 2, 54, 5, 2, '2020-11-02 16:25:11+07', '2020-11-09 15:08:21+07', '2020-11-03', 100, NULL, NULL, 2640, 1, 2, false, '2020-11-09 15:08:21+07');
INSERT INTO public.issues VALUES (2641, 2, 4, 'Tạo mới điểm đầu tư nằm trong khu, cụm công nghiệp', '', '2020-11-03', NULL, 3, 13, 2, 56, 13, 1, '2020-11-03 08:19:19+07', '2020-11-05 14:55:30+07', '2020-11-02', 100, NULL, NULL, 2641, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2642, 2, 4, 'Không xóa quy hoạch sử dụng đất khi mời gọi đầu tư trong khu, cụm công nghiệp', '', '2020-11-04', NULL, 3, 13, 2, 56, 13, 1, '2020-11-03 08:23:14+07', '2020-11-05 14:55:30+07', '2020-11-03', 100, NULL, NULL, 2642, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2643, 2, 4, 'Sửa trigger update tình trạng sử dụng đất', '', '2020-11-04', NULL, 3, 13, 2, 56, 13, 1, '2020-11-03 08:24:57+07', '2020-11-05 14:55:30+07', '2020-11-03', 100, NULL, NULL, 2643, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2644, 1, 46, 'Mobile - BC hàng hóa - Chỉnh sửa bố cục giao diện, không xem được kết quả báo cáo bên dưới, chon xem tuần trước hiển thị thông báo sai', '', '2020-11-04', NULL, 5, 10, 2, 54, 40, 5, '2020-11-03 14:08:43+07', '2020-11-05 11:13:20+07', '2020-11-03', 100, NULL, NULL, 2644, 1, 2, false, '2020-11-05 11:13:20+07');
INSERT INTO public.issues VALUES (2645, 1, 46, 'Mobile - BC bán hàng chọn tuần trước hiện thông báo sai - sửa bố cục giao diện lịch', '', '2020-11-03', NULL, 5, 10, 2, 54, 40, 5, '2020-11-03 14:37:39+07', '2020-11-05 11:13:20+07', '2020-11-03', 100, NULL, NULL, 2645, 1, 2, false, '2020-11-05 11:13:20+07');
INSERT INTO public.issues VALUES (2646, 1, 46, 'Mobile - BC nhập xuất tồn-chỉnh sửa giao diện khi không có kết quả hiển thị', '', '2020-11-03', NULL, 5, 10, 2, 54, 40, 3, '2020-11-03 14:45:13+07', '2020-11-05 11:13:21+07', '2020-11-03', 100, NULL, NULL, 2646, 1, 2, false, '2020-11-05 11:13:21+07');
INSERT INTO public.issues VALUES (2647, 1, 46, 'Mobile - thông nhất màu giao diện BC hàng hóa & BC nhập xuất tồn', '', '2020-11-03', NULL, 5, 10, 2, 54, 40, 3, '2020-11-03 14:46:33+07', '2020-11-05 11:13:21+07', '2020-11-03', 100, NULL, NULL, 2647, 1, 2, false, '2020-11-05 11:13:21+07');
INSERT INTO public.issues VALUES (2649, 1, 46, 'Mobile - Thêm sản phẩm - không thêm được sản phẩm ', '', '2020-11-03', NULL, 5, 10, 2, 54, 40, 3, '2020-11-03 15:02:34+07', '2020-11-05 11:13:21+07', '2020-11-03', 100, NULL, NULL, 2649, 1, 2, false, '2020-11-05 11:13:21+07');
INSERT INTO public.issues VALUES (2650, 2, 46, 'sửa api tạo bảng giá', 'Thêm cột "Mặc định": true/false

Copy dữ liệu từ bảng giá trước đó', '2020-11-04', NULL, 5, 41, 2, 54, 5, 2, '2020-11-03 15:54:24+07', '2020-11-05 11:13:21+07', '2020-11-04', 100, NULL, NULL, 2650, 1, 2, false, '2020-11-05 11:13:21+07');
INSERT INTO public.issues VALUES (2651, 2, 46, 'api load danh sách hàng hóa khi bán hàng', 'Dựa vào bảng giá id, load ra giá tương ứng', '2020-11-04', NULL, 5, 41, 2, 54, 5, 3, '2020-11-03 15:55:21+07', '2020-11-05 11:13:21+07', '2020-11-03', 100, NULL, NULL, 2651, 1, 2, false, '2020-11-05 11:13:21+07');
INSERT INTO public.issues VALUES (2652, 2, 46, 'Thêm dropdown chọn bảng giá lúc bán hàng', '', '2020-11-03', NULL, 5, 8, 2, 54, 5, 3, '2020-11-03 15:55:56+07', '2020-11-09 15:08:21+07', '2020-11-03', 100, NULL, NULL, 2652, 1, 2, false, '2020-11-09 15:08:21+07');
INSERT INTO public.issues VALUES (2653, 2, 46, 'Cho khách nhập số tiền phải trả', '', '2020-11-09', NULL, 5, 8, 2, 58, 5, 6, '2020-11-03 15:56:44+07', '2020-11-16 08:44:51+07', '2020-11-09', 100, NULL, NULL, 2653, 1, 2, false, '2020-11-16 08:44:51+07');
INSERT INTO public.issues VALUES (2654, 2, 46, 'Sửa api bán hàng load tồn kho', 'Kèm theo chương trình khuyến mãi', '2020-11-03', NULL, 5, 41, 2, 54, 5, 3, '2020-11-03 15:58:40+07', '2020-11-09 15:08:21+07', '2020-11-03', 100, NULL, NULL, 2654, 1, 2, false, '2020-11-09 15:08:21+07');
INSERT INTO public.issues VALUES (2655, 1, 46, 'Mobile - API - BC nhập xuất tồn, sai số liệu đầu kỳ', '', '2020-11-09', NULL, 5, 41, 2, 58, 40, 4, '2020-11-04 10:26:15+07', '2020-11-16 08:44:51+07', '2020-11-09', 100, NULL, NULL, 2655, 1, 2, false, '2020-11-16 08:44:51+07');
INSERT INTO public.issues VALUES (2656, 1, 46, 'Api - BC nhập xuất tồn - sai số liệu đầu kỳ', '', '2020-11-09', NULL, 5, 41, 2, 58, 40, 4, '2020-11-04 10:26:54+07', '2020-11-16 08:44:51+07', '2020-11-09', 100, NULL, NULL, 2656, 1, 2, false, '2020-11-16 08:44:51+07');
INSERT INTO public.issues VALUES (2657, 1, 46, 'Mobile - BC kết quả kinh doaanh - sai số liệu lợi nhuận khi có giá trị = 0', '', '2020-11-04', NULL, 5, 10, 2, 54, 40, 3, '2020-11-04 10:34:02+07', '2020-11-05 11:13:21+07', '2020-11-04', 100, NULL, NULL, 2657, 1, 2, false, '2020-11-05 11:13:21+07');
INSERT INTO public.issues VALUES (2658, 1, 46, 'Mobile - Không thêm được sản phẩm khi quét mã', '', '2020-11-04', NULL, 5, 10, 2, 54, 40, 4, '2020-11-04 10:47:52+07', '2020-11-05 11:13:21+07', '2020-11-04', 100, NULL, NULL, 2658, 1, 2, false, '2020-11-05 11:13:21+07');
INSERT INTO public.issues VALUES (2659, 1, 46, 'BC kết quả kinh doanh - Chỉ chọn thời gian theo năm', '', '2020-11-06', NULL, 5, 37, 2, 54, 40, 4, '2020-11-04 10:54:00+07', '2020-11-09 15:08:21+07', '2020-11-06', 100, NULL, NULL, 2659, 1, 2, false, '2020-11-09 15:08:21+07');
INSERT INTO public.issues VALUES (2660, 1, 46, 'Sổ quỹ chuyển component thời gian', '', '2020-11-05', NULL, 5, 37, 2, 54, 40, 3, '2020-11-04 11:00:06+07', '2020-11-09 15:08:21+07', '2020-11-05', 100, NULL, NULL, 2660, 1, 2, false, '2020-11-09 15:08:21+07');
INSERT INTO public.issues VALUES (2661, 1, 46, 'Thêm sản phẩm - đơn giá nhập được chữ - không hiển thị thông báo chi tiết khi  có lỗi xảy ra', '', '2020-11-04', NULL, 5, 10, 2, 54, 40, 3, '2020-11-04 13:42:29+07', '2020-11-18 11:22:23+07', '2020-11-04', 100, NULL, NULL, 2661, 1, 2, false, '2020-11-04 15:11:56+07');
INSERT INTO public.issues VALUES (2662, 2, 46, 'Xóa các cột đơn giá trong sản phẩm dịch vụ', 'Vì đã chuyển sang thiết lập giá', '2020-11-04', NULL, 5, 37, 2, 54, 5, 2, '2020-11-04 15:06:44+07', '2020-11-05 11:13:21+07', '2020-11-04', 100, NULL, NULL, 2662, 1, 2, false, '2020-11-05 11:13:21+07');
INSERT INTO public.issues VALUES (2663, 1, 46, 'Mobile - Tạo đơn hàng - chưa thanh toán được sản phẩm', '', '2020-11-10', NULL, 5, 10, 2, 58, 40, 6, '2020-11-04 16:03:01+07', '2020-11-16 08:44:51+07', '2020-11-10', 100, NULL, NULL, 2663, 1, 2, false, '2020-11-16 08:44:51+07');
INSERT INTO public.issues VALUES (2664, 1, 46, 'Mobile - Tạo đơn hàng - Chỉnh sửa lại thêm sản phẩm theo danh mục', '', '2020-11-11', NULL, 5, 10, 2, 58, 40, 6, '2020-11-04 16:05:12+07', '2020-11-16 08:44:51+07', '2020-11-11', 100, NULL, NULL, 2664, 1, 2, false, '2020-11-16 08:44:51+07');
INSERT INTO public.issues VALUES (2665, 1, 46, 'Mobile - Tạo đơn hàng - không xem được chi tiết của đơn hàng', '', '2020-11-07', NULL, 5, 10, 2, 54, 40, 4, '2020-11-04 16:08:07+07', '2020-11-18 11:22:17+07', '2020-11-07', 100, NULL, NULL, 2665, 1, 2, false, '2020-11-06 15:59:49+07');
INSERT INTO public.issues VALUES (2666, 1, 46, 'Mobile - Tạo đơn hàng - Không quét được mã sản phẩm', '', '2020-11-07', NULL, 5, 10, 2, 54, 40, 7, '2020-11-04 16:08:44+07', '2020-11-09 15:08:21+07', '2020-11-07', 100, NULL, NULL, 2666, 1, 2, false, '2020-11-09 15:08:21+07');
INSERT INTO public.issues VALUES (2667, 2, 42, 'Tạo form nhập liệu nâng cao', '', '2020-11-21', NULL, 5, 13, 2, 66, 19, 11, '2020-11-05 11:10:44+07', '2020-12-16 15:43:47+07', '2020-11-09', 100, NULL, NULL, 2667, 1, 8, false, '2020-12-16 15:43:47+07');
INSERT INTO public.issues VALUES (2668, 2, 42, 'Thống kê chi tiết báo cáo', '', '2020-11-14', NULL, 5, NULL, 2, 57, 19, 4, '2020-11-05 11:11:54+07', '2020-12-16 15:38:22+07', '2020-11-09', 100, NULL, NULL, 2668, 1, 6, false, '2020-12-16 15:38:22+07');
INSERT INTO public.issues VALUES (2669, 2, 42, 'API cây thư mục phân cấp báo cáo', '', '2020-11-14', NULL, 5, 38, 2, 57, 19, 2, '2020-11-05 11:13:52+07', '2020-12-16 15:37:04+07', '2020-11-09', 100, NULL, 2668, 2668, 2, 3, false, '2020-12-16 15:37:04+07');
INSERT INTO public.issues VALUES (2670, 2, 42, 'Tổng hợp dữ liệu báo cáo', '', '2020-12-19', NULL, 5, 19, 2, 71, 19, 11, '2020-11-05 11:19:30+07', '2020-12-16 15:44:09+07', '2020-12-07', 50, NULL, NULL, 2670, 1, 2, false, '2020-12-16 15:44:09+07');
INSERT INTO public.issues VALUES (2671, 2, 42, 'Giao diện chi tiết báo cáo ( Cây phân cấp hành chính)', '', '2020-11-14', NULL, 5, 12, 2, 63, 19, 7, '2020-11-05 11:20:25+07', '2020-12-16 15:38:14+07', '2020-11-09', 100, NULL, 2668, 2668, 4, 5, false, '2020-12-16 15:38:14+07');
INSERT INTO public.issues VALUES (2672, 2, 42, 'API tạo form nhập liệu nâng cao', '', '2020-11-14', NULL, 5, 38, 2, 61, 19, 4, '2020-11-05 11:21:41+07', '2020-12-16 15:37:48+07', '2020-11-09', 100, NULL, 2667, 2667, 2, 3, false, '2020-12-16 15:37:48+07');
INSERT INTO public.issues VALUES (2673, 1, 46, 'Xóa sp thông báo đã phát sinh dữ liệu', '', '2020-11-06', NULL, 5, 39, 2, 54, 40, 4, '2020-11-05 13:14:15+07', '2020-11-09 15:08:21+07', '2020-11-06', 100, NULL, NULL, 2673, 1, 2, false, '2020-11-09 15:08:21+07');
INSERT INTO public.issues VALUES (2674, 2, 46, 'Thêm in phiếu giao nhận & thanh toán', 'Dùng button dropdown', '2020-11-09', NULL, 5, 39, 2, 58, 5, 5, '2020-11-05 14:47:09+07', '2020-11-16 08:44:51+07', '2020-11-09', 100, NULL, NULL, 2674, 1, 2, false, '2020-11-16 08:44:51+07');
INSERT INTO public.issues VALUES (2675, 2, 4, 'Nhập dự án đã đầu tư ngoài khu kinh tế, khu công nghiệp', '', '2020-11-05', NULL, 3, 40, 2, 56, 13, 1, '2020-11-05 14:54:31+07', '2020-12-08 17:07:25+07', '2020-11-03', 100, NULL, NULL, 2675, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2676, 2, 4, 'Nhập dự án đã đầu tư trong khu kinh tế, khu công nghiệp', '', '2020-11-07', NULL, 3, 13, 2, 56, 13, 1, '2020-11-05 14:55:10+07', '2020-12-08 17:07:26+07', '2020-11-05', 100, NULL, NULL, 2676, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2677, 2, 4, 'Thể hiện đơn vị tính cho dự án mời gọi đầu tư', '', '2020-11-06', NULL, 1, 13, 2, 56, 13, 0, '2020-11-05 14:57:02+07', '2020-11-05 14:57:02+07', '2020-11-05', 100, NULL, NULL, 2677, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2678, 2, 4, 'Cập nhật lại các thống kê dự án mời gọi theo đơn vị tính', '', '2020-11-06', NULL, 1, 13, 2, 56, 13, 0, '2020-11-05 14:57:52+07', '2020-11-05 14:57:52+07', '2020-11-05', 100, NULL, NULL, 2678, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2679, 2, 46, 'Tạo phiếu xuất hàng', 'Ở chế độ **"Tự động xuất kho khi bán hàng == false"**, mục này nằm trong cấu hình đơn vị

Tức là lên đơn hàng, nhưng chưa xuất kho

Kế toán kho:

 - Bấm vào tạo phiếu xuất hàng

 - Bên trái sẽ chọn: nhân viên bán hàng, nhân viên giao hàng

 - Bên phải gồm 2 phần: 1 là có mục để chọn ra những đơn hàng cần xuất đi điều kiện là **trạng thái đơn hàng == mới**; 2 là sau khi chọn đơn hàng, thì danh sách hàng hóa sẽ liệt kê ra như chi tiết phiếu xuất', '2020-11-09', NULL, 5, 39, 2, 58, 5, 4, '2020-11-05 15:23:39+07', '2020-11-16 08:44:51+07', '2020-11-09', 100, NULL, NULL, 2679, 1, 2, false, '2020-11-16 08:44:51+07');
INSERT INTO public.issues VALUES (2680, 2, 46, 'Api in phiếu xuất hàng theo NVGH', '', '2020-11-10', NULL, 5, 41, 2, 58, 5, 4, '2020-11-05 15:29:12+07', '2020-11-16 08:44:51+07', '2020-11-09', 100, NULL, NULL, 2680, 1, 2, false, '2020-11-16 08:44:51+07');
INSERT INTO public.issues VALUES (2681, 1, 46, 'Mobile - BC tồn kho, bỏ mã tên sản phẩm, chỉnh mã sản phẩm.', '', '2020-11-06', NULL, 5, 10, 2, 54, 10, 4, '2020-11-05 16:18:03+07', '2020-11-09 15:08:21+07', '2020-11-06', 100, NULL, NULL, 2681, 1, 2, false, '2020-11-09 15:08:21+07');
INSERT INTO public.issues VALUES (2682, 1, 46, 'Mobile báo cáo báo hàng, bỏ header, bỏ tên sản phẩm, chỉnh mã sản phẩm.', 'Bỏ dòng "Tên SPDV", ghi thành dấu #+mã sản phẩm. bỏ header luôn', '2020-11-06', NULL, 5, 10, 2, 54, 10, 3, '2020-11-05 16:20:17+07', '2020-11-09 15:08:21+07', '2020-11-06', 100, NULL, NULL, 2682, 1, 2, false, '2020-11-09 15:08:21+07');
INSERT INTO public.issues VALUES (2683, 2, 46, 'Moblie - Chỉnh giao diện chi tiết phiếu của sổ quỹ tiền mặt như giao diện tab cá nhân.', '', '2020-11-06', NULL, 5, 10, 2, 54, 10, 3, '2020-11-05 16:21:23+07', '2020-11-09 15:08:22+07', '2020-11-06', 100, NULL, NULL, 2683, 1, 2, false, '2020-11-09 15:08:22+07');
INSERT INTO public.issues VALUES (2684, 2, 46, 'Mobile -  tạo spinner khi load dữ liệu.', '', '2020-11-10', NULL, 5, 10, 2, 58, 10, 5, '2020-11-05 16:36:46+07', '2020-11-16 08:44:52+07', '2020-11-09', 100, NULL, NULL, 2684, 1, 2, false, '2020-11-16 08:44:52+07');
INSERT INTO public.issues VALUES (2685, 2, 4, 'popup chưa thể hiện quốc gia của doanh nghiệp khi click trên bản đồ', '', '2020-11-06', NULL, 3, 13, 2, 56, 13, 1, '2020-11-05 16:47:40+07', '2020-12-08 17:07:26+07', '2020-11-05', 100, NULL, NULL, 2685, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2686, 1, 46, 'BC nhập xuất tồn chi tiết - sai số liệu đầu kì và giá trị cuối kì', '', '2020-11-09', NULL, 5, 41, 2, 58, 40, 5, '2020-11-06 13:25:45+07', '2020-11-16 08:44:52+07', '2020-11-09', 100, NULL, NULL, 2686, 1, 2, false, '2020-11-16 08:44:52+07');
INSERT INTO public.issues VALUES (2687, 1, 46, 'Sổ quỹ- không hiển thị được giao  diện', '', '2020-11-07', NULL, 5, 41, 2, 54, 40, 2, '2020-11-06 13:44:58+07', '2020-11-09 15:08:22+07', '2020-11-06', 100, NULL, NULL, 2687, 1, 2, false, '2020-11-09 15:08:22+07');
INSERT INTO public.issues VALUES (2688, 2, 46, 'Moblie - Tạo tài khoản nhân viên Niên, tạo chức năng đặt hàng.', 'Mỗi nhân viên sẽ quản lý một số cửa hàng nhất định, cứ cách một khoảng thời gian họ đến từng cử hàng xem xét, nếu chủ cửa hàng có yêu cầu đặt thêm hàng thì nhân viên sẽ thông qua app đặt hàng gửi yêu cầu về cho kế toán bán hàng.', '2020-11-13', NULL, 5, 10, 2, 58, 10, 4, '2020-11-06 15:44:12+07', '2020-11-18 11:22:10+07', '2020-11-12', 100, NULL, NULL, 2688, 1, 2, false, '2020-11-12 09:37:08+07');
INSERT INTO public.issues VALUES (2689, 2, 46, 'Detail nhân viên', 'Kèm danh sách khách hàng mà nhân viên phụ trách', '2020-11-10', NULL, 5, 39, 2, 58, 5, 3, '2020-11-07 10:07:50+07', '2020-11-16 08:44:52+07', '2020-11-09', 100, NULL, NULL, 2689, 1, 2, false, '2020-11-16 08:44:52+07');
INSERT INTO public.issues VALUES (2690, 2, 46, 'Detail Nhân Viên', '', '2020-11-07', NULL, 5, 39, 2, 54, 39, 2, '2020-11-07 10:11:49+07', '2020-11-09 15:08:22+07', '2020-11-07', 100, NULL, NULL, 2690, 1, 2, false, '2020-11-09 15:08:22+07');
INSERT INTO public.issues VALUES (2691, 2, 46, 'Thêm checkbox thanhToanQRcode trong cấu hình đơn vị', '', '2020-11-07', NULL, 5, 8, 2, 54, 8, 2, '2020-11-07 10:11:52+07', '2020-11-09 15:08:22+07', '2020-11-07', 100, NULL, NULL, 2691, 1, 2, false, '2020-11-09 15:08:22+07');
INSERT INTO public.issues VALUES (2692, 2, 46, 'Check khi thanh toán có thanhToanQRCode', '', '2020-11-07', NULL, 5, 8, 2, 54, 8, 2, '2020-11-07 10:12:24+07', '2020-11-09 15:08:22+07', '2020-11-07', 100, NULL, NULL, 2692, 1, 2, false, '2020-11-09 15:08:22+07');
INSERT INTO public.issues VALUES (2693, 1, 46, 'Trả hàng - Tạo thành công phiếu trả hàng nhưng báo cáo bán hàng vẫn đưa vào doanh thu', '', '2020-11-10', NULL, 5, 41, 2, 58, 40, 3, '2020-11-07 11:05:41+07', '2020-11-16 08:44:52+07', '2020-11-10', 100, NULL, NULL, 2693, 1, 2, false, '2020-11-16 08:44:52+07');
INSERT INTO public.issues VALUES (2694, 1, 46, 'BC hàng hóa - mặc định kích thước 100%', '', '2020-11-07', NULL, 5, 37, 2, 54, 40, 2, '2020-11-07 11:18:02+07', '2020-11-09 15:08:22+07', '2020-11-07', 100, NULL, NULL, 2694, 1, 2, false, '2020-11-09 15:08:22+07');
INSERT INTO public.issues VALUES (2695, 1, 46, 'BC kết quả kinh doanh - mặc định kích thước 100%', '', '2020-11-07', NULL, 5, 37, 2, 54, 40, 2, '2020-11-07 11:18:34+07', '2020-11-09 15:08:22+07', '2020-11-07', 100, NULL, NULL, 2695, 1, 2, false, '2020-11-09 15:08:22+07');
INSERT INTO public.issues VALUES (2696, 1, 46, 'Gộp đơn trả hàng vào báo cáo doanh thu theo số lượng và thời gian', '', '2020-11-11', NULL, 5, 41, 2, 58, 40, 4, '2020-11-07 13:57:53+07', '2020-11-16 08:44:52+07', '2020-11-11', 100, NULL, NULL, 2696, 1, 2, false, '2020-11-16 08:44:52+07');
INSERT INTO public.issues VALUES (2697, 2, 46, 'BC doanh thu theo đơn trả hàng - xem chi tiết của đơn trả hàng theo từng ngày', '', '2020-11-12', NULL, 5, 41, 2, 58, 40, 3, '2020-11-07 14:38:44+07', '2020-11-16 08:44:52+07', '2020-11-12', 100, NULL, NULL, 2697, 1, 2, false, '2020-11-16 08:44:52+07');
INSERT INTO public.issues VALUES (2698, 2, 42, 'Dựng source Frontend', '', '2020-11-07', NULL, 5, 12, 2, 55, 12, 5, '2020-11-07 16:26:30+07', '2020-12-16 15:36:57+07', '2020-11-02', 100, NULL, NULL, 2698, 1, 2, false, '2020-12-16 15:36:57+07');
INSERT INTO public.issues VALUES (2699, 2, 42, 'Dựng source Backend', '', '2020-11-07', NULL, 5, 38, 2, 55, 12, 6, '2020-11-07 16:27:56+07', '2020-12-16 15:36:58+07', '2020-11-02', 100, NULL, NULL, 2699, 1, 2, false, '2020-12-16 15:36:58+07');
INSERT INTO public.issues VALUES (2700, 5, 35, '2 Quy hoạch phân khu phường Hưng Chiến', 'Sửa lỗi nhập liệu của Loan', '2020-10-31', NULL, 1, 32, 2, NULL, 33, 0, '2020-11-09 08:23:59+07', '2020-11-09 08:23:59+07', '2020-10-27', 100, NULL, 2342, 2342, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (2701, 5, 35, '3 Quy hoạch phân khu Khu đô thị phường Phú Thịnh', 'Sửa lỗi nhập liệ của Duyên', '2020-10-31', NULL, 1, 32, 2, NULL, 33, 0, '2020-11-09 08:24:59+07', '2020-11-09 08:24:59+07', '2020-10-27', 100, NULL, 2342, 2342, 14, 15, false, NULL);
INSERT INTO public.issues VALUES (2702, 5, 35, '6-7-8-9 Quy hoạch xây dựng Nông thôn mới xã Thanh Hòa + Tân Thành + Tân Tiến + QHC Hớn Quản', 'Sửa lỗi nhập liệu của 2 bạn Dũng và Phúc', '2020-10-31', NULL, 1, 33, 2, NULL, 33, 0, '2020-11-09 08:27:58+07', '2020-11-09 08:27:58+07', '2020-10-26', 100, NULL, 2342, 2342, 16, 17, false, NULL);
INSERT INTO public.issues VALUES (2703, 5, 35, 'Số hóa 6 dự án (Đợt 5) Bình Phước', '', '2020-10-31', NULL, 1, 33, 2, NULL, 33, 2, '2020-11-09 08:32:29+07', '2020-11-09 08:37:56+07', '2020-10-23', 100, NULL, NULL, 2703, 1, 14, false, NULL);
INSERT INTO public.issues VALUES (2704, 5, 35, '1 QHCT 1/500 KDC khu phố Phú Sơn, phường An Lộc', 'Nhập liệu', '2020-10-30', NULL, 1, 24, 2, NULL, 33, 0, '2020-11-09 08:34:13+07', '2020-11-09 08:34:13+07', '2020-10-23', 100, NULL, 2703, 2703, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2705, 5, 35, '2 Điều chỉnh đồ án Quy hoạch chi tiết xây dựng tỷ lệ 1/500 chợ Bình Long.', 'Nhập Liệu', '2020-10-26', NULL, 1, 29, 2, NULL, 33, 0, '2020-11-09 08:34:55+07', '2020-11-09 08:34:55+07', '2020-10-23', 100, NULL, 2703, 2703, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (2706, 5, 35, '3 Quy hoạch chi tiết khu dân cư khu phố Phú Bình thị trấn An Lộc, huyện Bình Long, tỉnh Bình Phước ', 'Nhập Liệu', '2020-10-27', NULL, 1, 23, 2, NULL, 33, 0, '2020-11-09 08:35:44+07', '2020-11-09 08:35:44+07', '2020-10-23', 100, NULL, 2703, 2703, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (2707, 5, 35, '4 QHCT Khu Trung tâm thương mại và dân cư Thanh Bình', 'Nhập liệu', '2020-10-29', NULL, 1, 23, 2, NULL, 33, 0, '2020-11-09 08:36:44+07', '2020-11-09 08:36:44+07', '2020-10-27', 100, NULL, 2703, 2703, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (2708, 5, 35, '5 Khu Đô thị - Trung tâm hành chính - Thương mại – Dịch vụ - Dân cư huyện Lộc Ninh', 'Nhập Liệu', '2020-10-31', NULL, 1, NULL, 2, NULL, 33, 0, '2020-11-09 08:37:56+07', '2020-11-09 08:37:56+07', '2020-10-29', 100, NULL, 2703, 2703, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (2709, 5, 35, '6 QHCT 1/500 Khu Trung tâm hành chính mới Thị xã Bình Long', 'Xủa lý bản đồ và nhập liệu', '2020-10-30', NULL, 1, 33, 2, NULL, 33, 0, '2020-11-09 08:39:01+07', '2020-11-09 08:39:01+07', '2020-10-28', 100, NULL, 2703, 2703, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (2710, 5, 25, 'QĐ BAN HÀNH QUY CHẾ QUẢN LÝ, SỬ DỤNG ỨNG DỤNG REDMINE', '', NULL, NULL, 1, NULL, 2, NULL, 4, 0, '2020-11-09 09:18:11+07', '2020-11-09 09:18:11+07', '2020-11-09', 0, NULL, NULL, 2710, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2711, 2, 46, 'Tạo mới báo cáo chi tiết theo thời gian', '', '2020-11-09', NULL, 5, 41, 2, 58, 41, 2, '2020-11-09 09:27:34+07', '2020-11-16 08:44:52+07', '2020-11-09', 100, NULL, NULL, 2711, 1, 2, false, '2020-11-16 08:44:52+07');
INSERT INTO public.issues VALUES (2712, 2, 46, 'Tạo phiếu giao nhận và thanh toán', '', '2020-11-10', NULL, 5, 41, 2, 58, 41, 3, '2020-11-09 09:27:56+07', '2020-11-16 08:44:52+07', '2020-11-09', 100, NULL, NULL, 2712, 1, 2, false, '2020-11-16 08:44:52+07');
INSERT INTO public.issues VALUES (2713, 2, 46, 'Tạo giao diện tab nợ cần thu từ khách', '', '2020-11-10', NULL, 5, 37, 2, 58, 37, 3, '2020-11-09 09:40:27+07', '2020-11-16 08:44:53+07', '2020-11-10', 100, NULL, NULL, 2713, 1, 2, false, '2020-11-16 08:44:53+07');
INSERT INTO public.issues VALUES (2714, 2, 46, 'Api báo cáo mua hàng - bảng kê hàng hóa', '', '2020-11-21', NULL, 5, 5, 2, 60, 5, 5, '2020-11-09 15:00:22+07', '2020-11-23 09:57:15+07', '2020-11-21', 100, NULL, NULL, 2714, 1, 2, false, '2020-11-23 09:57:15+07');
INSERT INTO public.issues VALUES (2715, 2, 46, 'Lọc phòng ban trong nhân viên', 'Có bút bấm zô để thêm/xóa/sửa', '2020-11-10', NULL, 5, 39, 2, 58, 5, 2, '2020-11-09 15:07:45+07', '2020-11-16 08:44:53+07', '2020-11-10', 100, NULL, NULL, 2715, 1, 2, false, '2020-11-16 08:44:53+07');
INSERT INTO public.issues VALUES (2716, 2, 46, 'Api báo cáo sản lượng bán hàng theo kh', '', '2020-11-23', NULL, 5, 5, 2, 62, 5, 4, '2020-11-09 16:52:35+07', '2020-11-26 13:34:43+07', '2020-11-23', 100, NULL, NULL, 2716, 1, 2, false, '2020-11-26 13:34:43+07');
INSERT INTO public.issues VALUES (2717, 2, 46, 'api báo cáo sản lượng bán hàng theo nvbh', '', '2020-11-23', NULL, 5, 5, 2, 62, 5, 4, '2020-11-09 16:53:00+07', '2020-11-26 13:34:44+07', '2020-11-23', 100, NULL, NULL, 2717, 1, 2, false, '2020-11-26 13:34:44+07');
INSERT INTO public.issues VALUES (2718, 2, 42, 'Giao diện quản lý và assign báo cáo', '', NULL, NULL, 5, 12, 2, 57, 19, 7, '2020-11-10 08:24:40+07', '2020-12-16 15:38:01+07', '2020-11-11', 100, NULL, NULL, 2718, 1, 4, false, '2020-12-16 15:38:01+07');
INSERT INTO public.issues VALUES (2719, 1, 46, 'BC kết quả kinh doanh - Không xem được kết quả báo cáo theo thời gian', '', '2020-11-10', NULL, 5, 37, 2, 58, 40, 2, '2020-11-10 09:31:02+07', '2020-11-16 08:44:53+07', '2020-11-10', 100, NULL, NULL, 2719, 1, 2, false, '2020-11-16 08:44:53+07');
INSERT INTO public.issues VALUES (2720, 2, 46, 'Detail Xuất hàng', '', '2020-11-10', NULL, 5, 39, 2, 58, 39, 2, '2020-11-10 13:54:02+07', '2020-11-16 08:44:53+07', '2020-11-10', 100, NULL, NULL, 2720, 1, 2, false, '2020-11-16 08:44:53+07');
INSERT INTO public.issues VALUES (2721, 5, 52, 'Phân loại tài liệu năm 1999', '', '2020-11-07', NULL, 1, 28, 2, NULL, 23, 1, '2020-11-10 13:54:04+07', '2020-11-10 13:54:35+07', '2020-10-16', 100, NULL, NULL, 2721, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2722, 2, 46, 'In Phiếu Xuất Hàng', '', '2020-11-10', NULL, 5, 39, 2, 58, 39, 3, '2020-11-10 13:54:19+07', '2020-11-16 08:44:53+07', '2020-11-10', 100, NULL, NULL, 2722, 1, 2, false, '2020-11-16 08:44:53+07');
INSERT INTO public.issues VALUES (2723, 5, 52, 'Phân loại tài liệu năm 2000', '', '2020-11-10', NULL, 1, 23, 2, NULL, 23, 0, '2020-11-10 13:55:39+07', '2020-11-10 13:55:39+07', '2020-10-16', 70, NULL, NULL, 2723, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2724, 5, 52, 'Phân loại tài liệu năm 2001', '', '2020-11-10', NULL, 1, 35, 2, NULL, 23, 0, '2020-11-10 14:12:29+07', '2020-11-10 14:12:29+07', '2020-10-16', 100, NULL, NULL, 2724, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2725, 5, 52, 'Phân loại tài liệu năm 2002', '', '2020-11-10', NULL, 1, 34, 2, NULL, 23, 0, '2020-11-10 14:13:00+07', '2020-11-10 14:13:00+07', '2020-10-16', 100, NULL, NULL, 2725, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2726, 5, 52, 'Phân loại tài liệu năm 2003', '', '2020-11-10', NULL, 1, 34, 2, NULL, 23, 1, '2020-11-10 14:13:32+07', '2020-11-23 11:26:33+07', '2020-10-16', 100, NULL, NULL, 2726, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2727, 5, 52, 'Phân loại tài liệu năm 2004', '', '2020-11-12', NULL, 1, 31, 2, NULL, 23, 1, '2020-11-10 14:13:57+07', '2020-11-12 08:29:03+07', '2020-10-16', 100, NULL, NULL, 2727, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2728, 5, 52, 'Phân loại tài liệu năm 2005 - Phân công cho Hương', '', '2020-11-10', NULL, 1, NULL, 2, NULL, 23, 0, '2020-11-10 14:14:30+07', '2020-11-10 14:14:30+07', '2020-10-16', 100, NULL, NULL, 2728, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2729, 5, 52, 'Phân loại tài liệu năm 2006 - phân công cho Hương', '', '2020-11-10', NULL, 1, NULL, 2, NULL, 23, 1, '2020-11-10 14:15:02+07', '2020-11-12 08:28:25+07', '2020-10-16', 100, NULL, NULL, 2729, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2730, 5, 52, 'Phân loại tài liệu năm 2006 - phân công cho Hương + Nhơn', '', '2020-11-10', NULL, 1, NULL, 2, NULL, 23, 0, '2020-11-10 14:15:28+07', '2020-11-10 14:15:28+07', '2020-10-16', 100, NULL, NULL, 2730, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2731, 5, 52, 'Phân loại tài liệu năm 1992, 1993, 1994, 1995, 1996, 1997, 2008, 2009, 2010, 2011', '', '2020-11-10', NULL, 1, 28, 2, NULL, 23, 1, '2020-11-10 14:16:05+07', '2020-11-12 08:30:32+07', '2020-10-16', 100, NULL, NULL, 2731, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2732, 5, 52, 'Phân loại tài liệu năm 1998', '', '2020-11-10', NULL, 1, 35, 2, NULL, 23, 0, '2020-11-10 14:16:53+07', '2020-11-10 14:16:53+07', '2020-10-16', 100, NULL, NULL, 2732, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2733, 1, 46, 'Tổng quan - Sai số liệu doanh số theo chi nhánh qua các mốc thời gian', '', '2020-11-11', NULL, 5, 39, 2, 58, 40, 3, '2020-11-10 14:20:40+07', '2020-11-16 08:44:53+07', '2020-11-11', 100, NULL, NULL, 2733, 1, 2, false, '2020-11-16 08:44:53+07');
INSERT INTO public.issues VALUES (2734, 2, 46, 'api thêm đơn vị quy đổi', '', '2020-11-28', NULL, 5, 41, 2, 62, 5, 7, '2020-11-10 16:20:28+07', '2020-11-28 17:09:30+07', '2020-11-28', 100, NULL, NULL, 2734, 1, 2, false, '2020-11-28 17:09:30+07');
INSERT INTO public.issues VALUES (2735, 2, 46, 'Giao diện thêm đơn vị quy đổi', '', NULL, NULL, 5, 39, 2, 33, 5, 8, '2020-11-10 16:20:53+07', '2020-11-30 08:06:32+07', NULL, 0, NULL, NULL, 2735, 1, 2, false, '2020-11-30 08:06:32+07');
INSERT INTO public.issues VALUES (2736, 2, 46, 'In Phiếu giao nhận và thanh toán', '', '2020-11-11', NULL, 5, 39, 2, 58, 39, 2, '2020-11-10 16:51:23+07', '2020-11-16 08:44:53+07', '2020-11-11', 100, NULL, NULL, 2736, 1, 2, false, '2020-11-16 08:44:53+07');
INSERT INTO public.issues VALUES (2738, 1, 46, 'BC doanh thu theo SPDV - Thiếu tiêu đề khi chọn thời gian xem không có kết quả', '', '2020-11-11', NULL, 5, 41, 2, 58, 40, 2, '2020-11-11 08:26:57+07', '2020-11-16 08:44:53+07', '2020-11-11', 100, NULL, NULL, 2738, 1, 2, false, '2020-11-16 08:44:53+07');
INSERT INTO public.issues VALUES (2739, 2, 42, 'API assign', '', NULL, NULL, 5, 38, 3, 57, 19, 4, '2020-11-11 09:09:44+07', '2020-12-16 15:37:05+07', '2020-11-11', 100, NULL, 2718, 2718, 2, 3, false, '2020-12-16 15:37:05+07');
INSERT INTO public.issues VALUES (2740, 1, 46, 'Doashboard - PieChart - Sai dữ liệu tổng doanh thu ', '', '2020-11-12', NULL, 5, 39, 2, 58, 39, 2, '2020-11-11 13:52:10+07', '2020-11-16 08:44:53+07', '2020-11-12', 100, NULL, NULL, 2740, 1, 2, false, '2020-11-16 08:44:53+07');
INSERT INTO public.issues VALUES (2741, 1, 46, 'In phiếu nhập dư 1 trang trắng', '', '2020-11-20', NULL, 5, 39, 2, 60, 40, 8, '2020-11-11 17:00:03+07', '2020-11-23 09:57:15+07', '2020-11-20', 100, NULL, NULL, 2741, 1, 2, false, '2020-11-23 09:57:15+07');
INSERT INTO public.issues VALUES (2742, 2, 46, 'Thêm cột giảm gía cho từng sản phẩm khi tạo đơn hàng', '', '2020-11-13', NULL, 5, 8, 2, 58, 40, 5, '2020-11-11 17:00:35+07', '2020-11-16 08:44:54+07', '2020-11-13', 100, NULL, NULL, 2742, 1, 2, false, '2020-11-16 08:44:54+07');
INSERT INTO public.issues VALUES (2743, 2, 46, 'Xuất hàng - Xuất theo nhiều nhân viên, hiển thị danh sách đơn hàng ngay trên giao diện xuất hàng - bỏ chọn nhân viên KD', '', '2020-11-16', NULL, 5, 39, 2, 60, 40, 4, '2020-11-11 17:02:29+07', '2020-11-28 09:32:11+07', '2020-11-16', 100, NULL, NULL, 2743, 1, 2, false, '2020-11-28 09:32:11+07');
INSERT INTO public.issues VALUES (2748, 1, 46, 'Cho phép hủy đơn hàng khi đã xuất kho', '', NULL, NULL, 5, NULL, 2, 33, 40, 1, '2020-11-11 17:17:58+07', '2020-11-23 08:57:41+07', '2020-11-11', 0, NULL, NULL, 2748, 1, 2, false, '2020-11-23 08:57:41+07');
INSERT INTO public.issues VALUES (2749, 2, 46, 'Trong danh mục trả hàng - hiển thị danh sách của đơn hàng', '', '2020-11-30', NULL, 5, 8, 2, 65, 40, 5, '2020-11-11 17:18:39+07', '2020-11-30 08:38:31+07', '2020-11-30', 100, NULL, NULL, 2749, 1, 2, false, '2020-11-30 08:38:31+07');
INSERT INTO public.issues VALUES (2751, 4, 35, 'Xử lý số hóa 50 dự án tỉnh Bình Phước (Tháng 11)', '', '2020-12-04', NULL, 1, 33, 2, NULL, 33, 0, '2020-11-12 08:12:42+07', '2020-11-12 08:12:42+07', '2020-11-12', 0, NULL, NULL, 2751, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2752, 5, 52, 'Phân loại tài liệu năm 2000 - Hương hỗ trợ ', '', '2020-11-12', NULL, 1, 23, 2, NULL, 23, 1, '2020-11-12 08:26:16+07', '2020-11-12 08:27:39+07', '2020-10-16', 100, NULL, NULL, 2752, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2753, 5, 52, 'Phân loại tài liệu năm 2003 - Phương + Quyên hỗ trợ', '', '2020-11-12', NULL, 1, 34, 2, NULL, 23, 0, '2020-11-12 08:27:11+07', '2020-11-12 08:27:11+07', '2020-10-16', 100, NULL, NULL, 2753, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2754, 5, 52, 'Tạo mục lục các tập hồ sơ các năm', '', '2020-11-13', NULL, 1, 23, 2, NULL, 23, 2, '2020-11-12 08:31:42+07', '2020-11-27 14:46:47+07', '2020-11-09', 100, NULL, NULL, 2754, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2755, 2, 46, 'Mobile - Tạo bảng giá.', '', '2020-11-12', NULL, 5, 10, 2, 58, 10, 4, '2020-11-12 09:31:18+07', '2020-11-16 08:44:54+07', '2020-11-12', 100, NULL, NULL, 2755, 1, 2, false, '2020-11-16 08:44:54+07');
INSERT INTO public.issues VALUES (2756, 2, 46, 'Mobile - Load danh sách khách hàng theo tài khoản ketoanbanhang, nhân viên HuuNien.', '', '2020-11-12', NULL, 5, 10, 2, 58, 10, 4, '2020-11-12 09:34:32+07', '2020-11-16 08:44:54+07', '2020-11-12', 100, NULL, NULL, 2756, 1, 2, false, '2020-11-16 08:44:54+07');
INSERT INTO public.issues VALUES (2757, 5, 35, '1 QHCT 1/500 khu dân cư đường Phú Riềng Đỏ nối dài từ khu TTHC huyện lên khu công nghiệp Bắc Đồng Phú', 'Xử lý bản đồ', '2020-11-12', NULL, 1, 33, 2, NULL, 33, 0, '2020-11-12 10:55:40+07', '2020-11-12 10:55:40+07', '2020-11-12', 0, NULL, NULL, 2757, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2758, 1, 46, 'Xóa đơn trả phải xóa trong thẻ kho', '', '2020-11-14', NULL, 5, 41, 2, 58, 5, 2, '2020-11-12 14:59:47+07', '2020-11-16 08:44:54+07', '2020-11-14', 100, NULL, NULL, 2758, 1, 2, false, '2020-11-16 08:44:54+07');
INSERT INTO public.issues VALUES (2759, 5, 57, '1 QHCT 1/500 khu dân cư đường Phú Riềng Đỏ nối dài từ khu TTHC huyện lên khu công nghiệp Bắc Đồng Phú', 'Xử lí bản đồ', '2020-11-14', NULL, 1, 33, 2, NULL, 33, 4, '2020-11-12 17:03:21+07', '2020-11-17 08:21:09+07', '2020-11-14', 100, NULL, NULL, 2759, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2760, 5, 57, '3 Khu dân cư Hoàn Thành', 'Xử lý bản đồ và nhập liệu', '2020-11-14', NULL, 1, 24, 2, NULL, 33, 1, '2020-11-12 17:04:36+07', '2020-11-17 08:20:34+07', '2020-11-12', 100, NULL, NULL, 2760, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2761, 5, 57, '4 QHCT Khu dân cư Đồng Phú - TT Tân Phú', 'Xử lí bản đồ và nhập liệu', '2020-11-14', NULL, 1, 32, 2, NULL, 33, 2, '2020-11-12 17:05:20+07', '2020-11-14 14:02:12+07', '2020-11-12', 100, NULL, NULL, 2761, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2762, 5, 52, 'Phân loại tài liệu phòng nội vụ năm 2010 - Phương', '', '2020-11-14', NULL, 1, 28, 2, NULL, 23, 2, '2020-11-13 07:25:00+07', '2020-11-13 16:44:28+07', '2020-11-12', 100, NULL, NULL, 2762, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2763, 5, 52, 'Phân loại tài liệu phòng Nội vụ năm 2012 - Hương ', '', '2020-11-15', NULL, 1, 34, 2, NULL, 23, 1, '2020-11-13 07:26:32+07', '2020-11-14 09:26:57+07', '2020-11-12', 100, NULL, NULL, 2763, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2764, 5, 57, '2 QHCT khu Trung tâm thị trấn Tân Phú', 'Xử lí bản đồ và nhập liệu', '2020-11-16', NULL, 1, 44, 2, NULL, 33, 1, '2020-11-13 08:24:51+07', '2020-11-14 16:20:37+07', '2020-11-13', 100, NULL, NULL, 2764, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2765, 5, 57, '7 QHCT khu TTHC xã Thuận Lợi', 'Xử lí bản đồ và nhập liệu', '2020-11-16', NULL, 1, 43, 2, NULL, 33, 1, '2020-11-13 08:25:52+07', '2020-11-17 08:21:24+07', '2020-11-13', 100, NULL, NULL, 2765, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2766, 2, 46, 'Mobile - Thêm giảm giá, % giảm giá cho từng sản phẩm.', '', '2020-11-13', NULL, 5, 10, 2, 58, 10, 4, '2020-11-13 10:09:47+07', '2020-11-16 08:44:54+07', '2020-11-13', 100, NULL, NULL, 2766, 1, 2, false, '2020-11-16 08:44:54+07');
INSERT INTO public.issues VALUES (2767, 5, 52, 'Phân loại tài liệu phòng nội vụ năm 2011 - Phương hỗ trợ', '', '2020-11-14', NULL, 1, 31, 2, NULL, 23, 1, '2020-11-13 16:43:37+07', '2020-11-14 09:26:22+07', '2020-11-13', 100, NULL, NULL, 2767, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2768, 5, 57, 'Nhập Liệu', '', '2020-11-14', NULL, 1, 23, 2, NULL, 33, 3, '2020-11-14 08:11:55+07', '2020-11-17 08:21:09+07', '2020-11-14', 100, NULL, 2759, 2759, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2769, 5, 57, '5 QHCT Khu dân cư Xuân Hưởng', 'Xử lí bản đồ', '2020-11-14', NULL, 1, 33, 2, NULL, 33, 2, '2020-11-14 08:13:15+07', '2020-11-17 08:21:17+07', '2020-11-14', 100, NULL, NULL, 2769, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2770, 5, 57, '6 Khu du lịch Sơn Hà', 'Xử lí bản đồ', '2020-11-16', NULL, 1, 33, 2, NULL, 33, 3, '2020-11-14 08:21:31+07', '2020-11-17 08:21:38+07', '2020-11-14', 100, NULL, NULL, 2770, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2771, 5, 57, '8 QHCT 1/500 khu dân cư ấp 4 xã Đồng Tâm', 'Xử lí bản đồ', '2020-11-13', NULL, 1, 32, 2, NULL, 33, 1, '2020-11-14 08:23:35+07', '2020-11-14 08:34:01+07', '2020-11-13', 100, NULL, NULL, 2771, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2772, 5, 57, '9 QHCT khu TTHC xã Tân Phước', 'Xử lí bản đồ', '2020-11-17', NULL, 1, 33, 2, NULL, 33, 3, '2020-11-14 08:24:22+07', '2020-11-18 15:08:03+07', '2020-11-16', 100, NULL, NULL, 2772, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2773, 5, 57, '10 QHCT khu dân cư Tân Phước 1', 'Xử lí bản đồ', '2020-11-18', NULL, 1, 33, 2, NULL, 33, 4, '2020-11-14 08:26:56+07', '2020-11-18 15:08:18+07', '2020-11-16', 100, NULL, NULL, 2773, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2774, 5, 57, '11 QHCT khu dân cư Hữu Phúc', 'Xử lí bản đồ', '2020-11-17', NULL, 1, 33, 2, NULL, 33, 2, '2020-11-14 08:28:43+07', '2020-11-18 08:10:48+07', '2020-11-16', 100, NULL, NULL, 2774, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2775, 5, 57, '12 QHCT khu dân cư The HomeLand', 'Xử lí bản đồ', '2020-11-18', NULL, 1, 33, 2, NULL, 33, 2, '2020-11-14 08:29:11+07', '2020-11-18 15:08:48+07', '2020-11-16', 100, NULL, NULL, 2775, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2776, 2, 46, 'Gắn Filter Date cho 1 số module', '', '2020-11-13', NULL, 5, 39, 2, 58, 39, 2, '2020-11-14 08:31:13+07', '2020-11-16 08:44:54+07', '2020-11-13', 100, NULL, NULL, 2776, 1, 2, false, '2020-11-16 08:44:54+07');
INSERT INTO public.issues VALUES (2777, 5, 57, 'Nhập Liệu', 'Phan Hoàng Vũ nhập liệu', '2020-11-14', NULL, 1, 29, 2, NULL, 33, 2, '2020-11-14 08:33:40+07', '2020-11-17 08:21:17+07', '2020-11-14', 100, NULL, 2769, 2769, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2778, 5, 52, 'sắp xếp và loại bỏ trùng thừa tài liệu văn phòng - 1994,1995,1996,1997,1999, 2006, 2008, 2010, 2011', '', '2020-11-17', NULL, 1, 28, 2, NULL, 23, 4, '2020-11-14 09:31:00+07', '2020-11-17 18:47:02+07', '2020-11-14', 100, NULL, NULL, 2778, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2779, 5, 52, 'sắp xếp hồ sơ và lọc trùng thừa tài liệu văn phòng năm 2005 ', '', '2020-11-16', NULL, 1, 45, 2, NULL, 23, 5, '2020-11-14 09:33:36+07', '2020-11-17 18:57:30+07', '2020-11-14', 100, NULL, NULL, 2779, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2780, 5, 52, 'sắp xếp hồ sơ và loại bỏ trùng thừa tài liệu văn phòng - 2002, 2003 - Phương hỗ trợ', '', '2020-11-19', NULL, 1, 34, 2, NULL, 23, 6, '2020-11-14 09:35:26+07', '2020-11-27 14:45:38+07', '2020-11-14', 100, NULL, NULL, 2780, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2781, 5, 52, 'sắp xếp hồ sơ và loại bỏ trùng thừa tài liệu văn phòng - 1998, 2001', '', '2020-11-18', NULL, 1, 35, 2, NULL, 23, 4, '2020-11-14 09:36:58+07', '2020-11-19 19:02:26+07', '2020-11-14', 100, NULL, NULL, 2781, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2782, 5, 52, 'sắp xếp hồ sơ và loại bỏ trùng thừa tài liệu văn phòng - 2004', '', '2020-11-16', NULL, 1, 31, 2, NULL, 23, 5, '2020-11-14 09:38:34+07', '2020-11-23 11:10:11+07', '2020-11-14', 100, NULL, NULL, 2782, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2783, 1, 46, 'Dashboard - Biểu đồ cột sai doanh thu quý 4 --> chưa trừ doanh thu trả hàng', '', '2020-11-14', NULL, 5, 41, 2, 58, 40, 2, '2020-11-14 09:43:33+07', '2020-11-16 08:44:54+07', '2020-11-14', 100, NULL, NULL, 2783, 1, 2, false, '2020-11-16 08:44:54+07');
INSERT INTO public.issues VALUES (2784, 1, 46, 'Dashboard - chỉnh giao diện', '- Mốc thời gian thống nhất 1 kiểu và nằm trong nền trắng (vd:1tr)
- Khi chọn ít ngày kích thước cột quá to --> cần làm tương đương với kích thước cột của nhiều ngày', '2020-11-19', NULL, 5, 39, 2, 60, 40, 6, '2020-11-14 09:50:48+07', '2020-11-20 09:31:32+07', '2020-11-19', 100, NULL, NULL, 2784, 1, 2, false, '2020-11-20 09:31:32+07');
INSERT INTO public.issues VALUES (2785, 2, 42, 'API tự động sinh mẫu report tổng hợp cho cấp trên khi cấp dưới tạo report', '', '2020-11-21', NULL, 5, 38, 2, 61, 19, 6, '2020-11-14 09:56:51+07', '2020-12-16 15:37:49+07', '2020-11-16', 100, NULL, NULL, 2785, 1, 2, false, '2020-12-16 15:37:49+07');
INSERT INTO public.issues VALUES (2786, 1, 46, 'Dashboard - Biểu đồ cột sai doanh thu năm nay --> chưa trừ doanh thu trả hàng', '', '2020-11-14', NULL, 5, 41, 2, 58, 40, 2, '2020-11-14 09:57:32+07', '2020-11-16 08:44:54+07', '2020-11-14', 100, NULL, NULL, 2786, 1, 2, false, '2020-11-16 08:44:54+07');
INSERT INTO public.issues VALUES (2787, 1, 46, 'Dashboard - Biểu đồ tròn sai số liệu tổng doanh thu khi kết quả bằng 0', '', '2020-11-14', NULL, 5, 39, 2, 58, 40, 2, '2020-11-14 10:05:57+07', '2020-11-16 08:44:54+07', '2020-11-14', 100, NULL, NULL, 2787, 1, 2, false, '2020-11-16 08:44:54+07');
INSERT INTO public.issues VALUES (2788, 2, 42, 'API update form nhập liệu', '', '2020-11-14', NULL, 5, 38, 2, 61, 19, 6, '2020-11-14 10:09:18+07', '2020-12-16 15:37:48+07', '2020-11-14', 100, NULL, 2667, 2667, 4, 5, false, '2020-12-16 15:37:48+07');
INSERT INTO public.issues VALUES (2789, 1, 46, 'Dashboard - sai số liệu top sản phẩm bán  chạy', '- Khi chọn thời gian có doanh thu --> kết quả trả về không thhay đổi', '2020-11-20', NULL, 5, 41, 2, 60, 40, 5, '2020-11-14 10:20:07+07', '2020-11-23 09:57:15+07', '2020-11-20', 100, NULL, NULL, 2789, 1, 2, false, '2020-11-23 09:57:15+07');
INSERT INTO public.issues VALUES (2791, 1, 46, 'Chi tiết đơn hàng - Sai số liệu thành tiền của sản phẩm đã giảm giá', '', '2020-11-20', NULL, 5, 8, 2, 60, 40, 4, '2020-11-14 11:18:58+07', '2020-11-20 09:31:49+07', '2020-11-20', 100, NULL, NULL, 2791, 1, 2, false, '2020-11-20 09:31:49+07');
INSERT INTO public.issues VALUES (2792, 5, 57, 'Nhập Liệu', '', '2020-11-16', NULL, 1, 44, 2, NULL, 33, 1, '2020-11-14 11:34:55+07', '2020-11-17 08:21:38+07', '2020-11-14', 100, NULL, 2770, 2770, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2793, 1, 46, 'Mobile - Tạo đơn hàng - chỉnh sửa giao diện', '', '2020-11-16', NULL, 5, 10, 2, 60, 40, 5, '2020-11-14 14:11:18+07', '2020-11-20 08:31:00+07', '2020-11-16', 100, NULL, NULL, 2793, 1, 2, false, '2020-11-20 08:31:00+07');
INSERT INTO public.issues VALUES (2794, 5, 57, '14 QHCT khu TTHC xã Tân Lập', 'Xử lí bản đồ và nhập liệu', '2020-11-16', NULL, 1, 32, 2, NULL, 33, 2, '2020-11-14 14:15:26+07', '2020-11-17 08:03:15+07', '2020-11-14', 100, NULL, NULL, 2794, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2795, 5, 57, 'Nhập Liệu', '', '2020-11-17', NULL, 1, 29, 2, NULL, 33, 1, '2020-11-14 16:21:31+07', '2020-11-18 15:08:03+07', '2020-11-16', 100, NULL, 2772, 2772, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2796, 5, 57, '13 QHCT khu Trung tâm xã Tân Hưng', 'Xử lý bản đồ', '2020-11-18', NULL, 1, 33, 2, NULL, 33, 2, '2020-11-16 08:13:57+07', '2020-11-20 15:19:07+07', '2020-11-16', 100, NULL, NULL, 2796, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2797, 5, 57, '15 QHCT khu dân cư Tân Lập', 'Xử lý bản đồ', '2020-11-18', NULL, 1, 33, 2, NULL, 33, 3, '2020-11-16 08:14:43+07', '2020-11-18 13:16:42+07', '2020-11-16', 100, NULL, NULL, 2797, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2798, 5, 57, '16 QHCT 1/500 khu dân cư ấp IX,xã Tân Lập, huyện Đồng Phú, tỉnh Bình Phước', 'Xử lý bản đồ', '2020-11-18', NULL, 1, 33, 2, NULL, 33, 2, '2020-11-16 08:15:13+07', '2020-11-18 17:06:40+07', '2020-11-16', 100, NULL, NULL, 2798, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2799, 4, 19, 'Đôn đốc thủ tục thanh toán phần mềm Đấu giá - Trung tâm đấu giá tài sản Bình Định (Sở Tư Pháp)', '- Thu hồi biên bản nghiệm thu
- Thu hồi công nợ', '2020-11-20', NULL, 1, NULL, 2, NULL, 21, 0, '2020-11-16 08:21:32+07', '2020-11-16 08:21:32+07', '2020-11-16', 0, NULL, NULL, 2799, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2800, 4, 19, 'Thanh toán - Ditagis', '- Theo dõi, thu hồi các thủ tục (hợp đồng, biên bản nghiệm thu, xuất hóa đơn đã chuyển vào)
- Thu hồi công nợ các hợp đồng đã nghiệm thu, các khoản tạm ứng hợp đồng mới', '2020-11-20', NULL, 1, 22, 2, NULL, 21, 0, '2020-11-16 08:24:16+07', '2020-11-16 08:24:16+07', '2020-11-16', 0, NULL, NULL, 2800, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2801, 4, 32, 'Thiết kế brochure Phần mềm quản lý kho (GDT-WAD)', '', '2020-11-18', NULL, 3, 14, 2, NULL, 21, 2, '2020-11-16 08:26:14+07', '2020-11-21 09:37:40+07', '2020-11-16', 100, NULL, NULL, 2801, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2802, 2, 46, 'Mobile - Sửa api bao cáo bán hàng tab thời gian.', '', '2020-11-17', NULL, 5, 10, 2, 60, 10, 3, '2020-11-16 08:26:52+07', '2020-11-20 08:31:00+07', '2020-11-17', 100, NULL, NULL, 2802, 1, 2, false, '2020-11-20 08:31:00+07');
INSERT INTO public.issues VALUES (2803, 2, 46, 'Mobile - Trong báo cáo bán hàng, từ doanh thu theo điểm -> doanh thu của từng đơn hàng trong mỗi điểm -> doanh thu chi tiết của từng mỗi đơn hàng.', '', '2020-11-17', NULL, 5, 10, 2, 60, 10, 3, '2020-11-16 08:30:45+07', '2020-11-20 08:31:01+07', '2020-11-17', 100, NULL, NULL, 2803, 1, 2, false, '2020-11-20 08:31:01+07');
INSERT INTO public.issues VALUES (2804, 4, 26, 'Update tình hình gói thầu Sở TNMT Quảng Nam', '- Theo dõi tình trạng của gói thầu Quan trắc môi trường - Quảng Nam (TBMT: 20201051837)', '2020-11-21', NULL, 1, 22, 2, NULL, 21, 0, '2020-11-16 08:30:47+07', '2020-11-16 08:30:47+07', '2020-11-16', 0, NULL, NULL, 2804, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2805, 2, 46, 'Mobile - Tạo báo cáo lợi nhuận theo mỗi điểm kinh doanh.', '', '2020-11-18', NULL, 5, 10, 2, 60, 10, 3, '2020-11-16 08:31:24+07', '2020-11-20 08:31:01+07', '2020-11-18', 100, NULL, NULL, 2805, 1, 2, false, '2020-11-20 08:31:01+07');
INSERT INTO public.issues VALUES (2806, 2, 46, 'Mobile - Báo cáo lợi nhuận -> Tạo trang chi tiết lợi nhuận của mỗi đơn hàng trong từng điểm.', '', '2020-11-18', NULL, 5, 10, 2, 60, 10, 3, '2020-11-16 08:32:28+07', '2020-11-20 08:31:01+07', '2020-11-18', 100, NULL, NULL, 2806, 1, 2, false, '2020-11-20 08:31:01+07');
INSERT INTO public.issues VALUES (2807, 2, 46, 'Mobile - Tạo báo cáo trả hàng.', '', '2020-11-19', NULL, 5, 10, 2, 60, 10, 3, '2020-11-16 08:32:50+07', '2020-11-20 08:31:01+07', '2020-11-19', 100, NULL, NULL, 2807, 1, 2, false, '2020-11-20 08:31:01+07');
INSERT INTO public.issues VALUES (2808, 4, 19, 'Xây dựng Định mức chi công tác + Quy chế lương thưởng 2021', '- Xây dựng trình HĐTV định mức chi công tác
- Xây dựng quy chế lương thưởng 2021 
- Xây dựng tiêu chuẩn đánh giá nhân sự - hệ số năng suất xét lương thưởng', '2020-11-20', NULL, 1, 21, 2, NULL, 21, 0, '2020-11-16 08:35:14+07', '2020-11-16 08:35:14+07', '2020-11-16', 0, NULL, NULL, 2808, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2809, 2, 50, 'Team Nghĩa', 'DỰ ÁN: **QUẢN LÝ BÁN HÀNG**

TIẾN ĐỘ: **62%**

| Sprint | CHỨC NĂNG | SỐ ĐIỂM | NHÂN SỰ |
| --- | --- | --- | --- |
| 8, 9 | Khách hàng, Nhà cung cấp, Khuyến mãi, Xuất hàng nhiều đơn, Giảm giá | 133 | **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, TIẾN ĐẶNG, DUNG(Mobile)** |
| 10, 11 | Thiết lập mẫu in, Báo cáo | 0 | **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, DUNG(Mobile)** |
| 12, 13 | Công nợ, Quy đổi đơn vị |   |  |

BẢNG KẾ HOẠCH & TIẾN ĐỘ CHI TIẾT: [Click để xem](https://docs.google.com/spreadsheets/d/163Bdm2TFshtJcvoAPlUFv9-9Lf2UtNocnCgmB4cP2Ts/edit#gid=1843496086)

* * *', '2020-11-24', NULL, 3, 5, 2, 43, 5, 10, '2020-11-16 11:25:41+07', '2020-11-25 16:33:07+07', '2020-11-24', 100, NULL, NULL, 2809, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2810, 5, 57, 'Nhập liệu', 'Không xóa dữ liệu ngoài ranh ! xác định phần ngoài ranh ==>> Ghi chú
', '2020-11-17', NULL, 1, 24, 2, NULL, 33, 1, '2020-11-16 14:21:02+07', '2020-11-18 08:10:48+07', '2020-11-16', 100, NULL, 2774, 2774, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2811, 2, 42, 'Tổng quan công việc trong dự án ( File excel đính kèm)', 'Chi tiết công việc được thể hiện trong redmine.
https://docs.google.com/spreadsheets/d/14C78psfIENiPCV5JqcOl-M6OnELMVJl95gnTJSQQB0s/edit?usp=sharing', NULL, NULL, 5, 19, 2, 75, 19, 6, '2020-11-16 14:21:42+07', '2021-02-18 11:27:51+07', '2020-11-16', 100, NULL, NULL, 2811, 1, 2, false, '2021-02-18 11:27:51+07');
INSERT INTO public.issues VALUES (2812, 2, 42, 'Quản lý công việc báo cáo', '', '2020-12-19', NULL, 5, 12, 2, 71, 19, 10, '2020-11-16 14:44:36+07', '2020-12-16 15:44:09+07', '2020-12-07', 80, NULL, NULL, 2812, 1, 2, false, '2020-12-16 15:44:09+07');
INSERT INTO public.issues VALUES (2813, 2, 42, 'Giao diện form nhập liệu', '', '2020-11-21', NULL, 5, 13, 2, 61, 19, 5, '2020-11-16 14:47:36+07', '2020-12-16 15:37:49+07', '2020-11-16', 100, NULL, 2667, 2667, 6, 7, false, '2020-12-16 15:37:49+07');
INSERT INTO public.issues VALUES (2814, 2, 46, 'Mobile - Tạo đơn hàng - Sửa api, thêm chi tiết hàng khuyến mãi.', '', '2020-11-24', NULL, 5, 10, 2, 62, 10, 7, '2020-11-16 15:27:38+07', '2020-11-26 13:34:44+07', '2020-11-23', 100, NULL, NULL, 2814, 1, 2, false, '2020-11-26 13:34:44+07');
INSERT INTO public.issues VALUES (2815, 2, 48, 'THÔNG BÁO', '', '2020-12-02', NULL, 3, 15, 2, NULL, 16, 18, '2020-11-16 16:29:59+07', '2020-12-02 16:27:32+07', '2020-11-16', 100, NULL, 2412, 2412, 130, 147, false, NULL);
INSERT INTO public.issues VALUES (2819, 5, 57, 'Nhập Liệu', '', '2020-11-18', NULL, 1, 29, 2, NULL, 33, 1, '2020-11-16 17:06:28+07', '2020-11-20 15:19:07+07', '2020-11-16', 100, NULL, 2796, 2796, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2820, 5, 57, 'Nhập Liệu', '', '2020-11-18', NULL, 1, 44, 2, NULL, 33, 1, '2020-11-16 17:07:10+07', '2020-11-18 17:06:40+07', '2020-11-16', 100, NULL, 2798, 2798, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2821, 5, 57, 'Nhập Liệu', '', '2020-11-18', NULL, 1, 32, 2, NULL, 33, 2, '2020-11-16 17:08:12+07', '2020-11-18 13:16:42+07', '2020-11-16', 100, NULL, 2797, 2797, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2822, 5, 57, '17 QHCT khu Trung tâm xã Tân Hòa', 'Xử lý bản đồ', '2020-11-20', NULL, 1, 33, 2, NULL, 33, 2, '2020-11-17 08:23:18+07', '2020-11-20 15:18:23+07', '2020-11-18', 100, NULL, NULL, 2822, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2823, 5, 57, '18 QHCT khu TTHC xã Đồng Tiến', 'Xử lý bản đồ', '2020-11-20', NULL, 1, 33, 2, NULL, 33, 2, '2020-11-17 08:23:50+07', '2020-11-20 15:18:35+07', '2020-11-18', 100, NULL, NULL, 2823, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2824, 5, 57, '19 QHCT Hạ tầng khu dân cư Đồng Tiến', 'Xử lý bản đồ', '2020-11-20', NULL, 1, 33, 2, NULL, 33, 2, '2020-11-17 08:24:14+07', '2020-11-19 14:02:11+07', '2020-11-18', 100, NULL, NULL, 2824, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2825, 5, 57, '20 QHCT khu dân cư Đồng Tiến', 'Xử lý bản đồ', '2020-11-19', NULL, 1, 33, 2, NULL, 33, 2, '2020-11-17 08:24:39+07', '2020-11-19 14:02:22+07', '2020-11-18', 100, NULL, NULL, 2825, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2826, 5, 57, '21 QHCT khu TTHC xã Tân Tiến', 'Xử lý bản đồ', '2020-11-20', NULL, 1, 33, 2, NULL, 33, 2, '2020-11-17 08:25:24+07', '2020-11-23 08:14:32+07', '2020-11-19', 100, NULL, NULL, 2826, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2827, 5, 57, '22 QHCT Khu dân cư tập trung kết hợp một số cơ quan nhà nước, trường học xã Tân Tiến', 'Xử lý bản đồ', '2020-11-21', NULL, 1, 33, 2, NULL, 33, 3, '2020-11-17 08:25:48+07', '2020-11-23 08:14:26+07', '2020-11-18', 100, NULL, NULL, 2827, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2828, 5, 57, '23 QHCT Khu dân cư chợ Tân Tiến', 'Xử lý bản đồ', '2020-11-20', NULL, 1, 33, 2, NULL, 33, 2, '2020-11-17 08:26:14+07', '2020-11-20 15:18:59+07', '2020-11-19', 100, NULL, NULL, 2828, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2829, 2, 46, 'Sửa giao diện thiết lập mẫu in', '', '2020-11-17', NULL, 5, 39, 2, 60, 39, 1, '2020-11-17 10:24:30+07', '2020-11-20 08:31:01+07', '2020-11-17', 100, NULL, NULL, 2829, 1, 2, false, '2020-11-20 08:31:01+07');
INSERT INTO public.issues VALUES (2830, 2, 42, 'Chỉnh sửa mẫu form nhập liệu', '', '2020-11-21', NULL, 5, 13, 2, 63, 19, 5, '2020-11-17 15:04:43+07', '2020-12-16 15:38:32+07', '2020-11-16', 100, NULL, NULL, 2830, 1, 2, false, '2020-12-16 15:38:32+07');
INSERT INTO public.issues VALUES (2831, 2, 42, 'Import mẫu excel sang mẫu form nhập liêu', '', '2020-12-05', NULL, 5, 19, 2, 64, 19, 7, '2020-11-17 15:08:27+07', '2020-12-16 15:43:40+07', '2020-11-30', 100, NULL, NULL, 2831, 1, 2, false, '2020-12-16 15:43:40+07');
INSERT INTO public.issues VALUES (2832, 3, 36, 'Chăm sóc khách hàng và chào sản phẩm VTS', '- Mỗi ngày thực hiện 05 cuộc điện thoại cho 05 đơn vị:
+ Chọn lọc các khách hàng đến kỳ gia hạn chữ ký số, chứng thư số.... 
+ Hỏi thăm tình hình sử dụng hệ thống
+ Chào các sản phẩm của Viettel
+ Báo cáo danh sách các đơn vị đã liên hệ', '2020-11-21', NULL, 1, 9, 2, NULL, 21, 4, '2020-11-17 16:31:19+07', '2020-11-21 16:25:31+07', '2020-11-17', 100, NULL, NULL, 2832, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2833, 5, 52, 'sắp xếp và loại bỏ trùng thừa tài liệu văn phòng năm 2000 - Quyên hỗ trợ', '', '2020-11-18', NULL, 1, 45, 2, NULL, 28, 1, '2020-11-17 18:50:28+07', '2020-11-19 18:58:57+07', '2020-11-17', 100, NULL, NULL, 2833, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2834, 5, 52, 'phân chia tài liệu nội vụ theo hướng dẫn năm 2011', '', '2020-11-17', NULL, 1, 31, 2, NULL, 28, 0, '2020-11-17 19:00:07+07', '2020-11-17 19:00:07+07', '2020-11-17', 100, NULL, NULL, 2834, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2835, 5, 57, 'Nhập Liệu', '', '2020-11-18', NULL, 1, 23, 2, NULL, 33, 1, '2020-11-18 08:06:07+07', '2020-11-18 15:08:18+07', '2020-11-16', 100, NULL, 2773, 2773, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2836, 5, 57, 'Nhập Liệu', '', '2020-11-18', NULL, 1, 43, 2, NULL, 33, 1, '2020-11-18 08:07:17+07', '2020-11-18 15:08:48+07', '2020-11-16', 100, NULL, 2775, 2775, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2837, 5, 57, 'Nhập Liệu', '', '2020-11-20', NULL, 1, 24, 2, NULL, 33, 1, '2020-11-18 08:09:55+07', '2020-11-20 15:18:23+07', '2020-11-18', 100, NULL, 2822, 2822, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2838, 5, 57, 'Nhập Liệu', '', '2020-11-20', NULL, 1, 23, 2, NULL, 33, 1, '2020-11-18 09:08:25+07', '2020-11-19 14:02:11+07', '2020-11-18', 100, NULL, 2824, 2824, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2839, 5, 57, 'Nhập Liệu', '', '2020-11-21', NULL, 1, 32, 2, NULL, 33, 2, '2020-11-18 10:32:20+07', '2020-11-23 08:14:26+07', '2020-11-18', 100, NULL, 2827, 2827, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2840, 1, 46, 'Thống nhất tất cả báo cáo kích thước trang là 100%', '', '2020-11-18', NULL, 5, 37, 2, 60, 40, 2, '2020-11-18 13:52:45+07', '2020-11-20 09:33:54+07', '2020-11-18', 100, NULL, NULL, 2840, 1, 2, false, '2020-11-20 09:33:54+07');
INSERT INTO public.issues VALUES (2843, 2, 46, 'Bán hàng - Lợi nhuận theo thời gian', '', '2020-11-23', NULL, 5, 41, 2, 62, 40, 14, '2020-11-18 13:54:35+07', '2020-11-28 17:09:30+07', '2020-11-23', 100, NULL, NULL, 2843, 1, 2, false, '2020-11-28 17:09:30+07');
INSERT INTO public.issues VALUES (2844, 2, 46, 'Bán hàng - Lợi nhuận theo đơn hàng', '', '2020-11-23', NULL, 5, 41, 2, 62, 40, 11, '2020-11-18 13:55:00+07', '2020-11-28 17:09:30+07', '2020-11-23', 100, NULL, NULL, 2844, 1, 2, false, '2020-11-28 17:09:30+07');
INSERT INTO public.issues VALUES (2845, 2, 46, 'Bán hàng - Trả hàng', '', '2020-11-23', NULL, 5, 41, 2, 62, 40, 12, '2020-11-18 13:55:14+07', '2020-11-28 17:09:31+07', '2020-11-23', 100, NULL, NULL, 2845, 1, 2, false, '2020-11-28 17:09:31+07');
INSERT INTO public.issues VALUES (2846, 2, 46, 'Hàng hóa - số lượng tồn kho', '', '2020-11-24', NULL, 5, 40, 2, 62, 40, 7, '2020-11-18 14:02:16+07', '2020-11-26 13:34:44+07', '2020-11-24', 100, NULL, NULL, 2846, 1, 2, false, '2020-11-26 13:34:44+07');
INSERT INTO public.issues VALUES (2847, 2, 46, 'Hàng hóa - Sản lượng bán tổng hợp', '', '2020-12-02', NULL, 5, 40, 2, 65, 40, 9, '2020-11-18 14:02:39+07', '2020-12-05 18:23:04+07', '2020-12-02', 100, NULL, NULL, 2847, 1, 2, false, '2020-12-05 18:23:04+07');
INSERT INTO public.issues VALUES (2848, 2, 46, 'Hàng hóa - Số lượng nhập xuất tồn', '', '2020-11-24', NULL, 5, 40, 2, 62, 40, 5, '2020-11-18 14:03:05+07', '2020-11-28 09:08:09+07', '2020-11-24', 100, NULL, NULL, 2848, 1, 2, false, '2020-11-28 09:08:09+07');
INSERT INTO public.issues VALUES (2849, 2, 46, 'Hàng hóa - Số lượng nhập xuất tồn chi tiết', '', '2020-12-02', NULL, 5, 40, 2, 65, 40, 9, '2020-11-18 14:03:28+07', '2020-12-05 18:23:04+07', '2020-12-02', 100, NULL, NULL, 2849, 1, 2, false, '2020-12-05 18:23:04+07');
INSERT INTO public.issues VALUES (2850, 2, 46, 'Appi BC hiệu quả khuyến mãi', '', '2021-01-04', NULL, 5, 41, 2, 81, 40, 24, '2020-11-18 14:08:53+07', '2021-01-12 08:26:44+07', '2021-01-04', 100, NULL, NULL, 2850, 1, 2, false, '2021-01-12 08:26:44+07');
INSERT INTO public.issues VALUES (2851, 2, 46, 'Api BC ngân sách khuyến mãi', '', '2021-01-04', NULL, 5, 41, 2, 81, 40, 25, '2020-11-18 14:09:09+07', '2021-01-12 08:26:44+07', '2021-01-04', 100, NULL, NULL, 2851, 1, 2, false, '2021-01-12 08:26:44+07');
INSERT INTO public.issues VALUES (2852, 2, 46, 'Mua hàng - Bảng kê hàng hóa mua vào', '', '2020-11-26', NULL, 5, 40, 2, 62, 40, 9, '2020-11-18 14:09:39+07', '2020-11-26 13:34:44+07', '2020-11-26', 100, NULL, NULL, 2852, 1, 2, false, '2020-11-26 13:34:44+07');
INSERT INTO public.issues VALUES (2853, 2, 46, 'Mua hàng - Mua hàng chi tiết', '', '2020-11-26', NULL, 5, 40, 2, 62, 40, 9, '2020-11-18 14:09:56+07', '2020-11-26 13:34:44+07', '2020-11-26', 100, NULL, NULL, 2853, 1, 2, false, '2020-11-26 13:34:44+07');
INSERT INTO public.issues VALUES (2854, 2, 46, 'Nhân viên - Sản lượng bán hàng theo NVKD', '', '2020-11-27', NULL, 5, 40, 2, 62, 40, 6, '2020-11-18 14:10:23+07', '2020-11-26 13:34:44+07', '2020-11-27', 100, NULL, NULL, 2854, 1, 2, false, '2020-11-26 13:34:44+07');
INSERT INTO public.issues VALUES (2856, 2, 46, 'Khách hàng - Sản lượng bán hàng theo khách hàng', '', '2020-11-27', NULL, 5, 40, 2, 62, 40, 5, '2020-11-18 14:11:18+07', '2020-11-28 08:51:00+07', '2020-11-27', 100, NULL, NULL, 2856, 1, 2, false, '2020-11-28 08:51:00+07');
INSERT INTO public.issues VALUES (2861, 5, 57, 'Nhập Liệu', '', '2020-11-20', NULL, 1, 43, 2, NULL, 33, 1, '2020-11-18 15:10:27+07', '2020-11-20 15:18:35+07', '2020-11-18', 100, NULL, 2823, 2823, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2862, 5, 57, 'Nhập Liệu', '', '2020-11-20', NULL, 1, 44, 2, NULL, 33, 1, '2020-11-18 17:06:19+07', '2020-11-23 08:14:32+07', '2020-11-19', 100, NULL, 2826, 2826, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2863, 5, 57, 'Nhập Liệu', '', '2020-11-19', NULL, 1, 33, 2, NULL, 33, 1, '2020-11-18 17:07:10+07', '2020-11-19 14:02:22+07', '2020-11-18', 100, NULL, 2825, 2825, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2864, 5, 57, 'Nhập Liệu', '', '2020-11-20', NULL, 1, 23, 2, NULL, 33, 1, '2020-11-19 14:01:58+07', '2020-11-20 15:18:59+07', '2020-11-19', 100, NULL, 2828, 2828, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (2865, 2, 46, 'Hóa đơn bán hàng - Sai thông tin thành tiền đối với sản phẩm khuyến mãi', '', '2020-11-24', NULL, 5, 8, 2, 62, 40, 8, '2020-11-19 14:05:13+07', '2020-11-28 08:51:00+07', '2020-11-24', 100, NULL, NULL, 2865, 1, 2, false, '2020-11-28 08:51:00+07');
INSERT INTO public.issues VALUES (2866, 2, 46, 'Tạo đơn hàng - thể hiện đơn vị tính của số lượng & số lượng khuyến mãi cho phiếu thanh toán', 'ví dụ: số lượng: 10 thùng
số lượng khuyến mãi: 20 chai', '2020-11-24', NULL, 5, 8, 2, 62, 40, 8, '2020-11-19 14:17:02+07', '2020-11-28 08:51:00+07', '2020-11-24', 100, NULL, NULL, 2866, 1, 2, false, '2020-11-28 08:51:00+07');
INSERT INTO public.issues VALUES (2867, 2, 46, 'chi tiết đơn hàng - thể hiện chi tiết tổng số lượng trong đơn hàng', 'ví dụ: 
tổng số lượng 10/30 hoặc:
số lượng mua: 10 thùng
số lượng khuyến mãi:30 chai', '2020-11-24', NULL, 5, 8, 2, 62, 40, 9, '2020-11-19 14:35:32+07', '2020-11-28 08:51:00+07', '2020-11-24', 100, NULL, NULL, 2867, 1, 2, false, '2020-11-28 08:51:00+07');
INSERT INTO public.issues VALUES (2868, 1, 46, 'Xuất hàng - xuất hàng không thành công', '', '2020-11-19', NULL, 5, 41, 2, 60, 40, 3, '2020-11-19 14:41:17+07', '2020-11-20 09:23:12+07', '2020-11-19', 100, NULL, NULL, 2868, 1, 2, false, '2020-11-20 09:23:12+07');
INSERT INTO public.issues VALUES (2869, 1, 46, 'Trả hàng - Trả hàng không thành công', '', '2020-11-23', NULL, 5, 8, 2, 62, 40, 7, '2020-11-19 15:19:48+07', '2020-11-26 13:34:44+07', '2020-11-23', 100, NULL, NULL, 2869, 1, 2, false, '2020-11-26 13:34:44+07');
INSERT INTO public.issues VALUES (2871, 1, 46, 'Tạo đơn hàng - Doanh thu hôm nay chưa trừ đơn đã trả', '', '2020-11-20', NULL, 5, 39, 2, 60, 40, 3, '2020-11-19 15:49:17+07', '2020-11-23 09:57:16+07', '2020-11-20', 100, NULL, NULL, 2871, 1, 2, false, '2020-11-23 09:57:16+07');
INSERT INTO public.issues VALUES (2872, 1, 46, 'Doanh thu theo thời gian - Chưa xem được báo cáo toàn thời gian', '', '2020-11-20', NULL, 5, 5, 2, 60, 40, 5, '2020-11-19 15:51:18+07', '2020-11-23 09:57:16+07', '2020-11-20', 100, NULL, NULL, 2872, 1, 2, false, '2020-11-23 09:57:16+07');
INSERT INTO public.issues VALUES (2873, 1, 46, 'Doanh thu theo đơn hàng - chưa xem được báo cáo toàn thời gian', '', '2020-11-20', NULL, 5, 5, 2, 60, 40, 5, '2020-11-19 16:25:40+07', '2020-11-23 09:57:16+07', '2020-11-20', 100, NULL, NULL, 2873, 1, 2, false, '2020-11-23 09:57:16+07');
INSERT INTO public.issues VALUES (2874, 2, 46, 'Mobile - Tạo báo cáo nhập xuất tồn chi tiết.', '', '2020-11-20', NULL, 5, 10, 2, 60, 10, 3, '2020-11-19 16:58:50+07', '2020-11-25 15:58:11+07', '2020-11-20', 100, NULL, NULL, 2874, 1, 2, false, '2020-11-21 23:52:21+07');
INSERT INTO public.issues VALUES (2875, 2, 46, 'Mobile - Sửa component thời gian phù hợp vs android.', '', '2020-11-23', NULL, 5, 10, 2, 62, 10, 5, '2020-11-19 17:06:50+07', '2020-11-26 13:34:44+07', '2020-11-23', 100, NULL, NULL, 2875, 1, 2, false, '2020-11-26 13:34:44+07');
INSERT INTO public.issues VALUES (2876, 5, 52, 'phân chia tài liệu phòng nội vụ theo hướng dẫn năm 2012', '', '2020-11-19', NULL, 1, 31, 2, NULL, 28, 0, '2020-11-19 19:00:37+07', '2020-11-19 19:00:37+07', '2020-11-19', 100, NULL, NULL, 2876, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2877, 5, 52, 'phân chia và sắp xếp tài liệu phòng nội vụ năm 2010', '', '2020-11-19', NULL, 1, 28, 2, NULL, 28, 0, '2020-11-19 19:02:00+07', '2020-11-19 19:02:00+07', '2020-11-18', 100, NULL, NULL, 2877, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2878, 2, 46, 'api báo cáo sản lượng hàng hóa', '', '2020-11-23', NULL, 5, 41, 2, 62, 5, 6, '2020-11-20 09:09:07+07', '2020-11-28 08:51:01+07', '2020-11-23', 100, NULL, NULL, 2878, 1, 2, false, '2020-11-28 08:51:01+07');
INSERT INTO public.issues VALUES (2879, 2, 46, 'Xuất hàng cho hiển thị đơn vị tính', 'màn hình thêm mới

màn hình chi tiết', '2020-11-20', NULL, 5, 39, 2, 60, 5, 3, '2020-11-20 09:13:54+07', '2020-11-23 09:57:16+07', '2020-11-20', 100, NULL, NULL, 2879, 1, 2, false, '2020-11-23 09:57:16+07');
INSERT INTO public.issues VALUES (2880, 2, 46, 'Bán hàng - Doanh thu theo thời gian', '', '2020-11-23', NULL, 5, 40, 2, 62, 5, 12, '2020-11-20 09:39:06+07', '2020-11-26 13:34:44+07', '2020-11-23', 100, NULL, NULL, 2880, 1, 2, false, '2020-11-26 13:34:44+07');
INSERT INTO public.issues VALUES (2881, 2, 46, 'Bán hàng - Doanh thu theo đơn hàng', '', '2020-11-23', NULL, 5, 40, 2, 62, 5, 10, '2020-11-20 09:39:26+07', '2020-11-26 13:34:44+07', '2020-11-23', 100, NULL, NULL, 2881, 1, 2, false, '2020-11-26 13:34:44+07');
INSERT INTO public.issues VALUES (2882, 2, 46, 'Mobile - Load báo cáo theo mối quan tâm.', '', '2020-11-20', NULL, 5, 10, 2, 60, 10, 3, '2020-11-20 11:02:36+07', '2020-11-23 09:57:16+07', '2020-11-20', 100, NULL, NULL, 2882, 1, 2, false, '2020-11-23 09:57:16+07');
INSERT INTO public.issues VALUES (2883, 2, 46, 'Mobile - Sửa api báo cáo bán hàng theo api web.', '1. Api doanh thu theo đơn hàng.
2. Api doanh thu theo thời gian.
3. Api lợi nhuận theo đơn hàng.
4. Api lợi nhuận theo thời gian.
5. Api trả hàng.', '2020-11-21', NULL, 5, 10, 2, 60, 10, 4, '2020-11-20 11:26:36+07', '2020-11-23 09:57:16+07', '2020-11-20', 100, NULL, NULL, 2883, 1, 2, false, '2020-11-23 09:57:16+07');
INSERT INTO public.issues VALUES (2884, 2, 46, 'Mobile - Sửa api báo cáo hàng hóa theo api web.', '', '2020-11-23', NULL, 5, 10, 2, 62, 10, 4, '2020-11-20 11:28:48+07', '2020-11-26 13:34:45+07', '2020-11-23', 100, NULL, NULL, 2884, 1, 2, false, '2020-11-26 13:34:45+07');
INSERT INTO public.issues VALUES (2885, 2, 46, 'Mobile - Báo cáo khách hàng - Sản lượng bán hàng theo khách hàng.', '', '2020-11-27', NULL, 5, 10, 2, 62, 10, 5, '2020-11-20 11:30:37+07', '2020-11-26 13:34:45+07', '2020-11-27', 100, NULL, NULL, 2885, 1, 2, false, '2020-11-26 13:34:45+07');
INSERT INTO public.issues VALUES (2886, 2, 46, 'Mobile - Báo cáo khuyến mãi - Phân tích hiệu quả khuyến mãi.', '', '2021-01-04', NULL, 5, 10, 2, 82, 10, 21, '2020-11-20 04:32:06+07', '2021-01-08 08:22:49+07', '2021-01-04', 0, NULL, NULL, 2886, 1, 2, false, '2021-01-08 08:22:49+07');
INSERT INTO public.issues VALUES (2887, 2, 46, 'Mobile - Báo cáo khuyến mãi - Theo dõi ngân sách khuyến mãi.', '', '2021-01-09', NULL, 5, 10, 2, 82, 10, 23, '2020-11-20 04:33:04+07', '2021-01-12 08:26:10+07', '2021-01-09', 100, NULL, NULL, 2887, 1, 2, false, '2021-01-12 08:26:10+07');
INSERT INTO public.issues VALUES (2888, 2, 46, 'Mobile - Báo cáo mua hàng - Bảng kê hàng hóa mua vào.', '', '2020-11-26', NULL, 5, 10, 2, 62, 10, 4, '2020-11-20 04:34:33+07', '2020-11-26 13:34:45+07', '2020-11-26', 100, NULL, NULL, 2888, 1, 2, false, '2020-11-26 13:34:45+07');
INSERT INTO public.issues VALUES (2889, 2, 46, 'Mobile - Báo cáo mua hàng - Mua hàng chi tiết.', '', '2020-11-26', NULL, 5, 10, 2, 62, 10, 4, '2020-11-20 04:34:58+07', '2020-11-26 13:34:45+07', '2020-11-26', 100, NULL, NULL, 2889, 1, 2, false, '2020-11-26 13:34:45+07');
INSERT INTO public.issues VALUES (2892, 2, 46, 'Mobile - Báo cáo nhân viên - Bảng kê các đơn hàng chi tiết theo nhân viên giao hàng.', '', '2020-11-27', NULL, 5, 10, 2, 62, 10, 3, '2020-11-20 11:38:53+07', '2020-11-26 09:56:03+07', '2020-11-27', 0, NULL, NULL, 2892, 1, 2, false, '2020-11-26 09:56:03+07');
INSERT INTO public.issues VALUES (2893, 2, 46, 'Mobile - Báo cáo nhân viên - Sản lượng bán hàng theo NVKD.', '', '2020-11-27', NULL, 5, 10, 2, 62, 10, 6, '2020-11-20 11:39:35+07', '2020-11-26 13:34:45+07', '2020-11-27', 100, NULL, NULL, 2893, 1, 2, false, '2020-11-26 13:34:45+07');
INSERT INTO public.issues VALUES (2894, 3, 36, 'Chào phần mềm Đấu giá tài sản', '- Tìm và liên hệ các đơn vị, trung tâm đấu giá, thẩm định giá, tư vấn
- Giới thiệu phần mềm đấu giá tài sản
- Xin thời gian demo sản phẩm
- Hình thức: Bán hoặc thuê tùy nhu cầu khách hàng.
- Báo cáo danh sách các khách hàng đã liên hệ', '2020-11-30', NULL, 1, 9, 2, NULL, 21, 1, '2020-11-21 08:27:27+07', '2020-11-30 08:45:56+07', '2020-11-21', 100, NULL, NULL, 2894, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2895, 2, 46, 'API lấy thông tin chi tiết đơn hàng khuyến mãi', '', '2020-11-21', NULL, 5, 41, 2, 60, 41, 2, '2020-11-21 08:49:22+07', '2020-11-23 09:57:16+07', '2020-11-21', 100, NULL, NULL, 2895, 1, 2, false, '2020-11-23 09:57:16+07');
INSERT INTO public.issues VALUES (2896, 2, 48, 'Danh sách thông báo', '', '2020-12-02', NULL, 3, 15, 2, NULL, 15, 18, '2020-11-21 09:42:48+07', '2020-12-02 16:27:31+07', '2020-11-16', 100, NULL, 2815, 2412, 131, 146, false, NULL);
INSERT INTO public.issues VALUES (2897, 2, 48, 'Thêm,sửa, xóa thông báo', '', '2020-11-18', NULL, 3, 15, 2, NULL, 15, 5, '2020-11-21 09:43:59+07', '2020-11-21 10:55:42+07', '2020-11-16', 100, NULL, 2896, 2412, 132, 133, false, NULL);
INSERT INTO public.issues VALUES (2898, 2, 48, 'Form thiết lập tăng lương', '', '2020-11-19', NULL, 3, 15, 2, NULL, 15, 5, '2020-11-21 09:44:11+07', '2020-11-21 10:55:42+07', '2020-11-19', 100, NULL, 2896, 2412, 134, 135, false, NULL);
INSERT INTO public.issues VALUES (2899, 2, 48, 'Form thiết lập nghỉ hưu', '', '2020-11-20', NULL, 3, 15, 2, NULL, 15, 5, '2020-11-21 09:44:25+07', '2020-11-21 10:55:42+07', '2020-11-20', 100, NULL, 2896, 2412, 136, 137, false, NULL);
INSERT INTO public.issues VALUES (2900, 2, 48, 'Form gia hạn hợp đồng', '', '2020-11-21', NULL, 3, 15, 2, NULL, 15, 5, '2020-11-21 09:44:44+07', '2020-11-21 10:55:42+07', '2020-11-21', 100, NULL, 2896, 2412, 138, 139, false, NULL);
INSERT INTO public.issues VALUES (2901, 2, 48, 'Danh mục đơn vị', '', '2020-10-20', NULL, 3, 15, 2, NULL, 15, 3, '2020-11-21 09:50:03+07', '2020-11-21 10:29:32+07', '2020-10-20', 100, NULL, 2449, 2412, 17, 18, false, NULL);
INSERT INTO public.issues VALUES (2902, 2, 48, 'Danh mục bậc', '', '2020-10-21', NULL, 3, 15, 2, NULL, 15, 3, '2020-11-21 09:50:30+07', '2020-11-21 10:29:32+07', '2020-10-21', 100, NULL, 2449, 2412, 19, 20, false, NULL);
INSERT INTO public.issues VALUES (2903, 2, 48, 'Danh mục ngạch bậc', '', '2020-10-22', NULL, 3, 15, 2, NULL, 15, 3, '2020-11-21 09:50:50+07', '2020-11-21 10:29:32+07', '2020-10-22', 100, NULL, 2449, 2412, 21, 22, false, NULL);
INSERT INTO public.issues VALUES (2904, 2, 48, 'Danh mục ngạch', '', '2020-10-22', NULL, 3, 15, 2, NULL, 15, 3, '2020-11-21 09:51:50+07', '2020-11-21 10:29:32+07', '2020-10-22', 100, NULL, 2449, 2412, 23, 24, false, NULL);
INSERT INTO public.issues VALUES (2905, 2, 48, 'Danh mục nhóm ngạch', '', '2020-10-23', NULL, 3, 15, 2, NULL, 15, 3, '2020-11-21 09:52:24+07', '2020-11-21 10:29:32+07', '2020-10-23', 100, NULL, 2449, 2412, 25, 26, false, NULL);
INSERT INTO public.issues VALUES (2906, 2, 48, 'Cập nhật ảnh đại diện', '', '2020-10-26', NULL, 3, 15, 2, NULL, 15, 4, '2020-11-21 09:55:08+07', '2020-11-21 10:30:34+07', '2020-10-26', 100, NULL, 2462, 2412, 34, 35, false, NULL);
INSERT INTO public.issues VALUES (2907, 2, 48, 'Danh mục của đơn vị', '', '2020-12-01', NULL, 3, NULL, 2, NULL, 15, 11, '2020-11-21 10:00:56+07', '2020-12-01 17:01:32+07', '2020-10-29', 100, NULL, 2415, 2412, 111, 124, false, NULL);
INSERT INTO public.issues VALUES (2912, 2, 48, 'Danh sách cán bộ', '', '2020-10-30', NULL, 3, 15, 2, NULL, 15, 3, '2020-11-21 10:07:50+07', '2020-11-21 13:59:40+07', '2020-10-29', 100, NULL, 2464, 2412, 89, 90, false, NULL);
INSERT INTO public.issues VALUES (2913, 2, 48, 'Tree phòng ban theo đơn vị', '', '2020-10-29', NULL, 3, 15, 2, NULL, 15, 3, '2020-11-21 10:08:44+07', '2020-11-21 13:59:41+07', '2020-10-29', 100, NULL, 2464, 2412, 91, 92, false, NULL);
INSERT INTO public.issues VALUES (2914, 2, 48, 'Thông tin cơ bản cán bộ', '', '2020-11-02', NULL, 3, 15, 2, NULL, 15, 3, '2020-11-21 10:13:41+07', '2020-11-21 10:47:13+07', '2020-11-01', 100, NULL, 2476, 2412, 44, 45, false, NULL);
INSERT INTO public.issues VALUES (2915, 2, 48, 'Thông tin cá nhân cán bộ', '', '2020-11-03', NULL, 3, 15, 2, NULL, 15, 3, '2020-11-21 10:14:02+07', '2020-11-21 10:47:14+07', '2020-11-03', 100, NULL, 2476, 2412, 46, 47, false, NULL);
INSERT INTO public.issues VALUES (2916, 2, 48, 'Thông tin loại hợp đồng cán bộ', '', '2020-11-05', NULL, 3, 15, 2, NULL, 15, 4, '2020-11-21 10:15:56+07', '2020-11-21 10:47:14+07', '2020-11-04', 100, NULL, 2476, 2412, 48, 49, false, NULL);
INSERT INTO public.issues VALUES (2917, 2, 48, 'Thông tin ngach bậc', '', '2020-11-06', NULL, 3, 15, 2, NULL, 15, 3, '2020-11-21 10:16:35+07', '2020-11-21 10:47:14+07', '2020-11-05', 100, NULL, 2476, 2412, 50, 51, false, NULL);
INSERT INTO public.issues VALUES (2918, 2, 48, 'Thông tin phòng ban', '', '2020-11-07', NULL, 3, 15, 2, NULL, 15, 3, '2020-11-21 10:17:03+07', '2020-11-21 10:47:14+07', '2020-11-07', 100, NULL, 2476, 2412, 52, 53, false, NULL);
INSERT INTO public.issues VALUES (2919, 2, 48, 'Thông tin bồi dưỡng nghiệp vụ', '', '2020-11-09', NULL, 3, 15, 2, NULL, 15, 3, '2020-11-21 10:18:40+07', '2020-11-21 10:47:15+07', '2020-11-09', 100, NULL, 2476, 2412, 54, 55, false, NULL);
INSERT INTO public.issues VALUES (2920, 2, 48, 'Thông tin trình độ chuyên môn', '', '2020-11-09', NULL, 3, 15, 2, NULL, 15, 3, '2020-11-21 10:18:59+07', '2020-11-21 10:47:15+07', '2020-11-09', 100, NULL, 2476, 2412, 56, 57, false, NULL);
INSERT INTO public.issues VALUES (2922, 2, 48, 'Kiêm nhiệm biệt phái', '', '2020-11-27', NULL, 3, 17, 2, NULL, 15, 4, '2020-11-21 10:21:53+07', '2020-11-27 16:57:23+07', '2020-11-27', 100, NULL, 2476, 2412, 58, 61, false, NULL);
INSERT INTO public.issues VALUES (2923, 2, 48, 'Khen thưởng', '', '2020-11-12', NULL, 3, 17, 2, NULL, 15, 2, '2020-11-21 10:22:22+07', '2020-11-21 10:52:22+07', '2020-11-12', 100, NULL, 2476, 2412, 62, 63, false, NULL);
INSERT INTO public.issues VALUES (2924, 2, 48, 'Kỷ luật', '', '2020-11-12', NULL, 3, 17, 2, NULL, 15, 2, '2020-11-21 10:22:38+07', '2020-11-21 10:52:23+07', '2020-11-12', 100, NULL, 2476, 2412, 64, 65, false, NULL);
INSERT INTO public.issues VALUES (2925, 2, 48, 'Bồi dưỡng nghiệp vụ', '', '2020-11-13', NULL, 3, 17, 2, NULL, 15, 2, '2020-11-21 10:23:03+07', '2020-11-21 10:52:23+07', '2020-11-13', 100, NULL, 2476, 2412, 66, 67, false, NULL);
INSERT INTO public.issues VALUES (2926, 2, 48, 'Bồi dưỡng chuyên môn', '', '2020-11-13', NULL, 3, 17, 2, NULL, 15, 2, '2020-11-21 10:23:17+07', '2020-11-21 10:52:23+07', '2020-11-13', 100, NULL, 2476, 2412, 68, 69, false, NULL);
INSERT INTO public.issues VALUES (2927, 2, 48, 'Thân nhân cán bộ', '', '2020-11-14', NULL, 3, 16, 2, NULL, 15, 3, '2020-11-21 10:23:52+07', '2020-11-21 10:52:13+07', '2020-11-14', 100, NULL, 2476, 2412, 70, 71, false, NULL);
INSERT INTO public.issues VALUES (2928, 2, 48, 'Quản lý văn bản', '', '2020-11-21', NULL, 3, 17, 2, NULL, 15, 5, '2020-11-21 10:24:44+07', '2020-11-21 15:44:05+07', '2020-11-16', 100, NULL, 2415, 2412, 125, 126, false, NULL);
INSERT INTO public.issues VALUES (2932, 2, 48, 'Danh mục chức vụ', '', '2020-10-29', NULL, 3, 15, 2, NULL, 15, 4, '2020-11-21 10:41:58+07', '2020-11-21 10:51:46+07', '2020-10-29', 100, NULL, 2907, 2412, 112, 113, false, NULL);
INSERT INTO public.issues VALUES (2933, 2, 48, 'Danh mục phòng ban', '', '2020-10-30', NULL, 3, 15, 2, NULL, 15, 4, '2020-11-21 10:42:16+07', '2020-11-21 10:51:46+07', '2020-10-30', 100, NULL, 2907, 2412, 114, 115, false, NULL);
INSERT INTO public.issues VALUES (2934, 2, 48, 'Danh mục danh hiệu', '', '2020-10-30', NULL, 3, 17, 2, NULL, 15, 4, '2020-11-21 10:43:08+07', '2020-11-21 10:51:47+07', '2020-10-30', 100, NULL, 2907, 2412, 116, 117, false, NULL);
INSERT INTO public.issues VALUES (2935, 2, 48, 'Danh mục chuyên ngành', '', '2020-10-30', NULL, 3, 17, 2, NULL, 15, 4, '2020-11-21 10:43:26+07', '2020-11-21 10:51:47+07', '2020-10-30', 100, NULL, 2907, 2412, 118, 119, false, NULL);
INSERT INTO public.issues VALUES (2936, 2, 48, 'Danh mục loại văn bản', '', '2020-11-16', NULL, 3, 17, 2, NULL, 15, 3, '2020-11-21 10:44:28+07', '2020-11-21 10:56:28+07', '2020-11-16', 100, NULL, 2907, 2412, 120, 121, false, NULL);
INSERT INTO public.issues VALUES (2937, 2, 48, 'DASHBOARD', '', '2020-11-21', NULL, 1, NULL, 2, NULL, 15, 3, '2020-11-21 10:48:53+07', '2020-11-21 15:24:11+07', '2020-11-18', 100, NULL, 2412, 2412, 148, 151, false, NULL);
INSERT INTO public.issues VALUES (2938, 2, 48, 'Biểu đồ thống kê cán bộ loại hợp đồng', '', '2020-11-21', NULL, 3, 17, 2, NULL, 15, 2, '2020-11-21 10:50:31+07', '2020-11-21 15:24:11+07', '2020-11-18', 100, NULL, 2937, 2412, 149, 150, false, NULL);
INSERT INTO public.issues VALUES (2939, 2, 46, 'Phân loại mẫu in hóa đơn bán hàng', 'Hóa đơn cafe: giảm giá tổng

Hóa đơn nhà phân phối: giảm giá từng mã hàng', '2020-11-23', NULL, 5, 8, 2, 62, 40, 4, '2020-11-21 10:53:20+07', '2020-11-28 08:51:01+07', '2020-11-23', 100, NULL, NULL, 2939, 1, 2, false, '2020-11-28 08:51:01+07');
INSERT INTO public.issues VALUES (2940, 1, 46, 'Chi tiết đơn hàng - Thêm cột tổng tiền', '', '2020-11-23', NULL, 5, 8, 2, 62, 40, 4, '2020-11-21 11:04:12+07', '2020-11-26 13:34:45+07', '2020-11-23', 100, NULL, NULL, 2940, 1, 2, false, '2020-11-26 13:34:45+07');
INSERT INTO public.issues VALUES (2941, 2, 46, 'Báo cáo - Xem, chỉnh sửa thông tin mẫu in tại Mối quan tâm', '', '2020-11-21', NULL, 5, 39, 2, 60, 39, 1, '2020-11-21 14:41:23+07', '2020-11-23 09:57:16+07', '2020-11-21', 100, NULL, NULL, 2941, 1, 2, false, '2020-11-23 09:57:16+07');
INSERT INTO public.issues VALUES (2942, 3, 32, 'Làm icon của các báo cáo', 'Báo cáo: Nhà cung cấp, Khách hàng, Nhân viên, Khuyến mãi, Mua Hàng, Hàng hóa và Bán hàng.', '2020-11-21', NULL, 1, 14, 2, NULL, 14, 0, '2020-11-21 14:59:20+07', '2020-11-21 14:59:20+07', '2020-11-21', 100, NULL, NULL, 2942, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2943, 2, 48, 'Cấu hình thông báo', 'đố anh fix được em', '2020-11-21', NULL, 3, 17, 2, NULL, 17, 2, '2020-11-21 15:22:58+07', '2020-12-02 09:37:27+07', '2020-11-21', 100, NULL, 2414, 2412, 37, 38, false, NULL);
INSERT INTO public.issues VALUES (2944, 2, 46, 'Thêm chú thích functions, model cho Thiết lập mẫu in', '', '2020-11-21', NULL, 5, 39, 2, 60, 39, 1, '2020-11-21 15:36:52+07', '2020-11-23 09:57:16+07', '2020-11-21', 100, NULL, NULL, 2944, 1, 2, false, '2020-11-23 09:57:16+07');
INSERT INTO public.issues VALUES (2945, 1, 46, 'Bảng kê hàng hóa mua vào - Chưa xem được báo cáo toàn thời gian', '', '2020-11-23', NULL, 5, 5, 2, 62, 40, 3, '2020-11-21 16:50:51+07', '2020-11-26 13:34:45+07', '2020-11-23', 100, NULL, NULL, 2945, 1, 2, false, '2020-11-26 13:34:45+07');
INSERT INTO public.issues VALUES (2946, 5, 57, '24 Quy hoạch xây dựng nông thôn xã An Khương', 'Xử lý bản đồ và nhập liệu', '2020-12-03', NULL, 1, 33, 2, NULL, 33, 6, '2020-11-23 08:15:58+07', '2020-12-14 08:25:06+07', '2020-11-30', 100, NULL, NULL, 2946, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2947, 5, 57, '25 Quy hoạch xây dựng nông thôn xã Đồng Nơ', 'Nhập liệu và xử lý bản đồ', '2020-11-28', NULL, 1, 44, 2, NULL, 33, 2, '2020-11-23 08:16:41+07', '2021-01-28 13:55:06+07', '2020-11-21', 100, NULL, NULL, 2947, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2948, 5, 57, '26 Quy hoạch xây dựng nông thôn xã Minh Đức', 'Xử lý bản đồ và nhập liệu', '2020-11-28', NULL, 1, 43, 2, NULL, 33, 2, '2020-11-23 08:17:21+07', '2021-01-28 13:55:17+07', '2020-11-21', 100, NULL, NULL, 2948, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2949, 5, 57, '27 Quy hoạch xây dựng nông thôn xã Phước An', 'Xử lý bản đồ và nhập liệu', '2020-11-28', NULL, 1, 32, 2, NULL, 33, 4, '2020-11-23 08:18:48+07', '2020-12-07 08:14:59+07', '2020-11-25', 100, NULL, NULL, 2949, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2950, 5, 57, '28 Quy hoạch xây dựng nông thôn xã Tân Hưng', 'Xử lý bản đồ và nhập liệu', '2020-12-20', NULL, 1, 23, 2, NULL, 33, 4, '2020-11-23 08:19:35+07', '2020-12-26 15:35:00+07', '2020-12-14', 100, NULL, NULL, 2950, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2951, 5, 57, '29 Quy hoạch xây dựng nông thôn xã Tân Khai', 'Xử lý bản đồ và nhập liệu', '2020-11-30', NULL, 1, 32, 2, NULL, 33, 4, '2020-11-23 08:20:10+07', '2020-11-30 17:00:06+07', '2020-11-25', 100, NULL, NULL, 2951, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2952, 5, 57, '30 Quy hoạch xây dựng nông thôn xã Tân Lợi', 'Xử lý bản đồ', '2020-11-30', NULL, 1, 33, 2, NULL, 33, 2, '2020-11-23 08:20:41+07', '2020-12-08 08:14:52+07', '2020-11-25', 100, NULL, NULL, 2952, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (2953, 1, 46, 'Chi tiết phiếu nhập hàng - mở rộng ô nhập số lượng', '', '2020-11-23', NULL, 5, 39, 2, 62, 40, 3, '2020-11-23 08:55:12+07', '2020-11-26 13:34:45+07', '2020-11-23', 100, NULL, NULL, 2953, 1, 2, false, '2020-11-26 13:34:45+07');
INSERT INTO public.issues VALUES (2954, 2, 46, 'Load dữ liệu công nợ kh', '', '2020-12-02', NULL, 5, 39, 2, 65, 5, 5, '2020-11-23 10:03:03+07', '2020-12-05 18:23:05+07', '2020-12-02', 100, NULL, NULL, 2954, 1, 2, false, '2020-12-05 18:23:05+07');
INSERT INTO public.issues VALUES (2955, 2, 46, 'Load dữ liệu công nợ ncc', '', '2020-12-04', NULL, 5, 39, 2, 65, 5, 6, '2020-11-23 10:03:14+07', '2020-12-05 18:23:05+07', '2020-12-04', 100, NULL, NULL, 2955, 1, 2, false, '2020-12-05 18:23:05+07');
INSERT INTO public.issues VALUES (2956, 2, 48, 'Cập nhật thời gian gửi của từng thông báo', '', '2020-11-23', NULL, 3, 15, 2, NULL, 15, 3, '2020-11-23 10:08:53+07', '2020-11-23 16:43:30+07', '2020-11-23', 100, NULL, 2896, 2412, 140, 141, false, NULL);
INSERT INTO public.issues VALUES (2957, 2, 48, 'Thiết lập cập nhật thông báo cho từng action liên quan đến thay đổi thông tin cán bộ', '', '2020-11-24', NULL, 3, 15, 2, NULL, 15, 5, '2020-11-23 10:09:43+07', '2020-11-24 16:42:21+07', '2020-11-24', 100, NULL, 2896, 2412, 142, 143, false, NULL);
INSERT INTO public.issues VALUES (2958, 2, 48, 'BÁO CÁO', '', '2021-01-12', NULL, 1, NULL, 2, NULL, 15, 7, '2020-11-23 10:17:51+07', '2021-01-12 10:08:33+07', '2020-11-23', 100, NULL, 2412, 2412, 152, 165, false, NULL);
INSERT INTO public.issues VALUES (2959, 2, 48, 'Báo cáo danh sách cán bộ', '', '2020-11-25', NULL, 3, 17, 2, NULL, 15, 1, '2020-11-23 10:18:33+07', '2020-11-26 14:17:03+07', '2020-11-23', 100, NULL, 2958, 2412, 153, 154, false, NULL);
INSERT INTO public.issues VALUES (2960, 2, 42, 'API tạo và lưu dữ liệu báo cáo', '', '2020-11-28', NULL, 5, 38, 2, 63, 19, 5, '2020-11-23 10:20:20+07', '2020-12-16 15:38:32+07', '2020-11-23', 100, NULL, NULL, 2960, 1, 2, false, '2020-12-16 15:38:32+07');
INSERT INTO public.issues VALUES (2961, 2, 42, 'API update dữ liệu báo cáo', '', '2020-11-28', NULL, 5, 38, 2, 63, 19, 4, '2020-11-23 10:20:57+07', '2020-12-16 15:38:32+07', '2020-11-23', 100, NULL, NULL, 2961, 1, 2, false, '2020-12-16 15:38:32+07');
INSERT INTO public.issues VALUES (2962, 2, 42, 'Giao diện tạo báo cáo, lưu báo báo, chỉnh sửa báo cáo', '', '2020-12-19', NULL, 5, 13, 2, 71, 19, 7, '2020-11-23 10:23:17+07', '2020-12-16 15:44:10+07', '2020-12-07', 80, NULL, NULL, 2962, 1, 2, false, '2020-12-16 15:44:10+07');
INSERT INTO public.issues VALUES (2963, 3, 32, 'Sửa dữ liệu hình ảnh trên Auction và bỏ lên website', '', '2020-11-23', NULL, 1, NULL, 2, NULL, 14, 0, '2020-11-23 10:44:51+07', '2020-11-23 10:44:51+07', '2020-11-23', 100, NULL, NULL, 2963, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2964, 4, 32, 'Tạo webiste cho công ty ISC', '- Tìm kiếm và cài đặt theme wordpress
- Chọn lọc thông tin và hình ảnh phù hợp ISC
', '2020-12-05', NULL, 1, 14, 2, NULL, 14, 1, '2020-11-23 10:49:02+07', '2020-11-23 10:49:11+07', '2020-11-23', 30, NULL, NULL, 2964, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2965, 2, 46, 'Mobile - Báo cáo hàng hóa - Load dữ liễu báo cáo sản lượng bán hàng.', '', '2020-11-24', NULL, 5, 10, 2, 62, 10, 3, '2020-11-23 10:57:57+07', '2020-11-28 08:51:01+07', '2020-11-24', 100, NULL, NULL, 2965, 1, 2, false, '2020-11-28 08:51:01+07');
INSERT INTO public.issues VALUES (2966, 2, 46, 'Mobile - Báo cáo hàng hóa - Load dữ liệu báo cáo nhập xuất tồn chi tiết.', '', '2020-11-24', NULL, 5, 10, 2, 62, 10, 3, '2020-11-23 10:58:44+07', '2020-11-28 08:51:01+07', '2020-11-24', 100, NULL, NULL, 2966, 1, 2, false, '2020-11-28 08:51:01+07');
INSERT INTO public.issues VALUES (2967, 2, 46, 'Mobile - Báo cáo hàng hóa - Load dữ liệu báo cáo nhập xuất tồn.', '', '2020-11-24', NULL, 5, 10, 2, 62, 10, 3, '2020-11-23 10:59:16+07', '2020-11-26 13:34:45+07', '2020-11-24', 100, NULL, NULL, 2967, 1, 2, false, '2020-11-26 13:34:45+07');
INSERT INTO public.issues VALUES (2968, 2, 46, 'Mobile - Báo cáo bán hàng - Load dữ liệu báo cáo tồn kho.', '', '2020-11-24', NULL, 5, 10, 2, 62, 10, 3, '2020-11-23 10:59:51+07', '2020-11-26 13:34:45+07', '2020-11-24', 100, NULL, NULL, 2968, 1, 2, false, '2020-11-26 13:34:45+07');
INSERT INTO public.issues VALUES (2969, 5, 52, 'sắp xếp hồ sơ và loại bỏ trùng thừa tài liệu văn phòng - 2006, 2007, 2009, 2010', '', '2020-11-24', NULL, 1, 45, 2, NULL, 28, 2, '2020-11-23 11:12:51+07', '2020-11-27 14:47:17+07', '2020-11-21', 100, NULL, NULL, 2969, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2970, 5, 52, 'Nhập mục lục theo bản sửa hướng dẫn từ năm 1992 - 2011 tài liệu văn phòng', '', '2020-11-24', NULL, 1, 28, 2, NULL, 28, 1, '2020-11-23 11:14:50+07', '2020-11-27 14:47:44+07', '2020-11-21', 100, NULL, NULL, 2970, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2971, 5, 52, 'Đánh mục lục tài liệu phòng nội vụ và Sắp xếp, phân loại trùng thừa tài liệu nội vụ năm 2011- 2012 ', '', '2020-11-25', NULL, 1, 31, 2, NULL, 28, 1, '2020-11-23 11:17:55+07', '2020-11-27 14:48:07+07', '2020-11-22', 100, NULL, NULL, 2971, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2972, 3, 28, 'Sửa lỗi phần mềm', '', '2020-11-23', NULL, 3, NULL, 2, NULL, 17, 1, '2020-11-23 13:46:48+07', '2020-11-23 13:47:04+07', '2020-11-23', 100, NULL, NULL, 2972, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2973, 1, 46, 'Không cho lập phiếu thu - chi với số tiền bằng 0', '', '2020-11-23', NULL, 5, 39, 2, 62, 40, 2, '2020-11-23 14:06:44+07', '2020-11-26 13:34:46+07', '2020-11-23', 100, NULL, NULL, 2973, 1, 2, false, '2020-11-26 13:34:46+07');
INSERT INTO public.issues VALUES (2974, 1, 46, 'Xuất file trong sổ quỹ tiền mặt - thất bại', '', '2020-11-30', NULL, 5, 41, 2, 65, 40, 6, '2020-11-23 14:11:41+07', '2020-12-05 18:23:05+07', '2020-11-30', 100, NULL, NULL, 2974, 1, 2, false, '2020-12-05 18:23:05+07');
INSERT INTO public.issues VALUES (2975, 2, 42, 'Api: get report', 'Get report theo id report', '2020-11-23', NULL, 5, 38, 2, 63, 38, 5, '2020-11-23 15:48:05+07', '2020-12-16 15:38:32+07', '2020-11-23', 100, NULL, NULL, 2975, 1, 2, false, '2020-12-16 15:38:32+07');
INSERT INTO public.issues VALUES (2976, 2, 48, 'Danh sách đảng viên', '', '2020-12-01', NULL, 3, 15, 2, NULL, 15, 5, '2020-11-23 16:45:24+07', '2020-12-01 16:58:59+07', '2020-11-30', 100, NULL, 2463, 2412, 98, 99, false, NULL);
INSERT INTO public.issues VALUES (2977, 2, 48, 'Danh sách kiêm nhiệm', '', '2020-11-30', NULL, 3, 17, 2, NULL, 15, 3, '2020-11-23 16:45:38+07', '2020-12-01 16:54:14+07', '2020-11-30', 100, NULL, 2463, 2412, 100, 101, false, NULL);
INSERT INTO public.issues VALUES (2978, 2, 48, 'Danh sách biệt  phái', '', '2020-12-01', NULL, 3, 17, 2, NULL, 15, 1, '2020-11-23 16:45:45+07', '2020-12-01 16:55:31+07', '2020-12-01', 100, NULL, 2463, 2412, 102, 103, false, NULL);
INSERT INTO public.issues VALUES (2979, 2, 48, 'Danh sách cán bộ nghỉ hưu', '', '2020-12-01', NULL, 3, 17, 2, NULL, 15, 3, '2020-11-23 16:46:09+07', '2020-12-02 09:36:03+07', '2020-12-01', 100, NULL, 2463, 2412, 104, 107, false, NULL);
INSERT INTO public.issues VALUES (2980, 2, 48, 'Danh bạ cán bộ', '', '2020-12-01', NULL, 3, 15, 2, NULL, 15, 4, '2020-11-23 16:46:18+07', '2020-12-01 16:56:31+07', '2020-11-30', 100, NULL, 2463, 2412, 108, 109, false, NULL);
INSERT INTO public.issues VALUES (2981, 2, 46, 'Api Báo cáo  - Bảng kê mua hàng chi tiết', '', '2020-11-23', NULL, 5, 39, 2, 62, 39, 1, '2020-11-23 16:48:21+07', '2020-11-26 13:34:46+07', '2020-11-23', 100, NULL, NULL, 2981, 1, 2, false, '2020-11-26 13:34:46+07');
INSERT INTO public.issues VALUES (2982, 2, 42, 'API: Create Report', '', '2020-11-24', NULL, 5, 38, 2, 63, 38, 5, '2020-11-24 09:01:48+07', '2020-12-16 15:38:32+07', '2020-11-24', 100, NULL, NULL, 2982, 1, 2, false, '2020-12-16 15:38:32+07');
INSERT INTO public.issues VALUES (2983, 2, 42, 'Giao diện quản lý danh mục hành chính', '', '2020-11-25', NULL, 5, 37, 2, 63, 38, 9, '2020-11-24 09:02:33+07', '2020-12-16 15:43:52+07', '2020-11-25', 100, NULL, NULL, 2983, 1, 8, false, '2020-12-16 15:43:52+07');
INSERT INTO public.issues VALUES (2984, 2, 42, 'Tạo công thức cho column trong form nhập liệu', '', '2020-11-28', NULL, 5, 13, 2, 63, 19, 3, '2020-11-24 09:43:40+07', '2020-12-16 15:38:32+07', '2020-11-24', 100, NULL, NULL, 2984, 1, 2, false, '2020-12-16 15:38:32+07');
INSERT INTO public.issues VALUES (2985, 3, 46, 'Test và nắm vững quy trình nghiệp vụ, vận hành phần mêm', '- Thực hiện test các chức năng phần mềm
- Nằm vững quy trình nghiệp vụ phần mềm
- Thao tác vận hành phần mềm
- Tham gia tư vấn, giới thiệu sản phẩm với khách hàng tiềm năng', '2020-11-30', NULL, 1, 9, 2, 33, 21, 1, '2020-11-24 09:44:23+07', '2020-11-24 14:12:39+07', '2020-11-24', 0, NULL, NULL, 2985, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (2987, 2, 46, 'Api Báo cáo tồn kho', '', '2020-11-24', NULL, 5, 39, 2, 62, 39, 1, '2020-11-24 10:31:12+07', '2020-11-26 13:34:46+07', '2020-11-24', 100, NULL, NULL, 2987, 1, 2, false, '2020-11-26 13:34:46+07');
INSERT INTO public.issues VALUES (2988, 2, 46, 'Thêm in phiếu Giao hàng chi tiết theo NVGH ở Xem phiếu Xuất hàng', '', '2020-11-25', NULL, 5, 39, 2, 62, 39, 5, '2020-11-24 10:32:12+07', '2020-11-26 13:34:46+07', '2020-11-25', 100, NULL, NULL, 2988, 1, 2, false, '2020-11-26 13:34:46+07');
INSERT INTO public.issues VALUES (2989, 2, 46, 'Thêm thông tin kho, chi nhánh ở các phiếu', '', '2020-11-25', NULL, 5, 39, 2, 62, 39, 4, '2020-11-24 10:32:39+07', '2020-11-26 13:34:46+07', '2020-11-25', 100, NULL, NULL, 2989, 1, 2, false, '2020-11-26 13:34:46+07');
INSERT INTO public.issues VALUES (2990, 2, 48, 'Chỉnh sửa tab danh sách trích ngang', '', '2020-11-24', NULL, 3, NULL, 2, NULL, 17, 2, '2020-11-24 11:09:51+07', '2020-12-02 09:36:58+07', '2020-11-24', 100, NULL, 2464, 2412, 93, 94, false, NULL);
INSERT INTO public.issues VALUES (2991, 1, 46, 'Tạo khuyến mãi - Không áp dụng được chương trình khuyến mãi trong cùng 1 ngày', '', '2020-11-24', NULL, 5, 41, 2, 62, 40, 2, '2020-11-24 15:39:46+07', '2020-11-28 08:51:01+07', '2020-11-24', 100, NULL, NULL, 2991, 1, 2, false, '2020-11-28 08:51:01+07');
INSERT INTO public.issues VALUES (2992, 2, 42, 'Màn hình thêm hành chính', '', '2020-11-25', NULL, 5, 37, 2, 63, 38, 3, '2020-11-24 15:40:37+07', '2020-12-16 15:43:32+07', '2020-11-25', 100, NULL, 2983, 2983, 2, 3, false, '2020-12-16 15:43:32+07');
INSERT INTO public.issues VALUES (2993, 2, 42, 'Màn hình chỉnh sửa hành chính', '', '2020-11-25', NULL, 5, 37, 2, 63, 38, 3, '2020-11-24 15:40:59+07', '2020-12-16 15:43:32+07', '2020-11-25', 100, NULL, 2983, 2983, 4, 5, false, '2020-12-16 15:43:32+07');
INSERT INTO public.issues VALUES (2994, 2, 42, 'Màn hình hiển thị thông tin hành chính', '', '2020-11-25', NULL, 5, 37, 2, 63, 38, 3, '2020-11-24 15:41:22+07', '2020-12-16 15:43:33+07', '2020-11-25', 100, NULL, 2983, 2983, 6, 7, false, '2020-12-16 15:43:33+07');
INSERT INTO public.issues VALUES (2995, 2, 46, 'Thêm từ ngày, đến ngày cho Tạo phiếu xuất hàng', '', '2020-11-24', NULL, 5, 39, 2, 62, 39, 1, '2020-11-24 15:44:12+07', '2020-11-26 13:34:46+07', '2020-11-24', 100, NULL, NULL, 2995, 1, 2, false, '2020-11-26 13:34:46+07');
INSERT INTO public.issues VALUES (2996, 2, 46, 'Sửa component mối quan tâm ở Báo cáo', '', '2020-11-25', NULL, 5, 39, 2, 62, 39, 4, '2020-11-24 15:45:08+07', '2020-11-26 13:34:46+07', '2020-11-25', 100, NULL, NULL, 2996, 1, 2, false, '2020-11-26 13:34:46+07');
INSERT INTO public.issues VALUES (2997, 2, 48, 'Báo cáo trình độ chất lượng cán bộ', '', '2021-01-12', NULL, 3, 17, 2, NULL, 15, 4, '2020-11-24 16:50:10+07', '2021-01-12 10:08:33+07', '2021-01-12', 100, NULL, 2958, 2412, 155, 158, false, NULL);
INSERT INTO public.issues VALUES (2998, 2, 48, 'Lịch sử hợp đồng cán bộ', '', '2020-11-25', NULL, 3, 15, 2, NULL, 15, 5, '2020-11-24 16:54:12+07', '2020-11-26 08:21:04+07', '2020-11-24', 100, NULL, 2476, 2412, 72, 73, false, NULL);
INSERT INTO public.issues VALUES (2999, 2, 48, 'Lịch sử ngạch bậc cán bộ', '', '2020-11-25', NULL, 3, 15, 2, NULL, 15, 4, '2020-11-24 16:54:31+07', '2020-11-26 08:19:33+07', '2020-11-24', 100, NULL, 2476, 2412, 74, 75, false, NULL);
INSERT INTO public.issues VALUES (3000, 2, 48, 'Lịch sử chức vụ - phòng ban ', '', '2020-11-25', NULL, 3, 15, 2, NULL, 15, 4, '2020-11-24 16:54:47+07', '2020-11-26 08:19:52+07', '2020-11-24', 100, NULL, 2476, 2412, 76, 77, false, NULL);
INSERT INTO public.issues VALUES (3003, 5, 57, '31 Quy hoạch xây dựng nông thôn xã Tân Quan', 'xử lý bản đồ', '2020-12-03', NULL, 1, 33, 2, NULL, 33, 3, '2020-11-25 08:38:29+07', '2020-12-14 08:25:17+07', '2020-11-30', 100, NULL, NULL, 3003, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (3004, 5, 57, 'Nhập Liệu', '', '2020-11-30', NULL, 1, 24, 2, NULL, 33, 1, '2020-11-25 09:17:02+07', '2020-12-08 08:14:52+07', '2020-11-25', 100, NULL, 2952, 2952, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3006, 1, 46, 'Fix Lỗi ở Tạo phiếu Chuyển kho ', '', '2020-11-25', NULL, 5, 39, 2, 62, 39, 1, '2020-11-25 16:17:24+07', '2020-11-26 13:34:46+07', '2020-11-25', 100, NULL, NULL, 3006, 1, 2, false, '2020-11-26 13:34:46+07');
INSERT INTO public.issues VALUES (3007, 2, 46, 'Sửa giao diện xem thông tin thẻ QR Code', '', '2020-11-26', NULL, 5, 39, 2, 62, 39, 2, '2020-11-25 16:29:39+07', '2020-11-26 13:34:46+07', '2020-11-25', 100, NULL, NULL, 3007, 1, 2, false, '2020-11-26 13:34:46+07');
INSERT INTO public.issues VALUES (3008, 2, 48, 'Cán bộ đảng đoàn thể', '', '2020-11-30', NULL, 3, 15, 2, NULL, 15, 14, '2020-11-26 08:23:38+07', '2020-11-30 15:43:13+07', '2020-11-28', 100, NULL, 2476, 2412, 78, 85, false, NULL);
INSERT INTO public.issues VALUES (3009, 2, 48, 'Gia hạn thông tin ( Loại hợp đồng - Ngạch bậc - Chức vụ - Phòng ban)', '', '2020-11-27', NULL, 3, 15, 2, NULL, 15, 1, '2020-11-26 08:26:07+07', '2020-11-27 16:54:16+07', '2020-11-26', 100, NULL, 2476, 2412, 86, 87, false, NULL);
INSERT INTO public.issues VALUES (3010, 2, 48, 'Lazy loading Tab danh sách trích ngang', '', '2020-11-26', NULL, 3, 15, 2, NULL, 15, 2, '2020-11-26 17:07:58+07', '2020-11-26 17:08:30+07', '2020-11-26', 100, NULL, 2464, 2412, 95, 96, false, NULL);
INSERT INTO public.issues VALUES (3011, 2, 46, 'Thiết lập khuyến mãi cho lựa chọn', '', '2020-11-27', NULL, 5, 8, 2, 62, 8, 4, '2020-11-27 10:38:08+07', '2020-11-28 08:51:01+07', '2020-11-27', 100, NULL, NULL, 3011, 1, 2, false, '2020-11-28 08:51:01+07');
INSERT INTO public.issues VALUES (3012, 2, 42, 'Sửa giao diện quản lý báo cáo', '', '2020-12-05', NULL, 5, 12, 2, 64, 12, 4, '2020-11-27 14:47:06+07', '2020-12-16 15:43:40+07', '2020-11-30', 100, NULL, NULL, 3012, 1, 2, false, '2020-12-16 15:43:40+07');
INSERT INTO public.issues VALUES (3013, 2, 36, 'Xây dựng đề cương dự toán BCTC', '', '2020-12-10', NULL, 1, 21, 2, NULL, 21, 0, '2020-11-27 14:49:02+07', '2020-11-27 14:49:02+07', '2020-11-27', 0, NULL, NULL, 3013, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3014, 5, 52, 'Kiểm tra và nhập mục lục tài liệu văn phòng - 2000,2005,2006,2007,2009,2010', '', '2020-11-28', NULL, 1, 45, 2, NULL, 28, 1, '2020-11-27 14:50:50+07', '2020-11-30 08:47:21+07', '2020-11-26', 100, NULL, NULL, 3014, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3015, 5, 52, 'Kiểm tra và nhập mục lục tài liệu văn phòng - 1998, 2001', '', '2020-11-28', NULL, 1, 35, 2, NULL, 28, 1, '2020-11-27 14:52:28+07', '2020-11-27 14:53:14+07', '2020-11-26', 100, NULL, NULL, 3015, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3016, 5, 52, 'Chỉnh sửa và nhập mục lục tài liệu văn phòng - 1999, 2002,2008,2011 - Phương hỗ trợ', '', '2020-11-28', NULL, 1, 28, 2, NULL, 28, 1, '2020-11-27 14:54:27+07', '2020-11-30 08:47:39+07', '2020-11-27', 100, NULL, NULL, 3016, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3017, 5, 52, 'Chỉnh sửa và nhập mục lục tài liệu văn phòng - 2003,2004 - Nhơn hỗ trợ', '', '2020-11-28', NULL, 1, 34, 2, NULL, 28, 1, '2020-11-27 14:55:20+07', '2020-11-30 08:47:54+07', '2020-11-27', 100, NULL, NULL, 3017, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3018, 2, 46, 'Tạo đơn vị quy đổi trong danh mục sản phẩm', '', '2020-11-30', NULL, 5, 8, 2, 65, 8, 5, '2020-11-27 15:26:43+07', '2020-12-05 18:23:05+07', '2020-11-30', 100, NULL, NULL, 3018, 1, 2, false, '2020-12-05 18:23:05+07');
INSERT INTO public.issues VALUES (3019, 2, 46, 'Thêm tab "Hàng hóa cùng loại"', 'Trong chi tiết danh mục sản phẩm', '2020-12-08', NULL, 5, 39, 2, 67, 8, 8, '2020-11-27 15:31:27+07', '2020-12-11 13:57:34+07', '2020-12-08', 100, NULL, NULL, 3019, 1, 2, false, '2020-12-11 13:57:34+07');
INSERT INTO public.issues VALUES (3020, 2, 46, 'Thêm lưu ý trong thẻ kho', '', '2020-12-07', NULL, 5, 39, 2, 33, 8, 5, '2020-11-27 15:31:40+07', '2020-12-07 09:52:40+07', '2020-12-07', 0, NULL, NULL, 3020, 1, 2, false, '2020-12-07 09:52:40+07');
INSERT INTO public.issues VALUES (3021, 2, 46, 'Tạo checkBox hiển thị sản phẩm có khuyến mãi', 'Trong tạo đơn hàng', '2020-11-27', NULL, 5, 8, 2, 62, 8, 4, '2020-11-27 15:33:00+07', '2020-11-28 17:09:31+07', '2020-11-27', 100, NULL, NULL, 3021, 1, 2, false, '2020-11-28 17:09:31+07');
INSERT INTO public.issues VALUES (3022, 2, 46, 'Tạo checkBox hiển thị sản phẩm còn hàng', '', '2020-11-27', NULL, 5, 8, 2, 62, 8, 3, '2020-11-27 15:34:49+07', '2020-11-28 17:09:31+07', '2020-11-27', 100, NULL, NULL, 3022, 1, 2, false, '2020-11-28 17:09:31+07');
INSERT INTO public.issues VALUES (3023, 2, 46, 'Chỉnh lại cách hiển thị lựa chọn khuyến mãi', '', '2020-11-27', NULL, 5, 8, 2, 62, 8, 3, '2020-11-27 16:54:09+07', '2020-11-28 08:51:01+07', '2020-11-27', 100, NULL, NULL, 3023, 1, 2, false, '2020-11-28 08:51:01+07');
INSERT INTO public.issues VALUES (3024, 2, 48, 'Cập nhật chức vụ - phòng ban ', '', '2020-11-27', NULL, 3, 17, 2, NULL, 15, 2, '2020-11-27 16:56:57+07', '2020-11-27 16:57:23+07', '2020-11-27', 100, NULL, 2922, 2412, 59, 60, false, NULL);
INSERT INTO public.issues VALUES (3025, 2, 42, 'Tạo công thức cho row trong form nhập liệu', '', '2020-11-28', NULL, 5, 13, 2, 63, 19, 3, '2020-11-28 09:16:24+07', '2020-12-16 15:38:32+07', '2020-11-23', 100, NULL, NULL, 3025, 1, 2, false, '2020-12-16 15:38:32+07');
INSERT INTO public.issues VALUES (3026, 1, 46, 'Fix lỗi Filter box Sổ quỹ tiền mặt', '', '2020-11-28', NULL, 5, 39, 2, 62, 39, 1, '2020-11-28 14:50:12+07', '2020-11-28 17:09:31+07', '2020-11-28', 100, NULL, NULL, 3026, 1, 2, false, '2020-11-28 17:09:31+07');
INSERT INTO public.issues VALUES (3027, 2, 46, 'Api Bảng kê các đơn hàng chi tiết theo NVGH', '', '2020-11-28', NULL, 5, 39, 2, 62, 39, 2, '2020-11-28 14:50:52+07', '2020-11-28 17:09:31+07', '2020-11-28', 100, NULL, NULL, 3027, 1, 2, false, '2020-11-28 17:09:31+07');
INSERT INTO public.issues VALUES (3028, 2, 46, 'Mobile - Sửa api - Load dữ liệu báo cáo sổ quỹ tiền mặt.', '', '2020-11-30', NULL, 5, 10, 2, 65, 10, 4, '2020-11-28 15:33:43+07', '2020-12-05 18:23:05+07', '2020-11-30', 100, NULL, NULL, 3028, 1, 2, false, '2020-12-05 18:23:05+07');
INSERT INTO public.issues VALUES (3029, 5, 57, 'Nhập Liệu', '', '2020-12-03', NULL, 1, 44, 2, NULL, 33, 2, '2020-11-28 17:12:08+07', '2020-12-14 08:25:06+07', '2020-11-30', 100, NULL, 2946, 2946, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3030, 5, 57, 'Nhập Liệu', '', '2020-12-03', NULL, 1, 43, 2, NULL, 33, 2, '2020-11-28 17:12:51+07', '2020-12-14 08:25:17+07', '2020-11-30', 100, NULL, 3003, 3003, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3031, 2, 48, 'Dm tổ chức đảng', '', '2020-11-30', NULL, 3, 15, 2, NULL, 15, 4, '2020-11-30 08:20:29+07', '2020-11-30 15:43:12+07', '2020-11-28', 100, NULL, 3008, 2412, 79, 80, false, NULL);
INSERT INTO public.issues VALUES (3032, 2, 48, 'Quá trình công tác Đảng', '', '2020-11-30', NULL, 3, 15, 2, NULL, 15, 4, '2020-11-30 08:20:57+07', '2020-11-30 15:43:13+07', '2020-11-28', 100, NULL, 3008, 2412, 81, 82, false, NULL);
INSERT INTO public.issues VALUES (3033, 2, 48, 'Quá trình công tác đoàn', '', '2020-11-30', NULL, 3, 15, 2, NULL, 15, 4, '2020-11-30 08:21:14+07', '2020-11-30 15:43:13+07', '2020-11-28', 100, NULL, 3008, 2412, 83, 84, false, NULL);
INSERT INTO public.issues VALUES (3034, 5, 52, 'Phân chia và Đánh số tờ hồ sơ', '', '2020-12-01', NULL, 1, 31, 2, NULL, 28, 0, '2020-11-30 08:51:10+07', '2020-11-30 08:51:10+07', '2020-11-30', 10, NULL, NULL, 3034, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3035, 5, 52, 'Phân loại và đánh số tờ tài liệu', '', '2020-12-01', NULL, 1, 34, 2, NULL, 28, 0, '2020-11-30 08:51:49+07', '2020-11-30 08:51:49+07', '2020-11-30', 10, NULL, NULL, 3035, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3036, 5, 52, 'Phân loại và đánh số tờ tài liệu', '', '2020-12-01', NULL, 1, 35, 2, NULL, 28, 0, '2020-11-30 08:52:20+07', '2020-11-30 08:52:20+07', '2020-11-30', 10, NULL, NULL, 3036, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3037, 5, 52, 'Viết bìa hồ sơ', '', '2020-12-01', NULL, 1, 45, 2, NULL, 28, 0, '2020-11-30 08:52:48+07', '2020-11-30 08:52:48+07', '2020-11-30', 10, NULL, NULL, 3037, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3038, 5, 52, 'Phân loại và đánh số tờ tài liệu', '', '2020-12-01', NULL, 1, 28, 2, NULL, 28, 0, '2020-11-30 08:53:26+07', '2020-11-30 08:53:26+07', '2020-11-30', 10, NULL, NULL, 3038, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3039, 2, 42, 'Create API: Get report by category', '', '2020-12-05', NULL, 5, 38, 2, 64, 38, 4, '2020-11-30 09:03:18+07', '2020-12-16 15:43:40+07', '2020-11-30', 100, NULL, NULL, 3039, 1, 2, false, '2020-12-16 15:43:40+07');
INSERT INTO public.issues VALUES (3040, 2, 46, 'Sửa lại khuyến mãi theo đơn vị tính', '', '2020-11-30', NULL, 5, 8, 2, 65, 8, 4, '2020-11-30 13:18:46+07', '2020-12-05 18:23:05+07', '2020-11-30', 100, NULL, NULL, 3040, 1, 2, false, '2020-12-05 18:23:05+07');
INSERT INTO public.issues VALUES (3041, 2, 46, 'Tạo popup chọn đơn vị tính', '', '2020-11-30', NULL, 5, 8, 2, 65, 8, 4, '2020-11-30 13:19:14+07', '2020-12-05 18:23:05+07', '2020-11-30', 100, NULL, NULL, 3041, 1, 2, false, '2020-12-05 18:23:05+07');
INSERT INTO public.issues VALUES (3042, 2, 46, 'API Hiển thị các đơn vị tính của sản phẩm trong list sản phẩm ', '', '2020-11-30', NULL, 5, 41, 2, 65, 41, 3, '2020-11-30 13:24:37+07', '2020-12-05 18:23:05+07', '2020-11-30', 100, NULL, NULL, 3042, 1, 2, false, '2020-12-05 18:23:05+07');
INSERT INTO public.issues VALUES (3043, 2, 46, 'API chỉnh sửa lại chi tiết khuyến mãi với đơn vị tính ', '', '2020-11-30', NULL, 5, 41, 2, 65, 41, 3, '2020-11-30 13:25:25+07', '2020-12-05 18:23:05+07', '2020-11-30', 100, NULL, NULL, 3043, 1, 2, false, '2020-12-05 18:23:05+07');
INSERT INTO public.issues VALUES (3044, 2, 46, 'Sửa api mua hàng ghi công nợ', '', '2020-12-01', NULL, 5, 41, 2, 65, 5, 4, '2020-11-30 13:55:27+07', '2020-12-07 10:10:15+07', '2020-12-01', 100, NULL, NULL, 3044, 1, 2, false, '2020-12-07 10:10:15+07');
INSERT INTO public.issues VALUES (3045, 2, 46, 'api thanh toán công nợ ncc', '', '2020-12-01', NULL, 5, 41, 2, 65, 5, 3, '2020-11-30 13:55:49+07', '2020-12-07 10:10:15+07', '2020-12-01', 100, NULL, NULL, 3045, 1, 2, false, '2020-12-07 10:10:15+07');
INSERT INTO public.issues VALUES (3046, 2, 46, 'Sửa api bán hàng ghi công nợ kh', '', '2020-12-02', NULL, 5, 41, 2, 65, 5, 4, '2020-11-30 13:56:15+07', '2020-12-05 18:23:05+07', '2020-12-02', 100, NULL, NULL, 3046, 1, 2, false, '2020-12-05 18:23:05+07');
INSERT INTO public.issues VALUES (3047, 2, 46, 'api thanh toán công nợ kh', '', '2020-12-02', NULL, 5, 41, 2, 65, 5, 4, '2020-11-30 14:08:48+07', '2020-12-05 18:23:05+07', '2020-12-02', 100, NULL, NULL, 3047, 1, 2, false, '2020-12-05 18:23:05+07');
INSERT INTO public.issues VALUES (3048, 2, 46, 'api điều chỉnh công nợ kh', '', '2020-12-02', NULL, 5, 41, 2, 65, 5, 4, '2020-11-30 14:09:13+07', '2020-12-05 18:23:05+07', '2020-12-02', 100, NULL, NULL, 3048, 1, 2, false, '2020-12-05 18:23:05+07');
INSERT INTO public.issues VALUES (3049, 2, 46, 'api điều chỉnh công nợ ncc', '', '2020-12-01', NULL, 5, 41, 2, 65, 5, 3, '2020-11-30 14:09:28+07', '2020-12-07 10:10:15+07', '2020-12-01', 100, NULL, NULL, 3049, 1, 2, false, '2020-12-07 10:10:15+07');
INSERT INTO public.issues VALUES (3050, 1, 46, 'Trong báo cáo chọn thời gian 7 ngày qua hiển thị sai thông tin từ ngày - đến ngày', 'ví dụ: Từ ngày 23/12/2020 đến ngày 30/11/2020', '2020-12-01', NULL, 5, 8, 2, 65, 40, 4, '2020-11-30 14:25:09+07', '2020-12-05 18:23:05+07', '2020-11-30', 100, NULL, NULL, 3050, 1, 2, false, '2020-12-05 18:23:05+07');
INSERT INTO public.issues VALUES (3051, 5, 57, '32 Quy hoạch xây dựng nông thôn xã Thanh An', 'Xử lí bản đồ', '2020-12-08', NULL, 1, 33, 4, NULL, 33, 3, '2020-11-30 15:10:08+07', '2020-12-14 08:25:35+07', '2020-12-05', 100, NULL, NULL, 3051, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (3052, 5, 57, '33 Quy hoạch xây dựng nông thôn xã Thanh Bình', 'Xử lí bản đồ', '2020-12-07', NULL, 1, 33, 2, NULL, 33, 3, '2020-11-30 15:10:48+07', '2020-12-14 08:25:27+07', '2020-12-03', 100, NULL, NULL, 3052, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (3053, 1, 46, 'Mua hàng - Bảng kê hàng hóa mua vào hiển thị sai kết quả tuần trước và 7 ngày qua', 'Ví dụ:
chọn tuần trước hiển thị không có kết quả.
Nhưng chọn thời gian của tuần trước như Từ ngày 23/11/2020 đến ngày 29/11/2020 thì hiển thị có kết quả.

--> lí do sai mốc thời gian từ ngày đến ngày', '2020-12-02', NULL, 5, 39, 2, 65, 40, 7, '2020-11-30 15:54:51+07', '2020-12-05 18:23:06+07', '2020-12-02', 100, NULL, NULL, 3053, 1, 2, false, '2020-12-05 18:23:06+07');
INSERT INTO public.issues VALUES (3054, 1, 46, 'Mua hàng - Bảng kê chi tiết hiển thị sai kết quả tuần trước và 7 ngày qua', 'Ví dụ:
chọn tuần trước hiển thị không có kết quả.
Nhưng chọn thời gian của tuần trước như Từ ngày 23/11/2020 đến ngày 29/11/2020 thì hiển thị có kết quả

--> lí do sai mốc thời gian từ ngày - đến ngày', '2020-12-02', NULL, 5, 39, 2, 65, 40, 5, '2020-11-30 16:18:23+07', '2020-12-05 18:23:06+07', '2020-12-02', 100, NULL, NULL, 3054, 1, 2, false, '2020-12-05 18:23:06+07');
INSERT INTO public.issues VALUES (3055, 1, 46, 'Fix Xuất file ở Sỗ quỹ tiền mặt', '', '2020-11-30', NULL, 5, 39, 2, 65, 39, 3, '2020-11-30 16:24:19+07', '2020-12-05 18:23:06+07', '2020-11-30', 100, NULL, NULL, 3055, 1, 2, false, '2020-12-05 18:23:06+07');
INSERT INTO public.issues VALUES (3056, 2, 46, 'Thêm đơn vị tính cho chương trình khuyến mãi', '', '2020-11-30', NULL, 5, 39, 2, 65, 39, 3, '2020-11-30 16:24:52+07', '2020-12-05 18:23:06+07', '2020-11-30', 100, NULL, NULL, 3056, 1, 2, false, '2020-12-05 18:23:06+07');
INSERT INTO public.issues VALUES (3057, 2, 42, 'API xóa column template', '', '2020-12-05', NULL, 5, 38, 2, 64, 19, 3, '2020-12-01 08:24:07+07', '2020-12-16 15:43:40+07', '2020-12-01', 100, NULL, NULL, 3057, 1, 2, false, '2020-12-16 15:43:40+07');
INSERT INTO public.issues VALUES (3058, 2, 46, 'API tạo công nợ khách hàng', '', '2020-12-02', NULL, 5, 41, 2, 65, 41, 3, '2020-12-01 08:24:24+07', '2020-12-05 18:23:06+07', '2020-12-01', 100, NULL, NULL, 3058, 1, 2, false, '2020-12-05 18:23:06+07');
INSERT INTO public.issues VALUES (3059, 2, 42, 'API xóa cell template', '', '2020-12-05', NULL, 5, 38, 2, 64, 19, 3, '2020-12-01 08:30:38+07', '2020-12-16 15:43:40+07', '2020-12-01', 100, NULL, NULL, 3059, 1, 2, false, '2020-12-16 15:43:40+07');
INSERT INTO public.issues VALUES (3060, 2, 42, 'API xóa row template', '', '2020-12-05', NULL, 5, 38, 2, 64, 19, 3, '2020-12-01 08:44:05+07', '2020-12-16 15:43:40+07', '2020-12-01', 100, NULL, NULL, 3060, 1, 2, false, '2020-12-16 15:43:40+07');
INSERT INTO public.issues VALUES (3061, 2, 46, 'Mobile - Update phiên bản các gói trong bộ sources.', '', '2020-11-30', NULL, 5, 10, 2, 65, 10, 4, '2020-12-01 09:12:10+07', '2020-12-05 18:23:06+07', '2020-11-30', 100, NULL, NULL, 3061, 1, 2, false, '2020-12-05 18:23:06+07');
INSERT INTO public.issues VALUES (3062, 2, 46, 'Mobile - Fix lỗi cấu hình để phù hợp với IOS và Android.', 'Nhờ anh Ngọc giúp đỡ.... đang fix.', '2020-12-01', NULL, 5, 10, 2, 65, 10, 6, '2020-12-01 09:12:44+07', '2020-12-05 18:23:06+07', '2020-12-01', 100, NULL, NULL, 3062, 1, 2, false, '2020-12-05 18:23:06+07');
INSERT INTO public.issues VALUES (3063, 2, 46, 'Mobile - Thêm quy đổi đơn vị trong thêm mới sản phẩm.', '', '2020-12-11', NULL, 5, 10, 2, 68, 10, 12, '2020-12-01 09:13:20+07', '2020-12-14 11:17:14+07', '2020-12-11', 100, NULL, NULL, 3063, 1, 2, false, '2020-12-14 11:17:14+07');
INSERT INTO public.issues VALUES (3064, 2, 46, 'Mobile - Thêm popup chọn đơn vị sản phẩm trong tạo đơn hàng.', '', '2020-12-21', NULL, 5, 10, 2, 78, 10, 13, '2020-12-01 09:14:37+07', '2020-12-26 16:44:16+07', '2020-12-21', 0, NULL, NULL, 3064, 1, 2, false, '2020-12-26 16:44:16+07');
INSERT INTO public.issues VALUES (3065, 2, 46, 'Mobile - Thêm popup lựa chọn khuyến mãi trong tạo đơn hàng.', '', '2020-12-21', NULL, 5, 10, 2, 78, 10, 13, '2020-12-01 09:15:15+07', '2020-12-26 16:44:16+07', '2020-12-21', 0, NULL, NULL, 3065, 1, 2, false, '2020-12-26 16:44:16+07');
INSERT INTO public.issues VALUES (3066, 1, 46, 'Mobile - Fix lỗi điều hướng quay lại do nâng cấp phiên bản.', '', '2020-11-30', NULL, 5, 10, 2, 65, 10, 4, '2020-12-01 10:13:01+07', '2020-12-05 18:23:06+07', '2020-11-30', 100, NULL, NULL, 3066, 1, 2, false, '2020-12-05 18:23:06+07');
INSERT INTO public.issues VALUES (3067, 1, 46, 'Mobile - Fix component thời gian do nâng cấp phiên bản.', 'Lỗi cả Radio, cả Select.', '2020-12-01', NULL, 5, 10, 2, 65, 10, 4, '2020-12-01 10:13:46+07', '2020-12-05 18:23:06+07', '2020-12-01', 100, NULL, NULL, 3067, 1, 2, false, '2020-12-05 18:23:06+07');
INSERT INTO public.issues VALUES (3068, 2, 46, 'Tạo giao diện đặt bàn', '', '2020-12-01', NULL, 5, 39, 2, 65, 39, 3, '2020-12-01 13:51:31+07', '2020-12-05 18:23:06+07', '2020-12-01', 100, NULL, NULL, 3068, 1, 2, false, '2020-12-05 18:23:06+07');
INSERT INTO public.issues VALUES (3254, 3, 48, 'Danh mục danh hiệu', '', '2020-12-09', NULL, 3, 9, 2, NULL, 15, 2, '2020-12-09 13:51:23+07', '2020-12-16 13:57:05+07', '2020-12-09', 100, NULL, 3240, 3077, 141, 142, false, NULL);
INSERT INTO public.issues VALUES (3069, 2, 48, 'Thêm chức năng thêm sửa xóa trong danh sách cán bộ nghỉ hưu', '', '2020-12-01', NULL, 3, NULL, 2, NULL, 17, 2, '2020-12-01 15:10:34+07', '2020-12-02 09:36:03+07', '2020-12-01', 100, NULL, 2979, 2412, 105, 106, false, NULL);
INSERT INTO public.issues VALUES (3070, 1, 46, 'Sai component thời gian "tuần này", "tuần trước" và "7 ngày qua" của tất cả báo cáo ', '', '2020-12-02', NULL, 5, 8, 2, 65, 40, 5, '2020-12-01 15:25:57+07', '2020-12-05 18:23:06+07', '2020-12-01', 100, NULL, NULL, 3070, 1, 2, false, '2020-12-05 18:23:06+07');
INSERT INTO public.issues VALUES (3071, 1, 46, 'Sai component thời gian "Tuần này", "Tuần trước" của danh sách đơn hàng', '', '2020-12-01', NULL, 5, 8, 2, 65, 40, 6, '2020-12-01 15:36:33+07', '2020-12-05 18:23:07+07', '2020-12-01', 100, NULL, NULL, 3071, 1, 2, false, '2020-12-05 18:23:07+07');
INSERT INTO public.issues VALUES (3072, 2, 46, 'API tạo công nợ Nhà cung cấp', '', '2020-12-03', NULL, 5, 41, 2, 65, 41, 4, '2020-12-01 15:46:42+07', '2020-12-05 18:23:07+07', '2020-12-02', 100, NULL, NULL, 3072, 1, 2, false, '2020-12-05 18:23:07+07');
INSERT INTO public.issues VALUES (3073, 2, 46, 'API điều chỉnh công nợ ', '', '2020-12-02', NULL, 5, 41, 2, 65, 41, 2, '2020-12-01 15:47:44+07', '2020-12-05 18:23:07+07', '2020-12-02', 100, NULL, NULL, 3073, 1, 2, false, '2020-12-05 18:23:07+07');
INSERT INTO public.issues VALUES (3074, 2, 48, 'Danh mục phụ cấp đơn vị', '', '2020-12-01', NULL, 3, 15, 2, NULL, 15, 4, '2020-12-01 17:00:00+07', '2020-12-01 17:01:32+07', '2020-12-01', 100, NULL, 2907, 2412, 122, 123, false, NULL);
INSERT INTO public.issues VALUES (3075, 2, 46, 'Mobile - Báo cáo công nợ nhà cung cấp.', '', '2020-12-29', NULL, 5, 10, 2, 78, 10, 20, '2020-12-02 08:30:31+07', '2021-01-04 13:21:49+07', '2020-12-29', 100, NULL, NULL, 3075, 1, 2, false, '2021-01-04 13:21:49+07');
INSERT INTO public.issues VALUES (3076, 1, 46, 'Mobile - Fix giao diện thêm sản phẩm do lỗi update phiên bản.', '', '2020-12-02', NULL, 5, 10, 2, 65, 10, 7, '2020-12-02 08:49:03+07', '2020-12-05 18:23:07+07', '2020-12-02', 100, NULL, NULL, 3076, 1, 2, false, '2020-12-05 18:23:07+07');
INSERT INTO public.issues VALUES (3077, 3, 48, 'CẬP NHẬT -  LỖI', '', '2020-12-09', NULL, 1, 9, 2, NULL, 15, 44, '2020-12-02 10:31:09+07', '2020-12-16 14:01:42+07', '2020-12-02', 91, NULL, NULL, 3077, 1, 152, false, NULL);
INSERT INTO public.issues VALUES (3078, 1, 46, 'Báo cáo trả hàng chưa xem được kết quả', '', '2020-12-02', NULL, 5, 41, 2, 65, 40, 3, '2020-12-02 10:56:57+07', '2020-12-05 18:23:07+07', '2020-12-02', 100, NULL, NULL, 3078, 1, 2, false, '2020-12-05 18:23:07+07');
INSERT INTO public.issues VALUES (3079, 2, 46, 'Sửa API mua hàng thêm công nợ nhà cung cấp', '', '2020-12-02', NULL, 5, 41, 2, 65, 41, 3, '2020-12-02 11:13:53+07', '2020-12-05 18:23:07+07', '2020-12-02', 100, NULL, NULL, 3079, 1, 2, false, '2020-12-05 18:23:07+07');
INSERT INTO public.issues VALUES (3080, 2, 46, 'Api BC Sản lượng bán hàng theo khách hàng', '', '2021-01-04', NULL, 5, 41, 2, 81, 40, 19, '2020-12-02 14:12:10+07', '2021-01-12 08:26:44+07', '2021-01-04', 100, NULL, NULL, 3080, 1, 2, false, '2021-01-12 08:26:44+07');
INSERT INTO public.issues VALUES (3081, 2, 46, 'Api BC Công nợ phải thu khách hàng', '', '2020-12-21', NULL, 5, 41, 2, 72, 40, 14, '2020-12-02 14:12:40+07', '2020-12-26 16:34:42+07', '2020-12-21', 100, NULL, NULL, 3081, 1, 2, false, '2020-12-26 16:34:42+07');
INSERT INTO public.issues VALUES (3082, 2, 46, 'Api BC công nợ phải thu nhà cung cấp', '', '2020-12-21', NULL, 5, 41, 2, 79, 40, 17, '2020-12-02 14:13:16+07', '2021-01-04 13:22:55+07', '2020-12-21', 100, NULL, NULL, 3082, 1, 2, false, '2021-01-04 13:22:55+07');
INSERT INTO public.issues VALUES (3083, 1, 46, 'Test số lượng khuyến mãi khi trả hàng', '', '2020-12-07', NULL, 5, 40, 2, 67, 40, 4, '2020-12-02 14:18:35+07', '2020-12-07 10:14:28+07', '2020-12-07', 0, NULL, NULL, 3083, 1, 2, false, '2020-12-07 10:14:28+07');
INSERT INTO public.issues VALUES (3084, 1, 46, 'Test component thời gian', '- Tất cả báo cáo
- Danh sách đơn hàng', '2020-12-03', NULL, 5, 40, 2, 65, 40, 4, '2020-12-02 14:20:05+07', '2020-12-05 18:23:07+07', '2020-12-03', 100, NULL, NULL, 3084, 1, 2, false, '2020-12-05 18:23:07+07');
INSERT INTO public.issues VALUES (3085, 2, 46, 'Công nợ Khách hàng - Điều chỉnh', '', '2020-12-03', NULL, 5, 39, 2, 65, 39, 3, '2020-12-02 14:58:44+07', '2020-12-05 18:23:07+07', '2020-12-02', 100, NULL, NULL, 3085, 1, 2, false, '2020-12-05 18:23:07+07');
INSERT INTO public.issues VALUES (3086, 2, 46, 'Công nợ Khách Hàng - Thanh Toán', '', '2020-12-03', NULL, 5, 39, 2, 65, 39, 3, '2020-12-02 14:59:13+07', '2020-12-05 18:23:07+07', '2020-12-02', 100, NULL, NULL, 3086, 1, 2, false, '2020-12-05 18:23:07+07');
INSERT INTO public.issues VALUES (3087, 2, 48, 'Tự động cập nhật thông báo sau 1 khoản thời gian', '', '2020-12-02', NULL, 3, 15, 2, NULL, 15, 2, '2020-12-02 16:27:12+07', '2020-12-02 16:27:31+07', '2020-12-02', 100, NULL, 2896, 2412, 144, 145, false, NULL);
INSERT INTO public.issues VALUES (3088, 1, 46, 'Danh mục SP - bỏ radio thành phẩm và dịch vụ', '', '2020-12-04', NULL, 5, 39, 2, 65, 40, 3, '2020-12-03 08:32:27+07', '2020-12-05 18:23:07+07', '2020-12-04', 100, NULL, NULL, 3088, 1, 2, false, '2020-12-05 18:23:07+07');
INSERT INTO public.issues VALUES (3089, 1, 46, 'Sửa nút In phiếu trong chi tiết đơn hàng đã hoàn thành sang màu xanh', '', '2020-12-05', NULL, 5, 39, 2, 65, 40, 4, '2020-12-03 08:38:29+07', '2020-12-05 18:23:07+07', '2020-12-05', 100, NULL, NULL, 3089, 1, 2, false, '2020-12-05 18:23:07+07');
INSERT INTO public.issues VALUES (3090, 1, 46, 'Chuyển thành báo cáo xuất hàng theo nhân viên', '![](clipboard-202012050854-aco5l.png)
', '2020-12-07', NULL, 5, 40, 2, 67, 40, 7, '2020-12-03 09:18:35+07', '2020-12-08 09:48:11+07', '2020-12-07', 0, NULL, NULL, 3090, 1, 2, false, '2020-12-08 09:48:11+07');
INSERT INTO public.issues VALUES (3091, 2, 46, 'Tạo đơn hàng - tính công nợ cho khách', '', '2020-12-04', NULL, 5, 8, 2, 65, 40, 4, '2020-12-03 09:38:34+07', '2020-12-05 18:23:08+07', '2020-12-03', 100, NULL, NULL, 3091, 1, 2, false, '2020-12-05 18:23:08+07');
INSERT INTO public.issues VALUES (3092, 1, 46, 'Test Phiếu nhập hàng', '', '2020-12-07', NULL, 5, 40, 2, 67, 40, 5, '2020-12-03 10:28:51+07', '2020-12-07 10:14:28+07', '2020-12-07', 0, NULL, NULL, 3092, 1, 2, false, '2020-12-07 10:14:28+07');
INSERT INTO public.issues VALUES (3093, 1, 46, 'Test chi tiết đơn hàng hoàn thành', '', '2020-12-04', NULL, 5, 40, 2, 65, 40, 4, '2020-12-03 10:29:42+07', '2020-12-05 18:23:08+07', '2020-12-03', 100, NULL, NULL, 3093, 1, 2, false, '2020-12-05 18:23:08+07');
INSERT INTO public.issues VALUES (3094, 1, 46, 'Chưa áp dụng được chương trình khuyến mãi vào tạo đơn hàng', '', '2020-12-04', NULL, 5, 8, 2, 65, 40, 1, '2020-12-03 11:06:28+07', '2020-12-03 11:07:02+07', '2020-12-03', 0, NULL, NULL, 3094, 1, 2, false, '2020-12-03 11:07:02+07');
INSERT INTO public.issues VALUES (3095, 1, 46, 'Test tạo đơn hàng áp dụng chương trình khuyến mãi', '', '2020-12-04', NULL, 5, 40, 2, 65, 40, 4, '2020-12-03 11:08:23+07', '2020-12-05 18:23:08+07', '2020-12-03', 100, NULL, NULL, 3095, 1, 2, false, '2020-12-05 18:23:08+07');
INSERT INTO public.issues VALUES (3096, 1, 46, 'Test trả hàng', '', '2020-12-04', NULL, 5, 40, 2, 65, 40, 4, '2020-12-03 11:08:37+07', '2020-12-05 18:23:08+07', '2020-12-03', 100, NULL, NULL, 3096, 1, 2, false, '2020-12-05 18:23:08+07');
INSERT INTO public.issues VALUES (3097, 1, 46, 'Mobile - Fix lỗi giao diện tạo đơn hàng do update phiên bản.', '', '2020-12-03', NULL, 5, 10, 2, 65, 10, 4, '2020-12-03 11:23:14+07', '2020-12-05 18:23:08+07', '2020-12-03', 100, NULL, NULL, 3097, 1, 2, false, '2020-12-05 18:23:08+07');
INSERT INTO public.issues VALUES (3098, 1, 46, 'Sai đơn vị tính khi xuất hàng', '', '2020-12-03', NULL, 5, 41, 2, 65, 40, 6, '2020-12-03 13:54:14+07', '2020-12-05 18:23:08+07', '2020-12-03', 100, NULL, NULL, 3098, 1, 2, false, '2020-12-05 18:23:08+07');
INSERT INTO public.issues VALUES (3100, 2, 46, 'Thêm đơn vị tính cho báo cáo hàng hóa', '', '2020-12-09', NULL, 5, 41, 2, 67, 40, 6, '2020-12-03 14:47:42+07', '2020-12-14 11:17:37+07', '2020-12-09', 100, NULL, NULL, 3100, 1, 2, false, '2020-12-14 11:17:37+07');
INSERT INTO public.issues VALUES (3101, 1, 46, 'Chưa có mẫu báo cáo của phiếu nhập hàng', '', '2020-12-15', NULL, 5, 5, 2, 69, 40, 10, '2020-12-03 15:08:11+07', '2020-12-21 08:10:07+07', '2020-12-15', 100, NULL, NULL, 3101, 1, 2, false, '2020-12-21 08:10:07+07');
INSERT INTO public.issues VALUES (3102, 1, 46, 'Test đơn vị tính', '- Phiếu xuất hàng, phiếu giao nhận và thành toán
- báo cáo hàng hóa
', '2020-12-07', NULL, 5, 40, 2, 67, 40, 4, '2020-12-03 15:10:43+07', '2020-12-07 10:14:28+07', '2020-12-07', 0, NULL, NULL, 3102, 1, 2, false, '2020-12-07 10:14:28+07');
INSERT INTO public.issues VALUES (3103, 1, 46, 'Sai số lượng khuyến mãi khi trả hàng', '', '2020-12-03', NULL, 5, 8, 2, 65, 40, 4, '2020-12-03 15:13:12+07', '2020-12-05 18:23:08+07', '2020-12-03', 100, NULL, NULL, 3103, 1, 2, false, '2020-12-05 18:23:08+07');
INSERT INTO public.issues VALUES (3104, 2, 42, 'Cấu hình báo cáo', '', '2020-12-05', NULL, 5, 12, 2, 64, 19, 2, '2020-12-03 16:39:32+07', '2020-12-16 15:43:40+07', '2020-12-03', 100, NULL, NULL, 3104, 1, 2, false, '2020-12-16 15:43:40+07');
INSERT INTO public.issues VALUES (3105, 1, 46, 'Bảng kê hàng hóa mua vào - Sai bố cục khi tải file excel', '', '2020-12-04', NULL, 5, 41, 2, 65, 40, 5, '2020-12-03 16:53:36+07', '2020-12-05 18:23:08+07', '2020-12-03', 100, NULL, NULL, 3105, 1, 2, false, '2020-12-05 18:23:08+07');
INSERT INTO public.issues VALUES (3106, 1, 46, 'Bảng kê chi tiết -Rút ngắn khoảng cách nội dung đơn hàng, số hóa đơn, loại đơn hàng, ngày HĐ', '', '2020-12-04', NULL, 5, 40, 2, 65, 40, 5, '2020-12-03 17:02:35+07', '2020-12-05 18:23:08+07', '2020-12-03', 100, NULL, NULL, 3106, 1, 2, false, '2020-12-05 18:23:08+07');
INSERT INTO public.issues VALUES (3107, 1, 46, 'Sản lượng bán tổng hợp - sai bố cục khi tải file excel', '', '2020-12-04', NULL, 5, 40, 2, 65, 40, 5, '2020-12-03 17:05:55+07', '2020-12-05 18:23:08+07', '2020-12-03', 100, NULL, NULL, 3107, 1, 2, false, '2020-12-05 18:23:08+07');
INSERT INTO public.issues VALUES (3108, 1, 46, 'Lợi nhuận theo đơn hàng - Sai bố cục khi tải file excel', '', '2020-12-04', NULL, 5, 40, 2, 65, 40, 5, '2020-12-03 17:07:48+07', '2020-12-05 18:23:08+07', '2020-12-03', 100, NULL, NULL, 3108, 1, 2, false, '2020-12-05 18:23:08+07');
INSERT INTO public.issues VALUES (3109, 1, 46, 'BC trả hàng - Sai bố cục khi tải file excel', '', '2020-12-04', NULL, 5, 41, 2, 65, 40, 5, '2020-12-03 17:09:26+07', '2020-12-05 18:23:08+07', '2020-12-03', 100, NULL, NULL, 3109, 1, 2, false, '2020-12-05 18:23:08+07');
INSERT INTO public.issues VALUES (3110, 5, 57, 'Nhập Liệu', '', '2020-12-07', NULL, 1, 33, 2, NULL, 33, 2, '2020-12-03 17:09:32+07', '2020-12-14 08:25:27+07', '2020-12-03', 100, NULL, 3052, 3052, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3111, 1, 46, 'BC nhập xuất tồn kho - Sai bố cục khi tải file excel', '', '2020-12-05', NULL, 5, 40, 2, 65, 40, 4, '2020-12-04 09:22:54+07', '2020-12-05 18:23:08+07', '2020-12-04', 100, NULL, NULL, 3111, 1, 2, false, '2020-12-05 18:23:08+07');
INSERT INTO public.issues VALUES (3112, 1, 46, 'Sản lượng bán hàng theo nhân viên - Sai bố cục khi tải file excel', '', '2020-12-05', NULL, 5, 40, 2, 65, 40, 4, '2020-12-04 09:23:33+07', '2020-12-05 18:23:09+07', '2020-12-04', 100, NULL, NULL, 3112, 1, 2, false, '2020-12-05 18:23:09+07');
INSERT INTO public.issues VALUES (3113, 3, 48, 'Danh sách CB-CC-VC', '', '2020-12-04', NULL, 3, NULL, 2, NULL, 9, 27, '2020-12-04 09:25:33+07', '2020-12-16 13:51:58+07', '2020-12-02', 100, NULL, 3077, 3077, 2, 69, false, NULL);
INSERT INTO public.issues VALUES (3114, 3, 48, 'Cột "giới tính" ko có dấu', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 4, '2020-12-04 09:26:08+07', '2020-12-04 15:32:15+07', '2020-12-02', 100, NULL, 3113, 3077, 3, 4, false, NULL);
INSERT INTO public.issues VALUES (3115, 3, 48, 'Canh chỉnh các tiêu đề cho chính (canh giữa)', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 4, '2020-12-04 09:26:24+07', '2020-12-04 15:32:15+07', '2020-12-02', 100, NULL, 3113, 3077, 5, 6, false, NULL);
INSERT INTO public.issues VALUES (3116, 3, 48, 'Dữ liệu trong bảng sửa thành ko in đậm để phân biệt với tiêu đề cột', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 4, '2020-12-04 09:26:36+07', '2020-12-04 15:32:15+07', '2020-12-02', 100, NULL, 3113, 3077, 7, 8, false, NULL);
INSERT INTO public.issues VALUES (3117, 3, 48, 'Thông tin chung', '', '2020-12-04', NULL, 3, NULL, 2, NULL, 9, 6, '2020-12-04 09:27:01+07', '2020-12-16 13:51:58+07', '2020-12-02', 100, NULL, 3113, 3077, 9, 18, false, NULL);
INSERT INTO public.issues VALUES (3118, 3, 48, '"Số nhà,tên đường" thiếu dấu cách', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 4, '2020-12-04 09:27:30+07', '2020-12-04 15:32:16+07', '2020-12-02', 100, NULL, 3117, 3077, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (3119, 3, 48, '"Số nhà" nên thêm tên đường vào để người dùng biết là cần nhập cả số nhà và tên đường vào', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 4, '2020-12-04 09:27:40+07', '2020-12-04 15:32:16+07', '2020-12-02', 100, NULL, 3117, 3077, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (3120, 3, 48, '"Mã số BHXH" trong khung chứa thông tin sửa lại bhxh thành BHXH cho khớp', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 4, '2020-12-04 09:27:57+07', '2020-12-04 15:32:16+07', '2020-12-02', 100, NULL, 3117, 3077, 14, 15, false, NULL);
INSERT INTO public.issues VALUES (3121, 3, 48, '"Ghi chú" sửa lại thêm dấu cho đúng chính tả', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 4, '2020-12-04 09:28:26+07', '2020-12-04 15:32:17+07', '2020-12-02', 100, NULL, 3117, 3077, 16, 17, false, NULL);
INSERT INTO public.issues VALUES (3122, 3, 48, 'Biên chế, chức vụ, ngạch bậc', '', '2020-12-04', NULL, 3, NULL, 2, NULL, 9, 4, '2020-12-04 09:29:27+07', '2020-12-16 13:51:58+07', '2020-12-02', 100, NULL, 3113, 3077, 19, 24, false, NULL);
INSERT INTO public.issues VALUES (3123, 3, 48, 'Các trường thời gian đang là mm/dd/yy, nên sửa lại dd/mm/yy ', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 3, '2020-12-04 09:30:08+07', '2020-12-04 15:38:24+07', '2020-12-02', 100, NULL, 3122, 3077, 20, 21, false, NULL);
INSERT INTO public.issues VALUES (3124, 3, 48, 'chức năng Tìm kiếm ko có tác dụng (gõ 1 tên tìm kiếm nhưng vẫn hiện ra tất cả các tên có trong bảng)', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 3, '2020-12-04 09:30:23+07', '2020-12-04 15:38:25+07', '2020-12-02', 100, NULL, 3122, 3077, 22, 23, false, NULL);
INSERT INTO public.issues VALUES (3125, 3, 48, 'Khen thưởng, kỷ luật', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 7, '2020-12-04 09:30:57+07', '2020-12-04 15:37:13+07', '2020-12-02', 100, NULL, 3113, 3077, 25, 38, false, NULL);
INSERT INTO public.issues VALUES (3126, 3, 48, 'Thêm mới khen thưởng - trường "Thời gian kết thúc" ko nên cho là trường ràng buộc vì có nhiều dạng khen thưởng ko có thời gian kết thúc ví dụ tặng bằng khen', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:31:22+07', '2020-12-04 15:37:13+07', '2020-12-02', 100, NULL, 3125, 3077, 26, 27, false, NULL);
INSERT INTO public.issues VALUES (3127, 3, 48, 'Thêm mới khen thưởng - trường "Hình thức kỷ luật" sửa lại là "Hình thức khen thưởng"', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:31:35+07', '2020-12-04 15:37:14+07', '2020-12-02', 100, NULL, 3125, 3077, 28, 29, false, NULL);
INSERT INTO public.issues VALUES (3128, 3, 48, 'Thêm mới khen thưởng - trường "Văn bản kèm theo" nên để biểu tượng tải file lên ở cuối khung để giống với các trường tải văn bản có trong hệ thống', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:31:45+07', '2020-12-04 15:37:14+07', '2020-12-02', 100, NULL, 3125, 3077, 30, 31, false, NULL);
INSERT INTO public.issues VALUES (3129, 3, 48, 'Thêm mới khen thưởng - bấm nút "Xác nhận" ko lưu lại dữ liệu đã nhập', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:31:56+07', '2020-12-04 15:37:14+07', '2020-12-02', 100, NULL, 3125, 3077, 32, 33, false, NULL);
INSERT INTO public.issues VALUES (3130, 3, 48, 'Thêm mới kỷ luật - chức năng Tìm kiếm ko có tác dụng (gõ 1 tên tìm kiếm nhưng vẫn hiện ra tất cả các tên có trong bảng)', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:32:11+07', '2020-12-04 15:37:14+07', '2020-12-02', 100, NULL, 3125, 3077, 34, 35, false, NULL);
INSERT INTO public.issues VALUES (3131, 3, 48, 'Canh chỉnh các tiêu đề cho chính (canh giữa)', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:32:24+07', '2020-12-04 15:37:15+07', '2020-12-02', 100, NULL, 3125, 3077, 36, 37, false, NULL);
INSERT INTO public.issues VALUES (3132, 3, 48, 'Bồi dưỡng nghiệp vụ và chuyên môn', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 4, '2020-12-04 09:33:05+07', '2020-12-04 15:37:15+07', '2020-12-02', 100, NULL, 3113, 3077, 39, 46, false, NULL);
INSERT INTO public.issues VALUES (3133, 3, 48, 'Có 2 bảng nhưng ko bảng nào có tên của bảng', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:33:26+07', '2020-12-04 15:37:15+07', '2020-12-02', 100, NULL, 3132, 3077, 40, 41, false, NULL);
INSERT INTO public.issues VALUES (3134, 3, 48, 'Khi thêm mới dữ liệu trong 1 bảng, bấm thoát rồi vào lại thì cả 2 bảng đều cập nhật dữ liệu giống với nhau (đây có phải là bị thừa 1 bảng)', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:33:41+07', '2020-12-04 15:37:16+07', '2020-12-02', 100, NULL, 3132, 3077, 42, 43, false, NULL);
INSERT INTO public.issues VALUES (3135, 3, 48, 'Dữ liệu được thêm vào bảng ko theo thứ tự nhập trước rồi mới đến dữ liệu nhập sau mà sắp xếp lộn xộn', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:33:52+07', '2020-12-04 15:37:16+07', '2020-12-02', 100, NULL, 3132, 3077, 44, 45, false, NULL);
INSERT INTO public.issues VALUES (3136, 3, 48, 'Thân nhân', '', '2020-12-04', NULL, 3, NULL, 2, NULL, 9, 5, '2020-12-04 09:35:45+07', '2020-12-16 13:51:58+07', '2020-12-02', 100, NULL, 3113, 3077, 47, 54, false, NULL);
INSERT INTO public.issues VALUES (3137, 3, 48, 'Canh chỉnh các tiêu đề cho chính (canh giữa)', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 2, '2020-12-04 09:36:09+07', '2020-12-04 15:33:47+07', '2020-12-02', 100, NULL, 3136, 3077, 48, 49, false, NULL);
INSERT INTO public.issues VALUES (3138, 3, 48, 'Cột "Nơi công tác, nghề nghiệp, chức vụ,..." thêm dấu cách giữa các cụm từ cho đúng chính tả', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 2, '2020-12-04 09:36:19+07', '2020-12-04 15:33:47+07', '2020-12-02', 100, NULL, 3136, 3077, 50, 51, false, NULL);
INSERT INTO public.issues VALUES (3139, 3, 48, 'chức năng Tìm kiếm ko có tác dụng (gõ 1 tên tìm kiếm nhưng vẫn hiện ra tất cả các tên có trong bảng)', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 2, '2020-12-04 09:36:34+07', '2020-12-04 15:33:48+07', '2020-12-02', 100, NULL, 3136, 3077, 52, 53, false, NULL);
INSERT INTO public.issues VALUES (3140, 3, 48, 'Công tác Đảng, Đoàn, đoàn thể khác', '', '2020-12-04', NULL, 3, NULL, 2, NULL, 9, 4, '2020-12-04 09:37:15+07', '2020-12-16 13:51:59+07', '2020-12-02', 100, NULL, 3113, 3077, 55, 60, false, NULL);
INSERT INTO public.issues VALUES (3141, 3, 48, 'Thêm dấu cách giữa các cụm từ trong tên giao diện cho đúng chính tả', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 2, '2020-12-04 09:37:50+07', '2020-12-04 15:33:48+07', '2020-12-02', 100, NULL, 3140, 3077, 56, 57, false, NULL);
INSERT INTO public.issues VALUES (3142, 3, 48, 'Canh chỉnh tiêu đề trong các bảng cho chính (canh giữa)', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 2, '2020-12-04 09:37:59+07', '2020-12-04 15:33:49+07', '2020-12-02', 100, NULL, 3140, 3077, 58, 59, false, NULL);
INSERT INTO public.issues VALUES (3143, 3, 48, 'Xóa Thông tin', 'Lỗi ko cho xóa', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 6, '2020-12-04 09:38:58+07', '2020-12-16 13:53:17+07', '2020-12-04', 100, NULL, 3113, 3077, 61, 62, false, NULL);
INSERT INTO public.issues VALUES (3144, 3, 48, 'Sửa thông tin', 'Khi sửa thông tin "Ngạch" - ra ngoài giao diện bảng Danh sách cb-cc-vc có nhân viên thì hiển thị còn nhân viên thì ko hiển thị (mặc dù đã chọn ngạch bậc rồi)', '2020-12-04', NULL, 1, NULL, 2, NULL, 9, 5, '2020-12-04 09:40:51+07', '2020-12-04 15:33:49+07', '2020-12-02', 100, NULL, 3113, 3077, 63, 68, false, NULL);
INSERT INTO public.issues VALUES (3145, 3, 48, 'Danh sách Đảng viên', '', '2020-12-04', NULL, 3, NULL, 2, NULL, 9, 3, '2020-12-04 09:41:39+07', '2020-12-16 13:51:59+07', '2020-12-02', 100, NULL, 3077, 3077, 70, 75, false, NULL);
INSERT INTO public.issues VALUES (3146, 3, 48, 'Canh chỉnh các tiêu đề cho chính (canh giữa)', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 1, '2020-12-04 09:41:54+07', '2020-12-04 15:35:00+07', '2020-12-02', 100, NULL, 3145, 3077, 71, 72, false, NULL);
INSERT INTO public.issues VALUES (3147, 3, 48, 'Dữ liệu trong bảng sửa thành ko in đậm để phân biệt với tiêu đề cột', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 1, '2020-12-04 09:42:05+07', '2020-12-04 15:35:00+07', '2020-12-02', 100, NULL, 3145, 3077, 73, 74, false, NULL);
INSERT INTO public.issues VALUES (3148, 3, 48, 'Danh sách kiêm nhiệm', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 5, '2020-12-04 09:42:31+07', '2020-12-04 15:37:16+07', '2020-12-02', 100, NULL, 3077, 3077, 76, 83, false, NULL);
INSERT INTO public.issues VALUES (3149, 3, 48, 'chức năng Tìm kiếm ko có tác dụng (gõ 1 tên tìm kiếm nhưng vẫn hiện ra tất cả các tên có trong bảng)', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:42:56+07', '2020-12-04 15:28:23+07', '2020-12-02', 100, NULL, 3148, 3077, 77, 78, false, NULL);
INSERT INTO public.issues VALUES (3150, 3, 48, 'là danh sách kiêm nhiệm nhưng tất cả thông báo thao tác thành công là "biệt phái" chứ ko phải là "kiêm nhiệm"', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:43:09+07', '2020-12-04 15:28:23+07', '2020-12-02', 100, NULL, 3148, 3077, 79, 80, false, NULL);
INSERT INTO public.issues VALUES (3151, 1, 48, 'chức năng Xóa bị sida', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 3, '2020-12-04 09:43:19+07', '2020-12-04 15:28:24+07', '2020-12-02', 100, NULL, 3148, 3077, 81, 82, false, NULL);
INSERT INTO public.issues VALUES (3152, 3, 48, 'Danh sách biệt phái', '', '2020-12-04', NULL, 3, NULL, 2, NULL, 9, 6, '2020-12-04 09:43:53+07', '2020-12-16 13:51:59+07', '2020-12-02', 100, NULL, 3077, 3077, 84, 93, false, NULL);
INSERT INTO public.issues VALUES (3153, 3, 48, 'chức năng Tìm kiếm ko có tác dụng (gõ 1 tên tìm kiếm nhưng vẫn hiện ra tất cả các tên có trong bảng)', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:44:11+07', '2020-12-04 15:28:24+07', '2020-12-02', 100, NULL, 3152, 3077, 85, 86, false, NULL);
INSERT INTO public.issues VALUES (3154, 1, 46, 'Moblie - Sửa giao diện thêm sản phẩm, chỉnh nút lưu và chọn hình ảnh.', '', '2020-12-08', NULL, 5, 10, 2, 68, 10, 9, '2020-12-04 09:44:14+07', '2020-12-14 11:17:14+07', '2020-12-07', 100, NULL, NULL, 3154, 1, 2, false, '2020-12-14 11:17:14+07');
INSERT INTO public.issues VALUES (3155, 3, 48, 'thông báo ko có văn bản đính kèm khi Tải văn bản bị sai chính tả', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:44:27+07', '2020-12-04 15:28:24+07', '2020-12-02', 100, NULL, 3152, 3077, 87, 88, false, NULL);
INSERT INTO public.issues VALUES (3156, 3, 48, 'Đối với dòng dữ liệu đã có đính kèm văn bản - chức năng tải văn bản xảy ra lỗi ở một số dòng dữ liệu, còn một số dòng lại tải được', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:44:50+07', '2020-12-04 15:28:25+07', '2020-12-02', 100, NULL, 3152, 3077, 89, 90, false, NULL);
INSERT INTO public.issues VALUES (3157, 3, 48, 'Chức năng Sửa - bấm nút "Xác nhận" ko lưu lại thông tin mới cập nhật', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:46:10+07', '2020-12-04 15:28:25+07', '2020-12-02', 100, NULL, 3152, 3077, 91, 92, false, NULL);
INSERT INTO public.issues VALUES (3158, 3, 48, 'Danh bạ', 'Dữ liệu trong bảng sửa thành ko in đậm để phân biệt với tiêu đề cột', NULL, NULL, 1, NULL, 2, NULL, 9, 0, '2020-12-04 09:47:37+07', '2020-12-04 09:47:37+07', '2020-12-04', 0, NULL, 3077, 3077, 94, 95, false, NULL);
INSERT INTO public.issues VALUES (3159, 3, 48, 'Danh mục phụ cấp ', '', '2020-12-04', NULL, 3, NULL, 2, NULL, 9, 2, '2020-12-04 09:48:32+07', '2020-12-16 13:51:59+07', '2020-12-02', 100, NULL, 3077, 3077, 96, 99, false, NULL);
INSERT INTO public.issues VALUES (3160, 3, 48, 'chức năng Xóa bị sida', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 1, '2020-12-04 09:48:58+07', '2020-12-04 15:35:00+07', '2020-12-02', 100, NULL, 3159, 3077, 97, 98, false, NULL);
INSERT INTO public.issues VALUES (3161, 3, 48, 'Danh mục phòng ban', '', '2020-12-04', NULL, 3, NULL, 2, NULL, 9, 2, '2020-12-04 09:50:03+07', '2020-12-16 13:51:59+07', '2020-12-02', 100, NULL, 3077, 3077, 100, 103, false, NULL);
INSERT INTO public.issues VALUES (3162, 1, 46, 'Mobile - Sửa background của tất cả các báo cáo.', 'Bảy nhóm báo cáo:
 - Báo cáo hàng hóa.
 - Báo cáo bán hàng.
 - Báo cáo khuyến mãi.
 - Báo cáo nhân viên.
 - Báo cáo khách hàng.
 - Báo cáo mua hàng.
 - Báo cáo nhà cung cấp.', '2020-12-08', NULL, 5, 10, 2, 68, 10, 8, '2020-12-04 09:50:03+07', '2020-12-14 11:17:14+07', '2020-12-07', 100, NULL, NULL, 3162, 1, 2, false, '2020-12-14 11:17:14+07');
INSERT INTO public.issues VALUES (3163, 2, 46, 'Mobile - Sửa các nút lưu thống nhất một kiểu cố định bên dưới.', '', '2020-12-08', NULL, 5, 10, 2, 68, 10, 6, '2020-12-04 09:50:43+07', '2020-12-08 10:35:01+07', '2020-12-07', 0, NULL, NULL, 3163, 1, 2, false, '2020-12-08 10:35:01+07');
INSERT INTO public.issues VALUES (3164, 3, 48, 'Dữ liệu trong cột "Độ ưu tiên" nên nhất quán với những modul khác cũng có cột này (ví dụ hiện tại độ ưu tiên trong phần DM trình độ dữ liệu nằm phía bên trái còn trong modul này lại nằm phía bên phải)', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 1, '2020-12-04 09:50:52+07', '2020-12-04 15:35:01+07', '2020-12-02', 100, NULL, 3161, 3077, 101, 102, false, NULL);
INSERT INTO public.issues VALUES (3165, 3, 48, 'Báo cáo danh sách cán bộ', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 3, '2020-12-04 09:51:38+07', '2020-12-04 15:37:16+07', '2020-12-02', 100, NULL, 3077, 3077, 104, 109, false, NULL);
INSERT INTO public.issues VALUES (3166, 2, 46, 'Mobile - Sửa api tạo đơn hàng.', 'Hiện tại đang không load được list sản phẩm.', '2020-12-08', NULL, 5, 10, 2, 68, 10, 8, '2020-12-04 09:51:48+07', '2020-12-14 11:17:15+07', '2020-12-07', 100, NULL, NULL, 3166, 1, 2, false, '2020-12-14 11:17:15+07');
INSERT INTO public.issues VALUES (3167, 3, 48, 'file excel tải xuống có thể để dữ liệu ở cột nào ko có thì để trống được ko? để "Không có dữ liệu" rất là rối mắt', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:51:57+07', '2020-12-04 15:37:17+07', '2020-12-02', 100, NULL, 3165, 3077, 105, 106, false, NULL);
INSERT INTO public.issues VALUES (3168, 3, 48, 'Câu lưu ý màu xanh hoặc là để "để xuất file excel báo cáo danh sách cán bộ" hoặc là để "để xuất báo cáo danh sách cán bộ"', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:52:09+07', '2020-12-04 15:37:17+07', '2020-12-02', 100, NULL, 3165, 3077, 107, 108, false, NULL);
INSERT INTO public.issues VALUES (3169, 3, 48, 'Báo cáo số lượng và chất lượng', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:52:57+07', '2020-12-04 15:37:17+07', '2020-12-02', 100, NULL, 3077, 3077, 110, 113, false, NULL);
INSERT INTO public.issues VALUES (3171, 3, 48, 'File excel - "Cộng hòa xã hội chủ nghĩa Việt Nam" sửa cho nằm về phía bên góc phải', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:53:17+07', '2020-12-04 15:37:17+07', '2020-12-02', 100, NULL, 3169, 3077, 111, 112, false, NULL);
INSERT INTO public.issues VALUES (3173, 3, 48, 'Quản lý văn bản', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:54:13+07', '2020-12-04 15:37:17+07', '2020-12-02', 100, NULL, 3077, 3077, 114, 117, false, NULL);
INSERT INTO public.issues VALUES (3174, 2, 46, 'Mobile - Tạo source cho sblue, thay api, cho phù hợp với sblue.', '', '2020-12-05', NULL, 5, 10, 2, 65, 10, 4, '2020-12-04 09:54:33+07', '2020-12-05 18:23:09+07', '2020-12-05', 100, NULL, NULL, 3174, 1, 2, false, '2020-12-05 18:23:09+07');
INSERT INTO public.issues VALUES (3175, 3, 48, 'các chức năng Thêm vb, Tìm kiếm vb, Tải vb, Xem vb đều lỗi', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:54:35+07', '2020-12-04 15:37:17+07', '2020-12-02', 100, NULL, 3173, 3077, 115, 116, false, NULL);
INSERT INTO public.issues VALUES (3176, 3, 48, 'Trang chủ', '', '2020-12-04', NULL, 3, NULL, 2, NULL, 9, 6, '2020-12-04 09:54:52+07', '2020-12-16 13:52:00+07', '2020-12-02', 100, NULL, 3077, 3077, 118, 129, false, NULL);
INSERT INTO public.issues VALUES (3177, 3, 48, 'Tổng số cán bộ là 77 nhưng trong "Danh sách CB-CC-VC" chỉ có 76 (khi thêm mới có cập nhật tăng nhưng ko hiểu tại sao ngoài trang chủ lại hiển thị nhiều hơn 1 người so với trong "Danh sách CB-CC-VC"', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:55:15+07', '2020-12-04 15:37:18+07', '2020-12-02', 100, NULL, 3176, 3077, 119, 120, false, NULL);
INSERT INTO public.issues VALUES (3178, 3, 48, 'Số cán bộ biên chế + Số cán bộ hợp đồng ko bằng Tổng số cán bộ', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:55:25+07', '2020-12-04 15:37:18+07', '2020-12-02', 100, NULL, 3176, 3077, 121, 122, false, NULL);
INSERT INTO public.issues VALUES (3179, 3, 48, 'Tổng số cán bộ thể hiện trong cửa sổ "Thống kê cán bộ loại hợp đồng trong năm nay(2020)" hiển thị ko chính xác', '', '2020-12-04', NULL, 3, 17, 2, NULL, 9, 2, '2020-12-04 09:55:37+07', '2020-12-04 15:37:18+07', '2020-12-02', 100, NULL, 3176, 3077, 123, 124, false, NULL);
INSERT INTO public.issues VALUES (3180, 3, 48, 'Phần Thông báo ko cập nhật thông tin nhân viên sắp hết hạn hợp đồng', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 1, '2020-12-04 09:55:47+07', '2020-12-04 15:35:01+07', '2020-12-02', 100, NULL, 3176, 3077, 125, 126, false, NULL);
INSERT INTO public.issues VALUES (3181, 3, 48, 'Khi sửa thông tin "Ngạch" - ra ngoài giao diện bảng Danh sách cb-cc-vc có nhân viên thì hiển thị còn nhân viên thì ko hiển thị (mặc dù đã chọn ngạch bậc rồi)', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 2, '2020-12-04 10:35:58+07', '2020-12-04 15:33:49+07', '2020-12-02', 100, NULL, 3144, 3077, 64, 65, false, NULL);
INSERT INTO public.issues VALUES (3182, 3, 48, 'Sửa thông tin 1 nhân viên đang là viên chức thành nhân viên hợp đồng (hưởng lương hợp đồng ko có ngạch bậc) lưu thông báo thành công nhưng giao diện ngoài bảng danh sách cb-cc-vc lại vẫn hiển thị ngạch bậc', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 2, '2020-12-04 10:36:12+07', '2020-12-04 15:33:49+07', '2020-12-02', 100, NULL, 3144, 3077, 66, 67, false, NULL);
INSERT INTO public.issues VALUES (3183, 3, 48, 'thêm nhân viên hợp đồng nhưng phần "Số cán bộ hợp đồng" ko tăng lên', '', '2020-12-04', NULL, 3, 15, 2, NULL, 9, 1, '2020-12-04 10:39:46+07', '2020-12-04 15:35:01+07', '2020-12-02', 100, NULL, 3176, 3077, 127, 128, false, NULL);
INSERT INTO public.issues VALUES (3184, 1, 46, 'Mobile - Sửa giao diện phiếu nhập kho.', '', '2020-12-08', NULL, 5, 10, 2, 68, 10, 8, '2020-12-04 14:43:13+07', '2020-12-14 11:17:15+07', '2020-12-07', 100, NULL, NULL, 3184, 1, 2, false, '2020-12-14 11:17:15+07');
INSERT INTO public.issues VALUES (3185, 2, 46, 'Mobile - Đổi giao diện toàn bộ báo cáo - Hiển thị tất cả mối quan tâm.', 'Gồm bảy nhóm báo cáo.', '2020-12-15', NULL, 5, 10, 2, 70, 10, 7, '2020-12-04 15:44:37+07', '2020-12-15 15:08:30+07', '2020-12-15', 0, NULL, NULL, 3185, 1, 2, false, '2020-12-15 15:08:30+07');
INSERT INTO public.issues VALUES (3186, 2, 46, 'Mobile - Đổi giao diện toàn bộ báo cáo - Từ mối quan tâm xem chi tiết báo cáo.', 'Trên giao diện gồm component thời gian, tới list thông tin, cuối trang để tổng doanh thu hoặc ... đứng yên kể cả khi lướt list.', '2020-12-15', NULL, 5, 10, 2, 70, 10, 7, '2020-12-04 15:46:37+07', '2020-12-15 15:08:30+07', '2020-12-15', 0, NULL, NULL, 3186, 1, 2, false, '2020-12-15 15:08:30+07');
INSERT INTO public.issues VALUES (3187, 2, 46, 'Mobile - Sửa component thời gian, từ ngày đến ngày, thêm nút filter hiển thị popup lựa chọn thời gian.', '', '2020-12-18', NULL, 5, 10, 2, 70, 10, 11, '2020-12-04 15:47:34+07', '2020-12-26 16:10:31+07', '2020-12-18', 100, NULL, NULL, 3187, 1, 2, false, '2020-12-26 16:10:31+07');
INSERT INTO public.issues VALUES (3188, 2, 46, 'Công nợ Nhà cung cấp - Điều chỉnh', '', '2020-12-04', NULL, 5, 39, 2, 65, 39, 2, '2020-12-04 16:15:35+07', '2020-12-05 18:23:09+07', '2020-12-04', 100, NULL, NULL, 3188, 1, 2, false, '2020-12-05 18:23:09+07');
INSERT INTO public.issues VALUES (3189, 2, 46, 'Công nợ Nhà cung cấp - Thanh toán', '', '2020-12-04', NULL, 5, 39, 2, 65, 39, 3, '2020-12-04 16:15:52+07', '2020-12-05 18:23:09+07', '2020-12-04', 100, NULL, NULL, 3189, 1, 2, false, '2020-12-05 18:23:09+07');
INSERT INTO public.issues VALUES (3190, 2, 46, 'Thêm trường Tiền trả NCC vào tạo, sửa, xem phiếu mua hàng', '', '2020-12-04', NULL, 5, 39, 2, 65, 39, 2, '2020-12-04 16:16:33+07', '2020-12-05 18:23:09+07', '2020-12-04', 100, NULL, NULL, 3190, 1, 2, false, '2020-12-05 18:23:09+07');
INSERT INTO public.issues VALUES (3191, 1, 46, 'Thêm sản phẩm - Thông báo lỗi khi để trống NCC', '', '2020-12-05', NULL, 5, 39, 2, 65, 40, 3, '2020-12-04 16:23:57+07', '2020-12-05 18:23:09+07', '2020-12-04', 100, NULL, NULL, 3191, 1, 2, false, '2020-12-05 18:23:09+07');
INSERT INTO public.issues VALUES (3192, 1, 46, 'Thêm đơn vị quy đổi cho thông tin sản phẩm', '', '2020-12-05', NULL, 5, 8, 2, 65, 40, 4, '2020-12-04 16:41:15+07', '2020-12-05 18:23:09+07', '2020-12-04', 100, NULL, NULL, 3192, 1, 2, false, '2020-12-05 18:23:09+07');
INSERT INTO public.issues VALUES (3193, 1, 46, 'Thêm đơn vị tính cho thẻ kho và tồn kho', '', '2020-12-05', NULL, 5, 41, 2, 65, 40, 3, '2020-12-04 16:44:22+07', '2020-12-05 18:23:09+07', '2020-12-04', 100, NULL, NULL, 3193, 1, 2, false, '2020-12-05 18:23:09+07');
INSERT INTO public.issues VALUES (3194, 1, 46, 'Thiết lập giá - tăng 5.000 cho giá đề xuất và giá bán', '', '2020-12-05', NULL, 5, 41, 2, 65, 40, 2, '2020-12-05 08:41:29+07', '2020-12-07 10:10:15+07', '2020-12-05', 100, NULL, NULL, 3194, 1, 2, false, '2020-12-07 10:10:15+07');
INSERT INTO public.issues VALUES (3195, 2, 42, 'Fix: Cài đặt tài khoản', '', '2020-12-07', NULL, 5, 37, 2, 64, 38, 3, '2020-12-05 08:51:41+07', '2020-12-16 15:43:40+07', '2020-12-07', 100, NULL, NULL, 3195, 1, 2, false, '2020-12-16 15:43:40+07');
INSERT INTO public.issues VALUES (3196, 2, 42, 'Fix:  Cấu hình danh mục hành chính', '', '2020-12-07', NULL, 5, 37, 2, 64, 38, 3, '2020-12-05 08:52:30+07', '2020-12-16 15:43:41+07', '2020-12-07', 100, NULL, NULL, 3196, 1, 2, false, '2020-12-16 15:43:41+07');
INSERT INTO public.issues VALUES (3197, 2, 42, 'Cấp tài khoản tự đông cho danh mục hành chính', '', '2020-12-07', NULL, 5, 37, 2, 64, 38, 3, '2020-12-05 08:53:12+07', '2020-12-16 15:43:41+07', '2020-12-07', 100, NULL, NULL, 3197, 1, 2, false, '2020-12-16 15:43:41+07');
INSERT INTO public.issues VALUES (3198, 2, 42, 'Create API: Download report.', '', NULL, NULL, 5, 38, 2, 66, 38, 4, '2020-12-05 08:55:21+07', '2020-12-16 15:43:47+07', '2020-12-05', 100, NULL, NULL, 3198, 1, 2, false, '2020-12-16 15:43:47+07');
INSERT INTO public.issues VALUES (3199, 1, 46, 'Sai số lượng xuất hàng khi mua sản phẩm khuyến mãi cùng loại', '![](clipboard-202012050927-ayq8s.png)
', '2020-12-07', NULL, 5, 39, 2, 67, 40, 7, '2020-12-05 09:26:27+07', '2020-12-11 13:57:34+07', '2020-12-07', 100, NULL, NULL, 3199, 1, 2, false, '2020-12-11 13:57:34+07');
INSERT INTO public.issues VALUES (3200, 2, 46, 'Mức lợi nhuận trong thiết lập giá thêm lựa chọn VNĐ', '', '2020-12-05', NULL, 5, 8, 2, 65, 8, 3, '2020-12-05 09:40:38+07', '2020-12-05 18:23:09+07', '2020-12-05', 100, NULL, NULL, 3200, 1, 2, false, '2020-12-05 18:23:09+07');
INSERT INTO public.issues VALUES (3201, 1, 46, 'Sai giá vốn đơn vị tính quy đổi', '', '2020-12-05', NULL, 5, 8, 2, 65, 40, 4, '2020-12-05 09:51:13+07', '2020-12-05 18:23:10+07', '2020-12-05', 100, NULL, NULL, 3201, 1, 2, false, '2020-12-05 18:23:10+07');
INSERT INTO public.issues VALUES (3202, 1, 46, 'Số tiền khách nợ trong đơn trả hàng sai', '', '2020-12-05', NULL, 5, 8, 2, 65, 40, 4, '2020-12-05 10:53:32+07', '2020-12-05 18:23:10+07', '2020-12-05', 100, NULL, NULL, 3202, 1, 2, false, '2020-12-05 18:23:10+07');
INSERT INTO public.issues VALUES (3203, 1, 46, 'Cập nhật ngày thanh tóan công nợ', '', '2020-12-05', NULL, 5, 41, 2, 65, 40, 3, '2020-12-05 11:38:07+07', '2020-12-05 18:23:10+07', '2020-12-05', 100, NULL, NULL, 3203, 1, 2, false, '2020-12-05 18:23:10+07');
INSERT INTO public.issues VALUES (3204, 4, 32, 'Hỗ trợ WAD', '- Chỉnh sửa và điều chỉnh kích thước logo phù hợp mobile.
- Thiết kế giao diện CH Play cho WAD.', '2020-12-05', NULL, 1, 14, 2, NULL, 14, 0, '2020-12-05 13:17:45+07', '2020-12-05 13:17:45+07', '2020-12-04', 100, NULL, NULL, 3204, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3205, 1, 46, 'Khi thêm mới một nhóm sản phẩm không tự động load vào chức năng thêm danh mục', '', '2020-12-07', NULL, 5, 39, 2, 67, 40, 9, '2020-12-07 09:35:54+07', '2020-12-11 13:57:34+07', '2020-12-07', 100, NULL, NULL, 3205, 1, 2, false, '2020-12-11 13:57:34+07');
INSERT INTO public.issues VALUES (3206, 1, 46, 'Không lưu được bảng giá cho sản phẩm ', '', '2020-12-08', NULL, 5, 8, 2, 67, 40, 3, '2020-12-07 10:48:48+07', '2020-12-11 13:57:35+07', '2020-12-07', 100, NULL, NULL, 3206, 1, 2, false, '2020-12-11 13:57:35+07');
INSERT INTO public.issues VALUES (3207, 1, 46, 'Thêm cột Đang treo trên đơn hàng ở danh sách sản phẩm khi tạo phiếu nhập hàng', '', '2020-12-08', NULL, 5, 39, 2, 67, 40, 5, '2020-12-07 13:27:41+07', '2020-12-11 13:57:35+07', '2020-12-08', 100, NULL, NULL, 3207, 1, 2, false, '2020-12-11 13:57:35+07');
INSERT INTO public.issues VALUES (3208, 1, 46, 'Không tìm kiếm được trong danh sách nhà cung cấp', '', '2020-12-07', NULL, 5, 39, 2, 67, 40, 3, '2020-12-07 13:29:40+07', '2020-12-11 13:57:35+07', '2020-12-07', 100, NULL, NULL, 3208, 1, 2, false, '2020-12-11 13:57:35+07');
INSERT INTO public.issues VALUES (3209, 1, 46, 'Nợ hiện tại của nhà cung cấp sai so với số tiền đã thanh toán', '', '2020-12-07', NULL, 5, 39, 2, 67, 40, 4, '2020-12-07 13:36:21+07', '2020-12-11 13:57:35+07', '2020-12-07', 100, NULL, NULL, 3209, 1, 2, false, '2020-12-11 13:57:35+07');
INSERT INTO public.issues VALUES (3210, 1, 46, 'Chưa xuất đúng số lượng sản phẩm được khuyến mãi cùng loại', '', '2020-12-07', NULL, 5, 39, 2, 67, 40, 4, '2020-12-07 13:48:52+07', '2020-12-08 15:13:24+07', '2020-12-07', 100, NULL, NULL, 3210, 1, 2, false, '2020-12-08 15:13:24+07');
INSERT INTO public.issues VALUES (3211, 1, 46, 'Khi khách hàng thanh toán 1 phần số tiền đã mua thì trong công nợ lại trừ hết tất cả số tiền đã mua', '', '2020-12-09', NULL, 5, 41, 2, 67, 40, 2, '2020-12-07 14:16:25+07', '2020-12-11 13:57:35+07', '2020-12-08', 100, NULL, NULL, 3211, 1, 2, false, '2020-12-11 13:57:35+07');
INSERT INTO public.issues VALUES (3212, 2, 46, 'Thêm lựa chọn đơn vị tính ở chuyển kho, mua hàng; Tách sản phẩm theo đơn vị tính ở xuất hàng', '', '2020-12-07', NULL, 5, 39, 2, 67, 39, 2, '2020-12-07 15:25:42+07', '2020-12-11 13:57:35+07', '2020-12-07', 100, NULL, NULL, 3212, 1, 2, false, '2020-12-11 13:57:35+07');
INSERT INTO public.issues VALUES (3213, 2, 42, 'chuyển QuanLyBaoCaoEntities về code first', '', '2020-12-09', NULL, 5, 16, 2, 66, 16, 4, '2020-12-08 08:03:35+07', '2020-12-16 15:43:47+07', '2020-12-08', 100, NULL, NULL, 3213, 1, 2, false, '2020-12-16 15:43:47+07');
INSERT INTO public.issues VALUES (3214, 2, 42, 'Chuyển ModelManagement về code first', '', '2020-12-09', NULL, 5, 16, 2, 66, 16, 4, '2020-12-08 08:05:10+07', '2020-12-16 15:43:47+07', '2020-12-08', 100, NULL, NULL, 3214, 1, 2, false, '2020-12-16 15:43:47+07');
INSERT INTO public.issues VALUES (3215, 5, 57, 'Nhập Liệu', 'Phúc và Dũng phối hợp nhập liệu', '2020-12-08', NULL, 1, 44, 4, NULL, 33, 2, '2020-12-08 08:13:24+07', '2020-12-14 08:25:35+07', '2020-12-05', 100, NULL, 3051, 3051, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3216, 5, 57, 'Sửa FB gói 23 đồ án ngày 25/11/2020', '', '2020-12-07', NULL, 1, 32, 3, NULL, 33, 0, '2020-12-08 08:16:47+07', '2020-12-08 08:16:47+07', '2020-12-01', 100, NULL, NULL, 3216, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3217, 2, 46, 'Nhập hàng cho cả thùng/két và lon chai -- Nhập 1 thùng/ 6 chai', '', '2020-12-08', NULL, 5, 39, 2, 67, 40, 3, '2020-12-08 08:47:52+07', '2020-12-11 13:57:35+07', '2020-12-08', 100, NULL, NULL, 3217, 1, 2, false, '2020-12-11 13:57:35+07');
INSERT INTO public.issues VALUES (3218, 2, 46, 'Import dữ liệu khách hàng file mới gửi', 'Nhân viên Đặng Đình Hoàng', '2020-12-17', NULL, 5, 41, 2, 69, 40, 10, '2020-12-08 08:48:40+07', '2020-12-21 08:10:07+07', '2020-12-17', 100, NULL, NULL, 3218, 1, 2, false, '2020-12-21 08:10:07+07');
INSERT INTO public.issues VALUES (3219, 2, 46, 'Giao diện thêm/sửa/xóa chương trình khuyến mãi', 'Mua 1 thùng pepsi tặng 3 chai 7 Up -- Mua 2 thùng pepsi tặng 3 chai 7 Up và 1 hộp coca 6 chai', '2020-12-19', NULL, 5, 39, 2, 69, 40, 12, '2020-12-08 08:51:14+07', '2020-12-21 08:10:08+07', '2020-12-18', 100, NULL, NULL, 3219, 1, 2, false, '2020-12-21 08:10:08+07');
INSERT INTO public.issues VALUES (3220, 1, 46, 'Trong phiếu giao nhận và thanh toán - đơn hàng có chiết khấu nhưng không hiển thị thông tin vào cột chiết khấu', '', '2020-12-09', NULL, 5, 41, 2, 67, 40, 3, '2020-12-08 08:56:58+07', '2020-12-14 11:17:38+07', '2020-12-09', 100, NULL, NULL, 3220, 1, 2, false, '2020-12-14 11:17:38+07');
INSERT INTO public.issues VALUES (3221, 2, 46, 'Chuyển in phiếu giao hàng theo NVBH thành Báo cáo chi tiết đơn hàng theo từng nhân viên', '', '2020-12-09', NULL, 5, 40, 2, 67, 40, 9, '2020-12-08 09:01:41+07', '2020-12-11 13:57:35+07', '2020-12-08', 100, NULL, NULL, 3221, 1, 2, false, '2020-12-11 13:57:35+07');
INSERT INTO public.issues VALUES (3222, 2, 46, 'Tính tổng cộng trong báo cáo sản lượng bán hàng theo nhân viên', '', '2021-01-04', NULL, 5, 41, 2, 81, 40, 16, '2020-12-08 09:03:40+07', '2021-01-12 08:26:44+07', '2021-01-04', 100, NULL, NULL, 3222, 1, 2, false, '2021-01-12 08:26:44+07');
INSERT INTO public.issues VALUES (3255, 3, 48, 'Danh mục trình độ', '', '2020-12-09', NULL, 3, 9, 2, NULL, 15, 2, '2020-12-09 13:51:41+07', '2020-12-16 13:57:05+07', '2020-12-09', 100, NULL, 3240, 3077, 143, 144, false, NULL);
INSERT INTO public.issues VALUES (3224, 2, 46, 'Trong phiếu giao nhận và thanh toán không có chiết khấu hóa đơn', '', '2020-12-08', NULL, 5, 40, 2, 67, 40, 3, '2020-12-08 09:16:26+07', '2020-12-11 13:57:35+07', '2020-12-08', 100, NULL, NULL, 3224, 1, 2, false, '2020-12-11 13:57:35+07');
INSERT INTO public.issues VALUES (3225, 2, 46, 'Bàn có số tiền hóa đơn', '', '2020-12-08', NULL, 5, 8, 2, 67, 8, 3, '2020-12-08 09:34:17+07', '2020-12-11 13:57:36+07', '2020-12-08', 100, NULL, NULL, 3225, 1, 2, false, '2020-12-11 13:57:36+07');
INSERT INTO public.issues VALUES (3226, 2, 46, 'Điều chỉnh các trường của báo cáo Phân tích hiệu quả KM, Ngân sách KM', '', '2020-12-08', NULL, 5, 40, 2, 67, 40, 4, '2020-12-08 09:52:58+07', '2020-12-11 13:57:36+07', '2020-12-08', 100, NULL, NULL, 3226, 1, 2, false, '2020-12-11 13:57:36+07');
INSERT INTO public.issues VALUES (3227, 1, 46, 'Trong cấu hình đơn vị, thông tin của NPP Lan Thà bỏ mã số thuế', '', '2020-12-08', NULL, 5, 39, 2, 67, 40, 3, '2020-12-08 10:08:33+07', '2020-12-11 13:57:36+07', '2020-12-08', 100, NULL, NULL, 3227, 1, 2, false, '2020-12-11 13:57:36+07');
INSERT INTO public.issues VALUES (3228, 1, 46, 'Số lượng tồn ở danh sách sản phẩm trong phiếu nhập sai', '', '2020-12-09', NULL, 5, 39, 2, 67, 40, 4, '2020-12-08 14:33:07+07', '2020-12-11 13:57:36+07', '2020-12-09', 100, NULL, NULL, 3228, 1, 2, false, '2020-12-11 13:57:36+07');
INSERT INTO public.issues VALUES (3230, 1, 46, 'Trong chi tiết phiếu xuất hàng, khi tắt đơn hàng trong DS đơn hàng thì kết quả hiển thị sai', '', '2020-12-09', NULL, 5, 39, 2, 67, 40, 4, '2020-12-08 15:05:32+07', '2020-12-11 13:57:36+07', '2020-12-09', 100, NULL, NULL, 3230, 1, 2, false, '2020-12-11 13:57:36+07');
INSERT INTO public.issues VALUES (3231, 2, 46, 'Sblue - Khi tạo chọn bàn và tạo đơn tự động chuyển sang menu', '', '2020-12-09', NULL, 5, 8, 2, 67, 40, 5, '2020-12-08 16:03:32+07', '2020-12-11 13:57:36+07', '2020-12-09', 100, NULL, NULL, 3231, 1, 2, false, '2020-12-11 13:57:36+07');
INSERT INTO public.issues VALUES (3232, 1, 46, 'Sai số liệu tồn cuối quy đổi trong thẻ kho', '', '2020-12-09', NULL, 5, 41, 2, 67, 40, 3, '2020-12-08 16:12:06+07', '2020-12-14 11:17:39+07', '2020-12-09', 100, NULL, NULL, 3232, 1, 2, false, '2020-12-14 11:17:39+07');
INSERT INTO public.issues VALUES (3233, 3, 32, 'Hỗ trợ WAD (2)', 'Chỉnh sửa thông tin, thiết kế giao diện bên ngoài CH Play (WAD Mobile)', '2020-12-07', NULL, 1, 14, 2, NULL, 14, 0, '2020-12-08 16:14:15+07', '2020-12-08 16:14:15+07', '2020-12-07', 100, NULL, NULL, 3233, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3234, 1, 46, 'Sblue - khi tạo mới nhóm sản phẩm thì kết quả không tự động load khi thêm danh mục sản phẩm', '', '2020-12-10', NULL, 5, 39, 2, 67, 40, 6, '2020-12-08 16:28:13+07', '2020-12-11 13:57:36+07', '2020-12-10', 100, NULL, NULL, 3234, 1, 2, false, '2020-12-11 13:57:36+07');
INSERT INTO public.issues VALUES (3235, 5, 52, 'Sắp xếp và đánh số tờ tài liệu có thời hạn - Tài và Phương', '', '2020-12-08', NULL, 1, 34, 2, NULL, 23, 2, '2020-12-08 16:46:58+07', '2020-12-08 16:47:52+07', '2020-12-08', 90, NULL, NULL, 3235, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3236, 5, 52, 'Sắp xếp - đánh số trang tài liệu vĩnh viễn - Hương', '', '2020-12-10', NULL, 1, NULL, 2, NULL, 23, 0, '2020-12-08 16:48:56+07', '2020-12-08 16:48:56+07', '2020-12-08', 20, NULL, NULL, 3236, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3237, 5, 52, 'Phân loại tài liệu Phòng nội vụ năm 2011', '', '2020-12-10', NULL, 1, 31, 2, NULL, 23, 0, '2020-12-08 16:49:41+07', '2020-12-08 16:49:41+07', '2020-12-08', 20, NULL, NULL, 3237, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3238, 5, 52, 'Phân loại tài liệu Phòng nội vụ năm 2010 ', '', '2020-12-09', NULL, 1, 28, 2, NULL, 23, 1, '2020-12-08 16:50:26+07', '2020-12-08 16:50:34+07', '2020-12-08', 80, NULL, NULL, 3238, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3239, 5, 52, 'Biên mục tài liệu vĩnh viễn', '', '2020-12-10', NULL, 1, 23, 2, NULL, 23, 0, '2020-12-08 16:51:31+07', '2020-12-08 16:51:31+07', '2020-12-08', 20, NULL, NULL, 3239, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3240, 3, 48, 'Vấn đề ngày 12/9/2020', '', '2020-12-09', NULL, 1, NULL, 2, NULL, 15, 18, '2020-12-09 09:11:12+07', '2020-12-16 14:01:41+07', '2020-12-09', 100, NULL, 3077, 3077, 130, 151, false, NULL);
INSERT INTO public.issues VALUES (3241, 3, 48, 'Xuất các báo cáo nếu có theo danh mục phải lấy những loại bằng "true"', '', '2020-12-09', NULL, 3, 17, 2, NULL, 15, 6, '2020-12-09 09:12:18+07', '2020-12-16 14:01:41+07', '2020-12-09', 100, NULL, 3240, 3077, 131, 132, false, NULL);
INSERT INTO public.issues VALUES (3242, 3, 48, 'Dashboard phần Card số lượng Cán bộ loại hợp đồng bị sai', '', '2020-12-09', NULL, 3, 17, 2, NULL, 15, 6, '2020-12-09 09:13:04+07', '2020-12-16 14:01:41+07', '2020-12-09', 100, NULL, 3240, 3077, 133, 134, false, NULL);
INSERT INTO public.issues VALUES (3243, 1, 46, 'Khi nhập hàng, tiền trả của nhà cung cấp không đúng với số tiền tồn quỹ', 'Trong quỹ còn 500.000, khi nhập hàng với sô tiền 10.000.000, kế toán trả trước cho nhà cung cấp 100.000 nhưng hiển thị thông báo không đủ số lượng tồn quỹ
![](clipboard-202012090922-m1erd.png)
', '2020-12-09', NULL, 5, 41, 2, 67, 40, 2, '2020-12-09 09:29:17+07', '2020-12-14 11:17:39+07', '2020-12-09', 100, NULL, NULL, 3243, 1, 2, false, '2020-12-14 11:17:39+07');
INSERT INTO public.issues VALUES (3244, 3, 48, 'Trong quá trình Kiêm nhiệm của cán bộ phải kèm theo "chức vụ - phòng ban" bỏ chức vụ bên ngoài => cho vào kiêm nhiệm của quá trình công tác', '', '2020-12-09', NULL, 3, 17, 2, NULL, 15, 6, '2020-12-09 10:17:20+07', '2020-12-16 14:01:41+07', '2020-12-09', 100, NULL, 3240, 3077, 135, 136, false, NULL);
INSERT INTO public.issues VALUES (3245, 3, 48, 'Phân loại chức vụ theo từng lĩnh vực', '', '2020-12-09', NULL, 3, 15, 2, NULL, 15, 2, '2020-12-09 10:18:27+07', '2020-12-16 13:57:05+07', '2020-12-09', 100, NULL, 3240, 3077, 137, 138, false, NULL);
INSERT INTO public.issues VALUES (3246, 1, 46, 'Khi nhập hàng với đơn vị tính khác nhau trong cùng 1 sản phẩm -- chi tiết phiếu nhập hiển thị sai đơn vị tính', '![](clipboard-202012091041-ezjbb.png)
', '2020-12-09', NULL, 5, 39, 2, 67, 40, 3, '2020-12-09 10:41:44+07', '2020-12-11 13:57:36+07', '2020-12-09', 100, NULL, NULL, 3246, 1, 2, false, '2020-12-11 13:57:36+07');
INSERT INTO public.issues VALUES (3247, 1, 46, 'Khi nhập hàng với đơn vị tính khác nhau trong cùng 1 sản phẩm --- thì khi tạo đơn hàng không hiển thị form tạo đơn vị tính', '![](clipboard-202012091043-sapof.png)
', '2020-12-09', NULL, 5, 41, 2, 67, 40, 3, '2020-12-09 10:44:34+07', '2020-12-14 11:17:39+07', '2020-12-09', 100, NULL, NULL, 3247, 1, 2, false, '2020-12-14 11:17:39+07');
INSERT INTO public.issues VALUES (3248, 1, 46, 'Khi nhập hàng với 2 đơn vị tính khác nhau trong cùng 1 sản phẩm thì khi tạo đơn hàng giá trị sẽ khác nhau', '', '2020-12-09', NULL, 5, 41, 2, 67, 40, 4, '2020-12-09 10:52:51+07', '2020-12-14 11:17:39+07', '2020-12-09', 100, NULL, NULL, 3248, 1, 2, false, '2020-12-14 11:17:39+07');
INSERT INTO public.issues VALUES (3249, 2, 46, 'Update giao diện Nhập kho, Xuất kho, Kiểm kho,Chuyển kho Khuyến mãi ,...', '', '2020-12-09', NULL, 5, 39, 2, 67, 39, 4, '2020-12-09 11:22:42+07', '2020-12-11 13:57:36+07', '2020-12-09', 100, NULL, NULL, 3249, 1, 2, false, '2020-12-11 13:57:36+07');
INSERT INTO public.issues VALUES (3250, 2, 46, 'Chỉnh sửa báo cáo nhập xuất tồn kho theo đơn vị tính', '', '2020-12-09', NULL, 5, 41, 2, 67, 40, 3, '2020-12-09 11:26:21+07', '2020-12-11 13:57:36+07', '2020-12-09', 100, NULL, NULL, 3250, 1, 2, false, '2020-12-11 13:57:36+07');
INSERT INTO public.issues VALUES (3251, 2, 46, 'Thêm cột đơn vị tính ở giao diện tồn kho trong chi tiết danh mục sản phẩm', '', '2020-12-09', NULL, 5, 39, 2, 67, 40, 1, '2020-12-09 11:41:53+07', '2020-12-09 14:57:22+07', '2020-12-09', 0, NULL, NULL, 3251, 1, 2, false, '2020-12-09 14:57:22+07');
INSERT INTO public.issues VALUES (3252, 2, 46, 'tồn cuối quy đổi ở Thẻ kho và tồn kho hiển thị sai số lượng khi sản phẩm nhập vào có đơn vị tính và chai', '', '2020-12-09', NULL, 5, 41, 2, 67, 40, 3, '2020-12-09 11:42:42+07', '2020-12-14 11:17:39+07', '2020-12-09', 100, NULL, NULL, 3252, 1, 2, false, '2020-12-14 11:17:39+07');
INSERT INTO public.issues VALUES (3253, 3, 48, 'Danh mục chức vụ', '', '2020-12-09', NULL, 3, 9, 2, NULL, 15, 2, '2020-12-09 13:50:48+07', '2020-12-16 13:57:05+07', '2020-12-09', 100, NULL, 3240, 3077, 139, 140, false, NULL);
INSERT INTO public.issues VALUES (3256, 3, 48, 'Danh mục chuyên ngành', '', '2020-12-09', NULL, 3, 9, 2, NULL, 15, 2, '2020-12-09 13:52:57+07', '2020-12-16 13:57:06+07', '2020-12-09', 100, NULL, 3240, 3077, 145, 146, false, NULL);
INSERT INTO public.issues VALUES (3257, 3, 48, 'Danh mục hình thức khen thưởng', '', '2020-12-09', NULL, 3, 9, 2, NULL, 15, 3, '2020-12-09 13:53:35+07', '2020-12-16 13:57:06+07', '2020-12-09', 100, NULL, 3240, 3077, 147, 148, false, NULL);
INSERT INTO public.issues VALUES (3258, 3, 48, 'DM loại bồi dưỡng nghiệp vụ', '', '2020-12-09', NULL, 3, 9, 2, NULL, 15, 2, '2020-12-09 14:05:43+07', '2020-12-16 13:57:06+07', '2020-12-09', 100, NULL, 3240, 3077, 149, 150, false, NULL);
INSERT INTO public.issues VALUES (3259, 1, 46, 'Thông báo lỗi khi xem hàng hóa cùng loại trong chi tiết sản phẩm', '![](clipboard-202012091419-iuxvd.png)
', '2020-12-16', NULL, 5, 41, 2, 69, 40, 5, '2020-12-09 14:19:32+07', '2020-12-21 08:10:08+07', '2020-12-16', 100, NULL, NULL, 3259, 1, 2, false, '2020-12-21 08:10:08+07');
INSERT INTO public.issues VALUES (3260, 1, 46, 'Không thực hiện được chức năng tìm kiếm ở tồn kho trong chi tiết sản phẩm', '', '2020-12-09', NULL, 5, 39, 2, 67, 40, 3, '2020-12-09 14:23:39+07', '2020-12-11 13:57:36+07', '2020-12-09', 100, NULL, NULL, 3260, 1, 2, false, '2020-12-11 13:57:36+07');
INSERT INTO public.issues VALUES (3261, 1, 46, 'Chưa nhập đầy đủ thông tin khuyến mãi sau đó nhấn nút Lưu khuyến mãi xuất hiện lỗi', '![](clipboard-202012091629-pu0xy.png)
', '2020-12-09', NULL, 5, 39, 2, 67, 40, 3, '2020-12-09 16:30:13+07', '2020-12-11 13:57:37+07', '2020-12-09', 100, NULL, NULL, 3261, 1, 2, false, '2020-12-11 13:57:37+07');
INSERT INTO public.issues VALUES (3262, 1, 46, 'Thêm thông báo khi tạo khuyến mãi có 2 lần sp mua và khuyến mãi giống nhau', '', '2020-12-18', NULL, 5, 41, 2, 69, 40, 8, '2020-12-09 16:45:59+07', '2020-12-21 08:10:08+07', '2020-12-18', 100, NULL, NULL, 3262, 1, 2, false, '2020-12-21 08:10:08+07');
INSERT INTO public.issues VALUES (3263, 1, 46, 'Fix tính năng hiển thị ở thiết lập khác của mẫu in', '', '2020-12-10', NULL, 5, 39, 2, 67, 40, 4, '2020-12-09 16:46:43+07', '2020-12-11 13:57:37+07', '2020-12-10', 100, NULL, NULL, 3263, 1, 2, false, '2020-12-11 13:57:37+07');
INSERT INTO public.issues VALUES (3264, 1, 46, 'Sai phép tính trong thẻ kho', 'Tiger 300ml
![](clipboard-202012091701-qvlst.png)
', '2020-12-09', NULL, 5, 41, 2, 67, 40, 2, '2020-12-09 17:01:23+07', '2020-12-14 11:17:39+07', '2020-12-09', 100, NULL, NULL, 3264, 1, 2, false, '2020-12-14 11:17:39+07');
INSERT INTO public.issues VALUES (3265, 2, 46, 'api tạo đơn xuất hủy', '', NULL, NULL, 1, NULL, 2, 33, 5, 0, '2020-12-10 08:44:55+07', '2020-12-10 08:44:55+07', NULL, 0, NULL, NULL, 3265, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3266, 1, 46, 'Mobile - sửa BC tồn kho - thay đổi các trường của báo cáo', '', '2020-12-10', NULL, 5, 10, 2, 68, 40, 4, '2020-12-10 14:22:04+07', '2020-12-14 11:17:15+07', '2020-12-10', 100, NULL, NULL, 3266, 1, 2, false, '2020-12-14 11:17:15+07');
INSERT INTO public.issues VALUES (3267, 2, 46, 'Mobile - Thêm BC chi tiết đơn hàng theo nhân viên', '', '2021-01-09', NULL, 5, 10, 2, 82, 40, 11, '2020-12-10 14:25:43+07', '2021-01-12 08:26:10+07', '2021-01-09', 100, NULL, NULL, 3267, 1, 2, false, '2021-01-12 08:26:10+07');
INSERT INTO public.issues VALUES (3268, 2, 46, 'api - Báo cáo chi tiết đơn hàng theo nhân viên', '', '2021-01-08', NULL, 5, 41, 2, 81, 40, 14, '2020-12-10 14:46:57+07', '2021-01-12 08:26:45+07', '2021-01-08', 100, NULL, NULL, 3268, 1, 2, false, '2021-01-12 08:26:45+07');
INSERT INTO public.issues VALUES (3269, 2, 46, 'Báo cáo KM thêm lọc theo CTKM', '', '2020-12-16', NULL, 5, 39, 2, 69, 40, 8, '2020-12-10 14:47:44+07', '2020-12-21 08:10:08+07', '2020-12-16', 100, NULL, NULL, 3269, 1, 2, false, '2020-12-21 08:10:08+07');
INSERT INTO public.issues VALUES (3271, 1, 46, 'Mobile - Sửa BC nhập xuất tồn kho', '', '2020-12-10', NULL, 5, 10, 2, 68, 40, 4, '2020-12-10 15:11:00+07', '2020-12-14 11:17:15+07', '2020-12-10', 100, NULL, NULL, 3271, 1, 2, false, '2020-12-14 11:17:15+07');
INSERT INTO public.issues VALUES (3272, 4, 32, 'Chỉnh sửa, thiết kế, sắp xếp kho theme', '- Chỉnh sửa lại website tin tức ISC và báo cáo.
- Thiết kế chọn lọc POST dán tường (mức độ 30%).
- Sắp xếp kho theme bao gồm: 2 website bán hàng online, webiste tin tức.', '2020-12-11', 17, 1, 14, 2, NULL, 14, 0, '2020-12-11 10:23:33+07', '2020-12-11 10:23:33+07', '2020-12-08', 100, NULL, NULL, 3272, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3273, 2, 42, 'Quản lý attachment file', '', '2020-12-11', NULL, 5, 8, 2, 66, 19, 3, '2020-12-11 10:31:43+07', '2020-12-16 15:43:47+07', '2020-12-11', 100, NULL, NULL, 3273, 1, 2, false, '2020-12-16 15:43:47+07');
INSERT INTO public.issues VALUES (3274, 2, 46, 'Sửa quy đổi đơn vị ở DM Sản phẩm dịch vụ', '', '2020-12-11', NULL, 5, 39, 2, 67, 39, 3, '2020-12-11 15:13:09+07', '2020-12-14 11:17:39+07', '2020-12-11', 100, NULL, NULL, 3274, 1, 2, false, '2020-12-14 11:17:39+07');
INSERT INTO public.issues VALUES (3275, 1, 46, 'Mobile - Thêm logo cho S -Blue và Lan Thà', '', '2020-12-11', NULL, 5, 10, 2, 68, 40, 2, '2020-12-11 15:29:48+07', '2020-12-14 11:17:15+07', '2020-12-11', 100, NULL, NULL, 3275, 1, 2, false, '2020-12-14 11:17:15+07');
INSERT INTO public.issues VALUES (3276, 1, 46, 'Mobile - Tùy cấu hình hiển thị tên phần mềm', '', '2020-12-11', NULL, 5, 10, 2, 68, 40, 2, '2020-12-11 15:30:22+07', '2020-12-14 11:17:15+07', '2020-12-11', 100, NULL, NULL, 3276, 1, 2, false, '2020-12-14 11:17:15+07');
INSERT INTO public.issues VALUES (3277, 2, 46, 'Mobile - Thêm đăng tải dữ liệu trong spinner', '', '2020-12-27', NULL, 5, 10, 2, 78, 40, 9, '2020-12-11 15:51:19+07', '2021-01-04 13:21:49+07', '2020-12-27', 100, NULL, NULL, 3277, 1, 2, false, '2021-01-04 13:21:49+07');
INSERT INTO public.issues VALUES (3278, 2, 42, 'Tách ReportTemplate(header/body) + gắn (reducer/context) ', '', '2020-12-11', NULL, 5, 15, 2, 66, 15, 3, '2020-12-11 16:36:24+07', '2020-12-16 15:43:48+07', '2020-12-07', 100, NULL, NULL, 3278, 1, 2, false, '2020-12-16 15:43:48+07');
INSERT INTO public.issues VALUES (3279, 1, 46, 'Mobile - Sửa cảnh báo camera', '', '2020-12-14', NULL, 5, 10, 2, 70, 40, 4, '2020-12-11 17:02:12+07', '2020-12-26 16:10:31+07', '2020-12-14', 100, NULL, NULL, 3279, 1, 2, false, '2020-12-26 16:10:31+07');
INSERT INTO public.issues VALUES (3280, 2, 46, 'Mobile - KeyboardAvoidingView Nhập bàn phím', '', '2020-12-12', NULL, 5, 10, 2, 68, 40, 3, '2020-12-12 08:32:53+07', '2020-12-14 11:17:16+07', '2020-12-12', 100, NULL, NULL, 3280, 1, 2, false, '2020-12-14 11:17:16+07');
INSERT INTO public.issues VALUES (3281, 2, 46, 'fix API tạo sản phẩm', 'Tạo ra sản phẩm với đơn vị tính được quy đổi', '2020-12-11', NULL, 5, 41, 2, 67, 41, 2, '2020-12-12 15:11:07+07', '2020-12-14 11:17:39+07', '2020-12-11', 100, NULL, NULL, 3281, 1, 2, false, '2020-12-14 11:17:39+07');
INSERT INTO public.issues VALUES (3282, 2, 46, 'Refactor code ở QL thu chi, Danh mục sản phẩm dịch vụ', '', '2020-12-12', NULL, 5, 39, 2, 67, 39, 1, '2020-12-12 15:13:51+07', '2020-12-14 11:17:39+07', '2020-12-12', 100, NULL, NULL, 3282, 1, 2, false, '2020-12-14 11:17:39+07');
INSERT INTO public.issues VALUES (3283, 2, 46, 'Thêm nhóm đơn vị tính cho Phiếu nhập hàng', '', '2020-12-12', NULL, 5, 39, 2, 67, 39, 1, '2020-12-12 15:15:20+07', '2020-12-14 11:17:39+07', '2020-12-12', 100, NULL, NULL, 3283, 1, 2, false, '2020-12-14 11:17:39+07');
INSERT INTO public.issues VALUES (3284, 2, 46, 'Thêm nhóm đơn vị tính vào DM Đơn vị tính', '', '2020-12-12', NULL, 5, 39, 2, 67, 39, 1, '2020-12-12 15:39:13+07', '2020-12-14 11:17:40+07', '2020-12-12', 100, NULL, NULL, 3284, 1, 2, false, '2020-12-14 11:17:40+07');
INSERT INTO public.issues VALUES (3285, 2, 46, 'Thêm bộ lọc nhóm đơn vị tính trong Tồn kho, Thẻ kho', '', '2020-12-14', NULL, 5, 39, 2, 69, 39, 5, '2020-12-12 15:39:58+07', '2020-12-21 08:10:08+07', '2020-12-14', 100, NULL, NULL, 3285, 1, 2, false, '2020-12-21 08:10:08+07');
INSERT INTO public.issues VALUES (3286, 2, 46, 'Fix API nhập hàng', '', '2020-12-12', NULL, 5, 41, 2, 67, 41, 2, '2020-12-12 16:30:29+07', '2020-12-14 11:17:40+07', '2020-12-12', 100, NULL, NULL, 3286, 1, 2, false, '2020-12-14 11:17:40+07');
INSERT INTO public.issues VALUES (3287, 2, 42, 'Cập nhật chỉnh sửa giao diện tạo report ( gọp,tách cột),cập nhật công thức dạng popup', '', '2020-12-12', NULL, 5, 15, 2, 66, 15, 4, '2020-12-14 08:22:45+07', '2020-12-16 15:43:48+07', '2020-12-12', 100, NULL, NULL, 3287, 1, 2, false, '2020-12-16 15:43:48+07');
INSERT INTO public.issues VALUES (3288, 5, 57, 'Xử lý lại bản đồ và nhập liệu lại toàn bộ', 'Ưu tiên 10 đồ án mới', '2020-12-20', NULL, 1, 33, 2, NULL, 33, 2, '2020-12-14 08:24:43+07', '2020-12-26 15:35:00+07', '2020-12-14', 100, NULL, 2950, 2950, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3289, 5, 57, '36 Quy hoạch xây dựng xã nông thôn mới xã Bình Minh', 'Xữ lý bản đồ và nhập liệu', '2020-12-19', NULL, 1, 43, 2, NULL, 33, 2, '2020-12-14 08:28:24+07', '2020-12-26 15:27:03+07', '2020-12-14', 100, NULL, NULL, 3289, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3290, 5, 57, '34 Quy hoạch xây dựng NTM xã Bù Gia Mập', 'Xử lý bản đồ và nhập liệu', '2020-12-19', NULL, 1, 32, 2, NULL, 33, 2, '2020-12-14 08:29:54+07', '2020-12-21 08:23:15+07', '2020-12-14', 100, NULL, NULL, 3290, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3291, 5, 57, '35 Quy hoạch xây dựng NTM xã DaKia', 'Xữ lý bản đồ và nhập liệu', '2020-12-19', NULL, 1, 44, 2, NULL, 33, 2, '2020-12-14 08:31:07+07', '2020-12-26 15:27:15+07', '2020-12-14', 100, NULL, NULL, 3291, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3292, 5, 57, '37 Quy hoạch xây dựng xã nông thôn mới xã Đăng Hà', 'Xử lý bản đồ', '2020-12-25', NULL, 1, 29, 2, NULL, 33, 3, '2020-12-14 08:36:37+07', '2020-12-26 15:28:07+07', '2020-12-18', 100, NULL, NULL, 3292, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (3293, 2, 46, 'Mobile - Thay đổi background dashboard.', '', '2020-12-14', NULL, 5, 10, 2, 70, 10, 3, '2020-12-14 09:43:45+07', '2020-12-26 16:10:31+07', '2020-12-14', 100, NULL, NULL, 3293, 1, 2, false, '2020-12-26 16:10:31+07');
INSERT INTO public.issues VALUES (3294, 2, 46, 'Chỉnh đơn vị tính cho phiếu giao nhận và thanh toán', '', '2020-12-16', NULL, 5, 41, 2, 69, 5, 3, '2020-12-14 11:42:44+07', '2020-12-21 08:10:08+07', '2020-12-16', 100, NULL, NULL, 3294, 1, 2, false, '2020-12-21 08:10:08+07');
INSERT INTO public.issues VALUES (3295, 4, 56, 'Ứng dụng mobile', '', '2020-12-25', NULL, 1, 17, 2, NULL, 6, 14, '2020-12-14 13:42:00+07', '2020-12-25 14:54:34+07', '2020-12-14', 50, NULL, NULL, 3295, 1, 8, false, NULL);
INSERT INTO public.issues VALUES (3296, 5, 56, 'Thiết kế giao diện chức năng cơ bản', 'Thiết kế các chức năng dịch thuật và phát âm cơ bản cho người dùng không cần đăng ký tài khoản', NULL, NULL, 1, 17, 2, NULL, 6, 8, '2020-12-14 13:49:10+07', '2020-12-25 14:53:51+07', '2020-12-14', 50, NULL, 3295, 3295, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3297, 5, 56, 'Thiết kế giao diện đăng nhập', '', '2020-12-25', NULL, 1, 17, 2, NULL, 6, 3, '2020-12-14 13:52:51+07', '2020-12-25 14:54:34+07', '2020-12-14', 100, NULL, 3295, 3295, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (3298, 5, 56, 'Thiết kế giao diện quản lý thông tin tài khoản', '', NULL, NULL, 1, 17, 2, NULL, 6, 3, '2020-12-14 13:53:57+07', '2020-12-14 13:54:55+07', '2020-12-14', 0, NULL, 3295, 3295, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (3299, 5, 57, '38 Quy hoạch xây dựng xã nông thôn mới xã Minh Hưng', 'Xử lý bản đồ', '2020-12-24', NULL, 1, 33, 2, NULL, 33, 2, '2020-12-14 17:05:54+07', '2020-12-26 15:27:27+07', '2020-12-17', 100, NULL, NULL, 3299, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (3300, 2, 50, 'Team Nghĩa', 'DỰ ÁN: **QUẢN LÝ BÁN HÀNG**

TIẾN ĐỘ: **77%**

| Sprint | CHỨC NĂNG | SỐ ĐIỂM | NHÂN SỰ |
| --- | --- | --- | --- |
| 8, 9 | Khách hàng, Nhà cung cấp, Khuyến mãi, Xuất hàng nhiều đơn, Giảm giá | 133 | **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, TIẾN ĐẶNG, DUNG(Mobile)** |
| 10, 11 | Thiết lập mẫu in, Báo cáo | 0 | **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, DUNG(Mobile)** |
| 12, 13 | Công nợ, Quy đổi đơn vị |   | **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, DUNG(Mobile)** |
| 14, 15 | Fix Quy đổi đơn vị, Khuyến mãi |   | **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, DUNG(Mobile)** |
| 16, 17 | Báo cáo khuyến mãi, công nợ KH, NCC, xuất hủy |   | **NGHĨA(Leader), QUÝ, TIẾN LÊ, DUNG(Mobile)** |

BẢNG KẾ HOẠCH & TIẾN ĐỘ CHI TIẾT: [Click để xem](https://docs.google.com/spreadsheets/d/163Bdm2TFshtJcvoAPlUFv9-9Lf2UtNocnCgmB4cP2Ts/edit#gid=1843496086)', '2020-12-24', NULL, 3, 5, 2, 44, 5, 2, '2020-12-15 07:35:54+07', '2021-01-05 08:49:07+07', '2020-12-24', 100, NULL, NULL, 3300, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3301, 2, 46, 'Sửa quy đổi đơn vị ở Tồn kho, Thẻ kho', '', '2020-12-15', NULL, 5, 39, 2, 69, 39, 2, '2020-12-15 08:21:25+07', '2020-12-21 08:10:08+07', '2020-12-15', 100, NULL, NULL, 3301, 1, 2, false, '2020-12-21 08:10:08+07');
INSERT INTO public.issues VALUES (3302, 2, 49, 'Xuất báo cáo tổng hợp 2A', '', '2020-12-15', NULL, 3, 15, 2, NULL, 15, 2, '2020-12-15 08:31:41+07', '2020-12-15 10:46:08+07', '2020-12-15', 100, NULL, NULL, 3302, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3303, 2, 49, 'Xuất báo cáo tổng hợp 2c', '', '2020-12-15', NULL, 3, 15, 2, NULL, 15, 2, '2020-12-15 08:40:42+07', '2020-12-15 10:46:08+07', '2020-12-15', 100, NULL, NULL, 3303, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3304, 2, 49, 'Xuất báo cáo tổng hợp 2G', '', '2020-12-15', NULL, 3, 15, 2, NULL, 15, 2, '2020-12-15 08:41:02+07', '2020-12-15 10:46:08+07', '2020-12-15', 100, NULL, NULL, 3304, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3305, 2, 46, 'Giao diện phân bổ ngân sách khuyến mãi', '', '2020-12-19', NULL, 5, 39, 2, 69, 5, 4, '2020-12-15 09:04:01+07', '2020-12-21 08:10:08+07', '2020-12-17', 100, NULL, NULL, 3305, 1, 2, false, '2020-12-21 08:10:08+07');
INSERT INTO public.issues VALUES (3306, 2, 46, 'api phân bổ ngân sách khuyến mãi', '', '2020-12-17', NULL, 5, 5, 2, 69, 5, 2, '2020-12-15 09:04:18+07', '2020-12-21 08:10:09+07', '2020-12-17', 100, NULL, NULL, 3306, 1, 2, false, '2020-12-21 08:10:09+07');
INSERT INTO public.issues VALUES (3307, 1, 46, 'Không tạo được phiếu nhập hàng - hiển thị thông báo không thể tạo đơn mua - nhập hàng', '', '2020-12-15', NULL, 5, 41, 2, 69, 40, 2, '2020-12-15 09:11:09+07', '2020-12-21 08:10:09+07', '2020-12-15', 100, NULL, NULL, 3307, 1, 2, false, '2020-12-21 08:10:09+07');
INSERT INTO public.issues VALUES (3308, 1, 46, 'Thiết lập giá, không reset được giá cho từng sản phẩm', '', '2020-12-15', NULL, 5, 8, 2, 69, 40, 2, '2020-12-15 13:42:16+07', '2020-12-21 08:10:09+07', '2020-12-15', 100, NULL, NULL, 3308, 1, 2, false, '2020-12-21 08:10:09+07');
INSERT INTO public.issues VALUES (3309, 2, 46, 'Xóa sửa quy đổi đơn vị', 'Đưa cái này vào chi tiết sản phẩm', '2020-12-15', NULL, 5, 8, 2, 69, 5, 2, '2020-12-15 14:04:52+07', '2020-12-21 08:10:09+07', '2020-12-15', 100, NULL, NULL, 3309, 1, 2, false, '2020-12-21 08:10:09+07');
INSERT INTO public.issues VALUES (3310, 2, 46, 'api sửa quy đổi đơn vị', '', '2020-12-15', NULL, 5, 41, 2, 69, 5, 2, '2020-12-15 14:05:11+07', '2020-12-21 08:10:09+07', '2020-12-15', 100, NULL, NULL, 3310, 1, 2, false, '2020-12-21 08:10:09+07');
INSERT INTO public.issues VALUES (3311, 2, 46, 'xóa quy đổi đơn vị', '', '2020-12-15', NULL, 5, 41, 2, 69, 5, 3, '2020-12-15 14:05:28+07', '2020-12-21 08:10:09+07', '2020-12-15', 100, NULL, NULL, 3311, 1, 2, false, '2020-12-21 08:10:09+07');
INSERT INTO public.issues VALUES (3312, 2, 46, 'Mobile - Báo cáo bán hàng - Đổi giao diện hiển thị toàn bộ mối quan tâm.', '', '2020-12-15', NULL, 5, 10, 2, 70, 10, 3, '2020-12-15 15:09:25+07', '2020-12-26 16:10:31+07', '2020-12-15', 100, NULL, NULL, 3312, 1, 2, false, '2020-12-26 16:10:31+07');
INSERT INTO public.issues VALUES (3313, 2, 46, 'Mobile - Báo cáo bán hàng - Sửa giao diện báo cáo Doanh thu theo thời gian.', '', '2020-12-15', NULL, 5, 10, 2, 70, 10, 3, '2020-12-15 15:11:33+07', '2020-12-26 16:10:31+07', '2020-12-15', 100, NULL, NULL, 3313, 1, 2, false, '2020-12-26 16:10:31+07');
INSERT INTO public.issues VALUES (3314, 2, 46, 'Fix giao diện thêm khuyến mãi', '- Ở khung chọn hàng => hiển thị thêm đơn vị tính

- Khi chọn xong, thì hiển thị luôn mã hàng đã chọn dưới dropdown', '2020-12-16', NULL, 5, 39, 2, 69, 5, 4, '2020-12-15 15:35:19+07', '2020-12-21 08:10:09+07', '2020-12-16', 100, NULL, NULL, 3314, 1, 2, false, '2020-12-21 08:10:09+07');
INSERT INTO public.issues VALUES (3315, 1, 46, 'Không thiết lập được bảng giá', '', '2020-12-15', NULL, 5, 41, 2, 69, 40, 2, '2020-12-15 16:24:32+07', '2020-12-21 08:10:09+07', '2020-12-15', 100, NULL, NULL, 3315, 1, 2, false, '2020-12-21 08:10:09+07');
INSERT INTO public.issues VALUES (3316, 2, 46, 'Sửa, xóa quy đổi đơn vị ở xem thông tin sản phẩm dịch vụ', '', '2020-12-16', NULL, 5, 39, 2, 69, 39, 2, '2020-12-16 09:59:22+07', '2020-12-21 08:10:09+07', '2020-12-16', 100, NULL, NULL, 3316, 1, 2, false, '2020-12-21 08:10:09+07');
INSERT INTO public.issues VALUES (3317, 2, 46, 'Mobile - Báo cáo bán hàng - Sửa lại giao diện Doanh thu theo đơn hàng.', '', '2020-12-16', NULL, 5, 10, 2, 70, 10, 4, '2020-12-16 10:56:30+07', '2020-12-26 16:10:32+07', '2020-12-16', 100, NULL, NULL, 3317, 1, 2, false, '2020-12-26 16:10:32+07');
INSERT INTO public.issues VALUES (3318, 2, 46, 'Chỉnh phiếu xuất hàng cho nvgh', '', '2020-12-16', NULL, 5, 41, 2, 69, 5, 3, '2020-12-16 14:09:53+07', '2020-12-21 08:10:10+07', '2020-12-16', 100, NULL, NULL, 3318, 1, 2, false, '2020-12-21 08:10:10+07');
INSERT INTO public.issues VALUES (3319, 2, 46, 'Chạy lại mã hàng mặc định chai', '', '2020-12-16', NULL, 5, 41, 2, 69, 5, 3, '2020-12-16 14:17:44+07', '2020-12-21 08:10:10+07', '2020-12-16', 100, NULL, NULL, 3319, 1, 2, false, '2020-12-21 08:10:10+07');
INSERT INTO public.issues VALUES (3320, 2, 46, 'fix api thêm/xóa chương trình khuyến mãi', '', '2020-12-18', NULL, 5, 41, 2, 69, 5, 3, '2020-12-16 14:44:20+07', '2020-12-21 08:10:10+07', '2020-12-18', 100, NULL, NULL, 3320, 1, 2, false, '2020-12-21 08:10:10+07');
INSERT INTO public.issues VALUES (3321, 2, 46, 'fix api load CTKM trong bán hàng', '', '2020-12-18', NULL, 5, 41, 2, 69, 5, 2, '2020-12-16 14:45:04+07', '2020-12-21 08:10:10+07', '2020-12-18', 100, NULL, NULL, 3321, 1, 2, false, '2020-12-21 08:10:10+07');
INSERT INTO public.issues VALUES (3322, 2, 46, 'Mobile - Báo cáo bán hàng - Sửa đổi giao diện lợi nhuận theo thời gian.', '', '2020-12-16', NULL, 5, 10, 2, 70, 10, 3, '2020-12-16 15:38:13+07', '2020-12-26 16:10:32+07', '2020-12-16', 100, NULL, NULL, 3322, 1, 2, false, '2020-12-26 16:10:32+07');
INSERT INTO public.issues VALUES (3323, 2, 46, 'Mobile - Báo cáo bán hàng - Sửa giao diện lợi nhuận theo đơn hàng.', '', '2020-12-16', NULL, 5, 10, 2, 70, 10, 3, '2020-12-16 15:38:55+07', '2020-12-26 16:10:32+07', '2020-12-16', 100, NULL, NULL, 3323, 1, 2, false, '2020-12-26 16:10:32+07');
INSERT INTO public.issues VALUES (3324, 2, 46, 'Mobile - Báo cáo bán hàng - Sửa đổi giao diện trả hàng.', '', '2020-12-16', NULL, 5, 10, 2, 70, 10, 3, '2020-12-16 15:39:30+07', '2020-12-26 16:10:32+07', '2020-12-16', 100, NULL, NULL, 3324, 1, 2, false, '2020-12-26 16:10:32+07');
INSERT INTO public.issues VALUES (3325, 1, 46, 'Không hủy được đơn hàng', '', '2020-12-17', NULL, 5, 41, 2, 69, 40, 2, '2020-12-16 15:41:02+07', '2020-12-21 08:10:10+07', '2020-12-16', 100, NULL, NULL, 3325, 1, 2, false, '2020-12-21 08:10:10+07');
INSERT INTO public.issues VALUES (3326, 2, 42, 'Giao diện danh mục lĩnh vực', '', '2020-12-21', NULL, 5, 12, 2, 74, 5, 4, '2020-12-16 15:53:00+07', '2020-12-28 14:19:30+07', '2020-12-21', 100, NULL, NULL, 3326, 1, 2, false, '2020-12-28 14:19:30+07');
INSERT INTO public.issues VALUES (3327, 2, 42, 'Giao diện danh mục báo cáo', '', '2020-12-21', NULL, 5, 12, 2, 74, 5, 4, '2020-12-16 15:53:33+07', '2020-12-28 14:19:30+07', '2020-12-21', 100, NULL, NULL, 3327, 1, 2, false, '2020-12-28 14:19:30+07');
INSERT INTO public.issues VALUES (3328, 2, 42, 'Giao diện danh mục mẫu báo cáo', 'thuộc 1 báo cáo', '2020-12-21', NULL, 5, 37, 2, 74, 5, 9, '2020-12-16 15:59:53+07', '2020-12-28 14:19:30+07', '2020-12-21', 100, NULL, NULL, 3328, 1, 2, false, '2020-12-28 14:19:30+07');
INSERT INTO public.issues VALUES (3329, 2, 46, 'Mobile - Load giao diện mối quan tâm cho các nhóm báo cáo.', 'Báo cáo nhân viê, báo cáo khách hàng, báo cáo hàng hóa, báo cáo khuyến mãi, báo cáo mua hàng.', '2020-12-16', NULL, 5, 10, 2, 70, 10, 2, '2020-12-16 16:03:51+07', '2020-12-26 16:10:32+07', '2020-12-16', 100, NULL, NULL, 3329, 1, 2, false, '2020-12-26 16:10:32+07');
INSERT INTO public.issues VALUES (3330, 2, 46, 'Mobile - Báo cáo hàng hóa - Sửa giao diện Sản lượng bán tổng hợp.', '', '2020-12-16', NULL, 5, 10, 2, 70, 10, 2, '2020-12-16 09:40:29+07', '2020-12-26 16:10:32+07', '2020-12-16', 100, NULL, NULL, 3330, 1, 2, false, '2020-12-26 16:10:32+07');
INSERT INTO public.issues VALUES (3331, 2, 46, 'Tinh số lượng sản phẩm theo loại sản phẩm (PET hoặc KET) ở tạo phiếu Xuất hàng', '', '2021-01-04', NULL, 5, 8, 2, 81, 39, 9, '2020-12-16 16:45:14+07', '2021-01-12 08:26:45+07', '2021-01-04', 100, NULL, NULL, 3331, 1, 2, false, '2021-01-12 08:26:45+07');
INSERT INTO public.issues VALUES (3332, 2, 46, 'Mobile - Báo cáo hàng hóa - Sửa đổi giao diện nhập xuất tồn chi tiết.', '', '2020-12-17', NULL, 5, 10, 2, 70, 10, 3, '2020-12-17 00:01:54+07', '2020-12-26 16:10:32+07', '2020-12-17', 100, NULL, NULL, 3332, 1, 2, false, '2020-12-26 16:10:32+07');
INSERT INTO public.issues VALUES (3334, 2, 42, 'Hoàn thiện form mẫu excel', '', NULL, NULL, 5, 13, 2, 75, 19, 3, '2020-12-17 08:09:26+07', '2021-02-18 11:27:57+07', '2020-12-17', 0, NULL, NULL, 3334, 1, 2, false, '2021-02-18 11:27:57+07');
INSERT INTO public.issues VALUES (3335, 2, 42, 'Tạo mẫu theo QĐ 38', '', NULL, NULL, 5, 37, 2, 75, 19, 4, '2020-12-17 08:10:58+07', '2021-02-18 11:27:57+07', '2020-12-28', 0, NULL, NULL, 3335, 1, 2, false, '2021-02-18 11:27:57+07');
INSERT INTO public.issues VALUES (3337, 2, 42, 'Quản lý code, mở rộng database, hoàn thiện phân quyền cho hệ thống', '', NULL, NULL, 5, 16, 2, 71, 19, 2, '2020-12-17 08:13:11+07', '2020-12-28 14:15:36+07', '2020-12-17', 100, NULL, NULL, 3337, 1, 2, false, '2020-12-28 14:15:36+07');
INSERT INTO public.issues VALUES (3338, 2, 42, 'Quản lý API, mở rộng database', '', NULL, NULL, 5, 38, 2, 71, 19, 3, '2020-12-17 08:13:56+07', '2020-12-28 14:15:37+07', '2020-12-17', 100, NULL, NULL, 3338, 1, 2, false, '2020-12-28 14:15:37+07');
INSERT INTO public.issues VALUES (3339, 3, 49, 'Hổ trợ phần mềm tiền lương', '', '2020-12-16', NULL, 3, 15, 2, NULL, 15, 1, '2020-12-17 08:33:57+07', '2020-12-17 08:34:15+07', '2020-12-16', 100, NULL, 2353, 2353, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3340, 2, 46, 'fix API Xuất hàng thêm quy đổi đơn vị ', '', '2020-12-17', NULL, 5, 41, 2, 69, 41, 2, '2020-12-17 09:27:50+07', '2020-12-21 08:10:10+07', '2020-12-17', 100, NULL, NULL, 3340, 1, 2, false, '2020-12-21 08:10:10+07');
INSERT INTO public.issues VALUES (3341, 2, 46, 'Mobile - Báo cáo nhân viên - Sửa đổi giao diện sản lượng bán hàng theo nhân viên.', '', '2020-12-17', NULL, 5, 10, 2, 70, 10, 3, '2020-12-17 09:44:12+07', '2020-12-26 16:10:32+07', '2020-12-17', 100, NULL, NULL, 3341, 1, 2, false, '2020-12-26 16:10:32+07');
INSERT INTO public.issues VALUES (3342, 2, 46, 'Mobile - Báo cáo mua hàng - Sửa đổi giao diện bảng kê hàng hóa mua hàng vào.', '', '2020-12-17', NULL, 5, 10, 2, 70, 10, 3, '2020-12-17 13:35:29+07', '2020-12-26 16:10:32+07', '2020-12-17', 100, NULL, NULL, 3342, 1, 2, false, '2020-12-26 16:10:32+07');
INSERT INTO public.issues VALUES (3343, 2, 46, 'Mobile - Báo cáo mua hàng - Sửa đổi giao diện bảng kê chi tiết.', '', '2020-12-17', NULL, 5, 10, 2, 70, 10, 3, '2020-12-17 13:35:57+07', '2020-12-26 16:10:32+07', '2020-12-17', 100, NULL, NULL, 3343, 1, 2, false, '2020-12-26 16:10:32+07');
INSERT INTO public.issues VALUES (3344, 2, 46, 'Fix API Trả đơn hàng thêm quy đổi đơn vị', '', '2020-12-18', NULL, 5, 41, 2, 69, 41, 2, '2020-12-17 14:42:59+07', '2020-12-21 08:10:10+07', '2020-12-18', 100, NULL, NULL, 3344, 1, 2, false, '2020-12-21 08:10:10+07');
INSERT INTO public.issues VALUES (3345, 2, 46, 'Mobile - Sửa quy đổi đơn vị trong thêm sản phẩm.', '', '2020-12-18', NULL, 5, 10, 2, 70, 10, 3, '2020-12-18 11:08:54+07', '2020-12-26 16:10:32+07', '2020-12-18', 100, NULL, NULL, 3345, 1, 2, false, '2020-12-26 16:10:32+07');
INSERT INTO public.issues VALUES (3346, 5, 57, 'Nhập Liệu', '', '2020-12-25', NULL, 1, 29, 2, NULL, 33, 1, '2020-12-18 11:39:44+07', '2020-12-26 15:28:07+07', '2020-12-18', 100, NULL, 3292, 3292, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3347, 5, 57, 'Nhập Liệu', '', '2020-12-24', NULL, 1, 24, 2, NULL, 33, 1, '2020-12-18 11:40:38+07', '2020-12-26 15:27:27+07', '2020-12-17', 100, NULL, 3299, 3299, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3348, 5, 57, '39 Quy hoạch xây dựng xã nông thôn mới xã Nghĩa Bình', 'Xử lý bản đồ và nhập liệu', '2020-12-24', NULL, 1, 44, 2, NULL, 33, 1, '2020-12-18 11:41:56+07', '2020-12-26 15:28:14+07', '2020-12-18', 100, NULL, NULL, 3348, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3349, 2, 46, 'api load chi tiết phân bổ khuyến mãi', '', '2020-12-18', NULL, 5, 5, 2, 69, 5, 3, '2020-12-18 15:27:20+07', '2020-12-21 08:10:10+07', '2020-12-18', 100, NULL, NULL, 3349, 1, 2, false, '2020-12-21 08:10:10+07');
INSERT INTO public.issues VALUES (3350, 2, 46, 'api cập nhật chi tiết phân bổ khuyến mãi', '', '2020-12-18', NULL, 5, 5, 2, 69, 5, 2, '2020-12-18 16:09:42+07', '2020-12-21 08:10:10+07', '2020-12-18', 100, NULL, NULL, 3350, 1, 2, false, '2020-12-21 08:10:10+07');
INSERT INTO public.issues VALUES (3351, 2, 49, 'Chuyển nguồn sang năm sau cho nhân viên', '', '2020-12-19', NULL, 3, 15, 2, NULL, 15, 3, '2020-12-19 08:15:47+07', '2020-12-22 08:26:28+07', '2020-12-18', 100, NULL, NULL, 3351, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3352, 2, 48, 'Demo phần mềm', '', '2020-12-18', NULL, 3, 15, 2, NULL, 15, 1, '2020-12-19 08:17:02+07', '2020-12-19 08:17:25+07', '2020-12-18', 100, NULL, 2412, 2412, 166, 167, false, NULL);
INSERT INTO public.issues VALUES (3353, 1, 46, 'Chỉnh sửa số lượng tồn kho trong phiếu kiểm', '', '2020-12-27', NULL, 5, 41, 2, 79, 40, 5, '2020-12-19 09:06:03+07', '2021-01-04 13:22:55+07', '2020-12-27', 100, NULL, NULL, 3353, 1, 2, false, '2021-01-04 13:22:55+07');
INSERT INTO public.issues VALUES (3354, 1, 46, 'Hiển thị sai thông tin phiếu đã hủy ở Phiếu kiểm kho', '![](clipboard-202012190957-wzhhl.png)
', NULL, NULL, 1, 39, 2, 33, 40, 11, '2020-12-19 09:59:17+07', '2021-01-23 09:01:56+07', NULL, 0, NULL, NULL, 3354, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3355, 2, 46, 'Thêm bộ lọc Nhóm đơn vị tính ở Sản phẩm dịch vụ', '', '2020-12-19', NULL, 5, 39, 2, 69, 39, 2, '2020-12-19 15:21:12+07', '2020-12-21 08:10:10+07', '2020-12-19', 100, NULL, NULL, 3355, 1, 2, false, '2020-12-21 08:10:10+07');
INSERT INTO public.issues VALUES (3356, 4, 32, 'Thiết kế, tạo, xây dựng chức năng website & mobile', '- Chỉnh sửa và thiết kế background partern cho WAD
- Tạo chức năng Chatbox Auto cho website công ty
- Thiết kế và chỉnh sửa vài icon cho Dung
- Thiết kế nền CH Play mobile POS Target', '2020-12-19', 17, 1, 14, 2, NULL, 14, 0, '2020-12-19 15:37:33+07', '2020-12-19 15:37:33+07', '2020-12-12', 100, NULL, NULL, 3356, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3357, 1, 46, 'Không thêm được hình ảnh khi thêm mới danh mục sản phẩm', '', '2020-12-21', NULL, 5, 39, 2, 72, 40, 4, '2020-12-19 16:57:45+07', '2020-12-26 16:34:30+07', '2020-12-21', 100, NULL, NULL, 3357, 1, 2, false, '2020-12-26 16:34:30+07');
INSERT INTO public.issues VALUES (3358, 2, 42, 'Giao diện cài đặt đối tượng thực hiện báo cáo', '', '2020-12-21', NULL, 5, 12, 2, 74, 5, 3, '2020-12-21 08:21:38+07', '2020-12-28 14:19:31+07', '2020-12-21', 100, NULL, NULL, 3358, 1, 2, false, '2020-12-28 14:19:31+07');
INSERT INTO public.issues VALUES (3359, 2, 42, 'Giao diện cài đặt đối tượng nhận báo cáo', '', '2020-12-22', NULL, 5, 12, 2, 74, 5, 4, '2020-12-21 08:22:50+07', '2020-12-28 14:19:31+07', '2020-12-22', 100, NULL, NULL, 3359, 1, 2, false, '2020-12-28 14:19:31+07');
INSERT INTO public.issues VALUES (3360, 2, 42, 'Giao diện cài đặt quy trình gửi báo cáo', '', '2020-12-23', NULL, 5, 12, 2, 74, 5, 5, '2020-12-21 08:23:18+07', '2020-12-28 14:19:31+07', '2020-12-23', 100, NULL, NULL, 3360, 1, 2, false, '2020-12-28 14:19:31+07');
INSERT INTO public.issues VALUES (3361, 2, 42, 'Giao diện cài đặt tần suất', '', '2020-12-24', NULL, 5, 37, 2, 74, 5, 8, '2020-12-21 08:23:37+07', '2020-12-28 14:19:31+07', '2020-12-24', 100, NULL, NULL, 3361, 1, 2, false, '2020-12-28 14:19:31+07');
INSERT INTO public.issues VALUES (3362, 2, 42, 'Giao diện danh mục tần suất', '', '2020-12-23', NULL, 5, 37, 2, 74, 5, 6, '2020-12-21 08:23:53+07', '2020-12-28 14:19:31+07', '2020-12-23', 100, NULL, NULL, 3362, 1, 2, false, '2020-12-28 14:19:31+07');
INSERT INTO public.issues VALUES (3363, 2, 42, 'Giao diện quản lý nhập báo cáo kiểu icon folder', '', '2020-12-24', NULL, 5, 5, 2, 74, 5, 4, '2020-12-21 08:25:57+07', '2020-12-28 14:19:31+07', '2020-12-23', 100, NULL, NULL, 3363, 1, 2, false, '2020-12-28 14:19:31+07');
INSERT INTO public.issues VALUES (3364, 2, 42, 'Danh sách báo cáo đi', 'Màn hình này danh cho đối tượng thực hiện', '2020-12-28', NULL, 5, 5, 2, 76, 5, 5, '2020-12-21 08:27:00+07', '2021-01-04 11:03:23+07', '2020-12-28', 100, NULL, NULL, 3364, 1, 2, false, '2021-01-04 11:03:23+07');
INSERT INTO public.issues VALUES (3365, 2, 46, 'Api BC sản lượng bán hàng theo nhân viên', '', '2021-01-07', NULL, 5, 41, 2, 81, 40, 7, '2020-12-21 08:27:57+07', '2021-01-12 08:26:45+07', '2021-01-07', 100, NULL, NULL, 3365, 1, 2, false, '2021-01-12 08:26:45+07');
INSERT INTO public.issues VALUES (3366, 2, 42, 'Lịch báo cáo đến', '', '2020-12-28', NULL, 5, 5, 2, 76, 5, 6, '2020-12-21 08:28:37+07', '2021-01-04 11:03:23+07', '2020-12-28', 100, NULL, NULL, 3366, 1, 2, false, '2021-01-04 11:03:23+07');
INSERT INTO public.issues VALUES (3367, 2, 46, 'Mobile - Tạo danh sách đơn hàng mới.', '', '2020-12-21', NULL, 5, 10, 2, 73, 10, 3, '2020-12-21 08:29:13+07', '2020-12-26 16:11:11+07', '2020-12-21', 100, NULL, NULL, 3367, 1, 2, false, '2020-12-26 16:11:11+07');
INSERT INTO public.issues VALUES (3368, 2, 46, 'Mobile - Tạo chi tiết của từng đơn hàng mới.', '', '2020-12-21', NULL, 5, 10, 2, 73, 10, 2, '2020-12-21 08:29:37+07', '2020-12-26 16:11:11+07', '2020-12-21', 100, NULL, NULL, 3368, 1, 2, false, '2020-12-26 16:11:11+07');
INSERT INTO public.issues VALUES (3369, 2, 42, 'Sửa icon no avatar', '', '2020-12-30', NULL, 5, 37, 2, 76, 5, 4, '2020-12-21 08:48:55+07', '2021-01-04 11:03:24+07', '2020-12-30', 100, NULL, NULL, 3369, 1, 2, false, '2021-01-04 11:03:24+07');
INSERT INTO public.issues VALUES (3370, 2, 46, 'Thêm tìm kiếm sản phẩm cho chức năng tạo khuyến mãi', '', '2020-12-21', NULL, 5, 39, 2, 72, 40, 1, '2020-12-21 10:29:25+07', '2020-12-21 10:29:58+07', '2020-12-21', 0, NULL, NULL, 3370, 1, 2, false, '2020-12-21 10:29:58+07');
INSERT INTO public.issues VALUES (3371, 2, 46, 'Khuyến mãi double', '', '2020-12-21', NULL, 5, 8, 2, 72, 8, 2, '2020-12-21 11:05:43+07', '2020-12-26 16:34:21+07', '2020-12-21', 100, NULL, NULL, 3371, 1, 2, false, '2020-12-26 16:34:21+07');
INSERT INTO public.issues VALUES (3372, 2, 46, 'Khuyến mãi có lựa chọn', '', '2020-12-21', NULL, 5, 8, 2, 72, 8, 2, '2020-12-21 11:06:07+07', '2020-12-26 16:34:21+07', '2020-12-21', 100, NULL, NULL, 3372, 1, 2, false, '2020-12-26 16:34:21+07');
INSERT INTO public.issues VALUES (3373, 2, 46, 'Danh mục sản phẩm đóng thêm xóa sửa khi phát sinh dữ liệu', '', '2020-12-21', NULL, 5, 8, 2, 72, 8, 2, '2020-12-21 11:07:07+07', '2020-12-26 16:34:22+07', '2020-12-21', 100, NULL, NULL, 3373, 1, 2, false, '2020-12-26 16:34:22+07');
INSERT INTO public.issues VALUES (3374, 2, 46, 'Danh mục sản phẩm thêm mới thành công chuyển qua detail', '', '2020-12-21', NULL, 5, 8, 2, 72, 8, 2, '2020-12-21 11:07:55+07', '2020-12-26 16:34:22+07', '2020-12-21', 100, NULL, NULL, 3374, 1, 2, false, '2020-12-26 16:34:22+07');
INSERT INTO public.issues VALUES (3375, 1, 46, 'Sai giá nhập cuối của thiết lập giá', 'Khi nhập hàng thì trong thiết lập giá hiển thị sai giá nhập cuối giữa đóng gói và đơn lẻ', '2020-12-21', NULL, 5, 41, 2, 72, 40, 2, '2020-12-21 14:42:44+07', '2020-12-26 16:23:40+07', '2020-12-21', 100, NULL, NULL, 3375, 1, 2, false, '2020-12-26 16:23:40+07');
INSERT INTO public.issues VALUES (3376, 2, 42, 'Load tree loại đơn vị', '', '2020-12-21', NULL, 5, 5, 2, 74, 5, 2, '2020-12-21 14:45:14+07', '2020-12-28 14:19:31+07', '2020-12-21', 100, NULL, NULL, 3376, 1, 2, false, '2020-12-28 14:19:31+07');
INSERT INTO public.issues VALUES (3377, 2, 42, 'Thêm/xóa/sửa loại đơn vị', '', '2020-12-21', NULL, 5, 37, 2, 74, 5, 4, '2020-12-21 14:45:28+07', '2020-12-28 14:19:31+07', '2020-12-21', 100, NULL, NULL, 3377, 1, 2, false, '2020-12-28 14:19:31+07');
INSERT INTO public.issues VALUES (3378, 2, 42, 'Load danh sách đơn vị theo loại đơn vị', '', '2020-12-21', NULL, 5, 5, 2, 74, 5, 2, '2020-12-21 14:45:51+07', '2020-12-28 14:19:31+07', '2020-12-21', 100, NULL, NULL, 3378, 1, 2, false, '2020-12-28 14:19:31+07');
INSERT INTO public.issues VALUES (3379, 2, 42, 'Load bảng phân quyền cho loại đơn vị', '', '2020-12-22', NULL, 5, 37, 2, 74, 5, 3, '2020-12-21 14:46:15+07', '2020-12-28 14:19:31+07', '2020-12-22', 100, NULL, NULL, 3379, 1, 2, false, '2020-12-28 14:19:31+07');
INSERT INTO public.issues VALUES (3380, 2, 42, 'Thêm, xóa phân quyền cho loại đơn vị', 'Khi đó, sẽ thực hiện kéo theo:

- Setup chức năng cho đơn vị => của loại đó

- Setup chức năng cho tài khoản quản trị => của đơn vị => của loại đó', '2020-12-22', NULL, 5, 37, 2, 74, 5, 4, '2020-12-21 14:48:42+07', '2020-12-28 14:19:31+07', '2020-12-22', 100, NULL, NULL, 3380, 1, 2, false, '2020-12-28 14:19:31+07');
INSERT INTO public.issues VALUES (3381, 1, 46, 'Fix lỗi ở tạo và phân bổ Khuyến mãi', '', '2020-12-21', NULL, 5, 39, 2, 72, 39, 1, '2020-12-21 16:31:01+07', '2020-12-26 16:23:40+07', '2020-12-21', 100, NULL, NULL, 3381, 1, 2, false, '2020-12-26 16:23:40+07');
INSERT INTO public.issues VALUES (3382, 1, 46, 'Không xóa được danh mục sản phẩm', '', '2020-12-22', NULL, 5, 41, 2, 72, 40, 2, '2020-12-22 01:11:44+07', '2020-12-26 16:23:40+07', '2020-12-22', 100, NULL, NULL, 3382, 1, 2, false, '2020-12-26 16:23:40+07');
INSERT INTO public.issues VALUES (3383, 1, 46, 'Khi thêm mới 1 sản phẩm và quy đổi đơn vị (1 thùng = 24 chai) nhưng kết quả hiển thị chỉ có một sản phẩm trong danh sách', '', '2020-12-22', NULL, 5, 39, 2, 72, 40, 3, '2020-12-22 01:13:25+07', '2020-12-26 16:23:41+07', '2020-12-22', 100, NULL, NULL, 3383, 1, 2, false, '2020-12-26 16:23:41+07');
INSERT INTO public.issues VALUES (3384, 1, 46, 'Format thời gian sai', '![](clipboard-202012220828-dwpxl.png)
', '2020-12-22', NULL, 5, 41, 2, 72, 40, 4, '2020-12-22 01:31:07+07', '2020-12-26 16:23:41+07', '2020-12-22', 100, NULL, NULL, 3384, 1, 2, false, '2020-12-26 16:23:41+07');
INSERT INTO public.issues VALUES (3385, 1, 46, 'Sai Khi xóa sản phẩm có đơn vị quy đổi', 'Sản phẩm có 3 đơn vị tính là thùng, chai, lốc. khi xóa thì sẽ xóa sản phẩm được chọn và 2 sản phẩm còn lại không xem được chi tiết', '2020-12-22', NULL, 5, 39, 2, 72, 40, 3, '2020-12-22 01:48:55+07', '2020-12-26 16:23:41+07', '2020-12-22', 100, NULL, NULL, 3385, 1, 2, false, '2020-12-26 16:23:41+07');
INSERT INTO public.issues VALUES (3386, 2, 46, 'Mã khuyến mãi để nhập tay không chạy tự động', '', '2020-12-23', NULL, 5, 39, 2, 72, 40, 5, '2020-12-22 06:39:21+07', '2020-12-26 16:23:41+07', '2020-12-23', 100, NULL, NULL, 3386, 1, 2, false, '2020-12-26 16:23:41+07');
INSERT INTO public.issues VALUES (3387, 2, 48, 'Sáng kiến cán bộ', '', '2020-12-23', NULL, 3, 15, 2, NULL, 15, 5, '2020-12-22 08:24:31+07', '2020-12-24 16:09:49+07', '2020-12-22', 100, NULL, 2412, 2412, 168, 175, false, NULL);
INSERT INTO public.issues VALUES (3388, 2, 48, 'Đánh giá khen thưởng tập thể', '', '2020-12-27', NULL, 3, 17, 2, NULL, 15, 8, '2020-12-22 08:24:57+07', '2021-01-25 08:11:21+07', '2020-12-26', 50, NULL, 2412, 2412, 176, 181, false, NULL);
INSERT INTO public.issues VALUES (3389, 2, 49, 'Chuyển đổi nguồn tiền cho đơn vị', '', '2020-12-22', NULL, 1, 15, 2, NULL, 15, 1, '2020-12-22 08:27:43+07', '2020-12-22 08:27:54+07', '2020-12-22', 100, NULL, NULL, 3389, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3390, 2, 46, 'Giao diện thêm và xử lí thêm khuyến mãi theo Loại Khuyến mãi Số lượng', '', '2020-12-23', NULL, 5, 39, 2, 72, 39, 3, '2020-12-22 09:18:08+07', '2020-12-26 16:23:41+07', '2020-12-22', 100, NULL, NULL, 3390, 1, 2, false, '2020-12-26 16:23:41+07');
INSERT INTO public.issues VALUES (3391, 2, 46, 'Mobile - Sửa api, giao diện tạo đơn hàng.', '', '2020-12-23', NULL, 5, 10, 2, 78, 10, 3, '2020-12-23 01:14:31+07', '2020-12-26 16:44:16+07', '2020-12-22', 50, NULL, NULL, 3391, 1, 2, false, '2020-12-26 16:44:16+07');
INSERT INTO public.issues VALUES (3392, 2, 49, 'Thiết lập năm cho nguồn tiền đơn vị', '', '2020-12-23', NULL, 3, 15, 2, NULL, 15, 4, '2020-12-23 02:00:42+07', '2020-12-23 03:12:50+07', '2020-12-23', 100, NULL, NULL, 3392, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3393, 2, 42, 'Giao diện đơn vị trực thuộc', '', '2020-12-23', NULL, 5, 37, 2, 74, 37, 3, '2020-12-23 04:18:56+07', '2020-12-28 14:19:32+07', '2020-12-23', 100, NULL, NULL, 3393, 1, 2, false, '2020-12-28 14:19:32+07');
INSERT INTO public.issues VALUES (3394, 2, 42, 'Danh mục nhóm đối tượng', '', '2020-12-23', NULL, 5, 5, 2, 74, 5, 2, '2020-12-23 14:56:29+07', '2020-12-28 14:19:32+07', '2020-12-23', 100, NULL, NULL, 3394, 1, 2, false, '2020-12-28 14:19:32+07');
INSERT INTO public.issues VALUES (3395, 2, 42, 'Chọn đơn vị vào nhóm đối tượng', '', '2020-12-24', NULL, 5, 37, 2, 74, 5, 4, '2020-12-23 14:57:00+07', '2020-12-28 14:19:32+07', '2020-12-24', 100, NULL, NULL, 3395, 1, 2, false, '2020-12-28 14:19:32+07');
INSERT INTO public.issues VALUES (3396, 2, 46, 'Giao diện thêm, xem, sửa và xử lí thêm, xem khuyến mãi theo Loại Khuyến mãi Số lượng', '', '2020-12-25', NULL, 5, 39, 2, 72, 39, 5, '2020-12-23 16:31:44+07', '2020-12-26 16:23:41+07', '2020-12-23', 100, NULL, NULL, 3396, 1, 2, false, '2020-12-26 16:23:41+07');
INSERT INTO public.issues VALUES (3397, 1, 46, 'Thêm ghi chú cho phiều mua hàng', '![](clipboard-202012231653-m9m1k.png)
', NULL, NULL, 1, NULL, 2, 33, 40, 1, '2020-12-23 16:53:35+07', '2021-01-12 08:26:20+07', '2020-12-23', 0, NULL, NULL, 3397, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3398, 2, 48, 'Báo cáo sáng kiến', '', '2020-12-23', NULL, 3, 15, 2, NULL, 15, 2, '2020-12-23 17:03:48+07', '2020-12-24 16:09:49+07', '2020-12-22', 100, NULL, 3387, 2412, 169, 170, false, NULL);
INSERT INTO public.issues VALUES (3399, 2, 48, 'Tab sáng kiến của cán bộ', '', '2020-12-23', NULL, 3, 15, 2, NULL, 15, 2, '2020-12-23 17:04:10+07', '2020-12-23 17:05:46+07', '2020-12-22', 100, NULL, 3387, 2412, 171, 172, false, NULL);
INSERT INTO public.issues VALUES (3400, 2, 48, 'Danh sách sáng kiến của đơn vị', '', '2020-12-23', NULL, 3, 15, 2, NULL, 15, 2, '2020-12-23 17:04:32+07', '2020-12-23 17:05:46+07', '2020-12-22', 100, NULL, 3387, 2412, 173, 174, false, NULL);
INSERT INTO public.issues VALUES (3401, 2, 46, 'API tạo Khuyến mãi theo số lượng', '', '2020-12-23', NULL, 5, 41, 2, 72, 41, 2, '2020-12-24 10:10:51+07', '2020-12-26 16:23:41+07', '2020-12-23', 100, NULL, NULL, 3401, 1, 2, false, '2020-12-26 16:23:41+07');
INSERT INTO public.issues VALUES (3402, 2, 46, 'API trả về thông tin khuyến mãi số lượng', '', '2020-12-23', NULL, 5, 41, 2, 72, 41, 5, '2020-12-24 10:11:43+07', '2020-12-26 16:23:41+07', '2020-12-23', 100, NULL, NULL, 3402, 1, 2, false, '2020-12-26 16:23:41+07');
INSERT INTO public.issues VALUES (3403, 2, 46, 'API thông tin tồn kho thực tế', 'Số lượng tồn - số lượng treo đơn hàng = tồn thực tế', '2020-12-24', NULL, 5, 41, 2, 72, 41, 4, '2020-12-24 10:12:23+07', '2020-12-26 16:23:41+07', '2020-12-24', 100, NULL, NULL, 3403, 1, 2, false, '2020-12-26 16:23:41+07');
INSERT INTO public.issues VALUES (3404, 2, 46, 'API tính số lượng khuyến mãi', '', '2020-12-24', NULL, 5, 41, 2, 72, 41, 4, '2020-12-24 10:14:05+07', '2020-12-26 16:23:42+07', '2020-12-24', 100, NULL, NULL, 3404, 1, 2, false, '2020-12-26 16:23:42+07');
INSERT INTO public.issues VALUES (3405, 2, 46, 'API cập nhật khuyến mãi số lượng', '', '2020-12-24', NULL, 5, 41, 2, 72, 41, 3, '2020-12-24 10:14:24+07', '2020-12-26 16:23:42+07', '2020-12-24', 100, NULL, NULL, 3405, 1, 2, false, '2020-12-26 16:23:42+07');
INSERT INTO public.issues VALUES (3406, 1, 46, 'Mobile - Sửa giao diện các báo cáo: đổi thành tiền -> chiết khấu -> tiền phải trả.', '', '2020-12-24', NULL, 5, 10, 2, 73, 10, 2, '2020-12-24 16:58:46+07', '2020-12-26 16:11:11+07', '2020-12-24', 100, NULL, NULL, 3406, 1, 2, false, '2020-12-26 16:11:11+07');
INSERT INTO public.issues VALUES (3407, 1, 46, 'Mobile - Sửa giao diện Sổ quỹ.', '', '2020-12-24', NULL, 5, 10, 2, 73, 10, 2, '2020-12-24 16:59:20+07', '2020-12-26 16:11:11+07', '2020-12-24', 100, NULL, NULL, 3407, 1, 2, false, '2020-12-26 16:11:11+07');
INSERT INTO public.issues VALUES (3408, 1, 46, 'Mobile - Thêm thông báo khi quy đổi đơn vị trong thêm sản phẩm bị trùng.', '', '2020-12-24', NULL, 5, 10, 2, 73, 10, 2, '2020-12-24 16:59:58+07', '2020-12-26 16:11:11+07', '2020-12-24', 100, NULL, NULL, 3408, 1, 2, false, '2020-12-26 16:11:11+07');
INSERT INTO public.issues VALUES (3409, 1, 46, 'Mobile - Format thời gian ngày tháng năm.', '', '2020-12-25', NULL, 5, 10, 2, 73, 10, 3, '2020-12-25 14:16:09+07', '2020-12-26 16:11:11+07', '2020-12-25', 100, NULL, NULL, 3409, 1, 2, false, '2020-12-26 16:11:11+07');
INSERT INTO public.issues VALUES (3411, 1, 46, 'Mobile - Sửa điều hướng của mối quan tâm tất cả nhóm báo cáo.', '', '2020-12-25', NULL, 5, 10, 2, 73, 10, 2, '2020-12-25 16:35:26+07', '2020-12-26 16:11:11+07', '2020-12-25', 100, NULL, NULL, 3411, 1, 2, false, '2020-12-26 16:11:11+07');
INSERT INTO public.issues VALUES (3412, 2, 46, 'fix API thêm xóa sửa khuyến mãi ', '', '2020-12-26', NULL, 5, 41, 2, 72, 41, 2, '2020-12-26 08:06:23+07', '2020-12-26 16:23:42+07', '2020-12-26', 100, NULL, NULL, 3412, 1, 2, false, '2020-12-26 16:23:42+07');
INSERT INTO public.issues VALUES (3413, 2, 46, 'fix API load danh sách sản phẩm theo bảng giá', '', '2020-12-26', NULL, 5, 41, 2, 72, 41, 2, '2020-12-26 08:07:58+07', '2020-12-26 16:23:42+07', '2020-12-26', 100, NULL, NULL, 3413, 1, 2, false, '2020-12-26 16:23:42+07');
INSERT INTO public.issues VALUES (3414, 2, 46, 'Update tạo phiếu kiểm kho', '', '2020-12-26', NULL, 5, 39, 2, 72, 39, 3, '2020-12-26 11:32:56+07', '2020-12-26 16:23:42+07', '2020-12-26', 100, NULL, NULL, 3414, 1, 2, false, '2020-12-26 16:23:42+07');
INSERT INTO public.issues VALUES (3415, 5, 57, 'Sửa FB gói 10 đồ án QHNTM Bình Phước', '', '2020-12-26', NULL, 1, 32, 2, NULL, 33, 1, '2020-12-26 15:32:10+07', '2020-12-26 15:33:47+07', '2020-12-20', 100, NULL, NULL, 3415, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3416, 5, 57, 'Kiễm tra dữ liệu gói 8 (6 đồ án QHNTM)', 'Sỹ kiễm tra lại 3 đồ án 35,38,39
Phúc kiễm tra 3đồ án 36,37,34', '2020-12-31', NULL, 1, 32, 2, NULL, 33, 2, '2020-12-26 15:33:36+07', '2021-01-28 13:54:56+07', '2020-12-26', 100, NULL, NULL, 3416, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3417, 1, 46, 'Mobile - Sửa datepicker bị che.', '', '2020-12-26', NULL, 5, 10, 2, 73, 10, 2, '2020-12-26 15:49:00+07', '2020-12-26 16:11:20+07', '2020-12-26', 100, NULL, NULL, 3417, 1, 2, false, '2020-12-26 16:11:20+07');
INSERT INTO public.issues VALUES (3418, 2, 42, 'Lịch báo cáo đi', 'List ra lịch cho đơn vị biết sắp đến mình cần làm gì', '2020-12-28', NULL, 5, 5, 2, 76, 5, 4, '2020-12-26 16:06:33+07', '2021-01-04 11:03:24+07', '2020-12-28', 100, NULL, NULL, 3418, 1, 2, false, '2021-01-04 11:03:24+07');
INSERT INTO public.issues VALUES (3419, 2, 42, 'Gắn api vào nút tạo báo cáo tự động', '', '2020-12-28', NULL, 5, 37, 2, 76, 5, 3, '2020-12-26 16:11:18+07', '2021-01-04 11:03:24+07', '2020-12-28', 100, NULL, NULL, 3419, 1, 2, false, '2021-01-04 11:03:24+07');
INSERT INTO public.issues VALUES (3420, 2, 48, 'Đánh giá phân loại viên chức - tập thể', '', '2021-01-06', NULL, 1, 15, 2, NULL, 15, 13, '2020-12-27 15:16:49+07', '2021-01-06 16:09:44+07', '2020-12-24', 100, NULL, 2412, 2412, 182, 201, false, NULL);
INSERT INTO public.issues VALUES (3421, 2, 48, 'Số giờ giảng của cán bộ', '', '2020-12-30', NULL, 3, 15, 2, NULL, 15, 4, '2020-12-27 15:18:20+07', '2020-12-30 15:29:07+07', '2020-12-24', 100, NULL, 3420, 2412, 183, 184, false, NULL);
INSERT INTO public.issues VALUES (3422, 2, 48, 'Đánh giá cá nhân cán bộ', '', '2020-12-30', NULL, 3, 15, 2, NULL, 15, 4, '2020-12-27 15:18:47+07', '2020-12-30 15:29:08+07', '2020-12-24', 100, NULL, 3420, 2412, 185, 186, false, NULL);
INSERT INTO public.issues VALUES (3423, 2, 48, 'Xuất báo cái đánh giá phân loại', '', '2020-12-30', NULL, 3, 15, 2, NULL, 15, 4, '2020-12-27 15:19:13+07', '2020-12-30 15:29:08+07', '2020-12-24', 100, NULL, 3420, 2412, 187, 188, false, NULL);
INSERT INTO public.issues VALUES (3425, 4, 19, 'Cập nhật và sửa đổi chính sách công ty theo văn bản pháp luật có hiệu lực 2021', '', '2020-12-31', NULL, 1, 21, 2, NULL, 21, 0, '2020-12-28 08:31:05+07', '2020-12-28 08:31:05+07', '2020-12-28', 0, NULL, NULL, 3425, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3426, 5, 52, 'Phân loại, chỉnh sửa, sắp xếp tài liệu Phòng Nội Vụ', '', '2020-12-28', NULL, 1, 34, 2, NULL, 23, 0, '2020-12-28 08:33:33+07', '2020-12-28 08:33:33+07', '2020-12-10', 0, NULL, NULL, 3426, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3427, 5, 52, 'Phân loại, chỉnh sửa, sắp xếp tài liệu Phòng Nội Vụ', '', '2020-12-28', NULL, 1, 23, 2, NULL, 23, 0, '2020-12-28 08:34:41+07', '2020-12-28 08:34:41+07', '2020-12-10', 0, NULL, NULL, 3427, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3428, 5, 52, 'Phân loại, chỉnh sửa, sắp xếp tài liệu Phòng Nội Vụ', '', '2020-12-28', NULL, 1, 28, 2, NULL, 23, 0, '2020-12-28 08:35:06+07', '2020-12-28 08:35:06+07', '2020-12-10', 0, NULL, NULL, 3428, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3429, 5, 52, 'Phân loại, chỉnh sửa, sắp xếp tài liệu Phòng Nội Vụ', '', '2020-12-28', NULL, 1, 45, 2, NULL, 23, 0, '2020-12-28 08:35:32+07', '2020-12-28 08:35:32+07', '2020-12-10', 0, NULL, NULL, 3429, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3430, 5, 52, 'Phân loại, chỉnh sửa, sắp xếp tài liệu Phòng Nội Vụ', '', '2020-12-28', NULL, 1, 31, 2, NULL, 23, 0, '2020-12-28 08:36:05+07', '2020-12-28 08:36:05+07', '2020-12-10', 0, NULL, NULL, 3430, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3431, 1, 46, 'Chỉnh sửa phiếu mua hàng', '', '2020-12-28', NULL, 5, 41, 2, 79, 40, 2, '2020-12-28 09:38:22+07', '2021-01-04 13:22:56+07', '2020-12-28', 100, NULL, NULL, 3431, 1, 2, false, '2021-01-04 13:22:56+07');
INSERT INTO public.issues VALUES (3432, 1, 46, 'api Chi tiết phiếu trong sổ quỹ bị lỗi', '', '2021-01-04', NULL, 5, 41, 2, 81, 40, 5, '2020-12-28 09:38:52+07', '2021-01-12 08:26:45+07', '2021-01-04', 100, NULL, NULL, 3432, 1, 2, false, '2021-01-12 08:26:45+07');
INSERT INTO public.issues VALUES (3433, 1, 46, 'Mobile - Sai component thời gian 7 ngày qua, 30 ngày qua', '', '2020-12-28', NULL, 5, 10, 2, 78, 40, 2, '2020-12-28 14:03:16+07', '2021-01-04 13:21:49+07', '2020-12-28', 100, NULL, NULL, 3433, 1, 2, false, '2021-01-04 13:21:49+07');
INSERT INTO public.issues VALUES (3434, 1, 46, 'Mobile - Hiển thị 2 thông báo khi thêm sản phẩm thành công', '', '2020-12-28', NULL, 5, 10, 2, 78, 40, 2, '2020-12-28 14:06:46+07', '2021-01-04 13:21:49+07', '2020-12-28', 100, NULL, NULL, 3434, 1, 2, false, '2021-01-04 13:21:49+07');
INSERT INTO public.issues VALUES (3435, 1, 46, 'Mobile - Chỉnh sửa thông báo khi nhập từ ngày đến ngày', '', '2020-12-28', NULL, 5, 10, 2, 78, 40, 2, '2020-12-28 14:11:09+07', '2021-01-04 13:21:49+07', '2020-12-28', 100, NULL, NULL, 3435, 1, 2, false, '2021-01-04 13:21:49+07');
INSERT INTO public.issues VALUES (3436, 2, 42, 'Danh sách báo cáo đến', '', '2020-12-28', NULL, 5, 5, 2, 76, 5, 3, '2020-12-28 14:18:57+07', '2021-01-04 11:03:24+07', '2020-12-28', 100, NULL, NULL, 3436, 1, 2, false, '2021-01-04 11:03:24+07');
INSERT INTO public.issues VALUES (3437, 2, 42, 'Chi tiết quy trình load tần suất', '', '2020-12-28', NULL, 5, 12, 2, 76, 5, 3, '2020-12-28 14:55:45+07', '2021-01-04 11:03:24+07', '2020-12-28', 100, NULL, NULL, 3437, 1, 2, false, '2021-01-04 11:03:24+07');
INSERT INTO public.issues VALUES (3438, 2, 42, 'Chi tiết quy trình cập nhật tần suất', '', '2020-12-29', NULL, 5, 12, 2, 76, 5, 3, '2020-12-28 14:56:02+07', '2021-01-04 11:03:24+07', '2020-12-29', 100, NULL, NULL, 3438, 1, 2, false, '2021-01-04 11:03:24+07');
INSERT INTO public.issues VALUES (3439, 2, 42, 'Làm nút ký số', '', '2021-01-04', NULL, 5, 39, 2, 77, 5, 10, '2020-12-28 14:56:56+07', '2021-01-11 08:35:15+07', '2021-01-04', 100, NULL, NULL, 3439, 1, 2, false, '2021-01-11 08:35:15+07');
INSERT INTO public.issues VALUES (3440, 2, 42, 'Làm nút gửi', '', '2021-01-04', NULL, 5, 39, 2, 77, 5, 11, '2020-12-28 14:57:09+07', '2021-01-11 08:35:15+07', '2021-01-04', 100, NULL, NULL, 3440, 1, 2, false, '2021-01-11 08:35:15+07');
INSERT INTO public.issues VALUES (3441, 2, 42, 'Làm nút phê duyệt', '', '2021-01-04', NULL, 5, 39, 2, 77, 5, 10, '2020-12-28 14:57:24+07', '2021-01-11 08:35:15+07', '2021-01-04', 100, NULL, NULL, 3441, 1, 2, false, '2021-01-11 08:35:15+07');
INSERT INTO public.issues VALUES (3442, 2, 42, 'Làm nút từ chối', '', '2021-01-04', NULL, 5, 39, 2, 77, 5, 11, '2020-12-28 14:57:39+07', '2021-01-11 08:35:15+07', '2021-01-04', 100, NULL, NULL, 3442, 1, 2, false, '2021-01-11 08:35:15+07');
INSERT INTO public.issues VALUES (3443, 2, 42, 'Lĩnh vực quản lý ngân sách', '', '2021-01-11', NULL, 5, 40, 2, 80, 5, 11, '2020-12-28 14:59:15+07', '2021-01-12 08:18:34+07', '2021-01-11', 100, NULL, NULL, 3443, 1, 2, false, '2021-01-12 08:18:34+07');
INSERT INTO public.issues VALUES (3444, 2, 42, 'Lĩnh vực hành chính sự nghiệp', '', '2021-01-11', NULL, 5, 40, 2, 80, 5, 13, '2020-12-28 15:00:48+07', '2021-01-12 08:18:34+07', '2021-01-11', 100, NULL, NULL, 3444, 1, 2, false, '2021-01-12 08:18:34+07');
INSERT INTO public.issues VALUES (3445, 2, 46, 'In phiếu cho đơn hàng hoàn thành', '', '2020-12-28', NULL, 5, 41, 2, 79, 40, 2, '2020-12-28 15:18:57+07', '2021-01-04 13:22:56+07', '2020-12-28', 100, NULL, NULL, 3445, 1, 2, false, '2021-01-04 13:22:56+07');
INSERT INTO public.issues VALUES (3446, 2, 42, 'Trang thông tin người dùng', 'Lấy bên bán hàng qua', '2020-12-29', NULL, 5, 37, 2, 76, 5, 2, '2020-12-28 15:33:48+07', '2021-01-04 11:03:24+07', '2020-12-29', 100, NULL, NULL, 3446, 1, 2, false, '2021-01-04 11:03:24+07');
INSERT INTO public.issues VALUES (3447, 1, 46, 'Chỉnh sửa ghi nợ, ghi có của BC công nợ nhà cung cấp', '', '2021-01-08', NULL, 5, 41, 2, 81, 40, 6, '2020-12-28 15:48:50+07', '2021-01-12 08:26:45+07', '2021-01-08', 100, NULL, NULL, 3447, 1, 2, false, '2021-01-12 08:26:45+07');
INSERT INTO public.issues VALUES (3448, 2, 46, 'Mobile - Báo cáo công nợ khách hàng.', '', '2020-12-29', NULL, 5, 10, 2, 78, 10, 4, '2020-12-29 08:22:37+07', '2021-01-04 13:21:49+07', '2020-12-29', 100, NULL, NULL, 3448, 1, 2, false, '2021-01-04 13:21:49+07');
INSERT INTO public.issues VALUES (3449, 2, 48, 'Thêm sửa xóa thi đua khen thưởng tập thể', '', '2020-12-27', NULL, 3, NULL, 2, NULL, 17, 2, '2020-12-29 09:17:58+07', '2020-12-29 09:20:26+07', '2020-12-26', 100, NULL, 3388, 2412, 177, 178, false, NULL);
INSERT INTO public.issues VALUES (3450, 2, 48, 'Xuất báo cáo thi đua khen thưởng tập thể', '', NULL, NULL, 1, NULL, 2, NULL, 17, 0, '2020-12-29 09:20:45+07', '2020-12-29 09:20:45+07', '2020-12-29', 0, NULL, 3388, 2412, 179, 180, false, NULL);
INSERT INTO public.issues VALUES (3451, 2, 46, 'Thêm bộ lọc Nhóm đơn vị tính vào Tạo khuyến mãi', '', '2020-12-29', NULL, 5, 39, 2, 79, 39, 3, '2020-12-29 09:40:19+07', '2021-01-04 13:22:56+07', '2020-12-29', 100, NULL, NULL, 3451, 1, 2, false, '2021-01-04 13:22:56+07');
INSERT INTO public.issues VALUES (3452, 2, 48, 'Đánh giá phân loại cho tập thể', '', '2020-12-30', NULL, 3, 15, 2, NULL, 15, 3, '2020-12-29 10:24:44+07', '2020-12-30 15:29:08+07', '2020-12-24', 100, NULL, 3420, 2412, 189, 190, false, NULL);
INSERT INTO public.issues VALUES (3453, 2, 48, 'Phân bổ tổng giờ dạy cho tập thể-phòng ban', '', '2020-12-30', NULL, 3, 15, 2, NULL, 15, 3, '2020-12-29 10:25:15+07', '2020-12-30 15:29:08+07', '2020-12-24', 100, NULL, 3420, 2412, 191, 192, false, NULL);
INSERT INTO public.issues VALUES (3454, 2, 42, 'Thống kê báo cáo - Xem chi tiết', '', '2020-12-31', NULL, 5, 39, 2, 76, 5, 4, '2020-12-29 11:45:39+07', '2021-01-04 11:22:59+07', '2020-12-31', 100, NULL, NULL, 3454, 1, 2, false, '2021-01-04 11:22:59+07');
INSERT INTO public.issues VALUES (3457, 2, 42, 'api lấy số lượng quy trình chưa hoàn thành', 'Xem ở từng báo cáo, từng quy trình, từng mẫu', '2020-12-30', NULL, 5, 38, 2, 76, 5, 2, '2020-12-29 11:56:14+07', '2021-01-04 11:03:24+07', '2020-12-30', 100, NULL, NULL, 3457, 1, 2, false, '2021-01-04 11:03:24+07');
INSERT INTO public.issues VALUES (3458, 2, 42, 'api lấy số lượng báo cáo đến hạn gửi, báo cáo trễ hạn', 'Ở từng lĩnh vực', '2021-01-04', NULL, 5, 38, 2, 77, 5, 3, '2020-12-29 11:58:16+07', '2021-01-11 08:35:15+07', '2021-01-04', 100, NULL, NULL, 3458, 1, 2, false, '2021-01-11 08:35:15+07');
INSERT INTO public.issues VALUES (3459, 2, 42, 'Hiển thị số lượng báo cáo đến hạn gửi, báo cáo trễ hạn trong danh sách báo cáo đi', '', '2021-01-04', NULL, 5, 37, 2, 77, 5, 4, '2020-12-29 11:59:04+07', '2021-01-11 08:35:15+07', '2021-01-04', 100, NULL, NULL, 3459, 1, 2, false, '2021-01-11 08:35:15+07');
INSERT INTO public.issues VALUES (3460, 5, 57, '01 Quy hoạch xây dựng nông thôn mới xã Lộc Hòa', 'Xử lí bản đồ và nhập liệu', '2021-01-04', NULL, 1, 43, 2, NULL, 33, 2, '2020-12-29 13:35:19+07', '2021-01-28 13:54:24+07', '2020-12-29', 100, NULL, NULL, 3460, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3461, 5, 57, '02 Quy hoạch xây dựng nông thôn mới xã Lộc An', 'Xữ lí bản đồ và nhập liệu', '2021-01-04', NULL, 1, 44, 2, NULL, 33, 2, '2020-12-29 13:36:04+07', '2021-01-28 13:54:34+07', '2020-12-29', 100, NULL, NULL, 3461, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3462, 5, 57, '03 Quy hoạch xây dựng nông thôn mới xã Lộc Tấn', 'xử lí bản đồ và nhập liệu', '2021-01-14', NULL, 1, 33, 2, NULL, 33, 3, '2020-12-29 13:36:40+07', '2021-01-28 13:53:48+07', '2021-01-08', 100, NULL, NULL, 3462, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (3463, 5, 57, '06 Quy hoạch xây dựng nông thôn mới xã Lộc Thuận', 'xử lí bản đồ', '2021-01-06', NULL, 1, 33, 2, NULL, 33, 3, '2020-12-29 13:37:54+07', '2021-01-28 13:53:59+07', '2020-12-31', 100, NULL, NULL, 3463, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (3464, 5, 57, '09 Quy hoạch xây dựng xã nông thôn mới xã Long Bình', 'xử lí bản đồ và nhập liệu', '2021-01-05', NULL, 1, 32, 2, NULL, 33, 2, '2020-12-29 13:38:26+07', '2021-01-12 09:10:22+07', '2020-12-31', 100, NULL, NULL, 3464, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (3465, 5, 57, '04 Quy hoạch xây dựng nông thôn mới xã Lộc Thạnh', 'Xử lí bản đồ và nhập liệu', '2021-01-05', NULL, 1, 32, 2, NULL, 33, 2, '2020-12-29 13:48:55+07', '2021-01-11 13:46:47+07', '2020-12-30', 100, NULL, NULL, 3465, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3466, 5, 57, '05 Quy hoạch xây dựng nông thôn mới xã Lộc Thiện', 'xử lí bản đồ và nhập liệu', '2021-01-05', NULL, 1, 23, 2, NULL, 33, 2, '2020-12-29 13:49:29+07', '2021-01-28 13:54:12+07', '2020-12-30', 100, NULL, NULL, 3466, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3467, 2, 46, 'Thêm tính năng phụ thuộc CTKM khác vào Khuyến mãi ', '', '2020-12-30', NULL, 5, 39, 2, 79, 39, 4, '2020-12-30 09:55:15+07', '2021-01-04 13:22:56+07', '2020-12-30', 100, NULL, NULL, 3467, 1, 2, false, '2021-01-04 13:22:56+07');
INSERT INTO public.issues VALUES (3468, 1, 46, 'Xóa nút Xuất file và xuất file in ở giao diện công nợ của khách hàng và nhà cung cấp', '', '2020-12-30', NULL, 5, 39, 2, 79, 40, 3, '2020-12-30 13:18:35+07', '2021-01-04 13:22:56+07', '2020-12-30', 100, NULL, NULL, 3468, 1, 2, false, '2021-01-04 13:22:56+07');
INSERT INTO public.issues VALUES (3469, 1, 46, 'Không chỉnh sửa được khuyến mãi', '', '2020-12-30', NULL, 5, 39, 2, 79, 40, 3, '2020-12-30 13:19:34+07', '2021-01-04 13:22:56+07', '2020-12-30', 100, NULL, NULL, 3469, 1, 2, false, '2021-01-04 13:22:56+07');
INSERT INTO public.issues VALUES (3470, 2, 48, 'Báo cáo đánh giá phân loại tập thể', '', '2021-01-04', NULL, 3, 15, 2, NULL, 15, 2, '2020-12-30 14:34:40+07', '2021-01-04 11:04:10+07', '2021-01-04', 100, NULL, 3420, 2412, 193, 194, false, NULL);
INSERT INTO public.issues VALUES (3471, 2, 48, 'Form đánh giá tập thể', '', '2020-12-31', NULL, 3, 15, 2, NULL, 15, 2, '2020-12-30 15:32:06+07', '2020-12-30 16:46:21+07', '2020-12-30', 100, NULL, 3420, 2412, 195, 196, false, NULL);
INSERT INTO public.issues VALUES (3472, 2, 48, 'Thi đua khen thưởng cá nhân', '', '2020-12-30', NULL, 3, 17, 2, NULL, 17, 2, '2020-12-30 16:37:05+07', '2021-01-25 08:11:00+07', '2020-12-30', 100, NULL, 2958, 2412, 159, 162, false, NULL);
INSERT INTO public.issues VALUES (3473, 2, 48, 'Thêm sửa xóa thi đua khen thưởng cá nhân', '', '2020-12-30', NULL, 3, 17, 2, NULL, 17, 1, '2020-12-30 16:38:49+07', '2021-01-25 08:11:00+07', '2020-12-30', 100, NULL, 3472, 2412, 160, 161, false, NULL);
INSERT INTO public.issues VALUES (3474, 1, 42, 'Danh mục tần suất lỗi', '', '2020-12-31', NULL, 5, 12, 2, 76, 5, 3, '2020-12-30 17:13:27+07', '2021-01-04 11:03:24+07', '2020-12-31', 100, NULL, NULL, 3474, 1, 2, false, '2021-01-04 11:03:24+07');
INSERT INTO public.issues VALUES (3475, 2, 42, 'Trong danh mục tần suất cho sửa Số lần thực hiện', '', '2020-12-31', NULL, 5, 12, 2, 76, 5, 3, '2020-12-30 17:13:59+07', '2021-01-04 11:03:25+07', '2020-12-31', 100, NULL, NULL, 3475, 1, 2, false, '2021-01-04 11:03:25+07');
INSERT INTO public.issues VALUES (3476, 2, 46, 'Bỏ giao diện lich sử bán/ trả hàng và nhập/ trả hàng của khách hàng và nhà cung cấp', '', '2020-12-30', NULL, 5, 39, 2, 79, 40, 3, '2020-12-30 22:22:42+07', '2021-01-04 13:22:56+07', '2020-12-30', 100, NULL, NULL, 3476, 1, 2, false, '2021-01-04 13:22:56+07');
INSERT INTO public.issues VALUES (3477, 2, 46, 'Bỏ nút xuất file công nợ và xuất file trong công nợ của nhà cung cấp và khách hàng', '', '2020-12-31', NULL, 5, 39, 2, 79, 40, 4, '2020-12-30 22:23:19+07', '2021-01-04 13:22:56+07', '2020-12-30', 100, NULL, NULL, 3477, 1, 2, false, '2021-01-04 13:22:56+07');
INSERT INTO public.issues VALUES (3478, 1, 46, 'Sai thời gian ngày giờ khi hủy đơn hàng', '', '2020-12-31', NULL, 5, 41, 2, 79, 40, 2, '2020-12-30 22:24:24+07', '2021-01-04 13:22:56+07', '2020-12-30', 100, NULL, NULL, 3478, 1, 2, false, '2021-01-04 13:22:56+07');
INSERT INTO public.issues VALUES (3479, 1, 46, 'BC hàng tồn kho và BC nhập xuất tồn sai khi hủy đơn hàng', '', '2020-12-31', NULL, 5, 41, 2, 79, 40, 2, '2020-12-30 22:25:15+07', '2021-01-04 13:22:56+07', '2020-12-30', 100, NULL, NULL, 3479, 1, 2, false, '2021-01-04 13:22:56+07');
INSERT INTO public.issues VALUES (3480, 1, 46, 'Sai bố cục báo cáo bảng kê chi tiết mua hàng', '', '2021-01-08', NULL, 5, 41, 2, 81, 40, 7, '2020-12-30 22:27:15+07', '2021-01-12 08:26:45+07', '2021-01-08', 100, NULL, NULL, 3480, 1, 2, false, '2021-01-12 08:26:45+07');
INSERT INTO public.issues VALUES (3481, 1, 46, 'Sai kết quả phép tính nợ cần thu từ khách', '', '2021-01-04', NULL, 5, 41, 2, 81, 40, 4, '2020-12-30 22:29:27+07', '2021-01-12 08:26:45+07', '2021-01-04', 100, NULL, NULL, 3481, 1, 2, false, '2021-01-12 08:26:45+07');
INSERT INTO public.issues VALUES (3482, 1, 46, 'Xóa giao diện lịch sử thao thác của thông tin người dùng', '', '2020-12-31', NULL, 5, 39, 2, 79, 40, 3, '2020-12-31 08:27:17+07', '2021-01-04 13:22:57+07', '2020-12-31', 100, NULL, NULL, 3482, 1, 2, false, '2021-01-04 13:22:57+07');
INSERT INTO public.issues VALUES (3483, 1, 46, 'Khi thêm bảng giá mới nếu nhấn lưu 2 lần thì hiển thị 2 bảng giá', '', '2021-01-04', NULL, 5, 8, 2, 81, 40, 6, '2020-12-31 08:34:09+07', '2021-01-12 08:26:45+07', '2021-01-04', 100, NULL, NULL, 3483, 1, 2, false, '2021-01-12 08:26:45+07');
INSERT INTO public.issues VALUES (3484, 2, 46, 'Mobile - Chuyển doanh thu, lợi nhuận xuống cuối trang của tất cả báo cáo.', '', '2020-12-31', NULL, 5, 10, 2, 78, 10, 3, '2020-12-31 09:31:35+07', '2021-01-04 13:21:49+07', '2020-12-31', 100, NULL, NULL, 3484, 1, 2, false, '2021-01-04 13:21:49+07');
INSERT INTO public.issues VALUES (3485, 2, 46, 'Mobile - Chuyển tổng đơn hàng mới xuống dưới cùng, thêm trạng thái đơn, thêm khách hàng.', '', '2020-12-31', NULL, 5, 10, 2, 78, 10, 3, '2020-12-31 09:33:00+07', '2021-01-04 13:21:49+07', '2020-12-31', 100, NULL, NULL, 3485, 1, 2, false, '2021-01-04 13:21:49+07');
INSERT INTO public.issues VALUES (3486, 2, 42, 'Load lại data khi cập nhật DoiTuongGui_Id trong Chi Tiết Quy Trình', '', '2020-12-31', NULL, 5, 12, 2, 76, 12, 2, '2020-12-31 09:34:57+07', '2021-01-04 11:03:25+07', '2020-12-31', 100, NULL, NULL, 3486, 1, 2, false, '2021-01-04 11:03:25+07');
INSERT INTO public.issues VALUES (3487, 1, 42, 'Thiếu mẫu báo cáo của báo cáo đi và đến', '
', '2021-01-04', NULL, 5, 38, 2, 77, 40, 5, '2020-12-31 11:10:59+07', '2021-01-11 08:35:15+07', '2021-01-04', 100, NULL, NULL, 3487, 1, 2, false, '2021-01-11 08:35:15+07');
INSERT INTO public.issues VALUES (3488, 5, 57, 'Nhập Liệu', '', '2021-01-06', NULL, 1, 24, 2, NULL, 33, 2, '2020-12-31 13:49:56+07', '2021-01-28 13:53:59+07', '2020-12-31', 100, NULL, 3463, 3463, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3489, 5, 57, 'Nhập Liệu', '', '2021-01-05', NULL, 1, 29, 2, NULL, 33, 1, '2020-12-31 13:56:14+07', '2021-01-12 09:10:22+07', '2020-12-31', 100, NULL, 3464, 3464, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3490, 1, 42, 'Sai đơn vị nhận của báo cáo đi', '', '2021-01-04', NULL, 5, 38, 2, 77, 40, 4, '2020-12-31 14:14:44+07', '2021-01-11 08:35:15+07', '2021-01-04', 100, NULL, NULL, 3490, 1, 2, false, '2021-01-11 08:35:15+07');
INSERT INTO public.issues VALUES (3491, 1, 42, 'Chưa có báo cáo đến ', '', '2020-12-31', NULL, 5, 38, 2, 76, 40, 1, '2020-12-31 14:17:03+07', '2021-01-04 09:21:25+07', '2020-12-31', 0, NULL, NULL, 3491, 1, 2, false, '2021-01-04 09:21:25+07');
INSERT INTO public.issues VALUES (3492, 1, 42, 'Chỉnh sửa chức năng thêm tài khoản', '- Sửa giao diện
- Trạng thái của tài khoản quản trị
- Email không bắt buộc nhập', '2021-01-04', NULL, 5, 37, 2, 77, 40, 3, '2020-12-31 14:37:45+07', '2021-01-11 08:35:16+07', '2021-01-04', 100, NULL, NULL, 3492, 1, 2, false, '2021-01-11 08:35:16+07');
INSERT INTO public.issues VALUES (3493, 1, 42, 'Không thực hiện được thao tác sửa loại đơn vị', '', '2021-01-04', NULL, 5, 37, 2, 77, 40, 3, '2020-12-31 14:44:50+07', '2021-01-11 08:35:16+07', '2021-01-04', 100, NULL, NULL, 3493, 1, 2, false, '2021-01-11 08:35:16+07');
INSERT INTO public.issues VALUES (3494, 1, 42, 'Fix thao tác cập nhật trong chi tiết gửi nhận báo cáo', '', '2021-01-04', NULL, 5, 12, 2, 77, 40, 3, '2020-12-31 15:39:18+07', '2021-01-11 08:35:16+07', '2021-01-04', 100, NULL, NULL, 3494, 1, 2, false, '2021-01-11 08:35:16+07');
INSERT INTO public.issues VALUES (3495, 1, 42, 'Khi thêm mới đơn vị cho nhóm đối tượng thì tổng số đơn vị không tự động cập nhật', '', '2021-01-04', NULL, 5, 37, 2, 77, 40, 9, '2020-12-31 15:49:25+07', '2021-01-11 08:35:16+07', '2021-01-04', 100, NULL, NULL, 3495, 1, 2, false, '2021-01-11 08:35:16+07');
INSERT INTO public.issues VALUES (3496, 4, 32, 'Làm website, icon, chỉnh sửa', '- Làm website wordpress cho xuất nhập khẩu (3 website)
- Vẽ icon cho cho phần mềm báo cáo (5 hình ảnh)
- Tạo logo LRIS
', '2020-12-31', NULL, 1, 14, 2, NULL, 14, 0, '2020-12-31 17:01:40+07', '2020-12-31 17:01:40+07', '2020-12-21', 100, NULL, NULL, 3496, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3497, 2, 42, 'Thêm lựa chọn cho quy trình thực hiện báo cáo', 'Ví dụ: Uỷ ban nhân dân cấp xã gửi báo cáo cho Ủy ban nhân dân cấp huyện trước ngày 3 của tháng đầu tiên kỳ báo cáo tiếp theo', '2021-01-04', NULL, 5, 12, 2, 77, 40, 1, '2021-01-04 08:57:17+07', '2021-01-05 10:46:56+07', '2021-01-04', 0, NULL, NULL, 3497, 1, 2, false, '2021-01-05 10:46:56+07');
INSERT INTO public.issues VALUES (3498, 1, 42, 'Sai ngày đến hạn gửi của báo cáo đi cho định kì 3 tháng, 6 tháng, 9 tháng và 1 năm', '', '2021-01-04', NULL, 5, 38, 2, 77, 40, 3, '2021-01-04 09:23:30+07', '2021-01-11 08:35:16+07', '2021-01-04', 100, NULL, NULL, 3498, 1, 2, false, '2021-01-11 08:35:16+07');
INSERT INTO public.issues VALUES (3499, 1, 42, 'Sai mẫu báo cáo tương ứng với ngày đến hạn gửi của báo cáo đi', '', '2021-01-04', NULL, 5, 38, 2, 77, 40, 3, '2021-01-04 09:24:11+07', '2021-01-11 08:35:16+07', '2021-01-04', 100, NULL, NULL, 3499, 1, 2, false, '2021-01-11 08:35:16+07');
INSERT INTO public.issues VALUES (3500, 1, 42, 'Nhóm đối tượng - Không tìm kiếm được đơn vị trong danh sách đơn vị được thêm từ hệ thống', '', '2021-01-04', NULL, 5, 37, 2, 77, 40, 2, '2021-01-04 10:37:44+07', '2021-01-11 08:35:16+07', '2021-01-04', 100, NULL, NULL, 3500, 1, 2, false, '2021-01-11 08:35:16+07');
INSERT INTO public.issues VALUES (3501, 2, 46, 'Tạo phiếu xuất hủy', '', '2021-01-04', NULL, 5, 39, 2, 81, 39, 5, '2021-01-04 11:02:39+07', '2021-01-12 08:26:46+07', '2021-01-04', 100, NULL, NULL, 3501, 1, 2, false, '2021-01-12 08:26:46+07');
INSERT INTO public.issues VALUES (3502, 2, 46, 'Chỉnh sửa phiếu xuất hủy', '', '2021-01-04', NULL, 5, 39, 2, 81, 39, 5, '2021-01-04 11:02:52+07', '2021-01-12 08:26:46+07', '2021-01-04', 100, NULL, NULL, 3502, 1, 2, false, '2021-01-12 08:26:46+07');
INSERT INTO public.issues VALUES (3503, 2, 46, 'Xóa phiếu xuất hủy', '', '2021-01-04', NULL, 5, 39, 2, 79, 39, 1, '2021-01-04 11:03:09+07', '2021-01-04 13:22:57+07', '2021-01-04', 100, NULL, NULL, 3503, 1, 2, false, '2021-01-04 13:22:57+07');
INSERT INTO public.issues VALUES (3504, 2, 42, 'Thêm bộ lọc chọn Năm cho Báo cáo đến và Báo cáo đi', '', '2021-01-04', NULL, 5, 39, 2, 77, 39, 2, '2021-01-04 11:04:34+07', '2021-01-11 08:35:17+07', '2021-01-04', 100, NULL, NULL, 3504, 1, 2, false, '2021-01-11 08:35:17+07');
INSERT INTO public.issues VALUES (3505, 2, 42, 'Sắp xếp chi tiết quy trình thực hiện báo cáo theo đối tượng gửi', '', '2021-01-04', NULL, 5, 12, 2, 77, 40, 3, '2021-01-04 11:22:52+07', '2021-01-11 08:35:17+07', '2021-01-04', 100, NULL, NULL, 3505, 1, 2, false, '2021-01-11 08:35:17+07');
INSERT INTO public.issues VALUES (3506, 2, 42, 'Thêm cột số thứ tự cho quy trình thực hiện báo cáo', '', '2021-01-04', NULL, 5, 12, 2, 77, 40, 3, '2021-01-04 11:23:59+07', '2021-01-11 08:35:17+07', '2021-01-04', 100, NULL, NULL, 3506, 1, 2, false, '2021-01-11 08:35:17+07');
INSERT INTO public.issues VALUES (3507, 2, 46, 'Mobile - Thêm modal hiển thị thông tin chi tiết lợi nhận theo đơn hàng.', '', '2021-01-04', NULL, 5, 10, 2, 82, 10, 5, '2021-01-04 11:49:41+07', '2021-01-12 08:26:11+07', '2021-01-04', 100, NULL, NULL, 3507, 1, 2, false, '2021-01-12 08:26:11+07');
INSERT INTO public.issues VALUES (3508, 2, 46, 'Mobile - Thêm modal hiển thị thông tin chi tiết lợi nhuận theo thời gian.', '', '2021-01-04', NULL, 5, 10, 2, 82, 10, 5, '2021-01-04 11:50:42+07', '2021-01-12 08:26:11+07', '2021-01-04', 100, NULL, NULL, 3508, 1, 2, false, '2021-01-12 08:26:11+07');
INSERT INTO public.issues VALUES (3509, 2, 46, 'Xóa phiếu xuất hủy', '', '2021-01-04', NULL, 5, 39, 2, 81, 39, 3, '2021-01-04 13:45:39+07', '2021-01-12 08:26:46+07', '2021-01-04', 100, NULL, NULL, 3509, 1, 2, false, '2021-01-12 08:26:46+07');
INSERT INTO public.issues VALUES (3510, 1, 42, 'Không xem được báo cáo đến của tài khoản Uỷ ban nhân dân tỉnh Bình Định (000.00.01.H08)', '', '2021-01-04', NULL, 5, 38, 2, 77, 40, 1, '2021-01-04 14:14:17+07', '2021-01-04 16:05:50+07', '2021-01-04', 0, NULL, NULL, 3510, 1, 2, false, '2021-01-04 16:05:50+07');
INSERT INTO public.issues VALUES (3511, 2, 42, 'Thêm chức năng ký số SBN và DN', '', '2021-01-04', NULL, 5, 8, 2, 77, 8, 3, '2021-01-04 16:53:39+07', '2021-01-11 08:35:17+07', '2021-01-04', 100, NULL, NULL, 3511, 1, 2, false, '2021-01-11 08:35:17+07');
INSERT INTO public.issues VALUES (3512, 2, 42, 'Thêm chức năng xem file PDF', '', '2021-01-04', NULL, 5, 8, 2, 77, 8, 2, '2021-01-04 16:54:10+07', '2021-01-11 08:35:17+07', '2021-01-04', 100, NULL, NULL, 3512, 1, 2, false, '2021-01-11 08:35:17+07');
INSERT INTO public.issues VALUES (3513, 2, 46, 'Tính khuyến mãi cho từng sản phẩm', '', '2021-01-04', NULL, 5, 8, 2, 81, 8, 2, '2021-01-04 16:58:11+07', '2021-01-12 08:26:46+07', '2021-01-04', 100, NULL, NULL, 3513, 1, 2, false, '2021-01-12 08:26:46+07');
INSERT INTO public.issues VALUES (3576, 2, 42, 'api thống kê trạng thái báo cáo', '', '2021-01-13', NULL, 5, 38, 2, 83, 5, 3, '2021-01-11 08:37:50+07', '2021-01-18 08:43:58+07', '2021-01-13', 100, NULL, NULL, 3576, 1, 2, false, '2021-01-18 08:43:58+07');
INSERT INTO public.issues VALUES (3514, 2, 42, 'Thêm ràng buộc cho quy trình thực hiện báo cáo nếu đối tượng gửi và nhận trùng nhau', '', '2021-01-05', NULL, 5, 12, 2, 77, 40, 3, '2021-01-05 10:11:25+07', '2021-01-11 08:35:17+07', '2021-01-05', 100, NULL, NULL, 3514, 1, 2, false, '2021-01-11 08:35:17+07');
INSERT INTO public.issues VALUES (3515, 2, 42, 'Lọc báo cáo đi theo: trễ, đến hạn', '', '2021-01-06', NULL, 5, 39, 2, 77, 5, 3, '2021-01-05 10:13:00+07', '2021-01-11 08:35:17+07', '2021-01-06', 100, NULL, NULL, 3515, 1, 2, false, '2021-01-11 08:35:17+07');
INSERT INTO public.issues VALUES (3516, 1, 42, 'Khi chỉnh sửa đơn vị nhận trong quy trình thực hiện thì đối tượng nhận vẫn không cập nhật', '', '2021-01-05', NULL, 5, 12, 2, 77, 40, 3, '2021-01-05 10:15:01+07', '2021-01-11 08:35:17+07', '2021-01-05', 100, NULL, NULL, 3516, 1, 2, false, '2021-01-11 08:35:17+07');
INSERT INTO public.issues VALUES (3517, 2, 42, 'Reload khi cập nhật lỗi quy trình', '', '2021-01-05', NULL, 5, 12, 2, 77, 12, 2, '2021-01-05 10:20:55+07', '2021-01-11 08:35:17+07', '2021-01-05', 100, NULL, NULL, 3517, 1, 2, false, '2021-01-11 08:35:17+07');
INSERT INTO public.issues VALUES (3518, 2, 42, 'Thêm thông báo quy trình lỗi', '', '2021-01-05', NULL, 5, 12, 2, 77, 12, 2, '2021-01-05 10:22:55+07', '2021-01-11 08:35:17+07', '2021-01-05', 100, NULL, NULL, 3518, 1, 2, false, '2021-01-11 08:35:17+07');
INSERT INTO public.issues VALUES (3519, 1, 42, 'Trong quản lý báo cáo chỉ hiển thị thông báo khi có báo cáo đến hạn hoặc trễ hạn', '', '2021-01-05', NULL, 5, 37, 2, 77, 40, 3, '2021-01-05 11:04:42+07', '2021-01-11 08:35:18+07', '2021-01-05', 100, NULL, NULL, 3519, 1, 2, false, '2021-01-11 08:35:18+07');
INSERT INTO public.issues VALUES (3520, 1, 42, 'Khi vào thiết lập --> đơn vị trực thuộc - không thêm mới được đơn vị trực thuộc', '', '2021-01-05', NULL, 5, 37, 2, 77, 40, 2, '2021-01-05 11:34:20+07', '2021-01-11 08:35:18+07', '2021-01-05', 100, NULL, NULL, 3520, 1, 2, false, '2021-01-11 08:35:18+07');
INSERT INTO public.issues VALUES (3521, 1, 42, 'Chỉnh sửa tên cột và chức năng thêm mới của tài khoản của đơn vị ', 'Chức năng thêm mới:
  - Không ràng buộc trường Email
  - Trường trạng thái: khi đánh dấu tick --> lưu: ở danh sách hiển thị trường trạng thái không tick và ngược lại
Ở tên cột:
  - Đổi trường tài khoản quản trị thành trường trạng thái', '2021-01-05', NULL, 5, 37, 2, 77, 40, 2, '2021-01-05 13:51:59+07', '2021-01-11 08:35:18+07', '2021-01-05', 100, NULL, NULL, 3521, 1, 2, false, '2021-01-11 08:35:18+07');
INSERT INTO public.issues VALUES (3522, 1, 42, 'Có chi tiết quy trình --> thêm mới tầng suất --> không cập nhật lại cảnh báo', '', '2021-01-05', NULL, 5, 38, 2, 77, 40, 3, '2021-01-05 14:36:07+07', '2021-01-11 08:35:18+07', '2021-01-05', 100, NULL, NULL, 3522, 1, 2, false, '2021-01-11 08:35:18+07');
INSERT INTO public.issues VALUES (3523, 2, 42, 'Lĩnh vực quản lý giá và công sản', '', '2021-01-11', NULL, 5, 40, 2, 80, 5, 8, '2021-01-05 14:46:19+07', '2021-01-12 08:18:34+07', '2021-01-11', 100, NULL, NULL, 3523, 1, 2, false, '2021-01-12 08:18:34+07');
INSERT INTO public.issues VALUES (3524, 2, 42, 'Lĩnh vực tài chính đầu tư', '', '2021-01-11', NULL, 5, 40, 2, 80, 5, 8, '2021-01-05 14:46:45+07', '2021-01-12 08:18:35+07', '2021-01-11', 100, NULL, NULL, 3524, 1, 2, false, '2021-01-12 08:18:35+07');
INSERT INTO public.issues VALUES (3525, 2, 42, 'Lĩnh vực tài chính doanh nghiệp', '', '2021-01-11', NULL, 5, 40, 2, 80, 5, 8, '2021-01-05 14:47:14+07', '2021-01-12 08:18:35+07', '2021-01-11', 100, NULL, NULL, 3525, 1, 2, false, '2021-01-12 08:18:35+07');
INSERT INTO public.issues VALUES (3526, 2, 42, 'Api phân trang: Reports/GetDMBaoCaoCuaLinhVuc?LinhVuc_Id=', 'Thêm &skip=0&take=0 để phân trang
ví dụ: api/Reports/GetDMBaoCaoCuaLinhVuc?LinhVuc_Id=6a447b0b-a2ba-45e3-9e1e-7a6669d196c1&skip=1&take=2', '2021-01-05', NULL, 5, 38, 2, 77, 12, 4, '2021-01-05 14:53:55+07', '2021-01-11 08:35:18+07', '2021-01-05', 100, NULL, NULL, 3526, 1, 2, false, '2021-01-11 08:35:18+07');
INSERT INTO public.issues VALUES (3527, 1, 42, 'Api chưa cập nhật số lỗi quy trình khi thêm 1 tần suất', 'khi đã có chi tiết quy trình, sau đó thêm tiếp 1 tuần suất vào báo cáo, tần suất tự động cập nhật vào quy trình đã có trc đó nhưng không cập nhật đc quy trình lỗi do chưa cài đặt ngày tháng gửi báo cáo', '2021-01-05', NULL, 5, 38, 2, 77, 12, 4, '2021-01-05 14:55:11+07', '2021-01-11 08:35:18+07', '2021-01-05', 100, NULL, NULL, 3527, 1, 2, false, '2021-01-11 08:35:18+07');
INSERT INTO public.issues VALUES (3528, 1, 42, 'Api odata/DM_MauBaoCao method delete lỗi', 'api/odata/DM_MauBaoCao(guid''5155e21c-1b71-4178-8eaf-7c95d781a5e0'')', '2021-01-05', NULL, 5, 38, 2, 77, 12, 4, '2021-01-05 14:59:53+07', '2021-01-11 08:35:18+07', '2021-01-05', 100, NULL, NULL, 3528, 1, 2, false, '2021-01-11 08:35:18+07');
INSERT INTO public.issues VALUES (3529, 2, 48, 'Báo cáo bồi dưỡng nghiệp vụ', '', '2021-01-05', NULL, 3, 17, 2, NULL, 17, 1, '2021-01-05 16:14:03+07', '2021-01-05 16:14:31+07', '2021-01-04', 100, NULL, 2958, 2412, 163, 164, false, NULL);
INSERT INTO public.issues VALUES (3530, 2, 46, 'Mobile - Báo cáo sản lượng bán hàng theo khách hàng.', '', '2021-01-05', NULL, 5, 10, 2, 82, 10, 3, '2021-01-05 16:29:20+07', '2021-01-12 08:26:11+07', '2021-01-05', 100, NULL, NULL, 3530, 1, 2, false, '2021-01-12 08:26:11+07');
INSERT INTO public.issues VALUES (3531, 2, 46, 'Mobile - Chi tiết báo cáo sản lượng bán hàng theo khách hàng.', '', '2021-01-05', NULL, 5, 10, 2, 82, 10, 3, '2021-01-05 16:29:52+07', '2021-01-12 08:26:11+07', '2021-01-05', 100, NULL, NULL, 3531, 1, 2, false, '2021-01-12 08:26:11+07');
INSERT INTO public.issues VALUES (3532, 2, 42, 'Thêm ràng buộc khi đơn vị gửi và đơn vị nhận trùng nhau ở chi tiết đơn vị thực hiện báo cáo', '', '2021-01-06', NULL, 5, 12, 2, 77, 40, 2, '2021-01-06 08:59:50+07', '2021-01-11 08:35:18+07', '2021-01-06', 100, NULL, NULL, 3532, 1, 2, false, '2021-01-11 08:35:18+07');
INSERT INTO public.issues VALUES (3533, 2, 42, 'api thêm đơn vị hàng loạt', '', '2021-01-07', NULL, 5, 38, 2, 77, 5, 3, '2021-01-06 09:18:03+07', '2021-01-11 08:35:19+07', '2021-01-07', 100, NULL, NULL, 3533, 1, 2, false, '2021-01-11 08:35:19+07');
INSERT INTO public.issues VALUES (3534, 2, 42, 'Thêm tài khoản ở trang DM nhóm đối tượng đơn vị', '', '2021-01-06', NULL, 5, 12, 2, 77, 12, 3, '2021-01-06 10:28:08+07', '2021-01-11 08:35:19+07', '2021-01-06', 100, NULL, NULL, 3534, 1, 2, false, '2021-01-11 08:35:19+07');
INSERT INTO public.issues VALUES (3535, 2, 56, 'Cài đặt ngôn ngữ', '', '2021-01-06', NULL, 1, 17, 2, NULL, 17, 3, '2021-01-06 15:40:11+07', '2021-01-06 15:41:24+07', '2021-01-06', 100, NULL, NULL, 3535, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3536, 2, 48, 'Báo cáo diễn biến lương - phụ cấp', '', '2021-01-06', NULL, 3, 15, 2, NULL, 15, 1, '2021-01-06 16:09:44+07', '2021-01-06 16:12:03+07', '2021-01-05', 100, NULL, 3420, 2412, 197, 198, false, NULL);
INSERT INTO public.issues VALUES (3537, 2, 48, 'Lịch sử phụ cấp', '', '2021-01-06', NULL, 3, 15, 2, NULL, 15, 1, '2021-01-06 16:10:13+07', '2021-01-06 16:12:03+07', '2021-01-06', 100, NULL, 3420, 2412, 199, 200, false, NULL);
INSERT INTO public.issues VALUES (3538, 5, 57, '7 Quy hoạch xây dựng nông thôn mới xã Lộc Điền', 'Xử lý bản đồ', '2021-01-14', NULL, 1, 33, 2, NULL, 33, 3, '2021-01-07 08:24:20+07', '2021-01-28 13:53:35+07', '2021-01-08', 100, NULL, NULL, 3538, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (3539, 5, 57, '08 Quy hoạch xây dựng nông thôn mới xã Lộc Khánh', 'Xử lý bản đồ và nhập liệu', '2021-01-14', NULL, 1, 32, 2, NULL, 33, 3, '2021-01-07 08:25:37+07', '2021-01-15 08:22:16+07', '2021-01-07', 100, NULL, NULL, 3539, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3540, 5, 57, 'Nhập Liệu', '', '2021-01-14', NULL, 1, 29, 2, NULL, 33, 2, '2021-01-07 08:32:24+07', '2021-01-28 13:53:48+07', '2021-01-08', 100, NULL, 3462, 3462, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3541, 5, 57, 'Nhập Liệu', '', '2021-01-14', NULL, 1, 44, 2, NULL, 33, 1, '2021-01-07 08:33:54+07', '2021-01-28 13:53:35+07', '2021-01-08', 100, NULL, 3538, 3538, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3542, 2, 46, 'Mobile - Thêm select lựa chọn chương trình khuyến mãi trong báo cáo khuyên mãi.', '', '2021-01-07', NULL, 5, 10, 2, 82, 10, 3, '2021-01-07 11:34:23+07', '2021-01-12 08:26:11+07', '2021-01-07', 100, NULL, NULL, 3542, 1, 2, false, '2021-01-12 08:26:11+07');
INSERT INTO public.issues VALUES (3543, 1, 42, 'Không xem được chi tiết báo cáo đến', '', '2021-01-07', NULL, 5, 39, 2, 77, 40, 3, '2021-01-07 15:01:34+07', '2021-01-11 08:35:19+07', '2021-01-07', 100, NULL, NULL, 3543, 1, 2, false, '2021-01-11 08:35:19+07');
INSERT INTO public.issues VALUES (3544, 1, 42, 'Thêm cảnh báo cho biết chưa có báo cáo', '', '2021-01-07', NULL, 5, 39, 2, 77, 40, 3, '2021-01-07 15:05:51+07', '2021-01-11 08:35:19+07', '2021-01-07', 100, NULL, NULL, 3544, 1, 2, false, '2021-01-11 08:35:19+07');
INSERT INTO public.issues VALUES (3545, 1, 42, 'Fix tìm kiếm đơn vị trong nhóm đối tượng', '', '2021-01-07', NULL, 5, 37, 2, 77, 40, 3, '2021-01-07 15:07:01+07', '2021-01-11 08:35:19+07', '2021-01-07', 100, NULL, NULL, 3545, 1, 2, false, '2021-01-11 08:35:19+07');
INSERT INTO public.issues VALUES (3546, 1, 42, 'Không xóa được đơn vị trực thuộc', '', '2021-01-07', NULL, 5, 38, 2, 77, 40, 3, '2021-01-07 15:35:05+07', '2021-01-11 08:35:19+07', '2021-01-07', 100, NULL, NULL, 3546, 1, 2, false, '2021-01-11 08:35:19+07');
INSERT INTO public.issues VALUES (3547, 2, 56, 'Đổi mật khẩu', '', '2021-01-07', NULL, 3, 17, 2, NULL, 17, 1, '2021-01-07 16:55:24+07', '2021-01-07 16:55:48+07', '2021-01-07', 100, NULL, NULL, 3547, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3548, 2, 46, 'Tính trả khuyến mãi', '', '2021-01-07', NULL, 5, 8, 2, 81, 8, 2, '2021-01-07 16:57:15+07', '2021-01-12 08:26:46+07', '2021-01-07', 100, NULL, NULL, 3548, 1, 2, false, '2021-01-12 08:26:46+07');
INSERT INTO public.issues VALUES (3549, 2, 46, 'Tính trả đơn hàng', '', '2021-01-07', NULL, 5, 8, 2, 81, 8, 2, '2021-01-07 16:57:31+07', '2021-01-12 08:26:46+07', '2021-01-07', 100, NULL, NULL, 3549, 1, 2, false, '2021-01-12 08:26:46+07');
INSERT INTO public.issues VALUES (3550, 2, 46, 'Mobile - Giao diện báo cáo khuyến mãi theo tên nhân viên.', '', '2021-01-07', NULL, 5, 10, 2, 82, 10, 3, '2021-01-08 08:06:16+07', '2021-01-12 08:26:11+07', '2021-01-07', 100, NULL, NULL, 3550, 1, 2, false, '2021-01-12 08:26:11+07');
INSERT INTO public.issues VALUES (3551, 2, 46, 'Mobile - Báo cáo khuyên mãi - Tạo chi tiết khuyến mãi theo tên nhân viên.', '', '2021-01-08', NULL, 5, 10, 2, 82, 10, 3, '2021-01-08 08:06:50+07', '2021-01-12 08:26:11+07', '2021-01-08', 100, NULL, NULL, 3551, 1, 2, false, '2021-01-12 08:26:11+07');
INSERT INTO public.issues VALUES (3552, 2, 46, 'Mobile - Báo cáo khuyến mãi - Tạo chi tiết khuyến mãi của khách hàng từ nhân viên.', '', '2021-01-08', NULL, 5, 10, 2, 82, 10, 3, '2021-01-08 08:07:21+07', '2021-01-12 08:26:11+07', '2021-01-08', 100, NULL, NULL, 3552, 1, 2, false, '2021-01-12 08:26:11+07');
INSERT INTO public.issues VALUES (3553, 1, 42, 'Sắp xếp thứ tự báo cáo trong báo cáo đến và đi', '', '2021-01-08', NULL, 5, 39, 2, 77, 40, 3, '2021-01-08 08:40:55+07', '2021-01-11 08:35:19+07', '2021-01-08', 100, NULL, NULL, 3553, 1, 2, false, '2021-01-11 08:35:19+07');
INSERT INTO public.issues VALUES (3554, 2, 42, 'Viết winform chạy báo cáo tự động', '', '2021-01-15', NULL, 5, 39, 2, 83, 5, 5, '2021-01-08 09:11:02+07', '2021-01-18 08:43:41+07', '2021-01-11', 100, NULL, NULL, 3554, 1, 2, false, '2021-01-18 08:43:41+07');
INSERT INTO public.issues VALUES (3555, 2, 42, 'Giao diện notify', '', '2021-01-08', NULL, 5, 39, 2, 77, 5, 4, '2021-01-08 09:11:43+07', '2021-01-11 08:35:19+07', '2021-01-08', 100, NULL, NULL, 3555, 1, 2, false, '2021-01-11 08:35:19+07');
INSERT INTO public.issues VALUES (3556, 2, 42, 'Gắn vào server notify', 'https://notify.gdtvietnam.com/', '2021-01-09', NULL, 5, 39, 2, 77, 5, 4, '2021-01-08 09:12:22+07', '2021-01-11 08:35:20+07', '2021-01-09', 100, NULL, NULL, 3556, 1, 2, false, '2021-01-11 08:35:20+07');
INSERT INTO public.issues VALUES (3557, 1, 42, 'Hiển thị sai thông báo "Không tồn tại báo cáo nào" ở báo cáo đến và đi', '', '2021-01-08', NULL, 5, 38, 2, 77, 40, 3, '2021-01-08 09:13:05+07', '2021-01-11 08:35:20+07', '2021-01-08', 100, NULL, NULL, 3557, 1, 2, false, '2021-01-11 08:35:20+07');
INSERT INTO public.issues VALUES (3558, 2, 46, 'API trả đơn hàng có khuyến mãi', '', '2021-01-07', NULL, 5, 41, 2, 81, 41, 2, '2021-01-08 09:38:51+07', '2021-01-12 08:26:46+07', '2021-01-07', 100, NULL, NULL, 3558, 1, 2, false, '2021-01-12 08:26:46+07');
INSERT INTO public.issues VALUES (3559, 1, 46, 'Mobile - Sửa giao diện và api báo cáo sản lượng bán hàng theo nhân viên.', '', '2021-01-08', NULL, 5, 10, 2, 82, 10, 3, '2021-01-08 15:31:16+07', '2021-01-12 08:26:12+07', '2021-01-08', 100, NULL, NULL, 3559, 1, 2, false, '2021-01-12 08:26:12+07');
INSERT INTO public.issues VALUES (3560, 5, 57, '10 Quy hoạch xây dựng xã nông thôn mới xã Thành Tâm', 'Xử lý bản đồ', '2021-01-19', NULL, 1, 33, 2, NULL, 33, 2, '2021-01-08 16:38:01+07', '2021-01-28 13:53:12+07', '2021-01-12', 100, NULL, NULL, 3560, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (3561, 5, 57, '11 Quy hoạch xây dựng xã nông thôn mới xã Minh Lập', 'Xử lí bản đồ và nhập liệu', '2021-01-15', NULL, 1, 43, 2, NULL, 33, 1, '2021-01-08 16:39:07+07', '2021-01-28 13:53:23+07', '2021-01-09', 100, NULL, NULL, 3561, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3562, 2, 42, 'Xử lí Notify', '', '2021-01-09', NULL, 5, 39, 2, 77, 39, 2, '2021-01-08 17:03:48+07', '2021-01-11 08:35:20+07', '2021-01-09', 100, NULL, NULL, 3562, 1, 2, false, '2021-01-11 08:35:20+07');
INSERT INTO public.issues VALUES (3563, 2, 46, 'API kiểm tra số lượng mua có vượt tồn kho thực tế', '', '2021-01-09', NULL, 5, 41, 2, 81, 41, 2, '2021-01-09 08:04:29+07', '2021-01-12 08:26:46+07', '2021-01-09', 100, NULL, NULL, 3563, 1, 2, false, '2021-01-12 08:26:46+07');
INSERT INTO public.issues VALUES (3564, 2, 42, 'API get danh sách báo cáo các đơn vị gửi tới', '-Input: ID Báo cáo gửi đi, mẫu báo cáo

-Output: Danh sách ID các báo cáo cùng mẫu của các đơn vị gửi tới', '2021-01-16', NULL, 5, 38, 3, 83, 19, 6, '2021-01-09 09:08:17+07', '2021-01-18 08:43:41+07', '2021-01-11', 100, NULL, NULL, 3564, 1, 2, false, '2021-01-18 08:43:41+07');
INSERT INTO public.issues VALUES (3565, 2, 42, 'Thêm văn bản sau khi ký số', '', '2021-01-09', NULL, 5, 8, 2, 77, 8, 2, '2021-01-09 10:23:32+07', '2021-01-11 08:35:20+07', '2021-01-09', 100, NULL, NULL, 3565, 1, 2, false, '2021-01-11 08:35:20+07');
INSERT INTO public.issues VALUES (3566, 2, 42, 'Load detail sau khi ký số', '', '2021-01-09', NULL, 5, 8, 2, 77, 8, 3, '2021-01-09 10:26:47+07', '2021-01-11 08:35:20+07', '2021-01-09', 100, NULL, NULL, 3566, 1, 2, false, '2021-01-11 08:35:20+07');
INSERT INTO public.issues VALUES (3567, 2, 42, 'Thêm chức năng phê duyệt báo cáo', '', '2021-01-09', NULL, 5, 8, 2, 77, 8, 3, '2021-01-09 10:28:21+07', '2021-01-11 08:35:20+07', '2021-01-09', 100, NULL, NULL, 3567, 1, 2, false, '2021-01-11 08:35:20+07');
INSERT INTO public.issues VALUES (3568, 2, 42, 'Thêm chức năng từ chối báo cáo', '', '2021-01-09', NULL, 5, 8, 2, 77, 8, 3, '2021-01-09 10:28:41+07', '2021-01-11 08:35:20+07', '2021-01-09', 100, NULL, NULL, 3568, 1, 2, false, '2021-01-11 08:35:20+07');
INSERT INTO public.issues VALUES (3569, 2, 48, 'Phần quyền tài khoản đơn vị - quản trị', '', '2021-01-09', NULL, 3, 15, 2, NULL, 15, 1, '2021-01-09 13:29:04+07', '2021-01-09 13:30:04+07', '2021-01-07', 100, NULL, 2412, 2412, 202, 203, false, NULL);
INSERT INTO public.issues VALUES (3570, 2, 48, 'Thay đổi giao diện form đăng nhập', '', '2021-01-09', NULL, 3, 15, 2, NULL, 15, 1, '2021-01-09 13:29:37+07', '2021-01-09 13:30:04+07', '2021-01-07', 100, NULL, 2412, 2412, 204, 205, false, NULL);
INSERT INTO public.issues VALUES (3571, 2, 46, 'Mobile - Tạo chi tiết báo cáo đơn hàng theo nhân viên.', '', '2021-01-09', NULL, 5, 10, 2, 82, 10, 3, '2021-01-09 14:36:32+07', '2021-01-12 08:26:12+07', '2021-01-09', 100, NULL, NULL, 3571, 1, 2, false, '2021-01-12 08:26:12+07');
INSERT INTO public.issues VALUES (3572, 2, 46, 'Mobile - Thêm sửa api thêm sản phẩm.', '', '2021-01-09', NULL, 5, 10, 2, 82, 10, 3, '2021-01-09 15:42:40+07', '2021-01-12 08:26:12+07', '2021-01-09', 100, NULL, NULL, 3572, 1, 2, false, '2021-01-12 08:26:12+07');
INSERT INTO public.issues VALUES (3573, 2, 46, 'API phiếu giao hàng thêm loại PET, KÉT ... ', '', '2021-01-09', NULL, 5, 41, 2, 81, 41, 2, '2021-01-09 16:12:28+07', '2021-01-12 08:26:46+07', '2021-01-09', 100, NULL, NULL, 3573, 1, 2, false, '2021-01-12 08:26:46+07');
INSERT INTO public.issues VALUES (3574, 2, 46, 'Danh mục loại sản phẩm', '', '2021-01-09', NULL, 5, 8, 2, 81, 8, 3, '2021-01-09 16:59:01+07', '2021-01-12 08:26:47+07', '2021-01-09', 100, NULL, NULL, 3574, 1, 2, false, '2021-01-12 08:26:47+07');
INSERT INTO public.issues VALUES (3575, 2, 42, 'api thống kê tình hình xử lý báo cáo', '', '2021-01-12', NULL, 5, 38, 2, 83, 5, 3, '2021-01-11 08:37:32+07', '2021-01-18 08:43:58+07', '2021-01-12', 100, NULL, NULL, 3575, 1, 2, false, '2021-01-18 08:43:58+07');
INSERT INTO public.issues VALUES (3577, 2, 42, 'Tạo mẫu báo cáo thực tế theo quyết định 38 ( 60 mẫu )', 'Người thực hiện:

Ngọc Tiến

Gấm

Đồng

Thảo', '2021-01-15', NULL, 5, 13, 2, 83, 19, 13, '2021-01-11 08:50:23+07', '2021-01-18 08:43:59+07', '2021-01-11', 100, NULL, NULL, 3577, 1, 12, false, '2021-01-18 08:43:59+07');
INSERT INTO public.issues VALUES (3578, 1, 42, 'Khi thêm nhiều đơn vị từ excel vào nhóm đối tượng thì chỉ hiển thi 1 đơn vị đầu tiên', '', '2021-01-11', NULL, 5, 37, 2, 83, 40, 3, '2021-01-11 14:56:40+07', '2021-01-18 08:44:00+07', '2021-01-11', 100, NULL, NULL, 3578, 1, 2, false, '2021-01-18 08:44:00+07');
INSERT INTO public.issues VALUES (3579, 1, 42, 'Không thực hiện được thao tác tạo tài khoản tự động cho đơn vị', '', '2021-01-11', NULL, 5, 38, 2, 83, 40, 4, '2021-01-11 14:57:56+07', '2021-01-18 08:44:00+07', '2021-01-11', 100, NULL, NULL, 3579, 1, 2, false, '2021-01-18 08:44:00+07');
INSERT INTO public.issues VALUES (3580, 2, 42, 'api tạo thông báo', 'Id

CreatedDate

HanhDong

NoiDung

DonViGui_Id

DonViNhan_Id

DaXemThongBao

Target_Id

Target_Module

> UBND Huyện Hoài Nhơn tỉnh Bình Định      đã     gửi      "Báo cáo kết quả thực hiện chương trình thực hành tiết kiệm, chống lãng phí (Định kì 9 tháng đầu năm 2021)"
> 
> Hệ thống     đã     thông báo     sắp đến hạn gửi báo cáo "Báo cáo kết quả thực hiện chương trình thực hành tiết kiệm, chống lãng phí (Định kì 9 tháng đầu năm 2021)"', '2021-01-13', NULL, 5, 38, 2, 83, 5, 5, '2021-01-11 15:01:26+07', '2021-01-18 08:44:00+07', '2021-01-13', 100, NULL, NULL, 3580, 1, 2, false, '2021-01-18 08:44:00+07');
INSERT INTO public.issues VALUES (3581, 1, 42, 'Không thực hiện được thao tác tìm kiếm danh mục lĩnh vực', '', '2021-01-11', NULL, 5, 37, 2, 83, 40, 2, '2021-01-11 08:11:02+07', '2021-01-18 08:44:00+07', '2021-01-11', 100, NULL, NULL, 3581, 1, 2, false, '2021-01-18 08:44:00+07');
INSERT INTO public.issues VALUES (3582, 1, 42, 'Không thực hiện được thao tác tìm kiếm tần suất', '', '2021-01-11', NULL, 5, 37, 2, 83, 40, 2, '2021-01-11 15:13:29+07', '2021-01-18 08:44:00+07', '2021-01-11', 100, NULL, NULL, 3582, 1, 2, false, '2021-01-18 08:44:00+07');
INSERT INTO public.issues VALUES (3583, 1, 42, 'Thiết lập --> tài khoản - Khi thêm 1 tài khoản mới hiển thị 2 tài khoản mới', '', '2021-01-11', NULL, 5, 38, 2, 83, 40, 2, '2021-01-11 15:31:09+07', '2021-01-18 08:44:00+07', '2021-01-11', 100, NULL, NULL, 3583, 1, 2, false, '2021-01-18 08:44:00+07');
INSERT INTO public.issues VALUES (3584, 2, 42, 'Lĩnh vực quản lý ngân sách', '', '2021-01-15', NULL, 5, 40, 3, 83, 19, 9, '2021-01-11 16:21:20+07', '2021-01-18 08:43:41+07', '2021-01-12', 100, NULL, 3577, 3577, 2, 3, false, '2021-01-18 08:43:41+07');
INSERT INTO public.issues VALUES (3585, 2, 42, 'Lĩnh vực tài chính đầu tư', '', '2021-01-15', NULL, 5, 13, 3, 83, 19, 7, '2021-01-11 16:22:13+07', '2021-01-18 08:43:42+07', '2021-01-11', 100, NULL, 3577, 3577, 4, 5, false, '2021-01-18 08:43:42+07');
INSERT INTO public.issues VALUES (3586, 2, 42, 'Lĩnh vực hành chính sự nghiệp', '', '2021-01-15', NULL, 5, 37, 3, 83, 19, 5, '2021-01-11 16:25:45+07', '2021-01-18 08:43:42+07', '2021-01-12', 100, NULL, 3577, 3577, 6, 7, false, '2021-01-18 08:43:42+07');
INSERT INTO public.issues VALUES (3587, 3, 32, 'Thiết kế, tạo, chỉnh sửa thông tin', '- Vẽ giao diện mobile cho a Nghĩa Phù Mỹ
- Chỉnh sửa wordpress xuất nhập khẩu
- Vẽ thùng sản phẩm dĩa cho bên chị Ly
- Chỉnh sửa & thêm chữ thông tin hai giao diện (anh Ánh)', '2021-01-09', NULL, 1, 14, 2, NULL, 14, 0, '2021-01-11 17:02:29+07', '2021-01-11 17:02:29+07', '2021-01-01', 100, NULL, NULL, 3587, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3588, 5, 57, 'Nhập Liệu', '', '2021-01-19', NULL, 1, 23, 2, NULL, 33, 1, '2021-01-12 09:50:37+07', '2021-01-28 13:53:12+07', '2021-01-12', 100, NULL, 3560, 3560, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3589, 5, 57, '12 Quy hoạch xây dựng xã nông thôn mới xã Quang Minh', 'Xử lý bản đồ', '2021-01-20', NULL, 1, 33, 2, NULL, 33, 2, '2021-01-12 09:52:07+07', '2021-01-28 13:53:00+07', '2021-01-13', 100, NULL, NULL, 3589, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (3590, 2, 48, 'Xuất báo cáo chiều dọc', '', '2021-01-12', NULL, 3, NULL, 2, NULL, 17, 1, '2021-01-12 10:08:33+07', '2021-01-12 10:08:56+07', '2021-01-12', 100, NULL, 2997, 2412, 156, 157, false, NULL);
INSERT INTO public.issues VALUES (3591, 2, 42, 'Dashboard', '', '2021-01-12', NULL, 5, 12, 2, 83, 12, 3, '2021-01-12 15:37:04+07', '2021-01-18 08:44:00+07', '2021-01-12', 100, NULL, NULL, 3591, 1, 2, false, '2021-01-18 08:44:00+07');
INSERT INTO public.issues VALUES (3592, 2, 46, 'fix API cập nhật lại phân bổ khuyến mãi', '', '2021-01-12', NULL, 5, 41, 2, 85, 41, 2, '2021-01-13 08:25:20+07', '2021-01-23 09:02:07+07', '2021-01-12', 100, NULL, NULL, 3592, 1, 2, false, '2021-01-23 09:02:07+07');
INSERT INTO public.issues VALUES (3593, 2, 46, 'fix API tạo đơn hàng với khách lẻ ', '', '2021-01-13', NULL, 5, 41, 2, 85, 41, 3, '2021-01-13 08:25:41+07', '2021-01-23 09:02:07+07', '2021-01-13', 100, NULL, NULL, 3593, 1, 2, false, '2021-01-23 09:02:07+07');
INSERT INTO public.issues VALUES (3594, 2, 46, 'Fix API nhập hàng với thuế VAT', '', '2021-01-13', NULL, 5, 41, 2, 85, 41, 3, '2021-01-13 08:26:38+07', '2021-01-23 09:02:07+07', '2021-01-13', 100, NULL, NULL, 3594, 1, 2, false, '2021-01-23 09:02:07+07');
INSERT INTO public.issues VALUES (3595, 2, 46, 'API Xóa phiếu nhập hàng', '', '2021-01-14', NULL, 5, 41, 2, 85, 41, 3, '2021-01-13 08:27:26+07', '2021-01-23 09:02:07+07', '2021-01-14', 100, NULL, NULL, 3595, 1, 2, false, '2021-01-23 09:02:07+07');
INSERT INTO public.issues VALUES (3596, 2, 42, 'api danh sách thiết bị', 'Id

CreatedDate

LoaiThietBi

TenThietBi

FCM_Token

DonVi_Id', '2021-01-13', NULL, 5, 38, 2, 83, 5, 2, '2021-01-13 08:54:14+07', '2021-01-18 08:44:00+07', '2021-01-13', 100, NULL, NULL, 3596, 1, 2, false, '2021-01-18 08:44:00+07');
INSERT INTO public.issues VALUES (3597, 2, 42, 'Quản lý danh sách thiết bị', '', '2021-01-13', NULL, 5, 12, 2, 83, 5, 3, '2021-01-13 09:35:56+07', '2021-01-18 08:44:00+07', '2021-01-13', 100, NULL, NULL, 3597, 1, 2, false, '2021-01-18 08:44:00+07');
INSERT INTO public.issues VALUES (3598, 2, 42, 'Gửi thông báo đến thiết bị', 'Title

Content', '2021-01-14', NULL, 5, 12, 2, 83, 5, 3, '2021-01-13 09:36:25+07', '2021-01-18 08:44:01+07', '2021-01-14', 100, NULL, NULL, 3598, 1, 2, false, '2021-01-18 08:44:01+07');
INSERT INTO public.issues VALUES (3599, 2, 49, 'CÂN ĐỐI NGUỒN', '', '2021-01-14', NULL, 3, 15, 2, NULL, 15, 5, '2021-01-13 11:04:53+07', '2021-01-14 17:09:45+07', '2021-01-11', 100, NULL, NULL, 3599, 1, 8, false, NULL);
INSERT INTO public.issues VALUES (3600, 2, 49, 'form cân đối nguồn cho đơn vị', '', '2021-01-14', NULL, 3, 15, 2, NULL, 15, 1, '2021-01-13 11:05:58+07', '2021-01-14 17:09:34+07', '2021-01-11', 100, NULL, 3599, 3599, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3601, 2, 49, 'Danh sách cân đối nguồn cho thống kê ', '', '2021-01-14', NULL, 3, 15, 2, NULL, 15, 1, '2021-01-13 11:06:52+07', '2021-01-14 17:09:34+07', '2021-01-11', 100, NULL, 3599, 3599, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (3602, 2, 42, 'Lĩnh vực tài chính doanh nghiệp', '', '2021-01-15', NULL, 5, 19, 3, 83, 19, 4, '2021-01-14 08:47:51+07', '2021-01-18 08:43:42+07', '2021-01-14', 100, NULL, 3577, 3577, 8, 9, false, '2021-01-18 08:43:42+07');
INSERT INTO public.issues VALUES (3603, 2, 42, 'Lĩnh vực quản lý giá và công sản', '', '2021-01-15', NULL, 5, 19, 3, 83, 19, 6, '2021-01-14 08:51:25+07', '2021-01-18 08:43:42+07', '2021-01-14', 100, NULL, 3577, 3577, 10, 11, false, '2021-01-18 08:43:42+07');
INSERT INTO public.issues VALUES (3604, 2, 49, 'Form thống kê tình hình nguồn tiền cho (Thống kê)', '', '2021-01-14', NULL, 3, 15, 2, NULL, 15, 1, '2021-01-14 17:08:52+07', '2021-01-14 17:09:34+07', '2021-01-11', 100, NULL, 3599, 3599, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (3605, 2, 42, 'Tính năng Firebase Web push Notification', '', '2021-01-14', NULL, 5, 39, 2, 83, 39, 2, '2021-01-14 22:36:03+07', '2021-01-18 08:44:01+07', '2021-01-13', 100, NULL, NULL, 3605, 1, 2, false, '2021-01-18 08:44:01+07');
INSERT INTO public.issues VALUES (3606, 2, 42, 'Component danh sách tất cả thông báo', '', '2021-01-16', NULL, 5, 39, 2, 83, 39, 4, '2021-01-14 22:37:32+07', '2021-01-20 13:48:59+07', '2021-01-15', 100, NULL, NULL, 3606, 1, 2, false, '2021-01-20 13:48:59+07');
INSERT INTO public.issues VALUES (3607, 2, 42, 'Api Nodejs lấy danh sách user online và xử lí thời gian online, offline', '', '2021-01-15', NULL, 5, 39, 2, 83, 39, 3, '2021-01-14 22:38:36+07', '2021-01-18 08:44:01+07', '2021-01-14', 100, NULL, NULL, 3607, 1, 2, false, '2021-01-18 08:44:01+07');
INSERT INTO public.issues VALUES (3608, 5, 57, 'Nhập Liệu', '', '2021-01-20', NULL, 1, 24, 2, NULL, 33, 1, '2021-01-15 09:10:15+07', '2021-01-28 13:53:00+07', '2021-01-13', 100, NULL, 3589, 3589, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3609, 5, 57, '13 Quy hoạch xây dựng xã nông thôn mới xã Minh Long', 'Xử lý bản đồ', '2021-01-18', NULL, 1, 33, 2, NULL, 33, 1, '2021-01-15 09:12:14+07', '2021-01-28 13:52:43+07', '2021-01-14', 100, NULL, NULL, 3609, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3610, 5, 57, '14 Quy hoạch xây dựng xã nông thôn mới xã Minh Thành', 'xử lý bản đồ và nhập liệu', '2021-01-21', NULL, 1, 44, 2, NULL, 33, 1, '2021-01-15 09:13:20+07', '2021-01-28 13:52:32+07', '2021-01-14', 100, NULL, NULL, 3610, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3611, 1, 42, 'Không hiển thị số lần của tần suất báo cáo trong chi tiết quy trình', '', '2021-01-15', NULL, 5, 38, 2, 83, 40, 3, '2021-01-15 10:05:35+07', '2021-01-18 08:44:01+07', '2021-01-15', 100, NULL, NULL, 3611, 1, 2, false, '2021-01-18 08:44:01+07');
INSERT INTO public.issues VALUES (3613, 5, 57, '15 Quy hoạch xây dựng xã nông thôn mới xã Nha Bích', 'Xử lý bản đồ và nhập liệu', '2021-01-22', NULL, 1, 32, 2, NULL, 33, 3, '2021-01-16 08:24:08+07', '2021-01-22 15:59:43+07', '2021-01-16', 100, NULL, NULL, 3613, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3614, 5, 57, '16 Quy hoạch xây dựng xã nông thôn mới xã Minh Thắng', 'Xử lý bản đồ và nhập liệu', '2021-01-23', NULL, 1, 43, 2, NULL, 33, 1, '2021-01-16 08:25:02+07', '2021-01-28 13:52:20+07', '2021-01-18', 100, NULL, NULL, 3614, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3615, 2, 42, 'Tạo danh mục mẫu báo cáo', ' - Hiển thị tất cả các mẫu báo cáo
 - Có thể thêm trước mẫu báo cáo', '2021-01-19', NULL, 5, 13, 2, 83, 40, 5, '2021-01-16 10:43:03+07', '2021-01-20 13:48:59+07', '2021-01-16', 100, NULL, NULL, 3615, 1, 2, false, '2021-01-20 13:48:59+07');
INSERT INTO public.issues VALUES (3616, 2, 42, 'Hiển thị tất cả các mẫu báo cáo khi thực hiện copy mẫu', '', '2021-01-19', NULL, 5, 13, 2, 83, 40, 2, '2021-01-16 10:44:06+07', '2021-01-20 13:49:00+07', '2021-01-16', 100, NULL, NULL, 3616, 1, 2, false, '2021-01-20 13:49:00+07');
INSERT INTO public.issues VALUES (3617, 2, 42, 'Tạo Group folder cho Báo cáo đến và Báo cáo đi', '', '2021-01-18', NULL, 5, 12, 2, 86, 40, 8, '2021-01-16 10:45:14+07', '2021-01-26 08:59:15+07', '2021-01-18', 100, NULL, NULL, 3617, 1, 2, false, '2021-01-26 08:59:15+07');
INSERT INTO public.issues VALUES (3618, 2, 42, 'Đưa mục Tổng quan vào 1 box của lĩnh vực', '', '2021-01-18', NULL, 5, 12, 2, 86, 40, 6, '2021-01-16 10:45:51+07', '2021-01-26 08:59:15+07', '2021-01-18', 100, NULL, NULL, 3618, 1, 2, false, '2021-01-26 08:59:15+07');
INSERT INTO public.issues VALUES (3619, 2, 42, 'Sửa lại form Login', '', '2021-01-18', NULL, 5, 39, 2, 86, 40, 5, '2021-01-16 10:46:17+07', '2021-01-26 08:59:15+07', '2021-01-18', 100, NULL, NULL, 3619, 1, 2, false, '2021-01-26 08:59:15+07');
INSERT INTO public.issues VALUES (3620, 2, 42, 'Bổ sung 1 menu văn bản', '', '2021-01-18', NULL, 5, 8, 2, 86, 40, 5, '2021-01-16 10:46:50+07', '2021-01-26 08:59:15+07', '2021-01-18', 100, NULL, NULL, 3620, 1, 2, false, '2021-01-26 08:59:15+07');
INSERT INTO public.issues VALUES (3621, 2, 42, 'Kiểm tra, chỉnh sửa tất cả các mẫu báo cáo và thống kê vào file excel', '', '2021-01-16', NULL, 5, 40, 2, 83, 40, 3, '2021-01-16 14:24:10+07', '2021-01-18 08:44:01+07', '2021-01-14', 100, NULL, NULL, 3621, 1, 2, false, '2021-01-18 08:44:01+07');
INSERT INTO public.issues VALUES (3622, 2, 42, 'Chỉnh sửa quy trình thực hiện báo cáo', '', '2021-01-16', NULL, 5, 40, 2, 83, 40, 3, '2021-01-16 14:24:43+07', '2021-01-18 08:44:01+07', '2021-01-16', 100, NULL, NULL, 3622, 1, 2, false, '2021-01-18 08:44:01+07');
INSERT INTO public.issues VALUES (3623, 2, 46, 'fix API tạo công nợ Khách hàng ', 'Thêm tính năng tư động điều chỉnh số tiền trong mỗi đơn hàng của khách hàng khi NPP nợ khách hàng', '2021-01-15', NULL, 5, 41, 2, 85, 41, 3, '2021-01-18 09:37:12+07', '2021-01-23 09:02:08+07', '2021-01-15', 100, NULL, NULL, 3623, 1, 2, false, '2021-01-23 09:02:08+07');
INSERT INTO public.issues VALUES (3624, 2, 46, 'fix API xóa công nợ khách hàng', 'Xóa hóa đơn bán hàng, hoàn lại số tiền đã trả cho khách hàng', '2021-01-15', NULL, 5, 41, 2, 85, 41, 4, '2021-01-18 09:38:00+07', '2021-01-23 09:02:08+07', '2021-01-15', 100, NULL, NULL, 3624, 1, 2, false, '2021-01-23 09:02:08+07');
INSERT INTO public.issues VALUES (3625, 2, 46, 'fix API tạo công nợ nhà cung cấp', 'tự động điều chỉnh số tiền trả trong phiếu mua khi nhà phân phối nợ tiền ', '2021-01-16', NULL, 5, 41, 2, 85, 41, 4, '2021-01-18 09:39:12+07', '2021-01-23 09:02:08+07', '2021-01-16', 100, NULL, NULL, 3625, 1, 2, false, '2021-01-23 09:02:08+07');
INSERT INTO public.issues VALUES (3626, 2, 46, 'fix API hủy công nợ nhà phân phối', 'hoàn lại tiền nợ của nhà phân phối ', '2021-01-16', NULL, 5, 41, 2, 85, 41, 4, '2021-01-18 09:40:29+07', '2021-01-23 09:02:08+07', '2021-01-16', 100, NULL, NULL, 3626, 1, 2, false, '2021-01-23 09:02:08+07');
INSERT INTO public.issues VALUES (3627, 2, 48, 'Cập nhật thay đổi giao diện phần mềm', '', '2021-01-15', NULL, 3, 15, 2, NULL, 15, 1, '2021-01-19 11:09:53+07', '2021-01-19 11:10:19+07', '2021-01-14', 100, NULL, 2412, 2412, 206, 207, false, NULL);
INSERT INTO public.issues VALUES (3628, 2, 48, 'sprint #1 ( 19/1 - 23/1) Cập nhật thêm tính năng', '', '2021-01-23', NULL, 1, 15, 2, NULL, 15, 7, '2021-01-19 11:17:48+07', '2021-01-25 08:13:28+07', '2021-01-19', 100, NULL, 2412, 2412, 208, 219, false, NULL);
INSERT INTO public.issues VALUES (3629, 2, 48, 'Lịch sử thao  tác', '', '2021-01-20', NULL, 3, 15, 2, NULL, 15, 1, '2021-01-19 11:18:44+07', '2021-01-20 15:23:07+07', '2021-01-19', 100, NULL, 3628, 2412, 209, 210, false, NULL);
INSERT INTO public.issues VALUES (3630, 2, 48, 'Lọc tất cả danh sách theo AlphaB', '', '2021-01-20', NULL, 3, 15, 2, NULL, 15, 1, '2021-01-19 11:19:13+07', '2021-01-20 15:23:07+07', '2021-01-19', 100, NULL, 3628, 2412, 211, 212, false, NULL);
INSERT INTO public.issues VALUES (3631, 2, 48, 'Thêm "Giờ làm thêm trong năm " trong đánh giá cán bộ', '', '2021-01-20', NULL, 3, 15, 2, NULL, 15, 2, '2021-01-19 11:20:09+07', '2021-01-20 15:23:07+07', '2021-01-19', 100, NULL, 3628, 2412, 213, 214, false, NULL);
INSERT INTO public.issues VALUES (3632, 2, 48, 'Thêm chức vụ theo loại ( trong thông tin chức vụ cán bộ)', '', '2021-01-21', NULL, 3, 15, 2, NULL, 15, 1, '2021-01-19 11:26:35+07', '2021-01-21 17:05:07+07', '2021-01-21', 100, NULL, 3628, 2412, 215, 216, false, NULL);
INSERT INTO public.issues VALUES (3633, 2, 42, 'Group list user online by App Id', '', '2021-01-19', NULL, 5, 39, 2, 86, 39, 2, '2021-01-19 15:14:38+07', '2021-01-26 08:59:15+07', '2021-01-19', 100, NULL, NULL, 3633, 1, 2, false, '2021-01-26 08:59:15+07');
INSERT INTO public.issues VALUES (3634, 2, 42, 'Test quy trình thực hiện báo cáo và dữ liệu mẫu báo cáo', 'Hỗ trợ:

Ngọc Tiến', '2021-01-23', NULL, 5, 40, 3, 86, 19, 3, '2021-01-19 15:25:35+07', '2021-02-18 11:28:25+07', '2021-01-19', 100, NULL, NULL, 3634, 1, 2, false, '2021-02-18 11:28:25+07');
INSERT INTO public.issues VALUES (3635, 2, 59, 'Dựng source backend', '', '2021-01-25', NULL, 3, 41, 2, 89, 5, 2, '2021-01-20 09:16:17+07', '2021-01-29 08:38:48+07', '2021-01-25', 100, NULL, NULL, 3635, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3636, 2, 59, 'Dựng source frontend', '', '2021-01-25', NULL, 3, 8, 2, 89, 5, 2, '2021-01-20 09:19:04+07', '2021-01-29 08:38:48+07', '2021-01-25', 100, NULL, NULL, 3636, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3637, 2, 42, 'Tổng quan quy trình bao cáo', 'Link Thống kê tất cả các mẫu báo cáo:
https://docs.google.com/spreadsheets/d/14C78psfIENiPCV5JqcOl-M6OnELMVJl95gnTJSQQB0s/edit?usp=sharing', '2021-01-23', NULL, 5, 40, 3, 75, 19, 3, '2021-01-21 10:27:00+07', '2021-02-18 11:27:58+07', '2021-01-21', 0, NULL, NULL, 3637, 1, 2, false, '2021-02-18 11:27:58+07');
INSERT INTO public.issues VALUES (3638, 2, 42, 'Mở rộng module xuất báo cáo, merge row', '', '2021-01-23', NULL, 5, 38, 3, 86, 19, 3, '2021-01-21 13:56:37+07', '2021-01-26 08:59:15+07', '2021-01-21', 100, NULL, NULL, 3638, 1, 2, false, '2021-01-26 08:59:15+07');
INSERT INTO public.issues VALUES (3639, 2, 42, 'Tối ưu Push Notify', '', '2021-01-23', NULL, 5, 39, 2, 86, 39, 3, '2021-01-22 16:13:37+07', '2021-01-26 08:59:16+07', '2021-01-20', 100, NULL, NULL, 3639, 1, 2, false, '2021-01-26 08:59:16+07');
INSERT INTO public.issues VALUES (3640, 2, 59, 'Odata danh mục cửa hàng, đại lý', '', '2021-01-26', NULL, 3, 41, 2, 94, 41, 9, '2021-01-23 08:21:37+07', '2021-01-30 10:08:02+07', '2021-01-25', 100, NULL, NULL, 3640, 1, 6, false, NULL);
INSERT INTO public.issues VALUES (3641, 2, 59, 'Odata danh mục mã hàng theo cửa hàng, đại lý', '', '2021-01-27', NULL, 1, 41, 2, 94, 41, 8, '2021-01-23 08:22:26+07', '2021-01-30 10:13:53+07', '2021-01-27', 100, NULL, NULL, 3641, 1, 6, false, NULL);
INSERT INTO public.issues VALUES (3642, 2, 59, 'Odata danh mục đội thuê ngoài', '', '2021-01-25', NULL, 1, 41, 2, 94, 41, 7, '2021-01-23 08:23:43+07', '2021-01-30 10:08:03+07', '2021-01-25', 100, NULL, NULL, 3642, 1, 6, false, NULL);
INSERT INTO public.issues VALUES (3643, 2, 59, 'Danh mục mã hàng, dịch vụ của đội thuê ngoài', '', '2021-01-25', NULL, 1, NULL, 2, 90, 41, 1, '2021-01-23 08:24:19+07', '2021-01-23 08:44:39+07', '2021-01-25', 0, NULL, NULL, 3643, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3644, 2, 59, 'Odata danh mục nhân viên', '', '2021-01-26', NULL, 1, 41, 2, 94, 41, 10, '2021-01-23 08:24:44+07', '2021-01-30 10:13:56+07', '2021-01-26', 100, NULL, NULL, 3644, 1, 6, false, NULL);
INSERT INTO public.issues VALUES (3645, 2, 59, 'Danh mục dự án ', '', '2021-02-01', NULL, 1, NULL, 2, 90, 41, 1, '2021-01-23 08:25:34+07', '2021-01-23 08:44:39+07', '2021-02-01', 0, NULL, NULL, 3645, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3646, 2, 59, 'Hợp đồng nhận thầu', '', '2021-02-01', NULL, 1, NULL, 2, 90, 41, 1, '2021-01-23 08:25:59+07', '2021-01-23 08:44:40+07', '2021-02-01', 0, NULL, NULL, 3646, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3647, 2, 59, 'Quản lý file đính kèm', '', '2021-01-28', NULL, 1, 41, 2, 94, 41, 9, '2021-01-23 08:26:20+07', '2021-01-30 10:13:59+07', '2021-01-28', 100, NULL, NULL, 3647, 1, 6, false, NULL);
INSERT INTO public.issues VALUES (3648, 2, 59, 'Nhật kí nhập vật tư', '', '2021-02-01', NULL, 1, NULL, 2, 90, 41, 1, '2021-01-23 08:27:42+07', '2021-01-23 08:44:40+07', '2021-02-01', 0, NULL, NULL, 3648, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3649, 2, 59, 'Nhật kí thuê đội ngoài', '', '2021-02-01', NULL, 1, NULL, 2, 90, 41, 1, '2021-01-23 08:28:12+07', '2021-01-23 08:44:40+07', '2021-02-01', 0, NULL, NULL, 3649, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3650, 2, 59, 'Nhật kí chi phí', '', '2021-02-01', NULL, 1, NULL, 2, 90, 41, 1, '2021-01-23 08:28:51+07', '2021-01-23 08:44:40+07', '2021-02-01', 0, NULL, NULL, 3650, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3651, 2, 59, 'Bảng chấm công tổng hợp', '', '2021-02-17', NULL, 2, NULL, 2, 90, 41, 5, '2021-01-23 08:31:09+07', '2021-03-01 08:26:45+07', '2021-02-17', 0, NULL, NULL, 3651, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3652, 2, 59, 'Bảng chấm công theo công trình', '', '2021-02-17', NULL, 1, NULL, 2, 90, 41, 1, '2021-01-23 08:32:02+07', '2021-01-23 08:44:40+07', '2021-02-17', 0, NULL, NULL, 3652, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3653, 2, 59, 'Bảng lương tổng hợp', '', '2021-02-17', NULL, 1, NULL, 2, 90, 41, 1, '2021-01-23 08:32:36+07', '2021-01-23 08:44:40+07', '2021-02-17', 0, NULL, NULL, 3653, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3654, 2, 59, 'Bảng lương theo công trình', '', '2021-02-17', NULL, 1, NULL, 2, 90, 41, 1, '2021-01-23 08:32:56+07', '2021-01-23 08:44:40+07', '2021-02-17', 0, NULL, NULL, 3654, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3655, 2, 59, 'Định nghĩa bảng lương', '', '2021-02-17', NULL, 1, NULL, 2, 90, 41, 1, '2021-01-23 08:33:48+07', '2021-01-23 08:44:40+07', '2021-02-17', 0, NULL, NULL, 3655, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3656, 2, 59, 'Bảng tổng hợp công nợ công trình', '', '2021-02-22', NULL, 1, NULL, 2, 90, 41, 2, '2021-01-23 08:36:38+07', '2021-01-23 08:44:41+07', '2021-02-22', 0, NULL, NULL, 3656, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3657, 2, 59, 'Bảng chi phí lương cho từng công trình', '', '2021-02-22', NULL, 1, NULL, 2, 90, 41, 1, '2021-01-23 08:37:12+07', '2021-01-23 08:44:41+07', '2021-02-22', 0, NULL, NULL, 3657, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3658, 2, 59, 'Sổ nợ vật liệu từng công trình', '', '2021-02-22', NULL, 1, NULL, 2, 90, 41, 1, '2021-01-23 08:39:06+07', '2021-01-23 08:44:41+07', '2021-02-22', 0, NULL, NULL, 3658, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3659, 2, 59, 'Bảng tổng hợp kinh phí công trình', '', '2021-02-22', NULL, 1, NULL, 2, 90, 41, 1, '2021-01-23 08:40:19+07', '2021-01-23 08:44:41+07', '2021-02-22', 0, NULL, NULL, 3659, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3660, 2, 59, 'Báo cáo công nợ cửa hàng tổng hợp theo tháng', '', '2021-02-22', NULL, 1, NULL, 2, 90, 41, 1, '2021-01-23 08:40:40+07', '2021-01-23 08:44:41+07', '2021-02-22', 0, NULL, NULL, 3660, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3661, 2, 59, 'Báo cáo công nợ cửa hàng chi tiết theo tháng', '', '2021-03-01', NULL, 1, NULL, 2, 90, 41, 1, '2021-01-23 08:41:29+07', '2021-01-23 08:44:41+07', '2021-03-01', 0, NULL, NULL, 3661, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3662, 2, 59, 'Báo cáo công nợ đội thuê ngoài tổng hợp theo tháng (đợt)', '', '2021-03-01', NULL, 1, NULL, 2, 90, 41, 1, '2021-01-23 08:41:51+07', '2021-01-23 08:44:41+07', '2021-03-01', 0, NULL, NULL, 3662, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3663, 2, 59, 'Báo cáo công nợ đội thuê ngoài chi tiết theo tháng (đợt)', '', '2021-03-01', NULL, 1, NULL, 2, 90, 41, 1, '2021-01-23 08:42:25+07', '2021-01-23 08:44:41+07', '2021-03-01', 0, NULL, NULL, 3663, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3664, 2, 48, 'cập nhật giao sdoc cho từng loại dữ liệu', '', '2021-01-23', NULL, 3, 15, 2, 88, 15, 1, '2021-01-25 08:13:28+07', '2021-01-25 08:14:18+07', '2021-01-22', 100, NULL, 3628, 2412, 217, 218, false, NULL);
INSERT INTO public.issues VALUES (3665, 2, 59, 'Danh mục cửa hàng/đại lý', '', '2021-01-30', NULL, 3, 8, 2, 89, 15, 7, '2021-01-26 14:21:15+07', '2021-02-08 11:07:15+07', '2021-01-25', 100, NULL, NULL, 3665, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3666, 2, 59, 'Danh mục đội thuê', '', '2021-01-28', NULL, 3, 15, 2, 89, 15, 8, '2021-01-26 14:25:41+07', '2021-01-30 10:17:13+07', '2021-01-25', 100, NULL, 3689, 3689, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3668, 2, 59, 'Danh mục loại vật liệu', '', NULL, NULL, 3, 8, 2, 89, 15, 6, '2021-01-26 14:26:28+07', '2021-02-08 11:07:15+07', '2021-01-25', 100, NULL, NULL, 3668, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3670, 2, 59, 'Odata đội thuê ngoài', '', '2021-01-25', NULL, 1, 41, 2, 94, 41, 3, '2021-01-28 08:51:13+07', '2021-01-30 10:08:03+07', '2021-01-25', 100, NULL, 3642, 3642, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3671, 2, 59, 'Odata dự án đội thuê ngoài', '', '2021-01-25', NULL, 1, 41, 2, 94, 41, 2, '2021-01-28 08:53:42+07', '2021-01-30 10:08:03+07', '2021-01-25', 100, NULL, 3642, 3642, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (3672, 2, 59, 'Odata cửa hàng', '', '2021-01-25', NULL, 1, 41, 2, 94, 41, 3, '2021-01-28 08:56:58+07', '2021-01-30 10:08:03+07', '2021-01-25', 100, NULL, 3640, 3640, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3673, 2, 59, 'Odata cửa hàng vật liệu', '', '2021-01-26', NULL, 1, 41, 2, 94, 41, 2, '2021-01-28 08:57:32+07', '2021-01-30 10:08:03+07', '2021-01-26', 100, NULL, 3640, 3640, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (3674, 2, 59, 'Odata thông tin cá nhân ', '', '2021-01-26', NULL, 1, 41, 2, 94, 41, 5, '2021-01-28 09:13:38+07', '2021-01-30 10:05:30+07', '2021-01-26', 100, NULL, 3644, 3644, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3675, 2, 59, 'Odata nhân sự', '', '2021-01-26', NULL, 1, 41, 2, 94, 41, 5, '2021-01-28 09:14:00+07', '2021-01-30 10:05:31+07', '2021-01-26', 100, NULL, 3644, 3644, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (3676, 5, 57, '17 Quy hoạch phân khu quận Bình Thủy_Cần Thơ', 'Dự án phát sinh của Đợt 9 (16 dự án)
Huy xử lý bản đồ
Sỹ nhập liệu hạ tần kỹ thuật
Phúc nhập liệu sử dụng đất
Dũng nhập liệu giao thông', '2021-01-27', NULL, 1, 33, 2, NULL, 33, 1, '2021-01-28 14:00:32+07', '2021-01-28 14:00:44+07', '2021-01-22', 100, NULL, NULL, 3676, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3677, 5, 57, 'Kiễm tra dữ liệu gói 9 (17 đồ án)', 'Phúc kiễm tra 8QHNTM (số lẻ) và 1QHPK ', '2021-02-01', NULL, 1, 44, 2, NULL, 33, 1, '2021-01-28 14:04:15+07', '2021-02-19 03:24:25+07', '2021-01-28', 100, NULL, NULL, 3677, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3678, 5, 57, 'Kiễm tra dữ liệu gói 9 (17 đồ án)', 'Dũng kiễm tra 8QHNTM (số chẳn)', '2021-02-01', NULL, 1, 43, 2, NULL, 33, 1, '2021-01-28 14:05:00+07', '2021-02-19 03:24:37+07', '2021-01-28', 100, NULL, NULL, 3678, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3679, 2, 59, 'Odata danh mục vật liệu ', '', '2021-01-27', NULL, 1, 41, 2, 94, 41, 4, '2021-01-29 10:22:47+07', '2021-01-30 10:19:08+07', '2021-01-27', 100, NULL, 3641, 3641, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3680, 2, 59, 'Odata danh mục loại vật liệu ', '', '2021-01-27', NULL, 1, 41, 2, 94, 41, 4, '2021-01-29 10:23:32+07', '2021-01-30 10:19:24+07', '2021-01-27', 100, NULL, 3641, 3641, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (3681, 2, 59, 'Odata Văn bản', '', '2021-01-28', NULL, 1, 41, 2, 94, 41, 4, '2021-01-29 10:25:27+07', '2021-01-30 10:19:37+07', '2021-01-28', 100, NULL, 3647, 3647, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3682, 2, 59, 'API download & upload File', '', '2021-01-28', NULL, 1, 41, 2, 94, 41, 5, '2021-01-29 10:25:54+07', '2021-01-30 10:19:47+07', '2021-01-28', 100, NULL, 3647, 3647, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (3683, 2, 49, 'Thiết lập nguồn tiền cho admin', '', '2021-01-30', NULL, 3, 15, 2, NULL, 15, 1, '2021-01-30 08:12:20+07', '2021-01-30 08:12:54+07', '2021-01-29', 100, NULL, NULL, 3683, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3684, 2, 40, 'Tạo trường OBJECTID tự động tăng. cập nhật lại dữ liệu hiện tại theo khóa ngoại', '', '2021-01-30', NULL, 3, 13, 2, 93, 13, 5, '2021-01-30 08:25:10+07', '2021-02-02 09:54:14+07', '2021-01-30', 100, NULL, NULL, 3684, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3685, 2, 40, 'Thêm mới doanh nghiệp', '', '2021-02-04', NULL, 1, 13, 2, 93, 13, 1, '2021-01-30 08:25:41+07', '2021-02-02 09:53:35+07', '2021-02-02', 0, NULL, NULL, 3685, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3686, 2, 40, 'Thêm mới quy hoạch sử dụng đất cho khu công nghiệp', '', '2021-01-30', NULL, 3, 13, 2, 93, 13, 2, '2021-01-30 08:26:17+07', '2021-02-01 15:47:01+07', '2021-01-30', 100, NULL, NULL, 3686, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3687, 2, 40, 'Kiểm tra doanh nghiệp đã tồn tại theo mã số thuế (MaDoanhNghiep)', '', '2021-02-04', NULL, 3, 10, 2, 93, 13, 5, '2021-01-30 08:31:41+07', '2021-02-04 11:20:00+07', '2021-02-02', 100, NULL, NULL, 3687, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3688, 2, 59, 'sprint #1 ( 25/1 - 30/1)', '', '2021-01-28', NULL, 5, NULL, 2, 94, 15, 9, '2021-01-30 09:57:43+07', '2021-01-30 10:14:43+07', '2021-01-28', 100, NULL, NULL, 3688, 1, 2, false, '2021-01-30 10:14:43+07');
INSERT INTO public.issues VALUES (3689, 2, 59, 'Đội thuê', '', '2021-01-28', NULL, 3, 15, 2, 89, 15, 7, '2021-01-30 10:12:21+07', '2021-03-09 09:06:13+07', '2021-01-25', 100, NULL, NULL, 3689, 1, 8, false, NULL);
INSERT INTO public.issues VALUES (3690, 2, 59, 'Quản lý đội thuê ngoài', '', '2021-01-28', NULL, 3, 15, 2, 89, 15, 6, '2021-01-30 10:14:16+07', '2021-01-30 10:17:13+07', '2021-01-25', 100, NULL, 3689, 3689, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (3691, 2, 59, 'Quản lý đội thuê công ty', '', '2021-01-28', NULL, 3, 15, 2, 89, 15, 6, '2021-01-30 10:14:37+07', '2021-01-30 10:17:14+07', '2021-01-25', 100, NULL, 3689, 3689, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (3692, 2, 40, 'Cập nhật lại các api doanh nghiệp', '', '2021-01-30', NULL, 3, 13, 2, 93, 13, 3, '2021-01-30 13:36:19+07', '2021-02-02 09:54:14+07', '2021-01-30', 100, NULL, NULL, 3692, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3693, 3, 40, 'Viết hướng dẫn sử dụng', '', '2021-02-04', NULL, 1, 13, 2, 93, 13, 1, '2021-01-30 13:38:18+07', '2021-02-02 09:53:35+07', '2021-02-02', 0, NULL, NULL, 3693, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3694, 2, 40, 'Trigger update tình trạng sử dụng quy hoạch đất', '', '2021-02-01', NULL, 3, 13, 2, 93, 13, 4, '2021-02-01 09:00:06+07', '2021-02-02 09:54:14+07', '2021-02-01', 100, NULL, NULL, 3694, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3695, 2, 40, 'Trigger update id quy hoạch sử dụng đất khi tạo mới', '', '2021-02-01', NULL, 3, 13, 2, 93, 13, 3, '2021-02-01 09:00:45+07', '2021-02-02 09:54:14+07', '2021-02-01', 100, NULL, NULL, 3695, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3696, 2, 40, 'Cập nhật full text search ', '', '2021-02-01', NULL, 3, 13, 2, 93, 13, 3, '2021-02-01 09:37:39+07', '2021-02-02 09:54:14+07', '2021-02-01', 100, NULL, NULL, 3696, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3697, 2, 40, 'kiểm tra vẽ quy hoạch sử dụng đất không được chồng lên nhau', '', '2021-02-01', NULL, 3, 13, 2, 93, 13, 3, '2021-02-01 10:42:08+07', '2021-02-02 09:54:14+07', '2021-02-01', 100, NULL, NULL, 3697, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3698, 2, 40, 'Chỉnh giao diện thêm mới doanh nghiệp', '', '2021-02-04', NULL, 3, 10, 2, 93, 13, 4, '2021-02-02 08:27:09+07', '2021-02-04 11:20:00+07', '2021-02-02', 100, NULL, NULL, 3698, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3699, 2, 40, 'Cập nhật popup xem thông tin doanh nghiệp trên bản đồ', '', '2021-02-04', NULL, 1, 13, 2, 93, 13, 1, '2021-02-02 09:27:16+07', '2021-02-02 09:53:35+07', '2021-02-02', 0, NULL, NULL, 3699, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3700, 2, 40, 'Xem chi tiết thông tin thuê đất', '', '2021-02-04', NULL, 3, 13, 2, 93, 13, 3, '2021-02-02 09:52:22+07', '2021-02-02 10:22:50+07', '2021-02-02', 100, NULL, NULL, 3700, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3701, 2, 40, 'Thêm thông tin thuê đất', '', '2021-02-04', NULL, 3, 13, 2, 93, 13, 3, '2021-02-02 09:52:40+07', '2021-02-02 10:22:51+07', '2021-02-02', 100, NULL, NULL, 3701, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3702, 1, 42, 'Chỉ được phép đính kèm văn bản thuộc file Pdf', '', NULL, NULL, 5, 39, 2, 75, 40, 2, '2021-02-03 15:00:38+07', '2021-06-17 11:02:40+07', NULL, 0, NULL, NULL, 3702, 1, 2, false, '2021-06-17 11:02:40+07');
INSERT INTO public.issues VALUES (3703, 1, 42, 'Khi nhấn tạo báo báo tự động thì trạng thái không có sự thay đổi', '', NULL, NULL, 5, 39, 2, 75, 40, 4, '2021-02-04 08:20:53+07', '2021-06-17 11:02:40+07', NULL, 100, NULL, NULL, 3703, 1, 2, false, '2021-06-17 11:02:40+07');
INSERT INTO public.issues VALUES (3704, 2, 40, 'Phân quyền chức năng cho Vai trò Sở KHDT chỉ hiển thị nhóm chức năng Xúc tiến đầu tư trên menu', '', '2021-02-05', NULL, 1, 10, 2, 93, 13, 0, '2021-02-04 08:40:08+07', '2021-02-04 08:40:08+07', '2021-02-04', 0, NULL, NULL, 3704, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3705, 2, 40, 'Kiểm tra tình trạng hoạt động của tài khoản khi thực hiện đăng nhập', '', '2021-02-05', NULL, 1, 10, 2, 93, 13, 0, '2021-02-04 08:41:06+07', '2021-02-04 08:41:06+07', '2021-02-04', 0, NULL, NULL, 3705, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3707, 2, 40, 'Sửa tài khoản không bắt buộc phải đổi mật khẩu. Viết một chức năng đổi mật khẩu riêng', '![](clipboard-202102040843-zovau.png)
', '2021-02-05', NULL, 3, 10, 2, 93, 13, 2, '2021-02-04 08:43:45+07', '2021-02-05 14:32:26+07', '2021-02-04', 100, NULL, NULL, 3707, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3708, 2, 40, 'Xóa các vai trò test', '![](clipboard-202102040844-lryze.png)
', '2021-02-05', NULL, 3, 10, 2, 93, 13, 3, '2021-02-04 08:44:38+07', '2021-02-04 11:20:00+07', '2021-02-04', 100, NULL, NULL, 3708, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3709, 2, 40, 'Sửa giao diện bảng các trang quản trị: tài khoản, đơn vị...', '![](clipboard-202102040846-6rmt2.png)
![](clipboard-202102040851-yxwqf.png)
', '2021-02-05', NULL, 3, 10, 2, 93, 13, 2, '2021-02-04 08:51:42+07', '2021-02-05 08:38:27+07', '2021-02-04', 100, NULL, NULL, 3709, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3710, 2, 40, 'Đổi giao diện dialog bên quản trị sang giao diện dialog đang dùng bên trang xúc tiến đầu tư', '', '2021-02-05', NULL, 3, 10, 2, 93, 13, 2, '2021-02-04 09:02:36+07', '2021-02-05 08:38:27+07', '2021-02-04', 100, NULL, NULL, 3710, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3711, 1, 40, 'Chức năng đổi mật khẩu', '', '2021-02-05', NULL, 3, 10, 2, 93, 13, 2, '2021-02-04 09:03:14+07', '2021-02-04 15:29:03+07', '2021-02-04', 100, NULL, NULL, 3711, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3712, 1, 40, 'Chức năng sửa đơn vị.', '', '2021-02-04', NULL, 3, 10, 2, 93, 10, 4, '2021-02-04 11:19:04+07', '2021-02-04 11:20:01+07', '2021-02-04', 100, NULL, NULL, 3712, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3715, 4, 32, 'Làm website, icon, chỉnh sửa, video, CH Play, Sile, Backdrop,...', '- Vẽ icon quản lý báo cáo sở tài chính (Tính)
- Vẽ giao diện Hệ thống thông tin báo cáo LRIS (anh Nghĩa)
- Vẽ bì sản phẩm Chanh dây (chị Ly)
- Vẽ ion mobile (Tính)
- Thiết kế lại giao diện đăng nhập website sở tài chính Bình Định (anh Nghĩa)
- Điều chỉnh nhiều kích thước logo LRIS cho Mobile
- Tạo thêm icon: Nhân sự, Số hóa, Kế toán, Phát triển phần mềm.
- Thiết kế thư mời điện tử
- Vẽ 4 icon Quản lý công việc làm LRIS
- Thiết kế bằng khen thưởng Nhân viên xuất sắc 2020
- Vẽ 2 icon cho Hệ thông thông tin báo cáo (Dung)
- Thiết kế CH Play cho Phần mềm mobile Hệ thông thông tin
- Tạo video giới thiệu công ty GDT (Chưa xong)
', '2021-02-06', NULL, 1, 14, 2, NULL, 14, 0, '2021-02-06 14:05:06+07', '2021-02-06 14:05:06+07', '2021-01-11', 100, NULL, NULL, 3715, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3716, 2, 59, 'Dự án', '', '2021-02-06', NULL, 1, NULL, 2, 92, 15, 2, '2021-02-08 11:05:43+07', '2021-02-08 11:10:53+07', '2021-02-01', 100, NULL, NULL, 3716, 1, 8, false, NULL);
INSERT INTO public.issues VALUES (3717, 2, 59, 'Danh sách dự án ( thêm , sửa , xóa)', '', '2021-02-06', NULL, 3, 15, 2, 92, 15, 1, '2021-02-08 11:07:05+07', '2021-02-08 11:10:44+07', '2021-02-01', 100, NULL, 3716, 3716, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3718, 2, 59, 'Quản lý văn bản', '', '2021-02-08', NULL, 3, 8, 2, 92, 8, 2, '2021-02-08 11:08:38+07', '2021-02-08 11:09:40+07', '2021-02-08', 100, NULL, NULL, 3718, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3719, 2, 59, 'Đội thuê ngoài dự án', '', '2021-02-06', NULL, 3, 15, 2, 92, 15, 1, '2021-02-08 11:09:44+07', '2021-02-08 11:10:44+07', '2021-02-01', 100, NULL, 3716, 3716, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (3720, 2, 59, 'Form thêm văn bản multi', '', '2021-02-06', NULL, 3, 15, 2, 92, 15, 2, '2021-02-08 11:10:30+07', '2021-02-08 11:10:53+07', '2021-02-01', 100, NULL, 3716, 3716, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (3723, 2, 59, 'Danh mục khoản thu', '', '2021-01-28', NULL, 3, NULL, 2, 89, 37, 2, '2021-02-17 13:18:10+07', '2021-03-09 09:04:11+07', '2021-01-27', 100, NULL, NULL, 3723, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3725, 2, 59, 'Đội thuê ngoài của dự án', '', '2021-02-18', NULL, 3, 15, 2, 95, 15, 3, '2021-02-22 08:10:40+07', '2021-02-22 08:17:27+07', '2021-02-17', 100, NULL, NULL, 3725, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3726, 2, 59, 'Danh sách văn bản của dự án', '', '2021-02-19', NULL, 3, 15, 2, 95, 15, 1, '2021-02-22 08:11:20+07', '2021-02-22 08:17:27+07', '2021-02-19', 100, NULL, NULL, 3726, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3727, 2, 59, 'Danh sách công nợ', '', '2021-02-20', NULL, 3, 15, 2, 95, 15, 1, '2021-02-22 08:14:46+07', '2021-02-22 08:17:27+07', '2021-02-20', 100, NULL, NULL, 3727, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3728, 2, 59, 'Danh mục khoản thu', '', '2021-02-19', NULL, 1, 37, 2, 95, 37, 0, '2021-02-22 08:18:04+07', '2021-02-22 08:18:04+07', '2021-02-18', 100, NULL, NULL, 3728, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3729, 2, 59, 'Danh mục khoản chi', '', '2021-02-20', NULL, 1, 37, 2, 95, 37, 0, '2021-02-22 08:18:26+07', '2021-02-22 08:18:26+07', '2021-02-19', 100, NULL, NULL, 3729, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3730, 2, 42, 'Điều 18 - Mẫu 01 - CDT (Nhập liệu)', '', '2021-02-25', NULL, 5, 39, 2, 97, 39, 7, '2021-02-22 16:20:07+07', '2021-03-06 10:42:13+07', '2021-02-25', 100, NULL, NULL, 3730, 1, 2, false, '2021-03-06 10:42:13+07');
INSERT INTO public.issues VALUES (3731, 2, 42, 'Điều 18 - Mẫu 02 - CDT (Nhập liệu)', '', '2021-02-26', NULL, 5, 39, 2, 97, 39, 8, '2021-02-22 16:20:32+07', '2021-03-06 10:42:13+07', '2021-02-26', 100, NULL, NULL, 3731, 1, 2, false, '2021-03-06 10:42:13+07');
INSERT INTO public.issues VALUES (3732, 2, 42, 'Điều 18 - Mẫu 03 - CDT (Nhập liệu)', '', '2021-02-27', NULL, 5, 39, 2, 97, 39, 8, '2021-02-22 16:20:43+07', '2021-03-06 10:42:13+07', '2021-02-27', 100, NULL, NULL, 3732, 1, 2, false, '2021-03-06 10:42:13+07');
INSERT INTO public.issues VALUES (3733, 2, 42, 'Điều 18 - Mẫu 04 - CDT (Nhập liệu)', '', '2021-02-28', NULL, 5, 39, 2, 97, 39, 8, '2021-02-22 16:20:59+07', '2021-03-06 10:42:13+07', '2021-02-28', 100, NULL, NULL, 3733, 1, 2, false, '2021-03-06 10:42:13+07');
INSERT INTO public.issues VALUES (3734, 2, 59, 'Thiết lập khoản chi cửa hàng', '', '2021-02-23', NULL, 3, 15, 2, 96, 15, 2, '2021-02-23 13:45:05+07', '2021-02-27 07:03:57+07', '2021-02-22', 100, NULL, NULL, 3734, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3735, 2, 59, 'Quản lý nhân viên phòng ban', '', '2021-02-23', NULL, 3, 15, 2, 96, 15, 4, '2021-02-23 13:46:02+07', '2021-02-27 07:03:57+07', '2021-02-23', 100, NULL, NULL, 3735, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3736, 2, 42, 'Điều 18 - Mẫu 01 - CDT (PDF)', '', '2021-02-25', NULL, 5, 38, 2, 97, 5, 6, '2021-02-25 03:26:33+07', '2021-03-06 10:42:14+07', '2021-02-25', 100, NULL, NULL, 3736, 1, 2, false, '2021-03-06 10:42:14+07');
INSERT INTO public.issues VALUES (3738, 2, 42, 'Điều 18 - Mẫu 03 - CDT PDF)', '', '2021-02-27', NULL, 5, 38, 2, 97, 40, 6, '2021-02-25 03:35:21+07', '2021-03-06 10:42:14+07', '2021-02-27', 100, NULL, NULL, 3738, 1, 2, false, '2021-03-06 10:42:14+07');
INSERT INTO public.issues VALUES (3739, 2, 42, 'Điều 18 - Mẫu 04 - CDT (PDF)', '', '2021-02-28', NULL, 5, 38, 2, 97, 40, 5, '2021-02-25 03:35:55+07', '2021-03-06 10:42:14+07', '2021-02-28', 100, NULL, NULL, 3739, 1, 2, false, '2021-03-06 10:42:14+07');
INSERT INTO public.issues VALUES (3740, 2, 42, 'Điều 18 - Mẫu 02 - CDT (PDF)', '', '2021-02-26', NULL, 5, 38, 2, 97, 40, 8, '2021-02-25 03:37:14+07', '2021-03-06 10:42:14+07', '2021-02-26', 100, NULL, NULL, 3740, 1, 2, false, '2021-03-06 10:42:14+07');
INSERT INTO public.issues VALUES (3741, 2, 42, 'Điều 19 - Mẫu số 3 (Nhập liệu)', '', '2021-03-01', NULL, 5, 17, 2, 98, 40, 5, '2021-02-25 03:46:30+07', '2021-03-12 03:14:30+07', '2021-03-01', 100, NULL, NULL, 3741, 1, 2, false, '2021-03-12 03:14:30+07');
INSERT INTO public.issues VALUES (3742, 2, 42, 'Điều 19 - Mẫu số 3 (PDF)', '', '2021-03-01', NULL, 5, 41, 2, 98, 40, 4, '2021-02-25 03:47:37+07', '2021-03-12 03:14:30+07', '2021-03-01', 100, NULL, NULL, 3742, 1, 2, false, '2021-03-12 03:14:30+07');
INSERT INTO public.issues VALUES (3743, 2, 42, 'Điều 16 - Mẫu số 12/QTDA (Nhập liệu)', '', '2021-03-01', NULL, 5, 13, 2, 98, 40, 4, '2021-02-25 03:51:16+07', '2021-03-12 03:14:30+07', '2021-03-01', 100, NULL, NULL, 3743, 1, 2, false, '2021-03-12 03:14:30+07');
INSERT INTO public.issues VALUES (3744, 2, 42, 'Điều 16 - Mẫu số 12/QTDA (PDF)', '', '2021-03-01', NULL, 5, 41, 2, 98, 40, 4, '2021-02-25 03:53:00+07', '2021-03-12 03:14:31+07', '2021-03-01', 100, NULL, NULL, 3744, 1, 2, false, '2021-03-12 03:14:31+07');
INSERT INTO public.issues VALUES (3745, 2, 42, 'Điều 17 -Mẫu 04/CKTC-ĐTXD (Nhập liệu)', '', '2021-03-03', NULL, 5, 10, 2, 98, 40, 6, '2021-02-25 03:54:08+07', '2021-03-06 10:42:52+07', '2021-03-03', 100, NULL, NULL, 3745, 1, 2, false, '2021-03-06 10:42:52+07');
INSERT INTO public.issues VALUES (3746, 2, 42, 'Điều 17 -Mẫu 04/CKTC-ĐTXD (PDF)', '', '2021-03-03', NULL, 5, 38, 2, 98, 40, 4, '2021-02-25 03:57:12+07', '2021-03-06 10:42:52+07', '2021-03-03', 100, NULL, NULL, 3746, 1, 2, false, '2021-03-06 10:42:52+07');
INSERT INTO public.issues VALUES (3747, 5, 61, '1 Quận Ninh Kiều', '', '2021-02-27', 27, 1, 43, 2, NULL, 33, 1, '2021-02-25 04:20:55+07', '2021-03-05 07:00:04+07', '2021-02-25', 100, NULL, NULL, 3747, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3748, 5, 61, '2 Huyện Cờ Đỏ', '', '2021-02-27', 27, 1, 32, 2, NULL, 33, 2, '2021-02-25 04:21:32+07', '2021-02-27 15:10:58+07', '2021-02-25', 100, NULL, NULL, 3748, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3749, 5, 61, '3 Huyện Phong Điền', '', '2021-03-01', 27, 1, 29, 2, NULL, 33, 2, '2021-02-25 04:22:03+07', '2021-03-05 07:00:12+07', '2021-02-25', 100, NULL, NULL, 3749, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3750, 5, 61, '4 Huyện Vĩnh Thạnh', '', '2021-02-27', 27, 1, 33, 2, NULL, 33, 2, '2021-02-25 04:22:21+07', '2021-03-05 07:00:18+07', '2021-02-25', 100, NULL, NULL, 3750, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3751, 5, 61, '10 QHPK Quận Thốt Nốt', '', '2021-03-01', 27, 1, 44, 2, NULL, 33, 3, '2021-02-25 04:22:43+07', '2021-03-24 05:36:06+07', '2021-02-25', 100, NULL, NULL, 3751, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3752, 5, 61, '5 Huyện Thới Lai', '', '2021-03-03', 27, 1, 23, 2, NULL, 33, 1, '2021-02-27 11:45:58+07', '2021-03-05 06:59:49+07', '2021-02-26', 100, NULL, NULL, 3752, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3753, 5, 61, '6 Quận Ô Môn', '', '2021-03-01', NULL, 1, 33, 2, NULL, 33, 1, '2021-02-27 06:12:25+07', '2021-03-05 07:00:23+07', '2021-02-27', 100, NULL, NULL, 3753, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3754, 5, 61, '7 Quận Thốt Nốt', '', '2021-03-02', NULL, 1, 33, 2, NULL, 33, 1, '2021-02-27 06:12:58+07', '2021-03-05 07:00:29+07', '2021-03-01', 100, NULL, NULL, 3754, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3755, 5, 61, '8 Quận Bình Thủy', '', '2021-03-03', NULL, 1, 33, 2, NULL, 33, 1, '2021-02-27 06:13:43+07', '2021-03-05 07:00:38+07', '2021-03-02', 100, NULL, NULL, 3755, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3756, 5, 61, '9 Quận Cái Răng', '', '2021-03-04', NULL, 1, 43, 2, NULL, 33, 1, '2021-02-27 06:14:27+07', '2021-03-05 07:00:33+07', '2021-03-01', 100, NULL, NULL, 3756, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3757, 2, 59, 'Thanh toán dự án', '', '2021-02-25', NULL, 3, 15, 2, 96, 15, 2, '2021-02-27 07:01:52+07', '2021-02-27 07:03:57+07', '2021-02-24', 100, NULL, NULL, 3757, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3758, 2, 59, 'Lịch sử thanh toán dự án', '', '2021-02-26', NULL, 3, 15, 2, 96, 15, 2, '2021-02-27 07:02:29+07', '2021-02-27 07:03:57+07', '2021-02-25', 100, NULL, NULL, 3758, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3759, 2, 59, 'Danh sách Loại khoản thu', '', '2021-02-27', NULL, 3, 15, 2, 96, 15, 2, '2021-02-27 07:03:28+07', '2021-02-27 07:03:57+07', '2021-02-27', 100, NULL, NULL, 3759, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3760, 2, 59, 'Bảng chấm công', '- Form lọc
- Chấm công cho đội thuê ngoài
- Chấm công cho đội công ty', '2021-02-22', NULL, 3, 12, 2, 96, 12, 4, '2021-03-01 08:30:04+07', '2021-03-01 08:45:09+07', '2021-02-22', 100, NULL, NULL, 3760, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3761, 2, 59, 'Tạm ứng lương', '- Form lọc
- Form tạm ứng,
- Danh sách nhân viên ứng lương', '2021-02-17', NULL, 3, 12, 2, 95, 12, 3, '2021-03-01 08:35:55+07', '2021-03-01 08:40:10+07', '2021-02-17', 100, NULL, NULL, 3761, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3762, 2, 59, 'Danh sách bảng lương ', '', '2021-02-26', NULL, 3, 12, 2, 96, 12, 1, '2021-03-01 08:38:22+07', '2021-03-01 08:46:32+07', '2021-02-26', 100, NULL, NULL, 3762, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3763, 2, 59, 'Tạo bảng lương', '', '2021-03-01', NULL, 3, 12, 2, 96, 12, 4, '2021-03-01 08:48:36+07', '2021-03-01 16:11:51+07', '2021-02-27', 100, NULL, NULL, 3763, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3764, 2, 42, 'Điều 18 - Mẫu 01 - CQTH (Nhập liệu)', '', '2021-03-01', NULL, 5, 39, 2, 98, 40, 2, '2021-03-03 07:36:09+07', '2021-03-06 10:42:52+07', '2021-03-01', 100, NULL, NULL, 3764, 1, 2, false, '2021-03-06 10:42:52+07');
INSERT INTO public.issues VALUES (3765, 2, 42, 'Điều 18 - Mẫu 01 - CQTH (PDF)', '', '2021-03-01', NULL, 5, 38, 2, 98, 40, 2, '2021-03-03 07:36:58+07', '2021-03-06 10:42:52+07', '2021-03-01', 100, NULL, NULL, 3765, 1, 2, false, '2021-03-06 10:42:52+07');
INSERT INTO public.issues VALUES (3766, 2, 42, 'Điều 18 - Mẫu 02 - CQTH (Nhập liệu)', '', '2021-03-02', NULL, 5, 39, 2, 98, 40, 2, '2021-03-03 07:37:39+07', '2021-03-06 10:42:53+07', '2021-03-02', 100, NULL, NULL, 3766, 1, 2, false, '2021-03-06 10:42:53+07');
INSERT INTO public.issues VALUES (3767, 2, 42, 'Điều 18 - Mẫu 02 - CQTH (PDF)', '', '2021-03-02', NULL, 5, 38, 2, 98, 40, 2, '2021-03-03 07:37:56+07', '2021-03-06 10:42:53+07', '2021-03-02', 100, NULL, NULL, 3767, 1, 2, false, '2021-03-06 10:42:53+07');
INSERT INTO public.issues VALUES (3768, 2, 42, 'Điều 18 - Mẫu 03 - CQTH (Nhập liệu)', '', '2021-03-03', NULL, 5, 39, 2, 98, 40, 2, '2021-03-03 07:38:14+07', '2021-03-06 10:42:53+07', '2021-03-03', 100, NULL, NULL, 3768, 1, 2, false, '2021-03-06 10:42:53+07');
INSERT INTO public.issues VALUES (3769, 2, 42, 'Điều 18 - Mẫu 03 - CQTH (PDF)', '', '2021-03-03', NULL, 5, 38, 2, 98, 40, 2, '2021-03-03 07:38:33+07', '2021-03-06 10:42:53+07', '2021-03-03', 100, NULL, NULL, 3769, 1, 2, false, '2021-03-06 10:42:53+07');
INSERT INTO public.issues VALUES (3770, 2, 42, 'Điều 9 - Mẫu 1.01 (Nhập liệu)', '', '2021-03-06', NULL, 5, 39, 2, 98, 40, 5, '2021-03-03 07:41:26+07', '2021-03-06 10:42:53+07', '2021-03-06', 100, NULL, NULL, 3770, 1, 2, false, '2021-03-06 10:42:53+07');
INSERT INTO public.issues VALUES (3771, 2, 42, 'Điều 9 - Mẫu 1.01 (PDF)', '', '2021-03-09', NULL, 5, 38, 2, 100, 40, 7, '2021-03-03 07:41:37+07', '2021-03-15 02:40:38+07', '2021-03-08', 100, NULL, NULL, 3771, 1, 2, false, '2021-03-15 02:40:38+07');
INSERT INTO public.issues VALUES (3772, 2, 42, 'Điều 9 - Mẫu 1.02 (Nhập liệu)', '', '2021-03-06', NULL, 5, 39, 2, 98, 40, 5, '2021-03-03 07:41:45+07', '2021-03-06 10:42:53+07', '2021-03-06', 100, NULL, NULL, 3772, 1, 2, false, '2021-03-06 10:42:53+07');
INSERT INTO public.issues VALUES (3773, 2, 42, 'Điều 9 - Mẫu 1.02 (PDF)', '', '2021-03-09', NULL, 5, 38, 2, 100, 40, 7, '2021-03-03 07:42:04+07', '2021-03-15 02:40:38+07', '2021-03-08', 100, NULL, NULL, 3773, 1, 2, false, '2021-03-15 02:40:38+07');
INSERT INTO public.issues VALUES (3774, 2, 42, 'Điều 9 - Mẫu 1.03 (Nhập liệu)', '', '2021-03-06', NULL, 5, 39, 2, 98, 40, 5, '2021-03-03 07:42:21+07', '2021-03-06 10:42:53+07', '2021-03-06', 100, NULL, NULL, 3774, 1, 2, false, '2021-03-06 10:42:53+07');
INSERT INTO public.issues VALUES (3775, 2, 42, 'Điều 9 - Mẫu 1.03 (PDF)', '', '2021-03-09', NULL, 5, 38, 2, 100, 40, 8, '2021-03-03 07:42:33+07', '2021-03-15 02:40:38+07', '2021-03-08', 100, NULL, NULL, 3775, 1, 2, false, '2021-03-15 02:40:38+07');
INSERT INTO public.issues VALUES (3776, 2, 42, 'Điều 10 - Mẫu 01 -TT 188/2014/TT-BTC (Nhập liệu)', '', '2021-03-29', NULL, 5, 39, 2, 132, 40, 11, '2021-03-03 07:50:53+07', '2021-05-19 09:02:22+07', '2021-03-29', 100, NULL, NULL, 3776, 1, 2, false, '2021-05-19 09:02:22+07');
INSERT INTO public.issues VALUES (3777, 2, 42, 'Điều 10 - Mẫu 01 -TT 188/2014/TT-BTC (PDF)', '', '2021-03-10', NULL, 5, 38, 2, 100, 40, 7, '2021-03-03 07:51:07+07', '2021-03-15 02:40:38+07', '2021-03-10', 100, NULL, NULL, 3777, 1, 2, false, '2021-03-15 02:40:38+07');
INSERT INTO public.issues VALUES (3778, 2, 42, 'Điều 10 - Mẫu 02 -TT 188/2014/TT-BTC (Nhập liệu)', '', '2021-03-10', NULL, 5, 39, 2, 100, 40, 7, '2021-03-03 07:51:15+07', '2021-03-15 02:40:38+07', '2021-03-10', 100, NULL, NULL, 3778, 1, 2, false, '2021-03-15 02:40:38+07');
INSERT INTO public.issues VALUES (3779, 2, 42, 'Điều 10 - Mẫu 02 -TT 188/2014/TT-BTC (PDF)', '', '2021-03-10', NULL, 5, 38, 2, 100, 40, 7, '2021-03-03 07:51:30+07', '2021-03-15 02:40:38+07', '2021-03-10', 100, NULL, NULL, 3779, 1, 2, false, '2021-03-15 02:40:38+07');
INSERT INTO public.issues VALUES (3780, 2, 42, 'Điều 10 - Mẫu 04 -TT 188/2014/TT-BTC (Nhập liệu)', '', '2021-03-10', NULL, 5, 39, 2, 100, 40, 7, '2021-03-03 07:51:39+07', '2021-03-15 02:40:39+07', '2021-03-10', 100, NULL, NULL, 3780, 1, 2, false, '2021-03-15 02:40:39+07');
INSERT INTO public.issues VALUES (3781, 2, 42, 'Điều 10 - Mẫu 04 -TT 188/2014/TT-BTC (PDF)', '', '2021-03-10', NULL, 5, 38, 2, 100, 40, 7, '2021-03-03 07:51:50+07', '2021-03-15 02:40:39+07', '2021-03-10', 100, NULL, NULL, 3781, 1, 2, false, '2021-03-15 02:40:39+07');
INSERT INTO public.issues VALUES (3782, 2, 42, 'Điều 10 - Mẫu 01-A - TT 129/2017/TT-BTC(Nhập liệu)', '', '2021-03-11', NULL, 5, 39, 2, 100, 40, 7, '2021-03-03 07:52:50+07', '2021-03-15 02:40:39+07', '2021-03-11', 100, NULL, NULL, 3782, 1, 2, false, '2021-03-15 02:40:39+07');
INSERT INTO public.issues VALUES (3783, 2, 42, 'Điều 10 - Mẫu 01-A - TT 129/2017/TT-BTC(PDF)', '', '2021-03-11', NULL, 5, 38, 2, 100, 40, 7, '2021-03-03 07:53:03+07', '2021-03-15 02:40:39+07', '2021-03-11', 100, NULL, NULL, 3783, 1, 2, false, '2021-03-15 02:40:39+07');
INSERT INTO public.issues VALUES (3784, 2, 42, 'Điều 10 - Mẫu 01-B - TT 129/2017/TT-BTC(Nhập liệu)', '', '2021-03-11', NULL, 5, 39, 2, 100, 40, 7, '2021-03-03 07:53:12+07', '2021-03-15 02:40:39+07', '2021-03-11', 100, NULL, NULL, 3784, 1, 2, false, '2021-03-15 02:40:39+07');
INSERT INTO public.issues VALUES (3785, 2, 42, 'Điều 10 - Mẫu 01-B - TT 129/2017/TT-BTC (PDF)', '', '2021-03-11', NULL, 5, 38, 2, 100, 40, 7, '2021-03-03 07:53:25+07', '2021-03-15 02:40:39+07', '2021-03-11', 100, NULL, NULL, 3785, 1, 2, false, '2021-03-15 02:40:39+07');
INSERT INTO public.issues VALUES (3786, 2, 42, 'Điều 10 - Mẫu 02 - TT 129/2017/TT-BTC (Nhập liệu)', '', '2021-03-12', NULL, 5, 39, 2, 100, 40, 7, '2021-03-03 07:54:15+07', '2021-03-15 02:40:39+07', '2021-03-12', 100, NULL, NULL, 3786, 1, 2, false, '2021-03-15 02:40:39+07');
INSERT INTO public.issues VALUES (3787, 2, 42, 'Điều 10 - Mẫu 02 - TT 129/2017/TT-BTC (PDF)', '', '2021-03-12', NULL, 5, 38, 2, 100, 40, 7, '2021-03-03 07:54:32+07', '2021-03-15 02:40:40+07', '2021-03-12', 100, NULL, NULL, 3787, 1, 2, false, '2021-03-15 02:40:40+07');
INSERT INTO public.issues VALUES (3788, 2, 42, 'Điều 10 - Mẫu 04 - TT 129/2017/TT-BTC (Nhập liệu)', '', '2021-03-12', NULL, 5, 39, 2, 100, 40, 7, '2021-03-03 07:54:41+07', '2021-03-15 02:40:40+07', '2021-03-12', 100, NULL, NULL, 3788, 1, 2, false, '2021-03-15 02:40:40+07');
INSERT INTO public.issues VALUES (3789, 2, 42, 'Điều 10 - Mẫu 04 - TT 129/2017/TT-BTC (PDF)', '', '2021-03-12', NULL, 5, 38, 2, 100, 40, 7, '2021-03-03 07:54:50+07', '2021-03-15 02:40:40+07', '2021-03-12', 100, NULL, NULL, 3789, 1, 2, false, '2021-03-15 02:40:40+07');
INSERT INTO public.issues VALUES (3790, 2, 42, 'Điều 10 - Mẫu 05 - TT 129/2017/TT-BTC (Nhập liệu)', '', '2021-03-12', NULL, 5, 39, 2, 100, 40, 7, '2021-03-03 07:55:02+07', '2021-03-15 02:40:40+07', '2021-03-12', 100, NULL, NULL, 3790, 1, 2, false, '2021-03-15 02:40:40+07');
INSERT INTO public.issues VALUES (3791, 2, 42, 'Điều 10 - Mẫu 05 - TT 129/2017/TT-BTC (PDF)', '', NULL, NULL, 5, NULL, 2, 75, 40, 1, '2021-03-03 07:55:13+07', '2021-03-03 07:56:34+07', '2021-03-03', 0, NULL, NULL, 3791, 1, 2, false, '2021-03-03 07:56:34+07');
INSERT INTO public.issues VALUES (3792, 2, 42, 'Điều 10 - Mẫu 05 - TT 129/2017/TT-BTC (PDF)', '', '2021-03-12', NULL, 5, 38, 2, 100, 40, 7, '2021-03-03 07:55:31+07', '2021-03-15 02:40:40+07', '2021-03-12', 100, NULL, NULL, 3792, 1, 2, false, '2021-03-15 02:40:40+07');
INSERT INTO public.issues VALUES (3793, 2, 42, 'Điều 10 - Mẫu 06 - TT 129/2017/TT-BTC (Nhập liệu)', '', '2021-03-12', NULL, 5, 39, 2, 100, 40, 7, '2021-03-03 07:55:38+07', '2021-03-15 02:40:40+07', '2021-03-12', 100, NULL, NULL, 3793, 1, 2, false, '2021-03-15 02:40:40+07');
INSERT INTO public.issues VALUES (3794, 2, 42, 'Điều 10 - Mẫu 06 - TT 129/2017/TT-BTC (PDF)', '', '2021-03-12', NULL, 5, 38, 2, 100, 40, 7, '2021-03-03 07:55:51+07', '2021-03-15 02:40:40+07', '2021-03-12', 100, NULL, NULL, 3794, 1, 2, false, '2021-03-15 02:40:40+07');
INSERT INTO public.issues VALUES (3795, 2, 42, 'Điều 11 - Mẫu 1.2  (Nhập liệu)', '', '2021-03-08', NULL, 5, 10, 2, 100, 40, 9, '2021-03-03 07:57:53+07', '2021-03-15 02:40:41+07', '2021-03-08', 100, NULL, NULL, 3795, 1, 2, false, '2021-03-15 02:40:41+07');
INSERT INTO public.issues VALUES (3796, 2, 42, 'Điều 11 - Mẫu 1.2  (PDF)', '', '2021-03-13', NULL, 5, 38, 2, 100, 40, 9, '2021-03-03 07:58:11+07', '2021-03-15 02:40:41+07', '2021-03-13', 100, NULL, NULL, 3796, 1, 2, false, '2021-03-15 02:40:41+07');
INSERT INTO public.issues VALUES (3797, 2, 42, 'Điều 11 - Mẫu 1.1 - TT 38/2020/QĐ-UBND (Nhập liệu)', '', NULL, NULL, 5, NULL, 2, 75, 40, 1, '2021-03-03 07:58:22+07', '2021-03-03 08:01:12+07', '2021-03-03', 0, NULL, NULL, 3797, 1, 2, false, '2021-03-03 08:01:12+07');
INSERT INTO public.issues VALUES (3798, 2, 42, 'Điều 11 - Mẫu 1.1 - TT 38/2020/QĐ-UBND (PDF)', '', '2021-03-15', NULL, 5, 38, 2, 102, 40, 4, '2021-03-03 07:58:29+07', '2021-03-26 00:44:28+07', '2021-03-15', 100, NULL, NULL, 3798, 1, 2, false, '2021-03-26 00:44:28+07');
INSERT INTO public.issues VALUES (3799, 2, 42, 'Điều 11 - Mẫu 1.3  (Nhập liệu)', '', '2021-03-08', NULL, 5, 10, 2, 100, 40, 9, '2021-03-03 07:58:39+07', '2021-03-15 02:40:41+07', '2021-03-08', 100, NULL, NULL, 3799, 1, 2, false, '2021-03-15 02:40:41+07');
INSERT INTO public.issues VALUES (3800, 2, 42, 'Điều 11 - Mẫu 1.3 (PDF)', '', '2021-03-13', NULL, 5, 38, 2, 100, 40, 9, '2021-03-03 07:58:49+07', '2021-03-15 02:40:41+07', '2021-03-13', 100, NULL, NULL, 3800, 1, 2, false, '2021-03-15 02:40:41+07');
INSERT INTO public.issues VALUES (3801, 2, 42, 'Điều 11 - Mẫu 1.1 (PDF)', '', '2021-03-13', NULL, 5, 38, 2, 100, 40, 9, '2021-03-03 07:59:28+07', '2021-03-15 02:40:41+07', '2021-03-13', 100, NULL, NULL, 3801, 1, 2, false, '2021-03-15 02:40:41+07');
INSERT INTO public.issues VALUES (3802, 2, 42, 'Điều 11 - Mẫu 1.1 (Nhập liệu)', '', '2021-03-08', NULL, 5, 10, 2, 100, 40, 8, '2021-03-03 08:02:06+07', '2021-03-15 02:40:41+07', '2021-03-08', 100, NULL, NULL, 3802, 1, 2, false, '2021-03-15 02:40:41+07');
INSERT INTO public.issues VALUES (3803, 2, 59, 'Công nợ theo dự án', '', '2021-03-04', NULL, 3, 15, 2, 99, 15, 3, '2021-03-06 14:21:29+07', '2021-03-06 15:44:24+07', '2021-03-03', 100, NULL, NULL, 3803, 1, 10, false, NULL);
INSERT INTO public.issues VALUES (3804, 2, 59, 'Báo cáo công nợ tổng hợp', '', '2021-03-02', NULL, 3, 15, 2, 99, 15, 1, '2021-03-06 14:22:14+07', '2021-03-06 15:44:25+07', '2021-03-01', 100, NULL, NULL, 3804, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3805, 2, 59, 'Công nợ Khách hàng', '', '2021-03-03', NULL, 3, 15, 2, 99, 15, 1, '2021-03-06 15:42:01+07', '2021-03-06 15:44:24+07', '2021-03-03', 100, NULL, 3803, 3803, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3806, 2, 59, 'Công nợ cửa hàng ', '', '2021-03-04', NULL, 3, 15, 2, 99, 15, 1, '2021-03-06 15:42:32+07', '2021-03-06 15:44:24+07', '2021-03-04', 100, NULL, 3803, 3803, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (3807, 2, 59, 'Công nợ đội thuê ngoài', '', '2021-03-03', NULL, 3, 15, 2, 99, 15, 1, '2021-03-06 15:43:02+07', '2021-03-06 15:44:25+07', '2021-03-03', 100, NULL, 3803, 3803, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (3808, 2, 59, 'Công nợ nhân viên công ty', '', '2021-03-04', NULL, 3, 15, 2, 99, 15, 1, '2021-03-06 15:43:27+07', '2021-03-06 15:44:25+07', '2021-03-04', 100, NULL, 3803, 3803, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (3809, 5, 61, '11 Khu đô thị mới phường An Bình (khu 3)', 'Nhập liệu', '2021-03-10', NULL, 1, 29, 2, NULL, 33, 1, '2021-03-09 08:07:53+07', '2021-03-24 05:27:41+07', '2021-03-06', 100, NULL, NULL, 3809, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3810, 5, 61, '12 Khu TĐC phường An Bình, quận Ninh Kiều', 'Nhập liệu', '2021-03-12', NULL, 1, 24, 2, NULL, 33, 1, '2021-03-09 08:09:37+07', '2021-03-24 05:31:52+07', '2021-03-08', 100, NULL, NULL, 3810, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3811, 5, 61, '13 Bản đồ quy hoạch sử dụng đất Quận Bình Thủy', 'Xử lý bản đồ và nhập liệu', '2021-03-12', NULL, 1, 43, 2, NULL, 33, 1, '2021-03-09 08:10:23+07', '2021-03-24 05:28:39+07', '2021-03-06', 100, NULL, NULL, 3811, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3812, 5, 61, '14 Bản đồ quy hoạch sử dụng đất Quận Cái Răng', 'Bản đồ quy hoạch sử dụng đất Quận Cái Răng', '2021-03-12', NULL, 1, 44, 2, NULL, 33, 2, '2021-03-09 08:10:53+07', '2021-03-24 05:30:03+07', '2021-03-06', 100, NULL, NULL, 3812, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3813, 5, 61, '15 Bản đồ quy hoạch sử dụng đất Huyện Phong Điền', 'Xử lý bản đồ và nhập liệu', '2021-03-12', NULL, 1, 32, 2, NULL, 33, 1, '2021-03-09 08:11:59+07', '2021-03-23 02:38:06+07', '2021-03-06', 100, NULL, NULL, 3813, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3814, 5, 61, '16 Bản đồ quy hoạch sử dụng đất Huyện Cờ Đỏ', 'Xywr lý bản đồ và nhập liệu', '2021-03-19', NULL, 1, 33, 2, NULL, 33, 2, '2021-03-09 08:12:34+07', '2021-03-24 05:35:31+07', '2021-03-15', 100, NULL, NULL, 3814, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3815, 5, 61, '17 Bản đồ quy hoạch sử dụng đất Quận Ô Môn', 'Xử lý bản đồ và nhập liệu', '2021-03-11', NULL, 1, 33, 2, NULL, 33, 1, '2021-03-09 08:13:15+07', '2021-03-24 05:35:12+07', '2021-03-08', 100, NULL, NULL, 3815, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3816, 2, 59, 'Báo cáo số nợ vật liệu từng công trình', '', '2021-03-09', NULL, 3, 15, 2, 101, 15, 2, '2021-03-09 09:05:01+07', '2021-03-09 21:11:34+07', '2021-03-08', 100, NULL, NULL, 3816, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3817, 2, 59, 'Xuất báo bảng lương đội công ty', '', '2021-03-05', NULL, 3, 12, 2, 99, 12, 2, '2021-03-09 09:22:40+07', '2021-03-09 09:23:09+07', '2021-03-05', 100, NULL, NULL, 3817, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3818, 2, 59, 'Xuất báo cáo kinh phí công trình', '', '2021-03-09', NULL, 3, 12, 2, 101, 12, 2, '2021-03-09 09:24:28+07', '2021-03-15 02:45:12+07', '2021-03-09', 100, NULL, NULL, 3818, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3819, 2, 59, 'Báo cáo chi tiết vật liệu cửa hàng', '', '2021-03-10', NULL, 3, 37, 2, 101, 37, 1, '2021-03-11 02:55:56+07', '2021-03-11 02:56:13+07', '2021-03-09', 100, NULL, NULL, 3819, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3820, 2, 59, 'Xuất báo cáo chi tiết vật liệu công trình', '', '2021-03-11', NULL, 3, 37, 2, 101, 37, 2, '2021-03-11 02:56:59+07', '2021-03-15 01:38:35+07', '2021-03-10', 100, NULL, NULL, 3820, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3821, 5, 61, '18 Bản đồ quy hoạch sử dụng đất Quận Thốt Nốt', 'Xử lý bản đồ và nhập liệu', '2021-03-19', NULL, 1, 32, 2, NULL, 33, 1, '2021-03-11 06:15:49+07', '2021-03-23 02:38:18+07', '2021-03-12', 100, NULL, NULL, 3821, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3822, 5, 61, '19 Bản đồ quy hoạch sử dụng đất Huyện Thới Lai', 'Xử lý bản đồ và nhập liệu', '2021-03-19', NULL, 1, 44, 2, NULL, 33, 1, '2021-03-11 06:16:35+07', '2021-03-24 05:35:18+07', '2021-03-12', 100, NULL, NULL, 3822, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3823, 5, 61, '20 Bản đồ quy hoạch sử dụng đất huyện Vĩnh Thạnh', 'Xử lý bản đồ và nhập liệu', '2021-03-19', NULL, 1, 43, 2, NULL, 33, 1, '2021-03-11 06:17:07+07', '2021-03-24 05:35:25+07', '2021-03-12', 100, NULL, NULL, 3823, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3824, 2, 42, 'Điều 12 - Mẫu 06 (Nhập liệu)', '', '2021-03-18', NULL, 5, 8, 2, 102, 40, 7, '2021-03-12 01:20:22+07', '2021-03-31 15:25:13+07', '2021-03-18', 100, NULL, NULL, 3824, 1, 2, false, '2021-03-31 15:25:13+07');
INSERT INTO public.issues VALUES (3825, 2, 42, 'Điều 12 - Mẫu 06 (PDF)', '', '2021-03-19', NULL, 5, 38, 2, 103, 40, 11, '2021-03-12 01:20:55+07', '2021-03-29 10:05:55+07', '2021-03-19', 100, NULL, NULL, 3825, 1, 2, false, '2021-03-29 10:05:55+07');
INSERT INTO public.issues VALUES (3826, 2, 42, 'Điều 12 - Mẫu 07 (Nhập liệu)', '', '2021-03-18', NULL, 5, 8, 2, 102, 40, 5, '2021-03-12 01:21:44+07', '2021-03-31 15:25:13+07', '2021-03-18', 100, NULL, NULL, 3826, 1, 2, false, '2021-03-31 15:25:13+07');
INSERT INTO public.issues VALUES (3827, 2, 42, 'Điều 12 - Mẫu 07 (PDF)', '', '2021-03-29', NULL, 5, 38, 2, 105, 40, 10, '2021-03-12 01:22:44+07', '2021-03-29 10:05:55+07', '2021-03-29', 0, NULL, NULL, 3827, 1, 2, false, '2021-03-29 10:05:55+07');
INSERT INTO public.issues VALUES (3828, 2, 42, 'Điều 13 - Mẫu B5.BCTC (Nhập liệu)', '', '2021-03-18', NULL, 5, 13, 2, 103, 40, 5, '2021-03-12 01:24:11+07', '2021-04-10 03:50:32+07', '2021-03-18', 100, NULL, NULL, 3828, 1, 2, false, '2021-04-10 03:50:32+07');
INSERT INTO public.issues VALUES (3829, 2, 42, 'Điều 13 - Mẫu B5.BCTC (PDF)', '', '2021-03-18', NULL, 5, 41, 2, 102, 40, 5, '2021-03-12 01:24:44+07', '2021-03-31 16:14:04+07', '2021-03-18', 100, NULL, NULL, 3829, 1, 2, false, '2021-03-31 16:14:04+07');
INSERT INTO public.issues VALUES (3830, 2, 42, 'Điều 13 - Mẫu B6.BCTC (Nhập liệu)', '', '2021-03-18', NULL, 5, 13, 2, 103, 40, 5, '2021-03-12 01:25:19+07', '2021-04-10 03:50:33+07', '2021-03-18', 100, NULL, NULL, 3830, 1, 2, false, '2021-04-10 03:50:33+07');
INSERT INTO public.issues VALUES (3831, 2, 42, 'Điều 13 - Mẫu B6.BCTC (PDF)', '', '2021-03-29', NULL, 5, 41, 2, 105, 40, 6, '2021-03-12 01:25:33+07', '2021-04-10 03:50:33+07', '2021-03-29', 0, NULL, NULL, 3831, 1, 2, false, '2021-04-10 03:50:33+07');
INSERT INTO public.issues VALUES (3832, 2, 42, 'Điều 13 - PL số 5 (Nhập liệu)', '', '2021-03-18', NULL, 5, 13, 2, 103, 40, 5, '2021-03-12 01:26:05+07', '2021-04-06 10:19:22+07', '2021-03-18', 100, NULL, NULL, 3832, 1, 2, false, '2021-04-06 10:19:22+07');
INSERT INTO public.issues VALUES (3833, 2, 42, 'Điều 13 - PL số 5 (PDF)', '', '2021-03-18', NULL, 5, 41, 2, 102, 40, 5, '2021-03-12 01:26:25+07', '2021-03-31 16:14:04+07', '2021-03-18', 100, NULL, NULL, 3833, 1, 2, false, '2021-03-31 16:14:04+07');
INSERT INTO public.issues VALUES (3834, 2, 42, 'Điều 13 - PL số 6 (Nhập liệu)', '', '2021-03-29', NULL, 5, 13, 2, 105, 40, 5, '2021-03-12 01:26:51+07', '2021-04-10 03:50:33+07', '2021-03-29', 0, NULL, NULL, 3834, 1, 2, false, '2021-04-10 03:50:33+07');
INSERT INTO public.issues VALUES (3835, 2, 42, 'Điều 13 - PL số 6 (PDF)', '', '2021-03-18', NULL, 5, 41, 2, 102, 40, 5, '2021-03-12 01:27:09+07', '2021-03-31 16:14:04+07', '2021-03-18', 100, NULL, NULL, 3835, 1, 2, false, '2021-03-31 16:14:04+07');
INSERT INTO public.issues VALUES (3836, 2, 42, 'Điều 20 - Phụ lục 1C (Nhập liệu)', '', '2021-03-16', NULL, 5, 10, 2, 102, 40, 4, '2021-03-12 01:28:39+07', '2021-03-27 07:27:28+07', '2021-03-16', 100, NULL, NULL, 3836, 1, 2, false, '2021-03-27 07:27:28+07');
INSERT INTO public.issues VALUES (3837, 2, 42, 'Điều 20 - Phụ lục 1C (PDF)', '', '2021-03-22', NULL, 5, 38, 2, 103, 40, 4, '2021-03-12 01:29:50+07', '2021-03-27 07:27:29+07', '2021-03-22', 100, NULL, NULL, 3837, 1, 2, false, '2021-03-27 07:27:29+07');
INSERT INTO public.issues VALUES (3838, 2, 42, 'Điều 20 - Phụ lục III (Nhập liệu)', '', '2021-03-15', NULL, 5, 10, 2, 102, 40, 5, '2021-03-12 01:30:22+07', '2021-03-27 07:27:29+07', '2021-03-15', 100, NULL, NULL, 3838, 1, 2, false, '2021-03-27 07:27:29+07');
INSERT INTO public.issues VALUES (3839, 2, 42, 'Điều 20 - Phụ lục III (PDF)', '', '2021-03-22', NULL, 5, 38, 2, 103, 40, 3, '2021-03-12 01:30:41+07', '2021-03-27 07:27:29+07', '2021-03-22', 100, NULL, NULL, 3839, 1, 2, false, '2021-03-27 07:27:29+07');
INSERT INTO public.issues VALUES (3840, 2, 42, 'Điều 21 - Biểu số 02.A (Nhập liệu)', '', '2021-03-22', NULL, 5, 10, 2, 103, 40, 5, '2021-03-12 01:31:45+07', '2021-03-27 07:27:29+07', '2021-03-22', 100, NULL, NULL, 3840, 1, 2, false, '2021-03-27 07:27:29+07');
INSERT INTO public.issues VALUES (3841, 2, 42, 'Điều 21 - Biểu số 02.A (PDF)', '', '2021-03-22', NULL, 5, 38, 2, 103, 40, 4, '2021-03-12 01:33:11+07', '2021-03-27 07:27:29+07', '2021-03-22', 100, NULL, NULL, 3841, 1, 2, false, '2021-03-27 07:27:29+07');
INSERT INTO public.issues VALUES (3842, 2, 42, 'Điều 21 - Biểu số 02.B (Nhập liệu)', '', '2021-03-22', NULL, 5, 10, 2, 103, 40, 5, '2021-03-12 01:33:43+07', '2021-03-27 07:27:29+07', '2021-03-22', 100, NULL, NULL, 3842, 1, 2, false, '2021-03-27 07:27:29+07');
INSERT INTO public.issues VALUES (3843, 2, 42, 'Điều 21 - Biểu số 02.B (PDF)', '', '2021-03-22', NULL, 5, 38, 2, 103, 40, 4, '2021-03-12 01:33:54+07', '2021-03-27 07:27:29+07', '2021-03-22', 100, NULL, NULL, 3843, 1, 2, false, '2021-03-27 07:27:29+07');
INSERT INTO public.issues VALUES (3844, 2, 42, 'Điều 21 - Biểu số 02.C (Nhập liệu)', '', '2021-03-22', NULL, 5, 10, 2, 103, 40, 4, '2021-03-12 01:34:16+07', '2021-03-27 07:27:30+07', '2021-03-22', 100, NULL, NULL, 3844, 1, 2, false, '2021-03-27 07:27:30+07');
INSERT INTO public.issues VALUES (3845, 2, 42, 'Điều 21 - Biểu số 02.C (PDF)', '', '2021-03-22', NULL, 5, 38, 2, 103, 40, 4, '2021-03-12 01:34:31+07', '2021-03-27 07:27:30+07', '2021-03-22', 100, NULL, NULL, 3845, 1, 2, false, '2021-03-27 07:27:30+07');
INSERT INTO public.issues VALUES (3846, 2, 42, 'Điều 21 - Biểu số 02.D (Nhập liệu)', '', '2021-03-22', NULL, 5, 10, 2, 103, 40, 5, '2021-03-12 01:34:45+07', '2021-03-27 07:27:30+07', '2021-03-22', 100, NULL, NULL, 3846, 1, 2, false, '2021-03-27 07:27:30+07');
INSERT INTO public.issues VALUES (3847, 2, 42, 'Điều 21 - Biểu số 02.D (PDF)', '', '2021-03-22', NULL, 5, 38, 2, 103, 40, 4, '2021-03-12 01:34:57+07', '2021-03-27 07:27:30+07', '2021-03-22', 100, NULL, NULL, 3847, 1, 2, false, '2021-03-27 07:27:30+07');
INSERT INTO public.issues VALUES (3848, 2, 42, 'Điều 21 - Biểu số 02.Đ (Nhập liệu)', '', '2021-03-22', NULL, 5, 10, 2, 103, 40, 4, '2021-03-12 01:35:13+07', '2021-03-27 07:27:30+07', '2021-03-22', 100, NULL, NULL, 3848, 1, 2, false, '2021-03-27 07:27:30+07');
INSERT INTO public.issues VALUES (3849, 2, 42, 'Điều 21 - Biểu số 02.Đ (PDF)', '', '2021-03-22', NULL, 5, 38, 2, 103, 40, 4, '2021-03-12 01:35:27+07', '2021-03-27 07:27:30+07', '2021-03-22', 100, NULL, NULL, 3849, 1, 2, false, '2021-03-27 07:27:30+07');
INSERT INTO public.issues VALUES (3850, 2, 42, 'Điều 21 - Biểu số 04.A (Nhập liệu)', '', '2021-03-22', NULL, 5, 10, 2, 103, 40, 4, '2021-03-12 01:35:48+07', '2021-03-27 07:27:30+07', '2021-03-22', 100, NULL, NULL, 3850, 1, 2, false, '2021-03-27 07:27:30+07');
INSERT INTO public.issues VALUES (3851, 2, 42, 'Điều 21 - Biểu số 04.A (PDF)', '', '2021-03-22', NULL, 5, 38, 2, 103, 40, 4, '2021-03-12 01:36:02+07', '2021-03-27 07:27:30+07', '2021-03-22', 100, NULL, NULL, 3851, 1, 2, false, '2021-03-27 07:27:30+07');
INSERT INTO public.issues VALUES (3852, 2, 42, 'Điều 21 - Biểu số 04.B (Nhập liệu)', '', '2021-03-22', NULL, 5, 10, 2, 103, 40, 4, '2021-03-12 01:36:20+07', '2021-03-27 07:27:30+07', '2021-03-22', 100, NULL, NULL, 3852, 1, 2, false, '2021-03-27 07:27:30+07');
INSERT INTO public.issues VALUES (3853, 2, 42, 'Điều 21 - Biểu số 04.B (PDF)', '', '2021-03-22', NULL, 5, 38, 2, 103, 40, 4, '2021-03-12 01:36:33+07', '2021-03-27 07:27:30+07', '2021-03-22', 100, NULL, NULL, 3853, 1, 2, false, '2021-03-27 07:27:30+07');
INSERT INTO public.issues VALUES (3854, 2, 42, 'Điều 21 - Biểu số 03 - TT 200/2015/TT-BTC (Nhập liệu)', '', '2021-03-22', NULL, 5, 10, 2, 103, 40, 4, '2021-03-12 01:37:13+07', '2021-03-27 17:06:26+07', '2021-03-22', 100, NULL, NULL, 3854, 1, 2, false, '2021-03-27 17:06:26+07');
INSERT INTO public.issues VALUES (3855, 2, 42, 'Điều 21 - Biểu số 03 - TT 200/2015/TT-BTC (PDF)', '', '2021-03-22', NULL, 5, 38, 2, 103, 40, 4, '2021-03-12 01:37:26+07', '2021-03-27 17:06:26+07', '2021-03-22', 100, NULL, NULL, 3855, 1, 2, false, '2021-03-27 17:06:26+07');
INSERT INTO public.issues VALUES (3856, 2, 42, 'Điều 21 - Biểu số 02 - TT 3872/QĐP-UBND (Nhập liệu)', '', '2021-03-22', NULL, 5, 10, 2, 103, 40, 4, '2021-03-12 01:38:05+07', '2021-03-27 17:06:26+07', '2021-03-22', 100, NULL, NULL, 3856, 1, 2, false, '2021-03-27 17:06:26+07');
INSERT INTO public.issues VALUES (3857, 2, 42, 'Điều 21 - Biểu số 02 - TT 3872/QĐP-UBND (PDF)', '', '2021-03-22', NULL, 5, 38, 2, 103, 40, 5, '2021-03-12 01:38:21+07', '2021-03-27 17:06:26+07', '2021-03-22', 100, NULL, NULL, 3857, 1, 2, false, '2021-03-27 17:06:26+07');
INSERT INTO public.issues VALUES (3858, 2, 42, 'Điều 21 - Biểu số 03 - TT 3872/QĐP-UBND (Nhập liệu)', '', '2021-03-22', NULL, 5, 10, 2, 103, 40, 4, '2021-03-12 01:38:40+07', '2021-03-27 17:06:27+07', '2021-03-22', 100, NULL, NULL, 3858, 1, 2, false, '2021-03-27 17:06:27+07');
INSERT INTO public.issues VALUES (3859, 2, 42, 'Điều 21 - Biểu số 03 - TT 3872/QĐP-UBND (PDF)', '', '2021-03-22', NULL, 5, 38, 2, 103, 40, 5, '2021-03-12 01:39:26+07', '2021-03-27 17:06:27+07', '2021-03-22', 100, NULL, NULL, 3859, 1, 2, false, '2021-03-27 17:06:27+07');
INSERT INTO public.issues VALUES (3860, 2, 42, 'Điều 21 - Biểu số 04 - TT 3872/QĐ-UBND (Nhập liệu)', '', '2021-03-22', NULL, 5, 10, 2, 103, 40, 4, '2021-03-12 01:40:01+07', '2021-03-27 17:06:27+07', '2021-03-22', 100, NULL, NULL, 3860, 1, 2, false, '2021-03-27 17:06:27+07');
INSERT INTO public.issues VALUES (3861, 2, 42, 'Điều 21 - Biểu số 04 - TT 3872/QĐ-UBND (PDF)', '', '2021-03-22', NULL, 5, 38, 2, 103, 40, 5, '2021-03-12 01:40:25+07', '2021-03-27 17:06:27+07', '2021-03-22', 100, NULL, NULL, 3861, 1, 2, false, '2021-03-27 17:06:27+07');
INSERT INTO public.issues VALUES (3862, 1, 42, 'Điều 9 - mẫu 1.02 - chưa tính tổng cộng', 'Tài khoản chủ đầu tư: 3302, 1000
sở tài chính: 2458
UBND tỉnh: 2850
chỉ tính tổng cho cột quy VND', NULL, NULL, 5, 38, 2, 103, 40, 7, '2021-03-12 02:21:47+07', '2021-05-19 08:59:04+07', '2021-03-22', 100, NULL, NULL, 3862, 1, 4, false, '2021-05-19 08:59:04+07');
INSERT INTO public.issues VALUES (3863, 1, 42, 'Điều 9 - mẫu 1.03 - Chưa xem được PDF', '', '2021-03-15', NULL, 5, 38, 2, 102, 40, 4, '2021-03-12 02:22:42+07', '2021-03-26 00:44:28+07', '2021-03-15', 100, NULL, NULL, 3863, 1, 2, false, '2021-03-26 00:44:28+07');
INSERT INTO public.issues VALUES (3864, 1, 42, 'Điều 16 - Mẫu số 12/QTDA - Tổng dự án là 1 không được để 0', '', '2021-03-15', NULL, 5, 41, 2, 102, 40, 4, '2021-03-12 06:43:46+07', '2021-03-26 00:44:28+07', '2021-03-15', 100, NULL, NULL, 3864, 1, 2, false, '2021-03-26 00:44:28+07');
INSERT INTO public.issues VALUES (3865, 1, 42, 'Điều 16 - Mẫu đề cương - Sai tên đơn vị gửi báo cáo ở file PDF', '- Hiện tại đang lấy đơn vị nhận báo cáo', '2021-03-15', NULL, 5, 41, 2, 102, 40, 4, '2021-03-12 06:50:17+07', '2021-03-26 00:44:28+07', '2021-03-15', 100, NULL, NULL, 3865, 1, 2, false, '2021-03-26 00:44:28+07');
INSERT INTO public.issues VALUES (3866, 1, 42, 'Điều 19 - Là dữ liệu công khai của điều 18', '', '2021-03-15', NULL, 5, 38, 2, 103, 40, 5, '2021-03-12 06:52:51+07', '2021-03-27 07:27:31+07', '2021-03-15', 100, NULL, NULL, 3866, 1, 2, false, '2021-03-27 07:27:31+07');
INSERT INTO public.issues VALUES (3867, 1, 42, 'Điều 9 - Mẫu 1.01 - Tổng quy có thê, sửa, xóa', '', '2021-03-15', NULL, 5, 38, 2, 103, 40, 5, '2021-03-12 06:54:52+07', '2021-03-31 14:23:22+07', '2021-03-15', 100, NULL, NULL, 3867, 1, 2, false, '2021-03-31 14:23:22+07');
INSERT INTO public.issues VALUES (3868, 2, 59, 'Cập nhật chức năng quản lý vật liệu - cửa hàng', '', '2021-03-11', NULL, 3, 15, 2, 101, 15, 2, '2021-03-15 01:15:06+07', '2021-03-15 01:15:36+07', '2021-03-10', 100, NULL, NULL, 3868, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3869, 2, 59, 'Dự án vật liệu', '', '2021-03-15', NULL, 3, 8, 2, 101, 8, 1, '2021-03-15 01:23:02+07', '2021-03-15 01:23:15+07', '2021-03-15', 100, NULL, NULL, 3869, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3870, 2, 59, 'Báo cáo chi tiết công nợ (hiển thị trên giao diện)', '', '2021-03-15', NULL, 3, 8, 2, 101, 8, 2, '2021-03-15 01:24:04+07', '2021-03-15 01:24:46+07', '2021-03-15', 100, NULL, NULL, 3870, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3871, 2, 59, 'Báo cáo chi tiết công nợ ( xuất excel )', '', '2021-03-15', NULL, 3, 8, 2, 101, 8, 2, '2021-03-15 01:24:32+07', '2021-03-29 14:27:01+07', '2021-03-15', 100, NULL, NULL, 3871, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3872, 2, 59, 'Xuất bảng lương đội thuê ngoài', '', '2021-03-12', NULL, 3, 12, 2, 101, 12, 1, '2021-03-15 01:28:15+07', '2021-03-15 01:28:29+07', '2021-03-12', 100, NULL, NULL, 3872, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3873, 1, 42, 'Thêm danh mục phân nhóm cho đơn vị', '', '2021-03-15', NULL, 5, 38, 2, 102, 40, 3, '2021-03-15 02:14:45+07', '2021-03-17 11:14:47+07', '2021-03-15', 100, NULL, NULL, 3873, 1, 2, false, '2021-03-17 11:14:47+07');
INSERT INTO public.issues VALUES (3874, 1, 42, 'Không thêm được đơn vị vào cơ quan thực hiện (cụ thể là sở y tế điều 15)', '', '2021-03-15', NULL, 5, 38, 2, 102, 40, 2, '2021-03-15 02:43:42+07', '2021-03-17 11:14:28+07', '2021-03-15', 100, NULL, NULL, 3874, 1, 2, false, '2021-03-17 11:14:28+07');
INSERT INTO public.issues VALUES (3875, 1, 42, 'Điều 15 - Chi tiết quy trình -  Sở GD&ĐT đã thêm đơn vị nhưng không nhận', '', '2021-03-16', NULL, 5, 38, 2, 102, 40, 2, '2021-03-16 03:15:35+07', '2021-03-31 16:14:04+07', '2021-03-16', 100, NULL, NULL, 3875, 1, 2, false, '2021-03-31 16:14:04+07');
INSERT INTO public.issues VALUES (3876, 1, 42, 'Điều 10 - Mẫu 01/188 - Chưa làm', '', '2021-03-16', NULL, 5, 39, 2, 102, 40, 2, '2021-03-16 03:55:50+07', '2021-03-25 01:12:25+07', '2021-03-16', 0, NULL, NULL, 3876, 1, 2, false, '2021-03-25 01:12:25+07');
INSERT INTO public.issues VALUES (3877, 2, 42, 'Điều 10 - Mẫu 01 -TT 188/2014/TT-BTC (PDF)', '', '2021-03-29', NULL, 5, 38, 2, 132, 40, 6, '2021-03-16 03:56:55+07', '2021-05-19 09:02:22+07', '2021-03-29', 100, NULL, NULL, 3877, 1, 2, false, '2021-05-19 09:02:22+07');
INSERT INTO public.issues VALUES (3878, 1, 42, 'Điều 10 - Mẫu 04/188 - Không xem được PDF', '', '2021-03-16', NULL, 5, 38, 2, 102, 40, 3, '2021-03-16 03:57:38+07', '2021-03-25 01:12:04+07', '2021-03-16', 100, NULL, NULL, 3878, 1, 2, false, '2021-03-25 01:12:04+07');
INSERT INTO public.issues VALUES (3879, 1, 42, 'Điều 10 - Thêm điểm tối đa cho các mục A, B, C, tổng cộng', '', '2021-03-16', NULL, 5, 39, 2, 102, 40, 3, '2021-03-16 03:58:22+07', '2021-03-25 01:12:04+07', '2021-03-16', 100, NULL, NULL, 3879, 1, 2, false, '2021-03-25 01:12:04+07');
INSERT INTO public.issues VALUES (3880, 1, 42, 'Điều 10 - Mẫu 01- A - Không xóa được danh mục nội dung test (aaa)', '', '2021-03-16', NULL, 5, 38, 2, 102, 40, 3, '2021-03-16 03:59:07+07', '2021-03-25 01:12:05+07', '2021-03-16', 100, NULL, NULL, 3880, 1, 2, false, '2021-03-25 01:12:05+07');
INSERT INTO public.issues VALUES (3881, 1, 42, 'Điều 10 - 01-B - Sai điểm tổng tự đánh giá mục A-I', '', '2021-03-16', NULL, 5, 38, 2, 102, 40, 2, '2021-03-16 04:00:19+07', '2021-03-25 01:12:05+07', '2021-03-16', 100, NULL, NULL, 3881, 1, 2, false, '2021-03-25 01:12:05+07');
INSERT INTO public.issues VALUES (3882, 1, 42, 'Điều 10 - 01-A và 01-B - Mục C không nhập được giá trị -5', '', '2021-03-16', NULL, 5, 39, 2, 102, 40, 3, '2021-03-16 04:01:05+07', '2021-03-25 01:12:05+07', '2021-03-16', 100, NULL, NULL, 3882, 1, 2, false, '2021-03-25 01:12:05+07');
INSERT INTO public.issues VALUES (3883, 1, 42, 'Điều 10 - 04/129 - Tổng A+B+C không có D', '', '2021-03-16', NULL, 5, 38, 2, 102, 40, 3, '2021-03-16 04:01:24+07', '2021-03-25 01:12:05+07', '2021-03-16', 100, NULL, NULL, 3883, 1, 2, false, '2021-03-25 01:12:05+07');
INSERT INTO public.issues VALUES (3884, 1, 42, 'Điều 10 - 06/129 - Tổng A+B+C+D+E Thiếu D+E', '', '2021-03-16', NULL, 5, 38, 2, 102, 40, 2, '2021-03-16 04:02:29+07', '2021-03-17 11:15:50+07', '2021-03-16', 100, NULL, NULL, 3884, 1, 2, false, '2021-03-17 11:15:50+07');
INSERT INTO public.issues VALUES (3885, 2, 42, 'Điều 22 - Biểu số 05A (Nhập liệu)', '', '2021-03-19', NULL, 5, 17, 2, 103, 40, 4, '2021-03-17 11:05:45+07', '2021-03-27 17:06:27+07', '2021-03-18', 100, NULL, NULL, 3885, 1, 2, false, '2021-03-27 17:06:27+07');
INSERT INTO public.issues VALUES (3886, 2, 42, 'Điều 22 - Biểu số 05A (PDF)', '', '2021-03-22', NULL, 5, 38, 2, 103, 40, 4, '2021-03-17 11:06:44+07', '2021-03-27 17:06:27+07', '2021-03-22', 100, NULL, NULL, 3886, 1, 2, false, '2021-03-27 17:06:27+07');
INSERT INTO public.issues VALUES (3887, 2, 42, 'Điều 22 - Biểu số 05B (Nhập liệu)', '', '2021-03-19', NULL, 5, 17, 2, 103, 40, 4, '2021-03-17 11:08:27+07', '2021-03-27 17:06:27+07', '2021-03-18', 100, NULL, NULL, 3887, 1, 2, false, '2021-03-27 17:06:27+07');
INSERT INTO public.issues VALUES (3888, 2, 42, 'Điều 22 - Biểu số 05B (PDF)', '', '2021-03-22', NULL, 5, 38, 2, 103, 40, 4, '2021-03-17 11:08:47+07', '2021-03-27 17:06:27+07', '2021-03-22', 100, NULL, NULL, 3888, 1, 2, false, '2021-03-27 17:06:27+07');
INSERT INTO public.issues VALUES (3893, 5, 67, 'Chỉnh lý hồ sơ Phòng Quản lý Công nghiệp', '', '2021-03-19', NULL, 1, NULL, 2, NULL, 23, 0, '2021-03-17 11:10:31+07', '2021-03-17 11:10:31+07', '2021-03-16', 0, NULL, NULL, 3893, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3896, 5, 67, 'Set up thiết bị ', '', '2021-03-18', NULL, 1, NULL, 2, NULL, 23, 0, '2021-03-17 11:11:20+07', '2021-03-17 11:11:20+07', '2021-03-15', 0, NULL, NULL, 3896, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3897, 2, 42, 'Điều 24 - Biểu số 01A (Nhập liệu)', '', '2021-03-29', NULL, 5, 8, 2, 105, 40, 4, '2021-03-17 11:11:32+07', '2021-03-31 16:44:09+07', '2021-03-29', 0, NULL, NULL, 3897, 1, 2, false, '2021-03-31 16:44:09+07');
INSERT INTO public.issues VALUES (3898, 2, 42, 'Điều 24 - Biểu số 01A (PDF)', '', '2021-03-22', NULL, 5, 38, 2, 103, 40, 4, '2021-03-17 11:11:47+07', '2021-03-31 16:44:09+07', '2021-03-22', 100, NULL, NULL, 3898, 1, 2, false, '2021-03-31 16:44:09+07');
INSERT INTO public.issues VALUES (3899, 2, 42, 'Điều 24 - Biểu số 01B (Nhập liệu)', '', '2021-03-29', NULL, 5, 8, 2, 105, 40, 6, '2021-03-17 11:12:02+07', '2021-03-31 16:44:09+07', '2021-03-29', 0, NULL, NULL, 3899, 1, 2, false, '2021-03-31 16:44:09+07');
INSERT INTO public.issues VALUES (3900, 2, 42, 'Điều 24 - Biểu số 01B (PDF)', '', '2021-03-22', NULL, 5, 38, 2, 103, 40, 4, '2021-03-17 11:12:16+07', '2021-03-31 16:44:09+07', '2021-03-22', 100, NULL, NULL, 3900, 1, 2, false, '2021-03-31 16:44:09+07');
INSERT INTO public.issues VALUES (3901, 2, 42, 'Điều 24 - Biểu số 01C (Nhập liệu)', '', '2021-03-29', NULL, 5, 8, 2, 105, 40, 4, '2021-03-17 11:12:30+07', '2021-03-31 16:44:09+07', '2021-03-29', 0, NULL, NULL, 3901, 1, 2, false, '2021-03-31 16:44:09+07');
INSERT INTO public.issues VALUES (3902, 2, 42, 'Điều 24 - Biểu số 01C (PDF)', '', '2021-03-22', NULL, 5, 38, 2, 103, 40, 4, '2021-03-17 11:12:47+07', '2021-03-31 16:44:10+07', '2021-03-22', 100, NULL, NULL, 3902, 1, 2, false, '2021-03-31 16:44:10+07');
INSERT INTO public.issues VALUES (3903, 2, 42, 'Điều 24 - Biểu số 01D (Nhập liệu)', '', '2021-03-29', NULL, 5, 8, 2, 105, 40, 4, '2021-03-17 11:13:04+07', '2021-03-31 16:44:10+07', '2021-03-29', 0, NULL, NULL, 3903, 1, 2, false, '2021-03-31 16:44:10+07');
INSERT INTO public.issues VALUES (3904, 2, 42, 'Điều 24 - Biểu số 01D (PDF)', '', '2021-03-22', NULL, 5, 38, 2, 103, 40, 4, '2021-03-17 11:13:23+07', '2021-03-31 16:44:10+07', '2021-03-22', 100, NULL, NULL, 3904, 1, 2, false, '2021-03-31 16:44:10+07');
INSERT INTO public.issues VALUES (3905, 2, 42, 'Điều 25 - Mẫu số 4 (Nhập liệu)', '', '2021-03-22', NULL, 5, 39, 2, 103, 40, 6, '2021-03-17 11:13:56+07', '2021-03-31 16:44:10+07', '2021-03-22', 100, NULL, NULL, 3905, 1, 2, false, '2021-03-31 16:44:10+07');
INSERT INTO public.issues VALUES (3906, 2, 42, 'Điều 25 - Mẫu số 4 (PDF)', '', '2021-03-29', NULL, 5, 38, 2, 105, 40, 5, '2021-03-17 11:14:11+07', '2021-04-10 03:50:33+07', '2021-03-29', 100, NULL, NULL, 3906, 1, 2, false, '2021-04-10 03:50:33+07');
INSERT INTO public.issues VALUES (3907, 1, 42, 'Điều 9 - mẫu 1.01 -  Sai số tổng quy', '', '2021-03-17', NULL, 5, 38, 2, 102, 40, 3, '2021-03-17 13:44:51+07', '2021-03-25 01:12:05+07', '2021-03-17', 100, NULL, NULL, 3907, 1, 2, false, '2021-03-25 01:12:05+07');
INSERT INTO public.issues VALUES (3908, 1, 42, 'Điều 9 - Mẫu 1.02 - Không hiển thị con số ở cột dư nợ cuối kỳ quy VND', '', '2021-03-17', NULL, 5, 38, 2, 102, 40, 2, '2021-03-17 13:56:07+07', '2021-03-25 01:12:05+07', '2021-03-17', 100, NULL, NULL, 3908, 1, 2, false, '2021-03-25 01:12:05+07');
INSERT INTO public.issues VALUES (3909, 1, 42, 'Điều 16 - Sai công thức ở bảng 1 và 2.1', '', '2021-03-17', NULL, 5, 13, 2, 103, 40, 3, '2021-03-17 15:08:52+07', '2021-03-27 07:27:31+07', '2021-03-17', 100, NULL, NULL, 3909, 1, 2, false, '2021-03-27 07:27:31+07');
INSERT INTO public.issues VALUES (3910, 1, 42, 'Điều 16 - Không đổ dữ liệu từ bảng lên văn bản ngay mà phải thoát ra --> vào lại', '', '2021-03-17', NULL, 5, 13, 2, 103, 40, 3, '2021-03-17 15:10:22+07', '2021-03-27 07:27:31+07', '2021-03-17', 100, NULL, NULL, 3910, 1, 2, false, '2021-03-27 07:27:31+07');
INSERT INTO public.issues VALUES (3911, 1, 42, 'Điều 16 - Ở bảng 2.1 - chỉ nhập dữ liệu cho nhóm A nhưng tính tổng cho cả A, B, C, QTQG', '', '2021-03-17', NULL, 5, 41, 2, 102, 40, 2, '2021-03-17 15:14:47+07', '2021-03-26 00:44:28+07', '2021-03-17', 100, NULL, NULL, 3911, 1, 2, false, '2021-03-26 00:44:28+07');
INSERT INTO public.issues VALUES (3912, 1, 42, 'Điều 16 - Dữ liệu ở mục 3.1 trong văn bảng sai so với bảng 2.1', '', '2021-05-24', NULL, 5, 41, 2, 133, 40, 10, '2021-03-17 15:16:58+07', '2021-05-31 17:00:40+07', '2021-05-24', 100, NULL, NULL, 3912, 1, 2, false, '2021-05-31 17:00:40+07');
INSERT INTO public.issues VALUES (3913, 1, 42, 'Điều 16 - Bảng 2.2 - Không hiển thị số dự án ở mục Dự án quá thời hạn trên 24 tháng , dưới 24 tháng', '', '2021-03-17', NULL, 5, 13, 2, 103, 40, 3, '2021-03-17 15:18:43+07', '2021-03-31 16:42:24+07', '2021-03-17', 100, NULL, NULL, 3913, 1, 2, false, '2021-03-31 16:42:24+07');
INSERT INTO public.issues VALUES (3914, 1, 42, 'Điều 12 mẫu 07 - Không lưu được dữ liệu', '', '2021-03-19', NULL, 5, 38, 2, 103, 40, 11, '2021-03-19 10:32:55+07', '2021-05-19 08:59:11+07', '2021-03-19', 100, NULL, NULL, 3914, 1, 2, false, '2021-05-19 08:59:11+07');
INSERT INTO public.issues VALUES (3915, 1, 42, 'Điều 12- Các ô nhập dữ liệu bị giới hạn ký tự', '', '2021-03-19', NULL, 5, 39, 2, 103, 40, 5, '2021-03-19 10:33:19+07', '2021-04-12 08:57:47+07', '2021-03-19', 100, NULL, NULL, 3915, 1, 2, false, '2021-04-12 08:57:47+07');
INSERT INTO public.issues VALUES (3916, 1, 42, 'Điều 12 - Khi nhập giá trị cho ô có đơn vị % thì không lưu được', '', '2021-03-19', NULL, 5, 39, 2, 103, 40, 5, '2021-03-19 10:34:24+07', '2021-04-12 08:57:47+07', '2021-03-19', 100, NULL, NULL, 3916, 1, 2, false, '2021-04-12 08:57:47+07');
INSERT INTO public.issues VALUES (3917, 1, 42, 'Điều 12 - PDF thiếu dữ liệu của mục 2.a, 2.b', '', '2021-05-24', NULL, 5, 38, 2, 133, 40, 10, '2021-03-19 10:35:00+07', '2021-05-31 17:00:40+07', '2021-05-24', 100, NULL, NULL, 3917, 1, 2, false, '2021-05-31 17:00:40+07');
INSERT INTO public.issues VALUES (3918, 1, 42, 'Điều 12 - mục 2.b - Các khoản chi khác cho phép nhập', '', '2021-03-19', NULL, 5, 39, 2, 103, 40, 4, '2021-03-19 10:38:40+07', '2021-04-12 08:57:47+07', '2021-03-19', 100, NULL, NULL, 3918, 1, 2, false, '2021-04-12 08:57:47+07');
INSERT INTO public.issues VALUES (3919, 3, 42, 'Không có danh mục nguyên tệ.', 'Báo cáo không quy định rõ nguyên tệ quy đổi nên không thể tính được tổng, nhờ Tester hỏi rõ lại yêu cầu.', NULL, NULL, 5, 40, 2, NULL, 38, 2, '2021-03-22 08:55:20+07', '2021-05-19 08:58:58+07', '2021-03-22', 0, NULL, 3862, 3862, 2, 3, false, '2021-05-19 08:58:58+07');
INSERT INTO public.issues VALUES (3920, 5, 67, 'Scan tài liệu Phòng Quản lý công nghiệp', '', NULL, NULL, 1, 23, 2, NULL, 23, 1, '2021-03-22 13:40:59+07', '2021-03-22 13:44:28+07', '2021-03-22', 0, NULL, NULL, 3920, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3922, 5, 67, 'Chỉnh lý tài liệu Phòng quản lý công nghiệp', '', NULL, NULL, 1, NULL, 2, NULL, 23, 0, '2021-03-22 13:42:33+07', '2021-03-22 13:42:33+07', '2021-03-22', 0, NULL, NULL, 3922, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3923, 2, 42, 'Điều 15 - Phụ luc 1 (PDF)', '', '2021-03-27', NULL, 5, 38, 2, 103, 38, 4, '2021-03-23 03:16:19+07', '2021-04-10 03:50:33+07', '2021-03-23', 100, NULL, NULL, 3923, 1, 2, false, '2021-04-10 03:50:33+07');
INSERT INTO public.issues VALUES (3924, 1, 42, 'Điều 9 - phụ lục số 02 - chưa gộp được hàng ghi chú', '', '2021-03-23', NULL, 5, NULL, 2, 75, 40, 1, '2021-03-23 06:43:21+07', '2021-03-23 15:39:59+07', '2021-03-23', 0, NULL, NULL, 3924, 1, 2, false, '2021-03-23 15:39:59+07');
INSERT INTO public.issues VALUES (3925, 1, 42, 'Điều 18 - Điều 9 - Fix xem PDF', '', '2021-03-23', NULL, 5, 38, 2, 103, 40, 4, '2021-03-23 15:40:56+07', '2021-04-06 02:03:33+07', '2021-03-23', 100, NULL, NULL, 3925, 1, 2, false, '2021-04-06 02:03:33+07');
INSERT INTO public.issues VALUES (3926, 1, 42, 'Điều 9 - Mẫu 1.01 - không sửa được dữ liệu', '', '2021-03-24', NULL, 5, 39, 2, 103, 40, 1, '2021-03-24 02:42:35+07', '2021-03-25 01:12:05+07', '2021-03-24', 0, NULL, NULL, 3926, 1, 2, false, '2021-03-25 01:12:05+07');
INSERT INTO public.issues VALUES (3927, 5, 61, '21 Hiện trạng SDD 2010 Quận Ô Môn', 'Xử lý bản đồ', '2021-03-27', NULL, 1, 33, 2, NULL, 33, 2, '2021-03-24 14:42:27+07', '2021-03-29 15:59:08+07', '2021-03-24', 100, NULL, NULL, 3927, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (3928, 5, 61, 'Nhập liệu', '', '2021-03-27', NULL, 1, 29, 2, NULL, 33, 1, '2021-03-24 14:43:45+07', '2021-03-29 15:59:08+07', '2021-03-24', 100, NULL, 3927, 3927, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3929, 5, 61, '22 Hiện trạng SDD 2010 Quận Bình Thủy', 'Xử lý bản đồ và nhập liệu', '2021-03-29', NULL, 1, 43, 2, NULL, 33, 1, '2021-03-24 14:44:56+07', '2021-03-27 08:21:41+07', '2021-03-24', 100, NULL, NULL, 3929, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3930, 5, 61, '23 Hiện trạng SDD 2010 Quận Cái Răng', 'Xử lý bản đồ và nhập liệu', '2021-03-29', NULL, 1, 44, 2, NULL, 33, 1, '2021-03-24 14:46:29+07', '2021-03-27 08:21:46+07', '2021-03-24', 100, NULL, NULL, 3930, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3931, 5, 61, '26 Hiện trạng SDD 2010 Huyện Cờ Đỏ', 'Xử lý bản đồ và nhập liệu', '2021-03-29', NULL, 1, 32, 2, NULL, 33, 1, '2021-03-24 14:47:12+07', '2021-03-29 04:04:39+07', '2021-03-24', 100, NULL, NULL, 3931, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3932, 5, 61, '24 Hiện trạng SDD 2010 Quận Thốt Nốt', 'Xử lý bản đồ', '2021-03-31', NULL, 1, 33, 2, NULL, 33, 2, '2021-03-24 14:48:26+07', '2021-04-12 08:29:55+07', '2021-03-25', 100, NULL, NULL, 3932, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (3933, 5, 61, 'Nhập liệu', '', '2021-03-31', NULL, 1, 24, 2, NULL, 33, 1, '2021-03-24 16:38:24+07', '2021-04-12 08:29:55+07', '2021-03-25', 100, NULL, 3932, 3932, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3934, 2, 42, 'Điều 10 - Mẫu 01 -TT 188/2014/TT-BTC (PDF)', '', '2021-03-25', NULL, 5, 38, 2, 103, 40, 1, '2021-03-25 01:12:55+07', '2021-03-25 01:58:19+07', '2021-03-25', 0, NULL, NULL, 3934, 1, 2, false, '2021-03-25 01:58:19+07');
INSERT INTO public.issues VALUES (3935, 2, 42, 'Điều 15 - Phụ luc 1 (Nhập liệu)', '', '2021-03-25', NULL, 5, 39, 2, 103, 39, 2, '2021-03-25 01:21:23+07', '2021-04-10 03:50:33+07', '2021-03-24', 100, NULL, NULL, 3935, 1, 2, false, '2021-04-10 03:50:33+07');
INSERT INTO public.issues VALUES (3936, 1, 42, 'Điều 9 mẫu 1.3 - giới hạn chỉ được nhập tối đa 5 số cho tổng mức đầu tư, tổng số vốn vay và tỉ lệ vay lại', '', '2021-03-25', NULL, 5, 39, 2, 103, 40, 3, '2021-03-25 01:22:01+07', '2021-03-31 14:23:56+07', '2021-03-25', 100, NULL, NULL, 3936, 1, 2, false, '2021-03-31 14:23:56+07');
INSERT INTO public.issues VALUES (3937, 1, 42, 'Điều 10 mẫu 02/188 - Không hiển thị danh mục nội dung khác trong bảng (đã có trong thêm mới danh mục nội dung)', '', '2021-03-25', NULL, 5, 38, 2, 103, 40, 2, '2021-03-25 01:26:58+07', '2021-03-26 00:44:29+07', '2021-03-25', 100, NULL, NULL, 3937, 1, 2, false, '2021-03-26 00:44:29+07');
INSERT INTO public.issues VALUES (3938, 1, 42, 'Điều 10 mẫu 01-A - Không nhập được điểm tự đánh giá bé hơn điểm tối đa', '', '2021-03-25', NULL, 5, 39, 2, 103, 40, 1, '2021-03-25 01:41:55+07', '2021-03-25 01:52:19+07', '2021-03-25', 0, NULL, NULL, 3938, 1, 2, false, '2021-03-25 01:52:19+07');
INSERT INTO public.issues VALUES (3939, 1, 42, 'Điều 10 mẫu 01-A, 01-B, 02,04,05,06/129 - Sai chính tả Tổng cộng (A+B+C)', '', '2021-03-25', NULL, 5, 38, 2, 103, 40, 3, '2021-03-25 01:42:38+07', '2021-03-26 00:44:29+07', '2021-03-25', 100, NULL, NULL, 3939, 1, 2, false, '2021-03-26 00:44:29+07');
INSERT INTO public.issues VALUES (3940, 1, 42, 'Kích chuột vào tự động hiện số điểm tự đánh giá ', '', '2021-03-25', NULL, 5, 39, 2, 103, 40, 1, '2021-03-25 01:46:59+07', '2021-03-25 01:52:19+07', '2021-03-25', 0, NULL, NULL, 3940, 1, 2, false, '2021-03-25 01:52:19+07');
INSERT INTO public.issues VALUES (3941, 1, 42, 'Điều 10 mẫu 01-A,01-B,02,04,05,06/129 - Không lưu được điểm tự đánh giá bé hơn điểm tối đa', '', '2021-03-25', NULL, 5, 39, 2, 103, 40, 3, '2021-03-25 01:51:59+07', '2021-03-31 14:52:59+07', '2021-03-25', 100, NULL, NULL, 3941, 1, 2, false, '2021-03-31 14:52:59+07');
INSERT INTO public.issues VALUES (3942, 1, 42, 'Điều 10 mẫu 01-A, 01-B, 02,04,05,06/129 - Khi kích chuột vào điểm tối đa số điểm tự động hiển thị', '', '2021-03-25', NULL, 5, 39, 2, 103, 40, 3, '2021-03-25 01:53:39+07', '2021-03-31 14:52:59+07', '2021-03-25', 100, NULL, NULL, 3942, 1, 2, false, '2021-03-31 14:52:59+07');
INSERT INTO public.issues VALUES (3943, 2, 69, 'Phân tích tài liệu ', '', '2021-03-25', NULL, 3, 15, 2, NULL, 15, 1, '2021-03-25 06:36:04+07', '2021-04-19 01:47:32+07', '2021-03-24', 100, NULL, NULL, 3943, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3944, 1, 42, 'Điều 13 mẫu B5.BCTC - những khó khăn, kiến nghị (mục  5) cho phép nhập', '', '2021-05-24', NULL, 5, 39, 2, 133, 40, 7, '2021-03-25 09:43:50+07', '2021-05-31 17:00:40+07', '2021-05-24', 100, NULL, NULL, 3944, 1, 2, false, '2021-05-31 17:00:40+07');
INSERT INTO public.issues VALUES (3945, 1, 42, 'Điều 13 mẫu B5.BCTC - Chưa tính chiếm....% chênh lệch thu chi (mục 4c)', '', '2021-03-25', NULL, 5, 13, 2, 103, 40, 2, '2021-03-25 09:46:05+07', '2021-04-12 08:57:58+07', '2021-03-25', 100, NULL, NULL, 3945, 1, 2, false, '2021-04-12 08:57:58+07');
INSERT INTO public.issues VALUES (3946, 1, 42, 'Điều 13 mẫu B5.BCTC - ở PDF tính chiếm % tie lệ thu chi sai (mục 4c)', '', '2021-05-24', NULL, 5, 41, 2, 133, 40, 8, '2021-03-25 09:47:20+07', '2021-05-31 17:00:40+07', '2021-05-24', 100, NULL, NULL, 3946, 1, 2, false, '2021-05-31 17:00:40+07');
INSERT INTO public.issues VALUES (3947, 1, 42, 'Điều 13 mẫu B5.BCTC - PDF chỉnh số liệu theo hàng ngàn', '', '2021-05-24', NULL, 5, 41, 2, 133, 40, 8, '2021-03-25 09:48:03+07', '2021-05-31 17:00:40+07', '2021-05-24', 100, NULL, NULL, 3947, 1, 2, false, '2021-05-31 17:00:40+07');
INSERT INTO public.issues VALUES (3948, 1, 42, 'Điều 13 mẫu PL05 - Mục 5,6,7 cho phép nhập', '', '2021-03-29', NULL, 5, 13, 2, 105, 40, 2, '2021-03-25 09:49:38+07', '2021-04-10 15:37:03+07', '2021-03-29', 0, NULL, NULL, 3948, 1, 2, false, '2021-04-10 15:37:03+07');
INSERT INTO public.issues VALUES (3949, 1, 42, 'Điều 13 - mẫu PL05 - ở bảng chưa hiển thị đơn vị', '', '2021-03-25', NULL, 5, 13, 2, 103, 40, 2, '2021-03-25 09:50:20+07', '2021-04-06 10:20:05+07', '2021-03-25', 100, NULL, NULL, 3949, 1, 2, false, '2021-04-06 10:20:05+07');
INSERT INTO public.issues VALUES (3950, 1, 42, 'Điều 13, điều 16 - Chi tiết báo cáo đi sai thời gian đến hạn gửi so với mục chọn năm', '', '2021-03-25', NULL, 5, 41, 2, 103, 40, 1, '2021-03-25 23:45:55+07', '2021-03-26 01:23:22+07', '2021-03-25', 0, NULL, NULL, 3950, 1, 2, false, '2021-03-26 01:23:22+07');
INSERT INTO public.issues VALUES (3951, 1, 42, 'Điều 16 - Khi cấp trên tạo báo cáo đi tổng hợp từ cấp dưới thì mục nào cấp dưới không nhập dữ liệu thì cấp trên không hiện tên cấp đó', '![](clipboard-202103260002-aburx.png)
', '2021-05-24', NULL, 5, 41, 2, 133, 40, 8, '2021-03-25 17:03:12+07', '2021-05-31 17:00:41+07', '2021-05-24', 100, NULL, NULL, 3951, 1, 2, false, '2021-05-31 17:00:41+07');
INSERT INTO public.issues VALUES (3952, 1, 42, 'Điều 16 -  bảng 2.1, 2.2 - Cấp trên không thấy tên đơn vị thực hiện dữ liệu báo cáo của cấp dưới', '![](clipboard-202103260006-hhvj6.png)
', '2021-05-24', NULL, 5, 41, 2, 133, 40, 10, '2021-03-25 17:06:32+07', '2021-05-31 17:00:41+07', '2021-05-24', 100, NULL, NULL, 3952, 1, 2, false, '2021-05-31 17:00:41+07');
INSERT INTO public.issues VALUES (3953, 1, 42, ' Điều 17 - Chi tiết báo cáo đi sai thời gian đến hạn gửi so với mục chọn năm', '', '2021-03-26', NULL, 5, 38, 2, 103, 40, 2, '2021-03-26 00:52:07+07', '2021-04-01 08:31:09+07', '2021-03-26', 100, NULL, NULL, 3953, 1, 2, false, '2021-04-01 08:31:09+07');
INSERT INTO public.issues VALUES (3954, 1, 42, 'Điều 19 mẫu 3 - Không cho nhập dữ liệu', '![](clipboard-202103260912-va9lg.png)
', '2021-03-29', NULL, 5, 17, 2, 105, 40, 4, '2021-03-26 02:13:00+07', '2021-04-12 15:40:40+07', '2021-03-29', 100, NULL, NULL, 3954, 1, 2, false, '2021-04-12 15:40:40+07');
INSERT INTO public.issues VALUES (3955, 5, 67, 'Chỉnh lý tài liệu Phòng Quản lý năng lượng và kỹ thuật an toàn', '', NULL, NULL, 1, 31, 2, NULL, 23, 0, '2021-03-26 04:21:12+07', '2021-03-26 04:21:12+07', '2021-03-26', 0, NULL, NULL, 3955, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3956, 5, 67, 'Chỉnh lý tài liệu Phòng Quản lý năng lượng và kỹ thuật an toàn', '', NULL, NULL, 1, 28, 2, NULL, 23, 0, '2021-03-26 04:21:48+07', '2021-03-26 04:21:48+07', '2021-03-26', 0, NULL, NULL, 3956, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3957, 5, 67, 'Chỉnh lý tài liệu Phòng Quản lý năng lượng và kỹ thuật an toàn', '', NULL, NULL, 1, 35, 2, NULL, 23, 0, '2021-03-26 04:22:03+07', '2021-03-26 04:22:03+07', '2021-03-26', 0, NULL, NULL, 3957, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3958, 1, 42, 'Điều 18 mẫu 01, 02,03,04/CĐT; 01,02,03/CQTH - Bỏ ràng buộc số lượng tối đa khi nhập dữ liệu số', '', '2021-03-29', NULL, 5, 38, 2, 105, 40, 5, '2021-03-26 06:46:25+07', '2021-04-06 09:49:29+07', '2021-03-29', 100, NULL, NULL, 3958, 1, 2, false, '2021-04-06 09:49:29+07');
INSERT INTO public.issues VALUES (3959, 1, 42, 'Điều 19 - Fix tổng hợp đơn vị từ điều 18 ', '', '2021-03-29', NULL, 5, 38, 2, 105, 40, 3, '2021-03-26 15:45:00+07', '2021-04-12 15:41:44+07', '2021-03-29', 100, NULL, NULL, 3959, 1, 2, false, '2021-04-12 15:41:44+07');
INSERT INTO public.issues VALUES (3960, 1, 42, 'Điều 19 - chưa xem được PDF ', '', '2021-03-29', NULL, 5, 38, 2, 105, 40, 3, '2021-03-26 15:45:14+07', '2021-04-12 15:41:44+07', '2021-03-29', 100, NULL, NULL, 3960, 1, 2, false, '2021-04-12 15:41:44+07');
INSERT INTO public.issues VALUES (3961, 1, 42, 'Điều 20 - Tài khoản 3299 không tạo được báo cáo ', '', '2021-03-29', NULL, 5, 38, 2, 105, 40, 3, '2021-03-26 15:49:10+07', '2021-04-01 10:43:59+07', '2021-03-29', 100, NULL, NULL, 3961, 1, 2, false, '2021-04-01 10:43:59+07');
INSERT INTO public.issues VALUES (3962, 5, 61, '28 Hiện trạng SDD 2010 Huyện Thới Lai', 'Xử lý bản đồ', '2021-03-31', NULL, 1, 33, 2, NULL, 33, 4, '2021-03-27 08:24:22+07', '2021-03-29 15:57:32+07', '2021-03-27', 100, NULL, NULL, 3962, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (3963, 5, 61, 'Nhập Liệu', '', '2021-03-31', NULL, 1, 43, 2, NULL, 33, 1, '2021-03-27 08:26:36+07', '2021-03-29 15:57:32+07', '2021-03-27', 100, NULL, 3962, 3962, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3965, 5, 61, '29 Hiện trạng SDD 2019 Tỉnh Cần Thơ', 'Xử lý bản đồ', '2021-04-05', NULL, 1, 33, 2, NULL, 33, 2, '2021-03-27 08:29:26+07', '2021-04-12 08:28:48+07', '2021-03-27', 100, NULL, NULL, 3965, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (3966, 5, 61, 'Nhập Liệu', '', '2021-04-05', NULL, 1, 44, 2, NULL, 33, 1, '2021-03-27 08:29:58+07', '2021-04-12 08:28:48+07', '2021-03-27', 100, NULL, 3965, 3965, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (3967, 1, 42, 'Điều 20 mẫu 1C - Không giới hạn kí tự', '', '2021-03-29', NULL, 5, 38, 2, 105, 40, 3, '2021-03-27 09:36:59+07', '2021-04-01 11:00:19+07', '2021-03-29', 100, NULL, NULL, 3967, 1, 2, false, '2021-04-01 11:00:19+07');
INSERT INTO public.issues VALUES (3968, 1, 42, 'Điều 20 mẫu III - Thiếu đơn vị (triệu đồng) ở mục 6 và 7 phần A', '', '2021-03-27', NULL, 5, 10, 2, 103, 40, 2, '2021-03-27 09:38:21+07', '2021-04-01 11:16:36+07', '2021-03-27', 100, NULL, NULL, 3968, 1, 2, false, '2021-04-01 11:16:36+07');
INSERT INTO public.issues VALUES (3969, 1, 42, 'Điều 20 mẫu III - Chưa có footer', '', '2021-03-27', NULL, 5, 10, 2, 103, 40, 3, '2021-03-27 09:38:47+07', '2021-04-01 11:16:36+07', '2021-03-27', 100, NULL, NULL, 3969, 1, 2, false, '2021-04-01 11:16:36+07');
INSERT INTO public.issues VALUES (3970, 1, 42, 'Điều 20 mẫu III - Sai chính tả (tài chính) ở header,  để * nhưng không ràng buộc', '', '2021-03-27', NULL, 5, 10, 2, 103, 40, 2, '2021-03-27 09:47:34+07', '2021-04-06 14:29:39+07', '2021-03-27', 100, NULL, NULL, 3970, 1, 2, false, '2021-04-06 14:29:39+07');
INSERT INTO public.issues VALUES (3971, 1, 42, 'Điều 21 mẫu 02.A - Danh mục tiêu đề chưa có năm giá trị khối lượng thực hiện và năm giải ngân', '', '2021-03-27', NULL, 5, 10, 2, 103, 40, 2, '2021-03-27 04:11:05+07', '2021-04-01 14:30:22+07', '2021-03-27', 100, NULL, NULL, 3971, 1, 2, false, '2021-04-01 14:30:22+07');
INSERT INTO public.issues VALUES (3972, 1, 42, 'Điều 21 mẫu 02.A - Không nhập được dữ liệu thời gian cho cột thời gian đầu tư theo kế hoạch và thời hạn vay ', '', '2021-03-29', NULL, 5, 38, 2, 105, 40, 5, '2021-03-27 04:15:51+07', '2021-04-12 15:19:27+07', '2021-03-29', 100, NULL, NULL, 3972, 1, 4, false, '2021-04-12 15:19:27+07');
INSERT INTO public.issues VALUES (3973, 1, 42, 'Điều 21 mẫu 02.A - Thời gian đầu tư theo kế hoạch  và thời hạn vay cho nhập kiểu chữ', '', '2021-03-29', NULL, 5, 38, 2, 105, 40, 2, '2021-03-27 04:18:07+07', '2021-04-01 14:11:35+07', '2021-03-29', 0, NULL, NULL, 3973, 1, 2, false, '2021-04-01 14:11:35+07');
INSERT INTO public.issues VALUES (3974, 1, 42, 'Điều 21 mẫu 02.A - Lãi suất và tổng số (của mục nguồn vốn huy động) cho nhập kiểu chữ', '', '2021-03-29', NULL, 5, 38, 2, 105, 40, 3, '2021-03-27 04:22:11+07', '2021-04-12 15:19:27+07', '2021-03-29', 100, NULL, NULL, 3974, 1, 2, false, '2021-04-12 15:19:27+07');
INSERT INTO public.issues VALUES (3975, 1, 42, 'Điều 21 mẫu 02.A - Cột % điều chỉnh lại giá trị thập phân (57,99 --> 5,799)', '', '2021-03-29', NULL, 5, 38, 2, 105, 40, 3, '2021-03-27 04:23:13+07', '2021-04-12 15:19:27+07', '2021-03-29', 100, NULL, NULL, 3975, 1, 2, false, '2021-04-12 15:19:27+07');
INSERT INTO public.issues VALUES (3976, 1, 42, 'Điều 21 mẫu 02.A - Không xóa được dữ liệu', '', '2021-03-27', NULL, 5, 38, 2, 103, 40, 1, '2021-03-27 04:23:51+07', '2021-03-27 07:01:08+07', '2021-03-27', 0, NULL, NULL, 3976, 1, 2, false, '2021-03-27 07:01:08+07');
INSERT INTO public.issues VALUES (3977, 1, 42, 'Điều 21 mẫu 02.B - Danh mục tiêu đề chưa để năm ở mục tại thời điểm', '', '2021-03-27', NULL, 5, 10, 2, 103, 40, 2, '2021-03-27 04:25:42+07', '2021-04-01 14:30:22+07', '2021-03-27', 100, NULL, NULL, 3977, 1, 2, false, '2021-04-01 14:30:22+07');
INSERT INTO public.issues VALUES (3978, 1, 42, 'Điều 21 mẫu 02.B - Tỉ lệ lợi nhuận được chia trên vốn đầu tư (16) chưa tính theo giá trị %', '', '2021-03-27', NULL, 5, 10, 2, 103, 40, 2, '2021-03-27 04:28:20+07', '2021-03-27 07:24:37+07', '2021-03-27', 0, NULL, NULL, 3978, 1, 2, false, '2021-03-27 07:24:37+07');
INSERT INTO public.issues VALUES (3979, 1, 42, 'Điều 21 mẫu 02.B - Khi sửa dữ liệu các cột bỏ đi vẫn hiển thị', '', '2021-03-27', NULL, 5, 10, 2, 103, 40, 1, '2021-03-27 04:29:30+07', '2021-03-27 07:23:30+07', '2021-03-27', 0, NULL, NULL, 3979, 1, 2, false, '2021-03-27 07:23:30+07');
INSERT INTO public.issues VALUES (3980, 1, 42, 'Điều 21 mẫu 02.B - Chưa xóa được dữ liệu', '', '2021-03-27', NULL, 5, 38, 2, 103, 40, 1, '2021-03-27 04:29:54+07', '2021-03-27 07:01:08+07', '2021-03-27', 0, NULL, NULL, 3980, 1, 2, false, '2021-03-27 07:01:08+07');
INSERT INTO public.issues VALUES (3981, 1, 42, 'Điều 21 mẫu 02.C - Sắp xếp danh mục của mục B theo stt', '', '2021-03-29', NULL, 5, 38, 2, 105, 40, 4, '2021-03-27 04:30:56+07', '2021-04-12 15:19:27+07', '2021-03-29', 100, NULL, NULL, 3981, 1, 2, false, '2021-04-12 15:19:27+07');
INSERT INTO public.issues VALUES (3982, 1, 42, 'Điều 21 mẫu 02.C Chưa xóa được dữ liệu', '', '2021-03-27', NULL, 5, 38, 2, 103, 40, 1, '2021-03-27 04:31:24+07', '2021-03-27 07:01:09+07', '2021-03-27', 0, NULL, NULL, 3982, 1, 2, false, '2021-03-27 07:01:09+07');
INSERT INTO public.issues VALUES (3983, 1, 42, 'Điều 21 mẫu 02.C - Chưa tính theo tỉ lệ %', '', '2021-03-27', NULL, 5, 10, 2, 103, 40, 1, '2021-03-27 04:32:22+07', '2021-03-27 15:34:32+07', '2021-03-27', 0, NULL, NULL, 3983, 1, 2, false, '2021-03-27 15:34:32+07');
INSERT INTO public.issues VALUES (3984, 1, 42, 'Điều 21 mẫu 02.Đ - Thiếu danh mục các khoản thuế khác', '', '2021-03-29', NULL, 5, 10, 2, 105, 40, 3, '2021-03-27 07:25:38+07', '2021-04-12 15:19:28+07', '2021-03-29', 100, NULL, NULL, 3984, 1, 2, false, '2021-04-12 15:19:28+07');
INSERT INTO public.issues VALUES (3985, 1, 42, 'Điều 21 mẫu 04.A - Chưa có mục tổng cộng', '', '2021-03-29', NULL, 5, 38, 2, 105, 40, 3, '2021-03-27 07:28:26+07', '2021-04-12 15:24:37+07', '2021-03-29', 100, NULL, NULL, 3985, 1, 2, false, '2021-04-12 15:24:37+07');
INSERT INTO public.issues VALUES (3986, 1, 42, 'Điều 21 mẫu 04.A - Cột nước tiếp nhận đầu tư là kiểu chữ', '', '2021-03-29', NULL, 5, 38, 2, 105, 40, 3, '2021-03-27 07:30:18+07', '2021-05-17 10:06:15+07', '2021-03-29', 100, NULL, NULL, 3986, 1, 2, false, '2021-05-17 10:06:15+07');
INSERT INTO public.issues VALUES (3987, 1, 42, 'Điều 21 mẫu 04.B - Danh mục tiêu đề trùng ROE', '', '2021-03-29', NULL, 5, 10, 2, 105, 40, 3, '2021-03-27 07:31:02+07', '2021-04-12 15:24:37+07', '2021-03-29', 100, NULL, NULL, 3987, 1, 2, false, '2021-04-12 15:24:37+07');
INSERT INTO public.issues VALUES (3988, 1, 42, 'Điều 21 mẫu 04.B Chưa có mục tổng cộng', '', '2021-03-29', NULL, 5, 38, 2, 105, 40, 3, '2021-03-27 07:31:35+07', '2021-04-12 15:24:38+07', '2021-03-29', 100, NULL, NULL, 3988, 1, 2, false, '2021-04-12 15:24:38+07');
INSERT INTO public.issues VALUES (3989, 1, 42, 'Điều 21 mẫu 03/200 - Cột có dấu hiệu mất an toàn về tài chính là kiểu chữ', '', '2021-03-29', NULL, 5, 38, 2, 105, 40, 3, '2021-03-27 15:18:07+07', '2021-05-17 10:06:15+07', '2021-03-29', 100, NULL, NULL, 3989, 1, 2, false, '2021-05-17 10:06:15+07');
INSERT INTO public.issues VALUES (3990, 2, 59, 'Lương  ', '', NULL, NULL, 5, 12, 2, 104, 15, 1, '2021-03-27 15:42:11+07', '2021-03-29 13:49:31+07', '2021-03-27', 0, NULL, NULL, 3990, 1, 2, false, '2021-03-29 13:49:31+07');
INSERT INTO public.issues VALUES (3992, 2, 59, 'Tab khoản  chi ( sort theo thời  gian)', '', NULL, NULL, 3, 37, 2, 104, 15, 2, '2021-03-27 15:49:15+07', '2021-03-31 14:21:47+07', '2021-03-27', 100, NULL, NULL, 3992, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3993, 2, 59, 'Css form ( nhập vật liệu cửa hàng cho dự án)', '', NULL, NULL, 3, 8, 2, 104, 15, 4, '2021-03-27 15:55:19+07', '2021-04-05 04:04:01+07', '2021-03-27', 100, NULL, NULL, 3993, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3994, 2, 59, 'Full Css ( nhập vật liệu cửa hàng cho dự án)', '', NULL, NULL, 3, 8, 2, 104, 15, 2, '2021-03-27 15:56:33+07', '2021-03-29 14:27:01+07', '2021-03-27', 100, NULL, NULL, 3994, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3995, 2, 59, 'Chọn số lượng vật liệu 1 cái => các vật liệu đã nhập số lượng trước bị mất', '', NULL, NULL, 3, 8, 2, 104, 15, 2, '2021-03-27 15:58:49+07', '2021-03-29 14:27:01+07', '2021-03-27', 100, NULL, NULL, 3995, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3996, 2, 59, 'Thanh toán tất cả cho đơn hàng', '', NULL, NULL, 3, 8, 2, 104, 15, 6, '2021-03-27 16:08:11+07', '2021-03-29 16:14:10+07', '2021-03-27', 100, NULL, NULL, 3996, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3997, 2, 59, 'Tab Khoản chi load nhóm trước', '', NULL, NULL, 3, 37, 2, 104, 15, 2, '2021-03-27 16:13:21+07', '2021-03-29 08:19:00+07', '2021-03-27', 100, NULL, NULL, 3997, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (3998, 1, 42, 'Điều 24 mẫu 01A , 01B, 01C, 01D - giao diện không đồng bộ với các mẫu khác (ví dụ điều 10 phụ lục số 4)', '', '2021-03-29', NULL, 5, 8, 2, 105, 40, 4, '2021-03-27 16:19:39+07', '2021-04-12 10:15:23+07', '2021-03-29', 100, NULL, NULL, 3998, 1, 2, false, '2021-04-12 10:15:23+07');
INSERT INTO public.issues VALUES (3999, 1, 42, 'Điều 24 mẫu 01A, 01B, 01C, 01D - Không cho chỉnh sửa ở cột công thức, khi nhập dữ liệu cũng không để nhập cột công thức mà tự động tính', '', '2021-03-29', NULL, 5, 8, 2, 105, 40, 4, '2021-03-27 16:20:46+07', '2021-04-12 10:15:23+07', '2021-03-29', 100, NULL, NULL, 3999, 1, 2, false, '2021-04-12 10:15:23+07');
INSERT INTO public.issues VALUES (4000, 1, 42, 'Điều 24 mẫu 01B - Cột 11 NSĐP có nhập dữ liệu nhưng không hiển thị', '', '2021-05-20', NULL, 5, 39, 2, 132, 40, 7, '2021-03-27 16:21:50+07', '2021-05-26 04:14:32+07', '2021-05-20', 100, NULL, NULL, 4000, 1, 2, false, '2021-05-26 04:14:32+07');
INSERT INTO public.issues VALUES (4001, 1, 42, 'Điều 24 mẫu 01D - Thêm thành công nhưng dữ liệu không trả về để hiện thị', '', '2021-03-29', NULL, 5, 38, 2, 132, 40, 6, '2021-03-27 16:22:31+07', '2021-05-26 04:14:33+07', '2021-03-29', 100, NULL, NULL, 4001, 1, 2, false, '2021-05-26 04:14:33+07');
INSERT INTO public.issues VALUES (4002, 1, 42, 'Điều 24 mẫu 01A, 01B, 01C, 01D - cột nào có giá trị bằng 0 thì để số 0 đừng bỏ trống', '', '2021-03-29', NULL, 5, 8, 2, 105, 40, 4, '2021-03-27 16:25:25+07', '2021-04-12 08:59:12+07', '2021-03-27', 100, NULL, NULL, 4002, 1, 2, false, '2021-04-12 08:59:12+07');
INSERT INTO public.issues VALUES (4003, 2, 59, 'Tạo khoản chi ( Khác ) lấy tiền từ sổ quỷ ', '', NULL, NULL, 3, 37, 2, 104, 15, 1, '2021-03-27 16:26:16+07', '2021-03-29 15:51:19+07', '2021-03-27', 100, NULL, NULL, 4003, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4004, 2, 59, 'Chưa load  ra khoản chi ( khác ) trong tab khoản chi Dự án', '', NULL, NULL, 3, 37, 2, 104, 15, 3, '2021-03-27 16:27:19+07', '2021-03-31 14:22:20+07', '2021-03-27', 100, NULL, NULL, 4004, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4005, 2, 59, 'Tab Lương trong  "Danh sách đội thuê ngoài"', '', NULL, NULL, 3, 12, 2, 104, 15, 2, '2021-03-27 16:31:40+07', '2021-03-29 11:33:48+07', '2021-03-27', 100, NULL, NULL, 4005, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4006, 2, 59, 'Tab  công nợ trong  danh sách đội thuê ngoài', '', NULL, NULL, 3, 15, 2, 104, 15, 2, '2021-03-27 16:32:28+07', '2021-03-31 14:20:43+07', '2021-03-27', 100, NULL, NULL, 4006, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4007, 2, 59, 'Lỗi tìm kiếm + thêm mới cá nhân cho đội công ty', 'check lại đội thuê ngoài không có NhanSu', NULL, NULL, 3, 15, 2, 104, 15, 4, '2021-03-27 16:40:52+07', '2021-03-31 14:20:43+07', '2021-03-27', 100, NULL, NULL, 4007, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4008, 1, 42, 'Điều 24 - những cột có giá trị bằng 0 thì hiển thị số 0 ', '', '2021-03-27', NULL, 5, 8, 2, 105, 40, 1, '2021-03-27 16:57:14+07', '2021-03-31 10:50:24+07', '2021-03-27', 0, NULL, NULL, 4008, 1, 2, false, '2021-03-31 10:50:24+07');
INSERT INTO public.issues VALUES (4009, 1, 42, 'Điều 21 mẫu 02B - Khi chỉnh sửa các cột bị bỏ vẫn hiển thị', '', '2021-03-27', NULL, 5, 10, 2, 105, 40, 2, '2021-03-27 16:57:58+07', '2021-04-12 15:00:13+07', '2021-03-27', 100, NULL, NULL, 4009, 1, 2, false, '2021-04-12 15:00:13+07');
INSERT INTO public.issues VALUES (4010, 1, 42, 'Điều 22 - Nhấn phím enter để lưu mà không cần phải nhấn chuột', '', '2021-03-27', NULL, 5, 17, 2, 105, 40, 2, '2021-03-27 16:58:33+07', '2021-04-12 15:34:06+07', '2021-03-27', 100, NULL, NULL, 4010, 1, 2, false, '2021-04-12 15:34:06+07');
INSERT INTO public.issues VALUES (4011, 5, 61, '30 Quy hoạch SDD 2020 Tỉnh Cần Thơ', 'Xử lý bản đồ', '2021-04-05', NULL, 1, 33, 2, NULL, 33, 3, '2021-03-27 16:59:26+07', '2021-04-12 08:29:18+07', '2021-03-29', 100, NULL, NULL, 4011, 1, 4, false, NULL);
INSERT INTO public.issues VALUES (4012, 5, 61, 'Nhập Liệu', '', '2021-04-05', NULL, 1, 29, 2, NULL, 33, 1, '2021-03-27 17:00:19+07', '2021-04-12 08:29:18+07', '2021-03-29', 100, NULL, 4011, 4011, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (4013, 2, 59, 'Lỗi lúc lọc danh sách lương đội thuê ngoài', '', NULL, NULL, 5, 12, 2, 104, 15, 1, '2021-03-27 17:00:33+07', '2021-03-30 08:28:34+07', '2021-03-27', 0, NULL, NULL, 4013, 1, 2, false, '2021-03-30 08:28:34+07');
INSERT INTO public.issues VALUES (4014, 2, 59, 'lỗi chấm công đội công ty', '', NULL, NULL, 3, 12, 2, 104, 15, 2, '2021-03-27 17:01:04+07', '2021-03-29 10:06:37+07', '2021-03-27', 100, NULL, NULL, 4014, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4015, 1, 42, 'Điều 22 mẫu 05A - Cột 15 xếp loại DN là kiểu chữ', '', '2021-03-27', NULL, 5, 38, 2, 105, 40, 2, '2021-03-27 17:01:16+07', '2021-05-17 10:06:15+07', '2021-03-27', 100, NULL, NULL, 4015, 1, 2, false, '2021-05-17 10:06:15+07');
INSERT INTO public.issues VALUES (4016, 2, 59, 'bỏ đội đã chon trong tạm ứng không được', '', NULL, NULL, 3, 12, 2, 104, 15, 2, '2021-03-27 17:02:49+07', '2021-03-29 10:15:33+07', '2021-03-27', 100, NULL, NULL, 4016, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4017, 1, 42, 'Điều 22 mẫu 05B - Tỉ lệ % thực hiện  không hiển thị số thập phân', '', '2021-03-27', NULL, 5, 38, 2, 105, 40, 2, '2021-03-27 17:02:58+07', '2021-04-12 15:34:06+07', '2021-03-27', 100, NULL, NULL, 4017, 1, 2, false, '2021-04-12 15:34:06+07');
INSERT INTO public.issues VALUES (4018, 2, 59, 'Lương gãy', '', '2021-03-30', NULL, 1, 12, 2, 104, 15, 2, '2021-03-27 17:03:54+07', '2021-03-30 08:28:08+07', '2021-03-30', 66, NULL, NULL, 4018, 1, 8, false, NULL);
INSERT INTO public.issues VALUES (4019, 1, 42, 'Hỏi lại nghiệp vụ', 'Vì 2 cộp này ghi nhận là một con số không phải là ngày tháng năm.', '2021-03-29', NULL, 5, 40, 4, NULL, 38, 3, '2021-03-28 13:54:10+07', '2021-04-06 08:48:43+07', '2021-03-29', 100, NULL, 3972, 3972, 2, 3, false, '2021-04-06 08:48:43+07');
INSERT INTO public.issues VALUES (4020, 1, 42, 'Điều 12 mẫu 06, 07 - Không xem được PDF', '', '2021-05-24', NULL, 5, 38, 2, 133, 40, 9, '2021-03-29 09:10:27+07', '2021-05-31 17:00:41+07', '2021-05-24', 100, NULL, NULL, 4020, 1, 2, false, '2021-05-31 17:00:41+07');
INSERT INTO public.issues VALUES (4051, 1, 42, 'Điều 13 PL5 - PDF mục 3b sai nội dung và giá trị', '', '2021-03-30', NULL, 5, 41, 2, 105, 40, 2, '2021-03-30 08:31:37+07', '2021-05-17 10:06:16+07', '2021-03-30', 100, NULL, NULL, 4051, 1, 2, false, '2021-05-17 10:06:16+07');
INSERT INTO public.issues VALUES (4021, 1, 42, 'Điều 12 mẫu 06, 07 - Kinh phí quản lý hành chính được giao (mục 1) chỗ tổng số cho nhập số tiền + đơn vị', '', '2021-03-29', NULL, 5, 39, 2, 105, 40, 4, '2021-03-29 09:20:17+07', '2021-04-12 15:48:10+07', '2021-03-29', 100, NULL, NULL, 4021, 1, 2, false, '2021-04-12 15:48:10+07');
INSERT INTO public.issues VALUES (4022, 1, 42, 'Điều 12 mẫu 06 - Không xóa được báo cáo sau khi đã thêm dữ liệu', '', '2021-03-29', NULL, 5, 38, 2, 105, 40, 2, '2021-03-29 09:22:04+07', '2021-04-12 15:48:10+07', '2021-03-29', 100, NULL, NULL, 4022, 1, 2, false, '2021-04-12 15:48:10+07');
INSERT INTO public.issues VALUES (4023, 1, 42, 'Điều 12 mẫu 06 - Sau khi nhấn nút "lưu dữ liệu" mục kinh phí(KP) giao thực hiện CĐTC, số kinh phí tiết kiệm được, tỉ lệ KP tiết kiệm được so với KP được giao bị mất dữ liệu', '', '2021-03-29', NULL, 5, 39, 2, 105, 40, 1, '2021-03-29 09:25:06+07', '2021-04-12 15:48:11+07', '2021-03-29', 0, NULL, NULL, 4023, 1, 2, false, '2021-04-12 15:48:11+07');
INSERT INTO public.issues VALUES (4024, 1, 42, 'Điều 12 mẫu 06 - kinh phí giao thực hiện chế độ tự chủ và kinh phí thực hiện không giống nhau', '', '2021-03-29', NULL, 5, 39, 2, 105, 40, 2, '2021-03-29 09:26:42+07', '2021-04-12 15:48:11+07', '2021-03-29', 100, NULL, NULL, 4024, 1, 2, false, '2021-04-12 15:48:11+07');
INSERT INTO public.issues VALUES (4025, 1, 42, 'Điều 12 mẫu 07 - 2.a trùng tên danh mục của mục phân tích kỹ nguyên nhân của mục tiết kiệm kinh phí ', '', '2021-03-29', NULL, 5, 39, 2, 105, 40, 3, '2021-03-29 09:38:38+07', '2021-04-12 15:48:11+07', '2021-03-29', 100, NULL, NULL, 4025, 1, 2, false, '2021-04-12 15:48:11+07');
INSERT INTO public.issues VALUES (4026, 5, 61, '25 Hiện trạng SDD 2010 Huyện Vĩnh Thạnh', 'Xử lý bản đồ và nhập liệu', '2021-04-03', NULL, 1, 32, 2, NULL, 33, 1, '2021-03-29 04:06:31+07', '2021-04-12 08:29:29+07', '2021-03-29', 100, NULL, NULL, 4026, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4027, 5, 61, '27 Hiện trạng SDD 2010 Huyện Phong Điền', 'Xử lý bản đồ và nhập liệu', '2021-04-02', NULL, 1, 33, 2, NULL, 33, 1, '2021-03-29 04:07:18+07', '2021-03-29 16:04:10+07', '2021-03-29', 100, NULL, NULL, 4027, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4028, 2, 59, 'Tab Lương của đội Công ty', '', '2021-03-29', NULL, 3, 12, 2, 104, 12, 2, '2021-03-29 11:24:06+07', '2021-03-29 11:27:05+07', '2021-03-29', 100, NULL, NULL, 4028, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4029, 2, 59, 'Tab Lương của Nhân sự công ty', '', '2021-03-29', NULL, 3, 12, 2, 104, 12, 2, '2021-03-29 11:24:34+07', '2021-03-29 04:54:56+07', '2021-03-29', 100, NULL, NULL, 4029, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4030, 2, 59, 'Bổ sung từ ngày đến ngày ở select đợt trong FilterBox.js', '', '2021-03-29', NULL, 3, 12, 2, 104, 12, 2, '2021-03-29 11:25:45+07', '2021-03-29 13:49:11+07', '2021-03-29', 100, NULL, NULL, 4030, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4031, 2, 59, 'Thêm thành viên trong Đội thuê công ty + nhân viên văn phòng', '', '2021-03-29', NULL, 3, 15, 2, 104, 15, 1, '2021-03-29 14:42:23+07', '2021-03-29 14:42:49+07', '2021-03-29', 100, NULL, NULL, 4031, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4032, 2, 59, 'Báo cáo tổng hợp của đội thuê ngoài', '', NULL, NULL, 3, 15, 2, 104, 15, 4, '2021-03-29 14:44:02+07', '2021-04-01 10:52:59+07', '2021-03-29', 100, NULL, NULL, 4032, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4033, 2, 59, 'Thanh toán tất cả ngay trong tạo đơn hàng + trạng thái thanh toán của đơn hàng + từng sản phẩm', '', NULL, NULL, 3, 8, 2, 104, 15, 2, '2021-03-29 16:30:02+07', '2021-03-30 08:09:52+07', '2021-03-29', 100, NULL, NULL, 4033, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4034, 2, 59, 'Tìm kiếm trong danh sách vật liệu cửa hàng lúc có số lượng => bị mất số lương', '', NULL, NULL, 3, 8, 2, 104, 15, 3, '2021-03-29 16:31:56+07', '2021-03-30 08:09:36+07', '2021-03-29', 100, NULL, NULL, 4034, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4035, 2, 59, 'Tab Khoản chi ( lương) thêm họ tên + phòng ban/đội + nội dung( ''lương tháng ....) ', 'Tab khoản chi (lương) thêm đội thuê + tháng chi lương', NULL, NULL, 3, 37, 2, 104, 15, 2, '2021-03-29 16:37:35+07', '2021-03-31 14:23:35+07', '2021-03-29', 100, NULL, NULL, 4035, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4036, 2, 59, 'Tab khoản chi (trong dự án)', '- Thêm khoản chi trong "chi khác"
- bỏ thời gian chọn lúc đầu cho bảng
- chi phí cửa hàng ', NULL, NULL, 3, 37, 2, 104, 15, 3, '2021-03-29 16:42:50+07', '2021-03-31 16:58:46+07', '2021-03-29', 100, NULL, NULL, 4036, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4037, 2, 59, 'Báo cáo sổ cái', '', NULL, NULL, 1, 37, 2, 104, 15, 1, '2021-03-29 16:45:55+07', '2021-03-30 01:23:47+07', '2021-03-29', 0, NULL, NULL, 4037, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4039, 2, 59, 'Báo cáo công nợ đội thuê ngoài', '', NULL, NULL, 3, 8, 2, 104, 15, 5, '2021-03-29 16:54:18+07', '2021-04-01 11:09:22+07', '2021-03-29', 100, NULL, NULL, 4039, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4040, 2, 59, 'khoản thời  gian + load tất cả dữ liệu theo ngày hiện  tại', '', NULL, NULL, 3, 12, 2, 104, 15, 3, '2021-03-29 17:09:52+07', '2021-03-30 08:26:16+07', '2021-03-29', 100, NULL, NULL, 4040, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4041, 1, 42, 'Điều 13 PL 5 - Trong văn bản mục chi thường xuyên nhưng phần trong đó: lại là nguồn thu', '', '2021-05-24', NULL, 5, 39, 2, 133, 40, 7, '2021-03-30 08:11:24+07', '2021-05-31 17:00:41+07', '2021-05-24', 100, NULL, NULL, 4041, 1, 2, false, '2021-05-31 17:00:41+07');
INSERT INTO public.issues VALUES (4042, 1, 42, 'Điều 13 PL 5 - Nếu cùng nhập 1 lần 2 mục sau đó nhấn lưu thì lần lưu sau giá trị trở về 0', '', '2021-05-24', NULL, 5, 39, 2, 133, 40, 7, '2021-03-30 08:12:09+07', '2021-05-31 17:00:41+07', '2021-05-24', 100, NULL, NULL, 4042, 1, 2, false, '2021-05-31 17:00:41+07');
INSERT INTO public.issues VALUES (4043, 1, 42, 'Điều 13 PL 5 - Trường hợp chưa có định mức KT -KT... ở mục 3b không lấy được dữ liệu từ bảng', '', '2021-03-30', NULL, 5, 41, 2, 105, 40, 2, '2021-03-30 08:13:47+07', '2021-05-17 10:06:15+07', '2021-03-30', 100, NULL, NULL, 4043, 1, 2, false, '2021-05-17 10:06:15+07');
INSERT INTO public.issues VALUES (4044, 1, 42, 'Điều 13 PL5 -  lấy dữ liệu từ bảng của nguồn thu bị chuyển cho nguồn chi và ngược lại', '', '2021-03-30', NULL, 5, 41, 2, 105, 40, 2, '2021-03-30 08:24:01+07', '2021-04-06 10:41:33+07', '2021-03-30', 100, NULL, NULL, 4044, 1, 2, false, '2021-04-06 10:41:33+07');
INSERT INTO public.issues VALUES (4045, 2, 59, 'Lương đội công ty', '', '2021-03-30', NULL, 3, 12, 2, 104, 12, 1, '2021-03-30 08:27:18+07', '2021-04-01 11:08:48+07', '2021-03-30', 100, NULL, 4018, 4018, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (4046, 2, 59, 'Lương nhân viên', '', '2021-03-30', NULL, 3, 12, 2, 104, 12, 1, '2021-03-30 08:27:41+07', '2021-04-01 11:08:50+07', '2021-03-30', 100, NULL, 4018, 4018, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (4047, 2, 59, 'Lương dội thuê ngoài', '', '2021-03-30', NULL, 1, 12, 2, 104, 12, 0, '2021-03-30 08:28:07+07', '2021-03-30 08:28:07+07', '2021-03-30', 0, NULL, 4018, 4018, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (4048, 1, 42, 'Điều 13 PL5 - Trích lập quỹ (mục 3c) chưa lấy được dữ liệu từ bảng', '', '2021-03-30', NULL, 5, 41, 2, 105, 40, 2, '2021-03-30 08:28:14+07', '2021-05-17 10:06:16+07', '2021-03-30', 100, NULL, NULL, 4048, 1, 2, false, '2021-05-17 10:06:16+07');
INSERT INTO public.issues VALUES (4049, 1, 42, 'Điều 13 PL 5 - số đã trả nợ vat (mục 3g) có giá trị 0 những không hiển thị trong văn bảng', '', '2021-05-24', NULL, 5, 39, 2, 133, 40, 7, '2021-03-30 08:29:31+07', '2021-05-31 17:00:41+07', '2021-05-24', 100, NULL, NULL, 4049, 1, 2, false, '2021-05-31 17:00:41+07');
INSERT INTO public.issues VALUES (4050, 1, 42, 'Điều 13 PL 5- PDF chỉnh sửa số liệu không để .00', '', '2021-03-30', NULL, 5, 41, 2, 105, 40, 3, '2021-03-30 08:30:25+07', '2021-05-17 10:06:16+07', '2021-03-30', 100, NULL, NULL, 4050, 1, 2, false, '2021-05-17 10:06:16+07');
INSERT INTO public.issues VALUES (4052, 1, 42, 'Điều 13 PL6 chưa tổng hợp được dữ liệu ở phần văn bản', '', '2021-03-30', NULL, 5, 41, 2, 105, 40, 2, '2021-03-30 09:27:07+07', '2021-05-17 10:06:16+07', '2021-03-30', 100, NULL, NULL, 4052, 1, 2, false, '2021-05-17 10:06:16+07');
INSERT INTO public.issues VALUES (4053, 1, 42, 'Điều 13 PL 6 - ghi rõ tiêu đề cho phần bảng dữ liệu', '', '2021-03-30', NULL, 5, 17, 2, 105, 40, 2, '2021-03-30 09:28:10+07', '2021-04-06 11:13:55+07', '2021-03-30', 100, NULL, NULL, 4053, 1, 2, false, '2021-04-06 11:13:55+07');
INSERT INTO public.issues VALUES (4054, 1, 42, 'Điều 13 PL 6 - Sửa lại header bảng báo cáo kèm phụ lục 6 không phải 5', '', '2021-03-30', NULL, 5, 17, 2, 105, 40, 2, '2021-03-30 09:28:55+07', '2021-04-06 11:13:55+07', '2021-03-30', 100, NULL, NULL, 4054, 1, 2, false, '2021-04-06 11:13:55+07');
INSERT INTO public.issues VALUES (4055, 1, 42, 'Điều 13 PL 6 - Cột 7 lấy dữ liệu từ hàng A - PL5', '', '2021-03-30', NULL, 5, 41, 2, 105, 40, 1, '2021-03-30 09:29:59+07', '2021-03-30 09:36:10+07', '2021-03-30', 0, NULL, NULL, 4055, 1, 2, false, '2021-03-30 09:36:10+07');
INSERT INTO public.issues VALUES (4056, 1, 42, 'Điều 13 PL 6 - Sửa lại dữ liệu trong bảng (vào xem phần mô tả)', '- Điều 13 PL 6 - Cột 7 lấy dữ liệu từ hàng A - PL5
- Điều 13 PL 6 - Cột 12 lấy dữ liệu từ hàng A.1.đ - PL5
- Điều 13 PL 6 - Cột 13 lấy dữ liệu từ hàng A.1.e - PL5
- Điều 13 PL 6 - Cột 14 lấy dữ liệu từ hàng A.1.d - PL5
- Điều 13 PL 6 - Cột 17 lấy dữ liệu từ hàng A.2 - PL5
- Điều 13 PL 6 - Cột 21 lấy dữ liệu từ hàng A.2.đ - PL5
- Điều 13 PL 6 - Cột 22 lấy dữ liệu từ hàng A.2.e - PL5
- Điều 13 PL 6 - Cột 23 lấy dữ liệu từ hàng A.2.d - PL5
- Điều 13 PL 6 - Cột 26 chưa tính
- Điều 13 PL 6 - Cột 43 hía trị 0 thì hiển thị số 0', '2021-03-30', NULL, 5, 41, 2, 105, 40, 2, '2021-03-30 09:36:01+07', '2021-05-17 10:06:16+07', '2021-03-30', 100, NULL, NULL, 4056, 1, 2, false, '2021-05-17 10:06:16+07');
INSERT INTO public.issues VALUES (4057, 1, 42, 'Điều 13 PL 5 - Đã gửi báo cáo nhưng vẫn sửa được dữ liệu', '', '2021-03-31', NULL, 5, 17, 2, 105, 40, 2, '2021-03-31 10:15:11+07', '2021-05-17 10:06:16+07', '2021-03-31', 100, NULL, NULL, 4057, 1, 2, false, '2021-05-17 10:06:16+07');
INSERT INTO public.issues VALUES (4058, 1, 42, 'Điều 25 - Thêm thành công nhưng giá trị trả về để hiển thị không đủ (Cột 9)', '', '2021-03-31', NULL, 5, 38, 2, 132, 40, 5, '2021-03-31 10:42:44+07', '2021-05-26 04:14:33+07', '2021-03-31', 100, NULL, NULL, 4058, 1, 2, false, '2021-05-26 04:14:33+07');
INSERT INTO public.issues VALUES (4059, 1, 42, 'Điều 9 mẫu 1.01, 1.02, 1.03 - Không giới hạn số ký tự nhập', 'Hiện tại chỉ nhập được tối đa 5 kí tự.', '2021-03-31', NULL, 5, 38, 2, 105, 40, 3, '2021-03-31 14:16:17+07', '2021-05-17 10:06:16+07', '2021-03-31', 100, NULL, NULL, 4059, 1, 2, false, '2021-05-17 10:06:16+07');
INSERT INTO public.issues VALUES (4060, 1, 42, 'Điều 10 mẫu 01-A, 01-B, 04 TT 129 - không nhập được giá trị -5', '', '2021-05-20', NULL, 5, 39, 2, 132, 40, 5, '2021-03-31 14:51:49+07', '2021-05-26 04:14:33+07', '2021-05-20', 100, NULL, NULL, 4060, 1, 2, false, '2021-05-26 04:14:33+07');
INSERT INTO public.issues VALUES (4061, 1, 42, 'Fix lại tất cả các mẫu - Khi nhập giá trị là 0 thì hiển thị 0, khi nào không nhập thì mới để trống', '', '2021-03-31', NULL, 5, 10, 2, 132, 40, 2, '2021-03-31 15:21:30+07', '2021-05-24 02:47:51+07', '2021-03-31', 0, NULL, NULL, 4061, 1, 2, false, '2021-05-24 02:47:51+07');
INSERT INTO public.issues VALUES (4062, 1, 42, 'Fix lại tất cả các mẫu - Khi nhập giá trị là 0 thì hiển thị 0, khi nào không nhập thì mới để trống', '', '2021-05-20', NULL, 5, 39, 2, 132, 40, 5, '2021-03-31 15:21:51+07', '2021-05-26 04:14:33+07', '2021-05-20', 100, NULL, NULL, 4062, 1, 2, false, '2021-05-26 04:14:33+07');
INSERT INTO public.issues VALUES (4063, 1, 42, 'Fix lại tất cả các mẫu - Khi nhập giá trị là 0 thì hiển thị 0, khi nào không nhập thì mới để trống', '', '2021-03-31', NULL, 5, 17, 2, 105, 40, 2, '2021-03-31 15:22:16+07', '2021-05-17 10:06:16+07', '2021-03-31', 100, NULL, NULL, 4063, 1, 2, false, '2021-05-17 10:06:16+07');
INSERT INTO public.issues VALUES (4064, 2, 70, 'Build app connect máy chấm công', '', NULL, NULL, 5, 39, 2, 106, 5, 4, '2021-04-01 09:03:12+07', '2021-04-28 09:36:04+07', '2021-04-01', 100, NULL, NULL, 4064, 1, 2, false, '2021-04-28 09:36:04+07');
INSERT INTO public.issues VALUES (4065, 2, 70, 'Lấy thông tin máy chấm công về app', 'ip
port
password

giờ chạy', NULL, NULL, 5, 39, 2, 106, 5, 5, '2021-04-01 09:04:04+07', '2021-04-28 09:36:04+07', '2021-04-01', 100, NULL, NULL, 4065, 1, 2, false, '2021-04-28 09:36:04+07');
INSERT INTO public.issues VALUES (4066, 2, 70, 'Đẩy dữ liệu nhân viên lên sql', 'Lấy từ máy chấm công', NULL, NULL, 5, 39, 2, 106, 5, 7, '2021-04-01 09:04:32+07', '2021-04-28 09:36:04+07', '2021-04-01', 100, NULL, NULL, 4066, 1, 2, false, '2021-04-28 09:36:04+07');
INSERT INTO public.issues VALUES (4067, 2, 70, 'Đẩy dữ liệu chấm công lên sql', '', '2021-04-05', NULL, 5, 39, 2, 107, 5, 6, '2021-04-01 09:05:14+07', '2021-04-28 09:36:04+07', '2021-04-05', 100, NULL, NULL, 4067, 1, 2, false, '2021-04-28 09:36:04+07');
INSERT INTO public.issues VALUES (4068, 2, 70, 'Danh mục máy chấm công', '', NULL, NULL, 5, 39, 2, 106, 5, 5, '2021-04-01 09:09:05+07', '2021-04-28 09:36:04+07', '2021-04-01', 100, NULL, NULL, 4068, 1, 2, false, '2021-04-28 09:36:04+07');
INSERT INTO public.issues VALUES (4069, 2, 70, 'Danh mục nhân viên', '', NULL, NULL, 5, 39, 2, 106, 5, 5, '2021-04-01 09:09:14+07', '2021-04-28 09:36:04+07', '2021-04-01', 100, NULL, NULL, 4069, 1, 2, false, '2021-04-28 09:36:04+07');
INSERT INTO public.issues VALUES (4070, 2, 70, 'Danh mục ký hiệu chấm công', '', NULL, NULL, 5, 39, 2, 106, 5, 5, '2021-04-01 09:09:29+07', '2021-04-28 09:36:04+07', '2021-04-01', 100, NULL, NULL, 4070, 1, 2, false, '2021-04-28 09:36:04+07');
INSERT INTO public.issues VALUES (4071, 2, 70, 'Danh mục phòng ban', '', NULL, NULL, 5, 39, 2, 106, 5, 5, '2021-04-01 09:10:55+07', '2021-04-28 09:36:04+07', '2021-04-01', 100, NULL, NULL, 4071, 1, 2, false, '2021-04-28 09:36:04+07');
INSERT INTO public.issues VALUES (4072, 1, 42, 'Điều 18 mẫu 02/CĐT - cột 9 sai tiêu đề "Kế hoạch vốn bố trí thu hồi trong năm 2020" đúng là: "Kế hoạch vốn ứng trước kéo dài sang năm 20.. "', '', '2021-05-20', NULL, 5, 39, 2, 132, 40, 4, '2021-04-01 09:12:12+07', '2021-05-26 04:14:33+07', '2021-05-20', 100, NULL, NULL, 4072, 1, 2, false, '2021-05-26 04:14:33+07');
INSERT INTO public.issues VALUES (4073, 1, 42, 'Điều 18 mẫu 02/CĐT - Không vào được chi tiết báo cáo', '![](clipboard-202104010918-eu9bv.png)
', '2021-04-01', NULL, 5, 38, 2, 105, 40, 2, '2021-04-01 09:18:33+07', '2021-04-06 09:49:29+07', '2021-04-01', 100, NULL, NULL, 4073, 1, 2, false, '2021-04-06 09:49:29+07');
INSERT INTO public.issues VALUES (4074, 1, 42, 'Điều 20 PL 1C - Fix tổng hợp theo tần suất', 'Cấp dưới gửi lên cấp trên ở quý I nhưng khi cấp trên tổng hợp thì quý II III IV vẫn tổng hợp của quý I', '2021-04-01', NULL, 5, 38, 2, 105, 40, 2, '2021-04-01 03:55:46+07', '2021-04-15 04:18:23+07', '2021-04-01', 100, NULL, NULL, 4074, 1, 2, false, '2021-04-15 04:18:23+07');
INSERT INTO public.issues VALUES (4076, 2, 59, 'Thay đổi cấu trúc hiển thị báo cáo', '', '2021-04-02', NULL, 3, 15, 2, 104, 15, 2, '2021-04-02 02:58:25+07', '2021-04-03 15:31:14+07', '2021-04-02', 100, NULL, NULL, 4076, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4077, 2, 59, 'cập nhật báo cáo tổng hợp', '', NULL, NULL, 3, 15, 2, 104, 15, 2, '2021-04-02 02:59:05+07', '2021-04-05 01:16:48+07', '2021-04-02', 100, NULL, NULL, 4077, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4078, 2, 70, 'Hiển thị dữ liệu chấm công của mỗi nhân viên', '', '2021-04-05', NULL, 5, 39, 2, 107, 39, 3, '2021-04-02 15:17:17+07', '2021-04-28 09:36:04+07', '2021-04-05', 100, NULL, NULL, 4078, 1, 2, false, '2021-04-28 09:36:04+07');
INSERT INTO public.issues VALUES (4080, 2, 59, 'Cập nhật chức năng thanh toán hợp đồng( cập nhật số tiền vào khoản chi)', '', '2021-04-03', NULL, 3, 15, 2, 104, 15, 2, '2021-04-03 09:11:51+07', '2021-04-03 15:31:48+07', '2021-04-03', 100, NULL, NULL, 4080, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4081, 2, 42, 'Điều 15 - Mẫu 2.1', '', '2021-04-03', NULL, 5, 39, 2, 105, 39, 2, '2021-04-05 03:10:20+07', '2021-04-05 16:48:25+07', '2021-04-03', 100, NULL, NULL, 4081, 1, 2, false, '2021-04-05 16:48:25+07');
INSERT INTO public.issues VALUES (4082, 2, 42, 'Điều 15 - Mẫu 2.2', '', '2021-04-03', NULL, 5, 39, 2, 105, 39, 2, '2021-04-05 03:10:34+07', '2021-04-05 16:48:26+07', '2021-04-03', 100, NULL, NULL, 4082, 1, 2, false, '2021-04-05 16:48:26+07');
INSERT INTO public.issues VALUES (4083, 2, 42, 'Điều 15 - Mẫu 2.3', '', '2021-04-03', NULL, 5, 39, 2, 105, 39, 2, '2021-04-05 03:10:47+07', '2021-04-05 16:48:26+07', '2021-04-03', 100, NULL, NULL, 4083, 1, 2, false, '2021-04-05 16:48:26+07');
INSERT INTO public.issues VALUES (4084, 2, 42, 'Điều 15 - Mẫu 2.4', '', '2021-04-03', NULL, 5, 39, 2, 105, 39, 2, '2021-04-05 03:11:04+07', '2021-04-05 16:48:26+07', '2021-04-03', 100, NULL, NULL, 4084, 1, 2, false, '2021-04-05 16:48:26+07');
INSERT INTO public.issues VALUES (4085, 2, 59, 'Biểu đồ thu chi ', '', '2021-04-05', NULL, 3, 15, 2, 109, 15, 1, '2021-04-05 04:02:42+07', '2021-04-05 04:03:23+07', '2021-04-05', 100, NULL, NULL, 4085, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4086, 2, 59, 'Báo cáo tổng hợp công nợ của cửa hàng', '', '2021-04-05', NULL, 3, 15, 2, 109, 15, 1, '2021-04-05 04:03:05+07', '2021-04-05 04:03:23+07', '2021-04-05', 100, NULL, NULL, 4086, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4087, 2, 69, 'Dựng source', '', '2021-04-06', NULL, 3, 15, 2, 110, 15, 5, '2021-04-05 14:51:33+07', '2021-04-15 16:46:11+07', '2021-04-05', 100, NULL, 4147, 4147, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (4088, 2, 69, 'Quản trị hệ thống', '', NULL, NULL, 3, 15, 2, 110, 15, 3, '2021-04-05 14:53:29+07', '2021-04-15 16:46:11+07', '2021-04-05', 100, NULL, 4147, 4147, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (4089, 2, 69, 'Đăng nhập hệ thống', '', NULL, NULL, 3, 15, 2, 110, 15, 3, '2021-04-05 07:54:12+07', '2021-04-15 16:46:11+07', '2021-04-05', 100, NULL, 4147, 4147, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (4090, 2, 69, 'Đăng ký tài khoản', '', NULL, NULL, 3, 15, 2, 110, 15, 3, '2021-04-05 07:54:28+07', '2021-04-19 01:45:38+07', '2021-04-05', 100, NULL, 4147, 4147, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (4091, 2, 69, 'Đổi mật khẩu', '', NULL, NULL, 3, 15, 2, 110, 15, 4, '2021-04-05 15:00:55+07', '2021-04-19 01:45:39+07', '2021-04-05', 100, NULL, 4147, 4147, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (4092, 2, 69, 'Đăng xuất', '', NULL, NULL, 3, 15, 2, 110, 15, 4, '2021-04-05 15:01:16+07', '2021-04-15 16:46:11+07', '2021-04-05', 100, NULL, 4147, 4147, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (4093, 2, 69, 'Quản lý vai trò', '', NULL, NULL, 3, 15, 2, 110, 15, 5, '2021-04-05 15:01:37+07', '2021-04-19 01:45:39+07', '2021-04-05', 100, NULL, 4147, 4147, 14, 15, false, NULL);
INSERT INTO public.issues VALUES (4094, 2, 69, 'Phân quyền tài khoản', '', NULL, NULL, 3, 15, 2, 110, 15, 4, '2021-04-05 15:03:21+07', '2021-04-19 01:45:39+07', '2021-04-05', 100, NULL, 4147, 4147, 16, 17, false, NULL);
INSERT INTO public.issues VALUES (4095, 2, 69, 'Quản trị menu hệ thống', '', NULL, NULL, 3, 15, 2, 110, 15, 4, '2021-04-05 15:04:02+07', '2021-04-15 16:46:12+07', '2021-04-05', 100, NULL, 4147, 4147, 18, 19, false, NULL);
INSERT INTO public.issues VALUES (4096, 2, 69, 'Quản trị tài khoản', '', NULL, NULL, 3, 15, 2, 110, 15, 7, '2021-04-05 15:05:32+07', '2021-04-19 01:46:59+07', '2021-04-05', 100, NULL, 4147, 4147, 20, 29, false, NULL);
INSERT INTO public.issues VALUES (4097, 2, 69, 'Tạo tài khoản', '', NULL, NULL, 3, 15, 2, 110, 15, 3, '2021-04-05 15:06:10+07', '2021-04-12 09:10:24+07', '2021-04-05', 100, NULL, 4096, 4147, 21, 22, false, NULL);
INSERT INTO public.issues VALUES (4098, 2, 69, 'Cập nhật thông tin tài khoản', '', NULL, NULL, 3, 15, 2, 110, 15, 3, '2021-04-05 15:06:29+07', '2021-04-12 09:10:24+07', '2021-04-05', 100, NULL, 4096, 4147, 23, 24, false, NULL);
INSERT INTO public.issues VALUES (4099, 2, 69, 'Cấp lại mật khẩu', '', NULL, NULL, 3, 15, 2, 110, 15, 2, '2021-04-05 15:06:43+07', '2021-04-12 09:10:24+07', '2021-04-05', 100, NULL, 4096, 4147, 25, 26, false, NULL);
INSERT INTO public.issues VALUES (4100, 2, 69, 'Cấp vai trò cho tài khoản', '', NULL, NULL, 3, 15, 2, 110, 15, 2, '2021-04-05 15:07:55+07', '2021-04-12 09:10:24+07', '2021-04-05', 100, NULL, 4096, 4147, 27, 28, false, NULL);
INSERT INTO public.issues VALUES (4101, 1, 42, 'Điều 9 mẫu 1.04 test - Trong cấu hình mẫu khi xóa mẫu vừa tạo thì bị chuyển sang trang trống', '', '2021-05-24', NULL, 5, 39, 2, 133, 40, 5, '2021-04-05 15:35:44+07', '2021-05-31 17:00:41+07', '2021-05-24', 100, NULL, NULL, 4101, 1, 2, false, '2021-05-31 17:00:41+07');
INSERT INTO public.issues VALUES (4102, 1, 42, 'Danh mục mẫu báo cáo - không thực hiện được chức năng tìm kiếm', '', '2021-05-24', NULL, 5, 39, 2, 133, 40, 6, '2021-04-05 15:36:57+07', '2021-05-31 17:00:41+07', '2021-05-24', 100, NULL, NULL, 4102, 1, 2, false, '2021-05-31 17:00:41+07');
INSERT INTO public.issues VALUES (4103, 1, 42, 'Điều 15 mẫu 2.1, 2.2, 2.3, 2.4, 2.5 và PL 01 không thêm được danh mục hàng hóa', '', '2021-04-06', NULL, 5, 38, 2, 132, 40, 4, '2021-04-06 08:36:05+07', '2021-05-26 04:14:33+07', '2021-04-06', 100, NULL, NULL, 4103, 1, 2, false, '2021-05-26 04:14:33+07');
INSERT INTO public.issues VALUES (4104, 1, 42, 'Điều 12 mẫu 06 không lưu được dữ liệu', 'Chỉ lưu được khi nhập những ô kiểu chữ', '2021-05-24', NULL, 5, 38, 2, 133, 40, 6, '2021-04-06 01:55:51+07', '2021-05-31 17:00:41+07', '2021-05-24', 100, NULL, NULL, 4104, 1, 2, false, '2021-05-31 17:00:41+07');
INSERT INTO public.issues VALUES (4105, 1, 42, 'Điều 12 mẫu 07 không lưu được dữ liệu', '', '2021-05-24', NULL, 5, 39, 2, 133, 40, 9, '2021-04-06 01:58:57+07', '2021-05-31 17:00:42+07', '2021-05-24', 100, NULL, NULL, 4105, 1, 2, false, '2021-05-31 17:00:42+07');
INSERT INTO public.issues VALUES (4106, 1, 42, 'Điều 13 mẫu PL 06 - Để thanh kéo ngang cố định', '', '2021-05-24', NULL, 5, 39, 2, 133, 40, 6, '2021-04-06 11:11:03+07', '2021-05-31 17:00:42+07', '2021-05-24', 100, NULL, NULL, 4106, 1, 2, false, '2021-05-31 17:00:42+07');
INSERT INTO public.issues VALUES (4107, 2, 70, 'TaskScheduler lấy dữ liệu chấm công hàng ngày', '', '2021-04-07', NULL, 5, 39, 2, 107, 39, 2, '2021-04-07 13:16:13+07', '2021-04-28 09:36:05+07', '2021-04-07', 100, NULL, NULL, 4107, 1, 2, false, '2021-04-28 09:36:05+07');
INSERT INTO public.issues VALUES (4108, 2, 70, 'Bảng chấm công', '', '2021-04-12', NULL, 5, 8, 2, 113, 8, 6, '2021-04-07 13:21:24+07', '2021-05-14 03:11:05+07', '2021-04-12', 100, NULL, NULL, 4108, 1, 6, false, '2021-05-14 03:11:05+07');
INSERT INTO public.issues VALUES (4109, 2, 70, 'Tạo header bảng chấm công', '', '2021-04-12', NULL, 5, 8, 2, 113, 8, 5, '2021-04-07 13:22:39+07', '2021-04-28 09:36:05+07', '2021-04-12', 100, NULL, 4108, 4108, 2, 3, false, '2021-04-28 09:36:05+07');
INSERT INTO public.issues VALUES (4110, 2, 70, 'Tạo body bảng chấm công', '', '2021-04-12', NULL, 5, 8, 2, 113, 8, 5, '2021-04-07 13:23:28+07', '2021-04-28 09:36:05+07', '2021-04-12', 100, NULL, 4108, 4108, 4, 5, false, '2021-04-28 09:36:05+07');
INSERT INTO public.issues VALUES (4111, 2, 70, 'Dashboard thống kê in-out', '', '2021-04-17', NULL, 5, 39, 2, 113, 8, 5, '2021-04-07 13:25:40+07', '2021-04-28 09:36:05+07', '2021-04-17', 100, NULL, NULL, 4111, 1, 2, false, '2021-04-28 09:36:05+07');
INSERT INTO public.issues VALUES (4112, 2, 70, 'Thêm sửa xóa bảng chấm công', '', '2021-04-08', NULL, 5, 8, 2, 107, 8, 2, '2021-04-08 04:30:41+07', '2021-04-28 09:36:05+07', '2021-04-08', 100, NULL, NULL, 4112, 1, 2, false, '2021-04-28 09:36:05+07');
INSERT INTO public.issues VALUES (4113, 1, 42, 'Điều 15 mẫu 2.1, 2.2, 2.3, 2.4 - Thêm phần nhập danh mục cho loại giá và ghi chú', '', '2021-04-10', NULL, 5, 38, 2, 132, 40, 4, '2021-04-10 03:26:16+07', '2021-05-26 04:14:33+07', '2021-04-10', 100, NULL, NULL, 4113, 1, 2, false, '2021-05-26 04:14:33+07');
INSERT INTO public.issues VALUES (4114, 1, 42, 'Điều  13 PL 5 - bổ sung mục 5', '', '2021-05-24', NULL, 5, 39, 2, 133, 40, 6, '2021-04-10 15:36:23+07', '2021-05-31 17:00:42+07', '2021-05-24', 100, NULL, NULL, 4114, 1, 2, false, '2021-05-31 17:00:42+07');
INSERT INTO public.issues VALUES (4115, 1, 42, 'Điều  13 PL 5 - mục 6 7 cho nhập', '', '2021-05-24', NULL, 5, 39, 2, 133, 40, 6, '2021-04-10 15:36:40+07', '2021-05-31 17:00:42+07', '2021-05-24', 100, NULL, NULL, 4115, 1, 2, false, '2021-05-31 17:00:42+07');
INSERT INTO public.issues VALUES (4116, 5, 61, '31 Hiện trạng sử dụng đất 2010 Cần Thơ_ cấp Tỉnh', '', '2021-04-25', NULL, 1, 33, 2, NULL, 33, 1, '2021-04-12 08:39:27+07', '2021-04-28 13:44:23+07', '2021-04-12', 90, NULL, NULL, 4116, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4117, 5, 61, '34 Hiện trạng sử dụng đất Huyện Cờ Đỏ 2013', '', '2021-04-17', NULL, 1, 32, 2, NULL, 33, 3, '2021-04-12 08:41:06+07', '2021-04-28 13:44:14+07', '2021-04-12', 100, NULL, NULL, 4117, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4118, 5, 61, '32 Hiện trạng sử dụng đất Quận Bình Thủy 2014', '', '2021-04-17', NULL, 1, 43, 2, NULL, 33, 2, '2021-04-12 08:43:25+07', '2021-04-28 13:44:07+07', '2021-04-12', 100, NULL, NULL, 4118, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4119, 5, 61, '33 Hiện trạng sử dụng đất Quận Cái Răng 2014', '', '2021-04-17', NULL, 1, 44, 2, NULL, 33, 1, '2021-04-12 08:44:14+07', '2021-04-28 13:44:01+07', '2021-04-12', 100, NULL, NULL, 4119, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4120, 5, 61, '35 Hiện trạng sử dụng đất Quận Ninh Kiều 2014', '', '2021-04-17', NULL, 1, 24, 2, NULL, 33, 1, '2021-04-12 08:44:54+07', '2021-04-28 13:43:55+07', '2021-04-12', 100, NULL, NULL, 4120, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4121, 2, 70, 'API Hiển thị tree danh mục phòng ban, nhân viên trong bảng chấm công ', '', '2021-04-08', NULL, 5, 41, 2, 107, 41, 2, '2021-04-12 14:10:51+07', '2021-04-28 09:36:05+07', '2021-04-08', 100, NULL, NULL, 4121, 1, 2, false, '2021-04-28 09:36:05+07');
INSERT INTO public.issues VALUES (4122, 2, 70, 'Odata CC_DuLieuBangChamCong', '', '2021-04-09', NULL, 5, 41, 2, 107, 41, 2, '2021-04-12 14:12:44+07', '2021-04-28 09:36:05+07', '2021-04-09', 100, NULL, NULL, 4122, 1, 2, false, '2021-04-28 09:36:05+07');
INSERT INTO public.issues VALUES (4123, 2, 70, 'Odata BangChamCong', '', '2021-04-07', NULL, 5, 41, 2, 107, 41, 3, '2021-04-12 14:13:31+07', '2021-04-28 09:36:05+07', '2021-04-07', 100, NULL, NULL, 4123, 1, 2, false, '2021-04-28 09:36:05+07');
INSERT INTO public.issues VALUES (4124, 2, 70, 'API Lấy dữ liệu chấm công theo tháng', '', '2021-04-12', NULL, 5, 41, 2, 113, 41, 1, '2021-04-12 14:15:54+07', '2021-04-28 09:36:05+07', '2021-04-12', 100, NULL, NULL, 4124, 1, 2, false, '2021-04-28 09:36:05+07');
INSERT INTO public.issues VALUES (4125, 2, 70, 'API tạo chi tiết chấm công ', '', '2021-04-12', NULL, 5, 41, 2, 113, 41, 3, '2021-04-12 14:16:36+07', '2021-04-28 09:36:06+07', '2021-04-12', 100, NULL, NULL, 4125, 1, 2, false, '2021-04-28 09:36:06+07');
INSERT INTO public.issues VALUES (4126, 2, 70, 'API chỉnh sửa chi tiết bảng chấm công', '', '2021-04-13', NULL, 5, 41, 2, 113, 41, 3, '2021-04-12 14:17:05+07', '2021-04-28 09:36:06+07', '2021-04-13', 100, NULL, NULL, 4126, 1, 2, false, '2021-04-28 09:36:06+07');
INSERT INTO public.issues VALUES (4127, 2, 70, 'API phê duyệt báo cáo chấm công', '', '2021-04-14', NULL, 5, 41, 2, 113, 41, 2, '2021-04-12 14:18:19+07', '2021-05-14 03:11:05+07', '2021-04-14', 100, NULL, NULL, 4127, 1, 2, false, '2021-05-14 03:11:05+07');
INSERT INTO public.issues VALUES (4128, 2, 70, 'Odata Ca làm việc', '', '2021-04-09', NULL, 5, 41, 2, 107, 41, 1, '2021-04-12 14:18:58+07', '2021-04-28 09:36:06+07', '2021-04-09', 100, NULL, NULL, 4128, 1, 2, false, '2021-04-28 09:36:06+07');
INSERT INTO public.issues VALUES (4129, 1, 42, 'Điều 19 mẫu 3 - không vào được chi tiết báo cáo', '', '2021-05-24', NULL, 5, 39, 2, 133, 40, 6, '2021-04-12 15:41:17+07', '2021-05-31 17:00:42+07', '2021-05-24', 100, NULL, NULL, 4129, 1, 2, false, '2021-05-31 17:00:42+07');
INSERT INTO public.issues VALUES (4130, 5, 61, '36 Hiện trạng sử dụng đất Quận Ô Môn 2014', '', '2021-04-17', NULL, 1, 29, 2, NULL, 33, 1, '2021-04-12 10:03:16+07', '2021-04-28 13:43:45+07', '2021-04-12', 100, NULL, NULL, 4130, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4131, 2, 70, 'Bảng chấm công lọc theo tháng, theo bộ phận', '', '2021-04-14', NULL, 5, 8, 2, 113, 40, 6, '2021-04-13 03:46:58+07', '2021-04-28 09:36:06+07', '2021-04-14', 100, NULL, NULL, 4131, 1, 2, false, '2021-04-28 09:36:06+07');
INSERT INTO public.issues VALUES (4132, 2, 70, 'Duyệt công của quản lý, thực tế với công trên máy', '', '2021-05-10', NULL, 3, 8, 2, 123, 40, 7, '2021-04-13 03:47:24+07', '2021-05-15 04:00:02+07', '2021-05-10', 100, NULL, NULL, 4132, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4133, 2, 70, 'Phân quyền phê duyệt công', '', '2021-04-15', NULL, 5, 8, 2, 123, 40, 7, '2021-04-13 03:47:39+07', '2021-05-14 03:11:39+07', '2021-04-15', 100, NULL, NULL, 4133, 1, 2, false, '2021-05-14 03:11:39+07');
INSERT INTO public.issues VALUES (4134, 2, 70, 'Định nghĩa giờ làm', '', '2021-04-14', NULL, 5, 39, 2, 113, 40, 6, '2021-04-13 03:47:52+07', '2021-04-28 09:36:06+07', '2021-04-14', 100, NULL, NULL, 4134, 1, 2, false, '2021-04-28 09:36:06+07');
INSERT INTO public.issues VALUES (4135, 2, 70, 'Phân ca', '', '2021-04-16', NULL, 5, 39, 2, 113, 40, 6, '2021-04-13 03:48:14+07', '2021-04-28 09:36:06+07', '2021-04-15', 100, NULL, NULL, 4135, 1, 2, false, '2021-04-28 09:36:06+07');
INSERT INTO public.issues VALUES (4136, 2, 70, 'File in công tổng quát cả tháng', '', '2021-04-16', NULL, 5, 41, 2, 113, 40, 6, '2021-04-13 03:48:31+07', '2021-05-14 03:11:05+07', '2021-04-16', 100, NULL, NULL, 4136, 1, 2, false, '2021-05-14 03:11:05+07');
INSERT INTO public.issues VALUES (4137, 2, 70, 'File in chi tiết ngày công theo tuần', '', '2021-04-16', NULL, 5, 41, 2, 113, 40, 6, '2021-04-13 03:48:47+07', '2021-05-14 03:11:05+07', '2021-04-16', 100, NULL, NULL, 4137, 1, 2, false, '2021-05-14 03:11:05+07');
INSERT INTO public.issues VALUES (4138, 2, 70, 'File in công cho từng cá nhân', '', '2021-05-10', NULL, 3, 38, 2, 123, 40, 8, '2021-04-13 03:49:02+07', '2021-05-15 04:01:24+07', '2021-05-10', 100, NULL, NULL, 4138, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4139, 2, 70, 'Khóa bảng chấm công', '', '2021-04-16', NULL, 5, 8, 2, 123, 40, 7, '2021-04-13 03:49:17+07', '2021-05-14 03:11:39+07', '2021-04-16', 100, NULL, NULL, 4139, 1, 2, false, '2021-05-14 03:11:39+07');
INSERT INTO public.issues VALUES (4145, 2, 70, 'Danh mục Khối văn phòng', '', '2021-04-14', NULL, 5, 39, 2, 113, 39, 3, '2021-04-15 02:23:36+07', '2021-04-28 09:36:06+07', '2021-04-14', 100, NULL, NULL, 4145, 1, 2, false, '2021-04-28 09:36:06+07');
INSERT INTO public.issues VALUES (4146, 2, 69, 'Mobile', '', NULL, NULL, 1, NULL, 2, 110, 15, 7, '2021-04-15 16:45:28+07', '2021-05-07 10:34:05+07', '2021-04-28', 57, NULL, NULL, 4146, 1, 16, false, NULL);
INSERT INTO public.issues VALUES (4147, 2, 69, 'Web', '', '2021-04-06', NULL, 1, NULL, 2, 110, 15, 12, '2021-04-15 16:45:40+07', '2021-04-19 01:45:39+07', '2021-04-05', 100, NULL, NULL, 4147, 1, 30, false, NULL);
INSERT INTO public.issues VALUES (4148, 1, 70, 'Thời gian trong lịch sử thay đổi ngày công sai so với thời gian thực tế', '![](clipboard-202104160914-wyuzg.png)
', '2021-04-16', NULL, 5, 41, 2, 113, 40, 2, '2021-04-16 02:14:27+07', '2021-05-14 03:11:05+07', '2021-04-16', 100, NULL, NULL, 4148, 1, 2, false, '2021-05-14 03:11:05+07');
INSERT INTO public.issues VALUES (4149, 1, 70, 'Không thêm được bảng chấm công của tháng khác vào danh sách bảng chấm công', '', '2021-04-16', NULL, 5, 41, 2, 123, 40, 3, '2021-04-16 02:19:34+07', '2021-05-11 03:07:07+07', '2021-04-16', 0, NULL, NULL, 4149, 1, 2, false, '2021-05-11 03:07:07+07');
INSERT INTO public.issues VALUES (4150, 1, 70, 'Khi thay đổi thông tin chi tiết chấm công, nhập lý do thay đổi bị giới hạn số lượng từ ngữ', '', '2021-04-16', NULL, 5, 8, 2, 123, 40, 5, '2021-04-16 02:26:39+07', '2021-05-14 03:11:39+07', '2021-04-16', 100, NULL, NULL, 4150, 1, 2, false, '2021-05-14 03:11:39+07');
INSERT INTO public.issues VALUES (4151, 1, 70, 'Không thực hiện được chức năng tìm kiếm trong danh sách phòng ban', '', '2021-04-16', NULL, 5, 39, 2, 113, 40, 3, '2021-04-16 02:48:11+07', '2021-05-14 03:11:05+07', '2021-04-16', 100, NULL, NULL, 4151, 1, 2, false, '2021-05-14 03:11:05+07');
INSERT INTO public.issues VALUES (4152, 1, 70, 'không thực hiện được chức năng tìm kiếm trong danh sách máy chấm công', '', '2021-04-17', NULL, 5, 39, 2, 113, 40, 3, '2021-04-17 08:34:57+07', '2021-05-14 03:11:05+07', '2021-04-17', 100, NULL, NULL, 4152, 1, 2, false, '2021-05-14 03:11:05+07');
INSERT INTO public.issues VALUES (4153, 1, 70, 'Trong danh sách bảng chấm công chức năng tìm kiếm không hiển thị tất cả các kết quả liên quan', '', '2021-04-17', NULL, 5, 39, 2, 113, 40, 3, '2021-04-17 01:45:57+07', '2021-05-14 03:11:05+07', '2021-04-17', 100, NULL, NULL, 4153, 1, 2, false, '2021-05-14 03:11:05+07');
INSERT INTO public.issues VALUES (4154, 1, 70, 'Trong danh sách ký hiệu chấm công chức năng tìm kiếm không hiển thị tất cả các kết quả liên quan', '', '2021-04-17', NULL, 5, 39, 2, 113, 40, 3, '2021-04-17 01:46:25+07', '2021-05-14 03:11:05+07', '2021-04-17', 100, NULL, NULL, 4154, 1, 2, false, '2021-05-14 03:11:05+07');
INSERT INTO public.issues VALUES (4190, 1, 46, 'Chưa thực hiện được chức năng trả hàng', '', '2021-05-17', NULL, 3, 41, 2, 122, 40, 6, '2021-05-05 09:05:42+07', '2021-06-01 11:12:14+07', '2021-05-17', 100, NULL, NULL, 4190, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4155, 1, 70, 'Trong danh sách ca làm việc chức năng tìm kiếm không hiển thị tất cả các kết quả liên quan', '', '2021-04-17', NULL, 5, 39, 2, 113, 40, 3, '2021-04-17 01:47:26+07', '2021-05-14 03:11:05+07', '2021-04-17', 100, NULL, NULL, 4155, 1, 2, false, '2021-05-14 03:11:05+07');
INSERT INTO public.issues VALUES (4156, 2, 69, 'Quan lý endpoint theo từng vai trò', '', '2021-04-13', 31, 3, 15, 2, 115, 15, 2, '2021-04-19 01:51:38+07', '2021-04-19 01:57:21+07', '2021-04-12', 100, NULL, 4159, 4159, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (4157, 2, 69, 'Cập nhật lại Datatable phù hợp với odata mới', '', '2021-04-15', 31, 3, 15, 2, 115, 15, 3, '2021-04-19 01:52:07+07', '2021-04-19 01:57:22+07', '2021-04-13', 100, NULL, 4159, 4159, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (4158, 2, 69, 'Thay đổi giao diện trang login', '', '2021-04-15', 31, 3, 15, 2, 115, 15, 3, '2021-04-19 01:52:46+07', '2021-04-19 01:57:22+07', '2021-04-15', 100, NULL, 4159, 4159, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (4159, 2, 69, 'Web', '', '2021-04-17', NULL, 1, NULL, 2, 115, 15, 3, '2021-04-19 01:56:57+07', '2021-04-19 09:30:29+07', '2021-04-12', 100, NULL, NULL, 4159, 1, 16, false, NULL);
INSERT INTO public.issues VALUES (4160, 2, 69, 'Quản lý danh sách nhân sự', '', NULL, 31, 3, 15, 2, 116, 15, 4, '2021-04-19 01:59:55+07', '2021-04-24 16:42:10+07', '2021-04-19', 100, NULL, 4161, 4161, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (4161, 2, 69, 'Web', '', '2021-04-24', 31, 1, NULL, 2, 116, 15, 7, '2021-04-19 02:00:37+07', '2021-04-24 16:42:10+07', '2021-04-19', 100, NULL, NULL, 4161, 1, 18, false, NULL);
INSERT INTO public.issues VALUES (4162, 2, 69, 'Tạo danh mục vị trí (quận, huyện, xã ,thành phố)', '', '2021-04-17', 31, 3, 37, 2, 115, 37, 3, '2021-04-19 02:01:02+07', '2021-04-19 09:30:29+07', '2021-04-16', 100, NULL, 4159, 4159, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (4163, 2, 69, 'Tạo danh mục chức danh', '', '2021-04-17', 31, 3, 37, 2, 115, 37, 3, '2021-04-19 02:01:46+07', '2021-04-19 09:30:29+07', '2021-04-16', 100, NULL, 4159, 4159, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (4164, 2, 69, 'Tạo danh mục chuyên mục', '', '2021-04-17', 31, 3, 37, 2, 115, 37, 2, '2021-04-19 02:02:44+07', '2021-04-19 09:30:30+07', '2021-04-16', 100, NULL, 4159, 4159, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (4165, 2, 69, 'Tạo danh mục loại phiên họp', '', '2021-04-17', 31, 3, 37, 2, 115, 37, 2, '2021-04-19 09:03:12+07', '2021-04-19 09:30:30+07', '2021-04-16', 100, NULL, 4159, 4159, 14, 15, false, NULL);
INSERT INTO public.issues VALUES (4166, 2, 69, 'Tạo danh mục nhóm thành viên', '', '2021-04-19', NULL, 3, 37, 2, 116, 37, 1, '2021-04-19 11:21:46+07', '2021-04-19 11:22:27+07', '2021-04-19', 100, NULL, 4161, 4161, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (4167, 2, 69, 'Tạo danh mục đơn vị', '', '2021-04-19', NULL, 3, 37, 2, 116, 37, 1, '2021-04-19 11:22:12+07', '2021-04-23 08:19:54+07', '2021-04-19', 100, NULL, 4161, 4161, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (4168, 1, 70, 'Không vào được loại chấm công trong danh sách bảng duyệt công', '', '2021-05-10', NULL, 5, 41, 2, 123, 40, 3, '2021-04-20 01:32:59+07', '2021-05-15 04:02:07+07', '2021-05-10', 0, NULL, NULL, 4168, 1, 2, false, '2021-05-15 04:02:07+07');
INSERT INTO public.issues VALUES (4169, 1, 70, 'Ở mục bảng duyệt công chỉnh tiêu đều danh sách bảng chấm công thành danh sách bảng duyệt công', '', '2021-04-20', NULL, 5, 8, 2, 123, 40, 5, '2021-04-20 01:33:54+07', '2021-05-14 03:11:40+07', '2021-04-20', 100, NULL, NULL, 4169, 1, 2, false, '2021-05-14 03:11:40+07');
INSERT INTO public.issues VALUES (4170, 2, 69, 'Cập nhật xóa menu parent trong quản lý menu', '', '2021-04-20', 31, 3, 15, 2, 116, 15, 1, '2021-04-20 03:08:52+07', '2021-04-20 03:09:09+07', '2021-04-20', 100, NULL, 4161, 4161, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (4171, 2, 69, 'quản lý phòng họp', '', '2021-04-24', 31, 3, 15, 2, 116, 15, 1, '2021-04-24 16:39:43+07', '2021-04-24 16:42:10+07', '2021-04-22', 100, NULL, 4161, 4161, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (4172, 2, 69, 'Sơ đồ phòng họp', '', '2021-04-24', 31, 3, 15, 2, 116, 15, 3, '2021-04-24 16:40:50+07', '2021-04-24 16:43:36+07', '2021-04-20', 100, NULL, 4161, 4161, 12, 17, false, NULL);
INSERT INTO public.issues VALUES (4173, 2, 69, 'lưu hình sơ đồ phòng họp', '', '2021-04-24', 31, 3, 15, 2, 116, 15, 2, '2021-04-24 16:41:31+07', '2021-04-24 16:43:36+07', '2021-04-23', 100, NULL, 4172, 4161, 13, 14, false, NULL);
INSERT INTO public.issues VALUES (4174, 2, 69, 'Cấu hình sơ đồ mẫu', '', '2021-04-22', 31, 3, 15, 2, 116, 15, 1, '2021-04-24 16:43:13+07', '2021-04-24 16:43:55+07', '2021-04-20', 100, NULL, 4172, 4161, 15, 16, false, NULL);
INSERT INTO public.issues VALUES (4175, 2, 69, 'Login', '', NULL, NULL, 1, 17, 2, NULL, 17, 0, '2021-04-28 02:42:36+07', '2021-04-28 02:42:36+07', '2021-04-28', 100, NULL, 4146, 4146, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (4176, 2, 69, 'Change password', '', NULL, NULL, 1, 10, 2, NULL, 17, 0, '2021-04-28 02:43:21+07', '2021-04-28 02:43:21+07', '2021-04-28', 100, NULL, 4146, 4146, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (4177, 2, 69, 'Update profile', '', NULL, NULL, 3, 12, 2, NULL, 17, 2, '2021-04-28 02:43:51+07', '2021-05-07 10:34:05+07', '2021-04-28', 100, NULL, 4146, 4146, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (4178, 2, 69, 'Notification', '', NULL, NULL, 1, NULL, 2, NULL, 17, 0, '2021-04-28 02:44:03+07', '2021-04-28 02:44:03+07', '2021-04-28', 0, NULL, 4146, 4146, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (4179, 2, 69, 'Meeting list', '', NULL, NULL, 1, 17, 2, NULL, 17, 0, '2021-04-28 02:45:42+07', '2021-04-28 02:45:42+07', '2021-04-28', 0, NULL, 4146, 4146, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (4180, 2, 69, 'Meeting documents', '', NULL, NULL, 1, NULL, 2, NULL, 17, 0, '2021-04-28 02:46:04+07', '2021-04-28 02:46:04+07', '2021-04-28', 0, NULL, 4146, 4146, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (4181, 2, 69, 'Logout', '', NULL, NULL, 1, 10, 2, NULL, 17, 0, '2021-04-28 09:50:06+07', '2021-04-28 09:50:06+07', '2021-04-28', 100, NULL, 4146, 4146, 14, 15, false, NULL);
INSERT INTO public.issues VALUES (4182, 5, 61, '37 Hiện trạng sử dụng đất Huyện Phong Điền 2014', '', '2021-04-24', NULL, 1, 43, 2, NULL, 33, 1, '2021-04-28 13:46:08+07', '2021-04-28 13:48:28+07', '2021-04-19', 100, NULL, NULL, 4182, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4183, 5, 61, '38 Hiện trạng sử dụng đất Huyện Thới Lai 2013', '', '2021-04-24', NULL, 1, 44, 2, NULL, 33, 1, '2021-04-28 13:46:45+07', '2021-04-28 13:48:15+07', '2021-04-19', 100, NULL, NULL, 4183, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4184, 5, 61, '39 Hiện trạng sử dụng đất Huyện Vĩnh Thạnh 2013', '', '2021-04-27', NULL, 1, 32, 2, NULL, 33, 1, '2021-04-28 13:47:57+07', '2021-04-28 13:48:35+07', '2021-04-20', 100, NULL, NULL, 4184, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4185, 1, 46, 'Không vào được menu để tạo đơn hàng', '', '2021-04-28', NULL, 3, 41, 2, 118, 40, 4, '2021-04-28 10:03:43+07', '2021-05-07 01:13:42+07', '2021-04-28', 100, NULL, NULL, 4185, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4186, 1, 46, 'In phiếu khi hoàn thành tạo đơn hàng vẫn để tên Lan Thà', '', '2021-05-03', NULL, 3, 41, 2, 118, 40, 3, '2021-05-03 11:43:52+07', '2021-05-07 01:14:10+07', '2021-05-03', 100, NULL, NULL, 4186, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4187, 1, 46, 'Khi thêm thiết bị đầu đọc thẻ bỏ lựa chọn dịch vụ WC', '', '2021-05-10', NULL, 3, 39, 2, 120, 40, 9, '2021-05-03 14:21:07+07', '2021-05-10 10:36:59+07', '2021-05-10', 100, NULL, NULL, 4187, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4188, 1, 46, 'In phiếu thu chi hiển thị sai số tiền viết bằng chữ khi giá trị hơn 1 tỷ đồng', 'nhập 10 tỷ đồng nhưng khi viết bằng chữ chỉ có tỷ đồng.
![](clipboard-202105041439-kla2i.png)
', '2021-05-17', NULL, 3, 41, 2, 122, 40, 8, '2021-05-04 14:40:25+07', '2021-06-01 11:12:14+07', '2021-05-17', 100, NULL, NULL, 4188, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4189, 1, 46, 'thiết lập giá mục phân loại không hiển thị nội dung', '', '2021-05-04', NULL, 3, 41, 2, 118, 40, 2, '2021-05-04 14:44:23+07', '2021-05-07 01:14:11+07', '2021-05-04', 100, NULL, NULL, 4189, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4191, 1, 46, 'Sản phẩm là thành phẩm thì không bán được', '', '2021-05-05', NULL, 3, 41, 2, 118, 40, 2, '2021-05-05 10:17:03+07', '2021-05-07 01:14:11+07', '2021-05-05', 100, NULL, NULL, 4191, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4192, 1, 46, 'Khi thanh toán mà số tiền trong thẻ không đủ phải nạp thêm, giao diện nhập số tiền khác sai bố cục', '', '2021-05-05', NULL, 3, 8, 2, 118, 40, 2, '2021-05-05 10:20:08+07', '2021-05-07 01:14:11+07', '2021-05-05', 100, NULL, NULL, 4192, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4193, 1, 46, 'không thể hủy đơn hàng', '', '2021-05-05', NULL, 5, 41, 2, 118, 40, 1, '2021-05-05 13:20:11+07', '2021-05-06 13:21:32+07', '2021-05-05', 0, NULL, NULL, 4193, 1, 2, false, '2021-05-06 13:21:32+07');
INSERT INTO public.issues VALUES (4194, 1, 46, 'Trong danh mục sản phẩm, ở loại thành phẩm danh sách không có sản phẩm nhưng vẫn hiển thị số lượng 2', '', '2021-05-10', NULL, 3, 39, 2, 120, 40, 5, '2021-05-05 13:33:02+07', '2021-05-10 10:17:20+07', '2021-05-10', 100, NULL, NULL, 4194, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4195, 1, 46, 'Trong phiếu mua hàng sai địa chỉ mua hàng', '![](clipboard-202105061021-ef4lj.png)
', '2021-05-17', NULL, 3, 41, 2, 122, 40, 6, '2021-05-06 10:21:52+07', '2021-06-01 11:12:15+07', '2021-05-17', 100, NULL, NULL, 4195, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4196, 1, 46, 'Chưa thực hiện được chức năng hủy đơn hàng', '', '2021-05-17', NULL, 3, 41, 2, 122, 40, 6, '2021-05-06 13:21:01+07', '2021-06-01 11:12:15+07', '2021-05-17', 100, NULL, NULL, 4196, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4197, 2, 46, 'Xây dựng chức năng quẹt thẻ ATM', '', '2021-05-17', NULL, 1, 39, 2, 33, 40, 6, '2021-05-07 01:16:28+07', '2021-06-01 11:10:41+07', '2021-05-17', 0, NULL, NULL, 4197, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4198, 1, 46, 'Khi thêm mới tài khoản không thêm được vai trò thu ngân', '', '2021-05-07', NULL, 3, 39, 2, 118, 40, 2, '2021-05-07 01:18:36+07', '2021-05-07 09:04:38+07', '2021-05-07', 100, NULL, NULL, 4198, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4199, 1, 46, 'Trong danh sách nhân viên không sửa được mã nhân viên', '', '2021-05-07', NULL, 3, 41, 2, 118, 40, 2, '2021-05-07 01:19:42+07', '2021-05-07 10:18:15+07', '2021-05-07', 100, NULL, NULL, 4199, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4200, 2, 46, 'Trong báo cáo báo cáo doanh thu thêm cột tên nhân viên, thời gian làm việc để biết được nhân viên nào? làm thời gian nào? doanh thu bao nhiêu?', '', '2021-05-17', NULL, 1, 41, 2, 122, 40, 6, '2021-05-07 01:21:09+07', '2021-05-15 02:06:06+07', '2021-05-17', 0, NULL, NULL, 4200, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4201, 2, 46, 'Thêm 1 báo cáo dành riêng cho thu ngân bao gồm thời gian làm việc, tên nhân viên, doanh thu bán được,...', '', '2021-05-17', NULL, 1, 41, 2, 122, 40, 5, '2021-05-07 01:22:18+07', '2021-05-15 02:06:06+07', '2021-05-17', 0, NULL, NULL, 4201, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4202, 2, 71, 'Thêm footer tổng tiền và tổng số lượng trong nhập hàng', '', '2021-05-07', NULL, 3, 39, 2, 119, 40, 3, '2021-05-07 14:26:45+07', '2021-05-10 09:30:36+07', '2021-05-07', 100, NULL, NULL, 4202, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4203, 2, 71, 'Trong sổ quỹ khi lập phiếu thu cho phép sửa, xóa số tiền và nội dung đã nhập', '', '2021-05-07', NULL, 3, 39, 2, 119, 40, 3, '2021-05-07 07:35:32+07', '2021-05-10 09:29:52+07', '2021-05-07', 100, NULL, NULL, 4203, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4204, 2, 71, 'Phiếu xuất hàng bỏ cột hàng đi, hàng về,... thay vào là cột tên sản phẩm, số lượng, đơn giá,..', '', '2021-05-10', NULL, 3, 41, 2, 121, 40, 6, '2021-05-07 07:39:16+07', '2021-05-10 15:47:12+07', '2021-05-10', 100, NULL, NULL, 4204, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4205, 2, 46, 'Thay logo trong hóa đơn bán hàng', '', '2021-05-17', NULL, 1, 39, 2, 122, 40, 5, '2021-05-07 15:47:06+07', '2021-05-15 02:06:06+07', '2021-05-17', 0, NULL, NULL, 4205, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4206, 1, 46, 'Trong sổ quỹ khi lập phiếu thu cho phép sửa, xóa số tiền và nội dung đã nhập', '', '2021-05-17', NULL, 3, 41, 2, 122, 40, 6, '2021-05-10 08:31:10+07', '2021-06-01 11:12:15+07', '2021-05-17', 100, NULL, NULL, 4206, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4207, 2, 71, ' Xuất đơn hàng ', '', '2021-05-10', NULL, 3, 41, 2, 121, 39, 3, '2021-05-10 02:40:05+07', '2021-05-10 15:47:56+07', '2021-05-10', 100, NULL, NULL, 4207, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4208, 1, 71, 'Hủy đơn trả hàng', '', '2021-05-10', NULL, 3, 41, 2, 121, 39, 2, '2021-05-10 02:40:58+07', '2021-05-10 16:54:54+07', '2021-05-10', 100, NULL, NULL, 4208, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4209, 1, 71, 'Xem phiếu xuất hàng', '', '2021-05-10', NULL, 3, 41, 2, 121, 39, 5, '2021-05-10 02:43:20+07', '2021-05-14 02:36:27+07', '2021-05-10', 100, NULL, NULL, 4209, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4210, 2, 71, 'Thay đổi Logo', '', '2021-05-10', NULL, 1, 41, 2, 121, 39, 1, '2021-05-10 02:45:02+07', '2021-05-10 02:53:37+07', '2021-05-10', 0, NULL, NULL, 4210, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4211, 2, 71, 'Phân quyền sửa sổ quỹ', 'Yêu cầu:
1. Điều hành có thể sửa mọi phiếu
2. Người nào tạo người đó sửa', '2021-05-10', NULL, 3, 39, 2, 121, 39, 2, '2021-05-10 02:57:59+07', '2021-05-10 15:31:46+07', '2021-05-10', 100, NULL, NULL, 4211, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4212, 2, 71, 'Hợp đồng', '', '2021-05-15', NULL, 2, 41, 2, 121, 39, 3, '2021-05-10 03:07:57+07', '2021-05-21 16:40:01+07', '2021-05-10', 100, NULL, NULL, 4212, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4213, 2, 71, 'Tạo phiếu xuất hàng', '', '2021-05-11', NULL, 3, 41, 2, 121, 41, 2, '2021-05-10 15:48:47+07', '2021-05-12 15:59:44+07', '2021-05-11', 100, NULL, NULL, 4213, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4214, 2, 71, 'Trả đơn hàng', '', '2021-05-10', NULL, 1, 41, 2, 121, 41, 1, '2021-05-10 15:49:11+07', '2021-05-10 15:49:33+07', '2021-05-10', 100, NULL, NULL, 4214, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4215, 1, 70, 'Sửa phiếu in bảng chấm công', '- sửa chính tả
- sửa giờ công', '2021-05-11', NULL, 3, 41, 2, 123, 40, 3, '2021-05-11 02:05:58+07', '2021-05-15 04:03:36+07', '2021-05-11', 100, NULL, NULL, 4215, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4216, 1, 70, 'ở bảng chấm công đã phê duyệt chưa có tổng giờ', '', '2021-05-11', NULL, 5, 41, 2, 123, 40, 3, '2021-05-11 03:05:05+07', '2021-05-14 03:11:40+07', '2021-05-11', 100, NULL, NULL, 4216, 1, 2, false, '2021-05-14 03:11:40+07');
INSERT INTO public.issues VALUES (4217, 1, 70, 'Bỏ chức năng chọn đang làm việc khi thêm mới nhân viên', '', '2021-05-12', NULL, 3, 39, 2, 123, 40, 2, '2021-05-12 13:42:54+07', '2021-05-15 04:03:56+07', '2021-05-12', 100, NULL, NULL, 4217, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4218, 1, 70, 'checkin để màu xanh, checkout để màu cam hoặc hồng', '', '2021-05-12', NULL, 3, 39, 2, 123, 40, 1, '2021-05-12 13:43:48+07', '2021-05-18 08:34:00+07', '2021-05-12', 100, NULL, NULL, 4218, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4219, 1, 70, 'khi duyệt công tính giờ số lẻ nhưng in phiếu hiển thị số chẵn', '', '2021-05-13', NULL, 5, 41, 2, 123, 40, 3, '2021-05-13 01:37:02+07', '2021-05-14 03:11:40+07', '2021-05-13', 100, NULL, NULL, 4219, 1, 2, false, '2021-05-14 03:11:40+07');
INSERT INTO public.issues VALUES (4220, 1, 70, 'Khi chỉnh sửa giờ công --> tổng giờ công không cập nhật', '', '2021-05-13', NULL, 5, 41, 2, 123, 40, 3, '2021-05-13 01:45:04+07', '2021-05-14 03:11:40+07', '2021-05-13', 100, NULL, NULL, 4220, 1, 2, false, '2021-05-14 03:11:40+07');
INSERT INTO public.issues VALUES (4221, 1, 70, 'Không thêm được nhân viên mới', '![](clipboard-202105140822-698pz.png)
', '2021-05-14', NULL, 3, 41, 2, 123, 40, 1, '2021-05-14 01:23:11+07', '2021-05-15 06:51:26+07', '2021-05-14', 100, NULL, NULL, 4221, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4222, 1, 70, 'Giao diện tổng quan chỉ hiển thị thông tin nhân viên theo bộ phận', '', '2021-05-14', NULL, 3, 8, 2, 123, 40, 2, '2021-05-14 01:55:00+07', '2021-05-15 04:06:13+07', '2021-05-14', 100, NULL, NULL, 4222, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4223, 1, 70, 'Trong bản chấm công trưởng phòng chỉ có quyền quản lý những nhân viên có trong bộ phận', '', '2021-05-14', NULL, 3, 41, 2, 123, 40, 2, '2021-05-14 01:58:55+07', '2021-05-15 04:07:09+07', '2021-05-14', 100, NULL, NULL, 4223, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4224, 1, 71, 'Chưa thêm được khách hàng khi tạo đơn hàng', '', '2021-05-14', NULL, 3, 41, 2, 121, 40, 1, '2021-05-14 02:04:26+07', '2021-05-18 08:36:22+07', '2021-05-14', 100, NULL, NULL, 4224, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4225, 1, 71, 'Không nhập hàng thành công - hiển thị giao diện trống', '', '2021-05-14', NULL, 3, 41, 2, 121, 40, 1, '2021-05-14 02:05:28+07', '2021-05-18 08:36:51+07', '2021-05-14', 100, NULL, NULL, 4225, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4226, 1, 71, 'Trong giao diện chỉnh sửa phiếu thu, chỉnh tiêu đề liên hệ, ngày tạo, loại thu chi ', '', '2021-05-14', NULL, 3, 8, 2, 121, 40, 5, '2021-05-14 02:30:36+07', '2021-05-22 02:55:09+07', '2021-05-14', 100, NULL, NULL, 4226, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4227, 1, 71, 'Trong giao diện chỉnh sửa phiếu chi, chỉnh tiêu đề liên hệ, ngày tạo, loại thu chi ', '', '2021-05-14', NULL, 3, 8, 2, 121, 40, 2, '2021-05-14 02:33:19+07', '2021-05-22 02:55:09+07', '2021-05-14', 100, NULL, NULL, 4227, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4228, 1, 71, 'Khi thêm phiếu xuất hàng không thực hiện được chức năng xem phiếu ', '', '2021-05-14', NULL, 3, 41, 2, 121, 40, 1, '2021-05-14 02:40:13+07', '2021-05-15 02:11:11+07', '2021-05-14', 100, NULL, NULL, 4228, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4229, 1, 71, 'Khi thêm phiếu xuất hàng không tìm kiếm được theo thời gian từ ngày đến ngày', '', '2021-05-14', NULL, 3, 8, 2, 121, 40, 2, '2021-05-14 02:43:27+07', '2021-05-22 02:54:48+07', '2021-05-14', 100, NULL, NULL, 4229, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4230, 1, 71, 'Không thực hiện được chức năng hủy đơn hàng', '', '2021-05-14', NULL, 3, 41, 2, 121, 40, 2, '2021-05-14 02:45:56+07', '2021-05-18 08:37:11+07', '2021-05-14', 100, NULL, NULL, 4230, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4231, 1, 71, 'Không xem được phiếu xuất hàng, phiếu giao nhận va thanh toán trong chi tiết phiếu xuất', '', '2021-05-14', NULL, 3, 41, 2, 121, 40, 1, '2021-05-14 02:46:58+07', '2021-05-18 10:00:43+07', '2021-05-14', 100, NULL, NULL, 4231, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4232, 1, 71, 'Không thực hiện được chức năng trả hàng', '', NULL, NULL, 1, NULL, 2, NULL, 40, 0, '2021-05-14 02:49:15+07', '2021-05-14 02:49:15+07', '2021-05-14', 0, NULL, NULL, 4232, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4233, 1, 71, 'Không thực hiện được chức năng trả hàng', '', '2021-05-14', NULL, 3, 41, 2, 121, 40, 1, '2021-05-14 02:50:40+07', '2021-05-18 09:06:30+07', '2021-05-14', 100, NULL, NULL, 4233, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4234, 1, 71, 'Khi trả hàng cho hiển thị số lượng tồn của sản phẩm', '![](clipboard-202105140951-jiane.png)
', '2021-05-14', NULL, 3, 8, 2, 121, 40, 2, '2021-05-14 02:52:00+07', '2021-05-22 02:54:03+07', '2021-05-14', 100, NULL, NULL, 4234, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4235, 1, 71, 'Ở khách hàng không theo nhân viên bán hàng', '![](clipboard-202105150931-idksc.png)
', '2021-05-15', NULL, 3, 8, 2, 121, 40, 2, '2021-05-15 02:31:23+07', '2021-05-22 02:54:03+07', '2021-05-15', 100, NULL, NULL, 4235, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4236, 1, 71, 'Xem lại giá vốn trong thẻ kho', '![](clipboard-202105150941-gkmh4.png)
', '2021-05-15', NULL, 3, 41, 2, 121, 40, 2, '2021-05-15 02:41:13+07', '2021-05-22 02:54:03+07', '2021-05-15', 100, NULL, NULL, 4236, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4237, 2, 72, 'Thiết kế database ', '', '2021-06-07', NULL, 5, 38, 3, 128, 38, 7, '2021-05-15 02:42:00+07', '2021-07-01 14:29:59+07', '2021-06-07', 100, NULL, NULL, 4237, 1, 2, false, '2021-07-01 14:29:59+07');
INSERT INTO public.issues VALUES (4238, 2, 72, 'Dựng source backend', '', '2021-06-07', NULL, 5, 38, 3, 128, 38, 7, '2021-05-15 02:42:27+07', '2021-07-01 14:29:59+07', '2021-06-07', 100, NULL, NULL, 4238, 1, 2, false, '2021-07-01 14:29:59+07');
INSERT INTO public.issues VALUES (4239, 2, 72, 'Dựng source frontend', '', '2021-06-07', NULL, 5, 39, 3, 128, 38, 7, '2021-05-15 02:43:04+07', '2021-07-01 14:29:59+07', '2021-06-07', 100, NULL, NULL, 4239, 1, 2, false, '2021-07-01 14:29:59+07');
INSERT INTO public.issues VALUES (4240, 2, 72, 'API: đăng ký tài khoản', '', '2021-06-10', NULL, 5, 52, 2, 128, 38, 13, '2021-05-15 02:44:51+07', '2021-07-01 14:29:59+07', '2021-06-07', 100, NULL, NULL, 4240, 1, 2, false, '2021-07-01 14:29:59+07');
INSERT INTO public.issues VALUES (4241, 1, 71, 'chỉnh tiêu đề trong phiếukhi xuất hàng', '![](clipboard-202105150945-esydm.png)
', '2021-05-15', NULL, 3, 41, 2, 121, 40, 1, '2021-05-15 02:45:59+07', '2021-05-18 11:20:56+07', '2021-05-15', 100, NULL, NULL, 4241, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4242, 2, 72, 'API: quản lý danh mục cơ sở', 'Thêm, sửa, xóa danh mục cơ sở', '2021-06-07', NULL, 5, 38, 2, 128, 38, 6, '2021-05-15 02:46:02+07', '2021-07-01 14:29:59+07', '2021-06-07', 100, NULL, NULL, 4242, 1, 2, false, '2021-07-01 14:29:59+07');
INSERT INTO public.issues VALUES (4243, 2, 72, 'API: Phân quyền CRUD theo từng doanh nghiệp', 'Chi cục thấy hết
Doanh nghiệp nào thấy doanh nghiệp đó', '2021-06-14', NULL, 5, 52, 2, 129, 38, 11, '2021-05-15 02:48:39+07', '2021-07-01 14:30:22+07', '2021-06-14', 100, NULL, NULL, 4243, 1, 2, false, '2021-07-01 14:30:22+07');
INSERT INTO public.issues VALUES (4244, 2, 72, 'API: quản lý nhóm danh mục phương tiện đo', '', '2021-06-14', NULL, 5, 41, 2, 129, 38, 10, '2021-05-15 02:50:41+07', '2021-07-01 14:30:22+07', '2021-06-14', 100, NULL, NULL, 4244, 1, 2, false, '2021-07-01 14:30:22+07');
INSERT INTO public.issues VALUES (4245, 1, 71, 'Khi tạo đơn hàng xong, thoát ra lần sau vào lại thì đơn hàng trước đó vẫn còn hiển thị', '![](clipboard-202105150951-3kjll.png)
![](clipboard-202105150951-iaznv.png)
', '2021-05-15', NULL, 3, 8, 2, 121, 40, 2, '2021-05-15 02:51:14+07', '2021-05-22 02:54:04+07', '2021-05-15', 100, NULL, NULL, 4245, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4246, 2, 72, 'API: Quản lý danh mục phương tiện đo', '', '2021-06-14', NULL, 5, 41, 2, 129, 38, 9, '2021-05-15 02:51:17+07', '2021-07-01 14:30:22+07', '2021-06-14', 100, NULL, NULL, 4246, 1, 2, false, '2021-07-01 14:30:22+07');
INSERT INTO public.issues VALUES (4247, 2, 72, 'API: set phương tiện đo cho cơ sở', '', '2021-06-14', NULL, 5, 41, 2, 129, 38, 9, '2021-05-15 02:51:47+07', '2021-07-01 14:30:22+07', '2021-06-14', 100, NULL, NULL, 4247, 1, 2, false, '2021-07-01 14:30:22+07');
INSERT INTO public.issues VALUES (4248, 2, 72, 'API: cấu hình thông tin chi tiết cơ sở', '', '2021-06-14', NULL, 5, 41, 2, 129, 38, 9, '2021-05-15 02:52:44+07', '2021-07-01 14:30:22+07', '2021-06-14', 100, NULL, NULL, 4248, 1, 2, false, '2021-07-01 14:30:22+07');
INSERT INTO public.issues VALUES (4249, 2, 72, 'API: Cấu hình đặc điểm kỹ thuật cho nhóm phương tiện từ 1-5', '', '2021-06-14', NULL, 5, 41, 2, 129, 38, 10, '2021-05-15 02:53:40+07', '2021-07-01 14:30:22+07', '2021-06-14', 100, NULL, NULL, 4249, 1, 2, false, '2021-07-01 14:30:22+07');
INSERT INTO public.issues VALUES (4250, 2, 72, 'API: Cấu hình đặc điểm kỹ thuật cho nhóm phương tiện đo xăng dầu', '', '2021-06-14', NULL, 5, 41, 2, 129, 38, 9, '2021-05-15 02:54:12+07', '2021-07-01 14:30:23+07', '2021-06-14', 100, NULL, NULL, 4250, 1, 2, false, '2021-07-01 14:30:23+07');
INSERT INTO public.issues VALUES (4251, 2, 72, 'API: Cấu hình đặc điểm kỹ thuật cho nhóm phương tiện đo xitec ô tô', '', '2021-06-14', NULL, 5, 41, 2, 129, 38, 11, '2021-05-15 02:55:48+07', '2021-07-01 14:30:23+07', '2021-06-14', 100, 16, NULL, 4251, 1, 2, false, '2021-07-01 14:30:23+07');
INSERT INTO public.issues VALUES (4253, 2, 72, 'Trang chủ tra cứu thông tin cơ sở, PTĐ trên bản đồ', '', '2021-06-24', NULL, 5, 39, 2, 140, 38, 12, '2021-05-15 02:59:00+07', '2021-07-01 14:31:31+07', '2021-06-21', 100, NULL, NULL, 4253, 1, 2, false, '2021-07-01 14:31:31+07');
INSERT INTO public.issues VALUES (4255, 2, 72, 'API: Gửi thông báo ', '', '2021-07-01', NULL, 5, 41, 2, 142, 38, 11, '2021-05-15 02:59:44+07', '2021-07-05 02:02:49+07', '2021-07-01', 100, 8, NULL, 4255, 1, 2, false, '2021-07-05 02:02:49+07');
INSERT INTO public.issues VALUES (4257, 2, 72, 'api thống kê số lượng cơ sở, ptđ', '', '2021-06-22', NULL, 5, 52, 2, 140, 38, 10, '2021-05-15 03:00:40+07', '2021-07-01 14:31:31+07', '2021-06-22', 100, NULL, NULL, 4257, 1, 2, false, '2021-07-01 14:31:31+07');
INSERT INTO public.issues VALUES (4258, 2, 72, 'API Gửi nhận các văn bản, báo cáo', '', '2021-07-03', NULL, 5, 41, 2, 142, 38, 8, '2021-05-15 03:01:28+07', '2021-07-05 02:02:49+07', '2021-07-03', 100, 8, NULL, 4258, 1, 2, false, '2021-07-05 02:02:49+07');
INSERT INTO public.issues VALUES (4259, 2, 72, ' Trao đổi trực tuyến', '', '2021-07-05', NULL, 5, 39, 2, 145, 38, 9, '2021-05-15 03:07:51+07', '2021-07-12 09:50:09+07', '2021-07-05', 100, NULL, NULL, 4259, 1, 2, false, '2021-07-12 09:50:09+07');
INSERT INTO public.issues VALUES (4260, 2, 72, 'Giao diện đăng ký tài khoản', '', '2021-06-07', NULL, 5, 39, 2, 128, 38, 8, '2021-05-15 03:09:20+07', '2021-07-01 14:29:59+07', '2021-06-07', 100, 8, NULL, 4260, 1, 2, false, '2021-07-01 14:29:59+07');
INSERT INTO public.issues VALUES (4261, 2, 72, 'Giao diện quản lý danh mục cơ sổ', '', '2021-06-07', NULL, 5, 39, 2, 128, 38, 7, '2021-05-15 03:10:50+07', '2021-07-01 14:29:59+07', '2021-06-07', 100, 4, NULL, 4261, 1, 2, false, '2021-07-01 14:29:59+07');
INSERT INTO public.issues VALUES (4262, 2, 72, 'Giao diện quản lý danh mục nhóm phương tiện đo', '', '2021-06-14', NULL, 5, 37, 2, 129, 38, 11, '2021-05-15 03:12:04+07', '2021-07-01 14:30:23+07', '2021-06-14', 100, 4, NULL, 4262, 1, 2, false, '2021-07-01 14:30:23+07');
INSERT INTO public.issues VALUES (4263, 2, 72, 'Giao diện danh mục phương tiện đo', '', '2021-06-14', NULL, 5, 37, 2, 129, 38, 12, '2021-05-15 03:12:30+07', '2021-07-01 14:30:23+07', '2021-06-14', 100, 4, NULL, 4263, 1, 2, false, '2021-07-01 14:30:23+07');
INSERT INTO public.issues VALUES (4265, 2, 72, 'Giao diện cấu hình thông tin chi tiết cho cơ sở', '', '2021-06-14', NULL, 5, 39, 2, 129, 38, 11, '2021-05-15 03:15:11+07', '2021-07-01 14:30:23+07', '2021-06-14', 100, 8, NULL, 4265, 1, 2, false, '2021-07-01 14:30:23+07');
INSERT INTO public.issues VALUES (4266, 2, 72, 'Giao diện  cấu hình đặc điểm kỹ thuật cho nhóm phương tiện từ 1-5', '', '2021-06-18', NULL, 5, 37, 2, 129, 38, 10, '2021-05-15 03:15:55+07', '2021-07-01 14:30:23+07', '2021-06-17', 100, NULL, NULL, 4266, 1, 2, false, '2021-07-01 14:30:23+07');
INSERT INTO public.issues VALUES (4267, 2, 72, 'Giao diện  cấu hình đặc điểm kỹ thuật cho nhóm phương tiện đo xăng dầu', '', '2021-06-17', NULL, 5, 37, 2, 129, 38, 10, '2021-05-15 03:16:19+07', '2021-07-01 14:30:23+07', '2021-06-16', 100, 4, NULL, 4267, 1, 2, false, '2021-07-01 14:30:23+07');
INSERT INTO public.issues VALUES (4268, 2, 72, 'Giao diện  cấu hình đặc điểm kỹ thuật cho nhóm phương tiện đi xitec ô tô', '', '2021-06-16', NULL, 5, 37, 2, 129, 38, 10, '2021-05-15 03:17:02+07', '2021-07-01 14:30:23+07', '2021-06-15', 100, 16, NULL, 4268, 1, 2, false, '2021-07-01 14:30:23+07');
INSERT INTO public.issues VALUES (4278, 2, 72, 'Giao diện báo cáo', '', '2021-07-03', NULL, 5, 37, 2, 142, 38, 7, '2021-05-15 03:41:36+07', '2021-07-05 02:02:49+07', '2021-07-03', 100, 4, NULL, 4278, 1, 2, false, '2021-07-05 02:02:49+07');
INSERT INTO public.issues VALUES (4280, 2, 72, 'Giao diện gửi nhận văn bản báo cáo', '', '2021-06-30', NULL, 5, 39, 2, 142, 38, 5, '2021-05-15 03:42:50+07', '2021-07-01 14:31:55+07', '2021-06-29', 100, NULL, NULL, 4280, 1, 2, false, '2021-07-01 14:31:55+07');
INSERT INTO public.issues VALUES (4281, 2, 72, 'Giao diện thống kê số lượng cơ sở, ptđ ', '', '2021-06-22', NULL, 5, 37, 2, 140, 38, 10, '2021-05-15 03:46:04+07', '2021-07-01 14:31:32+07', '2021-06-22', 100, NULL, NULL, 4281, 1, 2, false, '2021-07-01 14:31:32+07');
INSERT INTO public.issues VALUES (4282, 2, 70, 'Hỏi lại bảng excel có mã nhân viên', '', '2021-05-19', NULL, 1, 40, 2, 131, 39, 1, '2021-05-15 04:09:14+07', '2021-05-18 08:35:42+07', '2021-05-19', 0, NULL, NULL, 4282, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4283, 2, 70, 'Dựng app winform ', '', '2021-05-19', NULL, 3, 39, 2, 131, 39, 1, '2021-05-15 04:26:16+07', '2021-05-18 08:35:21+07', '2021-05-17', 100, NULL, NULL, 4283, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4284, 1, 42, 'Chỉnh lại tiêu đề mẫu B5.BCTC điều 13', '', '2021-05-24', NULL, 5, 39, 2, 133, 40, 6, '2021-05-17 10:33:16+07', '2021-05-31 17:00:42+07', '2021-05-24', 100, NULL, NULL, 4284, 1, 2, false, '2021-05-31 17:00:42+07');
INSERT INTO public.issues VALUES (4285, 3, 42, 'B5.BCTC chức có đơn vị tính ở nguồn thu/chi', '', NULL, NULL, 5, 40, 2, 75, 40, 10, '2021-05-17 10:39:57+07', '2021-06-17 11:02:54+07', NULL, 0, NULL, NULL, 4285, 1, 2, false, '2021-06-17 11:02:54+07');
INSERT INTO public.issues VALUES (4286, 1, 42, '11 huyện thuộc phòng NS duyệt, đơn vị còn lại thuộc phòng HCSN duyêt', 'Phòng ngân sách sẽ duyệt báo cáo của 11 huyện, phòng hành chính sự nghiệp sẽ duyệt báo cáo của các đơn vị còn lại. Phòng hành chính sự nghiệp là đơn vị tổng hợp dữ liệu.', '2021-05-19', NULL, 5, 38, 2, 132, 40, 2, '2021-05-19 08:13:07+07', '2021-05-26 04:14:33+07', '2021-05-19', 100, NULL, NULL, 4286, 1, 2, false, '2021-05-26 04:14:33+07');
INSERT INTO public.issues VALUES (4287, 1, 42, 'Ở STC đổi nút phê duyệt --> tiếp nhận.', '', '2021-05-19', NULL, 5, 39, 2, 132, 40, 4, '2021-05-19 08:13:25+07', '2021-05-26 04:14:33+07', '2021-05-19', 100, NULL, NULL, 4287, 1, 2, false, '2021-05-26 04:14:33+07');
INSERT INTO public.issues VALUES (4288, 1, 42, 'STC tự thay đổi dữ liệu và gửi thông báo cho cấp dưới nếu dữ liệu của cấp dưới gửi lên sai.', '', '2021-05-24', NULL, 5, 38, 2, 133, 40, 4, '2021-05-19 08:13:45+07', '2021-05-31 17:00:51+07', '2021-05-24', 100, NULL, NULL, 4288, 1, 2, false, '2021-05-31 17:00:51+07');
INSERT INTO public.issues VALUES (4289, 1, 42, 'In danh sách đơn vị trễ hạn báo cáo (Chưa api)', '', '2021-05-24', NULL, 5, 39, 2, 133, 40, 7, '2021-05-19 08:13:59+07', '2021-05-31 17:00:52+07', '2021-05-24', 100, NULL, NULL, 4289, 1, 2, false, '2021-05-31 17:00:52+07');
INSERT INTO public.issues VALUES (4290, 1, 42, 'Mẫu 1.02 điều 9 chọn nguyên tệ nào sẽ tính theo nguyên tệ đó.', '', '2021-05-24', NULL, 5, 38, 2, 133, 40, 5, '2021-05-19 08:14:14+07', '2021-05-31 17:00:52+07', '2021-05-24', 100, NULL, NULL, 4290, 1, 2, false, '2021-05-31 17:00:52+07');
INSERT INTO public.issues VALUES (4291, 1, 42, 'Báo cáo theo quý tính bình quân.', '', '2021-06-02', NULL, 5, 38, 2, 137, 40, 8, '2021-05-19 08:14:46+07', '2021-07-01 08:18:41+07', '2021-06-02', 100, NULL, NULL, 4291, 1, 2, false, '2021-07-01 08:18:41+07');
INSERT INTO public.issues VALUES (4292, 1, 42, 'STC sẽ trả lại báo cáo về cho cấp dưới chỉnh sửa nếu dữ liệu của cấp dưới sai', '', '2021-05-19', NULL, 5, 39, 2, 132, 40, 4, '2021-05-19 08:15:55+07', '2021-05-26 04:14:34+07', '2021-05-19', 100, NULL, NULL, 4292, 1, 2, false, '2021-05-26 04:14:34+07');
INSERT INTO public.issues VALUES (4293, 1, 42, 'Dữ liệu năm trước sẽ được lưu lại cho năm hiện tại và có thể chỉnh sửa dữ liệu ở năm hiện tại.', '', '2021-05-31', NULL, 5, 38, 2, 137, 40, 7, '2021-05-19 08:16:31+07', '2021-06-02 08:22:41+07', '2021-05-31', 100, NULL, NULL, 4293, 1, 2, false, '2021-06-02 08:22:41+07');
INSERT INTO public.issues VALUES (4294, 1, 42, 'Thêm chức năng lọc nội dung báo cáo theo: nguồn, đơn vị, mã dự án, nhiệm vụ chi.', '', '2021-05-24', NULL, 5, 39, 2, 133, 40, 9, '2021-05-19 08:16:56+07', '2021-05-31 17:01:03+07', '2021-05-24', 100, NULL, NULL, 4294, 1, 2, false, '2021-05-31 17:01:03+07');
INSERT INTO public.issues VALUES (4295, 1, 42, 'Nếu tên dự án trùng nhau thì không được nhập.', '', '2021-05-19', NULL, 5, 38, 2, 132, 40, 2, '2021-05-19 08:17:11+07', '2021-05-26 04:14:34+07', '2021-05-19', 100, NULL, NULL, 4295, 1, 2, false, '2021-05-26 04:14:34+07');
INSERT INTO public.issues VALUES (4296, 1, 42, 'Ở STC khi tổng hợp chỉ lấy đơn vị cấp huyện trở đi, không lấy xã. Thứ tự tổng hợp như sau: nguồn - lĩnh vực - chủ đầu tư - Dự án  (chỉ áp dụng TT 85)', '', '2021-05-24', NULL, 5, 38, 2, 133, 40, 4, '2021-05-19 08:17:45+07', '2021-05-31 17:01:03+07', '2021-05-24', 100, NULL, NULL, 4296, 1, 2, false, '2021-05-31 17:01:03+07');
INSERT INTO public.issues VALUES (4297, 1, 42, 'Thống nhất nút Lưu dữ liệu ở chân trang', '', '2021-05-19', NULL, 5, 39, 2, 132, 40, 4, '2021-05-19 08:38:14+07', '2021-05-26 04:14:34+07', '2021-05-19', 100, NULL, NULL, 4297, 1, 2, false, '2021-05-26 04:14:34+07');
INSERT INTO public.issues VALUES (4298, 1, 42, 'Điều 9 - 1.03 ở báo cáo đến không xem được pdf', '', '2021-05-24', NULL, 5, 38, 2, 133, 40, 4, '2021-05-19 09:22:12+07', '2021-05-31 17:01:03+07', '2021-05-24', 100, NULL, NULL, 4298, 1, 2, false, '2021-05-31 17:01:03+07');
INSERT INTO public.issues VALUES (4299, 1, 42, 'Mẫu 1.02 điều 9 thêm danh mục nguyên tệ và ô chọn nguyên tệ để quy đổi', '', '2021-05-19', NULL, 5, 39, 2, 132, 40, 4, '2021-05-19 09:37:05+07', '2021-05-26 04:14:34+07', '2021-05-19', 100, NULL, NULL, 4299, 1, 2, false, '2021-05-26 04:14:34+07');
INSERT INTO public.issues VALUES (4300, 1, 42, 'Điều 9 mẫu 1.03 thời gian hiển thị trong file pdf đang mặc định là 12h00 không cần thêm thời gian', '', '2021-05-19', NULL, 5, 38, 2, 132, 40, 2, '2021-05-19 02:43:12+07', '2021-05-26 04:14:34+07', '2021-05-19', 100, NULL, NULL, 4300, 1, 2, false, '2021-05-26 04:14:34+07');
INSERT INTO public.issues VALUES (4301, 2, 70, 'AppWinformGetData - Dashboard - Danh sách bộ phận', '', '2021-05-14', NULL, 3, 39, 2, 123, 39, 2, '2021-05-19 09:49:07+07', '2021-05-19 09:52:56+07', '2021-05-14', 100, NULL, NULL, 4301, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4302, 2, 70, 'AppWinformGetData - Dashboard - Danh sách nhân viên check in/out trong ngày', '', '2021-05-15', NULL, 3, 39, 2, 123, 39, 2, '2021-05-19 09:49:37+07', '2021-05-19 09:52:56+07', '2021-05-15', 100, NULL, NULL, 4302, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4303, 2, 70, 'AppWinformGetData - Dashboard - Xử lý realtime tin nhắn thông báo, cập nhật dữ liệu check in/out', '', '2021-05-17', NULL, 3, 39, 2, 131, 39, 2, '2021-05-19 09:50:36+07', '2021-05-19 09:52:56+07', '2021-05-17', 100, NULL, NULL, 4303, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4304, 2, 70, 'Danh mục Computer', '', '2021-05-19', NULL, 3, 39, 2, 131, 39, 2, '2021-05-19 09:52:10+07', '2021-05-19 15:56:07+07', '2021-05-19', 100, NULL, NULL, 4304, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4305, 2, 70, 'Thiết lập PC Name và IP cho tài khoản ', '', '2021-05-19', NULL, 3, 39, 2, 131, 39, 2, '2021-05-19 09:52:38+07', '2021-05-19 15:56:07+07', '2021-05-19', 100, NULL, NULL, 4305, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4306, 1, 42, 'điều 15 mẫu 2.1, 2.2, 2.3, 2.4 không nhập được danh mục khi không có mã hàng hóa', '', '2021-05-24', NULL, 5, 39, 2, 133, 40, 7, '2021-05-19 15:02:51+07', '2021-05-31 17:01:03+07', '2021-05-24', 100, NULL, NULL, 4306, 1, 2, false, '2021-05-31 17:01:03+07');
INSERT INTO public.issues VALUES (4307, 1, 42, 'điều 15 mẫu 2.1, 2.2, 2.3, 2.4 ở mục lớn không hiển thị mã hàng hóa', '', '2021-05-19', NULL, 5, 38, 2, 132, 40, 2, '2021-05-19 15:49:06+07', '2021-05-26 04:14:34+07', '2021-05-19', 100, NULL, NULL, 4307, 1, 2, false, '2021-05-26 04:14:34+07');
INSERT INTO public.issues VALUES (4308, 1, 42, 'điều 15 mẫu 2.1, 2.2, 2.3, 2.4 chỉnh lại bố cục nếu các danh mục có chung stt hoặc chung mã hoặc chung tên hàng hóa', '', '2021-05-24', NULL, 5, 39, 2, 133, 40, 6, '2021-05-19 15:53:16+07', '2021-05-31 17:01:03+07', '2021-05-24', 100, NULL, NULL, 4308, 1, 2, false, '2021-05-31 17:01:03+07');
INSERT INTO public.issues VALUES (4309, 1, 42, 'Không đính kèm được văn bản từ bên ngoài', '', '2021-05-21', NULL, 5, 38, 2, 132, 40, 2, '2021-05-21 09:37:00+07', '2021-05-26 04:14:34+07', '2021-05-21', 100, NULL, NULL, 4309, 1, 2, false, '2021-05-26 04:14:34+07');
INSERT INTO public.issues VALUES (4310, 1, 42, 'Lỗi 500 API GetMau_07?BaoCaoId=5cf76d41-40c7-47f4-9e31-f556986cadab', '![](clipboard-202105211419-nmfqo.png)
', '2021-05-24', NULL, 5, 38, 2, 133, 39, 4, '2021-05-21 14:19:58+07', '2021-05-31 17:01:03+07', '2021-05-24', 100, NULL, NULL, 4310, 1, 2, false, '2021-05-31 17:01:03+07');
INSERT INTO public.issues VALUES (4311, 1, 42, 'Không thể lọc thông báo theo nội dung', '', '2021-05-21', NULL, 5, 39, 2, 132, 40, 3, '2021-05-21 14:50:24+07', '2021-05-26 04:14:34+07', '2021-05-21', 100, NULL, NULL, 4311, 1, 2, false, '2021-05-26 04:14:34+07');
INSERT INTO public.issues VALUES (4312, 2, 42, 'Điều 18 - 01 - CDT:  Thêm danh mục nội dung (Bỏ Name ; Chọn nguồn vốn từ danh mục Nguồn vốn điều 18)', '', '2021-05-21', NULL, 5, 39, 2, 132, 39, 2, '2021-05-21 16:18:17+07', '2021-05-26 04:14:34+07', '2021-05-21', 100, NULL, NULL, 4312, 1, 2, false, '2021-05-26 04:14:34+07');
INSERT INTO public.issues VALUES (4313, 2, 42, 'Quy trình: Thêm chọn phòng phòng ban cho đơn vị (Dành cho điều 18)', '', '2021-05-24', NULL, 5, 39, 2, 133, 39, 5, '2021-05-21 16:19:59+07', '2021-05-31 17:01:03+07', '2021-05-24', 100, NULL, NULL, 4313, 1, 2, false, '2021-05-31 17:01:03+07');
INSERT INTO public.issues VALUES (4314, 2, 42, 'Điều 18 - Mẫu 01 - CDT: Thêm danh mục Lĩnh vực', '', '2021-05-21', NULL, 5, 39, 2, 132, 39, 3, '2021-05-21 16:20:57+07', '2021-05-26 04:14:35+07', '2021-05-21', 100, NULL, NULL, 4314, 1, 2, false, '2021-05-26 04:14:35+07');
INSERT INTO public.issues VALUES (4315, 2, 42, 'Thêm danh mục phòng ban cho đơn vị (Sở tài chính)', '', '2021-05-24', NULL, 5, 39, 2, 133, 39, 3, '2021-05-24 03:52:43+07', '2021-05-31 17:01:03+07', '2021-05-24', 100, NULL, NULL, 4315, 1, 2, false, '2021-05-31 17:01:03+07');
INSERT INTO public.issues VALUES (4316, 2, 42, 'Thêm trường phòng ban trong tạo tài khoản của đơn vị', '', '2021-05-25', NULL, 5, 39, 2, 133, 39, 3, '2021-05-25 02:09:50+07', '2021-05-31 17:01:04+07', '2021-05-25', 100, NULL, NULL, 4316, 1, 2, false, '2021-05-31 17:01:04+07');
INSERT INTO public.issues VALUES (4317, 2, 42, 'Phân quyền Tiếp nhận báo cáo theo Phòng ban ở báo cáo đến', '', '2021-05-25', NULL, 5, 39, 2, 133, 39, 3, '2021-05-25 02:10:23+07', '2021-05-31 17:01:04+07', '2021-05-25', 100, NULL, NULL, 4317, 1, 2, false, '2021-05-31 17:01:04+07');
INSERT INTO public.issues VALUES (4318, 2, 73, 'Dựng source mobile', '', '2021-05-17', NULL, 1, NULL, 2, 134, 12, 1, '2021-05-26 16:37:50+07', '2021-05-26 16:53:52+07', '2021-05-17', 100, NULL, NULL, 4318, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4319, 2, 73, 'Màng hình Login', '', '2021-05-18', NULL, 1, NULL, 2, 134, 12, 3, '2021-05-26 16:39:30+07', '2021-05-26 16:54:56+07', '2021-05-18', 100, NULL, NULL, 4319, 1, 6, false, NULL);
INSERT INTO public.issues VALUES (4320, 2, 73, 'Xác thực thông tin login qua API & chuyển tới màng hình Trang chủ', '', '2021-05-18', NULL, 1, NULL, 2, 134, 12, 2, '2021-05-26 16:40:56+07', '2021-05-26 16:54:35+07', '2021-05-18', 100, NULL, 4319, 4319, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (4321, 2, 73, 'Tạo form login', '', '2021-05-18', NULL, 1, NULL, 2, 134, 12, 1, '2021-05-26 09:42:36+07', '2021-05-26 16:54:56+07', '2021-05-18', 100, NULL, 4319, 4319, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (4322, 2, 73, 'Màn hình cập nhật thông tin cá nhân', '', '2021-05-19', NULL, 1, NULL, 2, 134, 12, 6, '2021-05-26 09:43:34+07', '2021-05-26 16:59:00+07', '2021-05-18', 100, NULL, NULL, 4322, 1, 10, false, NULL);
INSERT INTO public.issues VALUES (4323, 2, 73, 'UI màn hình thông tin cá nhân', '', '2021-05-18', NULL, 1, 12, 2, 134, 12, 2, '2021-05-26 09:44:39+07', '2021-05-26 16:59:21+07', '2021-05-18', 100, NULL, 4322, 4322, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (4324, 2, 73, 'Chức năng cập nhật thông tin cá nhân', '', '2021-05-18', NULL, 1, 12, 2, 134, 12, 1, '2021-05-26 09:45:55+07', '2021-05-26 16:55:37+07', '2021-05-18', 100, NULL, 4322, 4322, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (4325, 2, 73, 'Chức năng thay đổi mật khẩu', '', '2021-05-19', NULL, 1, NULL, 2, 134, 12, 1, '2021-05-26 16:52:33+07', '2021-05-26 16:59:00+07', '2021-05-19', 100, NULL, 4322, 4322, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (4326, 2, 73, 'Chức năng đăng xuất tài khoản', '', '2021-05-19', NULL, 1, NULL, 2, 134, 12, 3, '2021-05-26 16:52:58+07', '2021-05-26 16:58:33+07', '2021-05-19', 100, NULL, 4322, 4322, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (4327, 2, 73, 'Lịch gần nhất:', '', '2021-05-24', NULL, 1, NULL, 2, 134, 12, 4, '2021-05-27 08:16:04+07', '2021-05-27 08:20:38+07', '2021-05-20', 75, NULL, NULL, 4327, 1, 10, false, NULL);
INSERT INTO public.issues VALUES (4328, 2, 73, 'Hiển thị danh sách phiên họp gần nhất', '', '2021-05-20', NULL, 1, NULL, 2, 134, 12, 0, '2021-05-27 08:18:02+07', '2021-05-27 08:18:02+07', '2021-05-20', 100, NULL, 4327, 4327, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (4329, 2, 73, 'Tìm kiếm phiên họp đang hoặc sắp diễn ra so với thời gian hiện tại', '', '2021-05-21', NULL, 1, NULL, 2, 134, 12, 0, '2021-05-27 08:18:51+07', '2021-05-27 08:18:51+07', '2021-05-21', 0, NULL, 4327, 4327, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (4330, 2, 73, 'Người dùng thao tác chọn lịch gần nhất', '', '2021-05-22', NULL, 1, NULL, 2, 134, 12, 1, '2021-05-27 08:19:30+07', '2021-05-27 08:21:58+07', '2021-05-22', 100, NULL, 4327, 4327, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (4331, 2, 73, 'Hiển thị thông báo khi không load được danh sách phiên họp', '', '2021-05-24', NULL, 1, NULL, 2, 134, 12, 1, '2021-05-27 08:20:38+07', '2021-05-27 08:26:55+07', '2021-05-24', 100, NULL, 4327, 4327, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (4332, 2, 73, 'Lấy ý kiến:', '', '2021-05-27', NULL, 1, NULL, 2, 135, 12, 1, '2021-05-27 08:25:50+07', '2021-05-27 08:28:18+07', '2021-05-24', 0, NULL, NULL, 4332, 1, 16, false, NULL);
INSERT INTO public.issues VALUES (4333, 2, 73, 'Danh sách lịch cá nhân:', '', '2021-05-27', NULL, 1, NULL, 2, 135, 12, 5, '2021-05-27 08:26:15+07', '2021-06-02 16:24:23+07', '2021-05-27', 57, NULL, NULL, 4333, 1, 16, false, NULL);
INSERT INTO public.issues VALUES (4334, 2, 73, 'Hiển thị ds lấy ý kiến trong thời gian còn hiệu lực', '', '2021-05-27', NULL, 1, NULL, 2, 135, 12, 0, '2021-05-27 08:28:18+07', '2021-05-27 08:28:18+07', '2021-05-24', 0, NULL, 4332, 4332, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (4335, 2, 73, 'Người điều hành cuộc họp cấu hình thời gian lấy ý kiến', '', '2021-05-27', NULL, 1, NULL, 2, 135, 12, 0, '2021-05-27 08:28:55+07', '2021-05-27 08:28:55+07', '2021-05-24', 0, NULL, 4332, 4332, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (4336, 2, 73, 'Màn hình xem thông tin chi tiết phiếu lấy ý kiến', '', '2021-05-27', NULL, 1, NULL, 2, 135, 12, 0, '2021-05-27 08:29:21+07', '2021-05-27 08:29:21+07', '2021-05-24', 0, NULL, 4332, 4332, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (4337, 2, 73, 'Thực hiện trả lời phiếu lấy ý kiến', '', '2021-05-27', NULL, 1, NULL, 2, NULL, 12, 0, '2021-05-27 08:29:48+07', '2021-05-27 08:29:48+07', '2021-05-24', 0, NULL, 4332, 4332, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (4338, 2, 73, 'Thực hiện gửi ý kiến', '', '2021-05-27', NULL, 1, NULL, 2, 135, 12, 0, '2021-05-27 08:30:05+07', '2021-05-27 08:30:05+07', '2021-05-27', 0, NULL, 4332, 4332, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (4339, 2, 73, 'Chức năng kí số lên ý kiến', 'Nếu mục lấy ý kiến cấu hình bắt buộc kí số để hoàn thành việc lấy ý kiến', '2021-05-27', NULL, 1, NULL, 2, 135, 12, 0, '2021-05-27 08:31:32+07', '2021-05-27 08:31:32+07', '2021-05-27', 0, NULL, 4332, 4332, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (4340, 2, 73, 'Xem kết quả lấy ý kiến', 'Nếu được cấp phép xem kết quả', '2021-05-27', NULL, 1, NULL, 2, 135, 12, 0, '2021-05-27 08:32:21+07', '2021-05-27 08:32:21+07', '2021-05-27', 0, NULL, 4332, 4332, 14, 15, false, NULL);
INSERT INTO public.issues VALUES (4341, 2, 73, 'Hiển thị ds lịch cá nhân theo tuần, tháng', '', '2021-05-27', NULL, 3, NULL, 2, 135, 12, 3, '2021-05-27 08:33:43+07', '2021-06-01 10:09:20+07', '2021-05-27', 100, NULL, 4333, 4333, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (4342, 2, 73, 'Tìm kiếm lịch cá nhân theo tiêu đề', '', '2021-05-27', NULL, 3, NULL, 2, 135, 12, 2, '2021-05-27 08:34:16+07', '2021-06-02 16:24:56+07', '2021-05-27', 100, NULL, 4333, 4333, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (4343, 2, 73, 'Tìm kiếm lịch cá nhân theo từ ngày đến ngày', '', '2021-05-27', NULL, 3, NULL, 2, 135, 12, 3, '2021-05-27 08:35:03+07', '2021-06-02 09:16:02+07', '2021-05-27', 100, NULL, 4333, 4333, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (4344, 2, 73, 'Hiển thị danh sách lịch mời họp chờ xác nhận, báo vắng, ủy quyền', '', '2021-05-27', NULL, 3, NULL, 2, 135, 12, 2, '2021-05-27 08:35:53+07', '2021-05-31 08:28:16+07', '2021-05-27', 100, NULL, 4333, 4333, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (4345, 2, 73, 'Báo vắng', '', '2021-05-27', NULL, 1, NULL, 2, 135, 12, 0, '2021-05-27 08:36:04+07', '2021-05-27 08:36:04+07', '2021-05-27', 0, NULL, 4333, 4333, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (4346, 2, 73, 'Xác nhận tham gia', '', '2021-05-27', NULL, 1, NULL, 2, NULL, 12, 0, '2021-05-27 08:36:21+07', '2021-05-27 08:36:21+07', '2021-05-27', 0, NULL, 4333, 4333, 12, 13, false, NULL);
INSERT INTO public.issues VALUES (4347, 2, 73, 'Ủy quyền tham gia', '', '2021-05-27', NULL, 1, NULL, 2, 135, 12, 0, '2021-05-27 08:36:37+07', '2021-05-27 08:36:37+07', '2021-05-27', 0, NULL, 4333, 4333, 14, 15, false, NULL);
INSERT INTO public.issues VALUES (4348, 3, 73, 'Project xây dựng: Bỏ bắt buộc dự án khi đội công ty tạm ứng', '', '2021-05-27', NULL, 3, 12, 2, 136, 12, 2, '2021-05-27 08:39:05+07', '2021-05-31 08:27:14+07', '2021-05-27', 100, NULL, NULL, 4348, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4349, 3, 73, 'Project xây dựng: Cho phép sửa, xóa tạm ứng khi IsThanhToan = false', '', '2021-05-27', NULL, 3, 12, 2, 136, 12, 2, '2021-05-27 08:39:52+07', '2021-05-31 08:27:14+07', '2021-05-27', 100, NULL, NULL, 4349, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4350, 3, 73, 'Project xây dựng: Sửa lỗi tạo bảng lương', '', '2021-05-27', NULL, 3, 12, 2, 136, 12, 2, '2021-05-27 01:45:04+07', '2021-05-31 08:27:14+07', '2021-05-27', 100, NULL, NULL, 4350, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4351, 1, 42, 'Tài khoản 2691 điều 11 phụ lục 1.1 Khi xem pdf hiển thị giao diện trống', '', '2021-05-28', NULL, 5, 39, 2, 133, 40, 3, '2021-05-28 04:41:08+07', '2021-05-31 17:01:04+07', '2021-05-28', 100, NULL, NULL, 4351, 1, 2, false, '2021-05-31 17:01:04+07');
INSERT INTO public.issues VALUES (4352, 1, 42, 'Điều 16 mục 3.1 sai so với bảng 2.1 (Sai số lượng dự án)', '', '2021-05-31', NULL, 5, 41, 2, 137, 40, 5, '2021-05-28 08:09:23+07', '2021-06-02 08:22:41+07', '2021-05-31', 100, NULL, NULL, 4352, 1, 2, false, '2021-06-02 08:22:41+07');
INSERT INTO public.issues VALUES (4353, 1, 42, 'Đổi tên tải xuống DSBC trễ hạn thành tải xuống DS đơn vị gửi báo cáo', '', '2021-05-28', NULL, 5, 39, 2, 133, 40, 3, '2021-05-28 09:22:53+07', '2021-05-31 17:01:11+07', '2021-05-28', 100, NULL, NULL, 4353, 1, 2, false, '2021-05-31 17:01:11+07');
INSERT INTO public.issues VALUES (4354, 2, 42, 'Chỉnh sửa điều 18 02 CQTH: thêm danh mục dự án', '', '2021-05-29', NULL, 5, 39, 2, 133, 38, 3, '2021-05-29 02:32:32+07', '2021-05-31 17:01:11+07', '2021-05-29', 100, NULL, NULL, 4354, 1, 2, false, '2021-05-31 17:01:11+07');
INSERT INTO public.issues VALUES (4355, 1, 42, 'Cập nhật số liệu dự án không thành công điều 18 mẫu 01 CDT', 'Json không gửi xuống object Dieu18_DM_DuAn', '2021-05-31', NULL, 5, 39, 2, 137, 38, 3, '2021-05-30 16:01:30+07', '2021-06-02 08:22:42+07', '2021-05-31', 100, NULL, NULL, 4355, 1, 2, false, '2021-06-02 08:22:42+07');
INSERT INTO public.issues VALUES (4356, 3, 73, 'Làm báo cáo mô tả tính năng của phần mềm quản lý quan trắc phóng xạ', '', '2021-06-01', NULL, 3, 12, 2, 136, 12, 3, '2021-06-01 03:43:39+07', '2021-06-02 09:15:24+07', '2021-06-01', 100, NULL, NULL, 4356, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4357, 2, 42, 'Nếu báo cáo văn bản show alert-warning', 'Trong khung chi tiết báo cáo', '2021-07-05', NULL, 5, 39, 2, 139, 5, 6, '2021-06-03 08:18:58+07', '2021-07-12 01:59:12+07', '2021-07-05', 100, NULL, NULL, 4357, 1, 2, false, '2021-07-12 01:59:12+07');
INSERT INTO public.issues VALUES (4358, 2, 42, 'Thống kê số đv có importexcel == true; importexcel == false; xuất ds excel', '![](clipboard-202106030822-ocftu.png)', '2021-06-03', NULL, 5, 39, 2, 137, 5, 4, '2021-06-03 08:22:46+07', '2021-07-01 08:18:41+07', '2021-06-03', 100, NULL, NULL, 4358, 1, 2, false, '2021-07-01 08:18:41+07');
INSERT INTO public.issues VALUES (4359, 1, 71, 'khi nhấn chọn cập nhật dữ liệu, tiêu đề của giao diện hiển thị là thêm dữ liệu', '', '2021-06-06', NULL, 1, 39, 2, 121, 40, 0, '2021-06-06 11:47:53+07', '2021-06-06 11:47:53+07', '2021-06-06', 0, NULL, NULL, 4359, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4360, 1, 42, 'xóa tải xuống danh sách đơn vị gửi ở định dạng XML', '', '2021-07-05', NULL, 5, 39, 2, 139, 40, 7, '2021-06-07 22:30:23+07', '2021-07-12 01:59:13+07', '2021-07-05', 100, NULL, NULL, 4360, 1, 2, false, '2021-07-12 01:59:13+07');
INSERT INTO public.issues VALUES (4361, 1, 42, 'Chưa thực hiện được chức năng lịch sử thao tác trong mẫu báo cáo', '', '2021-06-08', NULL, 5, 39, 2, 137, 40, 4, '2021-06-08 01:37:55+07', '2021-07-01 08:18:41+07', '2021-06-08', 100, NULL, NULL, 4361, 1, 2, false, '2021-07-01 08:18:41+07');
INSERT INTO public.issues VALUES (4362, 2, 69, 'Đăng ký phát biểu', '', '2021-06-19', 31, 3, 15, 2, 138, 15, 6, '2021-06-14 08:15:20+07', '2021-06-21 01:26:56+07', '2021-06-14', 100, NULL, NULL, 4362, 1, 12, false, NULL);
INSERT INTO public.issues VALUES (4363, 2, 69, 'Thêm xóa sửa phiếu ý kiến', '', '2021-06-14', 31, 3, 8, 2, 138, 8, 1, '2021-06-14 08:19:23+07', '2021-06-14 08:21:11+07', '2021-06-14', 100, NULL, NULL, 4363, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4364, 2, 69, 'Chi tiết phiếu ý kiến', '', '2021-06-14', 31, 3, 8, 2, 138, 8, 1, '2021-06-14 08:19:43+07', '2021-06-14 08:21:11+07', '2021-06-14', 100, NULL, NULL, 4364, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4365, 2, 69, 'Form gửi phiếu trả lời', '', '2021-06-14', 31, 3, 8, 2, 138, 8, 2, '2021-06-14 08:19:58+07', '2021-06-14 08:21:11+07', '2021-06-14', 100, NULL, NULL, 4365, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4366, 2, 69, 'Form gửi phiếu ý kiến', '', '2021-06-14', 31, 3, 8, 2, 138, 8, 2, '2021-06-14 08:20:16+07', '2021-06-14 08:21:11+07', '2021-06-14', 100, NULL, NULL, 4366, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4367, 2, 69, 'Xuất phiếu trả lời ý kiến (PDF)', '', '2021-06-14', 31, 3, 8, 2, 138, 8, 2, '2021-06-14 08:20:30+07', '2021-06-14 08:21:11+07', '2021-06-14', 100, NULL, NULL, 4367, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4368, 2, 69, 'Form kết quả phiếu ý kiến', '', '2021-06-14', 31, 3, 8, 2, 138, 8, 2, '2021-06-14 08:20:44+07', '2021-06-14 08:21:11+07', '2021-06-14', 100, NULL, NULL, 4368, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4369, 2, 42, 'Đối với những mẫu báo cáo đề cương, khi muốn thực hiện sang giao diện khác sẽ hiển thị 1 thông báo "Bạn có cần lưu dữ liệu không?"', '', '2021-07-12', NULL, 5, 39, 2, 146, 40, 6, '2021-06-16 03:28:51+07', '2021-07-17 09:59:57+07', '2021-07-12', 100, NULL, NULL, 4369, 1, 2, false, '2021-07-17 09:59:57+07');
INSERT INTO public.issues VALUES (4370, 2, 42, 'Đối với những mẫu báo cáo thuộc thông tư 129, ở phần nội dung nhập 1 trong 3 hiển thị thông báo để người dùng thực hiện.', '', '2021-07-08', NULL, 5, 39, 2, 139, 40, 6, '2021-06-16 03:30:04+07', '2021-07-12 01:59:13+07', '2021-07-08', 100, NULL, NULL, 4370, 1, 2, false, '2021-07-12 01:59:13+07');
INSERT INTO public.issues VALUES (4371, 2, 42, 'Cho phép thêm loại văn bản khi đính kèm văn bản từ bên ngoài', '', '2021-07-12', NULL, 5, 39, 2, 146, 40, 7, '2021-06-16 03:30:56+07', '2021-07-17 09:59:57+07', '2021-07-12', 100, NULL, NULL, 4371, 1, 2, false, '2021-07-17 09:59:57+07');
INSERT INTO public.issues VALUES (4372, 2, 42, 'Các đơn vị không có đơn vị trực thuộc thì thực hiện mẫu 06 của thông tư 71, đối với mẫu 01/188 xóa khỏi phần mềm', '', '2021-07-12', NULL, 5, 40, 2, 146, 40, 4, '2021-06-16 03:31:56+07', '2021-07-12 03:10:52+07', '2021-07-12', 0, NULL, NULL, 4372, 1, 2, false, '2021-07-12 03:10:52+07');
INSERT INTO public.issues VALUES (4373, 2, 42, 'Phân quyền cho từng tài khoản', '- Tài khoản chỉ để xem báo cáo
- Tài khoản thực hiện báo cáo
- Lĩnh vực mà đơn vị cần thực hiện', '2021-07-12', NULL, 5, 39, 2, 146, 40, 8, '2021-06-17 10:18:54+07', '2021-07-17 09:59:57+07', '2021-07-12', 100, NULL, NULL, 4373, 1, 2, false, '2021-07-17 09:59:57+07');
INSERT INTO public.issues VALUES (4374, 2, 42, 'Thêm trình ký số để người lập biểu trước khi gửi báo cáo có sự phê duyệt của ban lãnh đạo', '', '2021-07-12', NULL, 5, 39, 2, 146, 40, 9, '2021-06-17 10:19:37+07', '2021-08-27 08:34:09+07', '2021-07-12', 100, NULL, NULL, 4374, 1, 2, false, '2021-08-27 08:34:09+07');
INSERT INTO public.issues VALUES (4375, 2, 42, 'Import file dữ liệu báo cáo điều 18', '', '2021-07-12', NULL, 5, 38, 2, 146, 38, 10, '2021-06-17 03:31:38+07', '2021-07-17 10:02:47+07', '2021-07-12', 100, NULL, NULL, 4375, 1, 2, false, '2021-07-17 10:02:47+07');
INSERT INTO public.issues VALUES (4376, 2, 69, 'Đăng ký phát biểu cho cá nhân(trước phiên họp)', '', '2021-06-15', 31, 3, 15, 2, 138, 15, 1, '2021-06-21 08:22:39+07', '2021-06-21 01:26:43+07', '2021-06-14', 100, NULL, 4362, 4362, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (4377, 2, 69, 'Đăng ký phát biểu cho (chủ trì)', '', '2021-06-16', NULL, 3, 15, 2, 138, 15, 1, '2021-06-21 08:23:25+07', '2021-06-21 01:26:43+07', '2021-06-16', 100, NULL, 4362, 4362, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (4378, 2, 69, 'Thu âm phát biểu từng cá nhân', '', '2021-06-18', 31, 3, 15, 2, 138, 15, 2, '2021-06-21 08:24:05+07', '2021-06-21 01:26:44+07', '2021-06-17', 100, NULL, 4362, 4362, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (4379, 2, 69, 'Chuyển nội dung phiên họp', '', '2021-06-19', 31, 3, 15, 2, 138, 15, 1, '2021-06-21 01:25:06+07', '2021-06-21 01:26:44+07', '2021-06-19', 100, NULL, 4362, 4362, 8, 9, false, NULL);
INSERT INTO public.issues VALUES (4380, 2, 69, 'Thông báo chuông (phiên họp - phiếu ý kiến)', '', '2021-06-19', 31, 3, 15, 2, 138, 15, 2, '2021-06-21 01:25:54+07', '2021-06-21 01:26:44+07', '2021-06-19', 100, NULL, 4362, 4362, 10, 11, false, NULL);
INSERT INTO public.issues VALUES (4381, 2, 69, 'Ghi chú trên file pdf', '', '2021-06-26', 31, 3, 15, 2, 141, 15, 7, '2021-06-21 01:28:43+07', '2021-06-29 08:39:31+07', '2021-06-21', 100, NULL, NULL, 4381, 1, 8, false, NULL);
INSERT INTO public.issues VALUES (4382, 2, 72, 'Dựng source mobile', '', '2021-07-12', NULL, 3, 53, 2, 147, 5, 4, '2021-06-21 09:44:01+07', '2021-07-16 09:44:47+07', '2021-07-12', 100, NULL, NULL, 4382, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4383, 2, 72, '[Mobile] Đăng nhập', '', '2021-07-20', NULL, 3, 53, 2, 149, 5, 8, '2021-06-21 09:44:25+07', '2021-08-02 15:03:59+07', '2021-07-19', 100, NULL, NULL, 4383, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4384, 2, 72, 'Cập nhật vị trí PTĐ trên bản đồ', '', '2021-06-22', NULL, 5, 13, 2, 140, 5, 2, '2021-06-21 10:02:27+07', '2021-07-01 14:31:32+07', '2021-06-21', 100, NULL, NULL, 4384, 1, 2, false, '2021-07-01 14:31:32+07');
INSERT INTO public.issues VALUES (4385, 2, 72, 'Danh sách ptđ cho chi cục', 'Thấy toàn bộ dữ liệu của tỉnh
Lọc theo nhóm, đơn vị, tên ptđ, số hiệu
Lọc ptđ sắp đến hạn, hết hạn', '2021-06-26', NULL, 5, 37, 2, 140, 37, 7, '2021-06-22 08:43:08+07', '2021-07-01 14:31:32+07', '2021-06-25', 100, NULL, NULL, 4385, 1, 2, false, '2021-07-01 14:31:32+07');
INSERT INTO public.issues VALUES (4386, 2, 72, 'Xuất báo cáo tổng hợp số lượng cơ sở theo từng loại ptđ', '', '2021-06-22', NULL, 5, 41, 2, 140, 37, 2, '2021-06-22 09:14:26+07', '2021-07-01 14:31:32+07', '2021-06-22', 100, NULL, NULL, 4386, 1, 2, false, '2021-07-01 14:31:32+07');
INSERT INTO public.issues VALUES (4387, 2, 72, 'Xuất báo cáo tổng hợp số lượng ptđ theo từng loại ptđ', '', '2021-06-23', NULL, 5, 41, 2, 140, 37, 3, '2021-06-22 09:15:24+07', '2021-07-01 14:31:32+07', '2021-06-23', 100, NULL, NULL, 4387, 1, 2, false, '2021-07-01 14:31:32+07');
INSERT INTO public.issues VALUES (4388, 2, 72, 'Xuất báo cáo ptđ đến kỳ kiểm định', '', '2021-06-24', NULL, 5, 41, 2, 140, 37, 3, '2021-06-22 09:15:55+07', '2021-07-01 14:31:32+07', '2021-06-24', 100, NULL, NULL, 4388, 1, 2, false, '2021-07-01 14:31:32+07');
INSERT INTO public.issues VALUES (4389, 2, 72, 'Xuất báo cáo ptđ hết hiệu lực kiểm định', '', '2021-06-25', NULL, 5, 41, 2, 140, 37, 2, '2021-06-22 09:16:25+07', '2021-07-01 14:31:32+07', '2021-06-25', 100, NULL, NULL, 4389, 1, 2, false, '2021-07-01 14:31:32+07');
INSERT INTO public.issues VALUES (4390, 2, 72, 'Thống kê số cơ sở có trên hệ thống', '', '2021-06-23', NULL, 5, 37, 2, 140, 37, 5, '2021-06-22 09:16:42+07', '2021-07-01 14:31:32+07', '2021-06-22', 100, NULL, NULL, 4390, 1, 2, false, '2021-07-01 14:31:32+07');
INSERT INTO public.issues VALUES (4391, 2, 72, 'Thống kê số ptđ có trên hệ thống', '', '2021-06-24', NULL, 5, 37, 2, 140, 37, 3, '2021-06-22 09:17:05+07', '2021-07-01 14:31:32+07', '2021-06-24', 100, NULL, NULL, 4391, 1, 2, false, '2021-07-01 14:31:32+07');
INSERT INTO public.issues VALUES (4392, 2, 72, 'API gửi báo cáo', 'Gửi báo cáo cho đơn vị khác, có đính kèm nhiều file ', '2021-06-26', NULL, 5, 41, 2, 140, 41, 2, '2021-06-25 03:48:45+07', '2021-07-01 14:31:32+07', '2021-06-26', 100, NULL, NULL, 4392, 1, 2, false, '2021-07-01 14:31:32+07');
INSERT INTO public.issues VALUES (4393, 1, 42, 'API: Tại mẫu 7, mục chi phí Sở chủ quản tổng hợp chứ không nhập liệu', '', '2021-07-12', NULL, 5, 38, 2, 146, 40, 7, '2021-06-26 01:01:52+07', '2021-07-17 10:02:47+07', '2021-07-12', 100, NULL, NULL, 4393, 1, 2, false, '2021-07-17 10:02:47+07');
INSERT INTO public.issues VALUES (4394, 1, 42, 'Chỉnh lại bố cục PDF', '', '2021-07-01', NULL, 5, 38, 2, 139, 40, 5, '2021-06-26 01:02:12+07', '2021-07-12 08:46:56+07', '2021-07-01', 100, NULL, NULL, 4394, 1, 2, false, '2021-07-12 08:46:56+07');
INSERT INTO public.issues VALUES (4395, 1, 42, 'API: Phần header hiển thị năm thực hiện báo cáo và tên tổ chức chưa hiển thị', '', '2021-07-13', NULL, 5, 52, 2, 146, 40, 8, '2021-06-26 01:03:19+07', '2021-07-17 10:03:05+07', '2021-07-13', 100, NULL, NULL, 4395, 1, 2, false, '2021-07-17 10:03:05+07');
INSERT INTO public.issues VALUES (4396, 1, 42, 'Tại lĩnh vực quản lý ngân sách các đơn vị trực thuộc gửi báo cáo lên cho đơn vị chủ quản', '', '2021-07-12', NULL, 5, 40, 2, 146, 40, 4, '2021-06-26 01:04:15+07', '2021-07-12 03:10:52+07', '2021-07-12', 0, NULL, NULL, 4396, 1, 2, false, '2021-07-12 03:10:52+07');
INSERT INTO public.issues VALUES (4397, 1, 42, 'Tại mẫu phụ lục số 5, các đơn vị chưa có phần thiết lập tài khoản', '', '2021-07-01', NULL, 5, 41, 2, 139, 40, 5, '2021-06-26 01:07:30+07', '2021-07-12 01:58:13+07', '2021-07-01', 100, NULL, NULL, 4397, 1, 2, false, '2021-07-12 01:58:13+07');
INSERT INTO public.issues VALUES (4398, 1, 42, 'Các mẫu thuộc lĩnh vực tài chính đầu tư, tại phần danh mục đơn vị nào thêm mới DM thì giao diện chỉ hiển thị nội dung của đơn vị đó', '', '2021-07-01', NULL, 5, 39, 2, 139, 40, 4, '2021-06-26 01:11:27+07', '2021-07-12 01:58:55+07', '2021-07-01', 100, NULL, NULL, 4398, 1, 2, false, '2021-07-12 01:58:55+07');
INSERT INTO public.issues VALUES (4399, 2, 69, 'Gắn PDF trên canvas', '', '2021-06-22', 31, 3, 15, 2, 141, 15, 1, '2021-06-29 08:30:18+07', '2021-06-29 08:39:31+07', '2021-06-21', 100, NULL, 4381, 4381, 2, 3, false, NULL);
INSERT INTO public.issues VALUES (4400, 2, 69, 'Chuyển phiên họp', '', '2021-06-23', 31, 3, 15, 2, 141, 15, 2, '2021-06-29 08:31:51+07', '2021-06-29 08:39:32+07', '2021-06-23', 100, NULL, NULL, 4400, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4401, 2, 69, 'Gắn lớp ghi chú cho pdf', '', '2021-06-25', 31, 3, 15, 2, 141, 15, 1, '2021-06-29 08:33:22+07', '2021-06-29 08:39:31+07', '2021-06-23', 100, NULL, 4381, 4381, 4, 5, false, NULL);
INSERT INTO public.issues VALUES (4402, 2, 69, 'Chỉnh sửa giao diện + thêm công cụ chỉnh sửa pdf ', '', '2021-06-26', 31, 3, 15, 2, 141, 15, 1, '2021-06-29 08:34:38+07', '2021-06-29 08:39:31+07', '2021-06-26', 100, NULL, 4381, 4381, 6, 7, false, NULL);
INSERT INTO public.issues VALUES (4403, 2, 69, 'Detail cho notify (phiếu + phiên họp)', '', '2021-06-21', 31, 3, 15, 2, 141, 15, 1, '2021-06-29 08:38:02+07', '2021-06-29 08:39:32+07', '2021-06-21', 100, NULL, NULL, 4403, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4404, 2, 69, 'Notify scroll infinity', '', '2021-06-22', 31, 3, 15, 2, 141, 15, 1, '2021-06-29 08:38:49+07', '2021-06-29 08:39:32+07', '2021-06-22', 100, NULL, NULL, 4404, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4405, 2, 69, 'Thay đổi giao diện form login', '', '2021-06-28', 31, 3, NULL, 2, 144, 15, 1, '2021-06-29 08:47:28+07', '2021-06-29 08:47:50+07', '2021-06-28', 100, NULL, NULL, 4405, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4406, 2, 72, 'Chức năng soạn gửi báo cáo ', '', '2021-06-30', NULL, 5, 39, 2, 142, 39, 2, '2021-06-30 07:57:37+07', '2021-07-01 14:31:55+07', '2021-06-29', 100, NULL, NULL, 4406, 1, 2, false, '2021-07-01 14:31:55+07');
INSERT INTO public.issues VALUES (4407, 2, 72, 'Xem chi tiết gửi nhận báo cáo', '', '2021-07-02', NULL, 5, 39, 2, 142, 39, 4, '2021-06-30 07:58:09+07', '2021-07-05 02:02:50+07', '2021-07-02', 100, NULL, NULL, 4407, 1, 2, false, '2021-07-05 02:02:50+07');
INSERT INTO public.issues VALUES (4408, 2, 72, 'Notify SOCKET IO cho gửi nhận văn bản ', '', '2021-07-02', NULL, 5, 39, 2, 142, 39, 2, '2021-07-01 11:11:10+07', '2021-07-05 02:02:50+07', '2021-07-01', 100, NULL, NULL, 4408, 1, 2, false, '2021-07-05 02:02:50+07');
INSERT INTO public.issues VALUES (4409, 2, 72, 'Chức năng thông báo trước 15 ngày hoặc 30 ngày đến cơ quan quản lý', 'Gửi vào mục thông báo trên hệ thống (notify)', '2021-07-19', NULL, 3, 39, 2, 149, 5, 8, '2021-07-01 14:43:48+07', '2021-07-19 11:46:55+07', '2021-07-19', 100, NULL, NULL, 4409, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4410, 2, 72, 'Popup xem chi tiết cơ sở trên bản đồ', '', '2021-07-03', NULL, 5, 39, 2, 142, 5, 6, '2021-07-01 14:44:30+07', '2021-07-05 02:02:50+07', '2021-07-03', 100, NULL, NULL, 4410, 1, 2, false, '2021-07-05 02:02:50+07');
INSERT INTO public.issues VALUES (4413, 2, 72, 'Setup Firebase to Notification', '', '2021-07-03', NULL, 5, 39, 2, 142, 39, 6, '2021-07-02 16:51:29+07', '2021-07-05 02:02:50+07', '2021-07-03', 100, NULL, NULL, 4413, 1, 2, false, '2021-07-05 02:02:50+07');
INSERT INTO public.issues VALUES (4414, 2, 72, 'API : Tìm kiếm thông tin Dashboard', '', '2021-06-28', NULL, 5, 41, 2, 142, 41, 3, '2021-07-03 09:05:13+07', '2021-07-05 02:02:50+07', '2021-06-28', 100, NULL, NULL, 4414, 1, 2, false, '2021-07-05 02:02:50+07');
INSERT INTO public.issues VALUES (4415, 2, 72, 'API : AutoSeen các thông báo chưa đọc', '', '2021-07-02', NULL, 5, 41, 2, 142, 41, 2, '2021-07-03 09:07:48+07', '2021-07-05 02:02:50+07', '2021-07-02', 100, NULL, NULL, 4415, 1, 2, false, '2021-07-05 02:02:50+07');
INSERT INTO public.issues VALUES (4416, 2, 72, 'API : AutoSeen các báo các chưa đọc ', '', '2021-07-03', NULL, 5, 41, 2, 142, 41, 2, '2021-07-03 09:08:23+07', '2021-07-05 02:02:50+07', '2021-07-03', 100, NULL, NULL, 4416, 1, 2, false, '2021-07-05 02:02:50+07');
INSERT INTO public.issues VALUES (4417, 2, 72, 'Hiển thị kết quả tìm kiếm trên bản đồ', 'Tìm kiếm ra bao nhiêu kết quả, thì trên bản đồ hiển thị bấy nhiêu', '2021-07-05', NULL, 3, 37, 2, 145, 5, 1, '2021-07-03 09:54:13+07', '2021-07-24 08:44:11+07', '2021-07-05', 100, NULL, NULL, 4417, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4418, 2, 72, 'Danh mục thông báo', '', '2021-07-03', NULL, 5, 39, 2, 142, 39, 2, '2021-07-03 16:44:46+07', '2021-07-05 02:02:50+07', '2021-07-03', 100, NULL, NULL, 4418, 1, 2, false, '2021-07-05 02:02:50+07');
INSERT INTO public.issues VALUES (4419, 2, 72, 'Popup xem chi tiết phương tiện đo trên bản đồ', '', '2021-07-05', NULL, 3, 37, 2, 145, 39, 2, '2021-07-03 16:45:35+07', '2021-07-24 08:44:11+07', '2021-07-05', 100, NULL, NULL, 4419, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4420, 2, 72, 'Báo cáo danh sách cơ sở theo nhóm PTĐ', '', '2021-07-03', NULL, 5, 37, 2, 142, 5, 2, '2021-07-05 08:42:30+07', '2021-07-05 02:02:50+07', '2021-07-03', 100, NULL, NULL, 4420, 1, 2, false, '2021-07-05 02:02:50+07');
INSERT INTO public.issues VALUES (4421, 2, 72, 'Báo cáo danh sách PTĐ theo nhóm PTĐ', '', '2021-07-03', NULL, 5, 37, 2, 142, 5, 2, '2021-07-05 08:42:54+07', '2021-07-05 02:02:50+07', '2021-07-03', 100, NULL, NULL, 4421, 1, 2, false, '2021-07-05 02:02:50+07');
INSERT INTO public.issues VALUES (4422, 2, 72, 'Báo cáo danh sách PTĐ hết hạn kiểm định', '', '2021-07-03', NULL, 5, 37, 2, 142, 5, 2, '2021-07-05 08:43:17+07', '2021-07-05 02:02:51+07', '2021-07-03', 100, NULL, NULL, 4422, 1, 2, false, '2021-07-05 02:02:51+07');
INSERT INTO public.issues VALUES (4423, 2, 72, 'Lọc theo tên, số hiệu: bấm enter là tìm', '', '2021-07-05', NULL, 5, 37, 2, 145, 5, 2, '2021-07-05 08:48:03+07', '2021-07-12 09:50:09+07', '2021-07-05', 100, NULL, NULL, 4423, 1, 2, false, '2021-07-12 09:50:09+07');
INSERT INTO public.issues VALUES (4424, 2, 72, 'Cơ sở chỉ gửi nhận văn bản cho chi cục thôi', '', '2021-07-06', NULL, 5, 39, 2, 145, 5, 3, '2021-07-05 02:02:31+07', '2021-07-12 09:50:10+07', '2021-07-06', 100, NULL, NULL, 4424, 1, 2, false, '2021-07-12 09:50:10+07');
INSERT INTO public.issues VALUES (4425, 2, 72, 'Thiết lập bật tắt Module Chat từ admin', '', '2021-07-06', NULL, 5, 39, 2, 145, 39, 3, '2021-07-06 08:35:42+07', '2021-07-12 09:50:10+07', '2021-07-06', 100, NULL, NULL, 4425, 1, 2, false, '2021-07-12 09:50:10+07');
INSERT INTO public.issues VALUES (4426, 1, 42, 'Điều 18 - thiếu 01, 02, 03/ CQTH', '', '2021-07-12', NULL, 5, 40, 2, 146, 40, 2, '2021-07-09 01:13:18+07', '2021-07-12 03:10:52+07', '2021-07-12', 0, NULL, NULL, 4426, 1, 2, false, '2021-07-12 03:10:52+07');
INSERT INTO public.issues VALUES (4493, 1, 42, 'Điều 18, mẫu 04cđt báo lỗi', '', '2021-09-08', NULL, 5, NULL, 2, 152, 5, 3, '2021-09-08 11:03:31+07', '2021-09-20 10:24:13+07', '2021-09-08', 100, NULL, NULL, 4493, 1, 2, false, '2021-09-20 10:24:13+07');
INSERT INTO public.issues VALUES (4427, 1, 42, 'Điều 13 - Thêm khung nhập dữ liệu cho mục đánh giá chung', '', '2021-07-12', NULL, 5, 39, 2, 146, 40, 5, '2021-07-09 01:14:05+07', '2021-07-17 10:02:47+07', '2021-07-12', 100, NULL, NULL, 4427, 1, 2, false, '2021-07-17 10:02:47+07');
INSERT INTO public.issues VALUES (4428, 1, 42, 'Tỉnh đoàn có thực hiện lĩnh vực Tài chính đầu tư', '', '2021-07-12', NULL, 5, 40, 2, 146, 40, 2, '2021-07-09 01:15:13+07', '2021-07-12 03:10:52+07', '2021-07-12', 0, NULL, NULL, 4428, 1, 2, false, '2021-07-12 03:10:52+07');
INSERT INTO public.issues VALUES (4429, 1, 42, 'Điều 12 - mẫu 07 tổng hợp từ mẫu 06 cả phần trích quỹ và các khoản chi', '', '2021-07-12', NULL, 5, 38, 2, 146, 40, 5, '2021-07-09 01:54:22+07', '2021-07-17 10:02:48+07', '2021-07-12', 100, NULL, NULL, 4429, 1, 2, false, '2021-07-17 10:02:48+07');
INSERT INTO public.issues VALUES (4430, 2, 42, 'Cấu hình header, footer', '', '2021-07-12', NULL, 5, 37, 2, 146, 38, 3, '2021-07-12 08:54:12+07', '2021-07-17 10:02:48+07', '2021-07-12', 100, NULL, NULL, 4430, 1, 2, false, '2021-07-17 10:02:48+07');
INSERT INTO public.issues VALUES (4431, 2, 42, 'Tại mẫu 7, mục chi phí Sở chủ quản tổng hợp chứ không nhập liệu', '', '2021-07-12', NULL, 5, 38, 2, 146, 38, 5, '2021-07-12 08:55:17+07', '2021-07-17 10:02:48+07', '2021-07-12', 100, NULL, NULL, 4431, 1, 2, false, '2021-07-17 10:02:48+07');
INSERT INTO public.issues VALUES (4432, 2, 42, 'Frontend : Tại mẫu 7, mục chi phí Sở chủ quản tổng hợp chứ không nhập liệu', '', '2021-07-12', NULL, 5, 37, 2, 146, 39, 5, '2021-07-12 14:51:18+07', '2021-08-27 08:34:10+07', '2021-07-12', 100, NULL, NULL, 4432, 1, 2, false, '2021-08-27 08:34:10+07');
INSERT INTO public.issues VALUES (4433, 1, 42, 'điều 12 mẫu 07 Sửa tiêu đề chi tiết Qũy dự phòng ổn định thu nhập của đơn vị trực thuộc', '![](clipboard-202107130936-es0gz.png)
', '2021-07-13', NULL, 5, 39, 2, 146, 40, 3, '2021-07-13 09:35:04+07', '2021-07-17 10:03:05+07', '2021-07-13', 100, NULL, NULL, 4433, 1, 2, false, '2021-07-17 10:03:05+07');
INSERT INTO public.issues VALUES (4434, 1, 42, 'điều 12 Xem báo cáo đến của mẫu 06, 07 được thêm, sửa xóa dữ liệu và khi đóng giao diện hiển thị thông báo lưu dữ liệu', '![](clipboard-202107130937-kv5rj.png)
', '2021-07-13', NULL, 5, 39, 2, 146, 40, 4, '2021-07-13 09:36:14+07', '2021-07-17 10:03:05+07', '2021-07-13', 100, NULL, NULL, 4434, 1, 2, false, '2021-07-17 10:03:05+07');
INSERT INTO public.issues VALUES (4435, 1, 42, 'Điều 12 mẫu 06 Xem báo cáo đến nhưng được thêm, sửa, xóa phần danh sách khoản chi khác', '', '2021-07-13', NULL, 5, 39, 2, 146, 40, 3, '2021-07-13 09:37:17+07', '2021-07-17 10:03:06+07', '2021-07-13', 100, NULL, NULL, 4435, 1, 2, false, '2021-07-17 10:03:06+07');
INSERT INTO public.issues VALUES (4436, 1, 42, 'ĐIều 12 mẫu 07 - Chưa lưu được dữ liệu', '', '2021-07-13', NULL, 5, 38, 2, 146, 40, 3, '2021-07-13 09:39:15+07', '2021-07-17 10:03:06+07', '2021-07-13', 100, NULL, NULL, 4436, 1, 2, false, '2021-07-17 10:03:06+07');
INSERT INTO public.issues VALUES (4437, 1, 42, 'Điều 12 - mẫu 07 chưa tổng hợp mục danh sách các khoản chi khác', '', '2021-07-13', NULL, 5, 38, 2, 146, 40, 3, '2021-07-13 09:40:14+07', '2021-07-17 10:03:06+07', '2021-07-13', 100, NULL, NULL, 4437, 1, 2, false, '2021-07-17 10:03:06+07');
INSERT INTO public.issues VALUES (4438, 1, 42, 'Điều 22 mẫu 05A, 05B - Dữ liệu tự động tổng hợp khi chưa được tiếp nhận', '', '2021-07-15', NULL, 5, 39, 2, 146, 40, 3, '2021-07-15 10:12:21+07', '2021-08-27 08:34:10+07', '2021-07-15', 100, NULL, NULL, 4438, 1, 2, false, '2021-08-27 08:34:10+07');
INSERT INTO public.issues VALUES (4439, 1, 42, 'Điều 24 - mẫu 1A, 1, 1C, 1D Không thêm được dữ liệu', '', '2021-07-15', NULL, 5, 39, 2, 146, 40, 1, '2021-07-15 10:13:11+07', '2021-07-16 15:31:28+07', '2021-07-15', 0, NULL, NULL, 4439, 1, 2, false, '2021-07-16 15:31:28+07');
INSERT INTO public.issues VALUES (4440, 2, 72, '[mobile] Trang bản đồ', '', '2021-07-22', NULL, 3, 53, 2, 149, 5, 4, '2021-07-16 09:42:55+07', '2021-08-02 15:05:47+07', '2021-07-21', 100, NULL, NULL, 4440, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4441, 2, 72, '[mobile] Trang tin nhắn', '', NULL, NULL, 1, 53, 2, 143, 5, 0, '2021-07-16 09:44:05+07', '2021-07-16 09:44:05+07', NULL, 0, NULL, NULL, 4441, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4442, 2, 72, '[mobile] Trang notification', '', NULL, NULL, 1, 53, 2, 143, 5, 0, '2021-07-16 09:44:24+07', '2021-07-16 09:44:24+07', NULL, 0, NULL, NULL, 4442, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4443, 2, 72, '[mobile] Tìm kiếm trên bản đồ', '', '2021-07-24', NULL, 1, 53, 2, 149, 5, 1, '2021-07-16 09:45:43+07', '2021-07-19 11:39:01+07', '2021-07-23', 0, NULL, NULL, 4443, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4444, 2, 42, 'API: Phân quyền lĩnh vực cho tài khoản', '', '2021-07-19', NULL, 5, 38, 2, 148, 5, 6, '2021-07-17 08:19:03+07', '2021-08-27 08:34:45+07', '2021-07-19', 100, NULL, NULL, 4444, 1, 2, false, '2021-08-27 08:34:45+07');
INSERT INTO public.issues VALUES (4445, 2, 42, 'Ẩn hiện nút import sau khi ký số', '', '2021-07-17', NULL, 5, 37, 2, 146, 38, 2, '2021-07-17 10:26:13+07', '2021-08-27 08:34:10+07', '2021-07-17', 100, NULL, NULL, 4445, 1, 2, false, '2021-08-27 08:34:10+07');
INSERT INTO public.issues VALUES (4446, 2, 42, 'Ẩn hiện danh mục nguồn vốn theo phân quyền', '', '2021-07-19', NULL, 5, 39, 2, 148, 38, 3, '2021-07-17 10:28:12+07', '2021-08-27 08:34:45+07', '2021-07-19', 100, NULL, NULL, 4446, 1, 2, false, '2021-08-27 08:34:45+07');
INSERT INTO public.issues VALUES (4447, 2, 42, 'Điều 16_ Mẫu số 12/QTDA thêm mục 4,5', '', '2021-07-17', NULL, 5, 52, 2, 146, 38, 3, '2021-07-17 10:46:42+07', '2021-08-27 08:34:11+07', '2021-07-17', 100, NULL, NULL, 4447, 1, 2, false, '2021-08-27 08:34:11+07');
INSERT INTO public.issues VALUES (4448, 2, 42, 'FrontEnd: Phân quyền theo lĩnh vực', '', '2021-07-19', NULL, 5, 39, 2, 148, 39, 3, '2021-07-17 15:54:02+07', '2021-08-27 08:34:46+07', '2021-07-19', 100, NULL, NULL, 4448, 1, 2, false, '2021-08-27 08:34:46+07');
INSERT INTO public.issues VALUES (4449, 2, 42, 'Điều 20 - Các mục "Trong đó" sẽ không tính cộng tổng', '', '2021-09-04', NULL, 5, 41, 2, 150, 5, 8, '2021-08-27 09:15:18+07', '2021-09-20 10:24:04+07', '2021-09-04', 100, NULL, NULL, 4449, 1, 2, false, '2021-09-20 10:24:04+07');
INSERT INTO public.issues VALUES (4452, 2, 42, 'Điều 13 - Phụ lục số 6, cho chọn lĩnh vực của mỗi đơn vị, để tổng hợp ra', '=> SYS_DonVi.Dieu1213_LinhVuc_Id

![](thiet%20lap%20linh%20vuc%20trong%20dieu%2012%20mau%2006%3B%20dieu%2013%2C%20PL5.png)
', '2021-08-28', NULL, 5, 37, 2, 151, 5, 6, '2021-08-27 10:03:25+07', '2021-09-01 08:55:14+07', '2021-08-28', 100, NULL, NULL, 4452, 1, 2, false, '2021-09-01 08:55:14+07');
INSERT INTO public.issues VALUES (4454, 2, 42, 'Điều 16 - Mẫu số: 12/QTDA, thay tên đơn vị gửi vào', 'BỘ, CƠ QUAN TRUNG ƯƠNG, TẬP ĐOÀN TỔNG CÔNG TY NHÀ NƯỚC, UBND CẤP TỈNH => thay tên đơn vị gửi vào', '2021-09-01', NULL, 5, 8, 2, 150, 5, 6, '2021-08-27 10:18:03+07', '2021-09-01 13:33:55+07', '2021-09-01', 100, NULL, NULL, 4454, 1, 2, false, '2021-09-01 13:33:55+07');
INSERT INTO public.issues VALUES (4455, 2, 42, 'Điều 16 - Form nhập liệu thêm ghi chú', ' "Chỉ nhập các dự án có nguồn vốn đầu tư trên 50% so với tổng mức đầu tư"', '2021-09-04', NULL, 5, 37, 2, 150, 5, 8, '2021-08-27 10:23:00+07', '2021-09-20 10:24:05+07', '2021-09-04', 100, NULL, NULL, 4455, 1, 2, false, '2021-09-20 10:24:05+07');
INSERT INTO public.issues VALUES (4456, 2, 42, 'Điều 16 - Cột dự án cho chọn từ module popup', 'Dự án là danh mục luôn', '2021-09-04', NULL, 5, 37, 2, 150, 5, 9, '2021-08-27 10:24:56+07', '2021-09-20 10:24:05+07', '2021-09-04', 100, NULL, NULL, 4456, 1, 2, false, '2021-09-20 10:24:05+07');
INSERT INTO public.issues VALUES (4457, 2, 42, 'Điều 16 - Thêm chức năng import excel', '', '2021-09-04', NULL, 5, 8, 2, 150, 5, 9, '2021-08-27 10:29:31+07', '2021-09-20 10:24:05+07', '2021-09-04', 100, NULL, NULL, 4457, 1, 2, false, '2021-09-20 10:24:05+07');
INSERT INTO public.issues VALUES (4458, 2, 42, 'Điều 18 - Mã dự án có thể để trống', '', '2021-09-01', NULL, 5, 8, 2, 150, 5, 5, '2021-08-27 10:33:27+07', '2021-09-01 13:33:55+07', '2021-09-01', 100, NULL, NULL, 4458, 1, 2, false, '2021-09-01 13:33:55+07');
INSERT INTO public.issues VALUES (4460, 2, 42, 'Điều 9. Mẫu 1.03 thêm đơn vị tính', 'Tổng mức đầu tư: (VNĐ); 
Tổng số vốn vay: (USD); 
Tỷ lệ vay lại %', '2021-09-13', NULL, 5, 37, 2, 153, 5, 10, '2021-08-27 10:45:02+07', '2021-09-20 10:24:30+07', '2021-09-13', 100, NULL, NULL, 4460, 1, 2, false, '2021-09-20 10:24:30+07');
INSERT INTO public.issues VALUES (4461, 2, 42, 'Điều 16 - Mẫu 12, mục 1 chưa format thập phân pdf', '', '2021-09-01', NULL, 5, 52, 2, 150, 5, 11, '2021-08-27 10:49:25+07', '2021-09-01 13:33:55+07', '2021-09-01', 100, NULL, NULL, 4461, 1, 2, false, '2021-09-01 13:33:55+07');
INSERT INTO public.issues VALUES (4463, 2, 42, 'Điều 15, tiêu đề báo cáo ghi rõ tháng mấy, hoặc quý mấy', '', '2021-08-30', NULL, 5, 37, 2, 150, 5, 4, '2021-08-27 10:55:46+07', '2021-09-01 13:33:56+07', '2021-08-30', 100, NULL, NULL, 4463, 1, 2, false, '2021-09-01 13:33:56+07');
INSERT INTO public.issues VALUES (4464, 2, 42, 'Điều 15, đưa mục ghi chú, nguồn thông tin vào danh mục', 'mỗi lần tạo báo cáo, load ra, và cho điều chỉnh', '2021-09-01', NULL, 5, 8, 2, 150, 5, 5, '2021-08-27 10:57:50+07', '2021-09-04 08:48:14+07', '2021-09-01', 0, NULL, NULL, 4464, 1, 2, false, '2021-09-04 08:48:14+07');
INSERT INTO public.issues VALUES (4465, 2, 42, 'Biểu số 3, sẽ đc tổng hợp từ 2c, 2đ', '', NULL, NULL, 1, NULL, 2, 75, 5, 2, '2021-08-27 10:59:44+07', '2021-08-30 11:21:23+07', NULL, 0, NULL, NULL, 4465, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4466, 2, 42, 'Làm mẫu tổng hợp điều 20 => 1C', '', NULL, NULL, 1, NULL, 2, 75, 5, 2, '2021-08-27 11:00:13+07', '2021-08-30 11:21:24+07', NULL, 0, NULL, NULL, 4466, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4467, 2, 42, 'Ký số doanh nghiệp chỉnh lại cho ký đầu trang bên trái', '', NULL, NULL, 1, NULL, 2, 75, 5, 0, '2021-08-27 11:00:30+07', '2021-08-27 11:00:30+07', '2021-08-27', 0, NULL, NULL, 4467, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4469, 2, 42, 'Điều 18 - Tạo import cho danh mục mã dự án', 'Hỏi danh mục từ chị Oanh', '2021-09-04', NULL, 5, 8, 2, 150, 5, 6, '2021-08-27 11:01:33+07', '2021-09-20 10:24:05+07', '2021-09-04', 100, NULL, NULL, 4469, 1, 2, false, '2021-09-20 10:24:05+07');
INSERT INTO public.issues VALUES (4470, 2, 42, 'Điều 15 - Check lại báo cáo quý, báo cáo năm theo công thức', '![](clipboard-202108271413-qmjnl.png)', '2021-09-01', NULL, 5, 41, 2, 150, 5, 6, '2021-08-27 14:13:12+07', '2021-09-04 08:49:15+07', '2021-09-01', 100, NULL, NULL, 4470, 1, 2, false, '2021-09-04 08:49:15+07');
INSERT INTO public.issues VALUES (4471, 2, 42, 'Điều 13 phụ lục 6 thêm ô text cho mục c, đ', '', '2021-08-28', NULL, 5, 37, 2, 151, 37, 4, '2021-08-27 14:39:04+07', '2021-09-01 08:55:15+07', '2021-08-27', 100, NULL, NULL, 4471, 1, 2, false, '2021-09-01 08:55:15+07');
INSERT INTO public.issues VALUES (4472, 2, 42, 'Điều 13 phụ lục 6:  Số đơn vị chênh lệch thu lớn hơn chi bị sai (cột e)', '', '2021-08-28', NULL, 5, 37, 2, 151, 37, 4, '2021-08-27 14:48:33+07', '2021-09-01 08:55:15+07', '2021-08-28', 100, NULL, NULL, 4472, 1, 2, false, '2021-09-01 08:55:15+07');
INSERT INTO public.issues VALUES (4473, 2, 42, 'Điều 12: mẫu 7: Số lượng Sở, Ban, ngành cấp tỉnh: là 1 (đơn vị dự toán cấp 1)', '', '2021-08-28', NULL, 5, 37, 2, 151, 37, 4, '2021-08-27 14:49:27+07', '2021-09-01 08:55:15+07', '2021-08-28', 100, NULL, NULL, 4473, 1, 2, false, '2021-09-01 08:55:15+07');
INSERT INTO public.issues VALUES (4474, 2, 42, 'Điều 12 mẫu 07:  Số đơn vị đã xây dựng Quy chế chi tiêu nội bộ: = Số đơn vị được giao thực hiện tự chủ', '', '2021-08-28', NULL, 5, 37, 2, 151, 37, 4, '2021-08-27 14:50:00+07', '2021-09-01 08:55:15+07', '2021-08-28', 100, NULL, NULL, 4474, 1, 2, false, '2021-09-01 08:55:15+07');
INSERT INTO public.issues VALUES (4475, 2, 42, 'Điều 18 - Thêm cột số liệu của tỉnh, 01/CDT, 01CQTH', 'Từ C06_TongSo_Tinh => C24_', '2021-08-27', NULL, 5, 41, 2, 151, 5, 3, '2021-08-27 14:51:27+07', '2021-09-01 08:55:15+07', '2021-08-27', 100, NULL, NULL, 4475, 1, 2, false, '2021-09-01 08:55:15+07');
INSERT INTO public.issues VALUES (4476, 2, 42, 'Điều 18 - 01CDT, 01CQTH thêm tùy chọn xem số liệu', '1. Số liệu đầy đủ
2. Số liệu của Tỉnh', '2021-09-03', NULL, 5, 8, 2, 150, 5, 4, '2021-08-27 15:03:44+07', '2021-09-01 13:33:56+07', '2021-09-03', 100, NULL, NULL, 4476, 1, 2, false, '2021-09-01 13:33:56+07');
INSERT INTO public.issues VALUES (4477, 2, 42, 'Điều 15 - Lỗi hiển thị dropdown quý - năm (bỏ luôn - chuyển qua xử lý dữ liệu sql)', '![](clipboard-202108271519-rd1zu.png)', '2021-08-30', NULL, 5, 8, 2, 150, 5, 5, '2021-08-27 15:20:09+07', '2021-09-01 13:33:56+07', '2021-08-30', 100, NULL, NULL, 4477, 1, 2, false, '2021-09-01 13:33:56+07');
INSERT INTO public.issues VALUES (4478, 2, 42, 'Trong quy trình báo cáo frontend cho chỉnh tên tần suất', 'RP_ChiTietQuyTrinh_TanSuat

nói backend thêm cột Name', '2021-09-04', NULL, 5, 37, 2, 150, 5, 6, '2021-08-27 15:25:59+07', '2021-09-20 10:24:05+07', '2021-09-04', 100, NULL, NULL, 4478, 1, 2, false, '2021-09-20 10:24:05+07');
INSERT INTO public.issues VALUES (4479, 2, 42, 'Phân tích lại điều 9: mẫu 1.01, mẫu 1.02, mẫu 1.03', '', '2021-08-30', NULL, 5, 5, 2, 150, 5, 3, '2021-08-27 15:30:11+07', '2021-09-01 13:33:56+07', '2021-08-30', 100, NULL, NULL, 4479, 1, 2, false, '2021-09-01 13:33:56+07');
INSERT INTO public.issues VALUES (4480, 2, 42, '[B] Điều 16 - Xuất excel từng phiên bản ở cùng 1 mẫu', 'Dựa vào DM_MauBaoCao_HTML', '2021-09-08', NULL, 5, 41, 2, 152, 5, 11, '2021-08-27 15:32:29+07', '2021-09-20 10:24:12+07', '2021-09-08', 100, NULL, NULL, 4480, 1, 2, false, '2021-09-20 10:24:12+07');
INSERT INTO public.issues VALUES (4481, 2, 42, 'Chỉnh lại giao diện 02, 03, 04CĐT', '', '2021-08-28', NULL, 5, 53, 2, 151, 5, 3, '2021-08-28 09:15:43+07', '2021-09-01 08:55:15+07', '2021-08-28', 100, NULL, NULL, 4481, 1, 2, false, '2021-09-01 08:55:15+07');
INSERT INTO public.issues VALUES (4482, 2, 42, '[F] Điều 16 - Xuất excel từng phiên bản ở cùng 1 mẫu', 'Dựa vào DM_MauBaoCao_HTML', '2021-09-04', NULL, 5, 53, 2, 150, 5, 8, '2021-08-28 09:31:11+07', '2021-09-20 10:24:05+07', '2021-09-04', 100, NULL, NULL, 4482, 1, 2, false, '2021-09-20 10:24:05+07');
INSERT INTO public.issues VALUES (4483, 2, 42, 'Điều 16 - Mẫu 12 api chức năng import excel', '', '2021-09-11', NULL, 5, 52, 2, 152, 5, 11, '2021-08-28 09:39:14+07', '2021-09-20 10:24:12+07', '2021-09-11', 100, NULL, NULL, 4483, 1, 2, false, '2021-09-20 10:24:12+07');
INSERT INTO public.issues VALUES (4484, 2, 42, 'Điều 10, Phụ lục 02/ TT 188 mở các trường "Các nội dung khác" cho nhập', '', '2021-09-04', NULL, 5, 37, 2, 150, 37, 6, '2021-08-30 15:34:20+07', '2021-09-20 10:24:05+07', '2021-09-04', 100, NULL, NULL, 4484, 1, 2, false, '2021-09-20 10:24:05+07');
INSERT INTO public.issues VALUES (4485, 2, 42, 'Điều 15: Gộp dữ liệu sở nn, sở y tế, sở gtvt vào 116', '', '2021-09-04', NULL, 5, 41, 2, 150, 5, 4, '2021-09-01 09:50:01+07', '2021-09-20 10:24:05+07', '2021-09-04', 100, NULL, NULL, 4485, 1, 2, false, '2021-09-20 10:24:05+07');
INSERT INTO public.issues VALUES (4486, 2, 42, 'Điều 15: thêm hàng hóa có DonVi_Id', '', '2021-09-07', NULL, 5, 8, 2, 152, 5, 3, '2021-09-07 10:33:10+07', '2021-09-20 10:24:12+07', '2021-09-07', 100, NULL, NULL, 4486, 1, 2, false, '2021-09-20 10:24:12+07');
INSERT INTO public.issues VALUES (4487, 2, 42, 'Điều 15: cho xóa/sửa dữ liệu hàng hóa của đơn vị mình thôi', '', '2021-09-07', NULL, 5, 8, 2, 152, 5, 3, '2021-09-07 10:33:46+07', '2021-09-20 10:24:12+07', '2021-09-07', 100, NULL, NULL, 4487, 1, 2, false, '2021-09-20 10:24:12+07');
INSERT INTO public.issues VALUES (4488, 2, 42, 'Điều 15: báo cáo quý, năm k cho xóa/sửa', '', '2021-09-07', NULL, 5, 8, 2, 152, 5, 3, '2021-09-07 10:35:06+07', '2021-09-20 10:24:12+07', '2021-09-07', 100, NULL, NULL, 4488, 1, 2, false, '2021-09-20 10:24:12+07');
INSERT INTO public.issues VALUES (4489, 2, 42, 'Thêm/xóa/sửa phiên bản html của mẫu báo cáo', '', '2021-09-08', NULL, 5, 53, 2, 152, 5, 4, '2021-09-07 10:42:52+07', '2021-09-20 10:24:13+07', '2021-09-07', 100, NULL, NULL, 4489, 1, 2, false, '2021-09-20 10:24:13+07');
INSERT INTO public.issues VALUES (4490, 2, 42, 'Điều 9, mẫu 1.1: Thêm/xóa/sửa dự án', '', '2021-09-15', NULL, 5, 8, 2, 153, 5, 8, '2021-09-07 10:55:47+07', '2021-09-20 10:24:30+07', '2021-09-13', 100, NULL, NULL, 4490, 1, 2, false, '2021-09-20 10:24:30+07');
INSERT INTO public.issues VALUES (4491, 2, 42, 'Điều 16, mẫu 12: cơ quan chủ quản chưa tổng hợp được', '', '2021-09-07', NULL, 5, 41, 2, 152, 5, 4, '2021-09-07 13:41:52+07', '2021-09-20 10:24:13+07', '2021-09-07', 100, NULL, NULL, 4491, 1, 2, false, '2021-09-20 10:24:13+07');
INSERT INTO public.issues VALUES (4492, 1, 42, 'Điều 18, mẫu 03cđt báo lỗi', '', '2021-09-08', NULL, 5, 5, 2, 152, 5, 4, '2021-09-08 11:03:02+07', '2021-09-20 10:24:13+07', '2021-09-08', 100, NULL, NULL, 4492, 1, 2, false, '2021-09-20 10:24:13+07');
INSERT INTO public.issues VALUES (4494, 1, 42, 'Điều 18: lỗi tổng hợp 01CQTH', '', '2021-09-10', NULL, 5, 41, 2, 152, 5, 3, '2021-09-10 09:22:21+07', '2021-09-20 10:24:13+07', '2021-09-10', 100, NULL, NULL, 4494, 1, 2, false, '2021-09-20 10:24:13+07');
INSERT INTO public.issues VALUES (4495, 2, 42, 'Import nhiệm vụ chi, mã ngành kinh tế', '', '2021-09-10', NULL, 5, 52, 2, 152, 5, 2, '2021-09-10 09:24:05+07', '2021-09-11 08:34:23+07', '2021-09-10', 100, NULL, NULL, 4495, 1, 2, false, '2021-09-11 08:34:23+07');
INSERT INTO public.issues VALUES (4496, 2, 42, 'Điều 16, 3 bảng: nhập hàng ngang, cho chọn dự án', '', '2021-09-10', NULL, 5, 37, 2, 152, 5, 2, '2021-09-10 09:25:38+07', '2021-09-20 10:24:13+07', '2021-09-10', 100, NULL, NULL, 4496, 1, 2, false, '2021-09-20 10:24:13+07');
INSERT INTO public.issues VALUES (4497, 2, 42, 'Update tổng mức đầu tư vào dự án', '', '2021-09-10', NULL, 5, 52, 2, 152, 5, 2, '2021-09-10 10:01:23+07', '2021-09-11 08:33:49+07', '2021-09-10', 100, NULL, NULL, 4497, 1, 2, false, '2021-09-11 08:33:49+07');
INSERT INTO public.issues VALUES (4498, 1, 42, 'Điều 18, mẫu 02cđt báo lỗi load tree', '', '2021-09-11', NULL, 5, 5, 2, 152, 5, 4, '2021-09-11 08:54:59+07', '2021-09-20 10:24:13+07', '2021-09-11', 100, NULL, NULL, 4498, 1, 2, false, '2021-09-20 10:24:13+07');
INSERT INTO public.issues VALUES (4499, 1, 42, 'Điều 18: lỗi tổng hợp 02CQTH', '', '2021-09-11', NULL, 5, 41, 2, 152, 5, 5, '2021-09-11 10:03:53+07', '2021-09-20 10:24:13+07', '2021-09-11', 100, NULL, NULL, 4499, 1, 2, false, '2021-09-20 10:24:13+07');
INSERT INTO public.issues VALUES (4500, 1, 42, 'Điều 18: lỗi tổng hợp 03CQTH', '', '2021-09-11', NULL, 5, 41, 2, 152, 5, 4, '2021-09-11 10:04:05+07', '2021-09-20 10:24:13+07', '2021-09-11', 100, NULL, NULL, 4500, 1, 2, false, '2021-09-20 10:24:13+07');
INSERT INTO public.issues VALUES (4501, 2, 42, 'Cập nhật lại điều 16', '', '2021-09-11', NULL, 5, 41, 2, 152, 41, 3, '2021-09-11 11:28:29+07', '2021-09-20 10:24:13+07', '2021-09-11', 100, NULL, NULL, 4501, 1, 2, false, '2021-09-20 10:24:13+07');
INSERT INTO public.issues VALUES (4502, 1, 42, 'Điều 18, 03cđt: bấm vào chỉnh sửa 1 ô bị lỗi', '000.08.34.H08', '2021-09-11', NULL, 5, 8, 2, 152, 5, 3, '2021-09-11 11:29:00+07', '2021-09-20 10:24:13+07', '2021-09-11', 100, NULL, NULL, 4502, 1, 2, false, '2021-09-20 10:24:13+07');
INSERT INTO public.issues VALUES (4503, 1, 42, 'Điều 18, 04cđt: bấm vào thêm dữ liệu báo lỗi', '', '2021-09-11', NULL, 5, 8, 2, 152, 5, 5, '2021-09-11 11:34:05+07', '2021-09-20 10:24:13+07', '2021-09-11', 100, NULL, NULL, 4503, 1, 2, false, '2021-09-20 10:24:13+07');
INSERT INTO public.issues VALUES (4504, 2, 42, 'Tải pdf load thông số khổ giấy đã cài đặt', '', '2021-09-20', NULL, 5, 41, 2, 154, 5, 3, '2021-09-13 08:16:28+07', '2021-10-01 15:13:08+07', '2021-09-20', 100, NULL, NULL, 4504, 1, 2, false, '2021-10-01 15:13:08+07');
INSERT INTO public.issues VALUES (4505, 2, 42, 'Điều 11, PL 1.3: cho công thức 9 tháng 2020 => định kỳ năm 2021', '', '2021-09-25', NULL, 3, 41, 2, 154, 5, 4, '2021-09-13 09:12:17+07', '2021-11-01 08:29:40+07', '2021-09-25', 100, NULL, NULL, 4505, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4506, 2, 42, 'Điều 9, mẫu 1.1: Thêm/xóa/sửa nguyên tệ', '', '2021-09-13', NULL, 5, 8, 2, 153, 5, 2, '2021-09-13 09:19:29+07', '2021-09-20 10:24:30+07', '2021-09-13', 100, NULL, NULL, 4506, 1, 2, false, '2021-09-20 10:24:30+07');
INSERT INTO public.issues VALUES (4507, 2, 42, 'Điều 9, mẫu 1.1: ẩn danh mục loại vốn', '', '2021-09-13', NULL, 5, 8, 2, 153, 5, 2, '2021-09-13 09:19:46+07', '2021-09-20 10:24:30+07', '2021-09-13', 100, NULL, NULL, 4507, 1, 2, false, '2021-09-20 10:24:30+07');
INSERT INTO public.issues VALUES (4508, 2, 42, 'Điều 9: làm lại mẫu 1.1', '', '2021-09-20', NULL, 3, 8, 2, 154, 5, 4, '2021-09-13 09:20:31+07', '2021-10-01 15:44:09+07', '2021-09-20', 100, NULL, NULL, 4508, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4509, 2, 42, 'Điều 9: làm lại mẫu 1.2', 'Mẫu 1.02 link từ 1.01 (5->3; 7-->; 14-->6; 16-->7)', '2021-09-27', NULL, 1, 8, 2, 155, 5, 5, '2021-09-13 09:20:50+07', '2021-10-01 15:14:18+07', '2021-09-27', 0, NULL, NULL, 4509, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4510, 2, 42, 'Điều 9: làm lại mẫu 1.3', '', '2021-09-27', NULL, 3, 53, 2, 155, 5, 6, '2021-09-13 09:21:08+07', '2021-11-01 08:27:31+07', '2021-09-27', 100, NULL, NULL, 4510, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4511, 2, 42, 'Điều 9, mẫu 1.1: Danh sách hiệp định vay trong detail dự án', '', '2021-09-14', NULL, 5, 53, 2, 153, 5, 3, '2021-09-13 13:52:58+07', '2021-09-20 10:24:30+07', '2021-09-13', 100, NULL, NULL, 4511, 1, 2, false, '2021-09-20 10:24:30+07');
INSERT INTO public.issues VALUES (4513, 2, 42, 'Điều 15: thêm Đặc điểm kinh tế, kỹ thuật, quy cách vào mẫu dữ liệu', '', '2021-09-13', NULL, 5, 41, 2, 153, 5, 2, '2021-09-13 14:53:54+07', '2021-10-01 15:13:08+07', '2021-09-13', 100, NULL, NULL, 4513, 1, 2, false, '2021-10-01 15:13:08+07');
INSERT INTO public.issues VALUES (4514, 2, 42, 'Điều 12, mẫu 7: thêm cảnh báo bên cạnh để biết có bao nhiêu đơn vị chưa cập nhật loại tự chủ', '', '2021-09-16', NULL, 5, 37, 2, 153, 5, 3, '2021-09-16 11:18:28+07', '2021-09-20 10:24:38+07', '2021-09-16', 100, NULL, NULL, 4514, 1, 2, false, '2021-09-20 10:24:38+07');
INSERT INTO public.issues VALUES (4515, 2, 42, 'Điều 12, mẫu 7: nếu có đơn vị cấp dưới chưa chưa chọn đơn vị tự chủ thì k cho ký số', '', '2021-09-16', NULL, 5, 37, 2, 153, 5, 3, '2021-09-16 11:18:53+07', '2021-10-01 15:13:08+07', '2021-09-16', 100, NULL, NULL, 4515, 1, 2, false, '2021-10-01 15:13:08+07');
INSERT INTO public.issues VALUES (4516, 2, 42, 'Điều 18, 01cqth: báo cáo gửi STC, nếu 1 trong các ô số liệu tỉnh != null, thì mới tổng hợp lên', '', '2021-09-18', NULL, 5, 41, 2, 153, 5, 2, '2021-09-17 14:42:44+07', '2021-10-01 15:13:08+07', '2021-09-18', 100, NULL, NULL, 4516, 1, 2, false, '2021-10-01 15:13:08+07');
INSERT INTO public.issues VALUES (4517, 2, 42, 'Điều 15: thiết kế lại các tháng 3,6,9,12, tạo ra nhưng, k cần gửi cho STC', '', '2021-09-20', NULL, 5, 41, 2, 154, 5, 3, '2021-09-18 18:10:50+07', '2021-10-01 15:13:08+07', '2021-09-20', 100, NULL, NULL, 4517, 1, 2, false, '2021-10-01 15:13:08+07');
INSERT INTO public.issues VALUES (4518, 2, 42, 'Điều 15: thiết kế lại các tháng 3,6,9,12 k báo trễ hạn => PhuThuocBaoCao_Id', 'PhuThuocBaoCao_Id: để link các trạng thái theo luôn', '2021-09-20', NULL, 5, 41, 2, 154, 5, 3, '2021-09-18 18:14:12+07', '2021-10-01 15:13:08+07', '2021-09-20', 100, NULL, NULL, 4518, 1, 2, false, '2021-10-01 15:13:08+07');
INSERT INTO public.issues VALUES (4519, 2, 42, 'Điều 16, mẫu 12: 1 dự án chỉ đc nhập ở 1 trong 3 bảng', 'Báo trùng dữ liệu nếu nhập 1 dự án 2 lần trong 1 bảng dữ liệu

Và báo trùng nếu nhập 1 dự án 2 lần trong 3 loại bảng (1, 2.1, 2.2)', '2021-09-20', NULL, 5, 52, 2, 154, 5, 4, '2021-09-20 10:21:52+07', '2021-10-01 15:13:08+07', '2021-09-20', 100, NULL, NULL, 4519, 1, 2, false, '2021-10-01 15:13:08+07');
INSERT INTO public.issues VALUES (4520, 2, 42, 'Biểu 02D, Điều 21, xuất file ra mặc định là "tấn" là ko đúng', '', '2021-09-23', NULL, 5, 52, 2, 154, 5, 3, '2021-09-23 08:54:45+07', '2021-10-01 15:13:09+07', '2021-09-23', 100, NULL, NULL, 4520, 1, 2, false, '2021-10-01 15:13:09+07');
INSERT INTO public.issues VALUES (4521, 2, 42, 'Biểu 02C, điều chỉnh dữ liệu file pdf', 'Biểu 02C, Ví dụ Cty Môi trường Bình Định 000.31.37.H08, dòng 11, đơn vị nhập là "-6" nhưng khi xuất file ra thì là "-0,006" ạ. Với cả tên dòng tiêu đề, ví dụ năm báo cáo là X=2021, thì chỗ "năm X" tự động hiện lên 2021, cùng kỳ năm "X-1" tự động hiện là 2020, tương tự "X-2" tự động hiện là 2019', '2021-09-23', NULL, 5, 52, 2, 154, 5, 4, '2021-09-23 11:30:50+07', '2021-10-01 15:13:09+07', '2021-09-23', 100, NULL, NULL, 4521, 1, 2, false, '2021-10-01 15:13:09+07');
INSERT INTO public.issues VALUES (4522, 2, 42, 'Biểu 02Đ, xuất file ra bị lệch chỗ số âm', 'Biểu 02Đ Cty Môi trường Bình Định, xuất file ra cũng bị lệch chỗ số âm ạ, ví dụ nhập -274 nhưng xuất file ra là -0,274', '2021-09-23', NULL, 5, 52, 2, 154, 5, 3, '2021-09-23 11:31:30+07', '2021-10-01 15:13:09+07', '2021-09-23', 100, NULL, NULL, 4522, 1, 2, false, '2021-10-01 15:13:09+07');
INSERT INTO public.issues VALUES (4523, 2, 42, 'Điều 02Đ, Lỗi chính tả ạ, "Quỹ đặc thù khác"', '', '2021-09-23', NULL, 5, 52, 2, 154, 5, 3, '2021-09-23 12:02:58+07', '2021-10-01 15:13:09+07', '2021-09-23', 100, NULL, NULL, 4523, 1, 2, false, '2021-10-01 15:13:09+07');
INSERT INTO public.issues VALUES (4524, 2, 42, 'Điều 18: thêm HTML số liệu của tỉnh', '', '2021-09-25', NULL, 3, 41, 2, 154, 5, 3, '2021-09-25 09:17:11+07', '2021-11-01 08:29:40+07', '2021-09-25', 100, NULL, NULL, 4524, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4525, 2, 42, 'Điều 9, mẫu 1.01: api load data table', '', '2021-09-25', NULL, 3, 52, 2, 154, 5, 3, '2021-09-25 09:38:32+07', '2021-10-04 14:58:19+07', '2021-09-25', 100, NULL, NULL, 4525, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4526, 2, 42, 'Điều 9, mẫu 1.02: api load data table', '', '2021-09-25', NULL, 3, 52, 2, 154, 5, 3, '2021-09-25 09:38:42+07', '2021-10-15 12:52:13+07', '2021-09-25', 100, NULL, NULL, 4526, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4527, 2, 42, 'Điều 9, mẫu 1.03: api load data table', '', '2021-09-25', NULL, 3, 41, 2, 154, 5, 6, '2021-09-25 09:38:53+07', '2021-11-01 08:29:40+07', '2021-09-25', 100, NULL, NULL, 4527, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4528, 2, 42, 'Điều 16, mẫu 12: check dự án trùng trong 3 bảng của 1 báo cáo', 'cả thêm bằng tay
cả import', '2021-09-30', NULL, 3, 52, 2, 155, 5, 2, '2021-09-29 15:30:10+07', '2021-10-04 15:00:14+07', '2021-09-30', 100, NULL, NULL, 4528, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4529, 3, 42, 'Lọc dữ liệu trùng dự án gửi chị Hiếu', '', '2021-09-30', NULL, 1, NULL, 2, 155, 5, 0, '2021-09-29 15:32:03+07', '2021-09-29 15:32:03+07', '2021-09-30', 0, NULL, NULL, 4529, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4530, 2, 42, 'Điều 12, cho xuất excel dữ liệu cấp dưới', '', '2021-10-01', NULL, 1, NULL, 2, 155, 5, 0, '2021-09-30 10:19:16+07', '2021-09-30 10:19:16+07', '2021-10-01', 0, NULL, NULL, 4530, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4531, 2, 42, 'Điều 18, 04CĐT: import cột nguồn vốn từ excel vào Dieu18_DM_DuAn', 'Mục đích để hiển thị dữ liệu
Nguồn vốn: ....
Trong báo cáo 04cđt', '2021-10-02', NULL, 1, 52, 2, 155, 5, 1, '2021-09-30 11:38:22+07', '2021-10-01 15:15:19+07', '2021-10-02', 0, NULL, NULL, 4531, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4532, 2, 42, 'Điều 18, 04cđt: giao diện chọn sách dự án, trước khi xem dữ liệu 04CĐT', '', '2021-10-02', NULL, 3, 53, 2, 155, 5, 2, '2021-09-30 11:39:49+07', '2021-10-04 08:18:01+07', '2021-10-02', 100, NULL, NULL, 4532, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4533, 2, 42, 'Điều 11, Huyện tổng hợp mẫu 1.1 từ xã cho vào mục B', '', '2021-10-02', NULL, 1, 41, 2, 155, 5, 0, '2021-09-30 16:09:59+07', '2021-09-30 16:09:59+07', '2021-10-02', 0, NULL, NULL, 4533, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4534, 2, 74, 'Publish api', '', '2021-11-02', NULL, 5, 41, 2, 156, 5, 2, '2021-11-01 16:21:39+07', '2021-12-03 15:40:48+07', '2021-11-01', 100, NULL, NULL, 4534, 1, 2, false, '2021-12-03 15:40:48+07');
INSERT INTO public.issues VALUES (4535, 2, 74, 'Publish frontend', '', '2021-11-02', NULL, 5, 5, 2, 156, 5, 4, '2021-11-01 16:21:58+07', '2021-12-03 15:40:48+07', '2021-11-02', 100, NULL, NULL, 4535, 1, 2, false, '2021-12-03 15:40:48+07');
INSERT INTO public.issues VALUES (4537, 2, 74, 'Thêm danh sách mặt hàng vào detail 1 nhà cung cấp', '', '2021-11-11', NULL, 5, NULL, 2, 157, 5, 3, '2021-11-11 15:05:10+07', '2021-12-03 15:40:36+07', '2021-11-11', 100, NULL, NULL, 4537, 1, 2, false, '2021-12-03 15:40:36+07');
INSERT INTO public.issues VALUES (4538, 2, 74, 'Thêm mặt hàng từ xây dựng qua', '', '2021-11-11', NULL, 5, 8, 2, 157, 5, 3, '2021-11-11 15:05:32+07', '2021-12-03 15:40:37+07', '2021-11-11', 100, NULL, NULL, 4538, 1, 2, false, '2021-12-03 15:40:37+07');
INSERT INTO public.issues VALUES (4539, 2, 74, 'Xóa mặt hàng từ xây dựng qua', '', '2021-11-11', NULL, 5, 8, 2, 157, 5, 3, '2021-11-11 15:05:56+07', '2021-12-03 15:40:37+07', '2021-11-11', 100, NULL, NULL, 4539, 1, 2, false, '2021-12-03 15:40:37+07');
INSERT INTO public.issues VALUES (4540, 2, 74, 'Fix lập phiếu nhập', '', '2021-11-11', NULL, 5, 8, 2, 157, 5, 3, '2021-11-11 15:06:36+07', '2021-12-03 15:40:37+07', '2021-11-11', 100, NULL, NULL, 4540, 1, 2, false, '2021-12-03 15:40:37+07');
INSERT INTO public.issues VALUES (4541, 2, 74, 'Bên xây dựng check tồn kho khi thêm đơn hàng', '', '2021-11-12', NULL, 5, 8, 2, 157, 5, 3, '2021-11-11 15:08:58+07', '2021-12-03 15:40:37+07', '2021-11-12', 100, NULL, NULL, 4541, 1, 2, false, '2021-12-03 15:40:37+07');
INSERT INTO public.issues VALUES (4542, 2, 74, 'Chỉ để nút xóa phiếu nhập cuối cùng', '', '2021-11-12', NULL, 5, 37, 2, 157, 5, 3, '2021-11-11 16:09:25+07', '2021-12-03 15:40:37+07', '2021-11-12', 100, NULL, NULL, 4542, 1, 2, false, '2021-12-03 15:40:37+07');
INSERT INTO public.issues VALUES (4543, 2, 74, 'Timeline chứng từ', '', '2021-11-12', NULL, 5, 53, 2, 157, 5, 4, '2021-11-11 16:11:06+07', '2021-12-03 15:40:37+07', '2021-11-12', 100, NULL, NULL, 4543, 1, 2, false, '2021-12-03 15:40:37+07');
INSERT INTO public.issues VALUES (4544, 2, 74, 'Tiến & Quý demo cho Tân Phát', 'Kho Tân Phát => liên kết dữ liệu với Xây Dựng
Quy trình nhập vật tư
Quy trình sản xuất sản phẩm', '2021-11-19', NULL, 5, 8, 2, 158, 5, 3, '2021-11-11 16:17:56+07', '2021-12-03 15:39:59+07', '2021-11-19', 0, NULL, NULL, 4544, 1, 2, false, '2021-12-03 15:39:59+07');
INSERT INTO public.issues VALUES (4545, 2, 74, 'Danh sách kế hoạch sản xuất', '', '2021-11-18', NULL, 1, 37, 2, 158, 5, 0, '2021-11-18 10:37:37+07', '2021-11-18 10:37:37+07', '2021-11-18', 0, NULL, NULL, 4545, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4546, 2, 74, 'Trang chi tiết kế hoạch sản xuất', '', '2021-11-18', NULL, 1, NULL, 2, 158, 5, 0, '2021-11-18 10:37:54+07', '2021-11-18 10:37:54+07', '2021-11-18', 0, NULL, NULL, 4546, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4547, 2, 74, 'Trang chi tiết KHSX - Tab định mức NVL', '', '2021-11-18', NULL, 1, NULL, 2, 158, 5, 0, '2021-11-18 10:38:38+07', '2021-11-18 10:38:38+07', '2021-11-18', 0, NULL, NULL, 4547, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4548, 2, 74, 'Trang chi tiết KHSX - Tab định mức nhân công', '', '2021-11-18', NULL, 1, NULL, 2, 158, 5, 0, '2021-11-18 10:38:50+07', '2021-11-18 10:38:50+07', '2021-11-18', 0, NULL, NULL, 4548, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4549, 2, 74, 'Trang chi tiết KHSX - Tab thành phẩm', '', '2021-11-18', NULL, 1, NULL, 2, 158, 5, 0, '2021-11-18 10:39:19+07', '2021-11-18 10:39:19+07', '2021-11-18', 0, NULL, NULL, 4549, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4550, 2, 74, 'Trang chi tiết KHSX - Tab cập nhật tiến độ', '', '2021-11-18', NULL, 1, NULL, 2, 158, 5, 0, '2021-11-18 10:39:43+07', '2021-11-18 10:39:43+07', '2021-11-18', 0, NULL, NULL, 4550, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4551, 2, 74, 'Trang chi tiết KHSX - Tab kiểm tra chất lượng', '', '2021-11-18', NULL, 1, NULL, 2, 158, 5, 0, '2021-11-18 10:39:57+07', '2021-11-18 10:39:57+07', '2021-11-18', 0, NULL, NULL, 4551, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4552, 2, 74, 'Trang chi tiết KHSX - Tab hoàn thành & nhập kho', '', '2021-11-18', NULL, 1, NULL, 2, 158, 5, 0, '2021-11-18 10:40:13+07', '2021-11-18 10:40:13+07', '2021-11-18', 0, NULL, NULL, 4552, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4553, 2, 74, 'Trang chi tiết sản phẩm - Tab định mức VNL', 'Chỉ hiển thị đối với loại: Thành phẩm', '2021-11-18', NULL, 1, 37, 2, 158, 5, 1, '2021-11-18 10:41:50+07', '2021-11-18 10:41:58+07', '2021-11-18', 0, NULL, NULL, 4553, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4554, 2, 74, 'api định mức nvl cho thành phẩm', '', '2021-11-18', NULL, 3, 41, 2, 158, 5, 1, '2021-11-18 10:42:35+07', '2021-11-23 15:09:52+07', '2021-11-18', 100, NULL, NULL, 4554, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4555, 2, 74, 'api kế hoạch sản xuất', '', '2021-11-18', NULL, 1, 41, 2, 158, 5, 0, '2021-11-18 10:43:00+07', '2021-11-18 10:43:00+07', '2021-11-18', 0, NULL, NULL, 4555, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4556, 2, 74, 'API Trả đơn mua Nhà cung cấp', '', '2021-11-23', NULL, 1, 41, 2, 159, 41, 1, '2021-11-23 15:10:45+07', '2021-11-23 15:12:46+07', '2021-11-23', 100, NULL, NULL, 4556, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4557, 2, 74, 'API biến động giá Nhà cung cấp', '', '2021-11-24', NULL, 1, 41, 2, 159, 41, 1, '2021-11-23 15:11:04+07', '2021-11-23 15:12:01+07', '2021-11-24', 0, NULL, NULL, 4557, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4558, 2, 75, 'api thuế tài nguyên', '', '2021-11-29', NULL, 5, 41, 2, 161, 5, 2, '2021-11-24 11:27:44+07', '2022-06-14 15:42:40+07', '2021-11-29', 0, NULL, NULL, 4558, 1, 2, false, '2022-06-14 15:42:40+07');
INSERT INTO public.issues VALUES (4559, 2, 75, 'Giao diện nhập liệu hồ sơ thuế tài nguyên', '', '2021-11-30', NULL, 5, 8, 2, 161, 5, 2, '2021-11-24 11:28:34+07', '2022-06-14 15:42:41+07', '2021-11-29', 0, NULL, NULL, 4559, 1, 2, false, '2022-06-14 15:42:41+07');
INSERT INTO public.issues VALUES (4560, 2, 75, 'Thêm lọc theo sản phẩm', '', '2021-11-29', NULL, 5, 37, 2, 161, 5, 4, '2021-11-24 11:30:03+07', '2021-12-03 15:37:05+07', '2021-11-29', 100, NULL, NULL, 4560, 1, 2, false, '2021-12-03 15:37:05+07');
INSERT INTO public.issues VALUES (4561, 2, 75, 'Thêm lọc theo hàng hóa, dịch vụ', '', '2021-11-29', NULL, 5, 37, 2, 161, 5, 4, '2021-11-24 11:30:24+07', '2021-12-03 15:37:05+07', '2021-11-29', 100, NULL, NULL, 4561, 1, 2, false, '2021-12-03 15:37:05+07');
INSERT INTO public.issues VALUES (4562, 2, 75, '2.2.1 api /hosokekhai/HoSoKeKhaiGiaThiTruong', '', '2022-06-17', NULL, 1, NULL, 2, 163, 5, 0, '2022-06-15 16:11:17+07', '2022-06-15 16:11:17+07', '2022-06-15', 0, NULL, NULL, 4562, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4563, 2, 75, '2.2.2 api /hanghoadichvu/HangHoaDichVuThuThapGiaThiTruongTinh', '', '2022-06-17', NULL, 1, NULL, 2, 163, 5, 0, '2022-06-15 16:22:23+07', '2022-06-15 16:22:23+07', '2022-06-17', 0, NULL, NULL, 4563, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4564, 2, 75, '2.2.3 api /hosokekhai/GiaTinhThueTaiNguyen', '', '2022-06-21', NULL, 1, NULL, 2, 162, 5, 3, '2022-06-15 16:27:17+07', '2022-06-15 16:32:06+07', '2022-06-20', 0, NULL, NULL, 4564, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4565, 2, 75, '2.2.4 api /dulieu/DanhMucTaiNguyenTinh', '', '2022-06-21', NULL, 1, NULL, 2, 162, 5, 1, '2022-06-15 16:30:29+07', '2022-06-15 16:31:53+07', '2022-06-20', 0, NULL, NULL, 4565, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4566, 2, 76, 'Clone source BE', '', '2022-10-06', NULL, 3, NULL, 2, 164, 5, 3, '2022-10-06 12:10:54+07', '2022-10-28 11:03:00+07', '2022-10-06', 100, NULL, NULL, 4566, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4567, 2, 76, 'Clone source FE', '', '2022-10-06', NULL, 3, NULL, 2, 164, 5, 3, '2022-10-06 12:11:13+07', '2022-10-28 11:03:00+07', '2022-10-06', 100, NULL, NULL, 4567, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4568, 2, 76, 'Clear DB', '', '2022-10-06', NULL, 3, NULL, 2, 164, 5, 4, '2022-10-06 12:11:24+07', '2022-11-02 09:11:41+07', '2022-10-06', 100, NULL, NULL, 4568, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4569, 2, 76, 'Thiết kế lại login', '', '2022-10-07', NULL, 3, NULL, 2, 164, 5, 4, '2022-10-06 12:11:46+07', '2022-10-28 11:03:01+07', '2022-10-06', 100, NULL, NULL, 4569, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4570, 2, 76, 'Thiết kế DB', '', '2022-10-09', NULL, 3, NULL, 2, 164, 5, 4, '2022-10-06 12:12:05+07', '2022-11-02 09:11:41+07', '2022-10-06', 100, NULL, NULL, 4570, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4571, 2, 76, 'Sắp xếp giao diện của admin', 'Fix cứng menu: Quản lý đơn vị/Chức năng/Cài đặt hệ thống/Thiết lập mật khẩu
![](clipboard-202210281109-rroz6.png)', '2022-10-28', NULL, 3, 56, 2, 164, 5, 4, '2022-10-28 11:14:36+07', '2022-10-31 09:02:34+07', '2022-10-28', 100, NULL, NULL, 4571, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4572, 2, 76, 'Trong admin/chức năng chuyển trường flatform thành danh mục phân hệ', 'Dữ liệu như sau:
Quản lý cung cầu lao động
Quản lý báo cáo định kỳ

Khi chọn phân hệ thì load nhóm chức năng và chức năng theo phân hệ tương ứng
Khi thêm mới nhóm chức năng và chức năng thì mặc định FlatForm là phân hệ đang chọn
Chỉnh sửa nhóm chức năng và chức năng, khi thay đổi trường FlatForm

![](clipboard-202210310908-hjvtw.png)
![](clipboard-202210310908-hmatw.png)
', '2022-10-28', NULL, 3, 56, 2, 164, 5, 9, '2022-10-28 11:21:02+07', '2022-11-02 09:12:11+07', '2022-10-28', 100, NULL, NULL, 4572, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4573, 2, 76, 'Trong admin/đơn vị/list bỏ các cột: mã chương, mã ngành kt, hiển thị popup', '', '2022-10-28', NULL, 3, 57, 2, 164, 5, 3, '2022-10-28 11:35:37+07', '2022-10-31 09:02:48+07', '2022-10-28', 100, NULL, NULL, 4573, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4574, 2, 76, 'Ở các tk đơn vị load menu theo dropdown phân hệ', '', '2022-10-31', NULL, 3, NULL, 2, 165, 5, 2, '2022-10-28 11:44:39+07', '2022-11-02 09:12:42+07', '2022-10-31', 100, NULL, NULL, 4574, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4575, 2, 76, 'Tạo dropdown phân hệ bên trái và inline menu', '', '2022-10-31', NULL, 3, NULL, 2, 165, 5, 2, '2022-10-28 11:45:17+07', '2022-11-02 09:12:21+07', '2022-10-31', 100, NULL, NULL, 4575, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4576, 2, 76, 'Chỉnh sửa lại bảng phân quyền', 'Cho load theo dropdown phân hệ

![](clipboard-202211011032-cobpw.png)
![](clipboard-202211011032-h1yue.png)
', '2022-11-01', NULL, 3, NULL, 2, 165, 5, 4, '2022-11-01 10:31:37+07', '2022-11-02 09:11:57+07', '2022-11-01', 100, NULL, NULL, 4576, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4577, 2, 76, 'Trang danh mục', '', '2022-11-02', NULL, 3, NULL, 2, 165, 5, 2, '2022-11-02 09:02:43+07', '2022-11-03 11:11:53+07', '2022-11-02', 100, NULL, NULL, 4577, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4578, 2, 76, 'DM Quan hệ với chủ hộ', 'Quan hệ với chủ hộ
Một cô ô sin đi vừa mới nhận việc ra công an phường đăng ký tạm trú được anh cảnh sát khu vực phát cho tờ khai. Đến mục “quan hệ với chủ hộ” cô phân vân lắm. Không biết có nên khai thật hay không? Khai thật thì ngại chết. Cuối cùng cô quyết định ghi vào: 3 lần/ tuần.

Anh cảnh sát khu vực đọc xong buồn cười lắm, nhưng anh vẫn phải kiên trì giải thích:

– Chị ghi vậy không đúng, “quan hệ với chủ hộ” là chị phải ghi chị có quan hệ với chủ nhà như thế nào.

– Phải khai đúng hả anh.

– Tất nhiên là phải khai đúng rồi.

– Vậy chỗ này ngắn quá không khai đủ ạ.

– Có gì mà không đủ. Chị cứ ghi ngắn gọn là được.

– Nhưng mà ông chủ cứ thay đổi tư thế liên tục, mỗi ngày mỗi kiểu nên em không tả ngắn gọn được ạ

– Cảnh sát khu vực !!@@!!', '2022-11-02', NULL, 3, NULL, 2, 165, 5, 3, '2022-11-02 09:03:24+07', '2022-11-03 11:12:10+07', '2022-11-02', 100, NULL, NULL, 4578, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4579, 2, 76, 'DM Giới tính', '', '2022-11-02', NULL, 3, NULL, 2, 165, 5, 2, '2022-11-02 09:03:44+07', '2022-11-03 11:12:03+07', '2022-11-02', 100, NULL, NULL, 4579, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4580, 2, 76, 'DM Dân tộc', '', '2022-11-03', NULL, 3, NULL, 2, 165, 5, 2, '2022-11-02 09:04:00+07', '2022-11-02 15:43:42+07', '2022-11-03', 100, NULL, NULL, 4580, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4581, 2, 76, 'DM Tôn giáo', '', '2022-11-03', NULL, 3, NULL, 2, 165, 5, 2, '2022-11-02 09:04:14+07', '2022-11-02 15:44:16+07', '2022-11-03', 100, NULL, NULL, 4581, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4582, 2, 76, 'DM Đơn vị hành chính', '', '2022-11-04', NULL, 3, NULL, 2, 165, 5, 2, '2022-11-02 09:04:32+07', '2022-11-02 15:44:07+07', '2022-11-04', 100, NULL, NULL, 4582, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4583, 2, 76, 'DM Trình độ học vấn', '', '2022-11-04', NULL, 3, NULL, 2, 165, 5, 2, '2022-11-02 09:04:42+07', '2022-11-03 11:12:35+07', '2022-11-04', 100, NULL, NULL, 4583, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4584, 2, 76, 'DM Trình độ chuyên môn kỹ thuật', '', '2022-11-04', NULL, 3, NULL, 2, 165, 5, 2, '2022-11-02 09:05:09+07', '2022-11-03 11:12:45+07', '2022-11-04', 100, NULL, NULL, 4584, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4585, 2, 76, 'DM Tình trạng hôn nhân', '', '2022-11-07', NULL, 3, NULL, 2, 166, 5, 3, '2022-11-02 10:31:28+07', '2022-11-03 19:59:19+07', '2022-11-07', 100, NULL, NULL, 4585, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4586, 2, 76, 'DM Tình trạng việc làm', '', '2022-11-07', NULL, 3, NULL, 2, 166, 5, 2, '2022-11-02 10:32:11+07', '2022-11-03 19:59:26+07', '2022-11-07', 100, NULL, NULL, 4586, 1, 2, false, NULL);
INSERT INTO public.issues VALUES (4587, 2, 76, 'DM Phân loại hộ', '', '2022-11-08', NULL, 3, NULL, 2, 166, 5, 2, '2022-11-02 10:32:28+07', '2022-11-03 19:59:38+07', '2022-11-08', 100, NULL, NULL, 4587, 1, 2, false, NULL);


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

INSERT INTO public.journal_details VALUES (1, 1, 'attr', 'subject', 'Html + css slider', 'Html + css feature post');
INSERT INTO public.journal_details VALUES (2, 2, 'attr', 'due_date', '2020-02-22', '2020-02-23');
INSERT INTO public.journal_details VALUES (3, 3, 'attr', 'due_date', '2020-02-23', '2020-02-22');
INSERT INTO public.journal_details VALUES (4, 4, 'attr', 'due_date', NULL, '2020-02-22');
INSERT INTO public.journal_details VALUES (5, 4, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (6, 5, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7, 6, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8, 7, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9, 8, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10, 9, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11, 10, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12, 11, 'attr', 'due_date', NULL, '2020-02-22');
INSERT INTO public.journal_details VALUES (13, 11, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (14, 12, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15, 12, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16, 13, 'attr', 'due_date', '2020-02-24', '2020-02-22');
INSERT INTO public.journal_details VALUES (17, 13, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18, 13, 'attr', 'start_date', '2020-02-24', '2020-02-22');
INSERT INTO public.journal_details VALUES (19, 13, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20, 14, 'attr', 'due_date', '2020-02-24', '2020-02-22');
INSERT INTO public.journal_details VALUES (21, 14, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (22, 14, 'attr', 'start_date', '2020-02-24', '2020-02-22');
INSERT INTO public.journal_details VALUES (23, 14, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (24, 15, 'attr', 'due_date', '2020-02-24', '2020-02-22');
INSERT INTO public.journal_details VALUES (25, 15, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (26, 15, 'attr', 'start_date', '2020-02-24', '2020-02-22');
INSERT INTO public.journal_details VALUES (27, 15, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (28, 16, 'attr', 'category_id', NULL, '4');
INSERT INTO public.journal_details VALUES (29, 17, 'attr', 'category_id', NULL, '4');
INSERT INTO public.journal_details VALUES (30, 18, 'attr', 'category_id', NULL, '4');
INSERT INTO public.journal_details VALUES (31, 19, 'attr', 'category_id', NULL, '4');
INSERT INTO public.journal_details VALUES (32, 20, 'attr', 'category_id', NULL, '4');
INSERT INTO public.journal_details VALUES (33, 21, 'attr', 'category_id', NULL, '4');
INSERT INTO public.journal_details VALUES (34, 22, 'attr', 'category_id', NULL, '4');
INSERT INTO public.journal_details VALUES (35, 23, 'attr', 'category_id', NULL, '4');
INSERT INTO public.journal_details VALUES (36, 24, 'attr', 'category_id', NULL, '4');
INSERT INTO public.journal_details VALUES (37, 25, 'attr', 'subject', 'Trang dasboard', 'Trang dashboard');
INSERT INTO public.journal_details VALUES (38, 26, 'attr', 'category_id', '4', '6');
INSERT INTO public.journal_details VALUES (39, 27, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (40, 28, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (41, 29, 'attr', 'due_date', '2020-02-29', '2020-02-26');
INSERT INTO public.journal_details VALUES (42, 29, 'attr', 'start_date', '2020-02-24', '2020-02-26');
INSERT INTO public.journal_details VALUES (43, 30, 'attr', 'due_date', '2020-02-25', '2020-02-28');
INSERT INTO public.journal_details VALUES (44, 30, 'attr', 'start_date', '2020-02-25', '2020-02-28');
INSERT INTO public.journal_details VALUES (45, 31, 'attr', 'due_date', '2020-02-25', '2020-02-28');
INSERT INTO public.journal_details VALUES (46, 31, 'attr', 'start_date', '2020-02-25', '2020-02-28');
INSERT INTO public.journal_details VALUES (47, 32, 'attr', 'due_date', '2020-02-25', '2020-02-28');
INSERT INTO public.journal_details VALUES (48, 32, 'attr', 'start_date', '2020-02-25', '2020-02-28');
INSERT INTO public.journal_details VALUES (49, 33, 'attr', 'due_date', '2020-02-25', '2020-02-28');
INSERT INTO public.journal_details VALUES (50, 33, 'attr', 'start_date', '2020-02-25', '2020-02-28');
INSERT INTO public.journal_details VALUES (51, 34, 'attr', 'due_date', '2020-02-25', '2020-02-28');
INSERT INTO public.journal_details VALUES (52, 34, 'attr', 'start_date', '2020-02-25', '2020-02-28');
INSERT INTO public.journal_details VALUES (53, 35, 'attr', 'due_date', '2020-02-25', '2020-02-28');
INSERT INTO public.journal_details VALUES (54, 35, 'attr', 'start_date', '2020-02-25', '2020-02-28');
INSERT INTO public.journal_details VALUES (55, 36, 'attr', 'due_date', '2020-02-25', '2020-02-28');
INSERT INTO public.journal_details VALUES (56, 36, 'attr', 'start_date', '2020-02-25', '2020-02-28');
INSERT INTO public.journal_details VALUES (57, 37, 'attr', 'due_date', '2020-02-28', '2020-02-29');
INSERT INTO public.journal_details VALUES (58, 37, 'attr', 'start_date', '2020-02-28', '2020-02-29');
INSERT INTO public.journal_details VALUES (59, 38, 'attr', 'due_date', '2020-02-28', '2020-02-29');
INSERT INTO public.journal_details VALUES (60, 38, 'attr', 'start_date', '2020-02-28', '2020-02-29');
INSERT INTO public.journal_details VALUES (61, 39, 'attr', 'due_date', '2020-02-28', '2020-02-29');
INSERT INTO public.journal_details VALUES (62, 39, 'attr', 'start_date', '2020-02-28', '2020-02-29');
INSERT INTO public.journal_details VALUES (63, 40, 'attr', 'due_date', '2020-02-28', '2020-02-29');
INSERT INTO public.journal_details VALUES (64, 40, 'attr', 'start_date', '2020-02-28', '2020-02-29');
INSERT INTO public.journal_details VALUES (65, 41, 'attr', 'due_date', '2020-02-28', '2020-02-29');
INSERT INTO public.journal_details VALUES (66, 41, 'attr', 'start_date', '2020-02-28', '2020-02-29');
INSERT INTO public.journal_details VALUES (67, 42, 'attr', 'due_date', '2020-02-28', '2020-02-29');
INSERT INTO public.journal_details VALUES (68, 42, 'attr', 'start_date', '2020-02-28', '2020-02-29');
INSERT INTO public.journal_details VALUES (69, 43, 'attr', 'due_date', '2020-02-29', '2020-03-01');
INSERT INTO public.journal_details VALUES (70, 43, 'attr', 'start_date', '2020-02-29', '2020-03-01');
INSERT INTO public.journal_details VALUES (71, 44, 'attr', 'due_date', '2020-02-29', '2020-03-01');
INSERT INTO public.journal_details VALUES (72, 44, 'attr', 'start_date', '2020-02-29', '2020-03-01');
INSERT INTO public.journal_details VALUES (73, 45, 'attr', 'due_date', '2020-02-29', '2020-03-01');
INSERT INTO public.journal_details VALUES (74, 45, 'attr', 'start_date', '2020-02-29', '2020-03-01');
INSERT INTO public.journal_details VALUES (75, 46, 'attr', 'due_date', '2020-02-29', '2020-03-01');
INSERT INTO public.journal_details VALUES (76, 46, 'attr', 'start_date', '2020-02-29', '2020-03-01');
INSERT INTO public.journal_details VALUES (77, 47, 'attr', 'due_date', '2020-02-29', '2020-03-01');
INSERT INTO public.journal_details VALUES (78, 47, 'attr', 'start_date', '2020-02-29', '2020-03-01');
INSERT INTO public.journal_details VALUES (79, 48, 'attr', 'due_date', '2020-03-01', '2020-03-02');
INSERT INTO public.journal_details VALUES (80, 48, 'attr', 'start_date', '2020-03-01', '2020-03-02');
INSERT INTO public.journal_details VALUES (81, 49, 'attr', 'due_date', '2020-03-01', '2020-03-02');
INSERT INTO public.journal_details VALUES (82, 49, 'attr', 'start_date', '2020-03-01', '2020-03-02');
INSERT INTO public.journal_details VALUES (83, 50, 'attr', 'due_date', '2020-03-01', '2020-03-02');
INSERT INTO public.journal_details VALUES (84, 50, 'attr', 'start_date', '2020-03-01', '2020-03-02');
INSERT INTO public.journal_details VALUES (85, 51, 'attr', 'due_date', '2020-03-01', '2020-03-02');
INSERT INTO public.journal_details VALUES (86, 51, 'attr', 'start_date', '2020-03-01', '2020-03-02');
INSERT INTO public.journal_details VALUES (87, 52, 'attr', 'due_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (88, 52, 'attr', 'start_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (89, 53, 'attr', 'due_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (90, 53, 'attr', 'start_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (91, 54, 'attr', 'due_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (92, 54, 'attr', 'start_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (93, 55, 'attr', 'description', '', 'export async function loginAccount(username, password) {
    let response = await callApiPublic(`Login/Authenticate`, ''POST'', JSON.stringify({
        UserName: username,
        Password: password
    })).then(res => res.json()).catch(err => CHECK_ERROR(err));
    try {
        if (response.Message !== undefined) {
            CHECK_ERROR(response.Message);
            return false;
        }
        localStorage.setItem(ID_TOKEN_INFO, JSON.stringify(response.TaiKhoan));
        Cookies.set(ID_TOKEN_CLIENT, response.Token, { path: ''/'' });
        window.location.replace(response.TaiKhoan.TrangChu ? response.TaiKhoan.TrangChu : ''/'');
    } catch (err) {
        CHECK_ERROR("Không thể đăng nhập !");
        return false;
    }
}');
INSERT INTO public.journal_details VALUES (94, 56, 'attr', 'due_date', '2020-03-03', '2020-03-04');
INSERT INTO public.journal_details VALUES (95, 56, 'attr', 'start_date', '2020-03-03', '2020-03-04');
INSERT INTO public.journal_details VALUES (96, 57, 'attr', 'due_date', '2020-03-03', '2020-03-04');
INSERT INTO public.journal_details VALUES (97, 57, 'attr', 'start_date', '2020-03-03', '2020-03-04');
INSERT INTO public.journal_details VALUES (98, 58, 'attr', 'due_date', '2020-03-04', '2020-03-05');
INSERT INTO public.journal_details VALUES (99, 58, 'attr', 'start_date', '2020-03-04', '2020-03-05');
INSERT INTO public.journal_details VALUES (100, 59, 'attr', 'description', 'export async function loginAccount(username, password) {
    let response = await callApiPublic(`Login/Authenticate`, ''POST'', JSON.stringify({
        UserName: username,
        Password: password
    })).then(res => res.json()).catch(err => CHECK_ERROR(err));
    try {
        if (response.Message !== undefined) {
            CHECK_ERROR(response.Message);
            return false;
        }
        localStorage.setItem(ID_TOKEN_INFO, JSON.stringify(response.TaiKhoan));
        Cookies.set(ID_TOKEN_CLIENT, response.Token, { path: ''/'' });
        window.location.replace(response.TaiKhoan.TrangChu ? response.TaiKhoan.TrangChu : ''/'');
    } catch (err) {
        CHECK_ERROR("Không thể đăng nhập !");
        return false;
    }
}', 'API: http://171.244.38.75:8989

export async function loginAccount(username, password) {
    let response = await callApiPublic(`Login/Authenticate`, ''POST'', JSON.stringify({
        UserName: username,
        Password: password
    })).then(res => res.json()).catch(err => CHECK_ERROR(err));
    try {
        if (response.Message !== undefined) {
            CHECK_ERROR(response.Message);
            return false;
        }
        localStorage.setItem(ID_TOKEN_INFO, JSON.stringify(response.TaiKhoan));
        Cookies.set(ID_TOKEN_CLIENT, response.Token, { path: ''/'' });
        window.location.replace(response.TaiKhoan.TrangChu ? response.TaiKhoan.TrangChu : ''/'');
    } catch (err) {
        CHECK_ERROR("Không thể đăng nhập !");
        return false;
    }
}');
INSERT INTO public.journal_details VALUES (101, 60, 'attr', 'due_date', '2020-03-01', '2020-03-02');
INSERT INTO public.journal_details VALUES (102, 60, 'attr', 'start_date', '2020-03-01', '2020-03-02');
INSERT INTO public.journal_details VALUES (103, 61, 'attr', 'due_date', '2020-03-03', '2020-03-02');
INSERT INTO public.journal_details VALUES (104, 61, 'attr', 'start_date', '2020-03-03', '2020-03-02');
INSERT INTO public.journal_details VALUES (105, 62, 'attr', 'due_date', '2020-03-04', '2020-03-02');
INSERT INTO public.journal_details VALUES (106, 62, 'attr', 'start_date', '2020-03-04', '2020-03-02');
INSERT INTO public.journal_details VALUES (107, 63, 'attr', 'due_date', '2020-03-05', '2020-03-02');
INSERT INTO public.journal_details VALUES (108, 63, 'attr', 'start_date', '2020-03-05', '2020-03-02');
INSERT INTO public.journal_details VALUES (109, 64, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (110, 65, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (111, 66, 'attr', 'due_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (112, 66, 'attr', 'start_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (113, 67, 'attr', 'due_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (114, 67, 'attr', 'start_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (115, 68, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (116, 69, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (117, 70, 'attr', 'due_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (118, 70, 'attr', 'start_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (119, 71, 'attr', 'due_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (120, 71, 'attr', 'start_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (121, 72, 'attr', 'due_date', '2020-03-03', '2020-03-04');
INSERT INTO public.journal_details VALUES (122, 72, 'attr', 'start_date', '2020-03-03', '2020-03-04');
INSERT INTO public.journal_details VALUES (123, 73, 'attr', 'due_date', '2020-03-03', '2020-03-04');
INSERT INTO public.journal_details VALUES (124, 73, 'attr', 'start_date', '2020-03-03', '2020-03-04');
INSERT INTO public.journal_details VALUES (125, 74, 'attr', 'due_date', '2020-03-03', '2020-03-04');
INSERT INTO public.journal_details VALUES (126, 74, 'attr', 'start_date', '2020-03-03', '2020-03-04');
INSERT INTO public.journal_details VALUES (127, 75, 'attr', 'due_date', '2020-03-04', '2020-03-05');
INSERT INTO public.journal_details VALUES (128, 75, 'attr', 'start_date', '2020-03-04', '2020-03-05');
INSERT INTO public.journal_details VALUES (129, 76, 'attr', 'due_date', '2020-03-04', '2020-03-05');
INSERT INTO public.journal_details VALUES (130, 76, 'attr', 'start_date', '2020-03-04', '2020-03-05');
INSERT INTO public.journal_details VALUES (131, 77, 'attr', 'due_date', '2020-03-05', '2020-03-06');
INSERT INTO public.journal_details VALUES (132, 77, 'attr', 'start_date', '2020-03-05', '2020-03-06');
INSERT INTO public.journal_details VALUES (133, 78, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (134, 79, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (135, 80, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (136, 81, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (137, 82, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (138, 83, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (139, 84, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (140, 85, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (141, 86, 'attr', 'due_date', NULL, '2020-02-26');
INSERT INTO public.journal_details VALUES (142, 86, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (143, 87, 'attr', 'subject', 'Format lại datetime trong file PDF của giá đất thị trường', 'Format lại datetime trong file PDF của giá trúng thầu');
INSERT INTO public.journal_details VALUES (144, 88, 'attr', 'subject', 'Sửa đổi bổ sung thêm các đơn vị trực thuộc của các sở ( Sở Khoa học - Công nghệ, Sở Lao động, Sở Y tế, Ban quản lý khu kinh tế)', 'Sửa đổi, bổ sung tên các đơn vị trực thuộc của các sở ( Sở Khoa học - Công nghệ, Sở Lao động, Sở Y tế, Ban quản lý khu kinh tế)');
INSERT INTO public.journal_details VALUES (145, 89, 'attr', 'due_date', '2020-02-26', '2020-02-29');
INSERT INTO public.journal_details VALUES (146, 89, 'attr', 'start_date', '2020-02-26', '2020-02-29');
INSERT INTO public.journal_details VALUES (147, 90, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (148, 91, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (149, 92, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (150, 93, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (151, 94, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (152, 95, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (153, 96, 'attr', 'category_id', NULL, '6');
INSERT INTO public.journal_details VALUES (154, 97, 'attr', 'due_date', '2020-02-29', '2020-03-07');
INSERT INTO public.journal_details VALUES (155, 97, 'attr', 'start_date', '2020-02-29', '2020-03-07');
INSERT INTO public.journal_details VALUES (156, 98, 'attr', 'due_date', '2020-02-28', '2020-03-04');
INSERT INTO public.journal_details VALUES (157, 98, 'attr', 'start_date', '2020-02-28', '2020-03-04');
INSERT INTO public.journal_details VALUES (158, 99, 'attr', 'due_date', '2020-02-29', '2020-03-04');
INSERT INTO public.journal_details VALUES (159, 99, 'attr', 'start_date', '2020-02-29', '2020-03-04');
INSERT INTO public.journal_details VALUES (160, 100, 'attr', 'due_date', '2020-03-02', '2020-03-04');
INSERT INTO public.journal_details VALUES (161, 100, 'attr', 'start_date', '2020-03-02', '2020-03-04');
INSERT INTO public.journal_details VALUES (162, 101, 'attr', 'due_date', '2020-03-03', '2020-03-04');
INSERT INTO public.journal_details VALUES (163, 101, 'attr', 'start_date', '2020-03-03', '2020-03-04');
INSERT INTO public.journal_details VALUES (164, 102, 'attr', 'due_date', '2020-03-05', '2020-03-04');
INSERT INTO public.journal_details VALUES (165, 102, 'attr', 'start_date', '2020-03-05', '2020-03-04');
INSERT INTO public.journal_details VALUES (166, 103, 'attr', 'due_date', '2020-03-06', '2020-03-04');
INSERT INTO public.journal_details VALUES (167, 103, 'attr', 'start_date', '2020-03-06', '2020-03-04');
INSERT INTO public.journal_details VALUES (168, 104, 'attr', 'due_date', '2020-03-07', '2020-03-02');
INSERT INTO public.journal_details VALUES (169, 104, 'attr', 'start_date', '2020-03-07', '2020-03-02');
INSERT INTO public.journal_details VALUES (274, 183, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (170, 105, 'attr', 'description', '', '/Dashboard/ThongKeHoSo?IDDV=&start_date=01/01/2020&end_date=31/01/2020');
INSERT INTO public.journal_details VALUES (171, 106, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (172, 107, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (173, 108, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (174, 109, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (175, 110, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (176, 111, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (177, 112, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (178, 113, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (179, 114, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (180, 115, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (181, 116, 'attr', 'category_id', '4', '5');
INSERT INTO public.journal_details VALUES (182, 116, 'attr', 'assigned_to_id', '8', '5');
INSERT INTO public.journal_details VALUES (183, 117, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (184, 118, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (185, 119, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (186, 120, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (187, 121, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (188, 122, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (189, 123, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (190, 124, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (191, 125, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (192, 126, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (193, 127, 'attr', 'category_id', NULL, '6');
INSERT INTO public.journal_details VALUES (194, 128, 'attr', 'subject', 'Giao diện tag profile', 'Giao diện trang profile');
INSERT INTO public.journal_details VALUES (195, 129, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (196, 129, 'attr', 'assigned_to_id', '5', '8');
INSERT INTO public.journal_details VALUES (197, 130, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (198, 131, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (199, 132, 'attr', 'due_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (200, 132, 'attr', 'start_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (201, 133, 'attr', 'due_date', '2020-03-02', '2020-03-04');
INSERT INTO public.journal_details VALUES (202, 133, 'attr', 'start_date', '2020-03-02', '2020-03-04');
INSERT INTO public.journal_details VALUES (203, 134, 'attr', 'due_date', '2020-03-04', '2020-03-05');
INSERT INTO public.journal_details VALUES (204, 134, 'attr', 'start_date', '2020-03-04', '2020-03-05');
INSERT INTO public.journal_details VALUES (205, 135, 'attr', 'due_date', '2020-03-04', '2020-03-05');
INSERT INTO public.journal_details VALUES (206, 135, 'attr', 'start_date', '2020-03-04', '2020-03-05');
INSERT INTO public.journal_details VALUES (207, 136, 'attr', 'due_date', '2020-03-04', '2020-03-05');
INSERT INTO public.journal_details VALUES (208, 136, 'attr', 'start_date', '2020-03-04', '2020-03-05');
INSERT INTO public.journal_details VALUES (209, 137, 'attr', 'due_date', '2020-03-04', '2020-03-05');
INSERT INTO public.journal_details VALUES (210, 137, 'attr', 'start_date', '2020-03-04', '2020-03-05');
INSERT INTO public.journal_details VALUES (211, 138, 'attr', 'due_date', '2020-03-04', '2020-03-05');
INSERT INTO public.journal_details VALUES (212, 138, 'attr', 'start_date', '2020-03-04', '2020-03-05');
INSERT INTO public.journal_details VALUES (213, 139, 'attr', 'due_date', '2020-03-04', '2020-03-05');
INSERT INTO public.journal_details VALUES (214, 139, 'attr', 'start_date', '2020-03-04', '2020-03-05');
INSERT INTO public.journal_details VALUES (215, 140, 'attr', 'due_date', '2020-03-04', '2020-03-05');
INSERT INTO public.journal_details VALUES (216, 140, 'attr', 'start_date', '2020-03-04', '2020-03-05');
INSERT INTO public.journal_details VALUES (217, 141, 'attr', 'due_date', '2020-03-05', '2020-03-06');
INSERT INTO public.journal_details VALUES (218, 141, 'attr', 'start_date', '2020-03-05', '2020-03-06');
INSERT INTO public.journal_details VALUES (219, 142, 'attr', 'due_date', '2020-03-05', '2020-03-06');
INSERT INTO public.journal_details VALUES (220, 142, 'attr', 'start_date', '2020-03-05', '2020-03-06');
INSERT INTO public.journal_details VALUES (221, 143, 'attr', 'due_date', '2020-03-05', '2020-03-06');
INSERT INTO public.journal_details VALUES (222, 143, 'attr', 'start_date', '2020-03-05', '2020-03-06');
INSERT INTO public.journal_details VALUES (223, 144, 'attr', 'due_date', '2020-03-05', '2020-03-07');
INSERT INTO public.journal_details VALUES (224, 144, 'attr', 'start_date', '2020-03-05', '2020-03-07');
INSERT INTO public.journal_details VALUES (225, 145, 'attr', 'due_date', '2020-03-05', '2020-03-07');
INSERT INTO public.journal_details VALUES (226, 145, 'attr', 'start_date', '2020-03-05', '2020-03-07');
INSERT INTO public.journal_details VALUES (227, 146, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (228, 147, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (229, 148, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (230, 149, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (231, 150, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (232, 151, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (233, 152, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (234, 153, 'attr', 'due_date', '2020-02-26', '2020-03-02');
INSERT INTO public.journal_details VALUES (235, 153, 'attr', 'start_date', '2020-02-26', '2020-03-02');
INSERT INTO public.journal_details VALUES (236, 154, 'attr', 'due_date', '2020-02-28', '2020-03-02');
INSERT INTO public.journal_details VALUES (237, 154, 'attr', 'start_date', '2020-02-28', '2020-03-02');
INSERT INTO public.journal_details VALUES (238, 155, 'attr', 'due_date', '2020-02-28', '2020-03-02');
INSERT INTO public.journal_details VALUES (239, 155, 'attr', 'start_date', '2020-02-28', '2020-03-02');
INSERT INTO public.journal_details VALUES (240, 156, 'attr', 'due_date', '2020-02-28', '2020-03-02');
INSERT INTO public.journal_details VALUES (241, 156, 'attr', 'start_date', '2020-02-28', '2020-03-02');
INSERT INTO public.journal_details VALUES (244, 158, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (245, 159, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (246, 160, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (247, 161, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (248, 162, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (249, 163, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (250, 164, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (251, 165, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (252, 166, 'attr', 'due_date', '2020-02-27', '2020-03-02');
INSERT INTO public.journal_details VALUES (253, 166, 'attr', 'assigned_to_id', '10', '5');
INSERT INTO public.journal_details VALUES (254, 166, 'attr', 'start_date', '2020-02-27', '2020-03-02');
INSERT INTO public.journal_details VALUES (255, 167, 'attr', 'subject', 'Thêm chức năng tìm kiếm hồ sơ (gõ không dấu)', 'Thêm chức năng tìm kiếm hồ sơ ( Tìm theo tên hồ sơ, tên đơn vị tất cả loại giá ) ( Gõ không dấu )');
INSERT INTO public.journal_details VALUES (256, 168, 'attr', 'subject', 'Báo cáo thống kê hồ sơ theo từng đơn vị', 'Báo cáo thống kê hồ sơ theo từng đơn vị ( Cho các đơn vị kết xuất báo cáo giá của đơn vị họ và đơn vị trực thuộc )');
INSERT INTO public.journal_details VALUES (257, 169, 'attr', 'due_date', '2020-03-02', '2020-02-27');
INSERT INTO public.journal_details VALUES (258, 169, 'attr', 'start_date', '2020-03-02', '2020-02-27');
INSERT INTO public.journal_details VALUES (259, 170, 'attr', 'due_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (260, 170, 'attr', 'start_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (261, 171, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (262, 172, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (263, 173, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (264, 174, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (265, 175, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (266, 176, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (267, 177, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (268, 178, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (269, 179, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (270, 180, 'attr', 'due_date', NULL, '2020-03-03');
INSERT INTO public.journal_details VALUES (271, 180, 'attr', 'start_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (272, 181, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (273, 182, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (275, 184, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (276, 185, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (277, 186, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (278, 187, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (279, 188, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (280, 189, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (281, 190, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (282, 191, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (283, 192, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (284, 193, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (285, 194, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (286, 195, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (287, 196, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (288, 197, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (289, 198, 'attr', 'subject', 'Báo cáo thống kê hồ sơ theo từng đơn vị ( Cho các đơn vị kết xuất báo cáo giá của đơn vị họ và đơn vị trực thuộc )', 'Báo cáo thống kê hồ sơ theo từng đơn vị ');
INSERT INTO public.journal_details VALUES (290, 198, 'attr', 'due_date', '2020-02-26', '2020-03-02');
INSERT INTO public.journal_details VALUES (291, 198, 'attr', 'start_date', '2020-02-26', '2020-03-02');
INSERT INTO public.journal_details VALUES (292, 199, 'attr', 'due_date', '2020-02-22', '2020-03-02');
INSERT INTO public.journal_details VALUES (293, 199, 'attr', 'start_date', '2020-02-22', '2020-03-02');
INSERT INTO public.journal_details VALUES (294, 200, 'attr', 'due_date', '2020-02-22', '2020-03-02');
INSERT INTO public.journal_details VALUES (295, 200, 'attr', 'start_date', '2020-02-22', '2020-03-02');
INSERT INTO public.journal_details VALUES (296, 201, 'attr', 'due_date', '2020-02-22', '2020-03-02');
INSERT INTO public.journal_details VALUES (297, 201, 'attr', 'start_date', '2020-02-22', '2020-03-02');
INSERT INTO public.journal_details VALUES (298, 202, 'attr', 'due_date', '2020-02-22', '2020-03-02');
INSERT INTO public.journal_details VALUES (299, 202, 'attr', 'start_date', '2020-02-22', '2020-03-02');
INSERT INTO public.journal_details VALUES (300, 203, 'attr', 'due_date', '2020-02-22', '2020-03-02');
INSERT INTO public.journal_details VALUES (301, 203, 'attr', 'start_date', '2020-02-22', '2020-03-02');
INSERT INTO public.journal_details VALUES (302, 204, 'attr', 'due_date', '2020-02-26', '2020-03-02');
INSERT INTO public.journal_details VALUES (303, 204, 'attr', 'start_date', '2020-02-26', '2020-03-02');
INSERT INTO public.journal_details VALUES (304, 205, 'attr', 'due_date', '2020-03-02', '2020-03-09');
INSERT INTO public.journal_details VALUES (305, 205, 'attr', 'start_date', '2020-03-02', '2020-03-09');
INSERT INTO public.journal_details VALUES (306, 206, 'attr', 'due_date', '2020-03-02', '2020-03-09');
INSERT INTO public.journal_details VALUES (307, 206, 'attr', 'start_date', '2020-03-02', '2020-03-09');
INSERT INTO public.journal_details VALUES (308, 207, 'attr', 'due_date', '2020-03-02', '2020-03-09');
INSERT INTO public.journal_details VALUES (309, 207, 'attr', 'start_date', '2020-03-02', '2020-03-09');
INSERT INTO public.journal_details VALUES (310, 208, 'attr', 'due_date', '2020-03-02', '2020-03-09');
INSERT INTO public.journal_details VALUES (311, 208, 'attr', 'start_date', '2020-03-02', '2020-03-09');
INSERT INTO public.journal_details VALUES (312, 209, 'attr', 'due_date', '2020-03-02', '2020-03-09');
INSERT INTO public.journal_details VALUES (313, 209, 'attr', 'start_date', '2020-03-02', '2020-03-09');
INSERT INTO public.journal_details VALUES (314, 210, 'attr', 'due_date', '2020-03-02', '2020-03-09');
INSERT INTO public.journal_details VALUES (315, 210, 'attr', 'start_date', '2020-03-02', '2020-03-09');
INSERT INTO public.journal_details VALUES (316, 211, 'attr', 'due_date', '2020-03-02', '2020-03-09');
INSERT INTO public.journal_details VALUES (317, 211, 'attr', 'start_date', '2020-03-02', '2020-03-09');
INSERT INTO public.journal_details VALUES (318, 212, 'attr', 'due_date', '2020-02-22', '2020-03-02');
INSERT INTO public.journal_details VALUES (319, 212, 'attr', 'start_date', '2020-02-22', '2020-03-02');
INSERT INTO public.journal_details VALUES (320, 213, 'attr', 'due_date', '2020-02-26', '2020-03-02');
INSERT INTO public.journal_details VALUES (321, 213, 'attr', 'start_date', '2020-02-26', '2020-03-02');
INSERT INTO public.journal_details VALUES (322, 214, 'attr', 'due_date', '2020-02-26', '2020-03-02');
INSERT INTO public.journal_details VALUES (323, 214, 'attr', 'start_date', '2020-02-26', '2020-03-02');
INSERT INTO public.journal_details VALUES (324, 215, 'attr', 'due_date', '2020-02-26', '2020-03-02');
INSERT INTO public.journal_details VALUES (325, 215, 'attr', 'start_date', '2020-02-26', '2020-03-02');
INSERT INTO public.journal_details VALUES (328, 217, 'attr', 'due_date', '2020-02-28', '2020-03-02');
INSERT INTO public.journal_details VALUES (329, 217, 'attr', 'start_date', '2020-02-28', '2020-03-02');
INSERT INTO public.journal_details VALUES (330, 218, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (331, 219, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (332, 220, 'attr', 'due_date', '2020-03-02', '2020-03-07');
INSERT INTO public.journal_details VALUES (333, 220, 'attr', 'start_date', '2020-03-02', '2020-03-07');
INSERT INTO public.journal_details VALUES (334, 221, 'attr', 'due_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (335, 222, 'attr', 'due_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (336, 223, 'attr', 'due_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (337, 223, 'attr', 'start_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (340, 225, 'attr', 'due_date', '2020-03-02', '2020-03-04');
INSERT INTO public.journal_details VALUES (341, 225, 'attr', 'start_date', '2020-03-02', '2020-03-04');
INSERT INTO public.journal_details VALUES (342, 226, 'attr', 'due_date', '2020-03-03', '2020-03-02');
INSERT INTO public.journal_details VALUES (343, 227, 'attr', 'start_date', '2020-03-02', '2020-03-03');
INSERT INTO public.journal_details VALUES (344, 228, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (345, 229, 'attr', 'due_date', '2020-03-09', '2020-03-10');
INSERT INTO public.journal_details VALUES (346, 229, 'attr', 'start_date', '2020-03-09', '2020-03-10');
INSERT INTO public.journal_details VALUES (347, 230, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (348, 231, 'attr', 'subject', 'Thêm chức năng tìm kiếm hồ sơ ( Tìm theo tên hồ sơ, tên đơn vị tất cả loại giá ) ( Gõ không dấu )', 'Thêm chức năng tìm kiếm hồ sơ');
INSERT INTO public.journal_details VALUES (349, 231, 'attr', 'description', '', ' ( Tìm theo tên hồ sơ, tên đơn vị tất cả loại giá ) ( Gõ không dấu )');
INSERT INTO public.journal_details VALUES (350, 232, 'attr', 'subject', 'Chọn mẫu : kê khai, thông báo (riêng ngày tháng thì thông báo lấy theo ngày cập nhật)', 'Kê khai giá cho chọn mẫu: kê khai, thông báo');
INSERT INTO public.journal_details VALUES (351, 233, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (352, 234, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (353, 235, 'attr', 'subject', 'Sửa đổi, bổ sung tên các đơn vị trực thuộc của các sở ( Sở Khoa học - Công nghệ, Sở Lao động, Sở Y tế, Ban quản lý khu kinh tế)', 'Sửa đổi, bổ sung tên các đơn vị trực thuộc của các sở');
INSERT INTO public.journal_details VALUES (354, 236, 'attr', 'description', '', '- Sở Khoa học - Công nghệ
- Sở Lao động
- Sở Y tế
- Ban quản lý khu kinh tế');
INSERT INTO public.journal_details VALUES (355, 237, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (356, 238, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (357, 239, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (358, 240, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (359, 241, 'attr', 'due_date', '2020-03-03', '2020-02-03');
INSERT INTO public.journal_details VALUES (360, 241, 'attr', 'start_date', '2020-03-03', '2020-02-03');
INSERT INTO public.journal_details VALUES (361, 242, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (362, 243, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (363, 244, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (364, 245, 'attr', 'due_date', '2020-02-03', '2020-03-02');
INSERT INTO public.journal_details VALUES (365, 245, 'attr', 'start_date', '2020-02-03', '2020-03-02');
INSERT INTO public.journal_details VALUES (366, 246, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (367, 247, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (368, 248, 'attr', 'description', '', 'QuanLyTaiKhoan/DoiMatKhau
{
  ma_tai_khoan: '''',
  mat_khau_cu: '''',
  mat_khau_moi: ''''
}');
INSERT INTO public.journal_details VALUES (469, 338, 'attr', 'start_date', '2020-03-04', '2020-03-11');
INSERT INTO public.journal_details VALUES (369, 249, 'attr', 'description', '', 'Dùng formData
QuanLyTaiKhoan/ChinhSuaThongTin
{
   MaTaiKhoan: '''',
   HoVaTen: '''',
   GioiTinh: ''true/false'',
   DiaChi: '''',
   DienThoai: '''',
   NgaySinh: '''', => kiểu "dd/MM/yyyy"
}

-- dùng hàm này post hình luôn');
INSERT INTO public.journal_details VALUES (370, 250, 'attr', 'description', '', '/HoSoCSDLGia/GetList?LoaiHoSo=CSDLG_HHDVK&TrangThai=&TenHoSo=test&IDDV=&StartDate&EndDate&skip=0&take=10');
INSERT INTO public.journal_details VALUES (371, 251, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (372, 252, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (373, 253, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (374, 254, 'attr', 'status_id', '3', '1');
INSERT INTO public.journal_details VALUES (375, 255, 'attr', 'status_id', '3', '1');
INSERT INTO public.journal_details VALUES (376, 256, 'attr', 'status_id', '3', '1');
INSERT INTO public.journal_details VALUES (377, 257, 'attr', 'assigned_to_id', '5', '10');
INSERT INTO public.journal_details VALUES (378, 258, 'attr', 'assigned_to_id', '5', '10');
INSERT INTO public.journal_details VALUES (379, 259, 'attr', 'assigned_to_id', '5', '10');
INSERT INTO public.journal_details VALUES (380, 260, 'attr', 'subject', 'api đổi mật khẩu', 'Gắn api đổi mật khẩu');
INSERT INTO public.journal_details VALUES (381, 261, 'attr', 'subject', 'api chỉnh sửa thông tin', 'Gắn api chỉnh sửa thông tin');
INSERT INTO public.journal_details VALUES (382, 262, 'attr', 'subject', 'Api danh sách hồ sơ lọc theo trạng thái', 'Gắn Api danh sách hồ sơ lọc theo trạng thái');
INSERT INTO public.journal_details VALUES (383, 263, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (384, 264, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (385, 265, 'attr', 'subject', 'api trang profile', 'Gắn api trang profile');
INSERT INTO public.journal_details VALUES (386, 265, 'attr', 'category_id', NULL, '6');
INSERT INTO public.journal_details VALUES (387, 265, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (388, 266, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (389, 267, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (390, 268, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (391, 269, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (392, 270, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (393, 271, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (394, 272, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (395, 273, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (396, 274, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (397, 275, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (398, 276, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (399, 277, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (400, 278, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (401, 279, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (402, 280, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (403, 281, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (404, 282, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (405, 283, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (406, 284, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (407, 285, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (408, 286, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (409, 287, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (410, 288, 'attr', 'assigned_to_id', '10', '4');
INSERT INTO public.journal_details VALUES (411, 289, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (412, 290, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (413, 291, 'attr', 'description', '', '- Xét theo quyền truy cập (ẩn hiện Tab Danh mục)
- Trong từng đơn vị (Quyền danh mục chỉ cho quyền truy cập còn lại ẩn hết)');
INSERT INTO public.journal_details VALUES (414, 292, 'attr', 'due_date', NULL, '2020-03-09');
INSERT INTO public.journal_details VALUES (415, 292, 'attr', 'category_id', NULL, '5');
INSERT INTO public.journal_details VALUES (416, 292, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (417, 292, 'attr', 'start_date', '2020-03-07', '2020-03-09');
INSERT INTO public.journal_details VALUES (418, 293, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (419, 294, 'attr', 'assigned_to_id', '10', '4');
INSERT INTO public.journal_details VALUES (420, 295, 'attr', 'due_date', '2020-03-05', '2020-03-09');
INSERT INTO public.journal_details VALUES (421, 296, 'attr', 'due_date', '2020-03-09', '2020-03-05');
INSERT INTO public.journal_details VALUES (422, 297, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (423, 298, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (424, 299, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (425, 300, 'attr', 'assigned_to_id', '4', '10');
INSERT INTO public.journal_details VALUES (426, 301, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (427, 302, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (428, 303, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (429, 304, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (430, 305, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (431, 306, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (432, 307, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (433, 308, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (434, 309, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (435, 310, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (436, 311, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (437, 312, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (438, 313, 'attr', 'due_date', '2020-03-09', '2020-03-13');
INSERT INTO public.journal_details VALUES (439, 314, 'attr', 'start_date', '2020-03-09', '2020-03-13');
INSERT INTO public.journal_details VALUES (440, 315, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (441, 316, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (442, 317, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (443, 318, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (444, 319, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (445, 320, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (446, 321, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (447, 322, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (448, 323, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (449, 324, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (450, 325, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (451, 326, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (452, 327, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (453, 328, 'attr', 'subject', 'Module Giá trúng thầu', 'Giá trúng thầu sửa 3 cột thời gian');
INSERT INTO public.journal_details VALUES (454, 329, 'attr', 'subject', 'Import dữ liệu ngành Y tế, Công thương', 'Import dữ liệu HHDV ngành Y tế');
INSERT INTO public.journal_details VALUES (455, 330, 'attr', 'subject', 'Import dữ liệu module', 'Import dữ liệu module Giá trúng đấu giá QSD đất');
INSERT INTO public.journal_details VALUES (456, 330, 'attr', 'description', '- Giá trúng thầu của hàng hóa, dịch vụ
- Giá trúng đấu giá QSD đất', '');
INSERT INTO public.journal_details VALUES (457, 331, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (458, 332, 'attr', 'due_date', '2020-03-09', '2020-03-20');
INSERT INTO public.journal_details VALUES (459, 332, 'attr', 'start_date', '2020-03-09', '2020-03-20');
INSERT INTO public.journal_details VALUES (460, 333, 'attr', 'due_date', '2020-03-09', '2020-03-20');
INSERT INTO public.journal_details VALUES (461, 333, 'attr', 'start_date', '2020-03-09', '2020-03-20');
INSERT INTO public.journal_details VALUES (462, 334, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (463, 335, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (464, 336, 'attr', 'due_date', '2020-03-09', '2020-03-11');
INSERT INTO public.journal_details VALUES (465, 336, 'attr', 'start_date', '2020-03-09', '2020-03-11');
INSERT INTO public.journal_details VALUES (466, 337, 'attr', 'due_date', '2020-03-03', '2020-03-11');
INSERT INTO public.journal_details VALUES (467, 337, 'attr', 'start_date', '2020-03-03', '2020-03-11');
INSERT INTO public.journal_details VALUES (468, 338, 'attr', 'due_date', '2020-03-04', '2020-03-11');
INSERT INTO public.journal_details VALUES (476, 342, 'attr', 'due_date', '2020-03-11', '2020-03-07');
INSERT INTO public.journal_details VALUES (477, 342, 'attr', 'start_date', '2020-03-11', '2020-03-07');
INSERT INTO public.journal_details VALUES (478, 343, 'attr', 'due_date', '2020-03-11', '2020-03-07');
INSERT INTO public.journal_details VALUES (479, 343, 'attr', 'start_date', '2020-03-11', '2020-03-07');
INSERT INTO public.journal_details VALUES (480, 344, 'attr', 'subject', 'API kết xuất báo cáo cho giá cho thuê, thuê mua nhà ở xã hội, nhà ở công vụ (1.5)', 'API kết xuất báo cáo cho giá cho thuê, thuê mua nhà ở xã hội, nhà ở công vụ (1.4)');
INSERT INTO public.journal_details VALUES (481, 345, 'attr', 'subject', 'API kết xuất báo cáo cho giá các loại đất', 'API kết xuất báo cáo cho giá các loại đất (1.1)');
INSERT INTO public.journal_details VALUES (482, 346, 'attr', 'subject', 'API kết xuất báo cáo cho giá cho thuê đất', 'API kết xuất báo cáo cho giá cho thuê đất (1.2)');
INSERT INTO public.journal_details VALUES (483, 347, 'attr', 'subject', 'API kết xuất báo cáo cho giá cho thuê mặt nước', 'API kết xuất báo cáo cho giá cho thuê mặt nước (1.2)');
INSERT INTO public.journal_details VALUES (484, 348, 'attr', 'subject', 'API kết xuất báo cáo cho giá rừng', 'API kết xuất báo cáo cho giá rừng (1.3)');
INSERT INTO public.journal_details VALUES (485, 349, 'attr', 'due_date', '2020-03-13', '2020-03-16');
INSERT INTO public.journal_details VALUES (486, 349, 'attr', 'start_date', '2020-03-13', '2020-03-16');
INSERT INTO public.journal_details VALUES (487, 350, 'attr', 'due_date', '2020-03-06', '2020-03-11');
INSERT INTO public.journal_details VALUES (488, 350, 'attr', 'start_date', '2020-03-06', '2020-03-11');
INSERT INTO public.journal_details VALUES (489, 351, 'attr', 'due_date', '2020-03-06', '2020-03-12');
INSERT INTO public.journal_details VALUES (490, 351, 'attr', 'start_date', '2020-03-06', '2020-03-12');
INSERT INTO public.journal_details VALUES (491, 352, 'attr', 'due_date', '2020-03-06', '2020-03-12');
INSERT INTO public.journal_details VALUES (492, 352, 'attr', 'start_date', '2020-03-06', '2020-03-12');
INSERT INTO public.journal_details VALUES (493, 353, 'attr', 'due_date', '2020-03-11', '2020-03-12');
INSERT INTO public.journal_details VALUES (494, 353, 'attr', 'start_date', '2020-03-11', '2020-03-12');
INSERT INTO public.journal_details VALUES (495, 354, 'attr', 'due_date', '2020-03-07', '2020-03-12');
INSERT INTO public.journal_details VALUES (496, 354, 'attr', 'start_date', '2020-03-07', '2020-03-12');
INSERT INTO public.journal_details VALUES (497, 355, 'attr', 'due_date', '2020-03-07', '2020-03-11');
INSERT INTO public.journal_details VALUES (498, 355, 'attr', 'start_date', '2020-03-07', '2020-03-11');
INSERT INTO public.journal_details VALUES (499, 356, 'attr', 'due_date', '2020-03-12', '2020-03-13');
INSERT INTO public.journal_details VALUES (500, 356, 'attr', 'start_date', '2020-03-12', '2020-03-13');
INSERT INTO public.journal_details VALUES (501, 357, 'attr', 'due_date', '2020-03-12', '2020-03-13');
INSERT INTO public.journal_details VALUES (502, 357, 'attr', 'start_date', '2020-03-12', '2020-03-13');
INSERT INTO public.journal_details VALUES (503, 358, 'attr', 'due_date', '2020-03-11', '2020-03-12');
INSERT INTO public.journal_details VALUES (504, 358, 'attr', 'start_date', '2020-03-11', '2020-03-12');
INSERT INTO public.journal_details VALUES (505, 359, 'attr', 'due_date', '2020-03-11', '2020-03-12');
INSERT INTO public.journal_details VALUES (506, 359, 'attr', 'start_date', '2020-03-11', '2020-03-12');
INSERT INTO public.journal_details VALUES (513, 363, 'attr', 'due_date', '2020-03-11', '2020-03-12');
INSERT INTO public.journal_details VALUES (514, 363, 'attr', 'start_date', '2020-03-11', '2020-03-12');
INSERT INTO public.journal_details VALUES (517, 365, 'attr', 'category_id', NULL, '6');
INSERT INTO public.journal_details VALUES (518, 366, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (519, 367, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (520, 368, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (521, 369, 'attr', 'assigned_to_id', '10', '5');
INSERT INTO public.journal_details VALUES (522, 370, 'attr', 'assigned_to_id', '10', '5');
INSERT INTO public.journal_details VALUES (523, 371, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (524, 372, 'attr', 'due_date', '2020-03-11', '2020-03-14');
INSERT INTO public.journal_details VALUES (525, 372, 'attr', 'start_date', '2020-03-11', '2020-03-14');
INSERT INTO public.journal_details VALUES (526, 373, 'attr', 'description', '', '- Đổi lại view hiện thị tất cả không trạng thái
- Hiển thị bộ lọc trạng thái
- Hiển thi 3 cột: + Ngày cập nhật
                  + Ngày đến hạn xử lý
                  + Ngày phê duyệt');
INSERT INTO public.journal_details VALUES (527, 373, 'attr', 'due_date', NULL, '2020-03-12');
INSERT INTO public.journal_details VALUES (528, 373, 'attr', 'category_id', NULL, '4');
INSERT INTO public.journal_details VALUES (529, 373, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (530, 374, 'attr', 'due_date', '2020-03-12', '2020-03-14');
INSERT INTO public.journal_details VALUES (531, 374, 'attr', 'start_date', '2020-03-12', '2020-03-14');
INSERT INTO public.journal_details VALUES (532, 375, 'attr', 'due_date', '2020-03-12', '2020-03-14');
INSERT INTO public.journal_details VALUES (533, 375, 'attr', 'start_date', '2020-03-12', '2020-03-14');
INSERT INTO public.journal_details VALUES (540, 379, 'attr', 'due_date', '2020-03-12', '2020-03-14');
INSERT INTO public.journal_details VALUES (541, 379, 'attr', 'start_date', '2020-03-12', '2020-03-14');
INSERT INTO public.journal_details VALUES (544, 381, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (545, 382, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (546, 383, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (547, 384, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (548, 385, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (549, 386, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (550, 387, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (551, 388, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (552, 389, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (553, 390, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (554, 391, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (555, 392, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (556, 393, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (557, 394, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (558, 395, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (559, 396, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (560, 397, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (561, 398, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (562, 399, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (563, 400, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (564, 401, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (565, 402, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (566, 403, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (567, 404, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (568, 405, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (569, 406, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (570, 407, 'attr', 'category_id', NULL, '4');
INSERT INTO public.journal_details VALUES (571, 408, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (572, 408, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (573, 408, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (574, 409, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (575, 409, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (576, 409, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (577, 410, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (578, 410, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (579, 410, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (580, 411, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (581, 411, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (582, 411, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (583, 412, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (584, 412, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (585, 412, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (586, 413, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (1041, 696, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (587, 413, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (588, 413, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (589, 414, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (590, 414, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (591, 414, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (592, 415, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (593, 415, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (594, 415, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (595, 416, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (596, 416, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (597, 416, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (598, 417, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (599, 417, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (600, 417, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (601, 418, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (602, 418, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (603, 418, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (604, 419, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (605, 419, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (606, 419, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (607, 420, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (608, 420, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (609, 420, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (610, 421, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (611, 421, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (612, 421, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (613, 422, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (614, 422, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (615, 422, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (616, 423, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (617, 423, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (618, 423, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (619, 424, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (620, 424, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (621, 424, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (622, 425, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (623, 425, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (624, 425, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (625, 426, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (626, 426, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (627, 426, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (628, 427, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (629, 427, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (630, 427, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (631, 428, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (632, 428, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (633, 428, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (634, 429, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (635, 429, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (636, 429, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (637, 430, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (638, 430, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (639, 430, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (640, 431, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (641, 431, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (642, 431, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (643, 431, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (644, 432, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (645, 432, 'attr', 'due_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (646, 432, 'attr', 'start_date', '2020-03-11', '2020-03-16');
INSERT INTO public.journal_details VALUES (647, 432, 'attr', 'parent_id', NULL, '138');
INSERT INTO public.journal_details VALUES (648, 433, 'attr', 'due_date', '2020-03-16', '2020-03-17');
INSERT INTO public.journal_details VALUES (649, 433, 'attr', 'start_date', '2020-03-16', '2020-03-17');
INSERT INTO public.journal_details VALUES (650, 434, 'attr', 'due_date', '2020-03-16', '2020-03-17');
INSERT INTO public.journal_details VALUES (651, 434, 'attr', 'start_date', '2020-03-16', '2020-03-17');
INSERT INTO public.journal_details VALUES (652, 435, 'attr', 'due_date', '2020-03-16', '2020-03-17');
INSERT INTO public.journal_details VALUES (653, 435, 'attr', 'start_date', '2020-03-16', '2020-03-17');
INSERT INTO public.journal_details VALUES (654, 436, 'attr', 'due_date', '2020-03-16', '2020-03-17');
INSERT INTO public.journal_details VALUES (655, 436, 'attr', 'start_date', '2020-03-16', '2020-03-17');
INSERT INTO public.journal_details VALUES (656, 437, 'attr', 'due_date', '2020-03-16', '2020-03-18');
INSERT INTO public.journal_details VALUES (657, 437, 'attr', 'start_date', '2020-03-16', '2020-03-18');
INSERT INTO public.journal_details VALUES (658, 438, 'attr', 'due_date', '2020-03-16', '2020-03-18');
INSERT INTO public.journal_details VALUES (659, 438, 'attr', 'start_date', '2020-03-16', '2020-03-18');
INSERT INTO public.journal_details VALUES (660, 439, 'attr', 'due_date', '2020-03-16', '2020-03-18');
INSERT INTO public.journal_details VALUES (661, 439, 'attr', 'start_date', '2020-03-16', '2020-03-18');
INSERT INTO public.journal_details VALUES (662, 440, 'attr', 'due_date', '2020-03-16', '2020-03-18');
INSERT INTO public.journal_details VALUES (663, 440, 'attr', 'start_date', '2020-03-16', '2020-03-18');
INSERT INTO public.journal_details VALUES (664, 441, 'attr', 'due_date', '2020-03-16', '2020-03-19');
INSERT INTO public.journal_details VALUES (665, 441, 'attr', 'start_date', '2020-03-16', '2020-03-19');
INSERT INTO public.journal_details VALUES (666, 442, 'attr', 'due_date', '2020-03-16', '2020-03-19');
INSERT INTO public.journal_details VALUES (667, 442, 'attr', 'start_date', '2020-03-16', '2020-03-19');
INSERT INTO public.journal_details VALUES (668, 443, 'attr', 'due_date', '2020-03-16', '2020-03-19');
INSERT INTO public.journal_details VALUES (669, 443, 'attr', 'start_date', '2020-03-16', '2020-03-19');
INSERT INTO public.journal_details VALUES (670, 444, 'attr', 'due_date', '2020-03-16', '2020-03-19');
INSERT INTO public.journal_details VALUES (671, 444, 'attr', 'start_date', '2020-03-16', '2020-03-19');
INSERT INTO public.journal_details VALUES (672, 445, 'attr', 'due_date', '2020-03-16', '2020-03-20');
INSERT INTO public.journal_details VALUES (673, 445, 'attr', 'start_date', '2020-03-16', '2020-03-20');
INSERT INTO public.journal_details VALUES (674, 446, 'attr', 'due_date', '2020-03-16', '2020-03-20');
INSERT INTO public.journal_details VALUES (675, 446, 'attr', 'start_date', '2020-03-16', '2020-03-20');
INSERT INTO public.journal_details VALUES (676, 447, 'attr', 'due_date', '2020-03-16', '2020-03-20');
INSERT INTO public.journal_details VALUES (677, 447, 'attr', 'start_date', '2020-03-16', '2020-03-20');
INSERT INTO public.journal_details VALUES (678, 448, 'attr', 'due_date', '2020-03-16', '2020-03-20');
INSERT INTO public.journal_details VALUES (679, 448, 'attr', 'start_date', '2020-03-16', '2020-03-20');
INSERT INTO public.journal_details VALUES (680, 449, 'attr', 'due_date', '2020-03-16', '2020-03-21');
INSERT INTO public.journal_details VALUES (681, 449, 'attr', 'start_date', '2020-03-16', '2020-03-21');
INSERT INTO public.journal_details VALUES (682, 450, 'attr', 'due_date', '2020-03-16', '2020-03-21');
INSERT INTO public.journal_details VALUES (683, 450, 'attr', 'start_date', '2020-03-16', '2020-03-21');
INSERT INTO public.journal_details VALUES (684, 451, 'attr', 'due_date', '2020-03-16', '2020-03-21');
INSERT INTO public.journal_details VALUES (685, 451, 'attr', 'start_date', '2020-03-16', '2020-03-21');
INSERT INTO public.journal_details VALUES (686, 452, 'attr', 'due_date', '2020-03-16', '2020-03-21');
INSERT INTO public.journal_details VALUES (687, 452, 'attr', 'start_date', '2020-03-16', '2020-03-21');
INSERT INTO public.journal_details VALUES (688, 453, 'attr', 'due_date', '2020-03-16', '2020-03-21');
INSERT INTO public.journal_details VALUES (689, 453, 'attr', 'start_date', '2020-03-16', '2020-03-21');
INSERT INTO public.journal_details VALUES (690, 454, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (691, 455, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (692, 456, 'attr', 'category_id', '5', '4');
INSERT INTO public.journal_details VALUES (693, 457, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (694, 458, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (695, 459, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (696, 460, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (697, 461, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (698, 462, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (699, 463, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (700, 464, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (701, 465, 'attr', 'description', '', '- có 4 HHDV được thêm mới');
INSERT INTO public.journal_details VALUES (702, 465, 'attr', 'due_date', NULL, '2020-03-12');
INSERT INTO public.journal_details VALUES (703, 465, 'attr', 'category_id', NULL, '4');
INSERT INTO public.journal_details VALUES (704, 465, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (705, 466, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (706, 467, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (707, 468, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (708, 469, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (709, 470, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (710, 471, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (711, 472, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (712, 473, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (713, 474, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (714, 475, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (715, 476, 'attr', 'subject', 'download file văn bản', 'Download file văn bản');
INSERT INTO public.journal_details VALUES (716, 477, 'attr', 'subject', 'download file hồ sơ', 'Download file hồ sơ');
INSERT INTO public.journal_details VALUES (717, 478, 'attr', 'due_date', '2020-03-14', '2020-03-13');
INSERT INTO public.journal_details VALUES (718, 478, 'attr', 'start_date', '2020-03-14', '2020-03-13');
INSERT INTO public.journal_details VALUES (719, 479, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (720, 480, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (721, 481, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (722, 482, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (723, 483, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (724, 484, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (725, 485, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (726, 486, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (727, 487, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (728, 488, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (729, 489, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (730, 490, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (731, 491, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (732, 492, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (733, 493, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (734, 494, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (735, 495, 'attr', 'due_date', '2020-03-14', '2020-03-17');
INSERT INTO public.journal_details VALUES (736, 495, 'attr', 'start_date', '2020-03-14', '2020-03-17');
INSERT INTO public.journal_details VALUES (737, 496, 'attr', 'due_date', '2020-03-14', '2020-03-17');
INSERT INTO public.journal_details VALUES (738, 496, 'attr', 'start_date', '2020-03-14', '2020-03-17');
INSERT INTO public.journal_details VALUES (745, 500, 'attr', 'due_date', '2020-03-14', '2020-03-17');
INSERT INTO public.journal_details VALUES (746, 500, 'attr', 'start_date', '2020-03-14', '2020-03-17');
INSERT INTO public.journal_details VALUES (749, 502, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (750, 503, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (751, 504, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (752, 505, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (753, 506, 'attr', 'subject', 'Sửa đổi, bổ sung tên các đơn vị trực thuộc của các sở', 'Liên hệ lấy danh sách ĐVTT chính xác của Sở Khoa học - Công nghệ');
INSERT INTO public.journal_details VALUES (754, 506, 'attr', 'description', '- Sở Khoa học - Công nghệ
- Sở Lao động
- Sở Y tế
- Ban quản lý khu kinh tế', '');
INSERT INTO public.journal_details VALUES (755, 507, 'attr', 'subject', 'Liên hệ lấy danh sách ĐVTT chính xác của Sở Khoa học - Công nghệ', 'Liên hệ lấy danh sách ĐVTT chính xác');
INSERT INTO public.journal_details VALUES (756, 508, 'attr', 'subject', 'Import dữ liệu HHDV ngành Y tế', 'Import dữ liệu HHDV khám bệnh, chữa bệnh');
INSERT INTO public.journal_details VALUES (757, 509, 'attr', 'due_date', '2020-03-17', '2020-03-16');
INSERT INTO public.journal_details VALUES (758, 509, 'attr', 'start_date', '2020-03-17', '2020-03-16');
INSERT INTO public.journal_details VALUES (759, 510, 'attr', 'due_date', '2020-03-16', '2020-03-23');
INSERT INTO public.journal_details VALUES (760, 510, 'attr', 'start_date', '2020-03-16', '2020-03-23');
INSERT INTO public.journal_details VALUES (761, 511, 'attr', 'due_date', '2020-03-16', '2020-03-23');
INSERT INTO public.journal_details VALUES (762, 511, 'attr', 'start_date', '2020-03-16', '2020-03-23');
INSERT INTO public.journal_details VALUES (763, 512, 'attr', 'due_date', '2020-03-16', '2020-03-23');
INSERT INTO public.journal_details VALUES (764, 512, 'attr', 'start_date', '2020-03-16', '2020-03-23');
INSERT INTO public.journal_details VALUES (765, 513, 'attr', 'due_date', '2020-03-16', '2020-03-23');
INSERT INTO public.journal_details VALUES (766, 513, 'attr', 'start_date', '2020-03-16', '2020-03-23');
INSERT INTO public.journal_details VALUES (767, 514, 'attr', 'due_date', '2020-03-17', '2020-03-23');
INSERT INTO public.journal_details VALUES (768, 514, 'attr', 'start_date', '2020-03-17', '2020-03-23');
INSERT INTO public.journal_details VALUES (769, 515, 'attr', 'due_date', '2020-03-17', '2020-03-23');
INSERT INTO public.journal_details VALUES (770, 515, 'attr', 'start_date', '2020-03-17', '2020-03-23');
INSERT INTO public.journal_details VALUES (771, 516, 'attr', 'due_date', '2020-03-17', '2020-03-23');
INSERT INTO public.journal_details VALUES (772, 516, 'attr', 'start_date', '2020-03-17', '2020-03-23');
INSERT INTO public.journal_details VALUES (773, 517, 'attr', 'due_date', '2020-03-17', '2020-03-23');
INSERT INTO public.journal_details VALUES (774, 517, 'attr', 'start_date', '2020-03-17', '2020-03-23');
INSERT INTO public.journal_details VALUES (775, 518, 'attr', 'due_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (776, 518, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (777, 519, 'attr', 'due_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (778, 519, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (779, 520, 'attr', 'due_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (780, 520, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (781, 521, 'attr', 'due_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (782, 521, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (783, 522, 'attr', 'due_date', '2020-03-19', '2020-03-23');
INSERT INTO public.journal_details VALUES (784, 522, 'attr', 'start_date', '2020-03-19', '2020-03-23');
INSERT INTO public.journal_details VALUES (785, 523, 'attr', 'due_date', '2020-03-19', '2020-03-23');
INSERT INTO public.journal_details VALUES (786, 523, 'attr', 'start_date', '2020-03-19', '2020-03-23');
INSERT INTO public.journal_details VALUES (787, 524, 'attr', 'due_date', '2020-03-19', '2020-03-23');
INSERT INTO public.journal_details VALUES (788, 524, 'attr', 'start_date', '2020-03-19', '2020-03-23');
INSERT INTO public.journal_details VALUES (789, 525, 'attr', 'due_date', '2020-03-19', '2020-03-23');
INSERT INTO public.journal_details VALUES (790, 525, 'attr', 'start_date', '2020-03-19', '2020-03-23');
INSERT INTO public.journal_details VALUES (791, 526, 'attr', 'due_date', '2020-03-20', '2020-03-23');
INSERT INTO public.journal_details VALUES (792, 526, 'attr', 'start_date', '2020-03-20', '2020-03-23');
INSERT INTO public.journal_details VALUES (793, 527, 'attr', 'due_date', '2020-03-20', '2020-03-23');
INSERT INTO public.journal_details VALUES (794, 527, 'attr', 'start_date', '2020-03-20', '2020-03-23');
INSERT INTO public.journal_details VALUES (795, 528, 'attr', 'due_date', '2020-03-20', '2020-03-23');
INSERT INTO public.journal_details VALUES (796, 528, 'attr', 'start_date', '2020-03-20', '2020-03-23');
INSERT INTO public.journal_details VALUES (797, 529, 'attr', 'due_date', '2020-03-20', '2020-03-23');
INSERT INTO public.journal_details VALUES (798, 529, 'attr', 'start_date', '2020-03-20', '2020-03-23');
INSERT INTO public.journal_details VALUES (799, 530, 'attr', 'due_date', '2020-03-21', '2020-03-23');
INSERT INTO public.journal_details VALUES (800, 530, 'attr', 'start_date', '2020-03-21', '2020-03-23');
INSERT INTO public.journal_details VALUES (801, 531, 'attr', 'due_date', '2020-03-21', '2020-03-23');
INSERT INTO public.journal_details VALUES (802, 531, 'attr', 'start_date', '2020-03-21', '2020-03-23');
INSERT INTO public.journal_details VALUES (803, 532, 'attr', 'due_date', '2020-03-21', '2020-03-23');
INSERT INTO public.journal_details VALUES (804, 532, 'attr', 'start_date', '2020-03-21', '2020-03-23');
INSERT INTO public.journal_details VALUES (805, 533, 'attr', 'due_date', '2020-03-21', '2020-03-23');
INSERT INTO public.journal_details VALUES (806, 533, 'attr', 'start_date', '2020-03-21', '2020-03-23');
INSERT INTO public.journal_details VALUES (807, 534, 'attr', 'due_date', '2020-03-21', '2020-03-23');
INSERT INTO public.journal_details VALUES (808, 534, 'attr', 'start_date', '2020-03-21', '2020-03-23');
INSERT INTO public.journal_details VALUES (811, 536, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (812, 537, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (813, 538, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (814, 539, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (815, 540, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (816, 541, 'attr', 'due_date', '2020-03-20', '2020-03-19');
INSERT INTO public.journal_details VALUES (817, 541, 'attr', 'start_date', '2020-03-20', '2020-03-19');
INSERT INTO public.journal_details VALUES (818, 542, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (819, 543, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (820, 544, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (821, 545, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (822, 546, 'attr', 'due_date', '2020-03-16', '2020-03-14');
INSERT INTO public.journal_details VALUES (823, 546, 'attr', 'start_date', '2020-03-16', '2020-03-14');
INSERT INTO public.journal_details VALUES (824, 547, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (825, 548, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (826, 549, 'attr', 'subject', 'Thêm cột "Thời hạn ổn định đơn giá" cho Cục thuế và Ban quản lý khu kinh tế', 'Hoỉ lại a Dũng "Thời hạn ổn định đơn giá" cho Cục thuế và Ban quản lý khu kinh tế');
INSERT INTO public.journal_details VALUES (827, 550, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (828, 551, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (829, 552, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (830, 553, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (831, 554, 'attr', 'subject', 'File ĐVTT Sở Lao động', 'File ĐVTT Sở Y tế');
INSERT INTO public.journal_details VALUES (832, 555, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (833, 556, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (834, 557, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (835, 558, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (836, 559, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (837, 560, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (838, 561, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (839, 562, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (840, 563, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (841, 564, 'attr', 'subject', 'Hoỉ lại a Dũng "Thời hạn ổn định đơn giá" cho Cục thuế và Ban quản lý khu kinh tế', 'Thêm "Thời hạn ổn định đơn giá" cho Cục thuế và Ban quản lý khu kinh tế');
INSERT INTO public.journal_details VALUES (842, 565, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (843, 566, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (844, 567, 'attr', 'due_date', NULL, '2020-03-16');
INSERT INTO public.journal_details VALUES (845, 567, 'attr', 'start_date', '2020-03-14', '2020-03-16');
INSERT INTO public.journal_details VALUES (846, 568, 'attr', 'category_id', NULL, '4');
INSERT INTO public.journal_details VALUES (847, 568, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (848, 569, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (849, 570, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (850, 571, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (851, 572, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (852, 573, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (853, 574, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (854, 575, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (855, 576, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (856, 577, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (857, 578, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (858, 579, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (859, 580, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (860, 581, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (861, 582, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (862, 583, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (863, 584, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (864, 585, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (865, 586, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (866, 587, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (867, 588, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (868, 589, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (869, 590, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (870, 591, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (871, 592, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (872, 593, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (873, 594, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (874, 595, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (875, 596, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (876, 597, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (877, 598, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (878, 599, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (879, 600, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (880, 601, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (881, 602, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (882, 603, 'attr', 'subject', 'Trang danh sách message', ' Giao diện trang danh sách message');
INSERT INTO public.journal_details VALUES (883, 604, 'attr', 'subject', 'Trang chi tiết message', 'Giao diện trang chi tiết message');
INSERT INTO public.journal_details VALUES (884, 604, 'attr', 'due_date', '2020-03-16', '2020-03-18');
INSERT INTO public.journal_details VALUES (885, 604, 'attr', 'start_date', '2020-03-16', '2020-03-18');
INSERT INTO public.journal_details VALUES (886, 605, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (887, 606, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (888, 607, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (889, 608, 'attr', 'assigned_to_id', '4', '12');
INSERT INTO public.journal_details VALUES (890, 609, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (891, 610, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (892, 611, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (893, 612, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (894, 613, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (895, 614, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (896, 615, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (897, 616, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (898, 617, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (899, 618, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (900, 619, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (901, 620, 'attr', 'subject', 'Module điểm đầu tư', 'Điểm đầu tư');
INSERT INTO public.journal_details VALUES (902, 621, 'attr', 'tracker_id', '2', '3');
INSERT INTO public.journal_details VALUES (903, 622, 'attr', 'category_id', '4', NULL);
INSERT INTO public.journal_details VALUES (904, 623, 'attr', 'due_date', '2020-03-17', '2020-03-18');
INSERT INTO public.journal_details VALUES (905, 623, 'attr', 'start_date', '2020-03-17', '2020-03-18');
INSERT INTO public.journal_details VALUES (906, 623, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (907, 624, 'attr', 'due_date', NULL, '2020-03-18');
INSERT INTO public.journal_details VALUES (908, 624, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (909, 624, 'attr', 'start_date', '2020-03-17', '2020-03-18');
INSERT INTO public.journal_details VALUES (910, 624, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (911, 625, 'attr', 'due_date', NULL, '2020-03-18');
INSERT INTO public.journal_details VALUES (912, 625, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (913, 625, 'attr', 'start_date', '2020-03-17', '2020-03-18');
INSERT INTO public.journal_details VALUES (914, 625, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (915, 626, 'attr', 'due_date', NULL, '2020-03-18');
INSERT INTO public.journal_details VALUES (916, 626, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (917, 626, 'attr', 'start_date', '2020-03-17', '2020-03-18');
INSERT INTO public.journal_details VALUES (918, 626, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (919, 627, 'attr', 'due_date', NULL, '2020-03-18');
INSERT INTO public.journal_details VALUES (920, 627, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (921, 627, 'attr', 'start_date', '2020-03-17', '2020-03-18');
INSERT INTO public.journal_details VALUES (922, 628, 'attr', 'due_date', NULL, '2020-03-18');
INSERT INTO public.journal_details VALUES (923, 628, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (924, 628, 'attr', 'start_date', '2020-03-17', '2020-03-18');
INSERT INTO public.journal_details VALUES (925, 628, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (926, 629, 'attr', 'due_date', NULL, '2020-03-18');
INSERT INTO public.journal_details VALUES (927, 629, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (928, 629, 'attr', 'start_date', '2020-03-17', '2020-03-18');
INSERT INTO public.journal_details VALUES (929, 629, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (930, 630, 'attr', 'due_date', NULL, '2020-03-18');
INSERT INTO public.journal_details VALUES (931, 630, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (932, 630, 'attr', 'start_date', '2020-03-17', '2020-03-18');
INSERT INTO public.journal_details VALUES (933, 631, 'attr', 'due_date', NULL, '2020-03-18');
INSERT INTO public.journal_details VALUES (934, 631, 'attr', 'start_date', '2020-03-17', '2020-03-18');
INSERT INTO public.journal_details VALUES (935, 631, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (936, 632, 'attr', 'due_date', NULL, '2020-03-18');
INSERT INTO public.journal_details VALUES (937, 632, 'attr', 'start_date', '2020-03-17', '2020-03-18');
INSERT INTO public.journal_details VALUES (938, 632, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (939, 633, 'attr', 'due_date', NULL, '2020-03-18');
INSERT INTO public.journal_details VALUES (940, 633, 'attr', 'start_date', '2020-03-17', '2020-03-18');
INSERT INTO public.journal_details VALUES (941, 633, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (942, 634, 'attr', 'due_date', NULL, '2020-03-18');
INSERT INTO public.journal_details VALUES (943, 634, 'attr', 'start_date', '2020-03-17', '2020-03-18');
INSERT INTO public.journal_details VALUES (944, 634, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (945, 635, 'attr', 'due_date', NULL, '2020-03-19');
INSERT INTO public.journal_details VALUES (946, 635, 'attr', 'start_date', '2020-03-17', '2020-03-19');
INSERT INTO public.journal_details VALUES (947, 636, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (948, 637, 'attr', 'due_date', NULL, '2020-03-18');
INSERT INTO public.journal_details VALUES (949, 638, 'attr', 'due_date', NULL, '2020-03-18');
INSERT INTO public.journal_details VALUES (950, 639, 'attr', 'due_date', NULL, '2020-03-18');
INSERT INTO public.journal_details VALUES (951, 640, 'attr', 'due_date', NULL, '2020-03-18');
INSERT INTO public.journal_details VALUES (952, 641, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (954, 643, 'attr', 'due_date', NULL, '2020-03-23');
INSERT INTO public.journal_details VALUES (955, 643, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (956, 644, 'attr', 'due_date', NULL, '2020-03-23');
INSERT INTO public.journal_details VALUES (957, 644, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (958, 645, 'attr', 'due_date', NULL, '2020-03-23');
INSERT INTO public.journal_details VALUES (959, 645, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (962, 647, 'attr', 'due_date', NULL, '2020-03-23');
INSERT INTO public.journal_details VALUES (963, 647, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (966, 649, 'attr', 'due_date', NULL, '2020-03-23');
INSERT INTO public.journal_details VALUES (967, 649, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (968, 650, 'attr', 'due_date', NULL, '2020-03-23');
INSERT INTO public.journal_details VALUES (969, 650, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (970, 651, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (971, 652, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (972, 653, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (973, 654, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (974, 655, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (975, 656, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (976, 657, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (977, 658, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (978, 659, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (983, 664, 'attr', 'due_date', NULL, '2020-03-19');
INSERT INTO public.journal_details VALUES (984, 664, 'attr', 'start_date', '2020-03-17', '2020-03-19');
INSERT INTO public.journal_details VALUES (985, 665, 'attr', 'category_id', NULL, '6');
INSERT INTO public.journal_details VALUES (987, 667, 'attr', 'due_date', NULL, '2020-03-20');
INSERT INTO public.journal_details VALUES (988, 667, 'attr', 'start_date', '2020-03-17', '2020-03-19');
INSERT INTO public.journal_details VALUES (992, 670, 'attr', 'due_date', NULL, '2020-03-21');
INSERT INTO public.journal_details VALUES (993, 670, 'attr', 'start_date', '2020-03-17', '2020-03-21');
INSERT INTO public.journal_details VALUES (994, 671, 'attr', 'due_date', NULL, '2020-03-19');
INSERT INTO public.journal_details VALUES (995, 671, 'attr', 'start_date', '2020-03-17', '2020-03-19');
INSERT INTO public.journal_details VALUES (996, 672, 'attr', 'due_date', NULL, '2020-03-20');
INSERT INTO public.journal_details VALUES (997, 673, 'attr', 'due_date', NULL, '2020-03-20');
INSERT INTO public.journal_details VALUES (998, 673, 'attr', 'start_date', '2020-03-17', '2020-03-20');
INSERT INTO public.journal_details VALUES (999, 674, 'attr', 'due_date', NULL, '2020-03-22');
INSERT INTO public.journal_details VALUES (1000, 674, 'attr', 'start_date', '2020-03-17', '2020-03-21');
INSERT INTO public.journal_details VALUES (1001, 675, 'attr', 'due_date', NULL, '2020-03-24');
INSERT INTO public.journal_details VALUES (1002, 675, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1003, 676, 'attr', 'due_date', NULL, '2020-03-24');
INSERT INTO public.journal_details VALUES (1004, 676, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1005, 677, 'attr', 'due_date', NULL, '2020-03-24');
INSERT INTO public.journal_details VALUES (1006, 677, 'attr', 'start_date', '2020-03-18', '2020-03-24');
INSERT INTO public.journal_details VALUES (1007, 678, 'attr', 'due_date', NULL, '2020-03-24');
INSERT INTO public.journal_details VALUES (1008, 678, 'attr', 'start_date', '2020-03-18', '2020-03-24');
INSERT INTO public.journal_details VALUES (1019, 684, 'attr', 'due_date', '2020-03-20', '2020-03-21');
INSERT INTO public.journal_details VALUES (1020, 684, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (1021, 685, 'attr', 'due_date', '2020-03-21', '2020-03-20');
INSERT INTO public.journal_details VALUES (1022, 685, 'attr', 'start_date', '2020-03-19', '2020-03-20');
INSERT INTO public.journal_details VALUES (1031, 692, 'attr', 'due_date', '2020-03-19', '2020-03-21');
INSERT INTO public.journal_details VALUES (1032, 692, 'attr', 'start_date', '2020-03-19', '2020-03-21');
INSERT INTO public.journal_details VALUES (1033, 693, 'attr', 'due_date', '2020-03-20', '2020-03-24');
INSERT INTO public.journal_details VALUES (1034, 693, 'attr', 'start_date', '2020-03-20', '2020-03-23');
INSERT INTO public.journal_details VALUES (1035, 694, 'attr', 'tracker_id', '2', '1');
INSERT INTO public.journal_details VALUES (1036, 694, 'attr', 'subject', 'Danh sách trích ngang', 'Danh sách trích ngang theo đơn vị');
INSERT INTO public.journal_details VALUES (1037, 694, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (1038, 694, 'attr', 'start_date', '2020-03-19', '2020-03-21');
INSERT INTO public.journal_details VALUES (1039, 695, 'attr', 'due_date', '2020-03-21', '2020-03-20');
INSERT INTO public.journal_details VALUES (1040, 695, 'attr', 'start_date', '2020-03-21', '2020-03-20');
INSERT INTO public.journal_details VALUES (1042, 697, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (1043, 698, 'attr', 'due_date', '2020-03-21', '2020-03-24');
INSERT INTO public.journal_details VALUES (1044, 698, 'attr', 'start_date', '2020-03-21', '2020-03-24');
INSERT INTO public.journal_details VALUES (1045, 699, 'attr', 'due_date', '2020-03-24', '2020-03-25');
INSERT INTO public.journal_details VALUES (1046, 699, 'attr', 'start_date', '2020-03-24', '2020-03-25');
INSERT INTO public.journal_details VALUES (1047, 700, 'attr', 'due_date', '2020-03-22', '2020-03-26');
INSERT INTO public.journal_details VALUES (1048, 700, 'attr', 'start_date', '2020-03-21', '2020-03-25');
INSERT INTO public.journal_details VALUES (1049, 701, 'attr', 'category_id', NULL, '6');
INSERT INTO public.journal_details VALUES (1050, 702, 'attr', 'due_date', '2020-03-19', '2020-03-26');
INSERT INTO public.journal_details VALUES (1051, 702, 'attr', 'start_date', '2020-03-19', '2020-03-26');
INSERT INTO public.journal_details VALUES (1052, 703, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1053, 704, 'attr', 'assigned_to_id', '12', '4');
INSERT INTO public.journal_details VALUES (1057, 707, 'attr', 'due_date', '2020-03-19', '2020-03-28');
INSERT INTO public.journal_details VALUES (1058, 707, 'attr', 'start_date', '2020-03-19', '2020-03-28');
INSERT INTO public.journal_details VALUES (1063, 710, 'attr', 'due_date', '2020-03-25', '2020-03-23');
INSERT INTO public.journal_details VALUES (1064, 710, 'attr', 'start_date', '2020-03-25', '2020-03-23');
INSERT INTO public.journal_details VALUES (1065, 711, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1066, 712, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1067, 713, 'attr', 'start_date', '2020-03-29', '2020-03-30');
INSERT INTO public.journal_details VALUES (1068, 714, 'attr', 'due_date', '2020-03-19', '2020-03-20');
INSERT INTO public.journal_details VALUES (1069, 714, 'attr', 'start_date', '2020-03-19', '2020-03-20');
INSERT INTO public.journal_details VALUES (1070, 715, 'attr', 'due_date', '2020-03-16', '2020-03-20');
INSERT INTO public.journal_details VALUES (1071, 715, 'attr', 'start_date', '2020-03-16', '2020-03-20');
INSERT INTO public.journal_details VALUES (1074, 717, 'attr', 'due_date', '2020-03-17', '2020-03-20');
INSERT INTO public.journal_details VALUES (1075, 717, 'attr', 'start_date', '2020-03-17', '2020-03-20');
INSERT INTO public.journal_details VALUES (1078, 719, 'attr', 'due_date', '2020-03-18', '2020-03-20');
INSERT INTO public.journal_details VALUES (1079, 719, 'attr', 'start_date', '2020-03-18', '2020-03-20');
INSERT INTO public.journal_details VALUES (1080, 720, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1081, 721, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1082, 722, 'attr', 'due_date', '2020-03-20', '2020-03-23');
INSERT INTO public.journal_details VALUES (1083, 722, 'attr', 'start_date', '2020-03-20', '2020-03-23');
INSERT INTO public.journal_details VALUES (1084, 723, 'attr', 'due_date', '2020-03-20', '2020-03-23');
INSERT INTO public.journal_details VALUES (1085, 723, 'attr', 'start_date', '2020-03-20', '2020-03-23');
INSERT INTO public.journal_details VALUES (1088, 725, 'attr', 'due_date', '2020-03-20', '2020-03-21');
INSERT INTO public.journal_details VALUES (1089, 725, 'attr', 'start_date', '2020-03-20', '2020-03-21');
INSERT INTO public.journal_details VALUES (1092, 727, 'attr', 'status_id', '3', '1');
INSERT INTO public.journal_details VALUES (1093, 728, 'attr', 'due_date', '2020-03-11', '2020-03-20');
INSERT INTO public.journal_details VALUES (1094, 728, 'attr', 'start_date', '2020-03-11', '2020-03-20');
INSERT INTO public.journal_details VALUES (1095, 729, 'attr', 'due_date', '2020-03-23', '2020-03-26');
INSERT INTO public.journal_details VALUES (1096, 729, 'attr', 'start_date', '2020-03-23', '2020-03-26');
INSERT INTO public.journal_details VALUES (1097, 730, 'attr', 'due_date', '2020-03-23', '2020-03-26');
INSERT INTO public.journal_details VALUES (1098, 730, 'attr', 'start_date', '2020-03-23', '2020-03-26');
INSERT INTO public.journal_details VALUES (1099, 731, 'attr', 'due_date', '2020-03-23', '2020-03-26');
INSERT INTO public.journal_details VALUES (1100, 731, 'attr', 'start_date', '2020-03-23', '2020-03-26');
INSERT INTO public.journal_details VALUES (1101, 732, 'attr', 'due_date', '2020-03-23', '2020-03-26');
INSERT INTO public.journal_details VALUES (1102, 732, 'attr', 'start_date', '2020-03-23', '2020-03-26');
INSERT INTO public.journal_details VALUES (1103, 733, 'attr', 'due_date', '2020-03-23', '2020-03-26');
INSERT INTO public.journal_details VALUES (1104, 733, 'attr', 'start_date', '2020-03-23', '2020-03-26');
INSERT INTO public.journal_details VALUES (1105, 734, 'attr', 'due_date', '2020-03-23', '2020-03-26');
INSERT INTO public.journal_details VALUES (1106, 734, 'attr', 'start_date', '2020-03-23', '2020-03-26');
INSERT INTO public.journal_details VALUES (1107, 735, 'attr', 'due_date', '2020-03-23', '2020-03-25');
INSERT INTO public.journal_details VALUES (1108, 735, 'attr', 'start_date', '2020-03-23', '2020-03-25');
INSERT INTO public.journal_details VALUES (1109, 736, 'attr', 'due_date', '2020-03-23', '2020-03-25');
INSERT INTO public.journal_details VALUES (1110, 736, 'attr', 'start_date', '2020-03-23', '2020-03-25');
INSERT INTO public.journal_details VALUES (1111, 737, 'attr', 'due_date', '2020-03-23', '2020-03-25');
INSERT INTO public.journal_details VALUES (1112, 737, 'attr', 'start_date', '2020-03-23', '2020-03-25');
INSERT INTO public.journal_details VALUES (1113, 738, 'attr', 'due_date', '2020-03-23', '2020-03-25');
INSERT INTO public.journal_details VALUES (1114, 738, 'attr', 'start_date', '2020-03-23', '2020-03-25');
INSERT INTO public.journal_details VALUES (1115, 739, 'attr', 'due_date', '2020-03-23', '2020-03-25');
INSERT INTO public.journal_details VALUES (1116, 739, 'attr', 'start_date', '2020-03-23', '2020-03-25');
INSERT INTO public.journal_details VALUES (1117, 740, 'attr', 'due_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1118, 740, 'attr', 'start_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1119, 741, 'attr', 'due_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1120, 741, 'attr', 'start_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1121, 742, 'attr', 'due_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1122, 742, 'attr', 'start_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1123, 743, 'attr', 'due_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1124, 743, 'attr', 'start_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1125, 744, 'attr', 'due_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1126, 744, 'attr', 'start_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1127, 745, 'attr', 'due_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1128, 745, 'attr', 'start_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1129, 746, 'attr', 'due_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1130, 746, 'attr', 'start_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1131, 747, 'attr', 'due_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1132, 747, 'attr', 'start_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1133, 748, 'attr', 'due_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1134, 748, 'attr', 'start_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1135, 749, 'attr', 'due_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1136, 749, 'attr', 'start_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1137, 750, 'attr', 'due_date', '2020-03-16', '2020-03-30');
INSERT INTO public.journal_details VALUES (1138, 750, 'attr', 'start_date', '2020-03-16', '2020-03-30');
INSERT INTO public.journal_details VALUES (1139, 751, 'attr', 'due_date', '2020-03-16', '2020-03-30');
INSERT INTO public.journal_details VALUES (1140, 751, 'attr', 'start_date', '2020-03-16', '2020-03-30');
INSERT INTO public.journal_details VALUES (1141, 752, 'attr', 'start_date', '2020-03-19', '2020-03-18');
INSERT INTO public.journal_details VALUES (1142, 753, 'attr', 'start_date', '2020-03-19', '2020-03-18');
INSERT INTO public.journal_details VALUES (1143, 754, 'attr', 'start_date', '2020-03-19', '2020-03-18');
INSERT INTO public.journal_details VALUES (1144, 755, 'attr', 'start_date', '2020-03-19', '2020-03-18');
INSERT INTO public.journal_details VALUES (1145, 756, 'attr', 'start_date', '2020-03-19', '2020-03-18');
INSERT INTO public.journal_details VALUES (1146, 757, 'attr', 'start_date', '2020-03-19', '2020-03-18');
INSERT INTO public.journal_details VALUES (1147, 758, 'attr', 'start_date', '2020-03-19', '2020-03-18');
INSERT INTO public.journal_details VALUES (1148, 759, 'attr', 'start_date', '2020-03-19', '2020-03-18');
INSERT INTO public.journal_details VALUES (1149, 760, 'attr', 'start_date', '2020-03-19', '2020-03-18');
INSERT INTO public.journal_details VALUES (1150, 761, 'attr', 'start_date', '2020-03-19', '2020-03-18');
INSERT INTO public.journal_details VALUES (1151, 762, 'attr', 'start_date', '2020-03-19', '2020-03-18');
INSERT INTO public.journal_details VALUES (1152, 763, 'attr', 'start_date', '2020-03-19', '2020-03-18');
INSERT INTO public.journal_details VALUES (1153, 764, 'attr', 'start_date', '2020-03-19', '2020-03-18');
INSERT INTO public.journal_details VALUES (1154, 765, 'attr', 'start_date', '2020-03-19', '2020-03-18');
INSERT INTO public.journal_details VALUES (1509, 1016, 'attr', 'category_id', NULL, '11');
INSERT INTO public.journal_details VALUES (1155, 766, 'attr', 'start_date', '2020-03-19', '2020-03-18');
INSERT INTO public.journal_details VALUES (1156, 767, 'attr', 'start_date', '2020-03-19', '2020-03-18');
INSERT INTO public.journal_details VALUES (1157, 768, 'attr', 'start_date', '2020-03-19', '2020-03-18');
INSERT INTO public.journal_details VALUES (1158, 769, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1159, 770, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1160, 771, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1161, 772, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1162, 773, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1163, 774, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1164, 775, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1165, 776, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1166, 777, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1167, 778, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1168, 779, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1169, 780, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1170, 781, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1171, 782, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1172, 783, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1173, 784, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1174, 785, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1175, 786, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1176, 787, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1177, 788, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1178, 789, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1179, 790, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1180, 791, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1181, 792, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1182, 793, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1183, 794, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1184, 795, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1185, 796, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1186, 797, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1187, 798, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1188, 799, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1191, 801, 'attr', 'due_date', '2020-03-20', '2020-03-19');
INSERT INTO public.journal_details VALUES (1192, 801, 'attr', 'start_date', '2020-03-20', '2020-03-19');
INSERT INTO public.journal_details VALUES (1193, 801, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1194, 802, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (1195, 803, 'attr', 'due_date', '2020-03-28', '2020-03-20');
INSERT INTO public.journal_details VALUES (1196, 803, 'attr', 'start_date', '2020-03-28', '2020-03-20');
INSERT INTO public.journal_details VALUES (1197, 804, 'attr', 'due_date', '2020-03-20', '2020-03-28');
INSERT INTO public.journal_details VALUES (1198, 804, 'attr', 'start_date', '2020-03-20', '2020-03-28');
INSERT INTO public.journal_details VALUES (1199, 805, 'attr', 'description', 'Thảo, Trung
thảm khảo video wework', 'Thảo, Trung
thảm khảo video wework
https://www.youtube.com/watch?v=YqX_iJ2orcg&feature=youtu.be
https://www.misa.com.vn/tin-tuc/chi-tiet/newsid/48603/Phim-demo-san-pham-MISA-SME-NET-2015');
INSERT INTO public.journal_details VALUES (1200, 805, 'attr', 'due_date', '2020-03-18', '2020-03-20');
INSERT INTO public.journal_details VALUES (1201, 805, 'attr', 'start_date', '2020-03-18', '2020-03-20');
INSERT INTO public.journal_details VALUES (1202, 806, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1203, 807, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1204, 808, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1205, 809, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1206, 810, 'attr', 'due_date', '2020-03-24', '2020-03-23');
INSERT INTO public.journal_details VALUES (1207, 811, 'attr', 'due_date', '2020-03-26', '2020-03-24');
INSERT INTO public.journal_details VALUES (1208, 811, 'attr', 'start_date', '2020-03-25', '2020-03-24');
INSERT INTO public.journal_details VALUES (1209, 812, 'attr', 'due_date', '2020-03-27', '2020-03-25');
INSERT INTO public.journal_details VALUES (1210, 812, 'attr', 'start_date', '2020-03-26', '2020-03-25');
INSERT INTO public.journal_details VALUES (1211, 813, 'attr', 'due_date', '2020-03-28', '2020-03-27');
INSERT INTO public.journal_details VALUES (1212, 813, 'attr', 'start_date', '2020-03-27', '2020-03-26');
INSERT INTO public.journal_details VALUES (1213, 814, 'attr', 'subject', 'Upload youtube', 'Tạo kênh & upload youtube');
INSERT INTO public.journal_details VALUES (1214, 815, 'attr', 'category_id', NULL, '9');
INSERT INTO public.journal_details VALUES (1215, 816, 'attr', 'category_id', NULL, '9');
INSERT INTO public.journal_details VALUES (1216, 817, 'attr', 'category_id', NULL, '9');
INSERT INTO public.journal_details VALUES (1217, 818, 'attr', 'category_id', NULL, '9');
INSERT INTO public.journal_details VALUES (1218, 819, 'attr', 'category_id', NULL, '9');
INSERT INTO public.journal_details VALUES (1219, 820, 'attr', 'category_id', NULL, '9');
INSERT INTO public.journal_details VALUES (1220, 821, 'attr', 'category_id', NULL, '9');
INSERT INTO public.journal_details VALUES (1221, 822, 'attr', 'category_id', NULL, '9');
INSERT INTO public.journal_details VALUES (1222, 823, 'attr', 'category_id', NULL, '9');
INSERT INTO public.journal_details VALUES (1223, 824, 'attr', 'category_id', NULL, '9');
INSERT INTO public.journal_details VALUES (1226, 827, 'attr', 'subject', 'Loại đơn vị', 'Vai trò');
INSERT INTO public.journal_details VALUES (1227, 828, 'attr', 'subject', 'Cấu hình loại đơn vị gồm những quyền gì', 'Cấu hình vài trò gồm những quyền gì');
INSERT INTO public.journal_details VALUES (1228, 829, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1229, 830, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1230, 831, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1231, 832, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1232, 833, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1233, 834, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1234, 835, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1235, 836, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1236, 837, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1237, 838, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1238, 839, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1239, 840, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1240, 841, 'attr', 'due_date', NULL, '2020-03-20');
INSERT INTO public.journal_details VALUES (1241, 841, 'attr', 'category_id', NULL, '4');
INSERT INTO public.journal_details VALUES (1242, 841, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (1243, 842, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (1244, 843, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (1245, 844, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (1246, 845, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (1247, 846, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (1248, 847, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (1249, 848, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (1250, 849, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (1251, 850, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1252, 851, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1253, 852, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1254, 853, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1255, 854, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1256, 855, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1257, 856, 'attr', 'due_date', '2020-03-20', '2020-03-23');
INSERT INTO public.journal_details VALUES (1258, 856, 'attr', 'start_date', '2020-03-20', '2020-03-23');
INSERT INTO public.journal_details VALUES (1259, 857, 'attr', 'due_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1260, 857, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1261, 858, 'attr', 'due_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1262, 858, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1263, 859, 'attr', 'due_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1264, 859, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1265, 860, 'attr', 'due_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1266, 860, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1267, 861, 'attr', 'due_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1268, 861, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1271, 863, 'attr', 'due_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1272, 863, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1273, 864, 'attr', 'due_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1274, 864, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1275, 865, 'attr', 'due_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1276, 865, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1277, 866, 'attr', 'due_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1278, 866, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1279, 867, 'attr', 'due_date', '2020-03-27', '2020-03-23');
INSERT INTO public.journal_details VALUES (1280, 867, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1281, 868, 'attr', 'due_date', '2020-03-27', '2020-03-23');
INSERT INTO public.journal_details VALUES (1282, 868, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1283, 869, 'attr', 'due_date', '2020-03-27', '2020-03-23');
INSERT INTO public.journal_details VALUES (1284, 869, 'attr', 'start_date', '2020-03-18', '2020-03-23');
INSERT INTO public.journal_details VALUES (1285, 870, 'attr', 'due_date', '2020-03-23', '2020-03-28');
INSERT INTO public.journal_details VALUES (1286, 870, 'attr', 'start_date', '2020-03-23', '2020-03-28');
INSERT INTO public.journal_details VALUES (1289, 872, 'attr', 'due_date', '2020-03-23', '2020-03-27');
INSERT INTO public.journal_details VALUES (1290, 872, 'attr', 'start_date', '2020-03-23', '2020-03-27');
INSERT INTO public.journal_details VALUES (1291, 873, 'attr', 'due_date', '2020-03-23', '2020-03-27');
INSERT INTO public.journal_details VALUES (1292, 873, 'attr', 'start_date', '2020-03-23', '2020-03-27');
INSERT INTO public.journal_details VALUES (1293, 874, 'attr', 'due_date', '2020-03-23', '2020-03-26');
INSERT INTO public.journal_details VALUES (1294, 874, 'attr', 'start_date', '2020-03-23', '2020-03-26');
INSERT INTO public.journal_details VALUES (1295, 875, 'attr', 'due_date', '2020-03-23', '2020-03-26');
INSERT INTO public.journal_details VALUES (1296, 875, 'attr', 'start_date', '2020-03-23', '2020-03-26');
INSERT INTO public.journal_details VALUES (1297, 876, 'attr', 'due_date', '2020-03-23', '2020-03-25');
INSERT INTO public.journal_details VALUES (1298, 876, 'attr', 'start_date', '2020-03-23', '2020-03-25');
INSERT INTO public.journal_details VALUES (1299, 877, 'attr', 'due_date', '2020-03-23', '2020-03-25');
INSERT INTO public.journal_details VALUES (1300, 877, 'attr', 'start_date', '2020-03-23', '2020-03-25');
INSERT INTO public.journal_details VALUES (1301, 878, 'attr', 'due_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1302, 878, 'attr', 'start_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1303, 879, 'attr', 'due_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1304, 879, 'attr', 'start_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1305, 880, 'attr', 'due_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1306, 880, 'attr', 'start_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1307, 881, 'attr', 'due_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1308, 881, 'attr', 'start_date', '2020-03-23', '2020-03-24');
INSERT INTO public.journal_details VALUES (1309, 882, 'attr', 'due_date', '2020-03-23', '2020-03-25');
INSERT INTO public.journal_details VALUES (1310, 882, 'attr', 'start_date', '2020-03-23', '2020-03-25');
INSERT INTO public.journal_details VALUES (1311, 883, 'attr', 'due_date', '2020-03-23', '2020-03-25');
INSERT INTO public.journal_details VALUES (1312, 883, 'attr', 'start_date', '2020-03-23', '2020-03-25');
INSERT INTO public.journal_details VALUES (1313, 884, 'attr', 'start_date', '2020-03-21', '2020-03-28');
INSERT INTO public.journal_details VALUES (1314, 885, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1315, 886, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1316, 887, 'attr', 'due_date', '2020-03-23', '2020-04-01');
INSERT INTO public.journal_details VALUES (1317, 887, 'attr', 'start_date', '2020-03-23', '2020-04-01');
INSERT INTO public.journal_details VALUES (1318, 888, 'attr', 'due_date', '2020-03-23', '2020-04-01');
INSERT INTO public.journal_details VALUES (1319, 888, 'attr', 'start_date', '2020-03-23', '2020-04-01');
INSERT INTO public.journal_details VALUES (1320, 889, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1321, 890, 'attr', 'due_date', '2020-03-23', '2020-03-21');
INSERT INTO public.journal_details VALUES (1322, 890, 'attr', 'start_date', '2020-03-23', '2020-03-21');
INSERT INTO public.journal_details VALUES (1323, 891, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1324, 892, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1325, 893, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1326, 894, 'attr', 'due_date', '2020-03-30', '2020-03-21');
INSERT INTO public.journal_details VALUES (1327, 894, 'attr', 'start_date', '2020-03-30', '2020-03-21');
INSERT INTO public.journal_details VALUES (1328, 894, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1329, 895, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1330, 896, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (1331, 897, 'attr', 'due_date', '2020-03-21', '2020-03-24');
INSERT INTO public.journal_details VALUES (1332, 897, 'attr', 'start_date', '2020-03-21', '2020-03-24');
INSERT INTO public.journal_details VALUES (1333, 898, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1334, 899, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1335, 900, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1336, 901, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1337, 902, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1338, 903, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1339, 904, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1340, 905, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1341, 906, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1342, 907, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1343, 908, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1344, 909, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1347, 912, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1348, 913, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1349, 914, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1350, 915, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1351, 916, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1352, 917, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1353, 918, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1354, 919, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1355, 920, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1356, 921, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1357, 922, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1358, 923, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1359, 924, 'attr', 'due_date', '2020-03-24', '2020-03-23');
INSERT INTO public.journal_details VALUES (1360, 924, 'attr', 'start_date', '2020-03-24', '2020-03-23');
INSERT INTO public.journal_details VALUES (1361, 925, 'attr', 'due_date', '2020-03-25', '2020-03-23');
INSERT INTO public.journal_details VALUES (1362, 925, 'attr', 'start_date', '2020-03-25', '2020-03-23');
INSERT INTO public.journal_details VALUES (1363, 926, 'attr', 'due_date', '2020-03-27', '2020-03-23');
INSERT INTO public.journal_details VALUES (1364, 926, 'attr', 'start_date', '2020-03-26', '2020-03-23');
INSERT INTO public.journal_details VALUES (1371, 933, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1372, 934, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1373, 935, 'attr', 'done_ratio', '0', '70');
INSERT INTO public.journal_details VALUES (1374, 936, 'attr', 'start_date', '2020-03-01', '2020-03-21');
INSERT INTO public.journal_details VALUES (1375, 937, 'attr', 'start_date', '2020-03-21', '2020-03-23');
INSERT INTO public.journal_details VALUES (1376, 938, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (1377, 939, 'attr', 'done_ratio', '0', '70');
INSERT INTO public.journal_details VALUES (1378, 940, 'attr', 'subject', 'Dev web', 'Dev mobile');
INSERT INTO public.journal_details VALUES (1379, 940, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1380, 941, 'attr', 'done_ratio', '0', '40');
INSERT INTO public.journal_details VALUES (1381, 942, 'attr', 'start_date', '2020-03-01', '2020-01-01');
INSERT INTO public.journal_details VALUES (1510, 1017, 'attr', 'category_id', NULL, '11');
INSERT INTO public.journal_details VALUES (1382, 943, 'attr', 'start_date', '2020-03-01', '2020-01-01');
INSERT INTO public.journal_details VALUES (1383, 944, 'attr', 'start_date', '2020-03-01', '2020-01-01');
INSERT INTO public.journal_details VALUES (1384, 945, 'attr', 'start_date', '2020-03-01', '2020-01-01');
INSERT INTO public.journal_details VALUES (1385, 946, 'attr', 'start_date', '2020-03-01', '2020-01-01');
INSERT INTO public.journal_details VALUES (1386, 947, 'attr', 'start_date', '2020-01-01', '2020-02-22');
INSERT INTO public.journal_details VALUES (1387, 948, 'attr', 'due_date', '2020-03-23', '2020-03-26');
INSERT INTO public.journal_details VALUES (1388, 948, 'attr', 'start_date', '2020-03-23', '2020-03-26');
INSERT INTO public.journal_details VALUES (1389, 949, 'attr', 'due_date', '2020-03-23', '2020-03-27');
INSERT INTO public.journal_details VALUES (1390, 949, 'attr', 'start_date', '2020-03-23', '2020-03-27');
INSERT INTO public.journal_details VALUES (1391, 950, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1392, 951, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1393, 952, 'attr', 'due_date', '2020-03-24', '2020-03-28');
INSERT INTO public.journal_details VALUES (1394, 952, 'attr', 'start_date', '2020-03-24', '2020-03-28');
INSERT INTO public.journal_details VALUES (1395, 953, 'attr', 'due_date', '2020-03-24', '2020-03-27');
INSERT INTO public.journal_details VALUES (1396, 953, 'attr', 'start_date', '2020-03-23', '2020-03-27');
INSERT INTO public.journal_details VALUES (1397, 954, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1398, 955, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1399, 956, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1400, 957, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1401, 958, 'attr', 'due_date', '2020-03-23', '2020-03-27');
INSERT INTO public.journal_details VALUES (1402, 958, 'attr', 'start_date', '2020-03-23', '2020-03-27');
INSERT INTO public.journal_details VALUES (1403, 959, 'attr', 'due_date', '2020-03-25', '2020-03-27');
INSERT INTO public.journal_details VALUES (1404, 959, 'attr', 'start_date', '2020-03-25', '2020-03-27');
INSERT INTO public.journal_details VALUES (1405, 960, 'attr', 'due_date', '2020-03-25', '2020-03-27');
INSERT INTO public.journal_details VALUES (1406, 960, 'attr', 'start_date', '2020-03-25', '2020-03-27');
INSERT INTO public.journal_details VALUES (1409, 962, 'attr', 'due_date', '2020-03-21', '2020-03-27');
INSERT INTO public.journal_details VALUES (1410, 962, 'attr', 'start_date', '2020-03-21', '2020-03-27');
INSERT INTO public.journal_details VALUES (1411, 963, 'attr', 'start_date', '2020-02-22', '2020-03-01');
INSERT INTO public.journal_details VALUES (1412, 964, 'attr', 'start_date', '2020-01-01', '2020-03-01');
INSERT INTO public.journal_details VALUES (1413, 965, 'attr', 'start_date', '2020-01-01', '2020-03-01');
INSERT INTO public.journal_details VALUES (1414, 966, 'attr', 'start_date', '2020-01-01', '2020-03-01');
INSERT INTO public.journal_details VALUES (1415, 967, 'attr', 'start_date', '2020-01-01', '2020-03-01');
INSERT INTO public.journal_details VALUES (1416, 968, 'attr', 'start_date', '2020-03-01', '2020-01-01');
INSERT INTO public.journal_details VALUES (1417, 969, 'attr', 'start_date', '2020-03-01', '2020-01-01');
INSERT INTO public.journal_details VALUES (1418, 970, 'attr', 'start_date', '2020-03-01', '2020-01-01');
INSERT INTO public.journal_details VALUES (1419, 971, 'attr', 'start_date', '2020-03-01', '2020-01-01');
INSERT INTO public.journal_details VALUES (1420, 972, 'attr', 'due_date', '2020-03-28', '2020-03-25');
INSERT INTO public.journal_details VALUES (1421, 972, 'attr', 'start_date', '2020-03-28', '2020-03-25');
INSERT INTO public.journal_details VALUES (1422, 973, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1423, 974, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1424, 975, 'attr', 'due_date', '2020-03-24', '2020-03-26');
INSERT INTO public.journal_details VALUES (1425, 975, 'attr', 'start_date', '2020-03-24', '2020-03-26');
INSERT INTO public.journal_details VALUES (1428, 977, 'attr', 'due_date', '2020-03-26', '2020-03-25');
INSERT INTO public.journal_details VALUES (1429, 977, 'attr', 'start_date', '2020-03-26', '2020-03-25');
INSERT INTO public.journal_details VALUES (1430, 978, 'attr', 'due_date', '2020-03-27', '2020-03-25');
INSERT INTO public.journal_details VALUES (1431, 978, 'attr', 'start_date', '2020-03-27', '2020-03-25');
INSERT INTO public.journal_details VALUES (1432, 978, 'attr', 'parent_id', '172', '330');
INSERT INTO public.journal_details VALUES (1439, 981, 'attr', 'due_date', '2020-03-28', '2020-03-25');
INSERT INTO public.journal_details VALUES (1440, 981, 'attr', 'start_date', '2020-03-28', '2020-03-25');
INSERT INTO public.journal_details VALUES (1441, 981, 'attr', 'parent_id', '256', '330');
INSERT INTO public.journal_details VALUES (1442, 982, 'attr', 'due_date', '2020-03-30', '2020-03-25');
INSERT INTO public.journal_details VALUES (1443, 982, 'attr', 'start_date', '2020-03-30', '2020-03-25');
INSERT INTO public.journal_details VALUES (1444, 982, 'attr', 'parent_id', '256', '330');
INSERT INTO public.journal_details VALUES (1445, 983, 'attr', 'due_date', '2020-03-28', '2020-03-25');
INSERT INTO public.journal_details VALUES (1446, 983, 'attr', 'start_date', '2020-03-28', '2020-03-25');
INSERT INTO public.journal_details VALUES (1447, 983, 'attr', 'parent_id', '190', '330');
INSERT INTO public.journal_details VALUES (1448, 984, 'attr', 'due_date', '2020-03-26', '2020-03-25');
INSERT INTO public.journal_details VALUES (1449, 984, 'attr', 'start_date', '2020-03-26', '2020-03-25');
INSERT INTO public.journal_details VALUES (1450, 984, 'attr', 'parent_id', '190', '330');
INSERT INTO public.journal_details VALUES (1451, 985, 'attr', 'due_date', '2020-03-27', '2020-03-25');
INSERT INTO public.journal_details VALUES (1452, 985, 'attr', 'start_date', '2020-03-27', '2020-03-25');
INSERT INTO public.journal_details VALUES (1453, 985, 'attr', 'parent_id', '190', '330');
INSERT INTO public.journal_details VALUES (1454, 986, 'attr', 'due_date', '2020-03-26', '2020-03-25');
INSERT INTO public.journal_details VALUES (1455, 986, 'attr', 'start_date', '2020-03-26', '2020-03-25');
INSERT INTO public.journal_details VALUES (1456, 986, 'attr', 'parent_id', '197', '330');
INSERT INTO public.journal_details VALUES (1457, 987, 'attr', 'due_date', '2020-03-26', '2020-03-25');
INSERT INTO public.journal_details VALUES (1458, 987, 'attr', 'parent_id', '197', '330');
INSERT INTO public.journal_details VALUES (1465, 990, 'attr', 'parent_id', '227', '330');
INSERT INTO public.journal_details VALUES (1466, 991, 'attr', 'due_date', '2020-03-30', '2020-03-25');
INSERT INTO public.journal_details VALUES (1467, 991, 'attr', 'start_date', '2020-03-30', '2020-03-25');
INSERT INTO public.journal_details VALUES (1468, 991, 'attr', 'parent_id', '179', '330');
INSERT INTO public.journal_details VALUES (1469, 992, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1470, 993, 'attr', 'parent_id', '330', '179');
INSERT INTO public.journal_details VALUES (1472, 995, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1473, 996, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1474, 997, 'attr', 'parent_id', '330', '227');
INSERT INTO public.journal_details VALUES (1475, 998, 'attr', 'due_date', '2020-03-25', '2020-03-26');
INSERT INTO public.journal_details VALUES (1476, 998, 'attr', 'start_date', '2020-03-25', '2020-03-26');
INSERT INTO public.journal_details VALUES (1481, 1001, 'attr', 'due_date', '2020-03-25', '2020-04-02');
INSERT INTO public.journal_details VALUES (1482, 1001, 'attr', 'start_date', '2020-03-25', '2020-04-02');
INSERT INTO public.journal_details VALUES (1483, 1002, 'attr', 'due_date', '2020-03-25', '2020-03-30');
INSERT INTO public.journal_details VALUES (1484, 1002, 'attr', 'start_date', '2020-03-25', '2020-03-30');
INSERT INTO public.journal_details VALUES (1485, 1003, 'attr', 'due_date', '2020-03-25', '2020-03-26');
INSERT INTO public.journal_details VALUES (1486, 1003, 'attr', 'start_date', '2020-03-25', '2020-03-26');
INSERT INTO public.journal_details VALUES (1487, 1004, 'attr', 'due_date', '2020-03-25', '2020-03-27');
INSERT INTO public.journal_details VALUES (1488, 1004, 'attr', 'start_date', '2020-03-25', '2020-03-27');
INSERT INTO public.journal_details VALUES (1489, 1005, 'attr', 'due_date', '2020-03-25', '2020-03-27');
INSERT INTO public.journal_details VALUES (1490, 1005, 'attr', 'start_date', '2020-03-25', '2020-03-27');
INSERT INTO public.journal_details VALUES (1491, 1006, 'attr', 'due_date', '2020-03-25', '2020-03-27');
INSERT INTO public.journal_details VALUES (1492, 1006, 'attr', 'start_date', '2020-03-25', '2020-03-27');
INSERT INTO public.journal_details VALUES (1493, 1007, 'attr', 'due_date', '2020-03-30', '2020-03-28');
INSERT INTO public.journal_details VALUES (1494, 1007, 'attr', 'start_date', '2020-03-30', '2020-03-28');
INSERT INTO public.journal_details VALUES (1497, 1009, 'attr', 'due_date', '2020-03-27', '2020-03-31');
INSERT INTO public.journal_details VALUES (1498, 1009, 'attr', 'start_date', '2020-03-27', '2020-03-31');
INSERT INTO public.journal_details VALUES (1499, 1010, 'attr', 'due_date', '2020-03-28', '2020-03-30');
INSERT INTO public.journal_details VALUES (1500, 1010, 'attr', 'start_date', '2020-03-28', '2020-03-30');
INSERT INTO public.journal_details VALUES (1501, 1011, 'attr', 'due_date', '2020-03-27', '2020-03-28');
INSERT INTO public.journal_details VALUES (1502, 1011, 'attr', 'start_date', '2020-03-27', '2020-03-28');
INSERT INTO public.journal_details VALUES (1505, 1013, 'attr', 'due_date', '2020-03-25', '2020-04-04');
INSERT INTO public.journal_details VALUES (1506, 1013, 'attr', 'start_date', '2020-03-25', '2020-04-04');
INSERT INTO public.journal_details VALUES (1507, 1014, 'attr', 'category_id', NULL, '11');
INSERT INTO public.journal_details VALUES (1508, 1015, 'attr', 'category_id', NULL, '11');
INSERT INTO public.journal_details VALUES (1511, 1018, 'attr', 'category_id', NULL, '11');
INSERT INTO public.journal_details VALUES (1512, 1019, 'attr', 'category_id', NULL, '11');
INSERT INTO public.journal_details VALUES (1513, 1020, 'attr', 'category_id', NULL, '11');
INSERT INTO public.journal_details VALUES (1514, 1021, 'attr', 'category_id', NULL, '11');
INSERT INTO public.journal_details VALUES (1515, 1022, 'attr', 'category_id', NULL, '11');
INSERT INTO public.journal_details VALUES (1516, 1023, 'attr', 'category_id', NULL, '11');
INSERT INTO public.journal_details VALUES (1518, 1025, 'attr', 'category_id', NULL, '11');
INSERT INTO public.journal_details VALUES (1519, 1026, 'attr', 'category_id', NULL, '11');
INSERT INTO public.journal_details VALUES (1520, 1027, 'attr', 'category_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1521, 1028, 'attr', 'category_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1522, 1029, 'attr', 'category_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1528, 1035, 'attr', 'category_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1529, 1036, 'attr', 'category_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1530, 1037, 'attr', 'category_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1531, 1038, 'attr', 'category_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1532, 1039, 'attr', 'category_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1534, 1041, 'attr', 'category_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1535, 1042, 'attr', 'category_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1536, 1043, 'attr', 'category_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1537, 1044, 'attr', 'category_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1538, 1045, 'attr', 'category_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1539, 1046, 'attr', 'category_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1540, 1047, 'attr', 'category_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1541, 1048, 'attr', 'category_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1542, 1049, 'attr', 'category_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1543, 1050, 'attr', 'category_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1545, 1052, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1546, 1053, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1547, 1054, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1548, 1055, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1549, 1056, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1550, 1057, 'attr', 'category_id', '4', '9');
INSERT INTO public.journal_details VALUES (1551, 1058, 'attr', 'category_id', '4', '9');
INSERT INTO public.journal_details VALUES (1552, 1059, 'attr', 'category_id', '4', '9');
INSERT INTO public.journal_details VALUES (1553, 1060, 'attr', 'category_id', '4', '9');
INSERT INTO public.journal_details VALUES (1554, 1061, 'attr', 'category_id', '4', '9');
INSERT INTO public.journal_details VALUES (1555, 1062, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1556, 1063, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1557, 1064, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1558, 1065, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1559, 1066, 'attr', 'subject', 'Quay video thao tác kê khai giá', 'Làm video hướng dẫn kê khai giá');
INSERT INTO public.journal_details VALUES (1560, 1067, 'attr', 'subject', 'Làm video hướng dẫn kê khai giá', 'Làm video hướng dẫn import kê khai giá');
INSERT INTO public.journal_details VALUES (1561, 1068, 'attr', 'category_id', '4', '12');
INSERT INTO public.journal_details VALUES (1562, 1069, 'attr', 'category_id', '4', '12');
INSERT INTO public.journal_details VALUES (1563, 1070, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1564, 1071, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1565, 1072, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1566, 1073, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1567, 1074, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1568, 1075, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1569, 1076, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1570, 1077, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1571, 1078, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1572, 1079, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1573, 1080, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1574, 1081, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1575, 1082, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1576, 1083, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1577, 1084, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1578, 1085, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1579, 1086, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1580, 1087, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1581, 1088, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1582, 1089, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1583, 1090, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1584, 1091, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1585, 1092, 'attr', 'due_date', '2020-03-23', '2020-03-28');
INSERT INTO public.journal_details VALUES (1586, 1093, 'attr', 'due_date', '2020-03-23', '2020-03-28');
INSERT INTO public.journal_details VALUES (1587, 1094, 'attr', 'due_date', '2020-03-24', '2020-03-30');
INSERT INTO public.journal_details VALUES (1588, 1094, 'attr', 'start_date', '2020-03-24', '2020-03-30');
INSERT INTO public.journal_details VALUES (1589, 1095, 'attr', 'due_date', '2020-03-25', '2020-03-30');
INSERT INTO public.journal_details VALUES (1590, 1095, 'attr', 'start_date', '2020-03-25', '2020-03-30');
INSERT INTO public.journal_details VALUES (1591, 1096, 'attr', 'due_date', '2020-03-24', '2020-03-30');
INSERT INTO public.journal_details VALUES (1592, 1096, 'attr', 'start_date', '2020-03-24', '2020-03-30');
INSERT INTO public.journal_details VALUES (1593, 1097, 'attr', 'due_date', '2020-03-25', '2020-03-30');
INSERT INTO public.journal_details VALUES (1594, 1097, 'attr', 'start_date', '2020-03-25', '2020-03-30');
INSERT INTO public.journal_details VALUES (1595, 1098, 'attr', 'due_date', '2020-03-26', '2020-03-30');
INSERT INTO public.journal_details VALUES (1596, 1098, 'attr', 'start_date', '2020-03-26', '2020-03-30');
INSERT INTO public.journal_details VALUES (1597, 1099, 'attr', 'due_date', '2020-03-26', '2020-03-30');
INSERT INTO public.journal_details VALUES (1598, 1099, 'attr', 'start_date', '2020-03-26', '2020-03-30');
INSERT INTO public.journal_details VALUES (1599, 1100, 'attr', 'due_date', '2020-03-27', '2020-03-30');
INSERT INTO public.journal_details VALUES (1600, 1100, 'attr', 'start_date', '2020-03-27', '2020-03-30');
INSERT INTO public.journal_details VALUES (1603, 1102, 'attr', 'due_date', '2020-03-28', '2020-03-30');
INSERT INTO public.journal_details VALUES (1604, 1102, 'attr', 'start_date', '2020-03-28', '2020-03-30');
INSERT INTO public.journal_details VALUES (1605, 1103, 'attr', 'due_date', '2020-03-28', '2020-03-30');
INSERT INTO public.journal_details VALUES (1606, 1103, 'attr', 'start_date', '2020-03-28', '2020-03-30');
INSERT INTO public.journal_details VALUES (1607, 1104, 'attr', 'due_date', '2020-03-30', '2020-03-26');
INSERT INTO public.journal_details VALUES (1608, 1104, 'attr', 'start_date', '2020-03-30', '2020-03-26');
INSERT INTO public.journal_details VALUES (1609, 1105, 'attr', 'due_date', '2020-03-30', '2020-03-28');
INSERT INTO public.journal_details VALUES (1610, 1105, 'attr', 'start_date', '2020-03-30', '2020-03-27');
INSERT INTO public.journal_details VALUES (1613, 1107, 'attr', 'subject', 'Danh sách bài viết', 'Danh sách bài viết (Xóa bài viết)');
INSERT INTO public.journal_details VALUES (1614, 1107, 'attr', 'category_id', NULL, '11');
INSERT INTO public.journal_details VALUES (1615, 1107, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (1616, 1108, 'attr', 'due_date', '2020-03-30', '2020-04-01');
INSERT INTO public.journal_details VALUES (1617, 1108, 'attr', 'start_date', '2020-03-30', '2020-03-31');
INSERT INTO public.journal_details VALUES (1618, 1109, 'attr', 'due_date', '2020-03-30', '2020-04-01');
INSERT INTO public.journal_details VALUES (1619, 1109, 'attr', 'start_date', '2020-03-30', '2020-03-31');
INSERT INTO public.journal_details VALUES (1620, 1110, 'attr', 'due_date', '2020-03-30', '2020-03-28');
INSERT INTO public.journal_details VALUES (1621, 1110, 'attr', 'start_date', '2020-03-30', '2020-03-28');
INSERT INTO public.journal_details VALUES (1622, 1111, 'attr', 'due_date', '2020-03-30', '2020-04-03');
INSERT INTO public.journal_details VALUES (1623, 1111, 'attr', 'start_date', '2020-03-30', '2020-04-02');
INSERT INTO public.journal_details VALUES (1624, 1112, 'attr', 'due_date', '2020-03-30', '2020-04-03');
INSERT INTO public.journal_details VALUES (1625, 1112, 'attr', 'start_date', '2020-03-30', '2020-04-02');
INSERT INTO public.journal_details VALUES (1626, 1113, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1627, 1114, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1628, 1115, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1629, 1116, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1630, 1117, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1631, 1118, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1632, 1119, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1633, 1120, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1634, 1121, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1635, 1122, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1636, 1123, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1637, 1124, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1638, 1125, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1639, 1126, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1640, 1127, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1641, 1128, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1642, 1129, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1643, 1130, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1644, 1131, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1645, 1132, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1646, 1133, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1647, 1134, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1648, 1135, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1649, 1136, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1650, 1137, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1651, 1138, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1652, 1139, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1653, 1140, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1656, 1142, 'attr', 'due_date', '2020-03-27', '2020-03-28');
INSERT INTO public.journal_details VALUES (1657, 1142, 'attr', 'start_date', '2020-03-27', '2020-03-28');
INSERT INTO public.journal_details VALUES (1658, 1143, 'attr', 'due_date', '2020-03-27', '2020-03-28');
INSERT INTO public.journal_details VALUES (1659, 1143, 'attr', 'start_date', '2020-03-27', '2020-03-28');
INSERT INTO public.journal_details VALUES (1660, 1144, 'attr', 'due_date', '2020-03-26', '2020-03-28');
INSERT INTO public.journal_details VALUES (1661, 1145, 'attr', 'due_date', '2020-03-26', '2020-03-28');
INSERT INTO public.journal_details VALUES (1663, 1147, 'attr', 'due_date', '2020-03-27', '2020-03-30');
INSERT INTO public.journal_details VALUES (1664, 1148, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1665, 1149, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1666, 1150, 'attr', 'status_id', '5', '3');
INSERT INTO public.journal_details VALUES (1667, 1151, 'attr', 'status_id', '5', '3');
INSERT INTO public.journal_details VALUES (1668, 1152, 'attr', 'status_id', '5', '3');
INSERT INTO public.journal_details VALUES (1669, 1153, 'attr', 'status_id', '5', '3');
INSERT INTO public.journal_details VALUES (1670, 1154, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1671, 1155, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1672, 1156, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1673, 1157, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1674, 1158, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1675, 1159, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1676, 1160, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1677, 1161, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1678, 1162, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1679, 1163, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1680, 1164, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1681, 1165, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1682, 1166, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1683, 1167, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1684, 1168, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1685, 1169, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1686, 1170, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1687, 1171, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1688, 1172, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1689, 1173, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1690, 1174, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1691, 1175, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1692, 1176, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1695, 1179, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1696, 1180, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1697, 1181, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1698, 1182, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1699, 1183, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1700, 1184, 'attr', 'parent_id', '226', '240');
INSERT INTO public.journal_details VALUES (1701, 1185, 'attr', 'due_date', '2020-03-30', '2020-03-26');
INSERT INTO public.journal_details VALUES (1702, 1185, 'attr', 'start_date', '2020-03-30', '2020-03-26');
INSERT INTO public.journal_details VALUES (1703, 1186, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1704, 1187, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1705, 1188, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1706, 1189, 'attr', 'assigned_to_id', '4', '6');
INSERT INTO public.journal_details VALUES (1707, 1190, 'attr', 'parent_id', '226', '242');
INSERT INTO public.journal_details VALUES (1708, 1191, 'attr', 'subject', 'Đăng nhập trả về', 'Đăng nhập trả về menu');
INSERT INTO public.journal_details VALUES (1709, 1192, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1710, 1193, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1711, 1194, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1712, 1195, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1713, 1196, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1714, 1197, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1715, 1198, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1716, 1199, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (1717, 1200, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (1718, 1201, 'attr', 'due_date', '2020-03-27', '2020-03-30');
INSERT INTO public.journal_details VALUES (1719, 1201, 'attr', 'start_date', '2020-03-27', '2020-03-30');
INSERT INTO public.journal_details VALUES (1720, 1202, 'attr', 'due_date', '2020-03-30', '2020-04-01');
INSERT INTO public.journal_details VALUES (1721, 1203, 'attr', 'due_date', '2020-03-31', '2020-04-01');
INSERT INTO public.journal_details VALUES (1722, 1203, 'attr', 'start_date', '2020-03-31', '2020-04-01');
INSERT INTO public.journal_details VALUES (1723, 1204, 'attr', 'due_date', '2020-04-01', '2020-03-31');
INSERT INTO public.journal_details VALUES (1724, 1205, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1725, 1206, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1726, 1207, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1727, 1208, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1728, 1209, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1729, 1210, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1730, 1211, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1731, 1212, 'attr', 'assigned_to_id', '6', '10');
INSERT INTO public.journal_details VALUES (1732, 1213, 'attr', 'assigned_to_id', '6', '10');
INSERT INTO public.journal_details VALUES (1733, 1214, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1734, 1215, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1735, 1216, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1736, 1217, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1737, 1218, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1738, 1219, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1739, 1220, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1740, 1221, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1741, 1222, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1742, 1223, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1743, 1224, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1744, 1225, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1745, 1226, 'attr', 'assigned_to_id', '6', '10');
INSERT INTO public.journal_details VALUES (1746, 1227, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1747, 1228, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1748, 1229, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1749, 1230, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (1750, 1231, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1751, 1232, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1752, 1233, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1753, 1234, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1754, 1235, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (1755, 1236, 'attr', 'done_ratio', '50', '80');
INSERT INTO public.journal_details VALUES (1756, 1237, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (1757, 1238, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1758, 1239, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1759, 1240, 'attr', 'due_date', '2020-03-30', '2020-04-03');
INSERT INTO public.journal_details VALUES (1760, 1240, 'attr', 'assigned_to_id', '6', '10');
INSERT INTO public.journal_details VALUES (1761, 1240, 'attr', 'start_date', '2020-03-30', '2020-03-03');
INSERT INTO public.journal_details VALUES (1762, 1241, 'attr', 'assigned_to_id', '4', '10');
INSERT INTO public.journal_details VALUES (1763, 1242, 'attr', 'due_date', '2020-03-31', '2020-04-03');
INSERT INTO public.journal_details VALUES (1764, 1242, 'attr', 'assigned_to_id', '4', '10');
INSERT INTO public.journal_details VALUES (1765, 1242, 'attr', 'start_date', '2020-03-30', '2020-04-03');
INSERT INTO public.journal_details VALUES (1768, 1244, 'attr', 'due_date', '2020-03-30', '2020-04-04');
INSERT INTO public.journal_details VALUES (1769, 1244, 'attr', 'assigned_to_id', '4', '12');
INSERT INTO public.journal_details VALUES (1770, 1244, 'attr', 'start_date', '2020-03-30', '2020-04-04');
INSERT INTO public.journal_details VALUES (1771, 1245, 'attr', 'due_date', '2020-03-31', '2020-04-06');
INSERT INTO public.journal_details VALUES (1772, 1245, 'attr', 'start_date', '2020-03-31', '2020-04-06');
INSERT INTO public.journal_details VALUES (1775, 1247, 'attr', 'due_date', '2020-04-01', '2020-04-03');
INSERT INTO public.journal_details VALUES (1776, 1247, 'attr', 'start_date', '2020-04-01', '2020-04-03');
INSERT INTO public.journal_details VALUES (1779, 1249, 'attr', 'due_date', '2020-04-02', '2020-04-09');
INSERT INTO public.journal_details VALUES (1780, 1249, 'attr', 'start_date', '2020-04-02', '2020-04-08');
INSERT INTO public.journal_details VALUES (1781, 1250, 'attr', 'due_date', '2020-04-06', '2020-04-11');
INSERT INTO public.journal_details VALUES (1782, 1250, 'attr', 'start_date', '2020-04-06', '2020-04-11');
INSERT INTO public.journal_details VALUES (1783, 1251, 'attr', 'due_date', '2020-04-11', '2020-04-10');
INSERT INTO public.journal_details VALUES (1784, 1251, 'attr', 'start_date', '2020-04-11', '2020-04-10');
INSERT INTO public.journal_details VALUES (1785, 1252, 'attr', 'due_date', '2020-04-03', '2020-04-06');
INSERT INTO public.journal_details VALUES (1786, 1252, 'attr', 'start_date', '2020-04-03', '2020-04-06');
INSERT INTO public.journal_details VALUES (1790, 1256, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1791, 1257, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1792, 1258, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1793, 1259, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1794, 1260, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1795, 1261, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1796, 1262, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1797, 1263, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1798, 1264, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1799, 1265, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1800, 1266, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1801, 1267, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1802, 1268, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1803, 1269, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1804, 1270, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1805, 1271, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1806, 1272, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1807, 1273, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1808, 1274, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1809, 1275, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1810, 1276, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1811, 1277, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1812, 1278, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1814, 1280, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1815, 1281, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1817, 1283, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1818, 1284, 'attr', 'due_date', '2020-04-04', '2020-04-03');
INSERT INTO public.journal_details VALUES (1819, 1284, 'attr', 'start_date', '2020-04-04', '2020-04-03');
INSERT INTO public.journal_details VALUES (1822, 1286, 'attr', 'due_date', '2020-03-27', '2020-04-03');
INSERT INTO public.journal_details VALUES (1823, 1286, 'attr', 'start_date', '2020-03-27', '2020-04-03');
INSERT INTO public.journal_details VALUES (1824, 1287, 'attr', 'due_date', '2020-03-28', '2020-04-03');
INSERT INTO public.journal_details VALUES (1825, 1287, 'attr', 'start_date', '2020-03-28', '2020-04-03');
INSERT INTO public.journal_details VALUES (1826, 1288, 'attr', 'due_date', '2020-04-03', '2020-04-04');
INSERT INTO public.journal_details VALUES (1827, 1288, 'attr', 'start_date', '2020-04-03', '2020-04-04');
INSERT INTO public.journal_details VALUES (1830, 1290, 'attr', 'due_date', '2020-03-25', '2020-04-03');
INSERT INTO public.journal_details VALUES (1831, 1290, 'attr', 'start_date', '2020-03-25', '2020-04-03');
INSERT INTO public.journal_details VALUES (1832, 1291, 'attr', 'due_date', '2020-03-25', '2020-04-03');
INSERT INTO public.journal_details VALUES (1833, 1291, 'attr', 'start_date', '2020-03-25', '2020-04-03');
INSERT INTO public.journal_details VALUES (1834, 1292, 'attr', 'due_date', '2020-03-26', '2020-04-03');
INSERT INTO public.journal_details VALUES (1835, 1292, 'attr', 'start_date', '2020-03-26', '2020-04-03');
INSERT INTO public.journal_details VALUES (1836, 1293, 'attr', 'due_date', '2020-03-26', '2020-04-03');
INSERT INTO public.journal_details VALUES (1837, 1293, 'attr', 'start_date', '2020-03-26', '2020-04-03');
INSERT INTO public.journal_details VALUES (1838, 1294, 'attr', 'due_date', '2020-03-30', '2020-04-03');
INSERT INTO public.journal_details VALUES (1839, 1294, 'attr', 'start_date', '2020-03-30', '2020-04-03');
INSERT INTO public.journal_details VALUES (1840, 1295, 'attr', 'due_date', '2020-03-30', '2020-04-03');
INSERT INTO public.journal_details VALUES (1841, 1295, 'attr', 'start_date', '2020-03-30', '2020-04-03');
INSERT INTO public.journal_details VALUES (1842, 1296, 'attr', 'start_date', '2020-03-03', '2020-04-03');
INSERT INTO public.journal_details VALUES (1843, 1297, 'attr', 'due_date', '2020-04-01', '2020-04-03');
INSERT INTO public.journal_details VALUES (1844, 1297, 'attr', 'start_date', '2020-04-01', '2020-04-03');
INSERT INTO public.journal_details VALUES (1845, 1298, 'attr', 'due_date', '2020-03-30', '2020-04-03');
INSERT INTO public.journal_details VALUES (1846, 1298, 'attr', 'start_date', '2020-03-30', '2020-04-03');
INSERT INTO public.journal_details VALUES (1847, 1299, 'attr', 'due_date', '2020-04-01', '2020-04-03');
INSERT INTO public.journal_details VALUES (1848, 1299, 'attr', 'start_date', '2020-03-31', '2020-04-03');
INSERT INTO public.journal_details VALUES (1849, 1300, 'attr', 'start_date', '2020-04-02', '2020-04-03');
INSERT INTO public.journal_details VALUES (1850, 1301, 'attr', 'due_date', '2020-04-01', '2020-04-03');
INSERT INTO public.journal_details VALUES (1851, 1301, 'attr', 'start_date', '2020-03-31', '2020-04-03');
INSERT INTO public.journal_details VALUES (1852, 1302, 'attr', 'due_date', '2020-03-30', '2020-04-03');
INSERT INTO public.journal_details VALUES (1853, 1302, 'attr', 'start_date', '2020-03-30', '2020-04-03');
INSERT INTO public.journal_details VALUES (1854, 1303, 'attr', 'start_date', '2020-04-02', '2020-04-03');
INSERT INTO public.journal_details VALUES (1855, 1304, 'attr', 'due_date', '2020-03-30', '2020-04-03');
INSERT INTO public.journal_details VALUES (1856, 1304, 'attr', 'start_date', '2020-03-30', '2020-04-03');
INSERT INTO public.journal_details VALUES (1857, 1305, 'attr', 'due_date', '2020-03-30', '2020-04-03');
INSERT INTO public.journal_details VALUES (1858, 1305, 'attr', 'start_date', '2020-03-30', '2020-04-03');
INSERT INTO public.journal_details VALUES (1859, 1306, 'attr', 'due_date', '2020-03-31', '2020-04-03');
INSERT INTO public.journal_details VALUES (1860, 1306, 'attr', 'start_date', '2020-03-31', '2020-04-03');
INSERT INTO public.journal_details VALUES (1861, 1307, 'attr', 'due_date', '2020-04-01', '2020-04-03');
INSERT INTO public.journal_details VALUES (1862, 1307, 'attr', 'start_date', '2020-04-01', '2020-04-03');
INSERT INTO public.journal_details VALUES (1863, 1308, 'attr', 'due_date', '2020-04-03', '2020-04-07');
INSERT INTO public.journal_details VALUES (1864, 1308, 'attr', 'start_date', '2020-04-03', '2020-04-06');
INSERT INTO public.journal_details VALUES (1865, 1309, 'attr', 'due_date', '2020-04-03', '2020-04-07');
INSERT INTO public.journal_details VALUES (1866, 1309, 'attr', 'start_date', '2020-04-03', '2020-04-06');
INSERT INTO public.journal_details VALUES (1867, 1309, 'attr', 'parent_id', '226', '244');
INSERT INTO public.journal_details VALUES (1868, 1310, 'attr', 'start_date', '2020-04-06', '2020-04-07');
INSERT INTO public.journal_details VALUES (1869, 1311, 'attr', 'due_date', '2020-04-03', '2020-04-09');
INSERT INTO public.journal_details VALUES (1870, 1311, 'attr', 'start_date', '2020-04-03', '2020-04-09');
INSERT INTO public.journal_details VALUES (1871, 1311, 'attr', 'parent_id', '226', '239');
INSERT INTO public.journal_details VALUES (1872, 1312, 'attr', 'parent_id', '226', '245');
INSERT INTO public.journal_details VALUES (1873, 1313, 'attr', 'due_date', '2020-04-03', '2020-04-11');
INSERT INTO public.journal_details VALUES (1874, 1313, 'attr', 'start_date', '2020-04-03', '2020-04-11');
INSERT INTO public.journal_details VALUES (1875, 1314, 'attr', 'due_date', '2020-04-03', '2020-04-06');
INSERT INTO public.journal_details VALUES (1876, 1314, 'attr', 'start_date', '2020-04-03', '2020-04-06');
INSERT INTO public.journal_details VALUES (1877, 1315, 'attr', 'due_date', '2020-04-03', '2020-04-06');
INSERT INTO public.journal_details VALUES (1878, 1315, 'attr', 'start_date', '2020-04-03', '2020-04-06');
INSERT INTO public.journal_details VALUES (1879, 1316, 'attr', 'due_date', '2020-04-06', '2020-04-07');
INSERT INTO public.journal_details VALUES (1880, 1316, 'attr', 'start_date', '2020-04-06', '2020-04-07');
INSERT INTO public.journal_details VALUES (1881, 1317, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1882, 1318, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1883, 1319, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1884, 1320, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1885, 1321, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1886, 1322, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1887, 1323, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1888, 1324, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1889, 1325, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1890, 1326, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1891, 1327, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1892, 1328, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1893, 1329, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1894, 1330, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1895, 1331, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1896, 1332, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1897, 1333, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1898, 1334, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1899, 1335, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1900, 1336, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1901, 1337, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1902, 1338, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1903, 1339, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1904, 1340, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1905, 1341, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1906, 1342, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1907, 1343, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1908, 1344, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1909, 1345, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1910, 1346, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1911, 1347, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1912, 1348, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1913, 1349, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1914, 1350, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1915, 1351, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1916, 1352, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1917, 1353, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1918, 1354, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1919, 1355, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1920, 1356, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1921, 1357, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1922, 1358, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1923, 1359, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1924, 1360, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1925, 1361, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1926, 1362, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1927, 1363, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1928, 1364, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1929, 1365, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1930, 1366, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1931, 1367, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1932, 1368, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1933, 1369, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1934, 1370, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1935, 1371, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1936, 1372, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1937, 1373, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1938, 1374, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1939, 1375, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1940, 1376, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1941, 1377, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1942, 1378, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1943, 1379, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1944, 1380, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1945, 1381, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1946, 1382, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1947, 1383, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1948, 1384, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1949, 1385, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1950, 1386, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1951, 1387, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1952, 1388, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1953, 1389, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1954, 1390, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1955, 1391, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1956, 1392, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1957, 1393, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1958, 1394, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1959, 1395, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1960, 1396, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1961, 1397, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1962, 1398, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1963, 1399, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1964, 1400, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1965, 1401, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1966, 1402, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1967, 1403, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1968, 1404, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1969, 1405, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1970, 1406, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1971, 1407, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1972, 1408, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1973, 1409, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (1974, 1410, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (1975, 1411, 'attr', 'due_date', NULL, '2020-04-03');
INSERT INTO public.journal_details VALUES (1976, 1411, 'attr', 'category_id', NULL, '7');
INSERT INTO public.journal_details VALUES (1977, 1412, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1978, 1413, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1979, 1414, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1980, 1415, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1981, 1416, 'attr', 'due_date', '2020-04-06', '2020-04-04');
INSERT INTO public.journal_details VALUES (1982, 1416, 'attr', 'start_date', '2020-04-06', '2020-04-04');
INSERT INTO public.journal_details VALUES (1983, 1417, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (1984, 1418, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1985, 1419, 'attr', 'due_date', '2020-04-03', '2020-04-04');
INSERT INTO public.journal_details VALUES (1986, 1419, 'attr', 'start_date', '2020-04-03', '2020-04-04');
INSERT INTO public.journal_details VALUES (2681, 1971, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (1987, 1420, 'attr', 'due_date', '2020-04-04', '2020-04-06');
INSERT INTO public.journal_details VALUES (1988, 1420, 'attr', 'start_date', '2020-04-04', '2020-04-06');
INSERT INTO public.journal_details VALUES (1989, 1421, 'attr', 'due_date', '2020-04-06', '2020-04-04');
INSERT INTO public.journal_details VALUES (1990, 1421, 'attr', 'start_date', '2020-04-06', '2020-04-04');
INSERT INTO public.journal_details VALUES (1991, 1422, 'attr', 'due_date', '2020-04-04', '2020-04-06');
INSERT INTO public.journal_details VALUES (1992, 1422, 'attr', 'start_date', '2020-04-04', '2020-04-06');
INSERT INTO public.journal_details VALUES (1996, 1424, 'attr', 'subject', 'Tạo mẫu file import', 'Tạo mẫu file excel');
INSERT INTO public.journal_details VALUES (1997, 1424, 'attr', 'category_id', NULL, '4');
INSERT INTO public.journal_details VALUES (1998, 1425, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (1999, 1426, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2000, 1427, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2001, 1428, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2002, 1429, 'attr', 'start_date', '2020-04-07', '2020-04-06');
INSERT INTO public.journal_details VALUES (2003, 1430, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2004, 1431, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2005, 1432, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2006, 1433, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2007, 1434, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2008, 1435, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2009, 1436, 'attr', 'due_date', '2020-04-04', '2020-04-06');
INSERT INTO public.journal_details VALUES (2010, 1436, 'attr', 'start_date', '2020-04-04', '2020-04-06');
INSERT INTO public.journal_details VALUES (2011, 1437, 'attr', 'due_date', '2020-04-06', '2020-04-07');
INSERT INTO public.journal_details VALUES (2012, 1437, 'attr', 'start_date', '2020-04-06', '2020-04-07');
INSERT INTO public.journal_details VALUES (2013, 1438, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (2030, 1448, 'attr', 'subject', 'Dựng source backend', 'Dựng source backend up gitlab + jenskin');
INSERT INTO public.journal_details VALUES (2033, 1451, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (2034, 1452, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2035, 1453, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2036, 1454, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2037, 1455, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (2038, 1456, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (2039, 1457, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2042, 1459, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2043, 1460, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2044, 1461, 'attr', 'due_date', NULL, '2020-04-06');
INSERT INTO public.journal_details VALUES (2045, 1462, 'attr', 'due_date', NULL, '2020-04-06');
INSERT INTO public.journal_details VALUES (2046, 1463, 'attr', 'due_date', NULL, '2020-04-06');
INSERT INTO public.journal_details VALUES (2047, 1464, 'attr', 'due_date', NULL, '2020-04-06');
INSERT INTO public.journal_details VALUES (2048, 1465, 'attr', 'due_date', NULL, '2020-04-06');
INSERT INTO public.journal_details VALUES (2049, 1466, 'attr', 'due_date', '2020-04-06', '2020-04-07');
INSERT INTO public.journal_details VALUES (2050, 1466, 'attr', 'start_date', '2020-04-06', '2020-04-07');
INSERT INTO public.journal_details VALUES (2051, 1467, 'attr', 'subject', 'Phân cấp đơn vị theo tỉnh + 11 huyện thành phố trong mục chọn đơn vị ( chức năng báo cáo thống kê )', 'Phân cấp đơn vị báo cáo thống kê');
INSERT INTO public.journal_details VALUES (2052, 1467, 'attr', 'description', '', 'phân cấp list chọn đơn vị theo cấp tỉnh + 11 huyện thành phố trong mục chọn đơn vị ( chức năng báo cáo thống kê )');
INSERT INTO public.journal_details VALUES (2053, 1468, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (2054, 1469, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2055, 1470, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2056, 1471, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2057, 1472, 'attr', 'due_date', '2020-04-06', '2020-04-07');
INSERT INTO public.journal_details VALUES (2058, 1472, 'attr', 'start_date', '2020-04-06', '2020-04-07');
INSERT INTO public.journal_details VALUES (2059, 1473, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2060, 1474, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (2061, 1475, 'attr', 'subject', 'Dựng source backend up gitlab + jenskin', 'Dựng source backend up gitlab');
INSERT INTO public.journal_details VALUES (2062, 1475, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2063, 1475, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2064, 1476, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2065, 1477, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2066, 1478, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2067, 1479, 'attr', 'due_date', '2020-04-07', '2020-04-11');
INSERT INTO public.journal_details VALUES (2068, 1479, 'attr', 'start_date', '2020-04-07', '2020-04-11');
INSERT INTO public.journal_details VALUES (2071, 1481, 'attr', 'due_date', '2020-04-11', '2020-04-08');
INSERT INTO public.journal_details VALUES (2072, 1481, 'attr', 'start_date', '2020-04-11', '2020-04-08');
INSERT INTO public.journal_details VALUES (2073, 1482, 'attr', 'due_date', '2020-04-09', '2020-04-11');
INSERT INTO public.journal_details VALUES (2074, 1482, 'attr', 'start_date', '2020-04-08', '2020-04-11');
INSERT INTO public.journal_details VALUES (2075, 1483, 'attr', 'due_date', '2020-04-11', '2020-04-09');
INSERT INTO public.journal_details VALUES (2076, 1483, 'attr', 'start_date', '2020-04-11', '2020-04-09');
INSERT INTO public.journal_details VALUES (2077, 1484, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2078, 1485, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2079, 1486, 'attr', 'subject', 'Chức năng đăng nhập', 'Giao điện đăng nhập xuất hiện khi truy cập ứng dụng');
INSERT INTO public.journal_details VALUES (2080, 1487, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2081, 1488, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2082, 1489, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2083, 1490, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2085, 1492, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2086, 1493, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2088, 1495, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2089, 1496, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2090, 1497, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2091, 1498, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2092, 1499, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2093, 1500, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2094, 1501, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (2095, 1502, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2096, 1503, 'attr', 'subject', 'Thiết kê database', 'Thiết kế database');
INSERT INTO public.journal_details VALUES (2097, 1504, 'attr', 'due_date', NULL, '2020-04-11');
INSERT INTO public.journal_details VALUES (2098, 1504, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (2099, 1505, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (2100, 1506, 'attr', 'due_date', NULL, '2020-04-11');
INSERT INTO public.journal_details VALUES (2101, 1506, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (2102, 1507, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (2103, 1508, 'attr', 'due_date', NULL, '2020-04-11');
INSERT INTO public.journal_details VALUES (2104, 1509, 'attr', 'assigned_to_id', '15', '16');
INSERT INTO public.journal_details VALUES (2105, 1510, 'attr', 'due_date', NULL, '2020-04-11');
INSERT INTO public.journal_details VALUES (2106, 1510, 'attr', 'assigned_to_id', NULL, '16');
INSERT INTO public.journal_details VALUES (2107, 1511, 'attr', 'due_date', NULL, '2020-04-11');
INSERT INTO public.journal_details VALUES (2108, 1511, 'attr', 'assigned_to_id', NULL, '16');
INSERT INTO public.journal_details VALUES (2109, 1512, 'attr', 'due_date', NULL, '2020-04-11');
INSERT INTO public.journal_details VALUES (2110, 1512, 'attr', 'assigned_to_id', NULL, '16');
INSERT INTO public.journal_details VALUES (2111, 1513, 'attr', 'due_date', NULL, '2020-04-11');
INSERT INTO public.journal_details VALUES (2112, 1513, 'attr', 'assigned_to_id', NULL, '16');
INSERT INTO public.journal_details VALUES (2113, 1514, 'attr', 'due_date', NULL, '2020-04-11');
INSERT INTO public.journal_details VALUES (2114, 1514, 'attr', 'assigned_to_id', NULL, '16');
INSERT INTO public.journal_details VALUES (2115, 1515, 'attr', 'due_date', NULL, '2020-04-11');
INSERT INTO public.journal_details VALUES (2116, 1515, 'attr', 'assigned_to_id', NULL, '16');
INSERT INTO public.journal_details VALUES (2682, 1972, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2117, 1516, 'attr', 'due_date', NULL, '2020-04-10');
INSERT INTO public.journal_details VALUES (2118, 1516, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (2119, 1517, 'attr', 'due_date', NULL, '2020-04-10');
INSERT INTO public.journal_details VALUES (2120, 1517, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (2121, 1518, 'attr', 'due_date', NULL, '2020-04-10');
INSERT INTO public.journal_details VALUES (2122, 1518, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (2123, 1519, 'attr', 'due_date', NULL, '2020-04-10');
INSERT INTO public.journal_details VALUES (2124, 1519, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (2125, 1520, 'attr', 'due_date', NULL, '2020-04-10');
INSERT INTO public.journal_details VALUES (2126, 1520, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (2127, 1521, 'attr', 'due_date', NULL, '2020-04-10');
INSERT INTO public.journal_details VALUES (2128, 1521, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (2133, 1525, 'attr', 'subject', 'Quản lý danh sách', 'Import dữ liệu');
INSERT INTO public.journal_details VALUES (2134, 1526, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2135, 1527, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2136, 1528, 'attr', 'due_date', '2020-04-11', '2020-04-12');
INSERT INTO public.journal_details VALUES (2137, 1528, 'attr', 'start_date', '2020-04-10', '2020-04-12');
INSERT INTO public.journal_details VALUES (2141, 1530, 'attr', 'due_date', NULL, '2020-04-12');
INSERT INTO public.journal_details VALUES (2142, 1530, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (2143, 1530, 'attr', 'start_date', '2020-04-10', '2020-04-12');
INSERT INTO public.journal_details VALUES (2144, 1531, 'attr', 'due_date', '2020-04-12', '2020-04-11');
INSERT INTO public.journal_details VALUES (2145, 1531, 'attr', 'start_date', '2020-04-12', '2020-04-11');
INSERT INTO public.journal_details VALUES (2146, 1532, 'attr', 'due_date', NULL, '2020-04-12');
INSERT INTO public.journal_details VALUES (2147, 1532, 'attr', 'start_date', '2020-04-10', '2020-04-12');
INSERT INTO public.journal_details VALUES (2148, 1533, 'attr', 'due_date', NULL, '2020-04-12');
INSERT INTO public.journal_details VALUES (2149, 1533, 'attr', 'start_date', '2020-04-10', '2020-04-12');
INSERT INTO public.journal_details VALUES (2150, 1534, 'attr', 'due_date', NULL, '2020-04-13');
INSERT INTO public.journal_details VALUES (2151, 1534, 'attr', 'start_date', '2020-04-10', '2020-04-13');
INSERT INTO public.journal_details VALUES (2152, 1535, 'attr', 'due_date', NULL, '2020-04-13');
INSERT INTO public.journal_details VALUES (2153, 1535, 'attr', 'start_date', '2020-04-10', '2020-04-13');
INSERT INTO public.journal_details VALUES (2154, 1536, 'attr', 'due_date', NULL, '2020-04-14');
INSERT INTO public.journal_details VALUES (2155, 1536, 'attr', 'start_date', '2020-04-10', '2020-04-14');
INSERT INTO public.journal_details VALUES (2156, 1537, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (2157, 1538, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (2158, 1539, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (2159, 1540, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (2160, 1541, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (2161, 1542, 'attr', 'due_date', '2020-04-10', '2020-04-11');
INSERT INTO public.journal_details VALUES (2162, 1542, 'attr', 'start_date', '2020-04-10', '2020-04-11');
INSERT INTO public.journal_details VALUES (2163, 1543, 'attr', 'due_date', '2020-04-10', '2020-04-11');
INSERT INTO public.journal_details VALUES (2164, 1543, 'attr', 'start_date', '2020-04-10', '2020-04-11');
INSERT INTO public.journal_details VALUES (2165, 1544, 'attr', 'due_date', '2020-04-11', '2020-04-10');
INSERT INTO public.journal_details VALUES (2166, 1545, 'attr', 'due_date', '2020-04-11', '2020-04-10');
INSERT INTO public.journal_details VALUES (2167, 1546, 'attr', 'due_date', '2020-04-11', '2020-04-10');
INSERT INTO public.journal_details VALUES (2168, 1547, 'attr', 'start_date', '2020-04-10', '2020-04-11');
INSERT INTO public.journal_details VALUES (2169, 1548, 'attr', 'start_date', '2020-04-10', '2020-04-11');
INSERT INTO public.journal_details VALUES (2170, 1549, 'attr', 'start_date', '2020-04-10', '2020-04-11');
INSERT INTO public.journal_details VALUES (2171, 1550, 'attr', 'start_date', '2020-04-10', '2020-04-11');
INSERT INTO public.journal_details VALUES (2175, 1553, 'attr', 'due_date', '2020-04-10', '2020-04-11');
INSERT INTO public.journal_details VALUES (2176, 1554, 'attr', 'due_date', '2020-04-10', '2020-04-13');
INSERT INTO public.journal_details VALUES (2177, 1554, 'attr', 'start_date', '2020-04-10', '2020-04-12');
INSERT INTO public.journal_details VALUES (2178, 1555, 'attr', 'due_date', '2020-04-10', '2020-04-14');
INSERT INTO public.journal_details VALUES (2179, 1555, 'attr', 'start_date', '2020-04-10', '2020-04-13');
INSERT INTO public.journal_details VALUES (2180, 1556, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (2181, 1557, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2182, 1558, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2183, 1559, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (2184, 1560, 'attr', 'due_date', NULL, '2020-04-11');
INSERT INTO public.journal_details VALUES (2185, 1560, 'attr', 'start_date', '2020-04-10', '2020-04-11');
INSERT INTO public.journal_details VALUES (2186, 1561, 'attr', 'due_date', NULL, '2020-04-12');
INSERT INTO public.journal_details VALUES (2187, 1561, 'attr', 'start_date', '2020-04-10', '2020-04-12');
INSERT INTO public.journal_details VALUES (2188, 1562, 'attr', 'subject', 'Giao diện hồ sơ', 'Danh sách hồ sơ');
INSERT INTO public.journal_details VALUES (2189, 1563, 'attr', 'due_date', NULL, '2020-04-11');
INSERT INTO public.journal_details VALUES (2190, 1563, 'attr', 'start_date', '2020-04-10', '2020-04-11');
INSERT INTO public.journal_details VALUES (2191, 1564, 'attr', 'due_date', '2020-04-12', NULL);
INSERT INTO public.journal_details VALUES (2192, 1564, 'attr', 'assigned_to_id', '5', NULL);
INSERT INTO public.journal_details VALUES (2193, 1564, 'attr', 'start_date', '2020-04-12', NULL);
INSERT INTO public.journal_details VALUES (2194, 1565, 'attr', 'due_date', '2020-04-12', NULL);
INSERT INTO public.journal_details VALUES (2195, 1565, 'attr', 'assigned_to_id', '5', NULL);
INSERT INTO public.journal_details VALUES (2196, 1565, 'attr', 'start_date', '2020-04-12', NULL);
INSERT INTO public.journal_details VALUES (2197, 1566, 'attr', 'due_date', '2020-04-13', NULL);
INSERT INTO public.journal_details VALUES (2198, 1566, 'attr', 'assigned_to_id', '5', NULL);
INSERT INTO public.journal_details VALUES (2199, 1566, 'attr', 'start_date', '2020-04-13', NULL);
INSERT INTO public.journal_details VALUES (2200, 1567, 'attr', 'due_date', '2020-04-13', NULL);
INSERT INTO public.journal_details VALUES (2201, 1567, 'attr', 'assigned_to_id', '5', NULL);
INSERT INTO public.journal_details VALUES (2202, 1567, 'attr', 'start_date', '2020-04-13', NULL);
INSERT INTO public.journal_details VALUES (2203, 1568, 'attr', 'due_date', '2020-04-14', NULL);
INSERT INTO public.journal_details VALUES (2204, 1568, 'attr', 'assigned_to_id', '5', NULL);
INSERT INTO public.journal_details VALUES (2205, 1568, 'attr', 'start_date', '2020-04-14', NULL);
INSERT INTO public.journal_details VALUES (2217, 1576, 'attr', 'due_date', NULL, '2020-04-11');
INSERT INTO public.journal_details VALUES (2218, 1576, 'attr', 'start_date', '2020-04-10', '2020-04-11');
INSERT INTO public.journal_details VALUES (2221, 1578, 'attr', 'due_date', NULL, '2020-04-12');
INSERT INTO public.journal_details VALUES (2222, 1578, 'attr', 'start_date', '2020-04-10', '2020-04-12');
INSERT INTO public.journal_details VALUES (2223, 1579, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2224, 1580, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2225, 1581, 'attr', 'due_date', '2020-04-10', '2020-04-11');
INSERT INTO public.journal_details VALUES (2226, 1581, 'attr', 'start_date', '2020-04-10', '2020-04-11');
INSERT INTO public.journal_details VALUES (2227, 1582, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2228, 1583, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2229, 1584, 'attr', 'subject', 'Người sử dụng lao động', 'Người sử dụng lao động tạm hoãn thực hiện hợp dồng');
INSERT INTO public.journal_details VALUES (2230, 1585, 'attr', 'due_date', NULL, '2020-04-14');
INSERT INTO public.journal_details VALUES (2231, 1586, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2232, 1587, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2233, 1588, 'attr', 'subject', 'Tổng số hồ sơ nhận trợ cấp', 'Tổng số hồ sơ đã tiếp nhận');
INSERT INTO public.journal_details VALUES (2234, 1589, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2235, 1590, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2236, 1591, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2237, 1592, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2238, 1593, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (2239, 1594, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (2240, 1595, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (2241, 1596, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2242, 1597, 'attr', 'due_date', NULL, '2020-04-20');
INSERT INTO public.journal_details VALUES (2243, 1597, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2244, 1598, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (2245, 1599, 'attr', 'due_date', '2020-04-20', '2020-04-11');
INSERT INTO public.journal_details VALUES (2246, 1600, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (2247, 1601, 'attr', 'due_date', NULL, '2020-04-20');
INSERT INTO public.journal_details VALUES (2248, 1601, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (2249, 1602, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2250, 1603, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2251, 1604, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2252, 1605, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2253, 1606, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (2254, 1607, 'attr', 'assigned_to_id', '15', '8');
INSERT INTO public.journal_details VALUES (2255, 1608, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (2256, 1609, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (2257, 1610, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (2258, 1611, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2259, 1612, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2260, 1613, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2261, 1614, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2262, 1615, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2263, 1616, 'attr', 'due_date', NULL, '2020-04-20');
INSERT INTO public.journal_details VALUES (2264, 1616, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (2267, 1619, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2268, 1620, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2269, 1621, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2270, 1622, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2271, 1623, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2272, 1624, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2273, 1625, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2274, 1626, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2275, 1627, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2276, 1628, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2277, 1629, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2278, 1630, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2279, 1631, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2280, 1632, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2281, 1633, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2285, 1636, 'attr', 'due_date', '2020-04-12', '2020-04-07');
INSERT INTO public.journal_details VALUES (2286, 1636, 'attr', 'start_date', '2020-04-12', '2020-04-07');
INSERT INTO public.journal_details VALUES (2287, 1637, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2288, 1638, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2289, 1639, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2290, 1640, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2293, 1642, 'attr', 'due_date', '2020-04-07', '2020-04-14');
INSERT INTO public.journal_details VALUES (2294, 1642, 'attr', 'start_date', '2020-04-07', '2020-04-14');
INSERT INTO public.journal_details VALUES (2295, 1643, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2296, 1644, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2297, 1645, 'attr', 'due_date', '2020-04-11', '2020-04-13');
INSERT INTO public.journal_details VALUES (2298, 1645, 'attr', 'start_date', '2020-04-11', '2020-04-13');
INSERT INTO public.journal_details VALUES (2299, 1646, 'attr', 'due_date', '2020-04-12', '2020-04-13');
INSERT INTO public.journal_details VALUES (2300, 1646, 'attr', 'start_date', '2020-04-12', '2020-04-13');
INSERT INTO public.journal_details VALUES (2301, 1647, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2302, 1648, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2303, 1649, 'attr', 'due_date', NULL, '2020-04-11');
INSERT INTO public.journal_details VALUES (2304, 1650, 'attr', 'due_date', NULL, '2020-04-11');
INSERT INTO public.journal_details VALUES (2305, 1651, 'attr', 'due_date', NULL, '2020-04-11');
INSERT INTO public.journal_details VALUES (2306, 1652, 'attr', 'due_date', NULL, '2020-04-11');
INSERT INTO public.journal_details VALUES (2308, 1654, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (2309, 1655, 'attr', 'due_date', NULL, '2020-04-11');
INSERT INTO public.journal_details VALUES (2310, 1656, 'attr', 'due_date', '2020-04-20', '2020-04-11');
INSERT INTO public.journal_details VALUES (2311, 1657, 'attr', 'due_date', '2020-04-20', '2020-04-11');
INSERT INTO public.journal_details VALUES (2312, 1658, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2313, 1659, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2314, 1660, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2315, 1661, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2316, 1662, 'attr', 'subject', 'Tạo tk cho phòng lao động phù mỹ', 'Tạo tk cho phòng lao động');
INSERT INTO public.journal_details VALUES (2317, 1663, 'attr', 'assigned_to_id', '15', '17');
INSERT INTO public.journal_details VALUES (2318, 1664, 'attr', 'subject', 'Tạo tk cho xã mỹ hiệp', 'Tạo tk cho xã');
INSERT INTO public.journal_details VALUES (2319, 1665, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2320, 1666, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2321, 1667, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (2322, 1668, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (2323, 1669, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (2324, 1670, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (2325, 1671, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (2327, 1673, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (2328, 1674, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (2330, 1676, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2331, 1677, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2332, 1678, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2333, 1679, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2334, 1680, 'attr', 'due_date', NULL, '2020-04-12');
INSERT INTO public.journal_details VALUES (2335, 1680, 'attr', 'start_date', '2020-04-11', '2020-04-12');
INSERT INTO public.journal_details VALUES (2336, 1681, 'attr', 'due_date', NULL, '2020-04-12');
INSERT INTO public.journal_details VALUES (2337, 1681, 'attr', 'start_date', '2020-04-11', '2020-04-12');
INSERT INTO public.journal_details VALUES (2338, 1682, 'attr', 'due_date', NULL, '2020-04-12');
INSERT INTO public.journal_details VALUES (2339, 1682, 'attr', 'start_date', '2020-04-11', '2020-04-12');
INSERT INTO public.journal_details VALUES (2340, 1683, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2341, 1684, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2342, 1685, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2343, 1686, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2344, 1687, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2345, 1688, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2346, 1689, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2347, 1690, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2348, 1691, 'attr', 'assigned_to_id', '6', '5');
INSERT INTO public.journal_details VALUES (2349, 1692, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (2350, 1693, 'attr', 'due_date', NULL, '2020-04-13');
INSERT INTO public.journal_details VALUES (2351, 1693, 'attr', 'start_date', '2020-04-11', '2020-04-13');
INSERT INTO public.journal_details VALUES (2352, 1694, 'attr', 'due_date', '2020-04-14', '2020-04-13');
INSERT INTO public.journal_details VALUES (2353, 1694, 'attr', 'start_date', '2020-04-11', '2020-04-13');
INSERT INTO public.journal_details VALUES (2354, 1695, 'attr', 'due_date', '2020-04-14', '2020-04-12');
INSERT INTO public.journal_details VALUES (2355, 1695, 'attr', 'start_date', '2020-04-11', '2020-04-12');
INSERT INTO public.journal_details VALUES (2356, 1696, 'attr', 'due_date', '2020-04-14', '2020-04-12');
INSERT INTO public.journal_details VALUES (2357, 1696, 'attr', 'start_date', '2020-04-11', '2020-04-12');
INSERT INTO public.journal_details VALUES (2358, 1697, 'attr', 'due_date', '2020-04-14', '2020-04-13');
INSERT INTO public.journal_details VALUES (2359, 1697, 'attr', 'start_date', '2020-04-11', '2020-04-13');
INSERT INTO public.journal_details VALUES (2360, 1698, 'attr', 'due_date', '2020-04-14', '2020-04-13');
INSERT INTO public.journal_details VALUES (2361, 1698, 'attr', 'start_date', '2020-04-11', '2020-04-13');
INSERT INTO public.journal_details VALUES (2362, 1699, 'attr', 'parent_id', NULL, '461');
INSERT INTO public.journal_details VALUES (2363, 1700, 'attr', 'due_date', NULL, '2020-04-13');
INSERT INTO public.journal_details VALUES (2364, 1700, 'attr', 'start_date', '2020-04-12', '2020-04-13');
INSERT INTO public.journal_details VALUES (2365, 1701, 'attr', 'due_date', '2020-04-11', '2020-04-15');
INSERT INTO public.journal_details VALUES (2366, 1701, 'attr', 'start_date', '2020-04-11', '2020-04-15');
INSERT INTO public.journal_details VALUES (2367, 1702, 'attr', 'due_date', '2020-04-11', '2020-04-15');
INSERT INTO public.journal_details VALUES (2368, 1702, 'attr', 'start_date', '2020-04-11', '2020-04-15');
INSERT INTO public.journal_details VALUES (2369, 1703, 'attr', 'due_date', '2020-04-11', '2020-04-15');
INSERT INTO public.journal_details VALUES (2370, 1703, 'attr', 'start_date', '2020-04-11', '2020-04-15');
INSERT INTO public.journal_details VALUES (2371, 1704, 'attr', 'due_date', '2020-04-11', '2020-04-15');
INSERT INTO public.journal_details VALUES (2372, 1704, 'attr', 'start_date', '2020-04-11', '2020-04-15');
INSERT INTO public.journal_details VALUES (2375, 1706, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2376, 1707, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2377, 1708, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (2378, 1709, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (2379, 1710, 'attr', 'due_date', NULL, '2020-04-13');
INSERT INTO public.journal_details VALUES (2380, 1710, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (2381, 1711, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2382, 1712, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2383, 1713, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2384, 1714, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2385, 1715, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2386, 1716, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2387, 1717, 'attr', 'assigned_to_id', '15', '17');
INSERT INTO public.journal_details VALUES (2388, 1718, 'attr', 'subject', 'Người lao động bị chấm dứt hợp đồng lao động', 'Chương V: Người lao động k đủ đk');
INSERT INTO public.journal_details VALUES (2389, 1719, 'attr', 'subject', 'Danh mục hộ kinh doanh cá thể', 'Chương V: Danh mục hộ kinh doanh cá thể');
INSERT INTO public.journal_details VALUES (2390, 1720, 'attr', 'subject', 'Chương V: Danh mục hộ kinh doanh cá thể', 'Chương IV: Danh mục hộ kinh doanh cá thể');
INSERT INTO public.journal_details VALUES (2393, 1722, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2394, 1723, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2395, 1724, 'attr', 'due_date', '2020-04-11', '2020-04-15');
INSERT INTO public.journal_details VALUES (2396, 1724, 'attr', 'start_date', '2020-04-11', '2020-04-15');
INSERT INTO public.journal_details VALUES (2397, 1725, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2398, 1725, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2399, 1726, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2400, 1726, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2401, 1727, 'attr', 'subject', 'Danh mục đối tượng đang hưởng bảo trợ xã hội', 'Chương VIII: đối tượng đang hưởng bảo trợ xã hội');
INSERT INTO public.journal_details VALUES (2402, 1728, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2403, 1729, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2404, 1730, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2405, 1731, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2406, 1732, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2407, 1733, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2408, 1734, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2409, 1735, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2410, 1736, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2411, 1737, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2412, 1738, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2413, 1739, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2414, 1740, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2415, 1741, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2416, 1742, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2417, 1743, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2418, 1744, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2419, 1745, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2420, 1746, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2421, 1747, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2422, 1748, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2423, 1749, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2424, 1750, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2425, 1751, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2426, 1752, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2427, 1753, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2428, 1754, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2429, 1755, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2430, 1756, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2431, 1757, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2432, 1758, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2433, 1759, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2434, 1760, 'attr', 'due_date', NULL, '2020-04-14');
INSERT INTO public.journal_details VALUES (2435, 1760, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2436, 1760, 'attr', 'start_date', '2020-04-12', '2020-04-14');
INSERT INTO public.journal_details VALUES (2437, 1760, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2438, 1761, 'attr', 'due_date', NULL, '2020-04-14');
INSERT INTO public.journal_details VALUES (2439, 1761, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2440, 1761, 'attr', 'start_date', '2020-04-12', '2020-04-14');
INSERT INTO public.journal_details VALUES (2441, 1761, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2442, 1762, 'attr', 'subject', 'Thêm mới hồ sơ người lao động', 'CHƯƠNG V,, CHƯƠNG VI: Thêm mới hồ sơ người lao động');
INSERT INTO public.journal_details VALUES (2443, 1762, 'attr', 'due_date', NULL, '2020-04-14');
INSERT INTO public.journal_details VALUES (2444, 1762, 'attr', 'start_date', '2020-04-12', '2020-04-14');
INSERT INTO public.journal_details VALUES (2445, 1763, 'attr', 'due_date', NULL, '2020-04-15');
INSERT INTO public.journal_details VALUES (2446, 1763, 'attr', 'start_date', '2020-04-12', '2020-04-15');
INSERT INTO public.journal_details VALUES (2447, 1764, 'attr', 'due_date', NULL, '2020-04-15');
INSERT INTO public.journal_details VALUES (2448, 1764, 'attr', 'start_date', '2020-04-12', '2020-04-15');
INSERT INTO public.journal_details VALUES (2449, 1765, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2450, 1766, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2451, 1767, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2452, 1768, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2453, 1769, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2454, 1770, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2455, 1771, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2456, 1772, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2457, 1773, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2458, 1774, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2459, 1775, 'attr', 'assigned_to_id', '6', '5');
INSERT INTO public.journal_details VALUES (2460, 1776, 'attr', 'parent_id', NULL, '413');
INSERT INTO public.journal_details VALUES (2461, 1777, 'attr', 'subject', 'Thực hiện quy trình xét duyệt, chi trả cho các hồ sơ yêu cầu hỗ trợ', 'Quy trình xét duyệt, chi trả');
INSERT INTO public.journal_details VALUES (2462, 1778, 'attr', 'due_date', NULL, '2020-04-15');
INSERT INTO public.journal_details VALUES (2463, 1778, 'attr', 'start_date', '2020-04-12', '2020-04-15');
INSERT INTO public.journal_details VALUES (2464, 1779, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2465, 1780, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2466, 1781, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2467, 1782, 'attr', 'assigned_to_id', '5', '8');
INSERT INTO public.journal_details VALUES (2468, 1783, 'attr', 'due_date', '2020-04-11', '2020-04-15');
INSERT INTO public.journal_details VALUES (2469, 1783, 'attr', 'start_date', '2020-04-11', '2020-04-15');
INSERT INTO public.journal_details VALUES (2470, 1784, 'attr', 'due_date', '2020-04-14', '2020-04-15');
INSERT INTO public.journal_details VALUES (2471, 1784, 'attr', 'start_date', '2020-04-14', '2020-04-15');
INSERT INTO public.journal_details VALUES (2472, 1785, 'attr', 'due_date', NULL, '2020-04-15');
INSERT INTO public.journal_details VALUES (2473, 1786, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (2474, 1787, 'attr', 'subject', 'Chương VI: Lao động không giao kết', 'Nhập Chương V, Chương VI');
INSERT INTO public.journal_details VALUES (2475, 1788, 'attr', 'parent_id', '413', NULL);
INSERT INTO public.journal_details VALUES (2476, 1789, 'attr', 'parent_id', '413', NULL);
INSERT INTO public.journal_details VALUES (2477, 1790, 'attr', 'parent_id', NULL, '535');
INSERT INTO public.journal_details VALUES (2478, 1791, 'attr', 'parent_id', NULL, '535');
INSERT INTO public.journal_details VALUES (2479, 1792, 'attr', 'due_date', '2020-04-13', '2020-04-15');
INSERT INTO public.journal_details VALUES (2480, 1792, 'attr', 'start_date', '2020-04-13', '2020-04-15');
INSERT INTO public.journal_details VALUES (2481, 1793, 'attr', 'parent_id', '413', '535');
INSERT INTO public.journal_details VALUES (2482, 1794, 'attr', 'due_date', '2020-04-13', '2020-04-15');
INSERT INTO public.journal_details VALUES (2483, 1794, 'attr', 'start_date', '2020-04-13', '2020-04-15');
INSERT INTO public.journal_details VALUES (2484, 1795, 'attr', 'due_date', '2020-04-13', '2020-04-15');
INSERT INTO public.journal_details VALUES (2485, 1795, 'attr', 'start_date', '2020-04-13', '2020-04-15');
INSERT INTO public.journal_details VALUES (2486, 1796, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (2487, 1797, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2488, 1798, 'attr', 'subject', 'Mẫu doanh nghiệp 04 tạm hoãn', 'Mẫu doanh nghiệp liệt kê lao động');
INSERT INTO public.journal_details VALUES (2489, 1799, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (2490, 1800, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2491, 1801, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2492, 1802, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2493, 1803, 'attr', 'parent_id', '400', '535');
INSERT INTO public.journal_details VALUES (2494, 1804, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2495, 1805, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (2496, 1806, 'attr', 'due_date', '2020-04-15', '2020-04-16');
INSERT INTO public.journal_details VALUES (2497, 1807, 'attr', 'due_date', '2020-04-15', '2020-04-16');
INSERT INTO public.journal_details VALUES (2498, 1808, 'attr', 'due_date', '2020-04-15', '2020-04-16');
INSERT INTO public.journal_details VALUES (2499, 1809, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (2500, 1810, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (2501, 1811, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (2502, 1812, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (2504, 1814, 'attr', 'start_date', '2020-04-15', '2020-04-16');
INSERT INTO public.journal_details VALUES (2505, 1815, 'attr', 'start_date', '2020-04-15', '2020-04-16');
INSERT INTO public.journal_details VALUES (2506, 1816, 'attr', 'start_date', '2020-04-15', '2020-04-16');
INSERT INTO public.journal_details VALUES (2507, 1817, 'attr', 'due_date', '2020-04-15', '2020-04-16');
INSERT INTO public.journal_details VALUES (2508, 1817, 'attr', 'start_date', '2020-04-15', '2020-04-16');
INSERT INTO public.journal_details VALUES (2511, 1819, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2512, 1820, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2513, 1821, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2514, 1822, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2515, 1823, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2516, 1824, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2517, 1825, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2518, 1826, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2519, 1827, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (2520, 1828, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2521, 1829, 'attr', 'description', '', 'Chuyển trạng thái của những hồ sơ này => 1: Hồ sơ chờ xét duyệt');
INSERT INTO public.journal_details VALUES (2522, 1830, 'attr', 'description', 'Chuyển trạng thái của những hồ sơ này => 1: Hồ sơ chờ xét duyệt', 'Chuyển trạng thái của những hồ sơ này => 1: Hồ sơ chờ xét duyệt
- Nếu doanh nghiệp thì, có IDDoanhNghiep. Tên hồ sơ: Danh sách hồ sơ đối tượng 1 (công ty ABC)
- Nếu loại khác thì, Tên hồ sơ: Danh sách hồ sơ đối tượng 2 từ ngày 1/4 - 30/4');
INSERT INTO public.journal_details VALUES (2523, 1831, 'attr', 'due_date', '2020-04-15', '2020-04-16');
INSERT INTO public.journal_details VALUES (2524, 1831, 'attr', 'start_date', '2020-04-15', '2020-04-16');
INSERT INTO public.journal_details VALUES (2525, 1832, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2526, 1832, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2527, 1833, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2528, 1833, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2529, 1834, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2530, 1835, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2531, 1836, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2532, 1837, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2533, 1838, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2534, 1839, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2535, 1840, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2536, 1841, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2537, 1842, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2538, 1843, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2539, 1844, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2540, 1845, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2541, 1846, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2542, 1847, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2543, 1848, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2544, 1849, 'attr', 'due_date', NULL, '2020-04-21');
INSERT INTO public.journal_details VALUES (2545, 1849, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (2546, 1850, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2547, 1851, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2548, 1852, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2549, 1853, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2550, 1854, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2551, 1855, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2552, 1856, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2553, 1857, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2554, 1858, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2555, 1859, 'attr', 'description', 'Chuyển trạng thái của những hồ sơ này => 1: Hồ sơ chờ xét duyệt
- Nếu doanh nghiệp thì, có IDDoanhNghiep. Tên hồ sơ: Danh sách hồ sơ đối tượng 1 (công ty ABC)
- Nếu loại khác thì, Tên hồ sơ: Danh sách hồ sơ đối tượng 2 từ ngày 1/4 - 30/4', 'Chuyển trạng thái của những hồ sơ này => 1: Hồ sơ chờ xét duyệt
- Nếu doanh nghiệp thì, có IDDoanhNghiep. Tên hồ sơ: Danh sách hồ sơ đối tượng 1 (công ty ABC)
- Nếu loại khác thì, Tên hồ sơ: Danh sách hồ sơ đối tượng 2 từ ngày 1/4 - 30/4

DanhSachXetDuyets/TaoDanhSach');
INSERT INTO public.journal_details VALUES (2556, 1860, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2557, 1861, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2558, 1862, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2559, 1863, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2560, 1864, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (2561, 1865, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2562, 1866, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2563, 1867, 'attr', 'subject', 'Tổng số hồ sơ đã tiếp nhận', 'Thống kê số lượng hồ sơ theo trạng thái');
INSERT INTO public.journal_details VALUES (2564, 1867, 'attr', 'description', 'Trong đó:
- Đối tượng 1: bao nhiêu
- Đối tượng 2: bao nhiêu
- Đối tượng 3: bao nhiêu
- Đối tượng 4: bao nhiêu
- Đối tượng 5: bao nhiêu', '');
INSERT INTO public.journal_details VALUES (2565, 1868, 'attr', 'subject', 'Tổng số tiền dự kiến trợ cấp', 'Biểu đồ bánh thống kê số lượng hs mỗi đối tượng');
INSERT INTO public.journal_details VALUES (2566, 1869, 'attr', 'subject', 'Tổng hồ sơ hợp lệ', 'Biểu đồ bánh thống kê số tiền mỗi đối tượng');
INSERT INTO public.journal_details VALUES (2567, 1870, 'attr', 'subject', 'Tổng hồ sơ từ chối', 'Thống kê tổng tiền, đã chi, còn lại');
INSERT INTO public.journal_details VALUES (2568, 1871, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2569, 1871, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2570, 1872, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2571, 1873, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2572, 1874, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2573, 1875, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2574, 1876, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2575, 1877, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (2576, 1878, 'attr', 'parent_id', '405', NULL);
INSERT INTO public.journal_details VALUES (2577, 1879, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2578, 1880, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2579, 1881, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2580, 1882, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2581, 1883, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2582, 1884, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2583, 1885, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2584, 1886, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2585, 1887, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2586, 1888, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2587, 1889, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2588, 1890, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2589, 1891, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2590, 1892, 'attr', 'parent_id', NULL, '535');
INSERT INTO public.journal_details VALUES (2591, 1893, 'attr', 'parent_id', NULL, '535');
INSERT INTO public.journal_details VALUES (2592, 1894, 'attr', 'description', '', 'ngày cấp cmnd
ngành nghề => danh mục
doanh thu
thời gian
tạm ngưng
đang gặp khó

==> ghi đúng theo mẫu, và bắt buộc nhập');
INSERT INTO public.journal_details VALUES (2593, 1895, 'relation', 'copied_to', NULL, '572');
INSERT INTO public.journal_details VALUES (2594, 1896, 'relation', 'copied_from', NULL, '571');
INSERT INTO public.journal_details VALUES (2595, 1897, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (2596, 1897, 'attr', 'assigned_to_id', '8', '6');
INSERT INTO public.journal_details VALUES (2597, 1897, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (2598, 1898, 'attr', 'subject', 'Thêm mới hồ sơ hộ cá thể bổ sung các cột', 'Thêm mới hộ cá thể bổ sung các cột');
INSERT INTO public.journal_details VALUES (2599, 1899, 'attr', 'due_date', NULL, '2020-04-17');
INSERT INTO public.journal_details VALUES (2600, 1899, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (2601, 1900, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (2602, 1901, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (2603, 1902, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (2604, 1903, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (2605, 1904, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (2606, 1905, 'attr', 'assigned_to_id', '8', '17');
INSERT INTO public.journal_details VALUES (2607, 1906, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2608, 1907, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2609, 1908, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (2610, 1909, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (2611, 1910, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (2612, 1911, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2613, 1912, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2614, 1913, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2615, 1913, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2616, 1914, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2617, 1914, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2618, 1915, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2619, 1916, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2620, 1917, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2621, 1918, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2622, 1919, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2623, 1919, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2624, 1920, 'attr', 'assigned_to_id', '6', '8');
INSERT INTO public.journal_details VALUES (2625, 1921, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2626, 1921, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2627, 1922, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2628, 1922, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2629, 1923, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2630, 1924, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2631, 1925, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2632, 1926, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2633, 1927, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2634, 1928, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2635, 1929, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2636, 1930, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2637, 1931, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2638, 1932, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2639, 1933, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2640, 1934, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2641, 1935, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2642, 1936, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2643, 1937, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2644, 1938, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2645, 1939, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2646, 1940, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2647, 1941, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2648, 1942, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2649, 1943, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2650, 1944, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2651, 1945, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2652, 1946, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2653, 1947, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2654, 1948, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2655, 1949, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2656, 1950, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2657, 1951, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2658, 1952, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2659, 1953, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2660, 1954, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2661, 1955, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2662, 1956, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2663, 1957, 'attr', 'due_date', '2020-04-19', '2020-04-21');
INSERT INTO public.journal_details VALUES (2664, 1957, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2665, 1957, 'attr', 'start_date', '2020-04-19', '2020-04-21');
INSERT INTO public.journal_details VALUES (2666, 1958, 'attr', 'due_date', '2020-04-19', '2020-04-21');
INSERT INTO public.journal_details VALUES (2667, 1958, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2668, 1958, 'attr', 'start_date', '2020-04-19', '2020-04-21');
INSERT INTO public.journal_details VALUES (2669, 1959, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2670, 1960, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2671, 1961, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2672, 1962, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2673, 1963, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2674, 1964, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2675, 1965, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2676, 1966, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2677, 1967, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2678, 1968, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2679, 1969, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2680, 1970, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2683, 1973, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2684, 1974, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2685, 1975, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2686, 1976, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (2687, 1977, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2688, 1978, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2689, 1979, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2690, 1980, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2691, 1981, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2692, 1982, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2693, 1983, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2694, 1984, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2695, 1985, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2696, 1986, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2697, 1987, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2698, 1988, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2699, 1989, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2700, 1990, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2701, 1991, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2702, 1992, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2703, 1993, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2704, 1994, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2705, 1995, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2706, 1996, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2707, 1997, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2708, 1998, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2709, 1999, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2710, 2000, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2711, 2001, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (2712, 2002, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2713, 2003, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2714, 2004, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2715, 2005, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2716, 2006, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2717, 2007, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2718, 2008, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2719, 2009, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2720, 2010, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2721, 2011, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2722, 2012, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2723, 2013, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2724, 2014, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2725, 2015, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2726, 2016, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2727, 2017, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2728, 2018, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2729, 2019, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2730, 2020, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2731, 2021, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2732, 2022, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2733, 2023, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2734, 2024, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2735, 2025, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2736, 2026, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2737, 2027, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2738, 2028, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2739, 2029, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2740, 2030, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2741, 2031, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2742, 2032, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2743, 2033, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2744, 2034, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2745, 2035, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (2746, 2036, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2747, 2037, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2748, 2038, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2749, 2039, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2750, 2040, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2751, 2041, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2752, 2042, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2753, 2043, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2754, 2044, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2755, 2045, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2756, 2046, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2757, 2047, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2758, 2048, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2759, 2049, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2760, 2050, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2765, 2053, 'attr', 'due_date', '2020-04-15', '2020-04-21');
INSERT INTO public.journal_details VALUES (2766, 2053, 'attr', 'start_date', '2020-04-15', '2020-04-21');
INSERT INTO public.journal_details VALUES (2767, 2054, 'attr', 'due_date', '2020-04-11', '2020-04-21');
INSERT INTO public.journal_details VALUES (2768, 2054, 'attr', 'start_date', '2020-04-11', '2020-04-21');
INSERT INTO public.journal_details VALUES (2772, 2057, 'attr', 'subject', 'Xuất ds học viên kí nộp bài thi', 'Xuất ds học viên kí nộp bài thi (ds học viên đủ điều kiện dự thi)');
INSERT INTO public.journal_details VALUES (2773, 2058, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (2774, 2058, 'attr', 'category_id', NULL, '8');
INSERT INTO public.journal_details VALUES (2775, 2059, 'attr', 'description', '', 'Giảng viên chủ nhiệm chỉ có quyền:
+ xem 
+ xếp tổ
+ xếp vị trí ngồi
+ xuất sơ đồ vị trí ngồi của học viên,
+ Xuất phiếu điểm danh của lớp');
INSERT INTO public.journal_details VALUES (2776, 2060, 'attr', 'due_date', NULL, '2020-04-21');
INSERT INTO public.journal_details VALUES (2777, 2060, 'attr', 'category_id', NULL, '8');
INSERT INTO public.journal_details VALUES (2778, 2061, 'attr', 'subject', 'QUẢN TRỊ ĐÀO TẠO HỌC VIÊN TRƯỜNG ĐẢNG', 'QUẢN TRỊ');
INSERT INTO public.journal_details VALUES (2779, 2062, 'attr', 'due_date', '2020-04-21', '2020-04-22');
INSERT INTO public.journal_details VALUES (2780, 2062, 'attr', 'start_date', '2020-04-21', '2020-04-22');
INSERT INTO public.journal_details VALUES (2781, 2063, 'attr', 'due_date', NULL, '2020-04-22');
INSERT INTO public.journal_details VALUES (2782, 2063, 'attr', 'start_date', '2020-04-21', '2020-04-22');
INSERT INTO public.journal_details VALUES (2783, 2064, 'attr', 'due_date', '2020-04-21', '2020-04-22');
INSERT INTO public.journal_details VALUES (2784, 2064, 'attr', 'start_date', '2020-04-21', '2020-04-22');
INSERT INTO public.journal_details VALUES (2785, 2065, 'attr', 'due_date', '2020-04-21', '2020-04-22');
INSERT INTO public.journal_details VALUES (2786, 2065, 'attr', 'start_date', '2020-04-21', '2020-04-22');
INSERT INTO public.journal_details VALUES (2787, 2066, 'attr', 'due_date', '2020-04-22', '2020-04-23');
INSERT INTO public.journal_details VALUES (2788, 2066, 'attr', 'start_date', '2020-04-22', '2020-04-23');
INSERT INTO public.journal_details VALUES (2789, 2067, 'attr', 'due_date', '2020-04-21', '2020-04-22');
INSERT INTO public.journal_details VALUES (2790, 2067, 'attr', 'start_date', '2020-04-21', '2020-04-22');
INSERT INTO public.journal_details VALUES (2793, 2069, 'attr', 'due_date', '2020-04-21', '2020-04-24');
INSERT INTO public.journal_details VALUES (2794, 2069, 'attr', 'start_date', '2020-04-21', '2020-04-24');
INSERT INTO public.journal_details VALUES (2795, 2070, 'attr', 'due_date', '2020-04-21', '2020-04-25');
INSERT INTO public.journal_details VALUES (2796, 2070, 'attr', 'start_date', '2020-04-21', '2020-04-25');
INSERT INTO public.journal_details VALUES (2797, 2071, 'attr', 'due_date', '2020-04-21', '2020-04-27');
INSERT INTO public.journal_details VALUES (2798, 2071, 'attr', 'start_date', '2020-04-21', '2020-04-27');
INSERT INTO public.journal_details VALUES (2906, 2140, 'attr', 'start_date', '2020-04-12', '2020-04-11');
INSERT INTO public.journal_details VALUES (3506, 2616, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2799, 2072, 'attr', 'subject', 'sửa lại bảng công nhận tốt nghiệp theo mẫu mới', 'Xuất báo cáo theo chuẩn mẫu');
INSERT INTO public.journal_details VALUES (2801, 2074, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (2802, 2074, 'attr', 'subject', 'Xuất báo cáo theo chuẩn mẫu', 'Xuất ds đủ điều kiện thi');
INSERT INTO public.journal_details VALUES (2803, 2075, 'attr', 'tracker_id', '2', '1');
INSERT INTO public.journal_details VALUES (2804, 2075, 'attr', 'subject', 'Xuất ds đủ điều kiện thi', 'Sửa lại phiếu kí nhận tốt nghiệp theo mẫu mới');
INSERT INTO public.journal_details VALUES (2807, 2077, 'attr', 'due_date', '2020-04-21', '2020-04-29');
INSERT INTO public.journal_details VALUES (2808, 2077, 'attr', 'start_date', '2020-04-21', '2020-04-29');
INSERT INTO public.journal_details VALUES (2816, 2085, 'attr', 'due_date', NULL, '2020-04-23');
INSERT INTO public.journal_details VALUES (2817, 2086, 'attr', 'subject', 'Bỏ từ ngày đến ngày đối với 3 đối tượng', 'Bỏ từ thông tin từ ngày - đến ngày đối với 3 đối tượng (Chỉ đối tượng 1 có {Chi tiết} )');
INSERT INTO public.journal_details VALUES (2818, 2087, 'attr', 'due_date', NULL, '2020-04-23');
INSERT INTO public.journal_details VALUES (2820, 2089, 'attr', 'due_date', NULL, '2020-04-23');
INSERT INTO public.journal_details VALUES (2822, 2091, 'attr', 'subject', 'Tại modul "Tài sản công, dịch vụ công ích", cột Tỉ lệ và cột Giá trị còn lại cho lưu được cả số lẻ và số chẵn - Theo phản hồi của Sở Ngoại vụ', 'Tài sản công Tỉ lệ, giá trị còn lại cho nhập 17,9');
INSERT INTO public.journal_details VALUES (2823, 2091, 'attr', 'description', '', 'Tại modul "Tài sản công, dịch vụ công ích", cột Tỉ lệ và cột Giá trị còn lại cho lưu được cả số lẻ và số chẵn - Theo phản hồi của Sở Ngoại vụ');
INSERT INTO public.journal_details VALUES (2824, 2091, 'attr', 'category_id', NULL, '9');
INSERT INTO public.journal_details VALUES (2825, 2092, 'attr', 'subject', 'Thêm mô tả vào chi tiết cá nhân để biết ổng làm gì', 'Thêm mô tả công việc vào chi tiết cá nhân để biết ổng làm gì');
INSERT INTO public.journal_details VALUES (2828, 2094, 'attr', 'due_date', NULL, '2020-04-23');
INSERT INTO public.journal_details VALUES (2829, 2094, 'attr', 'start_date', '2020-04-22', '2020-04-23');
INSERT INTO public.journal_details VALUES (2830, 2095, 'attr', 'due_date', NULL, '2020-04-23');
INSERT INTO public.journal_details VALUES (2831, 2095, 'attr', 'start_date', '2020-04-22', '2020-04-23');
INSERT INTO public.journal_details VALUES (2832, 2096, 'attr', 'due_date', NULL, '2020-04-23');
INSERT INTO public.journal_details VALUES (2833, 2096, 'attr', 'start_date', '2020-04-22', '2020-04-23');
INSERT INTO public.journal_details VALUES (2834, 2097, 'attr', 'due_date', NULL, '2020-04-23');
INSERT INTO public.journal_details VALUES (2835, 2097, 'attr', 'start_date', '2020-04-22', '2020-04-23');
INSERT INTO public.journal_details VALUES (2836, 2098, 'attr', 'due_date', NULL, '2020-04-23');
INSERT INTO public.journal_details VALUES (2837, 2098, 'attr', 'start_date', '2020-04-22', '2020-04-23');
INSERT INTO public.journal_details VALUES (2838, 2099, 'attr', 'due_date', NULL, '2020-04-23');
INSERT INTO public.journal_details VALUES (2839, 2099, 'attr', 'start_date', '2020-04-22', '2020-04-23');
INSERT INTO public.journal_details VALUES (2840, 2100, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2841, 2101, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2842, 2102, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2843, 2103, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2844, 2104, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2845, 2105, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2846, 2106, 'attr', 'due_date', NULL, '2020-04-23');
INSERT INTO public.journal_details VALUES (2849, 2109, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2850, 2109, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2853, 2112, 'attr', 'estimated_hours', NULL, '48.0');
INSERT INTO public.journal_details VALUES (2854, 2113, 'attr', 'due_date', '2020-04-17', '2020-04-25');
INSERT INTO public.journal_details VALUES (2855, 2113, 'attr', 'start_date', '2020-04-12', '2020-04-23');
INSERT INTO public.journal_details VALUES (2856, 2114, 'attr', 'due_date', '2020-04-25', '2020-04-27');
INSERT INTO public.journal_details VALUES (2857, 2115, 'attr', 'due_date', '2020-04-27', '2020-04-25');
INSERT INTO public.journal_details VALUES (2858, 2116, 'attr', 'due_date', '2020-04-17', '2020-04-25');
INSERT INTO public.journal_details VALUES (2859, 2116, 'attr', 'start_date', '2020-04-12', '2020-04-23');
INSERT INTO public.journal_details VALUES (2860, 2117, 'attr', 'due_date', '2020-04-18', '2020-04-25');
INSERT INTO public.journal_details VALUES (2861, 2117, 'attr', 'start_date', '2020-04-16', '2020-04-23');
INSERT INTO public.journal_details VALUES (2862, 2118, 'attr', 'due_date', '2020-04-25', '2020-04-18');
INSERT INTO public.journal_details VALUES (2863, 2118, 'attr', 'start_date', '2020-04-23', '2020-04-16');
INSERT INTO public.journal_details VALUES (2864, 2119, 'attr', 'due_date', '2020-04-25', '2020-04-18');
INSERT INTO public.journal_details VALUES (2865, 2119, 'attr', 'start_date', '2020-04-23', '2020-04-16');
INSERT INTO public.journal_details VALUES (2866, 2120, 'attr', 'due_date', '2020-04-18', '2020-04-13');
INSERT INTO public.journal_details VALUES (2867, 2120, 'attr', 'start_date', '2020-04-16', '2020-04-11');
INSERT INTO public.journal_details VALUES (2868, 2121, 'attr', 'due_date', '2020-04-17', '2020-04-13');
INSERT INTO public.journal_details VALUES (2869, 2121, 'attr', 'start_date', '2020-04-16', '2020-04-11');
INSERT INTO public.journal_details VALUES (2870, 2122, 'attr', 'due_date', '2020-04-17', '2020-04-13');
INSERT INTO public.journal_details VALUES (2871, 2122, 'attr', 'start_date', '2020-04-12', '2020-04-11');
INSERT INTO public.journal_details VALUES (2872, 2123, 'attr', 'due_date', '2020-04-18', '2020-04-17');
INSERT INTO public.journal_details VALUES (2873, 2123, 'attr', 'start_date', '2020-04-16', '2020-04-14');
INSERT INTO public.journal_details VALUES (2874, 2124, 'attr', 'due_date', '2020-04-18', '2020-04-17');
INSERT INTO public.journal_details VALUES (2875, 2124, 'attr', 'start_date', '2020-04-16', '2020-04-14');
INSERT INTO public.journal_details VALUES (2876, 2125, 'attr', 'due_date', '2020-04-25', '2020-04-17');
INSERT INTO public.journal_details VALUES (2877, 2125, 'attr', 'start_date', '2020-04-23', '2020-04-14');
INSERT INTO public.journal_details VALUES (2878, 2126, 'attr', 'due_date', '2020-04-24', '2020-04-17');
INSERT INTO public.journal_details VALUES (2879, 2126, 'attr', 'start_date', '2020-04-16', '2020-04-14');
INSERT INTO public.journal_details VALUES (2880, 2127, 'attr', 'due_date', '2020-04-21', '2020-04-20');
INSERT INTO public.journal_details VALUES (2881, 2127, 'attr', 'start_date', '2020-04-16', '2020-04-19');
INSERT INTO public.journal_details VALUES (2882, 2128, 'attr', 'due_date', NULL, '2020-04-20');
INSERT INTO public.journal_details VALUES (2883, 2128, 'attr', 'start_date', '2020-04-16', '2020-04-19');
INSERT INTO public.journal_details VALUES (2884, 2129, 'attr', 'due_date', '2020-04-17', '2020-04-13');
INSERT INTO public.journal_details VALUES (2885, 2129, 'attr', 'start_date', '2020-04-16', '2020-04-11');
INSERT INTO public.journal_details VALUES (2886, 2130, 'attr', 'due_date', '2020-04-22', '2020-04-13');
INSERT INTO public.journal_details VALUES (2887, 2130, 'attr', 'start_date', '2020-04-16', '2020-04-11');
INSERT INTO public.journal_details VALUES (2888, 2131, 'attr', 'due_date', '2020-04-17', '2020-04-13');
INSERT INTO public.journal_details VALUES (2889, 2131, 'attr', 'start_date', '2020-04-12', '2020-04-11');
INSERT INTO public.journal_details VALUES (2890, 2132, 'attr', 'start_date', '2020-04-16', '2020-04-14');
INSERT INTO public.journal_details VALUES (2891, 2133, 'attr', 'due_date', '2020-04-20', '2020-04-17');
INSERT INTO public.journal_details VALUES (2892, 2133, 'attr', 'start_date', '2020-04-16', '2020-04-14');
INSERT INTO public.journal_details VALUES (2893, 2134, 'attr', 'due_date', '2020-04-20', '2020-04-19');
INSERT INTO public.journal_details VALUES (2894, 2134, 'attr', 'start_date', '2020-04-16', '2020-04-18');
INSERT INTO public.journal_details VALUES (2895, 2135, 'attr', 'due_date', '2020-04-23', '2020-04-19');
INSERT INTO public.journal_details VALUES (2896, 2135, 'attr', 'start_date', '2020-04-16', '2020-04-18');
INSERT INTO public.journal_details VALUES (2897, 2136, 'attr', 'due_date', '2020-04-18', '2020-04-12');
INSERT INTO public.journal_details VALUES (2898, 2136, 'attr', 'start_date', '2020-04-16', '2020-04-11');
INSERT INTO public.journal_details VALUES (2899, 2137, 'attr', 'due_date', '2020-04-24', '2020-04-12');
INSERT INTO public.journal_details VALUES (2900, 2137, 'attr', 'start_date', '2020-04-16', '2020-04-11');
INSERT INTO public.journal_details VALUES (2901, 2138, 'attr', 'due_date', '2020-04-17', '2020-04-15');
INSERT INTO public.journal_details VALUES (2902, 2138, 'attr', 'start_date', '2020-04-16', '2020-04-13');
INSERT INTO public.journal_details VALUES (2903, 2139, 'attr', 'due_date', '2020-04-18', '2020-04-15');
INSERT INTO public.journal_details VALUES (2904, 2139, 'attr', 'start_date', '2020-04-16', '2020-04-13');
INSERT INTO public.journal_details VALUES (2905, 2140, 'attr', 'due_date', '2020-04-17', '2020-04-12');
INSERT INTO public.journal_details VALUES (2907, 2141, 'attr', 'due_date', '2020-04-15', '2020-04-17');
INSERT INTO public.journal_details VALUES (2908, 2141, 'attr', 'start_date', '2020-04-13', '2020-04-16');
INSERT INTO public.journal_details VALUES (2909, 2142, 'attr', 'due_date', '2020-04-15', '2020-04-17');
INSERT INTO public.journal_details VALUES (2910, 2142, 'attr', 'start_date', '2020-04-14', '2020-04-16');
INSERT INTO public.journal_details VALUES (2911, 2143, 'attr', 'due_date', '2020-04-25', '2020-04-13');
INSERT INTO public.journal_details VALUES (2912, 2143, 'attr', 'start_date', '2020-04-21', '2020-04-11');
INSERT INTO public.journal_details VALUES (2913, 2144, 'attr', 'due_date', '2020-04-24', '2020-04-13');
INSERT INTO public.journal_details VALUES (2914, 2144, 'attr', 'start_date', '2020-04-21', '2020-04-11');
INSERT INTO public.journal_details VALUES (2915, 2145, 'attr', 'due_date', '2020-04-24', '2020-04-16');
INSERT INTO public.journal_details VALUES (2916, 2145, 'attr', 'start_date', '2020-04-21', '2020-04-14');
INSERT INTO public.journal_details VALUES (2917, 2146, 'attr', 'due_date', '2020-04-24', '2020-04-16');
INSERT INTO public.journal_details VALUES (2918, 2146, 'attr', 'start_date', '2020-04-21', '2020-04-14');
INSERT INTO public.journal_details VALUES (2919, 2147, 'attr', 'due_date', '2020-04-18', '2020-04-17');
INSERT INTO public.journal_details VALUES (2920, 2147, 'attr', 'start_date', '2020-04-12', '2020-04-11');
INSERT INTO public.journal_details VALUES (2921, 2148, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (2922, 2149, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (2923, 2150, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (2924, 2151, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2925, 2152, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2926, 2153, 'attr', 'subject', 'Dữ liệu Sort ngày tạo giảm dần', 'Dữ liệu phải có ngày tạo, Sort ngày tạo giảm dần');
INSERT INTO public.journal_details VALUES (2927, 2154, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (2928, 2155, 'attr', 'assigned_to_id', '15', '8');
INSERT INTO public.journal_details VALUES (2929, 2156, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (2930, 2157, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (2931, 2158, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (2933, 2160, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (2938, 2164, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2939, 2165, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2941, 2167, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2942, 2168, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2947, 2173, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2948, 2174, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2953, 2179, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2954, 2180, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2955, 2181, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2956, 2182, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2961, 2187, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2962, 2188, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2963, 2189, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2968, 2193, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2969, 2194, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2971, 2196, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2972, 2197, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2973, 2198, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2974, 2199, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2975, 2200, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2976, 2201, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2977, 2202, 'attr', 'due_date', NULL, '2020-04-24');
INSERT INTO public.journal_details VALUES (2978, 2202, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2979, 2203, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2980, 2204, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2981, 2205, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2982, 2206, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2984, 2208, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2985, 2209, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2986, 2210, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2987, 2210, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2988, 2211, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2989, 2211, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2990, 2212, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2991, 2212, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2992, 2213, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (2993, 2213, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (2994, 2214, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2995, 2215, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2996, 2216, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2997, 2217, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (2998, 2218, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (2999, 2219, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3000, 2220, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3001, 2221, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3002, 2222, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3003, 2223, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3005, 2225, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3006, 2226, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3007, 2227, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3008, 2228, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3009, 2229, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3012, 2232, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3013, 2233, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3014, 2234, 'attr', 'due_date', NULL, '2020-04-27');
INSERT INTO public.journal_details VALUES (3015, 2235, 'attr', 'due_date', '2020-04-06', '2020-04-27');
INSERT INTO public.journal_details VALUES (3016, 2235, 'attr', 'start_date', '2020-04-06', '2020-04-27');
INSERT INTO public.journal_details VALUES (3017, 2236, 'attr', 'due_date', '2020-04-17', '2020-04-27');
INSERT INTO public.journal_details VALUES (3018, 2236, 'attr', 'start_date', '2020-04-14', '2020-04-27');
INSERT INTO public.journal_details VALUES (3019, 2237, 'attr', 'due_date', '2020-04-17', '2020-04-27');
INSERT INTO public.journal_details VALUES (3020, 2237, 'attr', 'start_date', '2020-04-14', '2020-04-27');
INSERT INTO public.journal_details VALUES (3021, 2238, 'attr', 'due_date', '2020-04-17', '2020-04-27');
INSERT INTO public.journal_details VALUES (3022, 2238, 'attr', 'start_date', '2020-04-14', '2020-04-27');
INSERT INTO public.journal_details VALUES (3023, 2239, 'attr', 'due_date', '2020-04-20', '2020-04-27');
INSERT INTO public.journal_details VALUES (3024, 2239, 'attr', 'start_date', '2020-04-19', '2020-04-27');
INSERT INTO public.journal_details VALUES (3025, 2240, 'attr', 'due_date', '2020-04-20', '2020-04-27');
INSERT INTO public.journal_details VALUES (3026, 2240, 'attr', 'start_date', '2020-04-19', '2020-04-27');
INSERT INTO public.journal_details VALUES (3027, 2241, 'attr', 'due_date', '2020-04-13', '2020-04-27');
INSERT INTO public.journal_details VALUES (3028, 2241, 'attr', 'start_date', '2020-04-11', '2020-04-27');
INSERT INTO public.journal_details VALUES (3029, 2242, 'attr', 'due_date', '2020-04-13', '2020-04-27');
INSERT INTO public.journal_details VALUES (3030, 2242, 'attr', 'start_date', '2020-04-11', '2020-04-27');
INSERT INTO public.journal_details VALUES (3031, 2243, 'attr', 'due_date', '2020-04-17', '2020-04-27');
INSERT INTO public.journal_details VALUES (3032, 2243, 'attr', 'start_date', '2020-04-14', '2020-04-27');
INSERT INTO public.journal_details VALUES (3033, 2244, 'attr', 'due_date', '2020-04-19', '2020-04-27');
INSERT INTO public.journal_details VALUES (3034, 2244, 'attr', 'start_date', '2020-04-18', '2020-04-27');
INSERT INTO public.journal_details VALUES (3035, 2245, 'attr', 'due_date', '2020-04-19', '2020-04-27');
INSERT INTO public.journal_details VALUES (3036, 2245, 'attr', 'start_date', '2020-04-18', '2020-04-27');
INSERT INTO public.journal_details VALUES (3037, 2246, 'attr', 'due_date', '2020-04-13', '2020-04-27');
INSERT INTO public.journal_details VALUES (3038, 2246, 'attr', 'start_date', '2020-04-11', '2020-04-27');
INSERT INTO public.journal_details VALUES (3039, 2247, 'attr', 'due_date', '2020-04-12', '2020-04-27');
INSERT INTO public.journal_details VALUES (3040, 2247, 'attr', 'start_date', '2020-04-11', '2020-04-27');
INSERT INTO public.journal_details VALUES (3041, 2248, 'attr', 'due_date', '2020-04-15', '2020-04-27');
INSERT INTO public.journal_details VALUES (3042, 2248, 'attr', 'start_date', '2020-04-13', '2020-04-27');
INSERT INTO public.journal_details VALUES (3043, 2249, 'attr', 'due_date', '2020-04-17', '2020-04-27');
INSERT INTO public.journal_details VALUES (3044, 2249, 'attr', 'start_date', '2020-04-16', '2020-04-27');
INSERT INTO public.journal_details VALUES (3045, 2250, 'attr', 'due_date', '2020-04-17', '2020-04-27');
INSERT INTO public.journal_details VALUES (3046, 2250, 'attr', 'start_date', '2020-04-16', '2020-04-27');
INSERT INTO public.journal_details VALUES (3047, 2251, 'attr', 'due_date', '2020-04-12', '2020-04-27');
INSERT INTO public.journal_details VALUES (3048, 2251, 'attr', 'start_date', '2020-04-11', '2020-04-27');
INSERT INTO public.journal_details VALUES (3049, 2252, 'attr', 'due_date', '2020-04-17', '2020-04-27');
INSERT INTO public.journal_details VALUES (3050, 2252, 'attr', 'start_date', '2020-04-12', '2020-04-27');
INSERT INTO public.journal_details VALUES (3051, 2253, 'attr', 'due_date', '2020-04-17', '2020-04-27');
INSERT INTO public.journal_details VALUES (3052, 2253, 'attr', 'start_date', '2020-04-12', '2020-04-27');
INSERT INTO public.journal_details VALUES (3053, 2254, 'attr', 'due_date', NULL, '2020-04-27');
INSERT INTO public.journal_details VALUES (3054, 2254, 'attr', 'start_date', '2020-04-17', '2020-04-27');
INSERT INTO public.journal_details VALUES (3055, 2255, 'attr', 'due_date', '2020-04-17', '2020-04-27');
INSERT INTO public.journal_details VALUES (3056, 2255, 'attr', 'start_date', '2020-04-12', '2020-04-27');
INSERT INTO public.journal_details VALUES (3057, 2256, 'attr', 'due_date', '2020-04-17', '2020-04-27');
INSERT INTO public.journal_details VALUES (3058, 2256, 'attr', 'start_date', '2020-04-12', '2020-04-27');
INSERT INTO public.journal_details VALUES (3059, 2257, 'attr', 'due_date', '2020-04-17', '2020-04-27');
INSERT INTO public.journal_details VALUES (3060, 2257, 'attr', 'start_date', '2020-04-12', '2020-04-27');
INSERT INTO public.journal_details VALUES (3061, 2258, 'attr', 'due_date', '2020-04-17', '2020-04-27');
INSERT INTO public.journal_details VALUES (3062, 2258, 'attr', 'start_date', '2020-04-11', '2020-04-27');
INSERT INTO public.journal_details VALUES (3063, 2259, 'attr', 'due_date', '2020-04-18', '2020-04-27');
INSERT INTO public.journal_details VALUES (3064, 2259, 'attr', 'start_date', '2020-04-12', '2020-04-27');
INSERT INTO public.journal_details VALUES (3065, 2260, 'attr', 'due_date', '2020-04-13', '2020-04-27');
INSERT INTO public.journal_details VALUES (3066, 2260, 'attr', 'start_date', '2020-04-11', '2020-04-27');
INSERT INTO public.journal_details VALUES (3067, 2261, 'attr', 'due_date', '2020-04-13', '2020-04-27');
INSERT INTO public.journal_details VALUES (3068, 2261, 'attr', 'start_date', '2020-04-11', '2020-04-27');
INSERT INTO public.journal_details VALUES (3069, 2262, 'attr', 'due_date', '2020-04-16', '2020-04-27');
INSERT INTO public.journal_details VALUES (3070, 2262, 'attr', 'start_date', '2020-04-14', '2020-04-27');
INSERT INTO public.journal_details VALUES (3071, 2263, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3072, 2264, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3073, 2265, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3074, 2266, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3075, 2267, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3076, 2268, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3077, 2269, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3078, 2270, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3079, 2271, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3080, 2272, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3081, 2273, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3082, 2274, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3083, 2275, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3084, 2276, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3085, 2277, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3086, 2278, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3087, 2279, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3088, 2280, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3089, 2281, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3090, 2282, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3091, 2283, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3092, 2284, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3093, 2285, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3094, 2286, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3095, 2287, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3096, 2288, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3097, 2289, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3098, 2290, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3099, 2291, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3100, 2292, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3101, 2293, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3102, 2294, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3103, 2295, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3104, 2296, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3105, 2297, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3106, 2298, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3107, 2299, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3108, 2300, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3109, 2301, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3110, 2302, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3111, 2303, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3112, 2304, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3113, 2305, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3114, 2306, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3115, 2307, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3116, 2308, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3117, 2309, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3118, 2310, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3119, 2311, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3120, 2312, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3121, 2313, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3122, 2314, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3123, 2314, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3124, 2315, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3125, 2315, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3126, 2316, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3127, 2316, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3129, 2318, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3130, 2319, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3131, 2320, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3132, 2321, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3133, 2322, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3134, 2323, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3135, 2324, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3136, 2325, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3137, 2326, 'attr', 'subject', 'Phân quyền cho chuyên viên', 'Phân quyền cho tài khoản');
INSERT INTO public.journal_details VALUES (3138, 2327, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3139, 2328, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3140, 2329, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3141, 2330, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3142, 2331, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3143, 2332, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3144, 2333, 'attr', 'subject', 'Phân quyền cho tài khoản', 'Phân quyền');
INSERT INTO public.journal_details VALUES (3145, 2334, 'attr', 'subject', 'Import dữ liệu Excel theo mẫu đã chốt', 'Import dữ liệu');
INSERT INTO public.journal_details VALUES (3146, 2334, 'attr', 'parent_id', '631', NULL);
INSERT INTO public.journal_details VALUES (3147, 2335, 'attr', 'parent_id', '630', NULL);
INSERT INTO public.journal_details VALUES (3148, 2336, 'attr', 'parent_id', '625', NULL);
INSERT INTO public.journal_details VALUES (3149, 2337, 'attr', 'due_date', NULL, '2020-04-25');
INSERT INTO public.journal_details VALUES (3150, 2338, 'attr', 'due_date', '2020-04-26', '2020-04-27');
INSERT INTO public.journal_details VALUES (3151, 2338, 'attr', 'start_date', '2020-04-26', '2020-04-27');
INSERT INTO public.journal_details VALUES (3152, 2339, 'attr', 'due_date', '2020-04-26', '2020-04-27');
INSERT INTO public.journal_details VALUES (3153, 2339, 'attr', 'start_date', '2020-04-26', '2020-04-27');
INSERT INTO public.journal_details VALUES (3154, 2340, 'attr', 'due_date', NULL, '2020-04-25');
INSERT INTO public.journal_details VALUES (3155, 2341, 'attr', 'due_date', NULL, '2020-04-25');
INSERT INTO public.journal_details VALUES (3156, 2342, 'attr', 'subject', 'Kiểm tra có file cho check xanh', 'Kiểm tra có file cho check xanh UPDATE TỔNG SỐ DÒNG');
INSERT INTO public.journal_details VALUES (3157, 2343, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3158, 2344, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3159, 2345, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3161, 2347, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3162, 2348, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3163, 2349, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3164, 2350, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3165, 2351, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3166, 2352, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3167, 2353, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3168, 2354, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3169, 2355, 'attr', 'parent_id', NULL, '667');
INSERT INTO public.journal_details VALUES (3170, 2356, 'attr', 'parent_id', NULL, '667');
INSERT INTO public.journal_details VALUES (3171, 2357, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3172, 2358, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3173, 2359, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3174, 2360, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3175, 2361, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (3176, 2361, 'attr', 'done_ratio', '0', '60');
INSERT INTO public.journal_details VALUES (3177, 2362, 'attr', 'done_ratio', '0', '60');
INSERT INTO public.journal_details VALUES (3178, 2363, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (3179, 2364, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3180, 2365, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3181, 2366, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (3182, 2367, 'attr', 'subject', 'Nội dung 4 ( Người lao động không đủ điều kiện )', 'Nội dung 4.1 ( Người lao động không đủ điều kiện )');
INSERT INTO public.journal_details VALUES (3183, 2368, 'attr', 'subject', 'Thêm trường ( Công việc chính ) vào thêm mới', 'Thêm trường ( Công việc chính ) vào form');
INSERT INTO public.journal_details VALUES (3184, 2369, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3185, 2370, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3186, 2371, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3187, 2372, 'attr', 'due_date', NULL, '2020-04-28');
INSERT INTO public.journal_details VALUES (3188, 2372, 'attr', 'start_date', '2020-04-26', '2020-04-28');
INSERT INTO public.journal_details VALUES (3189, 2373, 'attr', 'due_date', NULL, '2020-04-28');
INSERT INTO public.journal_details VALUES (3190, 2373, 'attr', 'start_date', '2020-04-26', '2020-04-28');
INSERT INTO public.journal_details VALUES (3191, 2374, 'attr', 'due_date', NULL, '2020-04-28');
INSERT INTO public.journal_details VALUES (3192, 2374, 'attr', 'start_date', '2020-04-26', '2020-04-28');
INSERT INTO public.journal_details VALUES (3193, 2375, 'attr', 'due_date', NULL, '2020-04-28');
INSERT INTO public.journal_details VALUES (3194, 2375, 'attr', 'start_date', '2020-04-26', '2020-04-28');
INSERT INTO public.journal_details VALUES (3195, 2376, 'attr', 'due_date', NULL, '2020-04-28');
INSERT INTO public.journal_details VALUES (3196, 2376, 'attr', 'start_date', '2020-04-26', '2020-04-28');
INSERT INTO public.journal_details VALUES (3197, 2377, 'attr', 'due_date', NULL, '2020-04-28');
INSERT INTO public.journal_details VALUES (3198, 2377, 'attr', 'start_date', '2020-04-26', '2020-04-28');
INSERT INTO public.journal_details VALUES (3199, 2378, 'attr', 'subject', 'Ký số', 'Ký số file chốt xã');
INSERT INTO public.journal_details VALUES (3200, 2378, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (3201, 2379, 'attr', 'parent_id', NULL, '647');
INSERT INTO public.journal_details VALUES (3202, 2380, 'attr', 'due_date', '2020-04-23', '2020-04-28');
INSERT INTO public.journal_details VALUES (3203, 2380, 'attr', 'start_date', '2020-04-23', '2020-04-28');
INSERT INTO public.journal_details VALUES (3206, 2382, 'attr', 'due_date', '2020-04-26', '2020-04-28');
INSERT INTO public.journal_details VALUES (3207, 2382, 'attr', 'start_date', '2020-04-26', '2020-04-28');
INSERT INTO public.journal_details VALUES (3208, 2383, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3209, 2384, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3210, 2385, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3211, 2386, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3212, 2387, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3213, 2388, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3214, 2389, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3215, 2390, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3216, 2391, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3217, 2392, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3218, 2393, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3219, 2394, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3220, 2395, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3221, 2396, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3222, 2397, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3223, 2398, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3224, 2399, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3225, 2400, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3226, 2401, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3227, 2402, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3228, 2403, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3229, 2404, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3230, 2405, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3231, 2406, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3232, 2407, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3233, 2408, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3234, 2409, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3235, 2410, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3236, 2411, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3237, 2412, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3238, 2413, 'attr', 'due_date', NULL, '2020-05-05');
INSERT INTO public.journal_details VALUES (3239, 2413, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3240, 2413, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3241, 2414, 'attr', 'due_date', NULL, '2020-05-05');
INSERT INTO public.journal_details VALUES (3244, 2416, 'attr', 'due_date', '2020-04-24', '2020-05-06');
INSERT INTO public.journal_details VALUES (3245, 2416, 'attr', 'start_date', '2020-04-24', '2020-05-06');
INSERT INTO public.journal_details VALUES (3248, 2418, 'attr', 'due_date', '2020-04-27', '2020-05-06');
INSERT INTO public.journal_details VALUES (3249, 2418, 'attr', 'start_date', '2020-04-27', '2020-05-06');
INSERT INTO public.journal_details VALUES (3250, 2419, 'attr', 'due_date', '2020-04-25', '2020-05-06');
INSERT INTO public.journal_details VALUES (3251, 2419, 'attr', 'start_date', '2020-04-25', '2020-05-06');
INSERT INTO public.journal_details VALUES (3252, 2420, 'attr', 'due_date', NULL, '2020-05-06');
INSERT INTO public.journal_details VALUES (3253, 2420, 'attr', 'start_date', '2020-04-26', '2020-05-06');
INSERT INTO public.journal_details VALUES (3256, 2422, 'attr', 'due_date', '2020-04-28', '2020-05-06');
INSERT INTO public.journal_details VALUES (3257, 2422, 'attr', 'start_date', '2020-04-28', '2020-05-06');
INSERT INTO public.journal_details VALUES (3258, 2423, 'attr', 'due_date', '2020-04-29', '2020-05-06');
INSERT INTO public.journal_details VALUES (3259, 2423, 'attr', 'start_date', '2020-04-29', '2020-05-06');
INSERT INTO public.journal_details VALUES (3262, 2425, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3263, 2426, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3264, 2427, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3265, 2428, 'attr', 'due_date', '2020-05-06', '2020-05-07');
INSERT INTO public.journal_details VALUES (3266, 2428, 'attr', 'start_date', '2020-05-06', '2020-05-07');
INSERT INTO public.journal_details VALUES (3267, 2429, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3268, 2430, 'attr', 'due_date', '2020-05-06', '2020-05-07');
INSERT INTO public.journal_details VALUES (3269, 2430, 'attr', 'start_date', '2020-05-06', '2020-05-07');
INSERT INTO public.journal_details VALUES (3270, 2431, 'attr', 'due_date', '2020-05-06', '2020-05-07');
INSERT INTO public.journal_details VALUES (3271, 2431, 'attr', 'start_date', '2020-05-06', '2020-05-07');
INSERT INTO public.journal_details VALUES (3272, 2432, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3273, 2433, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3276, 2435, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3277, 2436, 'attr', 'due_date', '2020-05-06', '2020-05-07');
INSERT INTO public.journal_details VALUES (3278, 2436, 'attr', 'start_date', '2020-05-06', '2020-05-07');
INSERT INTO public.journal_details VALUES (3279, 2437, 'attr', 'due_date', '2020-05-06', '2020-05-07');
INSERT INTO public.journal_details VALUES (3280, 2437, 'attr', 'start_date', '2020-05-06', '2020-05-07');
INSERT INTO public.journal_details VALUES (3281, 2438, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3284, 2440, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3285, 2441, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3286, 2442, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3287, 2443, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3288, 2444, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3289, 2445, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3290, 2446, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3291, 2447, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3292, 2448, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3293, 2449, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3294, 2450, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3295, 2451, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3296, 2452, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3297, 2453, 'attr', 'due_date', '2020-04-27', '2020-05-06');
INSERT INTO public.journal_details VALUES (3298, 2453, 'attr', 'start_date', '2020-04-27', '2020-05-06');
INSERT INTO public.journal_details VALUES (3299, 2454, 'attr', 'due_date', '2020-04-28', '2020-05-06');
INSERT INTO public.journal_details VALUES (3300, 2454, 'attr', 'start_date', '2020-04-28', '2020-05-06');
INSERT INTO public.journal_details VALUES (3301, 2455, 'attr', 'due_date', NULL, '2020-05-06');
INSERT INTO public.journal_details VALUES (3302, 2455, 'attr', 'start_date', '2020-04-21', '2020-05-06');
INSERT INTO public.journal_details VALUES (3306, 2458, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3307, 2459, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3308, 2460, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3309, 2461, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3310, 2462, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3311, 2463, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3312, 2464, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3313, 2465, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3314, 2466, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3315, 2467, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3316, 2468, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3317, 2469, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3318, 2470, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3319, 2471, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3320, 2472, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3321, 2473, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3322, 2474, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3323, 2475, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3324, 2476, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3325, 2477, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3326, 2478, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3327, 2479, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3328, 2480, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3329, 2481, 'attr', 'due_date', '2020-05-16', '2020-04-16');
INSERT INTO public.journal_details VALUES (3330, 2481, 'attr', 'start_date', '2020-05-07', '2020-04-14');
INSERT INTO public.journal_details VALUES (3331, 2482, 'attr', 'due_date', '2020-05-16', '2020-04-16');
INSERT INTO public.journal_details VALUES (3332, 2482, 'attr', 'start_date', '2020-05-14', '2020-04-14');
INSERT INTO public.journal_details VALUES (3333, 2483, 'attr', 'due_date', '2020-05-16', '2020-04-16');
INSERT INTO public.journal_details VALUES (3334, 2483, 'attr', 'start_date', '2020-05-14', '2020-04-14');
INSERT INTO public.journal_details VALUES (3335, 2484, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3336, 2485, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3337, 2486, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3338, 2487, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3339, 2488, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3340, 2489, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3341, 2490, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3342, 2491, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3343, 2492, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3344, 2493, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3345, 2494, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3346, 2495, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3347, 2496, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3348, 2497, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3349, 2498, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3350, 2499, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3351, 2500, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3352, 2501, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3353, 2502, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3354, 2503, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3355, 2504, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3356, 2505, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3357, 2506, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3358, 2507, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3359, 2508, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3360, 2509, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3361, 2510, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3362, 2511, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (3363, 2512, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (3364, 2513, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3365, 2514, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3366, 2515, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3367, 2516, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3368, 2517, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3369, 2518, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3370, 2519, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3371, 2520, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3372, 2521, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3373, 2522, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3374, 2523, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3375, 2524, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3376, 2525, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3377, 2526, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3378, 2527, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3379, 2528, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3380, 2529, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3381, 2530, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3382, 2531, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3383, 2532, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3384, 2533, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3385, 2534, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3386, 2535, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3387, 2536, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3388, 2537, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3389, 2538, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3390, 2539, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3391, 2540, 'attr', 'due_date', NULL, '2020-05-09');
INSERT INTO public.journal_details VALUES (3392, 2540, 'attr', 'start_date', '2020-05-08', '2020-05-09');
INSERT INTO public.journal_details VALUES (3393, 2541, 'attr', 'due_date', NULL, '2020-05-09');
INSERT INTO public.journal_details VALUES (3394, 2541, 'attr', 'start_date', '2020-05-08', '2020-05-09');
INSERT INTO public.journal_details VALUES (3395, 2542, 'attr', 'due_date', NULL, '2020-05-09');
INSERT INTO public.journal_details VALUES (3396, 2542, 'attr', 'start_date', '2020-05-08', '2020-05-09');
INSERT INTO public.journal_details VALUES (3397, 2543, 'attr', 'due_date', NULL, '2020-05-09');
INSERT INTO public.journal_details VALUES (3398, 2543, 'attr', 'start_date', '2020-05-08', '2020-05-09');
INSERT INTO public.journal_details VALUES (3399, 2544, 'attr', 'due_date', NULL, '2020-05-09');
INSERT INTO public.journal_details VALUES (3400, 2544, 'attr', 'start_date', '2020-05-08', '2020-05-09');
INSERT INTO public.journal_details VALUES (3401, 2545, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3402, 2546, 'attr', 'subject', 'API quản trị: vaitro/thiet-lap-quyen bị lỗi post thành công nhưng không lưu vào database', 'vaitro/thiet-lap-quyen chưa được');
INSERT INTO public.journal_details VALUES (3403, 2547, 'attr', 'due_date', NULL, '2020-05-11');
INSERT INTO public.journal_details VALUES (3404, 2547, 'attr', 'start_date', '2020-05-08', '2020-05-11');
INSERT INTO public.journal_details VALUES (3409, 2550, 'attr', 'due_date', NULL, '2020-05-11');
INSERT INTO public.journal_details VALUES (3410, 2550, 'attr', 'start_date', '2020-05-08', '2020-05-11');
INSERT INTO public.journal_details VALUES (3411, 2551, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3412, 2552, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3413, 2553, 'attr', 'due_date', NULL, '2020-05-09');
INSERT INTO public.journal_details VALUES (3414, 2553, 'attr', 'start_date', '2020-05-06', '2020-05-09');
INSERT INTO public.journal_details VALUES (3415, 2554, 'attr', 'subject', 'Sửa lại tất cả các bản xuất báo cáo theo đúng mẫu', 'Báo cáo');
INSERT INTO public.journal_details VALUES (3416, 2554, 'attr', 'parent_id', '330', NULL);
INSERT INTO public.journal_details VALUES (3418, 2556, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3419, 2557, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3420, 2558, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3421, 2559, 'attr', 'due_date', '2020-05-07', '2020-05-11');
INSERT INTO public.journal_details VALUES (3422, 2559, 'attr', 'start_date', '2020-05-07', '2020-05-11');
INSERT INTO public.journal_details VALUES (3425, 2561, 'attr', 'due_date', '2020-05-06', '2020-05-11');
INSERT INTO public.journal_details VALUES (3426, 2561, 'attr', 'start_date', '2020-05-06', '2020-05-11');
INSERT INTO public.journal_details VALUES (3427, 2562, 'attr', 'due_date', '2020-05-05', '2020-05-11');
INSERT INTO public.journal_details VALUES (3428, 2562, 'attr', 'start_date', '2020-05-05', '2020-05-11');
INSERT INTO public.journal_details VALUES (3429, 2563, 'attr', 'due_date', '2020-05-06', '2020-05-11');
INSERT INTO public.journal_details VALUES (3430, 2563, 'attr', 'start_date', '2020-05-06', '2020-05-11');
INSERT INTO public.journal_details VALUES (3431, 2564, 'attr', 'due_date', '2020-05-06', '2020-05-11');
INSERT INTO public.journal_details VALUES (3432, 2564, 'attr', 'start_date', '2020-05-06', '2020-05-11');
INSERT INTO public.journal_details VALUES (3433, 2565, 'attr', 'due_date', '2020-05-06', '2020-05-11');
INSERT INTO public.journal_details VALUES (3434, 2565, 'attr', 'start_date', '2020-05-06', '2020-05-11');
INSERT INTO public.journal_details VALUES (3439, 2568, 'attr', 'due_date', '2020-05-11', '2020-05-16');
INSERT INTO public.journal_details VALUES (3440, 2568, 'attr', 'start_date', '2020-05-11', '2020-05-16');
INSERT INTO public.journal_details VALUES (3441, 2569, 'attr', 'parent_id', '330', '608');
INSERT INTO public.journal_details VALUES (3442, 2570, 'attr', 'due_date', '2020-05-11', '2020-05-09');
INSERT INTO public.journal_details VALUES (3443, 2570, 'attr', 'start_date', '2020-05-11', '2020-05-09');
INSERT INTO public.journal_details VALUES (3444, 2571, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3445, 2572, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3446, 2573, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3447, 2574, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3448, 2575, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (3449, 2576, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (3450, 2577, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (3451, 2578, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (3452, 2579, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (3453, 2580, 'attr', 'subject', 'Danh sách học viên sort ABC', 'Danh sách học viên sort ABC (3)');
INSERT INTO public.journal_details VALUES (3454, 2581, 'attr', 'subject', 'Bảng điểm thi hết học phần', 'Bảng điểm thi hết học phần (5-6)');
INSERT INTO public.journal_details VALUES (3455, 2582, 'attr', 'due_date', NULL, '2020-05-11');
INSERT INTO public.journal_details VALUES (3456, 2583, 'attr', 'subject', 'Bảng kết quả học tập và rèn luyện theo học viên', 'Bảng kết quả học tập và rèn luyện theo học viên (8)');
INSERT INTO public.journal_details VALUES (3457, 2584, 'attr', 'subject', 'Bảng theo dõi giờ giảng', 'Bảng theo dõi giờ giảng (11)');
INSERT INTO public.journal_details VALUES (3458, 2585, 'attr', 'due_date', '2020-05-09', '2020-05-11');
INSERT INTO public.journal_details VALUES (3459, 2585, 'attr', 'start_date', '2020-05-09', '2020-05-11');
INSERT INTO public.journal_details VALUES (3460, 2586, 'attr', 'due_date', '2020-05-11', '2020-05-12');
INSERT INTO public.journal_details VALUES (3461, 2586, 'attr', 'start_date', '2020-05-11', '2020-05-12');
INSERT INTO public.journal_details VALUES (3462, 2587, 'attr', 'due_date', '2020-05-11', '2020-05-12');
INSERT INTO public.journal_details VALUES (3463, 2587, 'attr', 'start_date', '2020-05-11', '2020-05-12');
INSERT INTO public.journal_details VALUES (3464, 2588, 'attr', 'due_date', '2020-05-11', '2020-05-13');
INSERT INTO public.journal_details VALUES (3465, 2588, 'attr', 'start_date', '2020-05-11', '2020-05-13');
INSERT INTO public.journal_details VALUES (3466, 2589, 'attr', 'due_date', '2020-05-11', '2020-05-14');
INSERT INTO public.journal_details VALUES (3467, 2589, 'attr', 'start_date', '2020-05-11', '2020-05-14');
INSERT INTO public.journal_details VALUES (3468, 2590, 'attr', 'due_date', '2020-05-11', '2020-05-14');
INSERT INTO public.journal_details VALUES (3469, 2590, 'attr', 'start_date', '2020-05-11', '2020-05-14');
INSERT INTO public.journal_details VALUES (3470, 2591, 'attr', 'due_date', '2020-05-11', '2020-05-15');
INSERT INTO public.journal_details VALUES (3471, 2591, 'attr', 'start_date', '2020-05-11', '2020-05-15');
INSERT INTO public.journal_details VALUES (3472, 2592, 'attr', 'due_date', NULL, '2020-05-15');
INSERT INTO public.journal_details VALUES (3473, 2592, 'attr', 'start_date', '2020-05-11', '2020-05-15');
INSERT INTO public.journal_details VALUES (3474, 2593, 'attr', 'due_date', '2020-05-11', '2020-05-16');
INSERT INTO public.journal_details VALUES (3475, 2593, 'attr', 'start_date', '2020-05-11', '2020-05-16');
INSERT INTO public.journal_details VALUES (3476, 2594, 'attr', 'due_date', '2020-05-11', '2020-05-16');
INSERT INTO public.journal_details VALUES (3477, 2594, 'attr', 'start_date', '2020-05-11', '2020-05-16');
INSERT INTO public.journal_details VALUES (3478, 2595, 'attr', 'due_date', '2020-05-06', '2020-05-11');
INSERT INTO public.journal_details VALUES (3479, 2595, 'attr', 'start_date', '2020-05-06', '2020-05-11');
INSERT INTO public.journal_details VALUES (3482, 2597, 'attr', 'due_date', '2020-05-09', '2020-05-12');
INSERT INTO public.journal_details VALUES (3483, 2597, 'attr', 'start_date', '2020-05-09', '2020-05-12');
INSERT INTO public.journal_details VALUES (3484, 2598, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3485, 2599, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3486, 2600, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3487, 2601, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3488, 2602, 'attr', 'due_date', NULL, '2020-05-12');
INSERT INTO public.journal_details VALUES (3489, 2603, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3490, 2603, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3491, 2604, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3492, 2604, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3493, 2605, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3494, 2605, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3495, 2606, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3496, 2606, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3497, 2607, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3498, 2608, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3499, 2609, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3500, 2610, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3501, 2611, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3502, 2612, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3503, 2613, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3504, 2614, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3505, 2615, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3507, 2617, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3508, 2618, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3509, 2619, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3510, 2620, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3511, 2621, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3512, 2622, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3513, 2623, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3514, 2624, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3515, 2625, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3516, 2626, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3517, 2627, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3518, 2628, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3519, 2629, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3520, 2630, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3521, 2631, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3522, 2632, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3523, 2633, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3524, 2634, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3525, 2635, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3526, 2636, 'attr', 'parent_id', '611', '330');
INSERT INTO public.journal_details VALUES (3527, 2637, 'attr', 'parent_id', '330', '608');
INSERT INTO public.journal_details VALUES (3528, 2638, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3529, 2639, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3532, 2641, 'attr', 'due_date', '2020-05-12', '2020-05-15');
INSERT INTO public.journal_details VALUES (3533, 2641, 'attr', 'start_date', '2020-05-12', '2020-05-15');
INSERT INTO public.journal_details VALUES (3534, 2642, 'attr', 'due_date', '2020-05-15', '2020-05-14');
INSERT INTO public.journal_details VALUES (3535, 2642, 'attr', 'start_date', '2020-05-15', '2020-05-14');
INSERT INTO public.journal_details VALUES (3536, 2643, 'attr', 'due_date', '2020-05-11', '2020-05-14');
INSERT INTO public.journal_details VALUES (3537, 2643, 'attr', 'start_date', '2020-05-11', '2020-05-14');
INSERT INTO public.journal_details VALUES (3538, 2644, 'attr', 'due_date', '2020-05-11', '2020-05-14');
INSERT INTO public.journal_details VALUES (3539, 2644, 'attr', 'start_date', '2020-05-11', '2020-05-14');
INSERT INTO public.journal_details VALUES (3540, 2645, 'attr', 'due_date', '2020-05-12', '2020-05-14');
INSERT INTO public.journal_details VALUES (3541, 2645, 'attr', 'start_date', '2020-05-12', '2020-05-14');
INSERT INTO public.journal_details VALUES (3542, 2646, 'attr', 'due_date', '2020-05-12', '2020-05-14');
INSERT INTO public.journal_details VALUES (3543, 2646, 'attr', 'start_date', '2020-05-12', '2020-05-14');
INSERT INTO public.journal_details VALUES (3544, 2647, 'attr', 'due_date', '2020-05-13', '2020-05-14');
INSERT INTO public.journal_details VALUES (3545, 2647, 'attr', 'start_date', '2020-05-13', '2020-05-14');
INSERT INTO public.journal_details VALUES (3546, 2648, 'attr', 'due_date', NULL, '2020-05-15');
INSERT INTO public.journal_details VALUES (3547, 2648, 'attr', 'start_date', '2020-05-14', '2020-05-15');
INSERT INTO public.journal_details VALUES (3549, 2650, 'attr', 'parent_id', '330', '608');
INSERT INTO public.journal_details VALUES (3550, 2651, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3551, 2652, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3552, 2653, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (3553, 2654, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (3554, 2655, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (3555, 2656, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (3556, 2657, 'attr', 'due_date', '2020-05-14', '2020-05-15');
INSERT INTO public.journal_details VALUES (3557, 2657, 'attr', 'start_date', '2020-05-14', '2020-05-15');
INSERT INTO public.journal_details VALUES (3558, 2658, 'attr', 'due_date', '2020-05-14', '2020-05-15');
INSERT INTO public.journal_details VALUES (3559, 2658, 'attr', 'start_date', '2020-05-14', '2020-05-15');
INSERT INTO public.journal_details VALUES (3560, 2659, 'attr', 'due_date', '2020-05-14', '2020-05-15');
INSERT INTO public.journal_details VALUES (3561, 2659, 'attr', 'start_date', '2020-05-14', '2020-05-15');
INSERT INTO public.journal_details VALUES (3562, 2660, 'attr', 'due_date', '2020-05-14', '2020-05-15');
INSERT INTO public.journal_details VALUES (3563, 2660, 'attr', 'start_date', '2020-05-14', '2020-05-15');
INSERT INTO public.journal_details VALUES (3564, 2661, 'attr', 'due_date', '2020-05-14', '2020-05-16');
INSERT INTO public.journal_details VALUES (3565, 2661, 'attr', 'start_date', '2020-05-14', '2020-05-16');
INSERT INTO public.journal_details VALUES (3566, 2662, 'attr', 'due_date', '2020-05-14', '2020-05-16');
INSERT INTO public.journal_details VALUES (3567, 2662, 'attr', 'start_date', '2020-05-14', '2020-05-16');
INSERT INTO public.journal_details VALUES (3568, 2663, 'attr', 'due_date', '2020-05-14', '2020-05-16');
INSERT INTO public.journal_details VALUES (3569, 2663, 'attr', 'start_date', '2020-05-14', '2020-05-16');
INSERT INTO public.journal_details VALUES (3570, 2664, 'attr', 'due_date', '2020-05-15', '2020-05-16');
INSERT INTO public.journal_details VALUES (3571, 2664, 'attr', 'start_date', '2020-05-15', '2020-05-16');
INSERT INTO public.journal_details VALUES (3572, 2665, 'attr', 'due_date', '2020-05-15', '2020-05-16');
INSERT INTO public.journal_details VALUES (3573, 2665, 'attr', 'start_date', '2020-05-15', '2020-05-16');
INSERT INTO public.journal_details VALUES (3574, 2666, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3575, 2667, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3576, 2669, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3577, 2670, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3578, 2671, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (3579, 2672, 'attr', 'due_date', NULL, '2020-05-18');
INSERT INTO public.journal_details VALUES (3580, 2672, 'attr', 'start_date', '2020-05-08', '2020-05-18');
INSERT INTO public.journal_details VALUES (3581, 2673, 'attr', 'due_date', NULL, '2020-05-18');
INSERT INTO public.journal_details VALUES (3582, 2673, 'attr', 'start_date', '2020-05-08', '2020-05-18');
INSERT INTO public.journal_details VALUES (3583, 2674, 'attr', 'due_date', NULL, '2020-05-18');
INSERT INTO public.journal_details VALUES (3584, 2674, 'attr', 'start_date', '2020-05-08', '2020-05-18');
INSERT INTO public.journal_details VALUES (3585, 2675, 'attr', 'due_date', NULL, '2020-05-18');
INSERT INTO public.journal_details VALUES (3586, 2675, 'attr', 'start_date', '2020-05-08', '2020-05-18');
INSERT INTO public.journal_details VALUES (3587, 2676, 'attr', 'due_date', NULL, '2020-05-18');
INSERT INTO public.journal_details VALUES (3588, 2676, 'attr', 'start_date', '2020-05-08', '2020-05-18');
INSERT INTO public.journal_details VALUES (3589, 2677, 'attr', 'due_date', NULL, '2020-05-18');
INSERT INTO public.journal_details VALUES (3590, 2677, 'attr', 'start_date', '2020-05-08', '2020-05-18');
INSERT INTO public.journal_details VALUES (3591, 2678, 'attr', 'due_date', NULL, '2020-05-18');
INSERT INTO public.journal_details VALUES (3592, 2678, 'attr', 'start_date', '2020-05-08', '2020-05-18');
INSERT INTO public.journal_details VALUES (3593, 2679, 'attr', 'due_date', NULL, '2020-05-18');
INSERT INTO public.journal_details VALUES (3594, 2679, 'attr', 'start_date', '2020-05-08', '2020-05-18');
INSERT INTO public.journal_details VALUES (3595, 2680, 'attr', 'due_date', NULL, '2020-05-18');
INSERT INTO public.journal_details VALUES (3596, 2680, 'attr', 'start_date', '2020-05-08', '2020-05-18');
INSERT INTO public.journal_details VALUES (3597, 2681, 'attr', 'due_date', NULL, '2020-05-18');
INSERT INTO public.journal_details VALUES (3598, 2681, 'attr', 'start_date', '2020-05-08', '2020-05-18');
INSERT INTO public.journal_details VALUES (3599, 2682, 'attr', 'due_date', NULL, '2020-05-23');
INSERT INTO public.journal_details VALUES (3600, 2682, 'attr', 'start_date', '2020-05-08', '2020-05-23');
INSERT INTO public.journal_details VALUES (3601, 2683, 'attr', 'due_date', NULL, '2020-05-23');
INSERT INTO public.journal_details VALUES (3602, 2683, 'attr', 'start_date', '2020-05-08', '2020-05-23');
INSERT INTO public.journal_details VALUES (3603, 2684, 'attr', 'due_date', '2020-05-15', '2020-05-18');
INSERT INTO public.journal_details VALUES (3604, 2684, 'attr', 'start_date', '2020-05-15', '2020-05-18');
INSERT INTO public.journal_details VALUES (3605, 2685, 'attr', 'due_date', '2020-05-15', '2020-05-18');
INSERT INTO public.journal_details VALUES (3606, 2685, 'attr', 'start_date', '2020-05-15', '2020-05-18');
INSERT INTO public.journal_details VALUES (3607, 2686, 'attr', 'due_date', '2020-05-16', '2020-05-20');
INSERT INTO public.journal_details VALUES (3608, 2686, 'attr', 'start_date', '2020-05-16', '2020-05-20');
INSERT INTO public.journal_details VALUES (3609, 2687, 'attr', 'due_date', '2020-05-16', '2020-05-20');
INSERT INTO public.journal_details VALUES (3610, 2687, 'attr', 'start_date', '2020-05-16', '2020-05-20');
INSERT INTO public.journal_details VALUES (3611, 2688, 'attr', 'due_date', '2020-05-16', '2020-05-20');
INSERT INTO public.journal_details VALUES (3612, 2688, 'attr', 'start_date', '2020-05-16', '2020-05-20');
INSERT INTO public.journal_details VALUES (3613, 2689, 'attr', 'due_date', '2020-05-16', '2020-05-20');
INSERT INTO public.journal_details VALUES (3614, 2689, 'attr', 'start_date', '2020-05-16', '2020-05-20');
INSERT INTO public.journal_details VALUES (3615, 2690, 'attr', 'due_date', '2020-05-16', '2020-05-20');
INSERT INTO public.journal_details VALUES (3616, 2690, 'attr', 'start_date', '2020-05-16', '2020-05-20');
INSERT INTO public.journal_details VALUES (3617, 2691, 'attr', 'due_date', '2020-05-16', '2020-05-20');
INSERT INTO public.journal_details VALUES (3618, 2691, 'attr', 'start_date', '2020-05-16', '2020-05-20');
INSERT INTO public.journal_details VALUES (3619, 2692, 'attr', 'due_date', '2020-05-16', '2020-05-20');
INSERT INTO public.journal_details VALUES (3620, 2692, 'attr', 'start_date', '2020-05-16', '2020-05-20');
INSERT INTO public.journal_details VALUES (3621, 2693, 'attr', 'due_date', '2020-05-15', '2020-05-16');
INSERT INTO public.journal_details VALUES (3622, 2693, 'attr', 'start_date', '2020-05-15', '2020-05-16');
INSERT INTO public.journal_details VALUES (3623, 2694, 'attr', 'due_date', '2020-05-14', '2020-05-16');
INSERT INTO public.journal_details VALUES (3624, 2694, 'attr', 'start_date', '2020-05-14', '2020-05-16');
INSERT INTO public.journal_details VALUES (3625, 2695, 'attr', 'due_date', '2020-05-14', '2020-05-16');
INSERT INTO public.journal_details VALUES (3626, 2695, 'attr', 'start_date', '2020-05-14', '2020-05-16');
INSERT INTO public.journal_details VALUES (3627, 2696, 'attr', 'due_date', '2020-05-15', '2020-05-16');
INSERT INTO public.journal_details VALUES (3628, 2696, 'attr', 'start_date', '2020-05-15', '2020-05-16');
INSERT INTO public.journal_details VALUES (3629, 2697, 'attr', 'due_date', NULL, '2020-05-16');
INSERT INTO public.journal_details VALUES (3630, 2697, 'attr', 'start_date', '2020-05-14', '2020-05-16');
INSERT INTO public.journal_details VALUES (3631, 2698, 'attr', 'due_date', '2020-05-11', '2020-05-16');
INSERT INTO public.journal_details VALUES (3632, 2698, 'attr', 'start_date', '2020-05-11', '2020-05-16');
INSERT INTO public.journal_details VALUES (3633, 2699, 'attr', 'due_date', NULL, '2020-05-16');
INSERT INTO public.journal_details VALUES (3634, 2699, 'attr', 'start_date', '2020-05-14', '2020-05-16');
INSERT INTO public.journal_details VALUES (3635, 2700, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3636, 2701, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3637, 2702, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3638, 2703, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3639, 2704, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3640, 2705, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3641, 2706, 'attr', 'due_date', '2020-05-18', '2020-05-15');
INSERT INTO public.journal_details VALUES (3642, 2706, 'attr', 'start_date', '2020-05-18', '2020-05-15');
INSERT INTO public.journal_details VALUES (3643, 2707, 'attr', 'due_date', '2020-05-15', '2020-05-16');
INSERT INTO public.journal_details VALUES (3644, 2707, 'attr', 'start_date', '2020-05-15', '2020-05-16');
INSERT INTO public.journal_details VALUES (3645, 2708, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (3646, 2709, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (3647, 2710, 'attr', 'assigned_to_id', '4', '10');
INSERT INTO public.journal_details VALUES (3648, 2711, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (3649, 2712, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3650, 2713, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (3651, 2714, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (3652, 2715, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (3653, 2716, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (3654, 2717, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (3655, 2718, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (3656, 2719, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (3657, 2720, 'attr', 'due_date', NULL, '2020-05-20');
INSERT INTO public.journal_details VALUES (3659, 2722, 'attr', 'due_date', NULL, '2020-05-20');
INSERT INTO public.journal_details VALUES (3660, 2722, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (3661, 2723, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (3662, 2724, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (3664, 2726, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3665, 2727, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3666, 2728, 'attr', 'due_date', '2020-05-20', '2020-05-23');
INSERT INTO public.journal_details VALUES (3667, 2728, 'attr', 'start_date', '2020-05-20', '2020-05-23');
INSERT INTO public.journal_details VALUES (3668, 2729, 'attr', 'due_date', '2020-05-20', '2020-05-23');
INSERT INTO public.journal_details VALUES (3669, 2729, 'attr', 'start_date', '2020-05-20', '2020-05-23');
INSERT INTO public.journal_details VALUES (3670, 2730, 'attr', 'due_date', '2020-05-20', '2020-05-22');
INSERT INTO public.journal_details VALUES (3671, 2730, 'attr', 'start_date', '2020-05-20', '2020-05-22');
INSERT INTO public.journal_details VALUES (3672, 2731, 'attr', 'due_date', '2020-05-20', '2020-05-22');
INSERT INTO public.journal_details VALUES (3673, 2731, 'attr', 'start_date', '2020-05-20', '2020-05-22');
INSERT INTO public.journal_details VALUES (3674, 2732, 'attr', 'due_date', '2020-05-20', '2020-05-21');
INSERT INTO public.journal_details VALUES (3675, 2732, 'attr', 'start_date', '2020-05-20', '2020-05-21');
INSERT INTO public.journal_details VALUES (3676, 2733, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3677, 2734, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3678, 2735, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3679, 2736, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3680, 2737, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3681, 2738, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3682, 2739, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3683, 2741, 'attr', 'assigned_to_id', '10', '4');
INSERT INTO public.journal_details VALUES (3684, 2742, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (3685, 2743, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3686, 2743, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3687, 2744, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3688, 2744, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3689, 2745, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3690, 2745, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3691, 2746, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3692, 2746, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3693, 2747, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3694, 2747, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3703, 2751, 'attr', 'due_date', '2020-05-20', '2020-05-16');
INSERT INTO public.journal_details VALUES (3704, 2752, 'attr', 'due_date', '2020-05-20', '2020-05-19');
INSERT INTO public.journal_details VALUES (3705, 2752, 'attr', 'start_date', '2020-05-16', '2020-05-19');
INSERT INTO public.journal_details VALUES (3706, 2753, 'attr', 'due_date', '2020-05-20', '2020-05-19');
INSERT INTO public.journal_details VALUES (3707, 2753, 'attr', 'start_date', '2020-05-16', '2020-05-19');
INSERT INTO public.journal_details VALUES (3708, 2754, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3709, 2755, 'attr', 'subject', 'Phân quyền menu', 'Load menu theo phân quyền');
INSERT INTO public.journal_details VALUES (3710, 2756, 'attr', 'due_date', '2020-05-18', '2020-05-21');
INSERT INTO public.journal_details VALUES (3711, 2756, 'attr', 'start_date', '2020-05-18', '2020-05-21');
INSERT INTO public.journal_details VALUES (3712, 2757, 'attr', 'due_date', '2020-05-18', '2020-05-21');
INSERT INTO public.journal_details VALUES (3713, 2757, 'attr', 'start_date', '2020-05-18', '2020-05-21');
INSERT INTO public.journal_details VALUES (3714, 2758, 'attr', 'due_date', '2020-05-18', '2020-05-21');
INSERT INTO public.journal_details VALUES (3715, 2758, 'attr', 'start_date', '2020-05-18', '2020-05-21');
INSERT INTO public.journal_details VALUES (3716, 2759, 'attr', 'due_date', '2020-05-18', '2020-05-21');
INSERT INTO public.journal_details VALUES (3717, 2759, 'attr', 'start_date', '2020-05-18', '2020-05-21');
INSERT INTO public.journal_details VALUES (3718, 2760, 'attr', 'due_date', '2020-05-18', '2020-05-21');
INSERT INTO public.journal_details VALUES (3719, 2760, 'attr', 'start_date', '2020-05-18', '2020-05-21');
INSERT INTO public.journal_details VALUES (3720, 2761, 'attr', 'due_date', '2020-05-18', '2020-05-21');
INSERT INTO public.journal_details VALUES (3721, 2761, 'attr', 'start_date', '2020-05-18', '2020-05-21');
INSERT INTO public.journal_details VALUES (3722, 2762, 'attr', 'due_date', '2020-05-18', '2020-05-21');
INSERT INTO public.journal_details VALUES (3723, 2762, 'attr', 'start_date', '2020-05-18', '2020-05-21');
INSERT INTO public.journal_details VALUES (3724, 2763, 'attr', 'due_date', '2020-05-18', '2020-05-21');
INSERT INTO public.journal_details VALUES (3725, 2763, 'attr', 'start_date', '2020-05-18', '2020-05-21');
INSERT INTO public.journal_details VALUES (3726, 2764, 'attr', 'due_date', '2020-05-18', '2020-05-21');
INSERT INTO public.journal_details VALUES (3727, 2764, 'attr', 'start_date', '2020-05-18', '2020-05-21');
INSERT INTO public.journal_details VALUES (3728, 2765, 'attr', 'due_date', '2020-05-18', '2020-05-21');
INSERT INTO public.journal_details VALUES (3729, 2765, 'attr', 'start_date', '2020-05-18', '2020-05-21');
INSERT INTO public.journal_details VALUES (3730, 2766, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3731, 2767, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3732, 2768, 'attr', 'subject', 'Phân quyền người dùng', 'Phân quyền dữ liệu');
INSERT INTO public.journal_details VALUES (3733, 2769, 'attr', 'due_date', '2020-05-21', '2020-05-25');
INSERT INTO public.journal_details VALUES (3734, 2769, 'attr', 'start_date', '2020-05-21', '2020-05-25');
INSERT INTO public.journal_details VALUES (3735, 2770, 'attr', 'due_date', '2020-05-21', '2020-05-25');
INSERT INTO public.journal_details VALUES (3736, 2770, 'attr', 'start_date', '2020-05-21', '2020-05-25');
INSERT INTO public.journal_details VALUES (3737, 2771, 'attr', 'due_date', '2020-05-21', '2020-05-25');
INSERT INTO public.journal_details VALUES (3738, 2771, 'attr', 'start_date', '2020-05-21', '2020-05-25');
INSERT INTO public.journal_details VALUES (3739, 2772, 'attr', 'due_date', '2020-05-21', '2020-05-25');
INSERT INTO public.journal_details VALUES (3740, 2772, 'attr', 'start_date', '2020-05-21', '2020-05-25');
INSERT INTO public.journal_details VALUES (3741, 2773, 'attr', 'due_date', '2020-05-21', '2020-05-25');
INSERT INTO public.journal_details VALUES (3742, 2773, 'attr', 'start_date', '2020-05-21', '2020-05-25');
INSERT INTO public.journal_details VALUES (3743, 2774, 'attr', 'due_date', '2020-05-21', '2020-05-25');
INSERT INTO public.journal_details VALUES (3744, 2774, 'attr', 'start_date', '2020-05-21', '2020-05-25');
INSERT INTO public.journal_details VALUES (3745, 2775, 'attr', 'due_date', '2020-05-21', '2020-05-25');
INSERT INTO public.journal_details VALUES (3746, 2775, 'attr', 'start_date', '2020-05-21', '2020-05-25');
INSERT INTO public.journal_details VALUES (3747, 2776, 'attr', 'due_date', '2020-05-21', '2020-05-22');
INSERT INTO public.journal_details VALUES (3748, 2776, 'attr', 'start_date', '2020-05-21', '2020-05-22');
INSERT INTO public.journal_details VALUES (3749, 2777, 'attr', 'due_date', '2020-05-21', '2020-05-23');
INSERT INTO public.journal_details VALUES (3750, 2777, 'attr', 'start_date', '2020-05-21', '2020-05-23');
INSERT INTO public.journal_details VALUES (3751, 2778, 'attr', 'due_date', '2020-05-25', '2020-05-30');
INSERT INTO public.journal_details VALUES (3752, 2778, 'attr', 'start_date', '2020-05-25', '2020-05-30');
INSERT INTO public.journal_details VALUES (3753, 2779, 'attr', 'due_date', '2020-05-25', '2020-05-30');
INSERT INTO public.journal_details VALUES (3754, 2779, 'attr', 'start_date', '2020-05-25', '2020-05-30');
INSERT INTO public.journal_details VALUES (3755, 2780, 'attr', 'due_date', '2020-05-25', '2020-05-29');
INSERT INTO public.journal_details VALUES (3756, 2780, 'attr', 'start_date', '2020-05-25', '2020-05-29');
INSERT INTO public.journal_details VALUES (3757, 2781, 'attr', 'due_date', '2020-05-25', '2020-05-29');
INSERT INTO public.journal_details VALUES (3758, 2781, 'attr', 'start_date', '2020-05-25', '2020-05-29');
INSERT INTO public.journal_details VALUES (3759, 2782, 'attr', 'due_date', '2020-05-25', '2020-05-27');
INSERT INTO public.journal_details VALUES (3760, 2782, 'attr', 'start_date', '2020-05-25', '2020-05-26');
INSERT INTO public.journal_details VALUES (3761, 2783, 'attr', 'due_date', '2020-05-27', '2020-05-28');
INSERT INTO public.journal_details VALUES (3762, 2784, 'attr', 'subject', 'Giao diện sắp xếp học viên tự động', 'Giao diện sắp xếp học viên');
INSERT INTO public.journal_details VALUES (3763, 2784, 'attr', 'due_date', NULL, '2020-05-19');
INSERT INTO public.journal_details VALUES (3764, 2785, 'attr', 'due_date', NULL, '2020-05-19');
INSERT INTO public.journal_details VALUES (3765, 2786, 'attr', 'subject', 'Api load dãy ghê theo sơ đồ', 'Api load dãy ghế theo sơ đồ');
INSERT INTO public.journal_details VALUES (3766, 2787, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3767, 2788, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3768, 2789, 'attr', 'due_date', NULL, '2020-05-21');
INSERT INTO public.journal_details VALUES (3769, 2790, 'attr', 'subject', 'Hiển thị số lượng trạm bts của doanh nghiệp theo Huyện/TP', 'Hiển thị số lượng điểm dịch vụ của doanh nghiệp theo Huyện/TP');
INSERT INTO public.journal_details VALUES (3770, 2791, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (3771, 2792, 'attr', 'due_date', '2020-05-22', '2020-05-21');
INSERT INTO public.journal_details VALUES (3772, 2793, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (3773, 2794, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3774, 2795, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3775, 2796, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3776, 2797, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3777, 2798, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3778, 2799, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3779, 2800, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3780, 2801, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3781, 2802, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3782, 2803, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3783, 2804, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3784, 2805, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3785, 2806, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3786, 2807, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3787, 2808, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3788, 2809, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3789, 2810, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3790, 2811, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3791, 2812, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3792, 2813, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3793, 2814, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3794, 2815, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3795, 2816, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3796, 2817, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3797, 2818, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3798, 2819, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3799, 2820, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3800, 2821, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3801, 2822, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3802, 2823, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3803, 2824, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3804, 2825, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3805, 2826, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3806, 2827, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3807, 2828, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3808, 2829, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3809, 2830, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3810, 2831, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3811, 2832, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3812, 2833, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3813, 2834, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3814, 2835, 'attr', 'due_date', '2020-04-27', '2020-05-20');
INSERT INTO public.journal_details VALUES (3815, 2835, 'attr', 'start_date', '2020-04-27', '2020-05-20');
INSERT INTO public.journal_details VALUES (3816, 2836, 'attr', 'due_date', '2020-04-27', '2020-05-20');
INSERT INTO public.journal_details VALUES (3817, 2836, 'attr', 'start_date', '2020-04-27', '2020-05-20');
INSERT INTO public.journal_details VALUES (3818, 2837, 'attr', 'due_date', '2020-04-27', '2020-05-20');
INSERT INTO public.journal_details VALUES (3819, 2837, 'attr', 'start_date', '2020-04-27', '2020-05-20');
INSERT INTO public.journal_details VALUES (3820, 2838, 'attr', 'due_date', '2020-04-27', '2020-05-20');
INSERT INTO public.journal_details VALUES (3821, 2838, 'attr', 'start_date', '2020-04-27', '2020-05-20');
INSERT INTO public.journal_details VALUES (3822, 2839, 'attr', 'due_date', '2020-04-27', '2020-05-20');
INSERT INTO public.journal_details VALUES (3823, 2839, 'attr', 'start_date', '2020-04-27', '2020-05-20');
INSERT INTO public.journal_details VALUES (3824, 2840, 'attr', 'due_date', '2020-04-27', '2020-05-20');
INSERT INTO public.journal_details VALUES (3825, 2840, 'attr', 'start_date', '2020-04-27', '2020-05-20');
INSERT INTO public.journal_details VALUES (3826, 2841, 'attr', 'due_date', '2020-04-27', '2020-05-20');
INSERT INTO public.journal_details VALUES (3827, 2841, 'attr', 'start_date', '2020-04-27', '2020-05-20');
INSERT INTO public.journal_details VALUES (3828, 2842, 'attr', 'due_date', '2020-04-27', '2020-05-20');
INSERT INTO public.journal_details VALUES (3829, 2842, 'attr', 'start_date', '2020-04-27', '2020-05-20');
INSERT INTO public.journal_details VALUES (3830, 2843, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3831, 2844, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3832, 2845, 'attr', 'due_date', NULL, '2020-05-25');
INSERT INTO public.journal_details VALUES (3833, 2845, 'attr', 'start_date', '2020-05-19', '2020-05-25');
INSERT INTO public.journal_details VALUES (3834, 2846, 'attr', 'due_date', NULL, '2020-05-25');
INSERT INTO public.journal_details VALUES (3835, 2846, 'attr', 'start_date', '2020-05-19', '2020-05-25');
INSERT INTO public.journal_details VALUES (3836, 2847, 'attr', 'due_date', NULL, '2020-05-25');
INSERT INTO public.journal_details VALUES (3837, 2847, 'attr', 'start_date', '2020-05-19', '2020-05-25');
INSERT INTO public.journal_details VALUES (3838, 2848, 'attr', 'due_date', NULL, '2020-05-25');
INSERT INTO public.journal_details VALUES (3839, 2848, 'attr', 'start_date', '2020-05-19', '2020-05-25');
INSERT INTO public.journal_details VALUES (3840, 2849, 'attr', 'due_date', NULL, '2020-05-25');
INSERT INTO public.journal_details VALUES (3841, 2849, 'attr', 'start_date', '2020-05-19', '2020-05-25');
INSERT INTO public.journal_details VALUES (3842, 2850, 'attr', 'due_date', NULL, '2020-05-19');
INSERT INTO public.journal_details VALUES (3843, 2850, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3844, 2850, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3845, 2851, 'attr', 'due_date', NULL, '2020-05-19');
INSERT INTO public.journal_details VALUES (3846, 2851, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (3847, 2851, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3848, 2852, 'attr', 'subject', 'Ký số', 'Ký số doanh nghiệp');
INSERT INTO public.journal_details VALUES (3851, 2854, 'attr', 'subject', 'Giao diện dãy ghế', 'Giao diện danh sách phòng');
INSERT INTO public.journal_details VALUES (3852, 2854, 'attr', 'due_date', '2020-05-19', '2020-05-21');
INSERT INTO public.journal_details VALUES (3853, 2854, 'attr', 'start_date', '2020-05-19', '2020-05-21');
INSERT INTO public.journal_details VALUES (3854, 2855, 'attr', 'subject', 'Giao diện xếp chỗ', 'Giao diện tạo phòng kèm sơ đồ');
INSERT INTO public.journal_details VALUES (3855, 2856, 'attr', 'due_date', '2020-05-19', '2020-05-21');
INSERT INTO public.journal_details VALUES (3856, 2856, 'attr', 'start_date', '2020-05-19', '2020-05-21');
INSERT INTO public.journal_details VALUES (3857, 2857, 'attr', 'subject', 'Giao diện danh sách phòng', 'Giao diện + chức năng danh sách phòng');
INSERT INTO public.journal_details VALUES (3858, 2858, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3859, 2859, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3860, 2860, 'attr', 'subject', 'Giao diện tạo phòng kèm sơ đồ', 'Giao diện + tính năng tạo phòng kèm sơ đồ');
INSERT INTO public.journal_details VALUES (3861, 2861, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3862, 2862, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3863, 2863, 'attr', 'description', '<table>
	<thead>
		<tr>
			<td rowspan="3">STT</td>
			<td rowspan="3">Họ và tên</td>
			<td colspan="2">Ngày tháng năm sinh</td>
			<td rowspan="3">Số CMND</td>
			<td rowspan="3">Thường tr&uacute;</td>
			<td rowspan="3">Tạm tr&uacute;</td>
			<td colspan="3">Sổ BHXH</td>
          	<td rowspan="3">Thông tin về nơi làm việc trước khi chấm dứt HĐLĐ</td>
          	<td rowspan="3">Thu nhập hiện nay đông/tháng (Sau khi được xét duyệt)</td>
          	<td rowspan="3">Số tiền được hỗ trợ (đồng/tháng)</td>
          	<td colspan="5">Hỗ trợ qua hình thức</td>
          	<td rowspan="3">Ghi chú</td>
		</tr>
		<tr>
			<td rowspan="2">Nam</td>
			<td rowspan="2">Nữ</td>
          	<td rowspan="2">Số sổ BHXH</td>
			<td colspan="2">Xác nhận của cơ quan BHXH</td>
          	<td colspan="3">Chuyển khoản qua ngân hàng</td>
          	<td rowspan="2">Nhận trực tiếp bằng tiền mặt</td>
          	<td rowspan="2">Ký nhận</td>
		</tr>
      	<tr>
          	<td>Số</td>
          	<td>Ngày</td>
          	<td>Tên tài khoản</td>
          	<td>Số tài khoản</td>
          	<td>Tên ngân hàng</td>
      	</tr>
	</thead>
</table>
', '<table>
	<thead>
		<tr>
			<td rowspan="3">STT</td>
			<td rowspan="3">Họ v&agrave; t&ecirc;n</td>
			<td colspan="2">Ng&agrave;y th&aacute;ng năm sinh</td>
			<td rowspan="3">Số CMND</td>
			<td rowspan="3">Thường tr&uacute;</td>
			<td rowspan="3">Tạm tr&uacute;</td>
			<td colspan="3">Sổ BHXH</td>
			<td rowspan="3">Th&ocirc;ng tin về nơi l&agrave;m việc trước khi chấm dứt HĐLĐ</td>
			<td rowspan="3">Thu nhập hiện nay đ&ocirc;ng/th&aacute;ng (Sau khi được x&eacute;t duyệt)</td>
			<td rowspan="3">Số tiền được hỗ trợ (đồng/th&aacute;ng)</td>
			<td colspan="5">Hỗ trợ qua h&igrave;nh thức</td>
			<td rowspan="3">Ghi ch&uacute;</td>
		</tr>
		<tr>
			<td rowspan="2">Nam</td>
			<td rowspan="2">Nữ</td>
			<td rowspan="2">Số sổ BHXH</td>
			<td colspan="2">X&aacute;c nhận của cơ quan BHXH</td>
			<td colspan="3">Chuyển khoản qua ng&acirc;n h&agrave;ng</td>
			<td rowspan="2">Nhận trực tiếp bằng tiền mặt</td>
			<td rowspan="2">K&yacute; nhận</td>
		</tr>
		<tr>
			<td>Số</td>
			<td>Ng&agrave;y</td>
			<td>T&ecirc;n t&agrave;i khoản</td>
			<td>Số t&agrave;i khoản</td>
			<td>T&ecirc;n ng&acirc;n h&agrave;ng</td>
		</tr>
	</thead>
  	<tbody>
  	  <td>A</td>
      <td>B</td>
      <td>1</td>
      <td>2</td>
      <td>3</td>
      <td>4</td>
      <td>5</td>
      <td>6</td>
      <td>7</td>
      <td>8</td>
      <td>9</td>
      <td>10</td>
      <td>11</td>
      <td>12</td>
      <td>13</td>
      <td>14</td>
      <td>15</td>
      <td>16</td>
      <td>17</td>
  	</tbody>
</table>
');
INSERT INTO public.journal_details VALUES (3864, 2863, 'attr', 'due_date', NULL, '2020-05-21');
INSERT INTO public.journal_details VALUES (3865, 2864, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3866, 2865, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3867, 2866, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3868, 2867, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3869, 2868, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3870, 2869, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3871, 2870, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3872, 2871, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3873, 2872, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3874, 2873, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3875, 2874, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3876, 2875, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3877, 2876, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3878, 2877, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3879, 2878, 'attr', 'due_date', '2020-05-21', '2020-05-23');
INSERT INTO public.journal_details VALUES (3880, 2878, 'attr', 'start_date', '2020-05-21', '2020-05-23');
INSERT INTO public.journal_details VALUES (3881, 2879, 'attr', 'due_date', '2020-05-19', '2020-05-23');
INSERT INTO public.journal_details VALUES (3882, 2879, 'attr', 'start_date', '2020-05-19', '2020-05-23');
INSERT INTO public.journal_details VALUES (3883, 2880, 'attr', 'due_date', NULL, '2020-05-23');
INSERT INTO public.journal_details VALUES (3884, 2881, 'attr', 'due_date', '2020-05-20', '2020-05-25');
INSERT INTO public.journal_details VALUES (3885, 2881, 'attr', 'start_date', '2020-05-20', '2020-05-25');
INSERT INTO public.journal_details VALUES (3886, 2882, 'attr', 'due_date', '2020-05-16', '2020-05-23');
INSERT INTO public.journal_details VALUES (3887, 2882, 'attr', 'start_date', '2020-05-16', '2020-05-23');
INSERT INTO public.journal_details VALUES (3888, 2883, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (3889, 2884, 'attr', 'due_date', '2020-05-18', '2020-05-23');
INSERT INTO public.journal_details VALUES (3890, 2884, 'attr', 'start_date', '2020-05-18', '2020-05-23');
INSERT INTO public.journal_details VALUES (3891, 2885, 'attr', 'due_date', '2020-05-23', '2020-05-26');
INSERT INTO public.journal_details VALUES (3892, 2885, 'attr', 'start_date', '2020-05-23', '2020-05-26');
INSERT INTO public.journal_details VALUES (3893, 2886, 'attr', 'due_date', '2020-05-20', '2020-05-26');
INSERT INTO public.journal_details VALUES (3894, 2886, 'attr', 'start_date', '2020-05-20', '2020-05-26');
INSERT INTO public.journal_details VALUES (3895, 2887, 'attr', 'due_date', '2020-05-21', '2020-05-26');
INSERT INTO public.journal_details VALUES (3896, 2887, 'attr', 'start_date', '2020-05-21', '2020-05-26');
INSERT INTO public.journal_details VALUES (3897, 2888, 'attr', 'due_date', '2020-05-22', '2020-05-26');
INSERT INTO public.journal_details VALUES (3898, 2888, 'attr', 'start_date', '2020-05-22', '2020-05-26');
INSERT INTO public.journal_details VALUES (3899, 2889, 'attr', 'due_date', '2020-05-22', '2020-05-26');
INSERT INTO public.journal_details VALUES (3900, 2889, 'attr', 'start_date', '2020-05-22', '2020-05-26');
INSERT INTO public.journal_details VALUES (3901, 2890, 'attr', 'due_date', '2020-05-23', '2020-05-26');
INSERT INTO public.journal_details VALUES (3902, 2890, 'attr', 'start_date', '2020-05-23', '2020-05-26');
INSERT INTO public.journal_details VALUES (3903, 2891, 'attr', 'due_date', '2020-05-26', '2020-05-23');
INSERT INTO public.journal_details VALUES (3904, 2891, 'attr', 'start_date', '2020-05-26', '2020-05-23');
INSERT INTO public.journal_details VALUES (3905, 2892, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3906, 2893, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3907, 2894, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3908, 2895, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3909, 2896, 'attr', 'assigned_to_id', '8', '12');
INSERT INTO public.journal_details VALUES (3910, 2897, 'attr', 'due_date', '2020-05-21', '2020-05-23');
INSERT INTO public.journal_details VALUES (3911, 2897, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (4145, 3101, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (3912, 2897, 'attr', 'start_date', '2020-05-21', '2020-05-23');
INSERT INTO public.journal_details VALUES (3913, 2898, 'attr', 'assigned_to_id', '8', '4');
INSERT INTO public.journal_details VALUES (3914, 2899, 'attr', 'subject', 'Giao diện trang thêm mới', 'Thêm mới, thông tin hồ sơ');
INSERT INTO public.journal_details VALUES (3915, 2899, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (3916, 2900, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (3917, 2901, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (3918, 2902, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (3919, 2903, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (3920, 2904, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (3921, 2905, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (3922, 2906, 'attr', 'assigned_to_id', '4', '12');
INSERT INTO public.journal_details VALUES (3923, 2907, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (3924, 2908, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (3925, 2909, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (3926, 2910, 'attr', 'due_date', '2020-05-25', '2020-05-26');
INSERT INTO public.journal_details VALUES (3927, 2910, 'attr', 'start_date', '2020-05-25', '2020-05-26');
INSERT INTO public.journal_details VALUES (3928, 2911, 'attr', 'due_date', '2020-05-28', '2020-05-26');
INSERT INTO public.journal_details VALUES (3929, 2912, 'attr', 'due_date', '2020-05-29', '2020-05-26');
INSERT INTO public.journal_details VALUES (3930, 2912, 'attr', 'start_date', '2020-05-29', '2020-05-26');
INSERT INTO public.journal_details VALUES (3931, 2913, 'attr', 'due_date', '2020-05-29', '2020-05-26');
INSERT INTO public.journal_details VALUES (3932, 2913, 'attr', 'start_date', '2020-05-29', '2020-05-26');
INSERT INTO public.journal_details VALUES (3933, 2914, 'attr', 'due_date', NULL, '2020-05-23');
INSERT INTO public.journal_details VALUES (3934, 2915, 'attr', 'due_date', NULL, '2020-05-25');
INSERT INTO public.journal_details VALUES (3935, 2915, 'attr', 'start_date', '2020-05-23', '2020-05-25');
INSERT INTO public.journal_details VALUES (3936, 2916, 'attr', 'due_date', NULL, '2020-05-25');
INSERT INTO public.journal_details VALUES (3937, 2916, 'attr', 'start_date', '2020-05-23', '2020-05-25');
INSERT INTO public.journal_details VALUES (3938, 2917, 'attr', 'due_date', NULL, '2020-05-26');
INSERT INTO public.journal_details VALUES (3939, 2917, 'attr', 'start_date', '2020-05-23', '2020-05-26');
INSERT INTO public.journal_details VALUES (3940, 2918, 'attr', 'due_date', NULL, '2020-05-26');
INSERT INTO public.journal_details VALUES (3941, 2918, 'attr', 'start_date', '2020-05-23', '2020-05-26');
INSERT INTO public.journal_details VALUES (3942, 2919, 'attr', 'due_date', NULL, '2020-05-27');
INSERT INTO public.journal_details VALUES (3943, 2919, 'attr', 'start_date', '2020-05-23', '2020-05-27');
INSERT INTO public.journal_details VALUES (3944, 2920, 'attr', 'due_date', NULL, '2020-05-27');
INSERT INTO public.journal_details VALUES (3945, 2920, 'attr', 'start_date', '2020-05-23', '2020-05-27');
INSERT INTO public.journal_details VALUES (3946, 2921, 'attr', 'due_date', NULL, '2020-05-28');
INSERT INTO public.journal_details VALUES (3947, 2921, 'attr', 'start_date', '2020-05-23', '2020-05-28');
INSERT INTO public.journal_details VALUES (3948, 2922, 'attr', 'due_date', NULL, '2020-05-28');
INSERT INTO public.journal_details VALUES (3949, 2922, 'attr', 'start_date', '2020-05-23', '2020-05-28');
INSERT INTO public.journal_details VALUES (3950, 2923, 'attr', 'due_date', '2020-05-30', '2020-05-27');
INSERT INTO public.journal_details VALUES (3951, 2923, 'attr', 'start_date', '2020-05-30', '2020-05-27');
INSERT INTO public.journal_details VALUES (3952, 2924, 'attr', 'due_date', '2020-05-30', '2020-05-27');
INSERT INTO public.journal_details VALUES (3953, 2924, 'attr', 'start_date', '2020-05-30', '2020-05-27');
INSERT INTO public.journal_details VALUES (3956, 2926, 'attr', 'assigned_to_id', '4', '8');
INSERT INTO public.journal_details VALUES (3957, 2927, 'attr', 'assigned_to_id', '4', '8');
INSERT INTO public.journal_details VALUES (3959, 2929, 'attr', 'due_date', '2020-05-23', '2020-05-26');
INSERT INTO public.journal_details VALUES (3960, 2929, 'attr', 'start_date', '2020-05-23', '2020-05-26');
INSERT INTO public.journal_details VALUES (3961, 2930, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3962, 2931, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3963, 2932, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3964, 2933, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3965, 2934, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3966, 2935, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3970, 2939, 'attr', 'due_date', NULL, '2020-05-25');
INSERT INTO public.journal_details VALUES (3971, 2940, 'attr', 'due_date', NULL, '2020-05-25');
INSERT INTO public.journal_details VALUES (3972, 2941, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3973, 2942, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3974, 2943, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3975, 2944, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3976, 2945, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3977, 2946, 'attr', 'tracker_id', '2', '1');
INSERT INTO public.journal_details VALUES (3978, 2946, 'attr', 'subject', 'Sửa lại tính năng điểm danh', '(lỗi)Sửa lại tính năng điểm danh');
INSERT INTO public.journal_details VALUES (3979, 2947, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3980, 2948, 'attr', 'done_ratio', '100', '50');
INSERT INTO public.journal_details VALUES (3981, 2949, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (3982, 2950, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (3983, 2951, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (3984, 2952, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (3985, 2952, 'attr', 'done_ratio', '0', '80');
INSERT INTO public.journal_details VALUES (3986, 2953, 'attr', 'due_date', '2020-05-23', '2020-05-26');
INSERT INTO public.journal_details VALUES (3987, 2954, 'attr', 'start_date', '2020-05-23', '2020-05-25');
INSERT INTO public.journal_details VALUES (3988, 2955, 'attr', 'due_date', '2020-05-23', '2020-05-26');
INSERT INTO public.journal_details VALUES (3989, 2955, 'attr', 'start_date', '2020-05-23', '2020-05-26');
INSERT INTO public.journal_details VALUES (3990, 2956, 'attr', 'due_date', '2020-05-25', '2020-05-26');
INSERT INTO public.journal_details VALUES (3991, 2956, 'attr', 'start_date', '2020-05-25', '2020-05-26');
INSERT INTO public.journal_details VALUES (3992, 2957, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3993, 2958, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3994, 2959, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3995, 2960, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3996, 2961, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3997, 2962, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (3998, 2963, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (3999, 2964, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4000, 2965, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4001, 2966, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4002, 2967, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4003, 2968, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4004, 2969, 'attr', 'due_date', NULL, '2020-05-26');
INSERT INTO public.journal_details VALUES (4005, 2970, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4006, 2971, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4007, 2972, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4008, 2973, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4009, 2974, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4010, 2975, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4011, 2976, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4012, 2977, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4013, 2978, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4014, 2979, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4015, 2984, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (4016, 2985, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (4017, 2986, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (4018, 2987, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4019, 2988, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4020, 2989, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4021, 2990, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4022, 2991, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (4023, 2992, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4024, 2993, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4025, 2994, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4026, 2995, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4027, 2996, 'attr', 'assigned_to_id', '13', '10');
INSERT INTO public.journal_details VALUES (4028, 2997, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (4029, 2998, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (4030, 2999, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (4031, 3000, 'attr', 'assigned_to_id', '10', '13');
INSERT INTO public.journal_details VALUES (4032, 3001, 'attr', 'assigned_to_id', '8', '4');
INSERT INTO public.journal_details VALUES (4033, 3002, 'attr', 'assigned_to_id', '8', '4');
INSERT INTO public.journal_details VALUES (4034, 3003, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4035, 3004, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4036, 3005, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (4037, 3005, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (4038, 3006, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4039, 3007, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4040, 3008, 'attr', 'subject', 'Sửa mẫu phụ lục 4', 'Sửa mẫu phụ lục 4 doanh nghiệp');
INSERT INTO public.journal_details VALUES (4041, 3009, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4042, 3009, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4043, 3010, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4044, 3010, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4045, 3011, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4046, 3011, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4047, 3012, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4048, 3012, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4049, 3013, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4050, 3013, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4051, 3014, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4052, 3014, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4053, 3015, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4054, 3015, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4055, 3016, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4056, 3017, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4057, 3018, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4058, 3019, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4059, 3020, 'attr', 'due_date', NULL, '2020-05-27');
INSERT INTO public.journal_details VALUES (4060, 3020, 'attr', 'start_date', '2020-05-25', '2020-05-27');
INSERT INTO public.journal_details VALUES (4061, 3021, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4062, 3022, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4063, 3023, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4064, 3024, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4065, 3025, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4066, 3026, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4067, 3027, 'attr', 'status_id', '3', '4');
INSERT INTO public.journal_details VALUES (4068, 3028, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4069, 3029, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4070, 3030, 'attr', 'status_id', '4', '3');
INSERT INTO public.journal_details VALUES (4071, 3032, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (4072, 3033, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (4073, 3034, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4074, 3035, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4075, 3036, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4076, 3037, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4077, 3038, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4078, 3039, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4079, 3040, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (4080, 3041, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (4081, 3042, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (4082, 3043, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4083, 3044, 'attr', 'due_date', '2020-05-30', '2020-06-01');
INSERT INTO public.journal_details VALUES (4084, 3044, 'attr', 'start_date', '2020-05-30', '2020-06-01');
INSERT INTO public.journal_details VALUES (4085, 3045, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4086, 3046, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4087, 3047, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4088, 3048, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4089, 3049, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4090, 3050, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4091, 3051, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4092, 3052, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4093, 3053, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4094, 3054, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4095, 3055, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4096, 3056, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4097, 3057, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4098, 3058, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4099, 3059, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4100, 3060, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4101, 3061, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4102, 3062, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4103, 3063, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4104, 3064, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4105, 3065, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4106, 3066, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4107, 3067, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4108, 3068, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4109, 3069, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4110, 3070, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4111, 3071, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4112, 3072, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4113, 3073, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (4114, 3074, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (4115, 3075, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (4116, 3076, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (4117, 3077, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (4118, 3078, 'attr', 'due_date', '2020-05-21', '2020-06-03');
INSERT INTO public.journal_details VALUES (4119, 3078, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4120, 3078, 'attr', 'start_date', '2020-05-21', '2020-06-03');
INSERT INTO public.journal_details VALUES (4121, 3079, 'attr', 'due_date', '2020-05-27', '2020-06-03');
INSERT INTO public.journal_details VALUES (4122, 3079, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4123, 3079, 'attr', 'start_date', '2020-05-27', '2020-06-03');
INSERT INTO public.journal_details VALUES (4124, 3080, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4125, 3081, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4126, 3082, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (4127, 3083, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4128, 3084, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4129, 3085, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (4130, 3086, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (4131, 3087, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (4132, 3088, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (4133, 3089, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (4134, 3090, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (4135, 3091, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (4136, 3092, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (4137, 3093, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (4138, 3094, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (4139, 3095, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (4140, 3096, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (4141, 3097, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4142, 3098, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4143, 3099, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4144, 3100, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4146, 3102, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4147, 3103, 'attr', 'due_date', '2020-06-01', '2020-06-03');
INSERT INTO public.journal_details VALUES (4148, 3103, 'attr', 'start_date', '2020-06-01', '2020-06-03');
INSERT INTO public.journal_details VALUES (4149, 3104, 'attr', 'due_date', '2020-06-01', '2020-06-03');
INSERT INTO public.journal_details VALUES (4150, 3104, 'attr', 'start_date', '2020-06-01', '2020-06-03');
INSERT INTO public.journal_details VALUES (4151, 3105, 'attr', 'due_date', '2020-05-26', '2020-06-03');
INSERT INTO public.journal_details VALUES (4152, 3105, 'attr', 'start_date', '2020-05-26', '2020-06-03');
INSERT INTO public.journal_details VALUES (4153, 3106, 'attr', 'due_date', '2020-05-26', '2020-06-03');
INSERT INTO public.journal_details VALUES (4154, 3106, 'attr', 'start_date', '2020-05-26', '2020-06-03');
INSERT INTO public.journal_details VALUES (4155, 3107, 'attr', 'due_date', '2020-05-26', '2020-06-03');
INSERT INTO public.journal_details VALUES (4156, 3107, 'attr', 'start_date', '2020-05-26', '2020-06-03');
INSERT INTO public.journal_details VALUES (4157, 3108, 'attr', 'due_date', '2020-05-26', '2020-06-03');
INSERT INTO public.journal_details VALUES (4158, 3108, 'attr', 'start_date', '2020-05-26', '2020-06-03');
INSERT INTO public.journal_details VALUES (4159, 3109, 'attr', 'due_date', '2020-05-26', '2020-06-03');
INSERT INTO public.journal_details VALUES (4160, 3109, 'attr', 'start_date', '2020-05-26', '2020-06-03');
INSERT INTO public.journal_details VALUES (4161, 3110, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4162, 3111, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4163, 3112, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4164, 3113, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4165, 3114, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4166, 3115, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4167, 3116, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4168, 3117, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4169, 3118, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4170, 3119, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4171, 3120, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4172, 3121, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4173, 3122, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4174, 3123, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4175, 3124, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (4176, 3125, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (4177, 3126, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4178, 3127, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4179, 3128, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4180, 3129, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4181, 3130, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4182, 3131, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (4183, 3132, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4184, 3133, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4185, 3134, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4186, 3135, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4187, 3136, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (4188, 3137, 'attr', 'due_date', NULL, '2020-06-03');
INSERT INTO public.journal_details VALUES (4190, 3139, 'attr', 'due_date', NULL, '2020-06-03');
INSERT INTO public.journal_details VALUES (4192, 3141, 'attr', 'due_date', NULL, '2020-06-03');
INSERT INTO public.journal_details VALUES (4194, 3143, 'attr', 'due_date', NULL, '2020-06-03');
INSERT INTO public.journal_details VALUES (4195, 3144, 'attr', 'due_date', NULL, '2020-06-03');
INSERT INTO public.journal_details VALUES (4196, 3145, 'attr', 'due_date', NULL, '2020-06-03');
INSERT INTO public.journal_details VALUES (4198, 3147, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4199, 3148, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4200, 3149, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4201, 3150, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4202, 3151, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4203, 3152, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4204, 3153, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4205, 3154, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4206, 3155, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4207, 3156, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4208, 3157, 'attr', 'due_date', NULL, '2020-06-03');
INSERT INTO public.journal_details VALUES (4209, 3157, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4210, 3158, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4211, 3159, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4212, 3160, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (4213, 3161, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4214, 3162, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4215, 3163, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4216, 3164, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4217, 3165, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4218, 3166, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4219, 3167, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4220, 3168, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4221, 3169, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4222, 3170, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4223, 3171, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4224, 3172, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4225, 3173, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4226, 3174, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4227, 3175, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4228, 3176, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4229, 3177, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4230, 3178, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4231, 3179, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4232, 3180, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4233, 3181, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4234, 3182, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4235, 3183, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4236, 3184, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4237, 3185, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4238, 3186, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4239, 3187, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4240, 3188, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4241, 3189, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4242, 3190, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4243, 3191, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4244, 3192, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4245, 3193, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4246, 3194, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4247, 3195, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4248, 3196, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4249, 3197, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4250, 3198, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4251, 3199, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4252, 3200, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4253, 3201, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4254, 3202, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4255, 3203, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4256, 3204, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4257, 3205, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4258, 3206, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4259, 3207, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4260, 3208, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4261, 3209, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4262, 3210, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4263, 3211, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4264, 3212, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4265, 3213, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4266, 3214, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4267, 3215, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4268, 3216, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4269, 3217, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4270, 3218, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4271, 3219, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4272, 3220, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4273, 3221, 'attr', 'due_date', '2020-05-26', '2020-06-03');
INSERT INTO public.journal_details VALUES (4274, 3221, 'attr', 'start_date', '2020-05-26', '2020-06-03');
INSERT INTO public.journal_details VALUES (4275, 3222, 'attr', 'due_date', '2020-05-26', '2020-06-03');
INSERT INTO public.journal_details VALUES (4276, 3222, 'attr', 'start_date', '2020-05-26', '2020-06-03');
INSERT INTO public.journal_details VALUES (4277, 3223, 'attr', 'due_date', '2020-05-28', '2020-06-03');
INSERT INTO public.journal_details VALUES (4278, 3223, 'attr', 'start_date', '2020-05-28', '2020-06-03');
INSERT INTO public.journal_details VALUES (4279, 3224, 'attr', 'due_date', '2020-05-25', '2020-06-03');
INSERT INTO public.journal_details VALUES (4280, 3224, 'attr', 'start_date', '2020-05-25', '2020-06-03');
INSERT INTO public.journal_details VALUES (4281, 3225, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4282, 3226, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4283, 3227, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4284, 3228, 'attr', 'due_date', NULL, '2020-06-03');
INSERT INTO public.journal_details VALUES (4285, 3228, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4286, 3228, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4287, 3229, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4288, 3230, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4289, 3231, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (4290, 3232, 'attr', 'due_date', NULL, '2020-06-03');
INSERT INTO public.journal_details VALUES (4291, 3232, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (4292, 3232, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (4293, 3233, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (4294, 3234, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (4295, 3235, 'attr', 'due_date', NULL, '2020-06-05');
INSERT INTO public.journal_details VALUES (4296, 3235, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (4297, 3236, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (4298, 3237, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (4299, 3237, 'attr', 'done_ratio', '0', '80');
INSERT INTO public.journal_details VALUES (4300, 3238, 'attr', 'due_date', NULL, '2020-06-03');
INSERT INTO public.journal_details VALUES (4301, 3239, 'attr', 'due_date', NULL, '2020-06-04');
INSERT INTO public.journal_details VALUES (4302, 3239, 'attr', 'start_date', '2020-06-03', '2020-06-04');
INSERT INTO public.journal_details VALUES (4303, 3240, 'attr', 'due_date', NULL, '2020-06-03');
INSERT INTO public.journal_details VALUES (4304, 3241, 'attr', 'due_date', NULL, '2020-06-04');
INSERT INTO public.journal_details VALUES (4305, 3241, 'attr', 'start_date', '2020-06-03', '2020-06-04');
INSERT INTO public.journal_details VALUES (4306, 3242, 'attr', 'due_date', NULL, '2020-06-04');
INSERT INTO public.journal_details VALUES (4307, 3242, 'attr', 'start_date', '2020-06-03', '2020-06-04');
INSERT INTO public.journal_details VALUES (4308, 3243, 'attr', 'due_date', NULL, '2020-06-03');
INSERT INTO public.journal_details VALUES (4309, 3244, 'attr', 'parent_id', NULL, '859');
INSERT INTO public.journal_details VALUES (4310, 3245, 'attr', 'parent_id', NULL, '859');
INSERT INTO public.journal_details VALUES (4311, 3246, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4312, 3247, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4317, 3252, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4318, 3253, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4319, 3254, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4320, 3255, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4321, 3256, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4322, 3257, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4323, 3258, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4324, 3259, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4325, 3260, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4326, 3261, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4327, 3262, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4328, 3263, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4329, 3264, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4330, 3265, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4331, 3266, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4332, 3267, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4333, 3268, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4334, 3269, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4335, 3270, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4336, 3271, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4337, 3272, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4338, 3273, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4339, 3274, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (4340, 3275, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4341, 3276, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4342, 3277, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4343, 3278, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4344, 3279, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4345, 3280, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4346, 3281, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4347, 3282, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4348, 3283, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4349, 3284, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4350, 3285, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4351, 3286, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4352, 3287, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4353, 3288, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4354, 3289, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4355, 3290, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4356, 3291, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4357, 3292, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4358, 3293, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4359, 3294, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4360, 3295, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (4361, 3296, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (4362, 3297, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (4363, 3298, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (4364, 3299, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (4365, 3300, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4366, 3301, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4367, 3302, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4368, 3303, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4369, 3304, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4370, 3305, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (4371, 3306, 'attr', 'due_date', '2020-06-03', '2020-06-04');
INSERT INTO public.journal_details VALUES (4372, 3306, 'attr', 'start_date', '2020-06-03', '2020-06-04');
INSERT INTO public.journal_details VALUES (4373, 3307, 'attr', 'due_date', '2020-06-03', '2020-06-04');
INSERT INTO public.journal_details VALUES (4374, 3307, 'attr', 'start_date', '2020-06-03', '2020-06-04');
INSERT INTO public.journal_details VALUES (4377, 3309, 'attr', 'due_date', '2020-06-03', '2020-06-04');
INSERT INTO public.journal_details VALUES (4378, 3309, 'attr', 'start_date', '2020-06-03', '2020-06-04');
INSERT INTO public.journal_details VALUES (4379, 3310, 'attr', 'due_date', '2020-06-03', '2020-06-04');
INSERT INTO public.journal_details VALUES (4380, 3310, 'attr', 'start_date', '2020-06-03', '2020-06-04');
INSERT INTO public.journal_details VALUES (4381, 3311, 'attr', 'due_date', '2020-06-03', '2020-06-04');
INSERT INTO public.journal_details VALUES (4382, 3311, 'attr', 'start_date', '2020-06-03', '2020-06-04');
INSERT INTO public.journal_details VALUES (4383, 3312, 'attr', 'due_date', '2020-06-03', '2020-06-04');
INSERT INTO public.journal_details VALUES (4384, 3312, 'attr', 'start_date', '2020-06-03', '2020-06-04');
INSERT INTO public.journal_details VALUES (4387, 3314, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (4388, 3315, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (4389, 3316, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (4390, 3317, 'attr', 'due_date', NULL, '2020-06-04');
INSERT INTO public.journal_details VALUES (4391, 3318, 'attr', 'parent_id', '330', '744');
INSERT INTO public.journal_details VALUES (4392, 3319, 'attr', 'parent_id', NULL, '859');
INSERT INTO public.journal_details VALUES (4393, 3320, 'attr', 'status_id', '2', '1');
INSERT INTO public.journal_details VALUES (4394, 3321, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (4395, 3322, 'attr', 'due_date', '2020-06-04', '2020-06-05');
INSERT INTO public.journal_details VALUES (4396, 3322, 'attr', 'start_date', '2020-06-04', '2020-06-05');
INSERT INTO public.journal_details VALUES (4397, 3323, 'attr', 'due_date', '2020-06-04', '2020-06-05');
INSERT INTO public.journal_details VALUES (4398, 3323, 'attr', 'start_date', '2020-06-04', '2020-06-05');
INSERT INTO public.journal_details VALUES (4399, 3324, 'attr', 'due_date', '2020-06-04', '2020-06-05');
INSERT INTO public.journal_details VALUES (4400, 3324, 'attr', 'start_date', '2020-06-04', '2020-06-05');
INSERT INTO public.journal_details VALUES (4403, 3326, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4404, 3327, 'attr', 'due_date', '2020-06-05', '2020-06-04');
INSERT INTO public.journal_details VALUES (4405, 3327, 'attr', 'start_date', '2020-06-05', '2020-06-04');
INSERT INTO public.journal_details VALUES (4406, 3328, 'attr', 'due_date', '2020-06-05', '2020-06-06');
INSERT INTO public.journal_details VALUES (4407, 3328, 'attr', 'start_date', '2020-06-05', '2020-06-06');
INSERT INTO public.journal_details VALUES (4408, 3329, 'attr', 'due_date', '2020-06-04', '2020-06-06');
INSERT INTO public.journal_details VALUES (4409, 3329, 'attr', 'start_date', '2020-06-04', '2020-06-06');
INSERT INTO public.journal_details VALUES (4410, 3330, 'attr', 'due_date', '2020-06-04', '2020-06-06');
INSERT INTO public.journal_details VALUES (4411, 3330, 'attr', 'start_date', '2020-06-04', '2020-06-06');
INSERT INTO public.journal_details VALUES (4412, 3331, 'attr', 'subject', 'Chức năng chỉnh sử hệ số giảng dạy', 'Chức năng thêm mới và chỉnh sửa hệ số giảng dạy');
INSERT INTO public.journal_details VALUES (4413, 3332, 'attr', 'subject', 'Chức năng thêm mới và chỉnh sửa hệ số giảng dạy', 'Chức năng thêm mới, chỉnh sửa, xóa hệ số giảng dạy');
INSERT INTO public.journal_details VALUES (4414, 3333, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4415, 3334, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (4416, 3335, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (4417, 3336, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (4418, 3337, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4419, 3338, 'attr', 'due_date', '2020-06-04', '2020-06-05');
INSERT INTO public.journal_details VALUES (4420, 3338, 'attr', 'start_date', '2020-06-04', '2020-06-05');
INSERT INTO public.journal_details VALUES (4421, 3339, 'attr', 'due_date', '2020-06-04', '2020-06-05');
INSERT INTO public.journal_details VALUES (4422, 3339, 'attr', 'start_date', '2020-06-04', '2020-06-05');
INSERT INTO public.journal_details VALUES (4423, 3340, 'attr', 'due_date', '2020-06-03', '2020-06-05');
INSERT INTO public.journal_details VALUES (4424, 3340, 'attr', 'start_date', '2020-06-03', '2020-06-05');
INSERT INTO public.journal_details VALUES (4425, 3341, 'attr', 'due_date', '2020-06-03', '2020-06-05');
INSERT INTO public.journal_details VALUES (4426, 3341, 'attr', 'start_date', '2020-06-03', '2020-06-05');
INSERT INTO public.journal_details VALUES (4427, 3342, 'attr', 'due_date', '2020-06-03', '2020-06-05');
INSERT INTO public.journal_details VALUES (4428, 3342, 'attr', 'start_date', '2020-06-03', '2020-06-05');
INSERT INTO public.journal_details VALUES (4429, 3343, 'attr', 'due_date', '2020-06-03', '2020-06-05');
INSERT INTO public.journal_details VALUES (4430, 3343, 'attr', 'start_date', '2020-06-03', '2020-06-05');
INSERT INTO public.journal_details VALUES (4431, 3344, 'attr', 'due_date', NULL, '2020-06-05');
INSERT INTO public.journal_details VALUES (4432, 3344, 'attr', 'start_date', '2020-06-03', '2020-06-05');
INSERT INTO public.journal_details VALUES (4433, 3345, 'attr', 'due_date', NULL, '2020-06-05');
INSERT INTO public.journal_details VALUES (4434, 3345, 'attr', 'start_date', '2020-06-03', '2020-06-05');
INSERT INTO public.journal_details VALUES (4435, 3346, 'attr', 'due_date', NULL, '2020-06-05');
INSERT INTO public.journal_details VALUES (4436, 3346, 'attr', 'start_date', '2020-06-03', '2020-06-05');
INSERT INTO public.journal_details VALUES (4439, 3348, 'attr', 'due_date', '2020-06-05', '2020-06-06');
INSERT INTO public.journal_details VALUES (4440, 3348, 'attr', 'start_date', '2020-06-05', '2020-06-06');
INSERT INTO public.journal_details VALUES (4441, 3349, 'attr', 'due_date', '2020-06-05', '2020-06-06');
INSERT INTO public.journal_details VALUES (4442, 3349, 'attr', 'start_date', '2020-06-05', '2020-06-06');
INSERT INTO public.journal_details VALUES (4443, 3350, 'attr', 'due_date', '2020-06-05', '2020-06-06');
INSERT INTO public.journal_details VALUES (4444, 3350, 'attr', 'start_date', '2020-06-05', '2020-06-06');
INSERT INTO public.journal_details VALUES (4445, 3351, 'attr', 'due_date', '2020-06-05', '2020-06-06');
INSERT INTO public.journal_details VALUES (4446, 3351, 'attr', 'start_date', '2020-06-05', '2020-06-06');
INSERT INTO public.journal_details VALUES (4447, 3352, 'attr', 'due_date', '2020-06-05', '2020-06-06');
INSERT INTO public.journal_details VALUES (4448, 3352, 'attr', 'start_date', '2020-06-05', '2020-06-06');
INSERT INTO public.journal_details VALUES (4449, 3353, 'attr', 'due_date', '2020-06-05', '2020-06-06');
INSERT INTO public.journal_details VALUES (4450, 3353, 'attr', 'start_date', '2020-06-05', '2020-06-06');
INSERT INTO public.journal_details VALUES (4451, 3354, 'attr', 'due_date', '2020-06-05', '2020-06-06');
INSERT INTO public.journal_details VALUES (4452, 3354, 'attr', 'start_date', '2020-06-05', '2020-06-06');
INSERT INTO public.journal_details VALUES (4453, 3355, 'attr', 'due_date', '2020-06-06', '2020-06-08');
INSERT INTO public.journal_details VALUES (4454, 3355, 'attr', 'start_date', '2020-06-06', '2020-06-08');
INSERT INTO public.journal_details VALUES (4455, 3356, 'attr', 'due_date', '2020-06-06', '2020-06-08');
INSERT INTO public.journal_details VALUES (4456, 3356, 'attr', 'start_date', '2020-06-06', '2020-06-08');
INSERT INTO public.journal_details VALUES (4457, 3357, 'attr', 'due_date', '2020-06-06', '2020-06-08');
INSERT INTO public.journal_details VALUES (4458, 3357, 'attr', 'start_date', '2020-06-06', '2020-06-08');
INSERT INTO public.journal_details VALUES (4459, 3358, 'attr', 'due_date', '2020-06-06', '2020-06-08');
INSERT INTO public.journal_details VALUES (4460, 3358, 'attr', 'start_date', '2020-06-06', '2020-06-08');
INSERT INTO public.journal_details VALUES (4461, 3359, 'attr', 'due_date', '2020-06-06', '2020-06-08');
INSERT INTO public.journal_details VALUES (4462, 3359, 'attr', 'start_date', '2020-06-06', '2020-06-08');
INSERT INTO public.journal_details VALUES (4463, 3360, 'attr', 'due_date', '2020-06-08', '2020-06-09');
INSERT INTO public.journal_details VALUES (4464, 3360, 'attr', 'start_date', '2020-06-08', '2020-06-09');
INSERT INTO public.journal_details VALUES (4465, 3361, 'attr', 'due_date', '2020-06-08', '2020-06-09');
INSERT INTO public.journal_details VALUES (4466, 3361, 'attr', 'start_date', '2020-06-08', '2020-06-09');
INSERT INTO public.journal_details VALUES (4467, 3362, 'attr', 'due_date', '2020-06-08', '2020-06-09');
INSERT INTO public.journal_details VALUES (4468, 3362, 'attr', 'start_date', '2020-06-08', '2020-06-09');
INSERT INTO public.journal_details VALUES (4469, 3363, 'attr', 'due_date', '2020-06-09', '2020-06-10');
INSERT INTO public.journal_details VALUES (4470, 3363, 'attr', 'start_date', '2020-06-09', '2020-06-10');
INSERT INTO public.journal_details VALUES (4471, 3364, 'attr', 'due_date', '2020-06-09', '2020-06-11');
INSERT INTO public.journal_details VALUES (4472, 3364, 'attr', 'start_date', '2020-06-09', '2020-06-11');
INSERT INTO public.journal_details VALUES (4473, 3365, 'attr', 'due_date', '2020-06-09', '2020-06-10');
INSERT INTO public.journal_details VALUES (4474, 3365, 'attr', 'start_date', '2020-06-09', '2020-06-10');
INSERT INTO public.journal_details VALUES (4475, 3366, 'attr', 'due_date', '2020-06-11', '2020-06-09');
INSERT INTO public.journal_details VALUES (4476, 3366, 'attr', 'start_date', '2020-06-11', '2020-06-09');
INSERT INTO public.journal_details VALUES (4477, 3367, 'attr', 'due_date', '2020-06-10', '2020-06-11');
INSERT INTO public.journal_details VALUES (4478, 3367, 'attr', 'start_date', '2020-06-10', '2020-06-11');
INSERT INTO public.journal_details VALUES (4480, 3369, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4481, 3370, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4482, 3371, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4483, 3372, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4484, 3373, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4485, 3374, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4486, 3375, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4487, 3376, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4488, 3377, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4489, 3378, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4490, 3379, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4491, 3380, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4492, 3381, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4493, 3382, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4494, 3383, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4495, 3384, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4496, 3385, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4497, 3386, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4498, 3387, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4499, 3388, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4500, 3389, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4501, 3390, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4502, 3391, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4503, 3392, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4504, 3393, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4505, 3394, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4506, 3395, 'attr', 'due_date', '2020-04-03', '2020-06-15');
INSERT INTO public.journal_details VALUES (4507, 3395, 'attr', 'start_date', '2020-04-03', '2020-06-15');
INSERT INTO public.journal_details VALUES (4508, 3396, 'attr', 'due_date', '2020-04-06', '2020-06-15');
INSERT INTO public.journal_details VALUES (4509, 3396, 'attr', 'start_date', '2020-04-06', '2020-06-15');
INSERT INTO public.journal_details VALUES (4510, 3397, 'attr', 'due_date', '2020-04-07', '2020-06-15');
INSERT INTO public.journal_details VALUES (4511, 3397, 'attr', 'start_date', '2020-04-07', '2020-06-15');
INSERT INTO public.journal_details VALUES (4518, 3401, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4519, 3402, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4520, 3403, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4521, 3404, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4522, 3405, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (4523, 3406, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4524, 3407, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (4525, 3408, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (4526, 3409, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (4529, 3411, 'attr', 'due_date', '2020-06-03', '2020-06-08');
INSERT INTO public.journal_details VALUES (4530, 3411, 'attr', 'start_date', '2020-06-03', '2020-06-08');
INSERT INTO public.journal_details VALUES (4531, 3412, 'attr', 'due_date', '2020-06-06', '2020-06-08');
INSERT INTO public.journal_details VALUES (4532, 3412, 'attr', 'start_date', '2020-06-06', '2020-06-08');
INSERT INTO public.journal_details VALUES (4533, 3413, 'attr', 'due_date', '2020-06-05', '2020-06-08');
INSERT INTO public.journal_details VALUES (4534, 3413, 'attr', 'start_date', '2020-06-05', '2020-06-08');
INSERT INTO public.journal_details VALUES (4535, 3414, 'attr', 'due_date', '2020-06-06', '2020-06-08');
INSERT INTO public.journal_details VALUES (4536, 3414, 'attr', 'start_date', '2020-06-06', '2020-06-08');
INSERT INTO public.journal_details VALUES (4537, 3415, 'attr', 'due_date', '2020-06-05', '2020-06-08');
INSERT INTO public.journal_details VALUES (4538, 3415, 'attr', 'start_date', '2020-06-03', '2020-06-08');
INSERT INTO public.journal_details VALUES (4539, 3416, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (4540, 3417, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4541, 3418, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (4542, 3419, 'attr', 'due_date', '2020-06-08', '2020-06-09');
INSERT INTO public.journal_details VALUES (4543, 3419, 'attr', 'start_date', '2020-06-08', '2020-06-09');
INSERT INTO public.journal_details VALUES (4544, 3420, 'attr', 'due_date', '2020-06-08', '2020-06-09');
INSERT INTO public.journal_details VALUES (4545, 3420, 'attr', 'start_date', '2020-06-08', '2020-06-09');
INSERT INTO public.journal_details VALUES (4546, 3421, 'attr', 'due_date', '2020-06-08', '2020-06-09');
INSERT INTO public.journal_details VALUES (4547, 3421, 'attr', 'start_date', '2020-06-08', '2020-06-09');
INSERT INTO public.journal_details VALUES (4548, 3422, 'attr', 'due_date', '2020-06-08', '2020-06-09');
INSERT INTO public.journal_details VALUES (4549, 3422, 'attr', 'start_date', '2020-06-08', '2020-06-09');
INSERT INTO public.journal_details VALUES (4550, 3423, 'attr', 'due_date', '2020-06-03', '2020-06-08');
INSERT INTO public.journal_details VALUES (4551, 3423, 'attr', 'start_date', '2020-06-03', '2020-06-08');
INSERT INTO public.journal_details VALUES (4552, 3424, 'attr', 'due_date', '2020-06-06', '2020-06-08');
INSERT INTO public.journal_details VALUES (4553, 3424, 'attr', 'start_date', '2020-06-06', '2020-06-08');
INSERT INTO public.journal_details VALUES (4554, 3425, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (4555, 3426, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (4556, 3427, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (4557, 3428, 'attr', 'due_date', '2020-06-10', '2020-06-12');
INSERT INTO public.journal_details VALUES (4558, 3428, 'attr', 'start_date', '2020-06-10', '2020-06-12');
INSERT INTO public.journal_details VALUES (4559, 3429, 'attr', 'due_date', '2020-06-11', '2020-06-12');
INSERT INTO public.journal_details VALUES (4560, 3429, 'attr', 'start_date', '2020-06-11', '2020-06-12');
INSERT INTO public.journal_details VALUES (4561, 3430, 'attr', 'due_date', '2020-06-09', '2020-06-11');
INSERT INTO public.journal_details VALUES (4562, 3430, 'attr', 'start_date', '2020-06-09', '2020-06-11');
INSERT INTO public.journal_details VALUES (4563, 3431, 'attr', 'due_date', '2020-06-09', '2020-06-11');
INSERT INTO public.journal_details VALUES (4564, 3431, 'attr', 'start_date', '2020-06-09', '2020-06-11');
INSERT INTO public.journal_details VALUES (4565, 3432, 'attr', 'due_date', '2020-06-09', '2020-06-10');
INSERT INTO public.journal_details VALUES (4566, 3432, 'attr', 'start_date', '2020-06-09', '2020-06-10');
INSERT INTO public.journal_details VALUES (4567, 3433, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4568, 3434, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4569, 3435, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4570, 3436, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4571, 3437, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4572, 3438, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4573, 3439, 'attr', 'due_date', '2020-06-03', '2020-06-08');
INSERT INTO public.journal_details VALUES (4574, 3439, 'attr', 'start_date', '2020-06-03', '2020-06-08');
INSERT INTO public.journal_details VALUES (4575, 3440, 'attr', 'due_date', '2020-06-03', '2020-06-08');
INSERT INTO public.journal_details VALUES (4576, 3440, 'attr', 'start_date', '2020-06-03', '2020-06-08');
INSERT INTO public.journal_details VALUES (4577, 3441, 'attr', 'due_date', '2020-06-06', '2020-06-08');
INSERT INTO public.journal_details VALUES (4578, 3441, 'attr', 'start_date', '2020-06-06', '2020-06-08');
INSERT INTO public.journal_details VALUES (4579, 3442, 'attr', 'due_date', '2020-06-06', '2020-06-08');
INSERT INTO public.journal_details VALUES (4580, 3442, 'attr', 'start_date', '2020-06-06', '2020-06-08');
INSERT INTO public.journal_details VALUES (4581, 3443, 'attr', 'due_date', '2020-06-08', '2020-06-09');
INSERT INTO public.journal_details VALUES (4582, 3443, 'attr', 'start_date', '2020-06-08', '2020-06-09');
INSERT INTO public.journal_details VALUES (4583, 3444, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4584, 3445, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4585, 3446, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4586, 3447, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4587, 3448, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (4588, 3449, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (4589, 3450, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (4590, 3451, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (4591, 3452, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (4592, 3453, 'attr', 'due_date', '2020-06-10', '2020-06-09');
INSERT INTO public.journal_details VALUES (4593, 3453, 'attr', 'start_date', '2020-06-10', '2020-06-09');
INSERT INTO public.journal_details VALUES (4594, 3454, 'attr', 'due_date', '2020-06-11', '2020-06-09');
INSERT INTO public.journal_details VALUES (4595, 3454, 'attr', 'start_date', '2020-06-11', '2020-06-09');
INSERT INTO public.journal_details VALUES (4596, 3455, 'attr', 'due_date', '2020-06-12', '2020-06-10');
INSERT INTO public.journal_details VALUES (4597, 3455, 'attr', 'start_date', '2020-06-12', '2020-06-10');
INSERT INTO public.journal_details VALUES (4598, 3456, 'attr', 'due_date', '2020-06-12', '2020-06-10');
INSERT INTO public.journal_details VALUES (4599, 3456, 'attr', 'start_date', '2020-06-12', '2020-06-10');
INSERT INTO public.journal_details VALUES (4600, 3457, 'attr', 'due_date', '2020-06-11', '2020-06-10');
INSERT INTO public.journal_details VALUES (4601, 3457, 'attr', 'start_date', '2020-06-11', '2020-06-10');
INSERT INTO public.journal_details VALUES (4602, 3458, 'attr', 'subject', 'Hiển thị bao nhiêu sở ban ngành đã tạo tài khoản trên trang chủ STC', 'Báo cáo danh sách SBN đã tạo tk');
INSERT INTO public.journal_details VALUES (4603, 3458, 'attr', 'due_date', '2020-05-19', '2020-06-09');
INSERT INTO public.journal_details VALUES (4604, 3458, 'attr', 'start_date', '2020-05-19', '2020-06-09');
INSERT INTO public.journal_details VALUES (4605, 3459, 'attr', 'subject', 'Lọc doanh nghiệp đã tạo hồ sơ', 'Báo cáo doanh nghiệp đã tạo hồ sơ');
INSERT INTO public.journal_details VALUES (4606, 3459, 'attr', 'due_date', '2020-05-19', '2020-06-09');
INSERT INTO public.journal_details VALUES (4607, 3459, 'attr', 'start_date', '2020-05-19', '2020-06-09');
INSERT INTO public.journal_details VALUES (4608, 3460, 'attr', 'subject', 'Chức năng báo cáo tổng hợp sở ban ngành cho STC', 'Báo cáo SBN đã tạo hồ sơ');
INSERT INTO public.journal_details VALUES (4609, 3460, 'attr', 'due_date', '2020-05-19', '2020-06-09');
INSERT INTO public.journal_details VALUES (4610, 3460, 'attr', 'start_date', '2020-05-19', '2020-06-09');
INSERT INTO public.journal_details VALUES (4611, 3461, 'attr', 'subject', 'Báo cáo danh sách SBN đã tạo tk', 'Báo cáo SBN đã tạo tk');
INSERT INTO public.journal_details VALUES (4612, 3462, 'attr', 'due_date', '2020-04-06', '2020-06-09');
INSERT INTO public.journal_details VALUES (4613, 3462, 'attr', 'start_date', '2020-04-06', '2020-06-09');
INSERT INTO public.journal_details VALUES (4614, 3463, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4615, 3464, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4616, 3465, 'attr', 'due_date', '2020-06-09', '2020-06-12');
INSERT INTO public.journal_details VALUES (4617, 3465, 'attr', 'start_date', '2020-06-09', '2020-06-12');
INSERT INTO public.journal_details VALUES (4618, 3466, 'attr', 'due_date', '2020-06-09', '2020-06-11');
INSERT INTO public.journal_details VALUES (4619, 3466, 'attr', 'start_date', '2020-06-09', '2020-06-11');
INSERT INTO public.journal_details VALUES (4620, 3467, 'attr', 'due_date', '2020-06-09', '2020-06-10');
INSERT INTO public.journal_details VALUES (4621, 3467, 'attr', 'start_date', '2020-06-09', '2020-06-10');
INSERT INTO public.journal_details VALUES (4622, 3468, 'attr', 'due_date', '2020-06-09', '2020-06-10');
INSERT INTO public.journal_details VALUES (4623, 3468, 'attr', 'start_date', '2020-06-09', '2020-06-10');
INSERT INTO public.journal_details VALUES (4624, 3469, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4625, 3470, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4626, 3471, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4627, 3472, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4628, 3473, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4629, 3474, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4630, 3475, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4631, 3476, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4632, 3477, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (4633, 3478, 'attr', 'due_date', '2020-06-09', '2020-06-10');
INSERT INTO public.journal_details VALUES (4634, 3478, 'attr', 'start_date', '2020-06-09', '2020-06-10');
INSERT INTO public.journal_details VALUES (4635, 3479, 'attr', 'due_date', '2020-06-09', '2020-06-10');
INSERT INTO public.journal_details VALUES (4636, 3479, 'attr', 'start_date', '2020-06-09', '2020-06-10');
INSERT INTO public.journal_details VALUES (4637, 3480, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4638, 3481, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4639, 3482, 'attr', 'due_date', '2020-06-10', '2020-06-11');
INSERT INTO public.journal_details VALUES (4640, 3482, 'attr', 'start_date', '2020-06-10', '2020-06-11');
INSERT INTO public.journal_details VALUES (4641, 3483, 'attr', 'parent_id', NULL, '859');
INSERT INTO public.journal_details VALUES (4642, 3484, 'attr', 'due_date', NULL, '2020-06-15');
INSERT INTO public.journal_details VALUES (4643, 3484, 'attr', 'start_date', '2020-06-10', '2020-06-15');
INSERT INTO public.journal_details VALUES (4644, 3485, 'attr', 'start_date', '2020-06-10', '2020-06-11');
INSERT INTO public.journal_details VALUES (4653, 3490, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4654, 3491, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4655, 3492, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (4656, 3493, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (4657, 3494, 'attr', 'due_date', NULL, '2020-06-11');
INSERT INTO public.journal_details VALUES (4658, 3495, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4659, 3496, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4660, 3497, 'attr', 'due_date', '2020-06-10', '2020-06-12');
INSERT INTO public.journal_details VALUES (4661, 3497, 'attr', 'start_date', '2020-06-10', '2020-06-12');
INSERT INTO public.journal_details VALUES (4662, 3498, 'attr', 'due_date', '2020-06-11', '2020-06-12');
INSERT INTO public.journal_details VALUES (4663, 3498, 'attr', 'start_date', '2020-06-11', '2020-06-12');
INSERT INTO public.journal_details VALUES (4668, 3501, 'attr', 'due_date', '2020-04-03', '2020-06-12');
INSERT INTO public.journal_details VALUES (4669, 3501, 'attr', 'start_date', '2020-04-03', '2020-06-12');
INSERT INTO public.journal_details VALUES (4670, 3502, 'attr', 'due_date', '2020-04-03', '2020-06-12');
INSERT INTO public.journal_details VALUES (4671, 3502, 'attr', 'start_date', '2020-04-03', '2020-06-12');
INSERT INTO public.journal_details VALUES (4676, 3505, 'attr', 'due_date', '2020-06-12', '2020-06-15');
INSERT INTO public.journal_details VALUES (4677, 3505, 'attr', 'start_date', '2020-06-12', '2020-06-15');
INSERT INTO public.journal_details VALUES (4678, 3506, 'attr', 'due_date', '2020-06-12', '2020-06-15');
INSERT INTO public.journal_details VALUES (4679, 3506, 'attr', 'start_date', '2020-06-12', '2020-06-15');
INSERT INTO public.journal_details VALUES (4680, 3507, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (4681, 3507, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (4682, 3508, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (4683, 3509, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (4684, 3510, 'attr', 'done_ratio', '0', '70');
INSERT INTO public.journal_details VALUES (4685, 3511, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (4686, 3512, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4687, 3513, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4688, 3514, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4689, 3515, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4690, 3516, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4691, 3517, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4692, 3518, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4693, 3519, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4694, 3520, 'attr', 'status_id', '1', '6');
INSERT INTO public.journal_details VALUES (4695, 3521, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4696, 3522, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4697, 3523, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4698, 3523, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4699, 3524, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4700, 3525, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (4701, 3526, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4702, 3526, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4703, 3527, 'attr', 'subject', 'Trang web', 'Trang chủ');
INSERT INTO public.journal_details VALUES (4704, 3528, 'attr', 'subject', 'CMS', 'Quản lý bài viết');
INSERT INTO public.journal_details VALUES (4705, 3529, 'attr', 'subject', 'Danh sách bài viết (Xóa bài viết)', 'Danh sách bài viết');
INSERT INTO public.journal_details VALUES (4706, 3530, 'attr', 'subject', 'Load danh sách tin tức theo code danh mục', 'Load tin tức theo code danh mục');
INSERT INTO public.journal_details VALUES (4707, 3531, 'attr', 'subject', 'Load tin tức theo code danh mục', 'Load tin tức section 1');
INSERT INTO public.journal_details VALUES (4708, 3531, 'attr', 'description', '', 'theo code danh mục');
INSERT INTO public.journal_details VALUES (4709, 3532, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4710, 3533, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4711, 3534, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4712, 3535, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4713, 3536, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4714, 3537, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4715, 3538, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4716, 3539, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4717, 3540, 'attr', 'due_date', NULL, '2020-06-15');
INSERT INTO public.journal_details VALUES (4718, 3541, 'attr', 'due_date', NULL, '2020-06-15');
INSERT INTO public.journal_details VALUES (4719, 3542, 'attr', 'due_date', NULL, '2020-06-15');
INSERT INTO public.journal_details VALUES (4720, 3543, 'attr', 'due_date', NULL, '2020-06-15');
INSERT INTO public.journal_details VALUES (4721, 3544, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4722, 3544, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4723, 3545, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4724, 3545, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4725, 3546, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4726, 3547, 'attr', 'subject', 'Tính điểm xem xét học viên được VKL, TTN chưa hợp lệ.', 'Giới hạn điểm VKL');
INSERT INTO public.journal_details VALUES (4727, 3548, 'attr', 'due_date', '2020-06-15', '2020-06-19');
INSERT INTO public.journal_details VALUES (4728, 3548, 'attr', 'start_date', '2020-06-15', '2020-06-19');
INSERT INTO public.journal_details VALUES (4729, 3549, 'attr', 'due_date', '2020-06-15', '2020-06-18');
INSERT INTO public.journal_details VALUES (4730, 3549, 'attr', 'start_date', '2020-06-15', '2020-06-18');
INSERT INTO public.journal_details VALUES (4731, 3550, 'attr', 'due_date', '2020-06-15', '2020-06-16');
INSERT INTO public.journal_details VALUES (4732, 3550, 'attr', 'start_date', '2020-06-15', '2020-06-16');
INSERT INTO public.journal_details VALUES (4733, 3551, 'attr', 'due_date', '2020-06-16', '2020-06-17');
INSERT INTO public.journal_details VALUES (4734, 3552, 'attr', 'due_date', NULL, '2020-06-16');
INSERT INTO public.journal_details VALUES (4735, 3553, 'attr', 'due_date', NULL, '2020-06-17');
INSERT INTO public.journal_details VALUES (4736, 3553, 'attr', 'start_date', '2020-06-15', '2020-06-17');
INSERT INTO public.journal_details VALUES (4737, 3554, 'attr', 'due_date', NULL, '2020-06-18');
INSERT INTO public.journal_details VALUES (4738, 3554, 'attr', 'start_date', '2020-06-15', '2020-06-17');
INSERT INTO public.journal_details VALUES (4739, 3555, 'attr', 'start_date', '2020-06-17', '2020-06-18');
INSERT INTO public.journal_details VALUES (4740, 3556, 'attr', 'due_date', NULL, '2020-06-17');
INSERT INTO public.journal_details VALUES (4741, 3557, 'attr', 'due_date', '2020-06-17', '2020-06-16');
INSERT INTO public.journal_details VALUES (4742, 3558, 'attr', 'due_date', NULL, '2020-06-17');
INSERT INTO public.journal_details VALUES (4743, 3558, 'attr', 'start_date', '2020-06-15', '2020-06-17');
INSERT INTO public.journal_details VALUES (4744, 3559, 'attr', 'due_date', NULL, '2020-06-18');
INSERT INTO public.journal_details VALUES (4745, 3559, 'attr', 'start_date', '2020-06-15', '2020-06-18');
INSERT INTO public.journal_details VALUES (4746, 3560, 'attr', 'due_date', NULL, '2020-06-18');
INSERT INTO public.journal_details VALUES (4747, 3560, 'attr', 'start_date', '2020-06-15', '2020-06-18');
INSERT INTO public.journal_details VALUES (4748, 3561, 'attr', 'due_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4749, 3561, 'attr', 'start_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4750, 3562, 'attr', 'due_date', NULL, '2020-06-17');
INSERT INTO public.journal_details VALUES (4751, 3563, 'attr', 'due_date', NULL, '2020-06-18');
INSERT INTO public.journal_details VALUES (4752, 3563, 'attr', 'start_date', '2020-06-15', '2020-06-18');
INSERT INTO public.journal_details VALUES (4753, 3564, 'attr', 'due_date', NULL, '2020-06-18');
INSERT INTO public.journal_details VALUES (4754, 3564, 'attr', 'start_date', '2020-06-15', '2020-06-18');
INSERT INTO public.journal_details VALUES (4755, 3565, 'attr', 'due_date', NULL, '2020-06-19');
INSERT INTO public.journal_details VALUES (4756, 3565, 'attr', 'start_date', '2020-06-15', '2020-06-19');
INSERT INTO public.journal_details VALUES (4757, 3566, 'attr', 'due_date', NULL, '2020-06-20');
INSERT INTO public.journal_details VALUES (4758, 3566, 'attr', 'start_date', '2020-06-15', '2020-06-20');
INSERT INTO public.journal_details VALUES (4759, 3567, 'attr', 'due_date', NULL, '2020-06-22');
INSERT INTO public.journal_details VALUES (4760, 3567, 'attr', 'start_date', '2020-06-15', '2020-06-22');
INSERT INTO public.journal_details VALUES (4761, 3568, 'attr', 'due_date', NULL, '2020-06-22');
INSERT INTO public.journal_details VALUES (4762, 3568, 'attr', 'start_date', '2020-06-15', '2020-06-22');
INSERT INTO public.journal_details VALUES (4763, 3569, 'attr', 'due_date', '2020-06-22', '2020-06-23');
INSERT INTO public.journal_details VALUES (4764, 3569, 'attr', 'start_date', '2020-06-22', '2020-06-23');
INSERT INTO public.journal_details VALUES (4765, 3570, 'attr', 'due_date', NULL, '2020-06-17');
INSERT INTO public.journal_details VALUES (4766, 3571, 'attr', 'due_date', NULL, '2020-06-19');
INSERT INTO public.journal_details VALUES (4767, 3571, 'attr', 'start_date', '2020-06-15', '2020-06-18');
INSERT INTO public.journal_details VALUES (4768, 3572, 'attr', 'due_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4769, 3573, 'attr', 'due_date', '2020-06-19', '2020-06-20');
INSERT INTO public.journal_details VALUES (4770, 3573, 'attr', 'start_date', '2020-06-19', '2020-06-20');
INSERT INTO public.journal_details VALUES (4771, 3574, 'attr', 'due_date', NULL, '2020-06-17');
INSERT INTO public.journal_details VALUES (4772, 3574, 'attr', 'start_date', '2020-06-15', '2020-06-17');
INSERT INTO public.journal_details VALUES (4773, 3575, 'attr', 'due_date', NULL, '2020-06-17');
INSERT INTO public.journal_details VALUES (4774, 3575, 'attr', 'start_date', '2020-06-15', '2020-06-17');
INSERT INTO public.journal_details VALUES (4775, 3576, 'attr', 'due_date', NULL, '2020-06-17');
INSERT INTO public.journal_details VALUES (4776, 3576, 'attr', 'start_date', '2020-06-15', '2020-06-17');
INSERT INTO public.journal_details VALUES (4777, 3577, 'attr', 'due_date', NULL, '2020-06-18');
INSERT INTO public.journal_details VALUES (4778, 3577, 'attr', 'start_date', '2020-06-15', '2020-06-18');
INSERT INTO public.journal_details VALUES (4779, 3578, 'attr', 'due_date', NULL, '2020-06-18');
INSERT INTO public.journal_details VALUES (4780, 3578, 'attr', 'start_date', '2020-06-15', '2020-06-18');
INSERT INTO public.journal_details VALUES (4781, 3579, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4782, 3580, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4783, 3581, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4784, 3582, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4785, 3583, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (4786, 3584, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4787, 3585, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4788, 3586, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4789, 3587, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (4790, 3588, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (4791, 3589, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (4792, 3590, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (4793, 3591, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (4794, 3592, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (4795, 3593, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (4796, 3594, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (4797, 3595, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (4798, 3596, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (4799, 3597, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (4800, 3598, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (4801, 3599, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (4802, 3600, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (4803, 3601, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (4804, 3602, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (4805, 3603, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (4806, 3604, 'attr', 'assigned_to_id', '6', '8');
INSERT INTO public.journal_details VALUES (4807, 3605, 'attr', 'assigned_to_id', '6', '8');
INSERT INTO public.journal_details VALUES (4808, 3606, 'attr', 'assigned_to_id', '6', '8');
INSERT INTO public.journal_details VALUES (4809, 3607, 'attr', 'assigned_to_id', '6', '8');
INSERT INTO public.journal_details VALUES (4810, 3608, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (4811, 3609, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (4812, 3610, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (4813, 3611, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (4814, 3612, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (4815, 3613, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (4816, 3614, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (4817, 3615, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (4818, 3616, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (4819, 3617, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (4820, 3618, 'attr', 'due_date', '2020-06-19', '2020-06-18');
INSERT INTO public.journal_details VALUES (4821, 3619, 'attr', 'due_date', '2020-06-17', '2020-06-18');
INSERT INTO public.journal_details VALUES (4822, 3619, 'attr', 'start_date', '2020-06-17', '2020-06-18');
INSERT INTO public.journal_details VALUES (4823, 3620, 'attr', 'due_date', '2020-06-17', '2020-06-18');
INSERT INTO public.journal_details VALUES (4824, 3620, 'attr', 'start_date', '2020-06-17', '2020-06-18');
INSERT INTO public.journal_details VALUES (4825, 3621, 'attr', 'due_date', '2020-06-19', '2020-06-18');
INSERT INTO public.journal_details VALUES (4826, 3622, 'attr', 'due_date', '2020-06-17', '2020-06-18');
INSERT INTO public.journal_details VALUES (4827, 3622, 'attr', 'start_date', '2020-06-17', '2020-06-18');
INSERT INTO public.journal_details VALUES (4828, 3623, 'attr', 'due_date', '2020-06-17', '2020-06-18');
INSERT INTO public.journal_details VALUES (4829, 3623, 'attr', 'start_date', '2020-06-17', '2020-06-18');
INSERT INTO public.journal_details VALUES (4830, 3624, 'attr', 'due_date', '2020-06-17', '2020-06-18');
INSERT INTO public.journal_details VALUES (4831, 3624, 'attr', 'start_date', '2020-06-17', '2020-06-18');
INSERT INTO public.journal_details VALUES (4832, 3625, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4833, 3625, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4834, 3626, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4835, 3626, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4836, 3627, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4837, 3627, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4838, 3628, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4839, 3628, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4840, 3629, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4841, 3629, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4842, 3630, 'attr', 'parent_id', NULL, '924');
INSERT INTO public.journal_details VALUES (4843, 3631, 'attr', 'due_date', '2020-06-20', '2020-06-18');
INSERT INTO public.journal_details VALUES (4844, 3631, 'attr', 'assigned_to_id', '6', '12');
INSERT INTO public.journal_details VALUES (4845, 3631, 'attr', 'start_date', '2020-06-20', '2020-06-18');
INSERT INTO public.journal_details VALUES (4846, 3632, 'attr', 'due_date', '2020-06-20', '2020-06-18');
INSERT INTO public.journal_details VALUES (4847, 3632, 'attr', 'start_date', '2020-06-20', '2020-06-18');
INSERT INTO public.journal_details VALUES (4848, 3633, 'attr', 'due_date', '2020-06-16', '2020-06-19');
INSERT INTO public.journal_details VALUES (4849, 3634, 'attr', 'due_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4850, 3634, 'attr', 'start_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4851, 3635, 'attr', 'due_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4852, 3635, 'attr', 'start_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4853, 3636, 'attr', 'due_date', NULL, '2020-06-18');
INSERT INTO public.journal_details VALUES (4854, 3636, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4855, 3636, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (4856, 3636, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4857, 3637, 'attr', 'due_date', NULL, '2020-06-19');
INSERT INTO public.journal_details VALUES (4858, 3637, 'attr', 'start_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4859, 3638, 'attr', 'assigned_to_id', '4', '12');
INSERT INTO public.journal_details VALUES (4860, 3639, 'attr', 'assigned_to_id', '4', '12');
INSERT INTO public.journal_details VALUES (4861, 3640, 'attr', 'assigned_to_id', '4', '12');
INSERT INTO public.journal_details VALUES (4862, 3641, 'attr', 'assigned_to_id', '4', '12');
INSERT INTO public.journal_details VALUES (4863, 3642, 'attr', 'assigned_to_id', '4', '12');
INSERT INTO public.journal_details VALUES (4864, 3643, 'attr', 'due_date', '2020-06-17', '2020-06-19');
INSERT INTO public.journal_details VALUES (4865, 3643, 'attr', 'start_date', '2020-06-16', '2020-06-19');
INSERT INTO public.journal_details VALUES (4866, 3644, 'attr', 'due_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4867, 3644, 'attr', 'start_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4868, 3645, 'attr', 'due_date', '2020-06-17', '2020-06-19');
INSERT INTO public.journal_details VALUES (4869, 3645, 'attr', 'start_date', '2020-06-15', '2020-06-19');
INSERT INTO public.journal_details VALUES (4870, 3646, 'attr', 'due_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4871, 3646, 'attr', 'start_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4872, 3647, 'attr', 'due_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4873, 3647, 'attr', 'start_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4874, 3648, 'attr', 'due_date', '2020-06-16', '2020-06-19');
INSERT INTO public.journal_details VALUES (4875, 3648, 'attr', 'start_date', '2020-06-15', '2020-06-19');
INSERT INTO public.journal_details VALUES (4876, 3649, 'attr', 'due_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4877, 3649, 'attr', 'start_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4878, 3650, 'attr', 'due_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4879, 3650, 'attr', 'start_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4880, 3651, 'attr', 'due_date', '2020-06-17', '2020-06-19');
INSERT INTO public.journal_details VALUES (4881, 3651, 'attr', 'start_date', '2020-06-15', '2020-06-19');
INSERT INTO public.journal_details VALUES (4882, 3652, 'attr', 'due_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4883, 3652, 'attr', 'start_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4884, 3653, 'attr', 'due_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4885, 3653, 'attr', 'start_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4886, 3654, 'attr', 'due_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4887, 3654, 'attr', 'start_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4888, 3655, 'attr', 'due_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4889, 3655, 'attr', 'start_date', '2020-06-18', '2020-06-19');
INSERT INTO public.journal_details VALUES (4890, 3656, 'attr', 'due_date', '2020-06-19', '2020-06-20');
INSERT INTO public.journal_details VALUES (4891, 3656, 'attr', 'start_date', '2020-06-19', '2020-06-20');
INSERT INTO public.journal_details VALUES (4892, 3657, 'attr', 'due_date', '2020-06-19', '2020-06-20');
INSERT INTO public.journal_details VALUES (4893, 3657, 'attr', 'start_date', '2020-06-19', '2020-06-20');
INSERT INTO public.journal_details VALUES (4894, 3658, 'attr', 'due_date', '2020-06-19', '2020-06-20');
INSERT INTO public.journal_details VALUES (4895, 3658, 'attr', 'start_date', '2020-06-19', '2020-06-20');
INSERT INTO public.journal_details VALUES (4896, 3659, 'attr', 'due_date', '2020-06-19', '2020-06-20');
INSERT INTO public.journal_details VALUES (4897, 3659, 'attr', 'start_date', '2020-06-19', '2020-06-20');
INSERT INTO public.journal_details VALUES (4898, 3660, 'attr', 'due_date', '2020-06-20', '2020-06-22');
INSERT INTO public.journal_details VALUES (4899, 3660, 'attr', 'start_date', '2020-06-20', '2020-06-22');
INSERT INTO public.journal_details VALUES (4900, 3661, 'attr', 'due_date', '2020-06-19', '2020-06-22');
INSERT INTO public.journal_details VALUES (4901, 3661, 'attr', 'start_date', '2020-06-19', '2020-06-22');
INSERT INTO public.journal_details VALUES (4902, 3662, 'attr', 'due_date', '2020-06-19', '2020-06-22');
INSERT INTO public.journal_details VALUES (4903, 3662, 'attr', 'start_date', '2020-06-19', '2020-06-22');
INSERT INTO public.journal_details VALUES (4904, 3663, 'attr', 'due_date', '2020-06-19', '2020-06-22');
INSERT INTO public.journal_details VALUES (4905, 3663, 'attr', 'start_date', '2020-06-19', '2020-06-22');
INSERT INTO public.journal_details VALUES (4906, 3664, 'attr', 'due_date', '2020-06-19', '2020-06-20');
INSERT INTO public.journal_details VALUES (4907, 3664, 'attr', 'start_date', '2020-06-19', '2020-06-20');
INSERT INTO public.journal_details VALUES (4908, 3665, 'attr', 'due_date', '2020-06-19', '2020-06-20');
INSERT INTO public.journal_details VALUES (4909, 3665, 'attr', 'start_date', '2020-06-19', '2020-06-20');
INSERT INTO public.journal_details VALUES (4910, 3666, 'attr', 'due_date', '2020-06-19', '2020-06-20');
INSERT INTO public.journal_details VALUES (4911, 3666, 'attr', 'start_date', '2020-06-19', '2020-06-20');
INSERT INTO public.journal_details VALUES (4912, 3667, 'attr', 'start_date', '2020-06-19', '2020-06-18');
INSERT INTO public.journal_details VALUES (4913, 3668, 'attr', 'done_ratio', '0', '40');
INSERT INTO public.journal_details VALUES (4914, 3669, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4915, 3670, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4916, 3671, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4917, 3672, 'attr', 'status_id', '3', '1');
INSERT INTO public.journal_details VALUES (4918, 3673, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4919, 3674, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4920, 3675, 'attr', 'parent_id', '924', '914');
INSERT INTO public.journal_details VALUES (4921, 3676, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (4922, 3677, 'attr', 'due_date', '2020-06-22', '2020-06-18');
INSERT INTO public.journal_details VALUES (4923, 3677, 'attr', 'start_date', '2020-06-22', '2020-06-18');
INSERT INTO public.journal_details VALUES (4924, 3678, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (4925, 3679, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4926, 3680, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4927, 3681, 'attr', 'due_date', '2020-06-25', '2020-06-22');
INSERT INTO public.journal_details VALUES (4928, 3681, 'attr', 'start_date', '2020-06-25', '2020-06-22');
INSERT INTO public.journal_details VALUES (4929, 3682, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4930, 3683, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4931, 3684, 'attr', 'done_ratio', '40', '100');
INSERT INTO public.journal_details VALUES (4932, 3685, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4933, 3686, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (4934, 3687, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (4935, 3688, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (4936, 3689, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (4937, 3690, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (4938, 3691, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (4939, 3692, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (4940, 3693, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (4941, 3694, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (4942, 3695, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (4943, 3696, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (4944, 3697, 'attr', 'done_ratio', '0', '80');
INSERT INTO public.journal_details VALUES (4945, 3698, 'attr', 'done_ratio', '0', '80');
INSERT INTO public.journal_details VALUES (4946, 3699, 'attr', 'done_ratio', '0', '80');
INSERT INTO public.journal_details VALUES (4947, 3700, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4948, 3701, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4949, 3702, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4950, 3703, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (4951, 3704, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (4952, 3705, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (4953, 3706, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4954, 3707, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4955, 3708, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4956, 3709, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4957, 3710, 'attr', 'due_date', NULL, '2020-06-22');
INSERT INTO public.journal_details VALUES (4958, 3710, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4959, 3710, 'attr', 'start_date', '2020-06-18', '2020-06-22');
INSERT INTO public.journal_details VALUES (4960, 3710, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4961, 3711, 'attr', 'due_date', '2020-06-22', '2020-06-20');
INSERT INTO public.journal_details VALUES (4962, 3711, 'attr', 'start_date', '2020-06-22', '2020-06-20');
INSERT INTO public.journal_details VALUES (4963, 3712, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4964, 3713, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4965, 3714, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4966, 3715, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4967, 3716, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4968, 3717, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (4969, 3718, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (4970, 3719, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4971, 3720, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (4972, 3721, 'attr', 'done_ratio', '0', '30');
INSERT INTO public.journal_details VALUES (4973, 3722, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4974, 3723, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4975, 3724, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4976, 3725, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4977, 3726, 'attr', 'done_ratio', '30', '100');
INSERT INTO public.journal_details VALUES (4978, 3727, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (4979, 3728, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (4980, 3729, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (4981, 3730, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (4982, 3731, 'attr', 'parent_id', '501', '884');
INSERT INTO public.journal_details VALUES (4983, 3732, 'attr', 'parent_id', NULL, '884');
INSERT INTO public.journal_details VALUES (4984, 3733, 'attr', 'parent_id', NULL, '884');
INSERT INTO public.journal_details VALUES (4985, 3734, 'attr', 'parent_id', NULL, '884');
INSERT INTO public.journal_details VALUES (4986, 3735, 'attr', 'parent_id', NULL, '884');
INSERT INTO public.journal_details VALUES (4987, 3736, 'attr', 'due_date', NULL, '2020-06-23');
INSERT INTO public.journal_details VALUES (4988, 3737, 'attr', 'due_date', NULL, '2020-06-23');
INSERT INTO public.journal_details VALUES (4990, 3739, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4991, 3740, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4992, 3741, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4993, 3742, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4994, 3743, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4995, 3744, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4996, 3745, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4997, 3746, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4998, 3747, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (4999, 3748, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5000, 3749, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5001, 3750, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5002, 3751, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5003, 3752, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5004, 3753, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5005, 3754, 'attr', 'due_date', '2020-06-08', '2020-06-23');
INSERT INTO public.journal_details VALUES (5006, 3754, 'attr', 'start_date', '2020-06-08', '2020-06-23');
INSERT INTO public.journal_details VALUES (5007, 3755, 'attr', 'due_date', '2020-06-11', '2020-06-23');
INSERT INTO public.journal_details VALUES (5008, 3755, 'attr', 'start_date', '2020-06-11', '2020-06-23');
INSERT INTO public.journal_details VALUES (5009, 3756, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5010, 3757, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5011, 3758, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5012, 3759, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5013, 3760, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5014, 3761, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5015, 3762, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5016, 3763, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5017, 3764, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5019, 3766, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5020, 3767, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5021, 3768, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5022, 3769, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5023, 3770, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5024, 3771, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5025, 3772, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5026, 3773, 'attr', 'subject', 'PHẦN MỀM QuẢN LÝ HẠ TẦNG BCVT', 'HẠ TẦNG BCVT Kontum');
INSERT INTO public.journal_details VALUES (5027, 3774, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5028, 3775, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5029, 3776, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5030, 3777, 'attr', 'status_id', '5', '3');
INSERT INTO public.journal_details VALUES (5031, 3778, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5032, 3779, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5033, 3780, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5034, 3781, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (5035, 3782, 'attr', 'done_ratio', '0', '60');
INSERT INTO public.journal_details VALUES (5036, 3783, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (5037, 3784, 'attr', 'done_ratio', '60', '90');
INSERT INTO public.journal_details VALUES (5038, 3785, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (5039, 3786, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5040, 3787, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5041, 3788, 'attr', 'due_date', NULL, '2020-06-26');
INSERT INTO public.journal_details VALUES (5042, 3789, 'attr', 'due_date', NULL, '2020-06-26');
INSERT INTO public.journal_details VALUES (5043, 3790, 'attr', 'due_date', NULL, '2020-06-26');
INSERT INTO public.journal_details VALUES (5044, 3791, 'attr', 'due_date', NULL, '2020-06-26');
INSERT INTO public.journal_details VALUES (5045, 3792, 'attr', 'due_date', NULL, '2020-06-26');
INSERT INTO public.journal_details VALUES (5046, 3793, 'attr', 'due_date', NULL, '2020-06-26');
INSERT INTO public.journal_details VALUES (5047, 3794, 'attr', 'due_date', NULL, '2020-06-26');
INSERT INTO public.journal_details VALUES (5048, 3795, 'attr', 'due_date', NULL, '2020-06-26');
INSERT INTO public.journal_details VALUES (5049, 3796, 'attr', 'due_date', NULL, '2020-06-26');
INSERT INTO public.journal_details VALUES (5050, 3797, 'attr', 'due_date', NULL, '2020-06-26');
INSERT INTO public.journal_details VALUES (5051, 3798, 'attr', 'due_date', NULL, '2020-06-26');
INSERT INTO public.journal_details VALUES (5052, 3799, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5053, 3800, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5054, 3801, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (5055, 3802, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (5056, 3803, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (5057, 3804, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (5058, 3805, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (5059, 3806, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5060, 3807, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5061, 3808, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5062, 3809, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5071, 3814, 'attr', 'due_date', NULL, '2020-06-27');
INSERT INTO public.journal_details VALUES (5072, 3814, 'attr', 'start_date', '2020-06-26', '2020-06-27');
INSERT INTO public.journal_details VALUES (5073, 3815, 'attr', 'priority_id', '3', '2');
INSERT INTO public.journal_details VALUES (5074, 3816, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (5075, 3817, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5076, 3818, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5077, 3819, 'attr', 'due_date', NULL, '2020-06-26');
INSERT INTO public.journal_details VALUES (5078, 3819, 'attr', 'assigned_to_id', '12', '5');
INSERT INTO public.journal_details VALUES (5081, 3821, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5082, 3822, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5083, 3823, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5084, 3824, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5085, 3825, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5086, 3826, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5087, 3827, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5088, 3828, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5089, 3829, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5090, 3830, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5091, 3831, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5092, 3832, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5093, 3833, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5094, 3834, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5095, 3835, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5096, 3836, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5097, 3837, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5098, 3838, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5099, 3839, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5100, 3840, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5101, 3841, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5102, 3842, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5103, 3843, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5104, 3844, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5105, 3845, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (5106, 3846, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5107, 3847, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5108, 3848, 'attr', 'done_ratio', '0', '80');
INSERT INTO public.journal_details VALUES (5109, 3849, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (5110, 3850, 'attr', 'due_date', NULL, '2020-07-02');
INSERT INTO public.journal_details VALUES (5111, 3850, 'attr', 'start_date', '2020-06-30', '2020-07-02');
INSERT INTO public.journal_details VALUES (5112, 3851, 'attr', 'due_date', NULL, '2020-07-02');
INSERT INTO public.journal_details VALUES (5113, 3851, 'attr', 'start_date', '2020-06-30', '2020-07-02');
INSERT INTO public.journal_details VALUES (5114, 3852, 'attr', 'due_date', NULL, '2020-07-02');
INSERT INTO public.journal_details VALUES (5115, 3852, 'attr', 'start_date', '2020-06-30', '2020-07-02');
INSERT INTO public.journal_details VALUES (5116, 3853, 'attr', 'due_date', NULL, '2020-07-02');
INSERT INTO public.journal_details VALUES (5117, 3853, 'attr', 'start_date', '2020-06-30', '2020-07-02');
INSERT INTO public.journal_details VALUES (5118, 3854, 'attr', 'due_date', '2020-06-22', '2020-07-02');
INSERT INTO public.journal_details VALUES (5119, 3854, 'attr', 'start_date', '2020-06-22', '2020-07-02');
INSERT INTO public.journal_details VALUES (5120, 3855, 'attr', 'due_date', '2020-06-19', '2020-07-02');
INSERT INTO public.journal_details VALUES (5121, 3855, 'attr', 'start_date', '2020-06-19', '2020-07-02');
INSERT INTO public.journal_details VALUES (5122, 3856, 'attr', 'due_date', '2020-06-19', '2020-07-02');
INSERT INTO public.journal_details VALUES (5123, 3856, 'attr', 'start_date', '2020-06-19', '2020-07-02');
INSERT INTO public.journal_details VALUES (5124, 3857, 'attr', 'due_date', '2020-06-20', '2020-07-02');
INSERT INTO public.journal_details VALUES (5125, 3857, 'attr', 'start_date', '2020-06-20', '2020-07-02');
INSERT INTO public.journal_details VALUES (5126, 3858, 'attr', 'due_date', '2020-06-22', '2020-07-02');
INSERT INTO public.journal_details VALUES (5127, 3858, 'attr', 'start_date', '2020-06-22', '2020-07-02');
INSERT INTO public.journal_details VALUES (5128, 3859, 'attr', 'due_date', '2020-06-23', '2020-07-02');
INSERT INTO public.journal_details VALUES (5129, 3859, 'attr', 'start_date', '2020-06-23', '2020-07-02');
INSERT INTO public.journal_details VALUES (5130, 3860, 'attr', 'due_date', '2020-06-22', '2020-07-02');
INSERT INTO public.journal_details VALUES (5131, 3860, 'attr', 'start_date', '2020-06-22', '2020-07-02');
INSERT INTO public.journal_details VALUES (5134, 3862, 'attr', 'due_date', NULL, '2020-07-02');
INSERT INTO public.journal_details VALUES (5135, 3862, 'attr', 'start_date', '2020-07-01', '2020-07-02');
INSERT INTO public.journal_details VALUES (5138, 3864, 'attr', 'due_date', NULL, '2020-07-02');
INSERT INTO public.journal_details VALUES (5139, 3864, 'attr', 'start_date', '2020-07-01', '2020-07-02');
INSERT INTO public.journal_details VALUES (5140, 3865, 'attr', 'due_date', NULL, '2020-07-02');
INSERT INTO public.journal_details VALUES (5141, 3865, 'attr', 'start_date', '2020-07-01', '2020-07-02');
INSERT INTO public.journal_details VALUES (5142, 3866, 'attr', 'due_date', NULL, '2020-07-02');
INSERT INTO public.journal_details VALUES (5143, 3866, 'attr', 'start_date', '2020-07-01', '2020-07-02');
INSERT INTO public.journal_details VALUES (5144, 3867, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (5145, 3868, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5146, 3869, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5147, 3870, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5148, 3871, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5149, 3872, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5150, 3873, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (5151, 3874, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (5152, 3875, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (5153, 3876, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (5154, 3877, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (5155, 3878, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5156, 3879, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5157, 3880, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5158, 3881, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5159, 3882, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5160, 3883, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5161, 3884, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5162, 3885, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5163, 3886, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5164, 3887, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5165, 3888, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (5166, 3889, 'attr', 'parent_id', NULL, '973');
INSERT INTO public.journal_details VALUES (5167, 3890, 'attr', 'parent_id', NULL, '973');
INSERT INTO public.journal_details VALUES (5168, 3891, 'attr', 'parent_id', NULL, '973');
INSERT INTO public.journal_details VALUES (5169, 3892, 'attr', 'parent_id', NULL, '973');
INSERT INTO public.journal_details VALUES (5170, 3893, 'attr', 'parent_id', NULL, '973');
INSERT INTO public.journal_details VALUES (5171, 3894, 'attr', 'parent_id', NULL, '973');
INSERT INTO public.journal_details VALUES (5172, 3895, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5173, 3896, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5174, 3897, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5175, 3898, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5176, 3899, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5177, 3900, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5178, 3901, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5179, 3902, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5180, 3903, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5181, 3904, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5182, 3905, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5183, 3906, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5184, 3907, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5185, 3908, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5186, 3909, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5187, 3910, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5188, 3911, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5189, 3912, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5190, 3913, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5191, 3914, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5192, 3915, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5193, 3916, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5194, 3917, 'attr', 'project_id', '4', '8');
INSERT INTO public.journal_details VALUES (5195, 3918, 'attr', 'project_id', '4', '8');
INSERT INTO public.journal_details VALUES (5196, 3919, 'attr', 'project_id', '4', '8');
INSERT INTO public.journal_details VALUES (5197, 3920, 'attr', 'project_id', '4', '8');
INSERT INTO public.journal_details VALUES (5198, 3921, 'attr', 'project_id', '4', '8');
INSERT INTO public.journal_details VALUES (5199, 3922, 'attr', 'project_id', '4', '8');
INSERT INTO public.journal_details VALUES (5200, 3923, 'attr', 'project_id', '4', '8');
INSERT INTO public.journal_details VALUES (5201, 3924, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5202, 3925, 'attr', 'project_id', '8', '4');
INSERT INTO public.journal_details VALUES (5203, 3926, 'attr', 'subject', 'Lỗi thêm mới khu kinh tế', 'Thêm mới khu kinh tế');
INSERT INTO public.journal_details VALUES (5204, 3927, 'attr', 'subject', 'Thêm khu kinh tế, kcn, ccn, điểm đầu tư', 'Thêm mới');
INSERT INTO public.journal_details VALUES (5205, 3928, 'attr', 'subject', 'Tạo danh sách các đối tượng DDT, KKT, KCN,CCN', 'Danh sách hiển thị điểm đầu tư, KKT, KCN, CCN');
INSERT INTO public.journal_details VALUES (5206, 3928, 'attr', 'due_date', '2020-07-04', '2020-07-08');
INSERT INTO public.journal_details VALUES (5207, 3928, 'attr', 'start_date', '2020-07-03', '2020-07-07');
INSERT INTO public.journal_details VALUES (5208, 3929, 'attr', 'parent_id', NULL, '1008');
INSERT INTO public.journal_details VALUES (5209, 3930, 'attr', 'parent_id', NULL, '1008');
INSERT INTO public.journal_details VALUES (5210, 3931, 'attr', 'parent_id', NULL, '1008');
INSERT INTO public.journal_details VALUES (5211, 3932, 'attr', 'parent_id', NULL, '1008');
INSERT INTO public.journal_details VALUES (5213, 3934, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5214, 3935, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5215, 3936, 'attr', 'due_date', NULL, '2020-07-07');
INSERT INTO public.journal_details VALUES (5216, 3937, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5217, 3938, 'attr', 'due_date', NULL, '2020-07-08');
INSERT INTO public.journal_details VALUES (5218, 3939, 'attr', 'due_date', NULL, '2020-07-08');
INSERT INTO public.journal_details VALUES (5219, 3940, 'attr', 'due_date', NULL, '2020-07-08');
INSERT INTO public.journal_details VALUES (5220, 3941, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5221, 3941, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5222, 3942, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5223, 3942, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5225, 3944, 'attr', 'parent_id', NULL, '1008');
INSERT INTO public.journal_details VALUES (5226, 3945, 'attr', 'parent_id', NULL, '1008');
INSERT INTO public.journal_details VALUES (5228, 3947, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5229, 3948, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5230, 3949, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5231, 3950, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5232, 3951, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5233, 3952, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5234, 3953, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5235, 3954, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5236, 3955, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5237, 3956, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5238, 3957, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5239, 3958, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5240, 3959, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5241, 3960, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5242, 3961, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5243, 3962, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5244, 3963, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5245, 3964, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5246, 3965, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5247, 3966, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5248, 3967, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5249, 3968, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (5250, 3969, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (5251, 3970, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5252, 3971, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5253, 3972, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5254, 3973, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5255, 3974, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5256, 3975, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5257, 3976, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5258, 3977, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5259, 3978, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5260, 3979, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5261, 3980, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5262, 3981, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5263, 3982, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5264, 3983, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5265, 3984, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5266, 3985, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5267, 3986, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5268, 3987, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5269, 3988, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5270, 3989, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5271, 3990, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5272, 3991, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5273, 3992, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5274, 3993, 'attr', 'parent_id', '914', '1008');
INSERT INTO public.journal_details VALUES (5275, 3994, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5276, 3995, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5277, 3996, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5278, 3997, 'attr', 'parent_id', NULL, '1008');
INSERT INTO public.journal_details VALUES (5279, 3998, 'attr', 'subject', 'Thêm mới', 'Thêm mới chưa được');
INSERT INTO public.journal_details VALUES (5280, 3999, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5281, 4000, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5282, 4001, 'attr', 'parent_id', NULL, '1017');
INSERT INTO public.journal_details VALUES (5283, 4002, 'attr', 'parent_id', NULL, '1017');
INSERT INTO public.journal_details VALUES (5284, 4003, 'attr', 'parent_id', NULL, '1017');
INSERT INTO public.journal_details VALUES (5285, 4004, 'attr', 'parent_id', NULL, '1017');
INSERT INTO public.journal_details VALUES (5286, 4005, 'attr', 'parent_id', NULL, '1017');
INSERT INTO public.journal_details VALUES (5287, 4006, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5288, 4006, 'attr', 'due_date', NULL, '2020-07-08');
INSERT INTO public.journal_details VALUES (5289, 4006, 'attr', 'start_date', '2020-07-06', '2020-07-08');
INSERT INTO public.journal_details VALUES (5290, 4007, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5291, 4007, 'attr', 'due_date', NULL, '2020-07-08');
INSERT INTO public.journal_details VALUES (5292, 4007, 'attr', 'start_date', '2020-07-06', '2020-07-08');
INSERT INTO public.journal_details VALUES (5293, 4008, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5294, 4008, 'attr', 'due_date', '2020-07-06', '2020-07-08');
INSERT INTO public.journal_details VALUES (5295, 4008, 'attr', 'start_date', '2020-07-06', '2020-07-08');
INSERT INTO public.journal_details VALUES (5298, 4010, 'attr', 'subject', 'Chưa vẽ được khu đất, trong quy hoạch', 'Khi vẽ quy hoạch, bấm chọn hình đã vẽ k được');
INSERT INTO public.journal_details VALUES (5299, 4010, 'attr', 'due_date', '2020-07-02', '2020-07-08');
INSERT INTO public.journal_details VALUES (5300, 4010, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (5301, 4010, 'attr', 'start_date', '2020-07-02', '2020-07-08');
INSERT INTO public.journal_details VALUES (5302, 4011, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5303, 4012, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5304, 4013, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5305, 4014, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5306, 4015, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5307, 4016, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5308, 4017, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5309, 4018, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5310, 4019, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5311, 4020, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5312, 4021, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5313, 4022, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5314, 4023, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5315, 4024, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5316, 4025, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (5317, 4026, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (5320, 4029, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (5321, 4030, 'attr', 'due_date', NULL, '2020-07-09');
INSERT INTO public.journal_details VALUES (5322, 4031, 'attr', 'due_date', NULL, '2020-07-10');
INSERT INTO public.journal_details VALUES (5323, 4032, 'attr', 'start_date', '2020-07-09', '2020-07-10');
INSERT INTO public.journal_details VALUES (5328, 4035, 'attr', 'due_date', NULL, '2020-07-14');
INSERT INTO public.journal_details VALUES (5329, 4035, 'attr', 'start_date', '2020-07-09', '2020-07-14');
INSERT INTO public.journal_details VALUES (5330, 4036, 'attr', 'due_date', NULL, '2020-07-09');
INSERT INTO public.journal_details VALUES (5331, 4037, 'attr', 'due_date', NULL, '2020-07-09');
INSERT INTO public.journal_details VALUES (5332, 4038, 'attr', 'due_date', NULL, '2020-07-09');
INSERT INTO public.journal_details VALUES (5333, 4039, 'attr', 'due_date', NULL, '2020-07-09');
INSERT INTO public.journal_details VALUES (5334, 4040, 'attr', 'due_date', NULL, '2020-07-09');
INSERT INTO public.journal_details VALUES (5335, 4041, 'attr', 'due_date', NULL, '2020-07-09');
INSERT INTO public.journal_details VALUES (5336, 4042, 'attr', 'due_date', NULL, '2020-07-09');
INSERT INTO public.journal_details VALUES (5337, 4043, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5338, 4044, 'attr', 'due_date', NULL, '2020-07-09');
INSERT INTO public.journal_details VALUES (5339, 4045, 'attr', 'due_date', NULL, '2020-07-10');
INSERT INTO public.journal_details VALUES (5340, 4045, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5341, 4045, 'attr', 'start_date', '2020-07-09', '2020-07-10');
INSERT INTO public.journal_details VALUES (5342, 4046, 'attr', 'due_date', NULL, '2020-07-10');
INSERT INTO public.journal_details VALUES (5343, 4046, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5344, 4046, 'attr', 'start_date', '2020-07-09', '2020-07-10');
INSERT INTO public.journal_details VALUES (5345, 4047, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (5346, 4048, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (5347, 4049, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (5348, 4050, 'attr', 'due_date', NULL, '2020-07-09');
INSERT INTO public.journal_details VALUES (5349, 4051, 'attr', 'due_date', NULL, '2020-07-10');
INSERT INTO public.journal_details VALUES (5350, 4051, 'attr', 'start_date', '2020-07-09', '2020-07-10');
INSERT INTO public.journal_details VALUES (5351, 4052, 'attr', 'due_date', NULL, '2020-07-11');
INSERT INTO public.journal_details VALUES (5352, 4052, 'attr', 'start_date', '2020-07-09', '2020-07-11');
INSERT INTO public.journal_details VALUES (5353, 4053, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (5354, 4054, 'attr', 'due_date', NULL, '2020-07-10');
INSERT INTO public.journal_details VALUES (5355, 4054, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (5356, 4054, 'attr', 'start_date', '2020-07-09', '2020-07-10');
INSERT INTO public.journal_details VALUES (5357, 4055, 'attr', 'due_date', NULL, '2020-07-09');
INSERT INTO public.journal_details VALUES (5358, 4055, 'attr', 'assigned_to_id', '15', '8');
INSERT INTO public.journal_details VALUES (5359, 4056, 'attr', 'assigned_to_id', '8', '15');
INSERT INTO public.journal_details VALUES (5360, 4057, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5361, 4058, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5363, 4060, 'attr', 'due_date', NULL, '2020-07-10');
INSERT INTO public.journal_details VALUES (5364, 4060, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5367, 4062, 'attr', 'assigned_to_id', '8', '19');
INSERT INTO public.journal_details VALUES (5368, 4063, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5369, 4064, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5370, 4065, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5371, 4066, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5372, 4067, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5373, 4068, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5374, 4069, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5375, 4070, 'attr', 'assigned_to_id', '8', '15');
INSERT INTO public.journal_details VALUES (5376, 4071, 'attr', 'done_ratio', '0', '60');
INSERT INTO public.journal_details VALUES (5377, 4072, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (5378, 4073, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (5379, 4074, 'attr', 'tracker_id', '1', '3');
INSERT INTO public.journal_details VALUES (5380, 4075, 'attr', 'tracker_id', '1', '3');
INSERT INTO public.journal_details VALUES (5381, 4076, 'attr', 'subject', 'dòng kích thước nên để thang từ 0-100(bước thang là 5)', 'dòng kích thước nên để thang từ 0-100(bước thang là 5) và bổ sung cm(kích thước – cm)');
INSERT INTO public.journal_details VALUES (5382, 4076, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (5383, 4077, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (5384, 4078, 'attr', 'tracker_id', '3', '1');
INSERT INTO public.journal_details VALUES (5385, 4079, 'attr', 'tracker_id', '3', '1');
INSERT INTO public.journal_details VALUES (5386, 4080, 'attr', 'tracker_id', '3', '1');
INSERT INTO public.journal_details VALUES (5387, 4081, 'attr', 'tracker_id', '3', '1');
INSERT INTO public.journal_details VALUES (5388, 4082, 'attr', 'tracker_id', '3', '1');
INSERT INTO public.journal_details VALUES (5389, 4083, 'attr', 'tracker_id', '3', '1');
INSERT INTO public.journal_details VALUES (5390, 4084, 'attr', 'tracker_id', '3', '1');
INSERT INTO public.journal_details VALUES (5391, 4085, 'attr', 'tracker_id', '3', '1');
INSERT INTO public.journal_details VALUES (5392, 4086, 'attr', 'tracker_id', '3', '1');
INSERT INTO public.journal_details VALUES (5393, 4087, 'attr', 'tracker_id', '3', '1');
INSERT INTO public.journal_details VALUES (5394, 4088, 'attr', 'tracker_id', '3', '1');
INSERT INTO public.journal_details VALUES (5395, 4089, 'attr', 'tracker_id', '3', '1');
INSERT INTO public.journal_details VALUES (5396, 4090, 'attr', 'tracker_id', '3', '1');
INSERT INTO public.journal_details VALUES (5397, 4091, 'attr', 'tracker_id', '3', '1');
INSERT INTO public.journal_details VALUES (5398, 4092, 'attr', 'tracker_id', '3', '1');
INSERT INTO public.journal_details VALUES (5399, 4093, 'attr', 'tracker_id', '3', '1');
INSERT INTO public.journal_details VALUES (5400, 4094, 'attr', 'tracker_id', '3', '1');
INSERT INTO public.journal_details VALUES (5401, 4095, 'attr', 'tracker_id', '3', '1');
INSERT INTO public.journal_details VALUES (5402, 4096, 'attr', 'subject', 'Giao diện trang sub', 'Giao diện trang sub Tìm kiếm - Đấu giá');
INSERT INTO public.journal_details VALUES (5403, 4097, 'attr', 'subject', 'Chưa có tìm kiếm-sắp xếp: kế thừa trang chính, chỉ tìm kiếm trong đúng mục của trang sub như đấu giá/trả giá/bán trực tiếp.', 'Làm bộ lọc filter cho cho tìm kiếm - nằm ngang');
INSERT INTO public.journal_details VALUES (5404, 4098, 'attr', 'assigned_to_id', '17', '6');
INSERT INTO public.journal_details VALUES (5405, 4099, 'attachment', '5', NULL, 'screencapture-daugia-gdtvietnam-detail-6849d03b863b42eca36e44c7688c53c24xSiEXEFc-2020-07-13-10_34_11.png');
INSERT INTO public.journal_details VALUES (5406, 4100, 'attachment', '6', NULL, 'Capture.PNG');
INSERT INTO public.journal_details VALUES (5407, 4101, 'attr', 'due_date', '2020-07-09', '2020-07-13');
INSERT INTO public.journal_details VALUES (5408, 4101, 'attr', 'start_date', '2020-07-09', '2020-07-13');
INSERT INTO public.journal_details VALUES (5409, 4102, 'attr', 'due_date', '2020-07-09', '2020-07-14');
INSERT INTO public.journal_details VALUES (5410, 4102, 'attr', 'start_date', '2020-07-09', '2020-07-14');
INSERT INTO public.journal_details VALUES (5411, 4103, 'attr', 'due_date', '2020-07-09', '2020-07-14');
INSERT INTO public.journal_details VALUES (5412, 4103, 'attr', 'start_date', '2020-07-09', '2020-07-14');
INSERT INTO public.journal_details VALUES (5413, 4104, 'attr', 'due_date', '2020-07-09', '2020-07-14');
INSERT INTO public.journal_details VALUES (5414, 4104, 'attr', 'start_date', '2020-07-09', '2020-07-14');
INSERT INTO public.journal_details VALUES (5415, 4105, 'attr', 'due_date', '2020-07-09', '2020-07-14');
INSERT INTO public.journal_details VALUES (5416, 4105, 'attr', 'start_date', '2020-07-09', '2020-07-14');
INSERT INTO public.journal_details VALUES (5417, 4106, 'attr', 'due_date', '2020-07-09', '2020-07-14');
INSERT INTO public.journal_details VALUES (5418, 4106, 'attr', 'start_date', '2020-07-09', '2020-07-14');
INSERT INTO public.journal_details VALUES (5419, 4107, 'attr', 'due_date', '2020-07-09', '2020-07-14');
INSERT INTO public.journal_details VALUES (5420, 4107, 'attr', 'start_date', '2020-07-09', '2020-07-14');
INSERT INTO public.journal_details VALUES (5421, 4108, 'attr', 'due_date', '2020-07-10', '2020-07-14');
INSERT INTO public.journal_details VALUES (5422, 4108, 'attr', 'start_date', '2020-07-10', '2020-07-14');
INSERT INTO public.journal_details VALUES (5423, 4109, 'attr', 'due_date', '2020-07-09', '2020-07-14');
INSERT INTO public.journal_details VALUES (5424, 4109, 'attr', 'start_date', '2020-07-09', '2020-07-14');
INSERT INTO public.journal_details VALUES (5425, 4110, 'attr', 'due_date', '2020-07-09', '2020-07-14');
INSERT INTO public.journal_details VALUES (5426, 4110, 'attr', 'start_date', '2020-07-09', '2020-07-14');
INSERT INTO public.journal_details VALUES (5427, 4111, 'attr', 'due_date', '2020-07-10', '2020-07-13');
INSERT INTO public.journal_details VALUES (5428, 4111, 'attr', 'start_date', '2020-07-10', '2020-07-13');
INSERT INTO public.journal_details VALUES (5429, 4112, 'attr', 'start_date', '2020-07-14', '2020-07-09');
INSERT INTO public.journal_details VALUES (5430, 4113, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (5431, 4114, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5432, 4115, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5433, 4116, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5438, 4119, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (5439, 4120, 'attr', 'due_date', '2020-07-11', '2020-07-15');
INSERT INTO public.journal_details VALUES (5440, 4120, 'attr', 'start_date', '2020-07-11', '2020-07-15');
INSERT INTO public.journal_details VALUES (5441, 4121, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5442, 4122, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5443, 4123, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (5444, 4124, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (5445, 4125, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (5446, 4126, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (5447, 4127, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (5448, 4128, 'attr', 'due_date', '2020-07-08', '2020-07-27');
INSERT INTO public.journal_details VALUES (5449, 4128, 'attr', 'start_date', '2020-07-08', '2020-07-27');
INSERT INTO public.journal_details VALUES (5450, 4129, 'attr', 'due_date', '2020-07-08', '2020-07-27');
INSERT INTO public.journal_details VALUES (5451, 4129, 'attr', 'start_date', '2020-07-08', '2020-07-27');
INSERT INTO public.journal_details VALUES (5452, 4130, 'attr', 'due_date', '2020-07-07', '2020-07-27');
INSERT INTO public.journal_details VALUES (5453, 4130, 'attr', 'start_date', '2020-07-07', '2020-07-27');
INSERT INTO public.journal_details VALUES (5454, 4131, 'attr', 'parent_id', NULL, '1093');
INSERT INTO public.journal_details VALUES (5455, 4132, 'attr', 'subject', 'Khi chưa đăng nhập - chưa hiển thị được số lượt thích của sản phẩm', 'Chưa hiển thị được số lượt thích của sản phẩm - Khi chưa đăng nhập');
INSERT INTO public.journal_details VALUES (5456, 4133, 'attachment', '7', NULL, 'Capture.PNG');
INSERT INTO public.journal_details VALUES (5457, 4134, 'attr', 'due_date', '2020-07-10', '2020-07-13');
INSERT INTO public.journal_details VALUES (5458, 4134, 'attr', 'start_date', '2020-07-10', '2020-07-13');
INSERT INTO public.journal_details VALUES (5459, 4135, 'attr', 'subject', 'Tran danh sách điểm mời gọi', 'Trang danh sách điểm mời gọi');
INSERT INTO public.journal_details VALUES (5460, 4136, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5461, 4137, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5462, 4138, 'attr', 'due_date', '2020-07-10', '2020-07-14');
INSERT INTO public.journal_details VALUES (5463, 4139, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (5464, 4140, 'attr', 'due_date', '2020-07-09', '2020-07-14');
INSERT INTO public.journal_details VALUES (5465, 4140, 'attr', 'start_date', '2020-07-09', '2020-07-14');
INSERT INTO public.journal_details VALUES (5466, 4141, 'attr', 'due_date', '2020-07-10', '2020-07-14');
INSERT INTO public.journal_details VALUES (5467, 4141, 'attr', 'start_date', '2020-07-10', '2020-07-14');
INSERT INTO public.journal_details VALUES (5468, 4142, 'attr', 'due_date', NULL, '2020-07-13');
INSERT INTO public.journal_details VALUES (5469, 4142, 'attr', 'start_date', '2020-07-09', '2020-07-13');
INSERT INTO public.journal_details VALUES (5470, 4143, 'attr', 'due_date', NULL, '2020-07-13');
INSERT INTO public.journal_details VALUES (5471, 4143, 'attr', 'start_date', '2020-07-09', '2020-07-13');
INSERT INTO public.journal_details VALUES (5472, 4144, 'attr', 'parent_id', '1018', '1103');
INSERT INTO public.journal_details VALUES (5473, 4145, 'attr', 'parent_id', '1019', '1103');
INSERT INTO public.journal_details VALUES (5476, 4148, 'attr', 'parent_id', '1019', '1103');
INSERT INTO public.journal_details VALUES (5477, 4149, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5478, 4150, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (5479, 4151, 'attr', 'subject', 'Đối với các sản phẩm thuộc hình thức đấu giá/trả giá - nếu chưa tới thời gian bắt đầu đặt thì không cho đặt Bid/Trả giá', 'Đối với các sản phẩm thuộc hình thức đấu giá/trả giá - nếu chưa tới thời gian bắt đầu thì không cho đặt Bid/Trả giá');
INSERT INTO public.journal_details VALUES (5480, 4152, 'attr', 'due_date', '2020-07-02', '2020-07-20');
INSERT INTO public.journal_details VALUES (5481, 4152, 'attr', 'start_date', '2020-07-02', '2020-07-20');
INSERT INTO public.journal_details VALUES (5482, 4153, 'attr', 'due_date', '2020-07-04', '2020-07-20');
INSERT INTO public.journal_details VALUES (5483, 4153, 'attr', 'start_date', '2020-07-03', '2020-07-20');
INSERT INTO public.journal_details VALUES (5484, 4154, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (5485, 4155, 'attr', 'assigned_to_id', NULL, '6');
INSERT INTO public.journal_details VALUES (5486, 4156, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5487, 4157, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5488, 4158, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5489, 4159, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5490, 4160, 'attachment', '8', NULL, 'Capture.PNG');
INSERT INTO public.journal_details VALUES (5491, 4161, 'attr', 'due_date', '2020-07-08', '2020-07-13');
INSERT INTO public.journal_details VALUES (5492, 4161, 'attr', 'start_date', '2020-07-08', '2020-07-13');
INSERT INTO public.journal_details VALUES (5493, 4162, 'attr', 'due_date', '2020-07-08', '2020-07-13');
INSERT INTO public.journal_details VALUES (5494, 4162, 'attr', 'start_date', '2020-07-07', '2020-07-13');
INSERT INTO public.journal_details VALUES (5495, 4163, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5496, 4164, 'attachment', '9', NULL, 'Capture.PNG');
INSERT INTO public.journal_details VALUES (5497, 4165, 'attr', 'subject', 'hiển thị kết quả: chưa bắt đầu, đang diễn ra, đã kết thúc(đã hết thời gian đối với đấu giá hết thời gian)', 'hiển thị kết quả: chưa bắt đầu, đang diễn ra, đã mua: đối với đấu giá thành công, đã kết thúc(đã hết thời gian đối với đấu giá hết thời gian)');
INSERT INTO public.journal_details VALUES (5498, 4166, 'attachment', '10', NULL, 'Capture.PNG');
INSERT INTO public.journal_details VALUES (5499, 4167, 'attachment', '11', NULL, 'Untitled.png');
INSERT INTO public.journal_details VALUES (5500, 4167, 'attr', 'subject', 'Sửa lại phần sắp xếp', 'Sửa lại phần sắp xếp theo yêu cầu đã đặc tả');
INSERT INTO public.journal_details VALUES (5501, 4168, 'attr', 'subject', 'Đối với hình thức đặt bid cần gửi thêm API số bước nhảy của lần đặt bid và số tiền đặt bid tương ứng với số bước nhảy', 'Đối với hình thức Đấu giá - cần gửi thêm API đặt bid số bước nhảy của lần đặt bid và số tiền đặt bid tương ứng với số bước nhảy');
INSERT INTO public.journal_details VALUES (5502, 4169, 'attr', 'due_date', '2020-08-29', '2020-08-05');
INSERT INTO public.journal_details VALUES (5503, 4170, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5505, 4172, 'attr', 'subject', 'Thêm/Sửa - Danh sách đối tác', 'Thêm/Sửa - Danh sách đối tác vận chuyển');
INSERT INTO public.journal_details VALUES (5506, 4173, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5507, 4174, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5508, 4175, 'attr', 'parent_id', '1048', '1049');
INSERT INTO public.journal_details VALUES (5509, 4176, 'attr', 'parent_id', '1048', '1049');
INSERT INTO public.journal_details VALUES (5510, 4177, 'attr', 'parent_id', '1048', '1049');
INSERT INTO public.journal_details VALUES (5511, 4178, 'attr', 'subject', 'Thêm/Sửa - Danh sách đối tác vận chuyển', 'Danh sách đối tác vận chuyển');
INSERT INTO public.journal_details VALUES (5512, 4179, 'attr', 'description', '', 'Quản trị vị trí tọa độ cho các bảng điện tử');
INSERT INTO public.journal_details VALUES (5513, 4180, 'attr', 'description', '', 'Quản trị vị trí trạm');
INSERT INTO public.journal_details VALUES (5514, 4181, 'attr', 'parent_id', '1046', '1047');
INSERT INTO public.journal_details VALUES (5515, 4182, 'attr', 'tracker_id', '2', '1');
INSERT INTO public.journal_details VALUES (5516, 4183, 'attr', 'description', '', 'Lọc theo:

Mã bảng điện tử

Tên

Quận/Huyện/TP');
INSERT INTO public.journal_details VALUES (5517, 4184, 'attr', 'parent_id', NULL, '1124');
INSERT INTO public.journal_details VALUES (5518, 4185, 'attr', 'subject', 'Thêm/Sửa - Danh sách đối tác thanh toán', 'Danh sách đối tác thanh toán');
INSERT INTO public.journal_details VALUES (5519, 4186, 'attr', 'due_date', NULL, '2020-07-11');
INSERT INTO public.journal_details VALUES (5520, 4186, 'attr', 'start_date', '2020-07-13', '2020-07-06');
INSERT INTO public.journal_details VALUES (5521, 4187, 'attr', 'due_date', '2020-07-11', '2020-07-09');
INSERT INTO public.journal_details VALUES (5522, 4187, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5523, 4187, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (5524, 4187, 'attr', 'start_date', '2020-07-06', '2020-07-01');
INSERT INTO public.journal_details VALUES (5525, 4187, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5526, 4188, 'attr', 'due_date', NULL, '2020-07-11');
INSERT INTO public.journal_details VALUES (5527, 4188, 'attr', 'start_date', '2020-07-13', '2020-07-10');
INSERT INTO public.journal_details VALUES (5528, 4189, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5529, 4190, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5530, 4191, 'attr', 'description', '', 'Geo server:  https://tomcat.gdtsolutions.vn/geoserver');
INSERT INTO public.journal_details VALUES (5531, 4192, 'attr', 'due_date', NULL, '2020-07-14');
INSERT INTO public.journal_details VALUES (5532, 4193, 'attr', 'due_date', NULL, '2020-07-15');
INSERT INTO public.journal_details VALUES (5533, 4193, 'attr', 'assigned_to_id', NULL, '24');
INSERT INTO public.journal_details VALUES (5534, 4193, 'attr', 'start_date', '2020-07-13', '2020-07-15');
INSERT INTO public.journal_details VALUES (5535, 4194, 'attr', 'assigned_to_id', NULL, '24');
INSERT INTO public.journal_details VALUES (5536, 4195, 'attr', 'due_date', NULL, '2020-07-15');
INSERT INTO public.journal_details VALUES (5537, 4195, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (5538, 4195, 'attr', 'start_date', '2020-07-13', '2020-07-14');
INSERT INTO public.journal_details VALUES (5539, 4196, 'attr', 'due_date', NULL, '2020-07-17');
INSERT INTO public.journal_details VALUES (5540, 4196, 'attr', 'assigned_to_id', NULL, '24');
INSERT INTO public.journal_details VALUES (5541, 4196, 'attr', 'start_date', '2020-07-13', '2020-07-16');
INSERT INTO public.journal_details VALUES (5542, 4197, 'attr', 'due_date', NULL, '2020-07-18');
INSERT INTO public.journal_details VALUES (5543, 4197, 'attr', 'assigned_to_id', NULL, '24');
INSERT INTO public.journal_details VALUES (5544, 4197, 'attr', 'start_date', '2020-07-13', '2020-07-18');
INSERT INTO public.journal_details VALUES (5545, 4198, 'attr', 'due_date', NULL, '2020-07-15');
INSERT INTO public.journal_details VALUES (5546, 4198, 'attr', 'assigned_to_id', NULL, '24');
INSERT INTO public.journal_details VALUES (5547, 4199, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5548, 4199, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5549, 4200, 'attr', 'due_date', '2020-07-14', '2020-07-15');
INSERT INTO public.journal_details VALUES (5550, 4200, 'attr', 'start_date', '2020-07-14', '2020-07-15');
INSERT INTO public.journal_details VALUES (5551, 4201, 'attr', 'due_date', '2020-07-14', '2020-07-15');
INSERT INTO public.journal_details VALUES (5552, 4201, 'attr', 'start_date', '2020-07-14', '2020-07-15');
INSERT INTO public.journal_details VALUES (5553, 4202, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5554, 4203, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5555, 4204, 'attr', 'due_date', '2020-07-14', '2020-07-15');
INSERT INTO public.journal_details VALUES (5556, 4204, 'attr', 'start_date', '2020-07-13', '2020-07-15');
INSERT INTO public.journal_details VALUES (5557, 4205, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5558, 4206, 'attr', 'start_date', '2020-07-09', '2020-07-14');
INSERT INTO public.journal_details VALUES (5559, 4207, 'attr', 'due_date', '2020-07-14', '2020-07-15');
INSERT INTO public.journal_details VALUES (5560, 4207, 'attr', 'start_date', '2020-07-14', '2020-07-15');
INSERT INTO public.journal_details VALUES (5561, 4208, 'attr', 'subject', 'Chưa có nút share facebook, zalo cho cá( khi share hiển thị như hình của chính cá đó hiển thị ở trang chủ)', 'Chưa có nút share facebookcho cá( khi share hiển thị như hình của chính cá đó hiển thị ở trang chủ)');
INSERT INTO public.journal_details VALUES (5562, 4209, 'attr', 'subject', 'Tích hợp chia sẻ Zalo plugin', 'Tích hợp chia sẻ Zalo plugin ( khi share hiển thị như hình của chính cá đó hiển thị ở trang chủ)');
INSERT INTO public.journal_details VALUES (5563, 4210, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5564, 4211, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5565, 4212, 'attr', 'subject', 'Danh sách các file Avartar tài khoản', 'Danh sách các file Picture - Avartar tài khoản');
INSERT INTO public.journal_details VALUES (5566, 4213, 'attr', 'assigned_to_id', '16', '4');
INSERT INTO public.journal_details VALUES (5567, 4214, 'attr', 'assigned_to_id', '16', '4');
INSERT INTO public.journal_details VALUES (5568, 4215, 'attr', 'assigned_to_id', '16', '4');
INSERT INTO public.journal_details VALUES (5569, 4216, 'attr', 'assigned_to_id', '16', '4');
INSERT INTO public.journal_details VALUES (5570, 4217, 'attr', 'assigned_to_id', '16', '4');
INSERT INTO public.journal_details VALUES (5571, 4218, 'attr', 'assigned_to_id', '16', '4');
INSERT INTO public.journal_details VALUES (5572, 4219, 'attr', 'parent_id', NULL, '1217');
INSERT INTO public.journal_details VALUES (5573, 4220, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5574, 4221, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5575, 4222, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5576, 4223, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5577, 4224, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5578, 4225, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5579, 4226, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (5580, 4227, 'attr', 'due_date', '2020-07-15', '2020-07-14');
INSERT INTO public.journal_details VALUES (5581, 4227, 'attr', 'start_date', '2020-07-15', '2020-07-14');
INSERT INTO public.journal_details VALUES (5582, 4228, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5583, 4229, 'attr', 'assigned_to_id', '24', '5');
INSERT INTO public.journal_details VALUES (5584, 4230, 'attr', 'due_date', NULL, '2020-07-16');
INSERT INTO public.journal_details VALUES (5585, 4230, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (5586, 4230, 'attr', 'start_date', '2020-07-13', '2020-07-14');
INSERT INTO public.journal_details VALUES (5587, 4231, 'attr', 'due_date', '2020-07-14', '2020-07-15');
INSERT INTO public.journal_details VALUES (5588, 4231, 'attr', 'start_date', '2020-07-10', '2020-07-15');
INSERT INTO public.journal_details VALUES (5589, 4232, 'attr', 'due_date', '2020-07-17', '2020-08-01');
INSERT INTO public.journal_details VALUES (5590, 4232, 'attr', 'start_date', '2020-07-16', '2020-08-01');
INSERT INTO public.journal_details VALUES (5591, 4233, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5592, 4233, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5593, 4234, 'attr', 'assigned_to_id', '24', '5');
INSERT INTO public.journal_details VALUES (5594, 4235, 'attr', 'due_date', '2020-07-15', '2020-07-18');
INSERT INTO public.journal_details VALUES (5595, 4235, 'attr', 'start_date', '2020-07-14', '2020-07-16');
INSERT INTO public.journal_details VALUES (5596, 4236, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5597, 4237, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5598, 4238, 'attr', 'due_date', '2020-07-13', '2020-07-15');
INSERT INTO public.journal_details VALUES (5599, 4238, 'attr', 'start_date', '2020-07-13', '2020-07-15');
INSERT INTO public.journal_details VALUES (5600, 4239, 'attr', 'due_date', NULL, '2020-07-15');
INSERT INTO public.journal_details VALUES (5601, 4239, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (5602, 4239, 'attr', 'start_date', '2020-07-14', '2020-07-15');
INSERT INTO public.journal_details VALUES (5603, 4240, 'attr', 'due_date', NULL, '2020-07-15');
INSERT INTO public.journal_details VALUES (5604, 4240, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (5605, 4240, 'attr', 'start_date', '2020-07-14', '2020-07-15');
INSERT INTO public.journal_details VALUES (5606, 4241, 'attr', 'start_date', '2020-07-15', '2020-07-13');
INSERT INTO public.journal_details VALUES (5607, 4242, 'attr', 'due_date', '2020-07-14', '2020-07-16');
INSERT INTO public.journal_details VALUES (5608, 4242, 'attr', 'start_date', '2020-07-14', '2020-07-16');
INSERT INTO public.journal_details VALUES (5609, 4243, 'attr', 'due_date', '2020-07-14', '2020-07-16');
INSERT INTO public.journal_details VALUES (5610, 4243, 'attr', 'start_date', '2020-07-14', '2020-07-16');
INSERT INTO public.journal_details VALUES (5611, 4244, 'attr', 'due_date', '2020-07-14', '2020-07-18');
INSERT INTO public.journal_details VALUES (5612, 4244, 'attr', 'start_date', '2020-07-14', '2020-07-18');
INSERT INTO public.journal_details VALUES (5613, 4245, 'attr', 'due_date', '2020-07-14', '2020-07-17');
INSERT INTO public.journal_details VALUES (5614, 4245, 'attr', 'start_date', '2020-07-14', '2020-07-17');
INSERT INTO public.journal_details VALUES (5615, 4246, 'attr', 'due_date', '2020-07-14', '2020-07-15');
INSERT INTO public.journal_details VALUES (5616, 4246, 'attr', 'start_date', '2020-07-14', '2020-07-15');
INSERT INTO public.journal_details VALUES (5617, 4247, 'attr', 'due_date', '2020-07-14', '2020-07-15');
INSERT INTO public.journal_details VALUES (5618, 4247, 'attr', 'start_date', '2020-07-14', '2020-07-15');
INSERT INTO public.journal_details VALUES (5619, 4248, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (5620, 4249, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (5621, 4250, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (5622, 4251, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (5623, 4252, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (5624, 4253, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (5625, 4254, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (5626, 4255, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (5627, 4256, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (5628, 4257, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (5629, 4258, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (5630, 4259, 'attr', 'category_id', NULL, '14');
INSERT INTO public.journal_details VALUES (5632, 4261, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5633, 4262, 'attr', 'tracker_id', '2', '1');
INSERT INTO public.journal_details VALUES (5634, 4263, 'attr', 'tracker_id', '2', '1');
INSERT INTO public.journal_details VALUES (5635, 4264, 'attr', 'parent_id', '1046', '1171');
INSERT INTO public.journal_details VALUES (5636, 4265, 'attr', 'subject', 'Add/Edit trạm qt', 'Add trạm qt');
INSERT INTO public.journal_details VALUES (5637, 4265, 'attr', 'description', '', 'Nhập:

Mã trạm

Tên trạm

string ToaDo: ''POINT(xxx, yyy)'' vn-2000');
INSERT INTO public.journal_details VALUES (5638, 4265, 'attr', 'assigned_to_id', NULL, '24');
INSERT INTO public.journal_details VALUES (5639, 4266, 'attr', 'due_date', NULL, '2020-07-16');
INSERT INTO public.journal_details VALUES (5640, 4267, 'attr', 'due_date', NULL, '2020-07-15');
INSERT INTO public.journal_details VALUES (5641, 4267, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (5642, 4268, 'attr', 'due_date', '2020-07-15', '2020-07-16');
INSERT INTO public.journal_details VALUES (5643, 4268, 'attr', 'start_date', '2020-07-15', '2020-07-16');
INSERT INTO public.journal_details VALUES (5644, 4269, 'attr', 'start_date', '2020-07-16', '2020-07-17');
INSERT INTO public.journal_details VALUES (5645, 4270, 'attr', 'assigned_to_id', '5', '24');
INSERT INTO public.journal_details VALUES (5646, 4271, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5647, 4272, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5648, 4273, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5649, 4274, 'attr', 'tracker_id', '2', '3');
INSERT INTO public.journal_details VALUES (5650, 4275, 'attr', 'due_date', '2020-07-13', '2020-07-16');
INSERT INTO public.journal_details VALUES (5651, 4275, 'attr', 'start_date', '2020-07-13', '2020-07-16');
INSERT INTO public.journal_details VALUES (5652, 4276, 'attr', 'due_date', '2020-07-13', '2020-07-16');
INSERT INTO public.journal_details VALUES (5653, 4277, 'attr', 'due_date', '2020-07-13', '2020-07-17');
INSERT INTO public.journal_details VALUES (5654, 4277, 'attr', 'start_date', '2020-07-13', '2020-07-16');
INSERT INTO public.journal_details VALUES (5655, 4278, 'attr', 'assigned_to_id', '15', '12');
INSERT INTO public.journal_details VALUES (5656, 4279, 'attr', 'assigned_to_id', '15', '12');
INSERT INTO public.journal_details VALUES (5657, 4280, 'attr', 'due_date', '2020-07-15', '2020-07-16');
INSERT INTO public.journal_details VALUES (5658, 4281, 'attr', 'due_date', '2020-07-15', '2020-07-17');
INSERT INTO public.journal_details VALUES (5659, 4281, 'attr', 'start_date', '2020-07-15', '2020-07-17');
INSERT INTO public.journal_details VALUES (5660, 4282, 'attr', 'due_date', '2020-07-16', '2020-07-18');
INSERT INTO public.journal_details VALUES (5661, 4283, 'attr', 'due_date', '2020-07-17', '2020-07-18');
INSERT INTO public.journal_details VALUES (5662, 4283, 'attr', 'start_date', '2020-07-16', '2020-07-18');
INSERT INTO public.journal_details VALUES (5663, 4284, 'attr', 'due_date', '2020-07-15', '2020-07-16');
INSERT INTO public.journal_details VALUES (5664, 4285, 'attr', 'due_date', '2020-07-14', '2020-07-16');
INSERT INTO public.journal_details VALUES (5665, 4286, 'attr', 'due_date', '2020-07-15', '2020-07-17');
INSERT INTO public.journal_details VALUES (5666, 4286, 'attr', 'start_date', '2020-07-15', '2020-07-17');
INSERT INTO public.journal_details VALUES (5667, 4287, 'attr', 'due_date', '2020-07-15', '2020-07-17');
INSERT INTO public.journal_details VALUES (5668, 4287, 'attr', 'start_date', '2020-07-15', '2020-07-17');
INSERT INTO public.journal_details VALUES (5669, 4288, 'attr', 'tracker_id', '2', '3');
INSERT INTO public.journal_details VALUES (5670, 4289, 'attr', 'due_date', '2020-07-15', '2020-07-18');
INSERT INTO public.journal_details VALUES (5671, 4289, 'attr', 'start_date', '2020-07-15', '2020-07-18');
INSERT INTO public.journal_details VALUES (5672, 4290, 'attr', 'tracker_id', '3', '2');
INSERT INTO public.journal_details VALUES (5673, 4291, 'attr', 'tracker_id', '3', '2');
INSERT INTO public.journal_details VALUES (5674, 4292, 'attr', 'tracker_id', '3', '2');
INSERT INTO public.journal_details VALUES (5675, 4293, 'attr', 'due_date', '2020-07-18', '2020-07-17');
INSERT INTO public.journal_details VALUES (5676, 4293, 'attr', 'assigned_to_id', '10', '4');
INSERT INTO public.journal_details VALUES (5677, 4293, 'attr', 'start_date', '2020-07-18', '2020-07-16');
INSERT INTO public.journal_details VALUES (5678, 4294, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5679, 4295, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5680, 4296, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5681, 4297, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5682, 4298, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5683, 4299, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5684, 4300, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (5685, 4301, 'attr', 'parent_id', '1349', '1350');
INSERT INTO public.journal_details VALUES (5686, 4302, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5687, 4303, 'attr', 'parent_id', NULL, '1364');
INSERT INTO public.journal_details VALUES (5688, 4304, 'attr', 'parent_id', NULL, '1364');
INSERT INTO public.journal_details VALUES (5689, 4305, 'attr', 'assigned_to_id', '5', '24');
INSERT INTO public.journal_details VALUES (5690, 4306, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5691, 4307, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5692, 4308, 'attr', 'due_date', '2020-07-16', '2020-07-17');
INSERT INTO public.journal_details VALUES (5693, 4308, 'attr', 'start_date', '2020-07-16', '2020-07-17');
INSERT INTO public.journal_details VALUES (5694, 4309, 'attr', 'due_date', '2020-08-01', '2020-07-20');
INSERT INTO public.journal_details VALUES (5695, 4309, 'attr', 'start_date', '2020-08-01', '2020-07-20');
INSERT INTO public.journal_details VALUES (5696, 4310, 'attr', 'parent_id', '1171', '1173');
INSERT INTO public.journal_details VALUES (5697, 4311, 'attr', 'parent_id', '1171', '1173');
INSERT INTO public.journal_details VALUES (5698, 4312, 'attr', 'parent_id', '1171', '1173');
INSERT INTO public.journal_details VALUES (5699, 4313, 'attr', 'parent_id', '1171', '1173');
INSERT INTO public.journal_details VALUES (5700, 4314, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5701, 4315, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5702, 4316, 'attr', 'due_date', '2020-07-17', '2020-07-18');
INSERT INTO public.journal_details VALUES (5703, 4316, 'attr', 'start_date', '2020-07-17', '2020-07-18');
INSERT INTO public.journal_details VALUES (5704, 4317, 'attr', 'due_date', '2020-07-18', '2020-07-17');
INSERT INTO public.journal_details VALUES (5705, 4318, 'attr', 'subject', 'Trang thêm mới/cập nhật', 'Trang thêm mới');
INSERT INTO public.journal_details VALUES (5706, 4319, 'attr', 'start_date', '2020-07-18', '2020-07-17');
INSERT INTO public.journal_details VALUES (5707, 4320, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5708, 4321, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5709, 4322, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5710, 4323, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5711, 4324, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5712, 4325, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5713, 4326, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5714, 4327, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5715, 4328, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5716, 4329, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5717, 4330, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5718, 4331, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5719, 4332, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5720, 4333, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5721, 4334, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5722, 4335, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5723, 4336, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5724, 4337, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5725, 4338, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5726, 4339, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5727, 4340, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5728, 4341, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5729, 4342, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5730, 4343, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5731, 4344, 'attr', 'due_date', NULL, '2020-07-20');
INSERT INTO public.journal_details VALUES (5732, 4344, 'attr', 'start_date', '2020-07-15', '2020-07-20');
INSERT INTO public.journal_details VALUES (5733, 4345, 'attr', 'due_date', '2020-07-16', '2020-07-20');
INSERT INTO public.journal_details VALUES (5734, 4346, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5735, 4347, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5736, 4348, 'attr', 'subject', 'Danh mục loại trạm quan trắc', 'Danh mục loại quan trắc');
INSERT INTO public.journal_details VALUES (5737, 4349, 'attr', 'subject', 'Danh mục loại hình quan trắc', 'Danh mục loại môi trường');
INSERT INTO public.journal_details VALUES (5738, 4350, 'attr', 'assigned_to_id', NULL, '24');
INSERT INTO public.journal_details VALUES (5739, 4351, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5740, 4352, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5741, 4353, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5742, 4354, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5743, 4355, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5744, 4355, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5745, 4356, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (5746, 4357, 'attr', 'tracker_id', '2', '1');
INSERT INTO public.journal_details VALUES (5747, 4358, 'attr', 'tracker_id', '2', '1');
INSERT INTO public.journal_details VALUES (5748, 4359, 'attr', 'due_date', '2020-07-16', '2020-07-18');
INSERT INTO public.journal_details VALUES (5749, 4360, 'attr', 'due_date', '2020-07-17', '2020-07-20');
INSERT INTO public.journal_details VALUES (5750, 4360, 'attr', 'start_date', '2020-07-17', '2020-07-20');
INSERT INTO public.journal_details VALUES (5751, 4361, 'attr', 'due_date', '2020-07-18', '2020-07-20');
INSERT INTO public.journal_details VALUES (5752, 4361, 'attr', 'start_date', '2020-07-18', '2020-07-20');
INSERT INTO public.journal_details VALUES (5753, 4362, 'attr', 'subject', 'Trang thêm mới/cập nhật', 'Trang thêm mới');
INSERT INTO public.journal_details VALUES (5754, 4363, 'attr', 'due_date', '2020-07-16', '2020-07-18');
INSERT INTO public.journal_details VALUES (5755, 4364, 'attr', 'due_date', '2020-07-20', '2020-07-21');
INSERT INTO public.journal_details VALUES (5756, 4364, 'attr', 'start_date', '2020-07-20', '2020-07-21');
INSERT INTO public.journal_details VALUES (5757, 4365, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5758, 4366, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5759, 4367, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5760, 4368, 'attr', 'due_date', NULL, '2020-07-22');
INSERT INTO public.journal_details VALUES (5761, 4368, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5762, 4368, 'attr', 'start_date', '2020-07-13', '2020-07-22');
INSERT INTO public.journal_details VALUES (5763, 4369, 'attr', 'due_date', NULL, '2020-07-22');
INSERT INTO public.journal_details VALUES (5764, 4369, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5765, 4369, 'attr', 'start_date', '2020-07-13', '2020-07-22');
INSERT INTO public.journal_details VALUES (5766, 4370, 'attr', 'due_date', NULL, '2020-07-22');
INSERT INTO public.journal_details VALUES (5767, 4370, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (5768, 4370, 'attr', 'start_date', '2020-07-15', '2020-07-22');
INSERT INTO public.journal_details VALUES (5769, 4371, 'attr', 'due_date', NULL, '2020-07-22');
INSERT INTO public.journal_details VALUES (5770, 4371, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (5771, 4371, 'attr', 'start_date', '2020-07-13', '2020-07-22');
INSERT INTO public.journal_details VALUES (5772, 4372, 'attr', 'due_date', NULL, '2020-07-22');
INSERT INTO public.journal_details VALUES (5773, 4372, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (5774, 4372, 'attr', 'start_date', '2020-07-17', '2020-07-22');
INSERT INTO public.journal_details VALUES (5775, 4373, 'attr', 'due_date', NULL, '2020-07-22');
INSERT INTO public.journal_details VALUES (5776, 4373, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (5777, 4373, 'attr', 'start_date', '2020-07-17', '2020-07-22');
INSERT INTO public.journal_details VALUES (5778, 4374, 'attr', 'due_date', NULL, '2020-07-22');
INSERT INTO public.journal_details VALUES (5779, 4374, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (5780, 4374, 'attr', 'start_date', '2020-07-13', '2020-07-22');
INSERT INTO public.journal_details VALUES (5781, 4375, 'attr', 'due_date', NULL, '2020-07-22');
INSERT INTO public.journal_details VALUES (5782, 4375, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (5783, 4375, 'attr', 'start_date', '2020-07-13', '2020-07-22');
INSERT INTO public.journal_details VALUES (5784, 4376, 'attr', 'due_date', NULL, '2020-07-25');
INSERT INTO public.journal_details VALUES (5785, 4376, 'attr', 'start_date', '2020-07-13', '2020-07-25');
INSERT INTO public.journal_details VALUES (5786, 4377, 'attr', 'due_date', NULL, '2020-07-30');
INSERT INTO public.journal_details VALUES (5787, 4377, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5788, 4377, 'attr', 'start_date', '2020-07-13', '2020-07-25');
INSERT INTO public.journal_details VALUES (5789, 4378, 'attr', 'due_date', NULL, '2020-07-28');
INSERT INTO public.journal_details VALUES (5790, 4378, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5791, 4378, 'attr', 'start_date', '2020-07-17', '2020-07-28');
INSERT INTO public.journal_details VALUES (5792, 4379, 'attr', 'due_date', NULL, '2020-07-28');
INSERT INTO public.journal_details VALUES (5793, 4379, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5794, 4379, 'attr', 'start_date', '2020-07-17', '2020-07-28');
INSERT INTO public.journal_details VALUES (5795, 4380, 'attr', 'due_date', NULL, '2020-07-25');
INSERT INTO public.journal_details VALUES (5796, 4380, 'attr', 'assigned_to_id', NULL, '24');
INSERT INTO public.journal_details VALUES (5797, 4380, 'attr', 'start_date', '2020-07-13', '2020-07-25');
INSERT INTO public.journal_details VALUES (5798, 4381, 'attr', 'due_date', NULL, '2020-07-25');
INSERT INTO public.journal_details VALUES (5799, 4381, 'attr', 'assigned_to_id', NULL, '24');
INSERT INTO public.journal_details VALUES (5800, 4381, 'attr', 'start_date', '2020-07-13', '2020-07-25');
INSERT INTO public.journal_details VALUES (5801, 4382, 'attr', 'due_date', NULL, '2020-07-25');
INSERT INTO public.journal_details VALUES (5802, 4382, 'attr', 'assigned_to_id', NULL, '24');
INSERT INTO public.journal_details VALUES (5803, 4382, 'attr', 'start_date', '2020-07-13', '2020-07-25');
INSERT INTO public.journal_details VALUES (5804, 4383, 'attr', 'due_date', NULL, '2020-07-25');
INSERT INTO public.journal_details VALUES (5805, 4383, 'attr', 'assigned_to_id', NULL, '24');
INSERT INTO public.journal_details VALUES (5806, 4383, 'attr', 'start_date', '2020-07-13', '2020-07-25');
INSERT INTO public.journal_details VALUES (5807, 4384, 'attr', 'due_date', NULL, '2020-07-25');
INSERT INTO public.journal_details VALUES (5808, 4384, 'attr', 'assigned_to_id', NULL, '24');
INSERT INTO public.journal_details VALUES (5809, 4384, 'attr', 'start_date', '2020-07-13', '2020-07-25');
INSERT INTO public.journal_details VALUES (5813, 4386, 'attr', 'due_date', NULL, '2020-07-27');
INSERT INTO public.journal_details VALUES (5814, 4386, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5815, 4387, 'attr', 'start_date', '2020-07-13', '2020-07-27');
INSERT INTO public.journal_details VALUES (5816, 4388, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5827, 4394, 'attr', 'due_date', NULL, '2020-08-15');
INSERT INTO public.journal_details VALUES (5828, 4394, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5829, 4394, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5830, 4395, 'attr', 'due_date', NULL, '2020-08-15');
INSERT INTO public.journal_details VALUES (5831, 4395, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5832, 4395, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5833, 4396, 'attr', 'due_date', NULL, '2020-08-15');
INSERT INTO public.journal_details VALUES (5834, 4396, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5835, 4396, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5836, 4397, 'attr', 'due_date', NULL, '2020-08-15');
INSERT INTO public.journal_details VALUES (5837, 4397, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5838, 4397, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5839, 4398, 'attr', 'due_date', NULL, '2020-08-15');
INSERT INTO public.journal_details VALUES (5840, 4398, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5841, 4398, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5842, 4399, 'attr', 'due_date', NULL, '2020-08-15');
INSERT INTO public.journal_details VALUES (5843, 4399, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5844, 4399, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5845, 4400, 'attr', 'due_date', NULL, '2020-08-15');
INSERT INTO public.journal_details VALUES (5846, 4400, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5847, 4400, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5848, 4401, 'attr', 'due_date', NULL, '2020-08-15');
INSERT INTO public.journal_details VALUES (5849, 4401, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5850, 4401, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5851, 4402, 'attr', 'assigned_to_id', '10', '8');
INSERT INTO public.journal_details VALUES (5852, 4403, 'attr', 'assigned_to_id', '10', '8');
INSERT INTO public.journal_details VALUES (5853, 4404, 'attr', 'assigned_to_id', '15', '8');
INSERT INTO public.journal_details VALUES (5854, 4405, 'attr', 'assigned_to_id', '15', '8');
INSERT INTO public.journal_details VALUES (5855, 4406, 'attr', 'assigned_to_id', '15', '8');
INSERT INTO public.journal_details VALUES (5856, 4407, 'attr', 'assigned_to_id', '15', '8');
INSERT INTO public.journal_details VALUES (5863, 4414, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5864, 4415, 'attr', 'due_date', NULL, '2020-08-15');
INSERT INTO public.journal_details VALUES (5865, 4415, 'attr', 'start_date', '2020-07-13', '2020-08-15');
INSERT INTO public.journal_details VALUES (5866, 4416, 'attr', 'due_date', NULL, '2020-08-15');
INSERT INTO public.journal_details VALUES (5867, 4416, 'attr', 'start_date', '2020-07-13', '2020-08-15');
INSERT INTO public.journal_details VALUES (5868, 4417, 'attr', 'assigned_to_id', NULL, '24');
INSERT INTO public.journal_details VALUES (5869, 4418, 'attr', 'subject', 'Cấu hình thông số, thời gian chuyển dữ liệu', 'Cấu hình thông số, thời gian chuyển dữ liệu từ trạm');
INSERT INTO public.journal_details VALUES (5870, 4418, 'attr', 'due_date', NULL, '2020-08-17');
INSERT INTO public.journal_details VALUES (5871, 4418, 'attr', 'assigned_to_id', NULL, '24');
INSERT INTO public.journal_details VALUES (5872, 4418, 'attr', 'start_date', '2020-07-13', '2020-08-17');
INSERT INTO public.journal_details VALUES (5877, 4420, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (5878, 4420, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5879, 4421, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (5880, 4421, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5881, 4422, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (5882, 4422, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5883, 4423, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (5884, 4423, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5885, 4424, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (5886, 4424, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5887, 4425, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (5888, 4425, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5889, 4426, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (5890, 4426, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5891, 4427, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (5892, 4427, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5893, 4428, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (5894, 4428, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5895, 4429, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (5896, 4429, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5897, 4430, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (5898, 4430, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5899, 4431, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (5900, 4431, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5901, 4432, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (5902, 4432, 'attr', 'start_date', '2020-07-13', '2020-08-05');
INSERT INTO public.journal_details VALUES (5903, 4433, 'attr', 'due_date', NULL, '2020-08-17');
INSERT INTO public.journal_details VALUES (5904, 4433, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5905, 4433, 'attr', 'start_date', '2020-07-13', '2020-08-17');
INSERT INTO public.journal_details VALUES (5906, 4434, 'attr', 'due_date', NULL, '2020-08-17');
INSERT INTO public.journal_details VALUES (5907, 4434, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5908, 4434, 'attr', 'start_date', '2020-07-13', '2020-08-17');
INSERT INTO public.journal_details VALUES (5909, 4435, 'attr', 'due_date', NULL, '2020-08-17');
INSERT INTO public.journal_details VALUES (5910, 4435, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5911, 4435, 'attr', 'start_date', '2020-07-13', '2020-08-17');
INSERT INTO public.journal_details VALUES (5912, 4436, 'attr', 'due_date', NULL, '2020-08-17');
INSERT INTO public.journal_details VALUES (5913, 4436, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (5914, 4436, 'attr', 'start_date', '2020-07-13', '2020-08-17');
INSERT INTO public.journal_details VALUES (5915, 4437, 'attr', 'due_date', NULL, '2020-07-25');
INSERT INTO public.journal_details VALUES (5916, 4437, 'attr', 'start_date', '2020-07-17', '2020-07-25');
INSERT INTO public.journal_details VALUES (5917, 4438, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (5918, 4439, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5921, 4442, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (5922, 4443, 'attr', 'assigned_to_id', '19', NULL);
INSERT INTO public.journal_details VALUES (5939, 4456, 'attr', 'due_date', '2020-07-13', '2020-07-18');
INSERT INTO public.journal_details VALUES (5940, 4456, 'attr', 'start_date', '2020-07-13', '2020-07-18');
INSERT INTO public.journal_details VALUES (5941, 4457, 'attr', 'due_date', '2020-07-20', '2020-07-21');
INSERT INTO public.journal_details VALUES (5942, 4457, 'attr', 'start_date', '2020-07-20', '2020-07-21');
INSERT INTO public.journal_details VALUES (5943, 4458, 'attr', 'due_date', '2020-07-25', '2020-07-23');
INSERT INTO public.journal_details VALUES (5944, 4458, 'attr', 'start_date', '2020-07-25', '2020-07-22');
INSERT INTO public.journal_details VALUES (5945, 4459, 'attr', 'due_date', '2020-07-25', '2020-07-24');
INSERT INTO public.journal_details VALUES (5946, 4459, 'attr', 'start_date', '2020-07-25', '2020-07-24');
INSERT INTO public.journal_details VALUES (5947, 4460, 'attr', 'due_date', '2020-07-25', '2020-07-24');
INSERT INTO public.journal_details VALUES (5948, 4460, 'attr', 'start_date', '2020-07-25', '2020-07-24');
INSERT INTO public.journal_details VALUES (5949, 4461, 'attr', 'due_date', '2020-07-25', '2020-07-27');
INSERT INTO public.journal_details VALUES (5950, 4461, 'attr', 'start_date', '2020-07-25', '2020-07-27');
INSERT INTO public.journal_details VALUES (5979, 4477, 'attr', 'due_date', '2020-08-15', '2020-08-13');
INSERT INTO public.journal_details VALUES (5980, 4477, 'attr', 'start_date', '2020-08-15', '2020-08-12');
INSERT INTO public.journal_details VALUES (5981, 4478, 'attr', 'due_date', '2020-08-17', '2020-08-15');
INSERT INTO public.journal_details VALUES (5982, 4478, 'attr', 'start_date', '2020-08-17', '2020-08-14');
INSERT INTO public.journal_details VALUES (5984, 4480, 'attr', 'due_date', '2020-07-22', '2020-07-20');
INSERT INTO public.journal_details VALUES (5985, 4480, 'attr', 'start_date', '2020-07-22', '2020-07-20');
INSERT INTO public.journal_details VALUES (5986, 4481, 'attr', 'start_date', '2020-07-22', '2020-07-21');
INSERT INTO public.journal_details VALUES (6071, 4532, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (5987, 4482, 'attr', 'due_date', '2020-07-22', '2020-07-21');
INSERT INTO public.journal_details VALUES (5988, 4483, 'attr', 'due_date', '2020-07-22', '2020-07-23');
INSERT INTO public.journal_details VALUES (5989, 4483, 'attr', 'start_date', '2020-07-22', '2020-07-23');
INSERT INTO public.journal_details VALUES (5990, 4484, 'attr', 'due_date', '2020-07-22', '2020-07-24');
INSERT INTO public.journal_details VALUES (5991, 4484, 'attr', 'start_date', '2020-07-22', '2020-07-24');
INSERT INTO public.journal_details VALUES (5992, 4485, 'attr', 'due_date', '2020-07-22', '2020-07-24');
INSERT INTO public.journal_details VALUES (5993, 4485, 'attr', 'start_date', '2020-07-22', '2020-07-24');
INSERT INTO public.journal_details VALUES (5994, 4486, 'attr', 'due_date', '2020-07-22', '2020-07-25');
INSERT INTO public.journal_details VALUES (5995, 4486, 'attr', 'start_date', '2020-07-22', '2020-07-25');
INSERT INTO public.journal_details VALUES (5996, 4487, 'attr', 'due_date', '2020-07-22', '2020-07-28');
INSERT INTO public.journal_details VALUES (5997, 4487, 'attr', 'start_date', '2020-07-22', '2020-07-27');
INSERT INTO public.journal_details VALUES (5998, 4488, 'attr', 'due_date', '2020-07-25', '2020-07-28');
INSERT INTO public.journal_details VALUES (5999, 4488, 'attr', 'start_date', '2020-07-25', '2020-07-27');
INSERT INTO public.journal_details VALUES (6000, 4489, 'attr', 'due_date', '2020-07-28', '2020-07-30');
INSERT INTO public.journal_details VALUES (6001, 4489, 'attr', 'start_date', '2020-07-27', '2020-07-29');
INSERT INTO public.journal_details VALUES (6002, 4490, 'attr', 'due_date', '2020-07-30', '2020-08-06');
INSERT INTO public.journal_details VALUES (6003, 4490, 'attr', 'start_date', '2020-07-25', '2020-07-31');
INSERT INTO public.journal_details VALUES (6004, 4491, 'attr', 'parent_id', '1048', '1401');
INSERT INTO public.journal_details VALUES (6005, 4492, 'attr', 'parent_id', '1048', '1401');
INSERT INTO public.journal_details VALUES (6006, 4493, 'attr', 'parent_id', '1048', '1401');
INSERT INTO public.journal_details VALUES (6007, 4494, 'attr', 'parent_id', '1048', '1401');
INSERT INTO public.journal_details VALUES (6008, 4495, 'attr', 'parent_id', '1048', '1401');
INSERT INTO public.journal_details VALUES (6009, 4496, 'attr', 'parent_id', '1048', '1401');
INSERT INTO public.journal_details VALUES (6010, 4497, 'attr', 'parent_id', '1048', '1401');
INSERT INTO public.journal_details VALUES (6011, 4498, 'attr', 'parent_id', '1048', '1401');
INSERT INTO public.journal_details VALUES (6012, 4499, 'attr', 'assigned_to_id', '8', '19');
INSERT INTO public.journal_details VALUES (6013, 4500, 'attr', 'due_date', '2020-07-28', '2020-07-31');
INSERT INTO public.journal_details VALUES (6014, 4500, 'attr', 'start_date', '2020-07-28', '2020-07-31');
INSERT INTO public.journal_details VALUES (6015, 4501, 'attr', 'due_date', '2020-07-28', '2020-08-01');
INSERT INTO public.journal_details VALUES (6016, 4501, 'attr', 'start_date', '2020-07-28', '2020-08-01');
INSERT INTO public.journal_details VALUES (6017, 4502, 'attr', 'due_date', '2020-07-27', '2020-08-05');
INSERT INTO public.journal_details VALUES (6018, 4502, 'attr', 'start_date', '2020-07-27', '2020-08-04');
INSERT INTO public.journal_details VALUES (6021, 4504, 'attr', 'start_date', '2020-08-04', '2020-08-03');
INSERT INTO public.journal_details VALUES (6022, 4505, 'attr', 'subject', 'Thống kê số liệu của nhiều trạm theo dữ liệu trong 1 ngày dưới dạng báo cáo', 'Theo dữ liệu trong 1 ngày dưới dạng báo cáo');
INSERT INTO public.journal_details VALUES (6023, 4505, 'attr', 'due_date', '2020-08-15', '2020-08-11');
INSERT INTO public.journal_details VALUES (6024, 4505, 'attr', 'start_date', '2020-08-05', '2020-08-10');
INSERT INTO public.journal_details VALUES (6025, 4506, 'attr', 'subject', 'Thống kê số liệu của nhiều trạm theo dữ liệu trong 1 ngày dưới dạng biểu đồ dạng đường', 'Theo dữ liệu trong 1 ngày dưới dạng biểu đồ dạng đường');
INSERT INTO public.journal_details VALUES (6026, 4506, 'attr', 'due_date', '2020-08-15', '2020-08-13');
INSERT INTO public.journal_details VALUES (6027, 4506, 'attr', 'start_date', '2020-08-05', '2020-08-12');
INSERT INTO public.journal_details VALUES (6028, 4507, 'attr', 'subject', 'Thống kê số liệu của nhiều trạm theo giá trị trung bình trong nhiều ngày dưới dạng báo cáo', 'Theo giá trị trung bình trong nhiều ngày dưới dạng báo cáo');
INSERT INTO public.journal_details VALUES (6029, 4507, 'attr', 'start_date', '2020-08-05', '2020-08-14');
INSERT INTO public.journal_details VALUES (6030, 4508, 'attr', 'subject', 'Thống kê số liệu của nhiều trạm theo giá trị trung bình trong nhiều ngày dưới dạng biểu đồ dạng đường', 'Theo giá trị trung bình trong nhiều ngày dưới dạng biểu đồ dạng đường');
INSERT INTO public.journal_details VALUES (6031, 4508, 'attr', 'due_date', '2020-08-15', '2020-08-18');
INSERT INTO public.journal_details VALUES (6032, 4508, 'attr', 'start_date', '2020-08-05', '2020-08-17');
INSERT INTO public.journal_details VALUES (6033, 4509, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6034, 4510, 'attr', 'subject', 'Thống kê số liệu của nhiều trạm theo giá trị lớn nhất trong nhiều ngày dưới dạng báo cáo', 'Theo giá trị lớn nhất trong nhiều ngày dưới dạng báo cáo');
INSERT INTO public.journal_details VALUES (6035, 4510, 'attr', 'due_date', '2020-08-15', '2020-08-20');
INSERT INTO public.journal_details VALUES (6036, 4510, 'attr', 'start_date', '2020-08-05', '2020-08-19');
INSERT INTO public.journal_details VALUES (6037, 4511, 'attr', 'subject', 'Thống kê số liệu của nhiều trạm theo giá trị lớn nhất trong nhiều ngày dưới dạng biểu đồ dạng đường', 'Theo giá trị lớn nhất trong nhiều ngày dưới dạng biểu đồ dạng đường');
INSERT INTO public.journal_details VALUES (6038, 4511, 'attr', 'due_date', '2020-08-15', '2020-08-22');
INSERT INTO public.journal_details VALUES (6039, 4511, 'attr', 'start_date', '2020-08-05', '2020-08-21');
INSERT INTO public.journal_details VALUES (6040, 4512, 'attr', 'subject', 'Thống kê số liệu của nhiều trạm theo giá trị nhỏ nhất trong nhiều ngày dưới dạng báo cáo', 'Theo giá trị nhỏ nhất trong nhiều ngày dưới dạng báo cáo');
INSERT INTO public.journal_details VALUES (6041, 4512, 'attr', 'due_date', '2020-08-15', '2020-08-25');
INSERT INTO public.journal_details VALUES (6042, 4512, 'attr', 'start_date', '2020-08-05', '2020-08-24');
INSERT INTO public.journal_details VALUES (6043, 4513, 'attr', 'subject', 'Thống kê số liệu của nhiều trạm theo giá trị nhỏ nhất trong nhiều ngày dưới dạng biểu đồ dạng đường', 'Theo giá trị nhỏ nhất trong nhiều ngày dưới dạng biểu đồ dạng đường');
INSERT INTO public.journal_details VALUES (6044, 4513, 'attr', 'due_date', '2020-08-15', '2020-08-27');
INSERT INTO public.journal_details VALUES (6045, 4513, 'attr', 'start_date', '2020-08-05', '2020-08-26');
INSERT INTO public.journal_details VALUES (6046, 4514, 'attr', 'due_date', '2020-08-15', '2020-08-29');
INSERT INTO public.journal_details VALUES (6047, 4514, 'attr', 'start_date', '2020-08-15', '2020-08-28');
INSERT INTO public.journal_details VALUES (6048, 4515, 'attr', 'due_date', '2020-08-17', '2020-09-05');
INSERT INTO public.journal_details VALUES (6049, 4515, 'attr', 'start_date', '2020-08-17', '2020-08-31');
INSERT INTO public.journal_details VALUES (6050, 4516, 'attr', 'due_date', '2020-08-17', '2020-09-05');
INSERT INTO public.journal_details VALUES (6051, 4516, 'attr', 'start_date', '2020-08-17', '2020-08-31');
INSERT INTO public.journal_details VALUES (6052, 4517, 'attr', 'due_date', '2020-08-17', '2020-09-05');
INSERT INTO public.journal_details VALUES (6053, 4517, 'attr', 'start_date', '2020-08-17', '2020-08-31');
INSERT INTO public.journal_details VALUES (6054, 4518, 'attr', 'due_date', '2020-08-17', '2020-09-05');
INSERT INTO public.journal_details VALUES (6055, 4518, 'attr', 'start_date', '2020-08-17', '2020-08-31');
INSERT INTO public.journal_details VALUES (6056, 4519, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6057, 4520, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (6058, 4521, 'attachment', '33', NULL, 'QCVN_ChatLuongQuanTrac.docx');
INSERT INTO public.journal_details VALUES (6059, 4522, 'attr', 'due_date', NULL, '2020-07-18');
INSERT INTO public.journal_details VALUES (6060, 4522, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (6061, 4523, 'attr', 'subject', 'Hiển thị kết quả tìm kiếm và trỏ đến vị trí', 'Tìm kiếm cơ bản');
INSERT INTO public.journal_details VALUES (6062, 4524, 'attr', 'due_date', '2020-07-19', '2020-07-20');
INSERT INTO public.journal_details VALUES (6063, 4524, 'attr', 'start_date', '2020-07-18', '2020-07-20');
INSERT INTO public.journal_details VALUES (6064, 4525, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (6065, 4526, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (6066, 4527, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (6067, 4528, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (6068, 4529, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6069, 4530, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6070, 4531, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (6072, 4533, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6073, 4534, 'attr', 'due_date', '2020-07-18', '2020-07-20');
INSERT INTO public.journal_details VALUES (6074, 4534, 'attr', 'start_date', '2020-07-18', '2020-07-20');
INSERT INTO public.journal_details VALUES (6075, 4535, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6076, 4536, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6077, 4537, 'attr', 'due_date', '2020-07-17', '2020-07-18');
INSERT INTO public.journal_details VALUES (6078, 4538, 'attr', 'subject', 'Scan Phông SLĐ (25.000 trang)', 'Scan Phông SLĐ (6.000 trang)');
INSERT INTO public.journal_details VALUES (6079, 4539, 'attr', 'subject', 'Scan Phông Sở LĐ (25.000 trang)', 'Scan Phông Sở LĐ (6.000 trang)');
INSERT INTO public.journal_details VALUES (6080, 4540, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6081, 4541, 'attr', 'subject', 'Scan Phông SLĐ (6.000 trang)', 'Scan Phông SLĐ (3.000 trang)');
INSERT INTO public.journal_details VALUES (6082, 4541, 'attr', 'due_date', '2020-07-31', '2020-07-24');
INSERT INTO public.journal_details VALUES (6083, 4542, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (6084, 4543, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6085, 4544, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6086, 4545, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6087, 4546, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6088, 4547, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6089, 4548, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6090, 4549, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6091, 4550, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6092, 4551, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6093, 4552, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6094, 4553, 'attr', 'due_date', NULL, '2020-07-20');
INSERT INTO public.journal_details VALUES (6095, 4554, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6096, 4555, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6097, 4556, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (6098, 4557, 'attr', 'subject', 'xóa thông tin liên quan', 'Xóa thông tin liên quan');
INSERT INTO public.journal_details VALUES (6099, 4557, 'attr', 'due_date', NULL, '2020-07-20');
INSERT INTO public.journal_details VALUES (6100, 4558, 'attr', 'status_id', '1', '4');
INSERT INTO public.journal_details VALUES (6101, 4559, 'attr', 'status_id', '4', '3');
INSERT INTO public.journal_details VALUES (6102, 4560, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (6103, 4561, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6104, 4562, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6105, 4563, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6106, 4564, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6107, 4565, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6108, 4566, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6109, 4567, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6116, 4574, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6117, 4575, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6123, 4581, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (6124, 4582, 'attr', 'start_date', '2020-07-20', '2020-07-23');
INSERT INTO public.journal_details VALUES (6125, 4583, 'attr', 'start_date', '2020-07-22', '2020-07-20');
INSERT INTO public.journal_details VALUES (6126, 4584, 'attr', 'due_date', '2020-07-24', '2020-07-23');
INSERT INTO public.journal_details VALUES (6127, 4585, 'attr', 'due_date', '2020-07-28', '2020-07-27');
INSERT INTO public.journal_details VALUES (6128, 4586, 'attr', 'due_date', '2020-07-28', '2020-07-27');
INSERT INTO public.journal_details VALUES (6136, 4591, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6137, 4592, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6139, 4595, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6140, 4596, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6141, 4597, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6142, 4598, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6143, 4599, 'attr', 'subject', 'Bình phước chưa tìm kiếm được', 'Bình phước bản đồ chưa tìm kiếm được');
INSERT INTO public.journal_details VALUES (6144, 4600, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6145, 4601, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6146, 4602, 'attr', 'assigned_to_id', '22', '4');
INSERT INTO public.journal_details VALUES (6147, 4603, 'attr', 'due_date', '2020-07-20', '2020-07-22');
INSERT INTO public.journal_details VALUES (6148, 4603, 'attr', 'start_date', '2020-07-20', '2020-07-22');
INSERT INTO public.journal_details VALUES (6149, 4604, 'attr', 'due_date', '2020-07-21', '2020-07-22');
INSERT INTO public.journal_details VALUES (6150, 4604, 'attr', 'start_date', '2020-07-21', '2020-07-22');
INSERT INTO public.journal_details VALUES (6151, 4605, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6152, 4606, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6153, 4607, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6154, 4608, 'attr', 'done_ratio', '0', '20');
INSERT INTO public.journal_details VALUES (6155, 4609, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6156, 4610, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6157, 4611, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6158, 4612, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6159, 4613, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6160, 4614, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6161, 4614, 'attr', 'assigned_to_id', '13', '6');
INSERT INTO public.journal_details VALUES (6162, 4614, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6163, 4615, 'attr', 'due_date', '2020-07-20', '2020-07-27');
INSERT INTO public.journal_details VALUES (6164, 4615, 'attr', 'start_date', '2020-07-20', '2020-07-27');
INSERT INTO public.journal_details VALUES (6165, 4616, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6166, 4617, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6167, 4618, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (6168, 4619, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6169, 4620, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6170, 4621, 'attr', 'subject', 'List API', 'List API cơ bản');
INSERT INTO public.journal_details VALUES (6171, 4621, 'attr', 'due_date', NULL, '2020-07-18');
INSERT INTO public.journal_details VALUES (6172, 4621, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (6173, 4622, 'attr', 'due_date', '2020-07-20', '2020-07-27');
INSERT INTO public.journal_details VALUES (6174, 4622, 'attr', 'done_ratio', '50', '80');
INSERT INTO public.journal_details VALUES (6175, 4623, 'attachment', '45', NULL, 'clipboard-202007221439-jfgmx.png');
INSERT INTO public.journal_details VALUES (6176, 4624, 'attachment', '46', NULL, 'clipboard-202007221442-x8vui.png');
INSERT INTO public.journal_details VALUES (6177, 4625, 'attr', 'due_date', '2020-07-25', '2020-08-01');
INSERT INTO public.journal_details VALUES (6178, 4626, 'attr', 'description', 'https://api-quantrac-qn.gdtvietnam.com
/odata/CSSXKD
/odata/DMDiemQuanTrac
/odata/DotQuanTracs
/odata/DMCumCongNghiep
/odata/DMLoaiMoiTruongs
/odata/DMLoaiQuanTrac
/odata/DMThongSoDo
/odata/DonViTinh
/odata/DuAn
/odata/LoaiCoSoKD
/odata/LoaiDuAn
/odata/LoaiHoSo
/odata/QuanLyHoSoDuAn
/odata/ChiTietDotDoDinhKy', 'https://api-quantrac-qn.gdtvietnam.com
/odata/CSSXKD
/odata/DMDiemQuanTrac
/odata/DotQuanTracs
/odata/DMCumCongNghiep
/odata/DMLoaiMoiTruongs
/odata/DMLoaiQuanTrac
/odata/DMThongSoDo
/odata/DonViTinh
/odata/DuAn
/odata/LoaiCoSoKD
/odata/LoaiDuAn
/odata/LoaiHoSo
/odata/QuanLyHoSoDuAn
/odata/ChiTietDotDoDinhKy
/odata/DMQCVN
/odata/ChiTietQCVN
/odata/ChiTietDotTruyen
/odata/DotTruyenTongCuc
');
INSERT INTO public.journal_details VALUES (6179, 4626, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (6180, 4627, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (6181, 4628, 'attr', 'start_date', '2020-08-03', '2020-07-29');
INSERT INTO public.journal_details VALUES (6182, 4630, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (6183, 4631, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (6184, 4633, 'attr', 'status_id', '5', '3');
INSERT INTO public.journal_details VALUES (6185, 4634, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6186, 4635, 'attr', 'status_id', '5', '3');
INSERT INTO public.journal_details VALUES (6187, 4635, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6188, 4636, 'attr', 'status_id', '5', '3');
INSERT INTO public.journal_details VALUES (6189, 4636, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6190, 4637, 'attr', 'status_id', '5', '3');
INSERT INTO public.journal_details VALUES (6191, 4637, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6192, 4638, 'attr', 'status_id', '5', '3');
INSERT INTO public.journal_details VALUES (6193, 4638, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6194, 4639, 'attr', 'status_id', '5', '3');
INSERT INTO public.journal_details VALUES (6195, 4639, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6196, 4640, 'attachment', '54', NULL, 'QCVN 05-2013.pdf');
INSERT INTO public.journal_details VALUES (6197, 4641, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6198, 4642, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (6199, 4643, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6200, 4644, 'attr', 'assigned_to_id', NULL, '24');
INSERT INTO public.journal_details VALUES (6201, 4645, 'attr', 'done_ratio', '0', '40');
INSERT INTO public.journal_details VALUES (6202, 4646, 'attr', 'done_ratio', '20', '40');
INSERT INTO public.journal_details VALUES (6203, 4647, 'attr', 'done_ratio', '0', '40');
INSERT INTO public.journal_details VALUES (6204, 4648, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (6205, 4649, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (6206, 4650, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6207, 4651, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6208, 4652, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6209, 4653, 'attr', 'subject', 'cải thiện hiệu năng load trang tin tức', ' Load trang tin tức (lazy load)');
INSERT INTO public.journal_details VALUES (6210, 4654, 'attr', 'assigned_to_id', '13', '4');
INSERT INTO public.journal_details VALUES (6211, 4655, 'attr', 'assigned_to_id', '13', '4');
INSERT INTO public.journal_details VALUES (6212, 4656, 'attr', 'assigned_to_id', '13', '4');
INSERT INTO public.journal_details VALUES (6213, 4657, 'attr', 'subject', 'Quản lí thuộc tính Phiên đấu giá', 'Quản lí thuộc tính');
INSERT INTO public.journal_details VALUES (6214, 4658, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (6215, 4658, 'attr', 'start_date', '2020-07-23', '2020-08-03');
INSERT INTO public.journal_details VALUES (6216, 4659, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6217, 4660, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6218, 4661, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6219, 4662, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6220, 4663, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6221, 4663, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6222, 4664, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6223, 4665, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6224, 4666, 'attr', 'description', '', 'Mã điểm

Tên điểm

Địa chỉ, quận huyện

Tọa độ

Loại môi trường quan trắc

Áp dụng bộ quy chuẩn nào');
INSERT INTO public.journal_details VALUES (6225, 4667, 'attr', 'tracker_id', '2', '3');
INSERT INTO public.journal_details VALUES (6226, 4668, 'attr', 'tracker_id', '2', '3');
INSERT INTO public.journal_details VALUES (6227, 4669, 'attr', 'tracker_id', '2', '3');
INSERT INTO public.journal_details VALUES (6228, 4670, 'attr', 'tracker_id', '2', '3');
INSERT INTO public.journal_details VALUES (6229, 4671, 'attr', 'description', 'Mã điểm

Tên điểm

Địa chỉ, quận huyện

Tọa độ

Loại môi trường quan trắc

Áp dụng bộ quy chuẩn nào', 'Mã điểm

Tên điểm

Địa chỉ, quận huyện

Tọa độ

Loại môi trường quan trắc

Loại quan trắc: tự động, định kỳ

Áp dụng bộ quy chuẩn nào');
INSERT INTO public.journal_details VALUES (6230, 4672, 'attr', 'assigned_to_id', '8', '24');
INSERT INTO public.journal_details VALUES (6231, 4673, 'attr', 'assigned_to_id', '24', '8');
INSERT INTO public.journal_details VALUES (6232, 4674, 'attr', 'assigned_to_id', '24', '8');
INSERT INTO public.journal_details VALUES (6234, 4676, 'attr', 'assigned_to_id', '24', '8');
INSERT INTO public.journal_details VALUES (6235, 4677, 'attr', 'assigned_to_id', '24', '8');
INSERT INTO public.journal_details VALUES (6242, 4684, 'attr', 'assigned_to_id', '24', '8');
INSERT INTO public.journal_details VALUES (6244, 4686, 'attr', 'done_ratio', '40', '60');
INSERT INTO public.journal_details VALUES (6245, 4687, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (6246, 4688, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6247, 4689, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6248, 4690, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6249, 4691, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6250, 4692, 'attr', 'done_ratio', '40', '50');
INSERT INTO public.journal_details VALUES (6251, 4693, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6252, 4694, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6253, 4695, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6254, 4696, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6256, 4698, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6257, 4698, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6258, 4699, 'attr', 'due_date', '2020-07-20', '2020-07-27');
INSERT INTO public.journal_details VALUES (6259, 4699, 'attr', 'start_date', '2020-07-20', '2020-07-27');
INSERT INTO public.journal_details VALUES (6260, 4700, 'attr', 'due_date', '2020-07-21', '2020-07-27');
INSERT INTO public.journal_details VALUES (6261, 4700, 'attr', 'start_date', '2020-07-21', '2020-07-27');
INSERT INTO public.journal_details VALUES (6264, 4702, 'attr', 'due_date', '2020-07-25', '2020-07-27');
INSERT INTO public.journal_details VALUES (6265, 4702, 'attr', 'start_date', '2020-07-25', '2020-07-27');
INSERT INTO public.journal_details VALUES (6266, 4703, 'attr', 'due_date', '2020-07-24', '2020-07-25');
INSERT INTO public.journal_details VALUES (6267, 4703, 'attr', 'start_date', '2020-07-24', '2020-07-25');
INSERT INTO public.journal_details VALUES (6268, 4704, 'attr', 'subject', 'Quản trị số liệu quan trắc của trạm quan trắc', 'Số liệu quan trắc của trạm quan trắc');
INSERT INTO public.journal_details VALUES (6269, 4705, 'attr', 'subject', 'Quản trị số liệu quan trắc của bảng điện tử', 'Số liệu quan trắc của bảng điện tử');
INSERT INTO public.journal_details VALUES (6270, 4706, 'attr', 'due_date', '2020-07-27', '2020-08-01');
INSERT INTO public.journal_details VALUES (6271, 4706, 'attr', 'start_date', '2020-07-27', '2020-07-31');
INSERT INTO public.journal_details VALUES (6272, 4707, 'attr', 'due_date', '2020-07-30', '2020-08-01');
INSERT INTO public.journal_details VALUES (6273, 4707, 'attr', 'start_date', '2020-07-29', '2020-07-31');
INSERT INTO public.journal_details VALUES (6274, 4708, 'attr', 'due_date', '2020-07-31', '2020-08-03');
INSERT INTO public.journal_details VALUES (6275, 4708, 'attr', 'start_date', '2020-07-31', '2020-08-03');
INSERT INTO public.journal_details VALUES (6276, 4709, 'attr', 'due_date', '2020-08-01', '2020-08-03');
INSERT INTO public.journal_details VALUES (6277, 4709, 'attr', 'start_date', '2020-08-01', '2020-08-03');
INSERT INTO public.journal_details VALUES (6278, 4710, 'attr', 'due_date', '2020-07-28', '2020-07-30');
INSERT INTO public.journal_details VALUES (6279, 4710, 'attr', 'start_date', '2020-07-27', '2020-07-29');
INSERT INTO public.journal_details VALUES (6280, 4711, 'attr', 'due_date', '2020-08-15', '2020-08-05');
INSERT INTO public.journal_details VALUES (6281, 4711, 'attr', 'start_date', '2020-08-14', '2020-08-05');
INSERT INTO public.journal_details VALUES (6284, 4713, 'attr', 'done_ratio', '60', '70');
INSERT INTO public.journal_details VALUES (6285, 4714, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6286, 4715, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6287, 4716, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6288, 4717, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6289, 4718, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6290, 4719, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6291, 4720, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6292, 4721, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6293, 4722, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6294, 4723, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6295, 4724, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6296, 4724, 'attr', 'estimated_hours', NULL, '36.0');
INSERT INTO public.journal_details VALUES (6297, 4725, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (6298, 4726, 'attr', 'due_date', NULL, '2020-07-24');
INSERT INTO public.journal_details VALUES (6299, 4727, 'attr', 'subject', 'Quản lý dữ liệu quan trắc', 'Quản lý dữ liệu quan trắc tự động');
INSERT INTO public.journal_details VALUES (6300, 4728, 'attr', 'parent_id', '1046', '1600');
INSERT INTO public.journal_details VALUES (6605, 4960, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6301, 4729, 'attr', 'parent_id', '1173', '1601');
INSERT INTO public.journal_details VALUES (6302, 4730, 'attr', 'parent_id', '1173', '1601');
INSERT INTO public.journal_details VALUES (6303, 4731, 'attr', 'parent_id', '1047', '1600');
INSERT INTO public.journal_details VALUES (6304, 4732, 'attr', 'subject', 'Quản lý dữ liệu quan trắc tự động', 'Số liệu quan trắc tự động');
INSERT INTO public.journal_details VALUES (6305, 4733, 'attr', 'subject', 'Số liệu quan trắc của trạm quan trắc', 'List số liệu quan trắc');
INSERT INTO public.journal_details VALUES (6306, 4733, 'attr', 'status_id', '3', '1');
INSERT INTO public.journal_details VALUES (6307, 4734, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (6310, 4737, 'attr', 'subject', '50%', 'báo cáo');
INSERT INTO public.journal_details VALUES (6311, 4737, 'attr', 'description', '20/07 Hop 01 - 255 tr
          11 - 209 tr
21/07 Hop 20 - 339 tr
          28 - 60 tr
          33 - 615 tr
22/07 Hop 48 - 38 tr
          49 - 88 tr
          50 - 456 tr
          70 - 145 tr
23/07 Hop 72 - 869 tr', '20/07 Hop 01 - 255 tr
          11 - 209 tr
21/07 Hop 20 - 339 tr
          28 - 60 tr
          33 - 615 tr
22/07 Hop 48 - 38 tr
          49 - 88 tr
          50 - 456 tr
          70 - 145 tr
23/07 Hop 72 - 869 tr
24/07 Hop 82 - 168 tr
         162 - 261 tr
         187 - 538 tr');
INSERT INTO public.journal_details VALUES (6312, 4737, 'attr', 'due_date', '2020-07-23', '2020-07-31');
INSERT INTO public.journal_details VALUES (6313, 4737, 'attr', 'done_ratio', '50', '70');
INSERT INTO public.journal_details VALUES (6314, 4738, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6315, 4739, 'attr', 'description', 'Lọc theo:

Mã trạm

Tên trạm

Loại hình

Loại trạm

Quận/Huyện/TP', 'Mã trạm

Tên trạm

Loại môi trường

Loại trạm

Thời gian đo

Thông số');
INSERT INTO public.journal_details VALUES (6316, 4742, 'attr', 'start_date', '2020-07-23', '2020-07-24');
INSERT INTO public.journal_details VALUES (6317, 4743, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6318, 4744, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6319, 4745, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6320, 4746, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6321, 4747, 'attr', 'assigned_to_id', NULL, '35');
INSERT INTO public.journal_details VALUES (6322, 4748, 'attr', 'description', '', 'Hộp 04-178
    05-577
    18-112
    22-34
    23-513
    43-486
    60-607
    79-450
   161-228');
INSERT INTO public.journal_details VALUES (6323, 4749, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6324, 4750, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6325, 4751, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6326, 4752, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6327, 4753, 'attr', 'done_ratio', '100', '50');
INSERT INTO public.journal_details VALUES (6328, 4754, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (6329, 4755, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (6331, 4757, 'attr', 'assigned_to_id', '8', '13');
INSERT INTO public.journal_details VALUES (6332, 4758, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6333, 4759, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (6334, 4760, 'attr', 'start_date', '2020-07-31', '2020-07-22');
INSERT INTO public.journal_details VALUES (6335, 4760, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (6336, 4760, 'attr', 'estimated_hours', NULL, '24.0');
INSERT INTO public.journal_details VALUES (6337, 4761, 'attr', 'subject', 'Api trạng thái quan trắc không khí', 'Api quan trắc không khí');
INSERT INTO public.journal_details VALUES (6338, 4761, 'attr', 'due_date', '2020-07-25', '2020-07-31');
INSERT INTO public.journal_details VALUES (6339, 4762, 'attr', 'due_date', '2020-07-26', '2020-07-27');
INSERT INTO public.journal_details VALUES (6340, 4762, 'attr', 'start_date', '2020-07-26', '2020-07-27');
INSERT INTO public.journal_details VALUES (6341, 4763, 'attr', 'due_date', '2020-07-28', '2020-07-29');
INSERT INTO public.journal_details VALUES (6342, 4764, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6343, 4765, 'attr', 'subject', 'Api số liệu quan trắc không khí theo ngày', 'Api số liệu quan trắc không khí 24h(dashboard)');
INSERT INTO public.journal_details VALUES (6344, 4766, 'attr', 'due_date', '2020-07-30', '2020-08-12');
INSERT INTO public.journal_details VALUES (6345, 4766, 'attr', 'start_date', '2020-07-29', '2020-08-07');
INSERT INTO public.journal_details VALUES (6346, 4767, 'attr', 'due_date', '2020-07-28', '2020-08-17');
INSERT INTO public.journal_details VALUES (6347, 4767, 'attr', 'start_date', '2020-07-22', '2020-08-12');
INSERT INTO public.journal_details VALUES (6348, 4768, 'attr', 'due_date', NULL, '2020-07-28');
INSERT INTO public.journal_details VALUES (6349, 4768, 'attr', 'start_date', '2020-07-24', '2020-07-27');
INSERT INTO public.journal_details VALUES (6350, 4769, 'attr', 'due_date', NULL, '2020-07-29');
INSERT INTO public.journal_details VALUES (6351, 4769, 'attr', 'start_date', '2020-07-24', '2020-07-29');
INSERT INTO public.journal_details VALUES (6352, 4770, 'attr', 'due_date', NULL, '2020-07-29');
INSERT INTO public.journal_details VALUES (6353, 4770, 'attr', 'start_date', '2020-07-24', '2020-07-29');
INSERT INTO public.journal_details VALUES (6354, 4771, 'attr', 'due_date', NULL, '2020-07-29');
INSERT INTO public.journal_details VALUES (6355, 4771, 'attr', 'start_date', '2020-07-24', '2020-07-29');
INSERT INTO public.journal_details VALUES (6356, 4772, 'attr', 'due_date', NULL, '2020-07-31');
INSERT INTO public.journal_details VALUES (6357, 4772, 'attr', 'start_date', '2020-07-24', '2020-07-30');
INSERT INTO public.journal_details VALUES (6358, 4773, 'attr', 'due_date', NULL, '2020-08-03');
INSERT INTO public.journal_details VALUES (6359, 4773, 'attr', 'start_date', '2020-07-06', '2020-08-03');
INSERT INTO public.journal_details VALUES (6360, 4774, 'attr', 'due_date', NULL, '2020-08-03');
INSERT INTO public.journal_details VALUES (6361, 4774, 'attr', 'start_date', '2020-07-06', '2020-08-03');
INSERT INTO public.journal_details VALUES (6362, 4775, 'attr', 'due_date', NULL, '2020-08-03');
INSERT INTO public.journal_details VALUES (6363, 4775, 'attr', 'start_date', '2020-07-06', '2020-08-03');
INSERT INTO public.journal_details VALUES (6364, 4776, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (6365, 4777, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (6366, 4778, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (6367, 4779, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (6368, 4780, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (6369, 4781, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (6370, 4782, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (6371, 4783, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (6372, 4784, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (6373, 4785, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (6374, 4786, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (6375, 4787, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (6376, 4788, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (6377, 4789, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (6378, 4790, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (6379, 4791, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (6380, 4792, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (6381, 4793, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (6382, 4794, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (6383, 4795, 'attr', 'due_date', '2020-06-26', '2020-08-03');
INSERT INTO public.journal_details VALUES (6384, 4795, 'attr', 'start_date', '2020-06-26', '2020-08-03');
INSERT INTO public.journal_details VALUES (6385, 4796, 'attr', 'due_date', NULL, '2020-08-04');
INSERT INTO public.journal_details VALUES (6386, 4796, 'attr', 'start_date', '2020-07-06', '2020-08-04');
INSERT INTO public.journal_details VALUES (6387, 4797, 'attr', 'due_date', NULL, '2020-08-04');
INSERT INTO public.journal_details VALUES (6388, 4797, 'attr', 'start_date', '2020-07-06', '2020-08-04');
INSERT INTO public.journal_details VALUES (6389, 4798, 'attr', 'due_date', NULL, '2020-08-04');
INSERT INTO public.journal_details VALUES (6390, 4798, 'attr', 'start_date', '2020-07-06', '2020-08-04');
INSERT INTO public.journal_details VALUES (6391, 4799, 'attr', 'due_date', NULL, '2020-08-05');
INSERT INTO public.journal_details VALUES (6392, 4799, 'attr', 'start_date', '2020-07-06', '2020-08-05');
INSERT INTO public.journal_details VALUES (6393, 4800, 'attr', 'due_date', NULL, '2020-08-05');
INSERT INTO public.journal_details VALUES (6394, 4800, 'attr', 'start_date', '2020-07-06', '2020-08-05');
INSERT INTO public.journal_details VALUES (6395, 4801, 'attr', 'due_date', NULL, '2020-08-05');
INSERT INTO public.journal_details VALUES (6396, 4801, 'attr', 'start_date', '2020-07-06', '2020-08-05');
INSERT INTO public.journal_details VALUES (6397, 4802, 'attr', 'due_date', NULL, '2020-08-06');
INSERT INTO public.journal_details VALUES (6398, 4802, 'attr', 'start_date', '2020-07-06', '2020-08-06');
INSERT INTO public.journal_details VALUES (6399, 4803, 'attr', 'due_date', NULL, '2020-08-06');
INSERT INTO public.journal_details VALUES (6400, 4803, 'attr', 'start_date', '2020-07-06', '2020-08-06');
INSERT INTO public.journal_details VALUES (6401, 4804, 'attr', 'due_date', NULL, '2020-08-06');
INSERT INTO public.journal_details VALUES (6402, 4804, 'attr', 'start_date', '2020-07-06', '2020-08-06');
INSERT INTO public.journal_details VALUES (6403, 4805, 'attr', 'due_date', NULL, '2020-08-07');
INSERT INTO public.journal_details VALUES (6404, 4805, 'attr', 'start_date', '2020-07-06', '2020-08-07');
INSERT INTO public.journal_details VALUES (6405, 4806, 'attr', 'due_date', NULL, '2020-08-07');
INSERT INTO public.journal_details VALUES (6406, 4806, 'attr', 'start_date', '2020-07-06', '2020-08-07');
INSERT INTO public.journal_details VALUES (6407, 4807, 'attr', 'due_date', NULL, '2020-08-07');
INSERT INTO public.journal_details VALUES (6408, 4807, 'attr', 'start_date', '2020-07-06', '2020-08-07');
INSERT INTO public.journal_details VALUES (6409, 4808, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (6410, 4808, 'attr', 'start_date', '2020-07-06', '2020-08-08');
INSERT INTO public.journal_details VALUES (6411, 4809, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (6412, 4809, 'attr', 'start_date', '2020-07-06', '2020-08-08');
INSERT INTO public.journal_details VALUES (6413, 4810, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (6414, 4810, 'attr', 'start_date', '2020-07-06', '2020-08-08');
INSERT INTO public.journal_details VALUES (6415, 4811, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (6416, 4811, 'attr', 'start_date', '2020-07-06', '2020-08-08');
INSERT INTO public.journal_details VALUES (6417, 4812, 'attr', 'due_date', '2020-08-08', '2020-08-15');
INSERT INTO public.journal_details VALUES (6418, 4812, 'attr', 'start_date', '2020-08-08', '2020-08-15');
INSERT INTO public.journal_details VALUES (6419, 4813, 'attr', 'due_date', '2020-08-08', '2020-08-15');
INSERT INTO public.journal_details VALUES (6420, 4813, 'attr', 'start_date', '2020-08-08', '2020-08-15');
INSERT INTO public.journal_details VALUES (6421, 4814, 'attr', 'due_date', '2020-08-08', '2020-08-15');
INSERT INTO public.journal_details VALUES (6422, 4814, 'attr', 'start_date', '2020-08-08', '2020-08-15');
INSERT INTO public.journal_details VALUES (6423, 4815, 'attr', 'due_date', '2020-08-08', '2020-08-15');
INSERT INTO public.journal_details VALUES (6424, 4815, 'attr', 'start_date', '2020-08-08', '2020-08-15');
INSERT INTO public.journal_details VALUES (6425, 4816, 'attr', 'due_date', '2020-08-07', '2020-08-13');
INSERT INTO public.journal_details VALUES (6426, 4816, 'attr', 'start_date', '2020-08-07', '2020-08-13');
INSERT INTO public.journal_details VALUES (6427, 4817, 'attr', 'due_date', '2020-08-07', '2020-08-13');
INSERT INTO public.journal_details VALUES (6428, 4817, 'attr', 'start_date', '2020-08-07', '2020-08-13');
INSERT INTO public.journal_details VALUES (6429, 4818, 'attr', 'due_date', '2020-08-07', '2020-08-13');
INSERT INTO public.journal_details VALUES (6430, 4818, 'attr', 'start_date', '2020-08-07', '2020-08-13');
INSERT INTO public.journal_details VALUES (6431, 4819, 'attr', 'due_date', '2020-08-06', '2020-08-11');
INSERT INTO public.journal_details VALUES (6432, 4819, 'attr', 'start_date', '2020-08-06', '2020-08-11');
INSERT INTO public.journal_details VALUES (6433, 4820, 'attr', 'due_date', '2020-08-06', '2020-08-11');
INSERT INTO public.journal_details VALUES (6434, 4820, 'attr', 'start_date', '2020-08-06', '2020-08-11');
INSERT INTO public.journal_details VALUES (6435, 4821, 'attr', 'due_date', '2020-08-06', '2020-08-11');
INSERT INTO public.journal_details VALUES (6436, 4821, 'attr', 'start_date', '2020-08-06', '2020-08-11');
INSERT INTO public.journal_details VALUES (6437, 4822, 'attr', 'due_date', '2020-08-05', '2020-07-30');
INSERT INTO public.journal_details VALUES (6438, 4822, 'attr', 'start_date', '2020-08-05', '2020-07-30');
INSERT INTO public.journal_details VALUES (6439, 4823, 'attr', 'due_date', '2020-08-05', '2020-07-30');
INSERT INTO public.journal_details VALUES (6440, 4823, 'attr', 'start_date', '2020-08-05', '2020-07-30');
INSERT INTO public.journal_details VALUES (6441, 4824, 'attr', 'due_date', '2020-08-05', '2020-07-30');
INSERT INTO public.journal_details VALUES (6442, 4824, 'attr', 'start_date', '2020-08-05', '2020-07-30');
INSERT INTO public.journal_details VALUES (6443, 4825, 'attr', 'due_date', '2020-07-30', '2020-08-08');
INSERT INTO public.journal_details VALUES (6444, 4825, 'attr', 'start_date', '2020-07-30', '2020-08-08');
INSERT INTO public.journal_details VALUES (6445, 4826, 'attr', 'due_date', '2020-07-30', '2020-08-08');
INSERT INTO public.journal_details VALUES (6446, 4826, 'attr', 'start_date', '2020-07-30', '2020-08-08');
INSERT INTO public.journal_details VALUES (6447, 4827, 'attr', 'due_date', '2020-07-30', '2020-08-08');
INSERT INTO public.journal_details VALUES (6448, 4827, 'attr', 'start_date', '2020-07-30', '2020-08-08');
INSERT INTO public.journal_details VALUES (6449, 4828, 'attr', 'due_date', '2020-08-04', '2020-08-05');
INSERT INTO public.journal_details VALUES (6450, 4828, 'attr', 'start_date', '2020-08-04', '2020-08-05');
INSERT INTO public.journal_details VALUES (6451, 4829, 'attr', 'due_date', '2020-08-04', '2020-08-05');
INSERT INTO public.journal_details VALUES (6452, 4829, 'attr', 'start_date', '2020-08-04', '2020-08-05');
INSERT INTO public.journal_details VALUES (6453, 4830, 'attr', 'due_date', '2020-08-04', '2020-08-05');
INSERT INTO public.journal_details VALUES (6454, 4830, 'attr', 'start_date', '2020-08-04', '2020-08-05');
INSERT INTO public.journal_details VALUES (6455, 4831, 'attr', 'parent_id', '1387', '1552');
INSERT INTO public.journal_details VALUES (6460, 4836, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (6461, 4837, 'attr', 'due_date', NULL, '2020-07-27');
INSERT INTO public.journal_details VALUES (6462, 4837, 'attr', 'priority_id', '5', '3');
INSERT INTO public.journal_details VALUES (6463, 4838, 'attr', 'estimated_hours', '36.0', '24.0');
INSERT INTO public.journal_details VALUES (6464, 4839, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6465, 4839, 'attr', 'estimated_hours', NULL, '8.0');
INSERT INTO public.journal_details VALUES (6466, 4840, 'attr', 'estimated_hours', NULL, '40.0');
INSERT INTO public.journal_details VALUES (6467, 4841, 'attr', 'done_ratio', '0', '40');
INSERT INTO public.journal_details VALUES (6468, 4842, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6469, 4843, 'attr', 'due_date', '2020-07-22', '2020-07-27');
INSERT INTO public.journal_details VALUES (6470, 4843, 'attr', 'start_date', '2020-07-22', '2020-07-27');
INSERT INTO public.journal_details VALUES (6471, 4843, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6472, 4844, 'attr', 'assigned_to_id', '17', '15');
INSERT INTO public.journal_details VALUES (6473, 4845, 'attr', 'assigned_to_id', '17', '15');
INSERT INTO public.journal_details VALUES (6474, 4846, 'attr', 'assigned_to_id', '17', '15');
INSERT INTO public.journal_details VALUES (6477, 4849, 'attr', 'due_date', NULL, '2020-07-31');
INSERT INTO public.journal_details VALUES (6478, 4850, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (6479, 4851, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (6480, 4853, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (6481, 4854, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (6482, 4855, 'attr', 'parent_id', '1618', NULL);
INSERT INTO public.journal_details VALUES (6483, 4856, 'attr', 'parent_id', '1618', NULL);
INSERT INTO public.journal_details VALUES (6484, 4857, 'attr', 'status_id', '5', '2');
INSERT INTO public.journal_details VALUES (6485, 4858, 'attr', 'status_id', '5', '2');
INSERT INTO public.journal_details VALUES (6486, 4859, 'attr', 'parent_id', NULL, '1618');
INSERT INTO public.journal_details VALUES (6487, 4860, 'attr', 'parent_id', NULL, '1618');
INSERT INTO public.journal_details VALUES (6488, 4861, 'attr', 'due_date', '2020-08-15', '2020-08-27');
INSERT INTO public.journal_details VALUES (6489, 4861, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (6490, 4861, 'attr', 'start_date', '2020-08-15', '2020-07-27');
INSERT INTO public.journal_details VALUES (6491, 4861, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6492, 4861, 'attr', 'estimated_hours', NULL, '8.0');
INSERT INTO public.journal_details VALUES (6493, 4862, 'attr', 'due_date', '2020-08-27', '2020-07-28');
INSERT INTO public.journal_details VALUES (6494, 4863, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6495, 4864, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6496, 4865, 'attr', 'done_ratio', '100', '70');
INSERT INTO public.journal_details VALUES (6497, 4867, 'attr', 'done_ratio', '70', '90');
INSERT INTO public.journal_details VALUES (6498, 4868, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (6499, 4869, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (6500, 4870, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (6501, 4871, 'attr', 'parent_id', '1387', '1637');
INSERT INTO public.journal_details VALUES (6502, 4872, 'attr', 'parent_id', '1387', '1637');
INSERT INTO public.journal_details VALUES (6503, 4873, 'attr', 'parent_id', '1387', '1637');
INSERT INTO public.journal_details VALUES (6504, 4874, 'attr', 'subject', 'Api trạng thái quan trắc nước thải', 'Api quan trắc nước thải');
INSERT INTO public.journal_details VALUES (6505, 4875, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (6506, 4875, 'attr', 'parent_id', NULL, '1387');
INSERT INTO public.journal_details VALUES (6606, 4960, 'attr', 'parent_id', '1637', NULL);
INSERT INTO public.journal_details VALUES (6507, 4876, 'attr', 'subject', 'Api trạng thái quan trắc nước mặt', 'Api quan trắc nước mặt');
INSERT INTO public.journal_details VALUES (6508, 4877, 'attr', 'subject', 'Api số liệu quan trắc không khí 24h(dashboard)', 'Api số liệu quan trắc không khí 24h');
INSERT INTO public.journal_details VALUES (6509, 4878, 'attr', 'subject', 'Api số liệu quan trắc không khí 30 ngày(dashboard)', 'Api số liệu quan trắc không khí 30 ngày');
INSERT INTO public.journal_details VALUES (6510, 4880, 'attr', 'parent_id', '1047', '1387');
INSERT INTO public.journal_details VALUES (6511, 4881, 'attr', 'parent_id', '1047', '1387');
INSERT INTO public.journal_details VALUES (6512, 4882, 'attr', 'parent_id', NULL, '1387');
INSERT INTO public.journal_details VALUES (6513, 4883, 'attr', 'subject', 'Api', 'Api - Backend');
INSERT INTO public.journal_details VALUES (6514, 4884, 'attr', 'description', 'Lọc theo:

Mã bảng điện tử

Tên

Quận/Huyện/TP', 'Lọc theo:

Mã bảng điện tử

Tên

Quận/Huyện/TP

Hiển thị ra danh sách bảng bên trái, bên phải là bản đồ

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

Bấm vào 1 bảng => hiển thị danh sách thông số, kèm giá trị, xem nội dung task

https://redmine.gdtvietnam.com/issues/1641

Cho thêm/xóa sửa thông số');
INSERT INTO public.journal_details VALUES (6515, 4886, 'attr', 'parent_id', '1049', '1600');
INSERT INTO public.journal_details VALUES (6516, 4887, 'attr', 'parent_id', '1049', '1600');
INSERT INTO public.journal_details VALUES (6517, 4888, 'attr', 'subject', 'Hiển thị camera của các trạm quan trắc', 'Hiển thị camera của các trạm quan trắc dashboard');
INSERT INTO public.journal_details VALUES (6518, 4888, 'attr', 'parent_id', '1049', '1601');
INSERT INTO public.journal_details VALUES (6519, 4889, 'attr', 'parent_id', NULL, '1048');
INSERT INTO public.journal_details VALUES (6520, 4890, 'attr', 'assigned_to_id', '24', '5');
INSERT INTO public.journal_details VALUES (6521, 4891, 'attr', 'assigned_to_id', '24', '5');
INSERT INTO public.journal_details VALUES (6522, 4892, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (6523, 4893, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6524, 4894, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6525, 4895, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6526, 4896, 'attr', 'subject', 'Lọc theo trạm quan trắc', 'Tree group trạm quan trắc');
INSERT INTO public.journal_details VALUES (6527, 4896, 'attr', 'description', '', 'Lọc mã trạm, tên trạm
Group theo loại môi trường');
INSERT INTO public.journal_details VALUES (6528, 4896, 'attr', 'due_date', NULL, '2020-07-25');
INSERT INTO public.journal_details VALUES (6529, 4897, 'attr', 'due_date', '2020-07-30', '2020-07-28');
INSERT INTO public.journal_details VALUES (6530, 4897, 'attr', 'start_date', '2020-07-29', '2020-07-27');
INSERT INTO public.journal_details VALUES (6531, 4898, 'attr', 'subject', 'API chất lượng không khí theo giờ', 'API VN_AQI Giờ giá trị cuối');
INSERT INTO public.journal_details VALUES (6532, 4899, 'attr', 'subject', 'API chất lượng không khí theo ngày', 'API VN_AQI ngày hôm qua');
INSERT INTO public.journal_details VALUES (6533, 4900, 'attr', 'done_ratio', '0', '40');
INSERT INTO public.journal_details VALUES (6534, 4901, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (6535, 4902, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (6536, 4902, 'attr', 'start_date', '2020-07-28', '2020-08-03');
INSERT INTO public.journal_details VALUES (6537, 4903, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (6538, 4903, 'attr', 'start_date', '2020-07-28', '2020-08-03');
INSERT INTO public.journal_details VALUES (6539, 4904, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (6540, 4904, 'attr', 'start_date', '2020-07-28', '2020-08-03');
INSERT INTO public.journal_details VALUES (6541, 4905, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (6542, 4905, 'attr', 'start_date', '2020-07-28', '2020-08-03');
INSERT INTO public.journal_details VALUES (6543, 4906, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (6544, 4906, 'attr', 'start_date', '2020-07-28', '2020-08-03');
INSERT INTO public.journal_details VALUES (6545, 4907, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (6546, 4907, 'attr', 'start_date', '2020-07-28', '2020-08-03');
INSERT INTO public.journal_details VALUES (6547, 4908, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (6548, 4908, 'attr', 'start_date', '2020-07-28', '2020-08-03');
INSERT INTO public.journal_details VALUES (6549, 4909, 'attr', 'due_date', '2020-07-25', '2020-08-03');
INSERT INTO public.journal_details VALUES (6550, 4909, 'attr', 'start_date', '2020-07-25', '2020-08-03');
INSERT INTO public.journal_details VALUES (6551, 4910, 'attr', 'due_date', '2020-07-25', '2020-08-03');
INSERT INTO public.journal_details VALUES (6552, 4910, 'attr', 'start_date', '2020-07-25', '2020-08-03');
INSERT INTO public.journal_details VALUES (6553, 4911, 'attr', 'due_date', '2020-08-01', '2020-08-03');
INSERT INTO public.journal_details VALUES (6554, 4911, 'attr', 'start_date', '2020-07-31', '2020-08-03');
INSERT INTO public.journal_details VALUES (6555, 4912, 'attr', 'due_date', '2020-08-01', '2020-08-03');
INSERT INTO public.journal_details VALUES (6556, 4912, 'attr', 'start_date', '2020-07-31', '2020-08-03');
INSERT INTO public.journal_details VALUES (6557, 4913, 'attr', 'assigned_to_id', '8', '19');
INSERT INTO public.journal_details VALUES (6558, 4914, 'attr', 'assigned_to_id', '8', '19');
INSERT INTO public.journal_details VALUES (6559, 4915, 'attr', 'assigned_to_id', '8', '19');
INSERT INTO public.journal_details VALUES (6560, 4916, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6561, 4917, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6562, 4918, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6563, 4919, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6564, 4920, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6565, 4921, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6566, 4922, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6567, 4923, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6568, 4924, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6569, 4925, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6570, 4926, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6571, 4927, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6572, 4928, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6573, 4929, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6574, 4930, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6575, 4931, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6576, 4932, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6577, 4933, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6578, 4934, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6579, 4935, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6580, 4936, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6581, 4937, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6583, 4939, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6584, 4940, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6585, 4941, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6586, 4942, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6587, 4943, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6588, 4944, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6589, 4945, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6590, 4946, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6591, 4947, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6592, 4948, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6593, 4949, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6594, 4950, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6595, 4951, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6596, 4952, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6597, 4953, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6598, 4954, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6599, 4955, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6600, 4956, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6601, 4957, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6602, 4958, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6603, 4959, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6604, 4960, 'attr', 'subject', 'Api quan trắc không khí', 'Dashboard quan trắc không khí');
INSERT INTO public.journal_details VALUES (6607, 4961, 'attr', 'subject', 'Api quan trắc nước mặt', 'Dashboard quan trắc nước mặt');
INSERT INTO public.journal_details VALUES (6608, 4961, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6609, 4961, 'attr', 'parent_id', '1637', NULL);
INSERT INTO public.journal_details VALUES (6610, 4962, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6611, 4963, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6612, 4964, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6613, 4965, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6614, 4966, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6615, 4967, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6616, 4968, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6617, 4969, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6618, 4969, 'attr', 'parent_id', '1387', NULL);
INSERT INTO public.journal_details VALUES (6619, 4970, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6620, 4970, 'attr', 'parent_id', '1387', NULL);
INSERT INTO public.journal_details VALUES (6623, 4972, 'attr', 'subject', 'Api quan trắc nước thải', 'Dashboard quan trắc nước thải');
INSERT INTO public.journal_details VALUES (6624, 4972, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6625, 4972, 'attr', 'parent_id', '1637', NULL);
INSERT INTO public.journal_details VALUES (6626, 4973, 'attr', 'due_date', NULL, '2020-07-29');
INSERT INTO public.journal_details VALUES (6627, 4973, 'attr', 'assigned_to_id', '19', '5');
INSERT INTO public.journal_details VALUES (6628, 4973, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6629, 4973, 'attr', 'start_date', '2020-07-26', '2020-07-29');
INSERT INTO public.journal_details VALUES (6630, 4974, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6631, 4975, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6632, 4976, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6633, 4977, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6634, 4978, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6635, 4979, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6636, 4980, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6637, 4981, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6638, 4982, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6640, 4984, 'attr', 'fixed_version_id', NULL, '1');
INSERT INTO public.journal_details VALUES (6641, 4985, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6642, 4986, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6643, 4987, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6644, 4988, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6645, 4989, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6646, 4990, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6647, 4991, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6648, 4992, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6651, 4994, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6652, 4994, 'attr', 'parent_id', '1048', NULL);
INSERT INTO public.journal_details VALUES (6658, 5000, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6659, 5001, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6660, 5002, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6661, 5003, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6662, 5004, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6663, 5005, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6664, 5006, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6665, 5007, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6666, 5008, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6668, 5010, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6669, 5011, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6670, 5012, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6671, 5013, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (6673, 5015, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6674, 5016, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6675, 5017, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6676, 5018, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6677, 5019, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6678, 5020, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6679, 5021, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6680, 5022, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6681, 5023, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6682, 5024, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6683, 5025, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6684, 5026, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6685, 5027, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6686, 5028, 'attr', 'parent_id', '1618', '1047');
INSERT INTO public.journal_details VALUES (6687, 5029, 'attr', 'parent_id', '1618', '1047');
INSERT INTO public.journal_details VALUES (6688, 5030, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (6689, 5031, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (6690, 5032, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (6691, 5033, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (6692, 5034, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (6693, 5035, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (6694, 5036, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (6695, 5037, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (6702, 5044, 'attr', 'parent_id', '1048', NULL);
INSERT INTO public.journal_details VALUES (6703, 5045, 'attr', 'parent_id', '1048', NULL);
INSERT INTO public.journal_details VALUES (6704, 5046, 'attr', 'subject', 'Hiển thị bản đồ nền', 'Geo server + openlayers + tích hợp react');
INSERT INTO public.journal_details VALUES (6705, 5047, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (6706, 5048, 'attr', 'due_date', '2020-08-06', '2020-09-05');
INSERT INTO public.journal_details VALUES (6707, 5048, 'attr', 'start_date', '2020-07-31', '2020-08-31');
INSERT INTO public.journal_details VALUES (6708, 5049, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (6709, 5050, 'attr', 'due_date', '2020-08-08', '2020-09-05');
INSERT INTO public.journal_details VALUES (6710, 5050, 'attr', 'start_date', '2020-08-05', '2020-09-01');
INSERT INTO public.journal_details VALUES (6711, 5051, 'attr', 'due_date', '2020-08-08', '2020-09-05');
INSERT INTO public.journal_details VALUES (6712, 5051, 'attr', 'start_date', '2020-08-05', '2020-09-01');
INSERT INTO public.journal_details VALUES (6713, 5052, 'attr', 'due_date', '2020-08-08', '2020-09-05');
INSERT INTO public.journal_details VALUES (6714, 5052, 'attr', 'start_date', '2020-08-05', '2020-09-01');
INSERT INTO public.journal_details VALUES (6715, 5053, 'attr', 'due_date', '2020-08-08', '2020-09-05');
INSERT INTO public.journal_details VALUES (6716, 5053, 'attr', 'start_date', '2020-08-05', '2020-09-01');
INSERT INTO public.journal_details VALUES (6717, 5054, 'attr', 'due_date', '2020-08-08', '2020-09-05');
INSERT INTO public.journal_details VALUES (6718, 5054, 'attr', 'start_date', '2020-08-05', '2020-09-01');
INSERT INTO public.journal_details VALUES (6719, 5055, 'attr', 'due_date', '2020-08-08', '2020-09-05');
INSERT INTO public.journal_details VALUES (6720, 5055, 'attr', 'start_date', '2020-08-05', '2020-09-01');
INSERT INTO public.journal_details VALUES (6721, 5056, 'attr', 'due_date', '2020-08-08', '2020-09-05');
INSERT INTO public.journal_details VALUES (6722, 5056, 'attr', 'start_date', '2020-08-05', '2020-09-01');
INSERT INTO public.journal_details VALUES (6723, 5057, 'attr', 'due_date', '2020-08-08', '2020-09-05');
INSERT INTO public.journal_details VALUES (6724, 5057, 'attr', 'start_date', '2020-08-05', '2020-09-01');
INSERT INTO public.journal_details VALUES (6725, 5058, 'attr', 'due_date', '2020-08-08', '2020-09-05');
INSERT INTO public.journal_details VALUES (6726, 5058, 'attr', 'start_date', '2020-08-05', '2020-09-01');
INSERT INTO public.journal_details VALUES (6727, 5059, 'attr', 'due_date', '2020-08-08', '2020-09-05');
INSERT INTO public.journal_details VALUES (6728, 5059, 'attr', 'start_date', '2020-08-05', '2020-09-01');
INSERT INTO public.journal_details VALUES (6729, 5060, 'attr', 'due_date', '2020-08-08', '2020-09-05');
INSERT INTO public.journal_details VALUES (6730, 5060, 'attr', 'start_date', '2020-08-05', '2020-09-01');
INSERT INTO public.journal_details VALUES (6731, 5061, 'attr', 'due_date', '2020-08-08', '2020-09-05');
INSERT INTO public.journal_details VALUES (6732, 5061, 'attr', 'start_date', '2020-08-05', '2020-09-01');
INSERT INTO public.journal_details VALUES (6733, 5062, 'attr', 'due_date', '2020-08-08', '2020-09-05');
INSERT INTO public.journal_details VALUES (6734, 5062, 'attr', 'start_date', '2020-08-05', '2020-09-01');
INSERT INTO public.journal_details VALUES (6735, 5063, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6736, 5064, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (6739, 5066, 'attr', 'start_date', '2020-07-27', '2020-07-29');
INSERT INTO public.journal_details VALUES (6740, 5067, 'attr', 'due_date', '2020-07-31', '2020-07-30');
INSERT INTO public.journal_details VALUES (6741, 5067, 'attr', 'start_date', '2020-07-27', '2020-07-30');
INSERT INTO public.journal_details VALUES (6742, 5068, 'attr', 'due_date', '2020-08-01', '2020-07-31');
INSERT INTO public.journal_details VALUES (6743, 5068, 'attr', 'start_date', '2020-07-30', '2020-07-31');
INSERT INTO public.journal_details VALUES (6744, 5069, 'attr', 'due_date', '2020-08-03', '2020-08-01');
INSERT INTO public.journal_details VALUES (6745, 5069, 'attr', 'start_date', '2020-08-03', '2020-08-01');
INSERT INTO public.journal_details VALUES (6746, 5070, 'attr', 'due_date', '2020-08-06', '2020-08-04');
INSERT INTO public.journal_details VALUES (6747, 5070, 'attr', 'start_date', '2020-08-04', '2020-08-03');
INSERT INTO public.journal_details VALUES (6752, 5073, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6753, 5074, 'attr', 'fixed_version_id', '3', '5');
INSERT INTO public.journal_details VALUES (6754, 5075, 'attr', 'fixed_version_id', '3', '5');
INSERT INTO public.journal_details VALUES (6755, 5076, 'attr', 'fixed_version_id', '3', '5');
INSERT INTO public.journal_details VALUES (6756, 5077, 'attr', 'fixed_version_id', '3', '5');
INSERT INTO public.journal_details VALUES (6757, 5078, 'attr', 'fixed_version_id', '3', '5');
INSERT INTO public.journal_details VALUES (6758, 5079, 'attr', 'fixed_version_id', '3', '5');
INSERT INTO public.journal_details VALUES (6759, 5080, 'attr', 'fixed_version_id', '3', '5');
INSERT INTO public.journal_details VALUES (6760, 5081, 'attr', 'fixed_version_id', '3', '5');
INSERT INTO public.journal_details VALUES (6761, 5082, 'attr', 'fixed_version_id', '3', '5');
INSERT INTO public.journal_details VALUES (6762, 5083, 'attr', 'fixed_version_id', '3', '5');
INSERT INTO public.journal_details VALUES (6763, 5084, 'attr', 'fixed_version_id', '3', '5');
INSERT INTO public.journal_details VALUES (6764, 5085, 'attr', 'fixed_version_id', '3', '5');
INSERT INTO public.journal_details VALUES (6765, 5086, 'attr', 'fixed_version_id', '3', '5');
INSERT INTO public.journal_details VALUES (6766, 5087, 'attr', 'fixed_version_id', '3', '5');
INSERT INTO public.journal_details VALUES (6767, 5088, 'attr', 'fixed_version_id', '3', '5');
INSERT INTO public.journal_details VALUES (6768, 5089, 'attr', 'fixed_version_id', '3', '5');
INSERT INTO public.journal_details VALUES (6769, 5090, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (6770, 5091, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (6771, 5092, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (6772, 5093, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (6773, 5094, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (6774, 5095, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (6775, 5096, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (6776, 5097, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (6777, 5098, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (6779, 5100, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (6780, 5101, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (6781, 5102, 'attr', 'due_date', NULL, '2020-08-25');
INSERT INTO public.journal_details VALUES (6782, 5102, 'attr', 'start_date', '2020-07-26', '2020-08-24');
INSERT INTO public.journal_details VALUES (6783, 5103, 'attr', 'due_date', NULL, '2020-08-25');
INSERT INTO public.journal_details VALUES (6784, 5103, 'attr', 'start_date', '2020-07-26', '2020-08-24');
INSERT INTO public.journal_details VALUES (6785, 5104, 'attr', 'due_date', '2020-09-05', '2020-08-27');
INSERT INTO public.journal_details VALUES (6786, 5104, 'attr', 'start_date', '2020-08-31', '2020-08-26');
INSERT INTO public.journal_details VALUES (6787, 5105, 'attr', 'due_date', '2020-09-05', '2020-08-25');
INSERT INTO public.journal_details VALUES (6788, 5105, 'attr', 'start_date', '2020-08-31', '2020-08-24');
INSERT INTO public.journal_details VALUES (6789, 5106, 'attr', 'due_date', '2020-09-05', '2020-08-27');
INSERT INTO public.journal_details VALUES (6790, 5106, 'attr', 'start_date', '2020-08-31', '2020-08-26');
INSERT INTO public.journal_details VALUES (6791, 5107, 'attr', 'due_date', '2020-09-05', '2020-08-27');
INSERT INTO public.journal_details VALUES (6792, 5107, 'attr', 'start_date', '2020-08-31', '2020-08-26');
INSERT INTO public.journal_details VALUES (6793, 5108, 'attr', 'parent_id', '1620', '1600');
INSERT INTO public.journal_details VALUES (6794, 5109, 'attr', 'parent_id', '1620', '1600');
INSERT INTO public.journal_details VALUES (6795, 5110, 'attr', 'due_date', '2020-08-03', '2020-08-24');
INSERT INTO public.journal_details VALUES (6796, 5110, 'attr', 'start_date', '2020-08-03', '2020-08-24');
INSERT INTO public.journal_details VALUES (6797, 5111, 'attr', 'due_date', '2020-08-03', '2020-08-24');
INSERT INTO public.journal_details VALUES (6798, 5111, 'attr', 'start_date', '2020-08-03', '2020-08-24');
INSERT INTO public.journal_details VALUES (6799, 5112, 'attr', 'due_date', '2020-08-05', '2020-08-24');
INSERT INTO public.journal_details VALUES (6800, 5112, 'attr', 'start_date', '2020-08-03', '2020-08-24');
INSERT INTO public.journal_details VALUES (6801, 5113, 'attr', 'due_date', '2020-08-03', '2020-08-24');
INSERT INTO public.journal_details VALUES (6802, 5113, 'attr', 'start_date', '2020-08-03', '2020-08-24');
INSERT INTO public.journal_details VALUES (6803, 5114, 'attr', 'due_date', '2020-08-03', '2020-08-24');
INSERT INTO public.journal_details VALUES (6804, 5114, 'attr', 'start_date', '2020-08-03', '2020-08-24');
INSERT INTO public.journal_details VALUES (6805, 5115, 'attr', 'due_date', '2020-08-24', '2020-08-26');
INSERT INTO public.journal_details VALUES (6806, 5115, 'attr', 'start_date', '2020-08-24', '2020-08-26');
INSERT INTO public.journal_details VALUES (6807, 5116, 'attr', 'due_date', '2020-08-24', '2020-08-26');
INSERT INTO public.journal_details VALUES (6808, 5116, 'attr', 'start_date', '2020-08-24', '2020-08-26');
INSERT INTO public.journal_details VALUES (6809, 5117, 'attr', 'due_date', '2020-08-24', '2020-08-26');
INSERT INTO public.journal_details VALUES (6810, 5117, 'attr', 'start_date', '2020-08-24', '2020-08-26');
INSERT INTO public.journal_details VALUES (6811, 5118, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (6812, 5118, 'attr', 'estimated_hours', NULL, '24.0');
INSERT INTO public.journal_details VALUES (6813, 5119, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6814, 5120, 'attr', 'done_ratio', '100', '90');
INSERT INTO public.journal_details VALUES (6815, 5121, 'attr', 'done_ratio', '100', '90');
INSERT INTO public.journal_details VALUES (6816, 5122, 'attr', 'done_ratio', '100', '90');
INSERT INTO public.journal_details VALUES (6817, 5123, 'attr', 'tracker_id', '5', '1');
INSERT INTO public.journal_details VALUES (6818, 5124, 'attr', 'tracker_id', '1', '5');
INSERT INTO public.journal_details VALUES (6819, 5125, 'attr', 'tracker_id', '5', '4');
INSERT INTO public.journal_details VALUES (6820, 5126, 'attr', 'tracker_id', '4', '5');
INSERT INTO public.journal_details VALUES (6821, 5127, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6822, 5127, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (6823, 5127, 'attr', 'estimated_hours', NULL, '2.0');
INSERT INTO public.journal_details VALUES (6824, 5128, 'attr', 'due_date', '2020-08-11', '2020-08-29');
INSERT INTO public.journal_details VALUES (6825, 5128, 'attr', 'start_date', '2020-08-10', '2020-08-28');
INSERT INTO public.journal_details VALUES (6826, 5129, 'attr', 'due_date', '2020-08-13', '2020-08-29');
INSERT INTO public.journal_details VALUES (6827, 5129, 'attr', 'start_date', '2020-08-12', '2020-08-28');
INSERT INTO public.journal_details VALUES (6828, 5130, 'attr', 'due_date', '2020-08-15', '2020-08-29');
INSERT INTO public.journal_details VALUES (6829, 5130, 'attr', 'start_date', '2020-08-14', '2020-08-28');
INSERT INTO public.journal_details VALUES (6830, 5131, 'attr', 'due_date', '2020-08-18', '2020-08-29');
INSERT INTO public.journal_details VALUES (6831, 5131, 'attr', 'start_date', '2020-08-17', '2020-08-28');
INSERT INTO public.journal_details VALUES (6832, 5132, 'attr', 'due_date', '2020-08-20', '2020-08-29');
INSERT INTO public.journal_details VALUES (6833, 5132, 'attr', 'start_date', '2020-08-19', '2020-08-28');
INSERT INTO public.journal_details VALUES (6834, 5133, 'attr', 'due_date', '2020-08-22', '2020-08-29');
INSERT INTO public.journal_details VALUES (6835, 5133, 'attr', 'start_date', '2020-08-21', '2020-08-28');
INSERT INTO public.journal_details VALUES (6836, 5134, 'attr', 'due_date', '2020-08-25', '2020-08-29');
INSERT INTO public.journal_details VALUES (6837, 5134, 'attr', 'start_date', '2020-08-24', '2020-08-28');
INSERT INTO public.journal_details VALUES (6838, 5135, 'attr', 'due_date', '2020-08-27', '2020-08-29');
INSERT INTO public.journal_details VALUES (6839, 5135, 'attr', 'start_date', '2020-08-26', '2020-08-28');
INSERT INTO public.journal_details VALUES (6840, 5136, 'attr', 'due_date', '2020-08-29', '2020-09-01');
INSERT INTO public.journal_details VALUES (6841, 5136, 'attr', 'start_date', '2020-08-28', '2020-08-31');
INSERT INTO public.journal_details VALUES (6842, 5137, 'attr', 'due_date', '2020-08-29', '2020-09-01');
INSERT INTO public.journal_details VALUES (6843, 5137, 'attr', 'start_date', '2020-08-28', '2020-08-31');
INSERT INTO public.journal_details VALUES (6844, 5138, 'attr', 'due_date', '2020-08-29', '2020-09-02');
INSERT INTO public.journal_details VALUES (6845, 5138, 'attr', 'start_date', '2020-08-28', '2020-09-02');
INSERT INTO public.journal_details VALUES (6846, 5139, 'attr', 'due_date', '2020-08-29', '2020-09-02');
INSERT INTO public.journal_details VALUES (6847, 5139, 'attr', 'start_date', '2020-08-28', '2020-09-02');
INSERT INTO public.journal_details VALUES (6848, 5140, 'attr', 'due_date', '2020-09-02', '2020-09-03');
INSERT INTO public.journal_details VALUES (6849, 5140, 'attr', 'start_date', '2020-09-02', '2020-09-03');
INSERT INTO public.journal_details VALUES (6850, 5141, 'attr', 'due_date', '2020-09-02', '2020-09-03');
INSERT INTO public.journal_details VALUES (6851, 5141, 'attr', 'start_date', '2020-09-02', '2020-09-03');
INSERT INTO public.journal_details VALUES (6852, 5142, 'attr', 'due_date', '2020-08-29', '2020-09-04');
INSERT INTO public.journal_details VALUES (6853, 5142, 'attr', 'start_date', '2020-08-28', '2020-09-04');
INSERT INTO public.journal_details VALUES (6854, 5143, 'attr', 'due_date', '2020-08-29', '2020-09-04');
INSERT INTO public.journal_details VALUES (6855, 5143, 'attr', 'start_date', '2020-08-28', '2020-09-04');
INSERT INTO public.journal_details VALUES (6856, 5144, 'attr', 'due_date', '2020-08-26', '2020-08-27');
INSERT INTO public.journal_details VALUES (6857, 5144, 'attr', 'start_date', '2020-08-26', '2020-08-27');
INSERT INTO public.journal_details VALUES (6858, 5145, 'attr', 'due_date', '2020-08-29', '2020-08-31');
INSERT INTO public.journal_details VALUES (6859, 5145, 'attr', 'start_date', '2020-08-28', '2020-08-31');
INSERT INTO public.journal_details VALUES (6860, 5146, 'attr', 'due_date', '2020-08-29', '2020-08-31');
INSERT INTO public.journal_details VALUES (6861, 5146, 'attr', 'start_date', '2020-08-28', '2020-08-31');
INSERT INTO public.journal_details VALUES (6862, 5147, 'attr', 'start_date', '2020-08-31', '2020-09-01');
INSERT INTO public.journal_details VALUES (6863, 5148, 'attr', 'start_date', '2020-08-31', '2020-09-01');
INSERT INTO public.journal_details VALUES (6864, 5149, 'attr', 'due_date', '2020-08-25', '2020-08-24');
INSERT INTO public.journal_details VALUES (6865, 5150, 'attr', 'due_date', '2020-08-27', '2020-08-25');
INSERT INTO public.journal_details VALUES (6866, 5150, 'attr', 'start_date', '2020-08-26', '2020-08-25');
INSERT INTO public.journal_details VALUES (6867, 5151, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (6868, 5152, 'attr', 'done_ratio', '100', '90');
INSERT INTO public.journal_details VALUES (6869, 5153, 'attr', 'due_date', '2020-08-27', '2020-08-29');
INSERT INTO public.journal_details VALUES (6870, 5153, 'attr', 'start_date', '2020-08-27', '2020-08-29');
INSERT INTO public.journal_details VALUES (6871, 5154, 'attr', 'due_date', '2020-08-26', '2020-08-28');
INSERT INTO public.journal_details VALUES (6872, 5154, 'attr', 'start_date', '2020-08-26', '2020-08-28');
INSERT INTO public.journal_details VALUES (6873, 5155, 'attr', 'due_date', '2020-08-26', '2020-08-28');
INSERT INTO public.journal_details VALUES (6874, 5155, 'attr', 'start_date', '2020-08-26', '2020-08-28');
INSERT INTO public.journal_details VALUES (6875, 5156, 'attr', 'due_date', '2020-08-24', '2020-08-27');
INSERT INTO public.journal_details VALUES (6876, 5156, 'attr', 'start_date', '2020-08-24', '2020-08-26');
INSERT INTO public.journal_details VALUES (6877, 5157, 'attr', 'due_date', '2020-08-24', '2020-08-27');
INSERT INTO public.journal_details VALUES (6878, 5157, 'attr', 'start_date', '2020-08-24', '2020-08-26');
INSERT INTO public.journal_details VALUES (6879, 5158, 'attr', 'due_date', '2020-08-08', '2020-08-28');
INSERT INTO public.journal_details VALUES (6880, 5158, 'attr', 'start_date', '2020-08-03', '2020-08-28');
INSERT INTO public.journal_details VALUES (6881, 5159, 'attr', 'due_date', '2020-08-08', '2020-08-28');
INSERT INTO public.journal_details VALUES (6882, 5159, 'attr', 'start_date', '2020-08-03', '2020-08-28');
INSERT INTO public.journal_details VALUES (6892, 5165, 'attr', 'due_date', '2020-08-29', '2020-08-19');
INSERT INTO public.journal_details VALUES (6893, 5165, 'attr', 'start_date', '2020-08-28', '2020-08-17');
INSERT INTO public.journal_details VALUES (6894, 5166, 'attr', 'due_date', '2020-08-12', '2020-08-15');
INSERT INTO public.journal_details VALUES (6895, 5166, 'attr', 'start_date', '2020-08-07', '2020-08-10');
INSERT INTO public.journal_details VALUES (6896, 5167, 'attr', 'due_date', '2020-08-17', '2020-08-22');
INSERT INTO public.journal_details VALUES (6897, 5167, 'attr', 'start_date', '2020-08-12', '2020-08-17');
INSERT INTO public.journal_details VALUES (6898, 5168, 'attr', 'due_date', '2020-08-13', '2020-09-12');
INSERT INTO public.journal_details VALUES (6899, 5168, 'attr', 'start_date', '2020-08-12', '2020-09-07');
INSERT INTO public.journal_details VALUES (6900, 5169, 'attr', 'due_date', '2020-08-03', '2020-08-27');
INSERT INTO public.journal_details VALUES (6901, 5169, 'attr', 'start_date', '2020-08-03', '2020-08-26');
INSERT INTO public.journal_details VALUES (6902, 5170, 'attr', 'due_date', '2020-08-03', '2020-08-27');
INSERT INTO public.journal_details VALUES (6903, 5170, 'attr', 'start_date', '2020-08-03', '2020-08-26');
INSERT INTO public.journal_details VALUES (6904, 5171, 'attr', 'fixed_version_id', '5', '4');
INSERT INTO public.journal_details VALUES (6905, 5172, 'attr', 'fixed_version_id', '5', '4');
INSERT INTO public.journal_details VALUES (6906, 5173, 'attr', 'fixed_version_id', '5', '4');
INSERT INTO public.journal_details VALUES (6907, 5174, 'attr', 'fixed_version_id', '5', '4');
INSERT INTO public.journal_details VALUES (6908, 5175, 'attr', 'fixed_version_id', '5', '4');
INSERT INTO public.journal_details VALUES (6909, 5176, 'attr', 'fixed_version_id', '5', '4');
INSERT INTO public.journal_details VALUES (6910, 5177, 'attr', 'fixed_version_id', '5', '4');
INSERT INTO public.journal_details VALUES (6911, 5178, 'attr', 'fixed_version_id', '5', '4');
INSERT INTO public.journal_details VALUES (6912, 5179, 'attr', 'fixed_version_id', '5', '4');
INSERT INTO public.journal_details VALUES (6913, 5180, 'attr', 'fixed_version_id', '5', '4');
INSERT INTO public.journal_details VALUES (6914, 5181, 'attr', 'fixed_version_id', '5', '4');
INSERT INTO public.journal_details VALUES (6915, 5182, 'attr', 'fixed_version_id', '5', '4');
INSERT INTO public.journal_details VALUES (6916, 5183, 'attr', 'fixed_version_id', '5', '4');
INSERT INTO public.journal_details VALUES (6917, 5184, 'attr', 'fixed_version_id', '5', '4');
INSERT INTO public.journal_details VALUES (6918, 5185, 'attr', 'fixed_version_id', '5', '4');
INSERT INTO public.journal_details VALUES (6919, 5186, 'attr', 'fixed_version_id', '5', '4');
INSERT INTO public.journal_details VALUES (6920, 5187, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6921, 5188, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6922, 5189, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6923, 5190, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6924, 5191, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (6925, 5192, 'attr', 'due_date', '2020-07-22', '2020-07-30');
INSERT INTO public.journal_details VALUES (6926, 5192, 'attr', 'start_date', '2020-07-22', '2020-07-30');
INSERT INTO public.journal_details VALUES (6927, 5193, 'attr', 'due_date', '2020-07-22', '2020-07-29');
INSERT INTO public.journal_details VALUES (6928, 5193, 'attr', 'start_date', '2020-07-22', '2020-07-29');
INSERT INTO public.journal_details VALUES (6929, 5194, 'attr', 'due_date', '2020-07-27', '2020-07-29');
INSERT INTO public.journal_details VALUES (6930, 5194, 'attr', 'start_date', '2020-07-27', '2020-07-29');
INSERT INTO public.journal_details VALUES (6931, 5195, 'relation', 'copied_to', NULL, '1659');
INSERT INTO public.journal_details VALUES (6932, 5196, 'relation', 'copied_from', NULL, '1552');
INSERT INTO public.journal_details VALUES (6933, 5197, 'relation', 'copied_to', NULL, '1660');
INSERT INTO public.journal_details VALUES (6934, 5198, 'relation', 'copied_from', NULL, '1559');
INSERT INTO public.journal_details VALUES (6935, 5199, 'relation', 'copied_to', NULL, '1661');
INSERT INTO public.journal_details VALUES (6936, 5200, 'relation', 'copied_from', NULL, '1612');
INSERT INTO public.journal_details VALUES (6937, 5201, 'relation', 'copied_to', NULL, '1662');
INSERT INTO public.journal_details VALUES (6938, 5202, 'relation', 'copied_from', NULL, '1613');
INSERT INTO public.journal_details VALUES (6939, 5203, 'relation', 'copied_to', NULL, '1663');
INSERT INTO public.journal_details VALUES (6940, 5204, 'relation', 'copied_from', NULL, '1614');
INSERT INTO public.journal_details VALUES (6941, 5205, 'relation', 'copied_to', NULL, '1664');
INSERT INTO public.journal_details VALUES (6942, 5206, 'relation', 'copied_from', NULL, '1615');
INSERT INTO public.journal_details VALUES (6943, 5207, 'relation', 'copied_to', NULL, '1665');
INSERT INTO public.journal_details VALUES (6944, 5208, 'relation', 'copied_from', NULL, '1616');
INSERT INTO public.journal_details VALUES (6945, 5209, 'relation', 'copied_to', NULL, '1666');
INSERT INTO public.journal_details VALUES (6946, 5210, 'relation', 'copied_from', NULL, '1617');
INSERT INTO public.journal_details VALUES (6947, 5211, 'attr', 'subject', 'Dashboard quan trắc không khí', 'Api dashboard quan trắc không khí');
INSERT INTO public.journal_details VALUES (6948, 5212, 'attr', 'subject', 'Dashboard quan trắc không khí', 'Giao diện dashboard quan trắc không khí');
INSERT INTO public.journal_details VALUES (6949, 5213, 'attr', 'done_ratio', '90', '0');
INSERT INTO public.journal_details VALUES (6950, 5214, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (6951, 5215, 'attr', 'subject', 'Api số liệu quan trắc không khí 24h', 'Giao diện số liệu quan trắc không khí 24h');
INSERT INTO public.journal_details VALUES (6952, 5216, 'attr', 'subject', 'API VN_AQI Giờ giá trị cuối', 'Giao diện VN_AQI Giờ giá trị cuối');
INSERT INTO public.journal_details VALUES (6953, 5217, 'attr', 'subject', 'API VN_AQI ngày hôm qua', 'Giao diện VN_AQI ngày hôm qua');
INSERT INTO public.journal_details VALUES (6954, 5218, 'attr', 'subject', 'API AQI giờ theo từng thông số', 'Giao diện AQI giờ theo từng thông số');
INSERT INTO public.journal_details VALUES (6955, 5219, 'attr', 'subject', 'API AQI Ngày theo từng thông số', 'Giao diện AQI Ngày theo từng thông số');
INSERT INTO public.journal_details VALUES (6956, 5220, 'attr', 'subject', 'Api số liệu quan trắc không khí 30 ngày', 'Giao diện số liệu quan trắc không khí 30 ngày');
INSERT INTO public.journal_details VALUES (6957, 5221, 'attr', 'subject', 'Api quan trắc không khí -Bản đồ', 'Giao diện quan trắc không khí -Bản đồ');
INSERT INTO public.journal_details VALUES (6958, 5222, 'attr', 'assigned_to_id', '19', '8');
INSERT INTO public.journal_details VALUES (6959, 5223, 'attr', 'assigned_to_id', '19', '8');
INSERT INTO public.journal_details VALUES (6960, 5224, 'attr', 'assigned_to_id', '19', '8');
INSERT INTO public.journal_details VALUES (6961, 5225, 'attr', 'assigned_to_id', '19', '8');
INSERT INTO public.journal_details VALUES (6962, 5226, 'attr', 'assigned_to_id', '19', '8');
INSERT INTO public.journal_details VALUES (6963, 5227, 'attr', 'assigned_to_id', '19', '8');
INSERT INTO public.journal_details VALUES (6964, 5228, 'attr', 'assigned_to_id', '19', '8');
INSERT INTO public.journal_details VALUES (6965, 5229, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (6966, 5230, 'attr', 'due_date', NULL, '2020-08-10');
INSERT INTO public.journal_details VALUES (6967, 5230, 'attr', 'start_date', '2020-07-29', '2020-08-10');
INSERT INTO public.journal_details VALUES (6968, 5231, 'attr', 'subject', 'Load thông tin trạm', 'Giao diện');
INSERT INTO public.journal_details VALUES (6969, 5231, 'attr', 'due_date', '2020-08-10', '2020-08-13');
INSERT INTO public.journal_details VALUES (6970, 5232, 'attr', 'parent_id', '1642', '1602');
INSERT INTO public.journal_details VALUES (6971, 5233, 'attr', 'parent_id', '1642', '1602');
INSERT INTO public.journal_details VALUES (6972, 5234, 'attr', 'parent_id', '1642', '1602');
INSERT INTO public.journal_details VALUES (6973, 5235, 'attr', 'subject', 'Liệt kê danh sách các trạm quan trắc vượt ngưỡng theo trạng thái của từng loại thông số của trạm quan trắc', 'Liệt kê các trạm quan trắc vượt ngưỡng');
INSERT INTO public.journal_details VALUES (6974, 5235, 'attr', 'description', '', 'Liệt kê danh sách các trạm quan trắc vượt ngưỡng theo trạng thái của từng loại thông số của trạm quan trắc');
INSERT INTO public.journal_details VALUES (6975, 5236, 'attr', 'due_date', '2020-08-13', '2020-08-18');
INSERT INTO public.journal_details VALUES (6976, 5236, 'attr', 'start_date', '2020-08-10', '2020-08-14');
INSERT INTO public.journal_details VALUES (6977, 5236, 'attr', 'parent_id', '1557', '1554');
INSERT INTO public.journal_details VALUES (6978, 5237, 'attr', 'due_date', '2020-08-13', '2020-08-18');
INSERT INTO public.journal_details VALUES (6979, 5237, 'attr', 'start_date', '2020-08-10', '2020-08-14');
INSERT INTO public.journal_details VALUES (6980, 5237, 'attr', 'parent_id', '1557', '1554');
INSERT INTO public.journal_details VALUES (6981, 5238, 'attr', 'parent_id', NULL, '1557');
INSERT INTO public.journal_details VALUES (6982, 5239, 'attr', 'parent_id', NULL, '1557');
INSERT INTO public.journal_details VALUES (6991, 5245, 'attr', 'start_date', '2020-08-14', '2020-08-17');
INSERT INTO public.journal_details VALUES (6992, 5246, 'attr', 'start_date', '2020-08-14', '2020-08-17');
INSERT INTO public.journal_details VALUES (6993, 5247, 'attr', 'due_date', '2020-08-19', '2020-08-22');
INSERT INTO public.journal_details VALUES (6994, 5247, 'attr', 'start_date', '2020-08-17', '2020-08-20');
INSERT INTO public.journal_details VALUES (6995, 5248, 'attr', 'due_date', '2020-08-18', '2020-08-19');
INSERT INTO public.journal_details VALUES (6996, 5249, 'attr', 'due_date', '2020-08-18', '2020-08-19');
INSERT INTO public.journal_details VALUES (6997, 5250, 'attr', 'due_date', '2020-08-18', '2020-08-15');
INSERT INTO public.journal_details VALUES (6998, 5251, 'attr', 'due_date', '2020-08-18', '2020-08-15');
INSERT INTO public.journal_details VALUES (6999, 5252, 'attr', 'due_date', '2020-08-08', '2020-08-05');
INSERT INTO public.journal_details VALUES (7000, 5253, 'attr', 'due_date', '2020-08-08', '2020-08-05');
INSERT INTO public.journal_details VALUES (7001, 5254, 'attr', 'start_date', '2020-08-03', '2020-08-06');
INSERT INTO public.journal_details VALUES (7002, 5255, 'attr', 'start_date', '2020-08-03', '2020-08-06');
INSERT INTO public.journal_details VALUES (7003, 5256, 'attr', 'start_date', '2020-08-03', '2020-08-06');
INSERT INTO public.journal_details VALUES (7004, 5257, 'attr', 'due_date', '2020-07-31', '2020-07-30');
INSERT INTO public.journal_details VALUES (7005, 5257, 'attr', 'start_date', '2020-07-22', '2020-07-30');
INSERT INTO public.journal_details VALUES (7006, 5258, 'attr', 'due_date', '2020-07-27', '2020-07-30');
INSERT INTO public.journal_details VALUES (7007, 5258, 'attr', 'start_date', '2020-07-27', '2020-07-30');
INSERT INTO public.journal_details VALUES (7008, 5259, 'attr', 'due_date', '2020-07-30', '2020-07-31');
INSERT INTO public.journal_details VALUES (7009, 5259, 'attr', 'start_date', '2020-07-30', '2020-07-31');
INSERT INTO public.journal_details VALUES (7010, 5260, 'attr', 'due_date', '2020-07-29', '2020-07-31');
INSERT INTO public.journal_details VALUES (7011, 5260, 'attr', 'start_date', '2020-07-29', '2020-07-31');
INSERT INTO public.journal_details VALUES (7012, 5261, 'attr', 'due_date', '2020-08-01', '2020-08-03');
INSERT INTO public.journal_details VALUES (7013, 5261, 'attr', 'start_date', '2020-08-01', '2020-08-03');
INSERT INTO public.journal_details VALUES (7014, 5262, 'attr', 'due_date', '2020-07-31', '2020-08-01');
INSERT INTO public.journal_details VALUES (7015, 5263, 'attr', 'due_date', '2020-07-24', '2020-07-29');
INSERT INTO public.journal_details VALUES (7016, 5264, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (7017, 5265, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7018, 5266, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7019, 5267, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7020, 5268, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7021, 5269, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7022, 5270, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (7023, 5270, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7024, 5272, 'attr', 'description', '20/07 Hop 01 - 255 tr
          11 - 209 tr
21/07 Hop 20 - 339 tr
          28 - 60 tr
          33 - 615 tr
22/07 Hop 48 - 38 tr
          49 - 88 tr
          50 - 456 tr
          70 - 145 tr
23/07 Hop 72 - 869 tr
24/07 Hop 82 - 168 tr
         162 - 261 tr
         187 - 538 tr', '20/07 Hop 01 - 255 tr
          11 - 209 tr
21/07 Hop 20 - 339 tr
          28 - 60 tr
          33 - 615 tr
22/07 Hop 48 - 38 tr
          49 - 88 tr
          50 - 456 tr
          70 - 145 tr
23/07 Hop 72 - 869 tr
24/07 Hop 82 - 168 tr
         162 - 261 tr
         187 - 538 tr
27/07 Hop 159 - 840 tr
          214 - 664 tr
28/07 Hop 212 - 1135 tr');
INSERT INTO public.journal_details VALUES (7025, 5272, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (7026, 5273, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7027, 5274, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7028, 5275, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7029, 5276, 'attr', 'assigned_to_id', '32', '23');
INSERT INTO public.journal_details VALUES (7030, 5277, 'attr', 'assigned_to_id', '23', '32');
INSERT INTO public.journal_details VALUES (7031, 5278, 'attr', 'assigned_to_id', '32', '23');
INSERT INTO public.journal_details VALUES (7032, 5279, 'attr', 'assigned_to_id', '23', '32');
INSERT INTO public.journal_details VALUES (7033, 5280, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (7034, 5281, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (7035, 5282, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (7036, 5284, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7037, 5285, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7038, 5286, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7039, 5287, 'attr', 'done_ratio', '60', '100');
INSERT INTO public.journal_details VALUES (7040, 5288, 'attr', 'assigned_to_id', NULL, '31');
INSERT INTO public.journal_details VALUES (7041, 5289, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (7042, 5290, 'attr', 'done_ratio', '100', '80');
INSERT INTO public.journal_details VALUES (7043, 5291, 'attr', 'assigned_to_id', NULL, '28');
INSERT INTO public.journal_details VALUES (7044, 5292, 'attr', 'assigned_to_id', NULL, '30');
INSERT INTO public.journal_details VALUES (7045, 5294, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7046, 5295, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7047, 5296, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7048, 5297, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7049, 5298, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (7050, 5299, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (7051, 5300, 'attr', 'subject', 'Tạo tài liệu cấu trúc database', 'Cập nhật tài liệu cấu trúc database');
INSERT INTO public.journal_details VALUES (7052, 5301, 'attr', 'due_date', NULL, '2020-07-31');
INSERT INTO public.journal_details VALUES (7053, 5302, 'attr', 'due_date', NULL, '2020-07-31');
INSERT INTO public.journal_details VALUES (7054, 5303, 'attr', 'due_date', NULL, '2020-07-31');
INSERT INTO public.journal_details VALUES (7055, 5304, 'attr', 'due_date', NULL, '2020-07-31');
INSERT INTO public.journal_details VALUES (7056, 5305, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7057, 5306, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7058, 5307, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7059, 5308, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7060, 5309, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7061, 5310, 'attr', 'due_date', '2020-07-02', '2020-08-02');
INSERT INTO public.journal_details VALUES (7062, 5310, 'attr', 'start_date', '2020-07-02', '2020-08-02');
INSERT INTO public.journal_details VALUES (7063, 5311, 'attr', 'due_date', '2020-07-02', '2020-08-02');
INSERT INTO public.journal_details VALUES (7064, 5311, 'attr', 'start_date', '2020-07-02', '2020-08-02');
INSERT INTO public.journal_details VALUES (7065, 5312, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7066, 5313, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7067, 5314, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (7068, 5315, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7069, 5316, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7070, 5317, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7071, 5318, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7072, 5319, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (7073, 5320, 'attr', 'subject', 'Trang thông tin người dùng và đổi mật khẩu', 'Trang thông tin người dùng và đổi mật khẩu trang quản trị');
INSERT INTO public.journal_details VALUES (7074, 5321, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (7075, 5322, 'attr', 'subject', 'Báo cáo scan 20-24/7', 'Báo cáo scan 20-31/7');
INSERT INTO public.journal_details VALUES (7076, 5322, 'attr', 'description', 'Hộp 04-178
    05-577
    18-112
    22-34
    23-513
    43-486
    60-607
    79-450
   161-228', 'Hộp 04-178 trang
    05-577 trang
    18-112 trang
    22-34 trang
    23-513 trang
    43-486 trang
    60-607 trang
    79-450 trang
   161-228 trang
Ngày 27/7 Hộp 02 356 trang, Hộp 215 486 trang
Ngày 28/7 Hộp 160 672 trang,Hộp 199 268 trang
Ngày 29/7 Hộp 04 407 trang, Hộp 05 85 trang
Ngày 30/7 Hộp 14 535 trang
Ngày 31/7 Hộp 30 720 trang -> Tổng 6714 trang

');
INSERT INTO public.journal_details VALUES (7077, 5322, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (7078, 5323, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (7079, 5324, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7080, 5324, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (7081, 5325, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7082, 5326, 'attr', 'due_date', '2020-07-30', '2020-08-04');
INSERT INTO public.journal_details VALUES (7083, 5326, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (7084, 5326, 'attr', 'start_date', '2020-07-30', '2020-08-01');
INSERT INTO public.journal_details VALUES (7085, 5326, 'attr', 'estimated_hours', NULL, '24.0');
INSERT INTO public.journal_details VALUES (7086, 5327, 'attr', 'done_ratio', '0', '40');
INSERT INTO public.journal_details VALUES (7087, 5329, 'attr', 'assigned_to_id', NULL, '23');
INSERT INTO public.journal_details VALUES (7088, 5330, 'attachment', '61', NULL, 'QD 1459 TCMT ngay 12.11.2019 AQI.pdf');
INSERT INTO public.journal_details VALUES (7089, 5331, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7090, 5332, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7091, 5333, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7092, 5334, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7093, 5335, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7094, 5336, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7095, 5337, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (7096, 5338, 'attr', 'due_date', '2020-08-11', '2020-08-03');
INSERT INTO public.journal_details VALUES (7097, 5338, 'attr', 'start_date', '2020-08-11', '2020-08-01');
INSERT INTO public.journal_details VALUES (7098, 5339, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7099, 5340, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7100, 5341, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7101, 5342, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7102, 5343, 'attr', 'start_date', '2020-07-24', '2020-07-27');
INSERT INTO public.journal_details VALUES (7103, 5343, 'attr', 'done_ratio', '40', '60');
INSERT INTO public.journal_details VALUES (7104, 5344, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7105, 5345, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7106, 5346, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7107, 5347, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7108, 5348, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7109, 5349, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7110, 5350, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7111, 5351, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7112, 5352, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7113, 5353, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7114, 5354, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7115, 5355, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7116, 5356, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7117, 5357, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7118, 5358, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7119, 5359, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7120, 5360, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7121, 5361, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7122, 5362, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7123, 5363, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7124, 5364, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7125, 5365, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7126, 5366, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7127, 5367, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7128, 5368, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7129, 5369, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7130, 5370, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7131, 5371, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7132, 5372, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7133, 5373, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7134, 5374, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7135, 5375, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7136, 5376, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7137, 5377, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7138, 5378, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7139, 5379, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7140, 5380, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7141, 5381, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7142, 5382, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7143, 5383, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7144, 5384, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7145, 5385, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7146, 5386, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7147, 5387, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7148, 5388, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7149, 5389, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7150, 5390, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7151, 5391, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7152, 5392, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7153, 5393, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7154, 5394, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7155, 5395, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7156, 5396, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7157, 5397, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7158, 5398, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7159, 5399, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7160, 5400, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7161, 5401, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7162, 5402, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7163, 5403, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7164, 5404, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7165, 5405, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7166, 5406, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7167, 5407, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7168, 5408, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7169, 5409, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7171, 5411, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7172, 5412, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7173, 5413, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7174, 5414, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7175, 5415, 'attr', 'project_id', '39', '4');
INSERT INTO public.journal_details VALUES (7176, 5416, 'attr', 'project_id', '39', '4');
INSERT INTO public.journal_details VALUES (7177, 5417, 'attr', 'project_id', '39', '4');
INSERT INTO public.journal_details VALUES (7178, 5418, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7179, 5419, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7180, 5420, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7181, 5421, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7182, 5422, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (7183, 5423, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (7184, 5424, 'attr', 'fixed_version_id', NULL, '7');
INSERT INTO public.journal_details VALUES (7185, 5425, 'attr', 'fixed_version_id', NULL, '7');
INSERT INTO public.journal_details VALUES (7186, 5426, 'attr', 'fixed_version_id', NULL, '7');
INSERT INTO public.journal_details VALUES (7187, 5427, 'attr', 'fixed_version_id', NULL, '7');
INSERT INTO public.journal_details VALUES (7188, 5428, 'attr', 'fixed_version_id', NULL, '7');
INSERT INTO public.journal_details VALUES (7189, 5429, 'attr', 'fixed_version_id', NULL, '7');
INSERT INTO public.journal_details VALUES (7190, 5430, 'attr', 'fixed_version_id', NULL, '7');
INSERT INTO public.journal_details VALUES (7192, 5432, 'attr', 'fixed_version_id', NULL, '7');
INSERT INTO public.journal_details VALUES (7193, 5433, 'attr', 'fixed_version_id', NULL, '7');
INSERT INTO public.journal_details VALUES (7194, 5434, 'attr', 'fixed_version_id', NULL, '7');
INSERT INTO public.journal_details VALUES (7195, 5435, 'attr', 'fixed_version_id', NULL, '7');
INSERT INTO public.journal_details VALUES (7196, 5436, 'attr', 'fixed_version_id', NULL, '7');
INSERT INTO public.journal_details VALUES (7197, 5437, 'attr', 'fixed_version_id', NULL, '7');
INSERT INTO public.journal_details VALUES (7198, 5438, 'attr', 'project_id', '39', '4');
INSERT INTO public.journal_details VALUES (7199, 5439, 'attr', 'project_id', '39', '4');
INSERT INTO public.journal_details VALUES (7200, 5440, 'attr', 'project_id', '39', '4');
INSERT INTO public.journal_details VALUES (7201, 5441, 'attr', 'subject', 'Báo cáo scan tuần 1 (ngày 20/07/2020 - 24/07/2020', 'Báo cáo scan (ngày 20/07/2020 - 31/07/2020)');
INSERT INTO public.journal_details VALUES (7202, 5442, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7203, 5443, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7204, 5444, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7205, 5445, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7206, 5446, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7207, 5447, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7208, 5448, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7209, 5449, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7210, 5450, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7211, 5451, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7212, 5452, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7213, 5452, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7214, 5453, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7215, 5453, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7216, 5454, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7217, 5454, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7218, 5455, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (7219, 5456, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (7220, 5457, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (7221, 5458, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (7222, 5459, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (7223, 5460, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (7224, 5461, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (7225, 5462, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (7226, 5463, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7227, 5463, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7228, 5464, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7229, 5465, 'attr', 'due_date', '2020-08-05', '2020-08-04');
INSERT INTO public.journal_details VALUES (7230, 5466, 'attr', 'due_date', NULL, '2020-08-06');
INSERT INTO public.journal_details VALUES (7231, 5466, 'attr', 'start_date', '2020-08-03', '2020-08-05');
INSERT INTO public.journal_details VALUES (7232, 5467, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (7233, 5467, 'attr', 'start_date', '2020-08-03', '2020-08-07');
INSERT INTO public.journal_details VALUES (7234, 5468, 'attr', 'due_date', '2020-07-25', '2020-08-08');
INSERT INTO public.journal_details VALUES (7235, 5468, 'attr', 'start_date', '2020-07-24', '2020-08-08');
INSERT INTO public.journal_details VALUES (7236, 5469, 'attr', 'due_date', '2020-07-25', '2020-08-08');
INSERT INTO public.journal_details VALUES (7237, 5469, 'attr', 'start_date', '2020-07-24', '2020-08-08');
INSERT INTO public.journal_details VALUES (7238, 5470, 'attr', 'due_date', '2020-07-25', '2020-08-08');
INSERT INTO public.journal_details VALUES (7239, 5470, 'attr', 'start_date', '2020-07-24', '2020-08-08');
INSERT INTO public.journal_details VALUES (7240, 5471, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (7241, 5471, 'attr', 'start_date', '2020-07-25', '2020-08-08');
INSERT INTO public.journal_details VALUES (7242, 5472, 'attr', 'due_date', NULL, '2020-08-05');
INSERT INTO public.journal_details VALUES (7243, 5473, 'attr', 'due_date', '2020-08-08', '2020-08-07');
INSERT INTO public.journal_details VALUES (7244, 5473, 'attr', 'start_date', '2020-08-03', '2020-08-06');
INSERT INTO public.journal_details VALUES (7245, 5474, 'attr', 'due_date', '2020-07-24', '2020-08-08');
INSERT INTO public.journal_details VALUES (7246, 5474, 'attr', 'start_date', '2020-07-24', '2020-08-08');
INSERT INTO public.journal_details VALUES (7247, 5475, 'attr', 'due_date', NULL, '2020-08-04');
INSERT INTO public.journal_details VALUES (7248, 5476, 'attr', 'due_date', NULL, '2020-08-06');
INSERT INTO public.journal_details VALUES (7249, 5476, 'attr', 'start_date', '2020-08-01', '2020-08-05');
INSERT INTO public.journal_details VALUES (7250, 5477, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (7251, 5477, 'attr', 'start_date', '2020-08-01', '2020-08-07');
INSERT INTO public.journal_details VALUES (7252, 5478, 'attr', 'subject', 'Nhập 2900 văn bản', 'Nhập 1700 văn bản');
INSERT INTO public.journal_details VALUES (7253, 5478, 'attr', 'due_date', '2020-08-14', '2020-08-08');
INSERT INTO public.journal_details VALUES (7254, 5479, 'attr', 'due_date', NULL, '2020-08-03');
INSERT INTO public.journal_details VALUES (7255, 5479, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7256, 5480, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7257, 5481, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7258, 5482, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (7259, 5483, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (7260, 5484, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (7261, 5484, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7262, 5485, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7263, 5485, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7264, 5485, 'attr', 'estimated_hours', NULL, '8.0');
INSERT INTO public.journal_details VALUES (7265, 5486, 'attr', 'subject', 'Api lưu AQI', 'Api tính toán AQI');
INSERT INTO public.journal_details VALUES (7266, 5486, 'attr', 'due_date', '2020-07-25', '2020-08-06');
INSERT INTO public.journal_details VALUES (7267, 5486, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (7268, 5486, 'attr', 'start_date', '2020-07-25', '2020-08-03');
INSERT INTO public.journal_details VALUES (7269, 5487, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7270, 5488, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7271, 5489, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7272, 5490, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7273, 5491, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7274, 5492, 'attr', 'assigned_to_id', '17', '15');
INSERT INTO public.journal_details VALUES (7275, 5493, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7276, 5494, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7277, 5495, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7278, 5496, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7279, 5497, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7280, 5498, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7281, 5499, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7282, 5500, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7283, 5501, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7284, 5502, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7285, 5503, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7286, 5504, 'attr', 'due_date', '2020-08-07', '2020-08-03');
INSERT INTO public.journal_details VALUES (7287, 5504, 'attr', 'start_date', '2020-08-06', '2020-08-03');
INSERT INTO public.journal_details VALUES (7288, 5505, 'attr', 'due_date', '2020-08-15', '2020-08-12');
INSERT INTO public.journal_details VALUES (7289, 5506, 'attr', 'subject', 'Scan 7000 trang ', 'Scan 5000 trang ');
INSERT INTO public.journal_details VALUES (7290, 5507, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7291, 5508, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7292, 5509, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7293, 5510, 'attr', 'due_date', NULL, '2020-08-03');
INSERT INTO public.journal_details VALUES (7294, 5510, 'attr', 'start_date', '2020-08-01', '2020-08-03');
INSERT INTO public.journal_details VALUES (7295, 5511, 'attr', 'assigned_to_id', NULL, '30');
INSERT INTO public.journal_details VALUES (7296, 5512, 'attr', 'done_ratio', '0', '10');
INSERT INTO public.journal_details VALUES (7297, 5513, 'attr', 'subject', 'báo cáo', '1940 trang');
INSERT INTO public.journal_details VALUES (7298, 5514, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7299, 5515, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7300, 5516, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7301, 5517, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7302, 5518, 'attr', 'start_date', '2020-08-03', '2020-08-05');
INSERT INTO public.journal_details VALUES (7303, 5519, 'attr', 'start_date', '2020-08-03', '2020-08-05');
INSERT INTO public.journal_details VALUES (7304, 5520, 'attr', 'due_date', '2020-08-15', '2020-08-06');
INSERT INTO public.journal_details VALUES (7305, 5520, 'attr', 'start_date', '2020-08-14', '2020-08-05');
INSERT INTO public.journal_details VALUES (7306, 5521, 'attr', 'due_date', '2020-08-15', '2020-08-06');
INSERT INTO public.journal_details VALUES (7307, 5521, 'attr', 'start_date', '2020-08-14', '2020-08-05');
INSERT INTO public.journal_details VALUES (7308, 5522, 'attr', 'due_date', '2020-08-19', '2020-08-08');
INSERT INTO public.journal_details VALUES (7309, 5522, 'attr', 'start_date', '2020-08-17', '2020-08-07');
INSERT INTO public.journal_details VALUES (7310, 5523, 'attr', 'due_date', '2020-08-19', '2020-08-08');
INSERT INTO public.journal_details VALUES (7311, 5523, 'attr', 'start_date', '2020-08-17', '2020-08-07');
INSERT INTO public.journal_details VALUES (7312, 5524, 'attr', 'due_date', '2020-08-05', '2020-08-11');
INSERT INTO public.journal_details VALUES (7313, 5524, 'attr', 'start_date', '2020-08-05', '2020-08-10');
INSERT INTO public.journal_details VALUES (7314, 5525, 'attr', 'due_date', '2020-08-05', '2020-08-11');
INSERT INTO public.journal_details VALUES (7315, 5525, 'attr', 'start_date', '2020-08-05', '2020-08-10');
INSERT INTO public.journal_details VALUES (7316, 5526, 'attr', 'due_date', '2020-08-08', '2020-08-13');
INSERT INTO public.journal_details VALUES (7317, 5526, 'attr', 'start_date', '2020-08-06', '2020-08-12');
INSERT INTO public.journal_details VALUES (7318, 5527, 'attr', 'due_date', '2020-08-08', '2020-08-13');
INSERT INTO public.journal_details VALUES (7319, 5527, 'attr', 'start_date', '2020-08-06', '2020-08-12');
INSERT INTO public.journal_details VALUES (7320, 5528, 'attr', 'due_date', '2020-08-08', '2020-08-13');
INSERT INTO public.journal_details VALUES (7321, 5528, 'attr', 'start_date', '2020-08-06', '2020-08-12');
INSERT INTO public.journal_details VALUES (7332, 5534, 'attr', 'start_date', '2020-07-20', '2020-08-10');
INSERT INTO public.journal_details VALUES (7333, 5535, 'attr', 'due_date', '2020-06-19', '2020-08-15');
INSERT INTO public.journal_details VALUES (7334, 5535, 'attr', 'start_date', '2020-06-19', '2020-08-10');
INSERT INTO public.journal_details VALUES (7335, 5536, 'attr', 'due_date', '2020-07-20', '2020-08-15');
INSERT INTO public.journal_details VALUES (7336, 5536, 'attr', 'start_date', '2020-07-20', '2020-08-10');
INSERT INTO public.journal_details VALUES (7337, 5537, 'attr', 'due_date', '2020-07-18', '2020-08-15');
INSERT INTO public.journal_details VALUES (7338, 5537, 'attr', 'start_date', '2020-07-18', '2020-08-10');
INSERT INTO public.journal_details VALUES (7339, 5538, 'attr', 'due_date', '2020-07-27', '2020-08-15');
INSERT INTO public.journal_details VALUES (7340, 5538, 'attr', 'start_date', '2020-07-27', '2020-08-10');
INSERT INTO public.journal_details VALUES (7341, 5539, 'attr', 'due_date', '2020-07-20', '2020-08-15');
INSERT INTO public.journal_details VALUES (7342, 5539, 'attr', 'start_date', '2020-07-20', '2020-08-10');
INSERT INTO public.journal_details VALUES (7345, 5541, 'attr', 'due_date', '2020-07-20', '2020-08-15');
INSERT INTO public.journal_details VALUES (7346, 5541, 'attr', 'start_date', '2020-07-20', '2020-08-10');
INSERT INTO public.journal_details VALUES (7347, 5542, 'attr', 'due_date', '2020-07-27', '2020-08-15');
INSERT INTO public.journal_details VALUES (7348, 5542, 'attr', 'start_date', '2020-07-27', '2020-08-10');
INSERT INTO public.journal_details VALUES (7349, 5543, 'attr', 'due_date', '2020-07-21', '2020-08-15');
INSERT INTO public.journal_details VALUES (7350, 5543, 'attr', 'start_date', '2020-07-21', '2020-08-10');
INSERT INTO public.journal_details VALUES (7351, 5544, 'attr', 'due_date', '2020-07-31', '2020-08-04');
INSERT INTO public.journal_details VALUES (7352, 5544, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7353, 5544, 'attr', 'start_date', '2020-07-31', '2020-08-03');
INSERT INTO public.journal_details VALUES (7354, 5544, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7355, 5544, 'attr', 'estimated_hours', NULL, '8.0');
INSERT INTO public.journal_details VALUES (7356, 5545, 'attr', 'due_date', '2020-08-06', '2020-08-07');
INSERT INTO public.journal_details VALUES (7357, 5545, 'attr', 'start_date', '2020-08-03', '2020-08-04');
INSERT INTO public.journal_details VALUES (7358, 5546, 'attr', 'subject', 'Danh mục hình thức sử dụng đất', 'Danh mục loại hình doanh nghiệp');
INSERT INTO public.journal_details VALUES (7359, 5547, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7360, 5548, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7361, 5549, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7362, 5550, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7363, 5551, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7364, 5552, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7365, 5553, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7366, 5554, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7367, 5555, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7368, 5556, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7369, 5557, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (7370, 5558, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (7371, 5559, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (7372, 5561, 'attr', 'done_ratio', '10', '20');
INSERT INTO public.journal_details VALUES (7373, 5562, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7374, 5563, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7375, 5564, 'attr', 'done_ratio', '0', '10');
INSERT INTO public.journal_details VALUES (7376, 5565, 'attr', 'done_ratio', '0', '10');
INSERT INTO public.journal_details VALUES (7377, 5566, 'attr', 'done_ratio', '10', '100');
INSERT INTO public.journal_details VALUES (7378, 5567, 'attr', 'done_ratio', '10', '100');
INSERT INTO public.journal_details VALUES (7379, 5568, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7380, 5569, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7381, 5570, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7382, 5571, 'attr', 'due_date', '2020-08-05', '2020-08-04');
INSERT INTO public.journal_details VALUES (7383, 5571, 'attr', 'start_date', '2020-08-05', '2020-08-04');
INSERT INTO public.journal_details VALUES (7384, 5572, 'attr', 'due_date', '2020-08-06', '2020-08-04');
INSERT INTO public.journal_details VALUES (7385, 5572, 'attr', 'start_date', '2020-08-06', '2020-08-04');
INSERT INTO public.journal_details VALUES (7386, 5573, 'attr', 'done_ratio', '0', '40');
INSERT INTO public.journal_details VALUES (7387, 5574, 'attr', 'done_ratio', '40', '50');
INSERT INTO public.journal_details VALUES (7388, 5575, 'attr', 'subject', '1940 trang', '3141 trang');
INSERT INTO public.journal_details VALUES (7389, 5575, 'attr', 'description', '29/7 Hop 01 - 251 trang
30/7 Hop 11 - 415 trang
3/8  Hop 20 - 313 trang
     Hop 28 - 547 trang
     Hop 33 - 3 trang
     Hop 48 - 233 trang
     Hop 49 - 178 trang', '29/7 Hop 01 - 251 trang
30/7 Hop 11 - 415 trang
3/8  Hop 20 - 313 trang
     Hop 28 - 547 trang
     Hop 33 - 3 trang
     Hop 48 - 233 trang
     Hop 49 - 178 trang
4/8  Hop 70 - 416 trang
     Hop 75 - 542 trang');
INSERT INTO public.journal_details VALUES (7390, 5575, 'attr', 'done_ratio', '10', '40');
INSERT INTO public.journal_details VALUES (7391, 5576, 'attr', 'due_date', '2020-08-04', '2020-08-05');
INSERT INTO public.journal_details VALUES (7392, 5576, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7393, 5576, 'attr', 'assigned_to_id', '19', '5');
INSERT INTO public.journal_details VALUES (7394, 5576, 'attr', 'start_date', '2020-08-03', '2020-08-05');
INSERT INTO public.journal_details VALUES (7395, 5576, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7396, 5577, 'attr', 'fixed_version_id', '3', '2');
INSERT INTO public.journal_details VALUES (7397, 5578, 'attr', 'fixed_version_id', '3', '2');
INSERT INTO public.journal_details VALUES (7398, 5579, 'attr', 'fixed_version_id', '3', '2');
INSERT INTO public.journal_details VALUES (7399, 5580, 'attr', 'fixed_version_id', '3', '2');
INSERT INTO public.journal_details VALUES (7400, 5581, 'attr', 'fixed_version_id', '3', '2');
INSERT INTO public.journal_details VALUES (7401, 5582, 'attr', 'fixed_version_id', '3', '2');
INSERT INTO public.journal_details VALUES (7402, 5583, 'attr', 'fixed_version_id', '3', '2');
INSERT INTO public.journal_details VALUES (7403, 5584, 'attr', 'fixed_version_id', '3', '2');
INSERT INTO public.journal_details VALUES (7404, 5585, 'attr', 'fixed_version_id', '3', '2');
INSERT INTO public.journal_details VALUES (7405, 5586, 'attr', 'due_date', '2020-08-22', '2020-08-18');
INSERT INTO public.journal_details VALUES (7406, 5586, 'attr', 'start_date', '2020-08-20', '2020-08-17');
INSERT INTO public.journal_details VALUES (7407, 5587, 'attr', 'due_date', '2020-08-31', '2020-08-20');
INSERT INTO public.journal_details VALUES (7408, 5587, 'attr', 'start_date', '2020-08-31', '2020-08-19');
INSERT INTO public.journal_details VALUES (7409, 5588, 'attr', 'due_date', '2020-08-31', '2020-08-20');
INSERT INTO public.journal_details VALUES (7410, 5588, 'attr', 'start_date', '2020-08-31', '2020-08-19');
INSERT INTO public.journal_details VALUES (7411, 5589, 'attr', 'due_date', '2020-09-01', '2020-08-20');
INSERT INTO public.journal_details VALUES (7412, 5589, 'attr', 'start_date', '2020-09-01', '2020-08-19');
INSERT INTO public.journal_details VALUES (7413, 5590, 'attr', 'due_date', '2020-09-01', '2020-08-20');
INSERT INTO public.journal_details VALUES (7414, 5590, 'attr', 'start_date', '2020-09-01', '2020-08-19');
INSERT INTO public.journal_details VALUES (7415, 5591, 'attr', 'due_date', '2020-09-03', '2020-08-22');
INSERT INTO public.journal_details VALUES (7416, 5591, 'attr', 'start_date', '2020-09-03', '2020-08-21');
INSERT INTO public.journal_details VALUES (7417, 5592, 'attr', 'due_date', '2020-09-03', '2020-08-22');
INSERT INTO public.journal_details VALUES (7418, 5592, 'attr', 'start_date', '2020-09-03', '2020-08-21');
INSERT INTO public.journal_details VALUES (7419, 5593, 'attr', 'due_date', '2020-09-04', '2020-08-22');
INSERT INTO public.journal_details VALUES (7420, 5593, 'attr', 'start_date', '2020-09-04', '2020-08-21');
INSERT INTO public.journal_details VALUES (7421, 5594, 'attr', 'due_date', '2020-09-04', '2020-08-22');
INSERT INTO public.journal_details VALUES (7422, 5594, 'attr', 'start_date', '2020-09-04', '2020-08-21');
INSERT INTO public.journal_details VALUES (7423, 5595, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (7424, 5596, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (7425, 5597, 'attr', 'subject', 'Nhập liệu phiếu từ ... đến ...', 'Rà soát dữ liệu');
INSERT INTO public.journal_details VALUES (7426, 5598, 'attr', 'due_date', '2020-08-08', '2020-08-07');
INSERT INTO public.journal_details VALUES (7427, 5598, 'attr', 'start_date', '2020-08-03', '2020-08-07');
INSERT INTO public.journal_details VALUES (7428, 5599, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7429, 5600, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7430, 5601, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7431, 5602, 'attr', 'subject', 'Phân tích dự án', 'Lập danh sách chức năng');
INSERT INTO public.journal_details VALUES (7432, 5602, 'attr', 'due_date', '2020-08-07', '2020-08-04');
INSERT INTO public.journal_details VALUES (7433, 5602, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7434, 5602, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7435, 5603, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7436, 5604, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7437, 5605, 'attr', 'status_id', '5', '6');
INSERT INTO public.journal_details VALUES (7438, 5606, 'attr', 'status_id', '6', '5');
INSERT INTO public.journal_details VALUES (7439, 5607, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (7440, 5608, 'attr', 'subject', 'phần tìm kiếm trên trang mời gọi đầu tư', 'Giao diện phần tìm kiếm trên trang mời gọi đầu tư');
INSERT INTO public.journal_details VALUES (7441, 5609, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7442, 5610, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7443, 5611, 'attr', 'status_id', '1', '4');
INSERT INTO public.journal_details VALUES (7444, 5612, 'attr', 'done_ratio', '100', '50');
INSERT INTO public.journal_details VALUES (7445, 5613, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7446, 5614, 'attr', 'fixed_version_id', NULL, '6');
INSERT INTO public.journal_details VALUES (7447, 5615, 'attr', 'due_date', '2020-08-04', '2020-08-08');
INSERT INTO public.journal_details VALUES (7448, 5615, 'attr', 'start_date', '2020-08-03', '2020-08-08');
INSERT INTO public.journal_details VALUES (7449, 5616, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (7450, 5617, 'attr', 'due_date', NULL, '2020-08-06');
INSERT INTO public.journal_details VALUES (7451, 5618, 'attr', 'subject', 'Tạo trang tìm kiếm nâng cao', 'Sửa giao diện trang tìm kiếm riêng');
INSERT INTO public.journal_details VALUES (7452, 5618, 'attr', 'due_date', '2020-08-08', '2020-08-07');
INSERT INTO public.journal_details VALUES (7453, 5619, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (7454, 5620, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (7455, 5621, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (7456, 5622, 'attr', 'due_date', NULL, '2020-08-07');
INSERT INTO public.journal_details VALUES (7457, 5622, 'attr', 'start_date', '2020-08-06', '2020-08-07');
INSERT INTO public.journal_details VALUES (7458, 5623, 'attr', 'due_date', NULL, '2020-08-07');
INSERT INTO public.journal_details VALUES (7459, 5623, 'attr', 'start_date', '2020-08-06', '2020-08-07');
INSERT INTO public.journal_details VALUES (7460, 5624, 'attr', 'due_date', NULL, '2020-08-07');
INSERT INTO public.journal_details VALUES (7461, 5624, 'attr', 'start_date', '2020-08-06', '2020-08-07');
INSERT INTO public.journal_details VALUES (7462, 5625, 'attr', 'due_date', '2020-08-06', '2020-08-07');
INSERT INTO public.journal_details VALUES (7463, 5625, 'attr', 'start_date', '2020-08-05', '2020-08-07');
INSERT INTO public.journal_details VALUES (7464, 5626, 'attr', 'assigned_to_id', NULL, '9');
INSERT INTO public.journal_details VALUES (7465, 5627, 'attr', 'assigned_to_id', NULL, '9');
INSERT INTO public.journal_details VALUES (7466, 5628, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7467, 5629, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7468, 5630, 'attr', 'description', '', 'Số lượng A Trí cần 486

**HIỆN TRẠNG PHIẾU**
- Doanh nghiệp: 265
     . Trong KCN: 111
     . Trong CCN: 33
     . Ngoài KCN/CCN (tức là đã đầu tư ở điểm mời gọi):100
- Điểm đang mời gọi: 186


**SAU KHI RÀ SOÁT PHẦN MỀM**
- Doanh nghiệp: 
     . Trong KCN:
     . Trong CCN:
     . Ngoài KCN/CCN (tức là đã đầu tư ở điểm mời gọi):
- Điểm đang mời gọi:');
INSERT INTO public.journal_details VALUES (7549, 5701, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7550, 5702, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7551, 5703, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7552, 5704, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7553, 5705, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7554, 5706, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7555, 5707, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7556, 5708, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7557, 5709, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7558, 5710, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7559, 5711, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7560, 5712, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7469, 5631, 'attr', 'description', 'Số lượng A Trí cần 486

**HIỆN TRẠNG PHIẾU**
- Doanh nghiệp: 265
     . Trong KCN: 111
     . Trong CCN: 33
     . Ngoài KCN/CCN (tức là đã đầu tư ở điểm mời gọi):100
- Điểm đang mời gọi: 186


**SAU KHI RÀ SOÁT PHẦN MỀM**
- Doanh nghiệp: 
     . Trong KCN:
     . Trong CCN:
     . Ngoài KCN/CCN (tức là đã đầu tư ở điểm mời gọi):
- Điểm đang mời gọi:', 'Số lượng A Trí cần 486

**HIỆN TRẠNG PHIẾU**
- Doanh nghiệp: 265
     . Trong KCN: 111
     . Trong CCN: 
     . Ngoài KCN/CCN (tức là đã đầu tư ở điểm mời gọi):
- Điểm đang mời gọi: 60


**SAU KHI RÀ SOÁT PHẦN MỀM**
- Doanh nghiệp: 
     . Trong KCN:
     . Trong CCN:
     . Ngoài KCN/CCN (tức là đã đầu tư ở điểm mời gọi):
- Điểm đang mời gọi:');
INSERT INTO public.journal_details VALUES (7470, 5632, 'attr', 'description', 'Số lượng A Trí cần 486

**HIỆN TRẠNG PHIẾU**
- Doanh nghiệp: 265
     . Trong KCN: 111
     . Trong CCN: 
     . Ngoài KCN/CCN (tức là đã đầu tư ở điểm mời gọi):
- Điểm đang mời gọi: 60


**SAU KHI RÀ SOÁT PHẦN MỀM**
- Doanh nghiệp: 
     . Trong KCN:
     . Trong CCN:
     . Ngoài KCN/CCN (tức là đã đầu tư ở điểm mời gọi):
- Điểm đang mời gọi:', 'Số lượng A Trí cần 486

**HIỆN TRẠNG PHIẾU**
- Doanh nghiệp: 
     . Trong KCN: 111
     . Trong CCN: 
     . Ngoài KCN/CCN (tức là đã đầu tư ở điểm mời gọi):
- Điểm đang mời gọi: 60


**SAU KHI RÀ SOÁT PHẦN MỀM**
- Doanh nghiệp: 
     . Trong KCN:
     . Trong CCN:
     . Ngoài KCN/CCN (tức là đã đầu tư ở điểm mời gọi):
- Điểm đang mời gọi:');
INSERT INTO public.journal_details VALUES (7471, 5633, 'attr', 'parent_id', NULL, '1697');
INSERT INTO public.journal_details VALUES (7472, 5634, 'attr', 'due_date', NULL, '2020-08-07');
INSERT INTO public.journal_details VALUES (7473, 5634, 'attr', 'start_date', '2020-08-06', '2020-08-07');
INSERT INTO public.journal_details VALUES (7474, 5635, 'attr', 'due_date', NULL, '2020-08-07');
INSERT INTO public.journal_details VALUES (7475, 5635, 'attr', 'start_date', '2020-08-06', '2020-08-07');
INSERT INTO public.journal_details VALUES (7476, 5636, 'attr', 'due_date', NULL, '2020-08-07');
INSERT INTO public.journal_details VALUES (7477, 5636, 'attr', 'start_date', '2020-08-06', '2020-08-07');
INSERT INTO public.journal_details VALUES (7478, 5637, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (7479, 5638, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (7480, 5639, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (7481, 5640, 'attr', 'subject', 'Thống kê sl DN trong KCN', 'SP thống kê sl DN trong KCN');
INSERT INTO public.journal_details VALUES (7482, 5641, 'attr', 'subject', 'Thống kê sl DN trong CCN', 'SP thống kê sl DN trong CCN');
INSERT INTO public.journal_details VALUES (7483, 5642, 'attr', 'subject', 'Thống kê sl DN đã đầu tư ngoài KCN/CCN', 'SP thống kê sl DN đã đầu tư ngoài KCN/CCN');
INSERT INTO public.journal_details VALUES (7484, 5643, 'attachment', '65', NULL, 'thong ke doanh nghiep.png');
INSERT INTO public.journal_details VALUES (7485, 5644, 'attr', 'priority_id', '2', '3');
INSERT INTO public.journal_details VALUES (7486, 5644, 'attr', 'done_ratio', '100', '50');
INSERT INTO public.journal_details VALUES (7487, 5645, 'attr', 'done_ratio', '50', '80');
INSERT INTO public.journal_details VALUES (7488, 5646, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7489, 5647, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7490, 5648, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (7491, 5649, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (7492, 5650, 'attr', 'status_id', '4', '3');
INSERT INTO public.journal_details VALUES (7493, 5651, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7494, 5652, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7495, 5653, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7496, 5654, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7497, 5655, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7498, 5655, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7499, 5656, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7500, 5656, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7501, 5657, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7502, 5657, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7503, 5658, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7504, 5659, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7505, 5660, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7506, 5661, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7507, 5662, 'attr', 'due_date', NULL, '2020-08-07');
INSERT INTO public.journal_details VALUES (7508, 5663, 'attr', 'due_date', '2020-08-12', '2020-08-15');
INSERT INTO public.journal_details VALUES (7509, 5664, 'attr', 'subject', '3141 trang', '4650 trang');
INSERT INTO public.journal_details VALUES (7510, 5664, 'attr', 'description', '29/7 Hop 01 - 251 trang
30/7 Hop 11 - 415 trang
3/8  Hop 20 - 313 trang
     Hop 28 - 547 trang
     Hop 33 - 3 trang
     Hop 48 - 233 trang
     Hop 49 - 178 trang
4/8  Hop 70 - 416 trang
     Hop 75 - 542 trang', '29/7 Hop 01 - 251 trang
30/7 Hop 11 - 415 trang
3/8  Hop 20 - 313 trang
     Hop 28 - 547 trang
     Hop 33 - 3 trang
     Hop 48 - 233 trang
     Hop 49 - 178 trang
4/8  Hop 70 - 416 trang
     Hop 75 - 542 trang
5/8  Hop 85 - 490 trang
     Hop 162 - 243 trang
6/8  Hop 88 - 357 trang
7/8  Hop 163 - 662 trang
');
INSERT INTO public.journal_details VALUES (7511, 5664, 'attr', 'done_ratio', '40', '60');
INSERT INTO public.journal_details VALUES (7512, 5665, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7513, 5666, 'attr', 'fixed_version_id', '1', '2');
INSERT INTO public.journal_details VALUES (7514, 5667, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7515, 5667, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7516, 5668, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7517, 5669, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7518, 5670, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7519, 5671, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7520, 5672, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7521, 5673, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7522, 5674, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7523, 5675, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7524, 5676, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7525, 5677, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7526, 5678, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7527, 5679, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7528, 5680, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7529, 5681, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7530, 5682, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7531, 5683, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7532, 5684, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7533, 5685, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7534, 5686, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7535, 5687, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7536, 5688, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7537, 5689, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7538, 5690, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7539, 5691, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7540, 5692, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7541, 5693, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7542, 5694, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7543, 5695, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7544, 5696, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7545, 5697, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7546, 5698, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7547, 5699, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7548, 5700, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7561, 5713, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7562, 5714, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7563, 5715, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7564, 5716, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7565, 5717, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7566, 5718, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7567, 5719, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7568, 5720, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7569, 5721, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7570, 5722, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7571, 5723, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7572, 5724, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7573, 5725, 'attr', 'parent_id', '1387', NULL);
INSERT INTO public.journal_details VALUES (7574, 5726, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7575, 5727, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7576, 5728, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7577, 5729, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7578, 5730, 'attr', 'due_date', '2020-08-06', '2020-08-12');
INSERT INTO public.journal_details VALUES (7579, 5730, 'attr', 'start_date', '2020-08-05', '2020-08-10');
INSERT INTO public.journal_details VALUES (7580, 5731, 'attr', 'due_date', '2020-08-06', '2020-08-12');
INSERT INTO public.journal_details VALUES (7581, 5731, 'attr', 'start_date', '2020-08-05', '2020-08-10');
INSERT INTO public.journal_details VALUES (7582, 5732, 'attr', 'due_date', '2020-08-08', '2020-08-15');
INSERT INTO public.journal_details VALUES (7583, 5732, 'attr', 'start_date', '2020-08-07', '2020-08-13');
INSERT INTO public.journal_details VALUES (7584, 5733, 'attr', 'due_date', '2020-08-08', '2020-08-15');
INSERT INTO public.journal_details VALUES (7585, 5733, 'attr', 'start_date', '2020-08-07', '2020-08-13');
INSERT INTO public.journal_details VALUES (7586, 5734, 'attr', 'due_date', '2020-08-11', '2020-08-19');
INSERT INTO public.journal_details VALUES (7587, 5734, 'attr', 'start_date', '2020-08-10', '2020-08-17');
INSERT INTO public.journal_details VALUES (7588, 5735, 'attr', 'due_date', '2020-08-13', '2020-08-19');
INSERT INTO public.journal_details VALUES (7589, 5735, 'attr', 'start_date', '2020-08-12', '2020-08-17');
INSERT INTO public.journal_details VALUES (7590, 5736, 'attr', 'due_date', '2020-08-11', '2020-08-19');
INSERT INTO public.journal_details VALUES (7591, 5736, 'attr', 'start_date', '2020-08-10', '2020-08-17');
INSERT INTO public.journal_details VALUES (7592, 5737, 'attr', 'due_date', '2020-08-13', '2020-08-19');
INSERT INTO public.journal_details VALUES (7593, 5737, 'attr', 'start_date', '2020-08-12', '2020-08-17');
INSERT INTO public.journal_details VALUES (7594, 5738, 'attr', 'due_date', '2020-08-13', '2020-08-19');
INSERT INTO public.journal_details VALUES (7595, 5738, 'attr', 'start_date', '2020-08-12', '2020-08-17');
INSERT INTO public.journal_details VALUES (7596, 5739, 'attr', 'start_date', '2020-08-07', '2020-08-10');
INSERT INTO public.journal_details VALUES (7597, 5740, 'attr', 'subject', 'Nhập liệu phiếu từ ... đến ...', 'Rà soát 200 phiếu');
INSERT INTO public.journal_details VALUES (7598, 5740, 'attr', 'due_date', '2020-08-07', '2020-08-08');
INSERT INTO public.journal_details VALUES (7599, 5740, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (7600, 5741, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (7601, 5742, 'attr', 'due_date', '2020-08-08', '2020-08-10');
INSERT INTO public.journal_details VALUES (7602, 5742, 'attr', 'start_date', '2020-08-08', '2020-08-10');
INSERT INTO public.journal_details VALUES (7603, 5743, 'attr', 'due_date', '2020-08-07', '2020-08-10');
INSERT INTO public.journal_details VALUES (7604, 5743, 'attr', 'start_date', '2020-08-07', '2020-08-10');
INSERT INTO public.journal_details VALUES (7605, 5744, 'attr', 'due_date', '2020-08-06', '2020-08-10');
INSERT INTO public.journal_details VALUES (7606, 5744, 'attr', 'start_date', '2020-08-05', '2020-08-10');
INSERT INTO public.journal_details VALUES (7607, 5745, 'attr', 'fixed_version_id', '6', '7');
INSERT INTO public.journal_details VALUES (7608, 5746, 'attr', 'fixed_version_id', '6', '7');
INSERT INTO public.journal_details VALUES (7609, 5747, 'attr', 'fixed_version_id', '6', '7');
INSERT INTO public.journal_details VALUES (7610, 5748, 'attr', 'fixed_version_id', '6', '7');
INSERT INTO public.journal_details VALUES (7611, 5749, 'attr', 'due_date', '2020-08-08', '2020-08-10');
INSERT INTO public.journal_details VALUES (7612, 5749, 'attr', 'start_date', '2020-08-08', '2020-08-10');
INSERT INTO public.journal_details VALUES (7613, 5750, 'attr', 'fixed_version_id', NULL, '9');
INSERT INTO public.journal_details VALUES (7614, 5751, 'attr', 'fixed_version_id', NULL, '9');
INSERT INTO public.journal_details VALUES (7615, 5752, 'attr', 'fixed_version_id', NULL, '9');
INSERT INTO public.journal_details VALUES (7616, 5753, 'attr', 'fixed_version_id', NULL, '9');
INSERT INTO public.journal_details VALUES (7617, 5754, 'attr', 'fixed_version_id', NULL, '9');
INSERT INTO public.journal_details VALUES (7618, 5755, 'attr', 'parent_id', NULL, '1741');
INSERT INTO public.journal_details VALUES (7619, 5756, 'attr', 'parent_id', NULL, '1741');
INSERT INTO public.journal_details VALUES (7620, 5757, 'attr', 'due_date', NULL, '2020-08-08');
INSERT INTO public.journal_details VALUES (7621, 5758, 'attr', 'fixed_version_id', NULL, '9');
INSERT INTO public.journal_details VALUES (7622, 5759, 'attr', 'fixed_version_id', NULL, '9');
INSERT INTO public.journal_details VALUES (7623, 5760, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7624, 5761, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7625, 5762, 'attr', 'project_id', '4', '40');
INSERT INTO public.journal_details VALUES (7626, 5762, 'attr', 'fixed_version_id', '7', NULL);
INSERT INTO public.journal_details VALUES (7627, 5763, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7628, 5764, 'attr', 'due_date', '2020-08-15', '2020-08-17');
INSERT INTO public.journal_details VALUES (7629, 5764, 'attr', 'start_date', '2020-08-10', '2020-08-17');
INSERT INTO public.journal_details VALUES (7630, 5765, 'attr', 'fixed_version_id', '7', '8');
INSERT INTO public.journal_details VALUES (7631, 5766, 'attr', 'fixed_version_id', '7', '8');
INSERT INTO public.journal_details VALUES (7632, 5767, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (7633, 5768, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (7634, 5769, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (7635, 5770, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (7636, 5771, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (7637, 5772, 'attr', 'parent_id', '1008', NULL);
INSERT INTO public.journal_details VALUES (7638, 5773, 'attr', 'parent_id', '1008', NULL);
INSERT INTO public.journal_details VALUES (7639, 5774, 'attr', 'parent_id', '1008', NULL);
INSERT INTO public.journal_details VALUES (7640, 5775, 'attr', 'parent_id', '1008', NULL);
INSERT INTO public.journal_details VALUES (7641, 5776, 'attr', 'parent_id', '1009', NULL);
INSERT INTO public.journal_details VALUES (7642, 5777, 'attr', 'parent_id', '1019', NULL);
INSERT INTO public.journal_details VALUES (7643, 5778, 'attr', 'parent_id', '1019', NULL);
INSERT INTO public.journal_details VALUES (7644, 5779, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7645, 5780, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7646, 5781, 'attr', 'parent_id', '1008', NULL);
INSERT INTO public.journal_details VALUES (7647, 5782, 'attr', 'subject', 'cập nhật lại trang thêm mới doanh nghiệp', 'Cập nhật lại trang thêm mới doanh nghiệp');
INSERT INTO public.journal_details VALUES (7648, 5782, 'attr', 'parent_id', '1008', NULL);
INSERT INTO public.journal_details VALUES (7649, 5783, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7650, 5784, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7651, 5785, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7652, 5786, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7653, 5787, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7654, 5788, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (7655, 5789, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (7656, 5790, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (7657, 5791, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (7658, 5792, 'attr', 'fixed_version_id', '6', '7');
INSERT INTO public.journal_details VALUES (7659, 5793, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (7660, 5794, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (7661, 5795, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (7662, 5796, 'attr', 'fixed_version_id', '6', '7');
INSERT INTO public.journal_details VALUES (7663, 5797, 'attr', 'fixed_version_id', '6', '7');
INSERT INTO public.journal_details VALUES (7664, 5798, 'attr', 'fixed_version_id', '6', '7');
INSERT INTO public.journal_details VALUES (7665, 5799, 'attr', 'fixed_version_id', '6', '7');
INSERT INTO public.journal_details VALUES (7666, 5800, 'attr', 'fixed_version_id', '6', '7');
INSERT INTO public.journal_details VALUES (7667, 5801, 'attr', 'fixed_version_id', '6', '7');
INSERT INTO public.journal_details VALUES (7668, 5802, 'attr', 'fixed_version_id', '6', '7');
INSERT INTO public.journal_details VALUES (7772, 5880, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7669, 5803, 'attr', 'fixed_version_id', '6', '7');
INSERT INTO public.journal_details VALUES (7670, 5804, 'attr', 'fixed_version_id', '6', '7');
INSERT INTO public.journal_details VALUES (7671, 5805, 'attr', 'fixed_version_id', '6', '7');
INSERT INTO public.journal_details VALUES (7672, 5806, 'attr', 'fixed_version_id', '6', '7');
INSERT INTO public.journal_details VALUES (7673, 5807, 'attr', 'start_date', '2020-08-10', '2020-08-15');
INSERT INTO public.journal_details VALUES (7674, 5808, 'attr', 'start_date', '2020-08-10', '2020-08-15');
INSERT INTO public.journal_details VALUES (7675, 5809, 'attr', 'start_date', '2020-08-10', '2020-08-15');
INSERT INTO public.journal_details VALUES (7676, 5810, 'attr', 'due_date', '2020-08-07', '2020-08-10');
INSERT INTO public.journal_details VALUES (7677, 5810, 'attr', 'start_date', '2020-08-07', '2020-08-10');
INSERT INTO public.journal_details VALUES (7678, 5811, 'attr', 'due_date', '2020-08-08', '2020-08-10');
INSERT INTO public.journal_details VALUES (7679, 5811, 'attr', 'start_date', '2020-08-07', '2020-08-10');
INSERT INTO public.journal_details VALUES (7680, 5812, 'attr', 'due_date', '2020-08-07', '2020-08-10');
INSERT INTO public.journal_details VALUES (7681, 5812, 'attr', 'start_date', '2020-08-07', '2020-08-10');
INSERT INTO public.journal_details VALUES (7682, 5813, 'attr', 'due_date', '2020-08-07', '2020-08-10');
INSERT INTO public.journal_details VALUES (7683, 5813, 'attr', 'start_date', '2020-08-07', '2020-08-10');
INSERT INTO public.journal_details VALUES (7684, 5814, 'attr', 'due_date', '2020-08-07', '2020-08-11');
INSERT INTO public.journal_details VALUES (7685, 5814, 'attr', 'start_date', '2020-08-07', '2020-08-11');
INSERT INTO public.journal_details VALUES (7686, 5815, 'attr', 'due_date', '2020-08-08', '2020-08-11');
INSERT INTO public.journal_details VALUES (7687, 5815, 'attr', 'start_date', '2020-08-08', '2020-08-11');
INSERT INTO public.journal_details VALUES (7688, 5816, 'attr', 'due_date', '2020-08-07', '2020-08-11');
INSERT INTO public.journal_details VALUES (7689, 5816, 'attr', 'start_date', '2020-08-07', '2020-08-11');
INSERT INTO public.journal_details VALUES (7690, 5817, 'attr', 'due_date', '2020-08-08', '2020-08-12');
INSERT INTO public.journal_details VALUES (7691, 5817, 'attr', 'start_date', '2020-08-08', '2020-08-12');
INSERT INTO public.journal_details VALUES (7692, 5818, 'attr', 'due_date', '2020-08-08', '2020-08-12');
INSERT INTO public.journal_details VALUES (7693, 5818, 'attr', 'start_date', '2020-08-08', '2020-08-12');
INSERT INTO public.journal_details VALUES (7694, 5819, 'attr', 'due_date', '2020-08-10', '2020-08-12');
INSERT INTO public.journal_details VALUES (7695, 5819, 'attr', 'start_date', '2020-08-10', '2020-08-12');
INSERT INTO public.journal_details VALUES (7696, 5820, 'attr', 'due_date', '2020-08-10', '2020-08-13');
INSERT INTO public.journal_details VALUES (7697, 5820, 'attr', 'start_date', '2020-08-10', '2020-08-13');
INSERT INTO public.journal_details VALUES (7698, 5821, 'attr', 'due_date', '2020-08-10', '2020-08-13');
INSERT INTO public.journal_details VALUES (7699, 5821, 'attr', 'start_date', '2020-08-10', '2020-08-13');
INSERT INTO public.journal_details VALUES (7700, 5822, 'attr', 'due_date', '2020-08-10', '2020-08-14');
INSERT INTO public.journal_details VALUES (7701, 5822, 'attr', 'start_date', '2020-08-10', '2020-08-14');
INSERT INTO public.journal_details VALUES (7702, 5823, 'attr', 'due_date', '2020-08-10', '2020-08-14');
INSERT INTO public.journal_details VALUES (7703, 5823, 'attr', 'start_date', '2020-08-10', '2020-08-14');
INSERT INTO public.journal_details VALUES (7704, 5824, 'attr', 'due_date', '2020-08-15', '2020-08-10');
INSERT INTO public.journal_details VALUES (7705, 5825, 'attr', 'due_date', '2020-08-10', '2020-08-11');
INSERT INTO public.journal_details VALUES (7706, 5825, 'attr', 'start_date', '2020-08-10', '2020-08-11');
INSERT INTO public.journal_details VALUES (7707, 5826, 'attr', 'due_date', '2020-08-10', '2020-08-11');
INSERT INTO public.journal_details VALUES (7708, 5826, 'attr', 'start_date', '2020-08-10', '2020-08-11');
INSERT INTO public.journal_details VALUES (7709, 5827, 'attr', 'due_date', '2020-08-10', '2020-08-11');
INSERT INTO public.journal_details VALUES (7710, 5827, 'attr', 'start_date', '2020-08-10', '2020-08-11');
INSERT INTO public.journal_details VALUES (7711, 5828, 'attr', 'assigned_to_id', '13', '12');
INSERT INTO public.journal_details VALUES (7712, 5829, 'attr', 'assigned_to_id', '13', '12');
INSERT INTO public.journal_details VALUES (7713, 5830, 'attr', 'assigned_to_id', '13', '12');
INSERT INTO public.journal_details VALUES (7714, 5831, 'attr', 'assigned_to_id', '13', '12');
INSERT INTO public.journal_details VALUES (7715, 5832, 'attr', 'due_date', '2020-08-11', '2020-08-12');
INSERT INTO public.journal_details VALUES (7716, 5832, 'attr', 'start_date', '2020-08-11', '2020-08-12');
INSERT INTO public.journal_details VALUES (7717, 5833, 'attr', 'due_date', '2020-08-11', '2020-08-12');
INSERT INTO public.journal_details VALUES (7718, 5833, 'attr', 'start_date', '2020-08-11', '2020-08-12');
INSERT INTO public.journal_details VALUES (7719, 5834, 'attr', 'due_date', '2020-08-10', '2020-08-11');
INSERT INTO public.journal_details VALUES (7720, 5834, 'attr', 'start_date', '2020-08-10', '2020-08-11');
INSERT INTO public.journal_details VALUES (7721, 5835, 'attr', 'due_date', '2020-08-10', '2020-08-13');
INSERT INTO public.journal_details VALUES (7722, 5835, 'attr', 'start_date', '2020-08-10', '2020-08-12');
INSERT INTO public.journal_details VALUES (7723, 5836, 'attr', 'due_date', '2020-08-15', '2020-08-10');
INSERT INTO public.journal_details VALUES (7724, 5836, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (7725, 5837, 'attr', 'due_date', NULL, '2020-08-10');
INSERT INTO public.journal_details VALUES (7726, 5837, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (7727, 5838, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (7728, 5839, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (7729, 5840, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7730, 5841, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7731, 5842, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (7732, 5843, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (7733, 5844, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (7734, 5845, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7735, 5846, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7736, 5847, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7737, 5848, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7738, 5849, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7739, 5850, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7740, 5851, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7741, 5852, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (7742, 5852, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7743, 5853, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (7744, 5853, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7745, 5854, 'attr', 'fixed_version_id', NULL, '9');
INSERT INTO public.journal_details VALUES (7746, 5855, 'attr', 'due_date', '2020-08-15', '2020-08-10');
INSERT INTO public.journal_details VALUES (7747, 5856, 'attr', 'due_date', '2020-08-10', '2020-08-11');
INSERT INTO public.journal_details VALUES (7748, 5856, 'attr', 'start_date', '2020-08-10', '2020-08-11');
INSERT INTO public.journal_details VALUES (7749, 5857, 'attr', 'due_date', '2020-08-10', '2020-08-11');
INSERT INTO public.journal_details VALUES (7750, 5857, 'attr', 'start_date', '2020-08-10', '2020-08-11');
INSERT INTO public.journal_details VALUES (7752, 5859, 'attr', 'subject', 'Hiển thị danh sách phiên đấu giá', 'Hiển thị danh sách phiên đấu giá bị từ chối');
INSERT INTO public.journal_details VALUES (7753, 5859, 'attr', 'due_date', NULL, '2020-08-10');
INSERT INTO public.journal_details VALUES (7754, 5859, 'attr', 'start_date', '2020-07-31', '2020-08-08');
INSERT INTO public.journal_details VALUES (7755, 5860, 'attr', 'subject', 'Nhập 1350 văn bản', 'Nhập 1400 văn bản');
INSERT INTO public.journal_details VALUES (7756, 5861, 'attr', 'subject', 'Bổ sung thông tin tìm kiếm trên bảng đồ', 'Bổ sung thông tin tìm kiếm trên bản đồ');
INSERT INTO public.journal_details VALUES (7757, 5862, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (7758, 5863, 'attr', 'due_date', '2020-08-07', '2020-08-12');
INSERT INTO public.journal_details VALUES (7759, 5867, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7760, 5868, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7761, 5869, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7762, 5870, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7763, 5871, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7764, 5872, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7765, 5873, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7766, 5874, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7767, 5875, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7768, 5876, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7769, 5877, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7770, 5878, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7771, 5879, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7773, 5881, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7774, 5882, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7775, 5883, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (7776, 5884, 'attr', 'due_date', NULL, '2020-08-10');
INSERT INTO public.journal_details VALUES (7777, 5884, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (7778, 5885, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (7779, 5886, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (7780, 5887, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (7781, 5888, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (7782, 5889, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (7783, 5890, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (7784, 5891, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (7785, 5892, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (7786, 5893, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (7787, 5894, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (7788, 5895, 'attachment', '67', NULL, 'QD 1459 TCMT ngay 12.11.2019 AQI.pdf');
INSERT INTO public.journal_details VALUES (7789, 5896, 'attr', 'fixed_version_id', NULL, '7');
INSERT INTO public.journal_details VALUES (7790, 5899, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7791, 5901, 'attr', 'done_ratio', '20', '70');
INSERT INTO public.journal_details VALUES (7792, 5902, 'attr', 'fixed_version_id', NULL, '9');
INSERT INTO public.journal_details VALUES (7793, 5903, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7794, 5904, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7795, 5905, 'attr', 'due_date', '2020-08-10', '2020-08-12');
INSERT INTO public.journal_details VALUES (7796, 5905, 'attr', 'start_date', '2020-08-10', '2020-08-12');
INSERT INTO public.journal_details VALUES (7797, 5906, 'attr', 'due_date', '2020-08-12', '2020-08-11');
INSERT INTO public.journal_details VALUES (7798, 5906, 'attr', 'start_date', '2020-08-12', '2020-08-11');
INSERT INTO public.journal_details VALUES (7799, 5907, 'attr', 'due_date', '2020-08-11', '2020-08-10');
INSERT INTO public.journal_details VALUES (7800, 5907, 'attr', 'start_date', '2020-08-11', '2020-08-10');
INSERT INTO public.journal_details VALUES (7801, 5908, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7802, 5909, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7803, 5910, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7804, 5911, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7805, 5912, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7806, 5913, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7807, 5914, 'attr', 'due_date', '2020-08-10', '2020-08-12');
INSERT INTO public.journal_details VALUES (7808, 5914, 'attr', 'status_id', '3', '1');
INSERT INTO public.journal_details VALUES (7809, 5914, 'attr', 'start_date', '2020-08-10', '2020-08-12');
INSERT INTO public.journal_details VALUES (7810, 5914, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (7811, 5915, 'attr', 'due_date', NULL, '2020-08-12');
INSERT INTO public.journal_details VALUES (7812, 5915, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (7813, 5915, 'attr', 'start_date', '2020-08-10', '2020-08-12');
INSERT INTO public.journal_details VALUES (7814, 5916, 'attr', 'parent_id', '1593', NULL);
INSERT INTO public.journal_details VALUES (7815, 5917, 'attr', 'parent_id', '1691', NULL);
INSERT INTO public.journal_details VALUES (7816, 5918, 'attr', 'parent_id', '1691', NULL);
INSERT INTO public.journal_details VALUES (7817, 5919, 'attr', 'parent_id', '1691', NULL);
INSERT INTO public.journal_details VALUES (7818, 5920, 'attr', 'parent_id', '1691', NULL);
INSERT INTO public.journal_details VALUES (7819, 5921, 'attr', 'parent_id', '1691', NULL);
INSERT INTO public.journal_details VALUES (7820, 5922, 'attr', 'parent_id', '1593', NULL);
INSERT INTO public.journal_details VALUES (7821, 5923, 'attr', 'parent_id', '1593', NULL);
INSERT INTO public.journal_details VALUES (7822, 5924, 'attr', 'parent_id', '1593', NULL);
INSERT INTO public.journal_details VALUES (7823, 5925, 'attr', 'parent_id', '1593', NULL);
INSERT INTO public.journal_details VALUES (7824, 5926, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7825, 5927, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7826, 5928, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7827, 5929, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7828, 5930, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7829, 5931, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7830, 5932, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7831, 5933, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7832, 5934, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7833, 5935, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (7834, 5936, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7835, 5937, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7836, 5938, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7837, 5939, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7838, 5940, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7839, 5941, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7840, 5942, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7841, 5943, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7842, 5944, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7843, 5945, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7844, 5946, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7845, 5947, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7846, 5948, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7847, 5949, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7848, 5950, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7849, 5951, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7850, 5952, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7851, 5953, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7852, 5954, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7853, 5955, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7854, 5956, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7855, 5957, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7856, 5958, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7857, 5959, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7858, 5960, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7859, 5961, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7860, 5962, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7861, 5963, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7862, 5964, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7863, 5965, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7864, 5966, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7865, 5967, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7866, 5968, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7867, 5969, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7868, 5970, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7869, 5971, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7870, 5972, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7871, 5973, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7872, 5974, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7873, 5975, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7874, 5976, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7875, 5977, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7876, 5978, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7877, 5979, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7878, 5980, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7879, 5981, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7880, 5982, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7881, 5983, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7882, 5984, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7883, 5985, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7884, 5986, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7885, 5987, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7886, 5988, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7887, 5989, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7888, 5990, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7889, 5991, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7890, 5992, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7891, 5993, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7892, 5994, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7893, 5995, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7894, 5996, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7895, 5997, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7896, 5998, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7897, 5999, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7898, 6000, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7899, 6001, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7900, 6002, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7901, 6003, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7902, 6004, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7903, 6005, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7904, 6006, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7905, 6007, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7906, 6008, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7907, 6009, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7908, 6010, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7909, 6011, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7910, 6012, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7911, 6013, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7912, 6014, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7913, 6015, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7914, 6016, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7915, 6017, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7916, 6018, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7917, 6019, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7918, 6020, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7919, 6021, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7920, 6022, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7921, 6023, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7922, 6024, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7923, 6025, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7924, 6026, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7925, 6027, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7926, 6028, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7927, 6029, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7928, 6030, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7929, 6031, 'attr', 'due_date', NULL, '2020-08-01');
INSERT INTO public.journal_details VALUES (7930, 6031, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7931, 6032, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7932, 6033, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7933, 6034, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7934, 6034, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7935, 6035, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7936, 6035, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7937, 6036, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7938, 6036, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7939, 6037, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7940, 6037, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7941, 6038, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7942, 6038, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7943, 6039, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7944, 6039, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7945, 6040, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7946, 6040, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7947, 6041, 'attr', 'due_date', NULL, '2020-08-10');
INSERT INTO public.journal_details VALUES (7948, 6042, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7949, 6043, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7950, 6044, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7951, 6045, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7952, 6046, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7953, 6047, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7954, 6048, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7955, 6049, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7956, 6050, 'attr', 'project_id', '4', '40');
INSERT INTO public.journal_details VALUES (7957, 6050, 'attr', 'fixed_version_id', NULL, '9');
INSERT INTO public.journal_details VALUES (7958, 6051, 'attr', 'subject', '4650 trang', '6515 trang');
INSERT INTO public.journal_details VALUES (7959, 6051, 'attr', 'description', '29/7 Hop 01 - 251 trang
30/7 Hop 11 - 415 trang
3/8  Hop 20 - 313 trang
     Hop 28 - 547 trang
     Hop 33 - 3 trang
     Hop 48 - 233 trang
     Hop 49 - 178 trang
4/8  Hop 70 - 416 trang
     Hop 75 - 542 trang
5/8  Hop 85 - 490 trang
     Hop 162 - 243 trang
6/8  Hop 88 - 357 trang
7/8  Hop 163 - 662 trang
', '29/7 Hop 01 - 251 trang
30/7 Hop 11 - 415 trang
3/8  Hop 20 - 313 trang
     Hop 28 - 547 trang
     Hop 33 - 3 trang
     Hop 48 - 233 trang
     Hop 49 - 178 trang
4/8  Hop 70 - 416 trang
     Hop 75 - 542 trang
5/8  Hop 85 - 490 trang
     Hop 162 - 243 trang
6/8  Hop 88 - 357 trang
7/8  Hop 163 - 662 trang
10/8 Hop 186 - 852 trang
11/8 Hop 201 - 763 trang
         205 - 250 trang');
INSERT INTO public.journal_details VALUES (7960, 6051, 'attr', 'done_ratio', '60', '90');
INSERT INTO public.journal_details VALUES (7961, 6052, 'attr', 'parent_id', '1017', NULL);
INSERT INTO public.journal_details VALUES (7962, 6053, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (7963, 6054, 'attr', 'fixed_version_id', '8', '6');
INSERT INTO public.journal_details VALUES (7964, 6055, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7965, 6056, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7966, 6057, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7967, 6058, 'attr', 'fixed_version_id', NULL, '7');
INSERT INTO public.journal_details VALUES (7968, 6059, 'attr', 'fixed_version_id', NULL, '7');
INSERT INTO public.journal_details VALUES (7969, 6060, 'attr', 'fixed_version_id', NULL, '7');
INSERT INTO public.journal_details VALUES (7970, 6061, 'attr', 'fixed_version_id', NULL, '7');
INSERT INTO public.journal_details VALUES (7971, 6062, 'attr', 'subject', 'Tìm kiếm nâng cao', 'Tìm kiếm nâng cao trên trang thông tin ');
INSERT INTO public.journal_details VALUES (7972, 6063, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7973, 6064, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7974, 6065, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7975, 6066, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7976, 6067, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (7977, 6068, 'attr', 'due_date', NULL, '2020-08-12');
INSERT INTO public.journal_details VALUES (7978, 6068, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7979, 6068, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7980, 6069, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (7981, 6070, 'attr', 'due_date', '2020-08-10', '2020-08-15');
INSERT INTO public.journal_details VALUES (7982, 6071, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (7983, 6071, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (7984, 6072, 'attr', 'subject', '6515 trang', '7144 trang');
INSERT INTO public.journal_details VALUES (8054, 6120, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8055, 6121, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8056, 6122, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8057, 6123, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8058, 6124, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8059, 6125, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8060, 6126, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8061, 6127, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8062, 6128, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8063, 6129, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8573, 6542, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7985, 6072, 'attr', 'description', '29/7 Hop 01 - 251 trang
30/7 Hop 11 - 415 trang
3/8  Hop 20 - 313 trang
     Hop 28 - 547 trang
     Hop 33 - 3 trang
     Hop 48 - 233 trang
     Hop 49 - 178 trang
4/8  Hop 70 - 416 trang
     Hop 75 - 542 trang
5/8  Hop 85 - 490 trang
     Hop 162 - 243 trang
6/8  Hop 88 - 357 trang
7/8  Hop 163 - 662 trang
10/8 Hop 186 - 852 trang
11/8 Hop 201 - 763 trang
         205 - 250 trang', '29/7 Hop 01 - 251 trang
30/7 Hop 11 - 415 trang
3/8  Hop 20 - 313 trang
     Hop 28 - 547 trang
     Hop 33 - 3 trang
     Hop 48 - 233 trang
     Hop 49 - 178 trang
4/8  Hop 70 - 416 trang
     Hop 75 - 542 trang
5/8  Hop 85 - 490 trang
     Hop 162 - 243 trang
6/8  Hop 88 - 357 trang
7/8  Hop 163 - 662 trang
10/8 Hop 186 - 852 trang
11/8 Hop 201 - 763 trang
         205 - 250 trang
12/8 Hop 69 - 629 trang');
INSERT INTO public.journal_details VALUES (7986, 6072, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (7987, 6073, 'attr', 'due_date', '2020-08-12', '2020-08-13');
INSERT INTO public.journal_details VALUES (7988, 6074, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7989, 6074, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7990, 6075, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (7991, 6075, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (7992, 6076, 'attr', 'description', 'Trần Lê Mỹ Nhơn đã viết:
> Ngày 03/08/2020: Hộp 34 - 532; Hộp 47 - 513
> Ngày 04/08/2020: Hộp 56 - 565; Hộp 64 - 550
> Ngày 05//08/2020: Hộp 78 - 432
> Ngày 06/08/2020: Hộp 86 - 1194; Hộp 58 - 399
> Ngày 07/08/2020: Hộp 66 - 263; Hộp 181 - 242', 'Trần Lê Mỹ Nhơn đã viết:
> Ngày 03/08/2020: Hộp 34 - 532; Hộp 47 - 513
> Ngày 04/08/2020: Hộp 56 - 565; Hộp 64 - 550
> Ngày 05//08/2020: Hộp 78 - 432
> Ngày 06/08/2020: Hộp 86 - 1194; Hộp 58 - 399
> Ngày 07/08/2020: Hộp 66 - 263; Hộp 181 - 242
> Ngày 10/08/2020: Hộp 183 - 550
> Ngày 11/08/2020: Hộp 192 - 1199
> Ngày 12/08/2020: Hộp 204 - 709; Hộp 167 - 401');
INSERT INTO public.journal_details VALUES (7993, 6076, 'attr', 'done_ratio', '60', '100');
INSERT INTO public.journal_details VALUES (7994, 6077, 'attr', 'description', 'Ngày 3/8. Hộp 46 : 525 trang
Ngày 4/8. Hộp 55 : 593 trang
          Hộp 60 : 10 trang
Ngày 5/8. Hộp 63 : 543 trang
Ngày 6/8. Hộp 77 : 482 trang
Ngày 7/8. Hộp 18 : 481 trang
          Hộp 22 : 290 trang ->Tổng 2924 trang


', 'Ngày 3/8. Hộp 46 : 525 trang
Ngày 4/8. Hộp 55 : 593 trang
          Hộp 60 : 10 trang
Ngày 5/8. Hộp 63 : 543 trang
Ngày 6/8. Hộp 77 : 482 trang
Ngày 7/8. Hộp 18 : 481 trang
          Hộp 22 : 290 trang ->Tổng 2924 trang
Ngày 10/8. Hộp 165 : 553 trang
Ngày 11/8. Hộp 185 : 797 trang
Ngày 12/8. Hộp 203 : 694 trang, Hộp 200 :  trang -> Tổng  trang




');
INSERT INTO public.journal_details VALUES (7995, 6077, 'attr', 'done_ratio', '60', '100');
INSERT INTO public.journal_details VALUES (7996, 6078, 'attr', 'due_date', NULL, '2020-08-13');
INSERT INTO public.journal_details VALUES (7997, 6078, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (7998, 6078, 'attr', 'fixed_version_id', NULL, '7');
INSERT INTO public.journal_details VALUES (7999, 6078, 'attr', 'start_date', '2020-08-12', '2020-08-13');
INSERT INTO public.journal_details VALUES (8000, 6079, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8001, 6080, 'attachment', '69', NULL, 'hoan-tra-tien-coc.png');
INSERT INTO public.journal_details VALUES (8002, 6081, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8003, 6083, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8004, 6084, 'attr', 'subject', 'Không handle click khi nhấp vào khu quy hoạch', 'Không handle click khi nhấp vào khu quy hoạch (Lỗi bản đồ -> update version)');
INSERT INTO public.journal_details VALUES (8005, 6084, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8006, 6084, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (8007, 6085, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (8008, 6085, 'attr', 'priority_id', '2', '3');
INSERT INTO public.journal_details VALUES (8009, 6086, 'attr', 'fixed_version_id', NULL, '9');
INSERT INTO public.journal_details VALUES (8010, 6087, 'attr', 'due_date', NULL, '2020-08-13');
INSERT INTO public.journal_details VALUES (8011, 6087, 'attr', 'fixed_version_id', NULL, '9');
INSERT INTO public.journal_details VALUES (8012, 6088, 'attr', 'estimated_hours', '10.0', '16.0');
INSERT INTO public.journal_details VALUES (8013, 6089, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8014, 6090, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8015, 6091, 'attr', 'due_date', NULL, '2020-08-22');
INSERT INTO public.journal_details VALUES (8016, 6091, 'attr', 'start_date', '2020-08-13', '2020-08-20');
INSERT INTO public.journal_details VALUES (8017, 6092, 'attr', 'due_date', NULL, '2020-08-22');
INSERT INTO public.journal_details VALUES (8018, 6092, 'attr', 'start_date', '2020-08-13', '2020-08-20');
INSERT INTO public.journal_details VALUES (8019, 6093, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8020, 6094, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8021, 6095, 'attr', 'subject', 'format number local VNI cho toàn phần mềm', 'format number theo kiểu 1.000,25 cho toàn phần mềm');
INSERT INTO public.journal_details VALUES (8022, 6096, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8023, 6097, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8024, 6098, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8025, 6099, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8026, 6100, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8027, 6101, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8028, 6102, 'attr', 'due_date', '2020-08-15', '2020-08-13');
INSERT INTO public.journal_details VALUES (8029, 6102, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8030, 6102, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (8031, 6103, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8032, 6104, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8033, 6105, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8034, 6106, 'attr', 'description', 'Ngày 3/8. Hộp 46 : 525 trang
Ngày 4/8. Hộp 55 : 593 trang
          Hộp 60 : 10 trang
Ngày 5/8. Hộp 63 : 543 trang
Ngày 6/8. Hộp 77 : 482 trang
Ngày 7/8. Hộp 18 : 481 trang
          Hộp 22 : 290 trang ->Tổng 2924 trang
Ngày 10/8. Hộp 165 : 553 trang
Ngày 11/8. Hộp 185 : 797 trang
Ngày 12/8. Hộp 203 : 694 trang, Hộp 200 :  trang -> Tổng  trang




', 'Ngày 3/8. Hộp 46 : 525 trang
Ngày 4/8. Hộp 55 : 593 trang
          Hộp 60 : 10 trang
Ngày 5/8. Hộp 63 : 543 trang
Ngày 6/8. Hộp 77 : 482 trang
Ngày 7/8. Hộp 18 : 481 trang
          Hộp 22 : 290 trang ->Tổng 2924 trang
Ngày 10/8. Hộp 165 : 553 trang
Ngày 11/8. Hộp 185 : 797 trang
Ngày 12/8. Hộp 203 : 694 trang
Ngày 13/8. Hộp 200 : 980 trang -> Tổng 3024 trang




');
INSERT INTO public.journal_details VALUES (8035, 6108, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (8036, 6109, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8037, 6109, 'attr', 'fixed_version_id', NULL, '11');
INSERT INTO public.journal_details VALUES (8038, 6110, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8039, 6110, 'attr', 'fixed_version_id', NULL, '11');
INSERT INTO public.journal_details VALUES (8040, 6111, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8041, 6111, 'attr', 'fixed_version_id', NULL, '11');
INSERT INTO public.journal_details VALUES (8042, 6112, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8043, 6112, 'attr', 'fixed_version_id', NULL, '11');
INSERT INTO public.journal_details VALUES (8044, 6113, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8045, 6113, 'attr', 'fixed_version_id', NULL, '11');
INSERT INTO public.journal_details VALUES (8046, 6114, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8047, 6114, 'attr', 'parent_id', '936', NULL);
INSERT INTO public.journal_details VALUES (8048, 6115, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8049, 6115, 'attr', 'parent_id', '988', NULL);
INSERT INTO public.journal_details VALUES (8050, 6116, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8051, 6117, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8052, 6118, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8053, 6119, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8064, 6130, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8065, 6131, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8066, 6132, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8067, 6133, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8068, 6134, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8069, 6135, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8070, 6136, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8071, 6137, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8072, 6138, 'attr', 'due_date', '2020-08-03', '2020-08-17');
INSERT INTO public.journal_details VALUES (8073, 6138, 'attr', 'start_date', '2020-08-03', '2020-08-17');
INSERT INTO public.journal_details VALUES (8074, 6139, 'attr', 'due_date', '2020-08-03', '2020-08-17');
INSERT INTO public.journal_details VALUES (8075, 6139, 'attr', 'start_date', '2020-08-03', '2020-08-17');
INSERT INTO public.journal_details VALUES (8076, 6140, 'attr', 'due_date', '2020-08-03', '2020-08-17');
INSERT INTO public.journal_details VALUES (8077, 6140, 'attr', 'start_date', '2020-08-03', '2020-08-17');
INSERT INTO public.journal_details VALUES (8078, 6141, 'attr', 'due_date', '2020-08-03', '2020-08-17');
INSERT INTO public.journal_details VALUES (8079, 6141, 'attr', 'start_date', '2020-08-01', '2020-08-17');
INSERT INTO public.journal_details VALUES (8080, 6142, 'attr', 'due_date', '2020-08-02', '2020-08-17');
INSERT INTO public.journal_details VALUES (8081, 6142, 'attr', 'start_date', '2020-08-02', '2020-08-17');
INSERT INTO public.journal_details VALUES (8082, 6143, 'attr', 'due_date', '2020-08-05', '2020-08-18');
INSERT INTO public.journal_details VALUES (8083, 6143, 'attr', 'start_date', '2020-08-05', '2020-08-18');
INSERT INTO public.journal_details VALUES (8084, 6144, 'attr', 'due_date', '2020-08-05', '2020-08-18');
INSERT INTO public.journal_details VALUES (8085, 6144, 'attr', 'start_date', '2020-08-05', '2020-08-18');
INSERT INTO public.journal_details VALUES (8086, 6145, 'attr', 'due_date', '2020-08-08', '2020-08-18');
INSERT INTO public.journal_details VALUES (8087, 6145, 'attr', 'start_date', '2020-08-08', '2020-08-18');
INSERT INTO public.journal_details VALUES (8088, 6146, 'attr', 'due_date', '2020-08-08', '2020-08-18');
INSERT INTO public.journal_details VALUES (8089, 6146, 'attr', 'start_date', '2020-08-08', '2020-08-18');
INSERT INTO public.journal_details VALUES (8090, 6147, 'attr', 'due_date', '2020-08-11', '2020-08-19');
INSERT INTO public.journal_details VALUES (8091, 6147, 'attr', 'start_date', '2020-08-11', '2020-08-19');
INSERT INTO public.journal_details VALUES (8092, 6148, 'attr', 'due_date', '2020-08-11', '2020-08-19');
INSERT INTO public.journal_details VALUES (8093, 6148, 'attr', 'start_date', '2020-08-11', '2020-08-19');
INSERT INTO public.journal_details VALUES (8094, 6149, 'attr', 'due_date', '2020-08-13', '2020-08-20');
INSERT INTO public.journal_details VALUES (8095, 6149, 'attr', 'start_date', '2020-08-13', '2020-08-20');
INSERT INTO public.journal_details VALUES (8096, 6150, 'attr', 'due_date', '2020-08-13', '2020-08-20');
INSERT INTO public.journal_details VALUES (8097, 6150, 'attr', 'start_date', '2020-08-13', '2020-08-20');
INSERT INTO public.journal_details VALUES (8098, 6151, 'attr', 'due_date', '2020-08-13', '2020-08-20');
INSERT INTO public.journal_details VALUES (8099, 6151, 'attr', 'start_date', '2020-08-13', '2020-08-20');
INSERT INTO public.journal_details VALUES (8100, 6152, 'attr', 'due_date', '2020-08-15', '2020-08-21');
INSERT INTO public.journal_details VALUES (8101, 6152, 'attr', 'start_date', '2020-08-15', '2020-08-21');
INSERT INTO public.journal_details VALUES (8102, 6153, 'attr', 'due_date', '2020-08-15', '2020-08-21');
INSERT INTO public.journal_details VALUES (8103, 6153, 'attr', 'start_date', '2020-08-15', '2020-08-21');
INSERT INTO public.journal_details VALUES (8104, 6154, 'attr', 'due_date', '2020-08-15', '2020-08-21');
INSERT INTO public.journal_details VALUES (8105, 6154, 'attr', 'start_date', '2020-08-15', '2020-08-21');
INSERT INTO public.journal_details VALUES (8106, 6155, 'attr', 'due_date', '2020-08-17', '2020-08-22');
INSERT INTO public.journal_details VALUES (8107, 6155, 'attr', 'start_date', '2020-08-17', '2020-08-22');
INSERT INTO public.journal_details VALUES (8108, 6156, 'attr', 'due_date', '2020-08-15', '2020-08-22');
INSERT INTO public.journal_details VALUES (8109, 6156, 'attr', 'start_date', '2020-08-15', '2020-08-22');
INSERT INTO public.journal_details VALUES (8110, 6157, 'attr', 'due_date', '2020-08-17', '2020-08-22');
INSERT INTO public.journal_details VALUES (8111, 6157, 'attr', 'start_date', '2020-08-17', '2020-08-22');
INSERT INTO public.journal_details VALUES (8112, 6158, 'attr', 'parent_id', '982', NULL);
INSERT INTO public.journal_details VALUES (8113, 6159, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8114, 6160, 'attr', 'parent_id', '973', NULL);
INSERT INTO public.journal_details VALUES (8115, 6161, 'attr', 'parent_id', '973', NULL);
INSERT INTO public.journal_details VALUES (8116, 6162, 'attr', 'parent_id', '973', NULL);
INSERT INTO public.journal_details VALUES (8117, 6163, 'attr', 'parent_id', '973', NULL);
INSERT INTO public.journal_details VALUES (8118, 6164, 'attr', 'parent_id', '973', NULL);
INSERT INTO public.journal_details VALUES (8119, 6165, 'attr', 'parent_id', '973', NULL);
INSERT INTO public.journal_details VALUES (8120, 6166, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8121, 6167, 'attr', 'fixed_version_id', '12', '11');
INSERT INTO public.journal_details VALUES (8122, 6168, 'attr', 'fixed_version_id', '12', '11');
INSERT INTO public.journal_details VALUES (8123, 6169, 'attr', 'fixed_version_id', '8', '13');
INSERT INTO public.journal_details VALUES (8124, 6170, 'attr', 'fixed_version_id', '8', '13');
INSERT INTO public.journal_details VALUES (8125, 6171, 'attr', 'due_date', '2020-08-17', '2020-08-24');
INSERT INTO public.journal_details VALUES (8126, 6171, 'attr', 'start_date', '2020-08-17', '2020-08-24');
INSERT INTO public.journal_details VALUES (8127, 6172, 'attr', 'due_date', '2020-08-17', '2020-08-24');
INSERT INTO public.journal_details VALUES (8128, 6172, 'attr', 'start_date', '2020-08-17', '2020-08-24');
INSERT INTO public.journal_details VALUES (8129, 6173, 'attr', 'fixed_version_id', NULL, '9');
INSERT INTO public.journal_details VALUES (8130, 6174, 'attr', 'assigned_to_id', '4', '13');
INSERT INTO public.journal_details VALUES (8131, 6175, 'attr', 'fixed_version_id', '7', '13');
INSERT INTO public.journal_details VALUES (8132, 6176, 'attr', 'assigned_to_id', '13', '12');
INSERT INTO public.journal_details VALUES (8133, 6177, 'attr', 'assigned_to_id', '13', '12');
INSERT INTO public.journal_details VALUES (8134, 6178, 'attr', 'assigned_to_id', '13', '12');
INSERT INTO public.journal_details VALUES (8135, 6179, 'attr', 'assigned_to_id', '13', '12');
INSERT INTO public.journal_details VALUES (8136, 6180, 'attr', 'assigned_to_id', '13', '12');
INSERT INTO public.journal_details VALUES (8137, 6181, 'attr', 'assigned_to_id', '13', '12');
INSERT INTO public.journal_details VALUES (8138, 6182, 'attr', 'assigned_to_id', '13', '12');
INSERT INTO public.journal_details VALUES (8139, 6183, 'attr', 'assigned_to_id', '13', '12');
INSERT INTO public.journal_details VALUES (8140, 6184, 'attr', 'assigned_to_id', '13', '12');
INSERT INTO public.journal_details VALUES (8141, 6185, 'attr', 'assigned_to_id', '13', '12');
INSERT INTO public.journal_details VALUES (8142, 6186, 'attr', 'assigned_to_id', '13', '12');
INSERT INTO public.journal_details VALUES (8143, 6187, 'attr', 'assigned_to_id', '13', '12');
INSERT INTO public.journal_details VALUES (8144, 6188, 'attr', 'assigned_to_id', '13', '12');
INSERT INTO public.journal_details VALUES (8145, 6189, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8146, 6189, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8147, 6190, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8148, 6190, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8149, 6191, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8150, 6191, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8151, 6192, 'attr', 'due_date', '2020-08-22', '2020-08-17');
INSERT INTO public.journal_details VALUES (8152, 6192, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (8153, 6192, 'attr', 'start_date', '2020-08-22', '2020-08-17');
INSERT INTO public.journal_details VALUES (8154, 6193, 'attr', 'fixed_version_id', NULL, '9');
INSERT INTO public.journal_details VALUES (8155, 6194, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8156, 6194, 'attr', 'assigned_to_id', '12', '13');
INSERT INTO public.journal_details VALUES (8157, 6194, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8158, 6195, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (8159, 6196, 'attr', 'due_date', '2020-08-15', '2020-08-24');
INSERT INTO public.journal_details VALUES (8160, 6196, 'attr', 'fixed_version_id', '7', '13');
INSERT INTO public.journal_details VALUES (8161, 6196, 'attr', 'start_date', '2020-08-15', '2020-08-24');
INSERT INTO public.journal_details VALUES (8162, 6197, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8163, 6198, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8164, 6199, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8165, 6200, 'attr', 'assigned_to_id', '12', '4');
INSERT INTO public.journal_details VALUES (8166, 6201, 'attr', 'assigned_to_id', '12', '4');
INSERT INTO public.journal_details VALUES (8167, 6202, 'attr', 'assigned_to_id', '12', '4');
INSERT INTO public.journal_details VALUES (8282, 6315, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8168, 6203, 'attr', 'assigned_to_id', '12', '4');
INSERT INTO public.journal_details VALUES (8169, 6204, 'attr', 'assigned_to_id', '12', '4');
INSERT INTO public.journal_details VALUES (8170, 6205, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8171, 6206, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8172, 6207, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8173, 6208, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8174, 6209, 'attr', 'done_ratio', '0', '70');
INSERT INTO public.journal_details VALUES (8175, 6210, 'attr', 'assigned_to_id', '12', '4');
INSERT INTO public.journal_details VALUES (8176, 6211, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8177, 6212, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8178, 6213, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8179, 6214, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8180, 6215, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8181, 6216, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8182, 6217, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8183, 6218, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8184, 6218, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8185, 6219, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8186, 6221, 'attr', 'status_id', '5', '3');
INSERT INTO public.journal_details VALUES (8187, 6222, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8188, 6222, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8189, 6224, 'attr', 'due_date', '2020-08-14', '2020-08-15');
INSERT INTO public.journal_details VALUES (8190, 6224, 'attr', 'start_date', '2020-08-13', '2020-08-14');
INSERT INTO public.journal_details VALUES (8191, 6225, 'attr', 'due_date', '2020-08-15', '2020-08-18');
INSERT INTO public.journal_details VALUES (8192, 6225, 'attr', 'start_date', '2020-08-15', '2020-08-17');
INSERT INTO public.journal_details VALUES (8193, 6226, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8194, 6226, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8195, 6227, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8196, 6227, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8197, 6228, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8198, 6228, 'attr', 'start_date', '2020-08-15', '2020-08-24');
INSERT INTO public.journal_details VALUES (8199, 6229, 'attr', 'due_date', '2020-08-12', '2020-08-17');
INSERT INTO public.journal_details VALUES (8200, 6229, 'attr', 'start_date', '2020-08-10', '2020-08-15');
INSERT INTO public.journal_details VALUES (8201, 6230, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (8202, 6232, 'attr', 'due_date', '2020-08-17', '2020-08-20');
INSERT INTO public.journal_details VALUES (8203, 6233, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8204, 6234, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8205, 6237, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8206, 6238, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8207, 6239, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8208, 6240, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8209, 6241, 'attr', 'due_date', '2020-08-13', '2020-08-24');
INSERT INTO public.journal_details VALUES (8210, 6241, 'attr', 'start_date', '2020-08-12', '2020-08-24');
INSERT INTO public.journal_details VALUES (8211, 6243, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8212, 6244, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8213, 6245, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8214, 6246, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8215, 6247, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (8216, 6248, 'attr', 'done_ratio', '30', '100');
INSERT INTO public.journal_details VALUES (8217, 6249, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8218, 6250, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (8219, 6251, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8220, 6252, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8221, 6253, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8222, 6254, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8223, 6255, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8224, 6256, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8225, 6257, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8226, 6258, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8227, 6259, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8228, 6260, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8229, 6261, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8230, 6262, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8231, 6263, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (8232, 6264, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (8233, 6265, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8234, 6266, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8235, 6267, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8236, 6268, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8237, 6269, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8238, 6270, 'attr', 'done_ratio', '40', '100');
INSERT INTO public.journal_details VALUES (8239, 6271, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8240, 6272, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8241, 6273, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8242, 6274, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8243, 6275, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8244, 6276, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8245, 6277, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8246, 6278, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8247, 6279, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8248, 6280, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8249, 6281, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8250, 6282, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8251, 6283, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8252, 6284, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8253, 6285, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (8254, 6286, 'attachment', '75', NULL, 'qcvn-14-nước-thải-sinh-hoạt.pdf');
INSERT INTO public.journal_details VALUES (8255, 6287, 'attr', 'done_ratio', '20', '100');
INSERT INTO public.journal_details VALUES (8256, 6288, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8257, 6289, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8258, 6290, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8259, 6292, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8260, 6293, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8261, 6294, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8262, 6295, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8263, 6296, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8264, 6297, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8265, 6298, 'attr', 'fixed_version_id', '7', '13');
INSERT INTO public.journal_details VALUES (8266, 6299, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8267, 6300, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8268, 6301, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8269, 6303, 'attr', 'fixed_version_id', '7', '13');
INSERT INTO public.journal_details VALUES (8270, 6304, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8271, 6305, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8272, 6306, 'attr', 'description', '', 'Hiện lên thông báo khi các khu quy hoạch trong KCN, CCN, DDT đã cho thuê hết');
INSERT INTO public.journal_details VALUES (8273, 6307, 'attr', 'fixed_version_id', '7', '13');
INSERT INTO public.journal_details VALUES (8274, 6308, 'attr', 'fixed_version_id', '7', '13');
INSERT INTO public.journal_details VALUES (8275, 6309, 'attr', 'fixed_version_id', '7', '13');
INSERT INTO public.journal_details VALUES (8276, 6310, 'attr', 'assigned_to_id', '12', '4');
INSERT INTO public.journal_details VALUES (8277, 6311, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8278, 6312, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8279, 6313, 'attr', 'due_date', '2020-08-15', '2020-08-17');
INSERT INTO public.journal_details VALUES (8280, 6314, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8281, 6315, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8283, 6316, 'attr', 'due_date', NULL, '2020-08-18');
INSERT INTO public.journal_details VALUES (8284, 6316, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (8285, 6317, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8286, 6318, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8287, 6319, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8288, 6320, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8289, 6321, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8290, 6322, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8291, 6323, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8292, 6324, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8293, 6325, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (8294, 6326, 'attr', 'description', '+ Giấy phép xây dựng: Số, ngày cấp, file đính kèm.
+ Giấy kiểm định: Số/thông báo, ngày cấp, file đính kèm.', '+ Giấy phép xây dựng: Số, ngày cấp, file đính kèm.
+ Giấy kiểm định: Số/thông báo, ngày cấp, file đính kèm.
Trong list trạm BTS.
');
INSERT INTO public.journal_details VALUES (8295, 6327, 'attr', 'description', '', 'Trong chức năng phê duyệt hồ sơ');
INSERT INTO public.journal_details VALUES (8296, 6328, 'attr', 'description', '', 'trong chức năng phê duyệt hồ sơ, làm nổi bật trạm bts trong bán kính 100m');
INSERT INTO public.journal_details VALUES (8297, 6329, 'attr', 'subject', 'Sở không được xóa file đính kèm.', 'Sở không được xóa file đính kèm trong chi tiết trạm bts (doanh nghiệp được xóa của nó)');
INSERT INTO public.journal_details VALUES (8298, 6330, 'attr', 'subject', 'Đối với tài khoản huyện không hiển thị trường truy vấn theo huyện/TP, thêm truy vấn theo xã, phường, thị trấn', 'Đối với tài khoản huyện không hiển thị trường truy vấn theo huyện/TP, thêm truy vấn theo xã, phường, thị trấn ');
INSERT INTO public.journal_details VALUES (8299, 6330, 'attr', 'description', '', 'trong map. phần truy vấn');
INSERT INTO public.journal_details VALUES (8300, 6331, 'attr', 'subject', 'Bổ sung thêm giấy phép kinh doanh bao gồm các thông tin: số, ngày cấp, file đính kèm.', 'Bổ sung thêm trường giấy phép kinh doanh bao gồm các thông tin: số, ngày cấp, file đính kèm.');
INSERT INTO public.journal_details VALUES (8301, 6332, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8302, 6333, 'attr', 'description', '', 'bỏ chức năng kí số, thay bằng nút lưu và kiểm tra có file pdf');
INSERT INTO public.journal_details VALUES (8303, 6334, 'attr', 'subject', 'Thay trướng góc ngẩn bằng số lượng ăn ten phát.', 'Thay trường góc ngẩn bằng số lượng ăn ten phát.');
INSERT INTO public.journal_details VALUES (8304, 6335, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (8305, 6336, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (8306, 6337, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (8307, 6338, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8308, 6339, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8309, 6340, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (8310, 6341, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (8311, 6342, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (8312, 6343, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8313, 6344, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8314, 6345, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8315, 6345, 'attr', 'fixed_version_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8316, 6346, 'attr', 'due_date', NULL, '2020-08-17');
INSERT INTO public.journal_details VALUES (8317, 6347, 'attr', 'due_date', '2020-08-22', '2020-08-17');
INSERT INTO public.journal_details VALUES (8318, 6347, 'attr', 'start_date', '2020-08-22', '2020-08-17');
INSERT INTO public.journal_details VALUES (8319, 6348, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8320, 6348, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8321, 6349, 'attr', 'subject', '/QuanTrac/AQIGioCuoiTungThongSo', '/QuanTrac/GiaTriCuoiTungThongSo');
INSERT INTO public.journal_details VALUES (8322, 6350, 'attr', 'due_date', '2020-08-15', '2020-08-22');
INSERT INTO public.journal_details VALUES (8323, 6350, 'attr', 'start_date', '2020-08-13', '2020-08-20');
INSERT INTO public.journal_details VALUES (8324, 6351, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (8325, 6352, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8326, 6353, 'attr', 'due_date', '2020-08-18', '2020-08-20');
INSERT INTO public.journal_details VALUES (8327, 6353, 'attr', 'start_date', '2020-08-17', '2020-08-18');
INSERT INTO public.journal_details VALUES (8328, 6354, 'attr', 'start_date', '2020-08-24', '2020-08-21');
INSERT INTO public.journal_details VALUES (8329, 6355, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (8330, 6356, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8331, 6357, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8332, 6358, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8333, 6359, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8334, 6360, 'attr', 'description', 'Ngày 3/8. Hộp 46 : 525 trang
Ngày 4/8. Hộp 55 : 593 trang
          Hộp 60 : 10 trang
Ngày 5/8. Hộp 63 : 543 trang
Ngày 6/8. Hộp 77 : 482 trang
Ngày 7/8. Hộp 18 : 481 trang
          Hộp 22 : 290 trang ->Tổng 2924 trang
Ngày 10/8. Hộp 165 : 553 trang
Ngày 11/8. Hộp 185 : 797 trang
Ngày 12/8. Hộp 203 : 694 trang
Ngày 13/8. Hộp 200 : 980 trang -> Tổng 3024 trang




', 'Ngày 3/8. Hộp 46 : 525 trang
Ngày 4/8. Hộp 55 : 593 trang
          Hộp 60 : 10 trang
Ngày 5/8. Hộp 63 : 543 trang
Ngày 6/8. Hộp 77 : 482 trang
Ngày 7/8. Hộp 18 : 481 trang
          Hộp 22 : 290 trang ->Tổng 2924 trang
Ngày 10/8. Hộp 165 : 553 trang
Ngày 11/8. Hộp 185 : 797 trang
Ngày 12/8. Hộp 203 : 694 trang
Ngày 13/8. Hộp 200 : 980 trang 
Ngày 14/8. Hộp 43  : 254 trang-> Tổng 3278 trang 




');
INSERT INTO public.journal_details VALUES (8335, 6361, 'attr', 'due_date', '2020-08-17', '2020-08-18');
INSERT INTO public.journal_details VALUES (8336, 6361, 'attr', 'start_date', '2020-08-17', '2020-08-18');
INSERT INTO public.journal_details VALUES (8337, 6362, 'attr', 'due_date', '2020-08-17', '2020-08-18');
INSERT INTO public.journal_details VALUES (8338, 6362, 'attr', 'start_date', '2020-08-17', '2020-08-18');
INSERT INTO public.journal_details VALUES (8339, 6363, 'attr', 'due_date', '2020-08-18', '2020-08-19');
INSERT INTO public.journal_details VALUES (8340, 6363, 'attr', 'start_date', '2020-08-18', '2020-08-19');
INSERT INTO public.journal_details VALUES (8341, 6364, 'attr', 'due_date', '2020-08-18', '2020-08-20');
INSERT INTO public.journal_details VALUES (8342, 6364, 'attr', 'start_date', '2020-08-18', '2020-08-20');
INSERT INTO public.journal_details VALUES (8343, 6365, 'attr', 'due_date', '2020-08-18', '2020-08-22');
INSERT INTO public.journal_details VALUES (8344, 6365, 'attr', 'start_date', '2020-08-18', '2020-08-22');
INSERT INTO public.journal_details VALUES (8345, 6366, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (8346, 6367, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8347, 6368, 'attr', 'fixed_version_id', NULL, '10');
INSERT INTO public.journal_details VALUES (8348, 6369, 'attr', 'fixed_version_id', NULL, '10');
INSERT INTO public.journal_details VALUES (8349, 6370, 'attr', 'fixed_version_id', NULL, '10');
INSERT INTO public.journal_details VALUES (8350, 6371, 'attr', 'fixed_version_id', NULL, '10');
INSERT INTO public.journal_details VALUES (8351, 6372, 'attr', 'due_date', '2020-08-18', '2020-08-20');
INSERT INTO public.journal_details VALUES (8352, 6372, 'attr', 'start_date', '2020-08-18', '2020-08-19');
INSERT INTO public.journal_details VALUES (8353, 6373, 'attr', 'due_date', '2020-08-18', '2020-08-20');
INSERT INTO public.journal_details VALUES (8354, 6373, 'attr', 'start_date', '2020-08-18', '2020-08-19');
INSERT INTO public.journal_details VALUES (8355, 6374, 'attr', 'due_date', '2020-08-18', '2020-08-20');
INSERT INTO public.journal_details VALUES (8356, 6374, 'attr', 'start_date', '2020-08-18', '2020-08-19');
INSERT INTO public.journal_details VALUES (8357, 6375, 'attr', 'due_date', '2020-08-17', '2020-08-18');
INSERT INTO public.journal_details VALUES (8358, 6375, 'attr', 'start_date', '2020-08-17', '2020-08-18');
INSERT INTO public.journal_details VALUES (8359, 6376, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (8360, 6377, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (8361, 6378, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (8362, 6379, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (8363, 6380, 'attr', 'subject', 'Fix lỗi phần Chỉnh sửa Khu công nghiệp', 'Fix lỗi phần Chỉnh sửa Khu công nghiệp/Cụm công nghiệp');
INSERT INTO public.journal_details VALUES (8364, 6381, 'attr', 'fixed_version_id', NULL, '13');
INSERT INTO public.journal_details VALUES (8365, 6382, 'attr', 'subject', 'Fix lỗi phần Chỉnh sửa Khu công nghiệp/Cụm công nghiệp', 'Fix lỗi phần Chỉnh sửa KCN/CCN');
INSERT INTO public.journal_details VALUES (8366, 6383, 'attr', 'fixed_version_id', NULL, '13');
INSERT INTO public.journal_details VALUES (8367, 6384, 'attr', 'fixed_version_id', NULL, '13');
INSERT INTO public.journal_details VALUES (8368, 6385, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8369, 6386, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8370, 6387, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8371, 6388, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8372, 6389, 'attr', 'due_date', '2020-08-18', '2020-08-19');
INSERT INTO public.journal_details VALUES (8373, 6389, 'attr', 'start_date', '2020-08-18', '2020-08-19');
INSERT INTO public.journal_details VALUES (8374, 6390, 'attr', 'due_date', '2020-08-19', '2020-08-18');
INSERT INTO public.journal_details VALUES (8375, 6390, 'attr', 'start_date', '2020-08-19', '2020-08-18');
INSERT INTO public.journal_details VALUES (8376, 6391, 'attr', 'subject', 'Pie chart ở trang chủ không đủ 100%', 'Pie chart tình trạng cấp phép ở trang chủ không đủ 100%');
INSERT INTO public.journal_details VALUES (8377, 6392, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8378, 6393, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8379, 6394, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (8380, 6395, 'attr', 'fixed_version_id', NULL, '13');
INSERT INTO public.journal_details VALUES (8381, 6396, 'attr', 'due_date', '2020-08-20', '2020-08-22');
INSERT INTO public.journal_details VALUES (8382, 6396, 'attr', 'start_date', '2020-08-18', '2020-08-20');
INSERT INTO public.journal_details VALUES (8383, 6397, 'attr', 'due_date', '2020-08-24', '2020-08-26');
INSERT INTO public.journal_details VALUES (8384, 6397, 'attr', 'start_date', '2020-08-21', '2020-08-24');
INSERT INTO public.journal_details VALUES (8385, 6398, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8386, 6399, 'attr', 'assigned_to_id', '10', '12');
INSERT INTO public.journal_details VALUES (8387, 6400, 'attr', 'assigned_to_id', '10', '12');
INSERT INTO public.journal_details VALUES (8388, 6401, 'attr', 'assigned_to_id', '10', '12');
INSERT INTO public.journal_details VALUES (8389, 6402, 'attr', 'assigned_to_id', '10', '12');
INSERT INTO public.journal_details VALUES (8390, 6403, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8391, 6404, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8392, 6405, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8393, 6406, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8394, 6407, 'attr', 'assigned_to_id', '12', '4');
INSERT INTO public.journal_details VALUES (8395, 6408, 'attr', 'assigned_to_id', '12', '4');
INSERT INTO public.journal_details VALUES (8396, 6409, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8397, 6410, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8398, 6411, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8399, 6412, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8400, 6413, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8401, 6414, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8402, 6415, 'attr', 'due_date', '2020-08-22', '2020-08-18');
INSERT INTO public.journal_details VALUES (8403, 6415, 'attr', 'start_date', '2020-08-22', '2020-08-18');
INSERT INTO public.journal_details VALUES (8404, 6416, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8405, 6416, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8406, 6417, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8407, 6418, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8408, 6419, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8409, 6420, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8410, 6421, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8411, 6422, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8412, 6423, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8413, 6424, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8414, 6425, 'attr', 'due_date', '2020-08-19', '2020-08-22');
INSERT INTO public.journal_details VALUES (8415, 6425, 'attr', 'start_date', '2020-08-19', '2020-08-22');
INSERT INTO public.journal_details VALUES (8416, 6426, 'attr', 'due_date', '2020-08-18', '2020-08-19');
INSERT INTO public.journal_details VALUES (8417, 6426, 'attr', 'start_date', '2020-08-18', '2020-08-19');
INSERT INTO public.journal_details VALUES (8418, 6427, 'attr', 'fixed_version_id', NULL, '13');
INSERT INTO public.journal_details VALUES (8419, 6428, 'attr', 'fixed_version_id', NULL, '13');
INSERT INTO public.journal_details VALUES (8420, 6429, 'attr', 'fixed_version_id', NULL, '13');
INSERT INTO public.journal_details VALUES (8421, 6430, 'attr', 'subject', 'Trường "Diện tích" đổi đơn vị tính là (m2)', 'Trường "Diện tích" đổi đơn vị tính là (m2) và thêm đơn vị tính (m2) cho các trường diện tích khác');
INSERT INTO public.journal_details VALUES (8422, 6431, 'attr', 'assigned_to_id', '12', '37');
INSERT INTO public.journal_details VALUES (8423, 6432, 'attr', 'due_date', '2020-08-20', '2020-08-19');
INSERT INTO public.journal_details VALUES (8424, 6432, 'attr', 'start_date', '2020-08-20', '2020-08-19');
INSERT INTO public.journal_details VALUES (8425, 6433, 'attr', 'assigned_to_id', '12', '37');
INSERT INTO public.journal_details VALUES (8426, 6434, 'attr', 'start_date', '2020-08-20', '2020-08-19');
INSERT INTO public.journal_details VALUES (8427, 6435, 'attr', 'assigned_to_id', '37', '12');
INSERT INTO public.journal_details VALUES (8428, 6436, 'attr', 'assigned_to_id', '12', '4');
INSERT INTO public.journal_details VALUES (8429, 6437, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (8430, 6438, 'attr', 'done_ratio', '0', '80');
INSERT INTO public.journal_details VALUES (8431, 6439, 'attr', 'due_date', '2020-08-19', '2020-08-20');
INSERT INTO public.journal_details VALUES (8432, 6439, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (8433, 6439, 'attr', 'start_date', '2020-08-17', '2020-08-19');
INSERT INTO public.journal_details VALUES (8434, 6439, 'attr', 'estimated_hours', NULL, '8.0');
INSERT INTO public.journal_details VALUES (8435, 6440, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8436, 6441, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8437, 6442, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8438, 6443, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8439, 6444, 'attr', 'fixed_version_id', NULL, '13');
INSERT INTO public.journal_details VALUES (8440, 6445, 'attr', 'fixed_version_id', NULL, '13');
INSERT INTO public.journal_details VALUES (8441, 6446, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (8442, 6447, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (8443, 6448, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (8444, 6449, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (8445, 6450, 'attr', 'due_date', '2020-08-18', '2020-08-20');
INSERT INTO public.journal_details VALUES (8446, 6450, 'attr', 'start_date', '2020-08-18', '2020-08-20');
INSERT INTO public.journal_details VALUES (8447, 6451, 'attr', 'due_date', '2020-08-20', '2020-08-22');
INSERT INTO public.journal_details VALUES (8448, 6451, 'attr', 'start_date', '2020-08-19', '2020-08-22');
INSERT INTO public.journal_details VALUES (8449, 6452, 'attr', 'due_date', '2020-08-20', '2020-08-22');
INSERT INTO public.journal_details VALUES (8450, 6452, 'attr', 'start_date', '2020-08-19', '2020-08-22');
INSERT INTO public.journal_details VALUES (8451, 6453, 'attr', 'due_date', '2020-08-20', '2020-08-22');
INSERT INTO public.journal_details VALUES (8452, 6453, 'attr', 'start_date', '2020-08-19', '2020-08-22');
INSERT INTO public.journal_details VALUES (8453, 6454, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8454, 6455, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8455, 6456, 'attr', 'due_date', NULL, '2020-08-24');
INSERT INTO public.journal_details VALUES (8456, 6456, 'attr', 'start_date', '2020-08-18', '2020-08-24');
INSERT INTO public.journal_details VALUES (8457, 6457, 'attr', 'due_date', NULL, '2020-08-25');
INSERT INTO public.journal_details VALUES (8458, 6457, 'attr', 'start_date', '2020-08-18', '2020-08-25');
INSERT INTO public.journal_details VALUES (8459, 6458, 'attr', 'due_date', NULL, '2020-08-26');
INSERT INTO public.journal_details VALUES (8460, 6458, 'attr', 'start_date', '2020-08-18', '2020-08-26');
INSERT INTO public.journal_details VALUES (8461, 6459, 'attr', 'due_date', NULL, '2020-08-27');
INSERT INTO public.journal_details VALUES (8462, 6459, 'attr', 'start_date', '2020-08-18', '2020-08-27');
INSERT INTO public.journal_details VALUES (8463, 6460, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8464, 6460, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8465, 6461, 'attr', 'subject', 'Chức năng chỉnh sửa nhanh thông tin quy hoạch không có tác dụng', 'Chức năng chỉnh sửa nhanh thông tin quy hoạch không có tác dụng (ko hiển thị tên ô quy hoạch của cty Habico)');
INSERT INTO public.journal_details VALUES (8466, 6462, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8467, 6462, 'attr', 'assigned_to_id', '19', '5');
INSERT INTO public.journal_details VALUES (8468, 6462, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8469, 6463, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8470, 6464, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8471, 6465, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (8472, 6466, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (8473, 6467, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8474, 6468, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8475, 6469, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (8476, 6470, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8477, 6471, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8478, 6472, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8479, 6473, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (8480, 6474, 'attr', 'due_date', NULL, '2020-08-20');
INSERT INTO public.journal_details VALUES (8481, 6474, 'attr', 'start_date', '2020-08-19', '2020-08-20');
INSERT INTO public.journal_details VALUES (8482, 6475, 'attr', 'due_date', NULL, '2020-08-24');
INSERT INTO public.journal_details VALUES (8483, 6475, 'attr', 'start_date', '2020-08-18', '2020-08-24');
INSERT INTO public.journal_details VALUES (8484, 6475, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8485, 6476, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8486, 6477, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (8487, 6479, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8488, 6479, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8489, 6480, 'attr', 'due_date', '2020-08-22', '2020-08-20');
INSERT INTO public.journal_details VALUES (8490, 6480, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8491, 6480, 'attr', 'start_date', '2020-08-22', '2020-08-20');
INSERT INTO public.journal_details VALUES (8492, 6480, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8493, 6481, 'attr', 'done_ratio', '80', '0');
INSERT INTO public.journal_details VALUES (8494, 6482, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (8495, 6483, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (8496, 6484, 'attr', 'status_id', '3', '4');
INSERT INTO public.journal_details VALUES (8497, 6485, 'attr', 'status_id', '3', '4');
INSERT INTO public.journal_details VALUES (8498, 6486, 'attr', 'status_id', '3', '4');
INSERT INTO public.journal_details VALUES (8499, 6487, 'attr', 'status_id', '3', '4');
INSERT INTO public.journal_details VALUES (8500, 6488, 'attr', 'status_id', '3', '4');
INSERT INTO public.journal_details VALUES (8501, 6489, 'attr', 'status_id', '3', '4');
INSERT INTO public.journal_details VALUES (8502, 6490, 'attr', 'status_id', '4', '5');
INSERT INTO public.journal_details VALUES (8503, 6491, 'attr', 'status_id', '4', '5');
INSERT INTO public.journal_details VALUES (8504, 6492, 'attr', 'status_id', '4', '5');
INSERT INTO public.journal_details VALUES (8505, 6493, 'attr', 'status_id', '4', '5');
INSERT INTO public.journal_details VALUES (8506, 6494, 'attr', 'status_id', '4', '5');
INSERT INTO public.journal_details VALUES (8507, 6495, 'attr', 'status_id', '4', '5');
INSERT INTO public.journal_details VALUES (8508, 6496, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8509, 6497, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8510, 6498, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8511, 6499, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8512, 6500, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8513, 6501, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8514, 6502, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8515, 6503, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8516, 6504, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8517, 6505, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8518, 6506, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8519, 6507, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8520, 6508, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8521, 6509, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8522, 6510, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8523, 6511, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8524, 6512, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8525, 6513, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8526, 6514, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (8527, 6515, 'attr', 'done_ratio', '0', '60');
INSERT INTO public.journal_details VALUES (8528, 6516, 'attr', 'assigned_to_id', '4', '12');
INSERT INTO public.journal_details VALUES (8529, 6517, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8530, 6517, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (8531, 6517, 'attr', 'estimated_hours', '8.0', '4.0');
INSERT INTO public.journal_details VALUES (8532, 6518, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8533, 6519, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8534, 6520, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8535, 6521, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8536, 6521, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8537, 6522, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8538, 6522, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8539, 6523, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8540, 6523, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8541, 6524, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8542, 6524, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8543, 6525, 'attr', 'subject', 'API QuanTrac/WQIGioTungThongSo', 'API WQIGioTungThongSo');
INSERT INTO public.journal_details VALUES (8544, 6525, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (8545, 6526, 'attr', 'start_date', '2020-08-26', '2020-08-23');
INSERT INTO public.journal_details VALUES (8546, 6527, 'attr', 'done_ratio', '0', '10');
INSERT INTO public.journal_details VALUES (8547, 6528, 'attr', 'start_date', '2020-08-23', '2020-08-26');
INSERT INTO public.journal_details VALUES (8548, 6528, 'attr', 'done_ratio', '10', '0');
INSERT INTO public.journal_details VALUES (8549, 6529, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8550, 6529, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8551, 6530, 'attr', 'assigned_to_id', '5', '19');
INSERT INTO public.journal_details VALUES (8552, 6531, 'attr', 'assigned_to_id', '5', '19');
INSERT INTO public.journal_details VALUES (8553, 6532, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8554, 6533, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8555, 6533, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8556, 6534, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (8557, 6535, 'attr', 'tracker_id', '3', '5');
INSERT INTO public.journal_details VALUES (8558, 6536, 'attr', 'description', 'Hộp 46: 337 hồ sơ
Hộp 79: 143 hồ sơ
Hộp 81: 29 hồ sơ
Hộp 89: 50 hồ sơ
Hộp 163: 446 hồ sơ', 'Hộp 46: 337 văn bản
Hộp 79: 143 
Hộp 81: 29 
Hộp 89: 50 
Hộp 163: 446 ');
INSERT INTO public.journal_details VALUES (8559, 6537, 'attr', 'due_date', '2020-08-19', '2020-08-24');
INSERT INTO public.journal_details VALUES (8560, 6537, 'attr', 'start_date', '2020-08-19', '2020-08-24');
INSERT INTO public.journal_details VALUES (8561, 6538, 'attr', 'due_date', '2020-08-20', '2020-08-24');
INSERT INTO public.journal_details VALUES (8562, 6538, 'attr', 'start_date', '2020-08-19', '2020-08-24');
INSERT INTO public.journal_details VALUES (8563, 6539, 'attr', 'due_date', '2020-08-20', '2020-08-24');
INSERT INTO public.journal_details VALUES (8564, 6539, 'attr', 'start_date', '2020-08-20', '2020-08-24');
INSERT INTO public.journal_details VALUES (8565, 6540, 'attr', 'due_date', '2020-08-21', '2020-08-24');
INSERT INTO public.journal_details VALUES (8566, 6540, 'attr', 'start_date', '2020-08-21', '2020-08-24');
INSERT INTO public.journal_details VALUES (8567, 6541, 'attr', 'due_date', '2020-08-24', '2020-08-25');
INSERT INTO public.journal_details VALUES (8568, 6541, 'attr', 'start_date', '2020-08-24', '2020-08-25');
INSERT INTO public.journal_details VALUES (8569, 6542, 'attr', 'due_date', NULL, '2020-08-24');
INSERT INTO public.journal_details VALUES (8570, 6542, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8571, 6542, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (8572, 6542, 'attr', 'start_date', '2020-08-19', '2020-08-24');
INSERT INTO public.journal_details VALUES (8574, 6543, 'attr', 'due_date', '2020-08-11', '2020-08-26');
INSERT INTO public.journal_details VALUES (8575, 6543, 'attr', 'fixed_version_id', '7', '13');
INSERT INTO public.journal_details VALUES (8576, 6543, 'attr', 'start_date', '2020-08-11', '2020-08-26');
INSERT INTO public.journal_details VALUES (8577, 6544, 'attr', 'due_date', '2020-08-11', '2020-08-26');
INSERT INTO public.journal_details VALUES (8578, 6544, 'attr', 'fixed_version_id', '7', '13');
INSERT INTO public.journal_details VALUES (8579, 6544, 'attr', 'start_date', '2020-08-11', '2020-08-26');
INSERT INTO public.journal_details VALUES (8580, 6545, 'attr', 'due_date', '2020-08-10', '2020-08-26');
INSERT INTO public.journal_details VALUES (8581, 6545, 'attr', 'fixed_version_id', '7', '13');
INSERT INTO public.journal_details VALUES (8582, 6545, 'attr', 'start_date', '2020-08-10', '2020-08-26');
INSERT INTO public.journal_details VALUES (8583, 6546, 'attr', 'due_date', '2020-08-11', '2020-08-26');
INSERT INTO public.journal_details VALUES (8584, 6546, 'attr', 'fixed_version_id', '7', '13');
INSERT INTO public.journal_details VALUES (8585, 6546, 'attr', 'start_date', '2020-08-11', '2020-08-26');
INSERT INTO public.journal_details VALUES (8586, 6547, 'attr', 'due_date', '2020-08-13', '2020-08-26');
INSERT INTO public.journal_details VALUES (8587, 6547, 'attr', 'fixed_version_id', '7', '13');
INSERT INTO public.journal_details VALUES (8588, 6547, 'attr', 'start_date', '2020-08-13', '2020-08-26');
INSERT INTO public.journal_details VALUES (8589, 6548, 'attr', 'due_date', '2020-08-14', '2020-08-26');
INSERT INTO public.journal_details VALUES (8590, 6548, 'attr', 'fixed_version_id', '7', '13');
INSERT INTO public.journal_details VALUES (8591, 6548, 'attr', 'start_date', '2020-08-14', '2020-08-26');
INSERT INTO public.journal_details VALUES (8592, 6549, 'attr', 'due_date', '2020-08-12', '2020-08-26');
INSERT INTO public.journal_details VALUES (8593, 6549, 'attr', 'fixed_version_id', '7', '13');
INSERT INTO public.journal_details VALUES (8594, 6549, 'attr', 'start_date', '2020-08-12', '2020-08-26');
INSERT INTO public.journal_details VALUES (8595, 6550, 'attr', 'due_date', '2020-08-13', '2020-08-26');
INSERT INTO public.journal_details VALUES (8596, 6550, 'attr', 'fixed_version_id', '7', '13');
INSERT INTO public.journal_details VALUES (8597, 6550, 'attr', 'start_date', '2020-08-13', '2020-08-26');
INSERT INTO public.journal_details VALUES (8598, 6551, 'attr', 'due_date', NULL, '2020-08-26');
INSERT INTO public.journal_details VALUES (8599, 6551, 'attr', 'fixed_version_id', '7', '13');
INSERT INTO public.journal_details VALUES (8600, 6551, 'attr', 'start_date', '2020-08-12', '2020-08-26');
INSERT INTO public.journal_details VALUES (8601, 6552, 'attr', 'due_date', '2020-08-15', '2020-08-26');
INSERT INTO public.journal_details VALUES (8602, 6552, 'attr', 'fixed_version_id', '7', '13');
INSERT INTO public.journal_details VALUES (8603, 6552, 'attr', 'start_date', '2020-08-15', '2020-08-26');
INSERT INTO public.journal_details VALUES (8604, 6553, 'attr', 'parent_id', '1794', NULL);
INSERT INTO public.journal_details VALUES (8605, 6554, 'attr', 'parent_id', '1794', NULL);
INSERT INTO public.journal_details VALUES (8606, 6555, 'attr', 'parent_id', '1794', NULL);
INSERT INTO public.journal_details VALUES (8607, 6556, 'attr', 'fixed_version_id', '7', '8');
INSERT INTO public.journal_details VALUES (8608, 6557, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8609, 6558, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8610, 6559, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8611, 6560, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8612, 6561, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8613, 6562, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8614, 6563, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8615, 6564, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8616, 6565, 'attr', 'due_date', '2020-08-10', '2020-08-26');
INSERT INTO public.journal_details VALUES (8617, 6565, 'attr', 'start_date', '2020-08-10', '2020-08-26');
INSERT INTO public.journal_details VALUES (8618, 6566, 'attr', 'due_date', '2020-08-12', '2020-08-26');
INSERT INTO public.journal_details VALUES (8619, 6566, 'attr', 'start_date', '2020-08-12', '2020-08-26');
INSERT INTO public.journal_details VALUES (8620, 6567, 'attr', 'due_date', '2020-08-10', '2020-08-26');
INSERT INTO public.journal_details VALUES (8621, 6567, 'attr', 'start_date', '2020-08-10', '2020-08-26');
INSERT INTO public.journal_details VALUES (8622, 6568, 'attr', 'due_date', '2020-08-12', '2020-08-26');
INSERT INTO public.journal_details VALUES (8623, 6568, 'attr', 'start_date', '2020-08-12', '2020-08-26');
INSERT INTO public.journal_details VALUES (8624, 6569, 'attr', 'due_date', '2020-08-12', '2020-08-26');
INSERT INTO public.journal_details VALUES (8625, 6569, 'attr', 'start_date', '2020-08-12', '2020-08-26');
INSERT INTO public.journal_details VALUES (8626, 6570, 'attr', 'due_date', NULL, '2020-08-26');
INSERT INTO public.journal_details VALUES (8627, 6570, 'attr', 'start_date', '2020-08-18', '2020-08-26');
INSERT INTO public.journal_details VALUES (8628, 6571, 'attr', 'due_date', NULL, '2020-08-26');
INSERT INTO public.journal_details VALUES (8629, 6571, 'attr', 'start_date', '2020-08-18', '2020-08-26');
INSERT INTO public.journal_details VALUES (8630, 6572, 'attr', 'due_date', NULL, '2020-08-26');
INSERT INTO public.journal_details VALUES (8631, 6572, 'attr', 'start_date', '2020-08-19', '2020-08-26');
INSERT INTO public.journal_details VALUES (8632, 6573, 'attr', 'due_date', NULL, '2020-08-26');
INSERT INTO public.journal_details VALUES (8633, 6573, 'attr', 'start_date', '2020-08-19', '2020-08-26');
INSERT INTO public.journal_details VALUES (8634, 6574, 'attr', 'due_date', NULL, '2020-08-26');
INSERT INTO public.journal_details VALUES (8635, 6574, 'attr', 'start_date', '2020-08-19', '2020-08-26');
INSERT INTO public.journal_details VALUES (8636, 6575, 'attr', 'due_date', NULL, '2020-08-26');
INSERT INTO public.journal_details VALUES (8637, 6575, 'attr', 'start_date', '2020-08-19', '2020-08-26');
INSERT INTO public.journal_details VALUES (8638, 6576, 'attr', 'due_date', NULL, '2020-08-26');
INSERT INTO public.journal_details VALUES (8639, 6576, 'attr', 'start_date', '2020-08-19', '2020-08-26');
INSERT INTO public.journal_details VALUES (8640, 6577, 'attr', 'due_date', NULL, '2020-08-26');
INSERT INTO public.journal_details VALUES (8641, 6577, 'attr', 'start_date', '2020-08-21', '2020-08-26');
INSERT INTO public.journal_details VALUES (8642, 6578, 'attr', 'due_date', NULL, '2020-08-26');
INSERT INTO public.journal_details VALUES (8643, 6578, 'attr', 'start_date', '2020-08-21', '2020-08-26');
INSERT INTO public.journal_details VALUES (8644, 6579, 'attr', 'fixed_version_id', '13', '7');
INSERT INTO public.journal_details VALUES (8645, 6580, 'attr', 'fixed_version_id', '13', '7');
INSERT INTO public.journal_details VALUES (8646, 6581, 'attr', 'fixed_version_id', '13', '8');
INSERT INTO public.journal_details VALUES (8647, 6582, 'attr', 'fixed_version_id', '13', '8');
INSERT INTO public.journal_details VALUES (8648, 6583, 'attr', 'fixed_version_id', '13', '8');
INSERT INTO public.journal_details VALUES (8649, 6584, 'attr', 'fixed_version_id', '13', '8');
INSERT INTO public.journal_details VALUES (8650, 6585, 'attr', 'due_date', '2020-08-24', '2020-08-26');
INSERT INTO public.journal_details VALUES (8651, 6585, 'attr', 'start_date', '2020-08-24', '2020-08-26');
INSERT INTO public.journal_details VALUES (8652, 6586, 'attr', 'due_date', '2020-08-24', '2020-08-26');
INSERT INTO public.journal_details VALUES (8653, 6586, 'attr', 'start_date', '2020-08-24', '2020-08-26');
INSERT INTO public.journal_details VALUES (8654, 6587, 'attr', 'due_date', '2020-08-24', '2020-08-26');
INSERT INTO public.journal_details VALUES (8655, 6587, 'attr', 'start_date', '2020-08-24', '2020-08-26');
INSERT INTO public.journal_details VALUES (8656, 6588, 'attr', 'start_date', '2020-08-24', '2020-08-26');
INSERT INTO public.journal_details VALUES (8657, 6589, 'attr', 'due_date', '2020-08-24', '2020-08-26');
INSERT INTO public.journal_details VALUES (8658, 6589, 'attr', 'start_date', '2020-08-24', '2020-08-26');
INSERT INTO public.journal_details VALUES (8659, 6590, 'attr', 'due_date', NULL, '2020-08-26');
INSERT INTO public.journal_details VALUES (8660, 6590, 'attr', 'start_date', '2020-08-24', '2020-08-26');
INSERT INTO public.journal_details VALUES (8661, 6591, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8662, 6592, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8663, 6593, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8664, 6594, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8665, 6595, 'attr', 'fixed_version_id', '8', '13');
INSERT INTO public.journal_details VALUES (8666, 6596, 'attr', 'fixed_version_id', '8', '13');
INSERT INTO public.journal_details VALUES (8667, 6597, 'attr', 'fixed_version_id', '8', '13');
INSERT INTO public.journal_details VALUES (8668, 6598, 'attr', 'fixed_version_id', '8', '13');
INSERT INTO public.journal_details VALUES (8669, 6599, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (8670, 6600, 'attr', 'fixed_version_id', NULL, '2');
INSERT INTO public.journal_details VALUES (8671, 6601, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (8672, 6602, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8673, 6602, 'attr', 'assigned_to_id', '37', '12');
INSERT INTO public.journal_details VALUES (8674, 6602, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8675, 6603, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (8676, 6604, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (8677, 6605, 'attr', 'assigned_to_id', '4', '10');
INSERT INTO public.journal_details VALUES (8678, 6606, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (8679, 6607, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (8680, 6608, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (8681, 6609, 'attr', 'due_date', '2020-08-26', '2020-08-25');
INSERT INTO public.journal_details VALUES (8682, 6609, 'attr', 'start_date', '2020-08-26', '2020-08-25');
INSERT INTO public.journal_details VALUES (8683, 6610, 'attr', 'due_date', '2020-08-26', '2020-08-25');
INSERT INTO public.journal_details VALUES (8684, 6610, 'attr', 'start_date', '2020-08-26', '2020-08-25');
INSERT INTO public.journal_details VALUES (8685, 6611, 'attr', 'due_date', '2020-08-26', '2020-08-25');
INSERT INTO public.journal_details VALUES (8686, 6611, 'attr', 'start_date', '2020-08-26', '2020-08-25');
INSERT INTO public.journal_details VALUES (8687, 6612, 'attr', 'due_date', '2020-08-27', '2020-08-26');
INSERT INTO public.journal_details VALUES (8688, 6612, 'attr', 'start_date', '2020-08-27', '2020-08-26');
INSERT INTO public.journal_details VALUES (8689, 6613, 'attr', 'fixed_version_id', NULL, '14');
INSERT INTO public.journal_details VALUES (8690, 6614, 'attr', 'fixed_version_id', NULL, '14');
INSERT INTO public.journal_details VALUES (8691, 6615, 'attr', 'due_date', '2020-08-24', '2020-08-25');
INSERT INTO public.journal_details VALUES (8692, 6615, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (8693, 6615, 'attr', 'assigned_to_id', '4', '12');
INSERT INTO public.journal_details VALUES (8694, 6615, 'attr', 'start_date', '2020-08-24', '2020-08-25');
INSERT INTO public.journal_details VALUES (8695, 6616, 'attr', 'due_date', '2020-08-24', '2020-08-25');
INSERT INTO public.journal_details VALUES (8696, 6616, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (8697, 6616, 'attr', 'start_date', '2020-08-24', '2020-08-25');
INSERT INTO public.journal_details VALUES (8698, 6617, 'attr', 'start_date', '2020-08-25', '2020-08-24');
INSERT INTO public.journal_details VALUES (8699, 6618, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8700, 6619, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8701, 6620, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8702, 6621, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8703, 6622, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8704, 6623, 'attr', 'due_date', '2020-08-22', '2020-08-26');
INSERT INTO public.journal_details VALUES (8705, 6623, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (8706, 6623, 'attr', 'start_date', '2020-08-20', '2020-08-25');
INSERT INTO public.journal_details VALUES (8707, 6624, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8708, 6624, 'attr', 'done_ratio', '60', '100');
INSERT INTO public.journal_details VALUES (8709, 6625, 'attr', 'fixed_version_id', '7', '8');
INSERT INTO public.journal_details VALUES (8710, 6626, 'attr', 'fixed_version_id', '7', '8');
INSERT INTO public.journal_details VALUES (8711, 6627, 'attr', 'fixed_version_id', '7', '8');
INSERT INTO public.journal_details VALUES (8712, 6628, 'attr', 'fixed_version_id', '7', '8');
INSERT INTO public.journal_details VALUES (8713, 6629, 'attr', 'due_date', '2020-08-17', '2020-08-15');
INSERT INTO public.journal_details VALUES (8714, 6630, 'attr', 'fixed_version_id', '8', '7');
INSERT INTO public.journal_details VALUES (8715, 6631, 'attr', 'fixed_version_id', '8', '7');
INSERT INTO public.journal_details VALUES (8716, 6632, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8717, 6632, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8718, 6633, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8719, 6634, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8720, 6635, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8721, 6636, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8722, 6637, 'attr', 'description', 'Hộp 46: 337 văn bản
Hộp 79: 143 
Hộp 81: 29 
Hộp 89: 50 
Hộp 163: 446 ', 'Hộp 46: 337 văn bản
Hộp 79: 143 
Hộp 81: 29 
Hộp 89: 50 
Hộp 163: 446 
Ngày 25/8 Hộp 203: 438');
INSERT INTO public.journal_details VALUES (8723, 6638, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (8724, 6639, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (8725, 6640, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8726, 6641, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8727, 6642, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8728, 6643, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8729, 6644, 'attachment', '97', NULL, 'dashboard.PNG');
INSERT INTO public.journal_details VALUES (8730, 6645, 'attr', 'assigned_to_id', '12', '13');
INSERT INTO public.journal_details VALUES (8731, 6646, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (8732, 6647, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (8733, 6648, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (8734, 6649, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (8735, 6650, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (8736, 6651, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (8737, 6652, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (8738, 6653, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (8739, 6654, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (8740, 6655, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (8741, 6656, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (8742, 6657, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (8743, 6658, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (8744, 6659, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (8745, 6660, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (8746, 6661, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (8747, 6662, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (8748, 6663, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (8749, 6664, 'attr', 'fixed_version_id', '2', '3');
INSERT INTO public.journal_details VALUES (8750, 6665, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8751, 6666, 'attr', 'due_date', '2020-08-29', '2020-08-26');
INSERT INTO public.journal_details VALUES (8752, 6666, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8753, 6666, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8754, 6667, 'attr', 'assigned_to_id', '12', '4');
INSERT INTO public.journal_details VALUES (8755, 6668, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8756, 6668, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8757, 6669, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8758, 6669, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8759, 6670, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8760, 6671, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8761, 6672, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8762, 6673, 'attr', 'assigned_to_id', '4', '12');
INSERT INTO public.journal_details VALUES (8763, 6674, 'attr', 'due_date', '2020-09-28', '2020-08-28');
INSERT INTO public.journal_details VALUES (8764, 6675, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (8765, 6676, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8766, 6676, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8767, 6677, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (8768, 6678, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8769, 6679, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8770, 6680, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8771, 6681, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (8772, 6682, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (8773, 6683, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (8774, 6684, 'attr', 'assigned_to_id', '4', '10');
INSERT INTO public.journal_details VALUES (8775, 6685, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8776, 6686, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8777, 6687, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8778, 6688, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8779, 6689, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8780, 6689, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8781, 6690, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8782, 6690, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8783, 6691, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8784, 6692, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8785, 6693, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8786, 6694, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8787, 6695, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8788, 6696, 'attr', 'fixed_version_id', NULL, '13');
INSERT INTO public.journal_details VALUES (8789, 6697, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8790, 6698, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (8791, 6699, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8792, 6700, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8793, 6701, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8794, 6702, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8795, 6703, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8796, 6704, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8797, 6705, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8798, 6706, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8799, 6707, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8800, 6708, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8801, 6709, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8802, 6710, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8803, 6711, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (8804, 6712, 'attr', 'fixed_version_id', '15', '16');
INSERT INTO public.journal_details VALUES (8805, 6713, 'attr', 'due_date', '2020-08-28', '2020-08-31');
INSERT INTO public.journal_details VALUES (8806, 6713, 'attr', 'start_date', '2020-08-28', '2020-08-31');
INSERT INTO public.journal_details VALUES (8807, 6714, 'attr', 'fixed_version_id', '3', '4');
INSERT INTO public.journal_details VALUES (8808, 6715, 'attr', 'fixed_version_id', '3', '4');
INSERT INTO public.journal_details VALUES (8809, 6716, 'attr', 'fixed_version_id', '3', '4');
INSERT INTO public.journal_details VALUES (8810, 6717, 'attr', 'fixed_version_id', '3', '4');
INSERT INTO public.journal_details VALUES (8811, 6718, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (8812, 6719, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8813, 6720, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8814, 6721, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8815, 6721, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8816, 6721, 'attr', 'estimated_hours', NULL, '16.0');
INSERT INTO public.journal_details VALUES (8817, 6722, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (8818, 6723, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8819, 6724, 'attr', 'description', '', 'Trong chức năng khu công nghiệp, cụm công nghiệp: khi click vào 1 row không xuất hiện details giống như ở điểm đầu tư');
INSERT INTO public.journal_details VALUES (8820, 6725, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8821, 6726, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8822, 6727, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8823, 6728, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8824, 6729, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8825, 6730, 'attr', 'assigned_to_id', '13', '4');
INSERT INTO public.journal_details VALUES (8826, 6731, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8827, 6732, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8828, 6733, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8829, 6734, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8830, 6735, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8831, 6736, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8832, 6737, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8833, 6738, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8834, 6739, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8835, 6740, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8836, 6741, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8837, 6742, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8838, 6743, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8839, 6744, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8840, 6745, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8841, 6746, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8842, 6747, 'attr', 'due_date', NULL, '2020-08-29');
INSERT INTO public.journal_details VALUES (8843, 6747, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8844, 6747, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (8845, 6748, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8846, 6749, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8847, 6750, 'attr', 'assigned_to_id', '13', '10');
INSERT INTO public.journal_details VALUES (8848, 6751, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8849, 6751, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8850, 6752, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8851, 6752, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8852, 6753, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8853, 6753, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8854, 6754, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8855, 6754, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8856, 6755, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8857, 6756, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8858, 6757, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8859, 6757, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8860, 6758, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (8861, 6759, 'attr', 'due_date', '2020-08-31', NULL);
INSERT INTO public.journal_details VALUES (8862, 6759, 'attr', 'fixed_version_id', '16', '21');
INSERT INTO public.journal_details VALUES (8863, 6759, 'attr', 'start_date', '2020-08-31', NULL);
INSERT INTO public.journal_details VALUES (8864, 6760, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8865, 6761, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8866, 6762, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8867, 6763, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8868, 6764, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (8869, 6765, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8870, 6766, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8871, 6767, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8872, 6768, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8873, 6769, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8874, 6770, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8875, 6771, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8876, 6772, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8877, 6773, 'attr', 'due_date', NULL, '2020-08-28');
INSERT INTO public.journal_details VALUES (8878, 6774, 'attr', 'due_date', NULL, '2020-08-29');
INSERT INTO public.journal_details VALUES (8879, 6774, 'attr', 'start_date', '2020-08-28', '2020-08-29');
INSERT INTO public.journal_details VALUES (8880, 6775, 'attr', 'due_date', NULL, '2020-08-28');
INSERT INTO public.journal_details VALUES (8881, 6776, 'attr', 'due_date', NULL, '2020-09-03');
INSERT INTO public.journal_details VALUES (8882, 6777, 'attr', 'subject', 'Câp nhật - chỉnh sửa giao diện', 'Câp nhật - chỉnh sửa giao diện ( trao đổi vs anh Linh )');
INSERT INTO public.journal_details VALUES (8883, 6778, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (8884, 6779, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (8885, 6780, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (8886, 6781, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (8887, 6782, 'attr', 'subject', 'Làm mới hoàn toàn thống kê trong danh sách đã xuất bảng lương ', 'Danh sách xã không hiện trong danh sách đã xuất bảng lương ');
INSERT INTO public.journal_details VALUES (8888, 6783, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (8889, 6784, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (8890, 6785, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (8891, 6786, 'attr', 'description', '', 'Đã bỏ nghiệp vụ liên quan đến người đại diện công ty.
Chỉ cần thông tin công ty, không quan tâm đến người đại diện.');
INSERT INTO public.journal_details VALUES (8892, 6787, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (8893, 6788, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (8894, 6789, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (8895, 6790, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (8896, 6791, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (8897, 6792, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (8898, 6793, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (8899, 6794, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (8900, 6795, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (8901, 6796, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (8902, 6797, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (8903, 6798, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (8904, 6799, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (8905, 6800, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (8906, 6801, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8907, 6802, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8908, 6803, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8909, 6804, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8910, 6805, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8911, 6806, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8912, 6807, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8913, 6808, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8914, 6809, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8915, 6810, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8916, 6811, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8917, 6812, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8918, 6813, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8919, 6814, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8920, 6815, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8921, 6816, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8922, 6817, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8923, 6818, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8924, 6819, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8925, 6820, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8926, 6821, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8927, 6822, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8928, 6823, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8929, 6824, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8930, 6825, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8931, 6826, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8932, 6827, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8933, 6828, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8934, 6829, 'attr', 'description', '', 'AuctionsOnlineAssetProperties = định nghĩa các thuộc tính cho tài sản.
Đã chuyển định nghĩa các thuộc tính cho tất cả tài sản trong phiên đấu giá => AuctionsOnlineProperties');
INSERT INTO public.journal_details VALUES (8935, 6830, 'attr', 'fixed_version_id', NULL, '18');
INSERT INTO public.journal_details VALUES (8936, 6831, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (8937, 6832, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (8938, 6833, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (8939, 6834, 'attr', 'due_date', '2020-08-31', '2020-09-04');
INSERT INTO public.journal_details VALUES (8940, 6834, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (8941, 6834, 'attr', 'start_date', '2020-08-31', '2020-09-03');
INSERT INTO public.journal_details VALUES (8942, 6834, 'attr', 'estimated_hours', NULL, '8.0');
INSERT INTO public.journal_details VALUES (8943, 6835, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8944, 6836, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8945, 6837, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8946, 6838, 'attr', 'due_date', '2020-08-20', '2020-09-04');
INSERT INTO public.journal_details VALUES (8947, 6838, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (8948, 6838, 'attr', 'start_date', '2020-08-19', '2020-09-03');
INSERT INTO public.journal_details VALUES (8949, 6838, 'attr', 'estimated_hours', NULL, '8.0');
INSERT INTO public.journal_details VALUES (8950, 6839, 'attr', 'due_date', '2020-09-16', '2020-09-14');
INSERT INTO public.journal_details VALUES (8951, 6840, 'attr', 'fixed_version_id', NULL, '20');
INSERT INTO public.journal_details VALUES (8952, 6841, 'attr', 'fixed_version_id', NULL, '20');
INSERT INTO public.journal_details VALUES (8953, 6842, 'attr', 'fixed_version_id', NULL, '20');
INSERT INTO public.journal_details VALUES (8954, 6843, 'attr', 'fixed_version_id', NULL, '20');
INSERT INTO public.journal_details VALUES (8955, 6844, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8956, 6845, 'attr', 'due_date', '2020-08-31', '2020-09-03');
INSERT INTO public.journal_details VALUES (8957, 6845, 'attr', 'start_date', '2020-08-31', '2020-09-03');
INSERT INTO public.journal_details VALUES (8958, 6845, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8959, 6846, 'attr', 'fixed_version_id', NULL, '20');
INSERT INTO public.journal_details VALUES (8960, 6847, 'attr', 'fixed_version_id', NULL, '20');
INSERT INTO public.journal_details VALUES (8961, 6848, 'attr', 'fixed_version_id', NULL, '20');
INSERT INTO public.journal_details VALUES (8962, 6849, 'attr', 'fixed_version_id', NULL, '23');
INSERT INTO public.journal_details VALUES (8963, 6850, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (8964, 6851, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (8965, 6852, 'attr', 'assigned_to_id', NULL, '40');
INSERT INTO public.journal_details VALUES (8966, 6852, 'attr', 'fixed_version_id', '20', '19');
INSERT INTO public.journal_details VALUES (8967, 6853, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (8968, 6854, 'attr', 'description', '', 'binhdinh:DMDiemQuanTrac');
INSERT INTO public.journal_details VALUES (8969, 6855, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8970, 6855, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8971, 6856, 'attr', 'start_date', '2020-09-03', '2020-09-07');
INSERT INTO public.journal_details VALUES (8972, 6857, 'attr', 'start_date', '2020-09-03', '2020-09-07');
INSERT INTO public.journal_details VALUES (8973, 6858, 'attr', 'start_date', '2020-09-03', '2020-09-07');
INSERT INTO public.journal_details VALUES (8974, 6859, 'attr', 'start_date', '2020-09-03', '2020-09-07');
INSERT INTO public.journal_details VALUES (8975, 6860, 'attr', 'due_date', '2020-09-14', '2020-09-12');
INSERT INTO public.journal_details VALUES (8976, 6861, 'attr', 'due_date', '2020-09-14', '2020-09-12');
INSERT INTO public.journal_details VALUES (8977, 6862, 'attr', 'due_date', '2020-09-14', '2020-09-12');
INSERT INTO public.journal_details VALUES (8978, 6863, 'attr', 'due_date', '2020-09-14', '2020-09-12');
INSERT INTO public.journal_details VALUES (8979, 6864, 'attr', 'due_date', '2020-09-14', '2020-09-12');
INSERT INTO public.journal_details VALUES (8980, 6865, 'attr', 'due_date', '2020-09-14', '2020-09-12');
INSERT INTO public.journal_details VALUES (8981, 6866, 'attr', 'due_date', '2020-09-14', '2020-09-12');
INSERT INTO public.journal_details VALUES (8982, 6867, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8983, 6867, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8984, 6868, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8985, 6869, 'attr', 'due_date', NULL, '2020-09-03');
INSERT INTO public.journal_details VALUES (8986, 6870, 'attr', 'due_date', NULL, '2020-09-03');
INSERT INTO public.journal_details VALUES (8987, 6870, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8988, 6871, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8989, 6871, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8990, 6872, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (8991, 6873, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8992, 6874, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (8993, 6875, 'attr', 'description', 'Hủy kết quả các vòng đấu trực tiếp, giữ lại kết quả vòng đấu gián tiếp', 'Hủy kết quả các vòng đấu trực tiếp, giữ lại kết quả vòng đấu gián tiếp
1. Nhận uuid tài sản từ request.
1. Tìm kiếm và xóa lịch sử đấu giá của tất cả hồ sơ trong tài sản có thuộc tính round > .
1. Tìm kiếm và thay đổi trạng thái của tất cả hồ sơ trong tài sản thành `Active`.');
INSERT INTO public.journal_details VALUES (8994, 6875, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (8995, 6876, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (8996, 6877, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (8997, 6878, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (8998, 6879, 'attr', 'fixed_version_id', NULL, '18');
INSERT INTO public.journal_details VALUES (8999, 6880, 'attr', 'fixed_version_id', NULL, '18');
INSERT INTO public.journal_details VALUES (9000, 6881, 'attr', 'fixed_version_id', NULL, '18');
INSERT INTO public.journal_details VALUES (9002, 6883, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (9003, 6884, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (9004, 6885, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (9006, 6887, 'attr', 'subject', 'Chỉnh sửa giao diện trang liệt kê danh sách trạng vượt ngưỡng', 'Chỉnh sửa giao diện trang liệt kê danh sách trạng vượt ngưỡng và giao diện thêm trạm');
INSERT INTO public.journal_details VALUES (9007, 6888, 'attr', 'subject', 'Khi thêm mới điểm quan trắc: ', 'Khi thêm mới điểm quan trắc:');
INSERT INTO public.journal_details VALUES (9008, 6888, 'attr', 'description', '', 'Khi click vào 1 điểm trên bản đồ để lấy tọa độ. Vị trí click củ không được xóa sau khi click vào 1 vị trí mới');
INSERT INTO public.journal_details VALUES (9009, 6888, 'attr', 'due_date', NULL, '2020-09-12');
INSERT INTO public.journal_details VALUES (9010, 6888, 'attr', 'start_date', '2020-09-04', '2020-09-07');
INSERT INTO public.journal_details VALUES (9011, 6889, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (9012, 6890, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9013, 6891, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9014, 6892, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (9015, 6893, 'attr', 'fixed_version_id', NULL, '19');
INSERT INTO public.journal_details VALUES (9016, 6894, 'attr', 'due_date', '2020-09-07', '2020-09-05');
INSERT INTO public.journal_details VALUES (9017, 6895, 'attr', 'parent_id', '1960', NULL);
INSERT INTO public.journal_details VALUES (9018, 6896, 'attr', 'due_date', '2020-09-05', '2020-09-07');
INSERT INTO public.journal_details VALUES (9019, 6896, 'attr', 'start_date', '2020-09-04', '2020-09-07');
INSERT INTO public.journal_details VALUES (9020, 6897, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9021, 6898, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9022, 6899, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (9023, 6900, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9024, 6900, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9025, 6901, 'attr', 'fixed_version_id', NULL, '3');
INSERT INTO public.journal_details VALUES (9026, 6902, 'attr', 'due_date', '2020-09-04', '2020-09-07');
INSERT INTO public.journal_details VALUES (9027, 6902, 'attr', 'start_date', '2020-09-03', '2020-09-05');
INSERT INTO public.journal_details VALUES (9028, 6903, 'attr', 'due_date', '2020-08-20', '2020-09-08');
INSERT INTO public.journal_details VALUES (9029, 6903, 'attr', 'start_date', '2020-08-19', '2020-09-05');
INSERT INTO public.journal_details VALUES (9030, 6904, 'attr', 'due_date', '2020-08-22', '2020-09-08');
INSERT INTO public.journal_details VALUES (9031, 6904, 'attr', 'start_date', '2020-08-21', '2020-09-05');
INSERT INTO public.journal_details VALUES (9032, 6905, 'attr', 'due_date', '2020-08-20', '2020-09-12');
INSERT INTO public.journal_details VALUES (9033, 6905, 'attr', 'start_date', '2020-08-19', '2020-09-07');
INSERT INTO public.journal_details VALUES (9034, 6906, 'attr', 'due_date', '2020-08-20', '2020-09-12');
INSERT INTO public.journal_details VALUES (9035, 6906, 'attr', 'start_date', '2020-08-19', '2020-09-07');
INSERT INTO public.journal_details VALUES (9036, 6907, 'attr', 'due_date', '2020-08-22', '2020-09-12');
INSERT INTO public.journal_details VALUES (9037, 6907, 'attr', 'start_date', '2020-08-21', '2020-09-07');
INSERT INTO public.journal_details VALUES (9038, 6908, 'attr', 'due_date', '2020-08-22', '2020-09-12');
INSERT INTO public.journal_details VALUES (9039, 6908, 'attr', 'start_date', '2020-08-21', '2020-09-05');
INSERT INTO public.journal_details VALUES (9040, 6909, 'attr', 'fixed_version_id', '2', '4');
INSERT INTO public.journal_details VALUES (9041, 6910, 'attr', 'due_date', '2020-08-22', '2020-09-12');
INSERT INTO public.journal_details VALUES (9042, 6910, 'attr', 'start_date', '2020-08-21', '2020-09-05');
INSERT INTO public.journal_details VALUES (9043, 6911, 'attr', 'due_date', '2020-08-25', '2020-09-12');
INSERT INTO public.journal_details VALUES (9044, 6911, 'attr', 'start_date', '2020-08-24', '2020-09-05');
INSERT INTO public.journal_details VALUES (9045, 6912, 'attr', 'due_date', '2020-08-24', '2020-09-12');
INSERT INTO public.journal_details VALUES (9046, 6912, 'attr', 'start_date', '2020-08-24', '2020-09-05');
INSERT INTO public.journal_details VALUES (9047, 6913, 'attr', 'due_date', '2020-08-25', '2020-09-12');
INSERT INTO public.journal_details VALUES (9048, 6913, 'attr', 'start_date', '2020-08-24', '2020-09-05');
INSERT INTO public.journal_details VALUES (9049, 6914, 'attr', 'due_date', '2020-08-25', '2020-09-12');
INSERT INTO public.journal_details VALUES (9050, 6914, 'attr', 'start_date', '2020-08-25', '2020-09-05');
INSERT INTO public.journal_details VALUES (9051, 6915, 'attr', 'due_date', '2020-08-27', '2020-09-12');
INSERT INTO public.journal_details VALUES (9052, 6915, 'attr', 'start_date', '2020-08-26', '2020-09-05');
INSERT INTO public.journal_details VALUES (9053, 6916, 'attr', 'due_date', '2020-08-27', '2020-09-12');
INSERT INTO public.journal_details VALUES (9054, 6916, 'attr', 'start_date', '2020-08-26', '2020-09-05');
INSERT INTO public.journal_details VALUES (9055, 6917, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9056, 6918, 'attr', 'due_date', '2020-08-24', '2020-09-12');
INSERT INTO public.journal_details VALUES (9057, 6918, 'attr', 'start_date', '2020-08-24', '2020-09-05');
INSERT INTO public.journal_details VALUES (9058, 6919, 'attr', 'due_date', '2020-08-27', '2020-09-21');
INSERT INTO public.journal_details VALUES (9059, 6919, 'attr', 'start_date', '2020-08-26', '2020-09-14');
INSERT INTO public.journal_details VALUES (9060, 6920, 'attr', 'fixed_version_id', '3', '4');
INSERT INTO public.journal_details VALUES (9061, 6921, 'attr', 'assigned_to_id', '19', '8');
INSERT INTO public.journal_details VALUES (9062, 6921, 'attr', 'fixed_version_id', '4', '3');
INSERT INTO public.journal_details VALUES (9063, 6922, 'attr', 'fixed_version_id', '3', '4');
INSERT INTO public.journal_details VALUES (9064, 6923, 'attr', 'fixed_version_id', '3', '4');
INSERT INTO public.journal_details VALUES (9065, 6924, 'attr', 'fixed_version_id', '3', '4');
INSERT INTO public.journal_details VALUES (9066, 6925, 'attr', 'fixed_version_id', '3', '4');
INSERT INTO public.journal_details VALUES (9067, 6926, 'attr', 'fixed_version_id', '3', '4');
INSERT INTO public.journal_details VALUES (9068, 6927, 'attr', 'fixed_version_id', '3', '4');
INSERT INTO public.journal_details VALUES (9069, 6928, 'attr', 'fixed_version_id', '3', '4');
INSERT INTO public.journal_details VALUES (9070, 6929, 'attr', 'fixed_version_id', '3', '4');
INSERT INTO public.journal_details VALUES (9071, 6930, 'attr', 'fixed_version_id', '3', '4');
INSERT INTO public.journal_details VALUES (9072, 6931, 'attr', 'fixed_version_id', '3', '4');
INSERT INTO public.journal_details VALUES (9073, 6932, 'attr', 'due_date', '2020-08-27', '2020-09-21');
INSERT INTO public.journal_details VALUES (9074, 6932, 'attr', 'start_date', '2020-08-26', '2020-09-14');
INSERT INTO public.journal_details VALUES (9075, 6933, 'attr', 'due_date', '2020-08-15', '2020-09-21');
INSERT INTO public.journal_details VALUES (9076, 6933, 'attr', 'start_date', '2020-08-13', '2020-09-14');
INSERT INTO public.journal_details VALUES (9077, 6934, 'attr', 'due_date', '2020-08-27', '2020-09-21');
INSERT INTO public.journal_details VALUES (9078, 6934, 'attr', 'start_date', '2020-08-24', '2020-09-14');
INSERT INTO public.journal_details VALUES (9079, 6935, 'attr', 'due_date', '2020-08-27', '2020-09-21');
INSERT INTO public.journal_details VALUES (9080, 6935, 'attr', 'start_date', '2020-08-26', '2020-09-12');
INSERT INTO public.journal_details VALUES (9081, 6936, 'attr', 'due_date', '2020-08-27', '2020-09-21');
INSERT INTO public.journal_details VALUES (9082, 6936, 'attr', 'start_date', '2020-08-26', '2020-09-12');
INSERT INTO public.journal_details VALUES (9083, 6937, 'attr', 'due_date', '2020-08-28', '2020-09-21');
INSERT INTO public.journal_details VALUES (9084, 6937, 'attr', 'start_date', '2020-08-28', '2020-09-14');
INSERT INTO public.journal_details VALUES (9085, 6938, 'attachment', '100', NULL, 'clipboard-202009051022-otpob.png');
INSERT INTO public.journal_details VALUES (9086, 6939, 'attr', 'due_date', '2020-08-28', '2020-09-21');
INSERT INTO public.journal_details VALUES (9087, 6939, 'attr', 'start_date', '2020-08-28', '2020-09-14');
INSERT INTO public.journal_details VALUES (9088, 6940, 'attr', 'due_date', '2020-08-29', '2020-09-21');
INSERT INTO public.journal_details VALUES (9089, 6940, 'attr', 'start_date', '2020-08-29', '2020-09-14');
INSERT INTO public.journal_details VALUES (9090, 6941, 'attr', 'due_date', '2020-08-28', '2020-09-21');
INSERT INTO public.journal_details VALUES (9091, 6941, 'attr', 'start_date', '2020-08-28', '2020-09-14');
INSERT INTO public.journal_details VALUES (9092, 6942, 'attr', 'due_date', '2020-08-28', '2020-09-21');
INSERT INTO public.journal_details VALUES (9093, 6942, 'attr', 'start_date', '2020-08-28', '2020-09-14');
INSERT INTO public.journal_details VALUES (9094, 6943, 'attr', 'due_date', '2020-09-05', '2020-09-21');
INSERT INTO public.journal_details VALUES (9095, 6943, 'attr', 'start_date', '2020-08-31', '2020-09-14');
INSERT INTO public.journal_details VALUES (9192, 7011, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9096, 6944, 'attr', 'due_date', '2020-09-05', '2020-09-21');
INSERT INTO public.journal_details VALUES (9097, 6944, 'attr', 'start_date', '2020-09-01', '2020-09-14');
INSERT INTO public.journal_details VALUES (9098, 6945, 'attr', 'due_date', '2020-09-05', '2020-09-21');
INSERT INTO public.journal_details VALUES (9099, 6945, 'attr', 'start_date', '2020-09-01', '2020-09-14');
INSERT INTO public.journal_details VALUES (9100, 6946, 'attr', 'due_date', '2020-09-05', '2020-09-21');
INSERT INTO public.journal_details VALUES (9101, 6946, 'attr', 'start_date', '2020-09-01', '2020-09-14');
INSERT INTO public.journal_details VALUES (9102, 6947, 'attr', 'due_date', '2020-09-05', '2020-09-21');
INSERT INTO public.journal_details VALUES (9103, 6947, 'attr', 'start_date', '2020-09-01', '2020-09-14');
INSERT INTO public.journal_details VALUES (9104, 6948, 'attr', 'due_date', '2020-09-05', '2020-09-21');
INSERT INTO public.journal_details VALUES (9105, 6948, 'attr', 'start_date', '2020-09-01', '2020-09-14');
INSERT INTO public.journal_details VALUES (9106, 6949, 'attr', 'due_date', '2020-09-05', '2020-09-21');
INSERT INTO public.journal_details VALUES (9107, 6949, 'attr', 'start_date', '2020-09-01', '2020-09-14');
INSERT INTO public.journal_details VALUES (9108, 6950, 'attr', 'due_date', '2020-09-05', '2020-09-21');
INSERT INTO public.journal_details VALUES (9109, 6950, 'attr', 'start_date', '2020-09-01', '2020-09-14');
INSERT INTO public.journal_details VALUES (9110, 6951, 'attr', 'due_date', '2020-09-05', '2020-09-21');
INSERT INTO public.journal_details VALUES (9111, 6951, 'attr', 'start_date', '2020-09-01', '2020-09-14');
INSERT INTO public.journal_details VALUES (9112, 6952, 'attr', 'due_date', '2020-09-05', '2020-09-21');
INSERT INTO public.journal_details VALUES (9113, 6952, 'attr', 'start_date', '2020-09-01', '2020-09-14');
INSERT INTO public.journal_details VALUES (9114, 6953, 'attr', 'due_date', '2020-09-05', '2020-09-21');
INSERT INTO public.journal_details VALUES (9115, 6953, 'attr', 'start_date', '2020-09-01', '2020-09-14');
INSERT INTO public.journal_details VALUES (9116, 6954, 'attr', 'due_date', '2020-09-05', '2020-09-21');
INSERT INTO public.journal_details VALUES (9117, 6954, 'attr', 'start_date', '2020-09-01', '2020-09-14');
INSERT INTO public.journal_details VALUES (9118, 6955, 'attr', 'due_date', '2020-09-05', '2020-09-21');
INSERT INTO public.journal_details VALUES (9119, 6955, 'attr', 'start_date', '2020-09-01', '2020-09-14');
INSERT INTO public.journal_details VALUES (9120, 6956, 'attr', 'due_date', '2020-09-05', '2020-09-21');
INSERT INTO public.journal_details VALUES (9121, 6956, 'attr', 'start_date', '2020-09-01', '2020-09-14');
INSERT INTO public.journal_details VALUES (9122, 6957, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9123, 6957, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9124, 6958, 'attr', 'fixed_version_id', NULL, '20');
INSERT INTO public.journal_details VALUES (9125, 6959, 'attr', 'fixed_version_id', NULL, '20');
INSERT INTO public.journal_details VALUES (9126, 6960, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (9127, 6961, 'attr', 'due_date', NULL, '2020-09-07');
INSERT INTO public.journal_details VALUES (9128, 6961, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (9129, 6962, 'attr', 'due_date', '2020-09-12', '2020-09-07');
INSERT INTO public.journal_details VALUES (9130, 6963, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9131, 6964, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9132, 6965, 'attr', 'due_date', '2020-09-12', '2020-09-07');
INSERT INTO public.journal_details VALUES (9133, 6966, 'attr', 'subject', 'Vẽ hình theo tọa độ nhập', 'Hiển thị vị trí trạm quan trắc trên bản đồ');
INSERT INTO public.journal_details VALUES (9134, 6966, 'attr', 'due_date', '2020-09-12', '2020-09-08');
INSERT INTO public.journal_details VALUES (9135, 6966, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (9136, 6967, 'attr', 'start_date', '2020-09-07', '2020-09-08');
INSERT INTO public.journal_details VALUES (9137, 6968, 'attr', 'description', 'Cho phép vẽ hình trên bản đồ nền theo các tọa độ nhập.
- Nhập tọa độ
- Nhập các thuộc tính về điểm quan trắc
- Vẽ/ hiển thị trạm trên các lớp bản đồ
- Lưu trạm mới vào CSDL
', 'Cho phép vẽ hình trên bản đồ nền theo các tọa độ nhập.
- Nhập tọa độ
- Nhập các thuộc tính về điểm quan trắc
- Vẽ/ hiển thị trạm trên các lớp bản đồ
- Lưu trạm mới vào CSDL

(Khi thêm mới 1 điểm quan trắc thành công thì hiển thị điểm đó lên bản đồ)
');
INSERT INTO public.journal_details VALUES (9138, 6969, 'attr', 'due_date', '2020-09-12', '2020-09-09');
INSERT INTO public.journal_details VALUES (9139, 6969, 'attr', 'start_date', '2020-09-07', '2020-09-09');
INSERT INTO public.journal_details VALUES (9140, 6970, 'attr', 'start_date', '2020-09-07', '2020-09-12');
INSERT INTO public.journal_details VALUES (9141, 6971, 'attr', 'due_date', '2020-09-12', '2020-09-11');
INSERT INTO public.journal_details VALUES (9142, 6971, 'attr', 'start_date', '2020-09-07', '2020-09-11');
INSERT INTO public.journal_details VALUES (9143, 6972, 'attr', 'due_date', '2020-09-12', '2020-09-08');
INSERT INTO public.journal_details VALUES (9144, 6972, 'attr', 'start_date', '2020-09-07', '2020-09-08');
INSERT INTO public.journal_details VALUES (9145, 6973, 'attr', 'due_date', '2020-09-12', '2020-09-07');
INSERT INTO public.journal_details VALUES (9146, 6974, 'attr', 'due_date', '2020-09-12', '2020-09-08');
INSERT INTO public.journal_details VALUES (9147, 6974, 'attr', 'start_date', '2020-09-07', '2020-09-08');
INSERT INTO public.journal_details VALUES (9148, 6975, 'attr', 'due_date', '2020-09-08', '2020-09-10');
INSERT INTO public.journal_details VALUES (9149, 6975, 'attr', 'start_date', '2020-09-08', '2020-09-10');
INSERT INTO public.journal_details VALUES (9150, 6976, 'attr', 'due_date', '2020-09-07', '2020-09-10');
INSERT INTO public.journal_details VALUES (9151, 6976, 'attr', 'start_date', '2020-09-07', '2020-09-10');
INSERT INTO public.journal_details VALUES (9152, 6977, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9153, 6978, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9154, 6979, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9155, 6980, 'attr', 'subject', 'Thực hiện cắt âm thanh cho 10 File "32-33-34"', 'Thực hiện cắt âm thanh cho 3 File "32-33-34"');
INSERT INTO public.journal_details VALUES (9156, 6981, 'attr', 'due_date', '2020-09-11', '2020-09-10');
INSERT INTO public.journal_details VALUES (9157, 6981, 'attr', 'done_ratio', '30', '80');
INSERT INTO public.journal_details VALUES (9158, 6982, 'attr', 'done_ratio', '0', '80');
INSERT INTO public.journal_details VALUES (9159, 6983, 'attr', 'due_date', '2020-09-10', '2020-09-08');
INSERT INTO public.journal_details VALUES (9160, 6984, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (9161, 6985, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9162, 6985, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9163, 6985, 'attr', 'estimated_hours', NULL, '12.0');
INSERT INTO public.journal_details VALUES (9164, 6986, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9165, 6987, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9166, 6988, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9167, 6989, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9168, 6990, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (9169, 6991, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (9170, 6992, 'attr', 'fixed_version_id', NULL, '20');
INSERT INTO public.journal_details VALUES (9171, 6993, 'attr', 'fixed_version_id', NULL, '20');
INSERT INTO public.journal_details VALUES (9172, 6994, 'attr', 'fixed_version_id', NULL, '20');
INSERT INTO public.journal_details VALUES (9173, 6995, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9174, 6995, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9175, 6996, 'attr', 'due_date', '2020-09-09', '2020-09-14');
INSERT INTO public.journal_details VALUES (9176, 6996, 'attr', 'fixed_version_id', '20', '23');
INSERT INTO public.journal_details VALUES (9177, 6996, 'attr', 'start_date', '2020-09-09', '2020-09-14');
INSERT INTO public.journal_details VALUES (9178, 6997, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (9179, 6998, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9180, 6999, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (9181, 7000, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9182, 7001, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (9183, 7002, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (9184, 7003, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (9185, 7004, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (9186, 7005, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (9187, 7006, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (9188, 7007, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (9189, 7008, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (9190, 7009, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (9191, 7010, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (9193, 7012, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (9194, 7012, 'attr', 'done_ratio', '0', '80');
INSERT INTO public.journal_details VALUES (9195, 7013, 'attr', 'parent_id', '1954', NULL);
INSERT INTO public.journal_details VALUES (9196, 7014, 'attr', 'assigned_to_id', '5', '12');
INSERT INTO public.journal_details VALUES (9197, 7015, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (9199, 7017, 'attr', 'subject', 'Trương API để lấy danh sách dịch vụ mở rộng, API tính cước cho tất cả dịch vụ - không bắt buộc', 'Trường API để lấy danh sách dịch vụ mở rộng, API tính cước cho tất cả dịch vụ - không bắt buộc');
INSERT INTO public.journal_details VALUES (9200, 7018, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9201, 7019, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9202, 7020, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9203, 7021, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9204, 7022, 'attr', 'due_date', '2020-09-07', '2020-09-14');
INSERT INTO public.journal_details VALUES (9205, 7022, 'attr', 'fixed_version_id', '20', '23');
INSERT INTO public.journal_details VALUES (9206, 7022, 'attr', 'start_date', '2020-09-07', '2020-09-14');
INSERT INTO public.journal_details VALUES (9207, 7023, 'attr', 'due_date', '2020-09-10', '2020-09-08');
INSERT INTO public.journal_details VALUES (9208, 7023, 'attr', 'start_date', '2020-09-10', '2020-09-08');
INSERT INTO public.journal_details VALUES (9209, 7024, 'attr', 'due_date', '2020-09-10', '2020-09-08');
INSERT INTO public.journal_details VALUES (9210, 7024, 'attr', 'start_date', '2020-09-10', '2020-09-08');
INSERT INTO public.journal_details VALUES (9211, 7025, 'attr', 'due_date', '2020-09-08', '2020-09-09');
INSERT INTO public.journal_details VALUES (9212, 7025, 'attr', 'start_date', '2020-09-08', '2020-09-09');
INSERT INTO public.journal_details VALUES (9213, 7026, 'attr', 'due_date', '2020-09-12', '2020-09-10');
INSERT INTO public.journal_details VALUES (9214, 7026, 'attr', 'start_date', '2020-09-12', '2020-09-09');
INSERT INTO public.journal_details VALUES (9215, 7027, 'attr', 'due_date', '2020-09-10', '2020-09-09');
INSERT INTO public.journal_details VALUES (9216, 7027, 'attr', 'start_date', '2020-09-09', '2020-09-08');
INSERT INTO public.journal_details VALUES (9217, 7028, 'attr', 'start_date', '2020-09-08', '2020-09-09');
INSERT INTO public.journal_details VALUES (9218, 7029, 'attr', 'due_date', '2020-09-09', '2020-09-10');
INSERT INTO public.journal_details VALUES (9219, 7030, 'attr', 'due_date', '2020-09-10', '2020-09-11');
INSERT INTO public.journal_details VALUES (9220, 7030, 'attr', 'start_date', '2020-09-09', '2020-09-10');
INSERT INTO public.journal_details VALUES (9223, 7032, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (9224, 7033, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (9225, 7034, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9226, 7035, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9227, 7036, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9228, 7037, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9229, 7038, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9230, 7039, 'attr', 'done_ratio', '100', '50');
INSERT INTO public.journal_details VALUES (9231, 7040, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9232, 7041, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9233, 7042, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9234, 7043, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9235, 7044, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9236, 7045, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9237, 7046, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9238, 7047, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9239, 7048, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9240, 7049, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9241, 7050, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9242, 7051, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9243, 7052, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9244, 7053, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9245, 7054, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9246, 7055, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9247, 7056, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9248, 7057, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9249, 7058, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9250, 7059, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9251, 7060, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9252, 7061, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9253, 7062, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9254, 7063, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9255, 7064, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9256, 7065, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9257, 7066, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9258, 7067, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9259, 7068, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9260, 7069, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9261, 7070, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9262, 7071, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9263, 7072, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9264, 7073, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9265, 7074, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9266, 7075, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9267, 7076, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9268, 7077, 'attr', 'project_id', '29', '28');
INSERT INTO public.journal_details VALUES (9269, 7078, 'attr', 'project_id', '29', '28');
INSERT INTO public.journal_details VALUES (9270, 7079, 'attr', 'project_id', '29', '28');
INSERT INTO public.journal_details VALUES (9271, 7080, 'attr', 'project_id', '29', '28');
INSERT INTO public.journal_details VALUES (9272, 7081, 'attr', 'project_id', '29', '28');
INSERT INTO public.journal_details VALUES (9273, 7082, 'attr', 'project_id', '29', '28');
INSERT INTO public.journal_details VALUES (9274, 7083, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9275, 7084, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9276, 7085, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9277, 7086, 'attr', 'subject', 'Danh mục (thuộc tính sản phẩm, Hình thức sử dụng đất, mục đích sử dụng đất, nguồn gốc sử dụng đất)', 'Danh mục');
INSERT INTO public.journal_details VALUES (9278, 7086, 'attr', 'description', '', ' (thuộc tính sản phẩm, Hình thức sử dụng đất, mục đích sử dụng đất, nguồn gốc sử dụng đất)');
INSERT INTO public.journal_details VALUES (9279, 7087, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9280, 7088, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9281, 7089, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9282, 7090, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9283, 7091, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9284, 7092, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9285, 7093, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9286, 7094, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9287, 7095, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9288, 7096, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9289, 7097, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9290, 7098, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9291, 7099, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9292, 7100, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9293, 7101, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9294, 7102, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9295, 7103, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9296, 7104, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9297, 7105, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9298, 7105, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9299, 7106, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9300, 7106, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9301, 7107, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9302, 7108, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9303, 7109, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9304, 7110, 'attr', 'parent_id', '1679', NULL);
INSERT INTO public.journal_details VALUES (9305, 7111, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9306, 7112, 'attr', 'parent_id', '1486', NULL);
INSERT INTO public.journal_details VALUES (9307, 7113, 'attr', 'parent_id', '1486', NULL);
INSERT INTO public.journal_details VALUES (9308, 7114, 'attr', 'parent_id', '1486', NULL);
INSERT INTO public.journal_details VALUES (9309, 7115, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9310, 7116, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9311, 7117, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9312, 7118, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9313, 7119, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (9314, 7120, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (9315, 7121, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (9316, 7122, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (9317, 7123, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9318, 7124, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9319, 7125, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9320, 7126, 'attr', 'project_id', '30', '28');
INSERT INTO public.journal_details VALUES (9321, 7126, 'attr', 'parent_id', NULL, '2001');
INSERT INTO public.journal_details VALUES (9322, 7127, 'attr', 'parent_id', '1936', '2001');
INSERT INTO public.journal_details VALUES (9323, 7128, 'attr', 'parent_id', '1936', '2001');
INSERT INTO public.journal_details VALUES (9324, 7129, 'attr', 'parent_id', '1936', '2001');
INSERT INTO public.journal_details VALUES (9325, 7130, 'attr', 'project_id', '30', '28');
INSERT INTO public.journal_details VALUES (9326, 7130, 'attr', 'parent_id', NULL, '2001');
INSERT INTO public.journal_details VALUES (9327, 7131, 'attr', 'project_id', '30', '28');
INSERT INTO public.journal_details VALUES (9328, 7131, 'attr', 'parent_id', NULL, '2001');
INSERT INTO public.journal_details VALUES (9329, 7132, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9330, 7133, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9331, 7134, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9332, 7135, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9333, 7136, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9334, 7137, 'attr', 'fixed_version_id', NULL, '27');
INSERT INTO public.journal_details VALUES (9335, 7138, 'attr', 'fixed_version_id', NULL, '27');
INSERT INTO public.journal_details VALUES (9336, 7139, 'attr', 'fixed_version_id', NULL, '27');
INSERT INTO public.journal_details VALUES (9337, 7140, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9338, 7141, 'attr', 'fixed_version_id', NULL, '26');
INSERT INTO public.journal_details VALUES (9339, 7141, 'attr', 'parent_id', '2001', NULL);
INSERT INTO public.journal_details VALUES (9340, 7142, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9341, 7143, 'attr', 'due_date', '2020-07-29', '2020-09-14');
INSERT INTO public.journal_details VALUES (9342, 7143, 'attr', 'start_date', '2020-07-29', '2020-09-14');
INSERT INTO public.journal_details VALUES (9343, 7144, 'attr', 'due_date', '2020-08-15', '2020-09-14');
INSERT INTO public.journal_details VALUES (9344, 7144, 'attr', 'start_date', '2020-08-10', '2020-09-14');
INSERT INTO public.journal_details VALUES (9345, 7145, 'attr', 'due_date', '2020-08-10', '2020-09-14');
INSERT INTO public.journal_details VALUES (9346, 7145, 'attr', 'start_date', '2020-08-01', '2020-09-14');
INSERT INTO public.journal_details VALUES (9347, 7146, 'attr', 'fixed_version_id', NULL, '26');
INSERT INTO public.journal_details VALUES (9348, 7147, 'attr', 'fixed_version_id', NULL, '25');
INSERT INTO public.journal_details VALUES (9349, 7148, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9350, 7148, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9351, 7149, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (9352, 7150, 'attr', 'fixed_version_id', NULL, '26');
INSERT INTO public.journal_details VALUES (9353, 7151, 'attr', 'fixed_version_id', NULL, '26');
INSERT INTO public.journal_details VALUES (9354, 7152, 'attr', 'fixed_version_id', NULL, '26');
INSERT INTO public.journal_details VALUES (9355, 7153, 'attr', 'fixed_version_id', NULL, '26');
INSERT INTO public.journal_details VALUES (9356, 7154, 'attr', 'fixed_version_id', NULL, '26');
INSERT INTO public.journal_details VALUES (9357, 7155, 'attr', 'fixed_version_id', NULL, '26');
INSERT INTO public.journal_details VALUES (9358, 7156, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (9359, 7157, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (9360, 7158, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (9361, 7159, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (9362, 7160, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (9363, 7161, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (9364, 7162, 'attr', 'priority_id', '2', '4');
INSERT INTO public.journal_details VALUES (9365, 7163, 'attr', 'assigned_to_id', '17', '10');
INSERT INTO public.journal_details VALUES (9366, 7164, 'attr', 'due_date', NULL, '2020-09-09');
INSERT INTO public.journal_details VALUES (9367, 7165, 'attr', 'due_date', '2020-09-11', '2020-09-09');
INSERT INTO public.journal_details VALUES (9368, 7166, 'attr', 'due_date', NULL, '2020-09-11');
INSERT INTO public.journal_details VALUES (9369, 7166, 'attr', 'start_date', '2020-09-09', '2020-09-11');
INSERT INTO public.journal_details VALUES (9370, 7167, 'attr', 'due_date', NULL, '2020-09-11');
INSERT INTO public.journal_details VALUES (9371, 7167, 'attr', 'start_date', '2020-09-09', '2020-09-11');
INSERT INTO public.journal_details VALUES (9372, 7168, 'attr', 'due_date', NULL, '2020-09-11');
INSERT INTO public.journal_details VALUES (9373, 7168, 'attr', 'start_date', '2020-09-09', '2020-09-11');
INSERT INTO public.journal_details VALUES (9374, 7169, 'attr', 'due_date', NULL, '2020-09-12');
INSERT INTO public.journal_details VALUES (9375, 7169, 'attr', 'start_date', '2020-09-09', '2020-09-12');
INSERT INTO public.journal_details VALUES (9376, 7170, 'attr', 'due_date', NULL, '2020-09-12');
INSERT INTO public.journal_details VALUES (9377, 7170, 'attr', 'start_date', '2020-09-09', '2020-09-12');
INSERT INTO public.journal_details VALUES (9378, 7171, 'attr', 'due_date', '2020-09-12', '2020-09-09');
INSERT INTO public.journal_details VALUES (9379, 7172, 'attr', 'due_date', '2020-09-12', '2020-09-11');
INSERT INTO public.journal_details VALUES (9380, 7172, 'attr', 'start_date', '2020-09-12', '2020-09-11');
INSERT INTO public.journal_details VALUES (9381, 7173, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9382, 7173, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9383, 7174, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9384, 7174, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9385, 7175, 'attachment', '105', NULL, 'clipboard-202009091312-1esa1.png');
INSERT INTO public.journal_details VALUES (9386, 7176, 'attr', 'due_date', '2020-09-08', '2020-09-12');
INSERT INTO public.journal_details VALUES (9387, 7176, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (9388, 7176, 'attr', 'start_date', '2020-09-05', '2020-09-09');
INSERT INTO public.journal_details VALUES (9389, 7177, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (9390, 7177, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9391, 7177, 'attr', 'estimated_hours', NULL, '24.0');
INSERT INTO public.journal_details VALUES (9392, 7178, 'attr', 'due_date', '2020-09-07', '2020-09-12');
INSERT INTO public.journal_details VALUES (9393, 7178, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (9394, 7178, 'attr', 'start_date', '2020-09-05', '2020-09-07');
INSERT INTO public.journal_details VALUES (9395, 7178, 'attr', 'estimated_hours', '8.0', '16.0');
INSERT INTO public.journal_details VALUES (9396, 7179, 'attr', 'due_date', '2020-09-08', '2020-09-12');
INSERT INTO public.journal_details VALUES (9397, 7179, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (9398, 7179, 'attr', 'start_date', '2020-09-05', '2020-09-07');
INSERT INTO public.journal_details VALUES (9399, 7180, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9400, 7180, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9401, 7180, 'attr', 'estimated_hours', NULL, '8.0');
INSERT INTO public.journal_details VALUES (9402, 7181, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (9403, 7182, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (9404, 7183, 'attr', 'fixed_version_id', NULL, '4');
INSERT INTO public.journal_details VALUES (9405, 7184, 'attr', 'fixed_version_id', '4', '3');
INSERT INTO public.journal_details VALUES (9406, 7185, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9407, 7185, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9408, 7186, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9409, 7187, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (9410, 7187, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9411, 7188, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9412, 7188, 'attr', 'assigned_to_id', '40', '12');
INSERT INTO public.journal_details VALUES (9413, 7188, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9414, 7189, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9415, 7190, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9416, 7191, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9417, 7191, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9418, 7192, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9419, 7193, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9420, 7194, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9421, 7195, 'attr', 'assigned_to_id', '12', '8');
INSERT INTO public.journal_details VALUES (9422, 7196, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9423, 7197, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9424, 7198, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (9425, 7198, 'attr', 'subject', 'Chức năng báo cáo: ', 'Báo cáo điểm lấy mẫu hoạt độ');
INSERT INTO public.journal_details VALUES (9426, 7198, 'attr', 'description', 'Thống kê, xuất file excel | pdf thông số đo của các trạm,', '');
INSERT INTO public.journal_details VALUES (9427, 7198, 'attr', 'due_date', NULL, '2020-09-12');
INSERT INTO public.journal_details VALUES (9428, 7198, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (9429, 7199, 'attr', 'fixed_version_id', '23', '20');
INSERT INTO public.journal_details VALUES (9430, 7200, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (9431, 7201, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (9432, 7202, 'attr', 'start_date', '2020-09-11', NULL);
INSERT INTO public.journal_details VALUES (9433, 7203, 'attr', 'start_date', '2020-09-11', NULL);
INSERT INTO public.journal_details VALUES (9434, 7204, 'attr', 'start_date', '2020-09-11', NULL);
INSERT INTO public.journal_details VALUES (9435, 7205, 'attr', 'start_date', '2020-09-11', NULL);
INSERT INTO public.journal_details VALUES (9436, 7206, 'attr', 'start_date', '2020-09-11', NULL);
INSERT INTO public.journal_details VALUES (9438, 7208, 'attr', 'start_date', '2020-09-11', NULL);
INSERT INTO public.journal_details VALUES (9439, 7209, 'attr', 'start_date', '2020-09-11', NULL);
INSERT INTO public.journal_details VALUES (9440, 7210, 'attr', 'start_date', '2020-09-11', NULL);
INSERT INTO public.journal_details VALUES (9441, 7211, 'attr', 'start_date', '2020-09-11', NULL);
INSERT INTO public.journal_details VALUES (9442, 7212, 'attr', 'start_date', '2020-09-11', NULL);
INSERT INTO public.journal_details VALUES (9443, 7213, 'attr', 'start_date', '2020-09-11', NULL);
INSERT INTO public.journal_details VALUES (9444, 7214, 'attr', 'start_date', '2020-09-11', NULL);
INSERT INTO public.journal_details VALUES (9445, 7215, 'attr', 'start_date', '2020-09-11', NULL);
INSERT INTO public.journal_details VALUES (9446, 7216, 'attr', 'story_points', NULL, '2');
INSERT INTO public.journal_details VALUES (9447, 7217, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (9448, 7218, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9449, 7219, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9450, 7220, 'attr', 'fixed_version_id', NULL, '20');
INSERT INTO public.journal_details VALUES (9451, 7221, 'attr', 'fixed_version_id', NULL, '23');
INSERT INTO public.journal_details VALUES (9452, 7222, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9453, 7223, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9454, 7224, 'attr', 'subject', 'Chuyên viên, in phiếu bốc thăm', 'Chuyên viên, in phiếu bốc thăm trúng đấu giá');
INSERT INTO public.journal_details VALUES (9455, 7225, 'attr', 'due_date', '2020-09-11', '2020-09-12');
INSERT INTO public.journal_details VALUES (9456, 7225, 'attr', 'start_date', '2020-09-11', '2020-09-12');
INSERT INTO public.journal_details VALUES (9457, 7226, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (9458, 7227, 'attr', 'fixed_version_id', NULL, '29');
INSERT INTO public.journal_details VALUES (9459, 7228, 'attr', 'fixed_version_id', NULL, '29');
INSERT INTO public.journal_details VALUES (9460, 7229, 'attr', 'fixed_version_id', NULL, '29');
INSERT INTO public.journal_details VALUES (9461, 7230, 'attr', 'start_date', '2020-09-11', NULL);
INSERT INTO public.journal_details VALUES (9462, 7231, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9463, 7232, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (9464, 7233, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9465, 7234, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9466, 7235, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9467, 7236, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9468, 7237, 'attr', 'fixed_version_id', NULL, '26');
INSERT INTO public.journal_details VALUES (9469, 7238, 'attr', 'fixed_version_id', NULL, '26');
INSERT INTO public.journal_details VALUES (9470, 7239, 'attr', 'fixed_version_id', NULL, '26');
INSERT INTO public.journal_details VALUES (9471, 7240, 'attr', 'story_points', NULL, '1');
INSERT INTO public.journal_details VALUES (9472, 7240, 'attr', 'due_date', NULL, '2020-09-14');
INSERT INTO public.journal_details VALUES (9473, 7240, 'attr', 'assigned_to_id', NULL, '40');
INSERT INTO public.journal_details VALUES (9474, 7240, 'attr', 'start_date', NULL, '2020-09-14');
INSERT INTO public.journal_details VALUES (9475, 7241, 'attr', 'story_points', NULL, '1');
INSERT INTO public.journal_details VALUES (9476, 7241, 'attr', 'due_date', NULL, '2020-09-14');
INSERT INTO public.journal_details VALUES (9477, 7241, 'attr', 'start_date', NULL, '2020-09-14');
INSERT INTO public.journal_details VALUES (9478, 7242, 'attr', 'story_points', NULL, '2');
INSERT INTO public.journal_details VALUES (9479, 7242, 'attr', 'due_date', NULL, '2020-09-14');
INSERT INTO public.journal_details VALUES (9480, 7242, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (9481, 7242, 'attr', 'start_date', NULL, '2020-09-14');
INSERT INTO public.journal_details VALUES (9482, 7243, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (9483, 7244, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9484, 7244, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9485, 7245, 'attr', 'fixed_version_id', '23', '20');
INSERT INTO public.journal_details VALUES (9486, 7246, 'attr', 'fixed_version_id', '20', '23');
INSERT INTO public.journal_details VALUES (9487, 7247, 'attr', 'subject', 'Báo cáo điểm lấy mẫu hoạt độ', 'Báo cáo điểm lấy mẫu hoạt độ-API');
INSERT INTO public.journal_details VALUES (9488, 7247, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9489, 7247, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9490, 7248, 'attr', 'subject', 'Tạo đơn hàng', 'Tạo đơn hàng (cho thuê/bán sp)');
INSERT INTO public.journal_details VALUES (9491, 7249, 'attr', 'due_date', NULL, '2020-09-17');
INSERT INTO public.journal_details VALUES (9492, 7249, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (9493, 7249, 'attr', 'start_date', NULL, '2020-09-14');
INSERT INTO public.journal_details VALUES (9497, 7251, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9498, 7252, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9499, 7253, 'attr', 'due_date', '2020-09-17', '2020-09-16');
INSERT INTO public.journal_details VALUES (9502, 7255, 'attr', 'story_points', NULL, '2');
INSERT INTO public.journal_details VALUES (9503, 7255, 'attr', 'due_date', NULL, '2020-09-14');
INSERT INTO public.journal_details VALUES (9504, 7255, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (9505, 7255, 'attr', 'start_date', NULL, '2020-09-14');
INSERT INTO public.journal_details VALUES (9506, 7256, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9507, 7256, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9508, 7257, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9509, 7257, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9510, 7258, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9511, 7258, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9512, 7259, 'attr', 'due_date', '2020-09-14', '2020-09-15');
INSERT INTO public.journal_details VALUES (9513, 7259, 'attr', 'start_date', '2020-09-14', '2020-09-15');
INSERT INTO public.journal_details VALUES (9514, 7260, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9515, 7261, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9516, 7262, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9517, 7262, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9518, 7263, 'attr', 'subject', 'Khách sử dụng phiếu dịch vụ WC', 'Test khách sử dụng phiếu dịch vụ WC');
INSERT INTO public.journal_details VALUES (9519, 7263, 'attr', 'due_date', NULL, '2020-09-16');
INSERT INTO public.journal_details VALUES (9520, 7263, 'attr', 'assigned_to_id', NULL, '40');
INSERT INTO public.journal_details VALUES (9521, 7263, 'attr', 'start_date', NULL, '2020-09-15');
INSERT INTO public.journal_details VALUES (9522, 7264, 'attr', 'due_date', NULL, '2020-09-19');
INSERT INTO public.journal_details VALUES (9523, 7264, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (9524, 7264, 'attr', 'start_date', NULL, '2020-09-19');
INSERT INTO public.journal_details VALUES (9525, 7265, 'attr', 'due_date', NULL, '2020-09-21');
INSERT INTO public.journal_details VALUES (9526, 7265, 'attr', 'fixed_version_id', '29', '30');
INSERT INTO public.journal_details VALUES (9527, 7265, 'attr', 'start_date', NULL, '2020-09-21');
INSERT INTO public.journal_details VALUES (9528, 7266, 'attr', 'due_date', NULL, '2020-09-21');
INSERT INTO public.journal_details VALUES (9529, 7266, 'attr', 'fixed_version_id', '29', '30');
INSERT INTO public.journal_details VALUES (9530, 7266, 'attr', 'start_date', NULL, '2020-09-21');
INSERT INTO public.journal_details VALUES (9531, 7267, 'attr', 'due_date', NULL, '2020-09-14');
INSERT INTO public.journal_details VALUES (9532, 7267, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (9533, 7267, 'attr', 'start_date', NULL, '2020-09-14');
INSERT INTO public.journal_details VALUES (9534, 7268, 'attr', 'due_date', NULL, '2020-09-17');
INSERT INTO public.journal_details VALUES (9535, 7268, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (9536, 7268, 'attr', 'start_date', NULL, '2020-09-17');
INSERT INTO public.journal_details VALUES (9537, 7269, 'attr', 'due_date', NULL, '2020-09-17');
INSERT INTO public.journal_details VALUES (9538, 7269, 'attr', 'start_date', NULL, '2020-09-16');
INSERT INTO public.journal_details VALUES (9539, 7270, 'attr', 'due_date', NULL, '2020-09-17');
INSERT INTO public.journal_details VALUES (9540, 7270, 'attr', 'start_date', NULL, '2020-09-16');
INSERT INTO public.journal_details VALUES (9541, 7271, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (9542, 7272, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (9543, 7273, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (9544, 7274, 'attr', 'due_date', NULL, '2020-09-18');
INSERT INTO public.journal_details VALUES (9545, 7274, 'attr', 'start_date', NULL, '2020-09-17');
INSERT INTO public.journal_details VALUES (9546, 7275, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (9547, 7276, 'attr', 'subject', 'Mobile - Báo cáo đơn hàng', 'Mobile - Báo cáo số dư thẻ');
INSERT INTO public.journal_details VALUES (9548, 7276, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (9549, 7277, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (9550, 7278, 'attr', 'fixed_version_id', '33', '30');
INSERT INTO public.journal_details VALUES (9551, 7279, 'attr', 'fixed_version_id', '33', '30');
INSERT INTO public.journal_details VALUES (9552, 7280, 'attr', 'fixed_version_id', '33', '30');
INSERT INTO public.journal_details VALUES (9553, 7281, 'attr', 'fixed_version_id', '33', '30');
INSERT INTO public.journal_details VALUES (9556, 7284, 'attr', 'fixed_version_id', '33', '30');
INSERT INTO public.journal_details VALUES (9557, 7285, 'attr', 'fixed_version_id', '33', '30');
INSERT INTO public.journal_details VALUES (9558, 7286, 'attr', 'fixed_version_id', '33', '30');
INSERT INTO public.journal_details VALUES (9560, 7288, 'attr', 'fixed_version_id', '33', '30');
INSERT INTO public.journal_details VALUES (9561, 7289, 'attr', 'due_date', NULL, '2020-09-21');
INSERT INTO public.journal_details VALUES (9562, 7289, 'attr', 'start_date', '2020-09-11', '2020-09-21');
INSERT INTO public.journal_details VALUES (9563, 7290, 'attr', 'due_date', NULL, '2020-09-21');
INSERT INTO public.journal_details VALUES (9564, 7290, 'attr', 'start_date', '2020-09-11', '2020-09-21');
INSERT INTO public.journal_details VALUES (9565, 7291, 'attr', 'due_date', NULL, '2020-09-21');
INSERT INTO public.journal_details VALUES (9566, 7291, 'attr', 'start_date', '2020-09-11', '2020-09-21');
INSERT INTO public.journal_details VALUES (9567, 7292, 'attr', 'due_date', NULL, '2020-09-21');
INSERT INTO public.journal_details VALUES (9568, 7292, 'attr', 'start_date', '2020-09-11', '2020-09-21');
INSERT INTO public.journal_details VALUES (9569, 7293, 'attr', 'due_date', NULL, '2020-09-15');
INSERT INTO public.journal_details VALUES (9570, 7293, 'attr', 'start_date', '2020-09-11', '2020-09-15');
INSERT INTO public.journal_details VALUES (9571, 7294, 'attr', 'due_date', NULL, '2020-09-15');
INSERT INTO public.journal_details VALUES (9572, 7294, 'attr', 'start_date', '2020-09-11', '2020-09-15');
INSERT INTO public.journal_details VALUES (9577, 7297, 'attr', 'due_date', '2020-09-15', '2020-09-22');
INSERT INTO public.journal_details VALUES (9578, 7297, 'attr', 'start_date', '2020-09-15', '2020-09-22');
INSERT INTO public.journal_details VALUES (9579, 7298, 'attr', 'due_date', '2020-09-15', '2020-09-22');
INSERT INTO public.journal_details VALUES (9580, 7298, 'attr', 'start_date', '2020-09-15', '2020-09-22');
INSERT INTO public.journal_details VALUES (9585, 7301, 'attr', 'due_date', '2020-09-21', '2020-09-22');
INSERT INTO public.journal_details VALUES (9586, 7301, 'attr', 'start_date', '2020-09-21', '2020-09-22');
INSERT INTO public.journal_details VALUES (9587, 7302, 'attr', 'due_date', NULL, '2020-09-21');
INSERT INTO public.journal_details VALUES (9588, 7302, 'attr', 'start_date', NULL, '2020-09-21');
INSERT INTO public.journal_details VALUES (9591, 7304, 'attr', 'due_date', NULL, '2020-09-23');
INSERT INTO public.journal_details VALUES (9592, 7304, 'attr', 'start_date', NULL, '2020-09-23');
INSERT INTO public.journal_details VALUES (9593, 7305, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (9595, 7307, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (9596, 7308, 'attr', 'assigned_to_id', NULL, '40');
INSERT INTO public.journal_details VALUES (9597, 7309, 'attr', 'assigned_to_id', NULL, '40');
INSERT INTO public.journal_details VALUES (9598, 7310, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (9599, 7311, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (9600, 7312, 'attr', 'assigned_to_id', NULL, '40');
INSERT INTO public.journal_details VALUES (9601, 7313, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (9602, 7314, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (9605, 7317, 'attr', 'due_date', NULL, '2020-09-16');
INSERT INTO public.journal_details VALUES (9606, 7317, 'attr', 'start_date', NULL, '2020-09-15');
INSERT INTO public.journal_details VALUES (9607, 7318, 'attr', 'due_date', NULL, '2020-09-18');
INSERT INTO public.journal_details VALUES (9608, 7318, 'attr', 'start_date', NULL, '2020-09-17');
INSERT INTO public.journal_details VALUES (9609, 7319, 'attr', 'due_date', NULL, '2020-09-19');
INSERT INTO public.journal_details VALUES (9610, 7319, 'attr', 'start_date', NULL, '2020-09-19');
INSERT INTO public.journal_details VALUES (9611, 7320, 'attr', 'fixed_version_id', '30', '29');
INSERT INTO public.journal_details VALUES (9612, 7321, 'attr', 'fixed_version_id', '30', '29');
INSERT INTO public.journal_details VALUES (9613, 7322, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (9614, 7323, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9615, 7324, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9616, 7325, 'attr', 'assigned_to_id', '39', '40');
INSERT INTO public.journal_details VALUES (9617, 7326, 'attr', 'assigned_to_id', '40', '39');
INSERT INTO public.journal_details VALUES (9618, 7327, 'attr', 'assigned_to_id', '40', '39');
INSERT INTO public.journal_details VALUES (9619, 7328, 'attr', 'assigned_to_id', '39', '40');
INSERT INTO public.journal_details VALUES (9620, 7329, 'attr', 'fixed_version_id', '30', '29');
INSERT INTO public.journal_details VALUES (9621, 7330, 'attr', 'due_date', '2020-09-21', '2020-09-16');
INSERT INTO public.journal_details VALUES (9622, 7330, 'attr', 'start_date', '2020-09-21', '2020-09-15');
INSERT INTO public.journal_details VALUES (9623, 7331, 'attr', 'due_date', '2020-09-15', '2020-09-16');
INSERT INTO public.journal_details VALUES (9624, 7332, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9625, 7333, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9626, 7334, 'attr', 'due_date', '2020-09-15', '2020-09-19');
INSERT INTO public.journal_details VALUES (9627, 7334, 'attr', 'fixed_version_id', NULL, '23');
INSERT INTO public.journal_details VALUES (9628, 7335, 'attr', 'due_date', '2020-09-15', '2020-09-19');
INSERT INTO public.journal_details VALUES (9629, 7335, 'attr', 'fixed_version_id', NULL, '23');
INSERT INTO public.journal_details VALUES (9630, 7336, 'attr', 'fixed_version_id', NULL, '23');
INSERT INTO public.journal_details VALUES (9631, 7337, 'attr', 'fixed_version_id', NULL, '23');
INSERT INTO public.journal_details VALUES (9632, 7338, 'attr', 'fixed_version_id', NULL, '23');
INSERT INTO public.journal_details VALUES (9633, 7339, 'attr', 'due_date', NULL, '2020-09-19');
INSERT INTO public.journal_details VALUES (9634, 7339, 'attr', 'fixed_version_id', NULL, '23');
INSERT INTO public.journal_details VALUES (9635, 7340, 'attr', 'due_date', '2020-09-12', '2020-09-19');
INSERT INTO public.journal_details VALUES (9636, 7340, 'attr', 'fixed_version_id', '20', '23');
INSERT INTO public.journal_details VALUES (9637, 7340, 'attr', 'start_date', '2020-09-12', '2020-09-15');
INSERT INTO public.journal_details VALUES (9638, 7341, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9639, 7342, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9640, 7343, 'attr', 'due_date', '2020-09-19', '2020-09-15');
INSERT INTO public.journal_details VALUES (9641, 7344, 'attr', 'due_date', '2020-09-19', '2020-09-15');
INSERT INTO public.journal_details VALUES (9642, 7345, 'attr', 'due_date', '2020-09-19', '2020-09-15');
INSERT INTO public.journal_details VALUES (9643, 7346, 'attr', 'due_date', '2020-09-19', '2020-09-15');
INSERT INTO public.journal_details VALUES (9644, 7347, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9645, 7348, 'attr', 'due_date', '2020-09-19', '2020-09-16');
INSERT INTO public.journal_details VALUES (9646, 7348, 'attr', 'start_date', '2020-09-15', '2020-09-16');
INSERT INTO public.journal_details VALUES (9647, 7349, 'attr', 'due_date', '2020-09-19', '2020-09-16');
INSERT INTO public.journal_details VALUES (9648, 7349, 'attr', 'start_date', '2020-09-15', '2020-09-16');
INSERT INTO public.journal_details VALUES (9649, 7350, 'attr', 'due_date', '2020-09-19', '2020-09-16');
INSERT INTO public.journal_details VALUES (9650, 7350, 'attr', 'start_date', '2020-09-15', '2020-09-16');
INSERT INTO public.journal_details VALUES (9651, 7351, 'attr', 'due_date', '2020-09-14', '2020-09-16');
INSERT INTO public.journal_details VALUES (9652, 7351, 'attr', 'start_date', '2020-09-14', '2020-09-16');
INSERT INTO public.journal_details VALUES (9653, 7352, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9654, 7353, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9655, 7354, 'attr', 'due_date', '2020-09-16', '2020-09-19');
INSERT INTO public.journal_details VALUES (9656, 7354, 'attr', 'start_date', '2020-09-15', '2020-09-19');
INSERT INTO public.journal_details VALUES (9657, 7355, 'attr', 'due_date', '2020-09-19', '2020-09-16');
INSERT INTO public.journal_details VALUES (9658, 7355, 'attr', 'start_date', '2020-09-19', '2020-09-15');
INSERT INTO public.journal_details VALUES (9659, 7356, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9660, 7357, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9661, 7358, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9662, 7358, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9663, 7359, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9664, 7360, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9665, 7361, 'attr', 'parent_id', '2028', NULL);
INSERT INTO public.journal_details VALUES (9666, 7362, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9667, 7363, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9668, 7364, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9669, 7365, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9670, 7366, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9671, 7367, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9672, 7368, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9673, 7369, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9674, 7370, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (9675, 7371, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (9676, 7372, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9677, 7373, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9678, 7374, 'attr', 'assigned_to_id', '19', '40');
INSERT INTO public.journal_details VALUES (9679, 7375, 'attr', 'assigned_to_id', '19', '40');
INSERT INTO public.journal_details VALUES (9680, 7376, 'attr', 'assigned_to_id', '19', '40');
INSERT INTO public.journal_details VALUES (9681, 7377, 'attr', 'due_date', '2020-09-17', '2020-09-19');
INSERT INTO public.journal_details VALUES (9682, 7377, 'attr', 'start_date', '2020-09-16', '2020-09-18');
INSERT INTO public.journal_details VALUES (9683, 7378, 'attr', 'due_date', '2020-09-16', '2020-09-18');
INSERT INTO public.journal_details VALUES (9684, 7378, 'attr', 'start_date', '2020-09-15', '2020-09-17');
INSERT INTO public.journal_details VALUES (9685, 7379, 'attr', 'due_date', '2020-09-19', '2020-09-16');
INSERT INTO public.journal_details VALUES (9686, 7380, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9687, 7380, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9688, 7381, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (9689, 7382, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (9690, 7383, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (9691, 7384, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (9692, 7385, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9693, 7386, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9694, 7387, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9695, 7388, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9696, 7389, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9697, 7389, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9698, 7390, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9699, 7391, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9700, 7392, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9701, 7393, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9702, 7394, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9703, 7395, 'attr', 'fixed_version_id', '25', '34');
INSERT INTO public.journal_details VALUES (9704, 7396, 'attr', 'fixed_version_id', '25', '34');
INSERT INTO public.journal_details VALUES (9705, 7397, 'attr', 'fixed_version_id', '25', '34');
INSERT INTO public.journal_details VALUES (9706, 7398, 'attr', 'fixed_version_id', '25', '34');
INSERT INTO public.journal_details VALUES (9707, 7399, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9708, 7400, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9709, 7401, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9710, 7401, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9711, 7402, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (9712, 7403, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (9713, 7404, 'attr', 'done_ratio', '100', '90');
INSERT INTO public.journal_details VALUES (9714, 7405, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9715, 7405, 'attr', 'estimated_hours', NULL, '12.0');
INSERT INTO public.journal_details VALUES (9716, 7406, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9717, 7407, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (9718, 7408, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9719, 7408, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9720, 7409, 'attr', 'due_date', '2020-09-16', '2020-09-18');
INSERT INTO public.journal_details VALUES (9721, 7410, 'attr', 'due_date', '2020-09-19', '2020-09-21');
INSERT INTO public.journal_details VALUES (9722, 7410, 'attr', 'start_date', '2020-09-18', '2020-09-21');
INSERT INTO public.journal_details VALUES (9723, 7411, 'attr', 'due_date', '2020-09-18', '2020-09-21');
INSERT INTO public.journal_details VALUES (9724, 7411, 'attr', 'start_date', '2020-09-17', '2020-09-21');
INSERT INTO public.journal_details VALUES (9725, 7412, 'attr', 'due_date', '2020-09-17', '2020-09-19');
INSERT INTO public.journal_details VALUES (9726, 7413, 'attr', 'due_date', '2020-09-21', '2020-09-22');
INSERT INTO public.journal_details VALUES (9727, 7413, 'attr', 'start_date', '2020-09-21', '2020-09-22');
INSERT INTO public.journal_details VALUES (9728, 7414, 'attr', 'due_date', '2020-09-21', '2020-09-23');
INSERT INTO public.journal_details VALUES (9729, 7414, 'attr', 'start_date', '2020-09-21', '2020-09-23');
INSERT INTO public.journal_details VALUES (9730, 7415, 'attr', 'due_date', '2020-09-22', '2020-09-24');
INSERT INTO public.journal_details VALUES (9731, 7415, 'attr', 'start_date', '2020-09-22', '2020-09-24');
INSERT INTO public.journal_details VALUES (9732, 7417, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (9733, 7418, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9734, 7419, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9735, 7420, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (9736, 7421, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9737, 7422, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9738, 7423, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9739, 7424, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9740, 7425, 'attr', 'due_date', '2020-09-18', '2020-09-21');
INSERT INTO public.journal_details VALUES (9741, 7425, 'attr', 'fixed_version_id', '29', '30');
INSERT INTO public.journal_details VALUES (9742, 7425, 'attr', 'start_date', '2020-09-17', '2020-09-21');
INSERT INTO public.journal_details VALUES (9743, 7426, 'attr', 'due_date', NULL, '2020-09-19');
INSERT INTO public.journal_details VALUES (9744, 7426, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (9745, 7426, 'attr', 'fixed_version_id', NULL, '29');
INSERT INTO public.journal_details VALUES (9746, 7427, 'attr', 'fixed_version_id', '29', '30');
INSERT INTO public.journal_details VALUES (9747, 7428, 'attr', 'fixed_version_id', '29', '30');
INSERT INTO public.journal_details VALUES (9748, 7429, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (9749, 7430, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9750, 7431, 'attr', 'due_date', '2020-09-22', '2020-09-19');
INSERT INTO public.journal_details VALUES (9751, 7431, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9752, 7431, 'attr', 'start_date', '2020-09-22', '2020-09-19');
INSERT INTO public.journal_details VALUES (9753, 7431, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9754, 7432, 'attr', 'start_date', '2020-09-19', '2020-09-25');
INSERT INTO public.journal_details VALUES (9755, 7433, 'attr', 'fixed_version_id', '30', '29');
INSERT INTO public.journal_details VALUES (9756, 7434, 'attr', 'fixed_version_id', '30', '29');
INSERT INTO public.journal_details VALUES (9757, 7435, 'attr', 'fixed_version_id', '29', '30');
INSERT INTO public.journal_details VALUES (9758, 7436, 'attr', 'assigned_to_id', '19', '40');
INSERT INTO public.journal_details VALUES (9760, 7438, 'attr', 'assigned_to_id', '19', '40');
INSERT INTO public.journal_details VALUES (9761, 7439, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9762, 7440, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9763, 7441, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9764, 7442, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (9765, 7442, 'attr', 'done_ratio', '100', '90');
INSERT INTO public.journal_details VALUES (9766, 7443, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (9767, 7443, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (9768, 7444, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9769, 7444, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9770, 7445, 'attr', 'done_ratio', '100', '70');
INSERT INTO public.journal_details VALUES (9771, 7446, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (9772, 7447, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (9773, 7448, 'attr', 'done_ratio', '100', '70');
INSERT INTO public.journal_details VALUES (9774, 7449, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9775, 7450, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9776, 7451, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9777, 7452, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9778, 7453, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9779, 7454, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9780, 7455, 'attr', 'subject', 'Báo cáo doanh thu theo ngày', 'Báo cáo doanh thu theo tháng');
INSERT INTO public.journal_details VALUES (9781, 7456, 'attr', 'due_date', '2020-09-21', '2020-09-22');
INSERT INTO public.journal_details VALUES (9782, 7456, 'attr', 'start_date', '2020-09-21', '2020-09-22');
INSERT INTO public.journal_details VALUES (9783, 7457, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (9784, 7458, 'attr', 'fixed_version_id', NULL, '30');
INSERT INTO public.journal_details VALUES (9785, 7459, 'attr', 'due_date', '2020-09-22', '2020-09-23');
INSERT INTO public.journal_details VALUES (9786, 7459, 'attr', 'start_date', '2020-09-22', '2020-09-23');
INSERT INTO public.journal_details VALUES (9787, 7460, 'attr', 'subject', 'Mobile - Báo cáo doanh thu theo tháng', 'Mobile - Báo cáo doanh thu bán thẻ');
INSERT INTO public.journal_details VALUES (9788, 7461, 'attr', 'due_date', '2020-09-21', '2020-09-22');
INSERT INTO public.journal_details VALUES (9789, 7461, 'attr', 'start_date', '2020-09-21', '2020-09-22');
INSERT INTO public.journal_details VALUES (9790, 7462, 'attr', 'due_date', '2020-09-21', '2020-09-22');
INSERT INTO public.journal_details VALUES (9791, 7462, 'attr', 'start_date', '2020-09-21', '2020-09-22');
INSERT INTO public.journal_details VALUES (9792, 7463, 'attr', 'due_date', '2020-09-21', '2020-09-22');
INSERT INTO public.journal_details VALUES (9793, 7463, 'attr', 'start_date', '2020-09-21', '2020-09-22');
INSERT INTO public.journal_details VALUES (9794, 7464, 'attr', 'due_date', '2020-09-22', '2020-09-21');
INSERT INTO public.journal_details VALUES (9795, 7464, 'attr', 'start_date', '2020-09-22', '2020-09-21');
INSERT INTO public.journal_details VALUES (9796, 7465, 'attr', 'due_date', '2020-09-22', '2020-09-21');
INSERT INTO public.journal_details VALUES (9797, 7465, 'attr', 'start_date', '2020-09-22', '2020-09-21');
INSERT INTO public.journal_details VALUES (9798, 7466, 'attr', 'fixed_version_id', '29', '30');
INSERT INTO public.journal_details VALUES (9799, 7467, 'attr', 'due_date', '2020-09-19', '2020-09-21');
INSERT INTO public.journal_details VALUES (9800, 7467, 'attr', 'start_date', '2020-09-19', '2020-09-21');
INSERT INTO public.journal_details VALUES (9801, 7468, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (9802, 7469, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (9803, 7470, 'attr', 'assigned_to_id', '40', '39');
INSERT INTO public.journal_details VALUES (9804, 7471, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9805, 7472, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9806, 7473, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9807, 7474, 'attr', 'assigned_to_id', '40', '8');
INSERT INTO public.journal_details VALUES (9808, 7475, 'attr', 'assigned_to_id', '40', '8');
INSERT INTO public.journal_details VALUES (9810, 7477, 'attr', 'assigned_to_id', '12', '8');
INSERT INTO public.journal_details VALUES (9811, 7478, 'attr', 'assigned_to_id', '12', '8');
INSERT INTO public.journal_details VALUES (9814, 7481, 'attr', 'assigned_to_id', '12', '8');
INSERT INTO public.journal_details VALUES (9815, 7482, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (9816, 7483, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (9817, 7484, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (9818, 7485, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9819, 7486, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9820, 7487, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9821, 7488, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9822, 7489, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (9823, 7490, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9824, 7491, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9825, 7492, 'attr', 'due_date', '2020-09-24', '2020-09-23');
INSERT INTO public.journal_details VALUES (9826, 7492, 'attr', 'start_date', '2020-09-23', '2020-09-22');
INSERT INTO public.journal_details VALUES (9827, 7493, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9828, 7494, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9829, 7495, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9830, 7495, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9831, 7496, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9832, 7497, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9833, 7498, 'attr', 'subject', 'Sửa lại giao diện trang chủ', 'Mobile - Sửa lại giao diện trang chủ');
INSERT INTO public.journal_details VALUES (9834, 7498, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (9835, 7499, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (9836, 7499, 'attr', 'subject', 'Mobile - Sửa lại giao diện trang chủ', 'Mobile - Làm lại giao diện trang chủ');
INSERT INTO public.journal_details VALUES (9837, 7500, 'attr', 'fixed_version_id', NULL, '30');
INSERT INTO public.journal_details VALUES (9838, 7501, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9839, 7502, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9840, 7503, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9841, 7503, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9842, 7504, 'attr', 'fixed_version_id', NULL, '30');
INSERT INTO public.journal_details VALUES (9844, 7506, 'attr', 'due_date', NULL, '2020-09-23');
INSERT INTO public.journal_details VALUES (9845, 7506, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (9846, 7506, 'attr', 'fixed_version_id', NULL, '30');
INSERT INTO public.journal_details VALUES (9847, 7507, 'attr', 'due_date', '2020-09-24', '2020-09-23');
INSERT INTO public.journal_details VALUES (9848, 7507, 'attr', 'start_date', '2020-09-24', '2020-09-23');
INSERT INTO public.journal_details VALUES (9849, 7508, 'attr', 'due_date', '2020-09-24', '2020-09-23');
INSERT INTO public.journal_details VALUES (9850, 7508, 'attr', 'start_date', '2020-09-24', '2020-09-23');
INSERT INTO public.journal_details VALUES (9851, 7509, 'attr', 'due_date', '2020-09-23', '2020-09-24');
INSERT INTO public.journal_details VALUES (9852, 7509, 'attr', 'start_date', '2020-09-23', '2020-09-24');
INSERT INTO public.journal_details VALUES (9853, 7510, 'attr', 'fixed_version_id', NULL, '30');
INSERT INTO public.journal_details VALUES (9854, 7511, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9855, 7512, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9856, 7513, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9857, 7514, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9858, 7515, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9859, 7515, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9860, 7516, 'attr', 'due_date', NULL, '2020-09-28');
INSERT INTO public.journal_details VALUES (9861, 7516, 'attr', 'start_date', NULL, '2020-09-28');
INSERT INTO public.journal_details VALUES (9864, 7518, 'attr', 'due_date', NULL, '2020-09-28');
INSERT INTO public.journal_details VALUES (9865, 7518, 'attr', 'start_date', NULL, '2020-09-28');
INSERT INTO public.journal_details VALUES (9866, 7519, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9867, 7520, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9868, 7521, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9869, 7522, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9870, 7523, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9871, 7524, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9872, 7525, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9873, 7526, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (9874, 7527, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (9875, 7528, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9876, 7529, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9877, 7530, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9878, 7531, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9879, 7532, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9880, 7533, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9881, 7534, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9882, 7535, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9883, 7536, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9884, 7537, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9885, 7538, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9886, 7539, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9887, 7540, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9888, 7541, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9889, 7542, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9890, 7543, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9891, 7544, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9892, 7545, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9893, 7546, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (9894, 7547, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (9895, 7548, 'attr', 'parent_id', '2122', NULL);
INSERT INTO public.journal_details VALUES (9896, 7549, 'attr', 'parent_id', '2122', NULL);
INSERT INTO public.journal_details VALUES (9897, 7550, 'attr', 'parent_id', '2122', NULL);
INSERT INTO public.journal_details VALUES (9898, 7551, 'attr', 'parent_id', '2122', NULL);
INSERT INTO public.journal_details VALUES (9899, 7552, 'attr', 'parent_id', '2122', NULL);
INSERT INTO public.journal_details VALUES (9900, 7553, 'attr', 'parent_id', '2122', NULL);
INSERT INTO public.journal_details VALUES (9902, 7555, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (9903, 7556, 'attr', 'assigned_to_id', '8', '40');
INSERT INTO public.journal_details VALUES (9904, 7557, 'attr', 'assigned_to_id', '40', '39');
INSERT INTO public.journal_details VALUES (9905, 7558, 'attr', 'subject', 'Xóa đơn hàng', 'Hủy đơn hàng');
INSERT INTO public.journal_details VALUES (9906, 7559, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9907, 7560, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9908, 7561, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9909, 7562, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9910, 7563, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9911, 7564, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9912, 7565, 'attr', 'subject', 'API xem thông tin chi tiết Phiếu', 'API xem thông tin lịch sử nạp/ sử dụng của Phiếu');
INSERT INTO public.journal_details VALUES (9913, 7565, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9914, 7565, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9915, 7566, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9916, 7566, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9917, 7567, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (9918, 7568, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (9919, 7570, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9920, 7571, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9921, 7572, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9922, 7573, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9923, 7574, 'attr', 'assigned_to_id', '5', '41');
INSERT INTO public.journal_details VALUES (9924, 7575, 'attr', 'fixed_version_id', '31', '30');
INSERT INTO public.journal_details VALUES (9925, 7576, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9926, 7576, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9927, 7577, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9928, 7578, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9929, 7579, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9930, 7580, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (9931, 7581, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (9932, 7582, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (9933, 7583, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (9934, 7584, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (9935, 7585, 'attr', 'done_ratio', '100', '90');
INSERT INTO public.journal_details VALUES (9936, 7586, 'attr', 'assigned_to_id', '40', '39');
INSERT INTO public.journal_details VALUES (9937, 7587, 'attr', 'assigned_to_id', '40', '8');
INSERT INTO public.journal_details VALUES (9938, 7588, 'attr', 'due_date', '2020-09-23', '2020-09-25');
INSERT INTO public.journal_details VALUES (9939, 7588, 'attr', 'start_date', '2020-09-23', '2020-09-25');
INSERT INTO public.journal_details VALUES (9940, 7589, 'attr', 'due_date', '2020-09-03', '2020-09-27');
INSERT INTO public.journal_details VALUES (9941, 7589, 'attr', 'fixed_version_id', NULL, '35');
INSERT INTO public.journal_details VALUES (9942, 7589, 'attr', 'start_date', '2020-09-03', '2020-09-26');
INSERT INTO public.journal_details VALUES (9943, 7590, 'attr', 'due_date', '2020-09-12', '2020-09-27');
INSERT INTO public.journal_details VALUES (9944, 7590, 'attr', 'fixed_version_id', NULL, '35');
INSERT INTO public.journal_details VALUES (9945, 7590, 'attr', 'start_date', '2020-09-11', '2020-09-26');
INSERT INTO public.journal_details VALUES (9946, 7591, 'attr', 'due_date', '2020-09-26', '2020-09-27');
INSERT INTO public.journal_details VALUES (9947, 7591, 'attr', 'fixed_version_id', NULL, '35');
INSERT INTO public.journal_details VALUES (9948, 7591, 'attr', 'start_date', '2020-09-25', '2020-09-26');
INSERT INTO public.journal_details VALUES (9949, 7592, 'attr', 'fixed_version_id', NULL, '30');
INSERT INTO public.journal_details VALUES (9950, 7593, 'attr', 'fixed_version_id', NULL, '30');
INSERT INTO public.journal_details VALUES (9951, 7594, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9952, 7595, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (9953, 7596, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9954, 7597, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9955, 7598, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9956, 7599, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9957, 7600, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9958, 7601, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9959, 7602, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (9960, 7603, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (9961, 7604, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9962, 7604, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9963, 7605, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (9964, 7606, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9965, 7606, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9966, 7607, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9967, 7607, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9968, 7608, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9969, 7608, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9970, 7609, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9971, 7609, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9972, 7610, 'attr', 'due_date', '2020-09-26', '2020-09-27');
INSERT INTO public.journal_details VALUES (9973, 7610, 'attr', 'start_date', '2020-09-25', '2020-09-26');
INSERT INTO public.journal_details VALUES (9974, 7611, 'attr', 'due_date', '2020-09-26', '2020-09-27');
INSERT INTO public.journal_details VALUES (9975, 7611, 'attr', 'start_date', '2020-09-25', '2020-09-26');
INSERT INTO public.journal_details VALUES (9976, 7612, 'attr', 'start_date', '2020-09-25', '2020-09-26');
INSERT INTO public.journal_details VALUES (9977, 7613, 'attr', 'start_date', '2020-09-25', '2020-09-26');
INSERT INTO public.journal_details VALUES (9978, 7614, 'attr', 'start_date', '2020-09-25', '2020-09-26');
INSERT INTO public.journal_details VALUES (9979, 7615, 'attr', 'due_date', '2020-09-26', '2020-09-27');
INSERT INTO public.journal_details VALUES (9980, 7615, 'attr', 'start_date', '2020-09-25', '2020-09-26');
INSERT INTO public.journal_details VALUES (9981, 7616, 'attr', 'start_date', '2020-09-25', '2020-09-26');
INSERT INTO public.journal_details VALUES (9982, 7617, 'attr', 'start_date', '2020-09-25', '2020-09-26');
INSERT INTO public.journal_details VALUES (9983, 7618, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9984, 7619, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9985, 7620, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9986, 7621, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9987, 7622, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9988, 7623, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9989, 7624, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9990, 7625, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9991, 7626, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9992, 7627, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9993, 7627, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9994, 7628, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9995, 7628, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9996, 7629, 'attr', 'done_ratio', '50', '90');
INSERT INTO public.journal_details VALUES (9997, 7630, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (9998, 7630, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (9999, 7631, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (10000, 7632, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10001, 7633, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10002, 7634, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10003, 7635, 'attr', 'fixed_version_id', NULL, '30');
INSERT INTO public.journal_details VALUES (10004, 7636, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10005, 7636, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10006, 7637, 'attr', 'assigned_to_id', '39', '8');
INSERT INTO public.journal_details VALUES (10007, 7638, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10008, 7639, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10009, 7640, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10010, 7641, 'attr', 'subject', 'Sổ quỹ tiền mặt', 'Giao diện chính của  chức năng Sổ quỹ tiền mặt');
INSERT INTO public.journal_details VALUES (10011, 7641, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10012, 7641, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10013, 7642, 'attr', 'due_date', '2020-09-26', '2020-09-28');
INSERT INTO public.journal_details VALUES (10014, 7642, 'attr', 'fixed_version_id', NULL, '31');
INSERT INTO public.journal_details VALUES (10015, 7642, 'attr', 'start_date', '2020-09-26', '2020-09-28');
INSERT INTO public.journal_details VALUES (10016, 7643, 'attr', 'due_date', '2020-09-26', '2020-09-28');
INSERT INTO public.journal_details VALUES (10017, 7643, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (10018, 7643, 'attr', 'fixed_version_id', NULL, '31');
INSERT INTO public.journal_details VALUES (10019, 7643, 'attr', 'start_date', '2020-09-26', '2020-09-28');
INSERT INTO public.journal_details VALUES (10020, 7644, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (10021, 7645, 'attr', 'fixed_version_id', NULL, '30');
INSERT INTO public.journal_details VALUES (10022, 7646, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (10023, 7647, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (10024, 7648, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10025, 7649, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10026, 7650, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10027, 7651, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10028, 7652, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (10029, 7653, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10030, 7654, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10031, 7655, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10032, 7656, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10033, 7657, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10034, 7658, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10035, 7659, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10036, 7660, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10037, 7661, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10038, 7662, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10039, 7663, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10040, 7664, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10041, 7665, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10042, 7666, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10043, 7667, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10044, 7668, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10045, 7669, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10046, 7670, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10047, 7671, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10048, 7672, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10049, 7673, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10050, 7674, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10051, 7675, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10052, 7676, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10053, 7677, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10054, 7678, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10055, 7679, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10056, 7680, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10057, 7681, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10058, 7682, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10059, 7683, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10060, 7684, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10061, 7685, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10062, 7686, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10063, 7687, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10064, 7688, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10065, 7689, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10066, 7690, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10067, 7691, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10068, 7692, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10069, 7693, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10070, 7694, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10071, 7695, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10072, 7696, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10073, 7697, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10074, 7698, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (10075, 7699, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10076, 7700, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10077, 7701, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10078, 7702, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10079, 7703, 'attr', 'due_date', '2020-09-25', '2020-09-28');
INSERT INTO public.journal_details VALUES (10080, 7703, 'attr', 'start_date', '2020-09-25', '2020-09-28');
INSERT INTO public.journal_details VALUES (10081, 7704, 'attr', 'due_date', '2020-09-25', '2020-09-28');
INSERT INTO public.journal_details VALUES (10082, 7704, 'attr', 'start_date', '2020-09-25', '2020-09-28');
INSERT INTO public.journal_details VALUES (10083, 7705, 'attr', 'due_date', '2020-09-25', '2020-09-28');
INSERT INTO public.journal_details VALUES (10084, 7705, 'attr', 'start_date', '2020-09-25', '2020-09-28');
INSERT INTO public.journal_details VALUES (10085, 7706, 'attr', 'due_date', '2020-09-24', '2020-09-28');
INSERT INTO public.journal_details VALUES (10086, 7706, 'attr', 'start_date', '2020-09-24', '2020-09-28');
INSERT INTO public.journal_details VALUES (10087, 7707, 'attr', 'due_date', '2020-09-24', '2020-09-28');
INSERT INTO public.journal_details VALUES (10088, 7707, 'attr', 'start_date', '2020-09-24', '2020-09-28');
INSERT INTO public.journal_details VALUES (10089, 7708, 'attr', 'due_date', '2020-09-25', '2020-09-28');
INSERT INTO public.journal_details VALUES (10090, 7708, 'attr', 'start_date', '2020-09-25', '2020-09-28');
INSERT INTO public.journal_details VALUES (10091, 7709, 'attr', 'fixed_version_id', '30', '31');
INSERT INTO public.journal_details VALUES (10092, 7710, 'attr', 'fixed_version_id', '30', '31');
INSERT INTO public.journal_details VALUES (10093, 7711, 'attr', 'fixed_version_id', '30', '31');
INSERT INTO public.journal_details VALUES (10094, 7712, 'attr', 'fixed_version_id', '30', '31');
INSERT INTO public.journal_details VALUES (10095, 7713, 'attr', 'fixed_version_id', '30', '31');
INSERT INTO public.journal_details VALUES (10096, 7714, 'attr', 'fixed_version_id', '30', '31');
INSERT INTO public.journal_details VALUES (10097, 7715, 'attr', 'fixed_version_id', '30', '31');
INSERT INTO public.journal_details VALUES (10098, 7716, 'attr', 'due_date', '2020-09-27', '2020-09-29');
INSERT INTO public.journal_details VALUES (10099, 7716, 'attr', 'assigned_to_id', '4', '37');
INSERT INTO public.journal_details VALUES (10100, 7716, 'attr', 'fixed_version_id', '35', '36');
INSERT INTO public.journal_details VALUES (10210, 7782, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10101, 7716, 'attr', 'start_date', '2020-09-26', '2020-09-28');
INSERT INTO public.journal_details VALUES (10102, 7717, 'attr', 'due_date', '2020-09-27', '2020-09-29');
INSERT INTO public.journal_details VALUES (10103, 7717, 'attr', 'assigned_to_id', '4', '37');
INSERT INTO public.journal_details VALUES (10104, 7717, 'attr', 'fixed_version_id', '35', '36');
INSERT INTO public.journal_details VALUES (10105, 7717, 'attr', 'start_date', '2020-09-26', '2020-09-28');
INSERT INTO public.journal_details VALUES (10106, 7718, 'attr', 'due_date', '2020-09-27', '2020-09-29');
INSERT INTO public.journal_details VALUES (10107, 7718, 'attr', 'assigned_to_id', '4', '37');
INSERT INTO public.journal_details VALUES (10108, 7718, 'attr', 'fixed_version_id', '35', '36');
INSERT INTO public.journal_details VALUES (10109, 7718, 'attr', 'start_date', '2020-09-26', '2020-09-28');
INSERT INTO public.journal_details VALUES (10110, 7719, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (10112, 7721, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (10113, 7722, 'attr', 'assigned_to_id', '4', '13');
INSERT INTO public.journal_details VALUES (10116, 7724, 'attr', 'due_date', '2020-09-28', '2020-09-30');
INSERT INTO public.journal_details VALUES (10117, 7724, 'attr', 'start_date', '2020-09-28', '2020-09-30');
INSERT INTO public.journal_details VALUES (10118, 7725, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (10119, 7726, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (10120, 7727, 'attr', 'assigned_to_id', '4', '37');
INSERT INTO public.journal_details VALUES (10121, 7728, 'attr', 'due_date', '2020-09-28', '2020-09-29');
INSERT INTO public.journal_details VALUES (10122, 7728, 'attr', 'start_date', '2020-09-28', '2020-09-29');
INSERT INTO public.journal_details VALUES (10123, 7729, 'attr', 'due_date', '2020-09-28', '2020-09-29');
INSERT INTO public.journal_details VALUES (10124, 7729, 'attr', 'start_date', '2020-09-28', '2020-09-29');
INSERT INTO public.journal_details VALUES (10125, 7730, 'attr', 'due_date', '2020-09-28', '2020-09-29');
INSERT INTO public.journal_details VALUES (10126, 7730, 'attr', 'start_date', '2020-09-28', '2020-09-29');
INSERT INTO public.journal_details VALUES (10127, 7731, 'attr', 'due_date', '2020-09-28', '2020-09-29');
INSERT INTO public.journal_details VALUES (10128, 7731, 'attr', 'start_date', '2020-09-28', '2020-09-29');
INSERT INTO public.journal_details VALUES (10129, 7732, 'attr', 'due_date', '2020-09-27', '2020-09-30');
INSERT INTO public.journal_details VALUES (10130, 7732, 'attr', 'fixed_version_id', '35', '36');
INSERT INTO public.journal_details VALUES (10131, 7732, 'attr', 'start_date', '2020-09-26', '2020-09-29');
INSERT INTO public.journal_details VALUES (10132, 7733, 'attr', 'due_date', '2020-09-27', '2020-09-30');
INSERT INTO public.journal_details VALUES (10133, 7733, 'attr', 'fixed_version_id', '35', '36');
INSERT INTO public.journal_details VALUES (10134, 7733, 'attr', 'start_date', '2020-09-26', '2020-09-29');
INSERT INTO public.journal_details VALUES (10135, 7734, 'attr', 'due_date', '2020-09-27', '2020-09-30');
INSERT INTO public.journal_details VALUES (10136, 7734, 'attr', 'fixed_version_id', '35', '36');
INSERT INTO public.journal_details VALUES (10137, 7734, 'attr', 'start_date', '2020-09-26', '2020-09-29');
INSERT INTO public.journal_details VALUES (10138, 7735, 'attr', 'due_date', '2020-09-27', '2020-09-30');
INSERT INTO public.journal_details VALUES (10139, 7735, 'attr', 'fixed_version_id', '35', '36');
INSERT INTO public.journal_details VALUES (10140, 7735, 'attr', 'start_date', '2020-09-26', '2020-09-29');
INSERT INTO public.journal_details VALUES (10141, 7736, 'attr', 'due_date', '2020-09-27', '2020-09-30');
INSERT INTO public.journal_details VALUES (10142, 7736, 'attr', 'fixed_version_id', '35', '36');
INSERT INTO public.journal_details VALUES (10143, 7736, 'attr', 'start_date', '2020-09-26', '2020-09-29');
INSERT INTO public.journal_details VALUES (10144, 7737, 'attr', 'due_date', '2020-09-27', '2020-09-30');
INSERT INTO public.journal_details VALUES (10145, 7737, 'attr', 'fixed_version_id', '35', '36');
INSERT INTO public.journal_details VALUES (10146, 7737, 'attr', 'start_date', '2020-09-26', '2020-09-29');
INSERT INTO public.journal_details VALUES (10147, 7738, 'attr', 'due_date', '2020-09-27', '2020-09-30');
INSERT INTO public.journal_details VALUES (10148, 7738, 'attr', 'fixed_version_id', '35', '36');
INSERT INTO public.journal_details VALUES (10149, 7738, 'attr', 'start_date', '2020-09-26', '2020-09-29');
INSERT INTO public.journal_details VALUES (10150, 7739, 'attr', 'due_date', '2020-09-27', '2020-09-30');
INSERT INTO public.journal_details VALUES (10151, 7739, 'attr', 'fixed_version_id', '35', '36');
INSERT INTO public.journal_details VALUES (10152, 7739, 'attr', 'start_date', '2020-09-26', '2020-09-29');
INSERT INTO public.journal_details VALUES (10153, 7740, 'attr', 'due_date', '2020-09-27', '2020-09-30');
INSERT INTO public.journal_details VALUES (10154, 7740, 'attr', 'fixed_version_id', '35', '36');
INSERT INTO public.journal_details VALUES (10155, 7740, 'attr', 'start_date', '2020-09-26', '2020-09-29');
INSERT INTO public.journal_details VALUES (10156, 7741, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10157, 7742, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10158, 7743, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10159, 7744, 'attr', 'due_date', '2020-09-30', '2020-09-29');
INSERT INTO public.journal_details VALUES (10160, 7744, 'attr', 'start_date', '2020-09-29', '2020-09-28');
INSERT INTO public.journal_details VALUES (10161, 7745, 'attr', 'due_date', '2020-09-30', '2020-09-29');
INSERT INTO public.journal_details VALUES (10162, 7745, 'attr', 'start_date', '2020-09-29', '2020-09-28');
INSERT INTO public.journal_details VALUES (10163, 7746, 'attr', 'due_date', '2020-09-30', '2020-09-29');
INSERT INTO public.journal_details VALUES (10164, 7746, 'attr', 'start_date', '2020-09-29', '2020-09-28');
INSERT INTO public.journal_details VALUES (10165, 7747, 'attr', 'due_date', '2020-09-30', '2020-09-29');
INSERT INTO public.journal_details VALUES (10166, 7747, 'attr', 'start_date', '2020-09-29', '2020-09-28');
INSERT INTO public.journal_details VALUES (10167, 7748, 'attr', 'due_date', '2020-09-30', '2020-09-29');
INSERT INTO public.journal_details VALUES (10168, 7748, 'attr', 'start_date', '2020-09-29', '2020-09-28');
INSERT INTO public.journal_details VALUES (10169, 7749, 'attr', 'due_date', '2020-09-30', '2020-09-29');
INSERT INTO public.journal_details VALUES (10170, 7749, 'attr', 'start_date', '2020-09-29', '2020-09-28');
INSERT INTO public.journal_details VALUES (10171, 7750, 'attr', 'due_date', '2020-09-30', '2020-09-29');
INSERT INTO public.journal_details VALUES (10172, 7750, 'attr', 'start_date', '2020-09-29', '2020-09-28');
INSERT INTO public.journal_details VALUES (10173, 7751, 'attr', 'due_date', '2020-09-30', '2020-09-29');
INSERT INTO public.journal_details VALUES (10174, 7751, 'attr', 'start_date', '2020-09-29', '2020-09-28');
INSERT INTO public.journal_details VALUES (10175, 7752, 'attr', 'due_date', '2020-09-30', '2020-09-29');
INSERT INTO public.journal_details VALUES (10176, 7752, 'attr', 'start_date', '2020-09-29', '2020-09-28');
INSERT INTO public.journal_details VALUES (10177, 7753, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10178, 7754, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10179, 7755, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10180, 7756, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (10181, 7757, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10182, 7758, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10183, 7759, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10184, 7759, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10185, 7760, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10186, 7760, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10187, 7761, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10188, 7762, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10189, 7763, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (10190, 7764, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10191, 7765, 'attr', 'assigned_to_id', '13', '37');
INSERT INTO public.journal_details VALUES (10192, 7766, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10193, 7766, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10194, 7767, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10195, 7767, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10196, 7768, 'attr', 'fixed_version_id', NULL, '31');
INSERT INTO public.journal_details VALUES (10197, 7769, 'attr', 'fixed_version_id', NULL, '31');
INSERT INTO public.journal_details VALUES (10198, 7770, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (10199, 7771, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (10200, 7772, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10201, 7773, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10202, 7774, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10203, 7775, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10204, 7776, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (10206, 7778, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10207, 7779, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10208, 7780, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10209, 7781, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10211, 7783, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10212, 7784, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10213, 7785, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10214, 7786, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10215, 7787, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10216, 7788, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10217, 7788, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10218, 7789, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10219, 7789, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10220, 7790, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10221, 7791, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10222, 7791, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (10223, 7791, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10224, 7792, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10225, 7793, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10226, 7794, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10227, 7795, 'attr', 'fixed_version_id', NULL, '31');
INSERT INTO public.journal_details VALUES (10228, 7796, 'attr', 'due_date', '2020-09-29', '2020-09-30');
INSERT INTO public.journal_details VALUES (10229, 7797, 'attr', 'due_date', '2020-10-01', '2020-10-02');
INSERT INTO public.journal_details VALUES (10230, 7798, 'attr', 'due_date', '2020-10-02', '2020-10-01');
INSERT INTO public.journal_details VALUES (10231, 7798, 'attr', 'start_date', '2020-10-01', '2020-09-30');
INSERT INTO public.journal_details VALUES (10232, 7799, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (10233, 7800, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (10234, 7801, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10235, 7801, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10236, 7802, 'attr', 'fixed_version_id', '31', '32');
INSERT INTO public.journal_details VALUES (10237, 7803, 'attr', 'subject', 'Chuyển kho', 'Giao diện tạo phiếu chuyển kho');
INSERT INTO public.journal_details VALUES (10238, 7804, 'attr', 'assigned_to_id', '38', '5');
INSERT INTO public.journal_details VALUES (10239, 7804, 'attr', 'start_date', '2020-09-30', '2020-10-01');
INSERT INTO public.journal_details VALUES (10240, 7805, 'attr', 'fixed_version_id', NULL, '31');
INSERT INTO public.journal_details VALUES (10241, 7806, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10242, 7806, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (10243, 7807, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (10244, 7808, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10245, 7809, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10246, 7810, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10247, 7811, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10248, 7812, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10249, 7813, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10250, 7814, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (10251, 7814, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10252, 7814, 'attr', 'estimated_hours', NULL, '16.0');
INSERT INTO public.journal_details VALUES (10253, 7815, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10254, 7816, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10255, 7817, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10256, 7818, 'attr', 'subject', 'Thiết Bị Đầu Đọc -> Tìm Kiếm', 'Thiết Bị Đầu Đọc -> Tìm Kiếm Thành Công');
INSERT INTO public.journal_details VALUES (10257, 7819, 'attr', 'subject', 'Thiết Bị Đầu Đọc -> Tìm Kiếm Thành Công', 'Thiết Bị Đầu Đọc -> Tìm Kiếm');
INSERT INTO public.journal_details VALUES (10258, 7820, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10259, 7821, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10260, 7822, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10261, 7823, 'attr', 'due_date', '2020-10-01', '2020-09-30');
INSERT INTO public.journal_details VALUES (10262, 7823, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10263, 7823, 'attr', 'start_date', '2020-10-01', '2020-09-30');
INSERT INTO public.journal_details VALUES (10264, 7823, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10265, 7824, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10266, 7825, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10267, 7826, 'attr', 'fixed_version_id', NULL, '36');
INSERT INTO public.journal_details VALUES (10268, 7827, 'attr', 'subject', 'Chỉnh lại màu diện tích đất còn trống, đã cho thuê', 'Chỉnh lại biểu đồ màu diện tích đất còn trống, đã cho thuê trong xem chi tiết giống với màu thống kê tổng bên ngoài');
INSERT INTO public.journal_details VALUES (10269, 7828, 'attr', 'subject', 'Thiết Bị Đầu Đọc -> Tìm Kiếm', 'Lỗi tìm kiếm tên Thiết Bị Đầu Đọc');
INSERT INTO public.journal_details VALUES (10270, 7829, 'attr', 'fixed_version_id', NULL, '33');
INSERT INTO public.journal_details VALUES (10271, 7830, 'attr', 'fixed_version_id', NULL, '33');
INSERT INTO public.journal_details VALUES (10272, 7831, 'attr', 'fixed_version_id', NULL, '33');
INSERT INTO public.journal_details VALUES (10273, 7832, 'attr', 'fixed_version_id', NULL, '33');
INSERT INTO public.journal_details VALUES (10274, 7833, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10275, 7833, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10276, 7834, 'attr', 'subject', 'Quản Lý Thẻ -> Xuất File In', 'Lỗi Xuất file in quản lý thẻ');
INSERT INTO public.journal_details VALUES (10277, 7835, 'attr', 'subject', 'Lỗi Xuất file in quản lý thẻ', 'Lỗi Xuất file in Quản lý thẻ');
INSERT INTO public.journal_details VALUES (10278, 7836, 'attr', 'subject', 'Quản Lý Thẻ -> Kích Hoạt Thẻ', 'Lỗi Kích hoạt thẻ Quản lý thẻ');
INSERT INTO public.journal_details VALUES (10279, 7837, 'attr', 'subject', 'Quản Lý Thẻ - Tạo mã QR Code', 'Lỗi Tạo mã QR Code ');
INSERT INTO public.journal_details VALUES (10280, 7838, 'attr', 'subject', 'Lỗi tìm kiếm tên Thiết Bị Đầu Đọc', 'Lỗi tìm kiếm Thiết Bị Đầu Đọc');
INSERT INTO public.journal_details VALUES (10281, 7838, 'attr', 'description', 'Xác minh chức năng "Tìm kiếm" thành công. Khi người dùng nhập đúng thông tin có trong danh sách

*Các Bước Thực Hiện:
  1. Nhập thông tin cần tìm kiếm có trong danh sách
  2. Nhấn phím Enter
*Kết Qủa Mong Đợi:
  Hiển thị danh sách các thông tin liên quan đến nội dung tìm kiếm

*Kết Qủa Tìm Kiếm:
  Hiển thị tất cả các thông tin kể cả thông tin không liên quan đến nội dung tìm kiếm

*Ví dụ:
  Nhập nội dung tìm kiếm: WC1
------------------------------------------------------------------------------------------
Xác minh chức năng "Tìm kiếm" không thành công. Khi người dùng nhập thông tin không có trong danh sách

*Các Bước Thực Hiện:
  1. Nhập thông tin cần tìm kiếm không có trong danh sách
  2. Nhấn phím Enter
*Kết Qủa Mong Đợi:
  Hiển thị thông báo thông tin tìm kiếm không có trong danh sách.

*Kết Qủa Tìm Kiếm:
  Hiển thị tất cả các thông tin kể cả thông tin không liên quan đến nội dung tìm kiếm

*Ví dụ:
Nhập nội dung tìm kiếm: abcdef', 'Xác minh chức năng "Tìm kiếm" thành công. Khi người dùng nhập đúng thông tin có trong danh sách

*Các Bước Thực Hiện:
  1. Nhập thông tin cần tìm kiếm có trong danh sách
  2. Nhấn phím Enter
*Kết Qủa Mong Đợi:
  Hiển thị danh sách các thông tin liên quan đến nội dung tìm kiếm

*Kết Qủa Thực Tế:
  Hiển thị tất cả các thông tin kể cả thông tin không liên quan đến nội dung tìm kiếm

*Ví dụ:
  Nhập nội dung tìm kiếm: WC1
------------------------------------------------------------------------------------------
Xác minh chức năng "Tìm kiếm" không thành công. Khi người dùng nhập thông tin không có trong danh sách

*Các Bước Thực Hiện:
  1. Nhập thông tin cần tìm kiếm không có trong danh sách
  2. Nhấn phím Enter
*Kết Qủa Mong Đợi:
  Hiển thị thông báo thông tin tìm kiếm không có trong danh sách.

*Kết Qủa Thực Tế
  Hiển thị tất cả các thông tin kể cả thông tin không liên quan đến nội dung tìm kiếm

*Ví dụ:
Nhập nội dung tìm kiếm: abcdef');
INSERT INTO public.journal_details VALUES (10282, 7839, 'attr', 'fixed_version_id', NULL, '33');
INSERT INTO public.journal_details VALUES (10285, 7842, 'attr', 'subject', 'Lỗi Thêm vào Danh sách sản phẩm dịch vụ', 'Lỗi Thêm thành công vào Danh sách sản phẩm dịch vụ');
INSERT INTO public.journal_details VALUES (10286, 7843, 'attr', 'subject', 'Lỗi Thêm mới chi tiết phiếu nhập hàng', 'Lỗi Thêm thất bại chi tiết phiếu nhập hàng');
INSERT INTO public.journal_details VALUES (10288, 7845, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10289, 7846, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10290, 7847, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10291, 7848, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10292, 7849, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10293, 7850, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10294, 7851, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10295, 7852, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10296, 7853, 'attr', 'fixed_version_id', NULL, '33');
INSERT INTO public.journal_details VALUES (10304, 7859, 'attachment', '109', NULL, 'dash.PNG');
INSERT INTO public.journal_details VALUES (10305, 7860, 'attachment', '110', NULL, 'baoCaoKQKD.png');
INSERT INTO public.journal_details VALUES (10306, 7861, 'attachment', '111', NULL, 'sss.PNG');
INSERT INTO public.journal_details VALUES (10307, 7862, 'attachment', '112', NULL, 'eeee.PNG');
INSERT INTO public.journal_details VALUES (10308, 7863, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10309, 7863, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10310, 7864, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10311, 7865, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10312, 7866, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10313, 7867, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10314, 7869, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10315, 7869, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10316, 7870, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10317, 7870, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10318, 7871, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (10319, 7872, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (10320, 7873, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10321, 7874, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10322, 7875, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (10323, 7876, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (10324, 7877, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (10325, 7878, 'attr', 'subject', 'Số liệu thống kê mời gọi đầu tư', 'Số liệu thống kê mời gọi đầu tư trên banner trang chủ');
INSERT INTO public.journal_details VALUES (10326, 7879, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10327, 7880, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10328, 7881, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10329, 7882, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10330, 7883, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (10331, 7884, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10332, 7885, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10333, 7886, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10334, 7887, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10335, 7888, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10339, 7892, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10340, 7893, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10341, 7894, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10342, 7895, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10343, 7896, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10344, 7897, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10345, 7898, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10346, 7899, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10347, 7900, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10348, 7901, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10349, 7902, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10350, 7903, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10351, 7904, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10352, 7905, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10353, 7906, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10354, 7907, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10355, 7908, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10356, 7909, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10357, 7910, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10358, 7911, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10359, 7912, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10360, 7913, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10361, 7914, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10362, 7915, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10363, 7916, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10364, 7917, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10365, 7918, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10366, 7919, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10367, 7920, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10368, 7921, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10369, 7921, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10370, 7922, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10371, 7922, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10372, 7922, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10373, 7922, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10374, 7923, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10375, 7924, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10376, 7924, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10377, 7924, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10378, 7924, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10379, 7925, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10380, 7925, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10381, 7925, 'attr', 'estimated_hours', NULL, '16.0');
INSERT INTO public.journal_details VALUES (10382, 7926, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10383, 7926, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10384, 7927, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10385, 7928, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10386, 7929, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (10387, 7930, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10388, 7931, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10389, 7931, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10390, 7932, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10391, 7932, 'attr', 'fixed_version_id', NULL, '31');
INSERT INTO public.journal_details VALUES (10392, 7933, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10393, 7933, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10394, 7933, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10395, 7933, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10396, 7934, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10397, 7934, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10398, 7934, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10399, 7934, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10400, 7935, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10401, 7935, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10402, 7935, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10403, 7935, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10404, 7936, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10405, 7936, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10406, 7936, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10407, 7937, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10408, 7938, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10409, 7938, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10410, 7938, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10411, 7938, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10412, 7939, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10413, 7939, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10414, 7939, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10415, 7939, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10416, 7940, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10417, 7940, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10418, 7940, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10419, 7940, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10420, 7941, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10421, 7941, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10422, 7941, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10423, 7941, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10424, 7942, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10425, 7942, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10426, 7942, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10427, 7942, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10428, 7943, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10429, 7943, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10430, 7943, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10431, 7943, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10432, 7944, 'attr', 'subject', 'Lỗi sửa thất bbaij Nhà cung cấp', 'Lỗi sửa thất bại Nhà cung cấp');
INSERT INTO public.journal_details VALUES (10433, 7944, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10434, 7944, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10435, 7944, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10436, 7944, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10437, 7945, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10438, 7945, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10439, 7945, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10440, 7945, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10441, 7946, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10442, 7946, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10443, 7946, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10444, 7946, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10445, 7947, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10446, 7947, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10447, 7947, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10448, 7947, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10449, 7948, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10450, 7948, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10451, 7948, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10452, 7948, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10453, 7949, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10454, 7949, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10455, 7949, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10456, 7949, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10457, 7950, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10458, 7950, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10459, 7952, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10460, 7952, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10461, 7954, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10462, 7955, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10463, 7955, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (10464, 7955, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10465, 7956, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10466, 7957, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10467, 7958, 'attr', 'due_date', '2020-10-02', '2020-10-03');
INSERT INTO public.journal_details VALUES (10468, 7958, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (10469, 7959, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10470, 7959, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10471, 7960, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10472, 7961, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10473, 7962, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10474, 7963, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10475, 7964, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10476, 7965, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10477, 7966, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10478, 7967, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10479, 7968, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10480, 7969, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10481, 7970, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10482, 7971, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10483, 7972, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10484, 7973, 'attr', 'due_date', '2020-10-01', '2020-10-03');
INSERT INTO public.journal_details VALUES (10485, 7973, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (10486, 7973, 'attr', 'start_date', '2020-10-01', '2020-10-03');
INSERT INTO public.journal_details VALUES (10487, 7974, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10488, 7975, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10489, 7976, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10490, 7977, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10491, 7978, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10492, 7979, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10493, 7980, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10494, 7981, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10495, 7982, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10496, 7983, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10497, 7984, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10498, 7985, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10499, 7986, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10500, 7987, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10501, 7988, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10502, 7989, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10503, 7990, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10504, 7991, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10505, 7992, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10506, 7993, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10507, 7994, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10509, 7996, 'attr', 'due_date', NULL, '2020-09-30');
INSERT INTO public.journal_details VALUES (10510, 7996, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10511, 7996, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10512, 7996, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10513, 7997, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (10514, 7998, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (10515, 7999, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (10516, 7999, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10517, 7999, 'attr', 'estimated_hours', NULL, '8.0');
INSERT INTO public.journal_details VALUES (10518, 8000, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10519, 8001, 'attr', 'fixed_version_id', '31', '32');
INSERT INTO public.journal_details VALUES (10521, 8003, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10524, 8006, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10525, 8006, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10526, 8007, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10527, 8007, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10528, 8008, 'attr', 'due_date', NULL, '2020-10-03');
INSERT INTO public.journal_details VALUES (10529, 8008, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10530, 8008, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10531, 8008, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10532, 8009, 'attr', 'due_date', NULL, '2020-10-03');
INSERT INTO public.journal_details VALUES (10533, 8009, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10534, 8009, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10535, 8009, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10536, 8010, 'attr', 'due_date', NULL, '2020-10-03');
INSERT INTO public.journal_details VALUES (10537, 8010, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10538, 8010, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10539, 8010, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10540, 8011, 'attr', 'subject', 'Lỗi Xuất lile Thủ Qũy Tiền Mặt', 'Lỗi Xuất file Thủ Qũy Tiền Mặt');
INSERT INTO public.journal_details VALUES (10541, 8012, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10542, 8013, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10543, 8013, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10544, 8014, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (10545, 8015, 'attr', 'due_date', NULL, '2020-10-03');
INSERT INTO public.journal_details VALUES (10546, 8016, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10547, 8017, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (10548, 8018, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (10549, 8019, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (10550, 8020, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (10552, 8022, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (10553, 8023, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (10554, 8024, 'attr', 'assigned_to_id', '19', '12');
INSERT INTO public.journal_details VALUES (10555, 8025, 'attr', 'fixed_version_id', NULL, '31');
INSERT INTO public.journal_details VALUES (10556, 8026, 'attr', 'fixed_version_id', NULL, '31');
INSERT INTO public.journal_details VALUES (10557, 8027, 'attr', 'fixed_version_id', NULL, '31');
INSERT INTO public.journal_details VALUES (10558, 8028, 'attr', 'fixed_version_id', NULL, '31');
INSERT INTO public.journal_details VALUES (10559, 8029, 'attr', 'fixed_version_id', NULL, '31');
INSERT INTO public.journal_details VALUES (10560, 8030, 'attr', 'fixed_version_id', NULL, '31');
INSERT INTO public.journal_details VALUES (10561, 8031, 'attr', 'fixed_version_id', NULL, '31');
INSERT INTO public.journal_details VALUES (10562, 8032, 'attr', 'fixed_version_id', NULL, '31');
INSERT INTO public.journal_details VALUES (10563, 8033, 'attr', 'due_date', NULL, '2020-10-03');
INSERT INTO public.journal_details VALUES (10564, 8033, 'attr', 'start_date', '2020-10-05', '2020-10-03');
INSERT INTO public.journal_details VALUES (10565, 8034, 'attr', 'due_date', '2020-10-05', '2020-10-03');
INSERT INTO public.journal_details VALUES (10566, 8034, 'attr', 'start_date', '2020-10-05', '2020-10-03');
INSERT INTO public.journal_details VALUES (10567, 8035, 'attr', 'due_date', '2020-10-05', '2020-10-03');
INSERT INTO public.journal_details VALUES (10568, 8035, 'attr', 'start_date', '2020-10-05', '2020-10-03');
INSERT INTO public.journal_details VALUES (10569, 8036, 'attr', 'due_date', '2020-10-05', '2020-10-03');
INSERT INTO public.journal_details VALUES (10570, 8036, 'attr', 'start_date', '2020-10-05', '2020-10-03');
INSERT INTO public.journal_details VALUES (10571, 8037, 'attr', 'due_date', '2020-10-05', '2020-10-03');
INSERT INTO public.journal_details VALUES (10572, 8037, 'attr', 'start_date', '2020-10-05', '2020-10-03');
INSERT INTO public.journal_details VALUES (10573, 8038, 'attr', 'due_date', '2020-10-05', '2020-10-03');
INSERT INTO public.journal_details VALUES (10574, 8038, 'attr', 'start_date', '2020-10-05', '2020-10-03');
INSERT INTO public.journal_details VALUES (10575, 8039, 'attr', 'due_date', '2020-10-05', '2020-10-03');
INSERT INTO public.journal_details VALUES (10576, 8039, 'attr', 'start_date', '2020-10-05', '2020-10-03');
INSERT INTO public.journal_details VALUES (10577, 8040, 'attr', 'due_date', '2020-10-05', '2020-10-03');
INSERT INTO public.journal_details VALUES (10578, 8040, 'attr', 'start_date', '2020-10-05', '2020-10-03');
INSERT INTO public.journal_details VALUES (10579, 8041, 'attr', 'due_date', '2020-10-05', '2020-10-03');
INSERT INTO public.journal_details VALUES (10580, 8041, 'attr', 'start_date', '2020-10-05', '2020-10-03');
INSERT INTO public.journal_details VALUES (10581, 8042, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10582, 8042, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10583, 8043, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10584, 8043, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10585, 8044, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10586, 8044, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10587, 8045, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10588, 8045, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10589, 8046, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10590, 8046, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10591, 8047, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10592, 8047, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10593, 8048, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10594, 8048, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10595, 8049, 'attr', 'due_date', '2020-10-03', '2020-10-05');
INSERT INTO public.journal_details VALUES (10596, 8049, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (10597, 8049, 'attr', 'fixed_version_id', '31', '32');
INSERT INTO public.journal_details VALUES (10598, 8049, 'attr', 'start_date', '2020-10-03', '2020-10-05');
INSERT INTO public.journal_details VALUES (10599, 8050, 'attr', 'due_date', '2020-10-03', '2020-10-05');
INSERT INTO public.journal_details VALUES (10600, 8050, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (10601, 8050, 'attr', 'fixed_version_id', '31', '32');
INSERT INTO public.journal_details VALUES (10602, 8050, 'attr', 'start_date', '2020-10-03', '2020-10-05');
INSERT INTO public.journal_details VALUES (10603, 8051, 'attr', 'done_ratio', '0', '70');
INSERT INTO public.journal_details VALUES (10604, 8052, 'attr', 'due_date', '2020-10-01', '2020-10-10');
INSERT INTO public.journal_details VALUES (10605, 8052, 'attr', 'start_date', '2020-09-30', '2020-10-08');
INSERT INTO public.journal_details VALUES (10606, 8053, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (10607, 8054, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10608, 8055, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10609, 8056, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10610, 8057, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10611, 8058, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10612, 8059, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10613, 8060, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10614, 8061, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10615, 8062, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10616, 8063, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10617, 8064, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10618, 8065, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10619, 8066, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (10620, 8067, 'attr', 'fixed_version_id', '31', '32');
INSERT INTO public.journal_details VALUES (10621, 8068, 'attr', 'fixed_version_id', '31', '32');
INSERT INTO public.journal_details VALUES (10622, 8069, 'attr', 'due_date', '2020-09-30', '2020-10-07');
INSERT INTO public.journal_details VALUES (10623, 8069, 'attr', 'start_date', '2020-09-30', '2020-10-07');
INSERT INTO public.journal_details VALUES (10624, 8070, 'attr', 'due_date', '2020-10-03', '2020-10-05');
INSERT INTO public.journal_details VALUES (10625, 8070, 'attr', 'start_date', '2020-10-03', '2020-10-05');
INSERT INTO public.journal_details VALUES (10626, 8071, 'attr', 'due_date', '2020-10-03', '2020-10-05');
INSERT INTO public.journal_details VALUES (10627, 8071, 'attr', 'start_date', '2020-10-03', '2020-10-05');
INSERT INTO public.journal_details VALUES (10628, 8072, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (10629, 8073, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10630, 8074, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10631, 8075, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10632, 8076, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10633, 8077, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10634, 8078, 'attr', 'subject', 'Xuất excel danh sách điểm đầu tư theo điều kiện lọc', 'Xuất excel mục thống kê điểm đầu tư theo điều kiện lọc');
INSERT INTO public.journal_details VALUES (10635, 8079, 'attr', 'due_date', '2020-10-01', '2020-10-07');
INSERT INTO public.journal_details VALUES (10636, 8079, 'attr', 'fixed_version_id', '36', '37');
INSERT INTO public.journal_details VALUES (10637, 8079, 'attr', 'start_date', '2020-09-30', '2020-10-05');
INSERT INTO public.journal_details VALUES (10638, 8080, 'attr', 'due_date', '2020-10-01', '2020-10-07');
INSERT INTO public.journal_details VALUES (10639, 8080, 'attr', 'fixed_version_id', '36', '37');
INSERT INTO public.journal_details VALUES (10640, 8080, 'attr', 'start_date', '2020-09-30', '2020-10-05');
INSERT INTO public.journal_details VALUES (10641, 8081, 'attr', 'due_date', '2020-10-01', '2020-10-07');
INSERT INTO public.journal_details VALUES (10642, 8081, 'attr', 'fixed_version_id', '36', '37');
INSERT INTO public.journal_details VALUES (10643, 8081, 'attr', 'start_date', '2020-09-30', '2020-10-05');
INSERT INTO public.journal_details VALUES (10647, 8083, 'attr', 'due_date', '2020-10-01', '2020-10-07');
INSERT INTO public.journal_details VALUES (10648, 8083, 'attr', 'fixed_version_id', '36', '37');
INSERT INTO public.journal_details VALUES (10649, 8083, 'attr', 'start_date', '2020-09-30', '2020-10-05');
INSERT INTO public.journal_details VALUES (10650, 8084, 'attr', 'due_date', '2020-10-01', '2020-10-07');
INSERT INTO public.journal_details VALUES (10651, 8084, 'attr', 'fixed_version_id', '36', '37');
INSERT INTO public.journal_details VALUES (10652, 8084, 'attr', 'start_date', '2020-09-30', '2020-10-05');
INSERT INTO public.journal_details VALUES (10653, 8085, 'attr', 'due_date', '2020-10-01', '2020-10-07');
INSERT INTO public.journal_details VALUES (10654, 8085, 'attr', 'fixed_version_id', '36', '37');
INSERT INTO public.journal_details VALUES (10655, 8085, 'attr', 'start_date', '2020-09-30', '2020-10-05');
INSERT INTO public.journal_details VALUES (10656, 8086, 'attr', 'due_date', '2020-10-02', '2020-10-07');
INSERT INTO public.journal_details VALUES (10657, 8086, 'attr', 'fixed_version_id', '36', '37');
INSERT INTO public.journal_details VALUES (10658, 8086, 'attr', 'start_date', '2020-10-02', '2020-10-05');
INSERT INTO public.journal_details VALUES (10659, 8087, 'attr', 'due_date', '2020-10-03', '2020-10-07');
INSERT INTO public.journal_details VALUES (10660, 8087, 'attr', 'fixed_version_id', '36', '37');
INSERT INTO public.journal_details VALUES (10661, 8087, 'attr', 'start_date', '2020-10-02', '2020-10-05');
INSERT INTO public.journal_details VALUES (10662, 8088, 'attr', 'due_date', '2020-10-03', '2020-10-07');
INSERT INTO public.journal_details VALUES (10663, 8088, 'attr', 'fixed_version_id', '36', '37');
INSERT INTO public.journal_details VALUES (10664, 8088, 'attr', 'start_date', '2020-10-02', '2020-10-05');
INSERT INTO public.journal_details VALUES (10665, 8089, 'attr', 'due_date', '2020-10-06', '2020-10-07');
INSERT INTO public.journal_details VALUES (10666, 8089, 'attr', 'fixed_version_id', '36', '37');
INSERT INTO public.journal_details VALUES (10667, 8090, 'attr', 'due_date', '2020-10-06', '2020-10-07');
INSERT INTO public.journal_details VALUES (10668, 8090, 'attr', 'fixed_version_id', '36', '37');
INSERT INTO public.journal_details VALUES (10669, 8091, 'attr', 'due_date', '2020-10-05', '2020-10-07');
INSERT INTO public.journal_details VALUES (10670, 8091, 'attr', 'fixed_version_id', '36', '37');
INSERT INTO public.journal_details VALUES (10671, 8092, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10672, 8092, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10673, 8093, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10674, 8093, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10675, 8094, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10676, 8094, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10677, 8095, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10678, 8095, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10679, 8096, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10680, 8096, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10681, 8097, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10682, 8098, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10683, 8099, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10684, 8100, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10685, 8101, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (10686, 8102, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10687, 8103, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10688, 8104, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10689, 8105, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10690, 8106, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10691, 8107, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (10692, 8108, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (10693, 8109, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10694, 8110, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10695, 8110, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10696, 8111, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (10697, 8112, 'attr', 'subject', 'Dashboard: Gắn api thống kê doanh thu từ bán hàng theo điểm kinh doanh từ ngày đến ngày.', 'Dashboard: Gắn api doanh thu bán hàng theo điểm kinh doanh từ ngày đến ngày.');
INSERT INTO public.journal_details VALUES (10698, 8113, 'attr', 'subject', 'Kiểm kho', 'Tạo phiếu kiểm kho');
INSERT INTO public.journal_details VALUES (10699, 8114, 'attr', 'fixed_version_id', '32', '38');
INSERT INTO public.journal_details VALUES (10700, 8115, 'attr', 'fixed_version_id', '32', '38');
INSERT INTO public.journal_details VALUES (10701, 8116, 'attr', 'fixed_version_id', '32', '38');
INSERT INTO public.journal_details VALUES (10702, 8117, 'attr', 'fixed_version_id', '32', '38');
INSERT INTO public.journal_details VALUES (10703, 8118, 'attr', 'due_date', '2020-10-10', '2020-10-12');
INSERT INTO public.journal_details VALUES (10704, 8118, 'attr', 'start_date', '2020-10-08', '2020-10-12');
INSERT INTO public.journal_details VALUES (10705, 8119, 'attr', 'due_date', '2020-10-09', '2020-10-12');
INSERT INTO public.journal_details VALUES (10706, 8119, 'attr', 'start_date', '2020-10-09', '2020-10-12');
INSERT INTO public.journal_details VALUES (10707, 8120, 'attr', 'due_date', '2020-10-09', '2020-10-12');
INSERT INTO public.journal_details VALUES (10708, 8120, 'attr', 'start_date', '2020-10-09', '2020-10-12');
INSERT INTO public.journal_details VALUES (10709, 8121, 'attr', 'due_date', '2020-10-10', '2020-10-12');
INSERT INTO public.journal_details VALUES (10710, 8121, 'attr', 'start_date', '2020-10-10', '2020-10-12');
INSERT INTO public.journal_details VALUES (10712, 8123, 'attr', 'parent_id', NULL, '2230');
INSERT INTO public.journal_details VALUES (10713, 8124, 'attr', 'parent_id', NULL, '2230');
INSERT INTO public.journal_details VALUES (10714, 8125, 'attr', 'parent_id', NULL, '2230');
INSERT INTO public.journal_details VALUES (10715, 8126, 'attr', 'parent_id', NULL, '2230');
INSERT INTO public.journal_details VALUES (10716, 8127, 'attr', 'parent_id', NULL, '2230');
INSERT INTO public.journal_details VALUES (10717, 8128, 'attr', 'parent_id', NULL, '2230');
INSERT INTO public.journal_details VALUES (10718, 8129, 'attr', 'parent_id', NULL, '2230');
INSERT INTO public.journal_details VALUES (10719, 8130, 'attr', 'done_ratio', '0', '30');
INSERT INTO public.journal_details VALUES (10720, 8131, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10721, 8132, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (10722, 8133, 'attr', 'subject', 'Dashboard: Gắp api tổng quan doanh thu của các điểm kinh doanh vào PieChart', 'Dashboard: Gắp api doanh thu các điểm kinh doanh');
INSERT INTO public.journal_details VALUES (10723, 8134, 'attr', 'subject', 'Dashboard: Api tổng quan doanh thu của các điểm kinh doanh', 'Dashboard: Api doanh thu các điểm kinh doanh');
INSERT INTO public.journal_details VALUES (10724, 8135, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10725, 8136, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10726, 8137, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10727, 8138, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10728, 8139, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10729, 8139, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10730, 8140, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10731, 8140, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10732, 8141, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10733, 8142, 'attr', 'fixed_version_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10734, 8142, 'attr', 'parent_id', '2196', NULL);
INSERT INTO public.journal_details VALUES (10735, 8143, 'attr', 'fixed_version_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10736, 8143, 'attr', 'parent_id', '2196', NULL);
INSERT INTO public.journal_details VALUES (10737, 8144, 'attr', 'fixed_version_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10738, 8144, 'attr', 'parent_id', '2196', NULL);
INSERT INTO public.journal_details VALUES (10739, 8145, 'attr', 'due_date', NULL, '2020-10-05');
INSERT INTO public.journal_details VALUES (10740, 8145, 'attr', 'start_date', '2020-09-29', '2020-10-05');
INSERT INTO public.journal_details VALUES (10741, 8146, 'attr', 'due_date', NULL, '2020-10-05');
INSERT INTO public.journal_details VALUES (10742, 8146, 'attr', 'start_date', '2020-09-29', '2020-10-05');
INSERT INTO public.journal_details VALUES (10743, 8147, 'attr', 'due_date', NULL, '2020-10-05');
INSERT INTO public.journal_details VALUES (10744, 8147, 'attr', 'start_date', '2020-09-29', '2020-10-05');
INSERT INTO public.journal_details VALUES (10745, 8148, 'attr', 'fixed_version_id', '39', '40');
INSERT INTO public.journal_details VALUES (10746, 8149, 'attr', 'fixed_version_id', '39', '40');
INSERT INTO public.journal_details VALUES (10747, 8150, 'attr', 'due_date', '2020-10-06', '2020-10-12');
INSERT INTO public.journal_details VALUES (10748, 8150, 'attr', 'start_date', '2020-10-06', '2020-10-12');
INSERT INTO public.journal_details VALUES (10749, 8151, 'attr', 'due_date', '2020-10-06', '2020-10-12');
INSERT INTO public.journal_details VALUES (10750, 8151, 'attr', 'start_date', '2020-10-06', '2020-10-12');
INSERT INTO public.journal_details VALUES (10751, 8152, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10752, 8153, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10753, 8154, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10754, 8155, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10755, 8156, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (10756, 8157, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10757, 8158, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10758, 8159, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10759, 8160, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10760, 8161, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10761, 8162, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10762, 8163, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10763, 8164, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10764, 8165, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10765, 8166, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10766, 8167, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10767, 8168, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10768, 8168, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10769, 8169, 'attr', 'done_ratio', '30', '100');
INSERT INTO public.journal_details VALUES (10770, 8170, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10771, 8171, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (10772, 8172, 'attr', 'fixed_version_id', '38', '32');
INSERT INTO public.journal_details VALUES (10773, 8173, 'attr', 'fixed_version_id', '38', '32');
INSERT INTO public.journal_details VALUES (10774, 8174, 'attr', 'fixed_version_id', '38', '32');
INSERT INTO public.journal_details VALUES (10775, 8175, 'attr', 'fixed_version_id', '38', '32');
INSERT INTO public.journal_details VALUES (10776, 8176, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10777, 8176, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10778, 8177, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10779, 8177, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10780, 8178, 'attr', 'due_date', '2020-10-12', '2020-10-07');
INSERT INTO public.journal_details VALUES (10781, 8178, 'attr', 'start_date', '2020-10-12', '2020-10-07');
INSERT INTO public.journal_details VALUES (10782, 8179, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10783, 8179, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10784, 8180, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10785, 8181, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10786, 8182, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10787, 8183, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10788, 8184, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10789, 8185, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10790, 8186, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (10791, 8187, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10792, 8188, 'attr', 'subject', 'Tạo phiếu kiểm kho', 'Xem phiếu kiểm kho');
INSERT INTO public.journal_details VALUES (10793, 8189, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (10794, 8190, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10795, 8190, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10796, 8191, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10797, 8192, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10798, 8192, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10799, 8192, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10800, 8193, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10801, 8193, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10802, 8193, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10803, 8194, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10804, 8194, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (10805, 8194, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10806, 8195, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (10807, 8196, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10808, 8196, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10809, 8197, 'attr', 'due_date', '2020-10-12', '2020-10-08');
INSERT INTO public.journal_details VALUES (10810, 8197, 'attr', 'start_date', '2020-10-12', '2020-10-08');
INSERT INTO public.journal_details VALUES (10811, 8198, 'attr', 'due_date', '2020-10-12', '2020-10-08');
INSERT INTO public.journal_details VALUES (10812, 8198, 'attr', 'start_date', '2020-10-12', '2020-10-08');
INSERT INTO public.journal_details VALUES (10813, 8199, 'attr', 'due_date', '2020-10-12', '2020-10-08');
INSERT INTO public.journal_details VALUES (10814, 8199, 'attr', 'start_date', '2020-10-12', '2020-10-08');
INSERT INTO public.journal_details VALUES (10815, 8200, 'attr', 'due_date', '2020-10-07', '2020-10-10');
INSERT INTO public.journal_details VALUES (10816, 8200, 'attr', 'start_date', '2020-10-05', '2020-10-09');
INSERT INTO public.journal_details VALUES (10817, 8201, 'attr', 'fixed_version_id', '32', '38');
INSERT INTO public.journal_details VALUES (10818, 8202, 'attr', 'due_date', '2020-10-10', '2020-10-17');
INSERT INTO public.journal_details VALUES (10819, 8202, 'attr', 'start_date', '2020-10-07', '2020-10-12');
INSERT INTO public.journal_details VALUES (10820, 8203, 'attr', 'due_date', '2020-10-10', '2020-10-13');
INSERT INTO public.journal_details VALUES (10821, 8203, 'attr', 'fixed_version_id', '32', '38');
INSERT INTO public.journal_details VALUES (10822, 8203, 'attr', 'start_date', '2020-10-08', '2020-10-12');
INSERT INTO public.journal_details VALUES (10823, 8204, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (10824, 8205, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (10825, 8206, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (10826, 8207, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (10827, 8208, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (10828, 8209, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (10829, 8210, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (10830, 8211, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (10831, 8212, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (10832, 8213, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (10833, 8214, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (10834, 8215, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (10835, 8216, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (10836, 8217, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10837, 8217, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10838, 8217, 'attr', 'estimated_hours', NULL, '0.0');
INSERT INTO public.journal_details VALUES (10839, 8218, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (10840, 8219, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10841, 8220, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (10842, 8221, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10843, 8222, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10844, 8223, 'attr', 'description', 'Các bước thực hiện:
1. Nhấn chuột vào Quản lý xúc tiến đầu tư
2. Chọn Điểm đầu tư
3. Nhấn nút chỉnh sửa
4. Xóa Tên, vị trí, quận huyện 

--> Kết quả sai: Tên doanh nghiệp, vị trí, quận huyện có dấu * đỏ nhưng vẫn bỏ trống dược', 'Các bước thực hiện:
1. Nhấn chuột vào Quản lý xúc tiến đầu tư
2. Chọn Điểm đầu tư
3. Nhấn nút chỉnh sửa

--> Kết quả sai: Tên doanh nghiệp, vị trí, quận huyện có dấu * đỏ nhưng vẫn bỏ trống được - Bản đồ thông báo cập nhật thành công nhưng không lưu');
INSERT INTO public.journal_details VALUES (10927, 8296, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10928, 8297, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10929, 8298, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10930, 8299, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10931, 8300, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10932, 8301, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10933, 8302, 'attr', 'due_date', '2020-10-11', '2020-10-14');
INSERT INTO public.journal_details VALUES (10934, 8302, 'attr', 'fixed_version_id', '37', '45');
INSERT INTO public.journal_details VALUES (10935, 8302, 'attr', 'start_date', '2020-10-10', '2020-10-13');
INSERT INTO public.journal_details VALUES (10936, 8303, 'attr', 'due_date', '2020-10-11', '2020-10-14');
INSERT INTO public.journal_details VALUES (10845, 8224, 'attr', 'description', 'Các bước thực hiện:
1. Vào điểm đầu tư
2. Chọn thông tin đầu tư
3. Chọn 1 doanh nghiệp
4. Chọn biểu tượng Sửa 

--> Kết quả sai: Khi nhập sai định dạng --> chọn biểu tượng Lưu --> Thông tin đúng định dạng thì hiển thị, sai định dạng không hiển thị nhưng không có thông báo lỗi.
Nhấn nút hủy chỉnh sửa nhưng vẫn lưu', 'Các bước thực hiện:
1. Vào điểm đầu tư
2. Chọn thông tin đầu tư
3. Chọn 1 doanh nghiệp
4. Chọn biểu tượng Sửa của thông tin thuê
5. Nhập nội dung chỉnh sửa

--> Kết quả sai: 
- Khi nhập sai định dạng --> chọn biểu tượng Lưu --> Thông tin đúng định dạng thì hiển thị, sai định dạng không hiển thị nhưng không có thông báo lỗi.
- Nút hủy chỉnh sửa của thông tin doanh nghiệp và thông tin thuê đều sai');
INSERT INTO public.journal_details VALUES (10846, 8225, 'attr', 'description', 'Các bước thực hiện:
1. Nhấn chuột vào Quản lý xúc tiến đầu tư
2. Chọn Điểm đầu tư
3. Nhấn nút chỉnh sửa

--> Kết quả sai: Tên doanh nghiệp, vị trí, quận huyện có dấu * đỏ nhưng vẫn bỏ trống được - Bản đồ thông báo cập nhật thành công nhưng không lưu', 'Các bước thực hiện:
1. Nhấn chuột vào Quản lý xúc tiến đầu tư
2. Chọn Điểm đầu tư
3. Nhấn nút chỉnh sửa
4. Nhập nội dung chỉnh sửa

--> Kết quả sai: Không nhập thông tin vào các trường có dấu * nhưng vẫn cho phép lưu- Bản đồ thông báo cập nhật thành công nhưng không lưu');
INSERT INTO public.journal_details VALUES (10847, 8226, 'attr', 'description', '', 'Kết quả sai: Không nhập thông tin vào dấu * nhưng vẫn cho phép cập nhật thành công');
INSERT INTO public.journal_details VALUES (10848, 8227, 'attr', 'description', 'Kết quả sai: Không nhập thông tin vào dấu * nhưng vẫn cho phép cập nhật thành công', 'Kết quả sai: Không nhập thông tin vào các trường nhưng vẫn cho phép cập nhật thành công');
INSERT INTO public.journal_details VALUES (10849, 8228, 'attr', 'fixed_version_id', NULL, '37');
INSERT INTO public.journal_details VALUES (10850, 8229, 'attr', 'fixed_version_id', NULL, '37');
INSERT INTO public.journal_details VALUES (10851, 8230, 'attr', 'fixed_version_id', NULL, '37');
INSERT INTO public.journal_details VALUES (10852, 8231, 'attr', 'fixed_version_id', NULL, '37');
INSERT INTO public.journal_details VALUES (10853, 8232, 'attr', 'fixed_version_id', NULL, '37');
INSERT INTO public.journal_details VALUES (10854, 8233, 'attr', 'fixed_version_id', NULL, '37');
INSERT INTO public.journal_details VALUES (10855, 8234, 'attr', 'fixed_version_id', NULL, '37');
INSERT INTO public.journal_details VALUES (10856, 8235, 'attr', 'fixed_version_id', NULL, '37');
INSERT INTO public.journal_details VALUES (10857, 8236, 'attr', 'fixed_version_id', NULL, '37');
INSERT INTO public.journal_details VALUES (10858, 8237, 'attr', 'fixed_version_id', NULL, '37');
INSERT INTO public.journal_details VALUES (10859, 8238, 'attr', 'fixed_version_id', NULL, '37');
INSERT INTO public.journal_details VALUES (10860, 8239, 'attr', 'fixed_version_id', NULL, '37');
INSERT INTO public.journal_details VALUES (10861, 8240, 'attr', 'fixed_version_id', NULL, '37');
INSERT INTO public.journal_details VALUES (10862, 8241, 'attr', 'fixed_version_id', NULL, '37');
INSERT INTO public.journal_details VALUES (10863, 8242, 'attr', 'due_date', '2020-10-07', '2020-10-11');
INSERT INTO public.journal_details VALUES (10864, 8242, 'attr', 'start_date', '2020-10-05', '2020-10-10');
INSERT INTO public.journal_details VALUES (10865, 8243, 'attr', 'due_date', '2020-10-07', '2020-10-11');
INSERT INTO public.journal_details VALUES (10866, 8243, 'attr', 'start_date', '2020-10-05', '2020-10-10');
INSERT INTO public.journal_details VALUES (10867, 8244, 'attr', 'due_date', NULL, '2020-10-11');
INSERT INTO public.journal_details VALUES (10868, 8244, 'attr', 'start_date', '2020-10-09', '2020-10-10');
INSERT INTO public.journal_details VALUES (10869, 8245, 'attr', 'due_date', NULL, '2020-10-11');
INSERT INTO public.journal_details VALUES (10870, 8245, 'attr', 'start_date', '2020-10-09', '2020-10-10');
INSERT INTO public.journal_details VALUES (10871, 8246, 'attr', 'due_date', NULL, '2020-10-11');
INSERT INTO public.journal_details VALUES (10872, 8246, 'attr', 'start_date', '2020-10-09', '2020-10-10');
INSERT INTO public.journal_details VALUES (10873, 8247, 'attr', 'due_date', NULL, '2020-10-11');
INSERT INTO public.journal_details VALUES (10874, 8247, 'attr', 'start_date', '2020-10-09', '2020-10-10');
INSERT INTO public.journal_details VALUES (10875, 8248, 'attr', 'due_date', NULL, '2020-10-11');
INSERT INTO public.journal_details VALUES (10876, 8248, 'attr', 'start_date', '2020-10-09', '2020-10-10');
INSERT INTO public.journal_details VALUES (10877, 8249, 'attr', 'due_date', NULL, '2020-10-11');
INSERT INTO public.journal_details VALUES (10878, 8249, 'attr', 'start_date', '2020-10-09', '2020-10-10');
INSERT INTO public.journal_details VALUES (10879, 8250, 'attr', 'due_date', NULL, '2020-10-11');
INSERT INTO public.journal_details VALUES (10880, 8250, 'attr', 'start_date', '2020-10-09', '2020-10-10');
INSERT INTO public.journal_details VALUES (10881, 8251, 'attr', 'due_date', NULL, '2020-10-11');
INSERT INTO public.journal_details VALUES (10882, 8251, 'attr', 'start_date', '2020-10-09', '2020-10-10');
INSERT INTO public.journal_details VALUES (10883, 8252, 'attr', 'due_date', NULL, '2020-10-11');
INSERT INTO public.journal_details VALUES (10884, 8252, 'attr', 'start_date', '2020-10-09', '2020-10-10');
INSERT INTO public.journal_details VALUES (10885, 8253, 'attr', 'due_date', NULL, '2020-10-11');
INSERT INTO public.journal_details VALUES (10886, 8253, 'attr', 'start_date', '2020-10-09', '2020-10-10');
INSERT INTO public.journal_details VALUES (10887, 8254, 'attr', 'due_date', NULL, '2020-10-11');
INSERT INTO public.journal_details VALUES (10888, 8254, 'attr', 'start_date', '2020-10-09', '2020-10-10');
INSERT INTO public.journal_details VALUES (10889, 8255, 'attr', 'due_date', NULL, '2020-10-11');
INSERT INTO public.journal_details VALUES (10890, 8255, 'attr', 'start_date', '2020-10-09', '2020-10-10');
INSERT INTO public.journal_details VALUES (10891, 8256, 'attr', 'due_date', NULL, '2020-10-11');
INSERT INTO public.journal_details VALUES (10892, 8257, 'attr', 'due_date', NULL, '2020-10-11');
INSERT INTO public.journal_details VALUES (10893, 8258, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (10894, 8259, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (10895, 8260, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (10896, 8261, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (10897, 8262, 'attr', 'description', 'Kết quả sai: Khi chọn tìm kiếm theo địa bàn và tình trạng', '');
INSERT INTO public.journal_details VALUES (10898, 8263, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (10899, 8265, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (10900, 8266, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10901, 8266, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10902, 8267, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10903, 8268, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (10904, 8269, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10905, 8270, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10906, 8271, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10907, 8272, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10908, 8273, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10909, 8274, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10910, 8275, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10911, 8276, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10912, 8277, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10913, 8278, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10914, 8279, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10915, 8280, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10916, 8281, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10917, 8282, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10918, 8283, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10919, 8284, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (10920, 8285, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10921, 8286, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (10922, 8287, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10923, 8288, 'attr', 'assigned_to_id', NULL, '4');
INSERT INTO public.journal_details VALUES (10924, 8289, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10925, 8290, 'attr', 'assigned_to_id', '39', '37');
INSERT INTO public.journal_details VALUES (10926, 8291, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10937, 8303, 'attr', 'fixed_version_id', '37', '45');
INSERT INTO public.journal_details VALUES (10938, 8303, 'attr', 'start_date', '2020-10-10', '2020-10-13');
INSERT INTO public.journal_details VALUES (10939, 8304, 'attr', 'due_date', '2020-10-11', '2020-10-14');
INSERT INTO public.journal_details VALUES (10940, 8304, 'attr', 'fixed_version_id', '37', '45');
INSERT INTO public.journal_details VALUES (10941, 8304, 'attr', 'start_date', '2020-10-10', '2020-10-13');
INSERT INTO public.journal_details VALUES (10942, 8305, 'attr', 'due_date', '2020-10-11', '2020-10-14');
INSERT INTO public.journal_details VALUES (10943, 8305, 'attr', 'fixed_version_id', '37', '45');
INSERT INTO public.journal_details VALUES (10944, 8305, 'attr', 'start_date', '2020-10-10', '2020-10-13');
INSERT INTO public.journal_details VALUES (10945, 8306, 'attr', 'due_date', '2020-10-11', '2020-10-14');
INSERT INTO public.journal_details VALUES (10946, 8306, 'attr', 'fixed_version_id', '37', '45');
INSERT INTO public.journal_details VALUES (10947, 8306, 'attr', 'start_date', '2020-10-10', '2020-10-13');
INSERT INTO public.journal_details VALUES (10948, 8307, 'attr', 'due_date', '2020-10-11', '2020-10-14');
INSERT INTO public.journal_details VALUES (10949, 8307, 'attr', 'fixed_version_id', '37', '45');
INSERT INTO public.journal_details VALUES (10950, 8307, 'attr', 'start_date', '2020-10-10', '2020-10-13');
INSERT INTO public.journal_details VALUES (10951, 8308, 'attr', 'due_date', '2020-10-11', '2020-10-14');
INSERT INTO public.journal_details VALUES (10952, 8308, 'attr', 'fixed_version_id', '37', '45');
INSERT INTO public.journal_details VALUES (10953, 8308, 'attr', 'start_date', '2020-10-10', '2020-10-13');
INSERT INTO public.journal_details VALUES (10954, 8309, 'attr', 'due_date', '2020-10-11', '2020-10-14');
INSERT INTO public.journal_details VALUES (10955, 8309, 'attr', 'fixed_version_id', '37', '45');
INSERT INTO public.journal_details VALUES (10956, 8309, 'attr', 'start_date', '2020-10-10', '2020-10-13');
INSERT INTO public.journal_details VALUES (10957, 8310, 'attr', 'due_date', '2020-10-11', '2020-10-14');
INSERT INTO public.journal_details VALUES (10958, 8310, 'attr', 'fixed_version_id', '37', '45');
INSERT INTO public.journal_details VALUES (10959, 8310, 'attr', 'start_date', '2020-10-10', '2020-10-13');
INSERT INTO public.journal_details VALUES (10960, 8311, 'attr', 'due_date', '2020-10-11', '2020-10-14');
INSERT INTO public.journal_details VALUES (10961, 8311, 'attr', 'fixed_version_id', '37', '45');
INSERT INTO public.journal_details VALUES (10962, 8311, 'attr', 'start_date', '2020-10-10', '2020-10-13');
INSERT INTO public.journal_details VALUES (10963, 8312, 'attr', 'description', 'Cập nhật ngày giờ hiện tại', 'Cập nhật giờ hiện tại');
INSERT INTO public.journal_details VALUES (10964, 8313, 'attr', 'description', '', 'Bên được biết số lượng kho Tổng chỉ khi nào kho tổng cho phép');
INSERT INTO public.journal_details VALUES (10965, 8314, 'attr', 'description', 'Bên được biết số lượng kho Tổng chỉ khi nào kho tổng cho phép', 'Bên được biết số lượng kho Tổng chỉ khi nào đượccho phép');
INSERT INTO public.journal_details VALUES (10966, 8315, 'attr', 'subject', 'Chỉnh sửa logo trong phiếu in nhỏ lại', 'Chỉnh sửa Phiếu in');
INSERT INTO public.journal_details VALUES (10967, 8315, 'attr', 'description', '', '- Logo nhỏ lại
- thêm mục: số tiền nhận từ khách, số tiền trả lại khách
- Đầy đủ các cột: Tên, đơn giá, số lượng, thành tiền');
INSERT INTO public.journal_details VALUES (10968, 8315, 'attr', 'fixed_version_id', NULL, '38');
INSERT INTO public.journal_details VALUES (10969, 8316, 'attr', 'subject', 'Lỗi Báo cáo nhập xuất tồn thất bại', 'Lỗi Báo cáo nhập xuất tồn ');
INSERT INTO public.journal_details VALUES (10970, 8316, 'attr', 'description', 'Xác minh chức năng "báo cáo" không thành công. Khi người dùng bỏ trống trường yêu cầu hoặc nhập thông tin không hợp lệ.

*Các bước thực hiện:
1. Click "Báo Cáo Nhập Xuất Tồn Kho"
2.Không nhập thông tin vào các trường
3. Click "Báo Cáo"

*Kết quả mong đợi:
Hiển thị thông báo lỗi


*Kết quả thực thế:
Hiển thị thông báo lỗi khi bỏ trống chọn Kho không hợp lý

', 'Kết quả hiển thị ra số âm


');
INSERT INTO public.journal_details VALUES (10971, 8317, 'attr', 'start_date', '2020-10-10', '2020-10-12');
INSERT INTO public.journal_details VALUES (10972, 8318, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10973, 8319, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10974, 8320, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (10975, 8321, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10976, 8322, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10977, 8323, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10978, 8324, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10979, 8324, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10980, 8325, 'attr', 'due_date', NULL, '2020-10-13');
INSERT INTO public.journal_details VALUES (10981, 8325, 'attr', 'start_date', '2020-10-12', '2020-10-09');
INSERT INTO public.journal_details VALUES (10982, 8325, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10983, 8325, 'attr', 'estimated_hours', NULL, '24.0');
INSERT INTO public.journal_details VALUES (10984, 8326, 'attr', 'due_date', NULL, '2020-10-12');
INSERT INTO public.journal_details VALUES (10985, 8326, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10986, 8326, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (10987, 8326, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10988, 8326, 'attr', 'estimated_hours', NULL, '2.0');
INSERT INTO public.journal_details VALUES (10989, 8328, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10990, 8328, 'attr', 'assigned_to_id', '4', '13');
INSERT INTO public.journal_details VALUES (10991, 8328, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10992, 8329, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10993, 8329, 'attr', 'assigned_to_id', '4', '13');
INSERT INTO public.journal_details VALUES (10994, 8329, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10995, 8330, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (10996, 8330, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (10997, 8331, 'attr', 'subject', 'Định nghĩa giá bán', 'Tính giá bán');
INSERT INTO public.journal_details VALUES (10998, 8331, 'attr', 'due_date', NULL, '2020-10-13');
INSERT INTO public.journal_details VALUES (10999, 8331, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (11000, 8331, 'attr', 'start_date', '2020-10-12', '2020-10-13');
INSERT INTO public.journal_details VALUES (11001, 8332, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (11002, 8333, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (11003, 8334, 'attr', 'subject', 'Lỗi Xem chi tiết Quản lý thẻ', 'Lỗi Lịch sử giao dịch thẻ');
INSERT INTO public.journal_details VALUES (11004, 8334, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (11005, 8334, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11006, 8335, 'attr', 'due_date', NULL, '2020-10-13');
INSERT INTO public.journal_details VALUES (11007, 8335, 'attr', 'start_date', '2020-09-30', '2020-10-13');
INSERT INTO public.journal_details VALUES (11008, 8336, 'attr', 'due_date', '2020-10-13', '2020-10-17');
INSERT INTO public.journal_details VALUES (11009, 8337, 'attr', 'due_date', NULL, '2020-10-12');
INSERT INTO public.journal_details VALUES (11010, 8337, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11011, 8337, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11012, 8338, 'attr', 'due_date', NULL, '2020-10-13');
INSERT INTO public.journal_details VALUES (11013, 8338, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11014, 8338, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (11015, 8338, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11016, 8339, 'attr', 'due_date', NULL, '2020-10-13');
INSERT INTO public.journal_details VALUES (11017, 8339, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11018, 8340, 'attr', 'due_date', NULL, '2020-10-13');
INSERT INTO public.journal_details VALUES (11019, 8340, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11020, 8340, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (11021, 8341, 'attr', 'due_date', NULL, '2020-10-12');
INSERT INTO public.journal_details VALUES (11022, 8341, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11023, 8341, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (11024, 8342, 'attr', 'due_date', NULL, '2020-10-15');
INSERT INTO public.journal_details VALUES (11025, 8342, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (11026, 8342, 'attr', 'start_date', '2020-10-12', '2020-10-14');
INSERT INTO public.journal_details VALUES (11027, 8343, 'attr', 'due_date', NULL, '2020-10-14');
INSERT INTO public.journal_details VALUES (11028, 8343, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (11029, 8343, 'attr', 'start_date', '2020-10-12', '2020-10-13');
INSERT INTO public.journal_details VALUES (11030, 8344, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11031, 8344, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11032, 8345, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11033, 8346, 'attr', 'subject', 'Lỗi Số Liệu Tổng Quan Bán Hàng sai', 'Lỗi Số Liệu Tổng Quan Bán Hàng ');
INSERT INTO public.journal_details VALUES (11034, 8347, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11035, 8348, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11036, 8349, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11037, 8350, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11038, 8351, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11043, 8355, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (11044, 8356, 'attr', 'due_date', NULL, '2020-10-14');
INSERT INTO public.journal_details VALUES (11045, 8356, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11046, 8356, 'attr', 'start_date', '2020-10-01', '2020-10-14');
INSERT INTO public.journal_details VALUES (11047, 8357, 'attr', 'due_date', NULL, '2020-10-14');
INSERT INTO public.journal_details VALUES (11048, 8357, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (11049, 8357, 'attr', 'start_date', '2020-10-12', '2020-10-14');
INSERT INTO public.journal_details VALUES (11050, 8358, 'attr', 'due_date', NULL, '2020-10-14');
INSERT INTO public.journal_details VALUES (11051, 8358, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (11052, 8358, 'attr', 'start_date', '2020-10-12', '2020-10-14');
INSERT INTO public.journal_details VALUES (11053, 8359, 'attr', 'due_date', NULL, '2020-10-15');
INSERT INTO public.journal_details VALUES (11054, 8359, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (11055, 8359, 'attr', 'start_date', '2020-10-12', '2020-10-15');
INSERT INTO public.journal_details VALUES (11056, 8360, 'attr', 'due_date', NULL, '2020-10-15');
INSERT INTO public.journal_details VALUES (11057, 8360, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (11058, 8360, 'attr', 'start_date', '2020-10-12', '2020-10-15');
INSERT INTO public.journal_details VALUES (11059, 8361, 'attr', 'due_date', NULL, '2020-10-14');
INSERT INTO public.journal_details VALUES (11060, 8362, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11061, 8363, 'attr', 'assigned_to_id', '37', '19');
INSERT INTO public.journal_details VALUES (11062, 8364, 'attr', 'due_date', NULL, '2020-10-14');
INSERT INTO public.journal_details VALUES (11063, 8364, 'attr', 'start_date', '2020-10-12', '2020-10-14');
INSERT INTO public.journal_details VALUES (11064, 8365, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11065, 8366, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11066, 8367, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11067, 8368, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11068, 8369, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11069, 8370, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11070, 8371, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11071, 8372, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11072, 8373, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11073, 8375, 'attr', 'due_date', NULL, '2020-10-15');
INSERT INTO public.journal_details VALUES (11074, 8375, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (11075, 8375, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11076, 8375, 'attr', 'start_date', '2020-10-01', '2020-10-14');
INSERT INTO public.journal_details VALUES (11077, 8376, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11078, 8377, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11082, 8379, 'attr', 'due_date', '2020-10-14', '2020-10-19');
INSERT INTO public.journal_details VALUES (11083, 8379, 'attr', 'fixed_version_id', '38', '48');
INSERT INTO public.journal_details VALUES (11084, 8379, 'attr', 'start_date', '2020-10-13', '2020-10-19');
INSERT INTO public.journal_details VALUES (11085, 8380, 'attr', 'due_date', '2020-10-15', '2020-10-19');
INSERT INTO public.journal_details VALUES (11086, 8380, 'attr', 'fixed_version_id', '38', '48');
INSERT INTO public.journal_details VALUES (11087, 8380, 'attr', 'start_date', '2020-10-15', '2020-10-19');
INSERT INTO public.journal_details VALUES (11088, 8381, 'attr', 'due_date', '2020-10-15', '2020-10-19');
INSERT INTO public.journal_details VALUES (11089, 8381, 'attr', 'fixed_version_id', '38', '48');
INSERT INTO public.journal_details VALUES (11090, 8381, 'attr', 'start_date', '2020-10-14', '2020-10-19');
INSERT INTO public.journal_details VALUES (11091, 8382, 'attr', 'due_date', '2020-10-19', '2020-10-15');
INSERT INTO public.journal_details VALUES (11092, 8382, 'attr', 'fixed_version_id', '48', '38');
INSERT INTO public.journal_details VALUES (11093, 8382, 'attr', 'start_date', '2020-10-19', '2020-10-15');
INSERT INTO public.journal_details VALUES (11094, 8383, 'attr', 'due_date', '2020-10-19', '2020-10-15');
INSERT INTO public.journal_details VALUES (11095, 8383, 'attr', 'fixed_version_id', '48', '38');
INSERT INTO public.journal_details VALUES (11096, 8383, 'attr', 'start_date', '2020-10-19', '2020-10-15');
INSERT INTO public.journal_details VALUES (11097, 8384, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11098, 8384, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11099, 8385, 'attr', 'due_date', NULL, '2020-10-15');
INSERT INTO public.journal_details VALUES (11100, 8385, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (11101, 8385, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11102, 8385, 'attr', 'start_date', '2020-10-01', '2020-10-15');
INSERT INTO public.journal_details VALUES (11103, 8386, 'attr', 'due_date', NULL, '2020-10-15');
INSERT INTO public.journal_details VALUES (11104, 8386, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (11105, 8386, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11106, 8386, 'attr', 'start_date', '2020-10-01', '2020-10-15');
INSERT INTO public.journal_details VALUES (11107, 8387, 'attr', 'due_date', '2020-10-20', '2020-10-15');
INSERT INTO public.journal_details VALUES (11108, 8387, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11109, 8387, 'attr', 'fixed_version_id', '48', '38');
INSERT INTO public.journal_details VALUES (11110, 8387, 'attr', 'start_date', '2020-10-19', '2020-10-15');
INSERT INTO public.journal_details VALUES (11111, 8387, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11112, 8388, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11113, 8389, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11114, 8390, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11115, 8391, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11116, 8392, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11117, 8393, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11118, 8394, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (11119, 8395, 'attr', 'subject', 'Đăng nhập', 'Giao diện đăng nhập');
INSERT INTO public.journal_details VALUES (11120, 8396, 'attr', 'due_date', NULL, '2020-10-14');
INSERT INTO public.journal_details VALUES (11121, 8396, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11122, 8396, 'attr', 'start_date', '2020-10-15', '2020-10-13');
INSERT INTO public.journal_details VALUES (11123, 8396, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11124, 8397, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11125, 8398, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11126, 8399, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (11127, 8400, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (11128, 8401, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (11129, 8402, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (11130, 8403, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (11131, 8404, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11132, 8404, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (11133, 8404, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11134, 8405, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11135, 8405, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (11136, 8405, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11137, 8406, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11138, 8406, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (11139, 8406, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11140, 8407, 'attr', 'due_date', NULL, '2020-10-15');
INSERT INTO public.journal_details VALUES (11141, 8408, 'attr', 'due_date', NULL, '2020-10-15');
INSERT INTO public.journal_details VALUES (11142, 8409, 'attr', 'due_date', NULL, '2020-10-15');
INSERT INTO public.journal_details VALUES (11143, 8410, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11144, 8410, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11145, 8411, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11146, 8411, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11147, 8412, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11148, 8412, 'attr', 'start_date', '2020-10-01', '2020-10-15');
INSERT INTO public.journal_details VALUES (11149, 8413, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11150, 8413, 'attr', 'start_date', '2020-10-01', '2020-10-15');
INSERT INTO public.journal_details VALUES (11151, 8414, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11152, 8414, 'attr', 'start_date', '2020-10-01', '2020-10-15');
INSERT INTO public.journal_details VALUES (11153, 8415, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11154, 8416, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11155, 8417, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11156, 8417, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11157, 8418, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (11158, 8419, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (11159, 8420, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (11160, 8421, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11161, 8421, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11162, 8422, 'attr', 'due_date', '2020-10-14', '2020-10-16');
INSERT INTO public.journal_details VALUES (11163, 8423, 'attr', 'assigned_to_id', '39', '17');
INSERT INTO public.journal_details VALUES (11164, 8424, 'attr', 'due_date', '2020-10-19', '2020-10-17');
INSERT INTO public.journal_details VALUES (11165, 8424, 'attr', 'fixed_version_id', '48', '38');
INSERT INTO public.journal_details VALUES (11166, 8424, 'attr', 'start_date', '2020-10-19', '2020-10-16');
INSERT INTO public.journal_details VALUES (11167, 8425, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11168, 8426, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11169, 8427, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11170, 8428, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11171, 8429, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (11172, 8430, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (11173, 8431, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (11174, 8432, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (11175, 8433, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11176, 8434, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11177, 8435, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11178, 8436, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11179, 8437, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11180, 8438, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11181, 8439, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11182, 8440, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11183, 8441, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11184, 8442, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11185, 8443, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11186, 8444, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11187, 8445, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11188, 8446, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11189, 8447, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11190, 8448, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11191, 8449, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11192, 8450, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11193, 8451, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11194, 8452, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11195, 8453, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11196, 8454, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11197, 8455, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11198, 8456, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11200, 8458, 'attr', 'subject', 'Update chức năng thủ kho của các điểm kinh doanh', 'Update chức năng của thủ kho ở các điểm kinh doanh');
INSERT INTO public.journal_details VALUES (11201, 8458, 'attr', 'description', 'Thủ kho của các điểm kinh doanh chỉ được xem Phiếu xuất, yêu cầu chuyển kho,báo cáo kho của 1 điểm kinh doanh mình.
', '- Thủ kho của các điểm kinh doanh chỉ được xem Phiếu xuất, yêu cầu chuyển kho,báo cáo kho của 1 điểm kinh doanh đang đăng nhập.
');
INSERT INTO public.journal_details VALUES (11203, 8460, 'attr', 'fixed_version_id', NULL, '38');
INSERT INTO public.journal_details VALUES (11204, 8461, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11205, 8462, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11206, 8463, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11207, 8464, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11208, 8465, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11209, 8466, 'attr', 'subject', 'Giao diện danh sách request', 'Giao diện danh sách request, gắn api theo loại và trạng thái');
INSERT INTO public.journal_details VALUES (11210, 8467, 'attr', 'due_date', '2020-10-17', '2020-10-16');
INSERT INTO public.journal_details VALUES (11211, 8468, 'attr', 'assigned_to_id', '39', '37');
INSERT INTO public.journal_details VALUES (11212, 8469, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11213, 8470, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11214, 8471, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11215, 8472, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11216, 8472, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11217, 8473, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11218, 8474, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11219, 8475, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11220, 8475, 'attr', 'assigned_to_id', '5', '9');
INSERT INTO public.journal_details VALUES (11221, 8475, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11222, 8476, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11223, 8477, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11224, 8478, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11225, 8479, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (11226, 8480, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11227, 8481, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (11228, 8482, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (11229, 8483, 'attr', 'due_date', '2020-10-16', '2020-10-17');
INSERT INTO public.journal_details VALUES (11230, 8483, 'attr', 'start_date', '2020-10-15', '2020-10-16');
INSERT INTO public.journal_details VALUES (11231, 8484, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11232, 8485, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11233, 8486, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11234, 8487, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11235, 8488, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11236, 8489, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11237, 8490, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11238, 8491, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11239, 8492, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11240, 8493, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11241, 8494, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11242, 8495, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (11243, 8496, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (11244, 8496, 'attr', 'subject', 'Update chức năng của thủ kho ở các điểm kinh doanh', 'Thủ kho/Điều hành xem báo cáo kho tất cả ĐKD');
INSERT INTO public.journal_details VALUES (11245, 8496, 'attr', 'due_date', NULL, '2020-10-19');
INSERT INTO public.journal_details VALUES (11246, 8496, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (11247, 8496, 'attr', 'start_date', '2020-10-16', '2020-10-19');
INSERT INTO public.journal_details VALUES (11248, 8497, 'attr', 'fixed_version_id', '33', '48');
INSERT INTO public.journal_details VALUES (11249, 8498, 'attr', 'subject', 'Thủ kho/Điều hành xem báo cáo kho tất cả ĐKD', 'Thủ kho tổng/Điều hành xem báo cáo kho tất cả ĐKD');
INSERT INTO public.journal_details VALUES (11250, 8499, 'attr', 'due_date', '2020-10-19', '2020-10-17');
INSERT INTO public.journal_details VALUES (11251, 8499, 'attr', 'fixed_version_id', '48', '38');
INSERT INTO public.journal_details VALUES (11252, 8499, 'attr', 'start_date', '2020-10-19', '2020-10-17');
INSERT INTO public.journal_details VALUES (11253, 8500, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11254, 8501, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11255, 8502, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11256, 8503, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11257, 8504, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11258, 8505, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11259, 8506, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11260, 8507, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11261, 8508, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11262, 8509, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11263, 8510, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11264, 8511, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11265, 8512, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11266, 8513, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11267, 8514, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11268, 8515, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11269, 8516, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11270, 8517, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11271, 8517, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11272, 8517, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11273, 8518, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11274, 8518, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11275, 8518, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11276, 8519, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11277, 8519, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11278, 8519, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11279, 8520, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11280, 8520, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11281, 8520, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11282, 8521, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11283, 8521, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11284, 8521, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11285, 8522, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11286, 8522, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11287, 8522, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11288, 8523, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11289, 8523, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11290, 8523, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11291, 8524, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11292, 8524, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11293, 8524, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11294, 8525, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11295, 8525, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11296, 8525, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11297, 8526, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11298, 8526, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11299, 8526, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11300, 8527, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11301, 8527, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11302, 8527, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11303, 8528, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11304, 8528, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11305, 8528, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11306, 8529, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11307, 8529, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11308, 8529, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11309, 8530, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11310, 8530, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11311, 8530, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11312, 8531, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11313, 8531, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11314, 8531, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11315, 8532, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11316, 8532, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11317, 8532, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11318, 8533, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11319, 8533, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11320, 8533, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11321, 8534, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11322, 8534, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11323, 8534, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11324, 8535, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11325, 8535, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11326, 8535, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11327, 8536, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11328, 8536, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11329, 8536, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11330, 8537, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11331, 8537, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11332, 8537, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11333, 8538, 'attr', 'due_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11334, 8538, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11335, 8538, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11336, 8539, 'attr', 'due_date', '2020-10-03', '2020-10-12');
INSERT INTO public.journal_details VALUES (11337, 8539, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11338, 8539, 'attr', 'start_date', '2020-09-30', '2020-10-12');
INSERT INTO public.journal_details VALUES (11339, 8540, 'attr', 'due_date', NULL, '2020-10-12');
INSERT INTO public.journal_details VALUES (11340, 8540, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11341, 8540, 'attr', 'start_date', '2020-10-01', '2020-10-12');
INSERT INTO public.journal_details VALUES (11342, 8541, 'attr', 'due_date', NULL, '2020-10-12');
INSERT INTO public.journal_details VALUES (11343, 8541, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11344, 8541, 'attr', 'start_date', '2020-10-01', '2020-10-12');
INSERT INTO public.journal_details VALUES (11345, 8542, 'attr', 'due_date', NULL, '2020-10-12');
INSERT INTO public.journal_details VALUES (11346, 8542, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11347, 8542, 'attr', 'start_date', '2020-10-01', '2020-10-12');
INSERT INTO public.journal_details VALUES (11348, 8543, 'attr', 'due_date', NULL, '2020-10-12');
INSERT INTO public.journal_details VALUES (11349, 8543, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11350, 8543, 'attr', 'start_date', '2020-10-01', '2020-10-12');
INSERT INTO public.journal_details VALUES (11351, 8544, 'attr', 'due_date', NULL, '2020-10-12');
INSERT INTO public.journal_details VALUES (11352, 8544, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11353, 8544, 'attr', 'start_date', '2020-10-01', '2020-10-12');
INSERT INTO public.journal_details VALUES (11354, 8545, 'attr', 'due_date', NULL, '2020-10-12');
INSERT INTO public.journal_details VALUES (11355, 8545, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11460, 8612, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11356, 8545, 'attr', 'start_date', '2020-10-01', '2020-10-12');
INSERT INTO public.journal_details VALUES (11357, 8546, 'attr', 'due_date', NULL, '2020-10-12');
INSERT INTO public.journal_details VALUES (11358, 8546, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11359, 8546, 'attr', 'start_date', '2020-10-01', '2020-10-12');
INSERT INTO public.journal_details VALUES (11360, 8547, 'attr', 'due_date', NULL, '2020-10-12');
INSERT INTO public.journal_details VALUES (11361, 8547, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11362, 8547, 'attr', 'start_date', '2020-10-01', '2020-10-12');
INSERT INTO public.journal_details VALUES (11363, 8548, 'attr', 'due_date', NULL, '2020-10-12');
INSERT INTO public.journal_details VALUES (11364, 8548, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11365, 8548, 'attr', 'start_date', '2020-10-01', '2020-10-12');
INSERT INTO public.journal_details VALUES (11366, 8549, 'attr', 'due_date', NULL, '2020-10-12');
INSERT INTO public.journal_details VALUES (11367, 8549, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11368, 8549, 'attr', 'start_date', '2020-10-01', '2020-10-12');
INSERT INTO public.journal_details VALUES (11369, 8550, 'attr', 'due_date', NULL, '2020-10-12');
INSERT INTO public.journal_details VALUES (11370, 8550, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11371, 8550, 'attr', 'start_date', '2020-10-03', '2020-10-12');
INSERT INTO public.journal_details VALUES (11372, 8551, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11373, 8552, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11374, 8553, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11375, 8554, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11376, 8555, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11377, 8556, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11378, 8557, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11379, 8558, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11380, 8559, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11381, 8560, 'attr', 'due_date', '2020-10-03', '2020-10-12');
INSERT INTO public.journal_details VALUES (11382, 8560, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11383, 8560, 'attr', 'start_date', '2020-10-03', '2020-10-12');
INSERT INTO public.journal_details VALUES (11384, 8561, 'attr', 'due_date', '2020-10-03', '2020-10-12');
INSERT INTO public.journal_details VALUES (11385, 8561, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11386, 8561, 'attr', 'start_date', '2020-10-03', '2020-10-12');
INSERT INTO public.journal_details VALUES (11387, 8562, 'attr', 'due_date', '2020-10-03', '2020-10-12');
INSERT INTO public.journal_details VALUES (11388, 8562, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11389, 8562, 'attr', 'start_date', '2020-10-03', '2020-10-12');
INSERT INTO public.journal_details VALUES (11390, 8563, 'attr', 'due_date', NULL, '2020-10-12');
INSERT INTO public.journal_details VALUES (11391, 8563, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11392, 8563, 'attr', 'start_date', '2020-10-03', '2020-10-12');
INSERT INTO public.journal_details VALUES (11393, 8563, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11394, 8564, 'attr', 'due_date', NULL, '2020-10-12');
INSERT INTO public.journal_details VALUES (11395, 8564, 'attr', 'fixed_version_id', '33', '38');
INSERT INTO public.journal_details VALUES (11396, 8564, 'attr', 'start_date', '2020-10-03', '2020-10-12');
INSERT INTO public.journal_details VALUES (11397, 8564, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11398, 8565, 'attr', 'description', '', 'sai số liệu: Thống kê doanh thu trong ngày, thông tin tại kho ĐKD vàthông tin tại kho tổng trong ngày, tổng doanh thu trong bản đồ
');
INSERT INTO public.journal_details VALUES (11399, 8566, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11400, 8567, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11401, 8568, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11402, 8569, 'attr', 'due_date', NULL, '2020-10-18');
INSERT INTO public.journal_details VALUES (11403, 8570, 'attr', 'fixed_version_id', NULL, '38');
INSERT INTO public.journal_details VALUES (11404, 8571, 'attr', 'fixed_version_id', NULL, '48');
INSERT INTO public.journal_details VALUES (11405, 8572, 'attr', 'fixed_version_id', NULL, '48');
INSERT INTO public.journal_details VALUES (11406, 8573, 'attr', 'fixed_version_id', NULL, '48');
INSERT INTO public.journal_details VALUES (11407, 8574, 'attr', 'due_date', '2020-10-18', '2020-10-17');
INSERT INTO public.journal_details VALUES (11408, 8575, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11409, 8576, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11410, 8577, 'attr', 'due_date', '2020-10-18', '2020-10-17');
INSERT INTO public.journal_details VALUES (11411, 8577, 'attr', 'start_date', '2020-10-18', '2020-10-17');
INSERT INTO public.journal_details VALUES (11412, 8578, 'attr', 'due_date', '2020-10-17', '2020-10-19');
INSERT INTO public.journal_details VALUES (11413, 8578, 'attr', 'fixed_version_id', '38', '48');
INSERT INTO public.journal_details VALUES (11414, 8578, 'attr', 'start_date', '2020-10-17', '2020-10-19');
INSERT INTO public.journal_details VALUES (11415, 8579, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11416, 8579, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11417, 8580, 'attr', 'due_date', '2020-10-14', '2020-10-19');
INSERT INTO public.journal_details VALUES (11418, 8580, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (11419, 8580, 'attr', 'start_date', '2020-10-14', '2020-10-19');
INSERT INTO public.journal_details VALUES (11420, 8580, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (11421, 8581, 'attr', 'fixed_version_id', '38', '48');
INSERT INTO public.journal_details VALUES (11422, 8582, 'attr', 'fixed_version_id', '38', '48');
INSERT INTO public.journal_details VALUES (11423, 8583, 'attr', 'due_date', NULL, '2020-10-20');
INSERT INTO public.journal_details VALUES (11424, 8583, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (11425, 8583, 'attr', 'start_date', '2020-10-13', '2020-10-19');
INSERT INTO public.journal_details VALUES (11426, 8584, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11427, 8585, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11428, 8586, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11429, 8586, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11430, 8587, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11431, 8587, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11432, 8588, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11433, 8589, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11434, 8590, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11435, 8591, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11436, 8592, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (11437, 8593, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (11438, 8594, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (11439, 8595, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (11440, 8596, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (11441, 8597, 'attr', 'fixed_version_id', '45', '49');
INSERT INTO public.journal_details VALUES (11442, 8598, 'attr', 'fixed_version_id', '45', '49');
INSERT INTO public.journal_details VALUES (11443, 8599, 'attr', 'fixed_version_id', '45', '49');
INSERT INTO public.journal_details VALUES (11444, 8600, 'attr', 'fixed_version_id', '45', '49');
INSERT INTO public.journal_details VALUES (11445, 8601, 'attr', 'due_date', '2020-10-14', '2020-10-20');
INSERT INTO public.journal_details VALUES (11446, 8601, 'attr', 'start_date', '2020-10-13', '2020-10-19');
INSERT INTO public.journal_details VALUES (11447, 8602, 'attr', 'due_date', '2020-10-14', '2020-10-20');
INSERT INTO public.journal_details VALUES (11448, 8602, 'attr', 'start_date', '2020-10-13', '2020-10-19');
INSERT INTO public.journal_details VALUES (11449, 8603, 'attr', 'due_date', '2020-10-14', '2020-10-20');
INSERT INTO public.journal_details VALUES (11450, 8603, 'attr', 'start_date', '2020-10-13', '2020-10-19');
INSERT INTO public.journal_details VALUES (11451, 8604, 'attr', 'due_date', '2020-10-14', '2020-10-20');
INSERT INTO public.journal_details VALUES (11452, 8604, 'attr', 'start_date', '2020-10-13', '2020-10-19');
INSERT INTO public.journal_details VALUES (11453, 8605, 'attr', 'description', 'Cột bên trái là radio list:

Kiểu hiển thị:

- Biểu đồ
- Báo cáo', 'Cột bên trái là radio list:

Kiểu hiển thị:

- Biểu đồ
- Báo cáo

Biểu đồ bên phải: gồm 2 biểu đồ, sẽ thể hiện trên dưới');
INSERT INTO public.journal_details VALUES (11455, 8607, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11456, 8608, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11457, 8609, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11458, 8610, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (11459, 8611, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (11461, 8613, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11462, 8614, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (11463, 8614, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11464, 8615, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11465, 8616, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11466, 8617, 'attr', 'due_date', '2020-10-19', '2020-10-20');
INSERT INTO public.journal_details VALUES (11467, 8618, 'attr', 'fixed_version_id', '38', '48');
INSERT INTO public.journal_details VALUES (11468, 8619, 'attr', 'due_date', '2020-10-17', '2020-10-19');
INSERT INTO public.journal_details VALUES (11469, 8619, 'attr', 'start_date', '2020-10-17', '2020-10-19');
INSERT INTO public.journal_details VALUES (11470, 8620, 'attr', 'due_date', '2020-10-17', '2020-10-19');
INSERT INTO public.journal_details VALUES (11471, 8620, 'attr', 'start_date', '2020-10-17', '2020-10-19');
INSERT INTO public.journal_details VALUES (11472, 8621, 'attr', 'due_date', '2020-10-17', '2020-10-19');
INSERT INTO public.journal_details VALUES (11473, 8621, 'attr', 'start_date', '2020-10-17', '2020-10-19');
INSERT INTO public.journal_details VALUES (11474, 8622, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (11475, 8622, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11476, 8623, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11477, 8624, 'attr', 'fixed_version_id', '38', '48');
INSERT INTO public.journal_details VALUES (11478, 8625, 'attr', 'fixed_version_id', '38', '48');
INSERT INTO public.journal_details VALUES (11479, 8626, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11480, 8627, 'attr', 'start_date', '2020-10-20', '2020-10-19');
INSERT INTO public.journal_details VALUES (11481, 8628, 'attr', 'start_date', '2020-10-20', '2020-10-19');
INSERT INTO public.journal_details VALUES (11482, 8629, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11483, 8629, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11484, 8630, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11485, 8631, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11486, 8632, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11487, 8633, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11488, 8634, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11489, 8635, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (11490, 8636, 'attr', 'status_id', '2', '1');
INSERT INTO public.journal_details VALUES (11491, 8637, 'attr', 'status_id', '3', '4');
INSERT INTO public.journal_details VALUES (11492, 8638, 'attr', 'status_id', '4', '3');
INSERT INTO public.journal_details VALUES (11493, 8639, 'attr', 'status_id', '3', '4');
INSERT INTO public.journal_details VALUES (11494, 8640, 'attr', 'status_id', '4', '3');
INSERT INTO public.journal_details VALUES (11495, 8641, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (11496, 8642, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11497, 8643, 'attr', 'status_id', '3', '1');
INSERT INTO public.journal_details VALUES (11498, 8644, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11499, 8645, 'attr', 'status_id', '3', '1');
INSERT INTO public.journal_details VALUES (11500, 8646, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (11501, 8647, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (11502, 8648, 'attr', 'subject', 'check thời gian xem báo cáo', 'Mobile - check thời gian xem báo cáo');
INSERT INTO public.journal_details VALUES (11503, 8649, 'attr', 'subject', 'Nhóm BC  doanh thu theo tháng, BC doanh thu theo đơn hàng thành BC doanh thu theo tháng', 'Mobile - Nhóm BC  doanh thu theo tháng, BC doanh thu theo đơn hàng thành BC doanh thu theo tháng');
INSERT INTO public.journal_details VALUES (11504, 8650, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11506, 8652, 'attr', 'assigned_to_id', '8', '37');
INSERT INTO public.journal_details VALUES (11507, 8653, 'attr', 'fixed_version_id', '48', '33');
INSERT INTO public.journal_details VALUES (11508, 8654, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11509, 8655, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11510, 8656, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11511, 8657, 'attr', 'assigned_to_id', '38', '39');
INSERT INTO public.journal_details VALUES (11512, 8658, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11513, 8659, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11514, 8660, 'attr', 'due_date', '2020-10-19', '2020-10-23');
INSERT INTO public.journal_details VALUES (11515, 8660, 'attr', 'start_date', '2020-10-19', '2020-10-21');
INSERT INTO public.journal_details VALUES (11516, 8661, 'attr', 'due_date', '2020-10-19', '2020-10-23');
INSERT INTO public.journal_details VALUES (11517, 8661, 'attr', 'start_date', '2020-10-19', '2020-10-21');
INSERT INTO public.journal_details VALUES (11518, 8662, 'attr', 'due_date', '2020-10-19', '2020-10-23');
INSERT INTO public.journal_details VALUES (11519, 8662, 'attr', 'start_date', '2020-10-19', '2020-10-21');
INSERT INTO public.journal_details VALUES (11520, 8663, 'attr', 'due_date', '2020-10-20', '2020-10-24');
INSERT INTO public.journal_details VALUES (11521, 8663, 'attr', 'start_date', '2020-10-19', '2020-10-24');
INSERT INTO public.journal_details VALUES (11522, 8664, 'attr', 'due_date', '2020-10-19', '2020-10-21');
INSERT INTO public.journal_details VALUES (11523, 8664, 'attr', 'assigned_to_id', '39', '37');
INSERT INTO public.journal_details VALUES (11524, 8664, 'attr', 'start_date', '2020-10-19', '2020-10-21');
INSERT INTO public.journal_details VALUES (11525, 8665, 'attr', 'due_date', '2020-10-19', '2020-10-21');
INSERT INTO public.journal_details VALUES (11526, 8665, 'attr', 'assigned_to_id', '39', '37');
INSERT INTO public.journal_details VALUES (11527, 8665, 'attr', 'start_date', '2020-10-19', '2020-10-21');
INSERT INTO public.journal_details VALUES (11528, 8666, 'attr', 'subject', 'Xem báo cáo doanh thu bán thẻ thêm số serial ở mỗi thẻ', 'Mobile - Xem báo cáo doanh thu bán thẻ thêm số serial ở mỗi thẻ');
INSERT INTO public.journal_details VALUES (11529, 8667, 'attr', 'subject', 'không cho phép xem báo cáo khi từ ngày lớn hơn đến ngày và đến ngày nhỏ hơn từ ngày', 'Mobile - không cho phép xem báo cáo khi từ ngày lớn hơn đến ngày ');
INSERT INTO public.journal_details VALUES (11530, 8668, 'attr', 'subject', 'Thêm thông báo khi kết quả trống', 'Mobile - Thêm thông báo khi kết quả trống');
INSERT INTO public.journal_details VALUES (11531, 8669, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11532, 8670, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11533, 8671, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (11534, 8671, 'attr', 'subject', 'Gán nhân viên cho mỗi request', 'Gán và hủy gán nhân viên cho mỗi request');
INSERT INTO public.journal_details VALUES (11535, 8672, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (11536, 8673, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11537, 8674, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11538, 8675, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11539, 8676, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (11540, 8677, 'attr', 'assigned_to_id', '10', '38');
INSERT INTO public.journal_details VALUES (11541, 8678, 'attr', 'subject', 'Mobile - BC sản phẩm dịch vụ sai số liệu khi chọn ngày xem báo cáo', 'Mobile - sai API - BC sản phẩm dịch vụ sai số liệu khi chọn ngày xem báo cáo');
INSERT INTO public.journal_details VALUES (11542, 8679, 'attr', 'subject', 'Mobile -  Sai số liệu BC nhập xuất tồn', 'Mobile - sai API -  Sai số liệu BC nhập xuất tồn');
INSERT INTO public.journal_details VALUES (11543, 8679, 'attr', 'description', '', 'ngày 21 bắt đầu nhập sản phẩm bút bi với sô lượng 200. Khi xem báo cáo không phải của ngày 21 thì đầu kỳ là 0 --> đúng. Nhưng khi xem báo cáo của ngày 21 thì đầu kì là 200 --> sai');
INSERT INTO public.journal_details VALUES (11544, 8679, 'attr', 'assigned_to_id', '10', '38');
INSERT INTO public.journal_details VALUES (11545, 8680, 'attr', 'fixed_version_id', NULL, '48');
INSERT INTO public.journal_details VALUES (11546, 8681, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11547, 8682, 'attr', 'start_date', '2020-10-21', '2020-10-20');
INSERT INTO public.journal_details VALUES (11548, 8683, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11549, 8683, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11550, 8684, 'attr', 'due_date', '2020-10-19', '2020-10-22');
INSERT INTO public.journal_details VALUES (11551, 8684, 'attr', 'start_date', '2020-10-19', '2020-10-21');
INSERT INTO public.journal_details VALUES (11552, 8685, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11553, 8686, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11554, 8687, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11555, 8688, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11556, 8688, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11557, 8689, 'attr', 'due_date', '2020-10-21', '2020-10-22');
INSERT INTO public.journal_details VALUES (11558, 8689, 'attr', 'start_date', '2020-10-21', '2020-10-22');
INSERT INTO public.journal_details VALUES (11559, 8690, 'attr', 'due_date', '2020-10-19', '2020-10-22');
INSERT INTO public.journal_details VALUES (11560, 8690, 'attr', 'start_date', '2020-10-19', '2020-10-22');
INSERT INTO public.journal_details VALUES (11561, 8691, 'attr', 'due_date', '2020-10-19', '2020-10-22');
INSERT INTO public.journal_details VALUES (11562, 8691, 'attr', 'start_date', '2020-10-19', '2020-10-22');
INSERT INTO public.journal_details VALUES (11563, 8692, 'attr', 'due_date', '2020-10-19', '2020-10-22');
INSERT INTO public.journal_details VALUES (11564, 8692, 'attr', 'start_date', '2020-10-19', '2020-10-22');
INSERT INTO public.journal_details VALUES (11565, 8693, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11566, 8693, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11567, 8694, 'attr', 'due_date', '2020-10-21', '2020-10-23');
INSERT INTO public.journal_details VALUES (11568, 8694, 'attr', 'start_date', '2020-10-21', '2020-10-23');
INSERT INTO public.journal_details VALUES (11569, 8695, 'attr', 'due_date', '2020-10-21', '2020-10-23');
INSERT INTO public.journal_details VALUES (11570, 8695, 'attr', 'start_date', '2020-10-21', '2020-10-23');
INSERT INTO public.journal_details VALUES (11571, 8696, 'attr', 'due_date', '2020-10-21', '2020-10-24');
INSERT INTO public.journal_details VALUES (11572, 8696, 'attr', 'start_date', '2020-10-21', '2020-10-24');
INSERT INTO public.journal_details VALUES (11573, 8697, 'attr', 'due_date', '2020-10-21', '2020-10-24');
INSERT INTO public.journal_details VALUES (11574, 8697, 'attr', 'start_date', '2020-10-21', '2020-10-24');
INSERT INTO public.journal_details VALUES (11575, 8698, 'attr', 'due_date', '2020-10-21', '2020-10-24');
INSERT INTO public.journal_details VALUES (11576, 8698, 'attr', 'start_date', '2020-10-21', '2020-10-24');
INSERT INTO public.journal_details VALUES (11577, 8699, 'attr', 'due_date', '2020-10-21', '2020-10-24');
INSERT INTO public.journal_details VALUES (11578, 8699, 'attr', 'start_date', '2020-10-21', '2020-10-24');
INSERT INTO public.journal_details VALUES (11579, 8700, 'attr', 'due_date', '2020-10-21', '2020-10-22');
INSERT INTO public.journal_details VALUES (11580, 8700, 'attr', 'start_date', '2020-10-21', '2020-10-22');
INSERT INTO public.journal_details VALUES (11581, 8701, 'attr', 'due_date', '2020-10-21', '2020-10-23');
INSERT INTO public.journal_details VALUES (11582, 8701, 'attr', 'start_date', '2020-10-21', '2020-10-23');
INSERT INTO public.journal_details VALUES (11583, 8702, 'attr', 'due_date', '2020-10-21', '2020-10-24');
INSERT INTO public.journal_details VALUES (11584, 8702, 'attr', 'start_date', '2020-10-21', '2020-10-24');
INSERT INTO public.journal_details VALUES (11585, 8703, 'attr', 'due_date', '2020-10-21', '2020-10-26');
INSERT INTO public.journal_details VALUES (11586, 8703, 'attr', 'start_date', '2020-10-21', '2020-10-26');
INSERT INTO public.journal_details VALUES (11587, 8704, 'attr', 'due_date', '2020-10-21', '2020-10-27');
INSERT INTO public.journal_details VALUES (11588, 8704, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11589, 8704, 'attr', 'start_date', '2020-10-21', '2020-10-27');
INSERT INTO public.journal_details VALUES (11590, 8705, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11591, 8706, 'attr', 'due_date', '2020-10-21', '2020-10-28');
INSERT INTO public.journal_details VALUES (11592, 8706, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11593, 8706, 'attr', 'start_date', '2020-10-21', '2020-10-28');
INSERT INTO public.journal_details VALUES (11594, 8707, 'attr', 'due_date', '2020-10-21', '2020-10-31');
INSERT INTO public.journal_details VALUES (11595, 8707, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11596, 8707, 'attr', 'start_date', '2020-10-21', '2020-10-29');
INSERT INTO public.journal_details VALUES (11597, 8708, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11598, 8709, 'attr', 'description', '', 'Cập nhật tiến độ dự án tháng 10 và kế hoạch tháng 11

https://docs.google.com/spreadsheets/d/1P1AcV9YFvjjUD8j0m3hqrhmX_PuoutuVYsUiTs4EgaY/edit#gid=1843496086');
INSERT INTO public.journal_details VALUES (11599, 8709, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (11600, 8709, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11601, 8710, 'attr', 'description', 'Cập nhật tiến độ dự án tháng 10 và kế hoạch tháng 11

https://docs.google.com/spreadsheets/d/1P1AcV9YFvjjUD8j0m3hqrhmX_PuoutuVYsUiTs4EgaY/edit#gid=1843496086', '**Cập nhật tiến độ tháng 10**
TỔNG ĐIỂM	173
ĐÃ HOÀN THÀNH	134
CÒN LẠI	        39
TIẾN ĐỘ	        77%

**Kế hoạch tháng 11**

https://docs.google.com/spreadsheets/d/1P1AcV9YFvjjUD8j0m3hqrhmX_PuoutuVYsUiTs4EgaY/edit#gid=1843496086');
INSERT INTO public.journal_details VALUES (11602, 8711, 'attr', 'description', '**Cập nhật tiến độ tháng 10**
TỔNG ĐIỂM	173
ĐÃ HOÀN THÀNH	134
CÒN LẠI	        39
TIẾN ĐỘ	        77%

**Kế hoạch tháng 11**

https://docs.google.com/spreadsheets/d/1P1AcV9YFvjjUD8j0m3hqrhmX_PuoutuVYsUiTs4EgaY/edit#gid=1843496086', '**Cập nhật tiến độ tháng 10**
TỔNG ĐIỂM **173**
ĐÃ HOÀN THÀNH **134**
CÒN LẠI **39**
TIẾN ĐỘ **77%**

**Kế hoạch tháng 11**

https://docs.google.com/spreadsheets/d/1P1AcV9YFvjjUD8j0m3hqrhmX_PuoutuVYsUiTs4EgaY/edit#gid=1843496086');
INSERT INTO public.journal_details VALUES (11603, 8712, 'attr', 'description', '**Cập nhật tiến độ tháng 10**
TỔNG ĐIỂM **173**
ĐÃ HOÀN THÀNH **134**
CÒN LẠI **39**
TIẾN ĐỘ **77%**

**Kế hoạch tháng 11**

https://docs.google.com/spreadsheets/d/1P1AcV9YFvjjUD8j0m3hqrhmX_PuoutuVYsUiTs4EgaY/edit#gid=1843496086', '**Cập nhật tiến độ tháng 10**
TỔNG ĐIỂM **173**
ĐÃ HOÀN THÀNH **134**
CÒN LẠI **39**
TIẾN ĐỘ **77%**

**Kế hoạch tháng 11**
https://docs.google.com/spreadsheets/d/1P1AcV9YFvjjUD8j0m3hqrhmX_PuoutuVYsUiTs4EgaY/edit#gid=1843496086');
INSERT INTO public.journal_details VALUES (11604, 8713, 'attr', 'subject', 'Mobile - update giao diện BC tồn kho', 'Mobile - update giao diện BC tồn kho- BC  nhập xuất tồn');
INSERT INTO public.journal_details VALUES (11605, 8714, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11606, 8715, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11607, 8716, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11608, 8717, 'attr', 'done_ratio', '100', '80');
INSERT INTO public.journal_details VALUES (11609, 8718, 'attr', 'assigned_to_id', '39', '8');
INSERT INTO public.journal_details VALUES (11610, 8719, 'attachment', '128', 'clipboard-202010221130-twwqn.png', NULL);
INSERT INTO public.journal_details VALUES (11611, 8720, 'attr', 'done_ratio', '100', '70');
INSERT INTO public.journal_details VALUES (11612, 8721, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11613, 8722, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11614, 8723, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11615, 8724, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11616, 8725, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11617, 8726, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11618, 8727, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11619, 8728, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11620, 8729, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11621, 8730, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11622, 8731, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (11623, 8732, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11624, 8733, 'attr', 'description', 'sai số liệu: Thống kê doanh thu trong ngày, thông tin tại kho ĐKD vàthông tin tại kho tổng trong ngày, tổng doanh thu trong bản đồ
', 'sai số liệu: thông tin tại kho ĐKD và thông tin tại kho tổng trong ngày, tổng doanh thu bán hàng trong bản đồ.
Hiển thị thông báo khi người dùng xem thống kê từ ngày lơn hơn đến ngày
');
INSERT INTO public.journal_details VALUES (11625, 8734, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11626, 8735, 'attr', 'assigned_to_id', '19', '41');
INSERT INTO public.journal_details VALUES (11627, 8736, 'attr', 'done_ratio', '70', '60');
INSERT INTO public.journal_details VALUES (11628, 8737, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11629, 8738, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (11630, 8738, 'attr', 'subject', 'Sửa giao diện in Phiếu thu, Phiếu chi theo mẫu', 'Sửa báo cáo in Phiếu thu, Phiếu chi theo mẫu');
INSERT INTO public.journal_details VALUES (11631, 8738, 'attr', 'due_date', NULL, '2020-10-23');
INSERT INTO public.journal_details VALUES (11632, 8738, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (11633, 8738, 'attr', 'fixed_version_id', NULL, '48');
INSERT INTO public.journal_details VALUES (11634, 8739, 'attr', 'due_date', NULL, '2020-10-23');
INSERT INTO public.journal_details VALUES (11635, 8739, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (11636, 8739, 'attr', 'fixed_version_id', NULL, '48');
INSERT INTO public.journal_details VALUES (11637, 8740, 'attr', 'assigned_to_id', '37', '8');
INSERT INTO public.journal_details VALUES (11638, 8741, 'attr', 'subject', 'Báo cáo trả hàng', 'BC bán hàng - Mối quan tâm => Trả hàng');
INSERT INTO public.journal_details VALUES (11639, 8741, 'attr', 'start_date', '2020-10-21', '2020-10-23');
INSERT INTO public.journal_details VALUES (11640, 8742, 'attr', 'start_date', '2020-10-21', '2020-10-23');
INSERT INTO public.journal_details VALUES (11641, 8743, 'attr', 'start_date', '2020-10-21', '2020-10-23');
INSERT INTO public.journal_details VALUES (11642, 8744, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11643, 8745, 'attr', 'due_date', '2020-10-24', '2020-10-26');
INSERT INTO public.journal_details VALUES (11644, 8745, 'attr', 'start_date', '2020-10-24', '2020-10-26');
INSERT INTO public.journal_details VALUES (11645, 8746, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11649, 8748, 'attr', 'due_date', '2020-10-26', NULL);
INSERT INTO public.journal_details VALUES (11650, 8748, 'attr', 'start_date', '2020-10-26', NULL);
INSERT INTO public.journal_details VALUES (11651, 8749, 'attr', 'description', '**Cập nhật tiến độ tháng 10**
TỔNG ĐIỂM **173**
ĐÃ HOÀN THÀNH **134**
CÒN LẠI **39**
TIẾN ĐỘ **77%**

**Kế hoạch tháng 11**
https://docs.google.com/spreadsheets/d/1P1AcV9YFvjjUD8j0m3hqrhmX_PuoutuVYsUiTs4EgaY/edit#gid=1843496086', '# Tiến độ tháng 10

DỰ ÁN: **QUẢN LÝ BÁN HÀNG**

NHÂN SỰ: **NGHĨA(Leader), TOÀN, QUÝ, VIỆT, TIẾN LÊ, TIẾN ĐẶNG, DUNG(Mobile)**

TỔNG ĐIỂM: **191**

ĐÃ HOÀN THÀNH: **152**

CÒN LẠI: **39**

TIẾN ĐỘ: **80%**

# Kế hoạch tháng 11

Thêm 2 sprint nữa để hoàn thành phần mềm quản lý bán hàng

Và bắt đầu PM quản lý chung cư

NHÂN SỰ: **NGHĨA(Leader), QUÝ, VIỆT, DUNG(Mobile)**

* * *

https://docs.google.com/spreadsheets/d/1P1AcV9YFvjjUD8j0m3hqrhmX_PuoutuVYsUiTs4EgaY/edit#gid=1843496086');
INSERT INTO public.journal_details VALUES (11652, 8750, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11653, 8751, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11654, 8752, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11655, 8753, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11656, 8754, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11657, 8755, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11658, 8756, 'attr', 'due_date', '2020-10-22', '2020-10-23');
INSERT INTO public.journal_details VALUES (11659, 8756, 'attr', 'start_date', '2020-10-22', '2020-10-23');
INSERT INTO public.journal_details VALUES (11660, 8757, 'attr', 'due_date', '2020-10-28', '2020-10-23');
INSERT INTO public.journal_details VALUES (11661, 8757, 'attr', 'start_date', '2020-10-28', '2020-10-23');
INSERT INTO public.journal_details VALUES (11662, 8758, 'attr', 'due_date', '2020-10-27', '2020-10-23');
INSERT INTO public.journal_details VALUES (11663, 8758, 'attr', 'start_date', '2020-10-27', '2020-10-23');
INSERT INTO public.journal_details VALUES (11664, 8759, 'attr', 'due_date', '2020-10-23', '2020-10-24');
INSERT INTO public.journal_details VALUES (11665, 8759, 'attr', 'start_date', '2020-10-23', '2020-10-24');
INSERT INTO public.journal_details VALUES (11666, 8760, 'attr', 'due_date', '2020-10-23', '2020-10-24');
INSERT INTO public.journal_details VALUES (11667, 8760, 'attr', 'start_date', '2020-10-23', '2020-10-24');
INSERT INTO public.journal_details VALUES (11668, 8761, 'attr', 'fixed_version_id', '51', '48');
INSERT INTO public.journal_details VALUES (11669, 8762, 'attr', 'fixed_version_id', '51', '48');
INSERT INTO public.journal_details VALUES (11670, 8763, 'attr', 'due_date', '2020-10-31', '2020-10-28');
INSERT INTO public.journal_details VALUES (11671, 8763, 'attr', 'start_date', '2020-10-29', '2020-10-26');
INSERT INTO public.journal_details VALUES (11672, 8764, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11673, 8765, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11674, 8766, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11675, 8767, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11676, 8768, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11677, 8769, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11678, 8770, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11679, 8771, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11680, 8772, 'attr', 'due_date', NULL, '2020-10-23');
INSERT INTO public.journal_details VALUES (11681, 8772, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (11682, 8772, 'attr', 'fixed_version_id', NULL, '48');
INSERT INTO public.journal_details VALUES (11683, 8773, 'attr', 'parent_id', NULL, '2445');
INSERT INTO public.journal_details VALUES (11684, 8774, 'attr', 'parent_id', NULL, '2533');
INSERT INTO public.journal_details VALUES (11685, 8775, 'attr', 'parent_id', '2445', '2533');
INSERT INTO public.journal_details VALUES (11686, 8776, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11687, 8777, 'attr', 'subject', 'Hiển thị bảng chi tiết xuất kho', 'Đơn bán hàng hiển thị bảng xuất hàng lote/date');
INSERT INTO public.journal_details VALUES (11688, 8778, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11689, 8779, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11690, 8780, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11691, 8781, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11692, 8782, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11693, 8783, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11694, 8784, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (11695, 8785, 'attr', 'due_date', NULL, '2020-10-22');
INSERT INTO public.journal_details VALUES (11696, 8785, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11697, 8785, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (11698, 8785, 'attr', 'start_date', '2020-10-23', '2020-10-22');
INSERT INTO public.journal_details VALUES (11699, 8785, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11700, 8786, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (11701, 8787, 'attr', 'fixed_version_id', NULL, '52');
INSERT INTO public.journal_details VALUES (11702, 8788, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (11703, 8789, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (11704, 8790, 'attr', 'due_date', NULL, '2020-10-27');
INSERT INTO public.journal_details VALUES (11705, 8790, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (11706, 8790, 'attr', 'start_date', '2020-10-23', '2020-10-27');
INSERT INTO public.journal_details VALUES (11707, 8791, 'attr', 'due_date', NULL, '2020-10-28');
INSERT INTO public.journal_details VALUES (11708, 8791, 'attr', 'start_date', '2020-10-23', '2020-10-28');
INSERT INTO public.journal_details VALUES (11709, 8792, 'attr', 'fixed_version_id', NULL, '52');
INSERT INTO public.journal_details VALUES (11710, 8793, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (11711, 8794, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (11712, 8795, 'attr', 'subject', 'Lỗi tìm kiếm nâng cao trên bản đồ', 'Tìm kiếm nâng cao trên bản đồ');
INSERT INTO public.journal_details VALUES (11713, 8795, 'attr', 'description', '', 'Tìm kiếm theo địa bàn và diện tích sai');
INSERT INTO public.journal_details VALUES (11714, 8795, 'attr', 'due_date', NULL, '2020-10-24');
INSERT INTO public.journal_details VALUES (11715, 8795, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (11716, 8795, 'attr', 'fixed_version_id', NULL, '49');
INSERT INTO public.journal_details VALUES (11717, 8796, 'attr', 'start_date', '2020-10-10', '2020-10-23');
INSERT INTO public.journal_details VALUES (11718, 8797, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11719, 8797, 'attr', 'fixed_version_id', NULL, '49');
INSERT INTO public.journal_details VALUES (11720, 8797, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11721, 8798, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11722, 8798, 'attr', 'fixed_version_id', NULL, '49');
INSERT INTO public.journal_details VALUES (11723, 8798, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11724, 8799, 'attr', 'due_date', NULL, '2020-10-23');
INSERT INTO public.journal_details VALUES (11725, 8799, 'attr', 'start_date', '2020-10-10', '2020-10-22');
INSERT INTO public.journal_details VALUES (11726, 8800, 'attr', 'due_date', NULL, '2020-10-24');
INSERT INTO public.journal_details VALUES (11727, 8801, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11728, 8802, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11729, 8803, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11730, 8804, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11731, 8805, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11732, 8806, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11733, 8807, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11734, 8808, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11735, 8809, 'attr', 'parent_id', '2533', NULL);
INSERT INTO public.journal_details VALUES (11736, 8810, 'attr', 'parent_id', '2533', NULL);
INSERT INTO public.journal_details VALUES (11737, 8811, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11738, 8812, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11739, 8813, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11740, 8813, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11741, 8814, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11742, 8814, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11743, 8815, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11744, 8815, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11745, 8816, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11746, 8816, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11747, 8817, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11748, 8817, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11749, 8818, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11750, 8818, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11751, 8819, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11752, 8819, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11753, 8820, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11754, 8820, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11755, 8821, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11756, 8821, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11757, 8822, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11758, 8822, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11759, 8823, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11760, 8823, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11761, 8824, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11762, 8824, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11763, 8825, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11764, 8825, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11765, 8826, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11766, 8826, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11767, 8827, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11768, 8827, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11769, 8828, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11770, 8828, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11771, 8829, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11772, 8829, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11773, 8830, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11774, 8830, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11775, 8831, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11776, 8831, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11777, 8832, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11778, 8832, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11779, 8833, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11780, 8834, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11781, 8835, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11782, 8836, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11783, 8837, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11784, 8838, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11785, 8839, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11786, 8840, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11787, 8841, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11788, 8841, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11789, 8842, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (11790, 8843, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (11791, 8844, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11792, 8845, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11793, 8846, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11794, 8847, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11795, 8848, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11796, 8849, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11797, 8850, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11798, 8851, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11799, 8852, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11800, 8853, 'attr', 'due_date', '2020-10-24', '2020-10-26');
INSERT INTO public.journal_details VALUES (11801, 8853, 'attr', 'start_date', '2020-10-24', '2020-10-26');
INSERT INTO public.journal_details VALUES (11802, 8854, 'attr', 'due_date', '2020-10-23', '2020-10-26');
INSERT INTO public.journal_details VALUES (11803, 8854, 'attr', 'start_date', '2020-10-23', '2020-10-26');
INSERT INTO public.journal_details VALUES (11804, 8855, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11805, 8856, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11806, 8857, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11807, 8858, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11808, 8859, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11809, 8860, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11810, 8861, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11811, 8862, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11812, 8863, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11813, 8864, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11814, 8865, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11815, 8866, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11816, 8867, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11817, 8868, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11818, 8869, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11819, 8870, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11820, 8870, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11821, 8871, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11822, 8872, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11823, 8873, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11824, 8874, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11825, 8875, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11826, 8876, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11827, 8877, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11828, 8878, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11829, 8879, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11830, 8880, 'attr', 'due_date', '2020-10-23', '2020-10-26');
INSERT INTO public.journal_details VALUES (11831, 8880, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11832, 8880, 'attr', 'start_date', '2020-10-23', '2020-10-26');
INSERT INTO public.journal_details VALUES (11833, 8881, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11834, 8882, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11835, 8883, 'attr', 'due_date', '2020-10-22', '2020-10-26');
INSERT INTO public.journal_details VALUES (11836, 8883, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11837, 8883, 'attr', 'start_date', '2020-10-22', '2020-10-26');
INSERT INTO public.journal_details VALUES (11838, 8884, 'attr', 'due_date', '2020-10-22', '2020-10-26');
INSERT INTO public.journal_details VALUES (11839, 8884, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11840, 8884, 'attr', 'start_date', '2020-10-22', '2020-10-26');
INSERT INTO public.journal_details VALUES (11841, 8885, 'attr', 'due_date', '2020-10-23', '2020-10-26');
INSERT INTO public.journal_details VALUES (11842, 8885, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11843, 8885, 'attr', 'start_date', '2020-10-22', '2020-10-26');
INSERT INTO public.journal_details VALUES (11844, 8886, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11845, 8887, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11846, 8888, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11847, 8889, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11848, 8890, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11849, 8891, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11850, 8892, 'attr', 'done_ratio', '60', '100');
INSERT INTO public.journal_details VALUES (11851, 8893, 'attr', 'due_date', '2020-10-23', '2020-10-26');
INSERT INTO public.journal_details VALUES (11852, 8893, 'attr', 'start_date', '2020-10-21', '2020-10-26');
INSERT INTO public.journal_details VALUES (11853, 8894, 'attr', 'due_date', '2020-10-22', '2020-10-26');
INSERT INTO public.journal_details VALUES (11854, 8894, 'attr', 'start_date', '2020-10-22', '2020-10-26');
INSERT INTO public.journal_details VALUES (11855, 8895, 'attr', 'due_date', '2020-10-22', '2020-10-26');
INSERT INTO public.journal_details VALUES (11856, 8895, 'attr', 'start_date', '2020-10-22', '2020-10-26');
INSERT INTO public.journal_details VALUES (11857, 8896, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11858, 8897, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11859, 8898, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11860, 8899, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11861, 8900, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11862, 8901, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11863, 8902, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11864, 8903, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11865, 8904, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (11866, 8905, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11867, 8906, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11868, 8907, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11869, 8908, 'attr', 'fixed_version_id', '48', '51');
INSERT INTO public.journal_details VALUES (11870, 8909, 'attr', 'due_date', '2020-10-23', '2020-10-26');
INSERT INTO public.journal_details VALUES (11871, 8909, 'attr', 'start_date', '2020-10-23', '2020-10-26');
INSERT INTO public.journal_details VALUES (11872, 8910, 'attr', 'due_date', '2020-10-23', '2020-10-26');
INSERT INTO public.journal_details VALUES (11873, 8910, 'attr', 'start_date', '2020-10-23', '2020-10-26');
INSERT INTO public.journal_details VALUES (11874, 8911, 'attr', 'due_date', '2020-10-23', '2020-10-26');
INSERT INTO public.journal_details VALUES (11875, 8911, 'attr', 'start_date', '2020-10-23', '2020-10-26');
INSERT INTO public.journal_details VALUES (11876, 8912, 'attr', 'due_date', '2020-10-22', '2020-10-26');
INSERT INTO public.journal_details VALUES (11877, 8912, 'attr', 'start_date', '2020-10-22', '2020-10-26');
INSERT INTO public.journal_details VALUES (11878, 8913, 'attr', 'due_date', '2020-10-24', '2020-10-26');
INSERT INTO public.journal_details VALUES (11879, 8913, 'attr', 'start_date', '2020-10-24', '2020-10-26');
INSERT INTO public.journal_details VALUES (11880, 8914, 'attr', 'due_date', '2020-10-24', '2020-10-26');
INSERT INTO public.journal_details VALUES (11881, 8914, 'attr', 'start_date', '2020-10-24', '2020-10-26');
INSERT INTO public.journal_details VALUES (11882, 8915, 'attr', 'due_date', '2020-10-24', '2020-10-26');
INSERT INTO public.journal_details VALUES (11883, 8915, 'attr', 'start_date', '2020-10-24', '2020-10-26');
INSERT INTO public.journal_details VALUES (11884, 8916, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11885, 8917, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (11886, 8918, 'attr', 'fixed_version_id', '49', '53');
INSERT INTO public.journal_details VALUES (11887, 8919, 'attr', 'fixed_version_id', '49', '53');
INSERT INTO public.journal_details VALUES (11888, 8920, 'attr', 'fixed_version_id', '49', '53');
INSERT INTO public.journal_details VALUES (11889, 8921, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11890, 8922, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11891, 8922, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11892, 8923, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11893, 8924, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11894, 8925, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11895, 8925, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11896, 8926, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11897, 8926, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11903, 8928, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11904, 8929, 'attr', 'due_date', NULL, '2020-10-19');
INSERT INTO public.journal_details VALUES (11905, 8929, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11906, 8929, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (11907, 8929, 'attr', 'fixed_version_id', '33', '48');
INSERT INTO public.journal_details VALUES (11908, 8929, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11909, 8930, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11910, 8931, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11911, 8932, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11912, 8933, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11913, 8934, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11914, 8935, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11915, 8936, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11916, 8937, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11917, 8938, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11918, 8939, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11919, 8940, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11920, 8941, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11921, 8942, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11922, 8943, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11923, 8944, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11924, 8945, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11925, 8946, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11926, 8947, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11927, 8948, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11928, 8949, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11929, 8950, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11930, 8951, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11931, 8951, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11932, 8952, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11933, 8953, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11934, 8954, 'attr', 'due_date', '2020-10-26', '2020-10-31');
INSERT INTO public.journal_details VALUES (11935, 8954, 'attr', 'start_date', '2020-10-26', '2020-10-31');
INSERT INTO public.journal_details VALUES (11936, 8955, 'attr', 'due_date', '2020-10-27', '2020-10-31');
INSERT INTO public.journal_details VALUES (11937, 8955, 'attr', 'start_date', '2020-10-27', '2020-10-31');
INSERT INTO public.journal_details VALUES (11938, 8956, 'attr', 'due_date', '2020-10-26', '2020-10-31');
INSERT INTO public.journal_details VALUES (11939, 8956, 'attr', 'start_date', '2020-10-26', '2020-10-31');
INSERT INTO public.journal_details VALUES (11940, 8957, 'attr', 'due_date', '2020-10-27', '2020-10-31');
INSERT INTO public.journal_details VALUES (11941, 8957, 'attr', 'start_date', '2020-10-27', '2020-10-31');
INSERT INTO public.journal_details VALUES (11942, 8958, 'attr', 'due_date', NULL, '2020-10-27');
INSERT INTO public.journal_details VALUES (11943, 8958, 'attr', 'start_date', '2020-10-23', '2020-10-26');
INSERT INTO public.journal_details VALUES (11947, 8961, 'attr', 'subject', 'Gộp báo cáo tồn kho và báo cáo nhập xuất tồn vào báo cáo hàng hóa.', 'Mobile - Gộp báo cáo tồn kho và báo cáo nhập xuất tồn vào báo cáo hàng hóa.');
INSERT INTO public.journal_details VALUES (11948, 8961, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (11949, 8961, 'attr', 'fixed_version_id', NULL, '51');
INSERT INTO public.journal_details VALUES (11950, 8962, 'attr', 'due_date', NULL, '2020-10-27');
INSERT INTO public.journal_details VALUES (11951, 8962, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (11952, 8962, 'attr', 'fixed_version_id', '33', '51');
INSERT INTO public.journal_details VALUES (11953, 8962, 'attr', 'start_date', '2020-10-20', '2020-10-27');
INSERT INTO public.journal_details VALUES (11954, 8963, 'attr', 'fixed_version_id', '51', '33');
INSERT INTO public.journal_details VALUES (11955, 8964, 'attr', 'fixed_version_id', '51', '33');
INSERT INTO public.journal_details VALUES (11956, 8965, 'attr', 'fixed_version_id', '51', '33');
INSERT INTO public.journal_details VALUES (11957, 8966, 'attr', 'due_date', '2020-10-26', NULL);
INSERT INTO public.journal_details VALUES (11958, 8966, 'attr', 'fixed_version_id', '51', '33');
INSERT INTO public.journal_details VALUES (11959, 8966, 'attr', 'start_date', '2020-10-26', NULL);
INSERT INTO public.journal_details VALUES (11960, 8967, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11961, 8968, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11962, 8969, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11963, 8970, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11964, 8971, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11965, 8972, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11966, 8973, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11967, 8974, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11968, 8975, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11969, 8976, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11970, 8977, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11971, 8978, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11972, 8979, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11973, 8980, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11974, 8981, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11975, 8982, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (11976, 8983, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11977, 8984, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11978, 8985, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11979, 8986, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11980, 8987, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11981, 8988, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11982, 8989, 'attr', 'assigned_to_id', '39', '38');
INSERT INTO public.journal_details VALUES (11983, 8990, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11984, 8991, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11985, 8992, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11986, 8993, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (11987, 8994, 'attr', 'assigned_to_id', '39', '41');
INSERT INTO public.journal_details VALUES (11988, 8995, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11989, 8996, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11990, 8997, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11991, 8998, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11992, 8999, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (11993, 9000, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11994, 9001, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11995, 9002, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11996, 9003, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11997, 9004, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (11998, 9005, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (11999, 9006, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12000, 9007, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12001, 9008, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12002, 9008, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12003, 9009, 'attr', 'fixed_version_id', NULL, '33');
INSERT INTO public.journal_details VALUES (12004, 9010, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12005, 9011, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12006, 9012, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12007, 9013, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12008, 9014, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12009, 9015, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12010, 9016, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (12011, 9017, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12012, 9018, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (12013, 9019, 'attr', 'subject', 'Sửa Dashboard', 'Sửa giao diện dashboard');
INSERT INTO public.journal_details VALUES (12014, 9019, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12015, 9019, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12016, 9020, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12017, 9020, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12018, 9021, 'attr', 'subject', 'Tạo form liên hệ', 'Tạo form thêm KH');
INSERT INTO public.journal_details VALUES (12019, 9022, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12020, 9022, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12021, 9023, 'attr', 'due_date', '2020-10-31', '2020-10-30');
INSERT INTO public.journal_details VALUES (12022, 9023, 'attr', 'fixed_version_id', '33', '51');
INSERT INTO public.journal_details VALUES (12023, 9023, 'attr', 'start_date', '2020-10-29', '2020-10-30');
INSERT INTO public.journal_details VALUES (12024, 9024, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12025, 9024, 'attr', 'fixed_version_id', '33', '51');
INSERT INTO public.journal_details VALUES (12026, 9024, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12027, 9025, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12028, 9025, 'attr', 'fixed_version_id', '33', '51');
INSERT INTO public.journal_details VALUES (12029, 9025, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12030, 9026, 'attr', 'due_date', '2020-10-29', '2020-10-30');
INSERT INTO public.journal_details VALUES (12031, 9026, 'attr', 'start_date', '2020-10-29', '2020-10-30');
INSERT INTO public.journal_details VALUES (12032, 9027, 'attr', 'due_date', '2020-10-27', '2020-10-31');
INSERT INTO public.journal_details VALUES (12033, 9027, 'attr', 'start_date', '2020-10-27', '2020-10-31');
INSERT INTO public.journal_details VALUES (12037, 9029, 'attr', 'due_date', NULL, '2020-10-31');
INSERT INTO public.journal_details VALUES (12038, 9029, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (12039, 9029, 'attr', 'fixed_version_id', '33', '51');
INSERT INTO public.journal_details VALUES (12040, 9029, 'attr', 'start_date', '2020-10-19', '2020-10-31');
INSERT INTO public.journal_details VALUES (12041, 9030, 'attr', 'due_date', NULL, '2020-10-30');
INSERT INTO public.journal_details VALUES (12042, 9030, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (12043, 9030, 'attr', 'fixed_version_id', NULL, '51');
INSERT INTO public.journal_details VALUES (12044, 9031, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12045, 9031, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12046, 9032, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12047, 9032, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12048, 9033, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12049, 9033, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12050, 9034, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12051, 9035, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12052, 9036, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (12053, 9036, 'attr', 'fixed_version_id', NULL, '51');
INSERT INTO public.journal_details VALUES (12054, 9037, 'attr', 'due_date', '2020-10-30', '2020-10-31');
INSERT INTO public.journal_details VALUES (12055, 9038, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12056, 9038, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12057, 9039, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12058, 9039, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12059, 9040, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12060, 9041, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12061, 9041, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12062, 9042, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12063, 9042, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12064, 9043, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12065, 9044, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (12066, 9044, 'attr', 'done_ratio', '0', '30');
INSERT INTO public.journal_details VALUES (12067, 9045, 'attr', 'due_date', '2020-10-30', '2020-10-31');
INSERT INTO public.journal_details VALUES (12068, 9045, 'attr', 'start_date', '2020-10-30', '2020-10-31');
INSERT INTO public.journal_details VALUES (12069, 9046, 'attr', 'due_date', '2020-10-30', '2020-10-31');
INSERT INTO public.journal_details VALUES (12070, 9046, 'attr', 'start_date', '2020-10-30', '2020-10-31');
INSERT INTO public.journal_details VALUES (12071, 9047, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12072, 9047, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12073, 9048, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12074, 9048, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12075, 9049, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12076, 9050, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12077, 9051, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12078, 9052, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12079, 9053, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12080, 9053, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12081, 9054, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12082, 9055, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12083, 9056, 'attr', 'subject', 'Mobile - sai Doanh thu thẻ  --> không hiển thị doanh thu của thẻ chỉ hiển thị tổng doanh thu', 'Mobile - sai Doanh thu thẻ  --> không hiển thị chi tiết doanh thu của thẻ chỉ hiển thị tổng doanh thu');
INSERT INTO public.journal_details VALUES (12084, 9056, 'attr', 'due_date', NULL, '2020-10-31');
INSERT INTO public.journal_details VALUES (12085, 9056, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (12086, 9056, 'attr', 'fixed_version_id', NULL, '51');
INSERT INTO public.journal_details VALUES (12087, 9057, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12088, 9057, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12089, 9058, 'attr', 'due_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12090, 9058, 'attr', 'start_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12091, 9059, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12092, 9060, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12093, 9061, 'attr', 'due_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12094, 9061, 'attr', 'fixed_version_id', '51', '54');
INSERT INTO public.journal_details VALUES (12095, 9061, 'attr', 'start_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12096, 9062, 'attr', 'due_date', '2020-10-30', '2020-11-02');
INSERT INTO public.journal_details VALUES (12097, 9062, 'attr', 'fixed_version_id', '51', '54');
INSERT INTO public.journal_details VALUES (12098, 9062, 'attr', 'start_date', '2020-10-30', '2020-11-02');
INSERT INTO public.journal_details VALUES (12099, 9063, 'attr', 'due_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12100, 9063, 'attr', 'fixed_version_id', '51', '54');
INSERT INTO public.journal_details VALUES (12101, 9063, 'attr', 'start_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12102, 9064, 'attr', 'due_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12103, 9064, 'attr', 'fixed_version_id', '51', '54');
INSERT INTO public.journal_details VALUES (12104, 9064, 'attr', 'start_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12105, 9065, 'attr', 'due_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12106, 9065, 'attr', 'fixed_version_id', '51', '54');
INSERT INTO public.journal_details VALUES (12107, 9065, 'attr', 'start_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12108, 9066, 'attr', 'fixed_version_id', '51', '54');
INSERT INTO public.journal_details VALUES (12109, 9067, 'attr', 'due_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12110, 9067, 'attr', 'fixed_version_id', '51', '54');
INSERT INTO public.journal_details VALUES (12111, 9067, 'attr', 'start_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12112, 9068, 'attr', 'due_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12113, 9068, 'attr', 'fixed_version_id', '51', '54');
INSERT INTO public.journal_details VALUES (12114, 9068, 'attr', 'start_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12115, 9069, 'attr', 'due_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12116, 9069, 'attr', 'fixed_version_id', '51', '54');
INSERT INTO public.journal_details VALUES (12117, 9069, 'attr', 'start_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12118, 9070, 'attr', 'due_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12119, 9070, 'attr', 'fixed_version_id', '51', '54');
INSERT INTO public.journal_details VALUES (12120, 9070, 'attr', 'start_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12121, 9071, 'attr', 'due_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12122, 9071, 'attr', 'fixed_version_id', '51', '54');
INSERT INTO public.journal_details VALUES (12123, 9071, 'attr', 'start_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12124, 9072, 'attr', 'due_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12125, 9072, 'attr', 'fixed_version_id', '51', '54');
INSERT INTO public.journal_details VALUES (12126, 9072, 'attr', 'start_date', '2020-10-31', '2020-11-02');
INSERT INTO public.journal_details VALUES (12127, 9073, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12128, 9074, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12129, 9075, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12130, 9076, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12131, 9077, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12132, 9078, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12133, 9079, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12134, 9080, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12135, 9081, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12136, 9082, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12137, 9083, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12138, 9084, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12139, 9085, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12140, 9086, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12141, 9087, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12142, 9088, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12143, 9089, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12144, 9090, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12145, 9091, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12146, 9092, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12147, 9093, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12148, 9094, 'attachment', '151', NULL, 'XayDungHeThongBaoCao.pptx');
INSERT INTO public.journal_details VALUES (12149, 9094, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12150, 9094, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12151, 9095, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (12152, 9096, 'attr', 'due_date', NULL, '2020-11-07');
INSERT INTO public.journal_details VALUES (12153, 9097, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12154, 9098, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12155, 9099, 'attr', 'done_ratio', '30', '60');
INSERT INTO public.journal_details VALUES (12156, 9100, 'attr', 'assigned_to_id', '19', '38');
INSERT INTO public.journal_details VALUES (12157, 9101, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12158, 9101, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12159, 9102, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12160, 9102, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12161, 9103, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (12162, 9104, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (12163, 9105, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (12164, 9106, 'attr', 'fixed_version_id', '33', '54');
INSERT INTO public.journal_details VALUES (12165, 9107, 'attr', 'fixed_version_id', '33', '54');
INSERT INTO public.journal_details VALUES (12166, 9108, 'attr', 'fixed_version_id', '33', '54');
INSERT INTO public.journal_details VALUES (12167, 9109, 'attr', 'due_date', NULL, '2020-11-06');
INSERT INTO public.journal_details VALUES (12168, 9109, 'attr', 'start_date', '2020-10-29', '2020-11-06');
INSERT INTO public.journal_details VALUES (12169, 9110, 'attr', 'due_date', NULL, '2020-11-06');
INSERT INTO public.journal_details VALUES (12170, 9110, 'attr', 'start_date', '2020-10-29', '2020-11-06');
INSERT INTO public.journal_details VALUES (12171, 9111, 'attr', 'due_date', NULL, '2020-11-06');
INSERT INTO public.journal_details VALUES (12172, 9111, 'attr', 'start_date', '2020-10-29', '2020-11-06');
INSERT INTO public.journal_details VALUES (12173, 9112, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (12174, 9112, 'attr', 'done_ratio', '60', '100');
INSERT INTO public.journal_details VALUES (12175, 9113, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12176, 9114, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12177, 9115, 'attachment', '152', NULL, 'QDQP 20 - 7. Ban hanh Quy dinh che do bao cao dinh ky linh vuc tai chinh tren dia ban tinh.pdf');
INSERT INTO public.journal_details VALUES (12178, 9116, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12179, 9117, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12180, 9118, 'attr', 'subject', 'Công nợ phải trả NCC', 'Danh sách công nợ phải trả NCC');
INSERT INTO public.journal_details VALUES (12181, 9119, 'attr', 'subject', 'Công nợ phải thu khách hàng', 'Danh sách công nợ phải thu khách hàng');
INSERT INTO public.journal_details VALUES (12182, 9120, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12183, 9121, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12184, 9122, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12185, 9122, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12186, 9123, 'attr', 'due_date', NULL, '2020-11-02');
INSERT INTO public.journal_details VALUES (12187, 9123, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12188, 9123, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12189, 9124, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (12192, 9126, 'attr', 'due_date', '2020-11-03', '2020-11-04');
INSERT INTO public.journal_details VALUES (12193, 9127, 'attr', 'due_date', NULL, '2020-11-05');
INSERT INTO public.journal_details VALUES (12194, 9127, 'attr', 'start_date', '2020-11-02', '2020-11-05');
INSERT INTO public.journal_details VALUES (12195, 9128, 'attr', 'due_date', NULL, '2020-11-05');
INSERT INTO public.journal_details VALUES (12196, 9128, 'attr', 'start_date', '2020-11-02', '2020-11-05');
INSERT INTO public.journal_details VALUES (12197, 9129, 'attr', 'due_date', '2020-11-03', '2020-11-04');
INSERT INTO public.journal_details VALUES (12198, 9130, 'attr', 'due_date', '2020-11-05', '2020-11-07');
INSERT INTO public.journal_details VALUES (12199, 9130, 'attr', 'start_date', '2020-11-05', '2020-11-06');
INSERT INTO public.journal_details VALUES (12200, 9131, 'attr', 'due_date', '2020-11-04', '2020-11-05');
INSERT INTO public.journal_details VALUES (12201, 9132, 'attr', 'due_date', '2020-11-06', '2020-11-09');
INSERT INTO public.journal_details VALUES (12202, 9132, 'attr', 'start_date', '2020-11-06', '2020-11-09');
INSERT INTO public.journal_details VALUES (12203, 9133, 'attr', 'due_date', NULL, '2020-11-07');
INSERT INTO public.journal_details VALUES (12204, 9133, 'attr', 'start_date', '2020-11-02', '2020-11-07');
INSERT INTO public.journal_details VALUES (12205, 9134, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12206, 9135, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12207, 9136, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12208, 9137, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12209, 9138, 'attr', 'subject', 'Mobile - BC bán hàng - Chỉnh sửa bố cục giao diện, không xem được kết quả báo cáo bên dưới', 'Mobile - BC bán hàng - Chỉnh sửa bố cục giao diện, không xem được kết quả báo cáo bên dưới, chon xem tuần trước hiển thị thông báo sai');
INSERT INTO public.journal_details VALUES (12210, 9139, 'attr', 'due_date', NULL, '2020-11-03');
INSERT INTO public.journal_details VALUES (12211, 9139, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (12212, 9139, 'attr', 'fixed_version_id', NULL, '54');
INSERT INTO public.journal_details VALUES (12213, 9140, 'attr', 'subject', 'Mobile - BC bán hàng chọn tuần trước hiện thông báo sai', 'Mobile - BC bán hàng chọn tuần trước hiện thông báo sai - sửa bố cục giao diện lịch');
INSERT INTO public.journal_details VALUES (12214, 9141, 'attr', 'subject', 'Mobile - BC bán hàng - Chỉnh sửa bố cục giao diện, không xem được kết quả báo cáo bên dưới, chon xem tuần trước hiển thị thông báo sai', 'Mobile - BC hàng hóa - Chỉnh sửa bố cục giao diện, không xem được kết quả báo cáo bên dưới, chon xem tuần trước hiển thị thông báo sai');
INSERT INTO public.journal_details VALUES (12215, 9142, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12216, 9143, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12217, 9144, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12218, 9145, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12219, 9146, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12220, 9147, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12221, 9148, 'attr', 'start_date', '2020-11-03', '2020-11-04');
INSERT INTO public.journal_details VALUES (12222, 9149, 'attr', 'description', 'Dựa vào bảng giá id, load ra giá tương ứng

Kèm theo chương trình khuyến mãi', 'Dựa vào bảng giá id, load ra giá tương ứng');
INSERT INTO public.journal_details VALUES (12223, 9150, 'attr', 'due_date', NULL, '2020-11-03');
INSERT INTO public.journal_details VALUES (12224, 9150, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (12225, 9150, 'attr', 'fixed_version_id', NULL, '54');
INSERT INTO public.journal_details VALUES (12226, 9151, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12227, 9152, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12228, 9153, 'attr', 'done_ratio', '0', '70');
INSERT INTO public.journal_details VALUES (12229, 9154, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12230, 9155, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12231, 9156, 'attr', 'subject', 'Mobile - Không theem đu', 'Mobile - Không thêm được sản phẩm khi quét mã');
INSERT INTO public.journal_details VALUES (12232, 9156, 'attr', 'due_date', NULL, '2020-11-04');
INSERT INTO public.journal_details VALUES (12233, 9156, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (12234, 9156, 'attr', 'fixed_version_id', NULL, '54');
INSERT INTO public.journal_details VALUES (12235, 9157, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12236, 9158, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12237, 9159, 'attr', 'due_date', NULL, '2020-11-04');
INSERT INTO public.journal_details VALUES (12238, 9159, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (12239, 9159, 'attr', 'fixed_version_id', NULL, '54');
INSERT INTO public.journal_details VALUES (12240, 9160, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12241, 9161, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (12242, 9162, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12243, 9162, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12244, 9163, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12245, 9163, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12246, 9164, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12247, 9164, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12248, 9165, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (12249, 9166, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12250, 9167, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12251, 9168, 'attr', 'subject', 'Sổ quỹ - Sai số liệu khi xem qua năm sau', 'Sổ quỹ chuyển component thời gian');
INSERT INTO public.journal_details VALUES (12252, 9168, 'attr', 'assigned_to_id', '41', '37');
INSERT INTO public.journal_details VALUES (12253, 9168, 'attr', 'start_date', '2020-11-04', '2020-11-05');
INSERT INTO public.journal_details VALUES (12254, 9169, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12255, 9169, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12256, 9170, 'attr', 'subject', 'Tạo đơn hàng - Chỉnh sửa lại thêm sản phẩm theo danh mục', 'Mobile - Tạo đơn hàng - Chỉnh sửa lại thêm sản phẩm theo danh mục');
INSERT INTO public.journal_details VALUES (12257, 9171, 'attr', 'subject', 'Tạo đơn hàng - không xem được chi tiết của đơn hàng', 'Mobile - Tạo đơn hàng - không xem được chi tiết của đơn hàng');
INSERT INTO public.journal_details VALUES (12259, 9173, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12260, 9173, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12265, 9176, 'attr', 'fixed_version_id', '54', '58');
INSERT INTO public.journal_details VALUES (12266, 9177, 'attr', 'fixed_version_id', '54', '58');
INSERT INTO public.journal_details VALUES (12267, 9178, 'attr', 'due_date', '2020-11-07', '2020-11-09');
INSERT INTO public.journal_details VALUES (12268, 9178, 'attr', 'fixed_version_id', '54', '58');
INSERT INTO public.journal_details VALUES (12269, 9178, 'attr', 'start_date', '2020-11-07', '2020-11-09');
INSERT INTO public.journal_details VALUES (12270, 9179, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12271, 9180, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12272, 9181, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12273, 9182, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12274, 9183, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12275, 9184, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12276, 9185, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12277, 9186, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12278, 9187, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12279, 9188, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12280, 9189, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12281, 9190, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12282, 9191, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12283, 9192, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12284, 9193, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12285, 9194, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12286, 9195, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12287, 9196, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12288, 9197, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12289, 9198, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12290, 9199, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12291, 9200, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12292, 9201, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12293, 9202, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12294, 9203, 'attr', 'fixed_version_id', NULL, '54');
INSERT INTO public.journal_details VALUES (12295, 9204, 'attr', 'subject', 'Gắn nút In Phiếu ở Phiếu chuyển , Phiếu nhập', 'Gắn nút in phiếu trong phiếu nhập');
INSERT INTO public.journal_details VALUES (12296, 9204, 'attr', 'assigned_to_id', '39', '37');
INSERT INTO public.journal_details VALUES (12297, 9205, 'attr', 'due_date', '2020-11-02', '2020-11-06');
INSERT INTO public.journal_details VALUES (12298, 9205, 'attr', 'start_date', '2020-11-02', '2020-11-05');
INSERT INTO public.journal_details VALUES (12299, 9206, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12300, 9207, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12301, 9208, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12302, 9209, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12303, 9210, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12304, 9210, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12305, 9211, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12306, 9211, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12307, 9212, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12308, 9212, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12309, 9213, 'attr', 'start_date', '2020-11-06', '2020-11-07');
INSERT INTO public.journal_details VALUES (12310, 9214, 'attr', 'due_date', '2020-11-05', '2020-11-06');
INSERT INTO public.journal_details VALUES (12311, 9214, 'attr', 'start_date', '2020-11-04', '2020-11-06');
INSERT INTO public.journal_details VALUES (12312, 9215, 'attr', 'due_date', '2020-11-05', '2020-11-06');
INSERT INTO public.journal_details VALUES (12313, 9215, 'attr', 'start_date', '2020-11-05', '2020-11-06');
INSERT INTO public.journal_details VALUES (12314, 9216, 'attr', 'due_date', '2020-11-05', '2020-11-06');
INSERT INTO public.journal_details VALUES (12315, 9216, 'attr', 'start_date', '2020-11-05', '2020-11-06');
INSERT INTO public.journal_details VALUES (12316, 9217, 'attr', 'due_date', '2020-11-04', '2020-11-06');
INSERT INTO public.journal_details VALUES (12317, 9217, 'attr', 'start_date', '2020-11-04', '2020-11-06');
INSERT INTO public.journal_details VALUES (12318, 9218, 'attr', 'subject', 'Danh mục sản phẩm - không xóa được sản phẩm', 'Xóa sp thông báo đã phát sinh dữ liệu');
INSERT INTO public.journal_details VALUES (12319, 9218, 'attr', 'due_date', '2020-11-05', '2020-11-06');
INSERT INTO public.journal_details VALUES (12320, 9218, 'attr', 'assigned_to_id', '41', '39');
INSERT INTO public.journal_details VALUES (12321, 9218, 'attr', 'start_date', '2020-11-05', '2020-11-06');
INSERT INTO public.journal_details VALUES (12322, 9219, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12323, 9219, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12324, 9220, 'attr', 'subject', 'Mobile - BC tồn kho, bỏ mã tên sản phẩm, chỉnh mã sản phẩm, thêm số lượng tồn kho tối thiểu. ', 'Mobile - BC tồn kho, bỏ mã tên sản phẩm, chỉnh mã sản phẩm.');
INSERT INTO public.journal_details VALUES (12325, 9221, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12326, 9222, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12327, 9223, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (12328, 9224, 'attr', 'assigned_to_id', '39', '37');
INSERT INTO public.journal_details VALUES (12329, 9225, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12330, 9225, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12332, 9227, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12333, 9227, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12334, 9228, 'attr', 'due_date', '2020-11-04', '2020-11-07');
INSERT INTO public.journal_details VALUES (12335, 9228, 'attr', 'start_date', '2020-11-04', '2020-11-07');
INSERT INTO public.journal_details VALUES (12336, 9229, 'attr', 'due_date', '2020-11-04', '2020-11-07');
INSERT INTO public.journal_details VALUES (12337, 9229, 'attr', 'start_date', '2020-11-04', '2020-11-07');
INSERT INTO public.journal_details VALUES (12338, 9230, 'attr', 'due_date', '2020-11-04', '2020-11-07');
INSERT INTO public.journal_details VALUES (12339, 9230, 'attr', 'start_date', '2020-11-04', '2020-11-07');
INSERT INTO public.journal_details VALUES (12340, 9231, 'attr', 'due_date', '2020-11-04', '2020-11-07');
INSERT INTO public.journal_details VALUES (12341, 9231, 'attr', 'start_date', '2020-11-04', '2020-11-07');
INSERT INTO public.journal_details VALUES (12342, 9232, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12343, 9233, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12344, 9234, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12345, 9235, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12346, 9236, 'attr', 'due_date', '2020-11-06', '2020-11-07');
INSERT INTO public.journal_details VALUES (12347, 9237, 'attr', 'due_date', '2020-11-07', '2020-11-09');
INSERT INTO public.journal_details VALUES (12348, 9237, 'attr', 'fixed_version_id', '54', '58');
INSERT INTO public.journal_details VALUES (12349, 9237, 'attr', 'start_date', '2020-11-07', '2020-11-09');
INSERT INTO public.journal_details VALUES (12350, 9238, 'attr', 'due_date', '2020-11-09', '2020-11-10');
INSERT INTO public.journal_details VALUES (12351, 9238, 'attr', 'start_date', '2020-11-09', '2020-11-10');
INSERT INTO public.journal_details VALUES (12352, 9239, 'attr', 'due_date', '2020-11-07', '2020-11-09');
INSERT INTO public.journal_details VALUES (12353, 9239, 'attr', 'start_date', '2020-11-07', '2020-11-09');
INSERT INTO public.journal_details VALUES (12354, 9240, 'attr', 'fixed_version_id', '54', '58');
INSERT INTO public.journal_details VALUES (12355, 9241, 'attr', 'due_date', '2020-11-07', '2020-11-11');
INSERT INTO public.journal_details VALUES (12356, 9241, 'attr', 'start_date', '2020-11-07', '2020-11-11');
INSERT INTO public.journal_details VALUES (12357, 9242, 'attr', 'fixed_version_id', '54', '58');
INSERT INTO public.journal_details VALUES (12358, 9243, 'attr', 'due_date', '2020-11-10', '2020-11-14');
INSERT INTO public.journal_details VALUES (12359, 9243, 'attr', 'start_date', '2020-11-09', '2020-11-13');
INSERT INTO public.journal_details VALUES (12360, 9244, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (12361, 9245, 'attr', 'due_date', '2020-11-14', '2020-11-13');
INSERT INTO public.journal_details VALUES (12362, 9245, 'attr', 'start_date', '2020-11-13', '2020-11-12');
INSERT INTO public.journal_details VALUES (12363, 9246, 'attr', 'assigned_to_id', '38', '41');
INSERT INTO public.journal_details VALUES (12364, 9247, 'attr', 'assigned_to_id', '38', '41');
INSERT INTO public.journal_details VALUES (12365, 9248, 'attr', 'assigned_to_id', '38', '41');
INSERT INTO public.journal_details VALUES (12366, 9249, 'attr', 'due_date', '2020-11-06', '2020-11-07');
INSERT INTO public.journal_details VALUES (12367, 9250, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12368, 9251, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12369, 9252, 'attr', 'due_date', '2020-11-07', '2020-11-09');
INSERT INTO public.journal_details VALUES (12370, 9252, 'attr', 'fixed_version_id', '54', '58');
INSERT INTO public.journal_details VALUES (12371, 9252, 'attr', 'start_date', '2020-11-07', '2020-11-09');
INSERT INTO public.journal_details VALUES (12372, 9253, 'attr', 'due_date', '2020-11-06', '2020-11-09');
INSERT INTO public.journal_details VALUES (12373, 9253, 'attr', 'fixed_version_id', '54', '58');
INSERT INTO public.journal_details VALUES (12374, 9253, 'attr', 'start_date', '2020-11-06', '2020-11-09');
INSERT INTO public.journal_details VALUES (12375, 9254, 'attr', 'due_date', '2020-11-06', '2020-11-09');
INSERT INTO public.journal_details VALUES (12376, 9254, 'attr', 'fixed_version_id', '54', '58');
INSERT INTO public.journal_details VALUES (12377, 9254, 'attr', 'start_date', '2020-11-06', '2020-11-09');
INSERT INTO public.journal_details VALUES (12378, 9255, 'attr', 'due_date', '2020-11-05', '2020-11-09');
INSERT INTO public.journal_details VALUES (12379, 9255, 'attr', 'fixed_version_id', '54', '58');
INSERT INTO public.journal_details VALUES (12380, 9255, 'attr', 'start_date', '2020-11-04', '2020-11-09');
INSERT INTO public.journal_details VALUES (12384, 9257, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12385, 9257, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12386, 9258, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12387, 9259, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12388, 9260, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (12389, 9261, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (12390, 9262, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12391, 9262, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12392, 9263, 'attr', 'tracker_id', '2', '1');
INSERT INTO public.journal_details VALUES (12393, 9263, 'attr', 'subject', 'bỏ BC theo đơn trả hàng - chỉ có báo cáo doanh thu theo thời gian và lợi nhuận - gộp đơn trả hàng vào 2 báo cáo', 'Gộp đơn trả hàng vào báo cáo doanh thu theo số lượng và thời gian');
INSERT INTO public.journal_details VALUES (12394, 9264, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12395, 9264, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12396, 9265, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12397, 9265, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12398, 9266, 'attr', 'subject', 'Detail Khách hàng, Nhà cung cấp', 'Detail Nhân Viên');
INSERT INTO public.journal_details VALUES (12399, 9266, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12400, 9266, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12401, 9267, 'attr', 'due_date', '2020-11-07', '2020-11-09');
INSERT INTO public.journal_details VALUES (12402, 9267, 'attr', 'fixed_version_id', '54', '58');
INSERT INTO public.journal_details VALUES (12403, 9267, 'attr', 'start_date', '2020-11-06', '2020-11-09');
INSERT INTO public.journal_details VALUES (12404, 9268, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12405, 9269, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12406, 9270, 'attr', 'due_date', '2020-11-09', '2020-11-07');
INSERT INTO public.journal_details VALUES (12407, 9270, 'attr', 'fixed_version_id', '58', '54');
INSERT INTO public.journal_details VALUES (12408, 9270, 'attr', 'start_date', '2020-11-09', '2020-11-07');
INSERT INTO public.journal_details VALUES (12409, 9271, 'attr', 'due_date', '2020-11-07', '2020-11-10');
INSERT INTO public.journal_details VALUES (12410, 9271, 'attr', 'start_date', '2020-11-06', '2020-11-09');
INSERT INTO public.journal_details VALUES (12411, 9272, 'attr', 'fixed_version_id', '54', '58');
INSERT INTO public.journal_details VALUES (12412, 9273, 'attr', 'fixed_version_id', '54', '58');
INSERT INTO public.journal_details VALUES (12413, 9274, 'attr', 'fixed_version_id', '54', '58');
INSERT INTO public.journal_details VALUES (12414, 9275, 'attr', 'due_date', '2020-11-06', '2020-11-09');
INSERT INTO public.journal_details VALUES (12415, 9275, 'attr', 'start_date', '2020-11-06', '2020-11-09');
INSERT INTO public.journal_details VALUES (12416, 9276, 'attr', 'due_date', '2020-11-06', '2020-11-09');
INSERT INTO public.journal_details VALUES (12417, 9276, 'attr', 'start_date', '2020-11-06', '2020-11-09');
INSERT INTO public.journal_details VALUES (12418, 9277, 'attr', 'due_date', '2020-11-04', '2020-11-09');
INSERT INTO public.journal_details VALUES (12419, 9277, 'attr', 'fixed_version_id', '54', '58');
INSERT INTO public.journal_details VALUES (12420, 9277, 'attr', 'start_date', '2020-11-04', '2020-11-09');
INSERT INTO public.journal_details VALUES (12421, 9278, 'attr', 'due_date', '2020-11-04', '2020-11-09');
INSERT INTO public.journal_details VALUES (12422, 9278, 'attr', 'fixed_version_id', '54', '58');
INSERT INTO public.journal_details VALUES (12423, 9278, 'attr', 'start_date', '2020-11-04', '2020-11-09');
INSERT INTO public.journal_details VALUES (12426, 9280, 'attr', 'due_date', '2020-11-06', '2020-11-09');
INSERT INTO public.journal_details VALUES (12427, 9280, 'attr', 'fixed_version_id', '54', '58');
INSERT INTO public.journal_details VALUES (12428, 9280, 'attr', 'start_date', '2020-11-06', '2020-11-09');
INSERT INTO public.journal_details VALUES (12429, 9281, 'attr', 'due_date', '2020-11-07', '2020-11-09');
INSERT INTO public.journal_details VALUES (12430, 9281, 'attr', 'start_date', '2020-11-06', '2020-11-09');
INSERT INTO public.journal_details VALUES (12431, 9282, 'attr', 'due_date', '2020-11-08', '2020-11-11');
INSERT INTO public.journal_details VALUES (12432, 9282, 'attr', 'fixed_version_id', '54', '58');
INSERT INTO public.journal_details VALUES (12433, 9282, 'attr', 'start_date', '2020-11-07', '2020-11-11');
INSERT INTO public.journal_details VALUES (12434, 9283, 'attr', 'due_date', '2020-11-07', '2020-11-12');
INSERT INTO public.journal_details VALUES (12435, 9283, 'attr', 'fixed_version_id', '54', '58');
INSERT INTO public.journal_details VALUES (12436, 9283, 'attr', 'start_date', '2020-11-07', '2020-11-12');
INSERT INTO public.journal_details VALUES (12438, 9285, 'attr', 'fixed_version_id', '54', '58');
INSERT INTO public.journal_details VALUES (12439, 9286, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12440, 9287, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (12441, 9288, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (12442, 9289, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12443, 9290, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12444, 9290, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12445, 9291, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12446, 9292, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12447, 9293, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12448, 9294, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12449, 9294, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12450, 9295, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12451, 9295, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12452, 9296, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12453, 9296, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12454, 9297, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12455, 9297, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12456, 9298, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12457, 9298, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12458, 9299, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12459, 9299, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12460, 9300, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (12461, 9301, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12462, 9301, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12463, 9302, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12464, 9302, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12465, 9303, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12466, 9303, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12467, 9304, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12468, 9304, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12469, 9305, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12470, 9305, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12471, 9306, 'attr', 'due_date', '2020-11-09', '2020-11-10');
INSERT INTO public.journal_details VALUES (12472, 9306, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (12473, 9306, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (12474, 9307, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12475, 9307, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12476, 9308, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12477, 9308, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12482, 9311, 'attr', 'due_date', '2020-11-09', '2020-11-10');
INSERT INTO public.journal_details VALUES (12483, 9312, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12484, 9313, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12485, 9314, 'attr', 'due_date', NULL, '2020-11-10');
INSERT INTO public.journal_details VALUES (12486, 9314, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (12487, 9314, 'attr', 'fixed_version_id', NULL, '58');
INSERT INTO public.journal_details VALUES (12488, 9314, 'attr', 'start_date', '2020-11-07', '2020-11-10');
INSERT INTO public.journal_details VALUES (12489, 9315, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12490, 9316, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12491, 9317, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (12492, 9318, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12493, 9319, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12494, 9320, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12495, 9321, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12496, 9322, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12497, 9323, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12498, 9324, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12499, 9325, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12500, 9326, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12501, 9327, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12502, 9328, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12503, 9329, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12504, 9330, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12505, 9331, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12506, 9332, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12507, 9333, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12508, 9334, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12509, 9335, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12510, 9336, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12511, 9337, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12512, 9337, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12513, 9338, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (12514, 9339, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12515, 9339, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12516, 9340, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12517, 9340, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12518, 9341, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (12519, 9342, 'attr', 'fixed_version_id', NULL, '57');
INSERT INTO public.journal_details VALUES (12520, 9343, 'attr', 'due_date', '2020-11-09', '2020-11-10');
INSERT INTO public.journal_details VALUES (12521, 9343, 'attr', 'start_date', '2020-11-09', '2020-11-10');
INSERT INTO public.journal_details VALUES (12522, 9344, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12523, 9344, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12524, 9345, 'attr', 'fixed_version_id', NULL, '58');
INSERT INTO public.journal_details VALUES (12525, 9346, 'attr', 'due_date', '2020-11-10', '2020-11-07');
INSERT INTO public.journal_details VALUES (12526, 9347, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12527, 9347, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12528, 9348, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12529, 9348, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12530, 9349, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (12531, 9350, 'attr', 'due_date', NULL, '2020-11-11');
INSERT INTO public.journal_details VALUES (12532, 9350, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (12533, 9350, 'attr', 'fixed_version_id', '33', '58');
INSERT INTO public.journal_details VALUES (12534, 9350, 'attr', 'start_date', NULL, '2020-11-11');
INSERT INTO public.journal_details VALUES (12535, 9351, 'attr', 'due_date', NULL, '2020-11-11');
INSERT INTO public.journal_details VALUES (12536, 9351, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (12537, 9351, 'attr', 'fixed_version_id', '33', '58');
INSERT INTO public.journal_details VALUES (12538, 9351, 'attr', 'start_date', NULL, '2020-11-11');
INSERT INTO public.journal_details VALUES (12539, 9352, 'attr', 'due_date', NULL, '2020-11-11');
INSERT INTO public.journal_details VALUES (12540, 9352, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (12541, 9352, 'attr', 'fixed_version_id', '33', '58');
INSERT INTO public.journal_details VALUES (12542, 9352, 'attr', 'start_date', NULL, '2020-11-11');
INSERT INTO public.journal_details VALUES (12543, 9353, 'attr', 'due_date', '2020-11-11', '2020-11-12');
INSERT INTO public.journal_details VALUES (12544, 9353, 'attr', 'start_date', '2020-11-11', '2020-11-12');
INSERT INTO public.journal_details VALUES (12545, 9354, 'attr', 'assigned_to_id', '8', NULL);
INSERT INTO public.journal_details VALUES (12547, 9356, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12548, 9356, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12549, 9357, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12550, 9357, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12551, 9358, 'attr', 'due_date', '2020-11-09', '2020-11-13');
INSERT INTO public.journal_details VALUES (12552, 9358, 'attr', 'start_date', '2020-11-09', '2020-11-13');
INSERT INTO public.journal_details VALUES (12553, 9359, 'attr', 'due_date', '2020-11-09', '2020-11-13');
INSERT INTO public.journal_details VALUES (12554, 9359, 'attr', 'start_date', '2020-11-09', '2020-11-13');
INSERT INTO public.journal_details VALUES (12555, 9360, 'attr', 'due_date', '2020-11-10', '2020-11-11');
INSERT INTO public.journal_details VALUES (12556, 9360, 'attr', 'start_date', '2020-11-10', '2020-11-11');
INSERT INTO public.journal_details VALUES (12557, 9361, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12558, 9361, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12559, 9362, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12560, 9362, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12561, 9363, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (12562, 9364, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12563, 9364, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12564, 9365, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12565, 9365, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12566, 9366, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12567, 9366, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12568, 9367, 'attr', 'fixed_version_id', '58', '33');
INSERT INTO public.journal_details VALUES (12571, 9369, 'attr', 'subject', 'Phân loại tài liệu năm 2000 - Hương ', 'Phân loại tài liệu năm 2000 - Hương hỗ trợ ');
INSERT INTO public.journal_details VALUES (12572, 9370, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (12573, 9371, 'attr', 'due_date', '2020-11-10', '2020-11-12');
INSERT INTO public.journal_details VALUES (12574, 9371, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (12575, 9372, 'attr', 'subject', 'Phân loại tài liệu năm 2008, 2009, 2010, 2011', 'Phân loại tài liệu năm 1992, 1993, 1994, 1995, 1996, 1997, 2008, 2009, 2010, 2011');
INSERT INTO public.journal_details VALUES (12576, 9373, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (12577, 9374, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (12578, 9374, 'attr', 'fixed_version_id', NULL, '58');
INSERT INTO public.journal_details VALUES (12579, 9375, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (12580, 9375, 'attr', 'fixed_version_id', NULL, '58');
INSERT INTO public.journal_details VALUES (12581, 9376, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (12582, 9377, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (12583, 9377, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (12584, 9378, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12585, 9378, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12586, 9379, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12587, 9379, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12588, 9380, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12589, 9380, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12590, 9381, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12591, 9382, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12592, 9383, 'attr', 'due_date', '2020-11-11', '2020-11-12');
INSERT INTO public.journal_details VALUES (12593, 9383, 'attr', 'fixed_version_id', '33', '58');
INSERT INTO public.journal_details VALUES (12594, 9383, 'attr', 'start_date', '2020-11-11', '2020-11-12');
INSERT INTO public.journal_details VALUES (12595, 9384, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12596, 9384, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12597, 9385, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (12598, 9385, 'attr', 'due_date', NULL, '2020-11-13');
INSERT INTO public.journal_details VALUES (12599, 9385, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (12600, 9385, 'attr', 'start_date', '2020-11-11', '2020-11-13');
INSERT INTO public.journal_details VALUES (12601, 9386, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12602, 9386, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12603, 9387, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12604, 9387, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12605, 9388, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12606, 9388, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12607, 9389, 'attr', 'fixed_version_id', '33', '58');
INSERT INTO public.journal_details VALUES (12608, 9390, 'attr', 'subject', 'Phân loại tài liệu phòng nội vụ năm 2010 ', 'Phân loại tài liệu phòng nội vụ năm 2010 - Phương');
INSERT INTO public.journal_details VALUES (12609, 9391, 'attr', 'due_date', '2020-11-12', '2020-11-13');
INSERT INTO public.journal_details VALUES (12610, 9391, 'attr', 'done_ratio', '70', '90');
INSERT INTO public.journal_details VALUES (12611, 9392, 'attr', 'done_ratio', '0', '30');
INSERT INTO public.journal_details VALUES (12612, 9393, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12613, 9394, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12614, 9395, 'attr', 'due_date', '2020-11-12', '2020-11-14');
INSERT INTO public.journal_details VALUES (12615, 9395, 'attr', 'start_date', '2020-11-12', '2020-11-14');
INSERT INTO public.journal_details VALUES (12616, 9396, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (12617, 9396, 'attr', 'fixed_version_id', NULL, '58');
INSERT INTO public.journal_details VALUES (12618, 9397, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12619, 9398, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12620, 9399, 'attr', 'done_ratio', '20', '100');
INSERT INTO public.journal_details VALUES (12621, 9400, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12622, 9401, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (12623, 9402, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12624, 9403, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12625, 9404, 'attr', 'due_date', '2020-11-14', '2020-11-13');
INSERT INTO public.journal_details VALUES (12626, 9404, 'attr', 'start_date', '2020-11-14', '2020-11-13');
INSERT INTO public.journal_details VALUES (12627, 9405, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12628, 9406, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12629, 9407, 'attr', 'priority_id', '2', '3');
INSERT INTO public.journal_details VALUES (12630, 9407, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12631, 9408, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (12632, 9409, 'attr', 'done_ratio', '20', '100');
INSERT INTO public.journal_details VALUES (12633, 9410, 'attr', 'due_date', '2020-11-12', '2020-11-16');
INSERT INTO public.journal_details VALUES (12634, 9410, 'attr', 'start_date', '2020-11-12', '2020-11-16');
INSERT INTO public.journal_details VALUES (12635, 9411, 'attr', 'due_date', '2020-11-14', '2020-11-16');
INSERT INTO public.journal_details VALUES (12636, 9411, 'attr', 'start_date', '2020-11-14', '2020-11-16');
INSERT INTO public.journal_details VALUES (12637, 9412, 'attr', 'fixed_version_id', '58', '60');
INSERT INTO public.journal_details VALUES (12638, 9413, 'attr', 'fixed_version_id', '58', '60');
INSERT INTO public.journal_details VALUES (12639, 9414, 'attr', 'due_date', '2020-11-10', '2020-11-17');
INSERT INTO public.journal_details VALUES (12640, 9414, 'attr', 'fixed_version_id', '58', '60');
INSERT INTO public.journal_details VALUES (12641, 9414, 'attr', 'start_date', '2020-11-10', '2020-11-17');
INSERT INTO public.journal_details VALUES (12642, 9415, 'attr', 'due_date', '2020-11-11', '2020-11-17');
INSERT INTO public.journal_details VALUES (12643, 9415, 'attr', 'fixed_version_id', '58', '60');
INSERT INTO public.journal_details VALUES (12644, 9415, 'attr', 'start_date', '2020-11-11', '2020-11-17');
INSERT INTO public.journal_details VALUES (12645, 9416, 'attr', 'assigned_to_id', '8', '37');
INSERT INTO public.journal_details VALUES (12646, 9417, 'attr', 'done_ratio', '0', '20');
INSERT INTO public.journal_details VALUES (12647, 9418, 'attr', 'subject', 'sắp xếp hồ sơ và loại bỏ trùng thừa tài liệu văn phòng - 2002', 'sắp xếp hồ sơ và loại bỏ trùng thừa tài liệu văn phòng - 2002, 2003');
INSERT INTO public.journal_details VALUES (12648, 9419, 'attr', 'subject', 'sắp xếp và loại bỏ trùng thừa tài liệu văn phòng năm 1999', 'sắp xếp và loại bỏ trùng thừa tài liệu văn phòng - 1994,1995,1996,1997,1999, 2006, 2009, 2010, 2011');
INSERT INTO public.journal_details VALUES (12649, 9420, 'attr', 'subject', 'sắp xếp hồ sơ và lọc trùng thừa năm (2000 - 2005 - 2007) Hương', 'sắp xếp hồ sơ và lọc trùng thừa tài liệu văn phòng năm (2000 - 2005 - 2007) Hương');
INSERT INTO public.journal_details VALUES (12650, 9421, 'attr', 'fixed_version_id', '57', '61');
INSERT INTO public.journal_details VALUES (12651, 9422, 'attr', 'fixed_version_id', '57', '61');
INSERT INTO public.journal_details VALUES (12652, 9423, 'attr', 'fixed_version_id', NULL, '61');
INSERT INTO public.journal_details VALUES (12653, 9424, 'attr', 'subject', 'API tự động sinh mẫu report tổng hợp cho cấp trên', 'API tự động sinh mẫu report tổng hợp cho cấp trên khi cấp dưới tạo report');
INSERT INTO public.journal_details VALUES (12654, 9425, 'attr', 'description', '- Mốc thời gian nằm trong nền trắng 
- Khi chọn ít ngày kích thước cột quá to --> cần làm tương đương với kích thước cột của nhiều ngày', '- Mốc thời gian thống nhất 1 kiểu và nằm trong nền trắng (vd:1tr)
- Khi chọn ít ngày kích thước cột quá to --> cần làm tương đương với kích thước cột của nhiều ngày');
INSERT INTO public.journal_details VALUES (12655, 9426, 'attr', 'fixed_version_id', '57', '61');
INSERT INTO public.journal_details VALUES (12656, 9428, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12657, 9428, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12658, 9429, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (12659, 9430, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (12660, 9431, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12661, 9431, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12662, 9432, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12663, 9432, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12664, 9433, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12665, 9434, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12666, 9435, 'attr', 'done_ratio', '30', '100');
INSERT INTO public.journal_details VALUES (12667, 9436, 'attr', 'assigned_to_id', '33', '29');
INSERT INTO public.journal_details VALUES (12668, 9437, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12669, 9438, 'attr', 'due_date', '2020-11-12', '2020-11-16');
INSERT INTO public.journal_details VALUES (12670, 9438, 'attr', 'fixed_version_id', '58', '60');
INSERT INTO public.journal_details VALUES (12671, 9438, 'attr', 'start_date', '2020-11-12', '2020-11-16');
INSERT INTO public.journal_details VALUES (12673, 9440, 'attr', 'due_date', '2020-11-13', '2020-11-16');
INSERT INTO public.journal_details VALUES (12674, 9440, 'attr', 'fixed_version_id', '58', '60');
INSERT INTO public.journal_details VALUES (12675, 9440, 'attr', 'start_date', '2020-11-13', '2020-11-16');
INSERT INTO public.journal_details VALUES (12676, 9441, 'attr', 'due_date', '2020-11-13', '2020-11-16');
INSERT INTO public.journal_details VALUES (12677, 9441, 'attr', 'start_date', '2020-11-13', '2020-11-16');
INSERT INTO public.journal_details VALUES (12681, 9443, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12682, 9443, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12683, 9444, 'attr', 'due_date', '2020-11-14', '2020-11-16');
INSERT INTO public.journal_details VALUES (12684, 9444, 'attr', 'start_date', '2020-11-14', '2020-11-16');
INSERT INTO public.journal_details VALUES (12686, 9446, 'attr', 'fixed_version_id', '58', '60');
INSERT INTO public.journal_details VALUES (12687, 9447, 'attr', 'fixed_version_id', '58', '60');
INSERT INTO public.journal_details VALUES (12688, 9448, 'attr', 'due_date', '2020-11-14', '2020-11-15');
INSERT INTO public.journal_details VALUES (12689, 9449, 'attr', 'due_date', '2020-11-14', '2020-11-16');
INSERT INTO public.journal_details VALUES (12690, 9450, 'attr', 'due_date', '2020-11-15', '2020-11-16');
INSERT INTO public.journal_details VALUES (12691, 9451, 'attr', 'due_date', '2020-11-14', '2020-11-16');
INSERT INTO public.journal_details VALUES (12692, 9452, 'attr', 'due_date', '2020-11-14', '2020-11-16');
INSERT INTO public.journal_details VALUES (12693, 9453, 'attr', 'due_date', '2020-11-14', '2020-11-16');
INSERT INTO public.journal_details VALUES (12697, 9455, 'attr', 'due_date', '2020-11-12', '2020-11-16');
INSERT INTO public.journal_details VALUES (12698, 9455, 'attr', 'fixed_version_id', '58', '60');
INSERT INTO public.journal_details VALUES (12699, 9455, 'attr', 'start_date', '2020-11-12', '2020-11-16');
INSERT INTO public.journal_details VALUES (12703, 9457, 'attr', 'due_date', '2020-11-12', '2020-11-16');
INSERT INTO public.journal_details VALUES (12704, 9457, 'attr', 'start_date', '2020-11-12', '2020-11-16');
INSERT INTO public.journal_details VALUES (12705, 9458, 'attr', 'fixed_version_id', '58', '60');
INSERT INTO public.journal_details VALUES (12706, 9459, 'attr', 'due_date', '2020-11-14', '2020-11-16');
INSERT INTO public.journal_details VALUES (12707, 9459, 'attr', 'fixed_version_id', '58', '60');
INSERT INTO public.journal_details VALUES (12708, 9459, 'attr', 'start_date', '2020-11-14', '2020-11-16');
INSERT INTO public.journal_details VALUES (12709, 9460, 'attr', 'due_date', '2020-11-14', '2020-11-18');
INSERT INTO public.journal_details VALUES (12710, 9460, 'attr', 'fixed_version_id', '58', '60');
INSERT INTO public.journal_details VALUES (12711, 9460, 'attr', 'start_date', '2020-11-14', '2020-11-18');
INSERT INTO public.journal_details VALUES (12712, 9461, 'attr', 'due_date', '2020-11-14', '2020-11-20');
INSERT INTO public.journal_details VALUES (12713, 9461, 'attr', 'fixed_version_id', '58', '60');
INSERT INTO public.journal_details VALUES (12714, 9461, 'attr', 'start_date', '2020-11-14', '2020-11-20');
INSERT INTO public.journal_details VALUES (12715, 9462, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12716, 9463, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12717, 9464, 'attr', 'subject', 'Tạo đơn hàng - chỉnh sửa giao diện', 'Mobile - Tạo đơn hàng - chỉnh sửa giao diện');
INSERT INTO public.journal_details VALUES (12719, 9466, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12720, 9467, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12721, 9468, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12722, 9469, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12723, 9470, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12724, 9471, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12725, 9472, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12726, 9473, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12727, 9474, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12728, 9475, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12729, 9476, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12730, 9477, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12731, 9478, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12732, 9479, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12733, 9480, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12734, 9481, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12735, 9482, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12736, 9483, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12737, 9484, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12738, 9485, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12739, 9486, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12740, 9487, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12741, 9488, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12742, 9489, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12743, 9490, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12744, 9491, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12745, 9492, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (12746, 9493, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12747, 9494, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12748, 9495, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12749, 9496, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12750, 9497, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12751, 9498, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12752, 9499, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12753, 9500, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12754, 9501, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12755, 9502, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12756, 9503, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (12757, 9504, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12758, 9505, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12759, 9506, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12760, 9507, 'attr', 'tracker_id', '5', '2');
INSERT INTO public.journal_details VALUES (12761, 9508, 'attr', 'tracker_id', '5', '2');
INSERT INTO public.journal_details VALUES (12762, 9509, 'attr', 'tracker_id', '5', '2');
INSERT INTO public.journal_details VALUES (12763, 9510, 'attr', 'tracker_id', '5', '2');
INSERT INTO public.journal_details VALUES (12764, 9511, 'attr', 'tracker_id', '5', '2');
INSERT INTO public.journal_details VALUES (12765, 9512, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12766, 9513, 'attr', 'description', 'DỰ ÁN: **QUẢN LÝ BÁN HÀNG**

NHÂN SỰ: **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, TIẾN ĐẶNG, DUNG(Mobile)**

TỔNG ĐIỂM: **324 (tăng so với tháng trước 133 điểm)**

> **Khách hàng, Nhà cung cấp, Khuyến mãi, Xuất hàng nhiều đơn, Giảm giá, Công nợ, Báo cáo, Thiết lập mẫu in**

ĐÃ HOÀN THÀNH: **207**

CÒN LẠI: **117**

TIẾN ĐỘ HIỆN TẠI: **51%**

BẢNG KẾ HOẠCH & TIẾN ĐỘ CHI TIẾT: [Click để xem](https://docs.google.com/spreadsheets/d/163Bdm2TFshtJcvoAPlUFv9-9Lf2UtNocnCgmB4cP2Ts/edit#gid=1843496086)

* * *', 'DỰ ÁN: **QUẢN LÝ BÁN HÀNG**

NHÂN SỰ: **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, TIẾN ĐẶNG, DUNG(Mobile)**

TỔNG ĐIỂM: **324 (tăng so với tháng trước 133 điểm)**

> **Khách hàng, Nhà cung cấp, Khuyến mãi, Xuất hàng nhiều đơn, Giảm giá, Công nợ, Báo cáo, Thiết lập mẫu in**

ĐÃ HOÀN THÀNH: **207**

CÒN LẠI: **117**

TIẾN ĐỘ HIỆN TẠI: **64%**

BẢNG KẾ HOẠCH & TIẾN ĐỘ CHI TIẾT: [Click để xem](https://docs.google.com/spreadsheets/d/163Bdm2TFshtJcvoAPlUFv9-9Lf2UtNocnCgmB4cP2Ts/edit#gid=1843496086)

* * *');
INSERT INTO public.journal_details VALUES (12767, 9514, 'attr', 'description', '# Tiến độ tháng 10

DỰ ÁN: **QUẢN LÝ BÁN HÀNG**

NHÂN SỰ: **NGHĨA(Leader), TOÀN, QUÝ, VIỆT, TIẾN LÊ, TIẾN ĐẶNG, DUNG(Mobile)**

TỔNG ĐIỂM: **191**

ĐÃ HOÀN THÀNH: **152**

CÒN LẠI: **39**

TIẾN ĐỘ: **80%**

# Kế hoạch tháng 11

Thêm 2 sprint nữa để hoàn thành phần mềm quản lý bán hàng

Và bắt đầu PM quản lý chung cư

NHÂN SỰ: **NGHĨA(Leader), QUÝ, VIỆT, DUNG(Mobile)**

* * *

https://docs.google.com/spreadsheets/d/1P1AcV9YFvjjUD8j0m3hqrhmX_PuoutuVYsUiTs4EgaY/edit#gid=1843496086', 'DỰ ÁN: **QUẢN LÝ BÁN HÀNG**

NHÂN SỰ: **NGHĨA(Leader), TOÀN, QUÝ, VIỆT, TIẾN LÊ, TIẾN ĐẶNG, DUNG(Mobile)**

TỔNG ĐIỂM: **191**

ĐÃ HOÀN THÀNH: **166**

CÒN LẠI: **25**

TIẾN ĐỘ: **87%**');
INSERT INTO public.journal_details VALUES (12768, 9515, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (12769, 9516, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (12770, 9517, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (12771, 9517, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (12772, 9518, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (12773, 9518, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (12774, 9519, 'attr', 'assigned_to_id', '12', '13');
INSERT INTO public.journal_details VALUES (12775, 9520, 'attr', 'project_id', '55', '42');
INSERT INTO public.journal_details VALUES (12776, 9520, 'attr', 'fixed_version_id', '59', NULL);
INSERT INTO public.journal_details VALUES (12777, 9521, 'attr', 'project_id', '55', '42');
INSERT INTO public.journal_details VALUES (12778, 9521, 'attr', 'fixed_version_id', '59', NULL);
INSERT INTO public.journal_details VALUES (12779, 9522, 'attr', 'assigned_to_id', '19', '38');
INSERT INTO public.journal_details VALUES (12780, 9522, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12781, 9523, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12782, 9523, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12783, 9524, 'attr', 'fixed_version_id', NULL, '57');
INSERT INTO public.journal_details VALUES (12784, 9525, 'attr', 'fixed_version_id', '57', '55');
INSERT INTO public.journal_details VALUES (12785, 9526, 'attr', 'fixed_version_id', NULL, '55');
INSERT INTO public.journal_details VALUES (12786, 9527, 'attr', 'subject', 'Giao diện chi tiết báo cáo', 'Giao diện chi tiết báo cáo ( Cây phân cấp hành chính)');
INSERT INTO public.journal_details VALUES (12787, 9529, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12788, 9530, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (12789, 9531, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12790, 9532, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12791, 9533, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12792, 9534, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12793, 9535, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12794, 9536, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (12795, 9537, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12796, 9538, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12797, 9539, 'attr', 'tracker_id', '5', '2');
INSERT INTO public.journal_details VALUES (12798, 9540, 'attr', 'fixed_version_id', NULL, '57');
INSERT INTO public.journal_details VALUES (12799, 9541, 'attr', 'fixed_version_id', '57', '61');
INSERT INTO public.journal_details VALUES (12800, 9542, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12801, 9542, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12802, 9543, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12803, 9544, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12804, 9545, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12805, 9546, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12806, 9547, 'relation', 'copied_to', NULL, '2832');
INSERT INTO public.journal_details VALUES (12807, 9548, 'relation', 'copied_from', NULL, '1634');
INSERT INTO public.journal_details VALUES (12808, 9549, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (12809, 9550, 'attr', 'due_date', '2020-07-21', '2020-11-21');
INSERT INTO public.journal_details VALUES (12810, 9550, 'attr', 'start_date', '2020-07-17', '2020-11-17');
INSERT INTO public.journal_details VALUES (12811, 9551, 'attr', 'done_ratio', '20', '40');
INSERT INTO public.journal_details VALUES (12812, 9552, 'attr', 'done_ratio', '20', '70');
INSERT INTO public.journal_details VALUES (12813, 9553, 'attr', 'due_date', '2020-11-16', '2020-11-18');
INSERT INTO public.journal_details VALUES (12814, 9554, 'attr', 'subject', 'sắp xếp và loại bỏ trùng thừa tài liệu văn phòng - 1994,1995,1996,1997,1999, 2006, 2009, 2010, 2011', 'sắp xếp và loại bỏ trùng thừa tài liệu văn phòng - 1994,1995,1996,1997,1999, 2006, 2008, 2010, 2011');
INSERT INTO public.journal_details VALUES (12815, 9554, 'attr', 'done_ratio', '20', '100');
INSERT INTO public.journal_details VALUES (12816, 9555, 'attr', 'due_date', '2020-11-16', '2020-11-17');
INSERT INTO public.journal_details VALUES (12817, 9556, 'attr', 'subject', 'sắp xếp hồ sơ và lọc trùng thừa tài liệu văn phòng năm (2000 - 2005 - 2007) Hương', 'sắp xếp hồ sơ và lọc trùng thừa tài liệu văn phòng năm 2005');
INSERT INTO public.journal_details VALUES (12818, 9556, 'attr', 'assigned_to_id', NULL, '45');
INSERT INTO public.journal_details VALUES (12819, 9556, 'attr', 'done_ratio', '20', '100');
INSERT INTO public.journal_details VALUES (12820, 9557, 'attr', 'due_date', '2020-11-16', '2020-11-19');
INSERT INTO public.journal_details VALUES (12821, 9558, 'attr', 'subject', 'sắp xếp hồ sơ và lọc trùng thừa tài liệu văn phòng năm 2005', 'sắp xếp hồ sơ và lọc trùng thừa tài liệu văn phòng năm 2005 - Quyên hỗ trợ');
INSERT INTO public.journal_details VALUES (12822, 9559, 'attr', 'subject', 'sắp xếp hồ sơ và lọc trùng thừa tài liệu văn phòng năm 2005 - Quyên hỗ trợ', 'sắp xếp hồ sơ và lọc trùng thừa tài liệu văn phòng năm 2005 ');
INSERT INTO public.journal_details VALUES (12823, 9560, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12824, 9560, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12825, 9561, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12826, 9562, 'attr', 'done_ratio', '0', '60');
INSERT INTO public.journal_details VALUES (12827, 9563, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12828, 9564, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12829, 9565, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12830, 9566, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12831, 9567, 'attr', 'done_ratio', '60', '100');
INSERT INTO public.journal_details VALUES (12834, 9570, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (12835, 9571, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (12836, 9572, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (12837, 9573, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (12838, 9574, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (12839, 9575, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (12840, 9576, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (12841, 9577, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (12842, 9578, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (12843, 9579, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (12845, 9581, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (12848, 9584, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12849, 9585, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12852, 9588, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12853, 9589, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12854, 9590, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12855, 9591, 'attr', 'due_date', '2020-11-16', '2020-11-19');
INSERT INTO public.journal_details VALUES (12856, 9591, 'attr', 'start_date', '2020-11-16', '2020-11-19');
INSERT INTO public.journal_details VALUES (12859, 9593, 'attr', 'due_date', '2020-11-16', '2020-11-19');
INSERT INTO public.journal_details VALUES (12860, 9593, 'attr', 'start_date', '2020-11-16', '2020-11-19');
INSERT INTO public.journal_details VALUES (12861, 9594, 'attr', 'due_date', '2020-11-16', '2020-11-19');
INSERT INTO public.journal_details VALUES (12862, 9594, 'attr', 'start_date', '2020-11-16', '2020-11-19');
INSERT INTO public.journal_details VALUES (12863, 9595, 'attr', 'due_date', '2020-11-16', '2020-11-19');
INSERT INTO public.journal_details VALUES (12864, 9595, 'attr', 'start_date', '2020-11-16', '2020-11-19');
INSERT INTO public.journal_details VALUES (12865, 9596, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12866, 9597, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12867, 9598, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12868, 9599, 'attr', 'fixed_version_id', NULL, '33');
INSERT INTO public.journal_details VALUES (12869, 9600, 'attr', 'fixed_version_id', NULL, '33');
INSERT INTO public.journal_details VALUES (12870, 9601, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12871, 9602, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12872, 9603, 'attr', 'subject', 'chi tiết đơn hàng - thể hiện đơn vị tính của tổng số lượng', 'chi tiết đơn hàng - thể hiện chi tiết tổng số lượng trong đơn hàng');
INSERT INTO public.journal_details VALUES (12873, 9603, 'attr', 'description', 'ví dụ: Tổng số lượng 10/15 
nghĩa là: 10 thùng 15 chai', 'ví dụ: 
tổng số lượng 10/30 hoặc:
số lượng mua: 10 thùng
số lượng khuyến mãi:30 chai');
INSERT INTO public.journal_details VALUES (12875, 9605, 'attr', 'subject', 'Bán hàng - Chưa xem được báo cáo toàn thời gian', 'Doanh thu theo thời gian - Chưa xem được báo cáo toàn thời gian');
INSERT INTO public.journal_details VALUES (12876, 9606, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12877, 9607, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12886, 9613, 'attr', 'fixed_version_id', NULL, '60');
INSERT INTO public.journal_details VALUES (12887, 9614, 'attr', 'done_ratio', '30', '100');
INSERT INTO public.journal_details VALUES (12888, 9615, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (12889, 9616, 'attr', 'done_ratio', '20', '40');
INSERT INTO public.journal_details VALUES (12890, 9617, 'attr', 'subject', 'sắp xếp hồ sơ và loại bỏ trùng thừa tài liệu văn phòng - 2002, 2003', 'sắp xếp hồ sơ và loại bỏ trùng thừa tài liệu văn phòng - 2002, 2003 - Phương hỗ trợ');
INSERT INTO public.journal_details VALUES (12891, 9617, 'attr', 'done_ratio', '40', '50');
INSERT INTO public.journal_details VALUES (12892, 9618, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (12894, 9620, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12895, 9621, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12896, 9622, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12897, 9623, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12898, 9624, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12899, 9625, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12900, 9626, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12901, 9627, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (12902, 9628, 'attr', 'subject', 'In phiếu nhập - in ra 2 phiếu nhập', 'In phiếu nhập dư 1 trang trắng');
INSERT INTO public.journal_details VALUES (12903, 9629, 'attr', 'due_date', '2020-11-16', '2020-11-23');
INSERT INTO public.journal_details VALUES (12904, 9629, 'attr', 'fixed_version_id', '60', '62');
INSERT INTO public.journal_details VALUES (12905, 9629, 'attr', 'start_date', '2020-11-16', '2020-11-23');
INSERT INTO public.journal_details VALUES (12906, 9630, 'attr', 'due_date', '2020-11-16', '2020-11-23');
INSERT INTO public.journal_details VALUES (12907, 9630, 'attr', 'fixed_version_id', '60', '62');
INSERT INTO public.journal_details VALUES (12908, 9630, 'attr', 'start_date', '2020-11-16', '2020-11-23');
INSERT INTO public.journal_details VALUES (12909, 9631, 'attr', 'due_date', '2020-11-16', '2020-11-20');
INSERT INTO public.journal_details VALUES (12910, 9631, 'attr', 'assigned_to_id', '41', '39');
INSERT INTO public.journal_details VALUES (12911, 9631, 'attr', 'start_date', '2020-11-16', '2020-11-20');
INSERT INTO public.journal_details VALUES (12912, 9632, 'attr', 'due_date', '2020-11-17', '2020-11-23');
INSERT INTO public.journal_details VALUES (12913, 9632, 'attr', 'fixed_version_id', '60', '62');
INSERT INTO public.journal_details VALUES (12914, 9632, 'attr', 'start_date', '2020-11-17', '2020-11-23');
INSERT INTO public.journal_details VALUES (12915, 9633, 'attr', 'due_date', '2020-11-17', '2020-11-23');
INSERT INTO public.journal_details VALUES (12916, 9633, 'attr', 'fixed_version_id', '60', '62');
INSERT INTO public.journal_details VALUES (12917, 9633, 'attr', 'start_date', '2020-11-17', '2020-11-23');
INSERT INTO public.journal_details VALUES (12918, 9634, 'attr', 'due_date', '2020-11-18', '2020-11-20');
INSERT INTO public.journal_details VALUES (12919, 9634, 'attr', 'assigned_to_id', '41', '5');
INSERT INTO public.journal_details VALUES (12920, 9634, 'attr', 'start_date', '2020-11-18', '2020-11-20');
INSERT INTO public.journal_details VALUES (12921, 9635, 'attr', 'tracker_id', '2', '1');
INSERT INTO public.journal_details VALUES (12922, 9635, 'attr', 'subject', 'Xuất hàng - xuất hàng không thành công - hiển thị đơn vị tính cho số lượng', 'Xuất hàng - xuất hàng không thành công');
INSERT INTO public.journal_details VALUES (12923, 9635, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12924, 9636, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12925, 9637, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (12926, 9638, 'attr', 'due_date', '2020-11-19', '2020-11-20');
INSERT INTO public.journal_details VALUES (12927, 9638, 'attr', 'assigned_to_id', '41', '39');
INSERT INTO public.journal_details VALUES (12928, 9638, 'attr', 'start_date', '2020-11-19', '2020-11-20');
INSERT INTO public.journal_details VALUES (12929, 9639, 'attr', 'due_date', '2020-11-19', '2020-11-20');
INSERT INTO public.journal_details VALUES (12930, 9639, 'attr', 'assigned_to_id', '41', '5');
INSERT INTO public.journal_details VALUES (12931, 9639, 'attr', 'start_date', '2020-11-19', '2020-11-20');
INSERT INTO public.journal_details VALUES (12932, 9640, 'attr', 'due_date', '2020-11-19', '2020-11-20');
INSERT INTO public.journal_details VALUES (12933, 9640, 'attr', 'assigned_to_id', '41', '5');
INSERT INTO public.journal_details VALUES (12934, 9640, 'attr', 'start_date', '2020-11-19', '2020-11-20');
INSERT INTO public.journal_details VALUES (12935, 9641, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12936, 9642, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12937, 9642, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12938, 9643, 'attr', 'assigned_to_id', '41', '8');
INSERT INTO public.journal_details VALUES (12942, 9645, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12943, 9645, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12944, 9646, 'attr', 'due_date', '2020-11-19', '2020-11-23');
INSERT INTO public.journal_details VALUES (12945, 9646, 'attr', 'fixed_version_id', '60', '62');
INSERT INTO public.journal_details VALUES (12946, 9646, 'attr', 'start_date', '2020-11-19', '2020-11-23');
INSERT INTO public.journal_details VALUES (12947, 9647, 'attr', 'due_date', '2020-11-19', '2020-11-23');
INSERT INTO public.journal_details VALUES (12948, 9647, 'attr', 'fixed_version_id', '60', '62');
INSERT INTO public.journal_details VALUES (12949, 9647, 'attr', 'start_date', '2020-11-19', '2020-11-23');
INSERT INTO public.journal_details VALUES (12950, 9648, 'attr', 'due_date', '2020-11-19', '2020-11-23');
INSERT INTO public.journal_details VALUES (12951, 9648, 'attr', 'fixed_version_id', '60', '62');
INSERT INTO public.journal_details VALUES (12952, 9648, 'attr', 'start_date', '2020-11-19', '2020-11-23');
INSERT INTO public.journal_details VALUES (12953, 9649, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12954, 9650, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12957, 9652, 'attr', 'due_date', '2020-11-19', '2020-11-20');
INSERT INTO public.journal_details VALUES (12958, 9652, 'attr', 'start_date', '2020-11-19', '2020-11-20');
INSERT INTO public.journal_details VALUES (12959, 9653, 'attr', 'due_date', '2020-11-19', '2020-11-20');
INSERT INTO public.journal_details VALUES (12960, 9653, 'attr', 'start_date', '2020-11-19', '2020-11-20');
INSERT INTO public.journal_details VALUES (12961, 9654, 'attr', 'due_date', '2020-11-19', '2020-11-20');
INSERT INTO public.journal_details VALUES (12962, 9654, 'attr', 'start_date', '2020-11-19', '2020-11-20');
INSERT INTO public.journal_details VALUES (12963, 9655, 'attr', 'due_date', '2020-11-19', '2020-11-20');
INSERT INTO public.journal_details VALUES (12964, 9655, 'attr', 'start_date', '2020-11-19', '2020-11-20');
INSERT INTO public.journal_details VALUES (12967, 9657, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12968, 9657, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12969, 9658, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (12970, 9659, 'attr', 'due_date', '2020-11-16', '2020-11-23');
INSERT INTO public.journal_details VALUES (12971, 9659, 'attr', 'start_date', '2020-11-16', '2020-11-23');
INSERT INTO public.journal_details VALUES (12972, 9660, 'attr', 'fixed_version_id', '60', '62');
INSERT INTO public.journal_details VALUES (12973, 9661, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (12974, 9662, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (12975, 9663, 'attr', 'due_date', NULL, '2020-11-20');
INSERT INTO public.journal_details VALUES (12976, 9663, 'attr', 'assigned_to_id', NULL, '40');
INSERT INTO public.journal_details VALUES (12977, 9663, 'attr', 'start_date', '2020-11-18', '2020-11-20');
INSERT INTO public.journal_details VALUES (12978, 9664, 'attr', 'due_date', NULL, '2020-11-20');
INSERT INTO public.journal_details VALUES (12979, 9664, 'attr', 'assigned_to_id', NULL, '40');
INSERT INTO public.journal_details VALUES (12980, 9664, 'attr', 'start_date', '2020-11-18', '2020-11-20');
INSERT INTO public.journal_details VALUES (12981, 9665, 'attr', 'due_date', NULL, '2020-11-20');
INSERT INTO public.journal_details VALUES (12982, 9665, 'attr', 'assigned_to_id', NULL, '40');
INSERT INTO public.journal_details VALUES (12983, 9665, 'attr', 'start_date', '2020-11-18', '2020-11-20');
INSERT INTO public.journal_details VALUES (12984, 9666, 'attr', 'fixed_version_id', '33', '60');
INSERT INTO public.journal_details VALUES (12985, 9667, 'attr', 'fixed_version_id', '33', '60');
INSERT INTO public.journal_details VALUES (12986, 9668, 'attr', 'fixed_version_id', '33', '60');
INSERT INTO public.journal_details VALUES (12987, 9669, 'attr', 'fixed_version_id', '33', '60');
INSERT INTO public.journal_details VALUES (12988, 9670, 'attr', 'assigned_to_id', '5', '37');
INSERT INTO public.journal_details VALUES (12989, 9671, 'attr', 'assigned_to_id', '5', '37');
INSERT INTO public.journal_details VALUES (12990, 9672, 'attr', 'done_ratio', '0', '80');
INSERT INTO public.journal_details VALUES (12991, 9673, 'attr', 'done_ratio', '80', '40');
INSERT INTO public.journal_details VALUES (12992, 9674, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12993, 9674, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12994, 9675, 'attr', 'tracker_id', '5', '6');
INSERT INTO public.journal_details VALUES (12995, 9676, 'attr', 'tracker_id', '6', '5');
INSERT INTO public.journal_details VALUES (12996, 9677, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (12997, 9677, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (12998, 9678, 'attr', 'done_ratio', '0', '80');
INSERT INTO public.journal_details VALUES (12999, 9679, 'attr', 'done_ratio', '0', '80');
INSERT INTO public.journal_details VALUES (13000, 9680, 'attr', 'subject', 'Mobile - Báo cáo khuyến mãi - Phân tích hiệu quả khuyến mãi.', 'Mobile - Báo cáo khuyến mãi - Phân tích hiệu quả khuyến mãi PDF.');
INSERT INTO public.journal_details VALUES (13001, 9681, 'attr', 'subject', 'Mobile - Báo cáo khách hàng - Sản lượng bán hàng theo khách hàng.', 'Mobile - Báo cáo khách hàng - Sản lượng bán hàng theo khách hàng file PDF.');
INSERT INTO public.journal_details VALUES (13002, 9682, 'attr', 'assigned_to_id', '5', '41');
INSERT INTO public.journal_details VALUES (13003, 9683, 'attr', 'assigned_to_id', '5', '41');
INSERT INTO public.journal_details VALUES (13004, 9684, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13005, 9684, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13008, 9686, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13009, 9687, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13010, 9688, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13011, 9689, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13012, 9690, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13013, 9690, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13014, 9691, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13015, 9692, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13016, 9693, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (13017, 9694, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13018, 9695, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13019, 9696, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13020, 9697, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13021, 9698, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13022, 9699, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13023, 9700, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13024, 9701, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13025, 9702, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13026, 9703, 'attr', 'subject', 'Quản lý thông báo', 'Danh sách thông báo');
INSERT INTO public.journal_details VALUES (13027, 9704, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13028, 9705, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (13029, 9706, 'attr', 'due_date', NULL, '2020-10-20');
INSERT INTO public.journal_details VALUES (13030, 9707, 'attr', 'due_date', '2020-10-20', '2020-10-24');
INSERT INTO public.journal_details VALUES (13031, 9707, 'attr', 'start_date', '2020-10-19', '2020-10-24');
INSERT INTO public.journal_details VALUES (13032, 9708, 'attr', 'due_date', '2020-10-20', '2020-10-23');
INSERT INTO public.journal_details VALUES (13033, 9708, 'attr', 'start_date', '2020-10-19', '2020-10-23');
INSERT INTO public.journal_details VALUES (13034, 9709, 'attr', 'due_date', '2020-10-25', '2020-10-26');
INSERT INTO public.journal_details VALUES (13035, 9709, 'attr', 'start_date', '2020-10-25', '2020-10-26');
INSERT INTO public.journal_details VALUES (13036, 9710, 'attr', 'start_date', '2020-10-19', '2020-11-01');
INSERT INTO public.journal_details VALUES (13037, 9711, 'attr', 'subject', 'Chi tiết Cán bộ', 'Thông tin Cán bộ');
INSERT INTO public.journal_details VALUES (13038, 9712, 'attr', 'due_date', '2020-11-04', '2020-11-05');
INSERT INTO public.journal_details VALUES (13039, 9713, 'attr', 'done_ratio', '40', '0');
INSERT INTO public.journal_details VALUES (13040, 9714, 'attr', 'done_ratio', '80', '0');
INSERT INTO public.journal_details VALUES (13041, 9715, 'attr', 'done_ratio', '80', '0');
INSERT INTO public.journal_details VALUES (13042, 9716, 'attr', 'start_date', '2020-11-21', '2020-11-15');
INSERT INTO public.journal_details VALUES (13043, 9717, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13044, 9717, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13045, 9718, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (13046, 9719, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13047, 9720, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13048, 9721, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13049, 9722, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13050, 9723, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13051, 9724, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13052, 9725, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13053, 9725, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13054, 9726, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (13055, 9726, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13056, 9727, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13057, 9728, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13058, 9729, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13059, 9730, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13060, 9731, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13061, 9732, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13062, 9733, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (13063, 9733, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13064, 9734, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13065, 9735, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13066, 9736, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13067, 9737, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13068, 9738, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13069, 9739, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13072, 9742, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13073, 9743, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13076, 9746, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13077, 9747, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13078, 9748, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (13079, 9748, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13082, 9751, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13083, 9752, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13086, 9755, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (13087, 9755, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13093, 9761, 'attr', 'subject', 'Trình độ chuyên môn', 'Bồi dưỡng chuyên môn');
INSERT INTO public.journal_details VALUES (13094, 9761, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (13095, 9761, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13096, 9762, 'attr', 'due_date', NULL, '2020-11-21');
INSERT INTO public.journal_details VALUES (13100, 9764, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13101, 9765, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13102, 9766, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (13103, 9767, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (13104, 9768, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13105, 9769, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13106, 9770, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13107, 9771, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13108, 9772, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13109, 9773, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13110, 9774, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13111, 9775, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13112, 9776, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13113, 9777, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13114, 9778, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13115, 9779, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13116, 9780, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13117, 9781, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13118, 9782, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13119, 9783, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13120, 9784, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13121, 9785, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13122, 9786, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13123, 9787, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13124, 9788, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13125, 9789, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13126, 9790, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13127, 9791, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13128, 9792, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13129, 9793, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13130, 9794, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13131, 9795, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13132, 9796, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13133, 9797, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13134, 9798, 'attr', 'subject', 'Dashboard', 'DASHBOARD');
INSERT INTO public.journal_details VALUES (13135, 9799, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13136, 9799, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13137, 9800, 'attr', 'assigned_to_id', NULL, '16');
INSERT INTO public.journal_details VALUES (13138, 9801, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13139, 9802, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13140, 9803, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13141, 9804, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13142, 9805, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13143, 9806, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13144, 9807, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13145, 9808, 'attr', 'due_date', NULL, '2020-11-18');
INSERT INTO public.journal_details VALUES (13146, 9808, 'attr', 'start_date', '2020-11-21', '2020-11-16');
INSERT INTO public.journal_details VALUES (13147, 9809, 'attr', 'due_date', NULL, '2020-11-19');
INSERT INTO public.journal_details VALUES (13148, 9809, 'attr', 'start_date', '2020-11-21', '2020-11-19');
INSERT INTO public.journal_details VALUES (13149, 9810, 'attr', 'due_date', NULL, '2020-11-20');
INSERT INTO public.journal_details VALUES (13150, 9810, 'attr', 'start_date', '2020-11-21', '2020-11-20');
INSERT INTO public.journal_details VALUES (13151, 9811, 'attr', 'due_date', NULL, '2020-11-21');
INSERT INTO public.journal_details VALUES (13152, 9812, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13153, 9813, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13154, 9814, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13155, 9815, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13156, 9816, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13157, 9817, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13158, 9818, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13159, 9819, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13160, 9820, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13161, 9821, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13162, 9822, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13163, 9823, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13164, 9824, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13165, 9825, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13166, 9826, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13167, 9827, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13168, 9828, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13169, 9829, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13170, 9830, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13171, 9831, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13172, 9832, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13173, 9833, 'attr', 'done_ratio', '0', '70');
INSERT INTO public.journal_details VALUES (13174, 9834, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13175, 9835, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13176, 9836, 'attr', 'subject', 'Doanh thu theo đơn hàng - chưa hiển thị báo cáo toàn thời gian', 'Doanh thu theo đơn hàng - chưa xem được báo cáo toàn thời gian');
INSERT INTO public.journal_details VALUES (13177, 9837, 'attr', 'subject', 'Chi tiết đơn hàng - Thêm cột tổng tiền, chiết khấu không chuyển giá trị % sang VNĐ', 'Chi tiết đơn hàng - Thêm cột tổng tiền');
INSERT INTO public.journal_details VALUES (13178, 9838, 'attr', 'done_ratio', '0', '80');
INSERT INTO public.journal_details VALUES (13179, 9839, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13180, 9840, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13181, 9841, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13182, 9842, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13183, 9843, 'attr', 'due_date', '2020-11-23', '2020-11-21');
INSERT INTO public.journal_details VALUES (13184, 9843, 'attr', 'assigned_to_id', '41', '5');
INSERT INTO public.journal_details VALUES (13185, 9843, 'attr', 'fixed_version_id', '62', '60');
INSERT INTO public.journal_details VALUES (13186, 9843, 'attr', 'start_date', '2020-11-23', '2020-11-21');
INSERT INTO public.journal_details VALUES (13187, 9844, 'attr', 'due_date', NULL, '2020-11-25');
INSERT INTO public.journal_details VALUES (13188, 9844, 'attr', 'assigned_to_id', NULL, '40');
INSERT INTO public.journal_details VALUES (13189, 9844, 'attr', 'fixed_version_id', '33', '62');
INSERT INTO public.journal_details VALUES (13190, 9844, 'attr', 'start_date', '2020-11-18', '2020-11-23');
INSERT INTO public.journal_details VALUES (13191, 9845, 'attr', 'due_date', NULL, '2020-11-25');
INSERT INTO public.journal_details VALUES (13192, 9845, 'attr', 'assigned_to_id', NULL, '40');
INSERT INTO public.journal_details VALUES (13193, 9845, 'attr', 'fixed_version_id', '33', '62');
INSERT INTO public.journal_details VALUES (13194, 9845, 'attr', 'start_date', '2020-11-18', '2020-11-23');
INSERT INTO public.journal_details VALUES (13195, 9846, 'attr', 'due_date', NULL, '2020-11-25');
INSERT INTO public.journal_details VALUES (13196, 9846, 'attr', 'assigned_to_id', NULL, '40');
INSERT INTO public.journal_details VALUES (13197, 9846, 'attr', 'fixed_version_id', '33', '62');
INSERT INTO public.journal_details VALUES (13198, 9846, 'attr', 'start_date', '2020-11-18', '2020-11-23');
INSERT INTO public.journal_details VALUES (13199, 9847, 'attr', 'due_date', NULL, '2020-11-25');
INSERT INTO public.journal_details VALUES (13200, 9847, 'attr', 'assigned_to_id', NULL, '40');
INSERT INTO public.journal_details VALUES (13201, 9847, 'attr', 'fixed_version_id', '33', '62');
INSERT INTO public.journal_details VALUES (13202, 9847, 'attr', 'start_date', '2020-11-18', '2020-11-23');
INSERT INTO public.journal_details VALUES (13203, 9848, 'attr', 'due_date', NULL, '2020-11-25');
INSERT INTO public.journal_details VALUES (13204, 9848, 'attr', 'assigned_to_id', NULL, '40');
INSERT INTO public.journal_details VALUES (13205, 9848, 'attr', 'fixed_version_id', '33', '62');
INSERT INTO public.journal_details VALUES (13206, 9848, 'attr', 'start_date', '2020-11-18', '2020-11-23');
INSERT INTO public.journal_details VALUES (13207, 9849, 'attr', 'due_date', NULL, '2020-11-25');
INSERT INTO public.journal_details VALUES (13208, 9849, 'attr', 'assigned_to_id', NULL, '40');
INSERT INTO public.journal_details VALUES (13209, 9849, 'attr', 'fixed_version_id', '33', '62');
INSERT INTO public.journal_details VALUES (13210, 9849, 'attr', 'start_date', '2020-11-18', '2020-11-23');
INSERT INTO public.journal_details VALUES (13211, 9850, 'attr', 'due_date', NULL, '2020-11-25');
INSERT INTO public.journal_details VALUES (13212, 9850, 'attr', 'assigned_to_id', NULL, '40');
INSERT INTO public.journal_details VALUES (13213, 9850, 'attr', 'fixed_version_id', '33', '62');
INSERT INTO public.journal_details VALUES (13214, 9850, 'attr', 'start_date', '2020-11-18', '2020-11-23');
INSERT INTO public.journal_details VALUES (13215, 9851, 'attr', 'due_date', NULL, '2020-11-25');
INSERT INTO public.journal_details VALUES (13216, 9851, 'attr', 'assigned_to_id', NULL, '40');
INSERT INTO public.journal_details VALUES (13217, 9851, 'attr', 'fixed_version_id', '33', '62');
INSERT INTO public.journal_details VALUES (13218, 9851, 'attr', 'start_date', '2020-11-18', '2020-11-23');
INSERT INTO public.journal_details VALUES (13219, 9852, 'attr', 'due_date', NULL, '2020-11-25');
INSERT INTO public.journal_details VALUES (13220, 9852, 'attr', 'assigned_to_id', NULL, '40');
INSERT INTO public.journal_details VALUES (13221, 9852, 'attr', 'fixed_version_id', '33', '62');
INSERT INTO public.journal_details VALUES (13222, 9852, 'attr', 'start_date', '2020-11-18', '2020-11-23');
INSERT INTO public.journal_details VALUES (13227, 9854, 'attr', 'due_date', NULL, '2020-11-25');
INSERT INTO public.journal_details VALUES (13228, 9854, 'attr', 'assigned_to_id', NULL, '40');
INSERT INTO public.journal_details VALUES (13229, 9854, 'attr', 'fixed_version_id', '33', '62');
INSERT INTO public.journal_details VALUES (13230, 9854, 'attr', 'start_date', '2020-11-18', '2020-11-23');
INSERT INTO public.journal_details VALUES (13243, 9858, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13244, 9859, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13245, 9860, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13246, 9861, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13247, 9862, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13248, 9863, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13249, 9863, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13250, 9864, 'attr', 'due_date', NULL, '2020-11-21');
INSERT INTO public.journal_details VALUES (13251, 9864, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13252, 9865, 'attr', 'due_date', NULL, '2020-11-21');
INSERT INTO public.journal_details VALUES (13253, 9866, 'attr', 'start_date', '2020-11-15', '2020-11-16');
INSERT INTO public.journal_details VALUES (13254, 9867, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13255, 9868, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13256, 9868, 'attr', 'assigned_to_id', '37', '5');
INSERT INTO public.journal_details VALUES (13257, 9868, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13258, 9869, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13259, 9869, 'attr', 'assigned_to_id', '37', '5');
INSERT INTO public.journal_details VALUES (13260, 9869, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13261, 9870, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13262, 9871, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (13263, 9872, 'attr', 'done_ratio', '80', '90');
INSERT INTO public.journal_details VALUES (13264, 9873, 'attr', 'done_ratio', '70', '90');
INSERT INTO public.journal_details VALUES (13265, 9874, 'attr', 'due_date', '2020-11-25', '2020-11-23');
INSERT INTO public.journal_details VALUES (13266, 9874, 'attr', 'fixed_version_id', '62', '60');
INSERT INTO public.journal_details VALUES (13267, 9874, 'attr', 'done_ratio', '0', '80');
INSERT INTO public.journal_details VALUES (13268, 9875, 'attr', 'fixed_version_id', '60', '62');
INSERT INTO public.journal_details VALUES (13269, 9876, 'attr', 'due_date', '2020-11-20', '2020-11-23');
INSERT INTO public.journal_details VALUES (13270, 9876, 'attr', 'start_date', '2020-11-20', '2020-11-23');
INSERT INTO public.journal_details VALUES (13271, 9877, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (13272, 9878, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13273, 9879, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (13274, 9880, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13275, 9881, 'attr', 'fixed_version_id', '57', '63');
INSERT INTO public.journal_details VALUES (13276, 9882, 'attr', 'fixed_version_id', '61', '63');
INSERT INTO public.journal_details VALUES (13277, 9883, 'attr', 'fixed_version_id', '61', '63');
INSERT INTO public.journal_details VALUES (13278, 9884, 'attr', 'fixed_version_id', '61', '63');
INSERT INTO public.journal_details VALUES (13279, 9885, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13280, 9886, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13281, 9887, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (13282, 9888, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13285, 9890, 'attr', 'due_date', '2020-11-20', '2020-11-23');
INSERT INTO public.journal_details VALUES (13512, 10051, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13286, 9890, 'attr', 'start_date', '2020-11-20', '2020-11-23');
INSERT INTO public.journal_details VALUES (13287, 9891, 'attr', 'fixed_version_id', '60', '62');
INSERT INTO public.journal_details VALUES (13288, 9892, 'attr', 'fixed_version_id', '60', '62');
INSERT INTO public.journal_details VALUES (13289, 9893, 'attr', 'fixed_version_id', '60', '62');
INSERT INTO public.journal_details VALUES (13290, 9894, 'attr', 'fixed_version_id', '60', '62');
INSERT INTO public.journal_details VALUES (13291, 9895, 'attr', 'fixed_version_id', '60', '62');
INSERT INTO public.journal_details VALUES (13292, 9896, 'attr', 'fixed_version_id', '60', '62');
INSERT INTO public.journal_details VALUES (13293, 9897, 'attr', 'due_date', '2020-11-20', '2020-11-28');
INSERT INTO public.journal_details VALUES (13294, 9897, 'attr', 'start_date', '2020-11-20', '2020-11-23');
INSERT INTO public.journal_details VALUES (13295, 9898, 'attr', 'due_date', '2020-11-20', '2020-11-28');
INSERT INTO public.journal_details VALUES (13296, 9898, 'attr', 'start_date', '2020-11-20', '2020-11-23');
INSERT INTO public.journal_details VALUES (13297, 9899, 'attr', 'due_date', '2020-11-20', '2020-11-28');
INSERT INTO public.journal_details VALUES (13298, 9899, 'attr', 'start_date', '2020-11-20', '2020-11-23');
INSERT INTO public.journal_details VALUES (13299, 9900, 'attr', 'due_date', '2020-11-20', '2020-11-28');
INSERT INTO public.journal_details VALUES (13300, 9900, 'attr', 'start_date', '2020-11-20', '2020-11-23');
INSERT INTO public.journal_details VALUES (13301, 9901, 'attr', 'due_date', '2020-11-20', '2020-11-28');
INSERT INTO public.journal_details VALUES (13302, 9901, 'attr', 'start_date', '2020-11-20', '2020-11-23');
INSERT INTO public.journal_details VALUES (13303, 9902, 'attr', 'due_date', '2020-11-28', '2020-11-23');
INSERT INTO public.journal_details VALUES (13304, 9903, 'attr', 'due_date', '2020-11-28', '2020-11-23');
INSERT INTO public.journal_details VALUES (13305, 9904, 'attr', 'due_date', '2020-11-28', '2020-11-24');
INSERT INTO public.journal_details VALUES (13306, 9904, 'attr', 'start_date', '2020-11-23', '2020-11-24');
INSERT INTO public.journal_details VALUES (13307, 9905, 'attr', 'due_date', '2020-11-28', '2020-11-24');
INSERT INTO public.journal_details VALUES (13308, 9905, 'attr', 'start_date', '2020-11-23', '2020-11-24');
INSERT INTO public.journal_details VALUES (13309, 9906, 'attr', 'due_date', '2020-11-28', '2020-11-24');
INSERT INTO public.journal_details VALUES (13310, 9906, 'attr', 'start_date', '2020-11-23', '2020-11-24');
INSERT INTO public.journal_details VALUES (13312, 9908, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (13313, 9909, 'attr', 'due_date', '2020-11-20', '2020-11-30');
INSERT INTO public.journal_details VALUES (13314, 9909, 'attr', 'start_date', '2020-11-20', '2020-11-30');
INSERT INTO public.journal_details VALUES (13315, 9910, 'attr', 'due_date', '2020-11-20', '2020-11-30');
INSERT INTO public.journal_details VALUES (13316, 9910, 'attr', 'start_date', '2020-11-20', '2020-11-30');
INSERT INTO public.journal_details VALUES (13317, 9911, 'attr', 'due_date', '2020-11-20', '2020-11-30');
INSERT INTO public.journal_details VALUES (13318, 9911, 'attr', 'start_date', '2020-11-20', '2020-11-30');
INSERT INTO public.journal_details VALUES (13319, 9912, 'attr', 'due_date', '2020-11-20', '2020-11-30');
INSERT INTO public.journal_details VALUES (13320, 9912, 'attr', 'start_date', '2020-11-20', '2020-11-30');
INSERT INTO public.journal_details VALUES (13323, 9914, 'attr', 'fixed_version_id', '60', '62');
INSERT INTO public.journal_details VALUES (13324, 9915, 'attr', 'fixed_version_id', '60', '62');
INSERT INTO public.journal_details VALUES (13325, 9916, 'attr', 'fixed_version_id', '60', '62');
INSERT INTO public.journal_details VALUES (13326, 9917, 'attr', 'fixed_version_id', '60', '62');
INSERT INTO public.journal_details VALUES (13328, 9919, 'attr', 'due_date', '2020-11-30', '2020-11-23');
INSERT INTO public.journal_details VALUES (13329, 9919, 'attr', 'start_date', '2020-11-30', '2020-11-23');
INSERT INTO public.journal_details VALUES (13330, 9920, 'attr', 'due_date', '2020-11-30', '2020-11-23');
INSERT INTO public.journal_details VALUES (13331, 9920, 'attr', 'start_date', '2020-11-30', '2020-11-23');
INSERT INTO public.journal_details VALUES (13332, 9921, 'attr', 'due_date', '2020-11-30', '2020-11-23');
INSERT INTO public.journal_details VALUES (13333, 9921, 'attr', 'start_date', '2020-11-30', '2020-11-23');
INSERT INTO public.journal_details VALUES (13334, 9922, 'attr', 'due_date', '2020-11-30', '2020-11-23');
INSERT INTO public.journal_details VALUES (13335, 9922, 'attr', 'start_date', '2020-11-30', '2020-11-23');
INSERT INTO public.journal_details VALUES (13338, 9924, 'attr', 'due_date', '2020-11-23', '2020-11-24');
INSERT INTO public.journal_details VALUES (13339, 9924, 'attr', 'start_date', '2020-11-23', '2020-11-24');
INSERT INTO public.journal_details VALUES (13340, 9925, 'attr', 'due_date', '2020-11-23', '2020-11-24');
INSERT INTO public.journal_details VALUES (13341, 9925, 'attr', 'start_date', '2020-11-23', '2020-11-24');
INSERT INTO public.journal_details VALUES (13342, 9926, 'attr', 'due_date', '2020-11-23', '2020-11-24');
INSERT INTO public.journal_details VALUES (13343, 9926, 'attr', 'start_date', '2020-11-23', '2020-11-24');
INSERT INTO public.journal_details VALUES (13344, 9927, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (13345, 9927, 'attr', 'subject', 'Hóa đơn bán hàng- thêm cột tổng tiền, chiết khấu, bỏ giảm giá (%) ở dưới', 'Phân loại mẫu in hóa đơn bán hàng');
INSERT INTO public.journal_details VALUES (13346, 9927, 'attr', 'description', '', 'Hóa đơn cafe: giảm giá tổng

Hóa đơn nhà phân phối: giảm giá từng mã hàng');
INSERT INTO public.journal_details VALUES (13347, 9928, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13348, 9929, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13349, 9930, 'attr', 'fixed_version_id', '60', '62');
INSERT INTO public.journal_details VALUES (13350, 9931, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13351, 9932, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13352, 9933, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13353, 9934, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13354, 9935, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13355, 9936, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13356, 9937, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13357, 9938, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13358, 9939, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13359, 9940, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13360, 9941, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (13361, 9942, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (13363, 9944, 'attr', 'fixed_version_id', '62', '33');
INSERT INTO public.journal_details VALUES (13364, 9945, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (13365, 9945, 'attr', 'subject', 'Fix báo cáo sản lượng hàng hóa', 'api báo cáo sản lượng hàng hóa');
INSERT INTO public.journal_details VALUES (13366, 9946, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (13367, 9946, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (13368, 9947, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (13369, 9947, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (13370, 9948, 'attr', 'fixed_version_id', '62', '33');
INSERT INTO public.journal_details VALUES (13371, 9949, 'attr', 'due_date', '2020-11-24', '2020-11-23');
INSERT INTO public.journal_details VALUES (13372, 9950, 'attr', 'due_date', '2020-11-25', '2020-11-24');
INSERT INTO public.journal_details VALUES (13373, 9950, 'attr', 'start_date', '2020-11-23', '2020-11-24');
INSERT INTO public.journal_details VALUES (13374, 9951, 'attr', 'due_date', '2020-11-25', '2020-11-24');
INSERT INTO public.journal_details VALUES (13375, 9951, 'attr', 'start_date', '2020-11-23', '2020-11-24');
INSERT INTO public.journal_details VALUES (13376, 9952, 'attr', 'due_date', '2020-11-25', '2020-11-24');
INSERT INTO public.journal_details VALUES (13377, 9952, 'attr', 'start_date', '2020-11-23', '2020-11-24');
INSERT INTO public.journal_details VALUES (13378, 9953, 'attr', 'due_date', '2020-11-25', '2020-11-24');
INSERT INTO public.journal_details VALUES (13379, 9953, 'attr', 'start_date', '2020-11-23', '2020-11-24');
INSERT INTO public.journal_details VALUES (13380, 9954, 'attr', 'due_date', '2020-11-24', '2020-11-23');
INSERT INTO public.journal_details VALUES (13381, 9954, 'attr', 'start_date', '2020-11-24', '2020-11-23');
INSERT INTO public.journal_details VALUES (13382, 9955, 'attr', 'due_date', '2020-11-24', '2020-11-23');
INSERT INTO public.journal_details VALUES (13383, 9955, 'attr', 'start_date', '2020-11-24', '2020-11-23');
INSERT INTO public.journal_details VALUES (13384, 9956, 'attr', 'due_date', '2020-11-24', '2020-11-23');
INSERT INTO public.journal_details VALUES (13385, 9956, 'attr', 'start_date', '2020-11-24', '2020-11-23');
INSERT INTO public.journal_details VALUES (13386, 9957, 'attr', 'start_date', '2020-11-23', '2020-11-25');
INSERT INTO public.journal_details VALUES (13387, 9958, 'attr', 'start_date', '2020-11-23', '2020-11-25');
INSERT INTO public.journal_details VALUES (13388, 9959, 'attr', 'due_date', '2020-11-23', '2020-11-26');
INSERT INTO public.journal_details VALUES (13389, 9959, 'attr', 'start_date', '2020-11-23', '2020-11-26');
INSERT INTO public.journal_details VALUES (13390, 9960, 'attr', 'due_date', '2020-11-25', '2020-11-26');
INSERT INTO public.journal_details VALUES (13391, 9960, 'attr', 'start_date', '2020-11-23', '2020-11-26');
INSERT INTO public.journal_details VALUES (13392, 9961, 'attr', 'due_date', '2020-11-25', '2020-11-27');
INSERT INTO public.journal_details VALUES (13393, 9961, 'attr', 'start_date', '2020-11-23', '2020-11-27');
INSERT INTO public.journal_details VALUES (13396, 9963, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13397, 9964, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13398, 9965, 'attr', 'due_date', NULL, '2020-11-23');
INSERT INTO public.journal_details VALUES (13399, 9966, 'attr', 'due_date', '2020-11-25', '2020-11-27');
INSERT INTO public.journal_details VALUES (13400, 9966, 'attr', 'start_date', '2020-11-23', '2020-11-27');
INSERT INTO public.journal_details VALUES (13407, 9970, 'attr', 'due_date', '2020-11-23', NULL);
INSERT INTO public.journal_details VALUES (13408, 9970, 'attr', 'start_date', '2020-11-23', NULL);
INSERT INTO public.journal_details VALUES (13409, 9971, 'attr', 'due_date', '2020-11-23', NULL);
INSERT INTO public.journal_details VALUES (13410, 9971, 'attr', 'start_date', '2020-11-23', NULL);
INSERT INTO public.journal_details VALUES (13413, 9973, 'attr', 'subject', 'API lưu dữ liệu báo cáo', 'API tạo và lưu dữ liệu báo cáo');
INSERT INTO public.journal_details VALUES (13414, 9974, 'attr', 'assigned_to_id', NULL, '14');
INSERT INTO public.journal_details VALUES (13415, 9975, 'attr', 'due_date', '2020-11-24', '2020-11-23');
INSERT INTO public.journal_details VALUES (13416, 9976, 'attr', 'due_date', '2020-11-28', '2020-11-27');
INSERT INTO public.journal_details VALUES (13417, 9976, 'attr', 'start_date', '2020-11-28', '2020-11-27');
INSERT INTO public.journal_details VALUES (13418, 9977, 'attr', 'due_date', '2020-11-28', '2020-11-27');
INSERT INTO public.journal_details VALUES (13419, 9977, 'attr', 'start_date', '2020-11-28', '2020-11-27');
INSERT INTO public.journal_details VALUES (13424, 9980, 'attr', 'due_date', '2020-11-24', '2020-11-27');
INSERT INTO public.journal_details VALUES (13425, 9980, 'attr', 'start_date', '2020-11-24', '2020-11-27');
INSERT INTO public.journal_details VALUES (13426, 9981, 'attr', 'subject', 'sắp xếp hồ sơ và loại bỏ trùng thừa tài liệu văn phòng - 2004, 2007', 'sắp xếp hồ sơ và loại bỏ trùng thừa tài liệu văn phòng - 2004');
INSERT INTO public.journal_details VALUES (13427, 9981, 'attr', 'done_ratio', '40', '100');
INSERT INTO public.journal_details VALUES (13428, 9982, 'attr', 'due_date', '2020-11-23', '2020-11-24');
INSERT INTO public.journal_details VALUES (13429, 9983, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (13430, 9984, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13431, 9985, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13432, 9986, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13433, 9987, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13434, 9987, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13435, 9988, 'attr', 'assigned_to_id', '39', '41');
INSERT INTO public.journal_details VALUES (13436, 9989, 'attr', 'due_date', '2020-11-23', '2020-11-24');
INSERT INTO public.journal_details VALUES (13437, 9990, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (13438, 9991, 'attr', 'fixed_version_id', '61', '63');
INSERT INTO public.journal_details VALUES (13439, 9992, 'attr', 'due_date', '2020-11-14', '2020-11-28');
INSERT INTO public.journal_details VALUES (13440, 9992, 'attr', 'start_date', '2020-11-09', '2020-11-23');
INSERT INTO public.journal_details VALUES (13441, 9993, 'attr', 'due_date', '2020-11-21', '2020-11-28');
INSERT INTO public.journal_details VALUES (13442, 9993, 'attr', 'start_date', '2020-11-16', '2020-11-23');
INSERT INTO public.journal_details VALUES (13443, 9994, 'attr', 'start_date', '2020-11-17', '2020-11-16');
INSERT INTO public.journal_details VALUES (13444, 9995, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13445, 9995, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13446, 9996, 'attr', 'due_date', '2020-11-21', '2020-11-28');
INSERT INTO public.journal_details VALUES (13447, 9996, 'attr', 'start_date', '2020-11-17', '2020-11-23');
INSERT INTO public.journal_details VALUES (13448, 9998, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13449, 9999, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13450, 10000, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13451, 10001, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13452, 10002, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13453, 10002, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13454, 10003, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13455, 10004, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13456, 10005, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (13457, 10006, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (13458, 10007, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (13459, 10008, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13460, 10009, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13461, 10010, 'attr', 'subject', 'Quản lý danh sách trích ngang hồ sơ CBCCVC', 'Quản lý danh sách hồ sơ CBCCVC');
INSERT INTO public.journal_details VALUES (13462, 10011, 'attr', 'done_ratio', '50', '80');
INSERT INTO public.journal_details VALUES (13464, 10013, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13465, 10014, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13466, 10015, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13467, 10016, 'attr', 'fixed_version_id', NULL, '33');
INSERT INTO public.journal_details VALUES (13468, 10017, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13469, 10017, 'attr', 'assigned_to_id', '41', '5');
INSERT INTO public.journal_details VALUES (13470, 10017, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13471, 10018, 'attr', 'done_ratio', '0', '60');
INSERT INTO public.journal_details VALUES (13472, 10019, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (13473, 10020, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (13474, 10021, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (13475, 10022, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (13476, 10023, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13477, 10023, 'attr', 'assigned_to_id', '41', '5');
INSERT INTO public.journal_details VALUES (13478, 10023, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13479, 10024, 'attr', 'done_ratio', '0', '80');
INSERT INTO public.journal_details VALUES (13480, 10025, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (13481, 10026, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (13482, 10027, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (13483, 10028, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (13484, 10029, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13485, 10030, 'attr', 'subject', 'Thêm in phiếu Giao hàng chi tiết theo NVGH', 'Thêm in phiếu Giao hàng chi tiết theo NVGH ở Xem phiếu Xuất hàng');
INSERT INTO public.journal_details VALUES (13486, 10031, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (13487, 10032, 'attr', 'due_date', NULL, '2020-11-25');
INSERT INTO public.journal_details VALUES (13488, 10032, 'attr', 'start_date', '2020-11-24', '2020-11-25');
INSERT INTO public.journal_details VALUES (13489, 10033, 'attr', 'due_date', NULL, '2020-11-25');
INSERT INTO public.journal_details VALUES (13490, 10033, 'attr', 'start_date', '2020-11-24', '2020-11-25');
INSERT INTO public.journal_details VALUES (13491, 10034, 'attr', 'due_date', NULL, '2020-11-25');
INSERT INTO public.journal_details VALUES (13492, 10034, 'attr', 'start_date', '2020-11-24', '2020-11-25');
INSERT INTO public.journal_details VALUES (13493, 10035, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13494, 10036, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13495, 10037, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13496, 10038, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13497, 10039, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (13498, 10040, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13499, 10041, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13500, 10042, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (13501, 10043, 'attr', 'done_ratio', '60', '100');
INSERT INTO public.journal_details VALUES (13502, 10044, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13503, 10045, 'attr', 'due_date', '2020-11-23', '2020-11-24');
INSERT INTO public.journal_details VALUES (13504, 10045, 'attr', 'start_date', '2020-11-23', '2020-11-24');
INSERT INTO public.journal_details VALUES (13505, 10046, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13506, 10047, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13507, 10048, 'attr', 'subject', 'Danh ', 'Báo cáo trình độ chất lượng cán bộ');
INSERT INTO public.journal_details VALUES (13508, 10049, 'attr', 'due_date', '2020-11-28', '2020-11-27');
INSERT INTO public.journal_details VALUES (13509, 10049, 'attr', 'assigned_to_id', '24', '33');
INSERT INTO public.journal_details VALUES (13510, 10049, 'attr', 'start_date', '2020-11-21', '2020-11-25');
INSERT INTO public.journal_details VALUES (13511, 10050, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13513, 10052, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13514, 10053, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (13515, 10054, 'attr', 'due_date', '2020-11-28', '2020-11-30');
INSERT INTO public.journal_details VALUES (13516, 10054, 'attr', 'assigned_to_id', '29', '33');
INSERT INTO public.journal_details VALUES (13517, 10054, 'attr', 'start_date', '2020-11-23', '2020-11-27');
INSERT INTO public.journal_details VALUES (13518, 10055, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13519, 10056, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13520, 10057, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13521, 10058, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13522, 10059, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (13523, 10060, 'attr', 'due_date', '2020-11-27', '2020-11-28');
INSERT INTO public.journal_details VALUES (13524, 10060, 'attr', 'assigned_to_id', '33', '24');
INSERT INTO public.journal_details VALUES (13525, 10060, 'attr', 'start_date', '2020-11-25', '2020-11-21');
INSERT INTO public.journal_details VALUES (13526, 10061, 'attr', 'assigned_to_id', '33', '32');
INSERT INTO public.journal_details VALUES (13527, 10061, 'attr', 'start_date', '2020-11-27', '2020-11-25');
INSERT INTO public.journal_details VALUES (13528, 10062, 'attr', 'due_date', '2020-11-24', '2020-11-25');
INSERT INTO public.journal_details VALUES (13529, 10062, 'attr', 'start_date', '2020-11-24', '2020-11-25');
INSERT INTO public.journal_details VALUES (13530, 10063, 'attr', 'due_date', '2020-11-24', '2020-11-25');
INSERT INTO public.journal_details VALUES (13531, 10063, 'attr', 'start_date', '2020-11-24', '2020-11-25');
INSERT INTO public.journal_details VALUES (13532, 10064, 'attr', 'due_date', '2020-11-24', '2020-11-25');
INSERT INTO public.journal_details VALUES (13533, 10064, 'attr', 'start_date', '2020-11-24', '2020-11-25');
INSERT INTO public.journal_details VALUES (13534, 10065, 'attr', 'due_date', '2020-11-28', '2020-12-01');
INSERT INTO public.journal_details VALUES (13535, 10065, 'attr', 'assigned_to_id', '24', '33');
INSERT INTO public.journal_details VALUES (13536, 10065, 'attr', 'start_date', '2020-11-21', '2020-11-28');
INSERT INTO public.journal_details VALUES (13539, 10067, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13540, 10068, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13541, 10069, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13542, 10070, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13543, 10071, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13544, 10072, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13548, 10075, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13549, 10076, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13550, 10077, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13551, 10078, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13552, 10079, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13553, 10080, 'attr', 'description', 'DỰ ÁN: **QUẢN LÝ BÁN HÀNG**

NHÂN SỰ: **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, TIẾN ĐẶNG, DUNG(Mobile)**

TỔNG ĐIỂM: **324 (tăng so với tháng trước 133 điểm)**

> **Khách hàng, Nhà cung cấp, Khuyến mãi, Xuất hàng nhiều đơn, Giảm giá, Công nợ, Báo cáo, Thiết lập mẫu in**

ĐÃ HOÀN THÀNH: **207**

CÒN LẠI: **117**

TIẾN ĐỘ HIỆN TẠI: **64%**

BẢNG KẾ HOẠCH & TIẾN ĐỘ CHI TIẾT: [Click để xem](https://docs.google.com/spreadsheets/d/163Bdm2TFshtJcvoAPlUFv9-9Lf2UtNocnCgmB4cP2Ts/edit#gid=1843496086)

* * *', 'DỰ ÁN: **QUẢN LÝ BÁN HÀNG**

TIẾN ĐỘ: **62%**

| Sprint | CHỨC NĂNG | ĐIỂM TĂNG THÊM | NHÂN SỰ |
| --- | --- | --- | --- |
| 8, 9 | Khách hàng, Nhà cung cấp, Khuyến mãi, Xuất hàng nhiều đơn, Giảm giá | 133 | **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, TIẾN ĐẶNG, DUNG(Mobile)** |
| 10, 11, 12 | Công nợ, Báo cáo, Thiết lập mẫu in | 0 | **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, DUNG(Mobile)** |

BẢNG KẾ HOẠCH & TIẾN ĐỘ CHI TIẾT: [Click để xem](https://docs.google.com/spreadsheets/d/163Bdm2TFshtJcvoAPlUFv9-9Lf2UtNocnCgmB4cP2Ts/edit#gid=1843496086)

* * *');
INSERT INTO public.journal_details VALUES (13554, 10080, 'attr', 'due_date', '2020-11-28', '2020-11-24');
INSERT INTO public.journal_details VALUES (13555, 10080, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13556, 10080, 'attr', 'start_date', '2020-11-28', '2020-11-24');
INSERT INTO public.journal_details VALUES (13557, 10080, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13558, 10081, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13559, 10082, 'attr', 'subject', 'Mobile - Báo cáo khách hàng - Sản lượng bán hàng theo khách hàng file PDF.', 'Mobile - Báo cáo khách hàng - Sản lượng bán hàng theo khách hàng.');
INSERT INTO public.journal_details VALUES (13560, 10082, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13561, 10083, 'attr', 'subject', 'Mobile - Báo cáo khuyến mãi - Phân tích hiệu quả khuyến mãi PDF.', 'Mobile - Báo cáo khuyến mãi - Phân tích hiệu quả khuyến mãi.');
INSERT INTO public.journal_details VALUES (13562, 10084, 'attr', 'subject', 'Mobile - Báo cáo khuyến mãi - Theo dõi ngân sách khuyến mãi file PDF.', 'Mobile - Báo cáo khuyến mãi - Theo dõi ngân sách khuyến mãi.');
INSERT INTO public.journal_details VALUES (13563, 10085, 'attr', 'subject', 'Mobile - Báo cáo mua hàng - Bảng kê hàng hóa mua vào file PDF.', 'Mobile - Báo cáo mua hàng - Bảng kê hàng hóa mua vào.');
INSERT INTO public.journal_details VALUES (13564, 10086, 'attr', 'subject', 'Mobile - Báo cáo mua hàng - Mua hàng chi tiết file PDF.', 'Mobile - Báo cáo mua hàng - Mua hàng chi tiết.');
INSERT INTO public.journal_details VALUES (13565, 10087, 'attr', 'subject', 'Mobile - Báo cáo nhân viên - Bảng kê các đơn hàng chi tiết theo nhân viên giao hàng file PDF.', 'Mobile - Báo cáo nhân viên - Bảng kê các đơn hàng chi tiết theo nhân viên giao hàng.');
INSERT INTO public.journal_details VALUES (13566, 10088, 'attr', 'subject', 'Mobile - Báo cáo nhân viên - Sản lượng bán hàng theo NVKD file PDF.', 'Mobile - Báo cáo nhân viên - Sản lượng bán hàng theo NVKD..');
INSERT INTO public.journal_details VALUES (13569, 10091, 'attr', 'subject', 'Mobile - Báo cáo nhân viên - Sản lượng bán hàng theo NVKD..', 'Mobile - Báo cáo nhân viên - Sản lượng bán hàng theo NVKD.');
INSERT INTO public.journal_details VALUES (13570, 10092, 'attr', 'description', 'DỰ ÁN: **QUẢN LÝ BÁN HÀNG**

TIẾN ĐỘ: **62%**

| Sprint | CHỨC NĂNG | ĐIỂM TĂNG THÊM | NHÂN SỰ |
| --- | --- | --- | --- |
| 8, 9 | Khách hàng, Nhà cung cấp, Khuyến mãi, Xuất hàng nhiều đơn, Giảm giá | 133 | **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, TIẾN ĐẶNG, DUNG(Mobile)** |
| 10, 11, 12 | Công nợ, Báo cáo, Thiết lập mẫu in | 0 | **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, DUNG(Mobile)** |

BẢNG KẾ HOẠCH & TIẾN ĐỘ CHI TIẾT: [Click để xem](https://docs.google.com/spreadsheets/d/163Bdm2TFshtJcvoAPlUFv9-9Lf2UtNocnCgmB4cP2Ts/edit#gid=1843496086)

* * *', 'DỰ ÁN: **QUẢN LÝ BÁN HÀNG**

TIẾN ĐỘ: **62%**

| Sprint | CHỨC NĂNG | SỐ ĐIỂM | NHÂN SỰ |
| --- | --- | --- | --- |
| 8, 9 | Khách hàng, Nhà cung cấp, Khuyến mãi, Xuất hàng nhiều đơn, Giảm giá | 133 | **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, TIẾN ĐẶNG, DUNG(Mobile)** |
| 10, 11 | Thiết lập mẫu in, Báo cáo | 0 | **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, DUNG(Mobile)** |
| 12, 13 | Công nợ, Quy đổi đơn vị |   |  |

BẢNG KẾ HOẠCH & TIẾN ĐỘ CHI TIẾT: [Click để xem](https://docs.google.com/spreadsheets/d/163Bdm2TFshtJcvoAPlUFv9-9Lf2UtNocnCgmB4cP2Ts/edit#gid=1843496086)

* * *');
INSERT INTO public.journal_details VALUES (13571, 10093, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13572, 10094, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13573, 10095, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13574, 10096, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13575, 10097, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13576, 10098, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13577, 10099, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13578, 10100, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13579, 10101, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13580, 10102, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13581, 10103, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (13582, 10104, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (13583, 10105, 'attr', 'due_date', NULL, '2020-11-25');
INSERT INTO public.journal_details VALUES (13584, 10106, 'attr', 'due_date', NULL, '2020-11-25');
INSERT INTO public.journal_details VALUES (13585, 10107, 'attr', 'due_date', NULL, '2020-11-25');
INSERT INTO public.journal_details VALUES (13586, 10108, 'attr', 'start_date', '2020-11-25', '2020-11-24');
INSERT INTO public.journal_details VALUES (13587, 10109, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (13588, 10110, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13589, 10110, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13590, 10111, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (13591, 10112, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13592, 10113, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13593, 10114, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13594, 10115, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13595, 10116, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13596, 10117, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13597, 10118, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13598, 10119, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (13599, 10120, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13600, 10121, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13601, 10122, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13602, 10123, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13603, 10124, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13604, 10125, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13605, 10126, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13606, 10127, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13607, 10128, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13608, 10129, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13609, 10130, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13610, 10131, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13611, 10132, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13612, 10133, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13613, 10134, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13614, 10135, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13615, 10136, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13616, 10137, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13617, 10138, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (13618, 10139, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (13619, 10140, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13620, 10141, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13621, 10142, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (13622, 10143, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13623, 10144, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (13624, 10145, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13625, 10146, 'attr', 'due_date', NULL, '2020-11-25');
INSERT INTO public.journal_details VALUES (13626, 10146, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13627, 10146, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13628, 10147, 'attr', 'due_date', NULL, '2020-11-25');
INSERT INTO public.journal_details VALUES (13629, 10147, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13630, 10147, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13631, 10148, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13632, 10149, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13633, 10150, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (13634, 10151, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13635, 10152, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13636, 10153, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13637, 10153, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13638, 10154, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13639, 10154, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13640, 10155, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13641, 10156, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13642, 10157, 'attr', 'fixed_version_id', NULL, '62');
INSERT INTO public.journal_details VALUES (13643, 10158, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13644, 10159, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13645, 10160, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13646, 10161, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13647, 10162, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13648, 10163, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13649, 10164, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13650, 10165, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13651, 10166, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13652, 10167, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13653, 10168, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (13654, 10169, 'attr', 'due_date', NULL, '2020-11-27');
INSERT INTO public.journal_details VALUES (13655, 10169, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (13656, 10169, 'attr', 'start_date', '2020-11-23', '2020-11-27');
INSERT INTO public.journal_details VALUES (13657, 10169, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13658, 10170, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (13659, 10171, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (13660, 10172, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13661, 10173, 'attr', 'done_ratio', '60', '100');
INSERT INTO public.journal_details VALUES (13662, 10174, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (13663, 10175, 'attr', 'done_ratio', '20', '100');
INSERT INTO public.journal_details VALUES (13664, 10176, 'attr', 'due_date', '2020-11-26', '2020-11-27');
INSERT INTO public.journal_details VALUES (13665, 10177, 'attr', 'subject', 'Chỉnh sửa và nhập mục lục tài liệu văn phòng - 1998, 2001', 'Kiểm tra và nhập mục lục tài liệu văn phòng - 1998, 2001');
INSERT INTO public.journal_details VALUES (13666, 10177, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13667, 10178, 'attr', 'due_date', NULL, '2020-11-27');
INSERT INTO public.journal_details VALUES (13668, 10178, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (13669, 10178, 'attr', 'fixed_version_id', NULL, '62');
INSERT INTO public.journal_details VALUES (13670, 10179, 'attr', 'subject', 'Tạo checkBox có sản phẩm khuyến mãi', 'Tạo checkBox hiển thị sản phẩm có khuyến mãi');
INSERT INTO public.journal_details VALUES (13671, 10180, 'attr', 'due_date', NULL, '2020-11-27');
INSERT INTO public.journal_details VALUES (13672, 10180, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13673, 10180, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13674, 10180, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13675, 10181, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13676, 10182, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13677, 10183, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (13678, 10184, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13679, 10184, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13680, 10185, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13681, 10185, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13682, 10186, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13683, 10186, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13684, 10187, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13685, 10188, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13686, 10189, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13687, 10189, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13688, 10190, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13689, 10191, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13690, 10192, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13691, 10193, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13692, 10194, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13693, 10195, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13694, 10196, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13695, 10197, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13696, 10198, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13697, 10199, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13698, 10200, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13699, 10201, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13700, 10201, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13701, 10202, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13702, 10203, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13703, 10203, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13704, 10204, 'attr', 'fixed_version_id', '63', '64');
INSERT INTO public.journal_details VALUES (13705, 10205, 'attr', 'fixed_version_id', '63', '64');
INSERT INTO public.journal_details VALUES (13706, 10206, 'attr', 'fixed_version_id', '63', '64');
INSERT INTO public.journal_details VALUES (13707, 10207, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13708, 10207, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13709, 10208, 'attr', 'due_date', '2020-11-25', '2020-11-30');
INSERT INTO public.journal_details VALUES (13710, 10208, 'attr', 'start_date', '2020-11-25', '2020-11-30');
INSERT INTO public.journal_details VALUES (13711, 10209, 'attr', 'due_date', '2020-11-25', '2020-11-30');
INSERT INTO public.journal_details VALUES (13712, 10209, 'attr', 'start_date', '2020-11-25', '2020-11-30');
INSERT INTO public.journal_details VALUES (13713, 10210, 'attr', 'fixed_version_id', '62', '65');
INSERT INTO public.journal_details VALUES (13714, 10211, 'attr', 'fixed_version_id', '62', '65');
INSERT INTO public.journal_details VALUES (13715, 10212, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13716, 10212, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (13717, 10212, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13718, 10213, 'attr', 'due_date', NULL, '2020-11-11');
INSERT INTO public.journal_details VALUES (13719, 10214, 'attr', 'due_date', '2020-11-11', '2020-11-16');
INSERT INTO public.journal_details VALUES (13720, 10214, 'attr', 'fixed_version_id', '33', '60');
INSERT INTO public.journal_details VALUES (13721, 10214, 'attr', 'start_date', '2020-11-11', '2020-11-16');
INSERT INTO public.journal_details VALUES (13722, 10215, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13723, 10217, 'attr', 'due_date', '2020-11-28', '2020-12-05');
INSERT INTO public.journal_details VALUES (13724, 10217, 'attr', 'start_date', '2020-11-23', '2020-11-30');
INSERT INTO public.journal_details VALUES (13725, 10218, 'attr', 'due_date', '2020-11-28', '2020-12-05');
INSERT INTO public.journal_details VALUES (13726, 10218, 'attr', 'start_date', '2020-11-23', '2020-11-30');
INSERT INTO public.journal_details VALUES (13727, 10219, 'attr', 'due_date', '2020-11-28', '2020-12-05');
INSERT INTO public.journal_details VALUES (13728, 10219, 'attr', 'start_date', '2020-11-23', '2020-11-30');
INSERT INTO public.journal_details VALUES (13729, 10220, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13730, 10221, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13731, 10222, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13732, 10223, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13733, 10224, 'attr', 'due_date', '2020-11-25', '2020-11-30');
INSERT INTO public.journal_details VALUES (13734, 10224, 'attr', 'start_date', '2020-11-25', '2020-11-30');
INSERT INTO public.journal_details VALUES (13735, 10225, 'attr', 'due_date', '2020-11-25', '2020-11-30');
INSERT INTO public.journal_details VALUES (13736, 10225, 'attr', 'start_date', '2020-11-25', '2020-11-30');
INSERT INTO public.journal_details VALUES (13737, 10226, 'attr', 'fixed_version_id', '62', '65');
INSERT INTO public.journal_details VALUES (13738, 10227, 'attr', 'fixed_version_id', '62', '65');
INSERT INTO public.journal_details VALUES (13745, 10230, 'attr', 'due_date', NULL, '2020-11-28');
INSERT INTO public.journal_details VALUES (13746, 10230, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13747, 10230, 'attr', 'fixed_version_id', '33', '62');
INSERT INTO public.journal_details VALUES (13748, 10230, 'attr', 'start_date', NULL, '2020-11-28');
INSERT INTO public.journal_details VALUES (13749, 10230, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13750, 10231, 'attr', 'due_date', '2020-11-25', '2020-11-30');
INSERT INTO public.journal_details VALUES (13751, 10231, 'attr', 'fixed_version_id', '62', '65');
INSERT INTO public.journal_details VALUES (13752, 10231, 'attr', 'start_date', '2020-11-25', '2020-11-30');
INSERT INTO public.journal_details VALUES (13753, 10232, 'attr', 'due_date', '2020-11-27', '2020-11-30');
INSERT INTO public.journal_details VALUES (13754, 10232, 'attr', 'fixed_version_id', '62', '65');
INSERT INTO public.journal_details VALUES (13755, 10232, 'attr', 'start_date', '2020-11-27', '2020-11-30');
INSERT INTO public.journal_details VALUES (13756, 10233, 'attr', 'due_date', '2020-11-27', '2020-11-30');
INSERT INTO public.journal_details VALUES (13757, 10233, 'attr', 'fixed_version_id', '62', '65');
INSERT INTO public.journal_details VALUES (13758, 10233, 'attr', 'start_date', '2020-11-27', '2020-11-30');
INSERT INTO public.journal_details VALUES (13759, 10234, 'attr', 'due_date', '2020-11-27', '2020-11-30');
INSERT INTO public.journal_details VALUES (13760, 10234, 'attr', 'fixed_version_id', '62', '65');
INSERT INTO public.journal_details VALUES (13761, 10234, 'attr', 'start_date', '2020-11-27', '2020-11-30');
INSERT INTO public.journal_details VALUES (13762, 10235, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13763, 10235, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13764, 10236, 'attr', 'assigned_to_id', '40', '41');
INSERT INTO public.journal_details VALUES (13765, 10237, 'attr', 'assigned_to_id', '40', '41');
INSERT INTO public.journal_details VALUES (13766, 10238, 'attr', 'assigned_to_id', '40', '41');
INSERT INTO public.journal_details VALUES (13767, 10239, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13768, 10240, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13769, 10241, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13770, 10242, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13771, 10243, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13772, 10244, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13773, 10245, 'attr', 'due_date', '2020-11-24', '2020-11-30');
INSERT INTO public.journal_details VALUES (13774, 10245, 'attr', 'start_date', '2020-11-24', '2020-11-30');
INSERT INTO public.journal_details VALUES (13775, 10246, 'attr', 'due_date', '2020-11-24', '2020-11-30');
INSERT INTO public.journal_details VALUES (13776, 10246, 'attr', 'start_date', '2020-11-24', '2020-11-30');
INSERT INTO public.journal_details VALUES (13777, 10247, 'attr', 'fixed_version_id', '62', '65');
INSERT INTO public.journal_details VALUES (13778, 10248, 'attr', 'fixed_version_id', '62', '65');
INSERT INTO public.journal_details VALUES (13779, 10249, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13780, 10250, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13781, 10251, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13782, 10252, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13783, 10253, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13784, 10254, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13785, 10255, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (13786, 10256, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13787, 10257, 'attr', 'fixed_version_id', '63', '64');
INSERT INTO public.journal_details VALUES (13788, 10258, 'attr', 'fixed_version_id', '63', '64');
INSERT INTO public.journal_details VALUES (13789, 10259, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (13790, 10260, 'attr', 'due_date', NULL, '2020-11-30');
INSERT INTO public.journal_details VALUES (13791, 10260, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (13792, 10260, 'attr', 'fixed_version_id', '33', '65');
INSERT INTO public.journal_details VALUES (13793, 10260, 'attr', 'start_date', '2020-11-23', '2020-11-30');
INSERT INTO public.journal_details VALUES (13794, 10261, 'attr', 'due_date', NULL, '2020-11-30');
INSERT INTO public.journal_details VALUES (13795, 10261, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (13796, 10261, 'attr', 'fixed_version_id', '33', '65');
INSERT INTO public.journal_details VALUES (13797, 10261, 'attr', 'start_date', '2020-11-23', '2020-11-30');
INSERT INTO public.journal_details VALUES (13798, 10262, 'attr', 'assigned_to_id', '17', '15');
INSERT INTO public.journal_details VALUES (13799, 10263, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13800, 10264, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13801, 10265, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13802, 10266, 'attr', 'due_date', NULL, '2020-11-30');
INSERT INTO public.journal_details VALUES (13803, 10266, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (13804, 10266, 'attr', 'fixed_version_id', '33', '65');
INSERT INTO public.journal_details VALUES (13805, 10266, 'attr', 'start_date', '2020-11-11', '2020-11-30');
INSERT INTO public.journal_details VALUES (13806, 10267, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13807, 10268, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13808, 10269, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (13809, 10270, 'attr', 'due_date', '2020-11-30', '2020-12-02');
INSERT INTO public.journal_details VALUES (13810, 10270, 'attr', 'start_date', '2020-11-30', '2020-12-02');
INSERT INTO public.journal_details VALUES (13811, 10271, 'attr', 'due_date', '2020-11-30', '2020-12-02');
INSERT INTO public.journal_details VALUES (13812, 10271, 'attr', 'start_date', '2020-11-30', '2020-12-02');
INSERT INTO public.journal_details VALUES (13813, 10272, 'attr', 'due_date', '2020-11-30', '2020-12-02');
INSERT INTO public.journal_details VALUES (13814, 10272, 'attr', 'start_date', '2020-11-30', '2020-12-02');
INSERT INTO public.journal_details VALUES (13815, 10273, 'attr', 'due_date', '2020-11-30', '2020-12-02');
INSERT INTO public.journal_details VALUES (13816, 10273, 'attr', 'start_date', '2020-11-30', '2020-12-02');
INSERT INTO public.journal_details VALUES (13817, 10274, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13818, 10275, 'attr', 'done_ratio', '60', '100');
INSERT INTO public.journal_details VALUES (13819, 10276, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (13820, 10277, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (13821, 10278, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13822, 10279, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13823, 10280, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13824, 10280, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (13825, 10280, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13826, 10281, 'attr', 'due_date', '2020-12-02', '2020-12-03');
INSERT INTO public.journal_details VALUES (13827, 10281, 'attr', 'start_date', '2020-12-02', '2020-12-03');
INSERT INTO public.journal_details VALUES (13828, 10282, 'attr', 'due_date', '2020-12-02', '2020-12-03');
INSERT INTO public.journal_details VALUES (13829, 10282, 'attr', 'start_date', '2020-12-02', '2020-12-03');
INSERT INTO public.journal_details VALUES (13830, 10283, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (13831, 10284, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (13832, 10285, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13833, 10286, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13834, 10287, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13835, 10287, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13836, 10288, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13837, 10289, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (13838, 10290, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (13839, 10291, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13840, 10292, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13841, 10293, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13842, 10294, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13843, 10295, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (13844, 10296, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (13845, 10297, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (13846, 10298, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (13847, 10299, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (13848, 10300, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (13849, 10301, 'attr', 'due_date', '2020-11-27', '2020-11-30');
INSERT INTO public.journal_details VALUES (13850, 10301, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13851, 10301, 'attr', 'start_date', '2020-11-27', '2020-11-30');
INSERT INTO public.journal_details VALUES (13852, 10301, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13853, 10302, 'attr', 'assigned_to_id', '41', '39');
INSERT INTO public.journal_details VALUES (13854, 10303, 'attr', 'description', 'Ví dụ:
chọn tuần trước hiển thị không có kết quả.
Nhưng chọn thời gian của tuần trước như Từ ngày 23/11/2020 đến ngày 29/11/2020 thì hiển thị có kết quả', 'Ví dụ:
chọn tuần trước hiển thị không có kết quả.
Nhưng chọn thời gian của tuần trước như Từ ngày 23/11/2020 đến ngày 29/11/2020 thì hiển thị có kết quả.

--> lí do sai mốc thời gian từ ngày đến ngày');
INSERT INTO public.journal_details VALUES (13855, 10304, 'attr', 'due_date', NULL, '2020-11-30');
INSERT INTO public.journal_details VALUES (13856, 10304, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (13857, 10304, 'attr', 'start_date', '2020-11-23', '2020-11-30');
INSERT INTO public.journal_details VALUES (13858, 10304, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13859, 10305, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13860, 10306, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13861, 10307, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (13862, 10308, 'attr', 'assigned_to_id', '19', '12');
INSERT INTO public.journal_details VALUES (13863, 10309, 'attr', 'due_date', '2020-11-30', '2020-12-02');
INSERT INTO public.journal_details VALUES (13864, 10309, 'attr', 'start_date', '2020-11-30', '2020-12-02');
INSERT INTO public.journal_details VALUES (13865, 10310, 'attr', 'due_date', '2020-11-30', '2020-12-02');
INSERT INTO public.journal_details VALUES (13866, 10310, 'attr', 'start_date', '2020-11-30', '2020-12-02');
INSERT INTO public.journal_details VALUES (13867, 10311, 'attr', 'due_date', '2020-11-28', '2020-12-05');
INSERT INTO public.journal_details VALUES (13868, 10311, 'attr', 'start_date', '2020-11-23', '2020-11-30');
INSERT INTO public.journal_details VALUES (13869, 10312, 'attr', 'due_date', '2020-11-30', '2020-12-01');
INSERT INTO public.journal_details VALUES (13870, 10312, 'attr', 'start_date', '2020-11-30', '2020-12-01');
INSERT INTO public.journal_details VALUES (13871, 10313, 'attr', 'due_date', '2020-11-30', '2020-12-01');
INSERT INTO public.journal_details VALUES (13872, 10313, 'attr', 'start_date', '2020-11-30', '2020-12-01');
INSERT INTO public.journal_details VALUES (13873, 10314, 'attr', 'start_date', '2020-11-30', '2020-12-01');
INSERT INTO public.journal_details VALUES (13874, 10315, 'attr', 'start_date', '2020-11-30', '2020-12-01');
INSERT INTO public.journal_details VALUES (13875, 10316, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13876, 10317, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13877, 10318, 'attr', 'description', '', '-Sửa Radio.
-Sửa Select.
-Sửa Top Navigation.
.......');
INSERT INTO public.journal_details VALUES (13878, 10319, 'attr', 'subject', 'Mobile - Fix lỗi update phiên bản.', 'Mobile - Fix lỗi cấu hình để phù hợp với IOS và Android.');
INSERT INTO public.journal_details VALUES (13879, 10319, 'attr', 'description', '-Sửa Radio.
-Sửa Select.
-Sửa Top Navigation.
.......', 'Nhờ anh Ngọc giúp đỡ.... đang fix.');
INSERT INTO public.journal_details VALUES (13880, 10320, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13881, 10321, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13882, 10322, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13883, 10323, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13884, 10324, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13885, 10324, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13886, 10325, 'attr', 'subject', 'Thời gian từ ngày - đến ngày của tuần này, tuần trước, 7 ngày qua của tất cả báo cáo sai', 'Sai component thời gian "tuần này", "tuần trước" và "7 ngày qua" của tất cả báo cáo ');
INSERT INTO public.journal_details VALUES (13887, 10326, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13888, 10326, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13889, 10327, 'attr', 'description', 'ví dụ: có 2 đơn hàng vào ngày 28/11 của tuần trước và 1/12 của tuần này nhưng khi chọn tuần này / tuần trước thì hiển thị không có kết quả', '');
INSERT INTO public.journal_details VALUES (13890, 10328, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (13891, 10329, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13892, 10330, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13893, 10331, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13894, 10332, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13895, 10333, 'attr', 'due_date', NULL, '2020-12-01');
INSERT INTO public.journal_details VALUES (13896, 10333, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13897, 10333, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (13898, 10333, 'attr', 'start_date', '2020-11-23', '2020-12-01');
INSERT INTO public.journal_details VALUES (13899, 10333, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13900, 10334, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13901, 10335, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13902, 10336, 'attr', 'due_date', NULL, '2021-01-01');
INSERT INTO public.journal_details VALUES (13903, 10336, 'attr', 'start_date', '2020-11-23', '2020-11-30');
INSERT INTO public.journal_details VALUES (13904, 10337, 'attr', 'due_date', NULL, '2020-12-01');
INSERT INTO public.journal_details VALUES (13905, 10337, 'attr', 'start_date', '2020-11-23', '2020-11-30');
INSERT INTO public.journal_details VALUES (13906, 10338, 'attr', 'due_date', '2021-01-01', '2020-12-01');
INSERT INTO public.journal_details VALUES (13907, 10339, 'attr', 'subject', 'Danh mục phụ cấp', 'Danh mục phụ cấp đơn vị');
INSERT INTO public.journal_details VALUES (13908, 10340, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13909, 10341, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (13910, 10342, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13911, 10343, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (13912, 10343, 'attr', 'fixed_version_id', NULL, '65');
INSERT INTO public.journal_details VALUES (13913, 10344, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13914, 10344, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13915, 10345, 'attr', 'fixed_version_id', NULL, '65');
INSERT INTO public.journal_details VALUES (13916, 10346, 'attr', 'parent_id', NULL, '2979');
INSERT INTO public.journal_details VALUES (13917, 10347, 'attr', 'parent_id', NULL, '2464');
INSERT INTO public.journal_details VALUES (13918, 10348, 'attr', 'parent_id', NULL, '2414');
INSERT INTO public.journal_details VALUES (13919, 10349, 'attr', 'tracker_id', '1', '3');
INSERT INTO public.journal_details VALUES (13920, 10349, 'attr', 'subject', 'Cập nhật -  Lỗi', 'CẬP NHẬT -  LỖI');
INSERT INTO public.journal_details VALUES (13921, 10350, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (13922, 10351, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (13923, 10352, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (13924, 10353, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (13925, 10354, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (13926, 10355, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (13927, 10356, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13928, 10356, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13929, 10357, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13930, 10357, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13931, 10358, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13932, 10358, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13933, 10359, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13934, 10360, 'attr', 'due_date', '2020-12-01', '2020-12-02');
INSERT INTO public.journal_details VALUES (13935, 10360, 'attr', 'start_date', '2020-12-01', '2020-12-02');
INSERT INTO public.journal_details VALUES (13936, 10360, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13937, 10361, 'attr', 'due_date', '2020-12-01', '2020-12-02');
INSERT INTO public.journal_details VALUES (13938, 10361, 'attr', 'start_date', '2020-12-01', '2020-12-02');
INSERT INTO public.journal_details VALUES (13939, 10362, 'attr', 'due_date', '2020-12-01', '2020-12-02');
INSERT INTO public.journal_details VALUES (13940, 10362, 'attr', 'start_date', '2020-12-01', '2020-12-02');
INSERT INTO public.journal_details VALUES (13941, 10363, 'attr', 'due_date', '2020-12-01', '2020-12-02');
INSERT INTO public.journal_details VALUES (13942, 10363, 'attr', 'start_date', '2020-12-01', '2020-12-02');
INSERT INTO public.journal_details VALUES (13943, 10364, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13944, 10365, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13945, 10366, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13946, 10367, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13947, 10368, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13948, 10368, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13949, 10369, 'attr', 'due_date', NULL, '2020-12-03');
INSERT INTO public.journal_details VALUES (13950, 10369, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (13951, 10369, 'attr', 'fixed_version_id', '33', '65');
INSERT INTO public.journal_details VALUES (13952, 10369, 'attr', 'start_date', NULL, '2020-12-03');
INSERT INTO public.journal_details VALUES (13953, 10370, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13954, 10371, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13955, 10372, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13956, 10373, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13957, 10374, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13958, 10375, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13959, 10376, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13960, 10377, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13961, 10378, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13962, 10379, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13963, 10380, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13964, 10380, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13965, 10381, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13966, 10381, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13967, 10382, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13968, 10383, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13969, 10384, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (13970, 10385, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13971, 10386, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13972, 10387, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13973, 10388, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (13974, 10389, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13975, 10390, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13976, 10391, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13977, 10392, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13978, 10393, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13979, 10394, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (13980, 10394, 'attr', 'assigned_to_id', '39', '41');
INSERT INTO public.journal_details VALUES (13981, 10394, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (13982, 10395, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13983, 10396, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13984, 10397, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13985, 10398, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (13986, 10398, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13987, 10399, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13988, 10399, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13989, 10400, 'attr', 'due_date', '2020-11-30', '2020-12-05');
INSERT INTO public.journal_details VALUES (13990, 10401, 'attr', 'due_date', '2020-11-30', '2020-12-05');
INSERT INTO public.journal_details VALUES (13991, 10402, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13992, 10403, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (13993, 10404, 'attr', 'due_date', '2020-12-02', '2020-12-03');
INSERT INTO public.journal_details VALUES (13994, 10405, 'attr', 'due_date', '2020-12-02', '2020-12-03');
INSERT INTO public.journal_details VALUES (13995, 10406, 'attr', 'fixed_version_id', NULL, '65');
INSERT INTO public.journal_details VALUES (13996, 10407, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13997, 10408, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13998, 10409, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (13999, 10410, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14000, 10411, 'attr', 'due_date', '2020-12-01', '2020-12-04');
INSERT INTO public.journal_details VALUES (14001, 10411, 'attr', 'start_date', '2020-12-01', '2020-12-04');
INSERT INTO public.journal_details VALUES (14002, 10412, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14003, 10413, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14004, 10414, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14005, 10415, 'attr', 'due_date', '2020-12-03', '2020-12-05');
INSERT INTO public.journal_details VALUES (14006, 10415, 'attr', 'start_date', '2020-12-03', '2020-12-04');
INSERT INTO public.journal_details VALUES (14007, 10416, 'attr', 'due_date', '2020-12-03', '2020-12-05');
INSERT INTO public.journal_details VALUES (14008, 10416, 'attr', 'start_date', '2020-12-03', '2020-12-04');
INSERT INTO public.journal_details VALUES (14009, 10417, 'attr', 'due_date', '2020-12-04', '2020-12-05');
INSERT INTO public.journal_details VALUES (14010, 10417, 'attr', 'start_date', '2020-12-03', '2020-12-04');
INSERT INTO public.journal_details VALUES (14011, 10418, 'attr', 'due_date', '2020-12-04', '2020-12-05');
INSERT INTO public.journal_details VALUES (14012, 10418, 'attr', 'start_date', '2020-12-03', '2020-12-04');
INSERT INTO public.journal_details VALUES (14013, 10419, 'attr', 'due_date', '2020-12-04', '2020-12-05');
INSERT INTO public.journal_details VALUES (14014, 10420, 'attr', 'due_date', '2020-12-03', '2020-12-05');
INSERT INTO public.journal_details VALUES (14015, 10420, 'attr', 'start_date', '2020-12-03', '2020-12-04');
INSERT INTO public.journal_details VALUES (14016, 10421, 'attr', 'due_date', '2020-12-04', '2020-12-05');
INSERT INTO public.journal_details VALUES (14017, 10421, 'attr', 'start_date', '2020-12-03', '2020-12-04');
INSERT INTO public.journal_details VALUES (14018, 10422, 'attr', 'due_date', '2020-12-04', '2020-12-05');
INSERT INTO public.journal_details VALUES (14019, 10422, 'attr', 'start_date', '2020-12-03', '2020-12-04');
INSERT INTO public.journal_details VALUES (14020, 10423, 'attr', 'due_date', '2020-12-04', '2020-12-05');
INSERT INTO public.journal_details VALUES (14021, 10423, 'attr', 'start_date', '2020-12-04', '2020-12-05');
INSERT INTO public.journal_details VALUES (14022, 10424, 'attr', 'due_date', '2020-12-05', '2020-12-04');
INSERT INTO public.journal_details VALUES (14023, 10424, 'attr', 'start_date', '2020-12-05', '2020-12-04');
INSERT INTO public.journal_details VALUES (14024, 10425, 'attr', 'due_date', '2020-12-02', '2020-12-05');
INSERT INTO public.journal_details VALUES (14025, 10425, 'attr', 'start_date', '2020-12-02', '2020-12-05');
INSERT INTO public.journal_details VALUES (14026, 10426, 'attr', 'due_date', '2020-12-02', '2020-12-05');
INSERT INTO public.journal_details VALUES (14027, 10426, 'attr', 'start_date', '2020-12-02', '2020-12-05');
INSERT INTO public.journal_details VALUES (14028, 10427, 'attr', 'due_date', '2020-12-02', '2020-12-05');
INSERT INTO public.journal_details VALUES (14029, 10427, 'attr', 'start_date', '2020-12-02', '2020-12-05');
INSERT INTO public.journal_details VALUES (14030, 10428, 'attr', 'due_date', '2020-12-01', '2020-12-04');
INSERT INTO public.journal_details VALUES (14031, 10428, 'attr', 'start_date', '2020-12-01', '2020-12-04');
INSERT INTO public.journal_details VALUES (14032, 10429, 'attr', 'due_date', '2020-12-01', '2020-12-04');
INSERT INTO public.journal_details VALUES (14033, 10429, 'attr', 'start_date', '2020-12-01', '2020-12-04');
INSERT INTO public.journal_details VALUES (14034, 10430, 'attr', 'description', '', 'Lỗi ko cho xóa');
INSERT INTO public.journal_details VALUES (14035, 10431, 'attr', 'due_date', NULL, '2020-12-05');
INSERT INTO public.journal_details VALUES (14036, 10431, 'attr', 'fixed_version_id', '33', '65');
INSERT INTO public.journal_details VALUES (14037, 10431, 'attr', 'start_date', '2020-12-04', '2020-12-05');
INSERT INTO public.journal_details VALUES (14038, 10432, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14039, 10433, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14040, 10434, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14041, 10435, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14042, 10436, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14043, 10437, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14044, 10438, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14045, 10439, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14046, 10440, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14047, 10440, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14048, 10440, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14049, 10440, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14050, 10441, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14051, 10441, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14052, 10441, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14053, 10441, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14054, 10442, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14055, 10442, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14056, 10442, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14057, 10442, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14058, 10443, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14059, 10443, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14060, 10443, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14061, 10443, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14062, 10444, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14063, 10444, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14064, 10444, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14065, 10444, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14066, 10445, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14067, 10445, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14068, 10445, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14069, 10445, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14070, 10446, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14071, 10446, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14072, 10446, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14073, 10446, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14074, 10447, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14075, 10447, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14076, 10447, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14077, 10447, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14078, 10448, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14079, 10448, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14080, 10448, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14081, 10448, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14082, 10449, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14083, 10449, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14084, 10449, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14085, 10449, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14086, 10450, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14087, 10450, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14088, 10450, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14089, 10450, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14090, 10451, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14091, 10451, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14092, 10451, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14093, 10451, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14094, 10452, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14095, 10452, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14096, 10452, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14097, 10452, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14098, 10453, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14099, 10453, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14100, 10453, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14101, 10453, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14102, 10454, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14103, 10454, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14104, 10454, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14105, 10454, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14106, 10455, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14107, 10455, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14108, 10455, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14109, 10455, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14110, 10456, 'attr', 'tracker_id', '3', '1');
INSERT INTO public.journal_details VALUES (14111, 10457, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14112, 10457, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14113, 10457, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14114, 10458, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14115, 10458, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14116, 10458, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14117, 10459, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14118, 10459, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14119, 10459, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14120, 10460, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14121, 10460, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14122, 10460, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14123, 10461, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14124, 10461, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14125, 10461, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14126, 10462, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14127, 10462, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14128, 10462, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14129, 10463, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14130, 10463, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14131, 10463, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14132, 10464, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14133, 10464, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14134, 10465, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14135, 10465, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14136, 10466, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14137, 10466, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14138, 10467, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14139, 10467, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14140, 10468, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14141, 10468, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14142, 10469, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14143, 10469, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14144, 10470, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14145, 10470, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14146, 10471, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14147, 10472, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14148, 10473, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14149, 10474, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14150, 10475, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14151, 10476, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14152, 10477, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14153, 10478, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14154, 10479, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14155, 10480, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14156, 10481, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14157, 10482, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14158, 10483, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14159, 10484, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14160, 10485, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14161, 10485, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14162, 10486, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14163, 10486, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14164, 10487, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14165, 10487, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14166, 10488, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14167, 10488, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14168, 10489, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14169, 10489, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14170, 10490, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14171, 10490, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14172, 10491, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14173, 10491, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14174, 10492, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14175, 10493, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14176, 10494, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14177, 10495, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14178, 10496, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14179, 10497, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14180, 10498, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14181, 10499, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14182, 10499, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14183, 10500, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14184, 10500, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14185, 10501, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14186, 10501, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14187, 10502, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14188, 10502, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14189, 10503, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14190, 10503, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14191, 10504, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14192, 10504, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14193, 10505, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14194, 10505, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14195, 10506, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14196, 10506, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14197, 10507, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14198, 10507, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14199, 10508, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14200, 10508, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14201, 10508, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14202, 10509, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14203, 10509, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14204, 10509, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14205, 10510, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14206, 10510, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14207, 10510, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14208, 10511, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14209, 10511, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14210, 10511, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14211, 10512, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14212, 10512, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14213, 10512, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14214, 10513, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14215, 10513, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14216, 10513, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14217, 10514, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14218, 10514, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14219, 10514, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14220, 10515, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14221, 10515, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14222, 10515, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14223, 10515, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14224, 10515, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14225, 10516, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14226, 10516, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14227, 10516, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14228, 10516, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14229, 10516, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14230, 10517, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14231, 10517, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14232, 10517, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14233, 10517, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14234, 10517, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14235, 10518, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14236, 10518, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14237, 10518, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14238, 10518, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14239, 10518, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14240, 10519, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14241, 10519, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14242, 10519, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14243, 10519, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14244, 10519, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14245, 10520, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (14246, 10520, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14247, 10520, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14248, 10520, 'attr', 'start_date', '2020-12-04', '2020-12-02');
INSERT INTO public.journal_details VALUES (14249, 10520, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14250, 10521, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14251, 10522, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14252, 10523, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14253, 10523, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14254, 10524, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14255, 10525, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14256, 10526, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14257, 10527, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14258, 10528, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14259, 10529, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14260, 10530, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14261, 10530, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14262, 10531, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14263, 10532, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14264, 10533, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14265, 10534, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14266, 10534, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14267, 10535, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14268, 10535, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14269, 10536, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14270, 10537, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14271, 10538, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14272, 10538, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14273, 10539, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14274, 10540, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14275, 10540, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14276, 10541, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14277, 10542, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14278, 10543, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14279, 10544, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14280, 10545, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14281, 10545, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14282, 10546, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14283, 10546, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14284, 10547, 'attr', 'due_date', '2020-12-02', '2020-12-04');
INSERT INTO public.journal_details VALUES (14285, 10547, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14286, 10547, 'attr', 'start_date', '2020-12-02', '2020-12-04');
INSERT INTO public.journal_details VALUES (14287, 10547, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14288, 10548, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14289, 10548, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14290, 10549, 'attr', 'subject', 'Thêm đơn vị tính cho thẻ kho', 'Thêm đơn vị tính cho thẻ kho và tồn kho');
INSERT INTO public.journal_details VALUES (14291, 10550, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14292, 10551, 'attr', 'due_date', '2020-12-03', '2020-12-05');
INSERT INTO public.journal_details VALUES (14293, 10551, 'attr', 'start_date', '2020-12-03', '2020-12-05');
INSERT INTO public.journal_details VALUES (14294, 10552, 'attr', 'due_date', '2020-12-04', '2020-12-05');
INSERT INTO public.journal_details VALUES (14295, 10552, 'attr', 'start_date', '2020-12-03', '2020-12-05');
INSERT INTO public.journal_details VALUES (14296, 10553, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14297, 10554, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14298, 10555, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14299, 10556, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14300, 10557, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14301, 10558, 'attachment', '158', NULL, 'clipboard-202012050854-aco5l.png');
INSERT INTO public.journal_details VALUES (14302, 10558, 'attr', 'description', '', '![](clipboard-202012050854-aco5l.png)
');
INSERT INTO public.journal_details VALUES (14303, 10559, 'attr', 'assigned_to_id', '39', '41');
INSERT INTO public.journal_details VALUES (14304, 10560, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14305, 10560, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14306, 10561, 'attachment', '160', NULL, 'clipboard-202012050927-ayq8s.png');
INSERT INTO public.journal_details VALUES (14307, 10561, 'attr', 'description', '![](clipboard-202012050926-ptvqr.png)
', '![](clipboard-202012050927-ayq8s.png)
');
INSERT INTO public.journal_details VALUES (14308, 10562, 'attr', 'subject', 'Sai số lượng xuất hàng khi mua sản phẩm khuyên mãi cùng loại', 'Sai số lượng xuất hàng khi mua sản phẩm khuyến mãi cùng loại');
INSERT INTO public.journal_details VALUES (14309, 10563, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14310, 10564, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14311, 10565, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14312, 10566, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14313, 10567, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14314, 10568, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14315, 10569, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14316, 10569, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14317, 10570, 'attr', 'assigned_to_id', '41', '40');
INSERT INTO public.journal_details VALUES (14318, 10571, 'attr', 'assigned_to_id', '41', '40');
INSERT INTO public.journal_details VALUES (14319, 10572, 'attr', 'assigned_to_id', '41', '40');
INSERT INTO public.journal_details VALUES (14320, 10573, 'attr', 'assigned_to_id', '41', '40');
INSERT INTO public.journal_details VALUES (14321, 10574, 'attr', 'assigned_to_id', '41', '40');
INSERT INTO public.journal_details VALUES (14322, 10575, 'attr', 'assigned_to_id', '41', '40');
INSERT INTO public.journal_details VALUES (14323, 10576, 'attr', 'assigned_to_id', '41', '40');
INSERT INTO public.journal_details VALUES (14324, 10577, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (14325, 10578, 'attr', 'assigned_to_id', '40', '41');
INSERT INTO public.journal_details VALUES (14326, 10579, 'attr', 'assigned_to_id', '40', '41');
INSERT INTO public.journal_details VALUES (14327, 10580, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14328, 10581, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14329, 10582, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14330, 10583, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14331, 10584, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14332, 10585, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14333, 10586, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14334, 10587, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14335, 10588, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14336, 10589, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14337, 10590, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14338, 10591, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14339, 10592, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14340, 10593, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14341, 10594, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14342, 10595, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14343, 10596, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14344, 10597, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14345, 10598, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14346, 10599, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14347, 10600, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14348, 10601, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14349, 10602, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14350, 10603, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14351, 10604, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14352, 10604, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14353, 10605, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14354, 10605, 'attr', 'fixed_version_id', '65', '33');
INSERT INTO public.journal_details VALUES (14355, 10605, 'attr', 'start_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14356, 10606, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14357, 10607, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14358, 10608, 'attr', 'due_date', '2020-11-30', '2020-12-07');
INSERT INTO public.journal_details VALUES (14359, 10608, 'attr', 'fixed_version_id', '65', '33');
INSERT INTO public.journal_details VALUES (14360, 10608, 'attr', 'start_date', '2020-11-30', '2020-12-07');
INSERT INTO public.journal_details VALUES (14361, 10609, 'attr', 'due_date', '2020-11-30', '2020-12-07');
INSERT INTO public.journal_details VALUES (14362, 10609, 'attr', 'fixed_version_id', '65', '33');
INSERT INTO public.journal_details VALUES (14363, 10609, 'attr', 'start_date', '2020-11-30', '2020-12-07');
INSERT INTO public.journal_details VALUES (14364, 10610, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14365, 10611, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14366, 10612, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14367, 10613, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14368, 10614, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14369, 10615, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14370, 10616, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14371, 10617, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14372, 10618, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14373, 10619, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14374, 10620, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14375, 10621, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14376, 10622, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14377, 10623, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14378, 10624, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14379, 10625, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14380, 10626, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14381, 10627, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14382, 10628, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14383, 10629, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14384, 10630, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14385, 10631, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14386, 10632, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14387, 10633, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14388, 10634, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14389, 10635, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14390, 10636, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14391, 10637, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14392, 10638, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14393, 10639, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14394, 10640, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14395, 10641, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14396, 10642, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14397, 10643, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14398, 10644, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14399, 10645, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14400, 10646, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14401, 10647, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14402, 10648, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14403, 10649, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14404, 10650, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14405, 10651, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14406, 10652, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14407, 10653, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14408, 10654, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14409, 10655, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14410, 10656, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14411, 10657, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14412, 10658, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14413, 10659, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14414, 10660, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14415, 10661, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14416, 10662, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14417, 10663, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14418, 10664, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14419, 10665, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14420, 10666, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14421, 10667, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14422, 10668, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14423, 10669, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14424, 10670, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14425, 10671, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14426, 10672, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14427, 10673, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14428, 10673, 'attr', 'start_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14429, 10674, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14430, 10674, 'attr', 'start_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14431, 10675, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14432, 10675, 'attr', 'start_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14433, 10676, 'attr', 'done_ratio', '0', '70');
INSERT INTO public.journal_details VALUES (14434, 10677, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14435, 10677, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14436, 10678, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14437, 10678, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14438, 10679, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14439, 10679, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14440, 10680, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (14441, 10681, 'attr', 'fixed_version_id', '64', '66');
INSERT INTO public.journal_details VALUES (14442, 10682, 'attr', 'fixed_version_id', '64', '66');
INSERT INTO public.journal_details VALUES (14443, 10683, 'attr', 'fixed_version_id', '64', '66');
INSERT INTO public.journal_details VALUES (14444, 10684, 'attr', 'fixed_version_id', '64', '66');
INSERT INTO public.journal_details VALUES (14445, 10685, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14446, 10686, 'attr', 'due_date', '2020-12-05', '2020-12-12');
INSERT INTO public.journal_details VALUES (14447, 10686, 'attr', 'start_date', '2020-11-30', '2020-12-07');
INSERT INTO public.journal_details VALUES (14448, 10687, 'attr', 'due_date', '2020-12-05', '2020-12-12');
INSERT INTO public.journal_details VALUES (14449, 10687, 'attr', 'start_date', '2020-11-30', '2020-12-07');
INSERT INTO public.journal_details VALUES (14450, 10688, 'attr', 'due_date', '2020-12-05', '2020-12-12');
INSERT INTO public.journal_details VALUES (14451, 10688, 'attr', 'start_date', '2020-11-30', '2020-12-07');
INSERT INTO public.journal_details VALUES (14452, 10689, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14453, 10689, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14454, 10690, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14455, 10690, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14456, 10691, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14457, 10691, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14458, 10692, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14459, 10692, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14460, 10693, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (14461, 10694, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (14462, 10695, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (14463, 10696, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14464, 10697, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14465, 10698, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14466, 10699, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14467, 10700, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14468, 10701, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14469, 10702, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14470, 10703, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14471, 10704, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14472, 10705, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14473, 10706, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14474, 10707, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14475, 10708, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14476, 10709, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14478, 10711, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14479, 10712, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14480, 10713, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14481, 10714, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14482, 10715, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14483, 10716, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14484, 10717, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14487, 10720, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14488, 10721, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14489, 10722, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14490, 10723, 'attr', 'fixed_version_id', '65', '67');
INSERT INTO public.journal_details VALUES (14491, 10724, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14492, 10725, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14493, 10726, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14494, 10727, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14495, 10728, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14496, 10728, 'attr', 'start_date', '2020-12-04', '2020-12-07');
INSERT INTO public.journal_details VALUES (14497, 10729, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14498, 10729, 'attr', 'start_date', '2020-12-04', '2020-12-07');
INSERT INTO public.journal_details VALUES (14499, 10730, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14500, 10730, 'attr', 'start_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14501, 10731, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14502, 10731, 'attr', 'start_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14503, 10732, 'attr', 'due_date', '2020-12-04', '2020-12-07');
INSERT INTO public.journal_details VALUES (14504, 10732, 'attr', 'start_date', '2020-12-04', '2020-12-07');
INSERT INTO public.journal_details VALUES (14505, 10733, 'attr', 'due_date', '2020-12-04', '2020-12-07');
INSERT INTO public.journal_details VALUES (14506, 10733, 'attr', 'start_date', '2020-12-04', '2020-12-07');
INSERT INTO public.journal_details VALUES (14507, 10734, 'attr', 'due_date', '2020-12-04', '2020-12-07');
INSERT INTO public.journal_details VALUES (14508, 10734, 'attr', 'start_date', '2020-12-04', '2020-12-07');
INSERT INTO public.journal_details VALUES (14509, 10735, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14510, 10735, 'attr', 'start_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14511, 10736, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14512, 10736, 'attr', 'start_date', '2020-12-04', '2020-12-07');
INSERT INTO public.journal_details VALUES (14513, 10737, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14514, 10737, 'attr', 'start_date', '2020-12-04', '2020-12-07');
INSERT INTO public.journal_details VALUES (14515, 10738, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14516, 10738, 'attr', 'start_date', '2020-12-04', '2020-12-07');
INSERT INTO public.journal_details VALUES (14517, 10739, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14518, 10739, 'attr', 'start_date', '2020-12-04', '2020-12-07');
INSERT INTO public.journal_details VALUES (14519, 10740, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14520, 10740, 'attr', 'start_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14521, 10741, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14522, 10741, 'attr', 'start_date', '2020-12-04', '2020-12-07');
INSERT INTO public.journal_details VALUES (14525, 10743, 'attr', 'due_date', '2020-12-04', '2020-12-07');
INSERT INTO public.journal_details VALUES (14526, 10743, 'attr', 'start_date', '2020-12-03', '2020-12-07');
INSERT INTO public.journal_details VALUES (14527, 10744, 'attr', 'due_date', '2020-12-04', '2020-12-07');
INSERT INTO public.journal_details VALUES (14528, 10744, 'attr', 'start_date', '2020-12-03', '2020-12-07');
INSERT INTO public.journal_details VALUES (14529, 10745, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14530, 10745, 'attr', 'start_date', '2020-12-04', '2020-12-07');
INSERT INTO public.journal_details VALUES (14531, 10746, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14532, 10746, 'attr', 'start_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14533, 10747, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14534, 10747, 'attr', 'start_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14535, 10748, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14536, 10748, 'attr', 'start_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14537, 10749, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14538, 10749, 'attr', 'start_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14543, 10752, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14544, 10752, 'attr', 'start_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14545, 10753, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14546, 10753, 'attr', 'start_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14547, 10754, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14548, 10754, 'attr', 'start_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14549, 10755, 'attr', 'due_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14550, 10755, 'attr', 'start_date', '2020-12-05', '2020-12-07');
INSERT INTO public.journal_details VALUES (14551, 10756, 'attr', 'due_date', '2020-12-08', '2020-12-07');
INSERT INTO public.journal_details VALUES (14552, 10757, 'attr', 'due_date', '2020-12-07', '2020-12-09');
INSERT INTO public.journal_details VALUES (14553, 10757, 'attr', 'start_date', '2020-12-07', '2020-12-09');
INSERT INTO public.journal_details VALUES (14554, 10758, 'attr', 'due_date', '2020-12-07', '2020-12-09');
INSERT INTO public.journal_details VALUES (14555, 10758, 'attr', 'start_date', '2020-12-07', '2020-12-09');
INSERT INTO public.journal_details VALUES (14556, 10759, 'attr', 'due_date', '2020-12-07', '2020-12-08');
INSERT INTO public.journal_details VALUES (14557, 10759, 'attr', 'start_date', '2020-12-07', '2020-12-08');
INSERT INTO public.journal_details VALUES (14558, 10760, 'attr', 'due_date', '2020-12-07', '2020-12-08');
INSERT INTO public.journal_details VALUES (14559, 10760, 'attr', 'start_date', '2020-12-07', '2020-12-08');
INSERT INTO public.journal_details VALUES (14560, 10761, 'attr', 'due_date', '2020-12-07', '2020-12-08');
INSERT INTO public.journal_details VALUES (14561, 10761, 'attr', 'start_date', '2020-12-07', '2020-12-08');
INSERT INTO public.journal_details VALUES (14562, 10762, 'attr', 'due_date', '2020-12-07', '2020-12-08');
INSERT INTO public.journal_details VALUES (14563, 10762, 'attr', 'start_date', '2020-12-07', '2020-12-08');
INSERT INTO public.journal_details VALUES (14564, 10763, 'attr', 'due_date', '2020-12-07', '2020-12-08');
INSERT INTO public.journal_details VALUES (14565, 10763, 'attr', 'start_date', '2020-12-07', '2020-12-08');
INSERT INTO public.journal_details VALUES (14566, 10764, 'attr', 'due_date', '2020-12-07', '2020-12-08');
INSERT INTO public.journal_details VALUES (14567, 10764, 'attr', 'start_date', '2020-12-07', '2020-12-08');
INSERT INTO public.journal_details VALUES (14786, 10920, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14568, 10765, 'attr', 'due_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14569, 10765, 'attr', 'start_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14570, 10766, 'attr', 'due_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14571, 10766, 'attr', 'start_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14572, 10767, 'attr', 'due_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14573, 10767, 'attr', 'start_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14574, 10768, 'attr', 'due_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14575, 10768, 'attr', 'start_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14576, 10769, 'attr', 'due_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14577, 10769, 'attr', 'start_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14578, 10770, 'attr', 'due_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14579, 10770, 'attr', 'start_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14580, 10771, 'attr', 'due_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14581, 10771, 'attr', 'start_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14586, 10774, 'attr', 'due_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14587, 10774, 'attr', 'start_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14588, 10775, 'attr', 'due_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14589, 10775, 'attr', 'start_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14590, 10776, 'attr', 'due_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14591, 10776, 'attr', 'start_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14592, 10777, 'attr', 'due_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14593, 10777, 'attr', 'start_date', '2020-12-07', '2020-12-10');
INSERT INTO public.journal_details VALUES (14594, 10778, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (14595, 10779, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (14596, 10780, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (14597, 10781, 'attr', 'due_date', '2020-12-07', '2020-12-08');
INSERT INTO public.journal_details VALUES (14598, 10781, 'attr', 'start_date', '2020-12-07', '2020-12-08');
INSERT INTO public.journal_details VALUES (14599, 10782, 'attr', 'due_date', '2020-12-07', '2020-12-08');
INSERT INTO public.journal_details VALUES (14600, 10782, 'attr', 'start_date', '2020-12-07', '2020-12-08');
INSERT INTO public.journal_details VALUES (14601, 10783, 'attr', 'due_date', '2020-12-07', '2020-12-08');
INSERT INTO public.journal_details VALUES (14602, 10783, 'attr', 'start_date', '2020-12-07', '2020-12-08');
INSERT INTO public.journal_details VALUES (14603, 10784, 'attr', 'due_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14604, 10784, 'attr', 'start_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14605, 10785, 'attr', 'due_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14606, 10785, 'attr', 'start_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14607, 10786, 'attr', 'due_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14608, 10786, 'attr', 'start_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14609, 10787, 'attr', 'due_date', '2020-12-10', '2020-12-08');
INSERT INTO public.journal_details VALUES (14610, 10787, 'attr', 'start_date', '2020-12-10', '2020-12-07');
INSERT INTO public.journal_details VALUES (14611, 10788, 'attr', 'due_date', '2020-12-10', '2020-12-08');
INSERT INTO public.journal_details VALUES (14612, 10788, 'attr', 'start_date', '2020-12-10', '2020-12-07');
INSERT INTO public.journal_details VALUES (14613, 10789, 'attr', 'due_date', '2020-12-10', '2020-12-08');
INSERT INTO public.journal_details VALUES (14614, 10789, 'attr', 'start_date', '2020-12-10', '2020-12-07');
INSERT INTO public.journal_details VALUES (14615, 10790, 'attr', 'due_date', '2020-12-10', '2020-12-08');
INSERT INTO public.journal_details VALUES (14616, 10790, 'attr', 'start_date', '2020-12-10', '2020-12-07');
INSERT INTO public.journal_details VALUES (14617, 10791, 'attr', 'due_date', '2020-12-10', '2020-12-08');
INSERT INTO public.journal_details VALUES (14618, 10791, 'attr', 'start_date', '2020-12-10', '2020-12-07');
INSERT INTO public.journal_details VALUES (14621, 10794, 'attr', 'due_date', '2020-12-09', '2020-12-11');
INSERT INTO public.journal_details VALUES (14622, 10794, 'attr', 'start_date', '2020-12-09', '2020-12-11');
INSERT INTO public.journal_details VALUES (14623, 10795, 'attr', 'due_date', '2020-12-09', '2020-12-11');
INSERT INTO public.journal_details VALUES (14624, 10795, 'attr', 'start_date', '2020-12-09', '2020-12-11');
INSERT INTO public.journal_details VALUES (14625, 10796, 'attr', 'due_date', '2020-12-09', '2020-12-11');
INSERT INTO public.journal_details VALUES (14626, 10796, 'attr', 'start_date', '2020-12-09', '2020-12-11');
INSERT INTO public.journal_details VALUES (14627, 10797, 'attr', 'due_date', '2020-12-08', '2020-12-12');
INSERT INTO public.journal_details VALUES (14628, 10797, 'attr', 'start_date', '2020-12-08', '2020-12-12');
INSERT INTO public.journal_details VALUES (14629, 10798, 'attr', 'due_date', '2020-12-08', '2020-12-12');
INSERT INTO public.journal_details VALUES (14630, 10798, 'attr', 'start_date', '2020-12-08', '2020-12-12');
INSERT INTO public.journal_details VALUES (14631, 10799, 'attr', 'due_date', '2020-12-08', '2020-12-12');
INSERT INTO public.journal_details VALUES (14632, 10799, 'attr', 'start_date', '2020-12-08', '2020-12-12');
INSERT INTO public.journal_details VALUES (14633, 10800, 'attr', 'due_date', '2020-12-10', '2020-12-12');
INSERT INTO public.journal_details VALUES (14634, 10800, 'attr', 'start_date', '2020-12-10', '2020-12-12');
INSERT INTO public.journal_details VALUES (14635, 10801, 'attr', 'due_date', '2020-12-10', '2020-12-12');
INSERT INTO public.journal_details VALUES (14636, 10801, 'attr', 'start_date', '2020-12-10', '2020-12-12');
INSERT INTO public.journal_details VALUES (14637, 10802, 'attr', 'due_date', '2020-12-10', '2020-12-12');
INSERT INTO public.journal_details VALUES (14638, 10802, 'attr', 'start_date', '2020-12-10', '2020-12-12');
INSERT INTO public.journal_details VALUES (14639, 10803, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14640, 10804, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14641, 10805, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14642, 10806, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14643, 10807, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14644, 10808, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14645, 10809, 'attr', 'assigned_to_id', '41', '39');
INSERT INTO public.journal_details VALUES (14646, 10810, 'attr', 'due_date', '2020-12-09', '2020-12-08');
INSERT INTO public.journal_details VALUES (14647, 10810, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14648, 10810, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14649, 10811, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14650, 10811, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14651, 10812, 'attr', 'due_date', '2020-12-09', '2020-12-07');
INSERT INTO public.journal_details VALUES (14652, 10812, 'attr', 'start_date', '2020-12-09', '2020-12-07');
INSERT INTO public.journal_details VALUES (14653, 10813, 'attr', 'due_date', '2020-12-08', '2020-12-07');
INSERT INTO public.journal_details VALUES (14654, 10813, 'attr', 'start_date', '2020-12-08', '2020-12-07');
INSERT INTO public.journal_details VALUES (14655, 10814, 'attr', 'due_date', '2020-12-08', '2020-12-07');
INSERT INTO public.journal_details VALUES (14656, 10814, 'attr', 'start_date', '2020-12-08', '2020-12-07');
INSERT INTO public.journal_details VALUES (14657, 10815, 'attr', 'due_date', '2020-12-08', '2020-12-07');
INSERT INTO public.journal_details VALUES (14658, 10815, 'attr', 'start_date', '2020-12-08', '2020-12-07');
INSERT INTO public.journal_details VALUES (14659, 10816, 'attr', 'fixed_version_id', '33', '67');
INSERT INTO public.journal_details VALUES (14660, 10817, 'attr', 'fixed_version_id', '33', '67');
INSERT INTO public.journal_details VALUES (14661, 10818, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14662, 10819, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14663, 10820, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14664, 10821, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14665, 10822, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14666, 10823, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14667, 10824, 'attr', 'fixed_version_id', '61', '66');
INSERT INTO public.journal_details VALUES (14668, 10825, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (14669, 10826, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (14670, 10827, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (14671, 10828, 'attr', 'done_ratio', '0', '70');
INSERT INTO public.journal_details VALUES (14672, 10829, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (14673, 10830, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14674, 10831, 'attr', 'fixed_version_id', '67', '68');
INSERT INTO public.journal_details VALUES (14675, 10832, 'attr', 'fixed_version_id', '67', '68');
INSERT INTO public.journal_details VALUES (14676, 10833, 'attr', 'fixed_version_id', '67', '68');
INSERT INTO public.journal_details VALUES (14677, 10834, 'attr', 'fixed_version_id', '67', '68');
INSERT INTO public.journal_details VALUES (14678, 10835, 'attr', 'fixed_version_id', '67', '68');
INSERT INTO public.journal_details VALUES (14679, 10836, 'attr', 'fixed_version_id', '67', '68');
INSERT INTO public.journal_details VALUES (14680, 10837, 'attr', 'fixed_version_id', '67', '68');
INSERT INTO public.journal_details VALUES (14681, 10838, 'attr', 'fixed_version_id', '67', '68');
INSERT INTO public.journal_details VALUES (14682, 10839, 'attr', 'fixed_version_id', '67', '68');
INSERT INTO public.journal_details VALUES (14683, 10840, 'attr', 'fixed_version_id', '67', '68');
INSERT INTO public.journal_details VALUES (14686, 10843, 'attr', 'fixed_version_id', '67', '68');
INSERT INTO public.journal_details VALUES (14687, 10844, 'attr', 'fixed_version_id', '67', '68');
INSERT INTO public.journal_details VALUES (14688, 10845, 'attr', 'fixed_version_id', '67', '68');
INSERT INTO public.journal_details VALUES (14689, 10846, 'attr', 'fixed_version_id', '67', '68');
INSERT INTO public.journal_details VALUES (14690, 10847, 'attr', 'subject', 'Chi tiết theo nhân viên giao hàng - in phiếu theo thời gian, tính tổng theo PXK và tổng theo nvgh', 'Chuyển thành báo cáo xuất hàng theo nhân viên');
INSERT INTO public.journal_details VALUES (14691, 10847, 'attr', 'assigned_to_id', '41', '40');
INSERT INTO public.journal_details VALUES (14692, 10848, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14693, 10849, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14694, 10850, 'attr', 'assigned_to_id', '41', '39');
INSERT INTO public.journal_details VALUES (14695, 10851, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14696, 10851, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14697, 10852, 'attr', 'due_date', '2020-12-07', '2020-12-08');
INSERT INTO public.journal_details VALUES (14698, 10852, 'attr', 'start_date', '2020-12-07', '2020-12-08');
INSERT INTO public.journal_details VALUES (14699, 10853, 'attr', 'fixed_version_id', '68', '67');
INSERT INTO public.journal_details VALUES (14700, 10854, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14701, 10855, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14702, 10856, 'attachment', '161', NULL, 'Sản lượng bán hàng theo nhân viên.jpg');
INSERT INTO public.journal_details VALUES (14703, 10857, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14704, 10858, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14705, 10859, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (14706, 10860, 'attr', 'subject', 'Thêm báo cáo chi tiết đơn hàng theo từng nhân viên', 'Chuyển in phiếu giao hàng theo NVBH thành Báo cáo chi tiết đơn hàng theo từng nhân viên');
INSERT INTO public.journal_details VALUES (14707, 10861, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14708, 10862, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14709, 10863, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (14710, 10864, 'attr', 'done_ratio', '100', '50');
INSERT INTO public.journal_details VALUES (14711, 10865, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14712, 10866, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14713, 10867, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14714, 10868, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14715, 10869, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (14716, 10870, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (14717, 10871, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (14718, 10872, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (14719, 10873, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (14720, 10874, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (14721, 10875, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (14722, 10876, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (14723, 10877, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (14724, 10878, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (14725, 10879, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (14726, 10880, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (14727, 10881, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (14728, 10882, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (14729, 10883, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14730, 10884, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14731, 10885, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (14732, 10886, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14733, 10887, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14734, 10888, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14735, 10889, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14736, 10890, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14737, 10891, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14738, 10892, 'attr', 'due_date', '2020-12-09', '2020-12-08');
INSERT INTO public.journal_details VALUES (14739, 10893, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14740, 10894, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (14741, 10895, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (14742, 10896, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14743, 10897, 'attr', 'due_date', NULL, '2020-12-09');
INSERT INTO public.journal_details VALUES (14744, 10897, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (14745, 10897, 'attr', 'fixed_version_id', '33', '67');
INSERT INTO public.journal_details VALUES (14746, 10897, 'attr', 'start_date', '2020-10-19', '2020-12-08');
INSERT INTO public.journal_details VALUES (14747, 10897, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (14748, 10898, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14749, 10899, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (14750, 10900, 'attr', 'subject', 'Sắp xếp và đánh số tờ tài liệu có thời hạn - Tài', 'Sắp xếp và đánh số tờ tài liệu có thời hạn - Tài và Phương');
INSERT INTO public.journal_details VALUES (14751, 10901, 'attr', 'assigned_to_id', NULL, '34');
INSERT INTO public.journal_details VALUES (14752, 10902, 'attr', 'assigned_to_id', NULL, '28');
INSERT INTO public.journal_details VALUES (14753, 10903, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14754, 10903, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14755, 10904, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14756, 10904, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14757, 10905, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14758, 10905, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14761, 10907, 'attr', 'due_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14762, 10907, 'attr', 'start_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14763, 10908, 'attr', 'due_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14764, 10908, 'attr', 'start_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14765, 10909, 'attr', 'due_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14766, 10909, 'attr', 'start_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14767, 10910, 'attr', 'due_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14768, 10910, 'attr', 'start_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14769, 10911, 'attr', 'due_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14770, 10911, 'attr', 'start_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14771, 10912, 'attr', 'due_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14772, 10912, 'attr', 'start_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14775, 10914, 'attr', 'due_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14776, 10914, 'attr', 'start_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14777, 10915, 'attr', 'due_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14778, 10915, 'attr', 'start_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14779, 10916, 'attr', 'due_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14780, 10916, 'attr', 'start_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14781, 10917, 'attr', 'due_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14782, 10917, 'attr', 'start_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14783, 10918, 'attr', 'due_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14784, 10918, 'attr', 'start_date', '2020-12-08', '2020-12-09');
INSERT INTO public.journal_details VALUES (14785, 10919, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14787, 10921, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14788, 10922, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14789, 10923, 'attr', 'subject', 'Khi nhập hàng với 2 đơn vị tính khác nhau trong cùng 1 sản phẩm thì giá trị nhập vào sẽ khác nhau', 'Khi nhập hàng với 2 đơn vị tính khác nhau trong cùng 1 sản phẩm thì khi tạo đơn hàng giá trị sẽ khác nhau');
INSERT INTO public.journal_details VALUES (14790, 10924, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14791, 10925, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14792, 10926, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14793, 10927, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14794, 10928, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14795, 10929, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14796, 10930, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14797, 10931, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14798, 10932, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (14799, 10933, 'attr', 'due_date', NULL, '2020-12-09');
INSERT INTO public.journal_details VALUES (14800, 10933, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14801, 10933, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (14802, 10933, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14803, 10934, 'attr', 'due_date', NULL, '2020-12-09');
INSERT INTO public.journal_details VALUES (14804, 10934, 'attr', 'assigned_to_id', NULL, '9');
INSERT INTO public.journal_details VALUES (14805, 10935, 'attr', 'subject', 'tồn cuối quy đổi ở DMSP hiển thị sai số lượng khi sản phẩm nhập vào có đơn vị tính và chai', 'tồn cuối quy đổi ở Thẻ kho và tồn kho hiển thị sai số lượng khi sản phẩm nhập vào có đơn vị tính và chai');
INSERT INTO public.journal_details VALUES (14806, 10936, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14807, 10937, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14808, 10938, 'attr', 'assigned_to_id', '8', '41');
INSERT INTO public.journal_details VALUES (14809, 10939, 'attr', 'assigned_to_id', '8', '41');
INSERT INTO public.journal_details VALUES (14810, 10940, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (14811, 10941, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (14812, 10942, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14813, 10943, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14814, 10944, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14815, 10945, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14816, 10946, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14817, 10947, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14818, 10948, 'attr', 'subject', 'Update giao diện Nhập hàng, Xuất hàng, Kiểm kho, Khuyến mãi ,...', 'Update giao diện Nhập kho, Xuất kho, Kiểm kho,Chuyển kho Khuyến mãi ,...');
INSERT INTO public.journal_details VALUES (14819, 10949, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14820, 10950, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14821, 10951, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14822, 10952, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14823, 10953, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14824, 10954, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14825, 10955, 'attr', 'due_date', '2020-12-09', '2020-12-11');
INSERT INTO public.journal_details VALUES (14826, 10955, 'attr', 'start_date', '2020-12-08', '2020-12-10');
INSERT INTO public.journal_details VALUES (14827, 10956, 'attr', 'assigned_to_id', '40', '41');
INSERT INTO public.journal_details VALUES (14828, 10957, 'attr', 'fixed_version_id', '67', '68');
INSERT INTO public.journal_details VALUES (14829, 10958, 'attr', 'fixed_version_id', '67', '68');
INSERT INTO public.journal_details VALUES (14830, 10959, 'attr', 'assigned_to_id', '41', '40');
INSERT INTO public.journal_details VALUES (14831, 10960, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (14832, 10961, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14833, 10962, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14834, 10963, 'attr', 'due_date', NULL, '2020-12-10');
INSERT INTO public.journal_details VALUES (14835, 10963, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (14836, 10963, 'attr', 'fixed_version_id', NULL, '68');
INSERT INTO public.journal_details VALUES (14837, 10964, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14838, 10965, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14839, 10966, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (14840, 10967, 'attr', 'due_date', '2020-12-09', '2020-12-10');
INSERT INTO public.journal_details VALUES (14841, 10967, 'attr', 'start_date', '2020-12-09', '2020-12-10');
INSERT INTO public.journal_details VALUES (14842, 10968, 'attr', 'due_date', '2020-12-09', '2020-12-10');
INSERT INTO public.journal_details VALUES (14843, 10968, 'attr', 'start_date', '2020-12-09', '2020-12-10');
INSERT INTO public.journal_details VALUES (14844, 10969, 'attr', 'due_date', '2020-12-10', '2020-12-11');
INSERT INTO public.journal_details VALUES (14845, 10969, 'attr', 'start_date', '2020-12-10', '2020-12-11');
INSERT INTO public.journal_details VALUES (14846, 10970, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14847, 10971, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14848, 10972, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14849, 10973, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14850, 10974, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (14851, 10975, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14852, 10976, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14853, 10977, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14854, 10978, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14855, 10979, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14856, 10980, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14857, 10981, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14858, 10982, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (14859, 10983, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14860, 10984, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14861, 10985, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14862, 10986, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14863, 10987, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14864, 10988, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14865, 10989, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14866, 10990, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14867, 10991, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14868, 10992, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14869, 10993, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14870, 10994, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14871, 10995, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14872, 10996, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (14873, 10997, 'attr', 'due_date', '2020-12-11', '2020-12-14');
INSERT INTO public.journal_details VALUES (14874, 10997, 'attr', 'fixed_version_id', '67', '69');
INSERT INTO public.journal_details VALUES (14875, 10997, 'attr', 'start_date', '2020-12-10', '2020-12-14');
INSERT INTO public.journal_details VALUES (14876, 10998, 'attr', 'due_date', '2020-12-09', '2020-12-14');
INSERT INTO public.journal_details VALUES (14877, 10998, 'attr', 'fixed_version_id', '67', '69');
INSERT INTO public.journal_details VALUES (14878, 10998, 'attr', 'start_date', '2020-12-09', '2020-12-14');
INSERT INTO public.journal_details VALUES (14879, 10999, 'attr', 'due_date', '2020-12-09', '2020-12-14');
INSERT INTO public.journal_details VALUES (14880, 10999, 'attr', 'fixed_version_id', '67', '69');
INSERT INTO public.journal_details VALUES (14881, 10999, 'attr', 'start_date', '2020-12-09', '2020-12-14');
INSERT INTO public.journal_details VALUES (14882, 11000, 'attr', 'due_date', '2020-12-10', '2020-12-14');
INSERT INTO public.journal_details VALUES (14883, 11000, 'attr', 'fixed_version_id', '67', '69');
INSERT INTO public.journal_details VALUES (14884, 11000, 'attr', 'start_date', '2020-12-10', '2020-12-14');
INSERT INTO public.journal_details VALUES (14885, 11001, 'attr', 'due_date', '2020-12-10', '2020-12-14');
INSERT INTO public.journal_details VALUES (14886, 11001, 'attr', 'fixed_version_id', '67', '69');
INSERT INTO public.journal_details VALUES (14887, 11001, 'attr', 'start_date', '2020-12-10', '2020-12-14');
INSERT INTO public.journal_details VALUES (14888, 11002, 'attr', 'due_date', '2020-12-10', '2020-12-14');
INSERT INTO public.journal_details VALUES (14889, 11002, 'attr', 'fixed_version_id', '67', '69');
INSERT INTO public.journal_details VALUES (14890, 11002, 'attr', 'start_date', '2020-12-10', '2020-12-14');
INSERT INTO public.journal_details VALUES (14891, 11003, 'attr', 'due_date', '2020-12-14', '2020-12-15');
INSERT INTO public.journal_details VALUES (14892, 11003, 'attr', 'start_date', '2020-12-14', '2020-12-15');
INSERT INTO public.journal_details VALUES (14893, 11004, 'attr', 'due_date', '2020-12-14', '2020-12-15');
INSERT INTO public.journal_details VALUES (14894, 11004, 'attr', 'start_date', '2020-12-14', '2020-12-15');
INSERT INTO public.journal_details VALUES (14895, 11005, 'attr', 'due_date', '2020-12-14', '2020-12-15');
INSERT INTO public.journal_details VALUES (14896, 11005, 'attr', 'start_date', '2020-12-14', '2020-12-15');
INSERT INTO public.journal_details VALUES (14897, 11006, 'attr', 'due_date', '2020-12-14', '2020-12-16');
INSERT INTO public.journal_details VALUES (14898, 11006, 'attr', 'start_date', '2020-12-14', '2020-12-16');
INSERT INTO public.journal_details VALUES (14899, 11007, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14900, 11008, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14901, 11009, 'attr', 'due_date', '2020-12-11', '2020-12-12');
INSERT INTO public.journal_details VALUES (14902, 11009, 'attr', 'start_date', '2020-12-11', '2020-12-12');
INSERT INTO public.journal_details VALUES (14903, 11010, 'attr', 'due_date', '2020-12-11', '2020-12-12');
INSERT INTO public.journal_details VALUES (14904, 11010, 'attr', 'start_date', '2020-12-11', '2020-12-12');
INSERT INTO public.journal_details VALUES (14905, 11011, 'attr', 'due_date', '2020-12-11', '2020-12-12');
INSERT INTO public.journal_details VALUES (14906, 11011, 'attr', 'start_date', '2020-12-11', '2020-12-12');
INSERT INTO public.journal_details VALUES (14907, 11012, 'attr', 'due_date', '2020-12-12', '2020-12-11');
INSERT INTO public.journal_details VALUES (14908, 11012, 'attr', 'start_date', '2020-12-12', '2020-12-11');
INSERT INTO public.journal_details VALUES (14909, 11013, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14910, 11014, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14911, 11015, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14912, 11015, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14913, 11016, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (14914, 11017, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14915, 11018, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14916, 11018, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14917, 11019, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14918, 11020, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14919, 11021, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14920, 11021, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14921, 11022, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14922, 11022, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14923, 11023, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14924, 11023, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14925, 11024, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14926, 11024, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14927, 11025, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14928, 11025, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14929, 11026, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14930, 11026, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14931, 11027, 'attr', 'due_date', NULL, '2020-12-11');
INSERT INTO public.journal_details VALUES (14932, 11027, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14933, 11027, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (14934, 11027, 'attr', 'start_date', '2020-12-12', '2020-12-11');
INSERT INTO public.journal_details VALUES (14935, 11027, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14936, 11028, 'attr', 'fixed_version_id', '67', '69');
INSERT INTO public.journal_details VALUES (14937, 11029, 'attr', 'fixed_version_id', '67', '69');
INSERT INTO public.journal_details VALUES (14938, 11030, 'attr', 'fixed_version_id', '67', '69');
INSERT INTO public.journal_details VALUES (14939, 11031, 'attr', 'fixed_version_id', '67', '69');
INSERT INTO public.journal_details VALUES (14942, 11034, 'attr', 'fixed_version_id', '67', '69');
INSERT INTO public.journal_details VALUES (14943, 11035, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14944, 11035, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14945, 11036, 'attr', 'fixed_version_id', '67', '69');
INSERT INTO public.journal_details VALUES (14946, 11037, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14947, 11037, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14948, 11038, 'attr', 'fixed_version_id', '66', '71');
INSERT INTO public.journal_details VALUES (14949, 11039, 'attr', 'fixed_version_id', '66', '71');
INSERT INTO public.journal_details VALUES (14950, 11040, 'attr', 'fixed_version_id', '66', '71');
INSERT INTO public.journal_details VALUES (14951, 11041, 'attr', 'due_date', '2020-12-12', '2020-12-19');
INSERT INTO public.journal_details VALUES (14952, 11041, 'attr', 'done_ratio', '0', '80');
INSERT INTO public.journal_details VALUES (14953, 11042, 'attr', 'due_date', '2020-12-12', '2020-12-19');
INSERT INTO public.journal_details VALUES (14954, 11042, 'attr', 'done_ratio', '0', '80');
INSERT INTO public.journal_details VALUES (14955, 11043, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14956, 11044, 'attr', 'fixed_version_id', '67', '69');
INSERT INTO public.journal_details VALUES (14958, 11046, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (14959, 11047, 'attr', 'due_date', '2020-12-12', '2020-12-19');
INSERT INTO public.journal_details VALUES (14960, 11048, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (14961, 11048, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (14962, 11049, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (14963, 11050, 'attr', 'due_date', '2020-12-11', '2020-12-14');
INSERT INTO public.journal_details VALUES (14964, 11050, 'attr', 'fixed_version_id', '67', '69');
INSERT INTO public.journal_details VALUES (14965, 11050, 'attr', 'start_date', '2020-12-11', '2020-12-14');
INSERT INTO public.journal_details VALUES (14966, 11051, 'attr', 'due_date', '2020-12-12', '2020-12-14');
INSERT INTO public.journal_details VALUES (14967, 11051, 'attr', 'fixed_version_id', '67', '69');
INSERT INTO public.journal_details VALUES (14968, 11051, 'attr', 'start_date', '2020-12-12', '2020-12-14');
INSERT INTO public.journal_details VALUES (14969, 11052, 'attr', 'due_date', '2020-12-12', '2020-12-14');
INSERT INTO public.journal_details VALUES (14970, 11052, 'attr', 'fixed_version_id', '68', '70');
INSERT INTO public.journal_details VALUES (14971, 11052, 'attr', 'start_date', '2020-12-12', '2020-12-14');
INSERT INTO public.journal_details VALUES (14972, 11053, 'attr', 'due_date', '2020-12-12', '2020-12-15');
INSERT INTO public.journal_details VALUES (14973, 11053, 'attr', 'fixed_version_id', '68', '70');
INSERT INTO public.journal_details VALUES (14974, 11053, 'attr', 'start_date', '2020-12-12', '2020-12-15');
INSERT INTO public.journal_details VALUES (14975, 11054, 'attr', 'due_date', '2020-12-12', '2020-12-15');
INSERT INTO public.journal_details VALUES (14976, 11054, 'attr', 'fixed_version_id', '68', '70');
INSERT INTO public.journal_details VALUES (14977, 11054, 'attr', 'start_date', '2020-12-12', '2020-12-15');
INSERT INTO public.journal_details VALUES (14978, 11055, 'attr', 'due_date', '2020-12-12', '2020-12-16');
INSERT INTO public.journal_details VALUES (14979, 11055, 'attr', 'fixed_version_id', '68', '70');
INSERT INTO public.journal_details VALUES (14980, 11055, 'attr', 'start_date', '2020-12-12', '2020-12-16');
INSERT INTO public.journal_details VALUES (14981, 11056, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (14982, 11057, 'attr', 'due_date', '2020-12-12', '2020-12-17');
INSERT INTO public.journal_details VALUES (14983, 11057, 'attr', 'fixed_version_id', '68', '70');
INSERT INTO public.journal_details VALUES (14984, 11057, 'attr', 'start_date', '2020-12-12', '2020-12-17');
INSERT INTO public.journal_details VALUES (14985, 11058, 'attr', 'due_date', '2020-12-12', '2020-12-17');
INSERT INTO public.journal_details VALUES (14986, 11058, 'attr', 'fixed_version_id', '68', '70');
INSERT INTO public.journal_details VALUES (14987, 11058, 'attr', 'start_date', '2020-12-12', '2020-12-17');
INSERT INTO public.journal_details VALUES (14988, 11059, 'attr', 'due_date', '2020-12-12', '2020-12-17');
INSERT INTO public.journal_details VALUES (14989, 11059, 'attr', 'fixed_version_id', '68', '70');
INSERT INTO public.journal_details VALUES (14990, 11059, 'attr', 'start_date', '2020-12-12', '2020-12-17');
INSERT INTO public.journal_details VALUES (14991, 11060, 'attr', 'due_date', '2020-12-12', '2020-12-17');
INSERT INTO public.journal_details VALUES (14992, 11060, 'attr', 'fixed_version_id', '68', '70');
INSERT INTO public.journal_details VALUES (14993, 11060, 'attr', 'start_date', '2020-12-12', '2020-12-17');
INSERT INTO public.journal_details VALUES (14994, 11061, 'attr', 'due_date', '2020-12-12', '2020-12-18');
INSERT INTO public.journal_details VALUES (14995, 11061, 'attr', 'start_date', '2020-12-12', '2020-12-18');
INSERT INTO public.journal_details VALUES (14996, 11062, 'attr', 'fixed_version_id', '68', '70');
INSERT INTO public.journal_details VALUES (14997, 11063, 'attr', 'due_date', '2020-12-12', '2020-12-19');
INSERT INTO public.journal_details VALUES (14998, 11063, 'attr', 'start_date', '2020-12-12', '2020-12-18');
INSERT INTO public.journal_details VALUES (14999, 11064, 'attr', 'due_date', '2020-12-12', '2020-12-19');
INSERT INTO public.journal_details VALUES (15000, 11064, 'attr', 'start_date', '2020-12-12', '2020-12-18');
INSERT INTO public.journal_details VALUES (15001, 11065, 'attr', 'fixed_version_id', '68', '70');
INSERT INTO public.journal_details VALUES (15002, 11066, 'attr', 'fixed_version_id', '68', '70');
INSERT INTO public.journal_details VALUES (15009, 11069, 'attr', 'fixed_version_id', NULL, '66');
INSERT INTO public.journal_details VALUES (15010, 11070, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (15011, 11071, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (15012, 11072, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (15013, 11073, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (15014, 11074, 'attr', 'subject', '34 Quy hoạch xây dựng xã nông thôn mới xã Bình Minh', '36 Quy hoạch xây dựng xã nông thôn mới xã Bình Minh');
INSERT INTO public.journal_details VALUES (15015, 11075, 'attr', 'subject', 'Cập nhật chỉnh sửa giao diện tạo report ( gọp,tách cột)', 'Cập nhật chỉnh sửa giao diện tạo report ( gọp,tách cột),cập nhật công thức dạng popup');
INSERT INTO public.journal_details VALUES (15016, 11076, 'attr', 'subject', 'Tạo đơn xuất hủy', 'Giao diện tạo đơn xuất hủy');
INSERT INTO public.journal_details VALUES (15017, 11077, 'attr', 'subject', 'Giao diện tạo đơn xuất hủy', 'Giao diện Xuất hủy');
INSERT INTO public.journal_details VALUES (15018, 11078, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (15019, 11079, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15020, 11080, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15021, 11081, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15022, 11082, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15023, 11083, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15024, 11084, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15025, 11085, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15026, 11086, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15027, 11087, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15028, 11088, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15029, 11089, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15030, 11090, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15031, 11091, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15032, 11092, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15033, 11093, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15034, 11094, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15035, 11095, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15036, 11096, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15037, 11097, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15038, 11098, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15039, 11099, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15040, 11100, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (15041, 11101, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (15042, 11102, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (15043, 11103, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15046, 11105, 'attr', 'due_date', '2020-12-09', '2020-12-14');
INSERT INTO public.journal_details VALUES (15047, 11105, 'attr', 'start_date', '2020-12-09', '2020-12-14');
INSERT INTO public.journal_details VALUES (15048, 11106, 'attr', 'due_date', '2020-12-09', '2020-12-14');
INSERT INTO public.journal_details VALUES (15049, 11106, 'attr', 'start_date', '2020-12-09', '2020-12-14');
INSERT INTO public.journal_details VALUES (15050, 11107, 'attr', 'due_date', '2020-12-09', '2020-12-14');
INSERT INTO public.journal_details VALUES (15051, 11107, 'attr', 'start_date', '2020-12-09', '2020-12-14');
INSERT INTO public.journal_details VALUES (15052, 11108, 'attr', 'due_date', '2020-12-09', '2020-12-14');
INSERT INTO public.journal_details VALUES (15053, 11108, 'attr', 'start_date', '2020-12-09', '2020-12-14');
INSERT INTO public.journal_details VALUES (15056, 11110, 'attr', 'due_date', '2020-12-09', '2020-12-14');
INSERT INTO public.journal_details VALUES (15057, 11110, 'attr', 'start_date', '2020-12-09', '2020-12-14');
INSERT INTO public.journal_details VALUES (15058, 11111, 'attr', 'due_date', '2020-12-09', '2020-12-14');
INSERT INTO public.journal_details VALUES (15059, 11111, 'attr', 'start_date', '2020-12-09', '2020-12-14');
INSERT INTO public.journal_details VALUES (15060, 11112, 'attr', 'due_date', '2020-12-10', '2020-12-14');
INSERT INTO public.journal_details VALUES (15061, 11112, 'attr', 'start_date', '2020-12-10', '2020-12-14');
INSERT INTO public.journal_details VALUES (15066, 11115, 'attr', 'due_date', '2020-12-16', '2020-12-18');
INSERT INTO public.journal_details VALUES (15067, 11115, 'attr', 'start_date', '2020-12-16', '2020-12-18');
INSERT INTO public.journal_details VALUES (15068, 11116, 'attr', 'due_date', '2020-12-14', '2020-12-18');
INSERT INTO public.journal_details VALUES (15069, 11116, 'attr', 'start_date', '2020-12-14', '2020-12-18');
INSERT INTO public.journal_details VALUES (15070, 11117, 'attr', 'due_date', '2020-12-14', '2020-12-18');
INSERT INTO public.journal_details VALUES (15071, 11117, 'attr', 'start_date', '2020-12-14', '2020-12-18');
INSERT INTO public.journal_details VALUES (15072, 11118, 'attr', 'due_date', '2020-12-15', '2020-12-18');
INSERT INTO public.journal_details VALUES (15073, 11118, 'attr', 'start_date', '2020-12-15', '2020-12-18');
INSERT INTO public.journal_details VALUES (15074, 11119, 'attr', 'due_date', '2020-12-15', '2020-12-18');
INSERT INTO public.journal_details VALUES (15075, 11119, 'attr', 'start_date', '2020-12-15', '2020-12-18');
INSERT INTO public.journal_details VALUES (15076, 11120, 'attr', 'due_date', '2020-12-15', '2020-12-18');
INSERT INTO public.journal_details VALUES (15077, 11120, 'attr', 'start_date', '2020-12-15', '2020-12-18');
INSERT INTO public.journal_details VALUES (15078, 11121, 'attr', 'due_date', '2020-12-14', '2020-12-16');
INSERT INTO public.journal_details VALUES (15079, 11121, 'attr', 'start_date', '2020-12-14', '2020-12-16');
INSERT INTO public.journal_details VALUES (15080, 11122, 'attr', 'due_date', '2020-12-14', '2020-12-16');
INSERT INTO public.journal_details VALUES (15081, 11122, 'attr', 'start_date', '2020-12-14', '2020-12-16');
INSERT INTO public.journal_details VALUES (15082, 11123, 'attr', 'due_date', '2020-12-14', '2020-12-16');
INSERT INTO public.journal_details VALUES (15083, 11123, 'attr', 'start_date', '2020-12-14', '2020-12-16');
INSERT INTO public.journal_details VALUES (15086, 11125, 'attr', 'due_date', '2020-12-14', '2020-12-16');
INSERT INTO public.journal_details VALUES (15087, 11125, 'attr', 'start_date', '2020-12-14', '2020-12-16');
INSERT INTO public.journal_details VALUES (15088, 11126, 'attr', 'due_date', '2020-12-14', '2020-12-16');
INSERT INTO public.journal_details VALUES (15089, 11126, 'attr', 'start_date', '2020-12-14', '2020-12-16');
INSERT INTO public.journal_details VALUES (15090, 11127, 'attr', 'due_date', '2020-12-14', '2020-12-16');
INSERT INTO public.journal_details VALUES (15091, 11127, 'attr', 'start_date', '2020-12-14', '2020-12-16');
INSERT INTO public.journal_details VALUES (15092, 11128, 'attr', 'due_date', '2020-12-14', '2020-12-16');
INSERT INTO public.journal_details VALUES (15093, 11128, 'attr', 'start_date', '2020-12-14', '2020-12-16');
INSERT INTO public.journal_details VALUES (15096, 11130, 'attr', 'due_date', '2020-12-14', '2020-12-15');
INSERT INTO public.journal_details VALUES (15097, 11130, 'attr', 'start_date', '2020-12-14', '2020-12-15');
INSERT INTO public.journal_details VALUES (15098, 11131, 'attr', 'assigned_to_id', '33', '29');
INSERT INTO public.journal_details VALUES (15099, 11132, 'attr', 'tracker_id', '6', '5');
INSERT INTO public.journal_details VALUES (15100, 11133, 'attr', 'tracker_id', '6', '4');
INSERT INTO public.journal_details VALUES (15101, 11134, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (15102, 11135, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (15103, 11136, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (15104, 11137, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15105, 11138, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15106, 11139, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15107, 11140, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15108, 11141, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15109, 11142, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15110, 11143, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15111, 11144, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15112, 11145, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15113, 11146, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15114, 11147, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15115, 11148, 'attr', 'assigned_to_id', '41', '5');
INSERT INTO public.journal_details VALUES (15116, 11149, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15117, 11149, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15118, 11150, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (15119, 11151, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (15120, 11152, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15121, 11153, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15122, 11154, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15123, 11155, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15124, 11156, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15125, 11156, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15126, 11157, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15127, 11158, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15128, 11159, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15129, 11159, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15130, 11160, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15131, 11161, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15132, 11162, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15133, 11163, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15134, 11164, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15135, 11165, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15136, 11166, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15137, 11167, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15138, 11168, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (15139, 11169, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15140, 11170, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15141, 11171, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15142, 11172, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15143, 11173, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15144, 11174, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15145, 11175, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15146, 11176, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15147, 11177, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15148, 11178, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15149, 11179, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15150, 11180, 'attr', 'due_date', NULL, '2020-12-04');
INSERT INTO public.journal_details VALUES (15151, 11181, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15152, 11182, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15153, 11183, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15154, 11184, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15155, 11185, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15156, 11186, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15157, 11187, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15158, 11188, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15159, 11189, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15160, 11190, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15161, 11191, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15162, 11192, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15163, 11193, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15164, 11194, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15165, 11195, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15166, 11196, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15167, 11197, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15168, 11198, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15169, 11199, 'attr', 'due_date', NULL, '2020-12-09');
INSERT INTO public.journal_details VALUES (15170, 11199, 'attr', 'start_date', '2020-12-09', '2020-11-09');
INSERT INTO public.journal_details VALUES (15171, 11200, 'attr', 'due_date', NULL, '2020-12-09');
INSERT INTO public.journal_details VALUES (15172, 11200, 'attr', 'start_date', '2020-12-09', '2020-11-09');
INSERT INTO public.journal_details VALUES (15173, 11201, 'attr', 'due_date', NULL, '2020-12-09');
INSERT INTO public.journal_details VALUES (15174, 11201, 'attr', 'start_date', '2020-12-09', '2020-11-09');
INSERT INTO public.journal_details VALUES (15175, 11202, 'attr', 'start_date', '2020-11-09', '2020-12-09');
INSERT INTO public.journal_details VALUES (15176, 11203, 'attr', 'start_date', '2020-11-09', '2020-12-09');
INSERT INTO public.journal_details VALUES (15177, 11204, 'attr', 'start_date', '2020-11-09', '2020-12-09');
INSERT INTO public.journal_details VALUES (15178, 11205, 'attr', 'due_date', '2020-12-14', '2020-12-16');
INSERT INTO public.journal_details VALUES (15179, 11205, 'attr', 'start_date', '2020-12-14', '2020-12-16');
INSERT INTO public.journal_details VALUES (15180, 11206, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15181, 11206, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15182, 11207, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15183, 11207, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15184, 11208, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15185, 11208, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15186, 11209, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15187, 11209, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15188, 11210, 'attr', 'subject', 'Load dữ liệu khách hàng theo nhân viên Đặng Đình Hoàng và danh mục sản phẩm mới', 'Import dữ liệu khách hàng file mới gửi');
INSERT INTO public.journal_details VALUES (15189, 11210, 'attr', 'description', '', 'Nhân viên Đặng Đình Hoàng');
INSERT INTO public.journal_details VALUES (15190, 11211, 'attr', 'due_date', '2020-12-16', '2020-12-17');
INSERT INTO public.journal_details VALUES (15191, 11211, 'attr', 'start_date', '2020-12-16', '2020-12-17');
INSERT INTO public.journal_details VALUES (15192, 11212, 'attr', 'due_date', '2020-12-16', '2020-12-18');
INSERT INTO public.journal_details VALUES (15193, 11212, 'attr', 'start_date', '2020-12-16', '2020-12-18');
INSERT INTO public.journal_details VALUES (15194, 11213, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15195, 11213, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15196, 11214, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (15197, 11214, 'attr', 'subject', 'api - chi tiết đơn hàng theo nhân viên', 'api - Báo cáo chi tiết đơn hàng theo nhân viên');
INSERT INTO public.journal_details VALUES (15198, 11214, 'attr', 'due_date', '2020-12-16', '2020-12-18');
INSERT INTO public.journal_details VALUES (15199, 11214, 'attr', 'start_date', '2020-12-16', '2020-12-18');
INSERT INTO public.journal_details VALUES (15202, 11216, 'attr', 'subject', 'Xem BC khuyến mãi theo từng chương trình', 'Báo cáo KM thêm lọc theo CTKM');
INSERT INTO public.journal_details VALUES (15203, 11217, 'attr', 'subject', 'Chỉnh sửa chương trình khuyến mãi - khuyến mãi double', 'Chỉnh sửa chương trình khuyến mãi');
INSERT INTO public.journal_details VALUES (15204, 11218, 'attr', 'subject', 'api chỉnh sửa chương trình khuyến mãi', 'fix api thêm/xóa chương trình khuyến mãi');
INSERT INTO public.journal_details VALUES (15205, 11219, 'attr', 'subject', 'Chỉnh sửa chương trình khuyến mãi', 'Giao diện thêm/xóa chương trình khuyến mãi');
INSERT INTO public.journal_details VALUES (15206, 11220, 'attr', 'due_date', '2020-12-16', '2020-12-18');
INSERT INTO public.journal_details VALUES (15207, 11220, 'attr', 'start_date', '2020-12-16', '2020-12-18');
INSERT INTO public.journal_details VALUES (15208, 11221, 'attr', 'due_date', '2020-12-18', '2020-12-21');
INSERT INTO public.journal_details VALUES (15209, 11221, 'attr', 'fixed_version_id', '69', '72');
INSERT INTO public.journal_details VALUES (15210, 11221, 'attr', 'start_date', '2020-12-18', '2020-12-21');
INSERT INTO public.journal_details VALUES (15211, 11222, 'attr', 'due_date', '2020-12-18', '2020-12-21');
INSERT INTO public.journal_details VALUES (15212, 11222, 'attr', 'fixed_version_id', '69', '72');
INSERT INTO public.journal_details VALUES (15213, 11222, 'attr', 'start_date', '2020-12-18', '2020-12-21');
INSERT INTO public.journal_details VALUES (15214, 11223, 'attr', 'due_date', '2020-12-18', '2020-12-21');
INSERT INTO public.journal_details VALUES (15215, 11223, 'attr', 'fixed_version_id', '69', '72');
INSERT INTO public.journal_details VALUES (15216, 11223, 'attr', 'start_date', '2020-12-18', '2020-12-21');
INSERT INTO public.journal_details VALUES (15217, 11224, 'attr', 'due_date', '2020-12-18', '2020-12-21');
INSERT INTO public.journal_details VALUES (15218, 11224, 'attr', 'fixed_version_id', '69', '72');
INSERT INTO public.journal_details VALUES (15219, 11224, 'attr', 'start_date', '2020-12-18', '2020-12-21');
INSERT INTO public.journal_details VALUES (15220, 11225, 'attr', 'due_date', '2020-12-18', '2020-12-21');
INSERT INTO public.journal_details VALUES (15221, 11225, 'attr', 'fixed_version_id', '69', '72');
INSERT INTO public.journal_details VALUES (15222, 11225, 'attr', 'start_date', '2020-12-18', '2020-12-21');
INSERT INTO public.journal_details VALUES (15223, 11226, 'attr', 'due_date', '2020-12-18', '2020-12-21');
INSERT INTO public.journal_details VALUES (15224, 11226, 'attr', 'fixed_version_id', '69', '72');
INSERT INTO public.journal_details VALUES (15225, 11226, 'attr', 'start_date', '2020-12-18', '2020-12-21');
INSERT INTO public.journal_details VALUES (15226, 11227, 'attr', 'due_date', '2020-12-17', '2020-12-16');
INSERT INTO public.journal_details VALUES (15227, 11227, 'attr', 'start_date', '2020-12-17', '2020-12-16');
INSERT INTO public.journal_details VALUES (15228, 11228, 'attr', 'fixed_version_id', '72', '33');
INSERT INTO public.journal_details VALUES (15229, 11229, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15230, 11230, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15231, 11231, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15232, 11232, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15233, 11233, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15234, 11234, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15235, 11235, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15236, 11236, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15237, 11237, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15238, 11238, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15239, 11239, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15240, 11240, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15241, 11241, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15242, 11242, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15243, 11243, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15244, 11244, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15245, 11245, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15246, 11246, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15247, 11247, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15248, 11248, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15249, 11249, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15250, 11250, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15251, 11251, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15252, 11252, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15253, 11253, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15254, 11254, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15255, 11255, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15256, 11256, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15257, 11257, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15258, 11258, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15259, 11259, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15260, 11260, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15261, 11261, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15262, 11262, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15263, 11263, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15264, 11264, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15265, 11265, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15266, 11266, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15267, 11267, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15268, 11268, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15269, 11269, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15270, 11270, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (15271, 11271, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15272, 11272, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15273, 11273, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15274, 11274, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15275, 11275, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (15276, 11276, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15277, 11277, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15278, 11278, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15279, 11279, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15280, 11280, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15281, 11281, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15282, 11282, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (15283, 11283, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (15284, 11284, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (15285, 11285, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15286, 11286, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15287, 11287, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (15288, 11288, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15289, 11288, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15290, 11289, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15291, 11290, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15292, 11291, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15293, 11291, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15294, 11292, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15295, 11292, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15296, 11293, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15297, 11294, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15298, 11295, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15299, 11296, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15300, 11296, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15301, 11297, 'attr', 'subject', 'API chỉnh sửa Xuất hàng thêm quy đổi đơn vị ', 'fix API Xuất hàng thêm quy đổi đơn vị ');
INSERT INTO public.journal_details VALUES (15302, 11297, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15303, 11297, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15304, 11298, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15305, 11299, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15306, 11300, 'attr', 'due_date', '2020-12-16', '2020-12-18');
INSERT INTO public.journal_details VALUES (15307, 11300, 'attr', 'start_date', '2020-12-16', '2020-12-18');
INSERT INTO public.journal_details VALUES (15308, 11300, 'attr', 'done_ratio', '90', '0');
INSERT INTO public.journal_details VALUES (15309, 11301, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15310, 11302, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15311, 11303, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15312, 11304, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15313, 11305, 'attr', 'due_date', '2020-12-17', '2020-12-19');
INSERT INTO public.journal_details VALUES (15314, 11305, 'attr', 'start_date', '2020-12-17', '2020-12-19');
INSERT INTO public.journal_details VALUES (15315, 11306, 'attr', 'due_date', '2020-12-17', '2020-12-19');
INSERT INTO public.journal_details VALUES (15316, 11306, 'attr', 'start_date', '2020-12-17', '2020-12-19');
INSERT INTO public.journal_details VALUES (15317, 11307, 'attr', 'due_date', '2020-12-17', '2020-12-19');
INSERT INTO public.journal_details VALUES (15318, 11307, 'attr', 'start_date', '2020-12-17', '2020-12-19');
INSERT INTO public.journal_details VALUES (15319, 11308, 'attr', 'due_date', '2020-12-17', '2020-12-19');
INSERT INTO public.journal_details VALUES (15320, 11308, 'attr', 'start_date', '2020-12-17', '2020-12-19');
INSERT INTO public.journal_details VALUES (15321, 11309, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15322, 11309, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15323, 11310, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (15324, 11311, 'attr', 'due_date', '2020-12-16', '2020-12-18');
INSERT INTO public.journal_details VALUES (15325, 11311, 'attr', 'start_date', '2020-12-16', '2020-12-18');
INSERT INTO public.journal_details VALUES (15326, 11312, 'attr', 'due_date', '2020-12-19', '2020-12-18');
INSERT INTO public.journal_details VALUES (15327, 11313, 'attr', 'due_date', '2020-12-19', '2020-12-18');
INSERT INTO public.journal_details VALUES (15328, 11314, 'attr', 'due_date', '2020-12-18', '2020-12-19');
INSERT INTO public.journal_details VALUES (15329, 11314, 'attr', 'start_date', '2020-12-18', '2020-12-19');
INSERT INTO public.journal_details VALUES (15330, 11315, 'attr', 'due_date', '2020-12-18', '2020-12-19');
INSERT INTO public.journal_details VALUES (15331, 11315, 'attr', 'start_date', '2020-12-18', '2020-12-19');
INSERT INTO public.journal_details VALUES (15332, 11316, 'attr', 'due_date', '2020-12-18', '2020-12-19');
INSERT INTO public.journal_details VALUES (15333, 11316, 'attr', 'start_date', '2020-12-18', '2020-12-19');
INSERT INTO public.journal_details VALUES (15334, 11317, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15335, 11318, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15336, 11319, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (15337, 11320, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15338, 11320, 'attr', 'assigned_to_id', '41', '5');
INSERT INTO public.journal_details VALUES (15339, 11320, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15340, 11321, 'attr', 'assigned_to_id', '41', '39');
INSERT INTO public.journal_details VALUES (15341, 11322, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15342, 11322, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15343, 11323, 'attr', 'subject', 'Load chi tiết phân bổ khuyến mãi', 'api load chi tiết phân bổ khuyến mãi');
INSERT INTO public.journal_details VALUES (15344, 11324, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15345, 11324, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15346, 11325, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15347, 11325, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15348, 11326, 'attr', 'due_date', '2020-12-17', '2020-12-18');
INSERT INTO public.journal_details VALUES (15349, 11326, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (15350, 11327, 'attr', 'due_date', '2020-12-16', '2020-12-17');
INSERT INTO public.journal_details VALUES (15351, 11328, 'attr', 'due_date', '2020-12-18', '2020-12-19');
INSERT INTO public.journal_details VALUES (15352, 11329, 'attr', 'due_date', '2020-12-18', '2020-12-19');
INSERT INTO public.journal_details VALUES (15353, 11330, 'attr', 'due_date', '2020-12-17', '2020-12-16');
INSERT INTO public.journal_details VALUES (15354, 11331, 'attr', 'subject', 'Giao diện thêm/xóa chương trình khuyến mãi', 'Giao diện thêm/sửa/xóa chương trình khuyến mãi');
INSERT INTO public.journal_details VALUES (15355, 11331, 'attr', 'done_ratio', '0', '80');
INSERT INTO public.journal_details VALUES (15356, 11332, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15357, 11333, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15358, 11333, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15359, 11334, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15360, 11334, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15361, 11335, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15362, 11336, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15363, 11337, 'attr', 'fixed_version_id', '69', '72');
INSERT INTO public.journal_details VALUES (15364, 11338, 'attr', 'fixed_version_id', '69', '72');
INSERT INTO public.journal_details VALUES (15365, 11339, 'attr', 'fixed_version_id', '69', '72');
INSERT INTO public.journal_details VALUES (15366, 11340, 'attr', 'due_date', '2020-12-18', '2020-12-21');
INSERT INTO public.journal_details VALUES (15367, 11340, 'attr', 'start_date', '2020-12-18', '2020-12-21');
INSERT INTO public.journal_details VALUES (15368, 11341, 'attr', 'due_date', '2020-12-18', '2020-12-21');
INSERT INTO public.journal_details VALUES (15369, 11341, 'attr', 'start_date', '2020-12-18', '2020-12-21');
INSERT INTO public.journal_details VALUES (15370, 11342, 'attr', 'due_date', '2020-12-19', '2020-12-21');
INSERT INTO public.journal_details VALUES (15371, 11342, 'attr', 'start_date', '2020-12-19', '2020-12-21');
INSERT INTO public.journal_details VALUES (15372, 11343, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15373, 11344, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15374, 11345, 'attr', 'fixed_version_id', '69', '33');
INSERT INTO public.journal_details VALUES (15375, 11346, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15376, 11346, 'attr', 'done_ratio', '80', '100');
INSERT INTO public.journal_details VALUES (15377, 11347, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15378, 11347, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (15379, 11348, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15380, 11349, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15381, 11350, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15382, 11351, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15383, 11352, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15384, 11353, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15385, 11354, 'attr', 'due_date', '2020-12-19', '2020-12-21');
INSERT INTO public.journal_details VALUES (15386, 11354, 'attr', 'fixed_version_id', '69', '72');
INSERT INTO public.journal_details VALUES (15387, 11354, 'attr', 'start_date', '2020-12-19', '2020-12-21');
INSERT INTO public.journal_details VALUES (15388, 11355, 'attr', 'due_date', '2020-12-19', '2020-12-21');
INSERT INTO public.journal_details VALUES (15389, 11355, 'attr', 'fixed_version_id', '69', '72');
INSERT INTO public.journal_details VALUES (15390, 11355, 'attr', 'start_date', '2020-12-19', '2020-12-21');
INSERT INTO public.journal_details VALUES (15391, 11356, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15392, 11357, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15393, 11358, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15394, 11359, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15395, 11360, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15396, 11361, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15397, 11362, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15398, 11363, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15399, 11364, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15400, 11365, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15401, 11366, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15402, 11367, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15403, 11368, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15404, 11369, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15405, 11370, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15406, 11371, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15407, 11372, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15408, 11373, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15409, 11374, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15410, 11375, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15411, 11376, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15412, 11377, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15413, 11378, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15414, 11379, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15415, 11380, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15416, 11381, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15417, 11382, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15418, 11383, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15419, 11384, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15420, 11385, 'attr', 'subject', 'Danh mục lĩnh vực', 'Giao diện danh mục lĩnh vực');
INSERT INTO public.journal_details VALUES (15421, 11385, 'attr', 'due_date', NULL, '2020-12-21');
INSERT INTO public.journal_details VALUES (15422, 11385, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (15423, 11385, 'attr', 'fixed_version_id', '75', '74');
INSERT INTO public.journal_details VALUES (15424, 11385, 'attr', 'start_date', '2020-12-16', '2020-12-21');
INSERT INTO public.journal_details VALUES (15425, 11386, 'attr', 'subject', 'Danh mục báo cáo', 'Giao diện danh mục báo cáo');
INSERT INTO public.journal_details VALUES (15426, 11386, 'attr', 'due_date', NULL, '2020-12-21');
INSERT INTO public.journal_details VALUES (15427, 11386, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (15428, 11386, 'attr', 'fixed_version_id', '75', '74');
INSERT INTO public.journal_details VALUES (15429, 11386, 'attr', 'start_date', '2020-12-16', '2020-12-21');
INSERT INTO public.journal_details VALUES (15430, 11387, 'attr', 'subject', 'Danh mục mẫu báo cáo', 'Giao diện danh mục mẫu báo cáo');
INSERT INTO public.journal_details VALUES (15431, 11387, 'attr', 'description', '', 'thuộc 1 báo cáo');
INSERT INTO public.journal_details VALUES (15432, 11387, 'attr', 'due_date', NULL, '2020-12-21');
INSERT INTO public.journal_details VALUES (15433, 11387, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (15434, 11387, 'attr', 'fixed_version_id', '75', '74');
INSERT INTO public.journal_details VALUES (15435, 11387, 'attr', 'start_date', '2020-12-16', '2020-12-21');
INSERT INTO public.journal_details VALUES (15436, 11388, 'attr', 'subject', 'Khuyến mãi - Hiệu quả khuyến mãi', 'Appi BC hiệu quả khuyến mãi');
INSERT INTO public.journal_details VALUES (15437, 11388, 'attr', 'assigned_to_id', '40', '41');
INSERT INTO public.journal_details VALUES (15438, 11389, 'attr', 'subject', 'Khuyến mãi - Ngân sách khuyến mãi', 'Api BC ngân sách khuyến mãi');
INSERT INTO public.journal_details VALUES (15439, 11389, 'attr', 'assigned_to_id', '40', '41');
INSERT INTO public.journal_details VALUES (15440, 11390, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (15441, 11391, 'attr', 'subject', 'Khách hàng - Sản lượng bán hàng', 'Api BC Sản lượng bán hàng theo khách hàng');
INSERT INTO public.journal_details VALUES (15442, 11391, 'attr', 'assigned_to_id', '40', '41');
INSERT INTO public.journal_details VALUES (15443, 11392, 'attr', 'subject', 'Khách hàng - Công nợ phải thu', 'Api BC Công nợ phải thu khách hàng');
INSERT INTO public.journal_details VALUES (15444, 11392, 'attr', 'assigned_to_id', '40', '41');
INSERT INTO public.journal_details VALUES (15445, 11393, 'attr', 'subject', 'Nhà cung cấp - công nợ phải thu', 'Api công nợ phải thu nhà cung cấp');
INSERT INTO public.journal_details VALUES (15446, 11393, 'attr', 'assigned_to_id', '40', '41');
INSERT INTO public.journal_details VALUES (15447, 11394, 'attr', 'due_date', '2020-12-19', '2020-12-21');
INSERT INTO public.journal_details VALUES (15448, 11394, 'attr', 'fixed_version_id', '70', '73');
INSERT INTO public.journal_details VALUES (15449, 11394, 'attr', 'start_date', '2020-12-19', '2020-12-21');
INSERT INTO public.journal_details VALUES (15450, 11395, 'attr', 'due_date', '2020-12-19', '2020-12-21');
INSERT INTO public.journal_details VALUES (15451, 11395, 'attr', 'fixed_version_id', '70', '73');
INSERT INTO public.journal_details VALUES (15452, 11395, 'attr', 'start_date', '2020-12-19', '2020-12-21');
INSERT INTO public.journal_details VALUES (15453, 11396, 'attr', 'due_date', '2020-12-19', '2020-12-21');
INSERT INTO public.journal_details VALUES (15454, 11396, 'attr', 'fixed_version_id', '70', '73');
INSERT INTO public.journal_details VALUES (15455, 11396, 'attr', 'start_date', '2020-12-19', '2020-12-21');
INSERT INTO public.journal_details VALUES (15456, 11397, 'attr', 'due_date', '2020-12-19', '2020-12-21');
INSERT INTO public.journal_details VALUES (15457, 11397, 'attr', 'fixed_version_id', '70', '73');
INSERT INTO public.journal_details VALUES (15458, 11397, 'attr', 'start_date', '2020-12-19', '2020-12-21');
INSERT INTO public.journal_details VALUES (15459, 11398, 'attr', 'due_date', '2020-12-19', '2020-12-21');
INSERT INTO public.journal_details VALUES (15460, 11398, 'attr', 'fixed_version_id', '70', '73');
INSERT INTO public.journal_details VALUES (15461, 11398, 'attr', 'start_date', '2020-12-19', '2020-12-21');
INSERT INTO public.journal_details VALUES (15468, 11401, 'attr', 'due_date', '2020-12-19', '2020-12-21');
INSERT INTO public.journal_details VALUES (15469, 11401, 'attr', 'fixed_version_id', '70', '73');
INSERT INTO public.journal_details VALUES (15470, 11401, 'attr', 'start_date', '2020-12-19', '2020-12-21');
INSERT INTO public.journal_details VALUES (15471, 11402, 'attr', 'due_date', '2020-12-19', '2020-12-21');
INSERT INTO public.journal_details VALUES (15472, 11402, 'attr', 'fixed_version_id', '70', '73');
INSERT INTO public.journal_details VALUES (15473, 11402, 'attr', 'start_date', '2020-12-19', '2020-12-21');
INSERT INTO public.journal_details VALUES (15474, 11403, 'attr', 'fixed_version_id', '74', '77');
INSERT INTO public.journal_details VALUES (15475, 11404, 'attr', 'due_date', '2020-12-25', '2020-12-28');
INSERT INTO public.journal_details VALUES (15476, 11404, 'attr', 'start_date', '2020-12-25', '2020-12-28');
INSERT INTO public.journal_details VALUES (15477, 11405, 'attr', 'fixed_version_id', '77', '76');
INSERT INTO public.journal_details VALUES (15478, 11406, 'attr', 'subject', 'Hiển thị sai thông tin phiếu đã hủy', 'Hiển thị sai thông tin phiếu đã hủy ở Phiếu kiểm kho');
INSERT INTO public.journal_details VALUES (15479, 11407, 'attr', 'assigned_to_id', '12', '37');
INSERT INTO public.journal_details VALUES (15480, 11408, 'attr', 'assigned_to_id', '12', '37');
INSERT INTO public.journal_details VALUES (15481, 11409, 'attr', 'assigned_to_id', '12', '37');
INSERT INTO public.journal_details VALUES (15482, 11410, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15483, 11411, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15484, 11412, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15485, 11413, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (15486, 11414, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15487, 11415, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15488, 11416, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (15489, 11417, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15490, 11418, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15491, 11419, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15492, 11420, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15493, 11421, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15494, 11422, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15495, 11423, 'attr', 'due_date', '2020-12-21', '2020-12-22');
INSERT INTO public.journal_details VALUES (15496, 11423, 'attr', 'start_date', '2020-12-21', '2020-12-22');
INSERT INTO public.journal_details VALUES (15497, 11424, 'attr', 'due_date', '2020-12-21', '2020-12-23');
INSERT INTO public.journal_details VALUES (15498, 11424, 'attr', 'start_date', '2020-12-21', '2020-12-23');
INSERT INTO public.journal_details VALUES (15499, 11425, 'attr', 'due_date', '2020-12-21', '2020-12-23');
INSERT INTO public.journal_details VALUES (15500, 11425, 'attr', 'start_date', '2020-12-21', '2020-12-23');
INSERT INTO public.journal_details VALUES (15501, 11426, 'attr', 'due_date', '2020-12-21', '2020-12-22');
INSERT INTO public.journal_details VALUES (15502, 11426, 'attr', 'start_date', '2020-12-21', '2020-12-22');
INSERT INTO public.journal_details VALUES (15503, 11427, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (15504, 11428, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15505, 11429, 'attr', 'due_date', '2020-12-23', '2020-12-21');
INSERT INTO public.journal_details VALUES (15506, 11429, 'attr', 'start_date', '2020-12-23', '2020-12-21');
INSERT INTO public.journal_details VALUES (15507, 11430, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15508, 11430, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15509, 11431, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15510, 11431, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15511, 11432, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15512, 11433, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15513, 11434, 'attr', 'assigned_to_id', '5', '37');
INSERT INTO public.journal_details VALUES (15514, 11435, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15515, 11435, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15516, 11436, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15517, 11436, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15518, 11437, 'attr', 'assigned_to_id', '5', '37');
INSERT INTO public.journal_details VALUES (15519, 11438, 'attr', 'assigned_to_id', '5', '37');
INSERT INTO public.journal_details VALUES (15520, 11439, 'attr', 'due_date', '2020-12-21', '2020-12-22');
INSERT INTO public.journal_details VALUES (15521, 11439, 'attr', 'start_date', '2020-12-21', '2020-12-22');
INSERT INTO public.journal_details VALUES (15522, 11440, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15523, 11441, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15524, 11442, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15525, 11443, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15526, 11444, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15527, 11445, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15528, 11446, 'attr', 'due_date', '2020-12-17', '2020-12-22');
INSERT INTO public.journal_details VALUES (15529, 11446, 'attr', 'start_date', '2020-12-16', '2020-12-22');
INSERT INTO public.journal_details VALUES (15530, 11447, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (15531, 11448, 'attr', 'subject', 'Hiển thị sai ngày nhập hàng', 'Hiển thị sai thời gian nhập hàng');
INSERT INTO public.journal_details VALUES (15532, 11449, 'attr', 'subject', 'Hiển thị sai thời gian nhập hàng', 'Format thời gian sai');
INSERT INTO public.journal_details VALUES (15533, 11449, 'attr', 'assigned_to_id', '39', '41');
INSERT INTO public.journal_details VALUES (15534, 11450, 'attr', 'subject', 'Chuyển nguồn sang năm sau', 'Chuyển nguồn sang năm sau cho nhân viên');
INSERT INTO public.journal_details VALUES (15535, 11451, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (15536, 11452, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (15537, 11453, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15538, 11454, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15539, 11455, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15540, 11456, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (15541, 11457, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (15542, 11458, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15543, 11458, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15544, 11459, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15545, 11460, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15546, 11461, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15547, 11462, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15548, 11463, 'attr', 'due_date', '2020-12-22', '2020-12-23');
INSERT INTO public.journal_details VALUES (15549, 11463, 'attr', 'start_date', '2020-12-22', '2020-12-23');
INSERT INTO public.journal_details VALUES (15550, 11464, 'attr', 'due_date', '2020-12-22', '2020-12-23');
INSERT INTO public.journal_details VALUES (15551, 11464, 'attr', 'start_date', '2020-12-22', '2020-12-23');
INSERT INTO public.journal_details VALUES (15552, 11465, 'attr', 'due_date', '2020-12-25', '2020-12-24');
INSERT INTO public.journal_details VALUES (15553, 11465, 'attr', 'start_date', '2020-12-25', '2020-12-23');
INSERT INTO public.journal_details VALUES (15554, 11466, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (15555, 11467, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15556, 11468, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15557, 11469, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15558, 11470, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (15559, 11471, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (15560, 11472, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15561, 11473, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15562, 11474, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15563, 11475, 'attr', 'due_date', '2020-12-22', '2020-12-23');
INSERT INTO public.journal_details VALUES (15564, 11475, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15565, 11476, 'attr', 'start_date', '2020-12-22', '2020-12-23');
INSERT INTO public.journal_details VALUES (15566, 11477, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15567, 11477, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15568, 11478, 'attr', 'subject', 'Giao diện tạo khuyến mãi theo Loại Khuyến mãi Số lượng', 'Giao diện thêm và xử lí thêm khuyến mãi theo Loại Khuyến mãi Số lượng');
INSERT INTO public.journal_details VALUES (15569, 11479, 'attr', 'done_ratio', '0', '50');
INSERT INTO public.journal_details VALUES (15570, 11480, 'attr', 'start_date', '2020-12-23', '2020-12-22');
INSERT INTO public.journal_details VALUES (15571, 11481, 'attr', 'start_date', '2020-12-23', '2020-12-22');
INSERT INTO public.journal_details VALUES (15572, 11482, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15573, 11482, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15574, 11483, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15575, 11484, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (15576, 11485, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15577, 11485, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (15578, 11485, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15579, 11486, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (15580, 11487, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (15581, 11488, 'attr', 'due_date', '2020-12-23', '2020-12-24');
INSERT INTO public.journal_details VALUES (15582, 11488, 'attr', 'start_date', '2020-12-23', '2020-12-24');
INSERT INTO public.journal_details VALUES (15583, 11489, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15584, 11489, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15585, 11490, 'attr', 'fixed_version_id', NULL, '72');
INSERT INTO public.journal_details VALUES (15586, 11491, 'attr', 'fixed_version_id', NULL, '72');
INSERT INTO public.journal_details VALUES (15587, 11492, 'attr', 'fixed_version_id', NULL, '72');
INSERT INTO public.journal_details VALUES (15588, 11493, 'attr', 'fixed_version_id', NULL, '72');
INSERT INTO public.journal_details VALUES (15589, 11494, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15590, 11494, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15591, 11495, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15592, 11496, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15593, 11497, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15594, 11498, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15595, 11499, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (15596, 11500, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (15597, 11501, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15598, 11502, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15599, 11502, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15600, 11503, 'attr', 'subject', 'Api công nợ phải thu nhà cung cấp', 'Api BC công nợ phải thu nhà cung cấp');
INSERT INTO public.journal_details VALUES (15601, 11504, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15602, 11504, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15603, 11505, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15604, 11506, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15605, 11507, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15606, 11508, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15607, 11509, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (15608, 11510, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15609, 11511, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15610, 11512, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15611, 11513, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15612, 11514, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15615, 11517, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15616, 11518, 'attr', 'due_date', NULL, '2020-12-25');
INSERT INTO public.journal_details VALUES (15617, 11519, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15618, 11519, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15619, 11520, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15620, 11521, 'attr', 'subject', 'Giao diện thêm, xem và xử lí thêm, xem khuyến mãi theo Loại Khuyến mãi Số lượng', 'Giao diện thêm, xem, sửa và xử lí thêm, xem khuyến mãi theo Loại Khuyến mãi Số lượng');
INSERT INTO public.journal_details VALUES (15621, 11521, 'attr', 'due_date', '2020-12-24', '2020-12-25');
INSERT INTO public.journal_details VALUES (15622, 11522, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (15623, 11523, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15624, 11524, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15625, 11525, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15626, 11526, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15627, 11527, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15628, 11527, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15629, 11528, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15630, 11528, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15631, 11529, 'attr', 'fixed_version_id', '71', '76');
INSERT INTO public.journal_details VALUES (15632, 11530, 'attr', 'fixed_version_id', '71', '76');
INSERT INTO public.journal_details VALUES (15633, 11531, 'attr', 'start_date', '2020-12-17', '2020-12-28');
INSERT INTO public.journal_details VALUES (15634, 11532, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (15635, 11532, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (15636, 11533, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15637, 11534, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15638, 11535, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15639, 11536, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (15640, 11537, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15641, 11538, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15642, 11539, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15643, 11540, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15644, 11541, 'attr', 'due_date', '2020-12-31', '2020-12-20');
INSERT INTO public.journal_details VALUES (15645, 11542, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15646, 11543, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15647, 11544, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15648, 11545, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15649, 11546, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15650, 11547, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15651, 11548, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15652, 11549, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15653, 11550, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15654, 11551, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15655, 11552, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15656, 11553, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15657, 11554, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15658, 11555, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15659, 11556, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15660, 11557, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15661, 11558, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15662, 11559, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15663, 11560, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15664, 11561, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15665, 11562, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15666, 11563, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15667, 11564, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15668, 11565, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15669, 11566, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15670, 11567, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15671, 11568, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (15672, 11569, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15673, 11570, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15674, 11571, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15675, 11572, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15676, 11573, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15677, 11574, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15678, 11575, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15679, 11576, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15680, 11577, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15681, 11578, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15682, 11579, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15683, 11580, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15684, 11581, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15685, 11582, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15686, 11583, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15687, 11584, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15688, 11585, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15689, 11586, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15690, 11587, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15691, 11588, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15692, 11589, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15693, 11590, 'attr', 'fixed_version_id', '73', '78');
INSERT INTO public.journal_details VALUES (15694, 11591, 'attr', 'fixed_version_id', '73', '78');
INSERT INTO public.journal_details VALUES (15695, 11592, 'attr', 'fixed_version_id', '73', '78');
INSERT INTO public.journal_details VALUES (15696, 11593, 'attr', 'fixed_version_id', '73', '78');
INSERT INTO public.journal_details VALUES (15697, 11594, 'attr', 'fixed_version_id', '73', '78');
INSERT INTO public.journal_details VALUES (15700, 11597, 'attr', 'fixed_version_id', '73', '78');
INSERT INTO public.journal_details VALUES (15701, 11598, 'attr', 'fixed_version_id', '73', '78');
INSERT INTO public.journal_details VALUES (15702, 11599, 'attr', 'fixed_version_id', '73', '78');
INSERT INTO public.journal_details VALUES (15703, 11600, 'attr', 'fixed_version_id', '72', '79');
INSERT INTO public.journal_details VALUES (15704, 11601, 'attr', 'fixed_version_id', '72', '79');
INSERT INTO public.journal_details VALUES (15705, 11602, 'attr', 'fixed_version_id', '72', '79');
INSERT INTO public.journal_details VALUES (15706, 11603, 'attr', 'fixed_version_id', '72', '79');
INSERT INTO public.journal_details VALUES (15707, 11604, 'attr', 'fixed_version_id', '72', '79');
INSERT INTO public.journal_details VALUES (15708, 11605, 'attr', 'fixed_version_id', '72', '79');
INSERT INTO public.journal_details VALUES (15709, 11606, 'attr', 'fixed_version_id', '72', '79');
INSERT INTO public.journal_details VALUES (15710, 11607, 'attr', 'fixed_version_id', '72', '79');
INSERT INTO public.journal_details VALUES (15711, 11608, 'attr', 'fixed_version_id', '72', '79');
INSERT INTO public.journal_details VALUES (15712, 11609, 'attr', 'due_date', '2020-12-21', '2020-12-28');
INSERT INTO public.journal_details VALUES (15713, 11609, 'attr', 'fixed_version_id', '33', '79');
INSERT INTO public.journal_details VALUES (15714, 11609, 'attr', 'start_date', '2020-12-21', '2020-12-28');
INSERT INTO public.journal_details VALUES (15715, 11610, 'attr', 'due_date', '2020-12-22', '2020-12-28');
INSERT INTO public.journal_details VALUES (15716, 11610, 'attr', 'fixed_version_id', '33', '79');
INSERT INTO public.journal_details VALUES (15717, 11610, 'attr', 'start_date', '2020-12-22', '2020-12-28');
INSERT INTO public.journal_details VALUES (15718, 11611, 'attr', 'due_date', '2020-12-21', '2020-12-28');
INSERT INTO public.journal_details VALUES (15719, 11611, 'attr', 'start_date', '2020-12-21', '2020-12-28');
INSERT INTO public.journal_details VALUES (15720, 11612, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (15721, 11613, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (15722, 11614, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (15725, 11617, 'attr', 'due_date', '2020-12-21', '2020-12-27');
INSERT INTO public.journal_details VALUES (15726, 11617, 'attr', 'start_date', '2020-12-21', '2020-12-27');
INSERT INTO public.journal_details VALUES (15727, 11618, 'attr', 'due_date', '2020-12-21', '2020-12-27');
INSERT INTO public.journal_details VALUES (15728, 11618, 'attr', 'start_date', '2020-12-21', '2020-12-27');
INSERT INTO public.journal_details VALUES (15729, 11619, 'attr', 'due_date', '2020-12-21', '2020-12-27');
INSERT INTO public.journal_details VALUES (15730, 11619, 'attr', 'start_date', '2020-12-21', '2020-12-27');
INSERT INTO public.journal_details VALUES (15731, 11620, 'attr', 'due_date', '2020-12-21', '2020-12-27');
INSERT INTO public.journal_details VALUES (15732, 11620, 'attr', 'start_date', '2020-12-21', '2020-12-27');
INSERT INTO public.journal_details VALUES (15733, 11621, 'attr', 'due_date', '2020-12-21', '2020-12-27');
INSERT INTO public.journal_details VALUES (15734, 11621, 'attr', 'start_date', '2020-12-21', '2020-12-27');
INSERT INTO public.journal_details VALUES (15739, 11624, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (15740, 11625, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (15741, 11626, 'attr', 'due_date', '2020-12-21', '2020-12-27');
INSERT INTO public.journal_details VALUES (15742, 11626, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15743, 11626, 'attr', 'start_date', '2020-12-21', '2020-12-27');
INSERT INTO public.journal_details VALUES (15744, 11626, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15745, 11627, 'attr', 'due_date', '2020-12-21', '2020-12-28');
INSERT INTO public.journal_details VALUES (15746, 11627, 'attr', 'start_date', '2020-12-21', '2020-12-28');
INSERT INTO public.journal_details VALUES (15747, 11628, 'attr', 'due_date', '2020-12-21', '2020-12-28');
INSERT INTO public.journal_details VALUES (15748, 11628, 'attr', 'start_date', '2020-12-21', '2020-12-28');
INSERT INTO public.journal_details VALUES (15749, 11629, 'attr', 'due_date', '2020-12-21', '2020-12-28');
INSERT INTO public.journal_details VALUES (15750, 11629, 'attr', 'start_date', '2020-12-21', '2020-12-28');
INSERT INTO public.journal_details VALUES (15751, 11630, 'attr', 'due_date', '2020-12-21', '2020-12-29');
INSERT INTO public.journal_details VALUES (15752, 11630, 'attr', 'start_date', '2020-12-21', '2020-12-29');
INSERT INTO public.journal_details VALUES (15753, 11631, 'attr', 'due_date', '2020-12-21', '2020-12-30');
INSERT INTO public.journal_details VALUES (15754, 11631, 'attr', 'start_date', '2020-12-21', '2020-12-30');
INSERT INTO public.journal_details VALUES (15755, 11632, 'attr', 'due_date', '2020-12-21', '2020-12-28');
INSERT INTO public.journal_details VALUES (15756, 11632, 'attr', 'start_date', '2020-12-21', '2020-12-28');
INSERT INTO public.journal_details VALUES (15757, 11633, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15758, 11634, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (15759, 11635, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15760, 11636, 'attr', 'assigned_to_id', '15', '17');
INSERT INTO public.journal_details VALUES (15762, 11638, 'attr', 'done_ratio', '0', '20');
INSERT INTO public.journal_details VALUES (15763, 11639, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15764, 11639, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15765, 11640, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15766, 11640, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15767, 11641, 'attr', 'subject', 'List ra báo cáo đến hạn cần nhập liệu', 'Danh sách báo cáo đi');
INSERT INTO public.journal_details VALUES (15768, 11641, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (15769, 11642, 'attr', 'assigned_to_id', '5', '37');
INSERT INTO public.journal_details VALUES (15770, 11643, 'attr', 'subject', 'Lịch báo cáo cho đơn vị', 'Lịch báo cáo đi');
INSERT INTO public.journal_details VALUES (15771, 11643, 'attr', 'fixed_version_id', '76', '77');
INSERT INTO public.journal_details VALUES (15772, 11644, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15773, 11645, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15774, 11646, 'attr', 'subject', 'List ra danh sách tình trạng nộp báo cáo của đơn vị trực thuộc', 'Lịch báo cáo đến');
INSERT INTO public.journal_details VALUES (15775, 11646, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (15776, 11647, 'attr', 'due_date', '2020-12-25', '2020-12-28');
INSERT INTO public.journal_details VALUES (15777, 11647, 'attr', 'fixed_version_id', '74', '76');
INSERT INTO public.journal_details VALUES (15778, 11647, 'attr', 'start_date', '2020-12-25', '2020-12-28');
INSERT INTO public.journal_details VALUES (15779, 11648, 'attr', 'fixed_version_id', '77', '76');
INSERT INTO public.journal_details VALUES (15780, 11649, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15781, 11650, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15782, 11651, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15783, 11652, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15784, 11653, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15785, 11654, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15786, 11655, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15787, 11656, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15788, 11657, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15789, 11658, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15790, 11659, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15791, 11660, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15792, 11661, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15793, 11662, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15794, 11663, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15795, 11664, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15796, 11665, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15797, 11666, 'attr', 'due_date', '2020-12-28', '2020-12-30');
INSERT INTO public.journal_details VALUES (15798, 11666, 'attr', 'start_date', '2020-12-28', '2020-12-30');
INSERT INTO public.journal_details VALUES (15799, 11667, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15800, 11668, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15801, 11669, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15802, 11670, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15803, 11671, 'attr', 'fixed_version_id', '76', '75');
INSERT INTO public.journal_details VALUES (15804, 11672, 'attr', 'fixed_version_id', '76', '75');
INSERT INTO public.journal_details VALUES (15805, 11673, 'attr', 'fixed_version_id', '76', '80');
INSERT INTO public.journal_details VALUES (15806, 11674, 'attr', 'fixed_version_id', NULL, '80');
INSERT INTO public.journal_details VALUES (15807, 11675, 'attr', 'assigned_to_id', NULL, '9');
INSERT INTO public.journal_details VALUES (15808, 11676, 'attr', 'assigned_to_id', '8', '37');
INSERT INTO public.journal_details VALUES (15809, 11677, 'attr', 'due_date', '2020-12-28', '2020-12-29');
INSERT INTO public.journal_details VALUES (15810, 11678, 'attr', 'due_date', '2020-12-28', '2020-12-29');
INSERT INTO public.journal_details VALUES (15811, 11679, 'attr', 'due_date', '2020-12-28', '2020-12-29');
INSERT INTO public.journal_details VALUES (15812, 11680, 'attr', 'fixed_version_id', '73', '78');
INSERT INTO public.journal_details VALUES (15813, 11681, 'attr', 'due_date', '2020-12-27', '2020-12-29');
INSERT INTO public.journal_details VALUES (15814, 11681, 'attr', 'start_date', '2020-12-27', '2020-12-29');
INSERT INTO public.journal_details VALUES (15815, 11682, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15816, 11683, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15817, 11684, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (15818, 11685, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15819, 11686, 'attr', 'subject', 'Đánh giá phân loại tập thể', 'Đánh giá khen thưởng tập thể');
INSERT INTO public.journal_details VALUES (15820, 11687, 'attr', 'due_date', NULL, '2020-12-27');
INSERT INTO public.journal_details VALUES (15821, 11687, 'attr', 'start_date', '2020-12-29', '2020-12-26');
INSERT INTO public.journal_details VALUES (15822, 11688, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15823, 11688, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15824, 11689, 'attr', 'subject', 'Thêm bộ lọc NNhóm đơn vị tính vào Tạo khuyến mãi', 'Thêm bộ lọc Nhóm đơn vị tính vào Tạo khuyến mãi');
INSERT INTO public.journal_details VALUES (15825, 11690, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (15826, 11691, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15827, 11692, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15828, 11692, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15829, 11693, 'attr', 'due_date', NULL, '2020-12-29');
INSERT INTO public.journal_details VALUES (15830, 11693, 'attr', 'fixed_version_id', '75', '76');
INSERT INTO public.journal_details VALUES (15831, 11693, 'attr', 'start_date', NULL, '2020-12-29');
INSERT INTO public.journal_details VALUES (15832, 11694, 'attr', 'due_date', NULL, '2020-12-29');
INSERT INTO public.journal_details VALUES (15833, 11694, 'attr', 'fixed_version_id', '75', '76');
INSERT INTO public.journal_details VALUES (15834, 11694, 'attr', 'start_date', NULL, '2020-12-29');
INSERT INTO public.journal_details VALUES (15835, 11695, 'attr', 'due_date', NULL, '2020-12-29');
INSERT INTO public.journal_details VALUES (15836, 11695, 'attr', 'fixed_version_id', '75', '76');
INSERT INTO public.journal_details VALUES (15837, 11695, 'attr', 'start_date', NULL, '2020-12-29');
INSERT INTO public.journal_details VALUES (15838, 11696, 'attr', 'due_date', NULL, '2020-12-29');
INSERT INTO public.journal_details VALUES (15839, 11696, 'attr', 'fixed_version_id', '75', '76');
INSERT INTO public.journal_details VALUES (15840, 11696, 'attr', 'start_date', NULL, '2020-12-29');
INSERT INTO public.journal_details VALUES (15841, 11697, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (15842, 11698, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (15843, 11699, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (15844, 11700, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (15845, 11701, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15846, 11701, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15847, 11702, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15848, 11702, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15849, 11703, 'attr', 'due_date', '2020-12-29', '2020-12-30');
INSERT INTO public.journal_details VALUES (15850, 11704, 'attr', 'due_date', '2020-12-29', '2020-12-30');
INSERT INTO public.journal_details VALUES (15851, 11705, 'attr', 'due_date', '2020-12-29', '2020-12-30');
INSERT INTO public.journal_details VALUES (15852, 11706, 'attr', 'due_date', '2020-12-29', '2020-12-30');
INSERT INTO public.journal_details VALUES (15853, 11707, 'attr', 'due_date', '2020-12-29', '2020-12-30');
INSERT INTO public.journal_details VALUES (15854, 11708, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15855, 11709, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15856, 11710, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15857, 11711, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15858, 11712, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15859, 11713, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15860, 11714, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15861, 11715, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15862, 11716, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15863, 11717, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15864, 11718, 'attr', 'parent_id', NULL, '2958');
INSERT INTO public.journal_details VALUES (15865, 11719, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15866, 11720, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15867, 11721, 'attr', 'subject', 'Đánh giá phân loại viên chức', 'Đánh giá phân loại viên chức - tập thể');
INSERT INTO public.journal_details VALUES (15868, 11722, 'attr', 'subject', 'Bỏ nút xuất file in và xuất file trong công nợ của nhà cung cấp và khách hàng', 'Bỏ nút xuất file công nợ và xuất file trong công nợ của nhà cung cấp và khách hàng');
INSERT INTO public.journal_details VALUES (15869, 11723, 'attr', 'status_id', '1', '4');
INSERT INTO public.journal_details VALUES (15870, 11724, 'attr', 'status_id', '4', '3');
INSERT INTO public.journal_details VALUES (15871, 11725, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15872, 11726, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15873, 11727, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15874, 11728, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15875, 11729, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15876, 11730, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15877, 11731, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15878, 11732, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15879, 11733, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15880, 11734, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15881, 11735, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15882, 11736, 'attr', 'assigned_to_id', '39', '8');
INSERT INTO public.journal_details VALUES (15883, 11737, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15884, 11738, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15885, 11739, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15886, 11740, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15887, 11741, 'attr', 'due_date', NULL, '2020-12-31');
INSERT INTO public.journal_details VALUES (15888, 11741, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15889, 11742, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15890, 11743, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15891, 11744, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15892, 11745, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15893, 11746, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15894, 11747, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15895, 11748, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15896, 11749, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15897, 11750, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15898, 11750, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15899, 11751, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15900, 11751, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15901, 11752, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15902, 11752, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15903, 11753, 'attr', 'subject', 'Thống kê báo cáo - Xem danh sách tổng số đơn vị', 'Thống kê báo cáo - Xem chi tiết');
INSERT INTO public.journal_details VALUES (15904, 11753, 'attr', 'due_date', '2020-12-29', '2020-12-31');
INSERT INTO public.journal_details VALUES (15905, 11753, 'attr', 'assigned_to_id', '37', '39');
INSERT INTO public.journal_details VALUES (15906, 11753, 'attr', 'start_date', '2020-12-29', '2020-12-31');
INSERT INTO public.journal_details VALUES (15907, 11754, 'attr', 'due_date', '2020-12-29', '2020-12-31');
INSERT INTO public.journal_details VALUES (15908, 11754, 'attr', 'start_date', '2020-12-29', '2020-12-31');
INSERT INTO public.journal_details VALUES (15909, 11755, 'attr', 'due_date', '2020-12-29', '2020-12-31');
INSERT INTO public.journal_details VALUES (15910, 11755, 'attr', 'start_date', '2020-12-29', '2020-12-31');
INSERT INTO public.journal_details VALUES (15911, 11756, 'attr', 'due_date', '2020-12-29', '2020-12-31');
INSERT INTO public.journal_details VALUES (15912, 11756, 'attr', 'start_date', '2020-12-29', '2020-12-31');
INSERT INTO public.journal_details VALUES (15913, 11757, 'attr', 'due_date', '2020-12-29', '2020-12-31');
INSERT INTO public.journal_details VALUES (15914, 11757, 'attr', 'start_date', '2020-12-29', '2020-12-31');
INSERT INTO public.journal_details VALUES (15915, 11758, 'attr', 'assigned_to_id', '12', '38');
INSERT INTO public.journal_details VALUES (15916, 11759, 'attr', 'subject', 'Thiếu mẫu báo cáo của báo cáo đi', 'Thiếu mẫu báo cáo của báo cáo đi và đến');
INSERT INTO public.journal_details VALUES (15917, 11759, 'attr', 'description', '![](clipboard-202012311110-cdngf.png)
', '
');
INSERT INTO public.journal_details VALUES (15918, 11760, 'attachment', '173', 'clipboard-202012311110-cdngf.png', NULL);
INSERT INTO public.journal_details VALUES (15919, 11761, 'attr', 'assigned_to_id', '12', '37');
INSERT INTO public.journal_details VALUES (15920, 11762, 'attr', 'assigned_to_id', '24', '33');
INSERT INTO public.journal_details VALUES (15921, 11762, 'attr', 'start_date', '2020-12-29', '2020-12-31');
INSERT INTO public.journal_details VALUES (15922, 11763, 'attr', 'assigned_to_id', '29', '32');
INSERT INTO public.journal_details VALUES (15923, 11764, 'attr', 'assigned_to_id', '12', '37');
INSERT INTO public.journal_details VALUES (15924, 11765, 'attr', 'subject', 'Không thêm mới được đơn vị cho nhóm đối tượng', 'Lỗi khi thêm mới đơn vị cho nhóm đối tượng');
INSERT INTO public.journal_details VALUES (15925, 11766, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15926, 11766, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15927, 11767, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15928, 11767, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15929, 11768, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15930, 11768, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15931, 11769, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15932, 11769, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15933, 11770, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (15934, 11771, 'attr', 'subject', 'Cài đặt "Báo cáo tình hình vay lại của Ủy ban nhân dân tỉnh"', 'Báo cáo tình hình vay lại của Ủy ban nhân dân tỉnh');
INSERT INTO public.journal_details VALUES (15935, 11772, 'attr', 'subject', 'Cài đặt "Báo cáo tình hình thực hiện cơ chế tự chủ của cơ quan hành chính nhà nước trên địa bàn tỉnh"', 'Báo cáo tình hình thực hiện cơ chế tự chủ của cơ quan hành chính nhà nước trên địa bàn tỉnh');
INSERT INTO public.journal_details VALUES (15936, 11773, 'attr', 'due_date', '2020-12-28', '2021-01-04');
INSERT INTO public.journal_details VALUES (15937, 11773, 'attr', 'start_date', '2020-12-28', '2021-01-04');
INSERT INTO public.journal_details VALUES (15938, 11774, 'attr', 'due_date', '2020-12-28', '2021-01-04');
INSERT INTO public.journal_details VALUES (15939, 11774, 'attr', 'start_date', '2020-12-28', '2021-01-04');
INSERT INTO public.journal_details VALUES (15940, 11775, 'attr', 'due_date', '2020-12-28', '2021-01-04');
INSERT INTO public.journal_details VALUES (15941, 11775, 'attr', 'start_date', '2020-12-28', '2021-01-04');
INSERT INTO public.journal_details VALUES (15942, 11776, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15943, 11777, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15944, 11778, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (15945, 11779, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15946, 11780, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15947, 11781, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15948, 11782, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15949, 11783, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15950, 11784, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15951, 11785, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15952, 11786, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15953, 11787, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15954, 11788, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15955, 11789, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15956, 11790, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15957, 11791, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (15958, 11792, 'attr', 'fixed_version_id', '76', '75');
INSERT INTO public.journal_details VALUES (15959, 11793, 'attr', 'fixed_version_id', '76', '75');
INSERT INTO public.journal_details VALUES (15960, 11794, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15961, 11795, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15962, 11796, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15963, 11797, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15964, 11798, 'attr', 'due_date', '2020-12-30', '2021-01-01');
INSERT INTO public.journal_details VALUES (15965, 11798, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15966, 11798, 'attr', 'start_date', '2020-12-30', '2021-01-01');
INSERT INTO public.journal_details VALUES (15967, 11798, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15968, 11799, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15969, 11800, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15970, 11801, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15971, 11802, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15972, 11803, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (15973, 11804, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (15974, 11805, 'attr', 'due_date', '2021-01-01', '2021-01-04');
INSERT INTO public.journal_details VALUES (15975, 11805, 'attr', 'start_date', '2021-01-01', '2021-01-04');
INSERT INTO public.journal_details VALUES (15976, 11806, 'attr', 'due_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (15977, 11806, 'attr', 'fixed_version_id', '76', '77');
INSERT INTO public.journal_details VALUES (15978, 11806, 'attr', 'start_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (15979, 11807, 'attr', 'due_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (15980, 11807, 'attr', 'fixed_version_id', '76', '77');
INSERT INTO public.journal_details VALUES (15981, 11807, 'attr', 'start_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (15982, 11808, 'attr', 'due_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (15983, 11808, 'attr', 'fixed_version_id', '76', '77');
INSERT INTO public.journal_details VALUES (15984, 11808, 'attr', 'start_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (15985, 11809, 'attr', 'due_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (15986, 11809, 'attr', 'fixed_version_id', '76', '77');
INSERT INTO public.journal_details VALUES (15987, 11809, 'attr', 'start_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (15988, 11810, 'attr', 'due_date', '2020-12-30', '2021-01-04');
INSERT INTO public.journal_details VALUES (15989, 11810, 'attr', 'fixed_version_id', '76', '77');
INSERT INTO public.journal_details VALUES (15990, 11810, 'attr', 'start_date', '2020-12-30', '2021-01-04');
INSERT INTO public.journal_details VALUES (15991, 11811, 'attr', 'due_date', '2020-12-30', '2021-01-04');
INSERT INTO public.journal_details VALUES (15992, 11811, 'attr', 'fixed_version_id', '76', '77');
INSERT INTO public.journal_details VALUES (15993, 11811, 'attr', 'start_date', '2020-12-30', '2021-01-04');
INSERT INTO public.journal_details VALUES (15994, 11812, 'attr', 'due_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (15995, 11812, 'attr', 'fixed_version_id', '76', '77');
INSERT INTO public.journal_details VALUES (15996, 11812, 'attr', 'start_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (15997, 11813, 'attr', 'due_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (15998, 11813, 'attr', 'fixed_version_id', '76', '77');
INSERT INTO public.journal_details VALUES (15999, 11813, 'attr', 'start_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (16000, 11814, 'attr', 'due_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (16001, 11814, 'attr', 'fixed_version_id', '76', '77');
INSERT INTO public.journal_details VALUES (16002, 11814, 'attr', 'start_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (16003, 11815, 'attr', 'due_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (16004, 11815, 'attr', 'fixed_version_id', '76', '77');
INSERT INTO public.journal_details VALUES (16005, 11815, 'attr', 'start_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (16006, 11816, 'attr', 'due_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (16007, 11816, 'attr', 'fixed_version_id', '76', '77');
INSERT INTO public.journal_details VALUES (16008, 11816, 'attr', 'start_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (16009, 11817, 'attr', 'due_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (16010, 11817, 'attr', 'fixed_version_id', '76', '77');
INSERT INTO public.journal_details VALUES (16011, 11817, 'attr', 'start_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (16012, 11818, 'attr', 'done_ratio', '100', '50');
INSERT INTO public.journal_details VALUES (16013, 11819, 'attr', 'done_ratio', '100', '50');
INSERT INTO public.journal_details VALUES (16014, 11820, 'attr', 'done_ratio', '100', '50');
INSERT INTO public.journal_details VALUES (16015, 11821, 'attr', 'done_ratio', '100', '50');
INSERT INTO public.journal_details VALUES (16016, 11822, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16017, 11823, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16018, 11824, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16019, 11825, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16020, 11826, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16021, 11827, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16022, 11828, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16023, 11829, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16024, 11830, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16025, 11831, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16026, 11832, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16027, 11833, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16028, 11834, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16029, 11835, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16030, 11836, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16031, 11837, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16032, 11838, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16033, 11839, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16034, 11840, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16035, 11841, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16036, 11842, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16037, 11843, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16038, 11844, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16039, 11845, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16040, 11846, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16041, 11847, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (16042, 11848, 'attr', 'fixed_version_id', '78', '82');
INSERT INTO public.journal_details VALUES (16043, 11849, 'attr', 'fixed_version_id', '78', '82');
INSERT INTO public.journal_details VALUES (16044, 11850, 'attr', 'fixed_version_id', '78', '82');
INSERT INTO public.journal_details VALUES (16045, 11851, 'attr', 'fixed_version_id', '78', '82');
INSERT INTO public.journal_details VALUES (16046, 11852, 'attr', 'fixed_version_id', '78', '82');
INSERT INTO public.journal_details VALUES (16047, 11853, 'attr', 'fixed_version_id', '79', '81');
INSERT INTO public.journal_details VALUES (16048, 11854, 'attr', 'fixed_version_id', '79', '81');
INSERT INTO public.journal_details VALUES (16049, 11855, 'attr', 'fixed_version_id', '79', '81');
INSERT INTO public.journal_details VALUES (16050, 11856, 'attr', 'fixed_version_id', '79', '81');
INSERT INTO public.journal_details VALUES (16051, 11857, 'attr', 'fixed_version_id', '79', '81');
INSERT INTO public.journal_details VALUES (16052, 11858, 'attr', 'fixed_version_id', '79', '81');
INSERT INTO public.journal_details VALUES (16053, 11859, 'attr', 'fixed_version_id', '79', '81');
INSERT INTO public.journal_details VALUES (16054, 11860, 'attr', 'fixed_version_id', '79', '81');
INSERT INTO public.journal_details VALUES (16055, 11861, 'attr', 'fixed_version_id', '79', '81');
INSERT INTO public.journal_details VALUES (16056, 11862, 'attr', 'fixed_version_id', '79', '81');
INSERT INTO public.journal_details VALUES (16057, 11863, 'attr', 'fixed_version_id', '79', '81');
INSERT INTO public.journal_details VALUES (16058, 11864, 'attr', 'fixed_version_id', '79', '81');
INSERT INTO public.journal_details VALUES (16059, 11865, 'attr', 'fixed_version_id', '79', '81');
INSERT INTO public.journal_details VALUES (16060, 11866, 'attr', 'fixed_version_id', '79', '81');
INSERT INTO public.journal_details VALUES (16061, 11867, 'attr', 'fixed_version_id', '79', '81');
INSERT INTO public.journal_details VALUES (16062, 11868, 'attr', 'due_date', '2020-12-27', '2021-01-04');
INSERT INTO public.journal_details VALUES (16063, 11868, 'attr', 'start_date', '2020-12-27', '2021-01-04');
INSERT INTO public.journal_details VALUES (16064, 11869, 'attr', 'due_date', '2020-12-27', '2021-01-04');
INSERT INTO public.journal_details VALUES (16065, 11869, 'attr', 'start_date', '2020-12-27', '2021-01-04');
INSERT INTO public.journal_details VALUES (16066, 11870, 'attr', 'due_date', '2020-12-27', '2021-01-04');
INSERT INTO public.journal_details VALUES (16067, 11870, 'attr', 'start_date', '2020-12-27', '2021-01-04');
INSERT INTO public.journal_details VALUES (16068, 11871, 'attr', 'due_date', '2020-12-28', '2021-01-04');
INSERT INTO public.journal_details VALUES (16069, 11871, 'attr', 'start_date', '2020-12-28', '2021-01-04');
INSERT INTO public.journal_details VALUES (16070, 11872, 'attr', 'due_date', '2020-12-28', '2021-01-04');
INSERT INTO public.journal_details VALUES (16071, 11872, 'attr', 'start_date', '2020-12-28', '2021-01-04');
INSERT INTO public.journal_details VALUES (16072, 11873, 'attr', 'due_date', '2020-12-28', '2021-01-04');
INSERT INTO public.journal_details VALUES (16073, 11873, 'attr', 'start_date', '2020-12-28', '2021-01-04');
INSERT INTO public.journal_details VALUES (16074, 11874, 'attr', 'due_date', '2020-12-30', '2021-01-04');
INSERT INTO public.journal_details VALUES (16075, 11874, 'attr', 'start_date', '2020-12-30', '2021-01-04');
INSERT INTO public.journal_details VALUES (16076, 11875, 'attr', 'due_date', '2020-12-28', '2021-01-04');
INSERT INTO public.journal_details VALUES (16077, 11875, 'attr', 'start_date', '2020-12-28', '2021-01-04');
INSERT INTO public.journal_details VALUES (16078, 11876, 'attr', 'due_date', '2020-12-29', '2021-01-04');
INSERT INTO public.journal_details VALUES (16079, 11876, 'attr', 'start_date', '2020-12-29', '2021-01-04');
INSERT INTO public.journal_details VALUES (16080, 11877, 'attr', 'due_date', '2020-12-28', '2021-01-04');
INSERT INTO public.journal_details VALUES (16081, 11877, 'attr', 'start_date', '2020-12-28', '2021-01-04');
INSERT INTO public.journal_details VALUES (16082, 11878, 'attr', 'due_date', '2020-12-28', '2021-01-04');
INSERT INTO public.journal_details VALUES (16083, 11878, 'attr', 'start_date', '2020-12-28', '2021-01-04');
INSERT INTO public.journal_details VALUES (16084, 11879, 'attr', 'due_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (16085, 11879, 'attr', 'start_date', '2020-12-30', '2021-01-04');
INSERT INTO public.journal_details VALUES (16086, 11880, 'attr', 'due_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (16087, 11880, 'attr', 'start_date', '2020-12-30', '2021-01-04');
INSERT INTO public.journal_details VALUES (16088, 11881, 'attr', 'due_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (16089, 11881, 'attr', 'start_date', '2020-12-31', '2021-01-04');
INSERT INTO public.journal_details VALUES (16090, 11882, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16091, 11883, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16092, 11884, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16093, 11885, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16094, 11886, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16095, 11887, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16096, 11888, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16097, 11889, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16098, 11890, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16099, 11891, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16100, 11892, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16101, 11892, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16102, 11893, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (16103, 11894, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16104, 11895, 'attr', 'subject', 'Thêm nút ký số SBN và DN', 'Thêm chức năng ký số SBN và DN');
INSERT INTO public.journal_details VALUES (16105, 11896, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16106, 11897, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16107, 11898, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16108, 11899, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16109, 11900, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16110, 11901, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (16111, 11902, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (16112, 11903, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (16113, 11904, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (16114, 11905, 'attr', 'description', 'DỰ ÁN: **QUẢN LÝ BÁN HÀNG**

TIẾN ĐỘ: **62%**

| Sprint | CHỨC NĂNG | SỐ ĐIỂM | NHÂN SỰ |
| --- | --- | --- | --- |
| 8, 9 | Khách hàng, Nhà cung cấp, Khuyến mãi, Xuất hàng nhiều đơn, Giảm giá | 133 | **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, TIẾN ĐẶNG, DUNG(Mobile)** |
| 10, 11 | Thiết lập mẫu in, Báo cáo | 0 | **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, DUNG(Mobile)** |
| 12, 13 | Công nợ, Quy đổi đơn vị |   | **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, DUNG(Mobile)** |
| 14, 15 | Fix Quy đổi đơn vị, Khuyến mãi |   | **NGHĨA(Leader), QUÝ, VIỆT, DUNG(Mobile)** |

BẢNG KẾ HOẠCH & TIẾN ĐỘ CHI TIẾT: [Click để xem](https://docs.google.com/spreadsheets/d/163Bdm2TFshtJcvoAPlUFv9-9Lf2UtNocnCgmB4cP2Ts/edit#gid=1843496086)', 'DỰ ÁN: **QUẢN LÝ BÁN HÀNG**

TIẾN ĐỘ: **77%**

| Sprint | CHỨC NĂNG | SỐ ĐIỂM | NHÂN SỰ |
| --- | --- | --- | --- |
| 8, 9 | Khách hàng, Nhà cung cấp, Khuyến mãi, Xuất hàng nhiều đơn, Giảm giá | 133 | **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, TIẾN ĐẶNG, DUNG(Mobile)** |
| 10, 11 | Thiết lập mẫu in, Báo cáo | 0 | **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, DUNG(Mobile)** |
| 12, 13 | Công nợ, Quy đổi đơn vị |   | **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, DUNG(Mobile)** |
| 14, 15 | Fix Quy đổi đơn vị, Khuyến mãi |   | **NGHĨA(Leader), QUÝ, VIỆT, TIẾN LÊ, DUNG(Mobile)** |
| 16, 17 | Báo cáo khuyến mãi, công nợ KH, NCC, xuất hủy |   | **NGHĨA(Leader), QUÝ, TIẾN LÊ, DUNG(Mobile)** |

BẢNG KẾ HOẠCH & TIẾN ĐỘ CHI TIẾT: [Click để xem](https://docs.google.com/spreadsheets/d/163Bdm2TFshtJcvoAPlUFv9-9Lf2UtNocnCgmB4cP2Ts/edit#gid=1843496086)');
INSERT INTO public.journal_details VALUES (16115, 11905, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16116, 11906, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16117, 11907, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16118, 11907, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16119, 11908, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16120, 11908, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16121, 11909, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16122, 11910, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16123, 11911, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16124, 11912, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16125, 11913, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (16126, 11914, 'attr', 'subject', 'Fix thao tác cập nhật trong quy trình thực hiện gửi báo cáo', 'Fix thao tác cập nhật trong chi tiết gửi nhận báo cáo');
INSERT INTO public.journal_details VALUES (16127, 11914, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16128, 11914, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16129, 11915, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16130, 11916, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16131, 11917, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16132, 11918, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16133, 11919, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16134, 11920, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16135, 11921, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16136, 11921, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16137, 11922, 'attr', 'subject', 'Báo cáo tình hình vay lại của Ủy ban nhân dân tỉnh', 'Lĩnh vực quản lý ngân sách');
INSERT INTO public.journal_details VALUES (16138, 11923, 'attr', 'subject', 'Báo cáo tình hình thực hiện cơ chế tự chủ của cơ quan hành chính nhà nước trên địa bàn tỉnh', 'Lĩnh vực hành chính sự nghiệp');
INSERT INTO public.journal_details VALUES (16139, 11923, 'attr', 'assigned_to_id', '9', '40');
INSERT INTO public.journal_details VALUES (16140, 11924, 'attr', 'due_date', '2020-12-29', '2021-01-04');
INSERT INTO public.journal_details VALUES (16141, 11924, 'attr', 'start_date', '2020-12-29', '2021-01-04');
INSERT INTO public.journal_details VALUES (16142, 11925, 'attr', 'due_date', '2020-12-29', '2021-01-04');
INSERT INTO public.journal_details VALUES (16143, 11925, 'attr', 'start_date', '2020-12-29', '2021-01-04');
INSERT INTO public.journal_details VALUES (16144, 11926, 'attr', 'fixed_version_id', '77', '80');
INSERT INTO public.journal_details VALUES (16145, 11927, 'attr', 'fixed_version_id', '77', '80');
INSERT INTO public.journal_details VALUES (16146, 11928, 'attr', 'fixed_version_id', '77', '80');
INSERT INTO public.journal_details VALUES (16147, 11929, 'attr', 'due_date', '2021-01-04', '2021-01-05');
INSERT INTO public.journal_details VALUES (16148, 11929, 'attr', 'start_date', '2021-01-04', '2021-01-05');
INSERT INTO public.journal_details VALUES (16149, 11930, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (16150, 11931, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (16151, 11932, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (16152, 11933, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16153, 11934, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16154, 11935, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16155, 11936, 'attr', 'due_date', NULL, '2021-01-05');
INSERT INTO public.journal_details VALUES (16156, 11936, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16157, 11937, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16158, 11938, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16159, 11939, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16160, 11940, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16161, 11941, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16162, 11942, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16163, 11943, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16164, 11944, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16165, 11945, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16166, 11946, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16167, 11946, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16168, 11947, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16169, 11948, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16170, 11949, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16171, 11950, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16172, 11951, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16173, 11952, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16174, 11952, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16175, 11953, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16176, 11953, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16177, 11954, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16178, 11954, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16179, 11955, 'attr', 'subject', 'Lỗi khi thêm mới đơn vị cho nhóm đối tượng', 'Khi thêm mới đơn vị cho nhóm đối tượng thì tổng số đơn vị không tự động cập nhật');
INSERT INTO public.journal_details VALUES (16180, 11956, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (16181, 11957, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (16182, 11958, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (16183, 11959, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16184, 11960, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16185, 11960, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16186, 11961, 'attr', 'due_date', NULL, '2021-01-06');
INSERT INTO public.journal_details VALUES (16187, 11962, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (16188, 11963, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16189, 11964, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16190, 11965, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16191, 11966, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16192, 11966, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16193, 11967, 'attr', 'due_date', '2021-01-06', '2021-01-07');
INSERT INTO public.journal_details VALUES (16194, 11967, 'attr', 'start_date', '2021-01-04', '2021-01-05');
INSERT INTO public.journal_details VALUES (16195, 11968, 'attr', 'assigned_to_id', '43', '29');
INSERT INTO public.journal_details VALUES (16196, 11969, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16197, 11970, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16198, 11971, 'attr', 'assigned_to_id', '37', '39');
INSERT INTO public.journal_details VALUES (16199, 11972, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (16200, 11973, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16201, 11973, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16202, 11974, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (16203, 11974, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16204, 11975, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16205, 11975, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16206, 11976, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (16207, 11976, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16208, 11976, 'attr', 'assigned_to_id', NULL, '17');
INSERT INTO public.journal_details VALUES (16209, 11977, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16210, 11978, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16211, 11979, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (16212, 11980, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (16213, 11981, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (16214, 11982, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16215, 11983, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16216, 11984, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16217, 11985, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (16218, 11986, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (16219, 11987, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (16220, 11988, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16221, 11989, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16222, 11990, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16223, 11991, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16224, 11992, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16225, 11993, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (16226, 11994, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16227, 11995, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16228, 11996, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16229, 11997, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16230, 11998, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16231, 11999, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16232, 12000, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16233, 12001, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16234, 12002, 'attr', 'description', '', 'https://notify.gdtvietnam.com/');
INSERT INTO public.journal_details VALUES (16235, 12003, 'attr', 'due_date', '2021-01-04', '2021-01-07');
INSERT INTO public.journal_details VALUES (16236, 12003, 'attr', 'start_date', '2021-01-04', '2021-01-07');
INSERT INTO public.journal_details VALUES (16237, 12003, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16238, 12004, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16239, 12005, 'attr', 'due_date', '2021-01-04', '2021-01-08');
INSERT INTO public.journal_details VALUES (16240, 12005, 'attr', 'start_date', '2021-01-04', '2021-01-08');
INSERT INTO public.journal_details VALUES (16241, 12006, 'attr', 'due_date', '2021-01-04', '2021-01-08');
INSERT INTO public.journal_details VALUES (16242, 12006, 'attr', 'start_date', '2021-01-04', '2021-01-08');
INSERT INTO public.journal_details VALUES (16243, 12007, 'attr', 'due_date', '2021-01-04', '2021-01-08');
INSERT INTO public.journal_details VALUES (16244, 12007, 'attr', 'start_date', '2021-01-04', '2021-01-08');
INSERT INTO public.journal_details VALUES (16245, 12008, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16246, 12008, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16247, 12009, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16248, 12010, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16249, 12011, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16250, 12012, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16251, 12013, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16252, 12014, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16253, 12015, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16254, 12015, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16255, 12016, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16256, 12017, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16257, 12018, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16258, 12019, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16259, 12020, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16260, 12021, 'attr', 'due_date', '2021-01-09', '2021-01-08');
INSERT INTO public.journal_details VALUES (16261, 12022, 'attr', 'due_date', '2021-01-12', '2021-01-09');
INSERT INTO public.journal_details VALUES (16262, 12022, 'attr', 'fixed_version_id', '83', '77');
INSERT INTO public.journal_details VALUES (16263, 12022, 'attr', 'start_date', '2021-01-11', '2021-01-09');
INSERT INTO public.journal_details VALUES (16264, 12022, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16265, 12023, 'attr', 'due_date', '2021-01-04', '2021-01-09');
INSERT INTO public.journal_details VALUES (16266, 12023, 'attr', 'fixed_version_id', '80', '77');
INSERT INTO public.journal_details VALUES (16267, 12023, 'attr', 'start_date', '2021-01-04', '2021-01-09');
INSERT INTO public.journal_details VALUES (16268, 12024, 'attr', 'due_date', '2021-01-05', '2021-01-09');
INSERT INTO public.journal_details VALUES (16269, 12024, 'attr', 'fixed_version_id', '80', '77');
INSERT INTO public.journal_details VALUES (16270, 12024, 'attr', 'start_date', '2021-01-05', '2021-01-09');
INSERT INTO public.journal_details VALUES (16271, 12025, 'attr', 'due_date', '2021-01-06', '2021-01-09');
INSERT INTO public.journal_details VALUES (16272, 12025, 'attr', 'fixed_version_id', '80', '77');
INSERT INTO public.journal_details VALUES (16273, 12025, 'attr', 'start_date', '2021-01-06', '2021-01-09');
INSERT INTO public.journal_details VALUES (16274, 12026, 'attr', 'due_date', '2021-01-07', '2021-01-09');
INSERT INTO public.journal_details VALUES (16275, 12026, 'attr', 'fixed_version_id', '80', '77');
INSERT INTO public.journal_details VALUES (16276, 12026, 'attr', 'start_date', '2021-01-07', '2021-01-09');
INSERT INTO public.journal_details VALUES (16277, 12027, 'attr', 'due_date', '2021-01-08', '2021-01-09');
INSERT INTO public.journal_details VALUES (16278, 12027, 'attr', 'fixed_version_id', '80', '77');
INSERT INTO public.journal_details VALUES (16279, 12027, 'attr', 'start_date', '2021-01-08', '2021-01-09');
INSERT INTO public.journal_details VALUES (16280, 12028, 'attr', 'fixed_version_id', '77', '80');
INSERT INTO public.journal_details VALUES (16281, 12029, 'attr', 'fixed_version_id', '77', '80');
INSERT INTO public.journal_details VALUES (16282, 12030, 'attr', 'fixed_version_id', '77', '80');
INSERT INTO public.journal_details VALUES (16283, 12031, 'attr', 'fixed_version_id', '77', '80');
INSERT INTO public.journal_details VALUES (16284, 12032, 'attr', 'fixed_version_id', '77', '80');
INSERT INTO public.journal_details VALUES (16285, 12033, 'attr', 'assigned_to_id', '38', '39');
INSERT INTO public.journal_details VALUES (16286, 12034, 'attr', 'subject', 'API kiểm tra sốlượng mua có vượt tồn kho thực tế', 'API kiểm tra số lượng mua có vượt tồn kho thực tế');
INSERT INTO public.journal_details VALUES (16287, 12034, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16288, 12034, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16289, 12035, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16290, 12036, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16291, 12037, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16292, 12038, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16293, 12039, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16294, 12040, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (16295, 12041, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (16296, 12042, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (16297, 12043, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (16298, 12044, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16299, 12045, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16300, 12046, 'attr', 'due_date', '2021-01-04', '2021-01-09');
INSERT INTO public.journal_details VALUES (16301, 12046, 'attr', 'start_date', '2021-01-04', '2021-01-09');
INSERT INTO public.journal_details VALUES (16302, 12046, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16303, 12047, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16304, 12048, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16305, 12049, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16306, 12050, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16307, 12051, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16308, 12052, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16309, 12052, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16310, 12053, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16311, 12053, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16312, 12054, 'attr', 'due_date', '2021-01-04', '2021-01-09');
INSERT INTO public.journal_details VALUES (16313, 12054, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16314, 12054, 'attr', 'start_date', '2021-01-04', '2021-01-09');
INSERT INTO public.journal_details VALUES (16315, 12054, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16316, 12055, 'attr', 'done_ratio', '100', '50');
INSERT INTO public.journal_details VALUES (16317, 12056, 'attr', 'assigned_to_id', '39', '8');
INSERT INTO public.journal_details VALUES (16318, 12056, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16319, 12057, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16320, 12058, 'attr', 'fixed_version_id', '82', '81');
INSERT INTO public.journal_details VALUES (16321, 12059, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16322, 12060, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16323, 12061, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16324, 12062, 'attr', 'due_date', '2021-01-09', '2021-01-11');
INSERT INTO public.journal_details VALUES (16325, 12062, 'attr', 'fixed_version_id', '80', '83');
INSERT INTO public.journal_details VALUES (16326, 12062, 'attr', 'start_date', '2021-01-09', '2021-01-11');
INSERT INTO public.journal_details VALUES (16327, 12063, 'attr', 'due_date', '2021-01-09', '2021-01-11');
INSERT INTO public.journal_details VALUES (16328, 12063, 'attr', 'fixed_version_id', '80', '83');
INSERT INTO public.journal_details VALUES (16329, 12063, 'attr', 'start_date', '2021-01-09', '2021-01-11');
INSERT INTO public.journal_details VALUES (16330, 12064, 'attr', 'due_date', '2021-01-09', '2021-01-11');
INSERT INTO public.journal_details VALUES (16331, 12064, 'attr', 'fixed_version_id', '80', '83');
INSERT INTO public.journal_details VALUES (16332, 12064, 'attr', 'start_date', '2021-01-09', '2021-01-11');
INSERT INTO public.journal_details VALUES (16333, 12065, 'attr', 'due_date', '2021-01-09', '2021-01-11');
INSERT INTO public.journal_details VALUES (16334, 12065, 'attr', 'fixed_version_id', '80', '83');
INSERT INTO public.journal_details VALUES (16335, 12065, 'attr', 'start_date', '2021-01-09', '2021-01-11');
INSERT INTO public.journal_details VALUES (16336, 12066, 'attr', 'due_date', '2021-01-09', '2021-01-11');
INSERT INTO public.journal_details VALUES (16337, 12066, 'attr', 'fixed_version_id', '80', '83');
INSERT INTO public.journal_details VALUES (16338, 12066, 'attr', 'start_date', '2021-01-09', '2021-01-11');
INSERT INTO public.journal_details VALUES (16339, 12067, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16340, 12068, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16341, 12069, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16342, 12070, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16343, 12071, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16344, 12072, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16345, 12073, 'attr', 'fixed_version_id', '83', '80');
INSERT INTO public.journal_details VALUES (16346, 12074, 'attr', 'fixed_version_id', '83', '80');
INSERT INTO public.journal_details VALUES (16347, 12075, 'attr', 'fixed_version_id', '83', '80');
INSERT INTO public.journal_details VALUES (16348, 12076, 'attr', 'fixed_version_id', '83', '80');
INSERT INTO public.journal_details VALUES (16349, 12077, 'attr', 'fixed_version_id', '83', '80');
INSERT INTO public.journal_details VALUES (16350, 12078, 'attr', 'due_date', NULL, '2021-01-11');
INSERT INTO public.journal_details VALUES (16351, 12078, 'attr', 'fixed_version_id', '77', '83');
INSERT INTO public.journal_details VALUES (16352, 12078, 'attr', 'start_date', '2021-01-09', '2021-01-11');
INSERT INTO public.journal_details VALUES (16353, 12079, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16354, 12080, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16355, 12081, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16356, 12082, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16357, 12083, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16358, 12084, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16359, 12085, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16360, 12086, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16361, 12087, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16362, 12088, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16363, 12089, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16364, 12090, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16365, 12091, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16366, 12092, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16367, 12093, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16368, 12094, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16369, 12095, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16370, 12096, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16371, 12097, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16372, 12098, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16373, 12099, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16374, 12100, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16375, 12101, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16376, 12102, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16377, 12103, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16378, 12104, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16379, 12105, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16380, 12106, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16381, 12107, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16382, 12108, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16383, 12109, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16384, 12110, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16385, 12111, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16386, 12112, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16387, 12113, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16388, 12114, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16389, 12115, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16390, 12116, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16391, 12117, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16392, 12118, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16393, 12119, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16394, 12120, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16395, 12121, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16396, 12122, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16397, 12123, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16398, 12124, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16399, 12125, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16400, 12126, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16401, 12127, 'attr', 'done_ratio', '50', '100');
INSERT INTO public.journal_details VALUES (16402, 12128, 'attr', 'subject', 'Tạo mẫu báo cáo thực tế theo quyết định 38', 'Tạo mẫu báo cáo thực tế theo quyết định 38 ( 60 mẫu )');
INSERT INTO public.journal_details VALUES (16403, 12128, 'attr', 'due_date', NULL, '2021-01-16');
INSERT INTO public.journal_details VALUES (16404, 12129, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16405, 12130, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16406, 12131, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16407, 12132, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16408, 12133, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16409, 12134, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16410, 12135, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16411, 12136, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16412, 12137, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16413, 12138, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16414, 12139, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16415, 12140, 'attr', 'done_ratio', '0', '60');
INSERT INTO public.journal_details VALUES (16416, 12141, 'attr', 'description', 'Id

CreatedDate

HanhDong

NoiDung

DonViGui_Id

DonViNhan_Id

DaXemThongBao

> UBND Huyện Hoài Nhơn tỉnh Bình Định đã gửi "Báo cáo kết quả thực hiện chương trình thực hành tiết kiệm, chống lãng phí (Định kì 9 tháng đầu năm 2021)"', 'Id

CreatedDate

HanhDong

NoiDung

DonViGui_Id

DonViNhan_Id

DaXemThongBao

> UBND Huyện Hoài Nhơn tỉnh Bình Định      đã     gửi      "Báo cáo kết quả thực hiện chương trình thực hành tiết kiệm, chống lãng phí (Định kì 9 tháng đầu năm 2021)"

> Hệ thống     đã     thông báo     sắp đến hạn gửi báo cáo "Báo cáo kết quả thực hiện chương trình thực hành tiết kiệm, chống lãng phí (Định kì 9 tháng đầu năm 2021)"');
INSERT INTO public.journal_details VALUES (16417, 12142, 'attr', 'description', 'Id

CreatedDate

HanhDong

NoiDung

DonViGui_Id

DonViNhan_Id

DaXemThongBao

> UBND Huyện Hoài Nhơn tỉnh Bình Định      đã     gửi      "Báo cáo kết quả thực hiện chương trình thực hành tiết kiệm, chống lãng phí (Định kì 9 tháng đầu năm 2021)"

> Hệ thống     đã     thông báo     sắp đến hạn gửi báo cáo "Báo cáo kết quả thực hiện chương trình thực hành tiết kiệm, chống lãng phí (Định kì 9 tháng đầu năm 2021)"', 'Id

CreatedDate

HanhDong

NoiDung

DonViGui_Id

DonViNhan_Id

DaXemThongBao

Target_Id

Target_Module

> UBND Huyện Hoài Nhơn tỉnh Bình Định      đã     gửi      "Báo cáo kết quả thực hiện chương trình thực hành tiết kiệm, chống lãng phí (Định kì 9 tháng đầu năm 2021)"
> 
> Hệ thống     đã     thông báo     sắp đến hạn gửi báo cáo "Báo cáo kết quả thực hiện chương trình thực hành tiết kiệm, chống lãng phí (Định kì 9 tháng đầu năm 2021)"');
INSERT INTO public.journal_details VALUES (16418, 12143, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16419, 12144, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16420, 12145, 'attr', 'subject', 'Không thực hiện được thao tác tạo tài khoản từ động cho đơn vị', 'Không thực hiện được thao tác tạo tài khoản tự động cho đơn vị');
INSERT INTO public.journal_details VALUES (16421, 12145, 'attr', 'assigned_to_id', '38', '37');
INSERT INTO public.journal_details VALUES (16422, 12146, 'attr', 'assigned_to_id', '37', '38');
INSERT INTO public.journal_details VALUES (16423, 12147, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16424, 12147, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16425, 12148, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16426, 12148, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16427, 12149, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (16428, 12149, 'attr', 'fixed_version_id', NULL, '83');
INSERT INTO public.journal_details VALUES (16429, 12150, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16430, 12151, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16431, 12152, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16432, 12153, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16433, 12154, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16434, 12155, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16435, 12156, 'attr', 'fixed_version_id', NULL, '75');
INSERT INTO public.journal_details VALUES (16436, 12157, 'attr', 'start_date', '2021-01-11', '2021-01-12');
INSERT INTO public.journal_details VALUES (16437, 12158, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16438, 12159, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16439, 12160, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16440, 12161, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16441, 12162, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16442, 12163, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16443, 12164, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16444, 12165, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16445, 12166, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16446, 12167, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16447, 12168, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16448, 12169, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16449, 12170, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16450, 12171, 'attr', 'fixed_version_id', NULL, '33');
INSERT INTO public.journal_details VALUES (16451, 12172, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16452, 12173, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16453, 12174, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16454, 12175, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16455, 12176, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16456, 12177, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16457, 12178, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16458, 12179, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16459, 12180, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16460, 12181, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16461, 12182, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16462, 12183, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16463, 12184, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16464, 12185, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16465, 12186, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16466, 12187, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16467, 12188, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16468, 12189, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16469, 12190, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16470, 12191, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16471, 12192, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16472, 12193, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16473, 12194, 'attr', 'fixed_version_id', '81', '85');
INSERT INTO public.journal_details VALUES (16474, 12195, 'attr', 'assigned_to_id', '37', '40');
INSERT INTO public.journal_details VALUES (16475, 12196, 'attr', 'assigned_to_id', '40', '37');
INSERT INTO public.journal_details VALUES (16476, 12197, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16477, 12198, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (16478, 12199, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (16479, 12200, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (16480, 12201, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (16481, 12202, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16482, 12203, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16483, 12203, 'attr', 'start_date', '2021-01-11', '2021-01-12');
INSERT INTO public.journal_details VALUES (16484, 12203, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16485, 12204, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (16486, 12205, 'attr', 'done_ratio', '60', '90');
INSERT INTO public.journal_details VALUES (16487, 12206, 'attr', 'fixed_version_id', NULL, '85');
INSERT INTO public.journal_details VALUES (16488, 12207, 'attr', 'fixed_version_id', NULL, '85');
INSERT INTO public.journal_details VALUES (16489, 12208, 'attr', 'fixed_version_id', NULL, '85');
INSERT INTO public.journal_details VALUES (16490, 12209, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16491, 12210, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16492, 12211, 'attr', 'done_ratio', '0', '70');
INSERT INTO public.journal_details VALUES (16493, 12212, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (16494, 12213, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (16495, 12214, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16496, 12215, 'attr', 'subject', 'Lĩnh vực tài chính sự doanh nghiệp', 'Lĩnh vực tài chính doanh nghiệp');
INSERT INTO public.journal_details VALUES (16497, 12215, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16498, 12216, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (16499, 12217, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (16500, 12217, 'attr', 'done_ratio', '0', '40');
INSERT INTO public.journal_details VALUES (16501, 12218, 'attr', 'due_date', '2021-01-13', '2021-01-14');
INSERT INTO public.journal_details VALUES (16502, 12218, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16503, 12218, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16504, 12219, 'attr', 'due_date', '2021-01-13', '2021-01-14');
INSERT INTO public.journal_details VALUES (16505, 12219, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16506, 12219, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16507, 12220, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16508, 12221, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16509, 12222, 'attr', 'due_date', '2021-01-13', '2021-01-14');
INSERT INTO public.journal_details VALUES (16510, 12222, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16511, 12223, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16512, 12224, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (16513, 12225, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (16514, 12225, 'attr', 'fixed_version_id', NULL, '83');
INSERT INTO public.journal_details VALUES (16515, 12226, 'attr', 'due_date', '2021-01-14', '2021-01-15');
INSERT INTO public.journal_details VALUES (16516, 12227, 'attr', 'due_date', '2021-01-11', '2021-01-16');
INSERT INTO public.journal_details VALUES (16517, 12228, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (16518, 12229, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16519, 12230, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16520, 12231, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16521, 12232, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16522, 12233, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16523, 12234, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16524, 12235, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16525, 12236, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16526, 12237, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16527, 12238, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16528, 12238, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16529, 12239, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16530, 12240, 'attr', 'done_ratio', '40', '100');
INSERT INTO public.journal_details VALUES (16531, 12241, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16532, 12242, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16533, 12243, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16534, 12244, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (16535, 12245, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (16536, 12246, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16537, 12247, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16538, 12248, 'attr', 'fixed_version_id', NULL, '83');
INSERT INTO public.journal_details VALUES (16539, 12249, 'attr', 'fixed_version_id', NULL, '83');
INSERT INTO public.journal_details VALUES (16540, 12250, 'attr', 'assigned_to_id', '39', '38');
INSERT INTO public.journal_details VALUES (16541, 12251, 'attr', 'assigned_to_id', '38', '12');
INSERT INTO public.journal_details VALUES (16542, 12252, 'attr', 'assigned_to_id', '39', '8');
INSERT INTO public.journal_details VALUES (16543, 12253, 'attr', 'assigned_to_id', '37', '12');
INSERT INTO public.journal_details VALUES (16544, 12254, 'attr', 'fixed_version_id', '83', '86');
INSERT INTO public.journal_details VALUES (16545, 12255, 'attr', 'fixed_version_id', '83', '86');
INSERT INTO public.journal_details VALUES (16546, 12256, 'attr', 'fixed_version_id', '83', '86');
INSERT INTO public.journal_details VALUES (16547, 12257, 'attr', 'fixed_version_id', '83', '86');
INSERT INTO public.journal_details VALUES (16548, 12258, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16549, 12258, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16550, 12259, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16551, 12259, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16552, 12260, 'attr', 'due_date', '2021-01-16', '2021-01-18');
INSERT INTO public.journal_details VALUES (16553, 12260, 'attr', 'start_date', '2021-01-16', '2021-01-18');
INSERT INTO public.journal_details VALUES (16554, 12261, 'attr', 'due_date', '2021-01-16', '2021-01-18');
INSERT INTO public.journal_details VALUES (16555, 12261, 'attr', 'start_date', '2021-01-16', '2021-01-18');
INSERT INTO public.journal_details VALUES (16556, 12262, 'attr', 'due_date', '2021-01-16', '2021-01-18');
INSERT INTO public.journal_details VALUES (16557, 12262, 'attr', 'start_date', '2021-01-16', '2021-01-18');
INSERT INTO public.journal_details VALUES (16558, 12263, 'attr', 'due_date', '2021-01-16', '2021-01-18');
INSERT INTO public.journal_details VALUES (16559, 12263, 'attr', 'start_date', '2021-01-16', '2021-01-18');
INSERT INTO public.journal_details VALUES (16560, 12264, 'attr', 'due_date', '2021-01-16', '2021-01-18');
INSERT INTO public.journal_details VALUES (16561, 12264, 'attr', 'assigned_to_id', '13', '12');
INSERT INTO public.journal_details VALUES (16562, 12266, 'attr', 'assigned_to_id', '12', '13');
INSERT INTO public.journal_details VALUES (16563, 12267, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16564, 12268, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16565, 12269, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16566, 12270, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16567, 12271, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16568, 12272, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16569, 12273, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (16570, 12274, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16571, 12275, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16572, 12276, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16573, 12277, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16574, 12278, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16575, 12279, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16576, 12280, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16577, 12281, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16578, 12282, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16579, 12283, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (16580, 12284, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16581, 12285, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16582, 12286, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16583, 12287, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16584, 12288, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16585, 12289, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (16586, 12290, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16587, 12291, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16588, 12292, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16589, 12293, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16590, 12294, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16591, 12295, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (16592, 12296, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16593, 12297, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16594, 12298, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16595, 12299, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16596, 12300, 'attr', 'fixed_version_id', NULL, '85');
INSERT INTO public.journal_details VALUES (16597, 12301, 'attr', 'fixed_version_id', NULL, '85');
INSERT INTO public.journal_details VALUES (16598, 12302, 'attr', 'fixed_version_id', NULL, '85');
INSERT INTO public.journal_details VALUES (16599, 12303, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16600, 12304, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16601, 12305, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16602, 12306, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16603, 12307, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16604, 12308, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16605, 12309, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16606, 12310, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16607, 12311, 'attr', 'due_date', '2021-01-15', '2021-01-16');
INSERT INTO public.journal_details VALUES (16608, 12311, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16609, 12311, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16610, 12312, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16611, 12312, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16612, 12313, 'attr', 'due_date', '2021-01-04', '2021-01-11');
INSERT INTO public.journal_details VALUES (16613, 12313, 'attr', 'start_date', '2021-01-04', '2021-01-11');
INSERT INTO public.journal_details VALUES (16614, 12314, 'attr', 'done_ratio', '0', '30');
INSERT INTO public.journal_details VALUES (16615, 12315, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16616, 12316, 'attr', 'subject', 'sprint #1 ( 19/1 - 23/1) Cập nhật tính năng', 'sprint #1 ( 19/1 - 23/1) Cập nhật thêm tính năng');
INSERT INTO public.journal_details VALUES (16617, 12317, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16618, 12318, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16619, 12319, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16620, 12320, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16621, 12321, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (16622, 12322, 'attr', 'due_date', '2021-01-18', '2021-01-19');
INSERT INTO public.journal_details VALUES (16623, 12322, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16624, 12323, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16625, 12324, 'attr', 'subject', 'Hiển thị tất cả các mẫu báo cáo khi thực hiện coppy mẫu', 'Hiển thị tất cả các mẫu báo cáo khi thực hiện copy mẫu');
INSERT INTO public.journal_details VALUES (16626, 12324, 'attr', 'due_date', '2021-01-16', '2021-01-19');
INSERT INTO public.journal_details VALUES (16627, 12324, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16628, 12325, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16629, 12325, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16630, 12326, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16631, 12327, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (16632, 12328, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (16633, 12329, 'attr', 'due_date', NULL, '2021-01-20');
INSERT INTO public.journal_details VALUES (16634, 12329, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16635, 12329, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16636, 12330, 'attr', 'due_date', NULL, '2021-01-20');
INSERT INTO public.journal_details VALUES (16637, 12330, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16638, 12330, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16639, 12331, 'attr', 'due_date', NULL, '2021-01-20');
INSERT INTO public.journal_details VALUES (16640, 12331, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16641, 12331, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16642, 12332, 'attr', 'done_ratio', '30', '60');
INSERT INTO public.journal_details VALUES (16643, 12333, 'attr', 'tracker_id', '3', '2');
INSERT INTO public.journal_details VALUES (16644, 12334, 'attr', 'description', 'Chi tiết công việc được thể hiện trong redmine.', 'Chi tiết công việc được thể hiện trong redmine.
https://docs.google.com/spreadsheets/d/14C78psfIENiPCV5JqcOl-M6OnELMVJl95gnTJSQQB0s/edit?usp=sharing');
INSERT INTO public.journal_details VALUES (16645, 12335, 'attr', 'subject', 'Mở rộng module xuất báo cáo, merger row', 'Mở rộng module xuất báo cáo, merge row');
INSERT INTO public.journal_details VALUES (16646, 12336, 'attr', 'description', '', 'Link Thống kê tất cả các mẫu báo cáo:
https://docs.google.com/spreadsheets/d/14C78psfIENiPCV5JqcOl-M6OnELMVJl95gnTJSQQB0s/edit?usp=sharing');
INSERT INTO public.journal_details VALUES (16647, 12337, 'attr', 'due_date', NULL, '2021-01-21');
INSERT INTO public.journal_details VALUES (16648, 12337, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16649, 12337, 'attr', 'start_date', '2021-01-19', '2021-01-21');
INSERT INTO public.journal_details VALUES (16650, 12337, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16651, 12338, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16652, 12338, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16653, 12339, 'attr', 'done_ratio', '0', '70');
INSERT INTO public.journal_details VALUES (16654, 12340, 'attr', 'done_ratio', '60', '100');
INSERT INTO public.journal_details VALUES (16655, 12341, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16656, 12342, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16657, 12343, 'attr', 'subject', 'Doanh mục mã hàng theo cửa hàng, đại lý', 'Danh mục mã hàng theo cửa hàng, đại lý');
INSERT INTO public.journal_details VALUES (16658, 12344, 'attr', 'subject', 'Doanh mục cửa hàng, đại lý', 'Danh mục cửa hàng, đại lý');
INSERT INTO public.journal_details VALUES (16659, 12345, 'attr', 'due_date', '2021-01-22', '2021-02-22');
INSERT INTO public.journal_details VALUES (16660, 12345, 'attr', 'start_date', '2021-01-22', '2021-02-22');
INSERT INTO public.journal_details VALUES (16661, 12346, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16662, 12347, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16663, 12348, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16664, 12349, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16665, 12350, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16666, 12351, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16667, 12352, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16668, 12353, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16669, 12354, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16670, 12355, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16671, 12356, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16672, 12357, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16673, 12358, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16674, 12359, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16675, 12360, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16676, 12361, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16677, 12362, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16678, 12363, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16679, 12364, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16680, 12365, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16681, 12366, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16682, 12367, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16683, 12368, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16684, 12369, 'attr', 'fixed_version_id', NULL, '90');
INSERT INTO public.journal_details VALUES (16685, 12370, 'attr', 'fixed_version_id', '85', '33');
INSERT INTO public.journal_details VALUES (16686, 12371, 'attr', 'due_date', '2021-01-11', NULL);
INSERT INTO public.journal_details VALUES (16687, 12371, 'attr', 'start_date', '2021-01-11', NULL);
INSERT INTO public.journal_details VALUES (16688, 12372, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (16689, 12373, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (16690, 12374, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (16691, 12375, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (16692, 12376, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16693, 12377, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16694, 12378, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16695, 12379, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16696, 12380, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16697, 12381, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16698, 12382, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16699, 12383, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16700, 12384, 'attr', 'due_date', '2021-01-24', '2021-01-23');
INSERT INTO public.journal_details VALUES (16701, 12385, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16702, 12386, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16703, 12387, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16704, 12388, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16705, 12389, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16706, 12390, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16707, 12391, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (16708, 12392, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (16709, 12393, 'attr', 'subject', 'sprint #2 ( 25/1 - 30/1) Các danh mục dùng chung', 'Danh mục cửa hàng/đại lý');
INSERT INTO public.journal_details VALUES (16710, 12393, 'attr', 'fixed_version_id', NULL, '92');
INSERT INTO public.journal_details VALUES (16711, 12394, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (16713, 12396, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (16715, 12398, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (16716, 12399, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (16718, 12401, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (16720, 12403, 'attr', 'fixed_version_id', '90', '92');
INSERT INTO public.journal_details VALUES (16721, 12404, 'attr', 'subject', 'Danh mục cửa hàng, đại lý', 'Odata danh mục cửa hàng, đại lý');
INSERT INTO public.journal_details VALUES (16722, 12404, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16723, 12404, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (16724, 12404, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16725, 12405, 'attr', 'fixed_version_id', '90', '92');
INSERT INTO public.journal_details VALUES (16726, 12406, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (16727, 12407, 'attr', 'fixed_version_id', NULL, '92');
INSERT INTO public.journal_details VALUES (16728, 12408, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (16729, 12408, 'attr', 'fixed_version_id', NULL, '92');
INSERT INTO public.journal_details VALUES (16730, 12408, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16731, 12409, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (16732, 12410, 'attr', 'fixed_version_id', '90', '92');
INSERT INTO public.journal_details VALUES (16733, 12411, 'attr', 'due_date', '2021-01-25', '2021-01-26');
INSERT INTO public.journal_details VALUES (16734, 12411, 'attr', 'start_date', '2021-01-25', '2021-01-26');
INSERT INTO public.journal_details VALUES (16735, 12411, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16736, 12412, 'attr', 'subject', 'Danh mục khách hàng', 'Danh mục nhân viên');
INSERT INTO public.journal_details VALUES (16737, 12413, 'attr', 'subject', 'Danh mục đội thuê ngoài', 'Odata danh mục đội thuê ngoài');
INSERT INTO public.journal_details VALUES (16738, 12414, 'attr', 'subject', 'Danh mục nhân viên', 'Odata danh mục nhân viên');
INSERT INTO public.journal_details VALUES (16739, 12415, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16740, 12416, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16741, 12417, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16742, 12418, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16743, 12419, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16744, 12420, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16745, 12421, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16746, 12422, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16747, 12423, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (16748, 12424, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (16749, 12425, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (16750, 12426, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (16751, 12427, 'attr', 'done_ratio', '20', '100');
INSERT INTO public.journal_details VALUES (16752, 12428, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (16753, 12429, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (16754, 12430, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16755, 12431, 'attr', 'fixed_version_id', '92', '89');
INSERT INTO public.journal_details VALUES (16756, 12432, 'attr', 'fixed_version_id', '92', '89');
INSERT INTO public.journal_details VALUES (16757, 12433, 'attr', 'fixed_version_id', '92', '89');
INSERT INTO public.journal_details VALUES (16758, 12434, 'attr', 'fixed_version_id', '92', '89');
INSERT INTO public.journal_details VALUES (16759, 12435, 'attr', 'fixed_version_id', '92', '89');
INSERT INTO public.journal_details VALUES (16760, 12436, 'attr', 'fixed_version_id', '92', '89');
INSERT INTO public.journal_details VALUES (16761, 12437, 'attr', 'fixed_version_id', '92', '89');
INSERT INTO public.journal_details VALUES (16762, 12438, 'attr', 'fixed_version_id', '92', '89');
INSERT INTO public.journal_details VALUES (16763, 12439, 'attr', 'fixed_version_id', '92', '89');
INSERT INTO public.journal_details VALUES (16764, 12440, 'attr', 'fixed_version_id', '92', '89');
INSERT INTO public.journal_details VALUES (16765, 12441, 'attr', 'fixed_version_id', '92', '89');
INSERT INTO public.journal_details VALUES (16767, 12443, 'attr', 'fixed_version_id', '92', '89');
INSERT INTO public.journal_details VALUES (16769, 12445, 'attr', 'due_date', '2021-01-20', '2021-01-25');
INSERT INTO public.journal_details VALUES (16770, 12445, 'attr', 'start_date', '2021-01-20', '2021-01-25');
INSERT INTO public.journal_details VALUES (16771, 12446, 'attr', 'due_date', '2021-01-20', '2021-01-25');
INSERT INTO public.journal_details VALUES (16772, 12446, 'attr', 'start_date', '2021-01-20', '2021-01-25');
INSERT INTO public.journal_details VALUES (16773, 12447, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16774, 12447, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16775, 12448, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16776, 12448, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16777, 12449, 'attr', 'fixed_version_id', '90', '89');
INSERT INTO public.journal_details VALUES (16778, 12450, 'attr', 'subject', 'Danh mục mã hàng theo cửa hàng, đại lý', 'Odata danh mục mã hàng theo cửa hàng, đại lý');
INSERT INTO public.journal_details VALUES (16779, 12450, 'attr', 'due_date', '2021-01-25', '2021-01-27');
INSERT INTO public.journal_details VALUES (16780, 12450, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (16781, 12450, 'attr', 'start_date', '2021-01-25', '2021-01-27');
INSERT INTO public.journal_details VALUES (16782, 12451, 'attr', 'fixed_version_id', '90', '89');
INSERT INTO public.journal_details VALUES (16783, 12452, 'attr', 'due_date', '2021-02-01', '2021-01-28');
INSERT INTO public.journal_details VALUES (16784, 12452, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (16785, 12452, 'attr', 'start_date', '2021-02-01', '2021-01-28');
INSERT INTO public.journal_details VALUES (16786, 12453, 'attr', 'due_date', '2021-01-29', '2021-01-28');
INSERT INTO public.journal_details VALUES (16787, 12453, 'attr', 'start_date', '2021-01-29', '2021-01-28');
INSERT INTO public.journal_details VALUES (16788, 12454, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (16789, 12454, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16790, 12455, 'attr', 'fixed_version_id', '10', '93');
INSERT INTO public.journal_details VALUES (16791, 12456, 'attr', 'fixed_version_id', '10', '93');
INSERT INTO public.journal_details VALUES (16792, 12457, 'attr', 'fixed_version_id', '10', '93');
INSERT INTO public.journal_details VALUES (16793, 12458, 'attr', 'fixed_version_id', '10', '93');
INSERT INTO public.journal_details VALUES (16794, 12459, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (16795, 12459, 'attr', 'subject', 'Backend', 'BACKEND');
INSERT INTO public.journal_details VALUES (16796, 12460, 'attr', 'subject', 'BACKEND', 'TEST');
INSERT INTO public.journal_details VALUES (16797, 12460, 'attr', 'fixed_version_id', NULL, '94');
INSERT INTO public.journal_details VALUES (16798, 12461, 'attr', 'fixed_version_id', '89', '94');
INSERT INTO public.journal_details VALUES (16799, 12462, 'attr', 'fixed_version_id', '89', '94');
INSERT INTO public.journal_details VALUES (16800, 12463, 'attr', 'fixed_version_id', '89', '94');
INSERT INTO public.journal_details VALUES (16801, 12464, 'attr', 'fixed_version_id', '89', '94');
INSERT INTO public.journal_details VALUES (16802, 12465, 'attr', 'fixed_version_id', '89', '94');
INSERT INTO public.journal_details VALUES (16803, 12466, 'attr', 'fixed_version_id', '89', '94');
INSERT INTO public.journal_details VALUES (16804, 12467, 'attr', 'fixed_version_id', '89', '94');
INSERT INTO public.journal_details VALUES (16805, 12468, 'attr', 'fixed_version_id', '89', '94');
INSERT INTO public.journal_details VALUES (16806, 12469, 'attr', 'fixed_version_id', '89', '94');
INSERT INTO public.journal_details VALUES (16807, 12470, 'attr', 'parent_id', NULL, '3688');
INSERT INTO public.journal_details VALUES (16808, 12471, 'attr', 'parent_id', '3641', '3688');
INSERT INTO public.journal_details VALUES (16809, 12472, 'attr', 'parent_id', '3641', '3688');
INSERT INTO public.journal_details VALUES (16810, 12473, 'attr', 'parent_id', NULL, '3688');
INSERT INTO public.journal_details VALUES (16811, 12474, 'attr', 'parent_id', '3644', '3688');
INSERT INTO public.journal_details VALUES (16812, 12475, 'attr', 'parent_id', '3644', '3688');
INSERT INTO public.journal_details VALUES (16813, 12476, 'attr', 'parent_id', NULL, '3688');
INSERT INTO public.journal_details VALUES (16814, 12477, 'attr', 'parent_id', '3647', '3688');
INSERT INTO public.journal_details VALUES (16815, 12478, 'attr', 'parent_id', '3647', '3688');
INSERT INTO public.journal_details VALUES (16816, 12479, 'attr', 'parent_id', '3688', '3644');
INSERT INTO public.journal_details VALUES (16817, 12480, 'attr', 'parent_id', '3688', '3644');
INSERT INTO public.journal_details VALUES (16818, 12481, 'attr', 'subject', 'TEST', 'sprint #1 ( 25/1 - 30/1)');
INSERT INTO public.journal_details VALUES (16819, 12482, 'attr', 'fixed_version_id', '89', '94');
INSERT INTO public.journal_details VALUES (16820, 12483, 'attr', 'fixed_version_id', '89', '94');
INSERT INTO public.journal_details VALUES (16821, 12484, 'attr', 'fixed_version_id', '89', '94');
INSERT INTO public.journal_details VALUES (16822, 12485, 'attr', 'fixed_version_id', '89', '94');
INSERT INTO public.journal_details VALUES (16823, 12486, 'attr', 'fixed_version_id', '89', '94');
INSERT INTO public.journal_details VALUES (16824, 12487, 'attr', 'fixed_version_id', '89', '94');
INSERT INTO public.journal_details VALUES (16825, 12488, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (16826, 12488, 'attr', 'start_date', '2021-01-26', '2021-01-25');
INSERT INTO public.journal_details VALUES (16827, 12489, 'attr', 'parent_id', NULL, '3689');
INSERT INTO public.journal_details VALUES (16828, 12490, 'attr', 'parent_id', '3688', NULL);
INSERT INTO public.journal_details VALUES (16829, 12491, 'attr', 'parent_id', '3688', NULL);
INSERT INTO public.journal_details VALUES (16830, 12492, 'attr', 'parent_id', '3688', NULL);
INSERT INTO public.journal_details VALUES (16831, 12493, 'attr', 'parent_id', '3688', NULL);
INSERT INTO public.journal_details VALUES (16832, 12494, 'attr', 'parent_id', '3688', NULL);
INSERT INTO public.journal_details VALUES (16833, 12495, 'attr', 'parent_id', '3688', NULL);
INSERT INTO public.journal_details VALUES (16834, 12496, 'attr', 'parent_id', '3688', NULL);
INSERT INTO public.journal_details VALUES (16835, 12497, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (16836, 12498, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (16837, 12498, 'attr', 'fixed_version_id', NULL, '89');
INSERT INTO public.journal_details VALUES (16838, 12499, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (16839, 12499, 'attr', 'fixed_version_id', NULL, '89');
INSERT INTO public.journal_details VALUES (16840, 12500, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (16841, 12501, 'attr', 'due_date', NULL, '2021-01-28');
INSERT INTO public.journal_details VALUES (16842, 12502, 'attr', 'due_date', NULL, '2021-01-28');
INSERT INTO public.journal_details VALUES (16843, 12502, 'attr', 'start_date', '2021-01-30', '2021-01-25');
INSERT INTO public.journal_details VALUES (16844, 12503, 'attr', 'due_date', NULL, '2021-01-28');
INSERT INTO public.journal_details VALUES (16845, 12504, 'attr', 'status_id', '1', '4');
INSERT INTO public.journal_details VALUES (16846, 12505, 'attr', 'status_id', '1', '4');
INSERT INTO public.journal_details VALUES (16847, 12506, 'attr', 'status_id', '1', '4');
INSERT INTO public.journal_details VALUES (16848, 12507, 'attr', 'status_id', '4', '3');
INSERT INTO public.journal_details VALUES (16849, 12508, 'attr', 'status_id', '4', '3');
INSERT INTO public.journal_details VALUES (16850, 12509, 'attr', 'status_id', '4', '3');
INSERT INTO public.journal_details VALUES (16851, 12510, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16852, 12511, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16853, 12512, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16854, 12513, 'attr', 'parent_id', NULL, '3641');
INSERT INTO public.journal_details VALUES (16855, 12514, 'attr', 'parent_id', NULL, '3641');
INSERT INTO public.journal_details VALUES (16856, 12515, 'attr', 'parent_id', NULL, '3647');
INSERT INTO public.journal_details VALUES (16857, 12516, 'attr', 'parent_id', NULL, '3647');
INSERT INTO public.journal_details VALUES (16858, 12517, 'attr', 'due_date', '2020-08-22', '2021-01-31');
INSERT INTO public.journal_details VALUES (16859, 12517, 'attr', 'start_date', '2020-08-22', '2021-01-30');
INSERT INTO public.journal_details VALUES (16860, 12518, 'attr', 'due_date', '2020-08-22', '2021-01-31');
INSERT INTO public.journal_details VALUES (16861, 12518, 'attr', 'start_date', '2020-08-22', '2021-01-30');
INSERT INTO public.journal_details VALUES (16862, 12519, 'attr', 'due_date', '2020-08-22', '2021-01-31');
INSERT INTO public.journal_details VALUES (16863, 12519, 'attr', 'start_date', '2020-08-22', '2021-01-30');
INSERT INTO public.journal_details VALUES (16864, 12520, 'attr', 'due_date', '2020-08-22', '2021-01-31');
INSERT INTO public.journal_details VALUES (16865, 12520, 'attr', 'start_date', '2020-08-22', '2021-01-30');
INSERT INTO public.journal_details VALUES (16866, 12521, 'attr', 'fixed_version_id', NULL, '93');
INSERT INTO public.journal_details VALUES (16867, 12522, 'attr', 'fixed_version_id', NULL, '93');
INSERT INTO public.journal_details VALUES (16868, 12523, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16869, 12524, 'attr', 'fixed_version_id', NULL, '93');
INSERT INTO public.journal_details VALUES (16870, 12525, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16871, 12526, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16872, 12527, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16873, 12528, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16874, 12529, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16875, 12530, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16876, 12531, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16877, 12532, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16878, 12533, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16879, 12534, 'attr', 'assigned_to_id', '13', '10');
INSERT INTO public.journal_details VALUES (16880, 12535, 'attr', 'fixed_version_id', NULL, '93');
INSERT INTO public.journal_details VALUES (16881, 12536, 'attr', 'fixed_version_id', NULL, '93');
INSERT INTO public.journal_details VALUES (16882, 12537, 'attr', 'due_date', '2021-01-31', '2021-02-04');
INSERT INTO public.journal_details VALUES (16883, 12537, 'attr', 'start_date', '2021-01-30', '2021-02-02');
INSERT INTO public.journal_details VALUES (16884, 12538, 'attr', 'due_date', '2021-01-31', '2021-02-04');
INSERT INTO public.journal_details VALUES (16885, 12538, 'attr', 'start_date', '2021-01-30', '2021-02-02');
INSERT INTO public.journal_details VALUES (16886, 12539, 'attr', 'due_date', '2021-01-31', '2021-02-04');
INSERT INTO public.journal_details VALUES (16887, 12539, 'attr', 'start_date', '2021-01-30', '2021-02-02');
INSERT INTO public.journal_details VALUES (16888, 12540, 'attr', 'due_date', '2021-01-31', '2021-02-04');
INSERT INTO public.journal_details VALUES (16889, 12540, 'attr', 'start_date', '2021-01-30', '2021-02-02');
INSERT INTO public.journal_details VALUES (16890, 12541, 'attr', 'due_date', '2021-01-30', '2021-02-04');
INSERT INTO public.journal_details VALUES (16891, 12541, 'attr', 'start_date', '2021-01-30', '2021-02-02');
INSERT INTO public.journal_details VALUES (16892, 12542, 'attr', 'due_date', '2021-01-30', '2021-02-04');
INSERT INTO public.journal_details VALUES (16893, 12542, 'attr', 'start_date', '2021-01-30', '2021-02-02');
INSERT INTO public.journal_details VALUES (16894, 12543, 'attr', 'due_date', '2021-01-30', '2021-02-04');
INSERT INTO public.journal_details VALUES (16895, 12543, 'attr', 'start_date', '2021-01-30', '2021-02-02');
INSERT INTO public.journal_details VALUES (16896, 12544, 'attr', 'due_date', '2021-02-02', '2021-02-04');
INSERT INTO public.journal_details VALUES (16897, 12545, 'attr', 'due_date', '2021-02-02', '2021-02-04');
INSERT INTO public.journal_details VALUES (16898, 12546, 'attr', 'due_date', '2021-02-02', '2021-02-04');
INSERT INTO public.journal_details VALUES (16899, 12547, 'attr', 'due_date', '2021-02-02', '2021-02-04');
INSERT INTO public.journal_details VALUES (16900, 12548, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16901, 12549, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16902, 12550, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16903, 12551, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16904, 12552, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16905, 12553, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16906, 12554, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16907, 12554, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16908, 12555, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16909, 12555, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16910, 12556, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16911, 12557, 'attr', 'fixed_version_id', NULL, '93');
INSERT INTO public.journal_details VALUES (16912, 12558, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16913, 12559, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16914, 12560, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16915, 12561, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16916, 12562, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16917, 12563, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16918, 12564, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16919, 12565, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16920, 12566, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16921, 12567, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16922, 12568, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (16923, 12569, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16924, 12570, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (16925, 12571, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16926, 12572, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16927, 12573, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16928, 12574, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16929, 12575, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16930, 12576, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16931, 12577, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16932, 12578, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16933, 12579, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16934, 12580, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16935, 12581, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16936, 12582, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16937, 12583, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16938, 12584, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16939, 12585, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16940, 12586, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16941, 12587, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16942, 12588, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16943, 12589, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16944, 12590, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16945, 12591, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16946, 12592, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16947, 12593, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16948, 12594, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16949, 12595, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16950, 12596, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16951, 12597, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16952, 12598, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16953, 12599, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16954, 12600, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16955, 12601, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16956, 12602, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16957, 12603, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16958, 12604, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16959, 12605, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16960, 12606, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16961, 12607, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16962, 12608, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16963, 12609, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16964, 12610, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16965, 12611, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16966, 12612, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16967, 12613, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16968, 12614, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16969, 12615, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16970, 12616, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16971, 12617, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16972, 12618, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16973, 12619, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16974, 12620, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (16975, 12621, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (16976, 12622, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (16977, 12623, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (16978, 12624, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (16979, 12625, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (16980, 12626, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (16981, 12627, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (16982, 12628, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (16983, 12629, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (16984, 12630, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (16985, 12631, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (16986, 12632, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (16987, 12633, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (16988, 12634, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (16989, 12635, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16990, 12636, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16991, 12637, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16992, 12638, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16993, 12639, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16994, 12640, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (16995, 12641, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (16996, 12642, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (16997, 12643, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (16998, 12644, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (16999, 12645, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17000, 12646, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17001, 12647, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17002, 12648, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17003, 12649, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17004, 12650, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17005, 12651, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17006, 12652, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17007, 12653, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17008, 12654, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17009, 12655, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17010, 12656, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17011, 12657, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17012, 12658, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17013, 12659, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17014, 12660, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17015, 12661, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17016, 12662, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17017, 12663, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17018, 12664, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17019, 12665, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17020, 12666, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17021, 12667, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17022, 12668, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17023, 12669, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17024, 12670, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17025, 12671, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17026, 12672, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17027, 12673, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17028, 12674, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17029, 12675, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17030, 12676, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17031, 12677, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17032, 12678, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17033, 12679, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17034, 12680, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17035, 12681, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17036, 12682, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17037, 12683, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17038, 12684, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17039, 12685, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17040, 12686, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17041, 12687, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17042, 12688, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17043, 12689, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17044, 12690, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17045, 12691, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17046, 12692, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17047, 12693, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17048, 12694, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17049, 12695, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17050, 12696, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17051, 12697, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17052, 12698, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17053, 12699, 'attr', 'assigned_to_id', NULL, '9');
INSERT INTO public.journal_details VALUES (17054, 12700, 'attr', 'assigned_to_id', NULL, '9');
INSERT INTO public.journal_details VALUES (17055, 12701, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17056, 12702, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17057, 12703, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17058, 12704, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17059, 12705, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17060, 12706, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17061, 12707, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17062, 12708, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17063, 12709, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17064, 12710, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17065, 12711, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17066, 12712, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17067, 12713, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17068, 12714, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17069, 12715, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17070, 12716, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17071, 12717, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17072, 12718, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17073, 12719, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17074, 12720, 'attr', 'assigned_to_id', NULL, '13');
INSERT INTO public.journal_details VALUES (17075, 12721, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17076, 12722, 'attr', 'assigned_to_id', NULL, '10');
INSERT INTO public.journal_details VALUES (17077, 12723, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17078, 12724, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17079, 12725, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17080, 12726, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17081, 12727, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17082, 12728, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17083, 12729, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17084, 12730, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17085, 12731, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17086, 12732, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17087, 12733, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17088, 12734, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17089, 12735, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17090, 12736, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17091, 12737, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17092, 12738, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17093, 12739, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17094, 12740, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17095, 12741, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17096, 12742, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17097, 12743, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17098, 12744, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17099, 12745, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17100, 12746, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17101, 12747, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17102, 12748, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17103, 12749, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17104, 12750, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17105, 12751, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17106, 12752, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17107, 12753, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17108, 12754, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17109, 12755, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17110, 12756, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17111, 12757, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17112, 12758, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17113, 12759, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17114, 12760, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17115, 12761, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17116, 12762, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17117, 12763, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17118, 12764, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17119, 12765, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17120, 12766, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17121, 12767, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17122, 12768, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17123, 12769, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17124, 12770, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17125, 12771, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17126, 12772, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17127, 12773, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17128, 12774, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17129, 12775, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17130, 12776, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17131, 12777, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17132, 12778, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17133, 12779, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17134, 12780, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17135, 12781, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17136, 12782, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17137, 12783, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17138, 12784, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17139, 12785, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17140, 12786, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17141, 12787, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17142, 12788, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17143, 12789, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17144, 12790, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17145, 12791, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17146, 12792, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17147, 12793, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (17148, 12794, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (17149, 12795, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (17150, 12796, 'attr', 'assigned_to_id', NULL, '19');
INSERT INTO public.journal_details VALUES (17151, 12797, 'attr', 'assigned_to_id', '8', NULL);
INSERT INTO public.journal_details VALUES (17152, 12798, 'attr', 'assigned_to_id', '8', NULL);
INSERT INTO public.journal_details VALUES (17153, 12799, 'attr', 'assigned_to_id', '8', NULL);
INSERT INTO public.journal_details VALUES (17154, 12800, 'attr', 'assigned_to_id', '19', NULL);
INSERT INTO public.journal_details VALUES (17155, 12801, 'attr', 'assigned_to_id', '19', NULL);
INSERT INTO public.journal_details VALUES (17156, 12802, 'attr', 'assigned_to_id', '19', NULL);
INSERT INTO public.journal_details VALUES (17157, 12803, 'attr', 'assigned_to_id', '19', NULL);
INSERT INTO public.journal_details VALUES (17158, 12804, 'attr', 'assigned_to_id', '8', NULL);
INSERT INTO public.journal_details VALUES (17159, 12805, 'attr', 'assigned_to_id', '19', NULL);
INSERT INTO public.journal_details VALUES (17160, 12806, 'attr', 'assigned_to_id', '39', NULL);
INSERT INTO public.journal_details VALUES (17161, 12807, 'attr', 'assigned_to_id', '39', NULL);
INSERT INTO public.journal_details VALUES (17162, 12808, 'attr', 'assigned_to_id', '39', NULL);
INSERT INTO public.journal_details VALUES (17163, 12809, 'attr', 'assigned_to_id', '8', NULL);
INSERT INTO public.journal_details VALUES (17164, 12810, 'attr', 'assigned_to_id', '19', NULL);
INSERT INTO public.journal_details VALUES (17165, 12811, 'attr', 'assigned_to_id', '8', NULL);
INSERT INTO public.journal_details VALUES (17166, 12812, 'attr', 'assigned_to_id', '8', NULL);
INSERT INTO public.journal_details VALUES (17167, 12813, 'attr', 'assigned_to_id', '19', NULL);
INSERT INTO public.journal_details VALUES (17168, 12814, 'attr', 'assigned_to_id', '8', NULL);
INSERT INTO public.journal_details VALUES (17169, 12815, 'attr', 'assigned_to_id', '19', NULL);
INSERT INTO public.journal_details VALUES (17170, 12816, 'attr', 'assigned_to_id', '19', NULL);
INSERT INTO public.journal_details VALUES (17171, 12817, 'attr', 'assigned_to_id', '19', NULL);
INSERT INTO public.journal_details VALUES (17172, 12818, 'attr', 'assigned_to_id', '8', NULL);
INSERT INTO public.journal_details VALUES (17173, 12819, 'attr', 'assigned_to_id', '19', NULL);
INSERT INTO public.journal_details VALUES (17174, 12820, 'attr', 'assigned_to_id', '19', NULL);
INSERT INTO public.journal_details VALUES (17175, 12821, 'attr', 'assigned_to_id', '8', NULL);
INSERT INTO public.journal_details VALUES (17176, 12822, 'attr', 'assigned_to_id', '8', NULL);
INSERT INTO public.journal_details VALUES (17177, 12823, 'attr', 'assigned_to_id', '8', NULL);
INSERT INTO public.journal_details VALUES (17178, 12824, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (17179, 12825, 'attr', 'assigned_to_id', '12', '6');
INSERT INTO public.journal_details VALUES (17180, 12826, 'attr', 'assigned_to_id', '12', '6');
INSERT INTO public.journal_details VALUES (17181, 12827, 'attr', 'assigned_to_id', '12', '6');
INSERT INTO public.journal_details VALUES (17182, 12828, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (17183, 12829, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (17184, 12830, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (17185, 12831, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (17186, 12832, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (17187, 12833, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (17188, 12834, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (17189, 12835, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (17190, 12836, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (17191, 12837, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (17192, 12838, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17193, 12839, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17194, 12840, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17195, 12841, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17196, 12842, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17197, 12843, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17198, 12844, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17199, 12845, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17200, 12846, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17201, 12847, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (17202, 12848, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (17203, 12849, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (17204, 12850, 'attr', 'assigned_to_id', '12', '10');
INSERT INTO public.journal_details VALUES (17205, 12851, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17206, 12852, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17207, 12853, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17208, 12854, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17209, 12855, 'attr', 'assigned_to_id', '15', '8');
INSERT INTO public.journal_details VALUES (17210, 12856, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17211, 12857, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17212, 12858, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17213, 12859, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17214, 12860, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17215, 12861, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17216, 12862, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17217, 12863, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17218, 12864, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17220, 12866, 'attr', 'tracker_id', '6', '2');
INSERT INTO public.journal_details VALUES (17221, 12867, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (17222, 12868, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (17223, 12869, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (17224, 12870, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (17225, 12871, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (17226, 12871, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (17227, 12872, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17228, 12873, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17229, 12874, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (17230, 12875, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17231, 12876, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17232, 12877, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17233, 12878, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17234, 12879, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17235, 12880, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17236, 12881, 'attr', 'subject', 'Điều 18 - Mẫu 01 - CDT', 'Điều 18 - Mẫu 01 - CDT (Nhập liệu)');
INSERT INTO public.journal_details VALUES (17237, 12882, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (17238, 12883, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (17239, 12884, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17240, 12885, 'attr', 'fixed_version_id', NULL, '97');
INSERT INTO public.journal_details VALUES (17241, 12886, 'attr', 'fixed_version_id', NULL, '97');
INSERT INTO public.journal_details VALUES (17242, 12887, 'attr', 'fixed_version_id', NULL, '97');
INSERT INTO public.journal_details VALUES (17243, 12888, 'attr', 'fixed_version_id', NULL, '97');
INSERT INTO public.journal_details VALUES (17244, 12889, 'attr', 'due_date', '2021-02-22', '2021-02-23');
INSERT INTO public.journal_details VALUES (17245, 12889, 'attr', 'start_date', '2021-02-22', '2021-02-23');
INSERT INTO public.journal_details VALUES (17246, 12890, 'attr', 'due_date', '2021-02-22', '2021-02-24');
INSERT INTO public.journal_details VALUES (17247, 12890, 'attr', 'start_date', '2021-02-22', '2021-02-24');
INSERT INTO public.journal_details VALUES (17248, 12891, 'attr', 'due_date', '2021-02-22', '2021-02-25');
INSERT INTO public.journal_details VALUES (17249, 12891, 'attr', 'start_date', '2021-02-22', '2021-02-25');
INSERT INTO public.journal_details VALUES (17250, 12892, 'attr', 'subject', 'Điều 18 - Mẫu 02 - CDT (Chưa đủ API)', 'Điều 18 - Mẫu 02 - CDT (Nhập liệu)');
INSERT INTO public.journal_details VALUES (17251, 12893, 'attr', 'subject', 'Điều 18 - Mẫu 03 - CDT (Chưa đủ API)', 'Điều 18 - Mẫu 03 - CDT (Nhập liệu)');
INSERT INTO public.journal_details VALUES (17252, 12894, 'attr', 'subject', 'Điều 18 - Mẫu 04 - CDT (Chưa đủ API)', 'Điều 18 - Mẫu 04 - CDT (Nhập liệu)');
INSERT INTO public.journal_details VALUES (17253, 12895, 'attr', 'due_date', '2021-02-23', '2021-02-24');
INSERT INTO public.journal_details VALUES (17254, 12895, 'attr', 'start_date', '2021-02-23', '2021-02-24');
INSERT INTO public.journal_details VALUES (17255, 12896, 'attr', 'due_date', '2021-02-22', '2021-02-25');
INSERT INTO public.journal_details VALUES (17256, 12896, 'attr', 'start_date', '2021-02-22', '2021-02-25');
INSERT INTO public.journal_details VALUES (17257, 12897, 'attr', 'due_date', '2021-02-23', '2021-02-25');
INSERT INTO public.journal_details VALUES (17258, 12897, 'attr', 'start_date', '2021-02-23', '2021-02-25');
INSERT INTO public.journal_details VALUES (17259, 12898, 'attr', 'due_date', '2021-02-24', '2021-02-26');
INSERT INTO public.journal_details VALUES (17260, 12898, 'attr', 'start_date', '2021-02-24', '2021-02-26');
INSERT INTO public.journal_details VALUES (17261, 12899, 'attr', 'due_date', '2021-02-24', '2021-02-26');
INSERT INTO public.journal_details VALUES (17262, 12899, 'attr', 'start_date', '2021-02-24', '2021-02-26');
INSERT INTO public.journal_details VALUES (17263, 12900, 'attr', 'due_date', '2021-02-25', '2021-02-27');
INSERT INTO public.journal_details VALUES (17264, 12900, 'attr', 'start_date', '2021-02-25', '2021-02-27');
INSERT INTO public.journal_details VALUES (17265, 12901, 'attr', 'due_date', '2021-02-25', '2021-02-28');
INSERT INTO public.journal_details VALUES (17266, 12901, 'attr', 'start_date', '2021-02-25', '2021-02-28');
INSERT INTO public.journal_details VALUES (17267, 12902, 'attr', 'due_date', '2021-02-28', '2021-02-25');
INSERT INTO public.journal_details VALUES (17385, 12974, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17268, 12902, 'attr', 'start_date', '2021-02-28', '2021-02-25');
INSERT INTO public.journal_details VALUES (17269, 12903, 'attr', 'due_date', '2021-02-25', '2021-02-28');
INSERT INTO public.journal_details VALUES (17270, 12903, 'attr', 'start_date', '2021-02-25', '2021-02-28');
INSERT INTO public.journal_details VALUES (17271, 12904, 'attr', 'due_date', '2021-02-22', '2021-02-25');
INSERT INTO public.journal_details VALUES (17272, 12904, 'attr', 'start_date', '2021-02-22', '2021-02-25');
INSERT INTO public.journal_details VALUES (17273, 12905, 'attr', 'due_date', '2021-02-22', '2021-02-25');
INSERT INTO public.journal_details VALUES (17274, 12905, 'attr', 'start_date', '2021-02-22', '2021-02-25');
INSERT INTO public.journal_details VALUES (17275, 12906, 'attr', 'due_date', '2021-02-25', '2021-02-26');
INSERT INTO public.journal_details VALUES (17276, 12906, 'attr', 'start_date', '2021-02-25', '2021-02-26');
INSERT INTO public.journal_details VALUES (17277, 12907, 'attr', 'due_date', '2021-02-25', '2021-02-26');
INSERT INTO public.journal_details VALUES (17278, 12907, 'attr', 'start_date', '2021-02-25', '2021-02-26');
INSERT INTO public.journal_details VALUES (17279, 12908, 'attr', 'due_date', '2021-02-26', '2021-02-27');
INSERT INTO public.journal_details VALUES (17280, 12908, 'attr', 'start_date', '2021-02-26', '2021-02-27');
INSERT INTO public.journal_details VALUES (17281, 12909, 'attr', 'due_date', '2021-02-26', '2021-02-27');
INSERT INTO public.journal_details VALUES (17282, 12909, 'attr', 'start_date', '2021-02-26', '2021-02-27');
INSERT INTO public.journal_details VALUES (17283, 12910, 'attr', 'due_date', '2021-02-27', '2021-02-28');
INSERT INTO public.journal_details VALUES (17284, 12910, 'attr', 'start_date', '2021-02-27', '2021-02-28');
INSERT INTO public.journal_details VALUES (17285, 12911, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17286, 12912, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17287, 12912, 'attr', 'fixed_version_id', '98', '97');
INSERT INTO public.journal_details VALUES (17288, 12913, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17289, 12913, 'attr', 'due_date', '2021-02-25', '2021-03-01');
INSERT INTO public.journal_details VALUES (17290, 12913, 'attr', 'start_date', '2021-02-25', '2021-03-01');
INSERT INTO public.journal_details VALUES (17291, 12914, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17292, 12915, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17293, 12916, 'attr', 'due_date', '2021-04-03', '2021-04-04');
INSERT INTO public.journal_details VALUES (17294, 12916, 'attr', 'start_date', '2021-03-03', '2021-03-04');
INSERT INTO public.journal_details VALUES (17295, 12917, 'attr', 'due_date', '2021-04-04', '2021-03-03');
INSERT INTO public.journal_details VALUES (17296, 12917, 'attr', 'start_date', '2021-03-04', '2021-03-03');
INSERT INTO public.journal_details VALUES (17297, 12918, 'attr', 'due_date', '2021-02-25', '2021-03-01');
INSERT INTO public.journal_details VALUES (17298, 12918, 'attr', 'start_date', '2021-02-25', '2021-03-01');
INSERT INTO public.journal_details VALUES (17299, 12919, 'attr', 'category_id', NULL, '27');
INSERT INTO public.journal_details VALUES (17300, 12920, 'attr', 'category_id', NULL, '27');
INSERT INTO public.journal_details VALUES (17301, 12921, 'attr', 'category_id', NULL, '27');
INSERT INTO public.journal_details VALUES (17302, 12922, 'attr', 'done_ratio', '0', '60');
INSERT INTO public.journal_details VALUES (17303, 12923, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17304, 12924, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17305, 12925, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17306, 12926, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17307, 12927, 'attr', 'done_ratio', '60', '100');
INSERT INTO public.journal_details VALUES (17308, 12928, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17309, 12929, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17310, 12930, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (17311, 12931, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (17312, 12932, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17313, 12933, 'attr', 'due_date', '2021-03-01', '2021-03-17');
INSERT INTO public.journal_details VALUES (17314, 12933, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17315, 12933, 'attr', 'start_date', '2021-03-01', '2021-02-17');
INSERT INTO public.journal_details VALUES (17316, 12934, 'attr', 'due_date', '2021-03-17', '2021-02-17');
INSERT INTO public.journal_details VALUES (17317, 12935, 'attr', 'due_date', '2021-03-01', '2021-03-22');
INSERT INTO public.journal_details VALUES (17318, 12935, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17319, 12935, 'attr', 'start_date', '2021-03-01', '2021-03-22');
INSERT INTO public.journal_details VALUES (17320, 12936, 'attr', 'due_date', '2021-03-22', '2021-02-22');
INSERT INTO public.journal_details VALUES (17321, 12936, 'attr', 'start_date', '2021-03-22', '2021-02-22');
INSERT INTO public.journal_details VALUES (17322, 12937, 'attr', 'subject', 'Bảng chấm công', 'Tạo bảng chấm công');
INSERT INTO public.journal_details VALUES (17323, 12937, 'attr', 'due_date', '2021-02-22', '2021-03-01');
INSERT INTO public.journal_details VALUES (17324, 12937, 'attr', 'start_date', '2021-02-22', '2021-02-26');
INSERT INTO public.journal_details VALUES (17325, 12937, 'attr', 'done_ratio', '100', '90');
INSERT INTO public.journal_details VALUES (17326, 12938, 'attr', 'subject', 'Tạo bảng chấm công', 'Bảng chấm công');
INSERT INTO public.journal_details VALUES (17327, 12938, 'attr', 'due_date', '2021-03-01', '2021-02-22');
INSERT INTO public.journal_details VALUES (17328, 12938, 'attr', 'start_date', '2021-02-26', '2021-02-22');
INSERT INTO public.journal_details VALUES (17329, 12938, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (17330, 12939, 'attr', 'due_date', '2021-02-22', '2021-02-26');
INSERT INTO public.journal_details VALUES (17331, 12939, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17332, 12939, 'attr', 'start_date', '2021-02-22', '2021-02-26');
INSERT INTO public.journal_details VALUES (17333, 12940, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (17334, 12941, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (17335, 12942, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (17336, 12943, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (17337, 12944, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17338, 12945, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17339, 12946, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17340, 12947, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17341, 12948, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17342, 12949, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17343, 12950, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17344, 12951, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17345, 12952, 'attr', 'fixed_version_id', '97', '98');
INSERT INTO public.journal_details VALUES (17346, 12953, 'attr', 'fixed_version_id', '97', '98');
INSERT INTO public.journal_details VALUES (17347, 12954, 'attr', 'due_date', '2021-03-02', '2021-03-01');
INSERT INTO public.journal_details VALUES (17348, 12954, 'attr', 'fixed_version_id', '97', '98');
INSERT INTO public.journal_details VALUES (17349, 12954, 'attr', 'start_date', '2021-03-02', '2021-03-01');
INSERT INTO public.journal_details VALUES (17350, 12955, 'attr', 'due_date', '2021-03-02', '2021-03-01');
INSERT INTO public.journal_details VALUES (17351, 12955, 'attr', 'fixed_version_id', '97', '98');
INSERT INTO public.journal_details VALUES (17352, 12955, 'attr', 'start_date', '2021-03-02', '2021-03-01');
INSERT INTO public.journal_details VALUES (17353, 12956, 'attr', 'due_date', '2021-02-03', NULL);
INSERT INTO public.journal_details VALUES (17354, 12956, 'attr', 'fixed_version_id', '91', '75');
INSERT INTO public.journal_details VALUES (17355, 12956, 'attr', 'start_date', '2021-02-03', NULL);
INSERT INTO public.journal_details VALUES (17356, 12957, 'attr', 'due_date', '2021-02-04', NULL);
INSERT INTO public.journal_details VALUES (17357, 12957, 'attr', 'fixed_version_id', '91', '75');
INSERT INTO public.journal_details VALUES (17358, 12957, 'attr', 'start_date', '2021-02-04', NULL);
INSERT INTO public.journal_details VALUES (17368, 12961, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (17369, 12962, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (17370, 12963, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (17371, 12964, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17373, 12966, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17374, 12967, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17375, 12968, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17376, 12969, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17377, 12970, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17378, 12971, 'attr', 'fixed_version_id', '97', '98');
INSERT INTO public.journal_details VALUES (17379, 12972, 'attr', 'fixed_version_id', '97', '98');
INSERT INTO public.journal_details VALUES (17380, 12973, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17381, 12973, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17382, 12973, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17383, 12974, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17384, 12974, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17386, 12975, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17387, 12975, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17388, 12975, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17389, 12976, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17390, 12976, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17391, 12976, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17392, 12977, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17393, 12977, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17394, 12977, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17395, 12978, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17396, 12978, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17397, 12978, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17398, 12979, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (17399, 12980, 'attr', 'subject', 'Điều 11 - Mẫu 1.2 - TT 38/2020/QĐ-UBND (Nhập liệu)', 'Điều 11 - Mẫu 1.2  (Nhập liệu)');
INSERT INTO public.journal_details VALUES (17400, 12981, 'attr', 'subject', 'Điều 11 - Mẫu 1.2 - TT 38/2020/QĐ-UBND (PDF)', 'Điều 11 - Mẫu 1.2  (PDF)');
INSERT INTO public.journal_details VALUES (17401, 12982, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (17402, 12983, 'attr', 'subject', 'Điều 11 - Mẫu 1.3 - TT 38/2020/QĐ-UBND (Nhập liệu)', 'Điều 11 - Mẫu 1.3  (Nhập liệu)');
INSERT INTO public.journal_details VALUES (17403, 12984, 'attr', 'subject', 'Điều 11 - Mẫu 1.3 - TT 38/2020/QĐ-UBND (PDF)', 'Điều 11 - Mẫu 1.3 (PDF)');
INSERT INTO public.journal_details VALUES (17404, 12985, 'attr', 'subject', 'Điều 11 - Mẫu 1.1 - TT 38/2020/QĐ-UBND (PDF)', 'Điều 11 - Mẫu 1.1 (PDF)');
INSERT INTO public.journal_details VALUES (17405, 12986, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17406, 12987, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17407, 12988, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17408, 12989, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17409, 12990, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17410, 12991, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17411, 12992, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17412, 12993, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17413, 12994, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17414, 12995, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (17415, 12996, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (17416, 12997, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (17417, 12998, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17418, 12999, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17419, 13000, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (17420, 13001, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (17421, 13002, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (17422, 13003, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (17423, 13004, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (17424, 13005, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (17425, 13006, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (17426, 13007, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (17427, 13008, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (17428, 13009, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17429, 13010, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17430, 13011, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17431, 13012, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17432, 13013, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17433, 13014, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17434, 13015, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17435, 13016, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17436, 13017, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17437, 13018, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (17438, 13019, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (17439, 13020, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (17440, 13021, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17441, 13022, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17442, 13023, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17443, 13024, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17444, 13025, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (17445, 13026, 'attr', 'assigned_to_id', '39', '10');
INSERT INTO public.journal_details VALUES (17446, 13027, 'attr', 'assigned_to_id', '39', '10');
INSERT INTO public.journal_details VALUES (17447, 13028, 'attr', 'assigned_to_id', '39', '10');
INSERT INTO public.journal_details VALUES (17448, 13029, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17449, 13030, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17450, 13031, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17451, 13032, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17452, 13033, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17453, 13034, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17454, 13035, 'attr', 'due_date', NULL, '2021-03-06');
INSERT INTO public.journal_details VALUES (17455, 13035, 'attr', 'fixed_version_id', '75', '98');
INSERT INTO public.journal_details VALUES (17456, 13035, 'attr', 'start_date', '2021-03-03', '2021-03-06');
INSERT INTO public.journal_details VALUES (17457, 13036, 'attr', 'due_date', NULL, '2021-03-06');
INSERT INTO public.journal_details VALUES (17458, 13036, 'attr', 'fixed_version_id', '75', '98');
INSERT INTO public.journal_details VALUES (17459, 13036, 'attr', 'start_date', '2021-03-03', '2021-03-06');
INSERT INTO public.journal_details VALUES (17460, 13037, 'attr', 'due_date', NULL, '2021-03-06');
INSERT INTO public.journal_details VALUES (17461, 13037, 'attr', 'fixed_version_id', '75', '98');
INSERT INTO public.journal_details VALUES (17462, 13037, 'attr', 'start_date', '2021-03-03', '2021-03-06');
INSERT INTO public.journal_details VALUES (17463, 13038, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17464, 13039, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17465, 13040, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17466, 13041, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17467, 13042, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17468, 13043, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17469, 13044, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17470, 13045, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17471, 13046, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17472, 13047, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17473, 13048, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17474, 13049, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17475, 13050, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17476, 13051, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17477, 13052, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17478, 13053, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17479, 13054, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17480, 13055, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17481, 13056, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17482, 13057, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17483, 13058, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17484, 13059, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17485, 13060, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17486, 13061, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17487, 13062, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17488, 13063, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17489, 13064, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17490, 13065, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17491, 13066, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17492, 13067, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17493, 13068, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17494, 13069, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17495, 13070, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17496, 13071, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17497, 13072, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17498, 13073, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17499, 13074, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17500, 13075, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17501, 13076, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17502, 13077, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17503, 13078, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17504, 13079, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17505, 13080, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17506, 13081, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17507, 13082, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17508, 13083, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17509, 13084, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17510, 13085, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17511, 13086, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17512, 13087, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17513, 13088, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17514, 13089, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17515, 13090, 'attr', 'fixed_version_id', '75', '84');
INSERT INTO public.journal_details VALUES (17516, 13091, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17517, 13092, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17518, 13093, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17519, 13094, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17520, 13095, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17521, 13096, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17522, 13097, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17523, 13098, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17524, 13099, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17525, 13100, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17526, 13101, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17527, 13102, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17528, 13103, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17529, 13104, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17530, 13105, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17531, 13106, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17532, 13107, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17533, 13108, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17534, 13109, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17535, 13110, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17536, 13111, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17537, 13112, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17538, 13113, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17539, 13114, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17540, 13115, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17541, 13116, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17542, 13117, 'attr', 'fixed_version_id', '84', '100');
INSERT INTO public.journal_details VALUES (17543, 13118, 'attr', 'due_date', NULL, '2021-03-09');
INSERT INTO public.journal_details VALUES (17544, 13118, 'attr', 'start_date', '2021-03-03', '2021-03-08');
INSERT INTO public.journal_details VALUES (17545, 13119, 'attr', 'due_date', NULL, '2021-03-09');
INSERT INTO public.journal_details VALUES (17546, 13119, 'attr', 'start_date', '2021-03-03', '2021-03-08');
INSERT INTO public.journal_details VALUES (17547, 13120, 'attr', 'due_date', NULL, '2021-03-09');
INSERT INTO public.journal_details VALUES (17548, 13120, 'attr', 'start_date', '2021-03-03', '2021-03-08');
INSERT INTO public.journal_details VALUES (17549, 13121, 'attr', 'due_date', NULL, '2021-03-10');
INSERT INTO public.journal_details VALUES (17550, 13121, 'attr', 'start_date', '2021-03-03', '2021-03-10');
INSERT INTO public.journal_details VALUES (17551, 13122, 'attr', 'due_date', NULL, '2021-03-10');
INSERT INTO public.journal_details VALUES (17552, 13122, 'attr', 'start_date', '2021-03-03', '2021-03-10');
INSERT INTO public.journal_details VALUES (17553, 13123, 'attr', 'due_date', NULL, '2021-03-10');
INSERT INTO public.journal_details VALUES (17554, 13123, 'attr', 'start_date', '2021-03-03', '2021-03-10');
INSERT INTO public.journal_details VALUES (17555, 13124, 'attr', 'due_date', NULL, '2021-03-10');
INSERT INTO public.journal_details VALUES (17556, 13124, 'attr', 'start_date', '2021-03-03', '2021-03-10');
INSERT INTO public.journal_details VALUES (17557, 13125, 'attr', 'due_date', NULL, '2021-03-10');
INSERT INTO public.journal_details VALUES (17558, 13125, 'attr', 'start_date', '2021-03-03', '2021-03-10');
INSERT INTO public.journal_details VALUES (17559, 13126, 'attr', 'due_date', NULL, '2021-03-10');
INSERT INTO public.journal_details VALUES (17560, 13126, 'attr', 'start_date', '2021-03-03', '2021-03-10');
INSERT INTO public.journal_details VALUES (17561, 13127, 'attr', 'due_date', NULL, '2021-03-11');
INSERT INTO public.journal_details VALUES (17562, 13127, 'attr', 'start_date', '2021-03-03', '2021-03-11');
INSERT INTO public.journal_details VALUES (17563, 13128, 'attr', 'due_date', NULL, '2021-03-11');
INSERT INTO public.journal_details VALUES (17564, 13128, 'attr', 'start_date', '2021-03-03', '2021-03-11');
INSERT INTO public.journal_details VALUES (17565, 13129, 'attr', 'due_date', NULL, '2021-03-11');
INSERT INTO public.journal_details VALUES (17566, 13129, 'attr', 'start_date', '2021-03-03', '2021-03-11');
INSERT INTO public.journal_details VALUES (17567, 13130, 'attr', 'due_date', NULL, '2021-03-11');
INSERT INTO public.journal_details VALUES (17568, 13130, 'attr', 'start_date', '2021-03-03', '2021-03-11');
INSERT INTO public.journal_details VALUES (17569, 13131, 'attr', 'due_date', NULL, '2021-03-12');
INSERT INTO public.journal_details VALUES (17570, 13131, 'attr', 'start_date', '2021-03-03', '2021-03-12');
INSERT INTO public.journal_details VALUES (17571, 13132, 'attr', 'due_date', NULL, '2021-03-12');
INSERT INTO public.journal_details VALUES (17572, 13132, 'attr', 'start_date', '2021-03-03', '2021-03-12');
INSERT INTO public.journal_details VALUES (17573, 13133, 'attr', 'due_date', NULL, '2021-03-12');
INSERT INTO public.journal_details VALUES (17574, 13133, 'attr', 'start_date', '2021-03-03', '2021-03-12');
INSERT INTO public.journal_details VALUES (17575, 13134, 'attr', 'due_date', NULL, '2021-03-12');
INSERT INTO public.journal_details VALUES (17576, 13134, 'attr', 'start_date', '2021-03-03', '2021-03-12');
INSERT INTO public.journal_details VALUES (17577, 13135, 'attr', 'due_date', NULL, '2021-03-12');
INSERT INTO public.journal_details VALUES (17578, 13135, 'attr', 'start_date', '2021-03-03', '2021-03-12');
INSERT INTO public.journal_details VALUES (17579, 13136, 'attr', 'due_date', NULL, '2021-03-12');
INSERT INTO public.journal_details VALUES (17580, 13136, 'attr', 'start_date', '2021-03-03', '2021-03-12');
INSERT INTO public.journal_details VALUES (17581, 13137, 'attr', 'due_date', NULL, '2021-03-12');
INSERT INTO public.journal_details VALUES (17582, 13137, 'attr', 'start_date', '2021-03-03', '2021-03-12');
INSERT INTO public.journal_details VALUES (17583, 13138, 'attr', 'due_date', NULL, '2021-03-12');
INSERT INTO public.journal_details VALUES (17584, 13138, 'attr', 'start_date', '2021-03-03', '2021-03-12');
INSERT INTO public.journal_details VALUES (17585, 13139, 'attr', 'due_date', NULL, '2021-03-13');
INSERT INTO public.journal_details VALUES (17586, 13139, 'attr', 'start_date', '2021-03-03', '2021-03-13');
INSERT INTO public.journal_details VALUES (17587, 13140, 'attr', 'due_date', NULL, '2021-03-13');
INSERT INTO public.journal_details VALUES (17588, 13140, 'attr', 'start_date', '2021-03-03', '2021-03-13');
INSERT INTO public.journal_details VALUES (17589, 13141, 'attr', 'due_date', NULL, '2021-03-13');
INSERT INTO public.journal_details VALUES (17590, 13141, 'attr', 'start_date', '2021-03-03', '2021-03-13');
INSERT INTO public.journal_details VALUES (17591, 13142, 'attr', 'due_date', NULL, '2021-03-13');
INSERT INTO public.journal_details VALUES (17592, 13142, 'attr', 'start_date', '2021-03-03', '2021-03-13');
INSERT INTO public.journal_details VALUES (17593, 13143, 'attr', 'due_date', NULL, '2021-03-13');
INSERT INTO public.journal_details VALUES (17594, 13143, 'attr', 'start_date', '2021-03-03', '2021-03-13');
INSERT INTO public.journal_details VALUES (17595, 13144, 'attr', 'due_date', NULL, '2021-03-13');
INSERT INTO public.journal_details VALUES (17596, 13144, 'attr', 'start_date', '2021-03-03', '2021-03-13');
INSERT INTO public.journal_details VALUES (17597, 13145, 'attr', 'subject', '14 ', '14 Bản đồ quy hoạch sử dụng đất Quận Cái Răng');
INSERT INTO public.journal_details VALUES (17598, 13146, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17599, 13147, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17600, 13148, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17601, 13149, 'attr', 'due_date', '2021-03-13', '2021-03-08');
INSERT INTO public.journal_details VALUES (17602, 13149, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17603, 13149, 'attr', 'start_date', '2021-03-13', '2021-03-08');
INSERT INTO public.journal_details VALUES (17604, 13150, 'attr', 'due_date', '2021-03-13', '2021-03-08');
INSERT INTO public.journal_details VALUES (17605, 13150, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17606, 13150, 'attr', 'start_date', '2021-03-13', '2021-03-08');
INSERT INTO public.journal_details VALUES (17607, 13151, 'attr', 'due_date', '2021-03-13', '2021-03-08');
INSERT INTO public.journal_details VALUES (17608, 13151, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17609, 13151, 'attr', 'start_date', '2021-03-13', '2021-03-08');
INSERT INTO public.journal_details VALUES (17610, 13152, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17611, 13153, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17612, 13154, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17613, 13155, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17614, 13156, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17615, 13157, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17616, 13158, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17617, 13159, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (17618, 13160, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17619, 13161, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17620, 13162, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17621, 13162, 'attr', 'done_ratio', '60', '100');
INSERT INTO public.journal_details VALUES (17622, 13163, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17623, 13164, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17624, 13165, 'attr', 'assigned_to_id', '39', '19');
INSERT INTO public.journal_details VALUES (17625, 13166, 'attr', 'assigned_to_id', '19', '8');
INSERT INTO public.journal_details VALUES (17626, 13167, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17627, 13168, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17628, 13169, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17629, 13170, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17630, 13171, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17631, 13172, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17632, 13173, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17633, 13174, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17634, 13175, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17635, 13176, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17636, 13177, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17637, 13178, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17638, 13179, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17639, 13180, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17640, 13181, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17641, 13182, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17642, 13183, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17643, 13184, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17644, 13185, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17645, 13186, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17646, 13187, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17647, 13188, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17648, 13189, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17649, 13190, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17650, 13191, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17651, 13192, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17652, 13193, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17653, 13194, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17654, 13195, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17655, 13196, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17656, 13197, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17657, 13198, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17658, 13199, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17659, 13200, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17660, 13201, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17661, 13202, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17662, 13203, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17663, 13204, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17664, 13205, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17665, 13206, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17666, 13207, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17667, 13208, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17668, 13209, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17669, 13210, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17670, 13210, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17671, 13211, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17672, 13211, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17673, 13212, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17674, 13212, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17675, 13213, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17676, 13213, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17677, 13214, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17678, 13215, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17679, 13216, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17680, 13217, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17681, 13218, 'attr', 'fixed_version_id', NULL, '100');
INSERT INTO public.journal_details VALUES (17682, 13219, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (17683, 13220, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17684, 13221, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17685, 13222, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17686, 13223, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17687, 13224, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17688, 13225, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17689, 13226, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17690, 13227, 'attr', 'fixed_version_id', NULL, '102');
INSERT INTO public.journal_details VALUES (17691, 13228, 'attr', 'due_date', '2021-03-10', '2021-03-15');
INSERT INTO public.journal_details VALUES (17692, 13228, 'attr', 'fixed_version_id', '100', '102');
INSERT INTO public.journal_details VALUES (17693, 13228, 'attr', 'start_date', '2021-03-10', '2021-03-15');
INSERT INTO public.journal_details VALUES (17694, 13229, 'attr', 'due_date', NULL, '2021-03-15');
INSERT INTO public.journal_details VALUES (17695, 13229, 'attr', 'fixed_version_id', '100', '102');
INSERT INTO public.journal_details VALUES (17696, 13229, 'attr', 'start_date', '2021-03-03', '2021-03-15');
INSERT INTO public.journal_details VALUES (17697, 13230, 'attr', 'due_date', '2021-03-12', '2021-03-15');
INSERT INTO public.journal_details VALUES (17698, 13230, 'attr', 'fixed_version_id', '100', '102');
INSERT INTO public.journal_details VALUES (17699, 13230, 'attr', 'start_date', '2021-03-12', '2021-03-15');
INSERT INTO public.journal_details VALUES (17700, 13231, 'attr', 'due_date', '2021-03-12', '2021-03-15');
INSERT INTO public.journal_details VALUES (17701, 13231, 'attr', 'fixed_version_id', '100', '102');
INSERT INTO public.journal_details VALUES (17702, 13231, 'attr', 'start_date', '2021-03-12', '2021-03-15');
INSERT INTO public.journal_details VALUES (17703, 13232, 'attr', 'due_date', '2021-03-12', '2021-03-15');
INSERT INTO public.journal_details VALUES (17704, 13232, 'attr', 'fixed_version_id', '100', '102');
INSERT INTO public.journal_details VALUES (17705, 13232, 'attr', 'start_date', '2021-03-12', '2021-03-15');
INSERT INTO public.journal_details VALUES (17706, 13233, 'attr', 'due_date', '2021-03-12', '2021-03-15');
INSERT INTO public.journal_details VALUES (17707, 13233, 'attr', 'fixed_version_id', '100', '102');
INSERT INTO public.journal_details VALUES (17708, 13233, 'attr', 'start_date', '2021-03-12', '2021-03-15');
INSERT INTO public.journal_details VALUES (17709, 13234, 'attr', 'due_date', '2021-03-12', '2021-03-15');
INSERT INTO public.journal_details VALUES (17710, 13234, 'attr', 'fixed_version_id', '100', '102');
INSERT INTO public.journal_details VALUES (17711, 13234, 'attr', 'start_date', '2021-03-12', '2021-03-15');
INSERT INTO public.journal_details VALUES (17712, 13235, 'attr', 'due_date', '2021-03-12', '2021-03-15');
INSERT INTO public.journal_details VALUES (17713, 13235, 'attr', 'fixed_version_id', '100', '102');
INSERT INTO public.journal_details VALUES (17714, 13235, 'attr', 'start_date', '2021-03-12', '2021-03-15');
INSERT INTO public.journal_details VALUES (17715, 13236, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17716, 13236, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17717, 13236, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17718, 13237, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17719, 13238, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17720, 13239, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17721, 13240, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17722, 13241, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17723, 13242, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17724, 13243, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17725, 13244, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17726, 13245, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17727, 13246, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17728, 13247, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17729, 13248, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17730, 13249, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17731, 13250, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17732, 13251, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17733, 13252, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17734, 13253, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17735, 13254, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17736, 13255, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17737, 13256, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17738, 13257, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17739, 13258, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17740, 13259, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17741, 13260, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17742, 13261, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17743, 13262, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17744, 13263, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17745, 13263, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17746, 13264, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17747, 13265, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17748, 13266, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17749, 13266, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17750, 13267, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17751, 13267, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17752, 13268, 'attr', 'subject', 'Điều 10 - 04/129 - Tổng A', 'Điều 10 - 04/129 - Tổng A+B+C không có D');
INSERT INTO public.journal_details VALUES (17753, 13268, 'attr', 'due_date', NULL, '2021-03-16');
INSERT INTO public.journal_details VALUES (17754, 13268, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17755, 13268, 'attr', 'fixed_version_id', NULL, '102');
INSERT INTO public.journal_details VALUES (17756, 13269, 'attr', 'fixed_version_id', '75', '102');
INSERT INTO public.journal_details VALUES (17757, 13270, 'attr', 'fixed_version_id', '75', '102');
INSERT INTO public.journal_details VALUES (17758, 13271, 'attr', 'fixed_version_id', '75', '102');
INSERT INTO public.journal_details VALUES (17759, 13272, 'attr', 'fixed_version_id', '75', '102');
INSERT INTO public.journal_details VALUES (17760, 13273, 'attr', 'fixed_version_id', '75', '102');
INSERT INTO public.journal_details VALUES (17761, 13274, 'attr', 'fixed_version_id', '75', '102');
INSERT INTO public.journal_details VALUES (17762, 13275, 'attr', 'fixed_version_id', '75', '102');
INSERT INTO public.journal_details VALUES (17763, 13276, 'attr', 'fixed_version_id', '75', '102');
INSERT INTO public.journal_details VALUES (17764, 13277, 'attr', 'fixed_version_id', '75', '102');
INSERT INTO public.journal_details VALUES (17765, 13278, 'attr', 'fixed_version_id', '75', '102');
INSERT INTO public.journal_details VALUES (17766, 13279, 'attr', 'fixed_version_id', '75', '102');
INSERT INTO public.journal_details VALUES (17767, 13280, 'attr', 'fixed_version_id', '75', '102');
INSERT INTO public.journal_details VALUES (17768, 13281, 'attr', 'due_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17769, 13281, 'attr', 'start_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17770, 13282, 'attr', 'due_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17771, 13282, 'attr', 'start_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17772, 13283, 'attr', 'due_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17773, 13283, 'attr', 'start_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17774, 13284, 'attr', 'due_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17775, 13284, 'attr', 'start_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17776, 13285, 'attr', 'due_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17777, 13285, 'attr', 'start_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17778, 13286, 'attr', 'due_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17779, 13286, 'attr', 'start_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17780, 13287, 'attr', 'due_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17781, 13287, 'attr', 'start_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17782, 13288, 'attr', 'due_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17783, 13288, 'attr', 'start_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17784, 13289, 'attr', 'due_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17785, 13289, 'attr', 'start_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17786, 13290, 'attr', 'due_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17787, 13290, 'attr', 'start_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17788, 13291, 'attr', 'due_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17789, 13291, 'attr', 'start_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17790, 13292, 'attr', 'due_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17791, 13292, 'attr', 'start_date', '2021-03-12', '2021-03-18');
INSERT INTO public.journal_details VALUES (17792, 13293, 'attr', 'fixed_version_id', '75', '102');
INSERT INTO public.journal_details VALUES (17793, 13294, 'attr', 'due_date', '2021-03-12', '2021-03-16');
INSERT INTO public.journal_details VALUES (17794, 13294, 'attr', 'start_date', '2021-03-12', '2021-03-16');
INSERT INTO public.journal_details VALUES (17795, 13295, 'attr', 'assigned_to_id', '39', '10');
INSERT INTO public.journal_details VALUES (17796, 13296, 'attr', 'assigned_to_id', '39', '10');
INSERT INTO public.journal_details VALUES (17797, 13297, 'attr', 'assigned_to_id', '39', '10');
INSERT INTO public.journal_details VALUES (17798, 13298, 'attr', 'assigned_to_id', '39', '10');
INSERT INTO public.journal_details VALUES (17799, 13299, 'attr', 'assigned_to_id', '39', '10');
INSERT INTO public.journal_details VALUES (17800, 13300, 'attr', 'assigned_to_id', '39', '10');
INSERT INTO public.journal_details VALUES (17801, 13301, 'attr', 'assigned_to_id', '39', '10');
INSERT INTO public.journal_details VALUES (17802, 13302, 'attr', 'assigned_to_id', '39', '10');
INSERT INTO public.journal_details VALUES (17803, 13303, 'attr', 'assigned_to_id', '39', '10');
INSERT INTO public.journal_details VALUES (17804, 13304, 'attr', 'assigned_to_id', '39', '10');
INSERT INTO public.journal_details VALUES (17805, 13305, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17806, 13306, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17807, 13307, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17808, 13308, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17809, 13309, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17810, 13310, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17811, 13311, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17812, 13312, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17813, 13313, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17814, 13314, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17815, 13315, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (17816, 13316, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17817, 13316, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17818, 13317, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17819, 13318, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17820, 13319, 'attr', 'assigned_to_id', '39', '10');
INSERT INTO public.journal_details VALUES (17821, 13320, 'attr', 'due_date', '2021-03-12', '2021-03-19');
INSERT INTO public.journal_details VALUES (17822, 13320, 'attr', 'assigned_to_id', '23', '33');
INSERT INTO public.journal_details VALUES (17823, 13320, 'attr', 'start_date', '2021-03-06', '2021-03-15');
INSERT INTO public.journal_details VALUES (17824, 13321, 'attr', 'fixed_version_id', '75', '102');
INSERT INTO public.journal_details VALUES (17825, 13322, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17826, 13323, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17827, 13324, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (17828, 13325, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17829, 13325, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17830, 13325, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17831, 13326, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17832, 13326, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17833, 13326, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17834, 13327, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17835, 13327, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17836, 13327, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17837, 13328, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17838, 13328, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17839, 13328, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17840, 13329, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17841, 13329, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17842, 13329, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17843, 13330, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17844, 13330, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17845, 13330, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17846, 13331, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17847, 13331, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17848, 13331, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17849, 13332, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17850, 13332, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17851, 13332, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17852, 13333, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17853, 13333, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17854, 13333, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17855, 13334, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17856, 13334, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17857, 13334, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17858, 13335, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17859, 13335, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17860, 13335, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17861, 13336, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17862, 13336, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17863, 13336, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17864, 13337, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17865, 13337, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17866, 13337, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17867, 13338, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17868, 13338, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17869, 13338, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17870, 13339, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17871, 13339, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17872, 13339, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17873, 13340, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17874, 13340, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17875, 13340, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17876, 13341, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17877, 13341, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17878, 13341, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17879, 13342, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17880, 13342, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17881, 13342, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17882, 13343, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17883, 13343, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17884, 13343, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17885, 13344, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17886, 13344, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17887, 13344, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17888, 13345, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17889, 13345, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17890, 13345, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17891, 13346, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17892, 13346, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17893, 13346, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17894, 13347, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17895, 13347, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17896, 13347, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17897, 13348, 'attr', 'due_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17898, 13348, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17899, 13348, 'attr', 'start_date', '2021-03-12', '2021-03-22');
INSERT INTO public.journal_details VALUES (17900, 13349, 'attr', 'due_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17901, 13349, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17902, 13349, 'attr', 'start_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17903, 13350, 'attr', 'due_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17904, 13350, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17905, 13350, 'attr', 'start_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17906, 13351, 'attr', 'due_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17907, 13351, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17908, 13351, 'attr', 'start_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17909, 13352, 'attr', 'due_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17910, 13352, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17911, 13352, 'attr', 'start_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17930, 13359, 'attr', 'due_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17931, 13359, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17932, 13359, 'attr', 'start_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17933, 13360, 'attr', 'due_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17934, 13360, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17935, 13360, 'attr', 'start_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17936, 13361, 'attr', 'due_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17937, 13361, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17938, 13361, 'attr', 'start_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17939, 13362, 'attr', 'due_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17940, 13362, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (18047, 13434, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17941, 13362, 'attr', 'start_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17942, 13363, 'attr', 'due_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17943, 13363, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17944, 13363, 'attr', 'start_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17945, 13364, 'attr', 'due_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17946, 13364, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17947, 13364, 'attr', 'start_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17948, 13365, 'attr', 'due_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17949, 13365, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17950, 13365, 'attr', 'start_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17951, 13366, 'attr', 'due_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17952, 13366, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17953, 13366, 'attr', 'start_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17954, 13367, 'attr', 'due_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17955, 13367, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17956, 13367, 'attr', 'start_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17957, 13368, 'attr', 'due_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17958, 13368, 'attr', 'fixed_version_id', '75', '103');
INSERT INTO public.journal_details VALUES (17959, 13368, 'attr', 'start_date', '2021-03-17', '2021-03-22');
INSERT INTO public.journal_details VALUES (17960, 13369, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17961, 13370, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17962, 13371, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17963, 13372, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17970, 13379, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17971, 13380, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17972, 13381, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17973, 13382, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17974, 13383, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17975, 13384, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17976, 13385, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17977, 13386, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17978, 13387, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17979, 13388, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (17980, 13389, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17981, 13390, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17982, 13391, 'attr', 'fixed_version_id', NULL, '102');
INSERT INTO public.journal_details VALUES (17983, 13392, 'attr', 'subject', 'Điều 16 - Văn bản - Dữ liệu ở mục 3.1 sai so với bảng 2.1', 'Điều 16 - Dữ liệu ở mục 3.1 trong văn bảng sai so với bảng 2.1');
INSERT INTO public.journal_details VALUES (17984, 13393, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17985, 13394, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17986, 13395, 'attr', 'subject', 'Điều 16 - Mẫu đề cương - Sai tên đơn vị gửi báo cáo', 'Điều 16 - Mẫu đề cương - Sai tên đơn vị gửi báo cáo ở file PDF');
INSERT INTO public.journal_details VALUES (17987, 13396, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17988, 13396, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17989, 13397, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17990, 13397, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17991, 13398, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17992, 13398, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17993, 13399, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17994, 13400, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (17995, 13401, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17996, 13402, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (17997, 13403, 'attr', 'due_date', '2021-03-12', '2021-03-15');
INSERT INTO public.journal_details VALUES (17998, 13403, 'attr', 'start_date', '2021-03-12', '2021-03-15');
INSERT INTO public.journal_details VALUES (17999, 13404, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18000, 13404, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18001, 13405, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18002, 13405, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18003, 13406, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18004, 13406, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18005, 13407, 'attr', 'assigned_to_id', '17', '41');
INSERT INTO public.journal_details VALUES (18006, 13408, 'attr', 'assigned_to_id', '17', '41');
INSERT INTO public.journal_details VALUES (18007, 13409, 'attr', 'assigned_to_id', '17', '41');
INSERT INTO public.journal_details VALUES (18008, 13410, 'attr', 'assigned_to_id', '17', '41');
INSERT INTO public.journal_details VALUES (18009, 13411, 'attr', 'due_date', '2021-03-22', '2021-03-19');
INSERT INTO public.journal_details VALUES (18010, 13411, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18011, 13411, 'attr', 'start_date', '2021-03-22', '2021-03-18');
INSERT INTO public.journal_details VALUES (18012, 13411, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18013, 13412, 'attr', 'due_date', '2021-03-22', '2021-03-19');
INSERT INTO public.journal_details VALUES (18014, 13412, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18015, 13412, 'attr', 'start_date', '2021-03-22', '2021-03-18');
INSERT INTO public.journal_details VALUES (18016, 13412, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18017, 13413, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18018, 13413, 'attr', 'start_date', '2021-03-18', '2021-03-13');
INSERT INTO public.journal_details VALUES (18019, 13413, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18020, 13414, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18021, 13414, 'attr', 'start_date', '2021-03-18', '2021-03-13');
INSERT INTO public.journal_details VALUES (18022, 13414, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18023, 13415, 'attr', 'subject', 'Có 2 nút lưu dữ liệu - nút dưới không thực hiện được', 'Điều 12 - Có 2 nút lưu dữ liệu - nút dưới không thực hiện được');
INSERT INTO public.journal_details VALUES (18024, 13416, 'attr', 'subject', 'Các ô nhập dữ liệu bị giới hạn ký tự', 'Điều 12- Các ô nhập dữ liệu bị giới hạn ký tự');
INSERT INTO public.journal_details VALUES (18025, 13417, 'attr', 'subject', 'Khi nhập giá trị cho ô có đơn vị % thì không lưu được', 'Điều 12 - Khi nhập giá trị cho ô có đơn vị % thì không lưu được');
INSERT INTO public.journal_details VALUES (18026, 13418, 'attr', 'subject', 'PDF thiếu dữ liệu của mục 2.a, 2.b', 'Điều 12 - PDF thiếu dữ liệu của mục 2.a, 2.b');
INSERT INTO public.journal_details VALUES (18027, 13419, 'attr', 'assigned_to_id', '17', '38');
INSERT INTO public.journal_details VALUES (18028, 13420, 'attr', 'assigned_to_id', '17', '38');
INSERT INTO public.journal_details VALUES (18029, 13421, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (18030, 13422, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (18031, 13423, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (18032, 13424, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (18033, 13425, 'attr', 'due_date', '2021-03-18', '2021-03-19');
INSERT INTO public.journal_details VALUES (18034, 13425, 'attr', 'start_date', '2021-03-13', '2021-03-19');
INSERT INTO public.journal_details VALUES (18035, 13426, 'attr', 'due_date', '2021-03-18', '2021-03-19');
INSERT INTO public.journal_details VALUES (18036, 13426, 'attr', 'start_date', '2021-03-13', '2021-03-19');
INSERT INTO public.journal_details VALUES (18037, 13427, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18038, 13427, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18039, 13428, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18040, 13428, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18041, 13429, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18042, 13430, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18043, 13431, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18044, 13432, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18045, 13433, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18046, 13434, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18048, 13435, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18049, 13436, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18050, 13437, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18051, 13438, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18052, 13439, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18053, 13439, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18054, 13440, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18055, 13440, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18056, 13441, 'attr', 'assigned_to_id', NULL, '23');
INSERT INTO public.journal_details VALUES (18057, 13442, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18058, 13442, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18059, 13443, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18060, 13443, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18061, 13444, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18062, 13444, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18063, 13445, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18064, 13446, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18065, 13447, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18066, 13448, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18067, 13449, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18068, 13450, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18069, 13451, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18070, 13451, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18071, 13452, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18072, 13452, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18073, 13453, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18074, 13453, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18075, 13454, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18076, 13454, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18077, 13455, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18078, 13455, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18079, 13456, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18080, 13456, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18081, 13457, 'attr', 'subject', 'Điều 22 - Biểu số 05B (PDF)', 'Điều 22 - Biểu số 05A (PDF)');
INSERT INTO public.journal_details VALUES (18082, 13457, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18083, 13457, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18084, 13458, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18085, 13458, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18086, 13459, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18087, 13459, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18088, 13460, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18089, 13460, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18090, 13461, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (18091, 13461, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (18092, 13462, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18093, 13462, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18094, 13463, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18095, 13463, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18096, 13464, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18097, 13464, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18098, 13465, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18099, 13465, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18100, 13466, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18101, 13467, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18102, 13468, 'attr', 'subject', 'Điều 25 - Phụ luc 1 (PDF)', 'Điều 15 - Phụ luc 1 (PDF)');
INSERT INTO public.journal_details VALUES (18103, 13469, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18104, 13470, 'attr', 'subject', 'Điều 18 - Mẫu 01/CĐT - Không xem được file PDF', 'Điều 18 - Điều 9 - Fix xem PDF');
INSERT INTO public.journal_details VALUES (18105, 13471, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18106, 13472, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18107, 13473, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18108, 13473, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18109, 13474, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18110, 13475, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18111, 13475, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18112, 13476, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18113, 13476, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18114, 13477, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18115, 13477, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18116, 13478, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18117, 13478, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18118, 13479, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18119, 13479, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18120, 13480, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18121, 13481, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18122, 13482, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18123, 13483, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18124, 13484, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18125, 13485, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18126, 13486, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18127, 13487, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18128, 13488, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18129, 13489, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18130, 13490, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (18131, 13491, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18132, 13492, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18133, 13493, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18134, 13494, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18135, 13495, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18136, 13496, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18137, 13497, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18138, 13497, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18139, 13498, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18140, 13499, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18141, 13500, 'attr', 'subject', 'Điều 10 - Mẫu 01/188 - Không thêm được danh mục nội dung', 'Điều 10 - Mẫu 01/188 - Chưa làm');
INSERT INTO public.journal_details VALUES (18142, 13501, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18143, 13502, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18144, 13503, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18145, 13504, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18146, 13505, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18147, 13506, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18148, 13507, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18149, 13508, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18150, 13509, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18151, 13510, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18152, 13511, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18153, 13512, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18154, 13513, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18155, 13514, 'attr', 'subject', 'Sai chính tả Tổng cộng (A+B+C)', 'Điều 10 mẫu 01-A, 01-B, 02,04,05,06/129 - Sai chính tả Tổng cộng (A+B+C)');
INSERT INTO public.journal_details VALUES (18156, 13515, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18157, 13516, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18158, 13517, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18159, 13517, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18160, 13518, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18161, 13519, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18162, 13520, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18163, 13521, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18164, 13522, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18165, 13523, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18166, 13524, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18167, 13525, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18168, 13526, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18169, 13527, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18170, 13528, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18171, 13529, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18172, 13530, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18173, 13531, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18174, 13532, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18175, 13533, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18176, 13534, 'attr', 'fixed_version_id', '102', '103');
INSERT INTO public.journal_details VALUES (18177, 13535, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18178, 13536, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18179, 13536, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18180, 13537, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18181, 13538, 'attr', 'subject', 'Điều 16 -  mẫu 2.1, 2.2 - Không hiển thị tên đơn vị thực hiện dữ liệu báo cáo', 'Điều 16 -  bảng 2.1, 2.2 - Không hiển thị tên đơn vị thực hiện dữ liệu báo cáo');
INSERT INTO public.journal_details VALUES (18182, 13539, 'attr', 'subject', 'Điều 16 -  bảng 2.1, 2.2 - Không hiển thị tên đơn vị thực hiện dữ liệu báo cáo', 'Điều 16 -  bảng 2.1, 2.2 - Cấp trên không thấy tên đơn vị thực hiện dữ liệu báo cáo của cấp dưới');
INSERT INTO public.journal_details VALUES (18183, 13540, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18184, 13541, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18185, 13542, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18186, 13543, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18187, 13544, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18188, 13545, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18189, 13546, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18190, 13547, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18191, 13548, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18192, 13549, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18193, 13550, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18194, 13551, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18195, 13551, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (18196, 13552, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18197, 13552, 'attr', 'assigned_to_id', '17', '39');
INSERT INTO public.journal_details VALUES (18198, 13553, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18199, 13553, 'attr', 'assigned_to_id', '17', '39');
INSERT INTO public.journal_details VALUES (18200, 13554, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18201, 13554, 'attr', 'assigned_to_id', '17', '39');
INSERT INTO public.journal_details VALUES (18202, 13555, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18203, 13556, 'attr', 'assigned_to_id', '39', '38');
INSERT INTO public.journal_details VALUES (18204, 13557, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18205, 13558, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18206, 13559, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18207, 13560, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18208, 13561, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18209, 13561, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18210, 13562, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18211, 13563, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (18212, 13564, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18213, 13564, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18214, 13565, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18215, 13565, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18216, 13566, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18217, 13566, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18218, 13567, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18219, 13567, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18220, 13568, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18221, 13568, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18222, 13569, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18223, 13569, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18224, 13570, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18225, 13570, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18226, 13571, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18227, 13571, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18228, 13572, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18229, 13572, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18230, 13573, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18231, 13574, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18232, 13575, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (18233, 13576, 'attr', 'subject', 'Điều 18 mẫu 01/CĐT - Bỏ ràng buộc số lượng tối đa khi nhập dữ liệu số', 'Điều 18 mẫu 01, 02,03,04/CĐT - Bỏ ràng buộc số lượng tối đa khi nhập dữ liệu số');
INSERT INTO public.journal_details VALUES (18234, 13577, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18235, 13578, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18236, 13579, 'attr', 'subject', 'Điều 18 mẫu 01, 02,03,04/CĐT - Bỏ ràng buộc số lượng tối đa khi nhập dữ liệu số', 'Điều 18 mẫu 01, 02,03,04/CĐT; 01,02,03/CQTH - Bỏ ràng buộc số lượng tối đa khi nhập dữ liệu số');
INSERT INTO public.journal_details VALUES (18237, 13580, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18238, 13581, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18239, 13582, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18240, 13583, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18241, 13584, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18242, 13584, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18243, 13585, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18244, 13585, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18245, 13586, 'attr', 'assigned_to_id', '38', '10');
INSERT INTO public.journal_details VALUES (18246, 13587, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18247, 13587, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18248, 13588, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18249, 13588, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18250, 13589, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18251, 13590, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18252, 13591, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18253, 13592, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18254, 13593, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18255, 13594, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18256, 13595, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18257, 13596, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18258, 13597, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18259, 13598, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18260, 13599, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18261, 13600, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18262, 13601, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18263, 13602, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18264, 13603, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18265, 13604, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18266, 13605, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18267, 13606, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18268, 13607, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18269, 13608, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18270, 13609, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18271, 13610, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18272, 13611, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18273, 13612, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18274, 13613, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18275, 13614, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18276, 13615, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18277, 13616, 'attr', 'assigned_to_id', '10', '38');
INSERT INTO public.journal_details VALUES (18278, 13617, 'attr', 'due_date', '2021-03-15', '2021-03-29');
INSERT INTO public.journal_details VALUES (18279, 13617, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18280, 13617, 'attr', 'start_date', '2021-03-15', '2021-03-29');
INSERT INTO public.journal_details VALUES (18281, 13618, 'attr', 'due_date', '2021-03-19', '2021-03-29');
INSERT INTO public.journal_details VALUES (18282, 13618, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18283, 13618, 'attr', 'start_date', '2021-03-19', '2021-03-29');
INSERT INTO public.journal_details VALUES (18284, 13619, 'attr', 'due_date', '2021-03-18', '2021-03-29');
INSERT INTO public.journal_details VALUES (18285, 13619, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18286, 13619, 'attr', 'start_date', '2021-03-18', '2021-03-29');
INSERT INTO public.journal_details VALUES (18287, 13620, 'attr', 'due_date', '2021-03-18', '2021-03-29');
INSERT INTO public.journal_details VALUES (18288, 13620, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18289, 13620, 'attr', 'start_date', '2021-03-18', '2021-03-29');
INSERT INTO public.journal_details VALUES (18290, 13621, 'attr', 'due_date', '2021-03-16', '2021-03-29');
INSERT INTO public.journal_details VALUES (18291, 13621, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18292, 13621, 'attr', 'start_date', '2021-03-16', '2021-03-29');
INSERT INTO public.journal_details VALUES (18311, 13628, 'attr', 'due_date', '2021-03-22', '2021-03-29');
INSERT INTO public.journal_details VALUES (18312, 13628, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18313, 13628, 'attr', 'start_date', '2021-03-22', '2021-03-29');
INSERT INTO public.journal_details VALUES (18314, 13629, 'attr', 'due_date', '2021-03-22', '2021-03-29');
INSERT INTO public.journal_details VALUES (18315, 13629, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18316, 13629, 'attr', 'start_date', '2021-03-22', '2021-03-29');
INSERT INTO public.journal_details VALUES (18317, 13630, 'attr', 'due_date', '2021-03-22', '2021-03-29');
INSERT INTO public.journal_details VALUES (18318, 13630, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18319, 13630, 'attr', 'start_date', '2021-03-22', '2021-03-29');
INSERT INTO public.journal_details VALUES (18320, 13631, 'attr', 'due_date', '2021-03-22', '2021-03-29');
INSERT INTO public.journal_details VALUES (18321, 13631, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18322, 13631, 'attr', 'start_date', '2021-03-22', '2021-03-29');
INSERT INTO public.journal_details VALUES (18323, 13632, 'attr', 'due_date', '2021-03-22', '2021-03-29');
INSERT INTO public.journal_details VALUES (18324, 13632, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18325, 13632, 'attr', 'start_date', '2021-03-22', '2021-03-29');
INSERT INTO public.journal_details VALUES (18326, 13633, 'attr', 'due_date', '2021-03-17', '2021-03-29');
INSERT INTO public.journal_details VALUES (18327, 13633, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18328, 13633, 'attr', 'start_date', '2021-03-17', '2021-03-29');
INSERT INTO public.journal_details VALUES (18329, 13634, 'attr', 'due_date', '2021-03-19', '2021-03-29');
INSERT INTO public.journal_details VALUES (18330, 13634, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18331, 13634, 'attr', 'start_date', '2021-03-19', '2021-03-29');
INSERT INTO public.journal_details VALUES (18332, 13635, 'attr', 'due_date', '2021-03-25', '2021-03-29');
INSERT INTO public.journal_details VALUES (18333, 13635, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18334, 13635, 'attr', 'start_date', '2021-03-25', '2021-03-29');
INSERT INTO public.journal_details VALUES (18335, 13636, 'attr', 'due_date', '2021-03-25', '2021-03-29');
INSERT INTO public.journal_details VALUES (18336, 13636, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18337, 13636, 'attr', 'start_date', '2021-03-25', '2021-03-29');
INSERT INTO public.journal_details VALUES (18338, 13637, 'attr', 'due_date', '2021-03-25', '2021-03-29');
INSERT INTO public.journal_details VALUES (18339, 13637, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18340, 13637, 'attr', 'start_date', '2021-03-25', '2021-03-29');
INSERT INTO public.journal_details VALUES (18341, 13638, 'attr', 'due_date', '2021-03-25', '2021-03-29');
INSERT INTO public.journal_details VALUES (18342, 13638, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18343, 13638, 'attr', 'start_date', '2021-03-25', '2021-03-29');
INSERT INTO public.journal_details VALUES (18344, 13639, 'attr', 'due_date', '2021-03-26', '2021-03-29');
INSERT INTO public.journal_details VALUES (18345, 13639, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18346, 13639, 'attr', 'start_date', '2021-03-25', '2021-03-29');
INSERT INTO public.journal_details VALUES (18347, 13640, 'attr', 'due_date', '2021-03-26', '2021-03-29');
INSERT INTO public.journal_details VALUES (18348, 13640, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18349, 13640, 'attr', 'start_date', '2021-03-25', '2021-03-29');
INSERT INTO public.journal_details VALUES (18350, 13641, 'attr', 'due_date', '2021-03-26', '2021-03-29');
INSERT INTO public.journal_details VALUES (18351, 13641, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18352, 13641, 'attr', 'start_date', '2021-03-26', '2021-03-29');
INSERT INTO public.journal_details VALUES (18353, 13642, 'attr', 'due_date', '2021-03-26', '2021-03-29');
INSERT INTO public.journal_details VALUES (18354, 13642, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18355, 13642, 'attr', 'start_date', '2021-03-26', '2021-03-29');
INSERT INTO public.journal_details VALUES (18356, 13643, 'attr', 'due_date', '2021-03-26', '2021-03-29');
INSERT INTO public.journal_details VALUES (18357, 13643, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18358, 13643, 'attr', 'start_date', '2021-03-26', '2021-03-29');
INSERT INTO public.journal_details VALUES (18359, 13644, 'attr', 'due_date', '2021-03-26', '2021-03-29');
INSERT INTO public.journal_details VALUES (18360, 13644, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18361, 13644, 'attr', 'start_date', '2021-03-26', '2021-03-29');
INSERT INTO public.journal_details VALUES (18362, 13645, 'attr', 'due_date', '2021-03-26', '2021-03-29');
INSERT INTO public.journal_details VALUES (18363, 13645, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18364, 13645, 'attr', 'start_date', '2021-03-26', '2021-03-29');
INSERT INTO public.journal_details VALUES (18365, 13646, 'attr', 'due_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18366, 13646, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18367, 13646, 'attr', 'start_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18368, 13647, 'attr', 'due_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18369, 13647, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18370, 13647, 'attr', 'start_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18371, 13648, 'attr', 'due_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18372, 13648, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18373, 13648, 'attr', 'start_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18374, 13649, 'attr', 'due_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18375, 13649, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18376, 13649, 'attr', 'start_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18377, 13650, 'attr', 'due_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18378, 13650, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18379, 13650, 'attr', 'start_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18380, 13651, 'attr', 'due_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18381, 13651, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18382, 13651, 'attr', 'start_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18383, 13652, 'attr', 'due_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18384, 13652, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18385, 13652, 'attr', 'start_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18386, 13653, 'attr', 'due_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18387, 13653, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18388, 13653, 'attr', 'start_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18389, 13654, 'attr', 'due_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18390, 13654, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18391, 13654, 'attr', 'start_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18392, 13655, 'attr', 'due_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18393, 13655, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18394, 13655, 'attr', 'start_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18395, 13656, 'attr', 'due_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18396, 13656, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18397, 13656, 'attr', 'start_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18398, 13657, 'attr', 'due_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18399, 13657, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18400, 13657, 'attr', 'start_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18401, 13658, 'attr', 'due_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18402, 13658, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18403, 13658, 'attr', 'start_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18404, 13659, 'attr', 'due_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18405, 13659, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18406, 13659, 'attr', 'start_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18407, 13660, 'attr', 'due_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18408, 13660, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18409, 13660, 'attr', 'start_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18410, 13661, 'attr', 'due_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18411, 13661, 'attr', 'fixed_version_id', '103', '105');
INSERT INTO public.journal_details VALUES (18412, 13661, 'attr', 'start_date', '2021-03-27', '2021-03-29');
INSERT INTO public.journal_details VALUES (18413, 13662, 'attr', 'subject', '29 Quy hoạch SDD 2020 Tỉnh Cần Thơ', '30 Quy hoạch SDD 2020 Tỉnh Cần Thơ');
INSERT INTO public.journal_details VALUES (18420, 13669, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18421, 13670, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18422, 13671, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18423, 13672, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18424, 13673, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18425, 13674, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18426, 13675, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18427, 13676, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18428, 13677, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18429, 13678, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18430, 13679, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18431, 13680, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18432, 13681, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18433, 13681, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18434, 13682, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18435, 13682, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18436, 13683, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18437, 13683, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18438, 13684, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18439, 13684, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18440, 13685, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18441, 13685, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18442, 13686, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18443, 13686, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18444, 13687, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18445, 13687, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18446, 13688, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18447, 13688, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18448, 13689, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18449, 13689, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18450, 13690, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18451, 13690, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18452, 13691, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18453, 13691, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18454, 13692, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18455, 13692, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18456, 13693, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18457, 13693, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18458, 13694, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18459, 13695, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18460, 13696, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18461, 13696, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18462, 13697, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18463, 13697, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18464, 13698, 'attr', 'due_date', NULL, '2021-03-29');
INSERT INTO public.journal_details VALUES (18465, 13698, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (18466, 13698, 'attr', 'fixed_version_id', NULL, '105');
INSERT INTO public.journal_details VALUES (18467, 13699, 'attr', 'subject', 'Điều 21 mẫu 06, 07 - Kinh phí quản lý hành chính được giao (mục 1) chỗ tổng số cho nhập số tiền + đơn vị', 'Điều 12 mẫu 06, 07 - Kinh phí quản lý hành chính được giao (mục 1) chỗ tổng số cho nhập số tiền + đơn vị');
INSERT INTO public.journal_details VALUES (18468, 13700, 'attr', 'subject', 'Điều 12 mẫu 06 - Không xem được PDF', 'Điều 12 mẫu 06, 07 - Không xem được PDF');
INSERT INTO public.journal_details VALUES (18469, 13701, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18470, 13701, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18471, 13702, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18472, 13702, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18473, 13703, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18474, 13704, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (18475, 13705, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18476, 13706, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18477, 13707, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18478, 13708, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18479, 13709, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18480, 13710, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18481, 13711, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18482, 13712, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18483, 13713, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18484, 13714, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18485, 13715, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18486, 13716, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18487, 13717, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18488, 13718, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18489, 13719, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18490, 13719, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18491, 13720, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18492, 13720, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18493, 13721, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18494, 13722, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18495, 13723, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18496, 13724, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18497, 13725, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18498, 13726, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18499, 13727, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18500, 13728, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18501, 13729, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (18502, 13730, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (18503, 13731, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18504, 13731, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18505, 13732, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18506, 13733, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (18507, 13734, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18508, 13734, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18509, 13735, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18510, 13736, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18511, 13737, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18512, 13738, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (18513, 13739, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18514, 13740, 'attr', 'assigned_to_id', '39', '37');
INSERT INTO public.journal_details VALUES (18515, 13741, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (18516, 13742, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (18517, 13743, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (18518, 13744, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (18519, 13745, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (18521, 13747, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (18522, 13748, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (18523, 13749, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18524, 13750, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18525, 13751, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18526, 13752, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18527, 13753, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18528, 13754, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18529, 13755, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18530, 13756, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18531, 13757, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18532, 13758, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18533, 13759, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18534, 13760, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18535, 13761, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18536, 13762, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18537, 13762, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18538, 13763, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18539, 13764, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (18540, 13765, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18541, 13765, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18542, 13766, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18543, 13766, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18544, 13767, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (18545, 13768, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (18546, 13769, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (18547, 13770, 'attr', 'fixed_version_id', NULL, '104');
INSERT INTO public.journal_details VALUES (18548, 13771, 'attr', 'fixed_version_id', NULL, '104');
INSERT INTO public.journal_details VALUES (18549, 13772, 'attr', 'fixed_version_id', NULL, '104');
INSERT INTO public.journal_details VALUES (18550, 13773, 'attr', 'fixed_version_id', NULL, '104');
INSERT INTO public.journal_details VALUES (18551, 13774, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18552, 13775, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18553, 13776, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18554, 13777, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18555, 13778, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18556, 13778, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18557, 13779, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18558, 13779, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18559, 13780, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18560, 13781, 'attr', 'description', '', 'Tab khoản chi (lương) thêm đội thuê + tháng chi lương');
INSERT INTO public.journal_details VALUES (18561, 13781, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18562, 13781, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18563, 13782, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18564, 13783, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18565, 13784, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18566, 13785, 'attr', 'assigned_to_id', '17', '13');
INSERT INTO public.journal_details VALUES (18567, 13786, 'attr', 'subject', 'Báo cáo tổng hợp chi tiết của đội thuê ngoài', 'Báo cáo tổng hợp của đội thuê ngoài');
INSERT INTO public.journal_details VALUES (18568, 13787, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18569, 13788, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18570, 13789, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18571, 13789, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18572, 13790, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18573, 13791, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18574, 13791, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18575, 13792, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18576, 13792, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18577, 13793, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18578, 13794, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18579, 13795, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18580, 13796, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18581, 13797, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18582, 13797, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18583, 13798, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18584, 13799, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18585, 13800, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18586, 13801, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (18587, 13802, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18588, 13803, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18589, 13804, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18590, 13805, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18591, 13806, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18592, 13807, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18593, 13808, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18594, 13808, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18595, 13809, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18596, 13810, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18597, 13811, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18598, 13812, 'attr', 'fixed_version_id', NULL, '106');
INSERT INTO public.journal_details VALUES (18599, 13813, 'attr', 'fixed_version_id', NULL, '106');
INSERT INTO public.journal_details VALUES (18600, 13814, 'attr', 'fixed_version_id', '106', '107');
INSERT INTO public.journal_details VALUES (18601, 13815, 'attr', 'due_date', NULL, '2021-04-05');
INSERT INTO public.journal_details VALUES (18602, 13815, 'attr', 'start_date', '2021-04-01', '2021-04-05');
INSERT INTO public.journal_details VALUES (18603, 13816, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18604, 13816, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18605, 13817, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18606, 13818, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18607, 13819, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18608, 13820, 'attr', 'assigned_to_id', '37', '15');
INSERT INTO public.journal_details VALUES (18609, 13821, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18610, 13822, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18611, 13823, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18612, 13824, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18613, 13825, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18955, 14122, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18614, 13826, 'attr', 'assigned_to_id', '15', '8');
INSERT INTO public.journal_details VALUES (18615, 13827, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18616, 13828, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18620, 13831, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18621, 13831, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18622, 13832, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18623, 13833, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18624, 13834, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18625, 13835, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18626, 13836, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18627, 13837, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18628, 13838, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18629, 13839, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18630, 13840, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18631, 13841, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18632, 13842, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18633, 13843, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18634, 13844, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18635, 13845, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18636, 13846, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18637, 13847, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (18638, 13848, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (18639, 13849, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (18640, 13850, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (18641, 13851, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (18642, 13852, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18643, 13853, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18644, 13854, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (18648, 13856, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (18649, 13857, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (18650, 13858, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (18651, 13859, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18652, 13860, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18653, 13861, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18654, 13862, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18655, 13863, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18656, 13864, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18657, 13865, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18658, 13866, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18659, 13866, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (18660, 13867, 'attr', 'subject', 'Điều 15 - Mẫu 2.1', 'Điều 15 - Mẫu 2.3');
INSERT INTO public.journal_details VALUES (18661, 13867, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18662, 13868, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18663, 13869, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18664, 13870, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18665, 13871, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18666, 13872, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18667, 13873, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18668, 13874, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (18669, 13875, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (18670, 13875, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (18671, 13876, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (18672, 13876, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (18673, 13877, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (18674, 13877, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (18675, 13878, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (18676, 13879, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (18677, 13880, 'attr', 'subject', 'Quản lý vai trò tài khoản', 'Quản lý vai trò');
INSERT INTO public.journal_details VALUES (18678, 13881, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (18679, 13882, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (18680, 13883, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18681, 13884, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18682, 13885, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18683, 13886, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18684, 13887, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18685, 13888, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18686, 13889, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18687, 13890, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18688, 13891, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18689, 13892, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18690, 13893, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18691, 13893, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18692, 13894, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18693, 13895, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18694, 13896, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18695, 13896, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18696, 13897, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18697, 13898, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18698, 13899, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18699, 13900, 'attr', 'assigned_to_id', '41', '17');
INSERT INTO public.journal_details VALUES (18700, 13901, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18701, 13902, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18702, 13903, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18703, 13904, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18704, 13905, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18705, 13906, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18706, 13906, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18707, 13907, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18708, 13907, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18709, 13908, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18710, 13909, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18711, 13910, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18712, 13911, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18713, 13912, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18714, 13913, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18715, 13914, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18717, 13916, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18721, 13919, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18722, 13920, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18723, 13921, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18724, 13922, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18725, 13923, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18726, 13924, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18727, 13925, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18728, 13926, 'attr', 'assigned_to_id', '17', '13');
INSERT INTO public.journal_details VALUES (18729, 13927, 'attr', 'assigned_to_id', '17', '13');
INSERT INTO public.journal_details VALUES (18730, 13928, 'attr', 'assigned_to_id', '17', '13');
INSERT INTO public.journal_details VALUES (18731, 13929, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18732, 13930, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18733, 13931, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18734, 13932, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18735, 13933, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18736, 13934, 'attr', 'fixed_version_id', '107', '113');
INSERT INTO public.journal_details VALUES (18737, 13935, 'attr', 'fixed_version_id', '107', '113');
INSERT INTO public.journal_details VALUES (18738, 13936, 'attr', 'fixed_version_id', '107', '113');
INSERT INTO public.journal_details VALUES (18739, 13937, 'attr', 'fixed_version_id', '107', '113');
INSERT INTO public.journal_details VALUES (18845, 14027, 'attr', 'start_date', '2021-04-13', '2021-04-17');
INSERT INTO public.journal_details VALUES (18740, 13938, 'attr', 'subject', '32 Hiệng trạng sử dụng đất Huyện Cờ Đỏ 2013', '34 Hiệng trạng sử dụng đất Huyện Cờ Đỏ 2013');
INSERT INTO public.journal_details VALUES (18741, 13939, 'attr', 'subject', '32 Hiệng trạng sử dụng đất Quận Bình Thủy 2014', '32 Hiện trạng sử dụng đất Quận Bình Thủy 2014');
INSERT INTO public.journal_details VALUES (18742, 13940, 'attr', 'subject', '34 Hiệng trạng sử dụng đất Huyện Cờ Đỏ 2013', '34 Hiện trạng sử dụng đất Huyện Cờ Đỏ 2013');
INSERT INTO public.journal_details VALUES (18743, 13941, 'attr', 'due_date', '2021-04-07', '2021-04-12');
INSERT INTO public.journal_details VALUES (18744, 13941, 'attr', 'start_date', '2021-04-07', '2021-04-12');
INSERT INTO public.journal_details VALUES (18745, 13942, 'attr', 'due_date', '2021-04-07', '2021-04-12');
INSERT INTO public.journal_details VALUES (18746, 13942, 'attr', 'start_date', '2021-04-07', '2021-04-12');
INSERT INTO public.journal_details VALUES (18747, 13943, 'attr', 'due_date', '2021-04-07', '2021-04-12');
INSERT INTO public.journal_details VALUES (18748, 13943, 'attr', 'start_date', '2021-04-07', '2021-04-12');
INSERT INTO public.journal_details VALUES (18749, 13944, 'attr', 'subject', 'Điều 12 - Có 2 nút lưu dữ liệu - nút dưới không thực hiện được', 'Điều 12 mẫu 07 - Có 2 nút lưu dữ liệu - nút dưới không thực hiện được');
INSERT INTO public.journal_details VALUES (18750, 13945, 'attr', 'subject', 'Điều 12 mẫu 07 - Có 2 nút lưu dữ liệu - nút dưới không thực hiện được', 'Điều 12 mẫu 07 - Không lưu được dữ liệu');
INSERT INTO public.journal_details VALUES (18751, 13945, 'attr', 'assigned_to_id', '39', '38');
INSERT INTO public.journal_details VALUES (18752, 13946, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18753, 13947, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18754, 13948, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18755, 13949, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18756, 13950, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18757, 13951, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18758, 13952, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18759, 13953, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18760, 13954, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18761, 13955, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18762, 13956, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18763, 13957, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18764, 13958, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18765, 13959, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18766, 13960, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18767, 13961, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18768, 13962, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18769, 13963, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18770, 13964, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18771, 13965, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18772, 13966, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18773, 13967, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18774, 13968, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18775, 13969, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18776, 13970, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18777, 13971, 'attr', 'fixed_version_id', NULL, '107');
INSERT INTO public.journal_details VALUES (18778, 13972, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18779, 13973, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18780, 13974, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18781, 13975, 'attr', 'fixed_version_id', NULL, '113');
INSERT INTO public.journal_details VALUES (18782, 13976, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (18783, 13977, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (18784, 13978, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (18785, 13979, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18786, 13980, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18787, 13981, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18788, 13982, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18789, 13983, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18790, 13984, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18791, 13985, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18792, 13986, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18793, 13987, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18794, 13988, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18795, 13989, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18796, 13990, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18797, 13991, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18798, 13992, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18799, 13993, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18800, 13994, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18801, 13995, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18802, 13996, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18803, 13997, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18804, 13998, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (18805, 13998, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (18806, 13999, 'attr', 'fixed_version_id', '108', '113');
INSERT INTO public.journal_details VALUES (18807, 14000, 'attr', 'fixed_version_id', '108', '113');
INSERT INTO public.journal_details VALUES (18808, 14001, 'attr', 'fixed_version_id', '108', '113');
INSERT INTO public.journal_details VALUES (18809, 14002, 'attr', 'fixed_version_id', '108', '113');
INSERT INTO public.journal_details VALUES (18810, 14003, 'attr', 'fixed_version_id', '108', '113');
INSERT INTO public.journal_details VALUES (18811, 14004, 'attr', 'fixed_version_id', '108', '113');
INSERT INTO public.journal_details VALUES (18813, 14006, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (18814, 14007, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (18816, 14009, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (18817, 14010, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (18818, 14011, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (18819, 14012, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (18820, 14013, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (18821, 14014, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (18822, 14015, 'attr', 'fixed_version_id', '108', '113');
INSERT INTO public.journal_details VALUES (18823, 14016, 'attr', 'fixed_version_id', '108', '113');
INSERT INTO public.journal_details VALUES (18824, 14017, 'attr', 'fixed_version_id', '108', '113');
INSERT INTO public.journal_details VALUES (18825, 14018, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (18826, 14019, 'attr', 'subject', 'Giao diện tổng quan', 'Dashboard thống kê in-out');
INSERT INTO public.journal_details VALUES (18827, 14019, 'attr', 'due_date', '2021-04-12', '2021-04-17');
INSERT INTO public.journal_details VALUES (18828, 14019, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (18829, 14019, 'attr', 'start_date', '2021-04-12', '2021-04-17');
INSERT INTO public.journal_details VALUES (18830, 14020, 'attr', 'due_date', NULL, '2021-04-16');
INSERT INTO public.journal_details VALUES (18831, 14020, 'attr', 'start_date', '2021-04-13', '2021-04-16');
INSERT INTO public.journal_details VALUES (18832, 14021, 'attr', 'due_date', NULL, '2021-04-14');
INSERT INTO public.journal_details VALUES (18833, 14021, 'attr', 'start_date', '2021-04-13', '2021-04-14');
INSERT INTO public.journal_details VALUES (18834, 14022, 'attr', 'due_date', NULL, '2021-04-15');
INSERT INTO public.journal_details VALUES (18835, 14022, 'attr', 'start_date', '2021-04-13', '2021-04-15');
INSERT INTO public.journal_details VALUES (18836, 14023, 'attr', 'due_date', NULL, '2021-04-14');
INSERT INTO public.journal_details VALUES (18837, 14023, 'attr', 'start_date', '2021-04-13', '2021-04-14');
INSERT INTO public.journal_details VALUES (18838, 14024, 'attr', 'due_date', NULL, '2021-04-16');
INSERT INTO public.journal_details VALUES (18839, 14024, 'attr', 'start_date', '2021-04-13', '2021-04-15');
INSERT INTO public.journal_details VALUES (18840, 14025, 'attr', 'due_date', NULL, '2021-04-16');
INSERT INTO public.journal_details VALUES (18841, 14025, 'attr', 'start_date', '2021-04-13', '2021-04-16');
INSERT INTO public.journal_details VALUES (18842, 14026, 'attr', 'due_date', NULL, '2021-04-16');
INSERT INTO public.journal_details VALUES (18843, 14026, 'attr', 'start_date', '2021-04-13', '2021-04-16');
INSERT INTO public.journal_details VALUES (18844, 14027, 'attr', 'due_date', NULL, '2021-04-17');
INSERT INTO public.journal_details VALUES (18846, 14028, 'attr', 'due_date', NULL, '2021-04-16');
INSERT INTO public.journal_details VALUES (18847, 14028, 'attr', 'start_date', '2021-04-13', '2021-04-16');
INSERT INTO public.journal_details VALUES (18848, 14029, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18849, 14030, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18850, 14031, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18851, 14032, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18852, 14033, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18853, 14034, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18854, 14035, 'attr', 'parent_id', NULL, '4147');
INSERT INTO public.journal_details VALUES (18855, 14036, 'attr', 'parent_id', NULL, '4147');
INSERT INTO public.journal_details VALUES (18856, 14037, 'attr', 'parent_id', NULL, '4147');
INSERT INTO public.journal_details VALUES (18857, 14038, 'attr', 'parent_id', NULL, '4147');
INSERT INTO public.journal_details VALUES (18858, 14039, 'attr', 'parent_id', NULL, '4147');
INSERT INTO public.journal_details VALUES (18859, 14040, 'attr', 'parent_id', NULL, '4147');
INSERT INTO public.journal_details VALUES (18860, 14041, 'attr', 'parent_id', NULL, '4147');
INSERT INTO public.journal_details VALUES (18861, 14042, 'attr', 'parent_id', NULL, '4147');
INSERT INTO public.journal_details VALUES (18862, 14043, 'attr', 'parent_id', NULL, '4147');
INSERT INTO public.journal_details VALUES (18863, 14044, 'attr', 'parent_id', NULL, '4147');
INSERT INTO public.journal_details VALUES (18866, 14047, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18867, 14047, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18868, 14048, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18869, 14049, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18870, 14050, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18871, 14051, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18872, 14052, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18873, 14053, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18874, 14054, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18875, 14055, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18876, 14056, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18877, 14056, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18878, 14057, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18879, 14058, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18880, 14059, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18881, 14060, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18882, 14061, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18883, 14062, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18884, 14063, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18885, 14064, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18886, 14065, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18887, 14066, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18888, 14067, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18889, 14068, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18890, 14069, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18891, 14070, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18892, 14071, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18893, 14072, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18894, 14073, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (18895, 14074, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18896, 14075, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18897, 14076, 'attr', 'category_id', NULL, '31');
INSERT INTO public.journal_details VALUES (18898, 14076, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18899, 14076, 'attr', 'fixed_version_id', NULL, '115');
INSERT INTO public.journal_details VALUES (18900, 14076, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18901, 14077, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18902, 14078, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18903, 14079, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18904, 14080, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (18905, 14081, 'attr', 'parent_id', NULL, '4159');
INSERT INTO public.journal_details VALUES (18906, 14082, 'attr', 'parent_id', NULL, '4159');
INSERT INTO public.journal_details VALUES (18907, 14083, 'attr', 'parent_id', NULL, '4159');
INSERT INTO public.journal_details VALUES (18908, 14084, 'attr', 'parent_id', NULL, '4161');
INSERT INTO public.journal_details VALUES (18909, 14085, 'attr', 'subject', 'Quản lý cán bộ', 'Quản lý danh sách  cán bộ');
INSERT INTO public.journal_details VALUES (18910, 14086, 'attr', 'subject', 'Quản lý danh sách  cán bộ', 'Quản lý danh sách nhân sự');
INSERT INTO public.journal_details VALUES (18911, 14087, 'attr', 'due_date', '2021-04-19', '2021-04-17');
INSERT INTO public.journal_details VALUES (18912, 14087, 'attr', 'start_date', '2021-04-19', '2021-04-16');
INSERT INTO public.journal_details VALUES (18913, 14088, 'attr', 'due_date', '2021-04-19', '2021-04-17');
INSERT INTO public.journal_details VALUES (18914, 14088, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18915, 14088, 'attr', 'start_date', '2021-04-19', '2021-04-16');
INSERT INTO public.journal_details VALUES (18916, 14089, 'attr', 'category_id', NULL, '31');
INSERT INTO public.journal_details VALUES (18917, 14089, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18918, 14090, 'attr', 'category_id', NULL, '31');
INSERT INTO public.journal_details VALUES (18919, 14091, 'attr', 'category_id', NULL, '31');
INSERT INTO public.journal_details VALUES (18920, 14091, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18921, 14092, 'attr', 'category_id', NULL, '31');
INSERT INTO public.journal_details VALUES (18922, 14092, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18923, 14093, 'attr', 'parent_id', NULL, '4159');
INSERT INTO public.journal_details VALUES (18924, 14094, 'attr', 'parent_id', NULL, '4159');
INSERT INTO public.journal_details VALUES (18925, 14095, 'attr', 'parent_id', NULL, '4159');
INSERT INTO public.journal_details VALUES (18926, 14096, 'attr', 'parent_id', NULL, '4159');
INSERT INTO public.journal_details VALUES (18927, 14097, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18928, 14098, 'attr', 'subject', 'Ở mjc bảng duyệt công chỉnh tiêu đều danh sách bảng chấm công thành danh sách bảng duyệt công', 'Ở mục bảng duyệt công chỉnh tiêu đều danh sách bảng chấm công thành danh sách bảng duyệt công');
INSERT INTO public.journal_details VALUES (18929, 14098, 'attr', 'assigned_to_id', '39', '8');
INSERT INTO public.journal_details VALUES (18930, 14099, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18931, 14100, 'attr', 'subject', 'Không thêm được bảng chấm công mới vào danh sách bảng chấm công', 'Không thêm được bảng chấm công của tháng khác vào danh sách bảng chấm công');
INSERT INTO public.journal_details VALUES (18932, 14101, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18933, 14102, 'attr', 'subject', 'Khi thay đổi thông tin chấm công, nhập lý do thay đổi bị giới hạn số lượng từ ngữ', 'Khi thay đổi thông tin chi tiết chấm công, nhập lý do thay đổi bị giới hạn số lượng từ ngữ');
INSERT INTO public.journal_details VALUES (18934, 14103, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18935, 14103, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18936, 14104, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18937, 14105, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18938, 14106, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18939, 14107, 'attr', 'parent_id', '4161', '4172');
INSERT INTO public.journal_details VALUES (18940, 14108, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18941, 14109, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18942, 14109, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18943, 14110, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18944, 14111, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18945, 14112, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18946, 14113, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18947, 14114, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18948, 14115, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18949, 14116, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18950, 14117, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18951, 14118, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18952, 14119, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18953, 14120, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18954, 14121, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18956, 14123, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18957, 14124, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18958, 14125, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18959, 14126, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18960, 14127, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18961, 14128, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18962, 14129, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18963, 14130, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18964, 14131, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18965, 14132, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18966, 14133, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18967, 14134, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18968, 14135, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18969, 14136, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18970, 14137, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18971, 14138, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (18972, 14139, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18973, 14139, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18974, 14140, 'attr', 'subject', '35 Hiện trạng sử dụng đất Quận Ô Môn 2014', '36 Hiện trạng sử dụng đất Quận Ô Môn 2014');
INSERT INTO public.journal_details VALUES (18975, 14140, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18976, 14141, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18977, 14142, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18978, 14143, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18979, 14144, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18980, 14145, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (18981, 14146, 'attr', 'subject', '37 Hiện trạng sử dụng đất Huyện Thới Lai 2013', '38 Hiện trạng sử dụng đất Huyện Thới Lai 2013');
INSERT INTO public.journal_details VALUES (18982, 14146, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18983, 14147, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18984, 14148, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18985, 14149, 'attr', 'fixed_version_id', '33', '118');
INSERT INTO public.journal_details VALUES (18986, 14150, 'attr', 'fixed_version_id', '33', '118');
INSERT INTO public.journal_details VALUES (18987, 14151, 'attr', 'fixed_version_id', '33', '118');
INSERT INTO public.journal_details VALUES (18988, 14152, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18989, 14153, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18990, 14154, 'attr', 'assigned_to_id', '39', '8');
INSERT INTO public.journal_details VALUES (18991, 14155, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (18992, 14156, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (18993, 14156, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18994, 14157, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (18995, 14158, 'attr', 'subject', 'In phiếu thu hiển thị sai số tiền viết bằng chữ', 'In phiếu thu hiển thị sai số tiền viết bằng chữ khi giá trị hơn 1 tỷ đồng');
INSERT INTO public.journal_details VALUES (18996, 14159, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18997, 14160, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18998, 14161, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (18999, 14162, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19000, 14163, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19001, 14164, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19002, 14165, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19003, 14166, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19004, 14167, 'attr', 'subject', 'Phần báo cáo doanh thu thêm cột tên nhân viên để biết được nhân viên nào? doanh thu bao nhiêu?', 'Trong báo cáo báo cáo doanh thu thêm cột tên nhân viên, thời gian làm việc để biết được nhân viên nào? làm thời gian nào? doanh thu bao nhiêu?');
INSERT INTO public.journal_details VALUES (19005, 14168, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19006, 14169, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19007, 14170, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19008, 14171, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19009, 14172, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19010, 14172, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (19011, 14172, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19012, 14173, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (19013, 14174, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (19014, 14175, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (19015, 14176, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (19016, 14177, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (19017, 14178, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (19018, 14179, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (19019, 14180, 'attr', 'fixed_version_id', '118', '120');
INSERT INTO public.journal_details VALUES (19020, 14181, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19021, 14182, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19022, 14183, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19023, 14184, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19024, 14185, 'attr', 'due_date', NULL, '2021-05-10');
INSERT INTO public.journal_details VALUES (19025, 14185, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (19026, 14185, 'attr', 'fixed_version_id', NULL, '119');
INSERT INTO public.journal_details VALUES (19027, 14186, 'attr', 'assigned_to_id', '41', '39');
INSERT INTO public.journal_details VALUES (19028, 14187, 'attr', 'fixed_version_id', '119', '121');
INSERT INTO public.journal_details VALUES (19029, 14188, 'attr', 'fixed_version_id', '119', '121');
INSERT INTO public.journal_details VALUES (19030, 14189, 'attr', 'fixed_version_id', '119', '121');
INSERT INTO public.journal_details VALUES (19031, 14190, 'attr', 'fixed_version_id', '119', '121');
INSERT INTO public.journal_details VALUES (19032, 14191, 'attr', 'fixed_version_id', '119', '121');
INSERT INTO public.journal_details VALUES (19033, 14192, 'attr', 'due_date', '2021-05-07', '2021-05-10');
INSERT INTO public.journal_details VALUES (19034, 14192, 'attr', 'start_date', '2021-05-07', '2021-05-10');
INSERT INTO public.journal_details VALUES (19035, 14193, 'attr', 'fixed_version_id', '118', '120');
INSERT INTO public.journal_details VALUES (19036, 14194, 'attr', 'fixed_version_id', '118', '120');
INSERT INTO public.journal_details VALUES (19037, 14195, 'attr', 'fixed_version_id', '118', '120');
INSERT INTO public.journal_details VALUES (19038, 14196, 'attr', 'fixed_version_id', '118', '120');
INSERT INTO public.journal_details VALUES (19039, 14197, 'attr', 'fixed_version_id', '118', '120');
INSERT INTO public.journal_details VALUES (19040, 14198, 'attr', 'fixed_version_id', '118', '120');
INSERT INTO public.journal_details VALUES (19041, 14199, 'attr', 'fixed_version_id', '118', '120');
INSERT INTO public.journal_details VALUES (19042, 14200, 'attr', 'fixed_version_id', '118', '120');
INSERT INTO public.journal_details VALUES (19043, 14201, 'attr', 'fixed_version_id', '118', '120');
INSERT INTO public.journal_details VALUES (19044, 14202, 'attr', 'fixed_version_id', '118', '120');
INSERT INTO public.journal_details VALUES (19045, 14203, 'attr', 'due_date', '2021-05-03', '2021-05-10');
INSERT INTO public.journal_details VALUES (19046, 14203, 'attr', 'start_date', '2021-05-03', '2021-05-10');
INSERT INTO public.journal_details VALUES (19047, 14204, 'attr', 'due_date', '2021-05-04', '2021-05-10');
INSERT INTO public.journal_details VALUES (19048, 14204, 'attr', 'start_date', '2021-05-04', '2021-05-10');
INSERT INTO public.journal_details VALUES (19049, 14205, 'attr', 'due_date', '2021-05-05', '2021-05-10');
INSERT INTO public.journal_details VALUES (19050, 14205, 'attr', 'start_date', '2021-05-05', '2021-05-10');
INSERT INTO public.journal_details VALUES (19051, 14206, 'attr', 'due_date', '2021-05-05', '2021-05-10');
INSERT INTO public.journal_details VALUES (19052, 14206, 'attr', 'start_date', '2021-05-05', '2021-05-10');
INSERT INTO public.journal_details VALUES (19053, 14207, 'attr', 'due_date', '2021-05-06', '2021-05-10');
INSERT INTO public.journal_details VALUES (19054, 14207, 'attr', 'start_date', '2021-05-06', '2021-05-10');
INSERT INTO public.journal_details VALUES (19055, 14208, 'attr', 'due_date', '2021-05-06', '2021-05-10');
INSERT INTO public.journal_details VALUES (19056, 14208, 'attr', 'start_date', '2021-05-06', '2021-05-10');
INSERT INTO public.journal_details VALUES (19057, 14209, 'attr', 'due_date', '2021-05-07', '2021-05-10');
INSERT INTO public.journal_details VALUES (19058, 14209, 'attr', 'start_date', '2021-05-07', '2021-05-10');
INSERT INTO public.journal_details VALUES (19059, 14210, 'attr', 'due_date', '2021-05-07', '2021-05-10');
INSERT INTO public.journal_details VALUES (19060, 14210, 'attr', 'start_date', '2021-05-07', '2021-05-10');
INSERT INTO public.journal_details VALUES (19061, 14211, 'attr', 'due_date', '2021-05-07', '2021-05-10');
INSERT INTO public.journal_details VALUES (19062, 14211, 'attr', 'start_date', '2021-05-07', '2021-05-10');
INSERT INTO public.journal_details VALUES (19063, 14212, 'attr', 'due_date', '2021-05-07', '2021-05-10');
INSERT INTO public.journal_details VALUES (19064, 14212, 'attr', 'start_date', '2021-05-07', '2021-05-10');
INSERT INTO public.journal_details VALUES (19065, 14213, 'attr', 'subject', 'In phiếu thu hiển thị sai số tiền viết bằng chữ khi giá trị hơn 1 tỷ đồng', 'In phiếu thu chi hiển thị sai số tiền viết bằng chữ khi giá trị hơn 1 tỷ đồng');
INSERT INTO public.journal_details VALUES (19066, 14214, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19067, 14215, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19068, 14216, 'attr', 'fixed_version_id', '120', '122');
INSERT INTO public.journal_details VALUES (19069, 14217, 'attr', 'fixed_version_id', '120', '122');
INSERT INTO public.journal_details VALUES (19070, 14218, 'attr', 'fixed_version_id', '120', '122');
INSERT INTO public.journal_details VALUES (19071, 14219, 'attr', 'fixed_version_id', '120', '122');
INSERT INTO public.journal_details VALUES (19072, 14220, 'attr', 'fixed_version_id', '120', '122');
INSERT INTO public.journal_details VALUES (19073, 14221, 'attr', 'fixed_version_id', '120', '122');
INSERT INTO public.journal_details VALUES (19074, 14222, 'attr', 'fixed_version_id', '120', '122');
INSERT INTO public.journal_details VALUES (19075, 14223, 'attr', 'fixed_version_id', '120', '122');
INSERT INTO public.journal_details VALUES (19076, 14224, 'attr', 'fixed_version_id', '120', '122');
INSERT INTO public.journal_details VALUES (19077, 14225, 'attr', 'fixed_version_id', '120', '122');
INSERT INTO public.journal_details VALUES (19078, 14226, 'attr', 'assigned_to_id', '41', '39');
INSERT INTO public.journal_details VALUES (19079, 14227, 'attr', 'fixed_version_id', '122', '120');
INSERT INTO public.journal_details VALUES (19080, 14228, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (19081, 14229, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19082, 14230, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19083, 14231, 'attr', 'assigned_to_id', '39', '41');
INSERT INTO public.journal_details VALUES (19084, 14232, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19085, 14233, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19086, 14234, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19087, 14234, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19088, 14235, 'attr', 'subject', 'Xuất đơn hàng', ' Xuất đơn hàng ');
INSERT INTO public.journal_details VALUES (19089, 14235, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19090, 14235, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19091, 14236, 'attr', 'fixed_version_id', NULL, '121');
INSERT INTO public.journal_details VALUES (19092, 14237, 'attr', 'due_date', '2021-05-10', '2021-05-15');
INSERT INTO public.journal_details VALUES (19093, 14237, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (19094, 14238, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19095, 14238, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19096, 14239, 'attr', 'fixed_version_id', '113', '123');
INSERT INTO public.journal_details VALUES (19097, 14240, 'attr', 'fixed_version_id', '113', '123');
INSERT INTO public.journal_details VALUES (19098, 14241, 'attr', 'fixed_version_id', '113', '123');
INSERT INTO public.journal_details VALUES (19099, 14242, 'attr', 'fixed_version_id', '113', '123');
INSERT INTO public.journal_details VALUES (19100, 14243, 'attr', 'fixed_version_id', '113', '123');
INSERT INTO public.journal_details VALUES (19101, 14244, 'attr', 'fixed_version_id', '113', '123');
INSERT INTO public.journal_details VALUES (19102, 14245, 'attr', 'fixed_version_id', '117', '123');
INSERT INTO public.journal_details VALUES (19103, 14246, 'attr', 'fixed_version_id', '117', '123');
INSERT INTO public.journal_details VALUES (19104, 14247, 'attr', 'fixed_version_id', NULL, '123');
INSERT INTO public.journal_details VALUES (19105, 14248, 'attr', 'fixed_version_id', '117', '123');
INSERT INTO public.journal_details VALUES (19106, 14249, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (19107, 14250, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19108, 14251, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19109, 14252, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19110, 14253, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19111, 14254, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19112, 14255, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19113, 14256, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19114, 14257, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19115, 14258, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19116, 14259, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19117, 14260, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19118, 14261, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19119, 14262, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19120, 14263, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19121, 14264, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19122, 14265, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19123, 14266, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19124, 14267, 'attr', 'subject', 'Trong giao diện chỉnh sửa phiếu thu, chỉnh tiêu đều liên hệ, ngày tạo', 'Trong giao diện chỉnh sửa phiếu thu, chỉnh tiêu đều liên hệ, ngày tạo, loại thu chi ');
INSERT INTO public.journal_details VALUES (19125, 14268, 'attr', 'subject', 'Trong giao diện chỉnh sửa phiếu thu, chỉnh tiêu đều liên hệ, ngày tạo, loại thu chi ', 'Trong giao diện chỉnh sửa phiếu thu, chỉnh tiêu đề liên hệ, ngày tạo, loại thu chi ');
INSERT INTO public.journal_details VALUES (19126, 14269, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (19127, 14270, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (19128, 14271, 'attr', 'subject', 'Không thể hủy đơn hàng', 'Không thực hiện được chức năng hủy đơn hàng');
INSERT INTO public.journal_details VALUES (19129, 14272, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (19130, 14273, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19131, 14274, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19132, 14275, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19133, 14276, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19134, 14277, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19135, 14278, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19136, 14279, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19137, 14280, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19138, 14281, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19139, 14282, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19140, 14283, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19141, 14284, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19142, 14285, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19143, 14286, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (19144, 14287, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19145, 14288, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19146, 14289, 'attr', 'due_date', '2021-05-10', '2021-05-17');
INSERT INTO public.journal_details VALUES (19147, 14289, 'attr', 'start_date', '2021-05-10', '2021-05-17');
INSERT INTO public.journal_details VALUES (19148, 14290, 'attr', 'due_date', '2021-05-10', '2021-05-17');
INSERT INTO public.journal_details VALUES (19149, 14290, 'attr', 'start_date', '2021-05-10', '2021-05-17');
INSERT INTO public.journal_details VALUES (19150, 14291, 'attr', 'due_date', '2021-05-10', '2021-05-17');
INSERT INTO public.journal_details VALUES (19151, 14291, 'attr', 'start_date', '2021-05-10', '2021-05-17');
INSERT INTO public.journal_details VALUES (19152, 14292, 'attr', 'due_date', '2021-05-10', '2021-05-17');
INSERT INTO public.journal_details VALUES (19153, 14292, 'attr', 'start_date', '2021-05-10', '2021-05-17');
INSERT INTO public.journal_details VALUES (19154, 14293, 'attr', 'due_date', '2021-05-10', '2021-05-17');
INSERT INTO public.journal_details VALUES (19155, 14293, 'attr', 'start_date', '2021-05-10', '2021-05-17');
INSERT INTO public.journal_details VALUES (19156, 14294, 'attr', 'due_date', '2021-05-10', '2021-05-17');
INSERT INTO public.journal_details VALUES (19157, 14294, 'attr', 'start_date', '2021-05-10', '2021-05-17');
INSERT INTO public.journal_details VALUES (19158, 14295, 'attr', 'due_date', '2021-05-10', '2021-05-17');
INSERT INTO public.journal_details VALUES (19159, 14295, 'attr', 'start_date', '2021-05-10', '2021-05-17');
INSERT INTO public.journal_details VALUES (19160, 14296, 'attr', 'due_date', '2021-05-10', '2021-05-17');
INSERT INTO public.journal_details VALUES (19161, 14296, 'attr', 'start_date', '2021-05-10', '2021-05-17');
INSERT INTO public.journal_details VALUES (19162, 14297, 'attr', 'due_date', '2021-05-10', '2021-05-17');
INSERT INTO public.journal_details VALUES (19163, 14297, 'attr', 'start_date', '2021-05-10', '2021-05-17');
INSERT INTO public.journal_details VALUES (19164, 14298, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19165, 14298, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19166, 14299, 'attr', 'start_date', '2021-05-15', '2021-05-10');
INSERT INTO public.journal_details VALUES (19167, 14300, 'attr', 'start_date', '2021-05-15', '2021-05-10');
INSERT INTO public.journal_details VALUES (19168, 14301, 'attr', 'due_date', NULL, '2021-05-17');
INSERT INTO public.journal_details VALUES (19169, 14302, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (19171, 14304, 'attr', 'due_date', '2021-05-28', '2021-05-29');
INSERT INTO public.journal_details VALUES (19172, 14304, 'attr', 'start_date', '2021-05-27', '2021-05-28');
INSERT INTO public.journal_details VALUES (19173, 14305, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (19174, 14305, 'attr', 'fixed_version_id', NULL, '125');
INSERT INTO public.journal_details VALUES (19175, 14306, 'attr', 'subject', 'Báo cáo', 'API: Báo cáo');
INSERT INTO public.journal_details VALUES (19176, 14306, 'attr', 'due_date', NULL, '2021-05-27');
INSERT INTO public.journal_details VALUES (19177, 14306, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (19178, 14306, 'attr', 'fixed_version_id', NULL, '126');
INSERT INTO public.journal_details VALUES (19179, 14306, 'attr', 'estimated_hours', NULL, '8.0');
INSERT INTO public.journal_details VALUES (19183, 14309, 'attr', 'start_date', '2021-05-27', '2021-05-28');
INSERT INTO public.journal_details VALUES (19184, 14310, 'attr', 'start_date', '2021-05-28', '2021-05-29');
INSERT INTO public.journal_details VALUES (19185, 14311, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (19187, 14313, 'attr', 'fixed_version_id', NULL, '127');
INSERT INTO public.journal_details VALUES (19188, 14314, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (19191, 14316, 'attr', 'due_date', '2021-05-20', '2021-05-21');
INSERT INTO public.journal_details VALUES (19192, 14316, 'attr', 'estimated_hours', '8.0', '16.0');
INSERT INTO public.journal_details VALUES (19204, 14328, 'attr', 'due_date', '2021-04-16', '2021-05-10');
INSERT INTO public.journal_details VALUES (19205, 14328, 'attr', 'start_date', '2021-04-16', '2021-05-10');
INSERT INTO public.journal_details VALUES (19206, 14329, 'attr', 'due_date', '2021-04-17', '2021-05-10');
INSERT INTO public.journal_details VALUES (19207, 14329, 'attr', 'start_date', '2021-04-17', '2021-05-10');
INSERT INTO public.journal_details VALUES (19208, 14330, 'attr', 'due_date', '2021-04-20', '2021-05-10');
INSERT INTO public.journal_details VALUES (19209, 14330, 'attr', 'start_date', '2021-04-20', '2021-05-10');
INSERT INTO public.journal_details VALUES (19210, 14331, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19211, 14332, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19212, 14333, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (19213, 14334, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (19214, 14335, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19215, 14336, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (19216, 14337, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19217, 14338, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19218, 14339, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19219, 14340, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19220, 14341, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19221, 14342, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19222, 14343, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19223, 14344, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19224, 14345, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19225, 14345, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19226, 14346, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19227, 14347, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19228, 14348, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19229, 14349, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19230, 14350, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19231, 14351, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19232, 14352, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19233, 14353, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19234, 14354, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19235, 14355, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19236, 14356, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19237, 14357, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19238, 14358, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19239, 14358, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19240, 14359, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19241, 14359, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19242, 14360, 'attr', 'due_date', '2021-05-15', '2021-05-19');
INSERT INTO public.journal_details VALUES (19243, 14360, 'attr', 'fixed_version_id', '123', '131');
INSERT INTO public.journal_details VALUES (19244, 14360, 'attr', 'start_date', '2021-05-15', '2021-05-19');
INSERT INTO public.journal_details VALUES (19245, 14361, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19246, 14361, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19247, 14362, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19248, 14362, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19249, 14363, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19250, 14363, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19251, 14364, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (19252, 14364, 'attr', 'done_ratio', '0', '70');
INSERT INTO public.journal_details VALUES (19253, 14365, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19254, 14365, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19255, 14366, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19256, 14366, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19257, 14367, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19258, 14367, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19259, 14368, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (19260, 14369, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19261, 14370, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (19262, 14371, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19263, 14372, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19264, 14373, 'attr', 'fixed_version_id', '105', '132');
INSERT INTO public.journal_details VALUES (19265, 14374, 'attr', 'fixed_version_id', '105', '132');
INSERT INTO public.journal_details VALUES (19266, 14375, 'attr', 'fixed_version_id', '105', '132');
INSERT INTO public.journal_details VALUES (19267, 14376, 'attr', 'fixed_version_id', '105', '132');
INSERT INTO public.journal_details VALUES (19268, 14377, 'attr', 'fixed_version_id', '105', '132');
INSERT INTO public.journal_details VALUES (19269, 14378, 'attr', 'fixed_version_id', '105', '132');
INSERT INTO public.journal_details VALUES (19270, 14379, 'attr', 'fixed_version_id', '105', '132');
INSERT INTO public.journal_details VALUES (19271, 14380, 'attr', 'fixed_version_id', '105', '132');
INSERT INTO public.journal_details VALUES (19272, 14381, 'attr', 'fixed_version_id', '105', '132');
INSERT INTO public.journal_details VALUES (19273, 14382, 'attr', 'fixed_version_id', '105', '132');
INSERT INTO public.journal_details VALUES (19274, 14383, 'attr', 'fixed_version_id', '105', '132');
INSERT INTO public.journal_details VALUES (19275, 14384, 'attr', 'fixed_version_id', '105', '132');
INSERT INTO public.journal_details VALUES (19276, 14385, 'attr', 'fixed_version_id', '105', '132');
INSERT INTO public.journal_details VALUES (19277, 14386, 'attr', 'fixed_version_id', '105', '132');
INSERT INTO public.journal_details VALUES (19278, 14387, 'attr', 'fixed_version_id', '105', '132');
INSERT INTO public.journal_details VALUES (19279, 14388, 'attr', 'fixed_version_id', '105', '132');
INSERT INTO public.journal_details VALUES (19280, 14389, 'attr', 'fixed_version_id', '105', '132');
INSERT INTO public.journal_details VALUES (19281, 14390, 'attr', 'fixed_version_id', '105', '132');
INSERT INTO public.journal_details VALUES (19282, 14391, 'attr', 'fixed_version_id', '105', '132');
INSERT INTO public.journal_details VALUES (19283, 14392, 'attr', 'fixed_version_id', '105', '132');
INSERT INTO public.journal_details VALUES (19284, 14393, 'attr', 'fixed_version_id', '111', '132');
INSERT INTO public.journal_details VALUES (19285, 14394, 'attr', 'fixed_version_id', '111', '132');
INSERT INTO public.journal_details VALUES (19286, 14395, 'attr', 'fixed_version_id', '111', '132');
INSERT INTO public.journal_details VALUES (19287, 14396, 'attr', 'fixed_version_id', '111', '132');
INSERT INTO public.journal_details VALUES (19288, 14397, 'attr', 'fixed_version_id', '111', '132');
INSERT INTO public.journal_details VALUES (19289, 14398, 'attr', 'fixed_version_id', '111', '132');
INSERT INTO public.journal_details VALUES (19290, 14399, 'attr', 'fixed_version_id', '111', '132');
INSERT INTO public.journal_details VALUES (19291, 14400, 'attr', 'fixed_version_id', '111', '132');
INSERT INTO public.journal_details VALUES (19292, 14401, 'attr', 'fixed_version_id', '111', '132');
INSERT INTO public.journal_details VALUES (19293, 14402, 'attr', 'fixed_version_id', '111', '132');
INSERT INTO public.journal_details VALUES (19294, 14403, 'attr', 'fixed_version_id', '111', '132');
INSERT INTO public.journal_details VALUES (19295, 14404, 'attr', 'fixed_version_id', '111', '132');
INSERT INTO public.journal_details VALUES (19296, 14405, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19297, 14406, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19298, 14407, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19299, 14408, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19300, 14409, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19301, 14410, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19302, 14411, 'attr', 'assigned_to_id', '38', '8');
INSERT INTO public.journal_details VALUES (19303, 14412, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19304, 14413, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19305, 14414, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19306, 14415, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19307, 14416, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19308, 14417, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19309, 14418, 'attr', 'subject', 'điều 15 mẫu 2.1 không nhập được danh mục khi không có mã hàng hóa', 'điều 15 mẫu 2.1, 2.2, 2.3, 2.4 không nhập được danh mục khi không có mã hàng hóa');
INSERT INTO public.journal_details VALUES (19310, 14419, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19311, 14420, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19312, 14421, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19313, 14422, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19314, 14423, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (19315, 14424, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (19316, 14425, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (19317, 14426, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (19318, 14427, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (19319, 14428, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (19320, 14429, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (19321, 14430, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (19322, 14431, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (19323, 14432, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (19324, 14433, 'attr', 'assigned_to_id', '8', '39');
INSERT INTO public.journal_details VALUES (19325, 14434, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19326, 14435, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19327, 14436, 'attr', 'subject', 'Điều 24 mẫu 01D - Sai dữ liệu hiển thị của cột 15', 'Điều 24 mẫu 01D - Thêm thành công nhưng dữ liệu không trả về để hiện thị');
INSERT INTO public.journal_details VALUES (19328, 14436, 'attr', 'assigned_to_id', '39', '38');
INSERT INTO public.journal_details VALUES (19329, 14437, 'attr', 'subject', 'Điều 25 - Khi nhập dữ liệu thì cột 9 (giá trị tr.đ) không hiển thị giá trị', 'Điều 25 - Thêm thành công nhưng giá trị trả về để hiển thị không đủ (Cột 9)');
INSERT INTO public.journal_details VALUES (19330, 14437, 'attr', 'assigned_to_id', '39', '38');
INSERT INTO public.journal_details VALUES (19331, 14438, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19332, 14439, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19333, 14440, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19334, 14441, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19335, 14442, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19336, 14442, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19337, 14443, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19338, 14444, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19339, 14445, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19340, 14446, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19341, 14447, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19342, 14448, 'attr', 'due_date', '2021-03-29', '2021-05-20');
INSERT INTO public.journal_details VALUES (19343, 14448, 'attr', 'start_date', '2021-03-29', '2021-05-20');
INSERT INTO public.journal_details VALUES (19344, 14449, 'attr', 'due_date', '2021-03-31', '2021-05-20');
INSERT INTO public.journal_details VALUES (19345, 14449, 'attr', 'start_date', '2021-03-31', '2021-05-20');
INSERT INTO public.journal_details VALUES (19346, 14450, 'attr', 'due_date', '2021-03-31', '2021-05-20');
INSERT INTO public.journal_details VALUES (19347, 14450, 'attr', 'start_date', '2021-03-31', '2021-05-20');
INSERT INTO public.journal_details VALUES (19348, 14451, 'attr', 'due_date', '2021-04-01', '2021-05-20');
INSERT INTO public.journal_details VALUES (19349, 14451, 'attr', 'start_date', '2021-04-01', '2021-05-20');
INSERT INTO public.journal_details VALUES (19350, 14452, 'attr', 'due_date', '2021-04-06', '2021-05-20');
INSERT INTO public.journal_details VALUES (19351, 14452, 'attr', 'start_date', '2021-04-06', '2021-05-20');
INSERT INTO public.journal_details VALUES (19352, 14453, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19353, 14454, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19354, 14455, 'attr', 'subject', 'In danh sách đơn vị trễ hạn báo cáo', 'In danh sách đơn vị trễ hạn báo cáo (Chưa api)');
INSERT INTO public.journal_details VALUES (19355, 14456, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19356, 14457, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19357, 14458, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (19358, 14459, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19359, 14460, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19360, 14461, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19361, 14462, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19362, 14463, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19363, 14464, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19364, 14465, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19365, 14466, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19366, 14467, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19367, 14468, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19368, 14469, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19369, 14470, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19370, 14471, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19371, 14472, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19372, 14473, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19373, 14474, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19374, 14475, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19375, 14475, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19376, 14476, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19377, 14477, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19378, 14478, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19379, 14479, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19380, 14480, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19381, 14481, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19382, 14482, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19383, 14483, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19384, 14484, 'attr', 'due_date', '2021-05-20', '2021-05-24');
INSERT INTO public.journal_details VALUES (19385, 14484, 'attr', 'start_date', '2021-05-20', '2021-05-24');
INSERT INTO public.journal_details VALUES (19386, 14485, 'attr', 'due_date', '2021-05-19', '2021-05-24');
INSERT INTO public.journal_details VALUES (19387, 14485, 'attr', 'start_date', '2021-05-19', '2021-05-24');
INSERT INTO public.journal_details VALUES (19388, 14486, 'attr', 'due_date', '2021-05-19', '2021-05-24');
INSERT INTO public.journal_details VALUES (19389, 14486, 'attr', 'start_date', '2021-05-19', '2021-05-24');
INSERT INTO public.journal_details VALUES (19390, 14487, 'attr', 'due_date', '2021-05-19', '2021-05-24');
INSERT INTO public.journal_details VALUES (19391, 14487, 'attr', 'start_date', '2021-05-19', '2021-05-24');
INSERT INTO public.journal_details VALUES (19392, 14488, 'attr', 'due_date', '2021-05-19', '2021-05-24');
INSERT INTO public.journal_details VALUES (19393, 14488, 'attr', 'start_date', '2021-05-19', '2021-05-24');
INSERT INTO public.journal_details VALUES (19394, 14489, 'attr', 'due_date', '2021-05-21', '2021-05-24');
INSERT INTO public.journal_details VALUES (19395, 14489, 'attr', 'start_date', '2021-05-21', '2021-05-24');
INSERT INTO public.journal_details VALUES (19396, 14490, 'attr', 'assigned_to_id', '13', '39');
INSERT INTO public.journal_details VALUES (19397, 14491, 'attr', 'assigned_to_id', '13', '39');
INSERT INTO public.journal_details VALUES (19398, 14492, 'attr', 'assigned_to_id', '13', '39');
INSERT INTO public.journal_details VALUES (19399, 14493, 'attr', 'assigned_to_id', '13', '39');
INSERT INTO public.journal_details VALUES (19400, 14494, 'attr', 'assigned_to_id', '13', '39');
INSERT INTO public.journal_details VALUES (19401, 14495, 'attr', 'assigned_to_id', '13', '39');
INSERT INTO public.journal_details VALUES (19402, 14496, 'attr', 'assigned_to_id', '13', '39');
INSERT INTO public.journal_details VALUES (19403, 14497, 'attr', 'assigned_to_id', '13', '39');
INSERT INTO public.journal_details VALUES (19404, 14498, 'attr', 'assigned_to_id', '13', '39');
INSERT INTO public.journal_details VALUES (19405, 14499, 'attr', 'assigned_to_id', '13', '39');
INSERT INTO public.journal_details VALUES (19406, 14500, 'attr', 'assigned_to_id', '13', '39');
INSERT INTO public.journal_details VALUES (19407, 14501, 'attr', 'due_date', '2021-03-29', '2021-05-24');
INSERT INTO public.journal_details VALUES (19408, 14501, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19409, 14501, 'attr', 'start_date', '2021-03-29', '2021-05-24');
INSERT INTO public.journal_details VALUES (19410, 14502, 'attr', 'due_date', '2021-03-29', '2021-05-24');
INSERT INTO public.journal_details VALUES (19411, 14502, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19412, 14502, 'attr', 'start_date', '2021-03-29', '2021-05-24');
INSERT INTO public.journal_details VALUES (19413, 14503, 'attr', 'due_date', '2021-03-30', '2021-05-24');
INSERT INTO public.journal_details VALUES (19414, 14503, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19415, 14503, 'attr', 'start_date', '2021-03-30', '2021-05-24');
INSERT INTO public.journal_details VALUES (19416, 14504, 'attr', 'due_date', '2021-03-30', '2021-05-24');
INSERT INTO public.journal_details VALUES (19417, 14504, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19418, 14504, 'attr', 'start_date', '2021-03-30', '2021-05-24');
INSERT INTO public.journal_details VALUES (19419, 14505, 'attr', 'due_date', '2021-03-30', '2021-05-24');
INSERT INTO public.journal_details VALUES (19420, 14505, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19421, 14505, 'attr', 'start_date', '2021-03-30', '2021-05-24');
INSERT INTO public.journal_details VALUES (19422, 14506, 'attr', 'due_date', '2021-04-05', '2021-05-24');
INSERT INTO public.journal_details VALUES (19423, 14506, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19424, 14506, 'attr', 'start_date', '2021-04-05', '2021-05-24');
INSERT INTO public.journal_details VALUES (19425, 14507, 'attr', 'due_date', '2021-04-05', '2021-05-24');
INSERT INTO public.journal_details VALUES (19426, 14507, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19427, 14507, 'attr', 'start_date', '2021-04-05', '2021-05-24');
INSERT INTO public.journal_details VALUES (19428, 14508, 'attr', 'due_date', '2021-04-06', '2021-05-24');
INSERT INTO public.journal_details VALUES (19429, 14508, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19430, 14508, 'attr', 'start_date', '2021-04-06', '2021-05-24');
INSERT INTO public.journal_details VALUES (19431, 14509, 'attr', 'due_date', '2021-04-10', '2021-05-24');
INSERT INTO public.journal_details VALUES (19432, 14509, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19433, 14509, 'attr', 'start_date', '2021-04-10', '2021-05-24');
INSERT INTO public.journal_details VALUES (19434, 14510, 'attr', 'due_date', '2021-04-10', '2021-05-24');
INSERT INTO public.journal_details VALUES (19435, 14510, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19436, 14510, 'attr', 'start_date', '2021-04-10', '2021-05-24');
INSERT INTO public.journal_details VALUES (19437, 14511, 'attr', 'assigned_to_id', '41', '38');
INSERT INTO public.journal_details VALUES (19438, 14512, 'attr', 'assigned_to_id', '41', '38');
INSERT INTO public.journal_details VALUES (19439, 14513, 'attr', 'assigned_to_id', '41', '38');
INSERT INTO public.journal_details VALUES (19440, 14514, 'attr', 'assigned_to_id', '41', '38');
INSERT INTO public.journal_details VALUES (19441, 14515, 'attr', 'assigned_to_id', '41', '38');
INSERT INTO public.journal_details VALUES (19442, 14516, 'attr', 'assigned_to_id', '41', '38');
INSERT INTO public.journal_details VALUES (19443, 14517, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (19444, 14518, 'attr', 'assigned_to_id', '17', '39');
INSERT INTO public.journal_details VALUES (19445, 14519, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19446, 14520, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19447, 14521, 'attr', 'due_date', '2021-04-12', '2021-05-24');
INSERT INTO public.journal_details VALUES (19448, 14521, 'attr', 'start_date', '2021-04-12', '2021-05-24');
INSERT INTO public.journal_details VALUES (19449, 14522, 'attr', 'due_date', '2021-05-17', '2021-05-24');
INSERT INTO public.journal_details VALUES (19450, 14522, 'attr', 'start_date', '2021-05-17', '2021-05-24');
INSERT INTO public.journal_details VALUES (19451, 14523, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19452, 14524, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19453, 14525, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19454, 14526, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19455, 14527, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19456, 14528, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19457, 14529, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19458, 14530, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19459, 14531, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19460, 14532, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19461, 14533, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19462, 14534, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19463, 14535, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (19464, 14536, 'attr', 'done_ratio', '90', '70');
INSERT INTO public.journal_details VALUES (19465, 14537, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (19466, 14538, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19467, 14539, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19468, 14540, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19469, 14540, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19470, 14541, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19471, 14542, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19472, 14543, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19473, 14544, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19474, 14545, 'attr', 'assigned_to_id', '39', '38');
INSERT INTO public.journal_details VALUES (19475, 14546, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19476, 14546, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19477, 14547, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19478, 14547, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19479, 14548, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19480, 14548, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19481, 14549, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19482, 14549, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19483, 14550, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19484, 14550, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19485, 14551, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19486, 14552, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19487, 14553, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19488, 14554, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19489, 14555, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19490, 14556, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19491, 14557, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19492, 14558, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19493, 14559, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19494, 14560, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19495, 14561, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19496, 14562, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19497, 14563, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19498, 14564, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19499, 14565, 'attr', 'fixed_version_id', '132', '133');
INSERT INTO public.journal_details VALUES (19500, 14566, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19501, 14567, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19502, 14568, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19503, 14569, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19504, 14570, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19505, 14571, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19506, 14572, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19507, 14572, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19508, 14573, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19509, 14573, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19510, 14574, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19511, 14574, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19512, 14575, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19513, 14576, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19514, 14577, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19515, 14578, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19516, 14579, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19517, 14580, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19518, 14581, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19519, 14582, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19520, 14583, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19521, 14584, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19522, 14585, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19523, 14586, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19524, 14587, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19525, 14588, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19526, 14589, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19527, 14590, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19528, 14591, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19529, 14592, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19530, 14593, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19531, 14594, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19532, 14595, 'attr', 'due_date', '2021-03-29', '2021-05-24');
INSERT INTO public.journal_details VALUES (19533, 14595, 'attr', 'start_date', '2021-03-29', '2021-05-24');
INSERT INTO public.journal_details VALUES (19534, 14596, 'attr', 'due_date', '2021-03-29', '2021-05-24');
INSERT INTO public.journal_details VALUES (19535, 14596, 'attr', 'start_date', '2021-03-29', '2021-05-24');
INSERT INTO public.journal_details VALUES (19536, 14597, 'attr', 'due_date', '2021-03-29', '2021-05-24');
INSERT INTO public.journal_details VALUES (19537, 14597, 'attr', 'start_date', '2021-03-29', '2021-05-24');
INSERT INTO public.journal_details VALUES (19538, 14598, 'attr', 'due_date', '2021-03-29', '2021-05-24');
INSERT INTO public.journal_details VALUES (19539, 14598, 'attr', 'start_date', '2021-03-29', '2021-05-24');
INSERT INTO public.journal_details VALUES (19540, 14599, 'attr', 'due_date', '2021-03-29', '2021-05-24');
INSERT INTO public.journal_details VALUES (19541, 14599, 'attr', 'start_date', '2021-03-29', '2021-05-24');
INSERT INTO public.journal_details VALUES (19542, 14600, 'attr', 'due_date', '2021-03-29', '2021-05-24');
INSERT INTO public.journal_details VALUES (19543, 14600, 'attr', 'start_date', '2021-03-29', '2021-05-24');
INSERT INTO public.journal_details VALUES (19544, 14601, 'attr', 'due_date', '2021-04-06', '2021-05-24');
INSERT INTO public.journal_details VALUES (19545, 14601, 'attr', 'start_date', '2021-04-06', '2021-05-24');
INSERT INTO public.journal_details VALUES (19546, 14602, 'attr', 'due_date', '2021-05-17', '2021-05-24');
INSERT INTO public.journal_details VALUES (19547, 14602, 'attr', 'start_date', '2021-05-17', '2021-05-24');
INSERT INTO public.journal_details VALUES (19548, 14603, 'attr', 'due_date', '2021-05-19', '2021-05-24');
INSERT INTO public.journal_details VALUES (19549, 14603, 'attr', 'start_date', '2021-05-19', '2021-05-24');
INSERT INTO public.journal_details VALUES (19550, 14604, 'attr', 'due_date', '2021-05-19', '2021-05-24');
INSERT INTO public.journal_details VALUES (19551, 14604, 'attr', 'start_date', '2021-05-19', '2021-05-24');
INSERT INTO public.journal_details VALUES (19552, 14605, 'attr', 'due_date', '2021-05-19', '2021-05-24');
INSERT INTO public.journal_details VALUES (19553, 14605, 'attr', 'start_date', '2021-05-19', '2021-05-24');
INSERT INTO public.journal_details VALUES (19554, 14606, 'attr', 'due_date', '2021-05-19', '2021-05-24');
INSERT INTO public.journal_details VALUES (19555, 14606, 'attr', 'start_date', '2021-05-19', '2021-05-24');
INSERT INTO public.journal_details VALUES (19556, 14607, 'attr', 'due_date', '2021-05-19', '2021-05-24');
INSERT INTO public.journal_details VALUES (19557, 14607, 'attr', 'start_date', '2021-05-19', '2021-05-24');
INSERT INTO public.journal_details VALUES (19558, 14608, 'attr', 'due_date', '2021-05-19', '2021-05-24');
INSERT INTO public.journal_details VALUES (19559, 14608, 'attr', 'start_date', '2021-05-19', '2021-05-24');
INSERT INTO public.journal_details VALUES (19560, 14609, 'attr', 'due_date', '2021-05-21', '2021-05-24');
INSERT INTO public.journal_details VALUES (19561, 14609, 'attr', 'start_date', '2021-05-21', '2021-05-24');
INSERT INTO public.journal_details VALUES (19562, 14610, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19563, 14610, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19564, 14611, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19565, 14612, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (19566, 14613, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19567, 14613, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19568, 14614, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (19569, 14615, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (19570, 14616, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19571, 14616, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19572, 14617, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19573, 14617, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19574, 14618, 'attr', 'assigned_to_id', '38', '41');
INSERT INTO public.journal_details VALUES (19575, 14619, 'attr', 'assigned_to_id', '38', '41');
INSERT INTO public.journal_details VALUES (19576, 14620, 'attr', 'assigned_to_id', '38', '41');
INSERT INTO public.journal_details VALUES (19577, 14621, 'attr', 'assigned_to_id', '38', '41');
INSERT INTO public.journal_details VALUES (19578, 14622, 'attr', 'assigned_to_id', '38', '41');
INSERT INTO public.journal_details VALUES (19579, 14623, 'attr', 'due_date', NULL, '2021-05-22');
INSERT INTO public.journal_details VALUES (19580, 14623, 'attr', 'start_date', '2021-05-26', '2021-05-17');
INSERT INTO public.journal_details VALUES (19581, 14624, 'attr', 'subject', 'Xác thực thông tin login qua API', 'Xác thực thông tin login qua API & chuyển tới màng hình Trang chủ');
INSERT INTO public.journal_details VALUES (19582, 14625, 'attr', 'due_date', '2021-05-22', '2021-05-17');
INSERT INTO public.journal_details VALUES (19583, 14625, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19584, 14626, 'attr', 'due_date', '2021-05-22', '2021-05-18');
INSERT INTO public.journal_details VALUES (19585, 14626, 'attr', 'start_date', '2021-05-17', '2021-05-18');
INSERT INTO public.journal_details VALUES (19586, 14626, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19587, 14627, 'attr', 'due_date', '2021-05-22', '2021-05-18');
INSERT INTO public.journal_details VALUES (19588, 14627, 'attr', 'start_date', '2021-05-17', '2021-05-18');
INSERT INTO public.journal_details VALUES (19589, 14627, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19590, 14628, 'attr', 'due_date', '2021-05-22', '2021-05-18');
INSERT INTO public.journal_details VALUES (19591, 14628, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (19592, 14628, 'attr', 'start_date', '2021-05-17', '2021-05-18');
INSERT INTO public.journal_details VALUES (19593, 14628, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19594, 14629, 'attr', 'due_date', '2021-05-22', '2021-05-19');
INSERT INTO public.journal_details VALUES (19595, 14629, 'attr', 'start_date', '2021-05-17', '2021-05-19');
INSERT INTO public.journal_details VALUES (19596, 14629, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19597, 14630, 'attr', 'due_date', NULL, '2021-05-18');
INSERT INTO public.journal_details VALUES (19598, 14630, 'attr', 'start_date', '2021-05-22', '2021-05-18');
INSERT INTO public.journal_details VALUES (19599, 14630, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19600, 14631, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (19601, 14632, 'attr', 'assigned_to_id', '12', NULL);
INSERT INTO public.journal_details VALUES (19602, 14633, 'attr', 'due_date', '2021-05-22', '2021-05-19');
INSERT INTO public.journal_details VALUES (19603, 14633, 'attr', 'start_date', '2021-05-17', '2021-05-19');
INSERT INTO public.journal_details VALUES (19604, 14633, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19605, 14634, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (19606, 14635, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19607, 14636, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19608, 14637, 'attr', 'subject', 'Chi tiết phiên họp', 'Người dùng thao tác chọn lịch gần nhất');
INSERT INTO public.journal_details VALUES (19609, 14638, 'attr', 'fixed_version_id', '135', '134');
INSERT INTO public.journal_details VALUES (19610, 14639, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19611, 14640, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19612, 14641, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19613, 14641, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19614, 14642, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19615, 14643, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19616, 14644, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19617, 14644, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19618, 14645, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19619, 14646, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19620, 14647, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19621, 14647, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19622, 14648, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19623, 14648, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19624, 14649, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19625, 14650, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19626, 14651, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19627, 14652, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19628, 14653, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19629, 14653, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19630, 14654, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19631, 14654, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19632, 14655, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19633, 14655, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19634, 14656, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19635, 14657, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19636, 14658, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19637, 14659, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19638, 14660, 'attr', 'fixed_version_id', NULL, '133');
INSERT INTO public.journal_details VALUES (19639, 14661, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19640, 14662, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19641, 14663, 'attr', 'due_date', NULL, '2021-05-29');
INSERT INTO public.journal_details VALUES (19642, 14663, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19643, 14663, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19644, 14664, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19645, 14665, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19646, 14666, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19647, 14667, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19648, 14668, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19649, 14669, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19650, 14670, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19651, 14671, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19652, 14672, 'attr', 'fixed_version_id', NULL, '137');
INSERT INTO public.journal_details VALUES (19653, 14673, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19654, 14674, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19655, 14675, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19656, 14676, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19657, 14677, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19658, 14678, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19659, 14679, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19660, 14680, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19661, 14681, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19662, 14682, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19663, 14683, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19664, 14684, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19665, 14685, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19666, 14686, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19667, 14687, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19668, 14688, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19669, 14689, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19670, 14690, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19671, 14691, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19672, 14692, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19673, 14693, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19674, 14694, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19675, 14695, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19676, 14696, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19677, 14697, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19678, 14698, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19679, 14699, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19680, 14700, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19681, 14701, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19682, 14702, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19683, 14703, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19684, 14704, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19685, 14705, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19686, 14706, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19687, 14707, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19688, 14708, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19689, 14709, 'attr', 'due_date', '2021-05-24', '2021-05-31');
INSERT INTO public.journal_details VALUES (19690, 14709, 'attr', 'start_date', '2021-05-24', '2021-05-31');
INSERT INTO public.journal_details VALUES (19691, 14710, 'attr', 'due_date', '2021-05-24', '2021-05-31');
INSERT INTO public.journal_details VALUES (19692, 14710, 'attr', 'start_date', '2021-05-24', '2021-05-31');
INSERT INTO public.journal_details VALUES (19693, 14711, 'attr', 'due_date', '2021-05-24', '2021-05-31');
INSERT INTO public.journal_details VALUES (19694, 14711, 'attr', 'start_date', '2021-05-24', '2021-05-31');
INSERT INTO public.journal_details VALUES (19695, 14712, 'attr', 'due_date', '2021-05-28', '2021-05-31');
INSERT INTO public.journal_details VALUES (19696, 14712, 'attr', 'start_date', '2021-05-28', '2021-05-31');
INSERT INTO public.journal_details VALUES (19697, 14713, 'attr', 'fixed_version_id', '133', '137');
INSERT INTO public.journal_details VALUES (19698, 14714, 'attr', 'fixed_version_id', '133', '137');
INSERT INTO public.journal_details VALUES (19699, 14715, 'attr', 'fixed_version_id', '133', '137');
INSERT INTO public.journal_details VALUES (19700, 14716, 'attr', 'fixed_version_id', '133', '137');
INSERT INTO public.journal_details VALUES (19701, 14717, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19702, 14717, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19703, 14718, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19704, 14719, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19705, 14720, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19706, 14721, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19707, 14722, 'attr', 'tracker_id', '1', '3');
INSERT INTO public.journal_details VALUES (19708, 14722, 'attr', 'assigned_to_id', '38', '40');
INSERT INTO public.journal_details VALUES (19709, 14723, 'attr', 'subject', 'Hiển thị ds lịch cá nhân theo tuần, tháng (Dạng lịch)', 'Hiển thị ds lịch cá nhân theo tuần, tháng');
INSERT INTO public.journal_details VALUES (19710, 14724, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19711, 14725, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19712, 14726, 'attr', 'subject', 'Tìm kiếm lịch cá nhân theo tuần, tháng', 'Tìm kiếm lịch cá nhân theo từ ngày đến ngày');
INSERT INTO public.journal_details VALUES (19713, 14727, 'attr', 'fixed_version_id', '122', '33');
INSERT INTO public.journal_details VALUES (19714, 14728, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19715, 14729, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19716, 14730, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19717, 14731, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19718, 14732, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19719, 14733, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19720, 14734, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19721, 14735, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19722, 14736, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19723, 14737, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19724, 14738, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19725, 14739, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19726, 14740, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (19727, 14741, 'attr', 'fixed_version_id', '137', '75');
INSERT INTO public.journal_details VALUES (19728, 14742, 'attr', 'due_date', '2021-05-31', NULL);
INSERT INTO public.journal_details VALUES (19729, 14742, 'attr', 'start_date', '2021-05-31', NULL);
INSERT INTO public.journal_details VALUES (19730, 14743, 'attr', 'due_date', '2021-05-31', '2021-06-02');
INSERT INTO public.journal_details VALUES (19731, 14743, 'attr', 'start_date', '2021-05-31', '2021-06-02');
INSERT INTO public.journal_details VALUES (19732, 14744, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19733, 14745, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19734, 14746, 'attr', 'assigned_to_id', NULL, '12');
INSERT INTO public.journal_details VALUES (19735, 14747, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19736, 14748, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19737, 14749, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19738, 14750, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19739, 14751, 'attr', 'subject', 'Thống kê số đv có importexcel == true; importexcel == false; ', 'Thống kê số đv có importexcel == true; importexcel == false; xuất ds excel');
INSERT INTO public.journal_details VALUES (19740, 14752, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19741, 14753, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19742, 14754, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19743, 14755, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19744, 14756, 'attr', 'fixed_version_id', '124', '130');
INSERT INTO public.journal_details VALUES (19745, 14757, 'attr', 'fixed_version_id', '124', '130');
INSERT INTO public.journal_details VALUES (19746, 14758, 'attr', 'fixed_version_id', '124', '130');
INSERT INTO public.journal_details VALUES (19747, 14759, 'attr', 'fixed_version_id', '125', '130');
INSERT INTO public.journal_details VALUES (19748, 14760, 'attr', 'fixed_version_id', '125', '130');
INSERT INTO public.journal_details VALUES (19749, 14761, 'attr', 'fixed_version_id', '125', '130');
INSERT INTO public.journal_details VALUES (19750, 14762, 'attr', 'fixed_version_id', '125', '130');
INSERT INTO public.journal_details VALUES (19751, 14763, 'attr', 'fixed_version_id', '125', '130');
INSERT INTO public.journal_details VALUES (19752, 14764, 'attr', 'fixed_version_id', '125', '130');
INSERT INTO public.journal_details VALUES (19753, 14765, 'attr', 'fixed_version_id', '125', '130');
INSERT INTO public.journal_details VALUES (19754, 14766, 'attr', 'fixed_version_id', '125', '130');
INSERT INTO public.journal_details VALUES (19755, 14767, 'attr', 'fixed_version_id', '125', '130');
INSERT INTO public.journal_details VALUES (19756, 14768, 'attr', 'fixed_version_id', '125', '130');
INSERT INTO public.journal_details VALUES (19758, 14770, 'attr', 'fixed_version_id', '126', '130');
INSERT INTO public.journal_details VALUES (19760, 14772, 'attr', 'fixed_version_id', '126', '130');
INSERT INTO public.journal_details VALUES (19762, 14774, 'attr', 'fixed_version_id', '126', '130');
INSERT INTO public.journal_details VALUES (19763, 14775, 'attr', 'fixed_version_id', '126', '130');
INSERT INTO public.journal_details VALUES (19764, 14776, 'attr', 'fixed_version_id', '127', '130');
INSERT INTO public.journal_details VALUES (19765, 14777, 'attr', 'fixed_version_id', '125', '130');
INSERT INTO public.journal_details VALUES (19766, 14778, 'attr', 'fixed_version_id', '125', '130');
INSERT INTO public.journal_details VALUES (19767, 14779, 'attr', 'fixed_version_id', '125', '130');
INSERT INTO public.journal_details VALUES (19768, 14780, 'attr', 'fixed_version_id', '125', '130');
INSERT INTO public.journal_details VALUES (19770, 14782, 'attr', 'fixed_version_id', '125', '130');
INSERT INTO public.journal_details VALUES (19771, 14783, 'attr', 'fixed_version_id', '125', '130');
INSERT INTO public.journal_details VALUES (19772, 14784, 'attr', 'fixed_version_id', '125', '130');
INSERT INTO public.journal_details VALUES (19773, 14785, 'attr', 'fixed_version_id', '125', '130');
INSERT INTO public.journal_details VALUES (19783, 14795, 'attr', 'fixed_version_id', '126', '130');
INSERT INTO public.journal_details VALUES (19785, 14797, 'attr', 'fixed_version_id', '126', '130');
INSERT INTO public.journal_details VALUES (19786, 14798, 'attr', 'fixed_version_id', '126', '130');
INSERT INTO public.journal_details VALUES (19787, 14799, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19788, 14800, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19789, 14801, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19790, 14802, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19791, 14803, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19792, 14804, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19793, 14805, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19794, 14806, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19795, 14807, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19796, 14808, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19797, 14809, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19798, 14810, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19799, 14811, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19801, 14813, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19802, 14814, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19803, 14815, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19804, 14816, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19806, 14818, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19807, 14819, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19808, 14820, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19809, 14821, 'attr', 'fixed_version_id', '130', '128');
INSERT INTO public.journal_details VALUES (19810, 14822, 'attr', 'due_date', NULL, '2021-06-07');
INSERT INTO public.journal_details VALUES (19811, 14822, 'attr', 'start_date', '2021-05-10', '2021-06-07');
INSERT INTO public.journal_details VALUES (19812, 14823, 'attr', 'due_date', NULL, '2021-06-07');
INSERT INTO public.journal_details VALUES (19813, 14823, 'attr', 'start_date', '2021-05-10', '2021-06-07');
INSERT INTO public.journal_details VALUES (19814, 14824, 'attr', 'due_date', NULL, '2021-06-07');
INSERT INTO public.journal_details VALUES (19815, 14824, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (19816, 14824, 'attr', 'start_date', '2021-05-12', '2021-06-07');
INSERT INTO public.journal_details VALUES (19817, 14825, 'attr', 'due_date', '2021-05-17', '2021-06-07');
INSERT INTO public.journal_details VALUES (19818, 14825, 'attr', 'start_date', '2021-05-17', '2021-06-07');
INSERT INTO public.journal_details VALUES (19819, 14826, 'attr', 'due_date', NULL, '2021-06-07');
INSERT INTO public.journal_details VALUES (19820, 14826, 'attr', 'start_date', '2021-05-17', '2021-06-07');
INSERT INTO public.journal_details VALUES (19821, 14827, 'attr', 'due_date', NULL, '2021-06-07');
INSERT INTO public.journal_details VALUES (19822, 14827, 'attr', 'start_date', '2021-05-17', '2021-06-07');
INSERT INTO public.journal_details VALUES (19823, 14828, 'attr', 'due_date', '2021-05-18', '2021-06-07');
INSERT INTO public.journal_details VALUES (19824, 14828, 'attr', 'start_date', '2021-05-18', '2021-06-07');
INSERT INTO public.journal_details VALUES (19825, 14829, 'attr', 'due_date', '2021-05-18', '2021-06-07');
INSERT INTO public.journal_details VALUES (19826, 14829, 'attr', 'start_date', '2021-05-18', '2021-06-07');
INSERT INTO public.journal_details VALUES (19827, 14830, 'attr', 'due_date', '2021-05-18', '2021-06-07');
INSERT INTO public.journal_details VALUES (19828, 14830, 'attr', 'start_date', '2021-05-18', '2021-06-07');
INSERT INTO public.journal_details VALUES (19829, 14831, 'attr', 'due_date', '2021-05-19', '2021-06-07');
INSERT INTO public.journal_details VALUES (19830, 14831, 'attr', 'start_date', '2021-05-19', '2021-06-07');
INSERT INTO public.journal_details VALUES (19831, 14832, 'attr', 'due_date', '2021-05-19', '2021-06-07');
INSERT INTO public.journal_details VALUES (19832, 14832, 'attr', 'start_date', '2021-05-19', '2021-06-07');
INSERT INTO public.journal_details VALUES (19833, 14833, 'attr', 'due_date', '2021-05-19', '2021-06-07');
INSERT INTO public.journal_details VALUES (19834, 14833, 'attr', 'start_date', '2021-05-19', '2021-06-07');
INSERT INTO public.journal_details VALUES (19835, 14834, 'attr', 'due_date', '2021-05-21', '2021-06-07');
INSERT INTO public.journal_details VALUES (19836, 14834, 'attr', 'start_date', '2021-05-20', '2021-06-07');
INSERT INTO public.journal_details VALUES (19839, 14836, 'attr', 'due_date', '2021-05-17', '2021-06-07');
INSERT INTO public.journal_details VALUES (19840, 14836, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (19841, 14836, 'attr', 'start_date', '2021-05-17', '2021-06-07');
INSERT INTO public.journal_details VALUES (19842, 14837, 'attr', 'due_date', '2021-05-17', '2021-06-07');
INSERT INTO public.journal_details VALUES (19843, 14837, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (19844, 14837, 'attr', 'start_date', '2021-05-17', '2021-06-07');
INSERT INTO public.journal_details VALUES (19845, 14838, 'attr', 'due_date', '2021-05-18', '2021-06-07');
INSERT INTO public.journal_details VALUES (19846, 14838, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (19847, 14838, 'attr', 'start_date', '2021-05-18', '2021-06-07');
INSERT INTO public.journal_details VALUES (19848, 14839, 'attr', 'due_date', '2021-05-18', '2021-06-07');
INSERT INTO public.journal_details VALUES (19849, 14839, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (19850, 14839, 'attr', 'start_date', '2021-05-18', '2021-06-07');
INSERT INTO public.journal_details VALUES (19854, 14841, 'attr', 'due_date', '2021-05-19', '2021-06-07');
INSERT INTO public.journal_details VALUES (19855, 14841, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (19856, 14841, 'attr', 'start_date', '2021-05-19', '2021-06-07');
INSERT INTO public.journal_details VALUES (19857, 14842, 'attr', 'due_date', '2021-05-19', '2021-06-07');
INSERT INTO public.journal_details VALUES (19858, 14842, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (19859, 14842, 'attr', 'start_date', '2021-05-19', '2021-06-07');
INSERT INTO public.journal_details VALUES (19860, 14843, 'attr', 'due_date', '2021-05-19', '2021-06-07');
INSERT INTO public.journal_details VALUES (19861, 14843, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (19862, 14843, 'attr', 'start_date', '2021-05-19', '2021-06-07');
INSERT INTO public.journal_details VALUES (19863, 14844, 'attr', 'due_date', '2021-05-21', '2021-06-07');
INSERT INTO public.journal_details VALUES (19864, 14844, 'attr', 'assigned_to_id', NULL, '38');
INSERT INTO public.journal_details VALUES (19865, 14844, 'attr', 'start_date', '2021-05-20', '2021-06-07');
INSERT INTO public.journal_details VALUES (19866, 14845, 'attr', 'start_date', '2021-05-24', NULL);
INSERT INTO public.journal_details VALUES (19868, 14847, 'attr', 'due_date', '2021-05-27', NULL);
INSERT INTO public.journal_details VALUES (19869, 14847, 'attr', 'assigned_to_id', '38', NULL);
INSERT INTO public.journal_details VALUES (19870, 14847, 'attr', 'start_date', '2021-05-27', NULL);
INSERT INTO public.journal_details VALUES (19873, 14849, 'attr', 'due_date', '2021-05-29', NULL);
INSERT INTO public.journal_details VALUES (19874, 14849, 'attr', 'assigned_to_id', '38', NULL);
INSERT INTO public.journal_details VALUES (19875, 14849, 'attr', 'start_date', '2021-05-29', NULL);
INSERT INTO public.journal_details VALUES (19876, 14850, 'attr', 'due_date', '2021-05-28', NULL);
INSERT INTO public.journal_details VALUES (19877, 14850, 'attr', 'assigned_to_id', '38', NULL);
INSERT INTO public.journal_details VALUES (19878, 14850, 'attr', 'start_date', '2021-05-28', NULL);
INSERT INTO public.journal_details VALUES (19879, 14851, 'attr', 'start_date', '2021-05-31', NULL);
INSERT INTO public.journal_details VALUES (19880, 14852, 'attr', 'due_date', '2021-05-27', NULL);
INSERT INTO public.journal_details VALUES (19881, 14852, 'attr', 'start_date', '2021-05-27', NULL);
INSERT INTO public.journal_details VALUES (19884, 14854, 'attr', 'due_date', '2021-05-28', NULL);
INSERT INTO public.journal_details VALUES (19885, 14854, 'attr', 'start_date', '2021-05-28', NULL);
INSERT INTO public.journal_details VALUES (19886, 14855, 'attr', 'due_date', '2021-05-29', NULL);
INSERT INTO public.journal_details VALUES (19887, 14855, 'attr', 'start_date', '2021-05-29', NULL);
INSERT INTO public.journal_details VALUES (19901, 14863, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19902, 14864, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19903, 14865, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19904, 14866, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19905, 14867, 'attr', 'assigned_to_id', '38', '39');
INSERT INTO public.journal_details VALUES (19906, 14868, 'attr', 'assigned_to_id', '38', '39');
INSERT INTO public.journal_details VALUES (19907, 14869, 'attr', 'assigned_to_id', '38', '39');
INSERT INTO public.journal_details VALUES (19908, 14870, 'attr', 'assigned_to_id', '38', '39');
INSERT INTO public.journal_details VALUES (19910, 14872, 'attr', 'assigned_to_id', '38', '39');
INSERT INTO public.journal_details VALUES (19911, 14873, 'attr', 'assigned_to_id', '38', '39');
INSERT INTO public.journal_details VALUES (19912, 14874, 'attr', 'assigned_to_id', '38', '39');
INSERT INTO public.journal_details VALUES (19913, 14875, 'attr', 'assigned_to_id', '38', '39');
INSERT INTO public.journal_details VALUES (19914, 14876, 'attr', 'assigned_to_id', '38', '39');
INSERT INTO public.journal_details VALUES (19915, 14877, 'attr', 'subject', 'Chức thực hiện được chức năng lịch sử thao tác trong mẫu báo cáo', 'Chưa thực hiện được chức năng lịch sử thao tác trong mẫu báo cáo');
INSERT INTO public.journal_details VALUES (19916, 14878, 'attr', 'assigned_to_id', '38', '52');
INSERT INTO public.journal_details VALUES (19917, 14879, 'attr', 'fixed_version_id', '128', '129');
INSERT INTO public.journal_details VALUES (19918, 14880, 'attr', 'fixed_version_id', '128', '129');
INSERT INTO public.journal_details VALUES (19919, 14881, 'attr', 'fixed_version_id', '128', '129');
INSERT INTO public.journal_details VALUES (19920, 14882, 'attr', 'fixed_version_id', '128', '129');
INSERT INTO public.journal_details VALUES (19921, 14883, 'attr', 'fixed_version_id', '128', '129');
INSERT INTO public.journal_details VALUES (19922, 14884, 'attr', 'fixed_version_id', '128', '129');
INSERT INTO public.journal_details VALUES (19924, 14886, 'attr', 'fixed_version_id', '128', '129');
INSERT INTO public.journal_details VALUES (19926, 14888, 'attr', 'fixed_version_id', '128', '129');
INSERT INTO public.journal_details VALUES (19927, 14889, 'attr', 'fixed_version_id', '128', '129');
INSERT INTO public.journal_details VALUES (19928, 14890, 'attr', 'fixed_version_id', '128', '129');
INSERT INTO public.journal_details VALUES (19929, 14891, 'attr', 'fixed_version_id', '128', '129');
INSERT INTO public.journal_details VALUES (19930, 14892, 'attr', 'due_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19931, 14892, 'attr', 'start_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19932, 14893, 'attr', 'due_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19933, 14893, 'attr', 'start_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19934, 14894, 'attr', 'due_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19935, 14894, 'attr', 'start_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19936, 14895, 'attr', 'due_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19937, 14895, 'attr', 'start_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19938, 14896, 'attr', 'due_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19939, 14896, 'attr', 'start_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19940, 14897, 'attr', 'due_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19941, 14897, 'attr', 'start_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19944, 14899, 'attr', 'due_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19945, 14899, 'attr', 'start_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19948, 14901, 'attr', 'due_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19949, 14901, 'attr', 'start_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19950, 14902, 'attr', 'due_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19951, 14902, 'attr', 'start_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19952, 14903, 'attr', 'due_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19953, 14903, 'attr', 'start_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19954, 14904, 'attr', 'due_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19955, 14904, 'attr', 'start_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19956, 14905, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19957, 14906, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19958, 14907, 'attr', 'due_date', '2021-06-07', '2021-06-10');
INSERT INTO public.journal_details VALUES (19959, 14908, 'attr', 'due_date', '2021-06-07', '2021-06-10');
INSERT INTO public.journal_details VALUES (19960, 14908, 'attr', 'start_date', '2021-06-07', '2021-06-10');
INSERT INTO public.journal_details VALUES (19961, 14909, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19962, 14910, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19963, 14911, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (19964, 14912, 'attr', 'done_ratio', '100', '70');
INSERT INTO public.journal_details VALUES (19965, 14913, 'attr', 'assigned_to_id', '38', '52');
INSERT INTO public.journal_details VALUES (19966, 14914, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19967, 14915, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19968, 14916, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19969, 14917, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19971, 14919, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19972, 14920, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19973, 14921, 'attr', 'done_ratio', '70', '100');
INSERT INTO public.journal_details VALUES (19974, 14922, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (19975, 14923, 'attr', 'subject', 'Diễn biến cuộc họp', 'Đăng ký phát biểu');
INSERT INTO public.journal_details VALUES (19976, 14923, 'attr', 'due_date', '2021-06-19', '2021-06-16');
INSERT INTO public.journal_details VALUES (19977, 14923, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (19978, 14924, 'attr', 'due_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19979, 14924, 'attr', 'start_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19980, 14925, 'attr', 'due_date', '2021-06-10', '2021-06-14');
INSERT INTO public.journal_details VALUES (19981, 14925, 'attr', 'start_date', '2021-06-10', '2021-06-14');
INSERT INTO public.journal_details VALUES (19982, 14926, 'attr', 'due_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19983, 14926, 'attr', 'start_date', '2021-06-07', '2021-06-14');
INSERT INTO public.journal_details VALUES (19984, 14927, 'attr', 'fixed_version_id', '128', '129');
INSERT INTO public.journal_details VALUES (19985, 14928, 'attr', 'fixed_version_id', '128', '129');
INSERT INTO public.journal_details VALUES (19986, 14929, 'attr', 'fixed_version_id', '128', '129');
INSERT INTO public.journal_details VALUES (19987, 14930, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19988, 14931, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19989, 14932, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19990, 14933, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (19991, 14934, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19992, 14935, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19993, 14936, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19994, 14937, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19995, 14938, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19996, 14939, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (19997, 14940, 'attr', 'subject', 'API: Phân quyền ', 'API: Phân quyền CRUD theo từng doanh nghiệp');
INSERT INTO public.journal_details VALUES (19998, 14940, 'attr', 'description', '', 'Chi cục thấy hết');
INSERT INTO public.journal_details VALUES (19999, 14941, 'attr', 'description', 'Chi cục thấy hết', 'Chi cục thấy hết
Doanh nghiệp nào thấy doanh nghiệp đó');
INSERT INTO public.journal_details VALUES (20000, 14942, 'attr', 'assigned_to_id', '39', '37');
INSERT INTO public.journal_details VALUES (20001, 14943, 'attr', 'assigned_to_id', '39', '37');
INSERT INTO public.journal_details VALUES (20002, 14944, 'attr', 'assigned_to_id', '39', '37');
INSERT INTO public.journal_details VALUES (20003, 14945, 'attr', 'assigned_to_id', '37', '39');
INSERT INTO public.journal_details VALUES (20004, 14946, 'attr', 'due_date', '2021-06-14', '2021-06-16');
INSERT INTO public.journal_details VALUES (20005, 14947, 'attr', 'due_date', '2021-06-14', '2021-06-16');
INSERT INTO public.journal_details VALUES (20008, 14950, 'attr', 'subject', 'Tra cứu thông tin cơ sở', 'Trang chủ tra cứu thông tin cơ sở, PTĐ trên bản đồ');
INSERT INTO public.journal_details VALUES (20009, 14950, 'attr', 'due_date', NULL, '2021-06-16');
INSERT INTO public.journal_details VALUES (20010, 14950, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (20011, 14950, 'attr', 'fixed_version_id', '130', '129');
INSERT INTO public.journal_details VALUES (20012, 14950, 'attr', 'start_date', NULL, '2021-06-15');
INSERT INTO public.journal_details VALUES (20013, 14950, 'attr', 'estimated_hours', '8.0', NULL);
INSERT INTO public.journal_details VALUES (20014, 14951, 'attr', 'due_date', '2021-06-16', '2021-06-15');
INSERT INTO public.journal_details VALUES (20015, 14951, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20016, 14951, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20017, 14952, 'attr', 'due_date', '2021-06-15', '2021-06-14');
INSERT INTO public.journal_details VALUES (20018, 14953, 'attr', 'start_date', '2021-06-14', '2021-06-15');
INSERT INTO public.journal_details VALUES (20019, 14954, 'attr', 'due_date', '2021-06-16', '2021-06-15');
INSERT INTO public.journal_details VALUES (20020, 14954, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20021, 14954, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20022, 14955, 'attr', 'due_date', '2021-06-15', '2021-06-14');
INSERT INTO public.journal_details VALUES (20023, 14955, 'attr', 'start_date', '2021-06-15', '2021-06-14');
INSERT INTO public.journal_details VALUES (20024, 14956, 'attr', 'due_date', '2021-06-14', '2021-06-15');
INSERT INTO public.journal_details VALUES (20025, 14956, 'attr', 'assigned_to_id', '39', '37');
INSERT INTO public.journal_details VALUES (20026, 14956, 'attr', 'start_date', '2021-06-14', '2021-06-15');
INSERT INTO public.journal_details VALUES (20027, 14957, 'attr', 'due_date', '2021-06-14', '2021-06-15');
INSERT INTO public.journal_details VALUES (20028, 14957, 'attr', 'assigned_to_id', '39', '37');
INSERT INTO public.journal_details VALUES (20029, 14957, 'attr', 'start_date', '2021-06-14', '2021-06-15');
INSERT INTO public.journal_details VALUES (20030, 14958, 'attr', 'due_date', '2021-06-14', '2021-06-15');
INSERT INTO public.journal_details VALUES (20031, 14958, 'attr', 'assigned_to_id', '39', '37');
INSERT INTO public.journal_details VALUES (20032, 14958, 'attr', 'start_date', '2021-06-14', '2021-06-15');
INSERT INTO public.journal_details VALUES (20033, 14959, 'attr', 'due_date', '2021-06-15', '2021-06-16');
INSERT INTO public.journal_details VALUES (20034, 14960, 'attr', 'due_date', '2021-06-15', '2021-06-17');
INSERT INTO public.journal_details VALUES (20035, 14960, 'attr', 'start_date', '2021-06-15', '2021-06-16');
INSERT INTO public.journal_details VALUES (20036, 14961, 'attr', 'due_date', '2021-06-15', '2021-06-18');
INSERT INTO public.journal_details VALUES (20037, 14961, 'attr', 'start_date', '2021-06-15', '2021-06-17');
INSERT INTO public.journal_details VALUES (20038, 14962, 'attr', 'subject', 'Cho phép thêm loại văn bản khi đính kèm', 'Cho phép thêm loại văn bản khi đính kèm văn bản từ bên ngoài');
INSERT INTO public.journal_details VALUES (20039, 14963, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20040, 14964, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20041, 14965, 'attr', 'fixed_version_id', '137', '139');
INSERT INTO public.journal_details VALUES (20042, 14966, 'attr', 'fixed_version_id', '137', '139');
INSERT INTO public.journal_details VALUES (20043, 14967, 'attr', 'fixed_version_id', '137', '139');
INSERT INTO public.journal_details VALUES (20044, 14968, 'attr', 'fixed_version_id', '137', '139');
INSERT INTO public.journal_details VALUES (20045, 14969, 'attr', 'fixed_version_id', '137', '139');
INSERT INTO public.journal_details VALUES (20046, 14970, 'attr', 'fixed_version_id', '137', '139');
INSERT INTO public.journal_details VALUES (20047, 14971, 'attr', 'fixed_version_id', '137', '139');
INSERT INTO public.journal_details VALUES (20048, 14972, 'attr', 'fixed_version_id', '137', '139');
INSERT INTO public.journal_details VALUES (20049, 14973, 'attr', 'due_date', '2021-06-03', '2021-07-01');
INSERT INTO public.journal_details VALUES (20050, 14973, 'attr', 'start_date', '2021-06-03', '2021-07-01');
INSERT INTO public.journal_details VALUES (20051, 14974, 'attr', 'due_date', '2021-06-08', '2021-07-01');
INSERT INTO public.journal_details VALUES (20052, 14974, 'attr', 'start_date', '2021-06-07', '2021-07-01');
INSERT INTO public.journal_details VALUES (20053, 14975, 'attr', 'due_date', '2021-06-16', '2021-07-01');
INSERT INTO public.journal_details VALUES (20054, 14975, 'attr', 'start_date', '2021-06-16', '2021-07-01');
INSERT INTO public.journal_details VALUES (20055, 14976, 'attr', 'due_date', '2021-06-16', '2021-07-01');
INSERT INTO public.journal_details VALUES (20056, 14976, 'attr', 'start_date', '2021-06-16', '2021-07-01');
INSERT INTO public.journal_details VALUES (20057, 14977, 'attr', 'due_date', '2021-06-16', '2021-07-01');
INSERT INTO public.journal_details VALUES (20058, 14977, 'attr', 'start_date', '2021-06-16', '2021-07-01');
INSERT INTO public.journal_details VALUES (20059, 14978, 'attr', 'due_date', '2021-06-16', '2021-07-01');
INSERT INTO public.journal_details VALUES (20060, 14978, 'attr', 'start_date', '2021-06-16', '2021-07-01');
INSERT INTO public.journal_details VALUES (20061, 14979, 'attr', 'due_date', '2021-06-17', '2021-07-01');
INSERT INTO public.journal_details VALUES (20062, 14979, 'attr', 'start_date', '2021-06-17', '2021-07-01');
INSERT INTO public.journal_details VALUES (20063, 14980, 'attr', 'due_date', '2021-06-17', '2021-07-01');
INSERT INTO public.journal_details VALUES (20064, 14980, 'attr', 'start_date', '2021-06-17', '2021-07-01');
INSERT INTO public.journal_details VALUES (20065, 14981, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (20066, 14982, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20067, 14983, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (20068, 14984, 'attr', 'assigned_to_id', '38', '41');
INSERT INTO public.journal_details VALUES (20069, 14985, 'attr', 'assigned_to_id', '38', '41');
INSERT INTO public.journal_details VALUES (20070, 14986, 'attr', 'assigned_to_id', '38', '41');
INSERT INTO public.journal_details VALUES (20071, 14987, 'attr', 'assigned_to_id', '38', '41');
INSERT INTO public.journal_details VALUES (20072, 14988, 'attr', 'assigned_to_id', '38', '41');
INSERT INTO public.journal_details VALUES (20073, 14989, 'attr', 'assigned_to_id', '38', '41');
INSERT INTO public.journal_details VALUES (20074, 14990, 'attr', 'assigned_to_id', '38', '41');
INSERT INTO public.journal_details VALUES (20075, 14991, 'attr', 'due_date', '2021-06-16', '2021-06-24');
INSERT INTO public.journal_details VALUES (20076, 14991, 'attr', 'fixed_version_id', '129', '140');
INSERT INTO public.journal_details VALUES (20077, 14991, 'attr', 'start_date', '2021-06-15', '2021-06-21');
INSERT INTO public.journal_details VALUES (20078, 14992, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20079, 14993, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20080, 14993, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20081, 14994, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20082, 14994, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20083, 14995, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20084, 14995, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20085, 14996, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20086, 14997, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20087, 14998, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20088, 14999, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20089, 15000, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20090, 15001, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20091, 15002, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20092, 15003, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20093, 15004, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20094, 15005, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20095, 15006, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20096, 15007, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20097, 15008, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20098, 15009, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20099, 15010, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (20100, 15011, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (20101, 15012, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20102, 15013, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20103, 15014, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20104, 15015, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20105, 15016, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20106, 15017, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20107, 15018, 'attr', 'subject', 'PDF - MESSAGE', 'Ghi chú trên file pdf');
INSERT INTO public.journal_details VALUES (20108, 15018, 'attr', 'due_date', '2021-06-26', '2021-06-24');
INSERT INTO public.journal_details VALUES (20109, 15018, 'attr', 'assigned_to_id', NULL, '15');
INSERT INTO public.journal_details VALUES (20120, 15028, 'attr', 'fixed_version_id', '130', '142');
INSERT INTO public.journal_details VALUES (20121, 15029, 'attr', 'fixed_version_id', '130', '142');
INSERT INTO public.journal_details VALUES (20122, 15030, 'attr', 'start_date', '2021-06-21', NULL);
INSERT INTO public.journal_details VALUES (20123, 15031, 'attr', 'fixed_version_id', '142', '140');
INSERT INTO public.journal_details VALUES (20124, 15032, 'attr', 'fixed_version_id', '142', '140');
INSERT INTO public.journal_details VALUES (20125, 15033, 'attr', 'due_date', NULL, '2021-06-22');
INSERT INTO public.journal_details VALUES (20126, 15033, 'attr', 'start_date', NULL, '2021-06-22');
INSERT INTO public.journal_details VALUES (20127, 15034, 'attr', 'due_date', NULL, '2021-06-22');
INSERT INTO public.journal_details VALUES (20128, 15034, 'attr', 'start_date', NULL, '2021-06-22');
INSERT INTO public.journal_details VALUES (20129, 15035, 'attr', 'subject', 'API: Dashboard', 'api thống kê số lượng cơ sở, ptđ');
INSERT INTO public.journal_details VALUES (20130, 15035, 'attr', 'assigned_to_id', NULL, '52');
INSERT INTO public.journal_details VALUES (20131, 15035, 'attr', 'estimated_hours', '8.0', NULL);
INSERT INTO public.journal_details VALUES (20132, 15036, 'attr', 'subject', 'Giao diện dashboard', 'Giao diện thống kê số lượng cơ sở, ptđ ');
INSERT INTO public.journal_details VALUES (20133, 15037, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (20134, 15038, 'attr', 'fixed_version_id', NULL, '140');
INSERT INTO public.journal_details VALUES (20135, 15039, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (20136, 15039, 'attr', 'fixed_version_id', NULL, '140');
INSERT INTO public.journal_details VALUES (20137, 15040, 'attr', 'due_date', NULL, '2021-06-22');
INSERT INTO public.journal_details VALUES (20138, 15040, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20139, 15040, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20140, 15041, 'attr', 'due_date', NULL, '2021-06-23');
INSERT INTO public.journal_details VALUES (20141, 15041, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20142, 15041, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20143, 15042, 'attr', 'start_date', '2021-06-22', '2021-06-23');
INSERT INTO public.journal_details VALUES (20144, 15043, 'attr', 'start_date', '2021-06-22', '2021-06-24');
INSERT INTO public.journal_details VALUES (20145, 15044, 'attr', 'due_date', NULL, '2021-06-24');
INSERT INTO public.journal_details VALUES (20146, 15044, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20147, 15044, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20148, 15045, 'attr', 'due_date', NULL, '2021-06-25');
INSERT INTO public.journal_details VALUES (20149, 15045, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20150, 15045, 'attr', 'start_date', '2021-06-22', '2021-06-25');
INSERT INTO public.journal_details VALUES (20151, 15045, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20152, 15046, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20153, 15046, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20154, 15047, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20155, 15047, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20156, 15048, 'attr', 'fixed_version_id', '133', '139');
INSERT INTO public.journal_details VALUES (20157, 15049, 'attr', 'fixed_version_id', '133', '139');
INSERT INTO public.journal_details VALUES (20158, 15050, 'attr', 'fixed_version_id', '133', '139');
INSERT INTO public.journal_details VALUES (20159, 15051, 'attr', 'fixed_version_id', '133', '139');
INSERT INTO public.journal_details VALUES (20160, 15052, 'attr', 'fixed_version_id', '133', '139');
INSERT INTO public.journal_details VALUES (20161, 15053, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20162, 15054, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20163, 15055, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20164, 15056, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20165, 15057, 'attr', 'assigned_to_id', '39', '37');
INSERT INTO public.journal_details VALUES (20166, 15058, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20167, 15059, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (20168, 15059, 'attr', 'assigned_to_id', '37', '39');
INSERT INTO public.journal_details VALUES (20169, 15059, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (20170, 15060, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20171, 15061, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20172, 15062, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20173, 15063, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20174, 15063, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20175, 15064, 'attr', 'due_date', NULL, '2021-06-23');
INSERT INTO public.journal_details VALUES (20176, 15065, 'attr', 'due_date', NULL, '2021-06-24');
INSERT INTO public.journal_details VALUES (20177, 15065, 'attr', 'start_date', '2021-06-22', '2021-06-24');
INSERT INTO public.journal_details VALUES (20178, 15066, 'attr', 'due_date', NULL, '2021-06-24');
INSERT INTO public.journal_details VALUES (20179, 15067, 'attr', 'due_date', '2021-06-24', '2021-06-26');
INSERT INTO public.journal_details VALUES (20180, 15067, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (20181, 15067, 'attr', 'start_date', '2021-06-22', '2021-06-25');
INSERT INTO public.journal_details VALUES (20182, 15067, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (20183, 15068, 'attr', 'due_date', NULL, '2021-07-01');
INSERT INTO public.journal_details VALUES (20184, 15068, 'attr', 'start_date', '2021-06-17', '2021-07-01');
INSERT INTO public.journal_details VALUES (20185, 15069, 'attr', 'due_date', '2021-06-26', '2021-07-01');
INSERT INTO public.journal_details VALUES (20186, 15069, 'attr', 'start_date', '2021-06-26', '2021-07-01');
INSERT INTO public.journal_details VALUES (20187, 15070, 'attr', 'due_date', '2021-06-26', '2021-07-01');
INSERT INTO public.journal_details VALUES (20188, 15070, 'attr', 'start_date', '2021-06-26', '2021-07-01');
INSERT INTO public.journal_details VALUES (20189, 15071, 'attr', 'due_date', '2021-06-26', '2021-07-01');
INSERT INTO public.journal_details VALUES (20190, 15071, 'attr', 'start_date', '2021-06-26', '2021-07-01');
INSERT INTO public.journal_details VALUES (20191, 15072, 'attr', 'due_date', '2021-06-26', '2021-07-01');
INSERT INTO public.journal_details VALUES (20192, 15072, 'attr', 'start_date', '2021-06-26', '2021-07-01');
INSERT INTO public.journal_details VALUES (20193, 15073, 'attr', 'due_date', '2021-06-26', '2021-07-01');
INSERT INTO public.journal_details VALUES (20194, 15073, 'attr', 'start_date', '2021-06-26', '2021-07-01');
INSERT INTO public.journal_details VALUES (20195, 15074, 'attr', 'due_date', '2021-06-26', '2021-07-01');
INSERT INTO public.journal_details VALUES (20196, 15074, 'attr', 'start_date', '2021-06-26', '2021-07-01');
INSERT INTO public.journal_details VALUES (20197, 15075, 'attr', 'assigned_to_id', NULL, '52');
INSERT INTO public.journal_details VALUES (20198, 15076, 'attr', 'parent_id', '4381', NULL);
INSERT INTO public.journal_details VALUES (20199, 15077, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20200, 15078, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20201, 15079, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20202, 15080, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20203, 15081, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20204, 15082, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20205, 15083, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20206, 15084, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20207, 15085, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (20208, 15086, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (20209, 15087, 'attr', 'due_date', NULL, '2021-06-30');
INSERT INTO public.journal_details VALUES (20210, 15087, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20211, 15087, 'attr', 'fixed_version_id', '130', '142');
INSERT INTO public.journal_details VALUES (20212, 15087, 'attr', 'start_date', NULL, '2021-06-29');
INSERT INTO public.journal_details VALUES (20213, 15087, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20214, 15088, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20215, 15089, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20216, 15090, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20217, 15091, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20218, 15092, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20219, 15093, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20220, 15094, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20221, 15095, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20222, 15096, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20223, 15097, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20224, 15098, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20225, 15099, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20226, 15100, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20227, 15101, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20228, 15102, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20229, 15103, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20230, 15104, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20231, 15105, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20232, 15106, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20233, 15107, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20234, 15108, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20235, 15109, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20236, 15110, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20237, 15111, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20238, 15112, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20239, 15113, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20240, 15114, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20241, 15115, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20242, 15116, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20243, 15117, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20244, 15118, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20245, 15119, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20246, 15120, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20247, 15120, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20248, 15121, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (20249, 15122, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20250, 15123, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (20251, 15123, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (20252, 15123, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20253, 15124, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20254, 15125, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20255, 15126, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20256, 15127, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20257, 15128, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20258, 15129, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20259, 15130, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20260, 15131, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20261, 15132, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20262, 15133, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20263, 15134, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20264, 15135, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20265, 15136, 'attr', 'fixed_version_id', '142', '143');
INSERT INTO public.journal_details VALUES (20266, 15137, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20267, 15138, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20268, 15139, 'attr', 'fixed_version_id', '130', '142');
INSERT INTO public.journal_details VALUES (20269, 15140, 'attr', 'fixed_version_id', '130', '142');
INSERT INTO public.journal_details VALUES (20270, 15141, 'attr', 'fixed_version_id', '130', '142');
INSERT INTO public.journal_details VALUES (20271, 15142, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (20272, 15143, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (20273, 15144, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (20274, 15145, 'attr', 'due_date', NULL, '2021-07-03');
INSERT INTO public.journal_details VALUES (20275, 15145, 'attr', 'start_date', NULL, '2021-07-03');
INSERT INTO public.journal_details VALUES (20276, 15146, 'attr', 'due_date', NULL, '2021-07-03');
INSERT INTO public.journal_details VALUES (20277, 15146, 'attr', 'start_date', NULL, '2021-07-03');
INSERT INTO public.journal_details VALUES (20278, 15147, 'attr', 'due_date', NULL, '2021-07-03');
INSERT INTO public.journal_details VALUES (20279, 15147, 'attr', 'start_date', NULL, '2021-07-03');
INSERT INTO public.journal_details VALUES (20280, 15148, 'attr', 'due_date', '2021-07-01', '2021-07-02');
INSERT INTO public.journal_details VALUES (20281, 15148, 'attr', 'start_date', '2021-07-01', '2021-07-02');
INSERT INTO public.journal_details VALUES (20282, 15149, 'attr', 'due_date', NULL, '2021-07-03');
INSERT INTO public.journal_details VALUES (20283, 15149, 'attr', 'fixed_version_id', '130', '142');
INSERT INTO public.journal_details VALUES (20284, 15149, 'attr', 'start_date', NULL, '2021-07-03');
INSERT INTO public.journal_details VALUES (20285, 15150, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20286, 15151, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20287, 15152, 'attr', 'subject', 'Notify cho gửi nhận văn bản ', 'Notify SOCKET IO cho gửi nhận văn bản ');
INSERT INTO public.journal_details VALUES (20288, 15152, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20289, 15152, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20290, 15153, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20291, 15153, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20292, 15154, 'attr', 'subject', 'API: Báo cáo', 'API: Gửi thông báo ');
INSERT INTO public.journal_details VALUES (20293, 15154, 'attr', 'due_date', '2021-07-03', '2021-07-02');
INSERT INTO public.journal_details VALUES (20294, 15154, 'attr', 'start_date', '2021-07-03', '2021-07-02');
INSERT INTO public.journal_details VALUES (20295, 15155, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20296, 15156, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20297, 15157, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20298, 15158, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20299, 15158, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20300, 15159, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20301, 15159, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20302, 15160, 'attr', 'due_date', '2021-07-01', '2021-06-28');
INSERT INTO public.journal_details VALUES (20303, 15160, 'attr', 'start_date', '2021-07-01', '2021-06-28');
INSERT INTO public.journal_details VALUES (20304, 15161, 'attr', 'due_date', '2021-07-02', '2021-07-01');
INSERT INTO public.journal_details VALUES (20305, 15161, 'attr', 'start_date', '2021-07-02', '2021-07-01');
INSERT INTO public.journal_details VALUES (20306, 15162, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (20307, 15163, 'attr', 'fixed_version_id', '130', '142');
INSERT INTO public.journal_details VALUES (20308, 15164, 'attr', 'due_date', NULL, '2021-07-03');
INSERT INTO public.journal_details VALUES (20309, 15164, 'attr', 'start_date', '2021-07-01', '2021-07-03');
INSERT INTO public.journal_details VALUES (20310, 15165, 'attr', 'fixed_version_id', '142', '145');
INSERT INTO public.journal_details VALUES (20311, 15166, 'attr', 'due_date', '2021-07-03', '2021-07-05');
INSERT INTO public.journal_details VALUES (20312, 15166, 'attr', 'start_date', '2021-07-03', '2021-07-05');
INSERT INTO public.journal_details VALUES (20313, 15167, 'attr', 'due_date', '2021-07-03', '2021-07-05');
INSERT INTO public.journal_details VALUES (20314, 15167, 'attr', 'fixed_version_id', '142', '145');
INSERT INTO public.journal_details VALUES (20315, 15167, 'attr', 'start_date', '2021-07-03', '2021-07-05');
INSERT INTO public.journal_details VALUES (20316, 15168, 'attr', 'due_date', NULL, '2021-07-06');
INSERT INTO public.journal_details VALUES (20317, 15168, 'attr', 'assigned_to_id', NULL, '39');
INSERT INTO public.journal_details VALUES (20318, 15168, 'attr', 'start_date', '2021-07-01', '2021-07-06');
INSERT INTO public.journal_details VALUES (20319, 15169, 'attr', 'fixed_version_id', '130', '145');
INSERT INTO public.journal_details VALUES (20320, 15170, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20321, 15171, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20322, 15172, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20323, 15173, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20324, 15174, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20325, 15175, 'attr', 'due_date', '2021-07-05', '2021-07-03');
INSERT INTO public.journal_details VALUES (20326, 15175, 'attr', 'fixed_version_id', '145', '142');
INSERT INTO public.journal_details VALUES (20327, 15175, 'attr', 'start_date', '2021-07-05', '2021-07-03');
INSERT INTO public.journal_details VALUES (20328, 15176, 'attr', 'due_date', '2021-07-01', '2021-07-05');
INSERT INTO public.journal_details VALUES (20329, 15176, 'attr', 'start_date', '2021-07-01', '2021-07-05');
INSERT INTO public.journal_details VALUES (20330, 15177, 'attr', 'due_date', '2021-07-01', '2021-07-05');
INSERT INTO public.journal_details VALUES (20331, 15177, 'attr', 'start_date', '2021-07-01', '2021-07-05');
INSERT INTO public.journal_details VALUES (20332, 15178, 'attr', 'due_date', '2021-07-01', '2021-07-06');
INSERT INTO public.journal_details VALUES (20333, 15178, 'attr', 'start_date', '2021-07-01', '2021-07-06');
INSERT INTO public.journal_details VALUES (20334, 15179, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20335, 15179, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20336, 15180, 'attr', 'assigned_to_id', '39', '37');
INSERT INTO public.journal_details VALUES (20337, 15181, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20338, 15181, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20339, 15182, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20340, 15182, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20341, 15183, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20342, 15183, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20343, 15184, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (20344, 15185, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20345, 15186, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20346, 15187, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20347, 15188, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20348, 15189, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20349, 15190, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20350, 15191, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20351, 15192, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20352, 15193, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20353, 15194, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20354, 15195, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20355, 15196, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20356, 15197, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20357, 15198, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20358, 15199, 'attr', 'done_ratio', '90', '70');
INSERT INTO public.journal_details VALUES (20359, 15200, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20360, 15201, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20361, 15202, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20362, 15203, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20363, 15204, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20364, 15204, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20365, 15205, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20366, 15206, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20367, 15207, 'attr', 'due_date', '2021-07-01', '2021-07-08');
INSERT INTO public.journal_details VALUES (20368, 15207, 'attr', 'start_date', '2021-07-01', '2021-07-08');
INSERT INTO public.journal_details VALUES (20369, 15208, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20370, 15209, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20371, 15210, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20372, 15211, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20373, 15212, 'attr', 'due_date', '2021-07-01', '2021-07-12');
INSERT INTO public.journal_details VALUES (20374, 15212, 'attr', 'fixed_version_id', '139', '146');
INSERT INTO public.journal_details VALUES (20375, 15212, 'attr', 'start_date', '2021-07-01', '2021-07-12');
INSERT INTO public.journal_details VALUES (20376, 15213, 'attr', 'due_date', '2021-07-01', '2021-07-12');
INSERT INTO public.journal_details VALUES (20377, 15213, 'attr', 'fixed_version_id', '139', '146');
INSERT INTO public.journal_details VALUES (20378, 15213, 'attr', 'start_date', '2021-07-01', '2021-07-12');
INSERT INTO public.journal_details VALUES (20379, 15214, 'attr', 'due_date', '2021-07-01', '2021-07-12');
INSERT INTO public.journal_details VALUES (20380, 15214, 'attr', 'fixed_version_id', '139', '146');
INSERT INTO public.journal_details VALUES (20381, 15214, 'attr', 'start_date', '2021-07-01', '2021-07-12');
INSERT INTO public.journal_details VALUES (20382, 15215, 'attr', 'due_date', '2021-07-01', '2021-07-12');
INSERT INTO public.journal_details VALUES (20383, 15215, 'attr', 'fixed_version_id', '139', '146');
INSERT INTO public.journal_details VALUES (20384, 15215, 'attr', 'start_date', '2021-07-01', '2021-07-12');
INSERT INTO public.journal_details VALUES (20385, 15216, 'attr', 'subject', 'Thêm trình ký số để người lập biểu trước khi gửi báo cáo có sự phê duyệt của ban lãnh đạo', 'kThêm trình ký số để người lập biểu trước khi gửi báo cáo có sự phê duyệt của ban lãnh đạo');
INSERT INTO public.journal_details VALUES (20386, 15216, 'attr', 'due_date', '2021-07-01', '2021-07-12');
INSERT INTO public.journal_details VALUES (20387, 15216, 'attr', 'fixed_version_id', '139', '146');
INSERT INTO public.journal_details VALUES (20388, 15216, 'attr', 'start_date', '2021-07-01', '2021-07-12');
INSERT INTO public.journal_details VALUES (20389, 15217, 'attr', 'due_date', '2021-07-01', '2021-07-12');
INSERT INTO public.journal_details VALUES (20390, 15217, 'attr', 'fixed_version_id', '139', '146');
INSERT INTO public.journal_details VALUES (20391, 15217, 'attr', 'start_date', '2021-07-01', '2021-07-12');
INSERT INTO public.journal_details VALUES (20392, 15218, 'attr', 'subject', 'Tại mẫu 7, mục chi phí Sở chủ quản tổng hợp chứ không nhập liệu', 'API: Tại mẫu 7, mục chi phí Sở chủ quản tổng hợp chứ không nhập liệu');
INSERT INTO public.journal_details VALUES (20393, 15218, 'attr', 'assigned_to_id', '41', '38');
INSERT INTO public.journal_details VALUES (20394, 15219, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20395, 15220, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20396, 15221, 'attr', 'assigned_to_id', '39', '37');
INSERT INTO public.journal_details VALUES (20397, 15222, 'attr', 'fixed_version_id', NULL, '146');
INSERT INTO public.journal_details VALUES (20398, 15223, 'attr', 'subject', 'Phần header hiển thị năm thực hiện báo cáo và tên tổ chức chưa hiển thị', 'API: Phần header hiển thị năm thực hiện báo cáo và tên tổ chức chưa hiển thị');
INSERT INTO public.journal_details VALUES (20399, 15223, 'attr', 'due_date', '2021-07-01', '2021-07-12');
INSERT INTO public.journal_details VALUES (20400, 15223, 'attr', 'fixed_version_id', '139', '146');
INSERT INTO public.journal_details VALUES (20401, 15223, 'attr', 'start_date', '2021-07-01', '2021-07-12');
INSERT INTO public.journal_details VALUES (20402, 15224, 'attr', 'due_date', '2021-07-01', '2021-07-12');
INSERT INTO public.journal_details VALUES (20403, 15224, 'attr', 'fixed_version_id', '139', '146');
INSERT INTO public.journal_details VALUES (20404, 15224, 'attr', 'start_date', '2021-07-01', '2021-07-12');
INSERT INTO public.journal_details VALUES (20405, 15225, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20406, 15226, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20407, 15227, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20408, 15228, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20409, 15229, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20410, 15230, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20411, 15231, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20412, 15232, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20413, 15233, 'attr', 'due_date', '2021-07-06', '2021-07-12');
INSERT INTO public.journal_details VALUES (20414, 15233, 'attr', 'fixed_version_id', '139', '146');
INSERT INTO public.journal_details VALUES (20415, 15233, 'attr', 'start_date', '2021-07-06', '2021-07-12');
INSERT INTO public.journal_details VALUES (20416, 15233, 'attr', 'done_ratio', '70', '0');
INSERT INTO public.journal_details VALUES (20417, 15234, 'attr', 'due_date', '2021-07-09', '2021-07-12');
INSERT INTO public.journal_details VALUES (20418, 15234, 'attr', 'start_date', '2021-07-09', '2021-07-12');
INSERT INTO public.journal_details VALUES (20419, 15235, 'attr', 'due_date', '2021-07-09', '2021-07-12');
INSERT INTO public.journal_details VALUES (20420, 15235, 'attr', 'start_date', '2021-07-09', '2021-07-12');
INSERT INTO public.journal_details VALUES (20421, 15236, 'attr', 'due_date', '2021-07-09', '2021-07-12');
INSERT INTO public.journal_details VALUES (20422, 15236, 'attr', 'start_date', '2021-07-09', '2021-07-12');
INSERT INTO public.journal_details VALUES (20423, 15237, 'attr', 'due_date', '2021-07-09', '2021-07-12');
INSERT INTO public.journal_details VALUES (20424, 15237, 'attr', 'start_date', '2021-07-09', '2021-07-12');
INSERT INTO public.journal_details VALUES (20425, 15238, 'attr', 'assigned_to_id', '38', '41');
INSERT INTO public.journal_details VALUES (20426, 15239, 'attr', 'assigned_to_id', '38', '41');
INSERT INTO public.journal_details VALUES (20427, 15240, 'attr', 'due_date', '2021-07-12', '2021-07-13');
INSERT INTO public.journal_details VALUES (20428, 15240, 'attr', 'start_date', '2021-07-12', '2021-07-13');
INSERT INTO public.journal_details VALUES (20429, 15241, 'attr', 'assigned_to_id', '52', '38');
INSERT INTO public.journal_details VALUES (20430, 15242, 'attr', 'assigned_to_id', '39', '38');
INSERT INTO public.journal_details VALUES (20431, 15243, 'attr', 'assigned_to_id', '41', '39');
INSERT INTO public.journal_details VALUES (20432, 15244, 'attr', 'assigned_to_id', '41', '39');
INSERT INTO public.journal_details VALUES (20433, 15245, 'attr', 'assigned_to_id', '41', '39');
INSERT INTO public.journal_details VALUES (20434, 15246, 'attr', 'assigned_to_id', '41', '38');
INSERT INTO public.journal_details VALUES (20435, 15247, 'attr', 'assigned_to_id', '38', '52');
INSERT INTO public.journal_details VALUES (20436, 15248, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20437, 15249, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20438, 15250, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20439, 15251, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20440, 15252, 'attr', 'fixed_version_id', '145', '147');
INSERT INTO public.journal_details VALUES (20441, 15253, 'attr', 'due_date', '2021-07-06', '2021-07-12');
INSERT INTO public.journal_details VALUES (20442, 15253, 'attr', 'start_date', '2021-07-06', '2021-07-12');
INSERT INTO public.journal_details VALUES (20443, 15254, 'attr', 'due_date', '2021-07-12', '2021-07-17');
INSERT INTO public.journal_details VALUES (20444, 15254, 'attr', 'start_date', '2021-07-12', '2021-07-17');
INSERT INTO public.journal_details VALUES (20445, 15255, 'attr', 'due_date', '2021-06-28', '2021-07-12');
INSERT INTO public.journal_details VALUES (20446, 15255, 'attr', 'start_date', '2021-06-28', '2021-07-12');
INSERT INTO public.journal_details VALUES (20447, 15256, 'attr', 'fixed_version_id', '143', '147');
INSERT INTO public.journal_details VALUES (20448, 15257, 'attr', 'due_date', NULL, '2021-07-12');
INSERT INTO public.journal_details VALUES (20449, 15257, 'attr', 'fixed_version_id', '143', '147');
INSERT INTO public.journal_details VALUES (20450, 15257, 'attr', 'start_date', NULL, '2021-07-12');
INSERT INTO public.journal_details VALUES (20451, 15258, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (20452, 15259, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (20453, 15260, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (20454, 15261, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (20455, 15262, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20456, 15263, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20457, 15264, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20458, 15265, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20459, 15266, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20460, 15267, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20461, 15268, 'attr', 'subject', 'điều 12 Xem báo cáo đến của mẫu 06, khi đóng giao diện hiển thị thông báo sai', 'điều 12 Xem báo cáo đến của mẫu 06, 07 được thêm, sửa xóa dữ liệu và khi đóng giao diện hiển thị thông báo lưu dữ liệu');
INSERT INTO public.journal_details VALUES (20462, 15269, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20463, 15270, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20464, 15271, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20465, 15272, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20466, 15273, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20467, 15274, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20468, 15275, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20469, 15276, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20470, 15277, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20471, 15278, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20472, 15279, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20473, 15280, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20474, 15281, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20475, 15282, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20476, 15283, 'attr', 'assigned_to_id', NULL, '53');
INSERT INTO public.journal_details VALUES (20477, 15284, 'attr', 'assigned_to_id', NULL, '53');
INSERT INTO public.journal_details VALUES (20478, 15285, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20479, 15285, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20480, 15286, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20481, 15287, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20482, 15288, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20483, 15289, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20484, 15290, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (20485, 15291, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20486, 15291, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20487, 15292, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20488, 15293, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20489, 15294, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20490, 15295, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20491, 15296, 'attr', 'subject', 'kThêm trình ký số để người lập biểu trước khi gửi báo cáo có sự phê duyệt của ban lãnh đạo', 'Thêm trình ký số để người lập biểu trước khi gửi báo cáo có sự phê duyệt của ban lãnh đạo');
INSERT INTO public.journal_details VALUES (20492, 15297, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20493, 15298, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20494, 15299, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20495, 15300, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (20496, 15301, 'attr', 'status_id', '5', '1');
INSERT INTO public.journal_details VALUES (20497, 15302, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20498, 15303, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20499, 15304, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20500, 15305, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20501, 15306, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20502, 15307, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20503, 15308, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20504, 15309, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20505, 15310, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20506, 15311, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20507, 15312, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20508, 15313, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20509, 15314, 'attr', 'assigned_to_id', '39', '37');
INSERT INTO public.journal_details VALUES (20510, 15315, 'attr', 'fixed_version_id', '146', '148');
INSERT INTO public.journal_details VALUES (20511, 15316, 'attr', 'due_date', '2021-07-17', '2021-07-19');
INSERT INTO public.journal_details VALUES (20512, 15316, 'attr', 'start_date', '2021-07-17', '2021-07-19');
INSERT INTO public.journal_details VALUES (20513, 15317, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20514, 15318, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20626, 15390, 'attr', 'due_date', '2021-08-30', '2021-08-31');
INSERT INTO public.journal_details VALUES (20515, 15319, 'attr', 'subject', 'Phân quyền lĩnh vực cho tài khoản', 'API: Phân quyền lĩnh vực cho tài khoản');
INSERT INTO public.journal_details VALUES (20516, 15320, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20517, 15321, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20518, 15322, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20519, 15322, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20520, 15323, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20521, 15324, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20522, 15325, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20523, 15325, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20524, 15326, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20525, 15327, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20526, 15328, 'attr', 'due_date', '2021-07-12', '2021-07-19');
INSERT INTO public.journal_details VALUES (20527, 15328, 'attr', 'fixed_version_id', '147', '149');
INSERT INTO public.journal_details VALUES (20528, 15328, 'attr', 'start_date', '2021-07-12', '2021-07-19');
INSERT INTO public.journal_details VALUES (20529, 15329, 'attr', 'due_date', '2021-07-17', '2021-07-19');
INSERT INTO public.journal_details VALUES (20530, 15329, 'attr', 'fixed_version_id', '147', '149');
INSERT INTO public.journal_details VALUES (20531, 15329, 'attr', 'start_date', '2021-07-17', '2021-07-19');
INSERT INTO public.journal_details VALUES (20532, 15330, 'attr', 'due_date', '2021-07-17', '2021-07-19');
INSERT INTO public.journal_details VALUES (20533, 15330, 'attr', 'fixed_version_id', '147', '149');
INSERT INTO public.journal_details VALUES (20534, 15330, 'attr', 'start_date', '2021-07-16', '2021-07-19');
INSERT INTO public.journal_details VALUES (20535, 15331, 'attr', 'due_date', '2021-07-19', '2021-07-22');
INSERT INTO public.journal_details VALUES (20536, 15331, 'attr', 'start_date', '2021-07-19', '2021-07-21');
INSERT INTO public.journal_details VALUES (20537, 15332, 'attr', 'due_date', '2021-07-19', '2021-07-20');
INSERT INTO public.journal_details VALUES (20538, 15333, 'attr', 'due_date', NULL, '2021-07-24');
INSERT INTO public.journal_details VALUES (20539, 15333, 'attr', 'fixed_version_id', '143', '149');
INSERT INTO public.journal_details VALUES (20540, 15333, 'attr', 'start_date', NULL, '2021-07-23');
INSERT INTO public.journal_details VALUES (20541, 15334, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20542, 15335, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20543, 15336, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20544, 15336, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20545, 15337, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20546, 15337, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20547, 15338, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20548, 15339, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20549, 15340, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20550, 15341, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20551, 15342, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20552, 15343, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20553, 15344, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20554, 15345, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20555, 15346, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20556, 15347, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20557, 15348, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20558, 15349, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20559, 15350, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20560, 15351, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20561, 15352, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20562, 15353, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20563, 15354, 'attr', 'fixed_version_id', '150', '151');
INSERT INTO public.journal_details VALUES (20564, 15355, 'attr', 'subject', 'Check lại báo cáo quý, báo cáo năm theo công thức', 'Điều 15 - Check lại báo cáo quý, báo cáo năm theo công thức');
INSERT INTO public.journal_details VALUES (20565, 15356, 'attr', 'fixed_version_id', NULL, '151');
INSERT INTO public.journal_details VALUES (20566, 15357, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (20567, 15358, 'attr', 'subject', 'Điều 18 - Thêm cột số liệu của tỉnh', 'Điều 18 - Thêm cột số liệu của tỉnh, 01/CDT, 01CQTH');
INSERT INTO public.journal_details VALUES (20568, 15359, 'attr', 'subject', 'Điều 15 - Lỗi hiển thị dropdown quý - năm', 'Điều 15 - Lỗi hiển thị dropdown quý - năm (bỏ luôn - chuyển qua xử lý dữ liệu sql)');
INSERT INTO public.journal_details VALUES (20569, 15360, 'attr', 'fixed_version_id', '151', '75');
INSERT INTO public.journal_details VALUES (20570, 15361, 'attr', 'fixed_version_id', '75', '151');
INSERT INTO public.journal_details VALUES (20575, 15364, 'attr', 'start_date', '2021-08-27', '2021-08-30');
INSERT INTO public.journal_details VALUES (20576, 15365, 'attr', 'due_date', NULL, '2021-08-28');
INSERT INTO public.journal_details VALUES (20577, 15365, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20578, 15365, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (20579, 15365, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20580, 15366, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (20581, 15367, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (20582, 15368, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (20583, 15369, 'attr', 'due_date', NULL, '2021-08-28');
INSERT INTO public.journal_details VALUES (20584, 15369, 'attr', 'start_date', '2021-08-27', '2021-08-28');
INSERT INTO public.journal_details VALUES (20585, 15370, 'attr', 'due_date', NULL, '2021-08-28');
INSERT INTO public.journal_details VALUES (20586, 15370, 'attr', 'start_date', '2021-08-27', '2021-08-28');
INSERT INTO public.journal_details VALUES (20587, 15371, 'attr', 'due_date', NULL, '2021-08-28');
INSERT INTO public.journal_details VALUES (20588, 15371, 'attr', 'start_date', '2021-08-27', '2021-08-28');
INSERT INTO public.journal_details VALUES (20589, 15372, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (20590, 15373, 'attr', 'due_date', NULL, '2021-08-28');
INSERT INTO public.journal_details VALUES (20591, 15373, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (20592, 15373, 'attr', 'start_date', '2021-08-27', '2021-08-28');
INSERT INTO public.journal_details VALUES (20593, 15374, 'attr', 'due_date', '2021-08-30', '2021-08-28');
INSERT INTO public.journal_details VALUES (20594, 15374, 'attr', 'fixed_version_id', '150', '151');
INSERT INTO public.journal_details VALUES (20595, 15374, 'attr', 'start_date', '2021-08-30', '2021-08-28');
INSERT INTO public.journal_details VALUES (20599, 15376, 'attr', 'subject', 'Mẫu 12, điều 16, mục 1 chưa format thập phân pdf', 'Điều 16 - Mẫu 12, mục 1 chưa format thập phân pdf');
INSERT INTO public.journal_details VALUES (20600, 15376, 'attr', 'fixed_version_id', '151', '150');
INSERT INTO public.journal_details VALUES (20601, 15377, 'attr', 'due_date', '2021-08-28', '2021-08-30');
INSERT INTO public.journal_details VALUES (20602, 15377, 'attr', 'start_date', '2021-08-28', '2021-08-30');
INSERT INTO public.journal_details VALUES (20604, 15379, 'attr', 'subject', 'Điều 16 - Xuất excel từng phiên bản ở cùng 1 mẫu', '[B] Điều 16 - Xuất excel từng phiên bản ở cùng 1 mẫu');
INSERT INTO public.journal_details VALUES (20605, 15380, 'attr', 'due_date', NULL, '2021-08-30');
INSERT INTO public.journal_details VALUES (20606, 15380, 'attr', 'start_date', NULL, '2021-08-30');
INSERT INTO public.journal_details VALUES (20610, 15382, 'relation', 'copied_to', NULL, '4483');
INSERT INTO public.journal_details VALUES (20611, 15383, 'relation', 'copied_from', NULL, '4457');
INSERT INTO public.journal_details VALUES (20612, 15384, 'attr', 'due_date', '2021-08-30', '2021-08-31');
INSERT INTO public.journal_details VALUES (20613, 15384, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (20614, 15384, 'attr', 'start_date', '2021-08-30', '2021-08-31');
INSERT INTO public.journal_details VALUES (20615, 15385, 'attr', 'due_date', '2021-08-30', '2021-08-31');
INSERT INTO public.journal_details VALUES (20616, 15385, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (20617, 15385, 'attr', 'start_date', '2021-08-30', '2021-08-31');
INSERT INTO public.journal_details VALUES (20618, 15386, 'attr', 'due_date', '2021-08-30', '2021-08-31');
INSERT INTO public.journal_details VALUES (20619, 15386, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (20620, 15386, 'attr', 'start_date', '2021-08-30', '2021-08-31');
INSERT INTO public.journal_details VALUES (20621, 15387, 'attr', 'due_date', '2021-08-30', '2021-08-31');
INSERT INTO public.journal_details VALUES (20622, 15387, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (20623, 15387, 'attr', 'start_date', '2021-08-30', '2021-08-31');
INSERT INTO public.journal_details VALUES (20624, 15388, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (20625, 15389, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (20627, 15390, 'attr', 'assigned_to_id', NULL, '52');
INSERT INTO public.journal_details VALUES (20628, 15390, 'attr', 'start_date', '2021-08-30', '2021-08-31');
INSERT INTO public.journal_details VALUES (20629, 15391, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (20630, 15392, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (20631, 15393, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (20632, 15394, 'attr', 'fixed_version_id', '150', '75');
INSERT INTO public.journal_details VALUES (20633, 15395, 'attr', 'fixed_version_id', '150', '75');
INSERT INTO public.journal_details VALUES (20634, 15396, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (20635, 15397, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (20636, 15398, 'attachment', '206', NULL, 'thiet lap don vi.png');
INSERT INTO public.journal_details VALUES (20637, 15398, 'attr', 'description', '', '![](thiet%20lap%20don%20vi.png)');
INSERT INTO public.journal_details VALUES (20638, 15399, 'attr', 'due_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20639, 15399, 'attr', 'start_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20640, 15400, 'attr', 'due_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20641, 15400, 'attr', 'start_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20642, 15401, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20643, 15402, 'attachment', '206', 'thiet lap don vi.png', NULL);
INSERT INTO public.journal_details VALUES (20644, 15403, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (20645, 15404, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20646, 15405, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (20647, 15406, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20648, 15407, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20649, 15408, 'attachment', '207', NULL, 'thiet lap linh vuc trong dieu 12 mau 06; dieu 13, PL5.png');
INSERT INTO public.journal_details VALUES (20650, 15408, 'attr', 'description', '![](thiet%20lap%20don%20vi.png)', '![](thiet%20lap%20linh%20vuc%20trong%20dieu%2012%20mau%2006%3B%20dieu%2013%2C%20PL5.png)
');
INSERT INTO public.journal_details VALUES (20651, 15409, 'attr', 'description', '![](thiet%20lap%20linh%20vuc%20trong%20dieu%2012%20mau%2006%3B%20dieu%2013%2C%20PL5.png)
', '=> SYS_DonVi.Dieu1213_LinhVuc_Id

![](thiet%20lap%20linh%20vuc%20trong%20dieu%2012%20mau%2006%3B%20dieu%2013%2C%20PL5.png)
');
INSERT INTO public.journal_details VALUES (20652, 15410, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20653, 15410, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20654, 15411, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20655, 15411, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20656, 15412, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20657, 15412, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20658, 15413, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20659, 15413, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20660, 15414, 'attr', 'due_date', '2021-08-30', NULL);
INSERT INTO public.journal_details VALUES (20661, 15414, 'attr', 'start_date', '2021-08-30', NULL);
INSERT INTO public.journal_details VALUES (20662, 15415, 'attr', 'due_date', '2021-08-30', NULL);
INSERT INTO public.journal_details VALUES (20663, 15415, 'attr', 'start_date', '2021-08-30', NULL);
INSERT INTO public.journal_details VALUES (20666, 15417, 'attr', 'due_date', '2021-08-31', '2021-08-30');
INSERT INTO public.journal_details VALUES (20667, 15417, 'attr', 'start_date', '2021-08-31', '2021-08-30');
INSERT INTO public.journal_details VALUES (20668, 15418, 'attr', 'due_date', '2021-08-31', '2021-08-30');
INSERT INTO public.journal_details VALUES (20669, 15418, 'attr', 'start_date', '2021-08-31', '2021-08-30');
INSERT INTO public.journal_details VALUES (20670, 15419, 'attr', 'due_date', '2021-08-31', '2021-08-30');
INSERT INTO public.journal_details VALUES (20671, 15419, 'attr', 'start_date', '2021-08-31', '2021-08-30');
INSERT INTO public.journal_details VALUES (20672, 15420, 'attr', 'due_date', '2021-08-31', '2021-08-30');
INSERT INTO public.journal_details VALUES (20673, 15420, 'attr', 'start_date', '2021-08-31', '2021-08-30');
INSERT INTO public.journal_details VALUES (20674, 15421, 'attr', 'due_date', '2021-08-31', '2021-08-30');
INSERT INTO public.journal_details VALUES (20675, 15421, 'attr', 'start_date', '2021-08-31', '2021-08-30');
INSERT INTO public.journal_details VALUES (20676, 15422, 'attr', 'due_date', '2021-08-31', '2021-08-30');
INSERT INTO public.journal_details VALUES (20677, 15422, 'attr', 'start_date', '2021-08-31', '2021-08-30');
INSERT INTO public.journal_details VALUES (20678, 15423, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (20679, 15424, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20680, 15425, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20681, 15426, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20682, 15427, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20683, 15428, 'attr', 'due_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20684, 15428, 'attr', 'start_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20685, 15429, 'attr', 'due_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20686, 15429, 'attr', 'start_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20687, 15430, 'attr', 'due_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20688, 15430, 'attr', 'start_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20689, 15431, 'attr', 'due_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20690, 15431, 'attr', 'start_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20691, 15432, 'attr', 'due_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20692, 15432, 'attr', 'start_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20693, 15433, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20694, 15434, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20695, 15435, 'attr', 'due_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20696, 15435, 'attr', 'start_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20697, 15436, 'attr', 'due_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20698, 15436, 'attr', 'start_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20701, 15438, 'attr', 'due_date', '2021-08-30', '2021-09-04');
INSERT INTO public.journal_details VALUES (20702, 15438, 'attr', 'start_date', '2021-08-30', '2021-09-04');
INSERT INTO public.journal_details VALUES (20703, 15439, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20704, 15440, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20705, 15441, 'attr', 'due_date', '2021-08-30', '2021-09-03');
INSERT INTO public.journal_details VALUES (20706, 15441, 'attr', 'start_date', '2021-08-30', '2021-09-03');
INSERT INTO public.journal_details VALUES (20707, 15442, 'attr', 'due_date', '2021-08-30', '2021-09-03');
INSERT INTO public.journal_details VALUES (20708, 15442, 'attr', 'start_date', '2021-08-30', '2021-09-03');
INSERT INTO public.journal_details VALUES (20709, 15443, 'attr', 'due_date', '2021-08-30', '2021-09-03');
INSERT INTO public.journal_details VALUES (20710, 15443, 'attr', 'start_date', '2021-08-30', '2021-09-03');
INSERT INTO public.journal_details VALUES (20711, 15444, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20712, 15445, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20713, 15446, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20714, 15447, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20715, 15448, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20716, 15448, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20717, 15449, 'attr', 'due_date', '2021-08-27', '2021-09-04');
INSERT INTO public.journal_details VALUES (20718, 15449, 'attr', 'fixed_version_id', '151', '150');
INSERT INTO public.journal_details VALUES (20719, 15449, 'attr', 'start_date', '2021-08-27', '2021-09-04');
INSERT INTO public.journal_details VALUES (20720, 15450, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20721, 15451, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20722, 15452, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20723, 15453, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20724, 15454, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20725, 15455, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20726, 15456, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20727, 15457, 'attr', 'due_date', NULL, '2021-08-31');
INSERT INTO public.journal_details VALUES (20728, 15458, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20729, 15459, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20730, 15460, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20731, 15461, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20732, 15462, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20733, 15463, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20734, 15464, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20735, 15465, 'attr', 'due_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20736, 15465, 'attr', 'start_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20737, 15466, 'attr', 'due_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20738, 15466, 'attr', 'start_date', '2021-08-30', '2021-09-01');
INSERT INTO public.journal_details VALUES (20739, 15467, 'attr', 'due_date', '2021-08-31', '2021-09-01');
INSERT INTO public.journal_details VALUES (20740, 15467, 'attr', 'start_date', '2021-08-31', '2021-09-01');
INSERT INTO public.journal_details VALUES (20741, 15468, 'attr', 'assigned_to_id', '37', '8');
INSERT INTO public.journal_details VALUES (20742, 15469, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20743, 15470, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20744, 15471, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20745, 15472, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20746, 15473, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20747, 15474, 'attr', 'assigned_to_id', '41', '5');
INSERT INTO public.journal_details VALUES (20748, 15475, 'attr', 'due_date', '2021-09-01', '2021-09-04');
INSERT INTO public.journal_details VALUES (20749, 15475, 'attr', 'start_date', '2021-09-01', '2021-09-04');
INSERT INTO public.journal_details VALUES (20750, 15476, 'attr', 'due_date', '2021-09-01', '2021-09-04');
INSERT INTO public.journal_details VALUES (20751, 15476, 'attr', 'start_date', '2021-09-01', '2021-09-04');
INSERT INTO public.journal_details VALUES (20752, 15477, 'attr', 'due_date', '2021-09-01', '2021-09-04');
INSERT INTO public.journal_details VALUES (20753, 15477, 'attr', 'start_date', '2021-09-01', '2021-09-04');
INSERT INTO public.journal_details VALUES (20754, 15478, 'attr', 'due_date', '2021-09-03', '2021-09-04');
INSERT INTO public.journal_details VALUES (20755, 15478, 'attr', 'start_date', '2021-09-03', '2021-09-04');
INSERT INTO public.journal_details VALUES (20756, 15479, 'attr', 'due_date', '2021-09-03', '2021-09-04');
INSERT INTO public.journal_details VALUES (20757, 15479, 'attr', 'start_date', '2021-09-03', '2021-09-04');
INSERT INTO public.journal_details VALUES (20758, 15480, 'attr', 'due_date', '2021-09-01', '2021-09-04');
INSERT INTO public.journal_details VALUES (20759, 15480, 'attr', 'start_date', '2021-09-01', '2021-09-04');
INSERT INTO public.journal_details VALUES (20760, 15481, 'attr', 'due_date', '2021-09-01', '2021-09-04');
INSERT INTO public.journal_details VALUES (20761, 15481, 'attr', 'start_date', '2021-09-01', '2021-09-04');
INSERT INTO public.journal_details VALUES (20762, 15482, 'attr', 'due_date', '2021-09-01', '2021-09-04');
INSERT INTO public.journal_details VALUES (20763, 15482, 'attr', 'start_date', '2021-09-01', '2021-09-04');
INSERT INTO public.journal_details VALUES (20764, 15483, 'attr', 'due_date', '2021-09-01', '2021-09-04');
INSERT INTO public.journal_details VALUES (20765, 15483, 'attr', 'start_date', '2021-09-01', '2021-09-04');
INSERT INTO public.journal_details VALUES (20766, 15484, 'attr', 'due_date', '2021-09-03', '2021-09-04');
INSERT INTO public.journal_details VALUES (20767, 15484, 'attr', 'start_date', '2021-09-03', '2021-09-04');
INSERT INTO public.journal_details VALUES (20770, 15486, 'attr', 'due_date', '2021-09-04', '2021-09-06');
INSERT INTO public.journal_details VALUES (20771, 15486, 'attr', 'start_date', '2021-09-04', '2021-09-06');
INSERT INTO public.journal_details VALUES (20773, 15488, 'attr', 'fixed_version_id', '150', '152');
INSERT INTO public.journal_details VALUES (20774, 15489, 'attr', 'subject', 'Gộp dữ liệu sở nn, sở y tế, sở gtvt vào 116', 'Điều 15: Gộp dữ liệu sở nn, sở y tế, sở gtvt vào 116');
INSERT INTO public.journal_details VALUES (20775, 15490, 'attr', 'assigned_to_id', '8', '37');
INSERT INTO public.journal_details VALUES (20776, 15491, 'attr', 'assigned_to_id', '8', '37');
INSERT INTO public.journal_details VALUES (20777, 15492, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20778, 15492, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20779, 15493, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20780, 15493, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20781, 15494, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20782, 15494, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20783, 15495, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20784, 15495, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20785, 15496, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20786, 15497, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20787, 15498, 'attr', 'assigned_to_id', NULL, '53');
INSERT INTO public.journal_details VALUES (20788, 15499, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20789, 15500, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20790, 15501, 'attr', 'assigned_to_id', '5', '41');
INSERT INTO public.journal_details VALUES (20791, 15502, 'attr', 'due_date', '2021-09-04', '2021-09-08');
INSERT INTO public.journal_details VALUES (20792, 15502, 'attr', 'start_date', '2021-09-04', '2021-09-08');
INSERT INTO public.journal_details VALUES (20793, 15503, 'attr', 'fixed_version_id', '150', '152');
INSERT INTO public.journal_details VALUES (20796, 15505, 'attr', 'due_date', '2021-09-06', '2021-09-09');
INSERT INTO public.journal_details VALUES (20797, 15505, 'attr', 'start_date', '2021-09-06', '2021-09-09');
INSERT INTO public.journal_details VALUES (20798, 15506, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20799, 15507, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20800, 15508, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20801, 15509, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20802, 15510, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20803, 15511, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20804, 15512, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20805, 15513, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20806, 15514, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20807, 15515, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20808, 15516, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20809, 15516, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20810, 15517, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20811, 15517, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20812, 15518, 'attr', 'assigned_to_id', '5', '41');
INSERT INTO public.journal_details VALUES (20813, 15519, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20814, 15520, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20815, 15521, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20816, 15522, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20820, 15524, 'attr', 'due_date', '2021-09-09', NULL);
INSERT INTO public.journal_details VALUES (20821, 15524, 'attr', 'fixed_version_id', '152', '75');
INSERT INTO public.journal_details VALUES (20822, 15524, 'attr', 'start_date', '2021-09-09', NULL);
INSERT INTO public.journal_details VALUES (20823, 15525, 'attr', 'due_date', '2021-09-07', NULL);
INSERT INTO public.journal_details VALUES (20824, 15525, 'attr', 'fixed_version_id', '152', '75');
INSERT INTO public.journal_details VALUES (20825, 15525, 'attr', 'start_date', '2021-09-07', NULL);
INSERT INTO public.journal_details VALUES (20826, 15526, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20827, 15527, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (20828, 15528, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20829, 15529, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (20830, 15530, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20831, 15530, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20832, 15531, 'attr', 'fixed_version_id', '150', '153');
INSERT INTO public.journal_details VALUES (20833, 15532, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20834, 15533, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20835, 15534, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20836, 15535, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20837, 15536, 'attr', 'fixed_version_id', '153', '152');
INSERT INTO public.journal_details VALUES (20838, 15537, 'attr', 'due_date', '2021-09-04', '2021-09-13');
INSERT INTO public.journal_details VALUES (20839, 15537, 'attr', 'start_date', '2021-09-04', '2021-09-13');
INSERT INTO public.journal_details VALUES (20840, 15538, 'attr', 'assigned_to_id', NULL, '5');
INSERT INTO public.journal_details VALUES (20841, 15539, 'attr', 'fixed_version_id', '153', '152');
INSERT INTO public.journal_details VALUES (20842, 15540, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20843, 15541, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20844, 15542, 'attr', 'subject', 'Điều 18, 02cđt: bấm vào thêm dữ liệu báo lỗi', 'Điều 18, 04cđt: bấm vào thêm dữ liệu báo lỗi');
INSERT INTO public.journal_details VALUES (20845, 15543, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20846, 15544, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20847, 15545, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (20848, 15546, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (20849, 15547, 'attr', 'fixed_version_id', '153', '152');
INSERT INTO public.journal_details VALUES (20850, 15548, 'attr', 'fixed_version_id', '153', '152');
INSERT INTO public.journal_details VALUES (20851, 15549, 'attr', 'due_date', '2021-09-13', '2021-09-11');
INSERT INTO public.journal_details VALUES (20852, 15549, 'attr', 'start_date', '2021-09-13', '2021-09-11');
INSERT INTO public.journal_details VALUES (20854, 15551, 'attr', 'fixed_version_id', '75', '153');
INSERT INTO public.journal_details VALUES (20855, 15552, 'attr', 'fixed_version_id', '75', '153');
INSERT INTO public.journal_details VALUES (20858, 15554, 'attr', 'due_date', NULL, '2021-09-13');
INSERT INTO public.journal_details VALUES (20859, 15554, 'attr', 'start_date', NULL, '2021-09-13');
INSERT INTO public.journal_details VALUES (20860, 15555, 'attr', 'due_date', NULL, '2021-09-13');
INSERT INTO public.journal_details VALUES (20861, 15555, 'attr', 'start_date', NULL, '2021-09-13');
INSERT INTO public.journal_details VALUES (20862, 15556, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20863, 15557, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20864, 15558, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20865, 15559, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20866, 15560, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20867, 15561, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20868, 15562, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20869, 15563, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20870, 15564, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20871, 15565, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20872, 15566, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20873, 15567, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20874, 15568, 'attr', 'subject', 'Điều 9, mẫu 1.1: Làm lại mẫu', 'Điều 9: làm lại mẫu 1.1');
INSERT INTO public.journal_details VALUES (20875, 15569, 'attr', 'subject', 'Điều 9: thêm xóa sửa dự án', 'Điều 9, mẫu 1.1: Thêm/xóa/sửa dự án');
INSERT INTO public.journal_details VALUES (20876, 15569, 'attr', 'due_date', '2021-09-13', '2021-09-15');
INSERT INTO public.journal_details VALUES (20878, 15571, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20879, 15571, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20880, 15572, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20881, 15572, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20882, 15573, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20883, 15573, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (20884, 15573, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20885, 15574, 'attr', 'assigned_to_id', '37', '8');
INSERT INTO public.journal_details VALUES (20886, 15575, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20887, 15576, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20888, 15577, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20889, 15578, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20890, 15579, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20891, 15580, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20892, 15581, 'attr', 'due_date', '2021-09-13', '2021-09-20');
INSERT INTO public.journal_details VALUES (20893, 15581, 'attr', 'fixed_version_id', '153', '154');
INSERT INTO public.journal_details VALUES (20894, 15581, 'attr', 'start_date', '2021-09-13', '2021-09-20');
INSERT INTO public.journal_details VALUES (20895, 15582, 'attr', 'due_date', '2021-09-15', '2021-09-20');
INSERT INTO public.journal_details VALUES (20896, 15582, 'attr', 'fixed_version_id', '153', '154');
INSERT INTO public.journal_details VALUES (20897, 15582, 'attr', 'start_date', '2021-09-13', '2021-09-20');
INSERT INTO public.journal_details VALUES (20898, 15583, 'attr', 'due_date', '2021-09-15', '2021-09-20');
INSERT INTO public.journal_details VALUES (20899, 15583, 'attr', 'fixed_version_id', '153', '154');
INSERT INTO public.journal_details VALUES (20900, 15583, 'attr', 'start_date', '2021-09-15', '2021-09-20');
INSERT INTO public.journal_details VALUES (20901, 15584, 'attr', 'due_date', '2021-09-17', '2021-09-20');
INSERT INTO public.journal_details VALUES (20902, 15584, 'attr', 'fixed_version_id', '153', '154');
INSERT INTO public.journal_details VALUES (20903, 15584, 'attr', 'start_date', '2021-09-17', '2021-09-20');
INSERT INTO public.journal_details VALUES (20904, 15585, 'attr', 'due_date', '2021-09-18', '2021-09-20');
INSERT INTO public.journal_details VALUES (20905, 15585, 'attr', 'fixed_version_id', '153', '154');
INSERT INTO public.journal_details VALUES (20906, 15585, 'attr', 'start_date', '2021-09-18', '2021-09-20');
INSERT INTO public.journal_details VALUES (20907, 15586, 'attr', 'due_date', '2021-09-18', '2021-09-20');
INSERT INTO public.journal_details VALUES (20908, 15586, 'attr', 'fixed_version_id', '153', '154');
INSERT INTO public.journal_details VALUES (20909, 15586, 'attr', 'start_date', '2021-09-18', '2021-09-20');
INSERT INTO public.journal_details VALUES (20910, 15587, 'attr', 'fixed_version_id', '153', '154');
INSERT INTO public.journal_details VALUES (20911, 15588, 'attr', 'description', '', 'Mẫu 1.02 link từ 1.01 (5->3; 7-->; 14-->6; 16-->7)');
INSERT INTO public.journal_details VALUES (20912, 15589, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20913, 15590, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20914, 15591, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20915, 15592, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20916, 15593, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20917, 15594, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20918, 15595, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20919, 15596, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20920, 15597, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20921, 15598, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20922, 15599, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20923, 15600, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20924, 15601, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20925, 15602, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20926, 15603, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20927, 15604, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20928, 15605, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20929, 15606, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20930, 15607, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20931, 15608, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20932, 15609, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20933, 15610, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20934, 15611, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20935, 15612, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20936, 15613, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20937, 15614, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20938, 15615, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20939, 15616, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20940, 15617, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20941, 15618, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20942, 15619, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20943, 15620, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20944, 15621, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20945, 15622, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20946, 15623, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20947, 15623, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20948, 15624, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20949, 15624, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20950, 15625, 'attr', 'tracker_id', '1', '2');
INSERT INTO public.journal_details VALUES (20951, 15626, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20952, 15626, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20953, 15627, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20954, 15627, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20955, 15628, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20956, 15628, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20957, 15629, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20958, 15629, 'attr', 'assigned_to_id', '52', '37');
INSERT INTO public.journal_details VALUES (20959, 15630, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20960, 15631, 'attr', 'fixed_version_id', '153', '154');
INSERT INTO public.journal_details VALUES (20961, 15632, 'attr', 'due_date', '2021-09-14', '2021-09-25');
INSERT INTO public.journal_details VALUES (20962, 15632, 'attr', 'start_date', '2021-09-14', '2021-09-25');
INSERT INTO public.journal_details VALUES (20963, 15633, 'attr', 'fixed_version_id', '154', '155');
INSERT INTO public.journal_details VALUES (20964, 15634, 'attr', 'fixed_version_id', '154', '155');
INSERT INTO public.journal_details VALUES (20965, 15635, 'attr', 'due_date', '2021-09-20', '2021-09-27');
INSERT INTO public.journal_details VALUES (20966, 15635, 'attr', 'start_date', '2021-09-20', '2021-09-27');
INSERT INTO public.journal_details VALUES (20967, 15636, 'attr', 'due_date', '2021-09-20', '2021-09-27');
INSERT INTO public.journal_details VALUES (20968, 15636, 'attr', 'start_date', '2021-09-20', '2021-09-27');
INSERT INTO public.journal_details VALUES (20969, 15637, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20970, 15638, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20971, 15639, 'attr', 'fixed_version_id', '155', '154');
INSERT INTO public.journal_details VALUES (20972, 15640, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20973, 15641, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20974, 15642, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20975, 15643, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20976, 15644, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20977, 15645, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20978, 15646, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20979, 15647, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20980, 15648, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20981, 15649, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20982, 15650, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20983, 15651, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20984, 15652, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20985, 15653, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20986, 15654, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20987, 15655, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20988, 15656, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (20989, 15657, 'attr', 'assigned_to_id', NULL, '52');
INSERT INTO public.journal_details VALUES (20990, 15658, 'attr', 'assigned_to_id', NULL, '52');
INSERT INTO public.journal_details VALUES (20991, 15659, 'attr', 'assigned_to_id', NULL, '52');
INSERT INTO public.journal_details VALUES (20992, 15660, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (20993, 15661, 'attr', 'assigned_to_id', NULL, '53');
INSERT INTO public.journal_details VALUES (20994, 15662, 'attr', 'subject', 'Điều 18, 04CĐT: thêm cột nguồn vốn từ excel vào Dieu18_DM_DuAn', 'Điều 18, 04CĐT: import cột nguồn vốn từ excel vào Dieu18_DM_DuAn');
INSERT INTO public.journal_details VALUES (20995, 15662, 'attr', 'description', '', 'Mục đích để hiển thị dữ liệu
Nguồn vốn: ....
Trong báo cáo 04cđt');
INSERT INTO public.journal_details VALUES (20996, 15663, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (20997, 15664, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20998, 15665, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (20999, 15666, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21000, 15667, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21001, 15668, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21002, 15669, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21003, 15670, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21004, 15671, 'attr', 'assigned_to_id', '52', '41');
INSERT INTO public.journal_details VALUES (21005, 15672, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21006, 15673, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21007, 15674, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21008, 15675, 'attr', 'done_ratio', '0', '90');
INSERT INTO public.journal_details VALUES (21009, 15676, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21010, 15677, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21011, 15678, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21012, 15679, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21013, 15680, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21014, 15681, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21015, 15682, 'attr', 'done_ratio', '90', '100');
INSERT INTO public.journal_details VALUES (21016, 15683, 'attr', 'start_date', '2021-11-01', '2021-11-02');
INSERT INTO public.journal_details VALUES (21017, 15684, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21018, 15684, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21019, 15685, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21020, 15686, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21021, 15687, 'attr', 'start_date', '2021-11-11', '2021-11-12');
INSERT INTO public.journal_details VALUES (21022, 15688, 'attr', 'due_date', NULL, '2021-11-12');
INSERT INTO public.journal_details VALUES (21023, 15688, 'attr', 'start_date', '2021-11-11', '2021-11-12');
INSERT INTO public.journal_details VALUES (21024, 15689, 'attr', 'subject', 'Demo cho Tân Phát', 'Tiến & Quý demo cho Tân Phát');
INSERT INTO public.journal_details VALUES (21025, 15689, 'attr', 'description', 'Tiến & Quý', 'Kho Tân Phát => liên kết dữ liệu với Xây Dựng
Quy trình nhập vật tư
Quy trình sản xuất sản phẩm');
INSERT INTO public.journal_details VALUES (21026, 15690, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21027, 15690, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21028, 15691, 'attr', 'due_date', '2021-11-15', '2021-11-19');
INSERT INTO public.journal_details VALUES (21029, 15691, 'attr', 'start_date', '2021-11-15', '2021-11-19');
INSERT INTO public.journal_details VALUES (21030, 15692, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (21031, 15693, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21032, 15694, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21033, 15695, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21034, 15696, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21035, 15697, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21036, 15698, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21037, 15699, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21038, 15700, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21039, 15701, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21040, 15702, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21041, 15703, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21042, 15703, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21043, 15704, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (21044, 15704, 'attr', 'fixed_version_id', NULL, '159');
INSERT INTO public.journal_details VALUES (21045, 15705, 'attr', 'fixed_version_id', '158', '159');
INSERT INTO public.journal_details VALUES (21046, 15706, 'attr', 'due_date', '2021-11-25', '2021-11-29');
INSERT INTO public.journal_details VALUES (21047, 15706, 'attr', 'start_date', '2021-11-25', '2021-11-29');
INSERT INTO public.journal_details VALUES (21048, 15707, 'attr', 'due_date', '2021-11-26', '2021-11-29');
INSERT INTO public.journal_details VALUES (21049, 15707, 'attr', 'start_date', '2021-11-26', '2021-11-29');
INSERT INTO public.journal_details VALUES (21050, 15708, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (21051, 15709, 'attr', 'assigned_to_id', NULL, '37');
INSERT INTO public.journal_details VALUES (21052, 15710, 'attr', 'assigned_to_id', NULL, '8');
INSERT INTO public.journal_details VALUES (21053, 15711, 'attr', 'assigned_to_id', NULL, '41');
INSERT INTO public.journal_details VALUES (21054, 15712, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21055, 15712, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21056, 15713, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21057, 15713, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21058, 15714, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (21059, 15715, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (21060, 15716, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (21061, 15717, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (21062, 15718, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21063, 15719, 'attr', 'status_id', '2', '5');
INSERT INTO public.journal_details VALUES (21064, 15720, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (21065, 15721, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (21066, 15722, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (21067, 15723, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (21068, 15724, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (21069, 15725, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (21070, 15726, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (21071, 15727, 'attr', 'status_id', '3', '5');
INSERT INTO public.journal_details VALUES (21072, 15728, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (21073, 15729, 'attr', 'status_id', '1', '5');
INSERT INTO public.journal_details VALUES (21074, 15730, 'attr', 'start_date', '2022-06-21', '2022-06-20');
INSERT INTO public.journal_details VALUES (21075, 15731, 'attr', 'subject', '2.2.3 api /dulieu/DanhMucTaiNguyenTinh', '2.2.4 api /dulieu/DanhMucTaiNguyenTinh');
INSERT INTO public.journal_details VALUES (21076, 15732, 'attr', 'subject', '2.2.3 api /hosokekhai/GiaTinhThueTaiNguyen', '2.2.4 api /dulieu/DanhMucTaiNguyenTinh');
INSERT INTO public.journal_details VALUES (21077, 15732, 'attr', 'due_date', '2022-06-20', '2022-06-21');
INSERT INTO public.journal_details VALUES (21078, 15733, 'attr', 'subject', '2.2.4 api /dulieu/DanhMucTaiNguyenTinh', '2.2.3 api /hosokekhai/GiaTinhThueTaiNguyen');
INSERT INTO public.journal_details VALUES (21079, 15734, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21080, 15735, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21081, 15736, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21082, 15737, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21083, 15738, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (21084, 15739, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (21085, 15740, 'attr', 'status_id', '1', '2');
INSERT INTO public.journal_details VALUES (21086, 15741, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (21087, 15742, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21088, 15743, 'attr', 'fixed_version_id', NULL, '164');
INSERT INTO public.journal_details VALUES (21089, 15744, 'attr', 'fixed_version_id', NULL, '164');
INSERT INTO public.journal_details VALUES (21090, 15745, 'attr', 'fixed_version_id', NULL, '164');
INSERT INTO public.journal_details VALUES (21091, 15746, 'attr', 'fixed_version_id', NULL, '164');
INSERT INTO public.journal_details VALUES (21092, 15747, 'attr', 'fixed_version_id', NULL, '164');
INSERT INTO public.journal_details VALUES (21093, 15748, 'attr', 'fixed_version_id', '165', '164');
INSERT INTO public.journal_details VALUES (21094, 15749, 'attr', 'subject', 'Trong admin chuyển flatform thành danh mục', 'Trong admin/chức năng chuyển trường flatform thành danh mục');
INSERT INTO public.journal_details VALUES (21095, 15750, 'attr', 'subject', 'Trong admin/chức năng chuyển trường flatform thành danh mục', 'Trong admin/chức năng chuyển trường flatform thành danh mục phân hệ');
INSERT INTO public.journal_details VALUES (21096, 15751, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21097, 15752, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21098, 15753, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21099, 15754, 'attr', 'assigned_to_id', NULL, '57');
INSERT INTO public.journal_details VALUES (21100, 15755, 'attr', 'assigned_to_id', NULL, '56');
INSERT INTO public.journal_details VALUES (21101, 15756, 'attr', 'assigned_to_id', NULL, '56');
INSERT INTO public.journal_details VALUES (21102, 15757, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21103, 15758, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21104, 15759, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21105, 15760, 'attachment', '216', NULL, 'clipboard-202210310908-hjvtw.png');
INSERT INTO public.journal_details VALUES (21106, 15760, 'attachment', '217', NULL, 'clipboard-202210310908-hmatw.png');
INSERT INTO public.journal_details VALUES (21107, 15760, 'attr', 'description', 'Dữ liệu như sau:
Quản lý cung cầu lao động
Quản lý báo cáo định kỳ', 'Dữ liệu như sau:
Quản lý cung cầu lao động
Quản lý báo cáo định kỳ

Khi chọn phân hệ thì load nhóm chức năng và chức năng theo phân hệ tương ứng
Khi thêm mới nhóm chức năng và chức năng thì mặc định FlatForm là phân hệ đang chọn
Chỉnh sửa nhóm chức năng và chức năng, khi thay đổi trường FlatForm

![](clipboard-202210310908-hjvtw.png)
![](clipboard-202210310908-hmatw.png)
');
INSERT INTO public.journal_details VALUES (21108, 15761, 'attr', 'status_id', '3', '2');
INSERT INTO public.journal_details VALUES (21109, 15761, 'attr', 'done_ratio', '100', '0');
INSERT INTO public.journal_details VALUES (21110, 15762, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21111, 15763, 'attachment', '218', NULL, 'clipboard-202211011032-cobpw.png');
INSERT INTO public.journal_details VALUES (21112, 15763, 'attr', 'description', 'Cho load theo dropdown phân hệ', 'Cho load theo dropdown phân hệ

![](clipboard-202211011032-cobpw.png)
');
INSERT INTO public.journal_details VALUES (21113, 15764, 'attachment', '219', NULL, 'clipboard-202211011032-h1yue.png');
INSERT INTO public.journal_details VALUES (21114, 15764, 'attr', 'description', 'Cho load theo dropdown phân hệ

![](clipboard-202211011032-cobpw.png)
', 'Cho load theo dropdown phân hệ

![](clipboard-202211011032-cobpw.png)
![](clipboard-202211011032-h1yue.png)
');
INSERT INTO public.journal_details VALUES (21115, 15765, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21116, 15766, 'attr', 'description', '', 'Quan hệ với chủ hộ
Một cô ô sin đi vừa mới nhận việc ra công an phường đăng ký tạm trú được anh cảnh sát khu vực phát cho tờ khai. Đến mục “quan hệ với chủ hộ” cô phân vân lắm. Không biết có nên khai thật hay không? Khai thật thì ngại chết. Cuối cùng cô quyết định ghi vào: 3 lần/ tuần.

Anh cảnh sát khu vực đọc xong buồn cười lắm, nhưng anh vẫn phải kiên trì giải thích:

– Chị ghi vậy không đúng, “quan hệ với chủ hộ” là chị phải ghi chị có quan hệ với chủ nhà như thế nào.

– Phải khai đúng hả anh.

– Tất nhiên là phải khai đúng rồi.

– Vậy chỗ này ngắn quá không khai đủ ạ.

– Có gì mà không đủ. Chị cứ ghi ngắn gọn là được.

– Nhưng mà ông chủ cứ thay đổi tư thế liên tục, mỗi ngày mỗi kiểu nên em không tả ngắn gọn được ạ

– Cảnh sát khu vực !!@@!!');
INSERT INTO public.journal_details VALUES (21117, 15766, 'attr', 'due_date', NULL, '2022-11-02');
INSERT INTO public.journal_details VALUES (21118, 15767, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (21119, 15768, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (21120, 15769, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21121, 15770, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21122, 15771, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21123, 15772, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21124, 15773, 'attr', 'status_id', '2', '3');
INSERT INTO public.journal_details VALUES (21125, 15774, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21126, 15775, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21127, 15776, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21128, 15777, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21129, 15778, 'attr', 'fixed_version_id', '165', '166');
INSERT INTO public.journal_details VALUES (21130, 15779, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21131, 15780, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21132, 15781, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21133, 15782, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21134, 15783, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21135, 15784, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21136, 15785, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21137, 15786, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21138, 15787, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21139, 15788, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21140, 15789, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21141, 15790, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21142, 15791, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21143, 15792, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21144, 15793, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21145, 15794, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21146, 15795, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21147, 15796, 'attr', 'status_id', '1', '3');
INSERT INTO public.journal_details VALUES (21148, 15797, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21149, 15798, 'attr', 'done_ratio', '0', '100');
INSERT INTO public.journal_details VALUES (21150, 15799, 'attr', 'done_ratio', '0', '100');


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

INSERT INTO public.journals VALUES (1, 2, 'Issue', 5, '', '2020-02-21 17:02:38+07', false);
INSERT INTO public.journals VALUES (2, 9, 'Issue', 8, '', '2020-02-22 08:07:38+07', false);
INSERT INTO public.journals VALUES (3, 9, 'Issue', 8, '', '2020-02-22 08:07:53+07', false);
INSERT INTO public.journals VALUES (4, 14, 'Issue', 8, '', '2020-02-22 08:11:55+07', false);
INSERT INTO public.journals VALUES (5, 2, 'Issue', 5, NULL, '2020-02-22 10:46:01+07', false);
INSERT INTO public.journals VALUES (6, 2, 'Issue', 5, NULL, '2020-02-22 10:46:06+07', false);
INSERT INTO public.journals VALUES (7, 3, 'Issue', 5, NULL, '2020-02-22 11:23:29+07', false);
INSERT INTO public.journals VALUES (8, 4, 'Issue', 5, NULL, '2020-02-22 11:23:29+07', false);
INSERT INTO public.journals VALUES (9, 3, 'Issue', 5, NULL, '2020-02-22 11:23:36+07', false);
INSERT INTO public.journals VALUES (10, 4, 'Issue', 5, NULL, '2020-02-22 11:23:36+07', false);
INSERT INTO public.journals VALUES (11, 16, 'Issue', 8, '', '2020-02-22 16:03:16+07', false);
INSERT INTO public.journals VALUES (12, 5, 'Issue', 5, '', '2020-02-24 08:19:28+07', false);
INSERT INTO public.journals VALUES (13, 6, 'Issue', 5, '', '2020-02-24 08:19:28+07', false);
INSERT INTO public.journals VALUES (14, 7, 'Issue', 5, '', '2020-02-24 08:19:28+07', false);
INSERT INTO public.journals VALUES (15, 8, 'Issue', 5, '', '2020-02-24 08:19:28+07', false);
INSERT INTO public.journals VALUES (16, 9, 'Issue', 5, NULL, '2020-02-24 08:30:47+07', false);
INSERT INTO public.journals VALUES (17, 10, 'Issue', 5, NULL, '2020-02-24 08:30:47+07', false);
INSERT INTO public.journals VALUES (18, 11, 'Issue', 5, NULL, '2020-02-24 08:30:47+07', false);
INSERT INTO public.journals VALUES (19, 12, 'Issue', 5, NULL, '2020-02-24 08:30:47+07', false);
INSERT INTO public.journals VALUES (20, 13, 'Issue', 5, NULL, '2020-02-24 08:30:47+07', false);
INSERT INTO public.journals VALUES (21, 14, 'Issue', 5, NULL, '2020-02-24 08:30:47+07', false);
INSERT INTO public.journals VALUES (22, 15, 'Issue', 5, NULL, '2020-02-24 08:30:47+07', false);
INSERT INTO public.journals VALUES (23, 16, 'Issue', 5, NULL, '2020-02-24 08:30:47+07', false);
INSERT INTO public.journals VALUES (24, 17, 'Issue', 5, NULL, '2020-02-24 08:30:48+07', false);
INSERT INTO public.journals VALUES (25, 19, 'Issue', 10, '', '2020-02-24 08:42:23+07', false);
INSERT INTO public.journals VALUES (26, 20, 'Issue', 10, '', '2020-02-24 08:56:09+07', false);
INSERT INTO public.journals VALUES (27, 21, 'Issue', 10, '', '2020-02-24 08:56:30+07', false);
INSERT INTO public.journals VALUES (28, 20, 'Issue', 10, '', '2020-02-24 08:56:43+07', false);
INSERT INTO public.journals VALUES (29, 20, 'Issue', 10, '', '2020-02-25 08:42:02+07', false);
INSERT INTO public.journals VALUES (30, 26, 'Issue', 10, '', '2020-02-25 08:42:38+07', false);
INSERT INTO public.journals VALUES (31, 27, 'Issue', 10, '', '2020-02-25 08:42:39+07', false);
INSERT INTO public.journals VALUES (32, 28, 'Issue', 10, '', '2020-02-25 08:42:39+07', false);
INSERT INTO public.journals VALUES (33, 29, 'Issue', 10, '', '2020-02-25 08:42:39+07', false);
INSERT INTO public.journals VALUES (34, 30, 'Issue', 10, '', '2020-02-25 08:42:39+07', false);
INSERT INTO public.journals VALUES (35, 31, 'Issue', 10, '', '2020-02-25 08:42:39+07', false);
INSERT INTO public.journals VALUES (36, 32, 'Issue', 10, '', '2020-02-25 08:42:39+07', false);
INSERT INTO public.journals VALUES (37, 27, 'Issue', 10, '', '2020-02-25 08:43:19+07', false);
INSERT INTO public.journals VALUES (38, 28, 'Issue', 10, '', '2020-02-25 08:43:19+07', false);
INSERT INTO public.journals VALUES (39, 29, 'Issue', 10, '', '2020-02-25 08:43:19+07', false);
INSERT INTO public.journals VALUES (40, 30, 'Issue', 10, '', '2020-02-25 08:43:19+07', false);
INSERT INTO public.journals VALUES (41, 31, 'Issue', 10, '', '2020-02-25 08:43:19+07', false);
INSERT INTO public.journals VALUES (42, 32, 'Issue', 10, '', '2020-02-25 08:43:19+07', false);
INSERT INTO public.journals VALUES (43, 28, 'Issue', 10, '', '2020-02-25 08:44:47+07', false);
INSERT INTO public.journals VALUES (44, 29, 'Issue', 10, '', '2020-02-25 08:44:47+07', false);
INSERT INTO public.journals VALUES (45, 30, 'Issue', 10, '', '2020-02-25 08:44:47+07', false);
INSERT INTO public.journals VALUES (46, 31, 'Issue', 10, '', '2020-02-25 08:44:47+07', false);
INSERT INTO public.journals VALUES (47, 32, 'Issue', 10, '', '2020-02-25 08:44:47+07', false);
INSERT INTO public.journals VALUES (48, 29, 'Issue', 10, '', '2020-02-25 08:45:11+07', false);
INSERT INTO public.journals VALUES (49, 30, 'Issue', 10, '', '2020-02-25 08:45:11+07', false);
INSERT INTO public.journals VALUES (50, 31, 'Issue', 10, '', '2020-02-25 08:45:11+07', false);
INSERT INTO public.journals VALUES (51, 32, 'Issue', 10, '', '2020-02-25 08:45:12+07', false);
INSERT INTO public.journals VALUES (52, 30, 'Issue', 10, '', '2020-02-25 08:45:32+07', false);
INSERT INTO public.journals VALUES (53, 31, 'Issue', 10, '', '2020-02-25 08:45:32+07', false);
INSERT INTO public.journals VALUES (54, 32, 'Issue', 10, '', '2020-02-25 08:45:32+07', false);
INSERT INTO public.journals VALUES (55, 18, 'Issue', 5, '', '2020-02-25 08:45:35+07', false);
INSERT INTO public.journals VALUES (56, 31, 'Issue', 10, '', '2020-02-25 08:45:50+07', false);
INSERT INTO public.journals VALUES (57, 32, 'Issue', 10, '', '2020-02-25 08:45:50+07', false);
INSERT INTO public.journals VALUES (58, 32, 'Issue', 10, '', '2020-02-25 08:46:05+07', false);
INSERT INTO public.journals VALUES (59, 18, 'Issue', 5, '', '2020-02-25 08:46:09+07', false);
INSERT INTO public.journals VALUES (60, 28, 'Issue', 10, '', '2020-02-25 08:49:12+07', false);
INSERT INTO public.journals VALUES (61, 30, 'Issue', 10, '', '2020-02-25 08:49:12+07', false);
INSERT INTO public.journals VALUES (62, 31, 'Issue', 10, '', '2020-02-25 08:49:12+07', false);
INSERT INTO public.journals VALUES (63, 32, 'Issue', 10, '', '2020-02-25 08:49:12+07', false);
INSERT INTO public.journals VALUES (64, 23, 'Issue', 5, NULL, '2020-02-25 08:49:31+07', false);
INSERT INTO public.journals VALUES (65, 25, 'Issue', 5, NULL, '2020-02-25 08:49:31+07', false);
INSERT INTO public.journals VALUES (66, 29, 'Issue', 10, '', '2020-02-25 08:49:33+07', false);
INSERT INTO public.journals VALUES (67, 32, 'Issue', 10, '', '2020-02-25 08:49:33+07', false);
INSERT INTO public.journals VALUES (68, 23, 'Issue', 5, NULL, '2020-02-25 08:49:45+07', false);
INSERT INTO public.journals VALUES (69, 25, 'Issue', 5, NULL, '2020-02-25 08:49:45+07', false);
INSERT INTO public.journals VALUES (70, 30, 'Issue', 10, '', '2020-02-25 08:50:27+07', false);
INSERT INTO public.journals VALUES (71, 31, 'Issue', 10, '', '2020-02-25 08:50:27+07', false);
INSERT INTO public.journals VALUES (72, 30, 'Issue', 10, '', '2020-02-25 08:50:49+07', false);
INSERT INTO public.journals VALUES (73, 31, 'Issue', 10, '', '2020-02-25 08:50:49+07', false);
INSERT INTO public.journals VALUES (74, 32, 'Issue', 10, '', '2020-02-25 08:50:50+07', false);
INSERT INTO public.journals VALUES (75, 31, 'Issue', 10, '', '2020-02-25 08:51:31+07', false);
INSERT INTO public.journals VALUES (76, 32, 'Issue', 10, '', '2020-02-25 08:51:31+07', false);
INSERT INTO public.journals VALUES (77, 32, 'Issue', 10, '', '2020-02-25 08:51:44+07', false);
INSERT INTO public.journals VALUES (78, 24, 'Issue', 5, NULL, '2020-02-25 13:42:01+07', false);
INSERT INTO public.journals VALUES (79, 24, 'Issue', 5, NULL, '2020-02-25 13:42:07+07', false);
INSERT INTO public.journals VALUES (80, 34, 'Issue', 5, NULL, '2020-02-26 11:04:09+07', false);
INSERT INTO public.journals VALUES (81, 35, 'Issue', 5, NULL, '2020-02-26 11:04:10+07', false);
INSERT INTO public.journals VALUES (82, 36, 'Issue', 5, NULL, '2020-02-26 11:04:10+07', false);
INSERT INTO public.journals VALUES (83, 34, 'Issue', 5, NULL, '2020-02-26 11:04:17+07', false);
INSERT INTO public.journals VALUES (84, 35, 'Issue', 5, NULL, '2020-02-26 11:04:18+07', false);
INSERT INTO public.journals VALUES (85, 36, 'Issue', 5, NULL, '2020-02-26 11:04:18+07', false);
INSERT INTO public.journals VALUES (86, 38, 'Issue', 8, '', '2020-02-26 14:36:29+07', false);
INSERT INTO public.journals VALUES (87, 40, 'Issue', 8, '', '2020-02-26 14:43:32+07', false);
INSERT INTO public.journals VALUES (88, 44, 'Issue', 8, '', '2020-02-26 15:08:11+07', false);
INSERT INTO public.journals VALUES (89, 20, 'Issue', 5, '', '2020-02-27 09:52:48+07', false);
INSERT INTO public.journals VALUES (90, 49, 'Issue', 5, NULL, '2020-02-27 09:53:01+07', false);
INSERT INTO public.journals VALUES (91, 49, 'Issue', 5, NULL, '2020-02-27 09:53:09+07', false);
INSERT INTO public.journals VALUES (92, 46, 'Issue', 5, NULL, '2020-02-27 09:53:20+07', false);
INSERT INTO public.journals VALUES (93, 46, 'Issue', 5, NULL, '2020-02-27 09:53:27+07', false);
INSERT INTO public.journals VALUES (94, 46, 'Issue', 10, NULL, '2020-02-27 10:03:04+07', false);
INSERT INTO public.journals VALUES (95, 46, 'Issue', 10, NULL, '2020-02-27 10:03:56+07', false);
INSERT INTO public.journals VALUES (96, 50, 'Issue', 10, '', '2020-02-27 10:05:56+07', false);
INSERT INTO public.journals VALUES (97, 20, 'Issue', 10, '', '2020-02-27 10:06:37+07', false);
INSERT INTO public.journals VALUES (98, 26, 'Issue', 5, '', '2020-02-27 11:02:10+07', false);
INSERT INTO public.journals VALUES (99, 27, 'Issue', 5, '', '2020-02-27 11:02:10+07', false);
INSERT INTO public.journals VALUES (100, 28, 'Issue', 5, '', '2020-02-27 11:02:10+07', false);
INSERT INTO public.journals VALUES (101, 29, 'Issue', 5, '', '2020-02-27 11:02:11+07', false);
INSERT INTO public.journals VALUES (102, 31, 'Issue', 5, '', '2020-02-27 11:02:11+07', false);
INSERT INTO public.journals VALUES (103, 32, 'Issue', 5, '', '2020-02-27 11:02:11+07', false);
INSERT INTO public.journals VALUES (104, 20, 'Issue', 5, '', '2020-02-27 11:02:31+07', false);
INSERT INTO public.journals VALUES (105, 47, 'Issue', 5, '', '2020-02-27 13:39:05+07', false);
INSERT INTO public.journals VALUES (106, 50, 'Issue', 10, NULL, '2020-02-27 13:48:47+07', false);
INSERT INTO public.journals VALUES (107, 52, 'Issue', 10, NULL, '2020-02-27 14:40:41+07', false);
INSERT INTO public.journals VALUES (108, 37, 'Issue', 5, NULL, '2020-02-27 15:14:46+07', false);
INSERT INTO public.journals VALUES (109, 37, 'Issue', 5, NULL, '2020-02-27 15:14:51+07', false);
INSERT INTO public.journals VALUES (110, 48, 'Issue', 10, NULL, '2020-02-27 15:59:05+07', false);
INSERT INTO public.journals VALUES (111, 48, 'Issue', 5, NULL, '2020-02-27 16:34:16+07', false);
INSERT INTO public.journals VALUES (112, 52, 'Issue', 5, NULL, '2020-02-27 16:34:21+07', false);
INSERT INTO public.journals VALUES (113, 50, 'Issue', 5, NULL, '2020-02-27 16:34:26+07', false);
INSERT INTO public.journals VALUES (114, 53, 'Issue', 10, NULL, '2020-02-28 10:00:37+07', false);
INSERT INTO public.journals VALUES (115, 47, 'Issue', 10, NULL, '2020-02-28 13:56:30+07', false);
INSERT INTO public.journals VALUES (116, 40, 'Issue', 8, '', '2020-02-28 15:27:32+07', false);
INSERT INTO public.journals VALUES (117, 55, 'Issue', 5, NULL, '2020-02-29 10:45:19+07', false);
INSERT INTO public.journals VALUES (118, 55, 'Issue', 5, NULL, '2020-02-29 10:45:40+07', false);
INSERT INTO public.journals VALUES (119, 11, 'Issue', 8, NULL, '2020-02-29 11:08:18+07', false);
INSERT INTO public.journals VALUES (120, 17, 'Issue', 8, NULL, '2020-02-29 11:08:18+07', false);
INSERT INTO public.journals VALUES (121, 42, 'Issue', 8, NULL, '2020-02-29 11:08:18+07', false);
INSERT INTO public.journals VALUES (122, 11, 'Issue', 8, NULL, '2020-02-29 11:08:29+07', false);
INSERT INTO public.journals VALUES (123, 17, 'Issue', 8, NULL, '2020-02-29 11:08:29+07', false);
INSERT INTO public.journals VALUES (124, 42, 'Issue', 8, NULL, '2020-02-29 11:08:29+07', false);
INSERT INTO public.journals VALUES (125, 54, 'Issue', 10, NULL, '2020-02-29 13:55:58+07', false);
INSERT INTO public.journals VALUES (126, 66, 'Issue', 10, '', '2020-02-29 16:11:39+07', false);
INSERT INTO public.journals VALUES (127, 67, 'Issue', 10, '', '2020-02-29 16:12:45+07', false);
INSERT INTO public.journals VALUES (128, 67, 'Issue', 10, '', '2020-02-29 16:15:20+07', false);
INSERT INTO public.journals VALUES (129, 64, 'Issue', 8, '', '2020-02-29 16:33:26+07', false);
INSERT INTO public.journals VALUES (130, 13, 'Issue', 8, NULL, '2020-02-29 16:48:05+07', false);
INSERT INTO public.journals VALUES (131, 13, 'Issue', 8, NULL, '2020-02-29 16:48:26+07', false);
INSERT INTO public.journals VALUES (132, 69, 'Issue', 5, '', '2020-02-29 21:21:34+07', false);
INSERT INTO public.journals VALUES (133, 20, 'Issue', 5, '', '2020-02-29 21:21:50+07', false);
INSERT INTO public.journals VALUES (134, 26, 'Issue', 5, '', '2020-02-29 21:22:22+07', false);
INSERT INTO public.journals VALUES (135, 27, 'Issue', 5, '', '2020-02-29 21:22:22+07', false);
INSERT INTO public.journals VALUES (136, 28, 'Issue', 5, '', '2020-02-29 21:22:22+07', false);
INSERT INTO public.journals VALUES (137, 29, 'Issue', 5, '', '2020-02-29 21:22:22+07', false);
INSERT INTO public.journals VALUES (138, 30, 'Issue', 5, '', '2020-02-29 21:22:22+07', false);
INSERT INTO public.journals VALUES (139, 31, 'Issue', 5, '', '2020-02-29 21:22:22+07', false);
INSERT INTO public.journals VALUES (140, 32, 'Issue', 5, '', '2020-02-29 21:22:23+07', false);
INSERT INTO public.journals VALUES (141, 28, 'Issue', 5, '', '2020-02-29 21:23:38+07', false);
INSERT INTO public.journals VALUES (142, 29, 'Issue', 5, '', '2020-02-29 21:23:38+07', false);
INSERT INTO public.journals VALUES (143, 30, 'Issue', 5, '', '2020-02-29 21:24:13+07', false);
INSERT INTO public.journals VALUES (144, 31, 'Issue', 5, '', '2020-02-29 21:24:35+07', false);
INSERT INTO public.journals VALUES (145, 32, 'Issue', 5, '', '2020-02-29 21:24:35+07', false);
INSERT INTO public.journals VALUES (146, 59, 'Issue', 5, NULL, '2020-02-29 21:27:40+07', false);
INSERT INTO public.journals VALUES (147, 60, 'Issue', 5, NULL, '2020-02-29 21:27:40+07', false);
INSERT INTO public.journals VALUES (148, 61, 'Issue', 5, NULL, '2020-02-29 21:27:40+07', false);
INSERT INTO public.journals VALUES (149, 62, 'Issue', 5, NULL, '2020-02-29 21:27:40+07', false);
INSERT INTO public.journals VALUES (150, 60, 'Issue', 5, NULL, '2020-02-29 21:27:49+07', false);
INSERT INTO public.journals VALUES (151, 61, 'Issue', 5, NULL, '2020-02-29 21:27:49+07', false);
INSERT INTO public.journals VALUES (152, 62, 'Issue', 5, NULL, '2020-02-29 21:27:49+07', false);
INSERT INTO public.journals VALUES (153, 40, 'Issue', 5, '', '2020-02-29 21:28:20+07', false);
INSERT INTO public.journals VALUES (154, 57, 'Issue', 5, '', '2020-02-29 21:28:20+07', false);
INSERT INTO public.journals VALUES (155, 58, 'Issue', 5, '', '2020-02-29 21:28:20+07', false);
INSERT INTO public.journals VALUES (156, 63, 'Issue', 5, '', '2020-02-29 21:28:20+07', false);
INSERT INTO public.journals VALUES (158, 60, 'Issue', 5, NULL, '2020-03-02 08:02:05+07', false);
INSERT INTO public.journals VALUES (159, 61, 'Issue', 5, NULL, '2020-03-02 08:02:05+07', false);
INSERT INTO public.journals VALUES (160, 62, 'Issue', 5, NULL, '2020-03-02 08:02:05+07', false);
INSERT INTO public.journals VALUES (161, 59, 'Issue', 5, NULL, '2020-03-02 08:02:20+07', false);
INSERT INTO public.journals VALUES (162, 47, 'Issue', 5, NULL, '2020-03-02 08:05:51+07', false);
INSERT INTO public.journals VALUES (163, 53, 'Issue', 5, NULL, '2020-03-02 08:05:51+07', false);
INSERT INTO public.journals VALUES (164, 54, 'Issue', 5, NULL, '2020-03-02 08:05:51+07', false);
INSERT INTO public.journals VALUES (165, 67, 'Issue', 5, NULL, '2020-03-02 08:06:05+07', false);
INSERT INTO public.journals VALUES (166, 51, 'Issue', 5, '', '2020-03-02 08:06:32+07', false);
INSERT INTO public.journals VALUES (167, 45, 'Issue', 8, '', '2020-03-02 08:07:07+07', false);
INSERT INTO public.journals VALUES (168, 41, 'Issue', 8, '', '2020-03-02 08:07:45+07', false);
INSERT INTO public.journals VALUES (169, 51, 'Issue', 5, '', '2020-03-02 08:10:50+07', false);
INSERT INTO public.journals VALUES (170, 58, 'Issue', 5, '', '2020-03-02 08:17:29+07', false);
INSERT INTO public.journals VALUES (171, 47, 'Issue', 5, NULL, '2020-03-02 08:27:14+07', false);
INSERT INTO public.journals VALUES (172, 50, 'Issue', 5, NULL, '2020-03-02 08:27:14+07', false);
INSERT INTO public.journals VALUES (173, 53, 'Issue', 5, NULL, '2020-03-02 08:27:14+07', false);
INSERT INTO public.journals VALUES (174, 54, 'Issue', 5, NULL, '2020-03-02 08:27:15+07', false);
INSERT INTO public.journals VALUES (175, 19, 'Issue', 5, NULL, '2020-03-02 08:27:26+07', false);
INSERT INTO public.journals VALUES (176, 48, 'Issue', 5, NULL, '2020-03-02 08:27:35+07', false);
INSERT INTO public.journals VALUES (177, 49, 'Issue', 5, NULL, '2020-03-02 08:27:35+07', false);
INSERT INTO public.journals VALUES (178, 52, 'Issue', 5, NULL, '2020-03-02 08:27:35+07', false);
INSERT INTO public.journals VALUES (179, 55, 'Issue', 5, NULL, '2020-03-02 08:27:35+07', false);
INSERT INTO public.journals VALUES (180, 74, 'Issue', 5, '', '2020-03-02 08:32:31+07', false);
INSERT INTO public.journals VALUES (181, 2, 'Issue', 5, NULL, '2020-03-02 08:36:07+07', false);
INSERT INTO public.journals VALUES (182, 3, 'Issue', 5, NULL, '2020-03-02 08:36:07+07', false);
INSERT INTO public.journals VALUES (183, 4, 'Issue', 5, NULL, '2020-03-02 08:36:07+07', false);
INSERT INTO public.journals VALUES (184, 5, 'Issue', 5, NULL, '2020-03-02 08:36:07+07', false);
INSERT INTO public.journals VALUES (185, 6, 'Issue', 5, NULL, '2020-03-02 08:36:07+07', false);
INSERT INTO public.journals VALUES (186, 7, 'Issue', 5, NULL, '2020-03-02 08:36:07+07', false);
INSERT INTO public.journals VALUES (187, 8, 'Issue', 5, NULL, '2020-03-02 08:36:08+07', false);
INSERT INTO public.journals VALUES (188, 23, 'Issue', 5, NULL, '2020-03-02 08:36:08+07', false);
INSERT INTO public.journals VALUES (189, 24, 'Issue', 5, NULL, '2020-03-02 08:36:08+07', false);
INSERT INTO public.journals VALUES (190, 25, 'Issue', 5, NULL, '2020-03-02 08:36:08+07', false);
INSERT INTO public.journals VALUES (191, 34, 'Issue', 5, NULL, '2020-03-02 08:36:08+07', false);
INSERT INTO public.journals VALUES (192, 35, 'Issue', 5, NULL, '2020-03-02 08:36:08+07', false);
INSERT INTO public.journals VALUES (193, 36, 'Issue', 5, NULL, '2020-03-02 08:36:08+07', false);
INSERT INTO public.journals VALUES (194, 1, 'Issue', 5, NULL, '2020-03-02 08:36:19+07', false);
INSERT INTO public.journals VALUES (195, 22, 'Issue', 5, NULL, '2020-03-02 08:36:19+07', false);
INSERT INTO public.journals VALUES (196, 33, 'Issue', 5, NULL, '2020-03-02 08:36:19+07', false);
INSERT INTO public.journals VALUES (197, 37, 'Issue', 5, NULL, '2020-03-02 08:36:19+07', false);
INSERT INTO public.journals VALUES (198, 41, 'Issue', 8, '', '2020-03-02 09:04:16+07', false);
INSERT INTO public.journals VALUES (199, 9, 'Issue', 8, '', '2020-03-02 09:05:36+07', false);
INSERT INTO public.journals VALUES (200, 10, 'Issue', 8, '', '2020-03-02 09:05:36+07', false);
INSERT INTO public.journals VALUES (201, 12, 'Issue', 8, '', '2020-03-02 09:05:36+07', false);
INSERT INTO public.journals VALUES (202, 14, 'Issue', 8, '', '2020-03-02 09:05:36+07', false);
INSERT INTO public.journals VALUES (203, 15, 'Issue', 8, '', '2020-03-02 09:05:36+07', false);
INSERT INTO public.journals VALUES (204, 39, 'Issue', 8, '', '2020-03-02 09:05:36+07', false);
INSERT INTO public.journals VALUES (205, 9, 'Issue', 8, '', '2020-03-02 09:06:39+07', false);
INSERT INTO public.journals VALUES (206, 10, 'Issue', 8, '', '2020-03-02 09:06:40+07', false);
INSERT INTO public.journals VALUES (207, 12, 'Issue', 8, '', '2020-03-02 09:06:40+07', false);
INSERT INTO public.journals VALUES (208, 14, 'Issue', 8, '', '2020-03-02 09:06:40+07', false);
INSERT INTO public.journals VALUES (209, 15, 'Issue', 8, '', '2020-03-02 09:06:40+07', false);
INSERT INTO public.journals VALUES (210, 39, 'Issue', 8, '', '2020-03-02 09:06:40+07', false);
INSERT INTO public.journals VALUES (211, 41, 'Issue', 8, '', '2020-03-02 09:06:40+07', false);
INSERT INTO public.journals VALUES (212, 16, 'Issue', 8, '', '2020-03-02 09:08:24+07', false);
INSERT INTO public.journals VALUES (213, 43, 'Issue', 8, '', '2020-03-02 09:08:24+07', false);
INSERT INTO public.journals VALUES (214, 44, 'Issue', 8, '', '2020-03-02 09:08:24+07', false);
INSERT INTO public.journals VALUES (215, 45, 'Issue', 8, '', '2020-03-02 09:08:24+07', false);
INSERT INTO public.journals VALUES (217, 64, 'Issue', 8, '', '2020-03-02 09:08:24+07', false);
INSERT INTO public.journals VALUES (218, 9, 'Issue', 8, NULL, '2020-03-02 09:11:45+07', false);
INSERT INTO public.journals VALUES (219, 10, 'Issue', 8, NULL, '2020-03-02 09:11:45+07', false);
INSERT INTO public.journals VALUES (220, 16, 'Issue', 8, '', '2020-03-02 09:12:53+07', false);
INSERT INTO public.journals VALUES (221, 45, 'Issue', 8, '', '2020-03-02 09:13:18+07', false);
INSERT INTO public.journals VALUES (222, 64, 'Issue', 8, '', '2020-03-02 09:13:33+07', false);
INSERT INTO public.journals VALUES (223, 43, 'Issue', 8, '', '2020-03-02 09:13:48+07', false);
INSERT INTO public.journals VALUES (225, 44, 'Issue', 8, '', '2020-03-02 09:14:38+07', false);
INSERT INTO public.journals VALUES (226, 45, 'Issue', 8, '', '2020-03-02 09:17:35+07', false);
INSERT INTO public.journals VALUES (227, 64, 'Issue', 8, '', '2020-03-02 09:17:54+07', false);
INSERT INTO public.journals VALUES (228, 39, 'Issue', 8, NULL, '2020-03-02 09:19:45+07', false);
INSERT INTO public.journals VALUES (229, 41, 'Issue', 8, '', '2020-03-02 09:20:05+07', false);
INSERT INTO public.journals VALUES (230, 41, 'Issue', 5, NULL, '2020-03-02 09:26:48+07', false);
INSERT INTO public.journals VALUES (231, 45, 'Issue', 5, '', '2020-03-02 09:28:12+07', false);
INSERT INTO public.journals VALUES (232, 64, 'Issue', 5, '', '2020-03-02 09:38:01+07', false);
INSERT INTO public.journals VALUES (233, 40, 'Issue', 5, NULL, '2020-03-02 09:41:36+07', false);
INSERT INTO public.journals VALUES (234, 40, 'Issue', 5, NULL, '2020-03-02 09:41:40+07', false);
INSERT INTO public.journals VALUES (235, 44, 'Issue', 8, ' - Sở Khoa học - Công nghệ
 - Sở Lao động
 - Sở Y tế
 - Ban quản lý khu kinh tế', '2020-03-02 09:44:10+07', false);
INSERT INTO public.journals VALUES (236, 44, 'Issue', 8, '', '2020-03-02 09:44:48+07', false);
INSERT INTO public.journals VALUES (237, 57, 'Issue', 5, NULL, '2020-03-02 09:48:47+07', false);
INSERT INTO public.journals VALUES (238, 57, 'Issue', 5, NULL, '2020-03-02 09:48:51+07', false);
INSERT INTO public.journals VALUES (239, 81, 'Issue', 5, NULL, '2020-03-02 09:57:18+07', false);
INSERT INTO public.journals VALUES (240, 81, 'Issue', 5, NULL, '2020-03-02 09:57:32+07', false);
INSERT INTO public.journals VALUES (241, 69, 'Issue', 10, '', '2020-03-02 14:37:46+07', false);
INSERT INTO public.journals VALUES (242, 74, 'Issue', 10, NULL, '2020-03-02 14:38:17+07', false);
INSERT INTO public.journals VALUES (243, 68, 'Issue', 10, NULL, '2020-03-02 14:38:56+07', false);
INSERT INTO public.journals VALUES (244, 69, 'Issue', 10, NULL, '2020-03-02 14:40:20+07', false);
INSERT INTO public.journals VALUES (245, 69, 'Issue', 10, '', '2020-03-02 14:41:03+07', false);
INSERT INTO public.journals VALUES (246, 77, 'Issue', 8, NULL, '2020-03-02 15:16:40+07', false);
INSERT INTO public.journals VALUES (247, 77, 'Issue', 8, NULL, '2020-03-02 15:16:46+07', false);
INSERT INTO public.journals VALUES (248, 72, 'Issue', 5, '', '2020-03-02 16:58:11+07', false);
INSERT INTO public.journals VALUES (249, 73, 'Issue', 5, '', '2020-03-02 17:01:46+07', false);
INSERT INTO public.journals VALUES (250, 75, 'Issue', 5, '', '2020-03-02 17:13:04+07', false);
INSERT INTO public.journals VALUES (251, 75, 'Issue', 5, NULL, '2020-03-02 17:14:21+07', false);
INSERT INTO public.journals VALUES (252, 72, 'Issue', 5, NULL, '2020-03-02 17:14:22+07', false);
INSERT INTO public.journals VALUES (253, 73, 'Issue', 5, NULL, '2020-03-02 17:14:22+07', false);
INSERT INTO public.journals VALUES (254, 75, 'Issue', 5, NULL, '2020-03-02 17:14:47+07', false);
INSERT INTO public.journals VALUES (255, 72, 'Issue', 5, NULL, '2020-03-02 17:14:47+07', false);
INSERT INTO public.journals VALUES (256, 73, 'Issue', 5, NULL, '2020-03-02 17:14:47+07', false);
INSERT INTO public.journals VALUES (257, 75, 'Issue', 5, NULL, '2020-03-02 17:14:57+07', false);
INSERT INTO public.journals VALUES (258, 72, 'Issue', 5, NULL, '2020-03-02 17:14:58+07', false);
INSERT INTO public.journals VALUES (259, 73, 'Issue', 5, NULL, '2020-03-02 17:14:58+07', false);
INSERT INTO public.journals VALUES (260, 72, 'Issue', 5, '', '2020-03-02 17:15:17+07', false);
INSERT INTO public.journals VALUES (261, 73, 'Issue', 5, '', '2020-03-02 17:15:28+07', false);
INSERT INTO public.journals VALUES (262, 75, 'Issue', 5, '', '2020-03-02 17:15:39+07', false);
INSERT INTO public.journals VALUES (263, 74, 'Issue', 10, NULL, '2020-03-02 17:23:17+07', false);
INSERT INTO public.journals VALUES (264, 74, 'Issue', 10, NULL, '2020-03-02 20:46:35+07', false);
INSERT INTO public.journals VALUES (265, 71, 'Issue', 5, '', '2020-03-03 08:01:59+07', false);
INSERT INTO public.journals VALUES (266, 72, 'Issue', 10, NULL, '2020-03-03 10:04:00+07', false);
INSERT INTO public.journals VALUES (267, 63, 'Issue', 5, NULL, '2020-03-03 10:21:40+07', false);
INSERT INTO public.journals VALUES (268, 70, 'Issue', 5, NULL, '2020-03-03 10:21:40+07', false);
INSERT INTO public.journals VALUES (269, 82, 'Issue', 5, NULL, '2020-03-03 10:21:40+07', false);
INSERT INTO public.journals VALUES (270, 63, 'Issue', 5, NULL, '2020-03-03 10:21:47+07', false);
INSERT INTO public.journals VALUES (271, 70, 'Issue', 5, NULL, '2020-03-03 10:21:47+07', false);
INSERT INTO public.journals VALUES (272, 82, 'Issue', 5, NULL, '2020-03-03 10:21:48+07', false);
INSERT INTO public.journals VALUES (273, 84, 'Issue', 5, NULL, '2020-03-03 11:06:30+07', false);
INSERT INTO public.journals VALUES (274, 84, 'Issue', 5, NULL, '2020-03-03 11:06:38+07', false);
INSERT INTO public.journals VALUES (275, 64, 'Issue', 8, NULL, '2020-03-03 14:15:20+07', false);
INSERT INTO public.journals VALUES (276, 78, 'Issue', 8, NULL, '2020-03-03 14:15:20+07', false);
INSERT INTO public.journals VALUES (277, 45, 'Issue', 8, NULL, '2020-03-03 15:00:02+07', false);
INSERT INTO public.journals VALUES (278, 45, 'Issue', 8, NULL, '2020-03-03 15:00:09+07', false);
INSERT INTO public.journals VALUES (279, 71, 'Issue', 10, NULL, '2020-03-03 17:14:23+07', false);
INSERT INTO public.journals VALUES (280, 79, 'Issue', 8, NULL, '2020-03-03 17:19:46+07', false);
INSERT INTO public.journals VALUES (281, 79, 'Issue', 8, NULL, '2020-03-03 17:19:54+07', false);
INSERT INTO public.journals VALUES (282, 71, 'Issue', 10, NULL, '2020-03-04 16:04:30+07', false);
INSERT INTO public.journals VALUES (283, 86, 'Issue', 4, NULL, '2020-03-05 08:33:15+07', false);
INSERT INTO public.journals VALUES (284, 71, 'Issue', 10, NULL, '2020-03-06 07:51:12+07', false);
INSERT INTO public.journals VALUES (285, 73, 'Issue', 10, NULL, '2020-03-06 07:51:29+07', false);
INSERT INTO public.journals VALUES (286, 89, 'Issue', 10, NULL, '2020-03-06 07:52:31+07', false);
INSERT INTO public.journals VALUES (287, 89, 'Issue', 10, NULL, '2020-03-06 08:01:54+07', false);
INSERT INTO public.journals VALUES (288, 26, 'Issue', 10, NULL, '2020-03-06 08:41:44+07', false);
INSERT INTO public.journals VALUES (289, 27, 'Issue', 10, NULL, '2020-03-07 10:26:41+07', false);
INSERT INTO public.journals VALUES (290, 89, 'Issue', 10, NULL, '2020-03-07 11:06:30+07', false);
INSERT INTO public.journals VALUES (291, 16, 'Issue', 8, '', '2020-03-07 17:16:51+07', false);
INSERT INTO public.journals VALUES (292, 96, 'Issue', 8, '', '2020-03-07 17:27:31+07', false);
INSERT INTO public.journals VALUES (293, 27, 'Issue', 10, NULL, '2020-03-09 08:15:49+07', false);
INSERT INTO public.journals VALUES (294, 27, 'Issue', 10, NULL, '2020-03-09 08:15:59+07', false);
INSERT INTO public.journals VALUES (295, 26, 'Issue', 10, '', '2020-03-09 08:25:48+07', false);
INSERT INTO public.journals VALUES (296, 26, 'Issue', 10, '', '2020-03-09 08:26:36+07', false);
INSERT INTO public.journals VALUES (297, 26, 'Issue', 4, NULL, '2020-03-09 08:26:46+07', false);
INSERT INTO public.journals VALUES (298, 26, 'Issue', 10, NULL, '2020-03-09 08:27:12+07', false);
INSERT INTO public.journals VALUES (299, 26, 'Issue', 10, NULL, '2020-03-09 08:27:18+07', false);
INSERT INTO public.journals VALUES (300, 27, 'Issue', 10, NULL, '2020-03-09 11:17:00+07', false);
INSERT INTO public.journals VALUES (301, 27, 'Issue', 10, NULL, '2020-03-09 15:04:15+07', false);
INSERT INTO public.journals VALUES (302, 83, 'Issue', 5, NULL, '2020-03-10 09:05:49+07', false);
INSERT INTO public.journals VALUES (303, 83, 'Issue', 5, NULL, '2020-03-10 09:05:56+07', false);
INSERT INTO public.journals VALUES (304, 40, 'Issue', 5, NULL, '2020-03-10 09:06:16+07', false);
INSERT INTO public.journals VALUES (305, 57, 'Issue', 5, NULL, '2020-03-10 09:06:16+07', false);
INSERT INTO public.journals VALUES (306, 63, 'Issue', 5, NULL, '2020-03-10 09:06:16+07', false);
INSERT INTO public.journals VALUES (307, 70, 'Issue', 5, NULL, '2020-03-10 09:06:16+07', false);
INSERT INTO public.journals VALUES (308, 81, 'Issue', 5, NULL, '2020-03-10 09:06:16+07', false);
INSERT INTO public.journals VALUES (309, 82, 'Issue', 5, NULL, '2020-03-10 09:06:17+07', false);
INSERT INTO public.journals VALUES (310, 83, 'Issue', 5, NULL, '2020-03-10 09:06:17+07', false);
INSERT INTO public.journals VALUES (311, 84, 'Issue', 5, NULL, '2020-03-10 09:06:17+07', false);
INSERT INTO public.journals VALUES (312, 75, 'Issue', 10, NULL, '2020-03-10 09:37:40+07', false);
INSERT INTO public.journals VALUES (313, 90, 'Issue', 10, '', '2020-03-10 09:40:17+07', false);
INSERT INTO public.journals VALUES (314, 90, 'Issue', 10, '', '2020-03-10 09:40:35+07', false);
INSERT INTO public.journals VALUES (315, 11, 'Issue', 8, NULL, '2020-03-10 10:13:46+07', false);
INSERT INTO public.journals VALUES (316, 13, 'Issue', 8, NULL, '2020-03-10 10:13:46+07', false);
INSERT INTO public.journals VALUES (317, 17, 'Issue', 8, NULL, '2020-03-10 10:13:46+07', false);
INSERT INTO public.journals VALUES (318, 42, 'Issue', 8, NULL, '2020-03-10 10:13:47+07', false);
INSERT INTO public.journals VALUES (319, 45, 'Issue', 8, NULL, '2020-03-10 10:13:47+07', false);
INSERT INTO public.journals VALUES (320, 64, 'Issue', 8, NULL, '2020-03-10 10:13:47+07', false);
INSERT INTO public.journals VALUES (321, 77, 'Issue', 8, NULL, '2020-03-10 10:13:47+07', false);
INSERT INTO public.journals VALUES (322, 78, 'Issue', 8, NULL, '2020-03-10 10:13:47+07', false);
INSERT INTO public.journals VALUES (323, 79, 'Issue', 8, NULL, '2020-03-10 10:13:47+07', false);
INSERT INTO public.journals VALUES (324, 94, 'Issue', 8, NULL, '2020-03-10 10:14:11+07', false);
INSERT INTO public.journals VALUES (325, 95, 'Issue', 8, NULL, '2020-03-10 10:14:11+07', false);
INSERT INTO public.journals VALUES (326, 94, 'Issue', 8, NULL, '2020-03-10 10:14:24+07', false);
INSERT INTO public.journals VALUES (327, 95, 'Issue', 8, NULL, '2020-03-10 10:14:24+07', false);
INSERT INTO public.journals VALUES (328, 91, 'Issue', 8, '', '2020-03-10 10:15:12+07', false);
INSERT INTO public.journals VALUES (329, 14, 'Issue', 8, '', '2020-03-10 10:15:59+07', false);
INSERT INTO public.journals VALUES (330, 92, 'Issue', 8, '', '2020-03-10 10:20:14+07', false);
INSERT INTO public.journals VALUES (331, 97, 'Issue', 8, NULL, '2020-03-10 10:28:18+07', false);
INSERT INTO public.journals VALUES (332, 12, 'Issue', 8, '', '2020-03-10 10:29:47+07', false);
INSERT INTO public.journals VALUES (333, 15, 'Issue', 8, '', '2020-03-10 10:29:47+07', false);
INSERT INTO public.journals VALUES (334, 16, 'Issue', 8, NULL, '2020-03-10 14:49:37+07', false);
INSERT INTO public.journals VALUES (335, 16, 'Issue', 8, NULL, '2020-03-10 14:49:42+07', false);
INSERT INTO public.journals VALUES (336, 14, 'Issue', 8, '', '2020-03-10 14:51:18+07', false);
INSERT INTO public.journals VALUES (337, 43, 'Issue', 8, '', '2020-03-10 14:51:18+07', false);
INSERT INTO public.journals VALUES (338, 44, 'Issue', 8, '', '2020-03-10 14:51:18+07', false);
INSERT INTO public.journals VALUES (342, 94, 'Issue', 8, '', '2020-03-10 14:51:34+07', false);
INSERT INTO public.journals VALUES (343, 95, 'Issue', 8, '', '2020-03-10 14:51:34+07', false);
INSERT INTO public.journals VALUES (344, 107, 'Issue', 8, '', '2020-03-10 14:56:17+07', false);
INSERT INTO public.journals VALUES (345, 103, 'Issue', 8, '', '2020-03-10 14:56:43+07', false);
INSERT INTO public.journals VALUES (346, 104, 'Issue', 8, '', '2020-03-10 14:56:53+07', false);
INSERT INTO public.journals VALUES (347, 105, 'Issue', 8, '', '2020-03-10 14:57:03+07', false);
INSERT INTO public.journals VALUES (348, 106, 'Issue', 8, '', '2020-03-10 14:57:15+07', false);
INSERT INTO public.journals VALUES (349, 90, 'Issue', 10, '', '2020-03-11 08:04:38+07', false);
INSERT INTO public.journals VALUES (350, 28, 'Issue', 10, '', '2020-03-11 08:06:35+07', false);
INSERT INTO public.journals VALUES (351, 29, 'Issue', 10, '', '2020-03-11 08:07:26+07', false);
INSERT INTO public.journals VALUES (352, 30, 'Issue', 10, '', '2020-03-11 08:07:26+07', false);
INSERT INTO public.journals VALUES (353, 28, 'Issue', 10, '', '2020-03-11 08:08:21+07', false);
INSERT INTO public.journals VALUES (354, 32, 'Issue', 10, '', '2020-03-11 08:08:21+07', false);
INSERT INTO public.journals VALUES (355, 31, 'Issue', 10, '', '2020-03-11 08:08:41+07', false);
INSERT INTO public.journals VALUES (356, 30, 'Issue', 10, '', '2020-03-11 08:09:16+07', false);
INSERT INTO public.journals VALUES (357, 32, 'Issue', 10, '', '2020-03-11 08:09:16+07', false);
INSERT INTO public.journals VALUES (358, 14, 'Issue', 8, '', '2020-03-11 08:11:09+07', false);
INSERT INTO public.journals VALUES (359, 44, 'Issue', 8, '', '2020-03-11 08:11:09+07', false);
INSERT INTO public.journals VALUES (363, 92, 'Issue', 8, '', '2020-03-11 08:11:09+07', false);
INSERT INTO public.journals VALUES (365, 128, 'Issue', 10, '', '2020-03-11 08:19:44+07', false);
INSERT INTO public.journals VALUES (366, 130, 'Issue', 10, NULL, '2020-03-11 08:22:10+07', false);
INSERT INTO public.journals VALUES (367, 131, 'Issue', 10, NULL, '2020-03-11 08:23:03+07', false);
INSERT INTO public.journals VALUES (368, 128, 'Issue', 10, NULL, '2020-03-11 08:23:57+07', false);
INSERT INTO public.journals VALUES (369, 132, 'Issue', 10, NULL, '2020-03-11 08:26:19+07', false);
INSERT INTO public.journals VALUES (370, 133, 'Issue', 10, NULL, '2020-03-11 08:27:37+07', false);
INSERT INTO public.journals VALUES (371, 30, 'Issue', 10, NULL, '2020-03-11 20:45:55+07', false);
INSERT INTO public.journals VALUES (372, 31, 'Issue', 10, '', '2020-03-11 20:46:37+07', false);
INSERT INTO public.journals VALUES (373, 136, 'Issue', 8, '', '2020-03-12 09:08:32+07', false);
INSERT INTO public.journals VALUES (374, 14, 'Issue', 8, '', '2020-03-12 09:08:58+07', false);
INSERT INTO public.journals VALUES (375, 44, 'Issue', 8, '', '2020-03-12 09:08:58+07', false);
INSERT INTO public.journals VALUES (379, 92, 'Issue', 8, '', '2020-03-12 09:08:59+07', false);
INSERT INTO public.journals VALUES (381, 30, 'Issue', 10, NULL, '2020-03-12 09:27:55+07', false);
INSERT INTO public.journals VALUES (382, 103, 'Issue', 5, '', '2020-03-12 09:32:56+07', false);
INSERT INTO public.journals VALUES (383, 104, 'Issue', 5, '', '2020-03-12 09:32:56+07', false);
INSERT INTO public.journals VALUES (384, 105, 'Issue', 5, '', '2020-03-12 09:32:56+07', false);
INSERT INTO public.journals VALUES (385, 106, 'Issue', 5, '', '2020-03-12 09:32:56+07', false);
INSERT INTO public.journals VALUES (386, 107, 'Issue', 5, '', '2020-03-12 09:32:56+07', false);
INSERT INTO public.journals VALUES (387, 108, 'Issue', 5, '', '2020-03-12 09:32:56+07', false);
INSERT INTO public.journals VALUES (388, 109, 'Issue', 5, '', '2020-03-12 09:32:56+07', false);
INSERT INTO public.journals VALUES (389, 110, 'Issue', 5, '', '2020-03-12 09:32:56+07', false);
INSERT INTO public.journals VALUES (390, 111, 'Issue', 5, '', '2020-03-12 09:32:56+07', false);
INSERT INTO public.journals VALUES (391, 112, 'Issue', 5, '', '2020-03-12 09:32:56+07', false);
INSERT INTO public.journals VALUES (392, 113, 'Issue', 5, '', '2020-03-12 09:32:56+07', false);
INSERT INTO public.journals VALUES (393, 114, 'Issue', 5, '', '2020-03-12 09:32:57+07', false);
INSERT INTO public.journals VALUES (394, 115, 'Issue', 5, '', '2020-03-12 09:32:57+07', false);
INSERT INTO public.journals VALUES (395, 116, 'Issue', 5, '', '2020-03-12 09:32:57+07', false);
INSERT INTO public.journals VALUES (396, 117, 'Issue', 5, '', '2020-03-12 09:32:57+07', false);
INSERT INTO public.journals VALUES (397, 118, 'Issue', 5, '', '2020-03-12 09:32:57+07', false);
INSERT INTO public.journals VALUES (398, 119, 'Issue', 5, '', '2020-03-12 09:32:57+07', false);
INSERT INTO public.journals VALUES (399, 120, 'Issue', 5, '', '2020-03-12 09:32:57+07', false);
INSERT INTO public.journals VALUES (400, 121, 'Issue', 5, '', '2020-03-12 09:32:57+07', false);
INSERT INTO public.journals VALUES (401, 122, 'Issue', 5, '', '2020-03-12 09:32:57+07', false);
INSERT INTO public.journals VALUES (402, 123, 'Issue', 5, '', '2020-03-12 09:32:57+07', false);
INSERT INTO public.journals VALUES (403, 124, 'Issue', 5, '', '2020-03-12 09:32:57+07', false);
INSERT INTO public.journals VALUES (404, 125, 'Issue', 5, '', '2020-03-12 09:32:57+07', false);
INSERT INTO public.journals VALUES (405, 126, 'Issue', 5, '', '2020-03-12 09:32:57+07', false);
INSERT INTO public.journals VALUES (406, 127, 'Issue', 5, '', '2020-03-12 09:32:57+07', false);
INSERT INTO public.journals VALUES (407, 138, 'Issue', 5, '', '2020-03-12 09:38:38+07', false);
INSERT INTO public.journals VALUES (408, 103, 'Issue', 5, '', '2020-03-12 09:39:17+07', false);
INSERT INTO public.journals VALUES (409, 104, 'Issue', 5, '', '2020-03-12 09:39:17+07', false);
INSERT INTO public.journals VALUES (410, 105, 'Issue', 5, '', '2020-03-12 09:39:17+07', false);
INSERT INTO public.journals VALUES (411, 106, 'Issue', 5, '', '2020-03-12 09:39:18+07', false);
INSERT INTO public.journals VALUES (412, 107, 'Issue', 5, '', '2020-03-12 09:39:18+07', false);
INSERT INTO public.journals VALUES (413, 108, 'Issue', 5, '', '2020-03-12 09:39:18+07', false);
INSERT INTO public.journals VALUES (414, 109, 'Issue', 5, '', '2020-03-12 09:39:18+07', false);
INSERT INTO public.journals VALUES (415, 110, 'Issue', 5, '', '2020-03-12 09:39:18+07', false);
INSERT INTO public.journals VALUES (416, 111, 'Issue', 5, '', '2020-03-12 09:39:18+07', false);
INSERT INTO public.journals VALUES (417, 112, 'Issue', 5, '', '2020-03-12 09:39:18+07', false);
INSERT INTO public.journals VALUES (418, 113, 'Issue', 5, '', '2020-03-12 09:39:18+07', false);
INSERT INTO public.journals VALUES (419, 114, 'Issue', 5, '', '2020-03-12 09:39:18+07', false);
INSERT INTO public.journals VALUES (420, 115, 'Issue', 5, '', '2020-03-12 09:39:19+07', false);
INSERT INTO public.journals VALUES (421, 116, 'Issue', 5, '', '2020-03-12 09:39:19+07', false);
INSERT INTO public.journals VALUES (422, 117, 'Issue', 5, '', '2020-03-12 09:39:19+07', false);
INSERT INTO public.journals VALUES (423, 118, 'Issue', 5, '', '2020-03-12 09:39:19+07', false);
INSERT INTO public.journals VALUES (424, 119, 'Issue', 5, '', '2020-03-12 09:39:19+07', false);
INSERT INTO public.journals VALUES (425, 120, 'Issue', 5, '', '2020-03-12 09:39:19+07', false);
INSERT INTO public.journals VALUES (426, 121, 'Issue', 5, '', '2020-03-12 09:39:19+07', false);
INSERT INTO public.journals VALUES (427, 122, 'Issue', 5, '', '2020-03-12 09:39:19+07', false);
INSERT INTO public.journals VALUES (428, 123, 'Issue', 5, '', '2020-03-12 09:39:20+07', false);
INSERT INTO public.journals VALUES (429, 124, 'Issue', 5, '', '2020-03-12 09:39:20+07', false);
INSERT INTO public.journals VALUES (430, 125, 'Issue', 5, '', '2020-03-12 09:39:20+07', false);
INSERT INTO public.journals VALUES (431, 126, 'Issue', 5, '', '2020-03-12 09:39:20+07', false);
INSERT INTO public.journals VALUES (432, 127, 'Issue', 5, '', '2020-03-12 09:39:20+07', false);
INSERT INTO public.journals VALUES (433, 107, 'Issue', 5, '', '2020-03-12 09:41:02+07', false);
INSERT INTO public.journals VALUES (434, 108, 'Issue', 5, '', '2020-03-12 09:41:03+07', false);
INSERT INTO public.journals VALUES (435, 109, 'Issue', 5, '', '2020-03-12 09:41:03+07', false);
INSERT INTO public.journals VALUES (436, 110, 'Issue', 5, '', '2020-03-12 09:41:03+07', false);
INSERT INTO public.journals VALUES (437, 111, 'Issue', 5, '', '2020-03-12 09:42:22+07', false);
INSERT INTO public.journals VALUES (438, 112, 'Issue', 5, '', '2020-03-12 09:42:23+07', false);
INSERT INTO public.journals VALUES (439, 113, 'Issue', 5, '', '2020-03-12 09:42:23+07', false);
INSERT INTO public.journals VALUES (440, 114, 'Issue', 5, '', '2020-03-12 09:42:23+07', false);
INSERT INTO public.journals VALUES (441, 115, 'Issue', 5, '', '2020-03-12 09:42:42+07', false);
INSERT INTO public.journals VALUES (442, 116, 'Issue', 5, '', '2020-03-12 09:42:42+07', false);
INSERT INTO public.journals VALUES (443, 117, 'Issue', 5, '', '2020-03-12 09:42:42+07', false);
INSERT INTO public.journals VALUES (444, 118, 'Issue', 5, '', '2020-03-12 09:42:42+07', false);
INSERT INTO public.journals VALUES (445, 119, 'Issue', 5, '', '2020-03-12 09:46:13+07', false);
INSERT INTO public.journals VALUES (446, 120, 'Issue', 5, '', '2020-03-12 09:46:13+07', false);
INSERT INTO public.journals VALUES (447, 121, 'Issue', 5, '', '2020-03-12 09:46:13+07', false);
INSERT INTO public.journals VALUES (448, 122, 'Issue', 5, '', '2020-03-12 09:46:14+07', false);
INSERT INTO public.journals VALUES (449, 123, 'Issue', 5, '', '2020-03-12 09:47:10+07', false);
INSERT INTO public.journals VALUES (450, 124, 'Issue', 5, '', '2020-03-12 09:47:10+07', false);
INSERT INTO public.journals VALUES (451, 125, 'Issue', 5, '', '2020-03-12 09:47:10+07', false);
INSERT INTO public.journals VALUES (452, 126, 'Issue', 5, '', '2020-03-12 09:47:10+07', false);
INSERT INTO public.journals VALUES (453, 127, 'Issue', 5, '', '2020-03-12 09:47:10+07', false);
INSERT INTO public.journals VALUES (454, 128, 'Issue', 10, NULL, '2020-03-12 09:52:08+07', false);
INSERT INTO public.journals VALUES (455, 58, 'Issue', 5, '', '2020-03-12 10:20:17+07', false);
INSERT INTO public.journals VALUES (456, 96, 'Issue', 5, '', '2020-03-12 10:20:17+07', false);
INSERT INTO public.journals VALUES (457, 96, 'Issue', 5, NULL, '2020-03-12 10:21:12+07', false);
INSERT INTO public.journals VALUES (458, 96, 'Issue', 5, NULL, '2020-03-12 10:21:17+07', false);
INSERT INTO public.journals VALUES (459, 134, 'Issue', 8, NULL, '2020-03-12 10:50:20+07', false);
INSERT INTO public.journals VALUES (460, 134, 'Issue', 8, NULL, '2020-03-12 10:50:27+07', false);
INSERT INTO public.journals VALUES (461, 135, 'Issue', 8, NULL, '2020-03-12 10:59:26+07', false);
INSERT INTO public.journals VALUES (462, 135, 'Issue', 8, NULL, '2020-03-12 10:59:31+07', false);
INSERT INTO public.journals VALUES (463, 58, 'Issue', 5, NULL, '2020-03-12 15:04:33+07', false);
INSERT INTO public.journals VALUES (464, 58, 'Issue', 5, NULL, '2020-03-12 15:05:09+07', false);
INSERT INTO public.journals VALUES (465, 142, 'Issue', 8, '', '2020-03-12 16:35:09+07', false);
INSERT INTO public.journals VALUES (466, 28, 'Issue', 10, NULL, '2020-03-12 17:20:51+07', false);
INSERT INTO public.journals VALUES (467, 140, 'Issue', 8, NULL, '2020-03-12 17:37:19+07', false);
INSERT INTO public.journals VALUES (468, 140, 'Issue', 8, NULL, '2020-03-12 17:37:23+07', false);
INSERT INTO public.journals VALUES (469, 143, 'Issue', 5, NULL, '2020-03-13 08:09:00+07', false);
INSERT INTO public.journals VALUES (470, 143, 'Issue', 5, NULL, '2020-03-13 08:09:06+07', false);
INSERT INTO public.journals VALUES (471, 129, 'Issue', 10, NULL, '2020-03-13 09:07:55+07', false);
INSERT INTO public.journals VALUES (472, 133, 'Issue', 10, NULL, '2020-03-13 09:10:22+07', false);
INSERT INTO public.journals VALUES (473, 132, 'Issue', 10, NULL, '2020-03-13 09:11:10+07', false);
INSERT INTO public.journals VALUES (474, 29, 'Issue', 10, NULL, '2020-03-13 11:20:01+07', false);
INSERT INTO public.journals VALUES (475, 30, 'Issue', 10, NULL, '2020-03-13 14:30:55+07', false);
INSERT INTO public.journals VALUES (476, 155, 'Issue', 10, '', '2020-03-13 16:26:56+07', false);
INSERT INTO public.journals VALUES (477, 156, 'Issue', 10, '', '2020-03-13 16:27:07+07', false);
INSERT INTO public.journals VALUES (478, 155, 'Issue', 10, '', '2020-03-13 16:48:28+07', false);
INSERT INTO public.journals VALUES (479, 155, 'Issue', 10, NULL, '2020-03-13 16:48:37+07', false);
INSERT INTO public.journals VALUES (480, 156, 'Issue', 10, NULL, '2020-03-13 20:59:27+07', false);
INSERT INTO public.journals VALUES (481, 136, 'Issue', 8, NULL, '2020-03-14 08:02:35+07', false);
INSERT INTO public.journals VALUES (482, 137, 'Issue', 8, NULL, '2020-03-14 08:02:35+07', false);
INSERT INTO public.journals VALUES (483, 139, 'Issue', 8, NULL, '2020-03-14 08:02:35+07', false);
INSERT INTO public.journals VALUES (484, 141, 'Issue', 8, NULL, '2020-03-14 08:02:35+07', false);
INSERT INTO public.journals VALUES (485, 142, 'Issue', 8, NULL, '2020-03-14 08:02:35+07', false);
INSERT INTO public.journals VALUES (486, 150, 'Issue', 8, NULL, '2020-03-14 08:02:35+07', false);
INSERT INTO public.journals VALUES (487, 152, 'Issue', 8, NULL, '2020-03-14 08:02:35+07', false);
INSERT INTO public.journals VALUES (488, 136, 'Issue', 8, NULL, '2020-03-14 08:02:53+07', false);
INSERT INTO public.journals VALUES (489, 137, 'Issue', 8, NULL, '2020-03-14 08:02:54+07', false);
INSERT INTO public.journals VALUES (490, 139, 'Issue', 8, NULL, '2020-03-14 08:02:54+07', false);
INSERT INTO public.journals VALUES (491, 141, 'Issue', 8, NULL, '2020-03-14 08:02:54+07', false);
INSERT INTO public.journals VALUES (492, 142, 'Issue', 8, NULL, '2020-03-14 08:02:54+07', false);
INSERT INTO public.journals VALUES (493, 150, 'Issue', 8, NULL, '2020-03-14 08:02:54+07', false);
INSERT INTO public.journals VALUES (494, 152, 'Issue', 8, NULL, '2020-03-14 08:02:54+07', false);
INSERT INTO public.journals VALUES (495, 14, 'Issue', 8, '', '2020-03-14 08:03:22+07', false);
INSERT INTO public.journals VALUES (496, 44, 'Issue', 8, '', '2020-03-14 08:03:22+07', false);
INSERT INTO public.journals VALUES (500, 92, 'Issue', 8, '', '2020-03-14 08:03:22+07', false);
INSERT INTO public.journals VALUES (502, 159, 'Issue', 10, NULL, '2020-03-14 10:03:26+07', false);
INSERT INTO public.journals VALUES (503, 160, 'Issue', 10, NULL, '2020-03-14 10:03:34+07', false);
INSERT INTO public.journals VALUES (504, 160, 'Issue', 10, NULL, '2020-03-14 10:24:52+07', false);
INSERT INTO public.journals VALUES (505, 156, 'Issue', 10, NULL, '2020-03-14 10:24:57+07', false);
INSERT INTO public.journals VALUES (506, 44, 'Issue', 5, '', '2020-03-14 10:40:12+07', false);
INSERT INTO public.journals VALUES (507, 44, 'Issue', 5, '', '2020-03-14 10:41:21+07', false);
INSERT INTO public.journals VALUES (508, 14, 'Issue', 5, '', '2020-03-14 10:46:47+07', false);
INSERT INTO public.journals VALUES (509, 14, 'Issue', 5, '', '2020-03-14 10:47:28+07', false);
INSERT INTO public.journals VALUES (510, 103, 'Issue', 5, '', '2020-03-14 10:48:38+07', false);
INSERT INTO public.journals VALUES (511, 104, 'Issue', 5, '', '2020-03-14 10:48:38+07', false);
INSERT INTO public.journals VALUES (512, 105, 'Issue', 5, '', '2020-03-14 10:48:38+07', false);
INSERT INTO public.journals VALUES (513, 106, 'Issue', 5, '', '2020-03-14 10:48:38+07', false);
INSERT INTO public.journals VALUES (514, 107, 'Issue', 5, '', '2020-03-14 10:48:38+07', false);
INSERT INTO public.journals VALUES (515, 108, 'Issue', 5, '', '2020-03-14 10:48:38+07', false);
INSERT INTO public.journals VALUES (516, 109, 'Issue', 5, '', '2020-03-14 10:48:38+07', false);
INSERT INTO public.journals VALUES (517, 110, 'Issue', 5, '', '2020-03-14 10:48:38+07', false);
INSERT INTO public.journals VALUES (518, 111, 'Issue', 5, '', '2020-03-14 10:48:38+07', false);
INSERT INTO public.journals VALUES (519, 112, 'Issue', 5, '', '2020-03-14 10:48:39+07', false);
INSERT INTO public.journals VALUES (520, 113, 'Issue', 5, '', '2020-03-14 10:48:39+07', false);
INSERT INTO public.journals VALUES (521, 114, 'Issue', 5, '', '2020-03-14 10:48:39+07', false);
INSERT INTO public.journals VALUES (522, 115, 'Issue', 5, '', '2020-03-14 10:48:39+07', false);
INSERT INTO public.journals VALUES (523, 116, 'Issue', 5, '', '2020-03-14 10:48:39+07', false);
INSERT INTO public.journals VALUES (524, 117, 'Issue', 5, '', '2020-03-14 10:48:39+07', false);
INSERT INTO public.journals VALUES (525, 118, 'Issue', 5, '', '2020-03-14 10:48:39+07', false);
INSERT INTO public.journals VALUES (526, 119, 'Issue', 5, '', '2020-03-14 10:48:39+07', false);
INSERT INTO public.journals VALUES (527, 120, 'Issue', 5, '', '2020-03-14 10:48:39+07', false);
INSERT INTO public.journals VALUES (528, 121, 'Issue', 5, '', '2020-03-14 10:48:39+07', false);
INSERT INTO public.journals VALUES (529, 122, 'Issue', 5, '', '2020-03-14 10:48:40+07', false);
INSERT INTO public.journals VALUES (530, 123, 'Issue', 5, '', '2020-03-14 10:48:40+07', false);
INSERT INTO public.journals VALUES (531, 124, 'Issue', 5, '', '2020-03-14 10:48:40+07', false);
INSERT INTO public.journals VALUES (532, 125, 'Issue', 5, '', '2020-03-14 10:48:40+07', false);
INSERT INTO public.journals VALUES (533, 126, 'Issue', 5, '', '2020-03-14 10:48:40+07', false);
INSERT INTO public.journals VALUES (534, 127, 'Issue', 5, '', '2020-03-14 10:48:40+07', false);
INSERT INTO public.journals VALUES (536, 104, 'Issue', 8, NULL, '2020-03-14 11:17:46+07', false);
INSERT INTO public.journals VALUES (537, 153, 'Issue', 8, NULL, '2020-03-14 11:17:46+07', false);
INSERT INTO public.journals VALUES (538, 154, 'Issue', 8, NULL, '2020-03-14 11:17:47+07', false);
INSERT INTO public.journals VALUES (539, 153, 'Issue', 8, NULL, '2020-03-14 11:17:57+07', false);
INSERT INTO public.journals VALUES (540, 154, 'Issue', 8, NULL, '2020-03-14 11:17:58+07', false);
INSERT INTO public.journals VALUES (541, 12, 'Issue', 5, '', '2020-03-14 11:18:09+07', false);
INSERT INTO public.journals VALUES (542, 156, 'Issue', 10, NULL, '2020-03-14 11:30:14+07', false);
INSERT INTO public.journals VALUES (543, 159, 'Issue', 10, NULL, '2020-03-14 11:30:21+07', false);
INSERT INTO public.journals VALUES (544, 160, 'Issue', 10, NULL, '2020-03-14 11:30:29+07', false);
INSERT INTO public.journals VALUES (545, 158, 'Issue', 10, NULL, '2020-03-14 15:26:45+07', false);
INSERT INTO public.journals VALUES (546, 158, 'Issue', 10, '', '2020-03-14 15:26:58+07', false);
INSERT INTO public.journals VALUES (547, 151, 'Issue', 8, NULL, '2020-03-14 16:22:06+07', false);
INSERT INTO public.journals VALUES (548, 151, 'Issue', 8, NULL, '2020-03-14 16:22:11+07', false);
INSERT INTO public.journals VALUES (549, 43, 'Issue', 5, '', '2020-03-14 16:37:34+07', false);
INSERT INTO public.journals VALUES (550, 149, 'Issue', 8, NULL, '2020-03-16 01:16:47+07', false);
INSERT INTO public.journals VALUES (551, 149, 'Issue', 8, NULL, '2020-03-16 01:17:05+07', false);
INSERT INTO public.journals VALUES (552, 159, 'Issue', 10, NULL, '2020-03-16 01:22:42+07', false);
INSERT INTO public.journals VALUES (553, 157, 'Issue', 10, NULL, '2020-03-16 08:22:57+07', false);
INSERT INTO public.journals VALUES (554, 164, 'Issue', 8, '', '2020-03-16 08:45:09+07', false);
INSERT INTO public.journals VALUES (555, 161, 'Issue', 10, NULL, '2020-03-16 10:12:51+07', false);
INSERT INTO public.journals VALUES (556, 168, 'Issue', 5, NULL, '2020-03-16 11:05:58+07', false);
INSERT INTO public.journals VALUES (557, 168, 'Issue', 5, NULL, '2020-03-16 11:06:03+07', false);
INSERT INTO public.journals VALUES (558, 91, 'Issue', 8, NULL, '2020-03-16 11:24:38+07', false);
INSERT INTO public.journals VALUES (559, 91, 'Issue', 8, NULL, '2020-03-16 11:24:43+07', false);
INSERT INTO public.journals VALUES (560, 93, 'Issue', 8, NULL, '2020-03-16 13:33:43+07', false);
INSERT INTO public.journals VALUES (561, 93, 'Issue', 8, NULL, '2020-03-16 13:33:48+07', false);
INSERT INTO public.journals VALUES (562, 166, 'Issue', 8, NULL, '2020-03-16 14:26:01+07', false);
INSERT INTO public.journals VALUES (563, 166, 'Issue', 8, NULL, '2020-03-16 14:26:06+07', false);
INSERT INTO public.journals VALUES (564, 43, 'Issue', 5, '', '2020-03-16 17:02:51+07', false);
INSERT INTO public.journals VALUES (565, 169, 'Issue', 8, NULL, '2020-03-17 08:48:41+07', false);
INSERT INTO public.journals VALUES (566, 169, 'Issue', 8, NULL, '2020-03-17 08:48:48+07', false);
INSERT INTO public.journals VALUES (567, 162, 'Issue', 8, '', '2020-03-17 02:58:36+07', false);
INSERT INTO public.journals VALUES (568, 162, 'Issue', 8, '', '2020-03-17 02:59:15+07', false);
INSERT INTO public.journals VALUES (569, 20, 'Issue', 5, '', '2020-03-17 11:39:44+07', false);
INSERT INTO public.journals VALUES (570, 21, 'Issue', 5, '', '2020-03-17 11:39:46+07', false);
INSERT INTO public.journals VALUES (571, 26, 'Issue', 5, '', '2020-03-17 11:39:47+07', false);
INSERT INTO public.journals VALUES (572, 27, 'Issue', 5, '', '2020-03-17 11:39:49+07', false);
INSERT INTO public.journals VALUES (573, 28, 'Issue', 5, '', '2020-03-17 11:39:50+07', false);
INSERT INTO public.journals VALUES (574, 29, 'Issue', 5, '', '2020-03-17 11:39:51+07', false);
INSERT INTO public.journals VALUES (575, 30, 'Issue', 5, '', '2020-03-17 11:39:53+07', false);
INSERT INTO public.journals VALUES (576, 31, 'Issue', 5, '', '2020-03-17 11:39:56+07', false);
INSERT INTO public.journals VALUES (577, 32, 'Issue', 5, '', '2020-03-17 11:39:57+07', false);
INSERT INTO public.journals VALUES (578, 38, 'Issue', 5, '', '2020-03-17 11:39:58+07', false);
INSERT INTO public.journals VALUES (579, 66, 'Issue', 5, '', '2020-03-17 11:39:59+07', false);
INSERT INTO public.journals VALUES (580, 68, 'Issue', 5, '', '2020-03-17 11:40:00+07', false);
INSERT INTO public.journals VALUES (581, 69, 'Issue', 5, '', '2020-03-17 11:40:02+07', false);
INSERT INTO public.journals VALUES (582, 71, 'Issue', 5, '', '2020-03-17 11:40:03+07', false);
INSERT INTO public.journals VALUES (583, 72, 'Issue', 5, '', '2020-03-17 11:40:04+07', false);
INSERT INTO public.journals VALUES (584, 73, 'Issue', 5, '', '2020-03-17 11:40:05+07', false);
INSERT INTO public.journals VALUES (585, 74, 'Issue', 5, '', '2020-03-17 11:40:06+07', false);
INSERT INTO public.journals VALUES (586, 75, 'Issue', 5, '', '2020-03-17 11:40:07+07', false);
INSERT INTO public.journals VALUES (587, 86, 'Issue', 5, '', '2020-03-17 11:40:09+07', false);
INSERT INTO public.journals VALUES (588, 89, 'Issue', 5, '', '2020-03-17 11:40:10+07', false);
INSERT INTO public.journals VALUES (589, 128, 'Issue', 5, '', '2020-03-17 11:40:11+07', false);
INSERT INTO public.journals VALUES (590, 129, 'Issue', 5, '', '2020-03-17 11:40:12+07', false);
INSERT INTO public.journals VALUES (591, 130, 'Issue', 5, '', '2020-03-17 11:40:14+07', false);
INSERT INTO public.journals VALUES (592, 131, 'Issue', 5, '', '2020-03-17 11:40:15+07', false);
INSERT INTO public.journals VALUES (593, 155, 'Issue', 5, '', '2020-03-17 11:40:16+07', false);
INSERT INTO public.journals VALUES (594, 156, 'Issue', 5, '', '2020-03-17 11:40:17+07', false);
INSERT INTO public.journals VALUES (595, 157, 'Issue', 5, '', '2020-03-17 11:40:19+07', false);
INSERT INTO public.journals VALUES (596, 158, 'Issue', 5, '', '2020-03-17 11:40:20+07', false);
INSERT INTO public.journals VALUES (597, 159, 'Issue', 5, '', '2020-03-17 11:40:21+07', false);
INSERT INTO public.journals VALUES (598, 160, 'Issue', 5, '', '2020-03-17 11:40:22+07', false);
INSERT INTO public.journals VALUES (599, 161, 'Issue', 5, '', '2020-03-17 11:40:24+07', false);
INSERT INTO public.journals VALUES (600, 167, 'Issue', 10, NULL, '2020-03-17 16:12:09+07', false);
INSERT INTO public.journals VALUES (601, 171, 'Issue', 10, NULL, '2020-03-17 17:02:17+07', false);
INSERT INTO public.journals VALUES (602, 147, 'Issue', 10, NULL, '2020-03-17 17:03:28+07', false);
INSERT INTO public.journals VALUES (603, 147, 'Issue', 10, '', '2020-03-17 17:03:52+07', false);
INSERT INTO public.journals VALUES (604, 148, 'Issue', 10, '', '2020-03-17 17:04:20+07', false);
INSERT INTO public.journals VALUES (605, 172, 'Issue', 12, NULL, '2020-03-17 21:17:17+07', false);
INSERT INTO public.journals VALUES (606, 173, 'Issue', 12, NULL, '2020-03-17 21:18:10+07', false);
INSERT INTO public.journals VALUES (607, 172, 'Issue', 12, NULL, '2020-03-17 21:19:50+07', false);
INSERT INTO public.journals VALUES (608, 173, 'Issue', 12, '', '2020-03-17 21:20:13+07', false);
INSERT INTO public.journals VALUES (609, 173, 'Issue', 12, NULL, '2020-03-17 21:20:31+07', false);
INSERT INTO public.journals VALUES (610, 176, 'Issue', 12, NULL, '2020-03-17 21:20:41+07', false);
INSERT INTO public.journals VALUES (611, 177, 'Issue', 12, NULL, '2020-03-17 21:20:50+07', false);
INSERT INTO public.journals VALUES (612, 178, 'Issue', 12, NULL, '2020-03-17 21:21:00+07', false);
INSERT INTO public.journals VALUES (613, 181, 'Issue', 12, NULL, '2020-03-17 21:25:11+07', false);
INSERT INTO public.journals VALUES (614, 180, 'Issue', 12, NULL, '2020-03-17 21:25:20+07', false);
INSERT INTO public.journals VALUES (615, 180, 'Issue', 12, NULL, '2020-03-17 21:25:27+07', false);
INSERT INTO public.journals VALUES (616, 182, 'Issue', 12, NULL, '2020-03-17 21:25:36+07', false);
INSERT INTO public.journals VALUES (617, 204, 'Issue', 12, NULL, '2020-03-17 21:39:36+07', false);
INSERT INTO public.journals VALUES (618, 203, 'Issue', 12, NULL, '2020-03-17 21:39:39+07', false);
INSERT INTO public.journals VALUES (619, 202, 'Issue', 12, NULL, '2020-03-17 21:39:46+07', false);
INSERT INTO public.journals VALUES (620, 220, 'Issue', 5, '', '2020-03-18 13:41:56+07', false);
INSERT INTO public.journals VALUES (621, 205, 'Issue', 5, '', '2020-03-18 13:51:43+07', false);
INSERT INTO public.journals VALUES (622, 205, 'Issue', 5, '', '2020-03-18 13:52:39+07', false);
INSERT INTO public.journals VALUES (623, 173, 'Issue', 5, '', '2020-03-18 13:56:20+07', false);
INSERT INTO public.journals VALUES (624, 176, 'Issue', 5, '', '2020-03-18 13:56:20+07', false);
INSERT INTO public.journals VALUES (625, 177, 'Issue', 5, '', '2020-03-18 13:56:21+07', false);
INSERT INTO public.journals VALUES (626, 178, 'Issue', 5, '', '2020-03-18 13:56:21+07', false);
INSERT INTO public.journals VALUES (627, 180, 'Issue', 5, '', '2020-03-18 13:56:21+07', false);
INSERT INTO public.journals VALUES (628, 181, 'Issue', 5, '', '2020-03-18 13:56:21+07', false);
INSERT INTO public.journals VALUES (629, 182, 'Issue', 5, '', '2020-03-18 13:56:21+07', false);
INSERT INTO public.journals VALUES (630, 187, 'Issue', 5, '', '2020-03-18 13:56:21+07', false);
INSERT INTO public.journals VALUES (631, 202, 'Issue', 5, '', '2020-03-18 13:56:21+07', false);
INSERT INTO public.journals VALUES (632, 203, 'Issue', 5, '', '2020-03-18 13:56:21+07', false);
INSERT INTO public.journals VALUES (633, 204, 'Issue', 5, '', '2020-03-18 13:56:22+07', false);
INSERT INTO public.journals VALUES (634, 188, 'Issue', 5, '', '2020-03-18 13:57:24+07', false);
INSERT INTO public.journals VALUES (635, 191, 'Issue', 5, '', '2020-03-18 13:59:25+07', false);
INSERT INTO public.journals VALUES (636, 191, 'Issue', 5, NULL, '2020-03-18 13:59:35+07', false);
INSERT INTO public.journals VALUES (637, 222, 'Issue', 5, '', '2020-03-18 14:06:17+07', false);
INSERT INTO public.journals VALUES (638, 223, 'Issue', 5, '', '2020-03-18 14:06:17+07', false);
INSERT INTO public.journals VALUES (639, 224, 'Issue', 5, '', '2020-03-18 14:06:17+07', false);
INSERT INTO public.journals VALUES (640, 225, 'Issue', 5, '', '2020-03-18 14:06:17+07', false);
INSERT INTO public.journals VALUES (641, 227, 'Issue', 12, '', '2020-03-18 14:07:29+07', false);
INSERT INTO public.journals VALUES (643, 238, 'Issue', 5, '', '2020-03-18 14:14:59+07', false);
INSERT INTO public.journals VALUES (644, 239, 'Issue', 5, '', '2020-03-18 14:14:59+07', false);
INSERT INTO public.journals VALUES (645, 240, 'Issue', 5, '', '2020-03-18 14:14:59+07', false);
INSERT INTO public.journals VALUES (647, 242, 'Issue', 5, '', '2020-03-18 14:14:59+07', false);
INSERT INTO public.journals VALUES (649, 244, 'Issue', 5, '', '2020-03-18 14:14:59+07', false);
INSERT INTO public.journals VALUES (650, 245, 'Issue', 5, '', '2020-03-18 14:14:59+07', false);
INSERT INTO public.journals VALUES (651, 225, 'Issue', 13, NULL, '2020-03-18 14:21:51+07', false);
INSERT INTO public.journals VALUES (652, 225, 'Issue', 13, NULL, '2020-03-18 14:21:59+07', false);
INSERT INTO public.journals VALUES (653, 224, 'Issue', 13, NULL, '2020-03-18 14:22:05+07', false);
INSERT INTO public.journals VALUES (654, 224, 'Issue', 13, NULL, '2020-03-18 14:22:12+07', false);
INSERT INTO public.journals VALUES (655, 207, 'Issue', 13, NULL, '2020-03-18 14:22:23+07', false);
INSERT INTO public.journals VALUES (656, 211, 'Issue', 13, NULL, '2020-03-18 14:23:03+07', false);
INSERT INTO public.journals VALUES (657, 211, 'Issue', 13, NULL, '2020-03-18 14:23:10+07', false);
INSERT INTO public.journals VALUES (658, 188, 'Issue', 12, NULL, '2020-03-18 14:25:02+07', false);
INSERT INTO public.journals VALUES (659, 188, 'Issue', 12, '', '2020-03-18 14:25:43+07', false);
INSERT INTO public.journals VALUES (664, 198, 'Issue', 12, '', '2020-03-18 16:47:28+07', false);
INSERT INTO public.journals VALUES (665, 249, 'Issue', 10, '', '2020-03-18 16:47:46+07', false);
INSERT INTO public.journals VALUES (667, 174, 'Issue', 12, '', '2020-03-18 16:48:40+07', false);
INSERT INTO public.journals VALUES (670, 192, 'Issue', 12, '', '2020-03-18 16:50:52+07', false);
INSERT INTO public.journals VALUES (671, 193, 'Issue', 12, '', '2020-03-18 17:01:28+07', false);
INSERT INTO public.journals VALUES (672, 194, 'Issue', 12, '', '2020-03-18 17:03:11+07', false);
INSERT INTO public.journals VALUES (673, 195, 'Issue', 12, '', '2020-03-18 17:03:30+07', false);
INSERT INTO public.journals VALUES (674, 199, 'Issue', 12, '', '2020-03-18 17:04:56+07', false);
INSERT INTO public.journals VALUES (675, 229, 'Issue', 12, '', '2020-03-18 22:24:29+07', false);
INSERT INTO public.journals VALUES (676, 231, 'Issue', 12, '', '2020-03-18 22:24:49+07', false);
INSERT INTO public.journals VALUES (677, 233, 'Issue', 12, '', '2020-03-18 22:25:21+07', false);
INSERT INTO public.journals VALUES (678, 230, 'Issue', 12, '', '2020-03-18 22:26:03+07', false);
INSERT INTO public.journals VALUES (684, 174, 'Issue', 12, '', '2020-03-19 08:10:32+07', false);
INSERT INTO public.journals VALUES (685, 174, 'Issue', 12, '', '2020-03-19 08:10:49+07', false);
INSERT INTO public.journals VALUES (692, 191, 'Issue', 12, '', '2020-03-19 08:25:09+07', false);
INSERT INTO public.journals VALUES (693, 174, 'Issue', 12, '', '2020-03-19 08:26:05+07', false);
INSERT INTO public.journals VALUES (694, 250, 'Issue', 12, '', '2020-03-19 08:27:17+07', false);
INSERT INTO public.journals VALUES (695, 250, 'Issue', 12, '', '2020-03-19 08:27:59+07', false);
INSERT INTO public.journals VALUES (696, 195, 'Issue', 12, '', '2020-03-19 08:28:41+07', false);
INSERT INTO public.journals VALUES (697, 192, 'Issue', 12, '', '2020-03-19 08:29:41+07', false);
INSERT INTO public.journals VALUES (698, 192, 'Issue', 12, '', '2020-03-19 08:30:23+07', false);
INSERT INTO public.journals VALUES (699, 192, 'Issue', 12, '', '2020-03-19 08:30:54+07', false);
INSERT INTO public.journals VALUES (700, 199, 'Issue', 12, '', '2020-03-19 08:31:35+07', false);
INSERT INTO public.journals VALUES (701, 254, 'Issue', 10, '', '2020-03-19 08:31:47+07', false);
INSERT INTO public.journals VALUES (702, 198, 'Issue', 12, '', '2020-03-19 08:32:16+07', false);
INSERT INTO public.journals VALUES (703, 256, 'Issue', 12, NULL, '2020-03-19 08:38:13+07', false);
INSERT INTO public.journals VALUES (704, 195, 'Issue', 12, '', '2020-03-19 08:49:59+07', false);
INSERT INTO public.journals VALUES (707, 252, 'Issue', 12, '', '2020-03-19 08:55:40+07', false);
INSERT INTO public.journals VALUES (710, 192, 'Issue', 12, '', '2020-03-19 08:57:49+07', false);
INSERT INTO public.journals VALUES (711, 254, 'Issue', 10, NULL, '2020-03-19 09:10:16+07', false);
INSERT INTO public.journals VALUES (712, 255, 'Issue', 10, NULL, '2020-03-19 09:10:24+07', false);
INSERT INTO public.journals VALUES (713, 260, 'Issue', 12, '', '2020-03-19 06:53:44+07', false);
INSERT INTO public.journals VALUES (714, 12, 'Issue', 5, '', '2020-03-19 16:31:59+07', false);
INSERT INTO public.journals VALUES (715, 14, 'Issue', 5, '', '2020-03-19 16:32:00+07', false);
INSERT INTO public.journals VALUES (717, 92, 'Issue', 5, '', '2020-03-19 16:32:03+07', false);
INSERT INTO public.journals VALUES (719, 206, 'Issue', 5, '', '2020-03-19 16:32:07+07', false);
INSERT INTO public.journals VALUES (720, 206, 'Issue', 5, NULL, '2020-03-19 16:35:12+07', false);
INSERT INTO public.journals VALUES (721, 206, 'Issue', 5, NULL, '2020-03-19 16:35:21+07', false);
INSERT INTO public.journals VALUES (722, 12, 'Issue', 5, '', '2020-03-19 16:36:00+07', false);
INSERT INTO public.journals VALUES (723, 15, 'Issue', 5, '', '2020-03-19 16:36:00+07', false);
INSERT INTO public.journals VALUES (725, 92, 'Issue', 5, '', '2020-03-19 16:37:10+07', false);
INSERT INTO public.journals VALUES (727, 104, 'Issue', 5, NULL, '2020-03-19 16:38:12+07', false);
INSERT INTO public.journals VALUES (728, 43, 'Issue', 5, '', '2020-03-19 16:38:45+07', false);
INSERT INTO public.journals VALUES (729, 122, 'Issue', 5, '', '2020-03-19 16:40:21+07', false);
INSERT INTO public.journals VALUES (730, 123, 'Issue', 5, '', '2020-03-19 16:40:22+07', false);
INSERT INTO public.journals VALUES (731, 124, 'Issue', 5, '', '2020-03-19 16:40:22+07', false);
INSERT INTO public.journals VALUES (732, 125, 'Issue', 5, '', '2020-03-19 16:40:22+07', false);
INSERT INTO public.journals VALUES (733, 126, 'Issue', 5, '', '2020-03-19 16:40:23+07', false);
INSERT INTO public.journals VALUES (734, 127, 'Issue', 5, '', '2020-03-19 16:40:23+07', false);
INSERT INTO public.journals VALUES (735, 117, 'Issue', 5, '', '2020-03-19 16:40:39+07', false);
INSERT INTO public.journals VALUES (736, 118, 'Issue', 5, '', '2020-03-19 16:40:40+07', false);
INSERT INTO public.journals VALUES (737, 119, 'Issue', 5, '', '2020-03-19 16:40:40+07', false);
INSERT INTO public.journals VALUES (738, 120, 'Issue', 5, '', '2020-03-19 16:40:40+07', false);
INSERT INTO public.journals VALUES (739, 121, 'Issue', 5, '', '2020-03-19 16:40:40+07', false);
INSERT INTO public.journals VALUES (740, 112, 'Issue', 5, '', '2020-03-19 16:40:57+07', false);
INSERT INTO public.journals VALUES (741, 113, 'Issue', 5, '', '2020-03-19 16:40:58+07', false);
INSERT INTO public.journals VALUES (742, 114, 'Issue', 5, '', '2020-03-19 16:40:58+07', false);
INSERT INTO public.journals VALUES (743, 115, 'Issue', 5, '', '2020-03-19 16:40:58+07', false);
INSERT INTO public.journals VALUES (744, 116, 'Issue', 5, '', '2020-03-19 16:40:58+07', false);
INSERT INTO public.journals VALUES (745, 107, 'Issue', 5, '', '2020-03-19 16:42:52+07', false);
INSERT INTO public.journals VALUES (746, 108, 'Issue', 5, '', '2020-03-19 16:42:52+07', false);
INSERT INTO public.journals VALUES (747, 109, 'Issue', 5, '', '2020-03-19 16:42:52+07', false);
INSERT INTO public.journals VALUES (748, 110, 'Issue', 5, '', '2020-03-19 16:42:53+07', false);
INSERT INTO public.journals VALUES (749, 111, 'Issue', 5, '', '2020-03-19 16:42:53+07', false);
INSERT INTO public.journals VALUES (750, 145, 'Issue', 5, '', '2020-03-19 16:51:58+07', false);
INSERT INTO public.journals VALUES (751, 146, 'Issue', 5, '', '2020-03-19 16:51:58+07', false);
INSERT INTO public.journals VALUES (752, 262, 'Issue', 8, '', '2020-03-19 17:05:43+07', false);
INSERT INTO public.journals VALUES (753, 263, 'Issue', 8, '', '2020-03-19 17:05:44+07', false);
INSERT INTO public.journals VALUES (754, 264, 'Issue', 8, '', '2020-03-19 17:05:44+07', false);
INSERT INTO public.journals VALUES (755, 265, 'Issue', 8, '', '2020-03-19 17:05:44+07', false);
INSERT INTO public.journals VALUES (756, 266, 'Issue', 8, '', '2020-03-19 17:05:44+07', false);
INSERT INTO public.journals VALUES (757, 267, 'Issue', 8, '', '2020-03-19 17:05:44+07', false);
INSERT INTO public.journals VALUES (758, 268, 'Issue', 8, '', '2020-03-19 17:05:44+07', false);
INSERT INTO public.journals VALUES (759, 269, 'Issue', 8, '', '2020-03-19 17:05:44+07', false);
INSERT INTO public.journals VALUES (760, 270, 'Issue', 8, '', '2020-03-19 17:05:45+07', false);
INSERT INTO public.journals VALUES (761, 271, 'Issue', 8, '', '2020-03-19 17:05:45+07', false);
INSERT INTO public.journals VALUES (762, 272, 'Issue', 8, '', '2020-03-19 17:05:45+07', false);
INSERT INTO public.journals VALUES (763, 273, 'Issue', 8, '', '2020-03-19 17:05:45+07', false);
INSERT INTO public.journals VALUES (764, 274, 'Issue', 8, '', '2020-03-19 17:05:45+07', false);
INSERT INTO public.journals VALUES (765, 275, 'Issue', 8, '', '2020-03-19 17:05:45+07', false);
INSERT INTO public.journals VALUES (766, 276, 'Issue', 8, '', '2020-03-19 17:05:45+07', false);
INSERT INTO public.journals VALUES (767, 277, 'Issue', 8, '', '2020-03-19 17:05:45+07', false);
INSERT INTO public.journals VALUES (768, 278, 'Issue', 8, '', '2020-03-19 17:05:46+07', false);
INSERT INTO public.journals VALUES (769, 263, 'Issue', 8, NULL, '2020-03-19 17:06:59+07', false);
INSERT INTO public.journals VALUES (770, 264, 'Issue', 8, NULL, '2020-03-19 17:06:59+07', false);
INSERT INTO public.journals VALUES (771, 265, 'Issue', 8, NULL, '2020-03-19 17:06:59+07', false);
INSERT INTO public.journals VALUES (772, 267, 'Issue', 8, NULL, '2020-03-19 17:06:59+07', false);
INSERT INTO public.journals VALUES (773, 268, 'Issue', 8, NULL, '2020-03-19 17:06:59+07', false);
INSERT INTO public.journals VALUES (774, 269, 'Issue', 8, NULL, '2020-03-19 17:06:59+07', false);
INSERT INTO public.journals VALUES (775, 270, 'Issue', 8, NULL, '2020-03-19 17:06:59+07', false);
INSERT INTO public.journals VALUES (776, 271, 'Issue', 8, NULL, '2020-03-19 17:06:59+07', false);
INSERT INTO public.journals VALUES (777, 272, 'Issue', 8, NULL, '2020-03-19 17:07:00+07', false);
INSERT INTO public.journals VALUES (778, 273, 'Issue', 8, NULL, '2020-03-19 17:07:00+07', false);
INSERT INTO public.journals VALUES (779, 274, 'Issue', 8, NULL, '2020-03-19 17:07:00+07', false);
INSERT INTO public.journals VALUES (780, 275, 'Issue', 8, NULL, '2020-03-19 17:07:00+07', false);
INSERT INTO public.journals VALUES (781, 276, 'Issue', 8, NULL, '2020-03-19 17:07:00+07', false);
INSERT INTO public.journals VALUES (782, 277, 'Issue', 8, NULL, '2020-03-19 17:07:00+07', false);
INSERT INTO public.journals VALUES (783, 278, 'Issue', 8, NULL, '2020-03-19 17:07:00+07', false);
INSERT INTO public.journals VALUES (784, 262, 'Issue', 8, NULL, '2020-03-19 17:07:15+07', false);
INSERT INTO public.journals VALUES (785, 263, 'Issue', 8, NULL, '2020-03-19 17:07:15+07', false);
INSERT INTO public.journals VALUES (786, 264, 'Issue', 8, NULL, '2020-03-19 17:07:15+07', false);
INSERT INTO public.journals VALUES (787, 265, 'Issue', 8, NULL, '2020-03-19 17:07:15+07', false);
INSERT INTO public.journals VALUES (788, 267, 'Issue', 8, NULL, '2020-03-19 17:07:15+07', false);
INSERT INTO public.journals VALUES (789, 268, 'Issue', 8, NULL, '2020-03-19 17:07:15+07', false);
INSERT INTO public.journals VALUES (790, 269, 'Issue', 8, NULL, '2020-03-19 17:07:15+07', false);
INSERT INTO public.journals VALUES (791, 270, 'Issue', 8, NULL, '2020-03-19 17:07:16+07', false);
INSERT INTO public.journals VALUES (792, 271, 'Issue', 8, NULL, '2020-03-19 17:07:16+07', false);
INSERT INTO public.journals VALUES (793, 272, 'Issue', 8, NULL, '2020-03-19 17:07:16+07', false);
INSERT INTO public.journals VALUES (794, 273, 'Issue', 8, NULL, '2020-03-19 17:07:16+07', false);
INSERT INTO public.journals VALUES (795, 274, 'Issue', 8, NULL, '2020-03-19 17:07:16+07', false);
INSERT INTO public.journals VALUES (796, 275, 'Issue', 8, NULL, '2020-03-19 17:07:17+07', false);
INSERT INTO public.journals VALUES (797, 276, 'Issue', 8, NULL, '2020-03-19 17:07:17+07', false);
INSERT INTO public.journals VALUES (798, 277, 'Issue', 8, NULL, '2020-03-19 17:07:17+07', false);
INSERT INTO public.journals VALUES (799, 278, 'Issue', 8, NULL, '2020-03-19 17:07:17+07', false);
INSERT INTO public.journals VALUES (801, 250, 'Issue', 12, '', '2020-03-19 23:06:11+07', false);
INSERT INTO public.journals VALUES (802, 250, 'Issue', 12, '', '2020-03-20 00:56:40+07', false);
INSERT INTO public.journals VALUES (803, 252, 'Issue', 12, '', '2020-03-20 01:00:14+07', false);
INSERT INTO public.journals VALUES (804, 253, 'Issue', 12, '', '2020-03-20 01:00:41+07', false);
INSERT INTO public.journals VALUES (805, 205, 'Issue', 5, '', '2020-03-20 08:50:35+07', false);
INSERT INTO public.journals VALUES (806, 286, 'Issue', 12, NULL, '2020-03-20 08:55:06+07', false);
INSERT INTO public.journals VALUES (807, 194, 'Issue', 12, NULL, '2020-03-20 08:55:27+07', false);
INSERT INTO public.journals VALUES (808, 250, 'Issue', 12, NULL, '2020-03-20 08:55:47+07', false);
INSERT INTO public.journals VALUES (809, 286, 'Issue', 12, NULL, '2020-03-20 08:56:03+07', false);
INSERT INTO public.journals VALUES (810, 284, 'Issue', 5, '', '2020-03-20 01:56:44+07', false);
INSERT INTO public.journals VALUES (811, 285, 'Issue', 5, '', '2020-03-20 01:56:55+07', false);
INSERT INTO public.journals VALUES (812, 287, 'Issue', 5, '', '2020-03-20 01:57:13+07', false);
INSERT INTO public.journals VALUES (813, 288, 'Issue', 5, '', '2020-03-20 01:57:42+07', false);
INSERT INTO public.journals VALUES (814, 289, 'Issue', 5, '', '2020-03-20 02:01:30+07', false);
INSERT INTO public.journals VALUES (815, 205, 'Issue', 5, '', '2020-03-20 09:04:22+07', false);
INSERT INTO public.journals VALUES (816, 282, 'Issue', 5, '', '2020-03-20 09:04:22+07', false);
INSERT INTO public.journals VALUES (817, 283, 'Issue', 5, '', '2020-03-20 09:04:22+07', false);
INSERT INTO public.journals VALUES (818, 284, 'Issue', 5, '', '2020-03-20 09:04:22+07', false);
INSERT INTO public.journals VALUES (819, 285, 'Issue', 5, '', '2020-03-20 09:04:22+07', false);
INSERT INTO public.journals VALUES (820, 287, 'Issue', 5, '', '2020-03-20 09:04:23+07', false);
INSERT INTO public.journals VALUES (821, 288, 'Issue', 5, '', '2020-03-20 09:04:23+07', false);
INSERT INTO public.journals VALUES (822, 289, 'Issue', 5, '', '2020-03-20 09:04:23+07', false);
INSERT INTO public.journals VALUES (823, 290, 'Issue', 5, '', '2020-03-20 09:04:23+07', false);
INSERT INTO public.journals VALUES (824, 291, 'Issue', 5, '', '2020-03-20 09:04:23+07', false);
INSERT INTO public.journals VALUES (827, 240, 'Issue', 5, '', '2020-03-20 10:17:08+07', false);
INSERT INTO public.journals VALUES (828, 244, 'Issue', 5, '', '2020-03-20 10:17:40+07', false);
INSERT INTO public.journals VALUES (829, 254, 'Issue', 5, NULL, '2020-03-20 10:21:39+07', false);
INSERT INTO public.journals VALUES (830, 255, 'Issue', 5, NULL, '2020-03-20 10:21:39+07', false);
INSERT INTO public.journals VALUES (831, 85, 'Issue', 5, NULL, '2020-03-20 10:21:39+07', false);
INSERT INTO public.journals VALUES (832, 167, 'Issue', 5, NULL, '2020-03-20 10:21:39+07', false);
INSERT INTO public.journals VALUES (833, 147, 'Issue', 5, NULL, '2020-03-20 10:21:39+07', false);
INSERT INTO public.journals VALUES (834, 170, 'Issue', 5, NULL, '2020-03-20 10:21:39+07', false);
INSERT INTO public.journals VALUES (835, 171, 'Issue', 5, NULL, '2020-03-20 10:21:40+07', false);
INSERT INTO public.journals VALUES (836, 262, 'Issue', 5, NULL, '2020-03-20 10:23:17+07', false);
INSERT INTO public.journals VALUES (837, 252, 'Issue', 12, NULL, '2020-03-20 11:11:18+07', false);
INSERT INTO public.journals VALUES (838, 252, 'Issue', 12, '', '2020-03-20 11:11:29+07', false);
INSERT INTO public.journals VALUES (839, 266, 'Issue', 8, NULL, '2020-03-20 13:18:03+07', false);
INSERT INTO public.journals VALUES (840, 266, 'Issue', 8, NULL, '2020-03-20 13:18:09+07', false);
INSERT INTO public.journals VALUES (841, 292, 'Issue', 8, '', '2020-03-20 13:54:06+07', false);
INSERT INTO public.journals VALUES (842, 292, 'Issue', 8, NULL, '2020-03-20 16:49:14+07', false);
INSERT INTO public.journals VALUES (843, 293, 'Issue', 8, NULL, '2020-03-20 16:49:14+07', false);
INSERT INTO public.journals VALUES (844, 294, 'Issue', 8, NULL, '2020-03-20 16:49:15+07', false);
INSERT INTO public.journals VALUES (845, 295, 'Issue', 8, NULL, '2020-03-20 16:49:15+07', false);
INSERT INTO public.journals VALUES (846, 292, 'Issue', 8, NULL, '2020-03-20 16:49:22+07', false);
INSERT INTO public.journals VALUES (847, 293, 'Issue', 8, NULL, '2020-03-20 16:49:22+07', false);
INSERT INTO public.journals VALUES (848, 294, 'Issue', 8, NULL, '2020-03-20 16:49:22+07', false);
INSERT INTO public.journals VALUES (849, 295, 'Issue', 8, NULL, '2020-03-20 16:49:23+07', false);
INSERT INTO public.journals VALUES (850, 292, 'Issue', 8, NULL, '2020-03-20 16:49:32+07', false);
INSERT INTO public.journals VALUES (851, 293, 'Issue', 8, NULL, '2020-03-20 16:49:33+07', false);
INSERT INTO public.journals VALUES (852, 294, 'Issue', 8, NULL, '2020-03-20 16:49:33+07', false);
INSERT INTO public.journals VALUES (853, 295, 'Issue', 8, NULL, '2020-03-20 16:49:33+07', false);
INSERT INTO public.journals VALUES (854, 43, 'Issue', 8, NULL, '2020-03-20 09:57:42+07', false);
INSERT INTO public.journals VALUES (855, 43, 'Issue', 8, NULL, '2020-03-20 09:57:50+07', false);
INSERT INTO public.journals VALUES (856, 195, 'Issue', 12, '', '2020-03-21 08:07:44+07', false);
INSERT INTO public.journals VALUES (857, 212, 'Issue', 5, '', '2020-03-21 10:11:41+07', false);
INSERT INTO public.journals VALUES (858, 215, 'Issue', 5, '', '2020-03-21 10:11:41+07', false);
INSERT INTO public.journals VALUES (859, 216, 'Issue', 5, '', '2020-03-21 10:11:41+07', false);
INSERT INTO public.journals VALUES (860, 217, 'Issue', 5, '', '2020-03-21 10:11:41+07', false);
INSERT INTO public.journals VALUES (861, 218, 'Issue', 5, '', '2020-03-21 10:11:42+07', false);
INSERT INTO public.journals VALUES (863, 220, 'Issue', 5, '', '2020-03-21 10:11:42+07', false);
INSERT INTO public.journals VALUES (864, 221, 'Issue', 5, '', '2020-03-21 10:11:42+07', false);
INSERT INTO public.journals VALUES (865, 222, 'Issue', 5, '', '2020-03-21 10:11:42+07', false);
INSERT INTO public.journals VALUES (866, 223, 'Issue', 5, '', '2020-03-21 10:11:42+07', false);
INSERT INTO public.journals VALUES (867, 246, 'Issue', 5, '', '2020-03-21 10:11:42+07', false);
INSERT INTO public.journals VALUES (868, 247, 'Issue', 5, '', '2020-03-21 10:11:43+07', false);
INSERT INTO public.journals VALUES (869, 248, 'Issue', 5, '', '2020-03-21 10:11:43+07', false);
INSERT INTO public.journals VALUES (870, 218, 'Issue', 5, '', '2020-03-21 10:12:29+07', false);
INSERT INTO public.journals VALUES (872, 216, 'Issue', 5, '', '2020-03-21 10:12:41+07', false);
INSERT INTO public.journals VALUES (873, 217, 'Issue', 5, '', '2020-03-21 10:12:41+07', false);
INSERT INTO public.journals VALUES (874, 215, 'Issue', 5, '', '2020-03-21 10:12:56+07', false);
INSERT INTO public.journals VALUES (875, 248, 'Issue', 5, '', '2020-03-21 10:12:56+07', false);
INSERT INTO public.journals VALUES (876, 246, 'Issue', 5, '', '2020-03-21 10:13:15+07', false);
INSERT INTO public.journals VALUES (877, 247, 'Issue', 5, '', '2020-03-21 10:13:16+07', false);
INSERT INTO public.journals VALUES (878, 222, 'Issue', 5, '', '2020-03-21 10:13:30+07', false);
INSERT INTO public.journals VALUES (879, 223, 'Issue', 5, '', '2020-03-21 10:13:30+07', false);
INSERT INTO public.journals VALUES (880, 238, 'Issue', 5, '', '2020-03-21 10:14:55+07', false);
INSERT INTO public.journals VALUES (881, 244, 'Issue', 5, '', '2020-03-21 10:14:55+07', false);
INSERT INTO public.journals VALUES (882, 239, 'Issue', 5, '', '2020-03-21 10:15:19+07', false);
INSERT INTO public.journals VALUES (883, 245, 'Issue', 5, '', '2020-03-21 10:15:19+07', false);
INSERT INTO public.journals VALUES (884, 303, 'Issue', 5, '', '2020-03-21 10:21:27+07', false);
INSERT INTO public.journals VALUES (885, 163, 'Issue', 8, NULL, '2020-03-21 10:45:08+07', false);
INSERT INTO public.journals VALUES (886, 163, 'Issue', 8, NULL, '2020-03-21 10:45:15+07', false);
INSERT INTO public.journals VALUES (887, 12, 'Issue', 5, '', '2020-03-21 10:46:58+07', false);
INSERT INTO public.journals VALUES (888, 15, 'Issue', 5, '', '2020-03-21 10:46:58+07', false);
INSERT INTO public.journals VALUES (889, 249, 'Issue', 10, NULL, '2020-03-21 11:12:31+07', false);
INSERT INTO public.journals VALUES (890, 258, 'Issue', 12, '', '2020-03-21 15:29:57+07', false);
INSERT INTO public.journals VALUES (891, 258, 'Issue', 12, NULL, '2020-03-21 15:30:16+07', false);
INSERT INTO public.journals VALUES (892, 148, 'Issue', 10, NULL, '2020-03-21 16:05:07+07', false);
INSERT INTO public.journals VALUES (893, 308, 'Issue', 10, NULL, '2020-03-21 20:52:15+07', false);
INSERT INTO public.journals VALUES (894, 281, 'Issue', 12, '', '2020-03-21 21:56:26+07', false);
INSERT INTO public.journals VALUES (895, 242, 'Issue', 5, NULL, '2020-03-23 08:33:15+07', false);
INSERT INTO public.journals VALUES (896, 240, 'Issue', 5, NULL, '2020-03-23 08:33:23+07', false);
INSERT INTO public.journals VALUES (897, 191, 'Issue', 12, '', '2020-03-23 09:27:02+07', false);
INSERT INTO public.journals VALUES (898, 212, 'Issue', 13, NULL, '2020-03-23 03:50:45+07', false);
INSERT INTO public.journals VALUES (899, 212, 'Issue', 13, NULL, '2020-03-23 03:50:52+07', false);
INSERT INTO public.journals VALUES (900, 215, 'Issue', 13, NULL, '2020-03-23 03:51:19+07', false);
INSERT INTO public.journals VALUES (901, 216, 'Issue', 13, NULL, '2020-03-23 03:51:26+07', false);
INSERT INTO public.journals VALUES (902, 217, 'Issue', 13, NULL, '2020-03-23 03:51:35+07', false);
INSERT INTO public.journals VALUES (903, 218, 'Issue', 13, NULL, '2020-03-23 03:52:00+07', false);
INSERT INTO public.journals VALUES (904, 220, 'Issue', 13, NULL, '2020-03-23 03:52:24+07', false);
INSERT INTO public.journals VALUES (905, 220, 'Issue', 13, NULL, '2020-03-23 03:52:31+07', false);
INSERT INTO public.journals VALUES (906, 221, 'Issue', 13, NULL, '2020-03-23 03:52:37+07', false);
INSERT INTO public.journals VALUES (907, 221, 'Issue', 13, NULL, '2020-03-23 03:52:43+07', false);
INSERT INTO public.journals VALUES (908, 222, 'Issue', 13, NULL, '2020-03-23 03:53:06+07', false);
INSERT INTO public.journals VALUES (909, 222, 'Issue', 13, NULL, '2020-03-23 03:53:14+07', false);
INSERT INTO public.journals VALUES (912, 223, 'Issue', 13, NULL, '2020-03-23 03:58:37+07', false);
INSERT INTO public.journals VALUES (913, 223, 'Issue', 13, NULL, '2020-03-23 03:58:42+07', false);
INSERT INTO public.journals VALUES (914, 289, 'Issue', 5, NULL, '2020-03-23 04:27:45+07', false);
INSERT INTO public.journals VALUES (915, 289, 'Issue', 5, NULL, '2020-03-23 04:27:59+07', false);
INSERT INTO public.journals VALUES (916, 282, 'Issue', 5, NULL, '2020-03-23 04:28:43+07', false);
INSERT INTO public.journals VALUES (917, 282, 'Issue', 5, NULL, '2020-03-23 04:28:47+07', false);
INSERT INTO public.journals VALUES (918, 283, 'Issue', 5, NULL, '2020-03-23 04:29:10+07', false);
INSERT INTO public.journals VALUES (919, 283, 'Issue', 5, NULL, '2020-03-23 04:29:18+07', false);
INSERT INTO public.journals VALUES (920, 296, 'Issue', 5, NULL, '2020-03-23 04:29:53+07', false);
INSERT INTO public.journals VALUES (921, 296, 'Issue', 5, NULL, '2020-03-23 04:30:01+07', false);
INSERT INTO public.journals VALUES (922, 285, 'Issue', 5, NULL, '2020-03-23 04:30:11+07', false);
INSERT INTO public.journals VALUES (923, 285, 'Issue', 5, NULL, '2020-03-23 04:30:16+07', false);
INSERT INTO public.journals VALUES (924, 285, 'Issue', 5, '', '2020-03-23 04:30:53+07', false);
INSERT INTO public.journals VALUES (925, 287, 'Issue', 5, '', '2020-03-23 04:30:54+07', false);
INSERT INTO public.journals VALUES (926, 288, 'Issue', 5, '', '2020-03-23 04:30:54+07', false);
INSERT INTO public.journals VALUES (933, 319, 'Issue', 5, NULL, '2020-03-23 18:46:42+07', false);
INSERT INTO public.journals VALUES (934, 319, 'Issue', 5, NULL, '2020-03-23 18:46:46+07', false);
INSERT INTO public.journals VALUES (935, 318, 'Issue', 5, NULL, '2020-03-23 18:49:40+07', false);
INSERT INTO public.journals VALUES (936, 320, 'Issue', 5, '', '2020-03-23 18:50:34+07', false);
INSERT INTO public.journals VALUES (937, 320, 'Issue', 5, '', '2020-03-23 18:50:45+07', false);
INSERT INTO public.journals VALUES (938, 312, 'Issue', 5, NULL, '2020-03-23 18:51:09+07', false);
INSERT INTO public.journals VALUES (939, 321, 'Issue', 5, NULL, '2020-03-23 18:53:24+07', false);
INSERT INTO public.journals VALUES (940, 323, 'Issue', 5, '', '2020-03-23 18:55:27+07', false);
INSERT INTO public.journals VALUES (941, 326, 'Issue', 5, NULL, '2020-03-23 11:59:07+07', false);
INSERT INTO public.journals VALUES (942, 326, 'Issue', 5, '', '2020-03-23 11:59:43+07', false);
INSERT INTO public.journals VALUES (943, 318, 'Issue', 5, '', '2020-03-23 19:06:08+07', false);
INSERT INTO public.journals VALUES (944, 312, 'Issue', 5, '', '2020-03-23 19:06:08+07', false);
INSERT INTO public.journals VALUES (945, 321, 'Issue', 5, '', '2020-03-23 19:06:08+07', false);
INSERT INTO public.journals VALUES (946, 324, 'Issue', 5, '', '2020-03-23 19:06:08+07', false);
INSERT INTO public.journals VALUES (947, 318, 'Issue', 5, '', '2020-03-23 19:20:18+07', false);
INSERT INTO public.journals VALUES (948, 192, 'Issue', 12, '', '2020-03-25 07:59:38+07', false);
INSERT INTO public.journals VALUES (949, 195, 'Issue', 12, '', '2020-03-25 07:59:52+07', false);
INSERT INTO public.journals VALUES (950, 14, 'Issue', 8, NULL, '2020-03-25 08:04:01+07', false);
INSERT INTO public.journals VALUES (951, 14, 'Issue', 8, NULL, '2020-03-25 08:04:11+07', false);
INSERT INTO public.journals VALUES (952, 191, 'Issue', 12, '', '2020-03-25 08:08:43+07', false);
INSERT INTO public.journals VALUES (953, 174, 'Issue', 12, '', '2020-03-25 08:09:15+07', false);
INSERT INTO public.journals VALUES (954, 230, 'Issue', 12, NULL, '2020-03-25 08:09:34+07', false);
INSERT INTO public.journals VALUES (955, 230, 'Issue', 12, NULL, '2020-03-25 08:09:43+07', false);
INSERT INTO public.journals VALUES (956, 306, 'Issue', 8, NULL, '2020-03-25 08:20:33+07', false);
INSERT INTO public.journals VALUES (957, 306, 'Issue', 8, NULL, '2020-03-25 08:20:41+07', false);
INSERT INTO public.journals VALUES (958, 307, 'Issue', 5, '', '2020-03-25 08:21:49+07', false);
INSERT INTO public.journals VALUES (959, 328, 'Issue', 5, '', '2020-03-25 08:21:49+07', false);
INSERT INTO public.journals VALUES (960, 329, 'Issue', 5, '', '2020-03-25 08:21:49+07', false);
INSERT INTO public.journals VALUES (962, 92, 'Issue', 5, '', '2020-03-25 08:22:11+07', false);
INSERT INTO public.journals VALUES (963, 318, 'Issue', 5, '', '2020-03-25 08:43:12+07', false);
INSERT INTO public.journals VALUES (964, 312, 'Issue', 5, '', '2020-03-25 08:43:12+07', false);
INSERT INTO public.journals VALUES (965, 321, 'Issue', 5, '', '2020-03-25 08:43:12+07', false);
INSERT INTO public.journals VALUES (966, 326, 'Issue', 5, '', '2020-03-25 08:43:12+07', false);
INSERT INTO public.journals VALUES (967, 324, 'Issue', 5, '', '2020-03-25 08:43:12+07', false);
INSERT INTO public.journals VALUES (968, 312, 'Issue', 5, '', '2020-03-25 08:45:03+07', false);
INSERT INTO public.journals VALUES (969, 321, 'Issue', 5, '', '2020-03-25 08:45:03+07', false);
INSERT INTO public.journals VALUES (970, 326, 'Issue', 5, '', '2020-03-25 08:45:03+07', false);
INSERT INTO public.journals VALUES (971, 324, 'Issue', 5, '', '2020-03-25 08:45:03+07', false);
INSERT INTO public.journals VALUES (972, 253, 'Issue', 12, '', '2020-03-25 09:35:25+07', false);
INSERT INTO public.journals VALUES (973, 253, 'Issue', 12, NULL, '2020-03-25 09:35:48+07', false);
INSERT INTO public.journals VALUES (974, 253, 'Issue', 12, NULL, '2020-03-25 09:35:56+07', false);
INSERT INTO public.journals VALUES (975, 233, 'Issue', 12, '', '2020-03-25 09:42:43+07', false);
INSERT INTO public.journals VALUES (977, 233, 'Issue', 12, '', '2020-03-25 09:43:42+07', false);
INSERT INTO public.journals VALUES (978, 174, 'Issue', 12, '', '2020-03-25 13:17:48+07', false);
INSERT INTO public.journals VALUES (981, 259, 'Issue', 12, '', '2020-03-25 13:17:49+07', false);
INSERT INTO public.journals VALUES (982, 260, 'Issue', 12, '', '2020-03-25 13:17:50+07', false);
INSERT INTO public.journals VALUES (983, 191, 'Issue', 12, '', '2020-03-25 13:17:52+07', false);
INSERT INTO public.journals VALUES (984, 192, 'Issue', 12, '', '2020-03-25 13:17:53+07', false);
INSERT INTO public.journals VALUES (985, 195, 'Issue', 12, '', '2020-03-25 13:17:53+07', false);
INSERT INTO public.journals VALUES (986, 198, 'Issue', 12, '', '2020-03-25 13:17:54+07', false);
INSERT INTO public.journals VALUES (987, 199, 'Issue', 12, '', '2020-03-25 13:17:54+07', false);
INSERT INTO public.journals VALUES (990, 233, 'Issue', 12, '', '2020-03-25 13:17:55+07', false);
INSERT INTO public.journals VALUES (991, 256, 'Issue', 12, '', '2020-03-25 13:18:13+07', false);
INSERT INTO public.journals VALUES (992, 256, 'Issue', 12, NULL, '2020-03-25 13:19:53+07', false);
INSERT INTO public.journals VALUES (993, 256, 'Issue', 12, '', '2020-03-25 13:20:11+07', false);
INSERT INTO public.journals VALUES (995, 233, 'Issue', 12, NULL, '2020-03-25 13:54:06+07', false);
INSERT INTO public.journals VALUES (996, 233, 'Issue', 12, NULL, '2020-03-25 13:54:15+07', false);
INSERT INTO public.journals VALUES (997, 233, 'Issue', 12, '', '2020-03-25 13:55:03+07', false);
INSERT INTO public.journals VALUES (998, 174, 'Issue', 12, '', '2020-03-26 08:00:57+07', false);
INSERT INTO public.journals VALUES (1001, 260, 'Issue', 12, '', '2020-03-26 08:05:08+07', false);
INSERT INTO public.journals VALUES (1002, 191, 'Issue', 12, '', '2020-03-26 08:05:39+07', false);
INSERT INTO public.journals VALUES (1003, 199, 'Issue', 12, '', '2020-03-26 08:06:27+07', false);
INSERT INTO public.journals VALUES (1004, 195, 'Issue', 12, '', '2020-03-26 08:10:44+07', false);
INSERT INTO public.journals VALUES (1005, 198, 'Issue', 12, '', '2020-03-26 08:11:22+07', false);
INSERT INTO public.journals VALUES (1006, 192, 'Issue', 12, '', '2020-03-26 08:11:54+07', false);
INSERT INTO public.journals VALUES (1007, 191, 'Issue', 12, '', '2020-03-26 08:12:30+07', false);
INSERT INTO public.journals VALUES (1009, 195, 'Issue', 12, '', '2020-03-26 08:15:48+07', false);
INSERT INTO public.journals VALUES (1010, 191, 'Issue', 12, '', '2020-03-26 08:16:37+07', false);
INSERT INTO public.journals VALUES (1011, 198, 'Issue', 12, '', '2020-03-26 08:16:55+07', false);
INSERT INTO public.journals VALUES (1013, 259, 'Issue', 12, '', '2020-03-26 08:18:41+07', false);
INSERT INTO public.journals VALUES (1014, 226, 'Issue', 5, NULL, '2020-03-26 09:18:02+07', false);
INSERT INTO public.journals VALUES (1015, 238, 'Issue', 5, NULL, '2020-03-26 09:18:02+07', false);
INSERT INTO public.journals VALUES (1016, 239, 'Issue', 5, NULL, '2020-03-26 09:18:02+07', false);
INSERT INTO public.journals VALUES (1017, 240, 'Issue', 5, NULL, '2020-03-26 09:18:02+07', false);
INSERT INTO public.journals VALUES (1018, 242, 'Issue', 5, NULL, '2020-03-26 09:18:02+07', false);
INSERT INTO public.journals VALUES (1019, 244, 'Issue', 5, NULL, '2020-03-26 09:18:03+07', false);
INSERT INTO public.journals VALUES (1020, 245, 'Issue', 5, NULL, '2020-03-26 09:18:03+07', false);
INSERT INTO public.journals VALUES (1021, 299, 'Issue', 5, NULL, '2020-03-26 09:18:03+07', false);
INSERT INTO public.journals VALUES (1022, 300, 'Issue', 5, NULL, '2020-03-26 09:18:03+07', false);
INSERT INTO public.journals VALUES (1023, 301, 'Issue', 5, NULL, '2020-03-26 09:18:03+07', false);
INSERT INTO public.journals VALUES (1025, 303, 'Issue', 5, NULL, '2020-03-26 09:18:03+07', false);
INSERT INTO public.journals VALUES (1026, 304, 'Issue', 5, NULL, '2020-03-26 09:18:03+07', false);
INSERT INTO public.journals VALUES (1027, 207, 'Issue', 5, NULL, '2020-03-26 09:18:27+07', false);
INSERT INTO public.journals VALUES (1028, 211, 'Issue', 5, NULL, '2020-03-26 09:18:27+07', false);
INSERT INTO public.journals VALUES (1029, 212, 'Issue', 5, NULL, '2020-03-26 09:18:27+07', false);
INSERT INTO public.journals VALUES (1035, 209, 'Issue', 5, NULL, '2020-03-26 09:18:27+07', false);
INSERT INTO public.journals VALUES (1036, 215, 'Issue', 5, NULL, '2020-03-26 09:18:27+07', false);
INSERT INTO public.journals VALUES (1037, 216, 'Issue', 5, NULL, '2020-03-26 09:18:28+07', false);
INSERT INTO public.journals VALUES (1038, 217, 'Issue', 5, NULL, '2020-03-26 09:18:28+07', false);
INSERT INTO public.journals VALUES (1039, 218, 'Issue', 5, NULL, '2020-03-26 09:18:28+07', false);
INSERT INTO public.journals VALUES (1041, 210, 'Issue', 5, NULL, '2020-03-26 09:18:28+07', false);
INSERT INTO public.journals VALUES (1042, 220, 'Issue', 5, NULL, '2020-03-26 09:18:28+07', false);
INSERT INTO public.journals VALUES (1043, 221, 'Issue', 5, NULL, '2020-03-26 09:18:28+07', false);
INSERT INTO public.journals VALUES (1044, 222, 'Issue', 5, NULL, '2020-03-26 09:18:28+07', false);
INSERT INTO public.journals VALUES (1045, 223, 'Issue', 5, NULL, '2020-03-26 09:18:28+07', false);
INSERT INTO public.journals VALUES (1046, 224, 'Issue', 5, NULL, '2020-03-26 09:18:28+07', false);
INSERT INTO public.journals VALUES (1047, 225, 'Issue', 5, NULL, '2020-03-26 09:18:28+07', false);
INSERT INTO public.journals VALUES (1048, 246, 'Issue', 5, NULL, '2020-03-26 09:18:28+07', false);
INSERT INTO public.journals VALUES (1049, 247, 'Issue', 5, NULL, '2020-03-26 09:18:29+07', false);
INSERT INTO public.journals VALUES (1050, 248, 'Issue', 5, NULL, '2020-03-26 09:18:29+07', false);
INSERT INTO public.journals VALUES (1052, 209, 'Issue', 5, NULL, '2020-03-26 09:19:51+07', false);
INSERT INTO public.journals VALUES (1053, 215, 'Issue', 5, NULL, '2020-03-26 09:19:51+07', false);
INSERT INTO public.journals VALUES (1054, 216, 'Issue', 5, NULL, '2020-03-26 09:19:51+07', false);
INSERT INTO public.journals VALUES (1055, 217, 'Issue', 5, NULL, '2020-03-26 09:19:51+07', false);
INSERT INTO public.journals VALUES (1056, 218, 'Issue', 5, NULL, '2020-03-26 09:19:51+07', false);
INSERT INTO public.journals VALUES (1057, 44, 'Issue', 5, NULL, '2020-03-26 09:27:07+07', false);
INSERT INTO public.journals VALUES (1058, 162, 'Issue', 5, NULL, '2020-03-26 09:27:07+07', false);
INSERT INTO public.journals VALUES (1059, 163, 'Issue', 5, NULL, '2020-03-26 09:27:07+07', false);
INSERT INTO public.journals VALUES (1060, 164, 'Issue', 5, NULL, '2020-03-26 09:27:08+07', false);
INSERT INTO public.journals VALUES (1061, 166, 'Issue', 5, NULL, '2020-03-26 09:27:08+07', false);
INSERT INTO public.journals VALUES (1062, 287, 'Issue', 5, NULL, '2020-03-26 09:30:30+07', false);
INSERT INTO public.journals VALUES (1063, 288, 'Issue', 5, NULL, '2020-03-26 09:30:30+07', false);
INSERT INTO public.journals VALUES (1064, 287, 'Issue', 5, NULL, '2020-03-26 09:30:36+07', false);
INSERT INTO public.journals VALUES (1065, 288, 'Issue', 5, NULL, '2020-03-26 09:30:36+07', false);
INSERT INTO public.journals VALUES (1066, 284, 'Issue', 5, '', '2020-03-26 09:31:07+07', false);
INSERT INTO public.journals VALUES (1067, 284, 'Issue', 5, '', '2020-03-26 09:31:33+07', false);
INSERT INTO public.journals VALUES (1068, 12, 'Issue', 5, NULL, '2020-03-26 09:46:15+07', false);
INSERT INTO public.journals VALUES (1069, 15, 'Issue', 5, NULL, '2020-03-26 09:46:15+07', false);
INSERT INTO public.journals VALUES (1070, 103, 'Issue', 8, NULL, '2020-03-26 09:47:08+07', false);
INSERT INTO public.journals VALUES (1071, 104, 'Issue', 8, NULL, '2020-03-26 09:47:08+07', false);
INSERT INTO public.journals VALUES (1072, 105, 'Issue', 8, NULL, '2020-03-26 09:47:08+07', false);
INSERT INTO public.journals VALUES (1073, 106, 'Issue', 8, NULL, '2020-03-26 09:47:08+07', false);
INSERT INTO public.journals VALUES (1074, 103, 'Issue', 8, NULL, '2020-03-26 09:47:18+07', false);
INSERT INTO public.journals VALUES (1075, 104, 'Issue', 8, NULL, '2020-03-26 09:47:18+07', false);
INSERT INTO public.journals VALUES (1076, 105, 'Issue', 8, NULL, '2020-03-26 09:47:19+07', false);
INSERT INTO public.journals VALUES (1077, 106, 'Issue', 8, NULL, '2020-03-26 09:47:19+07', false);
INSERT INTO public.journals VALUES (1078, 108, 'Issue', 5, NULL, '2020-03-26 13:27:40+07', false);
INSERT INTO public.journals VALUES (1079, 108, 'Issue', 5, NULL, '2020-03-26 13:27:51+07', false);
INSERT INTO public.journals VALUES (1080, 107, 'Issue', 8, NULL, '2020-03-26 13:28:31+07', false);
INSERT INTO public.journals VALUES (1081, 113, 'Issue', 8, NULL, '2020-03-26 13:28:31+07', false);
INSERT INTO public.journals VALUES (1082, 115, 'Issue', 8, NULL, '2020-03-26 13:28:31+07', false);
INSERT INTO public.journals VALUES (1083, 118, 'Issue', 8, NULL, '2020-03-26 13:28:31+07', false);
INSERT INTO public.journals VALUES (1084, 119, 'Issue', 8, NULL, '2020-03-26 13:28:31+07', false);
INSERT INTO public.journals VALUES (1085, 125, 'Issue', 8, NULL, '2020-03-26 13:28:31+07', false);
INSERT INTO public.journals VALUES (1086, 107, 'Issue', 8, NULL, '2020-03-26 13:28:52+07', false);
INSERT INTO public.journals VALUES (1087, 113, 'Issue', 8, NULL, '2020-03-26 13:28:52+07', false);
INSERT INTO public.journals VALUES (1088, 115, 'Issue', 8, NULL, '2020-03-26 13:28:53+07', false);
INSERT INTO public.journals VALUES (1089, 118, 'Issue', 8, NULL, '2020-03-26 13:28:53+07', false);
INSERT INTO public.journals VALUES (1090, 119, 'Issue', 8, NULL, '2020-03-26 13:28:53+07', false);
INSERT INTO public.journals VALUES (1091, 125, 'Issue', 8, NULL, '2020-03-26 13:28:53+07', false);
INSERT INTO public.journals VALUES (1092, 240, 'Issue', 5, '', '2020-03-26 13:47:56+07', false);
INSERT INTO public.journals VALUES (1093, 242, 'Issue', 5, '', '2020-03-26 13:47:56+07', false);
INSERT INTO public.journals VALUES (1094, 238, 'Issue', 5, '', '2020-03-26 13:48:44+07', false);
INSERT INTO public.journals VALUES (1095, 239, 'Issue', 5, '', '2020-03-26 13:48:44+07', false);
INSERT INTO public.journals VALUES (1096, 244, 'Issue', 5, '', '2020-03-26 13:48:44+07', false);
INSERT INTO public.journals VALUES (1097, 245, 'Issue', 5, '', '2020-03-26 13:48:44+07', false);
INSERT INTO public.journals VALUES (1098, 299, 'Issue', 5, '', '2020-03-26 13:48:44+07', false);
INSERT INTO public.journals VALUES (1099, 300, 'Issue', 5, '', '2020-03-26 13:48:45+07', false);
INSERT INTO public.journals VALUES (1100, 301, 'Issue', 5, '', '2020-03-26 13:48:45+07', false);
INSERT INTO public.journals VALUES (1102, 303, 'Issue', 5, '', '2020-03-26 13:48:45+07', false);
INSERT INTO public.journals VALUES (1103, 304, 'Issue', 5, '', '2020-03-26 13:48:45+07', false);
INSERT INTO public.journals VALUES (1104, 300, 'Issue', 5, '', '2020-03-26 13:50:02+07', false);
INSERT INTO public.journals VALUES (1105, 238, 'Issue', 5, '', '2020-03-26 13:50:31+07', false);
INSERT INTO public.journals VALUES (1107, 335, 'Issue', 5, '', '2020-03-26 14:01:32+07', false);
INSERT INTO public.journals VALUES (1108, 244, 'Issue', 5, '', '2020-03-26 14:02:39+07', false);
INSERT INTO public.journals VALUES (1109, 301, 'Issue', 5, '', '2020-03-26 14:02:39+07', false);
INSERT INTO public.journals VALUES (1110, 299, 'Issue', 5, '', '2020-03-26 14:03:16+07', false);
INSERT INTO public.journals VALUES (1111, 245, 'Issue', 5, '', '2020-03-26 14:04:23+07', false);
INSERT INTO public.journals VALUES (1112, 304, 'Issue', 5, '', '2020-03-26 14:04:23+07', false);
INSERT INTO public.journals VALUES (1113, 109, 'Issue', 8, NULL, '2020-03-26 16:12:22+07', false);
INSERT INTO public.journals VALUES (1114, 110, 'Issue', 8, NULL, '2020-03-26 16:12:22+07', false);
INSERT INTO public.journals VALUES (1115, 111, 'Issue', 8, NULL, '2020-03-26 16:12:22+07', false);
INSERT INTO public.journals VALUES (1116, 112, 'Issue', 8, NULL, '2020-03-26 16:12:22+07', false);
INSERT INTO public.journals VALUES (1117, 114, 'Issue', 8, NULL, '2020-03-26 16:12:22+07', false);
INSERT INTO public.journals VALUES (1118, 126, 'Issue', 8, NULL, '2020-03-26 16:12:23+07', false);
INSERT INTO public.journals VALUES (1119, 127, 'Issue', 8, NULL, '2020-03-26 16:12:23+07', false);
INSERT INTO public.journals VALUES (1120, 109, 'Issue', 8, NULL, '2020-03-26 16:12:50+07', false);
INSERT INTO public.journals VALUES (1121, 110, 'Issue', 8, NULL, '2020-03-26 16:12:50+07', false);
INSERT INTO public.journals VALUES (1122, 111, 'Issue', 8, NULL, '2020-03-26 16:12:50+07', false);
INSERT INTO public.journals VALUES (1123, 112, 'Issue', 8, NULL, '2020-03-26 16:12:50+07', false);
INSERT INTO public.journals VALUES (1124, 114, 'Issue', 8, NULL, '2020-03-26 16:12:50+07', false);
INSERT INTO public.journals VALUES (1125, 126, 'Issue', 8, NULL, '2020-03-26 16:12:51+07', false);
INSERT INTO public.journals VALUES (1126, 127, 'Issue', 8, NULL, '2020-03-26 16:12:51+07', false);
INSERT INTO public.journals VALUES (1127, 116, 'Issue', 8, NULL, '2020-03-26 16:24:36+07', false);
INSERT INTO public.journals VALUES (1128, 117, 'Issue', 8, NULL, '2020-03-26 16:24:36+07', false);
INSERT INTO public.journals VALUES (1129, 116, 'Issue', 8, NULL, '2020-03-26 16:24:47+07', false);
INSERT INTO public.journals VALUES (1130, 117, 'Issue', 8, NULL, '2020-03-26 16:24:47+07', false);
INSERT INTO public.journals VALUES (1131, 120, 'Issue', 5, NULL, '2020-03-27 09:13:38+07', false);
INSERT INTO public.journals VALUES (1132, 120, 'Issue', 5, NULL, '2020-03-27 09:13:50+07', false);
INSERT INTO public.journals VALUES (1133, 121, 'Issue', 8, NULL, '2020-03-27 10:30:35+07', false);
INSERT INTO public.journals VALUES (1134, 122, 'Issue', 8, NULL, '2020-03-27 10:30:35+07', false);
INSERT INTO public.journals VALUES (1135, 123, 'Issue', 8, NULL, '2020-03-27 10:30:35+07', false);
INSERT INTO public.journals VALUES (1136, 124, 'Issue', 8, NULL, '2020-03-27 10:30:35+07', false);
INSERT INTO public.journals VALUES (1137, 121, 'Issue', 8, NULL, '2020-03-27 10:30:51+07', false);
INSERT INTO public.journals VALUES (1138, 122, 'Issue', 8, NULL, '2020-03-27 10:30:51+07', false);
INSERT INTO public.journals VALUES (1139, 123, 'Issue', 8, NULL, '2020-03-27 10:30:51+07', false);
INSERT INTO public.journals VALUES (1140, 124, 'Issue', 8, NULL, '2020-03-27 10:30:52+07', false);
INSERT INTO public.journals VALUES (1142, 328, 'Issue', 5, '', '2020-03-27 12:16:06+07', false);
INSERT INTO public.journals VALUES (1143, 329, 'Issue', 5, '', '2020-03-27 12:16:06+07', false);
INSERT INTO public.journals VALUES (1144, 174, 'Issue', 12, '', '2020-03-28 13:11:57+07', false);
INSERT INTO public.journals VALUES (1145, 199, 'Issue', 12, '', '2020-03-28 13:12:38+07', false);
INSERT INTO public.journals VALUES (1147, 192, 'Issue', 12, '', '2020-03-28 13:14:00+07', false);
INSERT INTO public.journals VALUES (1148, 307, 'Issue', 5, NULL, '2020-03-28 13:25:20+07', false);
INSERT INTO public.journals VALUES (1149, 307, 'Issue', 5, NULL, '2020-03-28 13:25:30+07', false);
INSERT INTO public.journals VALUES (1150, 9, 'Issue', 5, NULL, '2020-03-28 14:21:36+07', false);
INSERT INTO public.journals VALUES (1151, 10, 'Issue', 5, NULL, '2020-03-28 14:21:36+07', false);
INSERT INTO public.journals VALUES (1152, 39, 'Issue', 5, NULL, '2020-03-28 14:21:36+07', false);
INSERT INTO public.journals VALUES (1153, 41, 'Issue', 5, NULL, '2020-03-28 14:21:36+07', false);
INSERT INTO public.journals VALUES (1154, 9, 'Issue', 5, NULL, '2020-03-28 14:21:48+07', false);
INSERT INTO public.journals VALUES (1155, 10, 'Issue', 5, NULL, '2020-03-28 14:21:48+07', false);
INSERT INTO public.journals VALUES (1156, 39, 'Issue', 5, NULL, '2020-03-28 14:21:48+07', false);
INSERT INTO public.journals VALUES (1157, 41, 'Issue', 5, NULL, '2020-03-28 14:21:48+07', false);
INSERT INTO public.journals VALUES (1158, 9, 'Issue', 5, NULL, '2020-03-28 14:21:56+07', false);
INSERT INTO public.journals VALUES (1159, 10, 'Issue', 5, NULL, '2020-03-28 14:21:56+07', false);
INSERT INTO public.journals VALUES (1160, 39, 'Issue', 5, NULL, '2020-03-28 14:21:56+07', false);
INSERT INTO public.journals VALUES (1161, 41, 'Issue', 5, NULL, '2020-03-28 14:21:57+07', false);
INSERT INTO public.journals VALUES (1162, 193, 'Issue', 12, NULL, '2020-03-28 14:30:23+07', false);
INSERT INTO public.journals VALUES (1163, 280, 'Issue', 12, NULL, '2020-03-28 14:30:30+07', false);
INSERT INTO public.journals VALUES (1164, 297, 'Issue', 12, NULL, '2020-03-28 14:30:51+07', false);
INSERT INTO public.journals VALUES (1165, 258, 'Issue', 12, NULL, '2020-03-28 14:31:02+07', false);
INSERT INTO public.journals VALUES (1166, 190, 'Issue', 5, NULL, '2020-03-28 14:37:53+07', false);
INSERT INTO public.journals VALUES (1167, 196, 'Issue', 5, NULL, '2020-03-28 14:37:53+07', false);
INSERT INTO public.journals VALUES (1168, 281, 'Issue', 5, NULL, '2020-03-28 14:37:53+07', false);
INSERT INTO public.journals VALUES (1169, 197, 'Issue', 5, NULL, '2020-03-28 14:37:53+07', false);
INSERT INTO public.journals VALUES (1170, 201, 'Issue', 5, NULL, '2020-03-28 14:37:53+07', false);
INSERT INTO public.journals VALUES (1171, 227, 'Issue', 5, NULL, '2020-03-28 14:37:53+07', false);
INSERT INTO public.journals VALUES (1172, 229, 'Issue', 5, NULL, '2020-03-28 14:37:53+07', false);
INSERT INTO public.journals VALUES (1173, 231, 'Issue', 5, NULL, '2020-03-28 14:37:54+07', false);
INSERT INTO public.journals VALUES (1174, 179, 'Issue', 5, NULL, '2020-03-28 14:38:01+07', false);
INSERT INTO public.journals VALUES (1175, 186, 'Issue', 5, NULL, '2020-03-28 14:38:01+07', false);
INSERT INTO public.journals VALUES (1176, 299, 'Issue', 10, NULL, '2020-03-28 16:26:19+07', false);
INSERT INTO public.journals VALUES (1179, 300, 'Issue', 4, NULL, '2020-03-28 16:50:53+07', false);
INSERT INTO public.journals VALUES (1180, 339, 'Issue', 8, NULL, '2020-03-29 21:35:26+07', false);
INSERT INTO public.journals VALUES (1181, 340, 'Issue', 8, NULL, '2020-03-29 21:35:26+07', false);
INSERT INTO public.journals VALUES (1182, 339, 'Issue', 8, NULL, '2020-03-29 21:35:33+07', false);
INSERT INTO public.journals VALUES (1183, 340, 'Issue', 8, NULL, '2020-03-29 21:35:33+07', false);
INSERT INTO public.journals VALUES (1184, 300, 'Issue', 5, '', '2020-03-30 09:24:39+07', false);
INSERT INTO public.journals VALUES (1185, 344, 'Issue', 5, '', '2020-03-30 09:26:01+07', false);
INSERT INTO public.journals VALUES (1186, 344, 'Issue', 5, NULL, '2020-03-30 09:26:14+07', false);
INSERT INTO public.journals VALUES (1187, 300, 'Issue', 5, NULL, '2020-03-30 09:26:22+07', false);
INSERT INTO public.journals VALUES (1188, 344, 'Issue', 5, NULL, '2020-03-30 09:26:28+07', false);
INSERT INTO public.journals VALUES (1189, 345, 'Issue', 5, NULL, '2020-03-30 09:36:17+07', false);
INSERT INTO public.journals VALUES (1190, 299, 'Issue', 5, '', '2020-03-30 09:37:53+07', false);
INSERT INTO public.journals VALUES (1191, 343, 'Issue', 5, '', '2020-03-30 09:40:28+07', false);
INSERT INTO public.journals VALUES (1192, 346, 'Issue', 10, NULL, '2020-03-30 10:02:37+07', false);
INSERT INTO public.journals VALUES (1193, 348, 'Issue', 10, NULL, '2020-03-30 10:03:06+07', false);
INSERT INTO public.journals VALUES (1194, 347, 'Issue', 10, NULL, '2020-03-30 10:03:11+07', false);
INSERT INTO public.journals VALUES (1195, 347, 'Issue', 10, NULL, '2020-03-30 10:14:24+07', false);
INSERT INTO public.journals VALUES (1196, 348, 'Issue', 10, NULL, '2020-03-30 10:14:32+07', false);
INSERT INTO public.journals VALUES (1197, 299, 'Issue', 10, NULL, '2020-03-30 10:14:39+07', false);
INSERT INTO public.journals VALUES (1198, 346, 'Issue', 10, NULL, '2020-03-30 10:14:49+07', false);
INSERT INTO public.journals VALUES (1199, 347, 'Issue', 10, NULL, '2020-03-30 11:07:27+07', false);
INSERT INTO public.journals VALUES (1200, 347, 'Issue', 10, NULL, '2020-03-30 11:07:36+07', false);
INSERT INTO public.journals VALUES (1201, 347, 'Issue', 10, '', '2020-03-30 11:07:53+07', false);
INSERT INTO public.journals VALUES (1202, 353, 'Issue', 4, '', '2020-03-30 13:47:03+07', false);
INSERT INTO public.journals VALUES (1203, 354, 'Issue', 4, '', '2020-03-30 13:48:01+07', false);
INSERT INTO public.journals VALUES (1204, 353, 'Issue', 4, '', '2020-03-30 13:48:17+07', false);
INSERT INTO public.journals VALUES (1205, 284, 'Issue', 5, NULL, '2020-03-30 14:09:56+07', false);
INSERT INTO public.journals VALUES (1206, 331, 'Issue', 5, NULL, '2020-03-30 14:10:09+07', false);
INSERT INTO public.journals VALUES (1207, 284, 'Issue', 5, NULL, '2020-03-30 14:10:14+07', false);
INSERT INTO public.journals VALUES (1208, 331, 'Issue', 5, NULL, '2020-03-30 14:10:14+07', false);
INSERT INTO public.journals VALUES (1209, 290, 'Issue', 5, NULL, '2020-03-30 14:10:25+07', false);
INSERT INTO public.journals VALUES (1210, 290, 'Issue', 5, NULL, '2020-03-30 14:10:29+07', false);
INSERT INTO public.journals VALUES (1211, 347, 'Issue', 10, NULL, '2020-03-30 16:06:52+07', false);
INSERT INTO public.journals VALUES (1212, 352, 'Issue', 10, NULL, '2020-03-30 16:08:29+07', false);
INSERT INTO public.journals VALUES (1213, 350, 'Issue', 10, NULL, '2020-03-30 16:08:53+07', false);
INSERT INTO public.journals VALUES (1214, 355, 'Issue', 10, NULL, '2020-03-30 16:09:58+07', false);
INSERT INTO public.journals VALUES (1215, 174, 'Issue', 12, NULL, '2020-03-30 16:44:22+07', false);
INSERT INTO public.journals VALUES (1216, 174, 'Issue', 12, NULL, '2020-03-30 16:44:33+07', false);
INSERT INTO public.journals VALUES (1217, 199, 'Issue', 12, NULL, '2020-03-30 16:44:50+07', false);
INSERT INTO public.journals VALUES (1218, 199, 'Issue', 12, NULL, '2020-03-30 16:44:57+07', false);
INSERT INTO public.journals VALUES (1219, 192, 'Issue', 12, NULL, '2020-03-30 16:45:09+07', false);
INSERT INTO public.journals VALUES (1220, 192, 'Issue', 12, NULL, '2020-03-30 16:45:51+07', false);
INSERT INTO public.journals VALUES (1221, 198, 'Issue', 12, NULL, '2020-03-30 16:46:03+07', false);
INSERT INTO public.journals VALUES (1222, 198, 'Issue', 12, NULL, '2020-03-30 16:46:09+07', false);
INSERT INTO public.journals VALUES (1223, 328, 'Issue', 5, NULL, '2020-03-31 09:28:50+07', false);
INSERT INTO public.journals VALUES (1224, 328, 'Issue', 5, NULL, '2020-03-31 09:28:56+07', false);
INSERT INTO public.journals VALUES (1225, 352, 'Issue', 10, NULL, '2020-03-31 10:06:00+07', false);
INSERT INTO public.journals VALUES (1226, 358, 'Issue', 10, NULL, '2020-03-31 10:07:50+07', false);
INSERT INTO public.journals VALUES (1227, 352, 'Issue', 10, NULL, '2020-03-31 10:08:50+07', false);
INSERT INTO public.journals VALUES (1228, 355, 'Issue', 10, NULL, '2020-03-31 10:09:09+07', false);
INSERT INTO public.journals VALUES (1229, 347, 'Issue', 10, NULL, '2020-03-31 10:09:26+07', false);
INSERT INTO public.journals VALUES (1230, 346, 'Issue', 10, NULL, '2020-03-31 10:09:39+07', false);
INSERT INTO public.journals VALUES (1231, 349, 'Issue', 10, NULL, '2020-03-31 13:06:52+07', false);
INSERT INTO public.journals VALUES (1232, 349, 'Issue', 10, NULL, '2020-03-31 13:07:01+07', false);
INSERT INTO public.journals VALUES (1233, 350, 'Issue', 10, NULL, '2020-03-31 13:27:54+07', false);
INSERT INTO public.journals VALUES (1234, 350, 'Issue', 10, NULL, '2020-03-31 13:28:01+07', false);
INSERT INTO public.journals VALUES (1235, 353, 'Issue', 4, NULL, '2020-03-31 16:43:25+07', false);
INSERT INTO public.journals VALUES (1236, 353, 'Issue', 4, NULL, '2020-03-31 16:43:47+07', false);
INSERT INTO public.journals VALUES (1237, 354, 'Issue', 4, NULL, '2020-03-31 16:44:30+07', false);
INSERT INTO public.journals VALUES (1238, 351, 'Issue', 10, NULL, '2020-04-01 17:37:36+07', false);
INSERT INTO public.journals VALUES (1239, 351, 'Issue', 10, NULL, '2020-04-01 17:37:45+07', false);
INSERT INTO public.journals VALUES (1240, 345, 'Issue', 10, '', '2020-04-02 19:07:12+07', false);
INSERT INTO public.journals VALUES (1241, 354, 'Issue', 10, NULL, '2020-04-03 07:43:46+07', false);
INSERT INTO public.journals VALUES (1242, 353, 'Issue', 10, '', '2020-04-03 07:48:27+07', false);
INSERT INTO public.journals VALUES (1244, 191, 'Issue', 12, '', '2020-04-03 07:57:17+07', false);
INSERT INTO public.journals VALUES (1245, 195, 'Issue', 12, '', '2020-04-03 07:57:43+07', false);
INSERT INTO public.journals VALUES (1247, 357, 'Issue', 12, '', '2020-04-03 07:58:36+07', false);
INSERT INTO public.journals VALUES (1249, 260, 'Issue', 12, '', '2020-04-03 08:00:09+07', false);
INSERT INTO public.journals VALUES (1250, 195, 'Issue', 12, '', '2020-04-03 08:02:55+07', false);
INSERT INTO public.journals VALUES (1251, 195, 'Issue', 12, '', '2020-04-03 08:03:22+07', false);
INSERT INTO public.journals VALUES (1252, 357, 'Issue', 12, '', '2020-04-03 08:03:52+07', false);
INSERT INTO public.journals VALUES (1256, 176, 'Issue', 5, NULL, '2020-04-03 08:32:18+07', false);
INSERT INTO public.journals VALUES (1257, 177, 'Issue', 5, NULL, '2020-04-03 08:32:18+07', false);
INSERT INTO public.journals VALUES (1258, 178, 'Issue', 5, NULL, '2020-04-03 08:32:18+07', false);
INSERT INTO public.journals VALUES (1259, 179, 'Issue', 5, NULL, '2020-04-03 08:32:18+07', false);
INSERT INTO public.journals VALUES (1260, 180, 'Issue', 5, NULL, '2020-04-03 08:32:18+07', false);
INSERT INTO public.journals VALUES (1261, 286, 'Issue', 5, NULL, '2020-04-03 08:32:19+07', false);
INSERT INTO public.journals VALUES (1262, 181, 'Issue', 5, NULL, '2020-04-03 08:32:19+07', false);
INSERT INTO public.journals VALUES (1263, 182, 'Issue', 5, NULL, '2020-04-03 08:32:19+07', false);
INSERT INTO public.journals VALUES (1264, 256, 'Issue', 5, NULL, '2020-04-03 08:32:19+07', false);
INSERT INTO public.journals VALUES (1265, 250, 'Issue', 5, NULL, '2020-04-03 08:32:20+07', false);
INSERT INTO public.journals VALUES (1266, 280, 'Issue', 5, NULL, '2020-04-03 08:32:20+07', false);
INSERT INTO public.journals VALUES (1267, 281, 'Issue', 5, NULL, '2020-04-03 08:32:20+07', false);
INSERT INTO public.journals VALUES (1268, 297, 'Issue', 5, NULL, '2020-04-03 08:32:20+07', false);
INSERT INTO public.journals VALUES (1269, 227, 'Issue', 5, NULL, '2020-04-03 08:32:20+07', false);
INSERT INTO public.journals VALUES (1270, 229, 'Issue', 5, NULL, '2020-04-03 08:32:20+07', false);
INSERT INTO public.journals VALUES (1271, 252, 'Issue', 5, NULL, '2020-04-03 08:32:21+07', false);
INSERT INTO public.journals VALUES (1272, 253, 'Issue', 5, NULL, '2020-04-03 08:32:21+07', false);
INSERT INTO public.journals VALUES (1273, 230, 'Issue', 5, NULL, '2020-04-03 08:32:21+07', false);
INSERT INTO public.journals VALUES (1274, 231, 'Issue', 5, NULL, '2020-04-03 08:32:21+07', false);
INSERT INTO public.journals VALUES (1275, 258, 'Issue', 5, NULL, '2020-04-03 08:32:21+07', false);
INSERT INTO public.journals VALUES (1276, 233, 'Issue', 5, NULL, '2020-04-03 08:32:21+07', false);
INSERT INTO public.journals VALUES (1277, 330, 'Issue', 5, NULL, '2020-04-03 08:32:21+07', false);
INSERT INTO public.journals VALUES (1278, 174, 'Issue', 5, NULL, '2020-04-03 08:32:21+07', false);
INSERT INTO public.journals VALUES (1280, 259, 'Issue', 5, NULL, '2020-04-03 08:32:22+07', false);
INSERT INTO public.journals VALUES (1281, 260, 'Issue', 5, NULL, '2020-04-03 08:32:22+07', false);
INSERT INTO public.journals VALUES (1283, 357, 'Issue', 5, NULL, '2020-04-03 08:32:22+07', false);
INSERT INTO public.journals VALUES (1284, 191, 'Issue', 12, '', '2020-04-03 08:54:33+07', false);
INSERT INTO public.journals VALUES (1286, 92, 'Issue', 5, '', '2020-04-03 09:01:53+07', false);
INSERT INTO public.journals VALUES (1287, 329, 'Issue', 5, '', '2020-04-03 09:01:53+07', false);
INSERT INTO public.journals VALUES (1288, 92, 'Issue', 5, '', '2020-04-03 09:02:11+07', false);
INSERT INTO public.journals VALUES (1290, 246, 'Issue', 5, '', '2020-04-03 09:05:35+07', false);
INSERT INTO public.journals VALUES (1291, 247, 'Issue', 5, '', '2020-04-03 09:05:35+07', false);
INSERT INTO public.journals VALUES (1292, 248, 'Issue', 5, '', '2020-04-03 09:05:35+07', false);
INSERT INTO public.journals VALUES (1293, 338, 'Issue', 5, '', '2020-04-03 09:05:35+07', false);
INSERT INTO public.journals VALUES (1294, 341, 'Issue', 5, '', '2020-04-03 09:05:36+07', false);
INSERT INTO public.journals VALUES (1295, 342, 'Issue', 5, '', '2020-04-03 09:05:36+07', false);
INSERT INTO public.journals VALUES (1296, 345, 'Issue', 10, '', '2020-04-03 09:08:29+07', false);
INSERT INTO public.journals VALUES (1297, 354, 'Issue', 5, '', '2020-04-03 09:09:04+07', false);
INSERT INTO public.journals VALUES (1298, 239, 'Issue', 5, '', '2020-04-03 09:09:05+07', false);
INSERT INTO public.journals VALUES (1299, 244, 'Issue', 5, '', '2020-04-03 09:09:05+07', false);
INSERT INTO public.journals VALUES (1300, 245, 'Issue', 5, '', '2020-04-03 09:09:05+07', false);
INSERT INTO public.journals VALUES (1301, 301, 'Issue', 5, '', '2020-04-03 09:09:05+07', false);
INSERT INTO public.journals VALUES (1302, 303, 'Issue', 5, '', '2020-04-03 09:09:05+07', false);
INSERT INTO public.journals VALUES (1303, 304, 'Issue', 5, '', '2020-04-03 09:09:05+07', false);
INSERT INTO public.journals VALUES (1304, 343, 'Issue', 5, '', '2020-04-03 09:09:06+07', false);
INSERT INTO public.journals VALUES (1305, 335, 'Issue', 5, '', '2020-04-03 09:09:06+07', false);
INSERT INTO public.journals VALUES (1306, 336, 'Issue', 5, '', '2020-04-03 09:09:06+07', false);
INSERT INTO public.journals VALUES (1307, 337, 'Issue', 5, '', '2020-04-03 09:09:06+07', false);
INSERT INTO public.journals VALUES (1308, 244, 'Issue', 5, '', '2020-04-03 09:10:42+07', false);
INSERT INTO public.journals VALUES (1309, 301, 'Issue', 5, '', '2020-04-03 09:11:20+07', false);
INSERT INTO public.journals VALUES (1310, 301, 'Issue', 5, '', '2020-04-03 09:11:59+07', false);
INSERT INTO public.journals VALUES (1311, 303, 'Issue', 5, '', '2020-04-03 09:12:28+07', false);
INSERT INTO public.journals VALUES (1312, 304, 'Issue', 5, '', '2020-04-03 09:13:14+07', false);
INSERT INTO public.journals VALUES (1313, 304, 'Issue', 5, '', '2020-04-03 09:13:25+07', false);
INSERT INTO public.journals VALUES (1314, 336, 'Issue', 5, '', '2020-04-03 09:15:13+07', false);
INSERT INTO public.journals VALUES (1315, 337, 'Issue', 5, '', '2020-04-03 09:15:13+07', false);
INSERT INTO public.journals VALUES (1316, 337, 'Issue', 5, '', '2020-04-03 09:15:27+07', false);
INSERT INTO public.journals VALUES (1317, 246, 'Issue', 13, NULL, '2020-04-03 10:42:25+07', false);
INSERT INTO public.journals VALUES (1318, 247, 'Issue', 13, NULL, '2020-04-03 10:42:39+07', false);
INSERT INTO public.journals VALUES (1319, 248, 'Issue', 13, NULL, '2020-04-03 10:42:52+07', false);
INSERT INTO public.journals VALUES (1320, 246, 'Issue', 13, NULL, '2020-04-03 10:43:02+07', false);
INSERT INTO public.journals VALUES (1321, 247, 'Issue', 13, NULL, '2020-04-03 10:43:12+07', false);
INSERT INTO public.journals VALUES (1322, 248, 'Issue', 13, NULL, '2020-04-03 10:43:19+07', false);
INSERT INTO public.journals VALUES (1323, 343, 'Issue', 6, '', '2020-04-03 11:34:55+07', false);
INSERT INTO public.journals VALUES (1324, 103, 'Issue', 5, NULL, '2020-04-03 13:52:55+07', false);
INSERT INTO public.journals VALUES (1325, 104, 'Issue', 5, NULL, '2020-04-03 13:52:55+07', false);
INSERT INTO public.journals VALUES (1326, 105, 'Issue', 5, NULL, '2020-04-03 13:52:55+07', false);
INSERT INTO public.journals VALUES (1327, 106, 'Issue', 5, NULL, '2020-04-03 13:52:55+07', false);
INSERT INTO public.journals VALUES (1328, 107, 'Issue', 5, NULL, '2020-04-03 13:52:55+07', false);
INSERT INTO public.journals VALUES (1329, 108, 'Issue', 5, NULL, '2020-04-03 13:52:55+07', false);
INSERT INTO public.journals VALUES (1330, 109, 'Issue', 5, NULL, '2020-04-03 13:52:55+07', false);
INSERT INTO public.journals VALUES (1331, 110, 'Issue', 5, NULL, '2020-04-03 13:52:55+07', false);
INSERT INTO public.journals VALUES (1332, 111, 'Issue', 5, NULL, '2020-04-03 13:52:56+07', false);
INSERT INTO public.journals VALUES (1333, 112, 'Issue', 5, NULL, '2020-04-03 13:52:56+07', false);
INSERT INTO public.journals VALUES (1334, 113, 'Issue', 5, NULL, '2020-04-03 13:52:56+07', false);
INSERT INTO public.journals VALUES (1335, 114, 'Issue', 5, NULL, '2020-04-03 13:52:56+07', false);
INSERT INTO public.journals VALUES (1336, 115, 'Issue', 5, NULL, '2020-04-03 13:52:56+07', false);
INSERT INTO public.journals VALUES (1337, 116, 'Issue', 5, NULL, '2020-04-03 13:52:56+07', false);
INSERT INTO public.journals VALUES (1338, 117, 'Issue', 5, NULL, '2020-04-03 13:52:56+07', false);
INSERT INTO public.journals VALUES (1339, 118, 'Issue', 5, NULL, '2020-04-03 13:52:56+07', false);
INSERT INTO public.journals VALUES (1340, 119, 'Issue', 5, NULL, '2020-04-03 13:52:56+07', false);
INSERT INTO public.journals VALUES (1341, 120, 'Issue', 5, NULL, '2020-04-03 13:52:57+07', false);
INSERT INTO public.journals VALUES (1342, 121, 'Issue', 5, NULL, '2020-04-03 13:52:57+07', false);
INSERT INTO public.journals VALUES (1343, 122, 'Issue', 5, NULL, '2020-04-03 13:52:57+07', false);
INSERT INTO public.journals VALUES (1344, 123, 'Issue', 5, NULL, '2020-04-03 13:52:57+07', false);
INSERT INTO public.journals VALUES (1345, 124, 'Issue', 5, NULL, '2020-04-03 13:52:57+07', false);
INSERT INTO public.journals VALUES (1346, 125, 'Issue', 5, NULL, '2020-04-03 13:52:57+07', false);
INSERT INTO public.journals VALUES (1347, 126, 'Issue', 5, NULL, '2020-04-03 13:52:57+07', false);
INSERT INTO public.journals VALUES (1348, 127, 'Issue', 5, NULL, '2020-04-03 13:52:57+07', false);
INSERT INTO public.journals VALUES (1349, 262, 'Issue', 5, NULL, '2020-04-03 13:53:05+07', false);
INSERT INTO public.journals VALUES (1350, 263, 'Issue', 5, NULL, '2020-04-03 13:53:05+07', false);
INSERT INTO public.journals VALUES (1351, 264, 'Issue', 5, NULL, '2020-04-03 13:53:05+07', false);
INSERT INTO public.journals VALUES (1352, 265, 'Issue', 5, NULL, '2020-04-03 13:53:06+07', false);
INSERT INTO public.journals VALUES (1353, 266, 'Issue', 5, NULL, '2020-04-03 13:53:06+07', false);
INSERT INTO public.journals VALUES (1354, 267, 'Issue', 5, NULL, '2020-04-03 13:53:06+07', false);
INSERT INTO public.journals VALUES (1355, 268, 'Issue', 5, NULL, '2020-04-03 13:53:06+07', false);
INSERT INTO public.journals VALUES (1356, 269, 'Issue', 5, NULL, '2020-04-03 13:53:06+07', false);
INSERT INTO public.journals VALUES (1357, 270, 'Issue', 5, NULL, '2020-04-03 13:53:06+07', false);
INSERT INTO public.journals VALUES (1358, 271, 'Issue', 5, NULL, '2020-04-03 13:53:06+07', false);
INSERT INTO public.journals VALUES (1359, 272, 'Issue', 5, NULL, '2020-04-03 13:53:06+07', false);
INSERT INTO public.journals VALUES (1360, 273, 'Issue', 5, NULL, '2020-04-03 13:53:06+07', false);
INSERT INTO public.journals VALUES (1361, 274, 'Issue', 5, NULL, '2020-04-03 13:53:06+07', false);
INSERT INTO public.journals VALUES (1362, 275, 'Issue', 5, NULL, '2020-04-03 13:53:06+07', false);
INSERT INTO public.journals VALUES (1363, 276, 'Issue', 5, NULL, '2020-04-03 13:53:06+07', false);
INSERT INTO public.journals VALUES (1364, 277, 'Issue', 5, NULL, '2020-04-03 13:53:07+07', false);
INSERT INTO public.journals VALUES (1365, 278, 'Issue', 5, NULL, '2020-04-03 13:53:07+07', false);
INSERT INTO public.journals VALUES (1366, 292, 'Issue', 5, NULL, '2020-04-03 13:53:07+07', false);
INSERT INTO public.journals VALUES (1367, 293, 'Issue', 5, NULL, '2020-04-03 13:53:07+07', false);
INSERT INTO public.journals VALUES (1368, 294, 'Issue', 5, NULL, '2020-04-03 13:53:07+07', false);
INSERT INTO public.journals VALUES (1369, 295, 'Issue', 5, NULL, '2020-04-03 13:53:07+07', false);
INSERT INTO public.journals VALUES (1370, 261, 'Issue', 5, NULL, '2020-04-03 13:53:17+07', false);
INSERT INTO public.journals VALUES (1371, 138, 'Issue', 5, NULL, '2020-04-03 13:53:28+07', false);
INSERT INTO public.journals VALUES (1372, 14, 'Issue', 5, NULL, '2020-04-03 13:53:44+07', false);
INSERT INTO public.journals VALUES (1373, 16, 'Issue', 5, NULL, '2020-04-03 13:53:44+07', false);
INSERT INTO public.journals VALUES (1374, 43, 'Issue', 5, NULL, '2020-04-03 13:53:45+07', false);
INSERT INTO public.journals VALUES (1375, 58, 'Issue', 5, NULL, '2020-04-03 13:53:45+07', false);
INSERT INTO public.journals VALUES (1376, 91, 'Issue', 5, NULL, '2020-04-03 13:53:45+07', false);
INSERT INTO public.journals VALUES (1377, 93, 'Issue', 5, NULL, '2020-04-03 13:53:45+07', false);
INSERT INTO public.journals VALUES (1378, 94, 'Issue', 5, NULL, '2020-04-03 13:53:45+07', false);
INSERT INTO public.journals VALUES (1379, 95, 'Issue', 5, NULL, '2020-04-03 13:53:45+07', false);
INSERT INTO public.journals VALUES (1380, 96, 'Issue', 5, NULL, '2020-04-03 13:53:45+07', false);
INSERT INTO public.journals VALUES (1381, 134, 'Issue', 5, NULL, '2020-04-03 13:53:45+07', false);
INSERT INTO public.journals VALUES (1382, 135, 'Issue', 5, NULL, '2020-04-03 13:53:45+07', false);
INSERT INTO public.journals VALUES (1383, 136, 'Issue', 5, NULL, '2020-04-03 13:53:45+07', false);
INSERT INTO public.journals VALUES (1384, 137, 'Issue', 5, NULL, '2020-04-03 13:53:45+07', false);
INSERT INTO public.journals VALUES (1385, 138, 'Issue', 5, NULL, '2020-04-03 13:53:45+07', false);
INSERT INTO public.journals VALUES (1386, 139, 'Issue', 5, NULL, '2020-04-03 13:53:45+07', false);
INSERT INTO public.journals VALUES (1387, 140, 'Issue', 5, NULL, '2020-04-03 13:53:45+07', false);
INSERT INTO public.journals VALUES (1388, 141, 'Issue', 5, NULL, '2020-04-03 13:53:45+07', false);
INSERT INTO public.journals VALUES (1389, 142, 'Issue', 5, NULL, '2020-04-03 13:53:45+07', false);
INSERT INTO public.journals VALUES (1390, 143, 'Issue', 5, NULL, '2020-04-03 13:53:45+07', false);
INSERT INTO public.journals VALUES (1391, 149, 'Issue', 5, NULL, '2020-04-03 13:53:46+07', false);
INSERT INTO public.journals VALUES (1392, 150, 'Issue', 5, NULL, '2020-04-03 13:53:46+07', false);
INSERT INTO public.journals VALUES (1393, 151, 'Issue', 5, NULL, '2020-04-03 13:53:46+07', false);
INSERT INTO public.journals VALUES (1394, 152, 'Issue', 5, NULL, '2020-04-03 13:53:46+07', false);
INSERT INTO public.journals VALUES (1395, 153, 'Issue', 5, NULL, '2020-04-03 13:53:46+07', false);
INSERT INTO public.journals VALUES (1396, 154, 'Issue', 5, NULL, '2020-04-03 13:53:46+07', false);
INSERT INTO public.journals VALUES (1397, 168, 'Issue', 5, NULL, '2020-04-03 13:53:46+07', false);
INSERT INTO public.journals VALUES (1398, 169, 'Issue', 5, NULL, '2020-04-03 13:53:46+07', false);
INSERT INTO public.journals VALUES (1399, 206, 'Issue', 5, NULL, '2020-04-03 13:53:46+07', false);
INSERT INTO public.journals VALUES (1400, 261, 'Issue', 5, NULL, '2020-04-03 13:53:46+07', false);
INSERT INTO public.journals VALUES (1401, 306, 'Issue', 5, NULL, '2020-04-03 13:53:46+07', false);
INSERT INTO public.journals VALUES (1402, 307, 'Issue', 5, NULL, '2020-04-03 13:53:46+07', false);
INSERT INTO public.journals VALUES (1403, 328, 'Issue', 5, NULL, '2020-04-03 13:53:46+07', false);
INSERT INTO public.journals VALUES (1404, 339, 'Issue', 5, NULL, '2020-04-03 13:53:47+07', false);
INSERT INTO public.journals VALUES (1405, 340, 'Issue', 5, NULL, '2020-04-03 13:53:47+07', false);
INSERT INTO public.journals VALUES (1406, 356, 'Issue', 10, NULL, '2020-04-03 15:18:54+07', false);
INSERT INTO public.journals VALUES (1407, 345, 'Issue', 10, NULL, '2020-04-03 15:19:10+07', false);
INSERT INTO public.journals VALUES (1408, 345, 'Issue', 10, NULL, '2020-04-03 15:19:23+07', false);
INSERT INTO public.journals VALUES (1409, 353, 'Issue', 10, NULL, '2020-04-03 15:42:26+07', false);
INSERT INTO public.journals VALUES (1410, 354, 'Issue', 10, NULL, '2020-04-03 15:42:47+07', false);
INSERT INTO public.journals VALUES (1411, 371, 'Issue', 12, '', '2020-04-03 16:47:57+07', false);
INSERT INTO public.journals VALUES (1412, 369, 'Issue', 12, NULL, '2020-04-03 16:48:07+07', false);
INSERT INTO public.journals VALUES (1413, 369, 'Issue', 12, NULL, '2020-04-03 16:48:13+07', false);
INSERT INTO public.journals VALUES (1414, 370, 'Issue', 12, NULL, '2020-04-03 16:48:24+07', false);
INSERT INTO public.journals VALUES (1415, 370, 'Issue', 12, NULL, '2020-04-03 16:48:35+07', false);
INSERT INTO public.journals VALUES (1416, 359, 'Issue', 5, '', '2020-04-03 16:59:01+07', false);
INSERT INTO public.journals VALUES (1417, 329, 'Issue', 8, NULL, '2020-04-03 17:21:06+07', false);
INSERT INTO public.journals VALUES (1418, 329, 'Issue', 8, NULL, '2020-04-03 17:21:12+07', false);
INSERT INTO public.journals VALUES (1419, 371, 'Issue', 12, '', '2020-04-04 07:51:25+07', false);
INSERT INTO public.journals VALUES (1420, 259, 'Issue', 12, '', '2020-04-04 08:03:27+07', false);
INSERT INTO public.journals VALUES (1421, 357, 'Issue', 12, '', '2020-04-04 08:03:45+07', false);
INSERT INTO public.journals VALUES (1422, 92, 'Issue', 5, '', '2020-04-04 08:16:51+07', false);
INSERT INTO public.journals VALUES (1424, 380, 'Issue', 8, '', '2020-04-04 09:43:16+07', false);
INSERT INTO public.journals VALUES (1425, 372, 'Issue', 10, NULL, '2020-04-04 15:46:24+07', false);
INSERT INTO public.journals VALUES (1426, 372, 'Issue', 10, NULL, '2020-04-04 15:46:32+07', false);
INSERT INTO public.journals VALUES (1427, 358, 'Issue', 10, NULL, '2020-04-04 15:46:40+07', false);
INSERT INTO public.journals VALUES (1428, 358, 'Issue', 10, NULL, '2020-04-04 15:46:51+07', false);
INSERT INTO public.journals VALUES (1429, 301, 'Issue', 5, '', '2020-04-04 16:07:33+07', false);
INSERT INTO public.journals VALUES (1430, 371, 'Issue', 12, NULL, '2020-04-04 17:24:06+07', false);
INSERT INTO public.journals VALUES (1431, 371, 'Issue', 12, NULL, '2020-04-04 17:24:16+07', false);
INSERT INTO public.journals VALUES (1432, 376, 'Issue', 8, NULL, '2020-04-04 17:56:16+07', false);
INSERT INTO public.journals VALUES (1433, 377, 'Issue', 8, NULL, '2020-04-04 17:56:16+07', false);
INSERT INTO public.journals VALUES (1434, 376, 'Issue', 8, NULL, '2020-04-04 17:56:24+07', false);
INSERT INTO public.journals VALUES (1435, 377, 'Issue', 8, NULL, '2020-04-04 17:56:24+07', false);
INSERT INTO public.journals VALUES (1436, 357, 'Issue', 12, '', '2020-04-06 07:39:01+07', false);
INSERT INTO public.journals VALUES (1437, 259, 'Issue', 12, '', '2020-04-06 07:56:43+07', false);
INSERT INTO public.journals VALUES (1438, 384, 'Issue', 6, '', '2020-04-06 11:53:12+07', false);
INSERT INTO public.journals VALUES (1448, 388, 'Issue', 5, '', '2020-04-06 13:22:32+07', false);
INSERT INTO public.journals VALUES (1451, 391, 'Issue', 15, NULL, '2020-04-06 14:14:52+07', false);
INSERT INTO public.journals VALUES (1452, 392, 'Issue', 15, NULL, '2020-04-06 14:22:08+07', false);
INSERT INTO public.journals VALUES (1453, 393, 'Issue', 15, NULL, '2020-04-06 14:22:53+07', false);
INSERT INTO public.journals VALUES (1454, 395, 'Issue', 15, NULL, '2020-04-06 14:23:27+07', false);
INSERT INTO public.journals VALUES (1455, 394, 'Issue', 15, NULL, '2020-04-06 14:23:35+07', false);
INSERT INTO public.journals VALUES (1456, 396, 'Issue', 15, NULL, '2020-04-06 14:23:51+07', false);
INSERT INTO public.journals VALUES (1457, 393, 'Issue', 15, NULL, '2020-04-06 14:29:12+07', false);
INSERT INTO public.journals VALUES (1459, 392, 'Issue', 15, NULL, '2020-04-06 14:30:06+07', false);
INSERT INTO public.journals VALUES (1460, 395, 'Issue', 15, NULL, '2020-04-06 14:30:19+07', false);
INSERT INTO public.journals VALUES (1461, 392, 'Issue', 5, '', '2020-04-06 14:32:40+07', false);
INSERT INTO public.journals VALUES (1462, 393, 'Issue', 5, '', '2020-04-06 14:32:40+07', false);
INSERT INTO public.journals VALUES (1463, 394, 'Issue', 5, '', '2020-04-06 14:32:40+07', false);
INSERT INTO public.journals VALUES (1464, 395, 'Issue', 5, '', '2020-04-06 14:32:40+07', false);
INSERT INTO public.journals VALUES (1465, 396, 'Issue', 5, '', '2020-04-06 14:32:40+07', false);
INSERT INTO public.journals VALUES (1466, 396, 'Issue', 5, '', '2020-04-06 14:34:09+07', false);
INSERT INTO public.journals VALUES (1467, 396, 'Issue', 15, '', '2020-04-06 14:41:31+07', false);
INSERT INTO public.journals VALUES (1468, 359, 'Issue', 10, NULL, '2020-04-06 16:14:41+07', false);
INSERT INTO public.journals VALUES (1469, 394, 'Issue', 15, NULL, '2020-04-06 17:23:12+07', false);
INSERT INTO public.journals VALUES (1470, 385, 'Issue', 12, NULL, '2020-04-06 17:36:47+07', false);
INSERT INTO public.journals VALUES (1471, 385, 'Issue', 12, NULL, '2020-04-06 17:36:54+07', false);
INSERT INTO public.journals VALUES (1472, 386, 'Issue', 12, '', '2020-04-07 07:39:00+07', false);
INSERT INTO public.journals VALUES (1473, 387, 'Issue', 6, '', '2020-04-07 08:58:13+07', false);
INSERT INTO public.journals VALUES (1474, 384, 'Issue', 6, '', '2020-04-07 08:58:39+07', false);
INSERT INTO public.journals VALUES (1475, 388, 'Issue', 5, '', '2020-04-07 09:26:13+07', false);
INSERT INTO public.journals VALUES (1476, 386, 'Issue', 12, NULL, '2020-04-07 15:59:39+07', false);
INSERT INTO public.journals VALUES (1477, 386, 'Issue', 12, NULL, '2020-04-07 15:59:45+07', false);
INSERT INTO public.journals VALUES (1478, 396, 'Issue', 15, NULL, '2020-04-07 16:35:25+07', false);
INSERT INTO public.journals VALUES (1479, 259, 'Issue', 12, '', '2020-04-08 08:13:01+07', false);
INSERT INTO public.journals VALUES (1481, 368, 'Issue', 12, '', '2020-04-08 08:13:39+07', false);
INSERT INTO public.journals VALUES (1482, 260, 'Issue', 12, '', '2020-04-08 08:13:58+07', false);
INSERT INTO public.journals VALUES (1483, 367, 'Issue', 12, '', '2020-04-08 08:14:22+07', false);
INSERT INTO public.journals VALUES (1484, 301, 'Issue', 10, NULL, '2020-04-08 08:19:45+07', false);
INSERT INTO public.journals VALUES (1485, 301, 'Issue', 10, NULL, '2020-04-08 08:19:53+07', false);
INSERT INTO public.journals VALUES (1486, 368, 'Issue', 12, '', '2020-04-08 11:11:26+07', false);
INSERT INTO public.journals VALUES (1487, 368, 'Issue', 12, '', '2020-04-08 16:41:07+07', false);
INSERT INTO public.journals VALUES (1488, 368, 'Issue', 12, NULL, '2020-04-08 16:41:22+07', false);
INSERT INTO public.journals VALUES (1489, 360, 'Issue', 10, NULL, '2020-04-08 22:11:56+07', false);
INSERT INTO public.journals VALUES (1490, 360, 'Issue', 10, NULL, '2020-04-08 22:12:06+07', false);
INSERT INTO public.journals VALUES (1492, 380, 'Issue', 8, NULL, '2020-04-09 08:29:53+07', false);
INSERT INTO public.journals VALUES (1493, 381, 'Issue', 8, NULL, '2020-04-09 08:29:53+07', false);
INSERT INTO public.journals VALUES (1495, 380, 'Issue', 8, NULL, '2020-04-09 08:30:10+07', false);
INSERT INTO public.journals VALUES (1496, 381, 'Issue', 8, NULL, '2020-04-09 08:30:10+07', false);
INSERT INTO public.journals VALUES (1497, 303, 'Issue', 10, NULL, '2020-04-09 03:48:18+07', false);
INSERT INTO public.journals VALUES (1498, 303, 'Issue', 10, NULL, '2020-04-09 03:48:25+07', false);
INSERT INTO public.journals VALUES (1499, 367, 'Issue', 12, NULL, '2020-04-10 07:41:43+07', false);
INSERT INTO public.journals VALUES (1500, 367, 'Issue', 12, NULL, '2020-04-10 07:41:51+07', false);
INSERT INTO public.journals VALUES (1501, 359, 'Issue', 10, NULL, '2020-04-10 09:30:39+07', false);
INSERT INTO public.journals VALUES (1502, 359, 'Issue', 10, NULL, '2020-04-10 09:30:52+07', false);
INSERT INTO public.journals VALUES (1503, 398, 'Issue', 5, '', '2020-04-10 16:11:28+07', false);
INSERT INTO public.journals VALUES (1504, 412, 'Issue', 15, '', '2020-04-10 16:35:32+07', false);
INSERT INTO public.journals VALUES (1505, 413, 'Issue', 15, NULL, '2020-04-10 16:36:03+07', false);
INSERT INTO public.journals VALUES (1506, 413, 'Issue', 15, '', '2020-04-10 16:39:12+07', false);
INSERT INTO public.journals VALUES (1507, 415, 'Issue', 5, NULL, '2020-04-10 16:40:56+07', false);
INSERT INTO public.journals VALUES (1508, 415, 'Issue', 5, '', '2020-04-10 16:42:29+07', false);
INSERT INTO public.journals VALUES (1509, 412, 'Issue', 5, '', '2020-04-10 16:44:19+07', false);
INSERT INTO public.journals VALUES (1510, 414, 'Issue', 5, '', '2020-04-10 16:44:19+07', false);
INSERT INTO public.journals VALUES (1511, 416, 'Issue', 5, '', '2020-04-10 16:44:19+07', false);
INSERT INTO public.journals VALUES (1512, 418, 'Issue', 5, '', '2020-04-10 16:44:19+07', false);
INSERT INTO public.journals VALUES (1513, 420, 'Issue', 5, '', '2020-04-10 16:44:19+07', false);
INSERT INTO public.journals VALUES (1514, 422, 'Issue', 5, '', '2020-04-10 16:44:19+07', false);
INSERT INTO public.journals VALUES (1515, 424, 'Issue', 5, '', '2020-04-10 16:44:19+07', false);
INSERT INTO public.journals VALUES (1516, 426, 'Issue', 5, '', '2020-04-10 16:44:50+07', false);
INSERT INTO public.journals VALUES (1517, 427, 'Issue', 5, '', '2020-04-10 16:44:50+07', false);
INSERT INTO public.journals VALUES (1518, 428, 'Issue', 5, '', '2020-04-10 16:44:50+07', false);
INSERT INTO public.journals VALUES (1519, 429, 'Issue', 5, '', '2020-04-10 16:44:50+07', false);
INSERT INTO public.journals VALUES (1520, 430, 'Issue', 5, '', '2020-04-10 16:44:50+07', false);
INSERT INTO public.journals VALUES (1521, 417, 'Issue', 5, '', '2020-04-10 16:49:23+07', false);
INSERT INTO public.journals VALUES (1525, 433, 'Issue', 5, '', '2020-04-10 17:13:07+07', false);
INSERT INTO public.journals VALUES (1526, 409, 'Issue', 5, NULL, '2020-04-10 17:20:58+07', false);
INSERT INTO public.journals VALUES (1527, 409, 'Issue', 5, NULL, '2020-04-10 17:21:05+07', false);
INSERT INTO public.journals VALUES (1528, 415, 'Issue', 5, '', '2020-04-10 17:25:36+07', false);
INSERT INTO public.journals VALUES (1530, 419, 'Issue', 15, '', '2020-04-10 17:28:15+07', false);
INSERT INTO public.journals VALUES (1531, 415, 'Issue', 15, '', '2020-04-10 17:28:48+07', false);
INSERT INTO public.journals VALUES (1532, 450, 'Issue', 5, '', '2020-04-10 17:29:15+07', false);
INSERT INTO public.journals VALUES (1533, 451, 'Issue', 5, '', '2020-04-10 17:29:15+07', false);
INSERT INTO public.journals VALUES (1534, 452, 'Issue', 5, '', '2020-04-10 17:29:34+07', false);
INSERT INTO public.journals VALUES (1535, 453, 'Issue', 5, '', '2020-04-10 17:29:34+07', false);
INSERT INTO public.journals VALUES (1536, 454, 'Issue', 5, '', '2020-04-10 17:29:55+07', false);
INSERT INTO public.journals VALUES (1537, 450, 'Issue', 5, NULL, '2020-04-10 17:30:19+07', false);
INSERT INTO public.journals VALUES (1538, 451, 'Issue', 5, NULL, '2020-04-10 17:30:19+07', false);
INSERT INTO public.journals VALUES (1539, 452, 'Issue', 5, NULL, '2020-04-10 17:30:19+07', false);
INSERT INTO public.journals VALUES (1540, 453, 'Issue', 5, NULL, '2020-04-10 17:30:19+07', false);
INSERT INTO public.journals VALUES (1541, 454, 'Issue', 5, NULL, '2020-04-10 17:30:19+07', false);
INSERT INTO public.journals VALUES (1542, 410, 'Issue', 5, '', '2020-04-10 17:30:40+07', false);
INSERT INTO public.journals VALUES (1543, 411, 'Issue', 5, '', '2020-04-10 17:30:40+07', false);
INSERT INTO public.journals VALUES (1544, 412, 'Issue', 5, '', '2020-04-10 17:31:04+07', false);
INSERT INTO public.journals VALUES (1545, 414, 'Issue', 5, '', '2020-04-10 17:31:04+07', false);
INSERT INTO public.journals VALUES (1546, 416, 'Issue', 5, '', '2020-04-10 17:31:04+07', false);
INSERT INTO public.journals VALUES (1547, 418, 'Issue', 5, '', '2020-04-10 17:31:30+07', false);
INSERT INTO public.journals VALUES (1548, 420, 'Issue', 5, '', '2020-04-10 17:31:30+07', false);
INSERT INTO public.journals VALUES (1549, 422, 'Issue', 5, '', '2020-04-10 17:31:30+07', false);
INSERT INTO public.journals VALUES (1550, 424, 'Issue', 5, '', '2020-04-10 17:31:30+07', false);
INSERT INTO public.journals VALUES (1553, 426, 'Issue', 17, '', '2020-04-10 18:04:34+07', false);
INSERT INTO public.journals VALUES (1554, 427, 'Issue', 17, '', '2020-04-10 18:04:56+07', false);
INSERT INTO public.journals VALUES (1555, 429, 'Issue', 17, '', '2020-04-10 18:06:03+07', false);
INSERT INTO public.journals VALUES (1556, 426, 'Issue', 17, '', '2020-04-10 18:08:07+07', false);
INSERT INTO public.journals VALUES (1557, 398, 'Issue', 5, NULL, '2020-04-10 19:41:34+07', false);
INSERT INTO public.journals VALUES (1558, 398, 'Issue', 5, NULL, '2020-04-10 19:41:38+07', false);
INSERT INTO public.journals VALUES (1559, 421, 'Issue', 5, NULL, '2020-04-10 19:56:24+07', false);
INSERT INTO public.journals VALUES (1560, 421, 'Issue', 5, '', '2020-04-10 19:56:50+07', false);
INSERT INTO public.journals VALUES (1561, 423, 'Issue', 5, '', '2020-04-10 19:57:50+07', false);
INSERT INTO public.journals VALUES (1562, 425, 'Issue', 5, '', '2020-04-10 20:00:24+07', false);
INSERT INTO public.journals VALUES (1563, 425, 'Issue', 5, '', '2020-04-10 20:00:56+07', false);
INSERT INTO public.journals VALUES (1564, 450, 'Issue', 5, '', '2020-04-10 20:03:33+07', false);
INSERT INTO public.journals VALUES (1565, 451, 'Issue', 5, '', '2020-04-10 20:03:33+07', false);
INSERT INTO public.journals VALUES (1566, 452, 'Issue', 5, '', '2020-04-10 20:03:34+07', false);
INSERT INTO public.journals VALUES (1567, 453, 'Issue', 5, '', '2020-04-10 20:03:34+07', false);
INSERT INTO public.journals VALUES (1568, 454, 'Issue', 5, '', '2020-04-10 20:03:34+07', false);
INSERT INTO public.journals VALUES (1576, 458, 'Issue', 5, '', '2020-04-10 20:23:04+07', false);
INSERT INTO public.journals VALUES (1578, 456, 'Issue', 5, '', '2020-04-10 20:23:23+07', false);
INSERT INTO public.journals VALUES (1579, 416, 'Issue', 5, NULL, '2020-04-11 08:18:40+07', false);
INSERT INTO public.journals VALUES (1580, 416, 'Issue', 5, NULL, '2020-04-11 08:18:50+07', false);
INSERT INTO public.journals VALUES (1581, 417, 'Issue', 5, '', '2020-04-11 08:19:19+07', false);
INSERT INTO public.journals VALUES (1582, 412, 'Issue', 8, NULL, '2020-04-11 09:09:31+07', false);
INSERT INTO public.journals VALUES (1583, 412, 'Issue', 8, NULL, '2020-04-11 09:09:37+07', false);
INSERT INTO public.journals VALUES (1584, 462, 'Issue', 15, '', '2020-04-11 09:13:04+07', false);
INSERT INTO public.journals VALUES (1585, 464, 'Issue', 15, '', '2020-04-11 09:15:47+07', false);
INSERT INTO public.journals VALUES (1586, 417, 'Issue', 5, NULL, '2020-04-11 09:41:44+07', false);
INSERT INTO public.journals VALUES (1587, 417, 'Issue', 5, NULL, '2020-04-11 09:41:59+07', false);
INSERT INTO public.journals VALUES (1588, 467, 'Issue', 5, '', '2020-04-11 10:14:16+07', false);
INSERT INTO public.journals VALUES (1589, 459, 'Issue', 8, NULL, '2020-04-11 10:25:18+07', false);
INSERT INTO public.journals VALUES (1590, 459, 'Issue', 8, NULL, '2020-04-11 10:25:26+07', false);
INSERT INTO public.journals VALUES (1591, 414, 'Issue', 16, NULL, '2020-04-11 13:06:15+07', false);
INSERT INTO public.journals VALUES (1592, 414, 'Issue', 16, NULL, '2020-04-11 13:06:27+07', false);
INSERT INTO public.journals VALUES (1593, 460, 'Issue', 15, '', '2020-04-11 13:15:24+07', false);
INSERT INTO public.journals VALUES (1594, 461, 'Issue', 15, '', '2020-04-11 13:15:40+07', false);
INSERT INTO public.journals VALUES (1595, 462, 'Issue', 15, '', '2020-04-11 13:19:16+07', false);
INSERT INTO public.journals VALUES (1596, 421, 'Issue', 4, '', '2020-04-11 13:29:48+07', false);
INSERT INTO public.journals VALUES (1597, 474, 'Issue', 4, '', '2020-04-11 13:32:31+07', false);
INSERT INTO public.journals VALUES (1598, 474, 'Issue', 4, '', '2020-04-11 13:32:39+07', false);
INSERT INTO public.journals VALUES (1599, 474, 'Issue', 5, '', '2020-04-11 13:34:03+07', false);
INSERT INTO public.journals VALUES (1600, 472, 'Issue', 4, '', '2020-04-11 13:34:05+07', false);
INSERT INTO public.journals VALUES (1601, 476, 'Issue', 4, '', '2020-04-11 13:35:27+07', false);
INSERT INTO public.journals VALUES (1602, 420, 'Issue', 5, NULL, '2020-04-11 13:35:31+07', false);
INSERT INTO public.journals VALUES (1603, 421, 'Issue', 5, NULL, '2020-04-11 13:35:31+07', false);
INSERT INTO public.journals VALUES (1604, 474, 'Issue', 5, NULL, '2020-04-11 13:35:31+07', false);
INSERT INTO public.journals VALUES (1605, 420, 'Issue', 5, NULL, '2020-04-11 13:35:40+07', false);
INSERT INTO public.journals VALUES (1606, 423, 'Issue', 5, NULL, '2020-04-11 13:36:25+07', false);
INSERT INTO public.journals VALUES (1607, 415, 'Issue', 5, NULL, '2020-04-11 13:36:43+07', false);
INSERT INTO public.journals VALUES (1608, 463, 'Issue', 5, NULL, '2020-04-11 13:37:02+07', false);
INSERT INTO public.journals VALUES (1609, 464, 'Issue', 5, NULL, '2020-04-11 13:37:02+07', false);
INSERT INTO public.journals VALUES (1610, 426, 'Issue', 5, NULL, '2020-04-11 13:37:47+07', false);
INSERT INTO public.journals VALUES (1611, 427, 'Issue', 5, NULL, '2020-04-11 13:37:48+07', false);
INSERT INTO public.journals VALUES (1612, 428, 'Issue', 5, NULL, '2020-04-11 13:37:48+07', false);
INSERT INTO public.journals VALUES (1613, 429, 'Issue', 5, NULL, '2020-04-11 13:37:48+07', false);
INSERT INTO public.journals VALUES (1614, 430, 'Issue', 5, NULL, '2020-04-11 13:37:48+07', false);
INSERT INTO public.journals VALUES (1615, 407, 'Issue', 5, NULL, '2020-04-11 13:37:55+07', false);
INSERT INTO public.journals VALUES (1616, 475, 'Issue', 4, '', '2020-04-11 13:38:03+07', false);
INSERT INTO public.journals VALUES (1619, 438, 'Issue', 5, NULL, '2020-04-11 14:15:50+07', false);
INSERT INTO public.journals VALUES (1620, 439, 'Issue', 5, NULL, '2020-04-11 14:15:50+07', false);
INSERT INTO public.journals VALUES (1621, 440, 'Issue', 5, NULL, '2020-04-11 14:15:50+07', false);
INSERT INTO public.journals VALUES (1622, 441, 'Issue', 5, NULL, '2020-04-11 14:15:50+07', false);
INSERT INTO public.journals VALUES (1623, 442, 'Issue', 5, NULL, '2020-04-11 14:15:51+07', false);
INSERT INTO public.journals VALUES (1624, 444, 'Issue', 5, NULL, '2020-04-11 14:15:51+07', false);
INSERT INTO public.journals VALUES (1625, 445, 'Issue', 5, NULL, '2020-04-11 14:15:51+07', false);
INSERT INTO public.journals VALUES (1626, 446, 'Issue', 5, NULL, '2020-04-11 14:15:51+07', false);
INSERT INTO public.journals VALUES (1627, 447, 'Issue', 5, NULL, '2020-04-11 14:15:51+07', false);
INSERT INTO public.journals VALUES (1628, 448, 'Issue', 5, NULL, '2020-04-11 14:15:51+07', false);
INSERT INTO public.journals VALUES (1629, 450, 'Issue', 5, NULL, '2020-04-11 14:15:51+07', false);
INSERT INTO public.journals VALUES (1630, 451, 'Issue', 5, NULL, '2020-04-11 14:15:51+07', false);
INSERT INTO public.journals VALUES (1631, 452, 'Issue', 5, NULL, '2020-04-11 14:15:52+07', false);
INSERT INTO public.journals VALUES (1632, 453, 'Issue', 5, NULL, '2020-04-11 14:15:52+07', false);
INSERT INTO public.journals VALUES (1633, 454, 'Issue', 5, NULL, '2020-04-11 14:15:52+07', false);
INSERT INTO public.journals VALUES (1636, 456, 'Issue', 5, '', '2020-04-11 14:17:43+07', false);
INSERT INTO public.journals VALUES (1637, 435, 'Issue', 5, NULL, '2020-04-11 14:17:53+07', false);
INSERT INTO public.journals VALUES (1638, 443, 'Issue', 5, NULL, '2020-04-11 14:17:53+07', false);
INSERT INTO public.journals VALUES (1639, 449, 'Issue', 5, NULL, '2020-04-11 14:17:53+07', false);
INSERT INTO public.journals VALUES (1640, 433, 'Issue', 5, NULL, '2020-04-11 14:18:04+07', false);
INSERT INTO public.journals VALUES (1642, 456, 'Issue', 5, '', '2020-04-11 14:20:18+07', false);
INSERT INTO public.journals VALUES (1643, 475, 'Issue', 16, NULL, '2020-04-11 14:20:44+07', false);
INSERT INTO public.journals VALUES (1644, 475, 'Issue', 16, NULL, '2020-04-11 14:20:55+07', false);
INSERT INTO public.journals VALUES (1645, 418, 'Issue', 5, '', '2020-04-11 14:20:55+07', false);
INSERT INTO public.journals VALUES (1646, 419, 'Issue', 5, '', '2020-04-11 14:20:55+07', false);
INSERT INTO public.journals VALUES (1647, 422, 'Issue', 16, NULL, '2020-04-11 14:22:29+07', false);
INSERT INTO public.journals VALUES (1648, 422, 'Issue', 16, NULL, '2020-04-11 14:22:35+07', false);
INSERT INTO public.journals VALUES (1649, 467, 'Issue', 17, '', '2020-04-11 15:49:15+07', false);
INSERT INTO public.journals VALUES (1650, 468, 'Issue', 17, '', '2020-04-11 15:49:15+07', false);
INSERT INTO public.journals VALUES (1651, 469, 'Issue', 17, '', '2020-04-11 15:49:15+07', false);
INSERT INTO public.journals VALUES (1652, 470, 'Issue', 17, '', '2020-04-11 15:49:15+07', false);
INSERT INTO public.journals VALUES (1654, 473, 'Issue', 5, NULL, '2020-04-11 16:38:26+07', false);
INSERT INTO public.journals VALUES (1655, 473, 'Issue', 5, '', '2020-04-11 16:38:36+07', false);
INSERT INTO public.journals VALUES (1656, 475, 'Issue', 5, '', '2020-04-11 16:38:53+07', false);
INSERT INTO public.journals VALUES (1657, 476, 'Issue', 5, '', '2020-04-11 16:38:53+07', false);
INSERT INTO public.journals VALUES (1658, 361, 'Issue', 10, NULL, '2020-04-11 19:25:19+07', false);
INSERT INTO public.journals VALUES (1659, 361, 'Issue', 10, NULL, '2020-04-11 19:25:26+07', false);
INSERT INTO public.journals VALUES (1660, 304, 'Issue', 10, NULL, '2020-04-11 19:25:36+07', false);
INSERT INTO public.journals VALUES (1661, 304, 'Issue', 10, NULL, '2020-04-11 19:25:42+07', false);
INSERT INTO public.journals VALUES (1662, 410, 'Issue', 5, '', '2020-04-11 20:12:31+07', false);
INSERT INTO public.journals VALUES (1663, 461, 'Issue', 15, '', '2020-04-11 20:12:44+07', false);
INSERT INTO public.journals VALUES (1664, 411, 'Issue', 5, '', '2020-04-11 20:12:58+07', false);
INSERT INTO public.journals VALUES (1665, 486, 'Issue', 5, NULL, '2020-04-11 20:37:21+07', false);
INSERT INTO public.journals VALUES (1666, 486, 'Issue', 5, NULL, '2020-04-11 20:37:28+07', false);
INSERT INTO public.journals VALUES (1667, 485, 'Issue', 5, NULL, '2020-04-11 20:38:56+07', false);
INSERT INTO public.journals VALUES (1668, 486, 'Issue', 5, NULL, '2020-04-11 20:38:56+07', false);
INSERT INTO public.journals VALUES (1669, 487, 'Issue', 5, NULL, '2020-04-11 20:38:57+07', false);
INSERT INTO public.journals VALUES (1670, 488, 'Issue', 5, NULL, '2020-04-11 20:38:57+07', false);
INSERT INTO public.journals VALUES (1671, 425, 'Issue', 5, NULL, '2020-04-11 20:39:23+07', false);
INSERT INTO public.journals VALUES (1673, 456, 'Issue', 5, NULL, '2020-04-11 20:39:23+07', false);
INSERT INTO public.journals VALUES (1674, 458, 'Issue', 5, NULL, '2020-04-11 20:39:23+07', false);
INSERT INTO public.journals VALUES (1676, 487, 'Issue', 5, NULL, '2020-04-12 08:50:36+07', false);
INSERT INTO public.journals VALUES (1677, 488, 'Issue', 5, NULL, '2020-04-12 08:50:36+07', false);
INSERT INTO public.journals VALUES (1678, 487, 'Issue', 5, NULL, '2020-04-12 08:50:45+07', false);
INSERT INTO public.journals VALUES (1679, 488, 'Issue', 5, NULL, '2020-04-12 08:50:45+07', false);
INSERT INTO public.journals VALUES (1680, 486, 'Issue', 5, '', '2020-04-12 08:51:04+07', false);
INSERT INTO public.journals VALUES (1681, 487, 'Issue', 5, '', '2020-04-12 08:51:04+07', false);
INSERT INTO public.journals VALUES (1682, 488, 'Issue', 5, '', '2020-04-12 08:51:04+07', false);
INSERT INTO public.journals VALUES (1683, 410, 'Issue', 8, NULL, '2020-04-12 08:52:54+07', false);
INSERT INTO public.journals VALUES (1684, 411, 'Issue', 8, NULL, '2020-04-12 08:52:54+07', false);
INSERT INTO public.journals VALUES (1685, 410, 'Issue', 8, NULL, '2020-04-12 08:53:01+07', false);
INSERT INTO public.journals VALUES (1686, 411, 'Issue', 8, NULL, '2020-04-12 08:53:01+07', false);
INSERT INTO public.journals VALUES (1687, 473, 'Issue', 8, NULL, '2020-04-12 08:54:34+07', false);
INSERT INTO public.journals VALUES (1688, 473, 'Issue', 8, NULL, '2020-04-12 08:54:38+07', false);
INSERT INTO public.journals VALUES (1689, 424, 'Issue', 5, NULL, '2020-04-12 09:21:33+07', false);
INSERT INTO public.journals VALUES (1690, 424, 'Issue', 5, NULL, '2020-04-12 09:21:45+07', false);
INSERT INTO public.journals VALUES (1691, 425, 'Issue', 5, NULL, '2020-04-12 09:22:00+07', false);
INSERT INTO public.journals VALUES (1692, 484, 'Issue', 5, NULL, '2020-04-12 13:49:13+07', false);
INSERT INTO public.journals VALUES (1693, 484, 'Issue', 5, '', '2020-04-12 13:49:35+07', false);
INSERT INTO public.journals VALUES (1694, 463, 'Issue', 5, '', '2020-04-12 13:50:04+07', false);
INSERT INTO public.journals VALUES (1695, 460, 'Issue', 5, '', '2020-04-12 13:50:27+07', false);
INSERT INTO public.journals VALUES (1696, 462, 'Issue', 5, '', '2020-04-12 13:50:27+07', false);
INSERT INTO public.journals VALUES (1697, 461, 'Issue', 5, '', '2020-04-12 13:50:46+07', false);
INSERT INTO public.journals VALUES (1698, 464, 'Issue', 5, '', '2020-04-12 13:50:46+07', false);
INSERT INTO public.journals VALUES (1699, 402, 'Issue', 5, '', '2020-04-12 13:51:18+07', false);
INSERT INTO public.journals VALUES (1700, 495, 'Issue', 5, '', '2020-04-12 13:52:38+07', false);
INSERT INTO public.journals VALUES (1701, 467, 'Issue', 5, '', '2020-04-12 13:53:53+07', false);
INSERT INTO public.journals VALUES (1702, 468, 'Issue', 5, '', '2020-04-12 13:53:53+07', false);
INSERT INTO public.journals VALUES (1703, 469, 'Issue', 5, '', '2020-04-12 13:53:53+07', false);
INSERT INTO public.journals VALUES (1704, 470, 'Issue', 5, '', '2020-04-12 13:53:53+07', false);
INSERT INTO public.journals VALUES (1706, 338, 'Issue', 13, NULL, '2020-04-12 16:08:21+07', false);
INSERT INTO public.journals VALUES (1707, 338, 'Issue', 13, NULL, '2020-04-12 16:08:27+07', false);
INSERT INTO public.journals VALUES (1708, 496, 'Issue', 13, '', '2020-04-12 16:16:50+07', false);
INSERT INTO public.journals VALUES (1709, 527, 'Issue', 4, '', '2020-04-13 14:11:44+07', false);
INSERT INTO public.journals VALUES (1710, 528, 'Issue', 4, '', '2020-04-13 14:12:48+07', false);
INSERT INTO public.journals VALUES (1711, 528, 'Issue', 4, '', '2020-04-13 14:13:04+07', false);
INSERT INTO public.journals VALUES (1712, 529, 'Issue', 4, '', '2020-04-13 14:13:18+07', false);
INSERT INTO public.journals VALUES (1713, 423, 'Issue', 5, NULL, '2020-04-13 19:11:59+07', false);
INSERT INTO public.journals VALUES (1714, 423, 'Issue', 5, NULL, '2020-04-13 19:12:10+07', false);
INSERT INTO public.journals VALUES (1715, 460, 'Issue', 5, NULL, '2020-04-13 19:12:20+07', false);
INSERT INTO public.journals VALUES (1716, 460, 'Issue', 5, NULL, '2020-04-13 19:12:28+07', false);
INSERT INTO public.journals VALUES (1717, 484, 'Issue', 5, NULL, '2020-04-13 19:13:27+07', false);
INSERT INTO public.journals VALUES (1718, 464, 'Issue', 5, '', '2020-04-13 19:14:42+07', false);
INSERT INTO public.journals VALUES (1719, 463, 'Issue', 5, '', '2020-04-13 19:15:16+07', false);
INSERT INTO public.journals VALUES (1720, 463, 'Issue', 5, '', '2020-04-13 19:15:21+07', false);
INSERT INTO public.journals VALUES (1722, 195, 'Issue', 12, NULL, '2020-04-14 09:28:11+07', false);
INSERT INTO public.journals VALUES (1723, 195, 'Issue', 12, NULL, '2020-04-14 09:28:19+07', false);
INSERT INTO public.journals VALUES (1724, 259, 'Issue', 12, '', '2020-04-14 09:28:49+07', false);
INSERT INTO public.journals VALUES (1725, 463, 'Issue', 5, '', '2020-04-14 19:06:54+07', false);
INSERT INTO public.journals VALUES (1726, 464, 'Issue', 5, '', '2020-04-14 19:06:54+07', false);
INSERT INTO public.journals VALUES (1727, 484, 'Issue', 5, '', '2020-04-14 19:07:15+07', false);
INSERT INTO public.journals VALUES (1728, 462, 'Issue', 5, NULL, '2020-04-14 19:07:41+07', false);
INSERT INTO public.journals VALUES (1729, 462, 'Issue', 5, NULL, '2020-04-14 19:07:46+07', false);
INSERT INTO public.journals VALUES (1730, 398, 'Issue', 5, NULL, '2020-04-14 19:11:17+07', false);
INSERT INTO public.journals VALUES (1731, 412, 'Issue', 5, NULL, '2020-04-14 19:11:17+07', false);
INSERT INTO public.journals VALUES (1732, 460, 'Issue', 5, NULL, '2020-04-14 19:11:17+07', false);
INSERT INTO public.journals VALUES (1733, 462, 'Issue', 5, NULL, '2020-04-14 19:11:17+07', false);
INSERT INTO public.journals VALUES (1734, 463, 'Issue', 5, NULL, '2020-04-14 19:11:18+07', false);
INSERT INTO public.journals VALUES (1735, 464, 'Issue', 5, NULL, '2020-04-14 19:11:18+07', false);
INSERT INTO public.journals VALUES (1736, 459, 'Issue', 5, NULL, '2020-04-14 19:11:18+07', false);
INSERT INTO public.journals VALUES (1737, 418, 'Issue', 5, NULL, '2020-04-14 19:22:12+07', false);
INSERT INTO public.journals VALUES (1738, 418, 'Issue', 5, NULL, '2020-04-14 19:22:17+07', false);
INSERT INTO public.journals VALUES (1739, 418, 'Issue', 5, NULL, '2020-04-14 19:22:54+07', false);
INSERT INTO public.journals VALUES (1740, 414, 'Issue', 5, NULL, '2020-04-14 19:22:54+07', false);
INSERT INTO public.journals VALUES (1741, 416, 'Issue', 5, NULL, '2020-04-14 19:22:55+07', false);
INSERT INTO public.journals VALUES (1742, 417, 'Issue', 5, NULL, '2020-04-14 19:22:55+07', false);
INSERT INTO public.journals VALUES (1743, 420, 'Issue', 5, NULL, '2020-04-14 19:22:55+07', false);
INSERT INTO public.journals VALUES (1744, 421, 'Issue', 5, NULL, '2020-04-14 19:22:56+07', false);
INSERT INTO public.journals VALUES (1745, 474, 'Issue', 5, NULL, '2020-04-14 19:22:56+07', false);
INSERT INTO public.journals VALUES (1746, 422, 'Issue', 5, NULL, '2020-04-14 19:22:56+07', false);
INSERT INTO public.journals VALUES (1747, 423, 'Issue', 5, NULL, '2020-04-14 19:22:56+07', false);
INSERT INTO public.journals VALUES (1748, 424, 'Issue', 5, NULL, '2020-04-14 19:22:56+07', false);
INSERT INTO public.journals VALUES (1749, 409, 'Issue', 5, NULL, '2020-04-14 19:22:57+07', false);
INSERT INTO public.journals VALUES (1750, 410, 'Issue', 5, NULL, '2020-04-14 19:22:57+07', false);
INSERT INTO public.journals VALUES (1751, 411, 'Issue', 5, NULL, '2020-04-14 19:22:57+07', false);
INSERT INTO public.journals VALUES (1752, 473, 'Issue', 5, NULL, '2020-04-14 19:22:57+07', false);
INSERT INTO public.journals VALUES (1753, 475, 'Issue', 5, NULL, '2020-04-14 19:22:57+07', false);
INSERT INTO public.journals VALUES (1754, 476, 'Issue', 5, NULL, '2020-04-14 19:22:57+07', false);
INSERT INTO public.journals VALUES (1755, 486, 'Issue', 5, NULL, '2020-04-14 19:22:57+07', false);
INSERT INTO public.journals VALUES (1756, 487, 'Issue', 5, NULL, '2020-04-14 19:22:57+07', false);
INSERT INTO public.journals VALUES (1757, 488, 'Issue', 5, NULL, '2020-04-14 19:22:58+07', false);
INSERT INTO public.journals VALUES (1758, 528, 'Issue', 5, NULL, '2020-04-14 19:22:58+07', false);
INSERT INTO public.journals VALUES (1759, 529, 'Issue', 5, NULL, '2020-04-14 19:22:58+07', false);
INSERT INTO public.journals VALUES (1760, 491, 'Issue', 5, '', '2020-04-14 20:08:14+07', false);
INSERT INTO public.journals VALUES (1761, 493, 'Issue', 5, '', '2020-04-14 20:08:15+07', false);
INSERT INTO public.journals VALUES (1762, 490, 'Issue', 5, '', '2020-04-14 20:09:39+07', false);
INSERT INTO public.journals VALUES (1763, 489, 'Issue', 5, '', '2020-04-14 20:11:08+07', false);
INSERT INTO public.journals VALUES (1764, 494, 'Issue', 5, '', '2020-04-14 20:11:08+07', false);
INSERT INTO public.journals VALUES (1765, 401, 'Issue', 5, NULL, '2020-04-15 08:02:40+07', false);
INSERT INTO public.journals VALUES (1766, 403, 'Issue', 5, NULL, '2020-04-15 08:02:40+07', false);
INSERT INTO public.journals VALUES (1767, 404, 'Issue', 5, NULL, '2020-04-15 08:02:40+07', false);
INSERT INTO public.journals VALUES (1768, 408, 'Issue', 5, NULL, '2020-04-15 08:02:40+07', false);
INSERT INTO public.journals VALUES (1769, 489, 'Issue', 5, NULL, '2020-04-15 08:03:40+07', false);
INSERT INTO public.journals VALUES (1770, 490, 'Issue', 5, NULL, '2020-04-15 08:03:41+07', false);
INSERT INTO public.journals VALUES (1771, 491, 'Issue', 5, NULL, '2020-04-15 08:03:41+07', false);
INSERT INTO public.journals VALUES (1772, 493, 'Issue', 5, NULL, '2020-04-15 08:03:41+07', false);
INSERT INTO public.journals VALUES (1773, 494, 'Issue', 5, NULL, '2020-04-15 08:03:41+07', false);
INSERT INTO public.journals VALUES (1774, 531, 'Issue', 5, NULL, '2020-04-15 08:03:41+07', false);
INSERT INTO public.journals VALUES (1775, 456, 'Issue', 5, NULL, '2020-04-15 08:04:01+07', false);
INSERT INTO public.journals VALUES (1776, 530, 'Issue', 5, '', '2020-04-15 08:04:39+07', false);
INSERT INTO public.journals VALUES (1777, 492, 'Issue', 5, '', '2020-04-15 08:05:18+07', false);
INSERT INTO public.journals VALUES (1778, 492, 'Issue', 5, '', '2020-04-15 08:05:28+07', false);
INSERT INTO public.journals VALUES (1779, 527, 'Issue', 5, NULL, '2020-04-15 08:06:44+07', false);
INSERT INTO public.journals VALUES (1780, 472, 'Issue', 5, NULL, '2020-04-15 08:06:55+07', false);
INSERT INTO public.journals VALUES (1781, 485, 'Issue', 5, NULL, '2020-04-15 08:06:55+07', false);
INSERT INTO public.journals VALUES (1782, 425, 'Issue', 5, NULL, '2020-04-15 08:07:33+07', false);
INSERT INTO public.journals VALUES (1783, 425, 'Issue', 5, '', '2020-04-15 08:07:54+07', false);
INSERT INTO public.journals VALUES (1784, 456, 'Issue', 5, '', '2020-04-15 08:07:54+07', false);
INSERT INTO public.journals VALUES (1785, 534, 'Issue', 5, '', '2020-04-15 08:09:57+07', false);
INSERT INTO public.journals VALUES (1786, 530, 'Issue', 5, NULL, '2020-04-15 08:12:17+07', false);
INSERT INTO public.journals VALUES (1787, 530, 'Issue', 5, '', '2020-04-15 08:12:43+07', false);
INSERT INTO public.journals VALUES (1788, 484, 'Issue', 5, '', '2020-04-15 08:13:16+07', false);
INSERT INTO public.journals VALUES (1789, 530, 'Issue', 5, '', '2020-04-15 08:13:16+07', false);
INSERT INTO public.journals VALUES (1790, 484, 'Issue', 5, '', '2020-04-15 08:14:35+07', false);
INSERT INTO public.journals VALUES (1791, 530, 'Issue', 5, '', '2020-04-15 08:14:35+07', false);
INSERT INTO public.journals VALUES (1792, 484, 'Issue', 5, '', '2020-04-15 08:14:53+07', false);
INSERT INTO public.journals VALUES (1793, 461, 'Issue', 5, '', '2020-04-15 08:16:23+07', false);
INSERT INTO public.journals VALUES (1794, 419, 'Issue', 5, '', '2020-04-15 08:16:58+07', false);
INSERT INTO public.journals VALUES (1795, 495, 'Issue', 5, '', '2020-04-15 08:16:59+07', false);
INSERT INTO public.journals VALUES (1796, 413, 'Issue', 5, NULL, '2020-04-15 08:17:20+07', false);
INSERT INTO public.journals VALUES (1797, 399, 'Issue', 5, NULL, '2020-04-15 08:17:28+07', false);
INSERT INTO public.journals VALUES (1798, 541, 'Issue', 5, '', '2020-04-15 08:28:52+07', false);
INSERT INTO public.journals VALUES (1799, 536, 'Issue', 16, NULL, '2020-04-15 08:30:04+07', false);
INSERT INTO public.journals VALUES (1800, 536, 'Issue', 16, NULL, '2020-04-15 08:30:33+07', false);
INSERT INTO public.journals VALUES (1801, 537, 'Issue', 16, NULL, '2020-04-15 08:30:44+07', false);
INSERT INTO public.journals VALUES (1802, 537, 'Issue', 16, NULL, '2020-04-15 08:30:51+07', false);
INSERT INTO public.journals VALUES (1803, 415, 'Issue', 15, '', '2020-04-15 08:31:57+07', false);
INSERT INTO public.journals VALUES (1804, 400, 'Issue', 15, NULL, '2020-04-15 08:32:09+07', false);
INSERT INTO public.journals VALUES (1805, 466, 'Issue', 15, '', '2020-04-15 08:36:03+07', false);
INSERT INTO public.journals VALUES (1806, 467, 'Issue', 15, '', '2020-04-15 08:36:41+07', false);
INSERT INTO public.journals VALUES (1807, 468, 'Issue', 15, '', '2020-04-15 08:36:55+07', false);
INSERT INTO public.journals VALUES (1808, 469, 'Issue', 15, '', '2020-04-15 08:37:07+07', false);
INSERT INTO public.journals VALUES (1809, 469, 'Issue', 15, '', '2020-04-15 08:37:19+07', false);
INSERT INTO public.journals VALUES (1810, 468, 'Issue', 15, '', '2020-04-15 08:37:32+07', false);
INSERT INTO public.journals VALUES (1811, 467, 'Issue', 15, NULL, '2020-04-15 08:37:48+07', false);
INSERT INTO public.journals VALUES (1812, 470, 'Issue', 15, NULL, '2020-04-15 08:38:15+07', false);
INSERT INTO public.journals VALUES (1814, 467, 'Issue', 15, '', '2020-04-15 08:39:15+07', false);
INSERT INTO public.journals VALUES (1815, 468, 'Issue', 15, '', '2020-04-15 08:39:15+07', false);
INSERT INTO public.journals VALUES (1816, 469, 'Issue', 15, '', '2020-04-15 08:39:15+07', false);
INSERT INTO public.journals VALUES (1817, 470, 'Issue', 15, '', '2020-04-15 08:39:15+07', false);
INSERT INTO public.journals VALUES (1819, 402, 'Issue', 15, NULL, '2020-04-15 09:07:43+07', false);
INSERT INTO public.journals VALUES (1820, 461, 'Issue', 15, NULL, '2020-04-15 09:08:01+07', false);
INSERT INTO public.journals VALUES (1821, 495, 'Issue', 15, NULL, '2020-04-15 15:21:29+07', false);
INSERT INTO public.journals VALUES (1822, 419, 'Issue', 15, NULL, '2020-04-15 15:21:44+07', false);
INSERT INTO public.journals VALUES (1823, 530, 'Issue', 15, NULL, '2020-04-15 15:21:56+07', false);
INSERT INTO public.journals VALUES (1824, 530, 'Issue', 15, NULL, '2020-04-15 15:22:09+07', false);
INSERT INTO public.journals VALUES (1825, 495, 'Issue', 15, NULL, '2020-04-15 15:22:29+07', false);
INSERT INTO public.journals VALUES (1826, 419, 'Issue', 15, NULL, '2020-04-15 15:22:43+07', false);
INSERT INTO public.journals VALUES (1827, 484, 'Issue', 15, NULL, '2020-04-15 15:22:53+07', false);
INSERT INTO public.journals VALUES (1828, 456, 'Issue', 5, NULL, '2020-04-15 15:46:55+07', false);
INSERT INTO public.journals VALUES (1829, 544, 'Issue', 5, '', '2020-04-15 15:50:56+07', false);
INSERT INTO public.journals VALUES (1830, 544, 'Issue', 5, '', '2020-04-15 15:55:19+07', false);
INSERT INTO public.journals VALUES (1831, 545, 'Issue', 5, '', '2020-04-15 16:24:21+07', false);
INSERT INTO public.journals VALUES (1832, 532, 'Issue', 5, '', '2020-04-15 16:25:22+07', false);
INSERT INTO public.journals VALUES (1833, 534, 'Issue', 5, '', '2020-04-15 16:25:22+07', false);
INSERT INTO public.journals VALUES (1834, 425, 'Issue', 5, NULL, '2020-04-15 19:04:24+07', false);
INSERT INTO public.journals VALUES (1835, 425, 'Issue', 5, NULL, '2020-04-15 19:04:33+07', false);
INSERT INTO public.journals VALUES (1836, 496, 'Issue', 13, NULL, '2020-04-16 09:01:44+07', false);
INSERT INTO public.journals VALUES (1837, 496, 'Issue', 13, NULL, '2020-04-16 09:02:06+07', false);
INSERT INTO public.journals VALUES (1838, 497, 'Issue', 13, NULL, '2020-04-16 09:03:06+07', false);
INSERT INTO public.journals VALUES (1839, 497, 'Issue', 13, NULL, '2020-04-16 09:03:17+07', false);
INSERT INTO public.journals VALUES (1840, 567, 'Issue', 13, NULL, '2020-04-16 09:05:22+07', false);
INSERT INTO public.journals VALUES (1841, 567, 'Issue', 13, NULL, '2020-04-16 09:06:04+07', false);
INSERT INTO public.journals VALUES (1842, 554, 'Issue', 13, NULL, '2020-04-16 09:18:23+07', false);
INSERT INTO public.journals VALUES (1843, 554, 'Issue', 13, NULL, '2020-04-16 09:18:35+07', false);
INSERT INTO public.journals VALUES (1844, 556, 'Issue', 13, NULL, '2020-04-16 09:18:48+07', false);
INSERT INTO public.journals VALUES (1845, 557, 'Issue', 13, NULL, '2020-04-16 09:18:57+07', false);
INSERT INTO public.journals VALUES (1846, 557, 'Issue', 13, NULL, '2020-04-16 09:19:09+07', false);
INSERT INTO public.journals VALUES (1847, 558, 'Issue', 13, NULL, '2020-04-16 09:19:22+07', false);
INSERT INTO public.journals VALUES (1848, 558, 'Issue', 13, NULL, '2020-04-16 09:19:32+07', false);
INSERT INTO public.journals VALUES (1849, 552, 'Issue', 13, '', '2020-04-16 09:20:04+07', false);
INSERT INTO public.journals VALUES (1850, 562, 'Issue', 13, NULL, '2020-04-16 09:20:34+07', false);
INSERT INTO public.journals VALUES (1851, 562, 'Issue', 13, NULL, '2020-04-16 09:20:48+07', false);
INSERT INTO public.journals VALUES (1852, 566, 'Issue', 13, NULL, '2020-04-16 09:21:04+07', false);
INSERT INTO public.journals VALUES (1853, 566, 'Issue', 13, NULL, '2020-04-16 09:21:13+07', false);
INSERT INTO public.journals VALUES (1854, 564, 'Issue', 13, NULL, '2020-04-16 09:21:29+07', false);
INSERT INTO public.journals VALUES (1855, 543, 'Issue', 5, NULL, '2020-04-16 15:16:04+07', false);
INSERT INTO public.journals VALUES (1856, 543, 'Issue', 5, NULL, '2020-04-16 15:16:09+07', false);
INSERT INTO public.journals VALUES (1857, 533, 'Issue', 5, NULL, '2020-04-16 15:16:32+07', false);
INSERT INTO public.journals VALUES (1858, 533, 'Issue', 5, NULL, '2020-04-16 15:16:37+07', false);
INSERT INTO public.journals VALUES (1859, 544, 'Issue', 5, '', '2020-04-16 15:17:00+07', false);
INSERT INTO public.journals VALUES (1860, 548, 'Issue', 5, NULL, '2020-04-16 16:46:05+07', false);
INSERT INTO public.journals VALUES (1861, 548, 'Issue', 5, NULL, '2020-04-16 16:46:11+07', false);
INSERT INTO public.journals VALUES (1862, 415, 'Issue', 5, NULL, '2020-04-16 16:57:50+07', false);
INSERT INTO public.journals VALUES (1863, 415, 'Issue', 5, NULL, '2020-04-16 16:57:54+07', false);
INSERT INTO public.journals VALUES (1864, 484, 'Issue', 5, NULL, '2020-04-16 16:58:01+07', false);
INSERT INTO public.journals VALUES (1865, 484, 'Issue', 5, NULL, '2020-04-16 16:58:07+07', false);
INSERT INTO public.journals VALUES (1866, 526, 'Issue', 5, NULL, '2020-04-16 16:58:26+07', false);
INSERT INTO public.journals VALUES (1867, 467, 'Issue', 5, '', '2020-04-16 18:58:04+07', false);
INSERT INTO public.journals VALUES (1868, 468, 'Issue', 5, '', '2020-04-16 18:59:03+07', false);
INSERT INTO public.journals VALUES (1869, 469, 'Issue', 5, '', '2020-04-16 18:59:21+07', false);
INSERT INTO public.journals VALUES (1870, 470, 'Issue', 5, '', '2020-04-16 18:59:41+07', false);
INSERT INTO public.journals VALUES (1871, 544, 'Issue', 6, '', '2020-04-16 13:30:57+07', false);
INSERT INTO public.journals VALUES (1872, 549, 'Issue', 15, NULL, '2020-04-17 10:10:27+07', false);
INSERT INTO public.journals VALUES (1873, 549, 'Issue', 15, NULL, '2020-04-17 10:10:41+07', false);
INSERT INTO public.journals VALUES (1874, 467, 'Issue', 15, NULL, '2020-04-17 10:11:11+07', false);
INSERT INTO public.journals VALUES (1875, 467, 'Issue', 15, NULL, '2020-04-17 10:11:22+07', false);
INSERT INTO public.journals VALUES (1876, 469, 'Issue', 15, NULL, '2020-04-17 10:13:41+07', false);
INSERT INTO public.journals VALUES (1877, 469, 'Issue', 15, NULL, '2020-04-17 10:14:06+07', false);
INSERT INTO public.journals VALUES (1878, 492, 'Issue', 5, '', '2020-04-17 10:18:56+07', false);
INSERT INTO public.journals VALUES (1879, 425, 'Issue', 5, NULL, '2020-04-17 10:21:19+07', false);
INSERT INTO public.journals VALUES (1880, 532, 'Issue', 5, NULL, '2020-04-17 10:21:19+07', false);
INSERT INTO public.journals VALUES (1881, 533, 'Issue', 5, NULL, '2020-04-17 10:21:20+07', false);
INSERT INTO public.journals VALUES (1882, 534, 'Issue', 5, NULL, '2020-04-17 10:21:20+07', false);
INSERT INTO public.journals VALUES (1883, 548, 'Issue', 5, NULL, '2020-04-17 10:21:20+07', false);
INSERT INTO public.journals VALUES (1884, 415, 'Issue', 5, NULL, '2020-04-17 10:21:20+07', false);
INSERT INTO public.journals VALUES (1885, 419, 'Issue', 5, NULL, '2020-04-17 10:21:20+07', false);
INSERT INTO public.journals VALUES (1886, 495, 'Issue', 5, NULL, '2020-04-17 10:21:21+07', false);
INSERT INTO public.journals VALUES (1887, 484, 'Issue', 5, NULL, '2020-04-17 10:21:21+07', false);
INSERT INTO public.journals VALUES (1888, 530, 'Issue', 5, NULL, '2020-04-17 10:21:21+07', false);
INSERT INTO public.journals VALUES (1889, 402, 'Issue', 5, NULL, '2020-04-17 10:21:31+07', false);
INSERT INTO public.journals VALUES (1890, 458, 'Issue', 5, NULL, '2020-04-17 10:34:12+07', false);
INSERT INTO public.journals VALUES (1891, 461, 'Issue', 5, NULL, '2020-04-17 10:34:12+07', false);
INSERT INTO public.journals VALUES (1892, 549, 'Issue', 5, '', '2020-04-17 10:34:56+07', false);
INSERT INTO public.journals VALUES (1893, 570, 'Issue', 5, '', '2020-04-17 10:34:56+07', false);
INSERT INTO public.journals VALUES (1894, 571, 'Issue', 5, '', '2020-04-17 10:39:27+07', false);
INSERT INTO public.journals VALUES (1895, 571, 'Issue', 5, '', '2020-04-17 10:48:44+07', false);
INSERT INTO public.journals VALUES (1896, 572, 'Issue', 5, '', '2020-04-17 10:48:44+07', false);
INSERT INTO public.journals VALUES (1897, 545, 'Issue', 6, '', '2020-04-17 11:01:35+07', false);
INSERT INTO public.journals VALUES (1898, 572, 'Issue', 5, '', '2020-04-17 11:18:27+07', false);
INSERT INTO public.journals VALUES (1899, 575, 'Issue', 5, '', '2020-04-17 11:28:17+07', false);
INSERT INTO public.journals VALUES (1900, 545, 'Issue', 5, NULL, '2020-04-17 13:49:10+07', false);
INSERT INTO public.journals VALUES (1901, 545, 'Issue', 5, NULL, '2020-04-17 13:49:15+07', false);
INSERT INTO public.journals VALUES (1902, 546, 'Issue', 5, NULL, '2020-04-17 13:49:30+07', false);
INSERT INTO public.journals VALUES (1903, 547, 'Issue', 5, NULL, '2020-04-17 13:49:30+07', false);
INSERT INTO public.journals VALUES (1904, 551, 'Issue', 5, NULL, '2020-04-17 13:49:40+07', false);
INSERT INTO public.journals VALUES (1905, 569, 'Issue', 5, NULL, '2020-04-17 13:49:53+07', false);
INSERT INTO public.journals VALUES (1906, 576, 'Issue', 8, NULL, '2020-04-17 13:56:03+07', false);
INSERT INTO public.journals VALUES (1907, 576, 'Issue', 8, NULL, '2020-04-17 13:56:08+07', false);
INSERT INTO public.journals VALUES (1908, 396, 'Issue', 15, NULL, '2020-04-17 17:41:08+07', false);
INSERT INTO public.journals VALUES (1909, 391, 'Issue', 15, NULL, '2020-04-17 17:41:13+07', false);
INSERT INTO public.journals VALUES (1910, 394, 'Issue', 15, NULL, '2020-04-17 17:41:17+07', false);
INSERT INTO public.journals VALUES (1911, 468, 'Issue', 5, NULL, '2020-04-17 18:49:06+07', false);
INSERT INTO public.journals VALUES (1912, 468, 'Issue', 5, NULL, '2020-04-17 18:49:14+07', false);
INSERT INTO public.journals VALUES (1913, 570, 'Issue', 5, '', '2020-04-18 08:56:09+07', false);
INSERT INTO public.journals VALUES (1914, 577, 'Issue', 5, '', '2020-04-18 08:56:10+07', false);
INSERT INTO public.journals VALUES (1915, 569, 'Issue', 5, NULL, '2020-04-18 08:56:58+07', false);
INSERT INTO public.journals VALUES (1916, 569, 'Issue', 5, NULL, '2020-04-18 08:57:05+07', false);
INSERT INTO public.journals VALUES (1917, 546, 'Issue', 6, NULL, '2020-04-18 09:17:29+07', false);
INSERT INTO public.journals VALUES (1918, 546, 'Issue', 5, '', '2020-04-18 09:17:37+07', false);
INSERT INTO public.journals VALUES (1919, 547, 'Issue', 5, '', '2020-04-18 09:17:38+07', false);
INSERT INTO public.journals VALUES (1920, 572, 'Issue', 5, NULL, '2020-04-18 09:18:02+07', false);
INSERT INTO public.journals VALUES (1921, 572, 'Issue', 5, '', '2020-04-18 13:53:00+07', false);
INSERT INTO public.journals VALUES (1922, 575, 'Issue', 5, '', '2020-04-18 13:53:00+07', false);
INSERT INTO public.journals VALUES (1923, 538, 'Issue', 5, NULL, '2020-04-19 08:25:11+07', false);
INSERT INTO public.journals VALUES (1924, 539, 'Issue', 5, NULL, '2020-04-19 08:25:11+07', false);
INSERT INTO public.journals VALUES (1925, 540, 'Issue', 5, NULL, '2020-04-19 08:25:11+07', false);
INSERT INTO public.journals VALUES (1926, 541, 'Issue', 5, NULL, '2020-04-19 08:25:12+07', false);
INSERT INTO public.journals VALUES (1927, 542, 'Issue', 5, NULL, '2020-04-19 08:25:12+07', false);
INSERT INTO public.journals VALUES (1928, 573, 'Issue', 5, NULL, '2020-04-19 08:25:12+07', false);
INSERT INTO public.journals VALUES (1929, 574, 'Issue', 5, NULL, '2020-04-19 08:25:12+07', false);
INSERT INTO public.journals VALUES (1930, 538, 'Issue', 5, NULL, '2020-04-19 08:25:20+07', false);
INSERT INTO public.journals VALUES (1931, 539, 'Issue', 5, NULL, '2020-04-19 08:25:21+07', false);
INSERT INTO public.journals VALUES (1932, 540, 'Issue', 5, NULL, '2020-04-19 08:25:21+07', false);
INSERT INTO public.journals VALUES (1933, 541, 'Issue', 5, NULL, '2020-04-19 08:25:21+07', false);
INSERT INTO public.journals VALUES (1934, 542, 'Issue', 5, NULL, '2020-04-19 08:25:21+07', false);
INSERT INTO public.journals VALUES (1935, 573, 'Issue', 5, NULL, '2020-04-19 08:25:21+07', false);
INSERT INTO public.journals VALUES (1936, 574, 'Issue', 5, NULL, '2020-04-19 08:25:21+07', false);
INSERT INTO public.journals VALUES (1937, 550, 'Issue', 5, NULL, '2020-04-19 08:25:54+07', false);
INSERT INTO public.journals VALUES (1938, 550, 'Issue', 5, NULL, '2020-04-19 08:27:32+07', false);
INSERT INTO public.journals VALUES (1939, 581, 'Issue', 5, NULL, '2020-04-19 08:27:42+07', false);
INSERT INTO public.journals VALUES (1940, 581, 'Issue', 5, NULL, '2020-04-19 08:27:48+07', false);
INSERT INTO public.journals VALUES (1941, 469, 'Issue', 5, NULL, '2020-04-19 08:28:12+07', false);
INSERT INTO public.journals VALUES (1942, 470, 'Issue', 5, NULL, '2020-04-19 08:28:12+07', false);
INSERT INTO public.journals VALUES (1943, 469, 'Issue', 5, NULL, '2020-04-19 08:28:18+07', false);
INSERT INTO public.journals VALUES (1944, 470, 'Issue', 5, NULL, '2020-04-19 08:28:18+07', false);
INSERT INTO public.journals VALUES (1945, 571, 'Issue', 5, NULL, '2020-04-19 08:29:16+07', false);
INSERT INTO public.journals VALUES (1946, 571, 'Issue', 5, NULL, '2020-04-19 08:29:28+07', false);
INSERT INTO public.journals VALUES (1947, 580, 'Issue', 15, NULL, '2020-04-19 08:32:26+07', false);
INSERT INTO public.journals VALUES (1948, 580, 'Issue', 15, NULL, '2020-04-19 08:32:32+07', false);
INSERT INTO public.journals VALUES (1949, 578, 'Issue', 5, NULL, '2020-04-19 10:00:51+07', false);
INSERT INTO public.journals VALUES (1950, 578, 'Issue', 5, NULL, '2020-04-19 10:00:59+07', false);
INSERT INTO public.journals VALUES (1951, 551, 'Issue', 5, NULL, '2020-04-19 17:05:27+07', false);
INSERT INTO public.journals VALUES (1952, 551, 'Issue', 5, NULL, '2020-04-19 17:05:34+07', false);
INSERT INTO public.journals VALUES (1953, 583, 'Issue', 5, NULL, '2020-04-19 17:10:18+07', false);
INSERT INTO public.journals VALUES (1954, 583, 'Issue', 5, NULL, '2020-04-19 17:10:26+07', false);
INSERT INTO public.journals VALUES (1955, 582, 'Issue', 5, NULL, '2020-04-19 17:44:07+07', false);
INSERT INTO public.journals VALUES (1956, 582, 'Issue', 5, NULL, '2020-04-19 17:44:21+07', false);
INSERT INTO public.journals VALUES (1957, 584, 'Issue', 5, '', '2020-04-21 08:17:11+07', false);
INSERT INTO public.journals VALUES (1958, 588, 'Issue', 5, '', '2020-04-21 08:17:12+07', false);
INSERT INTO public.journals VALUES (1959, 584, 'Issue', 5, NULL, '2020-04-21 08:17:23+07', false);
INSERT INTO public.journals VALUES (1960, 588, 'Issue', 5, NULL, '2020-04-21 08:17:23+07', false);
INSERT INTO public.journals VALUES (1961, 467, 'Issue', 5, NULL, '2020-04-21 08:18:57+07', false);
INSERT INTO public.journals VALUES (1962, 468, 'Issue', 5, NULL, '2020-04-21 08:18:58+07', false);
INSERT INTO public.journals VALUES (1963, 469, 'Issue', 5, NULL, '2020-04-21 08:18:58+07', false);
INSERT INTO public.journals VALUES (1964, 470, 'Issue', 5, NULL, '2020-04-21 08:18:58+07', false);
INSERT INTO public.journals VALUES (1965, 543, 'Issue', 5, NULL, '2020-04-21 08:19:08+07', false);
INSERT INTO public.journals VALUES (1966, 544, 'Issue', 5, NULL, '2020-04-21 08:19:08+07', false);
INSERT INTO public.journals VALUES (1967, 545, 'Issue', 5, NULL, '2020-04-21 08:19:08+07', false);
INSERT INTO public.journals VALUES (1968, 546, 'Issue', 5, NULL, '2020-04-21 08:19:08+07', false);
INSERT INTO public.journals VALUES (1969, 547, 'Issue', 5, NULL, '2020-04-21 08:19:09+07', false);
INSERT INTO public.journals VALUES (1970, 550, 'Issue', 5, NULL, '2020-04-21 08:19:09+07', false);
INSERT INTO public.journals VALUES (1971, 551, 'Issue', 5, NULL, '2020-04-21 08:19:09+07', false);
INSERT INTO public.journals VALUES (1972, 569, 'Issue', 5, NULL, '2020-04-21 08:19:09+07', false);
INSERT INTO public.journals VALUES (1973, 581, 'Issue', 5, NULL, '2020-04-21 08:19:09+07', false);
INSERT INTO public.journals VALUES (1974, 582, 'Issue', 5, NULL, '2020-04-21 08:19:09+07', false);
INSERT INTO public.journals VALUES (1975, 583, 'Issue', 5, NULL, '2020-04-21 08:19:09+07', false);
INSERT INTO public.journals VALUES (1976, 536, 'Issue', 5, NULL, '2020-04-21 08:19:21+07', false);
INSERT INTO public.journals VALUES (1977, 537, 'Issue', 5, NULL, '2020-04-21 08:19:21+07', false);
INSERT INTO public.journals VALUES (1978, 538, 'Issue', 5, NULL, '2020-04-21 08:19:21+07', false);
INSERT INTO public.journals VALUES (1979, 539, 'Issue', 5, NULL, '2020-04-21 08:19:21+07', false);
INSERT INTO public.journals VALUES (1980, 540, 'Issue', 5, NULL, '2020-04-21 08:19:21+07', false);
INSERT INTO public.journals VALUES (1981, 541, 'Issue', 5, NULL, '2020-04-21 08:19:21+07', false);
INSERT INTO public.journals VALUES (1982, 542, 'Issue', 5, NULL, '2020-04-21 08:19:21+07', false);
INSERT INTO public.journals VALUES (1983, 573, 'Issue', 5, NULL, '2020-04-21 08:19:22+07', false);
INSERT INTO public.journals VALUES (1984, 574, 'Issue', 5, NULL, '2020-04-21 08:19:22+07', false);
INSERT INTO public.journals VALUES (1985, 549, 'Issue', 5, NULL, '2020-04-21 08:19:29+07', false);
INSERT INTO public.journals VALUES (1986, 570, 'Issue', 5, NULL, '2020-04-21 08:19:29+07', false);
INSERT INTO public.journals VALUES (1987, 572, 'Issue', 5, NULL, '2020-04-21 08:19:29+07', false);
INSERT INTO public.journals VALUES (1988, 575, 'Issue', 5, NULL, '2020-04-21 08:19:29+07', false);
INSERT INTO public.journals VALUES (1989, 577, 'Issue', 5, NULL, '2020-04-21 08:19:30+07', false);
INSERT INTO public.journals VALUES (1990, 571, 'Issue', 5, NULL, '2020-04-21 08:19:35+07', false);
INSERT INTO public.journals VALUES (1991, 576, 'Issue', 5, NULL, '2020-04-21 08:19:35+07', false);
INSERT INTO public.journals VALUES (1992, 578, 'Issue', 5, NULL, '2020-04-21 08:19:36+07', false);
INSERT INTO public.journals VALUES (1993, 580, 'Issue', 5, NULL, '2020-04-21 08:19:36+07', false);
INSERT INTO public.journals VALUES (1994, 405, 'Issue', 5, NULL, '2020-04-21 08:19:44+07', false);
INSERT INTO public.journals VALUES (1995, 406, 'Issue', 5, NULL, '2020-04-21 08:19:44+07', false);
INSERT INTO public.journals VALUES (1996, 466, 'Issue', 5, NULL, '2020-04-21 08:19:44+07', false);
INSERT INTO public.journals VALUES (1997, 492, 'Issue', 5, NULL, '2020-04-21 08:19:44+07', false);
INSERT INTO public.journals VALUES (1998, 535, 'Issue', 5, NULL, '2020-04-21 08:19:44+07', false);
INSERT INTO public.journals VALUES (1999, 584, 'Issue', 5, NULL, '2020-04-21 08:19:53+07', false);
INSERT INTO public.journals VALUES (2000, 588, 'Issue', 5, NULL, '2020-04-21 08:19:53+07', false);
INSERT INTO public.journals VALUES (2001, 595, 'Issue', 13, '', '2020-04-21 10:10:37+07', false);
INSERT INTO public.journals VALUES (2002, 250, 'Issue', 12, NULL, '2020-04-21 13:21:58+07', false);
INSERT INTO public.journals VALUES (2003, 280, 'Issue', 12, NULL, '2020-04-21 13:21:58+07', false);
INSERT INTO public.journals VALUES (2004, 281, 'Issue', 12, NULL, '2020-04-21 13:21:58+07', false);
INSERT INTO public.journals VALUES (2005, 193, 'Issue', 12, NULL, '2020-04-21 13:22:06+07', false);
INSERT INTO public.journals VALUES (2006, 194, 'Issue', 12, NULL, '2020-04-21 13:22:06+07', false);
INSERT INTO public.journals VALUES (2007, 196, 'Issue', 12, NULL, '2020-04-21 13:22:07+07', false);
INSERT INTO public.journals VALUES (2008, 173, 'Issue', 12, NULL, '2020-04-21 13:22:16+07', false);
INSERT INTO public.journals VALUES (2009, 176, 'Issue', 12, NULL, '2020-04-21 13:22:16+07', false);
INSERT INTO public.journals VALUES (2010, 177, 'Issue', 12, NULL, '2020-04-21 13:22:16+07', false);
INSERT INTO public.journals VALUES (2011, 178, 'Issue', 12, NULL, '2020-04-21 13:22:16+07', false);
INSERT INTO public.journals VALUES (2012, 286, 'Issue', 12, NULL, '2020-04-21 13:22:26+07', false);
INSERT INTO public.journals VALUES (2013, 180, 'Issue', 12, NULL, '2020-04-21 13:22:35+07', false);
INSERT INTO public.journals VALUES (2014, 181, 'Issue', 12, NULL, '2020-04-21 13:22:35+07', false);
INSERT INTO public.journals VALUES (2015, 182, 'Issue', 12, NULL, '2020-04-21 13:22:35+07', false);
INSERT INTO public.journals VALUES (2016, 256, 'Issue', 12, NULL, '2020-04-21 13:22:35+07', false);
INSERT INTO public.journals VALUES (2017, 187, 'Issue', 12, NULL, '2020-04-21 13:22:41+07', false);
INSERT INTO public.journals VALUES (2018, 188, 'Issue', 12, NULL, '2020-04-21 13:22:41+07', false);
INSERT INTO public.journals VALUES (2019, 202, 'Issue', 12, NULL, '2020-04-21 13:22:48+07', false);
INSERT INTO public.journals VALUES (2020, 203, 'Issue', 12, NULL, '2020-04-21 13:22:48+07', false);
INSERT INTO public.journals VALUES (2021, 204, 'Issue', 12, NULL, '2020-04-21 13:22:48+07', false);
INSERT INTO public.journals VALUES (2022, 297, 'Issue', 12, NULL, '2020-04-21 13:22:56+07', false);
INSERT INTO public.journals VALUES (2023, 252, 'Issue', 12, NULL, '2020-04-21 13:23:10+07', false);
INSERT INTO public.journals VALUES (2024, 253, 'Issue', 12, NULL, '2020-04-21 13:23:10+07', false);
INSERT INTO public.journals VALUES (2025, 229, 'Issue', 12, NULL, '2020-04-21 13:23:17+07', false);
INSERT INTO public.journals VALUES (2026, 258, 'Issue', 12, NULL, '2020-04-21 13:23:24+07', false);
INSERT INTO public.journals VALUES (2027, 230, 'Issue', 12, NULL, '2020-04-21 13:23:31+07', false);
INSERT INTO public.journals VALUES (2028, 231, 'Issue', 12, NULL, '2020-04-21 13:23:31+07', false);
INSERT INTO public.journals VALUES (2029, 233, 'Issue', 12, NULL, '2020-04-21 13:23:32+07', false);
INSERT INTO public.journals VALUES (2030, 369, 'Issue', 12, NULL, '2020-04-21 13:27:38+07', false);
INSERT INTO public.journals VALUES (2031, 370, 'Issue', 12, NULL, '2020-04-21 13:27:38+07', false);
INSERT INTO public.journals VALUES (2032, 371, 'Issue', 12, NULL, '2020-04-21 13:27:38+07', false);
INSERT INTO public.journals VALUES (2033, 385, 'Issue', 12, NULL, '2020-04-21 13:27:45+07', false);
INSERT INTO public.journals VALUES (2034, 386, 'Issue', 12, NULL, '2020-04-21 13:27:45+07', false);
INSERT INTO public.journals VALUES (2035, 172, 'Issue', 12, NULL, '2020-04-21 13:28:01+07', false);
INSERT INTO public.journals VALUES (2036, 179, 'Issue', 12, NULL, '2020-04-21 13:28:01+07', false);
INSERT INTO public.journals VALUES (2037, 186, 'Issue', 12, NULL, '2020-04-21 13:28:01+07', false);
INSERT INTO public.journals VALUES (2038, 190, 'Issue', 12, NULL, '2020-04-21 13:28:01+07', false);
INSERT INTO public.journals VALUES (2039, 197, 'Issue', 12, NULL, '2020-04-21 13:28:02+07', false);
INSERT INTO public.journals VALUES (2040, 201, 'Issue', 12, NULL, '2020-04-21 13:28:02+07', false);
INSERT INTO public.journals VALUES (2041, 227, 'Issue', 12, NULL, '2020-04-21 13:28:02+07', false);
INSERT INTO public.journals VALUES (2042, 174, 'Issue', 12, NULL, '2020-04-21 13:28:14+07', false);
INSERT INTO public.journals VALUES (2043, 192, 'Issue', 12, NULL, '2020-04-21 13:28:14+07', false);
INSERT INTO public.journals VALUES (2044, 198, 'Issue', 12, NULL, '2020-04-21 13:28:14+07', false);
INSERT INTO public.journals VALUES (2045, 199, 'Issue', 12, NULL, '2020-04-21 13:28:14+07', false);
INSERT INTO public.journals VALUES (2046, 191, 'Issue', 12, NULL, '2020-04-21 13:28:26+07', false);
INSERT INTO public.journals VALUES (2047, 195, 'Issue', 12, NULL, '2020-04-21 13:28:26+07', false);
INSERT INTO public.journals VALUES (2048, 357, 'Issue', 12, NULL, '2020-04-21 13:28:26+07', false);
INSERT INTO public.journals VALUES (2049, 367, 'Issue', 12, NULL, '2020-04-21 13:28:27+07', false);
INSERT INTO public.journals VALUES (2050, 368, 'Issue', 12, NULL, '2020-04-21 13:28:27+07', false);
INSERT INTO public.journals VALUES (2053, 259, 'Issue', 12, '', '2020-04-21 13:29:11+07', false);
INSERT INTO public.journals VALUES (2054, 260, 'Issue', 12, '', '2020-04-21 13:29:11+07', false);
INSERT INTO public.journals VALUES (2057, 605, 'Issue', 12, '', '2020-04-21 15:30:18+07', false);
INSERT INTO public.journals VALUES (2058, 608, 'Issue', 12, '', '2020-04-21 15:35:28+07', false);
INSERT INTO public.journals VALUES (2059, 610, 'Issue', 12, '', '2020-04-21 15:55:34+07', false);
INSERT INTO public.journals VALUES (2060, 615, 'Issue', 12, 'Giảng viên chủ nhiệm chỉ có quyền:
+ xem
+ xếp tổ
+ xếp vị trí ngồi
+ xuất sơ đồ vị trí ngồi của học viên,
+ Xuất phiếu điểm danh của lớp', '2020-04-21 15:59:36+07', false);
INSERT INTO public.journals VALUES (2061, 608, 'Issue', 5, '', '2020-04-21 16:02:05+07', false);
INSERT INTO public.journals VALUES (2062, 604, 'Issue', 12, '', '2020-04-22 00:39:26+07', false);
INSERT INTO public.journals VALUES (2063, 607, 'Issue', 12, '', '2020-04-22 00:41:13+07', false);
INSERT INTO public.journals VALUES (2064, 605, 'Issue', 12, '', '2020-04-22 00:41:54+07', false);
INSERT INTO public.journals VALUES (2065, 606, 'Issue', 12, '', '2020-04-22 00:42:20+07', false);
INSERT INTO public.journals VALUES (2066, 606, 'Issue', 12, '', '2020-04-22 00:42:59+07', false);
INSERT INTO public.journals VALUES (2067, 603, 'Issue', 12, '', '2020-04-22 00:43:34+07', false);
INSERT INTO public.journals VALUES (2069, 601, 'Issue', 12, '', '2020-04-22 00:44:58+07', false);
INSERT INTO public.journals VALUES (2070, 602, 'Issue', 12, '', '2020-04-22 00:45:37+07', false);
INSERT INTO public.journals VALUES (2071, 259, 'Issue', 12, '', '2020-04-22 00:45:59+07', false);
INSERT INTO public.journals VALUES (2072, 603, 'Issue', 12, '', '2020-04-22 00:46:37+07', false);
INSERT INTO public.journals VALUES (2074, 603, 'Issue', 12, '', '2020-04-22 00:48:35+07', false);
INSERT INTO public.journals VALUES (2075, 603, 'Issue', 12, '', '2020-04-22 00:49:30+07', false);
INSERT INTO public.journals VALUES (2077, 260, 'Issue', 12, '', '2020-04-22 00:50:26+07', false);
INSERT INTO public.journals VALUES (2085, 629, 'Issue', 15, '', '2020-04-22 14:00:01+07', false);
INSERT INTO public.journals VALUES (2086, 628, 'Issue', 15, '', '2020-04-22 14:01:27+07', false);
INSERT INTO public.journals VALUES (2087, 634, 'Issue', 15, '', '2020-04-22 14:05:27+07', false);
INSERT INTO public.journals VALUES (2089, 635, 'Issue', 15, '', '2020-04-22 14:06:23+07', false);
INSERT INTO public.journals VALUES (2091, 641, 'Issue', 9, '', '2020-04-22 14:13:23+07', false);
INSERT INTO public.journals VALUES (2092, 646, 'Issue', 15, '', '2020-04-22 14:41:56+07', false);
INSERT INTO public.journals VALUES (2094, 651, 'Issue', 5, '', '2020-04-22 15:37:58+07', false);
INSERT INTO public.journals VALUES (2095, 652, 'Issue', 5, '', '2020-04-22 15:37:58+07', false);
INSERT INTO public.journals VALUES (2096, 653, 'Issue', 5, '', '2020-04-22 15:37:58+07', false);
INSERT INTO public.journals VALUES (2097, 654, 'Issue', 5, '', '2020-04-22 15:37:58+07', false);
INSERT INTO public.journals VALUES (2098, 655, 'Issue', 5, '', '2020-04-22 15:37:58+07', false);
INSERT INTO public.journals VALUES (2099, 656, 'Issue', 5, '', '2020-04-22 15:37:59+07', false);
INSERT INTO public.journals VALUES (2100, 603, 'Issue', 12, NULL, '2020-04-22 15:50:58+07', false);
INSERT INTO public.journals VALUES (2101, 603, 'Issue', 12, NULL, '2020-04-22 15:51:03+07', false);
INSERT INTO public.journals VALUES (2102, 635, 'Issue', 15, NULL, '2020-04-22 15:53:13+07', false);
INSERT INTO public.journals VALUES (2103, 635, 'Issue', 15, NULL, '2020-04-22 15:53:23+07', false);
INSERT INTO public.journals VALUES (2104, 607, 'Issue', 12, NULL, '2020-04-22 23:44:30+07', false);
INSERT INTO public.journals VALUES (2105, 607, 'Issue', 12, NULL, '2020-04-22 23:44:36+07', false);
INSERT INTO public.journals VALUES (2106, 648, 'Issue', 5, '', '2020-04-23 08:01:16+07', false);
INSERT INTO public.journals VALUES (2109, 594, 'Issue', 5, '', '2020-04-23 08:10:17+07', false);
INSERT INTO public.journals VALUES (2112, 498, 'Issue', 13, '', '2020-04-23 08:36:00+07', false);
INSERT INTO public.journals VALUES (2113, 524, 'Issue', 13, '', '2020-04-23 08:40:43+07', false);
INSERT INTO public.journals VALUES (2114, 524, 'Issue', 13, '', '2020-04-23 08:42:51+07', false);
INSERT INTO public.journals VALUES (2115, 524, 'Issue', 13, '', '2020-04-23 08:43:48+07', false);
INSERT INTO public.journals VALUES (2116, 525, 'Issue', 13, '', '2020-04-23 08:44:24+07', false);
INSERT INTO public.journals VALUES (2117, 567, 'Issue', 13, '', '2020-04-23 08:45:04+07', false);
INSERT INTO public.journals VALUES (2118, 524, 'Issue', 13, '', '2020-04-23 08:46:44+07', false);
INSERT INTO public.journals VALUES (2119, 525, 'Issue', 13, '', '2020-04-23 08:47:18+07', false);
INSERT INTO public.journals VALUES (2120, 554, 'Issue', 13, '', '2020-04-23 08:48:18+07', false);
INSERT INTO public.journals VALUES (2121, 555, 'Issue', 13, '', '2020-04-23 08:48:54+07', false);
INSERT INTO public.journals VALUES (2122, 506, 'Issue', 13, '', '2020-04-23 08:49:24+07', false);
INSERT INTO public.journals VALUES (2123, 524, 'Issue', 13, '', '2020-04-23 08:50:06+07', false);
INSERT INTO public.journals VALUES (2124, 525, 'Issue', 13, '', '2020-04-23 08:50:30+07', false);
INSERT INTO public.journals VALUES (2125, 567, 'Issue', 13, '', '2020-04-23 08:50:54+07', false);
INSERT INTO public.journals VALUES (2126, 568, 'Issue', 13, '', '2020-04-23 08:51:16+07', false);
INSERT INTO public.journals VALUES (2127, 552, 'Issue', 13, '', '2020-04-23 08:51:51+07', false);
INSERT INTO public.journals VALUES (2128, 553, 'Issue', 13, '', '2020-04-23 08:52:33+07', false);
INSERT INTO public.journals VALUES (2129, 556, 'Issue', 13, '', '2020-04-23 08:53:33+07', false);
INSERT INTO public.journals VALUES (2130, 557, 'Issue', 13, '', '2020-04-23 08:55:36+07', false);
INSERT INTO public.journals VALUES (2131, 511, 'Issue', 13, '', '2020-04-23 08:55:56+07', false);
INSERT INTO public.journals VALUES (2132, 558, 'Issue', 13, '', '2020-04-23 08:57:24+07', false);
INSERT INTO public.journals VALUES (2133, 559, 'Issue', 13, '', '2020-04-23 08:57:39+07', false);
INSERT INTO public.journals VALUES (2134, 560, 'Issue', 13, '', '2020-04-23 08:58:16+07', false);
INSERT INTO public.journals VALUES (2135, 561, 'Issue', 13, '', '2020-04-23 08:58:28+07', false);
INSERT INTO public.journals VALUES (2136, 562, 'Issue', 13, '', '2020-04-23 08:59:52+07', false);
INSERT INTO public.journals VALUES (2137, 563, 'Issue', 13, '', '2020-04-23 09:00:07+07', false);
INSERT INTO public.journals VALUES (2138, 564, 'Issue', 13, '', '2020-04-23 09:00:29+07', false);
INSERT INTO public.journals VALUES (2139, 565, 'Issue', 13, '', '2020-04-23 09:00:41+07', false);
INSERT INTO public.journals VALUES (2140, 515, 'Issue', 13, '', '2020-04-23 09:02:37+07', false);
INSERT INTO public.journals VALUES (2141, 658, 'Issue', 13, '', '2020-04-23 09:09:05+07', false);
INSERT INTO public.journals VALUES (2142, 659, 'Issue', 13, '', '2020-04-23 09:09:17+07', false);
INSERT INTO public.journals VALUES (2143, 596, 'Issue', 13, '', '2020-04-23 09:09:58+07', false);
INSERT INTO public.journals VALUES (2144, 597, 'Issue', 13, '', '2020-04-23 09:10:17+07', false);
INSERT INTO public.journals VALUES (2145, 599, 'Issue', 13, '', '2020-04-23 09:10:41+07', false);
INSERT INTO public.journals VALUES (2146, 600, 'Issue', 13, '', '2020-04-23 09:10:57+07', false);
INSERT INTO public.journals VALUES (2147, 502, 'Issue', 13, '', '2020-04-23 09:11:31+07', false);
INSERT INTO public.journals VALUES (2148, 596, 'Issue', 13, '', '2020-04-23 09:13:55+07', false);
INSERT INTO public.journals VALUES (2149, 597, 'Issue', 13, '', '2020-04-23 09:14:13+07', false);
INSERT INTO public.journals VALUES (2150, 598, 'Issue', 13, '', '2020-04-23 09:14:25+07', false);
INSERT INTO public.journals VALUES (2151, 656, 'Issue', 5, NULL, '2020-04-23 09:54:08+07', false);
INSERT INTO public.journals VALUES (2152, 656, 'Issue', 5, NULL, '2020-04-23 09:54:14+07', false);
INSERT INTO public.journals VALUES (2153, 627, 'Issue', 5, '', '2020-04-23 09:57:05+07', false);
INSERT INTO public.journals VALUES (2154, 626, 'Issue', 5, NULL, '2020-04-23 09:57:21+07', false);
INSERT INTO public.journals VALUES (2155, 627, 'Issue', 5, NULL, '2020-04-23 09:57:41+07', false);
INSERT INTO public.journals VALUES (2156, 628, 'Issue', 5, NULL, '2020-04-23 09:57:42+07', false);
INSERT INTO public.journals VALUES (2157, 629, 'Issue', 5, NULL, '2020-04-23 09:57:42+07', false);
INSERT INTO public.journals VALUES (2158, 632, 'Issue', 5, NULL, '2020-04-23 09:58:02+07', false);
INSERT INTO public.journals VALUES (2160, 634, 'Issue', 5, NULL, '2020-04-23 09:58:02+07', false);
INSERT INTO public.journals VALUES (2164, 594, 'Issue', 9, NULL, '2020-04-23 10:03:26+07', false);
INSERT INTO public.journals VALUES (2165, 635, 'Issue', 9, NULL, '2020-04-23 10:09:50+07', false);
INSERT INTO public.journals VALUES (2167, 645, 'Issue', 15, NULL, '2020-04-23 10:18:44+07', false);
INSERT INTO public.journals VALUES (2168, 645, 'Issue', 15, NULL, '2020-04-23 10:18:55+07', false);
INSERT INTO public.journals VALUES (2173, 646, 'Issue', 15, NULL, '2020-04-23 11:04:03+07', false);
INSERT INTO public.journals VALUES (2174, 646, 'Issue', 15, NULL, '2020-04-23 11:04:23+07', false);
INSERT INTO public.journals VALUES (2179, 656, 'Issue', 9, NULL, '2020-04-23 14:12:31+07', false);
INSERT INTO public.journals VALUES (2180, 645, 'Issue', 9, NULL, '2020-04-23 14:13:36+07', false);
INSERT INTO public.journals VALUES (2181, 646, 'Issue', 9, NULL, '2020-04-23 15:03:35+07', false);
INSERT INTO public.journals VALUES (2182, 644, 'Issue', 9, NULL, '2020-04-23 15:03:47+07', false);
INSERT INTO public.journals VALUES (2187, 627, 'Issue', 8, NULL, '2020-04-23 16:18:39+07', false);
INSERT INTO public.journals VALUES (2188, 628, 'Issue', 8, NULL, '2020-04-23 16:18:39+07', false);
INSERT INTO public.journals VALUES (2189, 627, 'Issue', 8, NULL, '2020-04-23 16:19:34+07', false);
INSERT INTO public.journals VALUES (2193, 604, 'Issue', 12, NULL, '2020-04-23 16:49:33+07', false);
INSERT INTO public.journals VALUES (2194, 604, 'Issue', 12, NULL, '2020-04-23 16:49:40+07', false);
INSERT INTO public.journals VALUES (2196, 648, 'Issue', 6, NULL, '2020-04-23 18:55:22+07', false);
INSERT INTO public.journals VALUES (2197, 648, 'Issue', 6, NULL, '2020-04-23 18:55:32+07', false);
INSERT INTO public.journals VALUES (2198, 632, 'Issue', 5, NULL, '2020-04-24 14:49:48+07', false);
INSERT INTO public.journals VALUES (2199, 632, 'Issue', 5, NULL, '2020-04-24 14:49:54+07', false);
INSERT INTO public.journals VALUES (2200, 589, 'Issue', 8, NULL, '2020-04-24 14:52:23+07', false);
INSERT INTO public.journals VALUES (2201, 589, 'Issue', 8, NULL, '2020-04-24 14:52:40+07', false);
INSERT INTO public.journals VALUES (2202, 663, 'Issue', 5, '', '2020-04-24 14:53:02+07', false);
INSERT INTO public.journals VALUES (2203, 663, 'Issue', 5, NULL, '2020-04-24 14:53:15+07', false);
INSERT INTO public.journals VALUES (2204, 589, 'Issue', 5, NULL, '2020-04-24 14:53:38+07', false);
INSERT INTO public.journals VALUES (2205, 627, 'Issue', 5, NULL, '2020-04-24 14:53:38+07', false);
INSERT INTO public.journals VALUES (2206, 632, 'Issue', 5, NULL, '2020-04-24 14:53:38+07', false);
INSERT INTO public.journals VALUES (2208, 648, 'Issue', 5, NULL, '2020-04-24 14:53:39+07', false);
INSERT INTO public.journals VALUES (2209, 663, 'Issue', 5, NULL, '2020-04-24 14:53:39+07', false);
INSERT INTO public.journals VALUES (2210, 649, 'Issue', 5, '', '2020-04-24 14:54:52+07', false);
INSERT INTO public.journals VALUES (2211, 651, 'Issue', 5, '', '2020-04-24 14:54:52+07', false);
INSERT INTO public.journals VALUES (2212, 652, 'Issue', 5, '', '2020-04-24 14:54:52+07', false);
INSERT INTO public.journals VALUES (2213, 653, 'Issue', 5, '', '2020-04-24 14:54:53+07', false);
INSERT INTO public.journals VALUES (2214, 649, 'Issue', 5, NULL, '2020-04-24 15:04:50+07', false);
INSERT INTO public.journals VALUES (2215, 651, 'Issue', 5, NULL, '2020-04-24 15:04:51+07', false);
INSERT INTO public.journals VALUES (2216, 652, 'Issue', 5, NULL, '2020-04-24 15:04:51+07', false);
INSERT INTO public.journals VALUES (2217, 653, 'Issue', 5, NULL, '2020-04-24 15:04:51+07', false);
INSERT INTO public.journals VALUES (2218, 660, 'Issue', 5, NULL, '2020-04-24 15:05:03+07', false);
INSERT INTO public.journals VALUES (2219, 605, 'Issue', 12, NULL, '2020-04-24 15:37:50+07', false);
INSERT INTO public.journals VALUES (2220, 605, 'Issue', 12, NULL, '2020-04-24 15:37:59+07', false);
INSERT INTO public.journals VALUES (2221, 606, 'Issue', 12, NULL, '2020-04-24 15:38:30+07', false);
INSERT INTO public.journals VALUES (2222, 606, 'Issue', 12, NULL, '2020-04-24 15:38:35+07', false);
INSERT INTO public.journals VALUES (2223, 605, 'Issue', 12, NULL, '2020-04-24 15:40:03+07', false);
INSERT INTO public.journals VALUES (2225, 599, 'Issue', 13, NULL, '2020-04-24 16:20:15+07', false);
INSERT INTO public.journals VALUES (2226, 516, 'Issue', 13, NULL, '2020-04-24 16:21:14+07', false);
INSERT INTO public.journals VALUES (2227, 516, 'Issue', 13, NULL, '2020-04-24 16:21:20+07', false);
INSERT INTO public.journals VALUES (2228, 634, 'Issue', 15, NULL, '2020-04-24 16:26:26+07', false);
INSERT INTO public.journals VALUES (2229, 634, 'Issue', 15, NULL, '2020-04-24 16:26:32+07', false);
INSERT INTO public.journals VALUES (2232, 655, 'Issue', 6, NULL, '2020-04-25 08:08:20+07', false);
INSERT INTO public.journals VALUES (2233, 655, 'Issue', 6, NULL, '2020-04-25 08:08:28+07', false);
INSERT INTO public.journals VALUES (2234, 667, 'Issue', 6, '', '2020-04-25 08:10:23+07', false);
INSERT INTO public.journals VALUES (2235, 389, 'Issue', 5, '', '2020-04-25 08:11:05+07', false);
INSERT INTO public.journals VALUES (2236, 524, 'Issue', 5, '', '2020-04-25 08:11:05+07', false);
INSERT INTO public.journals VALUES (2237, 525, 'Issue', 5, '', '2020-04-25 08:11:05+07', false);
INSERT INTO public.journals VALUES (2238, 568, 'Issue', 5, '', '2020-04-25 08:11:05+07', false);
INSERT INTO public.journals VALUES (2239, 552, 'Issue', 5, '', '2020-04-25 08:11:05+07', false);
INSERT INTO public.journals VALUES (2240, 553, 'Issue', 5, '', '2020-04-25 08:11:05+07', false);
INSERT INTO public.journals VALUES (2241, 506, 'Issue', 5, '', '2020-04-25 08:11:05+07', false);
INSERT INTO public.journals VALUES (2242, 555, 'Issue', 5, '', '2020-04-25 08:11:05+07', false);
INSERT INTO public.journals VALUES (2243, 559, 'Issue', 5, '', '2020-04-25 08:11:06+07', false);
INSERT INTO public.journals VALUES (2244, 560, 'Issue', 5, '', '2020-04-25 08:11:06+07', false);
INSERT INTO public.journals VALUES (2245, 561, 'Issue', 5, '', '2020-04-25 08:11:06+07', false);
INSERT INTO public.journals VALUES (2246, 511, 'Issue', 5, '', '2020-04-25 08:11:06+07', false);
INSERT INTO public.journals VALUES (2247, 563, 'Issue', 5, '', '2020-04-25 08:11:06+07', false);
INSERT INTO public.journals VALUES (2248, 565, 'Issue', 5, '', '2020-04-25 08:11:06+07', false);
INSERT INTO public.journals VALUES (2249, 658, 'Issue', 5, '', '2020-04-25 08:11:06+07', false);
INSERT INTO public.journals VALUES (2250, 659, 'Issue', 5, '', '2020-04-25 08:11:06+07', false);
INSERT INTO public.journals VALUES (2251, 515, 'Issue', 5, '', '2020-04-25 08:11:06+07', false);
INSERT INTO public.journals VALUES (2252, 517, 'Issue', 5, '', '2020-04-25 08:11:06+07', false);
INSERT INTO public.journals VALUES (2253, 518, 'Issue', 5, '', '2020-04-25 08:11:07+07', false);
INSERT INTO public.journals VALUES (2254, 522, 'Issue', 5, '', '2020-04-25 08:11:07+07', false);
INSERT INTO public.journals VALUES (2255, 523, 'Issue', 5, '', '2020-04-25 08:11:07+07', false);
INSERT INTO public.journals VALUES (2256, 520, 'Issue', 5, '', '2020-04-25 08:11:07+07', false);
INSERT INTO public.journals VALUES (2257, 521, 'Issue', 5, '', '2020-04-25 08:11:07+07', false);
INSERT INTO public.journals VALUES (2258, 502, 'Issue', 5, '', '2020-04-25 08:11:07+07', false);
INSERT INTO public.journals VALUES (2259, 503, 'Issue', 5, '', '2020-04-25 08:11:07+07', false);
INSERT INTO public.journals VALUES (2260, 596, 'Issue', 5, '', '2020-04-25 08:11:07+07', false);
INSERT INTO public.journals VALUES (2261, 597, 'Issue', 5, '', '2020-04-25 08:11:07+07', false);
INSERT INTO public.journals VALUES (2262, 600, 'Issue', 5, '', '2020-04-25 08:11:07+07', false);
INSERT INTO public.journals VALUES (2263, 74, 'Issue', 5, NULL, '2020-04-25 08:16:30+07', false);
INSERT INTO public.journals VALUES (2264, 75, 'Issue', 5, NULL, '2020-04-25 08:16:30+07', false);
INSERT INTO public.journals VALUES (2265, 128, 'Issue', 5, NULL, '2020-04-25 08:16:30+07', false);
INSERT INTO public.journals VALUES (2266, 130, 'Issue', 5, NULL, '2020-04-25 08:16:30+07', false);
INSERT INTO public.journals VALUES (2267, 129, 'Issue', 5, NULL, '2020-04-25 08:16:30+07', false);
INSERT INTO public.journals VALUES (2268, 131, 'Issue', 5, NULL, '2020-04-25 08:16:31+07', false);
INSERT INTO public.journals VALUES (2269, 28, 'Issue', 5, NULL, '2020-04-25 08:16:31+07', false);
INSERT INTO public.journals VALUES (2270, 29, 'Issue', 5, NULL, '2020-04-25 08:16:31+07', false);
INSERT INTO public.journals VALUES (2271, 30, 'Issue', 5, NULL, '2020-04-25 08:16:31+07', false);
INSERT INTO public.journals VALUES (2272, 159, 'Issue', 5, NULL, '2020-04-25 08:16:31+07', false);
INSERT INTO public.journals VALUES (2273, 160, 'Issue', 5, NULL, '2020-04-25 08:16:31+07', false);
INSERT INTO public.journals VALUES (2274, 254, 'Issue', 5, NULL, '2020-04-25 08:16:31+07', false);
INSERT INTO public.journals VALUES (2275, 157, 'Issue', 5, NULL, '2020-04-25 08:16:31+07', false);
INSERT INTO public.journals VALUES (2276, 158, 'Issue', 5, NULL, '2020-04-25 08:16:31+07', false);
INSERT INTO public.journals VALUES (2277, 255, 'Issue', 5, NULL, '2020-04-25 08:16:32+07', false);
INSERT INTO public.journals VALUES (2278, 155, 'Issue', 5, NULL, '2020-04-25 08:16:32+07', false);
INSERT INTO public.journals VALUES (2279, 156, 'Issue', 5, NULL, '2020-04-25 08:16:32+07', false);
INSERT INTO public.journals VALUES (2280, 161, 'Issue', 5, NULL, '2020-04-25 08:16:32+07', false);
INSERT INTO public.journals VALUES (2281, 38, 'Issue', 5, NULL, '2020-04-25 08:16:32+07', false);
INSERT INTO public.journals VALUES (2282, 67, 'Issue', 5, NULL, '2020-04-25 08:16:32+07', false);
INSERT INTO public.journals VALUES (2283, 68, 'Issue', 5, NULL, '2020-04-25 08:16:32+07', false);
INSERT INTO public.journals VALUES (2284, 69, 'Issue', 5, NULL, '2020-04-25 08:16:32+07', false);
INSERT INTO public.journals VALUES (2285, 71, 'Issue', 5, NULL, '2020-04-25 08:16:32+07', false);
INSERT INTO public.journals VALUES (2286, 72, 'Issue', 5, NULL, '2020-04-25 08:16:32+07', false);
INSERT INTO public.journals VALUES (2287, 73, 'Issue', 5, NULL, '2020-04-25 08:16:33+07', false);
INSERT INTO public.journals VALUES (2288, 89, 'Issue', 5, NULL, '2020-04-25 08:16:33+07', false);
INSERT INTO public.journals VALUES (2289, 86, 'Issue', 5, NULL, '2020-04-25 08:16:33+07', false);
INSERT INTO public.journals VALUES (2290, 167, 'Issue', 5, NULL, '2020-04-25 08:16:33+07', false);
INSERT INTO public.journals VALUES (2291, 20, 'Issue', 5, NULL, '2020-04-25 08:16:44+07', false);
INSERT INTO public.journals VALUES (2292, 26, 'Issue', 5, NULL, '2020-04-25 08:16:44+07', false);
INSERT INTO public.journals VALUES (2293, 27, 'Issue', 5, NULL, '2020-04-25 08:16:44+07', false);
INSERT INTO public.journals VALUES (2294, 31, 'Issue', 5, NULL, '2020-04-25 08:16:44+07', false);
INSERT INTO public.journals VALUES (2295, 32, 'Issue', 5, NULL, '2020-04-25 08:16:44+07', false);
INSERT INTO public.journals VALUES (2296, 66, 'Issue', 5, NULL, '2020-04-25 08:16:44+07', false);
INSERT INTO public.journals VALUES (2297, 85, 'Issue', 5, NULL, '2020-04-25 08:16:44+07', false);
INSERT INTO public.journals VALUES (2298, 21, 'Issue', 5, NULL, '2020-04-25 08:17:17+07', false);
INSERT INTO public.journals VALUES (2299, 163, 'Issue', 5, NULL, '2020-04-25 08:17:17+07', false);
INSERT INTO public.journals VALUES (2300, 166, 'Issue', 5, NULL, '2020-04-25 08:17:17+07', false);
INSERT INTO public.journals VALUES (2301, 147, 'Issue', 5, NULL, '2020-04-25 08:17:17+07', false);
INSERT INTO public.journals VALUES (2302, 171, 'Issue', 5, NULL, '2020-04-25 08:17:17+07', false);
INSERT INTO public.journals VALUES (2303, 282, 'Issue', 5, NULL, '2020-04-25 08:17:18+07', false);
INSERT INTO public.journals VALUES (2304, 283, 'Issue', 5, NULL, '2020-04-25 08:17:18+07', false);
INSERT INTO public.journals VALUES (2305, 284, 'Issue', 5, NULL, '2020-04-25 08:17:18+07', false);
INSERT INTO public.journals VALUES (2306, 285, 'Issue', 5, NULL, '2020-04-25 08:17:18+07', false);
INSERT INTO public.journals VALUES (2307, 287, 'Issue', 5, NULL, '2020-04-25 08:17:18+07', false);
INSERT INTO public.journals VALUES (2308, 288, 'Issue', 5, NULL, '2020-04-25 08:17:18+07', false);
INSERT INTO public.journals VALUES (2309, 289, 'Issue', 5, NULL, '2020-04-25 08:17:18+07', false);
INSERT INTO public.journals VALUES (2310, 290, 'Issue', 5, NULL, '2020-04-25 08:17:18+07', false);
INSERT INTO public.journals VALUES (2311, 296, 'Issue', 5, NULL, '2020-04-25 08:17:18+07', false);
INSERT INTO public.journals VALUES (2312, 331, 'Issue', 5, NULL, '2020-04-25 08:17:18+07', false);
INSERT INTO public.journals VALUES (2313, 170, 'Issue', 5, NULL, '2020-04-25 08:18:18+07', false);
INSERT INTO public.journals VALUES (2314, 291, 'Issue', 5, '', '2020-04-25 08:18:54+07', false);
INSERT INTO public.journals VALUES (2315, 332, 'Issue', 5, '', '2020-04-25 08:18:55+07', false);
INSERT INTO public.journals VALUES (2316, 333, 'Issue', 5, '', '2020-04-25 08:18:55+07', false);
INSERT INTO public.journals VALUES (2318, 329, 'Issue', 5, NULL, '2020-04-25 08:19:15+07', false);
INSERT INTO public.journals VALUES (2319, 376, 'Issue', 5, NULL, '2020-04-25 08:19:15+07', false);
INSERT INTO public.journals VALUES (2320, 377, 'Issue', 5, NULL, '2020-04-25 08:19:15+07', false);
INSERT INTO public.journals VALUES (2321, 380, 'Issue', 5, NULL, '2020-04-25 08:19:15+07', false);
INSERT INTO public.journals VALUES (2322, 381, 'Issue', 5, NULL, '2020-04-25 08:19:15+07', false);
INSERT INTO public.journals VALUES (2323, 291, 'Issue', 5, NULL, '2020-04-25 08:25:15+07', false);
INSERT INTO public.journals VALUES (2324, 332, 'Issue', 5, NULL, '2020-04-25 08:25:15+07', false);
INSERT INTO public.journals VALUES (2325, 333, 'Issue', 5, NULL, '2020-04-25 08:25:15+07', false);
INSERT INTO public.journals VALUES (2326, 609, 'Issue', 10, '', '2020-04-25 08:28:57+07', false);
INSERT INTO public.journals VALUES (2327, 612, 'Issue', 10, NULL, '2020-04-25 08:29:24+07', false);
INSERT INTO public.journals VALUES (2328, 613, 'Issue', 10, NULL, '2020-04-25 08:29:51+07', false);
INSERT INTO public.journals VALUES (2329, 614, 'Issue', 10, NULL, '2020-04-25 08:30:08+07', false);
INSERT INTO public.journals VALUES (2330, 615, 'Issue', 10, NULL, '2020-04-25 08:30:08+07', false);
INSERT INTO public.journals VALUES (2331, 616, 'Issue', 10, NULL, '2020-04-25 08:30:08+07', false);
INSERT INTO public.journals VALUES (2332, 610, 'Issue', 10, NULL, '2020-04-25 08:30:16+07', false);
INSERT INTO public.journals VALUES (2333, 609, 'Issue', 10, '', '2020-04-25 08:30:27+07', false);
INSERT INTO public.journals VALUES (2334, 667, 'Issue', 5, '', '2020-04-25 08:32:27+07', false);
INSERT INTO public.journals VALUES (2335, 647, 'Issue', 5, '', '2020-04-25 08:32:56+07', false);
INSERT INTO public.journals VALUES (2336, 630, 'Issue', 5, '', '2020-04-25 08:33:09+07', false);
INSERT INTO public.journals VALUES (2337, 672, 'Issue', 5, '', '2020-04-25 08:34:30+07', false);
INSERT INTO public.journals VALUES (2338, 671, 'Issue', 10, '', '2020-04-25 08:36:01+07', false);
INSERT INTO public.journals VALUES (2339, 675, 'Issue', 10, '', '2020-04-25 08:36:01+07', false);
INSERT INTO public.journals VALUES (2340, 676, 'Issue', 5, '', '2020-04-25 08:59:12+07', false);
INSERT INTO public.journals VALUES (2341, 677, 'Issue', 5, '', '2020-04-25 08:59:12+07', false);
INSERT INTO public.journals VALUES (2342, 676, 'Issue', 5, '', '2020-04-25 08:59:36+07', false);
INSERT INTO public.journals VALUES (2343, 655, 'Issue', 9, NULL, '2020-04-25 09:08:10+07', false);
INSERT INTO public.journals VALUES (2344, 634, 'Issue', 9, NULL, '2020-04-25 09:29:24+07', false);
INSERT INTO public.journals VALUES (2345, 631, 'Issue', 9, NULL, '2020-04-25 09:29:44+07', false);
INSERT INTO public.journals VALUES (2347, 670, 'Issue', 5, NULL, '2020-04-26 09:49:36+07', false);
INSERT INTO public.journals VALUES (2348, 672, 'Issue', 5, NULL, '2020-04-26 09:49:36+07', false);
INSERT INTO public.journals VALUES (2349, 676, 'Issue', 5, NULL, '2020-04-26 09:49:36+07', false);
INSERT INTO public.journals VALUES (2350, 670, 'Issue', 5, NULL, '2020-04-26 09:49:43+07', false);
INSERT INTO public.journals VALUES (2351, 672, 'Issue', 5, NULL, '2020-04-26 09:49:43+07', false);
INSERT INTO public.journals VALUES (2352, 676, 'Issue', 5, NULL, '2020-04-26 09:49:43+07', false);
INSERT INTO public.journals VALUES (2353, 629, 'Issue', 8, NULL, '2020-04-26 10:07:57+07', false);
INSERT INTO public.journals VALUES (2354, 629, 'Issue', 8, NULL, '2020-04-26 10:08:03+07', false);
INSERT INTO public.journals VALUES (2355, 591, 'Issue', 5, '', '2020-04-26 10:29:34+07', false);
INSERT INTO public.journals VALUES (2356, 592, 'Issue', 5, '', '2020-04-26 10:29:34+07', false);
INSERT INTO public.journals VALUES (2357, 670, 'Issue', 9, NULL, '2020-04-26 11:23:35+07', false);
INSERT INTO public.journals VALUES (2358, 672, 'Issue', 9, NULL, '2020-04-26 11:23:50+07', false);
INSERT INTO public.journals VALUES (2359, 629, 'Issue', 9, NULL, '2020-04-26 14:24:40+07', false);
INSERT INTO public.journals VALUES (2360, 628, 'Issue', 9, NULL, '2020-04-26 14:24:47+07', false);
INSERT INTO public.journals VALUES (2361, 690, 'Issue', 6, '', '2020-04-26 15:21:38+07', false);
INSERT INTO public.journals VALUES (2362, 689, 'Issue', 6, NULL, '2020-04-26 15:21:49+07', false);
INSERT INTO public.journals VALUES (2363, 689, 'Issue', 6, NULL, '2020-04-26 15:21:56+07', false);
INSERT INTO public.journals VALUES (2364, 682, 'Issue', 8, NULL, '2020-04-26 16:03:36+07', false);
INSERT INTO public.journals VALUES (2365, 682, 'Issue', 8, NULL, '2020-04-26 16:03:41+07', false);
INSERT INTO public.journals VALUES (2366, 693, 'Issue', 15, '', '2020-04-26 16:05:03+07', false);
INSERT INTO public.journals VALUES (2367, 694, 'Issue', 15, '', '2020-04-26 16:06:41+07', false);
INSERT INTO public.journals VALUES (2368, 700, 'Issue', 15, '', '2020-04-26 16:14:55+07', false);
INSERT INTO public.journals VALUES (2369, 703, 'Issue', 6, NULL, '2020-04-27 08:15:23+07', false);
INSERT INTO public.journals VALUES (2370, 704, 'Issue', 6, NULL, '2020-04-27 08:15:23+07', false);
INSERT INTO public.journals VALUES (2371, 705, 'Issue', 6, NULL, '2020-04-27 08:15:23+07', false);
INSERT INTO public.journals VALUES (2372, 696, 'Issue', 5, '', '2020-04-27 08:44:10+07', false);
INSERT INTO public.journals VALUES (2373, 697, 'Issue', 5, '', '2020-04-27 08:44:11+07', false);
INSERT INTO public.journals VALUES (2374, 699, 'Issue', 5, '', '2020-04-27 08:44:11+07', false);
INSERT INTO public.journals VALUES (2375, 698, 'Issue', 5, '', '2020-04-27 08:44:11+07', false);
INSERT INTO public.journals VALUES (2376, 700, 'Issue', 5, '', '2020-04-27 08:44:11+07', false);
INSERT INTO public.journals VALUES (2377, 701, 'Issue', 5, '', '2020-04-27 08:44:11+07', false);
INSERT INTO public.journals VALUES (2378, 654, 'Issue', 5, '', '2020-04-27 08:45:19+07', false);
INSERT INTO public.journals VALUES (2379, 702, 'Issue', 5, '', '2020-04-27 08:45:35+07', false);
INSERT INTO public.journals VALUES (2380, 654, 'Issue', 5, '', '2020-04-27 08:46:09+07', false);
INSERT INTO public.journals VALUES (2382, 702, 'Issue', 5, '', '2020-04-27 08:46:10+07', false);
INSERT INTO public.journals VALUES (2383, 676, 'Issue', 5, NULL, '2020-04-27 08:46:46+07', false);
INSERT INTO public.journals VALUES (2384, 630, 'Issue', 5, NULL, '2020-04-27 08:47:41+07', false);
INSERT INTO public.journals VALUES (2385, 683, 'Issue', 15, NULL, '2020-04-27 17:01:43+07', false);
INSERT INTO public.journals VALUES (2386, 683, 'Issue', 15, NULL, '2020-04-27 17:01:54+07', false);
INSERT INTO public.journals VALUES (2387, 684, 'Issue', 15, NULL, '2020-04-27 17:02:15+07', false);
INSERT INTO public.journals VALUES (2388, 684, 'Issue', 15, NULL, '2020-04-27 17:02:28+07', false);
INSERT INTO public.journals VALUES (2389, 685, 'Issue', 15, NULL, '2020-04-28 13:24:41+07', false);
INSERT INTO public.journals VALUES (2390, 685, 'Issue', 15, NULL, '2020-04-28 13:24:55+07', false);
INSERT INTO public.journals VALUES (2391, 706, 'Issue', 15, NULL, '2020-04-28 13:25:45+07', false);
INSERT INTO public.journals VALUES (2392, 706, 'Issue', 15, NULL, '2020-04-28 13:25:54+07', false);
INSERT INTO public.journals VALUES (2393, 626, 'Issue', 15, NULL, '2020-04-29 09:42:49+07', false);
INSERT INTO public.journals VALUES (2394, 626, 'Issue', 15, NULL, '2020-04-29 09:43:14+07', false);
INSERT INTO public.journals VALUES (2395, 679, 'Issue', 15, NULL, '2020-04-29 13:41:17+07', false);
INSERT INTO public.journals VALUES (2396, 696, 'Issue', 15, NULL, '2020-05-04 15:16:43+07', false);
INSERT INTO public.journals VALUES (2397, 696, 'Issue', 15, NULL, '2020-05-04 15:17:04+07', false);
INSERT INTO public.journals VALUES (2398, 695, 'Issue', 15, NULL, '2020-05-04 15:17:16+07', false);
INSERT INTO public.journals VALUES (2399, 698, 'Issue', 15, NULL, '2020-05-04 15:17:16+07', false);
INSERT INTO public.journals VALUES (2400, 700, 'Issue', 15, NULL, '2020-05-04 15:17:17+07', false);
INSERT INTO public.journals VALUES (2401, 701, 'Issue', 15, NULL, '2020-05-04 15:17:17+07', false);
INSERT INTO public.journals VALUES (2402, 698, 'Issue', 15, NULL, '2020-05-04 15:17:49+07', false);
INSERT INTO public.journals VALUES (2403, 700, 'Issue', 15, NULL, '2020-05-04 15:17:50+07', false);
INSERT INTO public.journals VALUES (2404, 701, 'Issue', 15, NULL, '2020-05-04 15:17:50+07', false);
INSERT INTO public.journals VALUES (2405, 697, 'Issue', 15, NULL, '2020-05-04 15:18:15+07', false);
INSERT INTO public.journals VALUES (2406, 699, 'Issue', 15, NULL, '2020-05-04 15:18:15+07', false);
INSERT INTO public.journals VALUES (2407, 697, 'Issue', 15, NULL, '2020-05-04 15:18:27+07', false);
INSERT INTO public.journals VALUES (2408, 699, 'Issue', 15, NULL, '2020-05-04 15:18:28+07', false);
INSERT INTO public.journals VALUES (2409, 694, 'Issue', 15, NULL, '2020-05-04 15:18:41+07', false);
INSERT INTO public.journals VALUES (2410, 693, 'Issue', 15, NULL, '2020-05-04 15:18:46+07', false);
INSERT INTO public.journals VALUES (2411, 687, 'Issue', 12, NULL, '2020-05-05 13:39:38+07', false);
INSERT INTO public.journals VALUES (2412, 687, 'Issue', 12, NULL, '2020-05-05 13:39:46+07', false);
INSERT INTO public.journals VALUES (2413, 707, 'Issue', 12, '', '2020-05-05 14:25:29+07', false);
INSERT INTO public.journals VALUES (2414, 709, 'Issue', 12, '', '2020-05-05 14:26:56+07', false);
INSERT INTO public.journals VALUES (2416, 601, 'Issue', 12, '', '2020-05-06 10:09:12+07', false);
INSERT INTO public.journals VALUES (2418, 259, 'Issue', 12, '', '2020-05-06 10:13:01+07', false);
INSERT INTO public.journals VALUES (2419, 602, 'Issue', 12, '', '2020-05-06 10:13:39+07', false);
INSERT INTO public.journals VALUES (2420, 688, 'Issue', 12, '', '2020-05-06 10:14:09+07', false);
INSERT INTO public.journals VALUES (2422, 678, 'Issue', 12, '', '2020-05-06 10:15:02+07', false);
INSERT INTO public.journals VALUES (2423, 260, 'Issue', 12, '', '2020-05-06 10:15:26+07', false);
INSERT INTO public.journals VALUES (2425, 673, 'Issue', 10, NULL, '2020-05-06 10:17:59+07', false);
INSERT INTO public.journals VALUES (2426, 674, 'Issue', 10, NULL, '2020-05-06 10:18:11+07', false);
INSERT INTO public.journals VALUES (2427, 671, 'Issue', 10, NULL, '2020-05-06 10:18:24+07', false);
INSERT INTO public.journals VALUES (2428, 260, 'Issue', 12, '', '2020-05-06 10:18:29+07', false);
INSERT INTO public.journals VALUES (2429, 675, 'Issue', 10, NULL, '2020-05-06 10:18:33+07', false);
INSERT INTO public.journals VALUES (2430, 688, 'Issue', 12, '', '2020-05-06 10:18:51+07', false);
INSERT INTO public.journals VALUES (2431, 678, 'Issue', 12, '', '2020-05-06 10:19:08+07', false);
INSERT INTO public.journals VALUES (2432, 673, 'Issue', 10, NULL, '2020-05-06 10:19:12+07', false);
INSERT INTO public.journals VALUES (2433, 674, 'Issue', 10, NULL, '2020-05-06 10:19:18+07', false);
INSERT INTO public.journals VALUES (2435, 671, 'Issue', 10, NULL, '2020-05-06 10:19:27+07', false);
INSERT INTO public.journals VALUES (2436, 602, 'Issue', 12, '', '2020-05-06 10:19:32+07', false);
INSERT INTO public.journals VALUES (2437, 601, 'Issue', 12, '', '2020-05-06 10:19:47+07', false);
INSERT INTO public.journals VALUES (2438, 675, 'Issue', 10, NULL, '2020-05-06 10:19:53+07', false);
INSERT INTO public.journals VALUES (2440, 603, 'Issue', 12, NULL, '2020-05-06 10:20:36+07', false);
INSERT INTO public.journals VALUES (2441, 604, 'Issue', 12, NULL, '2020-05-06 10:20:36+07', false);
INSERT INTO public.journals VALUES (2442, 606, 'Issue', 12, NULL, '2020-05-06 10:20:36+07', false);
INSERT INTO public.journals VALUES (2443, 607, 'Issue', 12, NULL, '2020-05-06 10:20:36+07', false);
INSERT INTO public.journals VALUES (2444, 687, 'Issue', 12, NULL, '2020-05-06 10:20:36+07', false);
INSERT INTO public.journals VALUES (2445, 707, 'Issue', 12, NULL, '2020-05-06 10:20:57+07', false);
INSERT INTO public.journals VALUES (2446, 671, 'Issue', 12, NULL, '2020-05-06 10:21:20+07', false);
INSERT INTO public.journals VALUES (2447, 673, 'Issue', 12, NULL, '2020-05-06 10:21:21+07', false);
INSERT INTO public.journals VALUES (2448, 674, 'Issue', 12, NULL, '2020-05-06 10:21:21+07', false);
INSERT INTO public.journals VALUES (2449, 675, 'Issue', 12, NULL, '2020-05-06 10:21:21+07', false);
INSERT INTO public.journals VALUES (2450, 688, 'Issue', 12, NULL, '2020-05-06 10:21:51+07', false);
INSERT INTO public.journals VALUES (2451, 688, 'Issue', 12, NULL, '2020-05-06 10:22:09+07', false);
INSERT INTO public.journals VALUES (2452, 688, 'Issue', 12, NULL, '2020-05-06 10:22:20+07', false);
INSERT INTO public.journals VALUES (2453, 668, 'Issue', 12, '', '2020-05-06 10:23:23+07', false);
INSERT INTO public.journals VALUES (2454, 669, 'Issue', 12, '', '2020-05-06 10:23:39+07', false);
INSERT INTO public.journals VALUES (2455, 611, 'Issue', 12, '', '2020-05-06 10:23:54+07', false);
INSERT INTO public.journals VALUES (2458, 510, 'Issue', 13, NULL, '2020-05-07 08:05:13+07', false);
INSERT INTO public.journals VALUES (2459, 561, 'Issue', 13, NULL, '2020-05-07 08:05:27+07', false);
INSERT INTO public.journals VALUES (2460, 552, 'Issue', 13, NULL, '2020-05-07 08:05:39+07', false);
INSERT INTO public.journals VALUES (2461, 552, 'Issue', 13, NULL, '2020-05-07 08:06:19+07', false);
INSERT INTO public.journals VALUES (2462, 553, 'Issue', 13, NULL, '2020-05-07 08:06:26+07', false);
INSERT INTO public.journals VALUES (2463, 658, 'Issue', 13, NULL, '2020-05-07 08:07:00+07', false);
INSERT INTO public.journals VALUES (2464, 659, 'Issue', 13, NULL, '2020-05-07 08:07:11+07', false);
INSERT INTO public.journals VALUES (2465, 515, 'Issue', 13, NULL, '2020-05-07 08:07:20+07', false);
INSERT INTO public.journals VALUES (2466, 515, 'Issue', 13, NULL, '2020-05-07 08:07:27+07', false);
INSERT INTO public.journals VALUES (2467, 524, 'Issue', 13, NULL, '2020-05-07 08:07:36+07', false);
INSERT INTO public.journals VALUES (2468, 553, 'Issue', 13, NULL, '2020-05-07 08:07:58+07', false);
INSERT INTO public.journals VALUES (2469, 524, 'Issue', 13, NULL, '2020-05-07 08:08:05+07', false);
INSERT INTO public.journals VALUES (2470, 506, 'Issue', 13, NULL, '2020-05-07 08:08:12+07', false);
INSERT INTO public.journals VALUES (2471, 506, 'Issue', 13, NULL, '2020-05-07 08:08:18+07', false);
INSERT INTO public.journals VALUES (2472, 559, 'Issue', 13, NULL, '2020-05-07 08:08:39+07', false);
INSERT INTO public.journals VALUES (2473, 559, 'Issue', 13, NULL, '2020-05-07 08:08:45+07', false);
INSERT INTO public.journals VALUES (2474, 521, 'Issue', 13, NULL, '2020-05-07 08:09:11+07', false);
INSERT INTO public.journals VALUES (2475, 596, 'Issue', 13, NULL, '2020-05-07 08:09:26+07', false);
INSERT INTO public.journals VALUES (2476, 596, 'Issue', 13, NULL, '2020-05-07 08:10:00+07', false);
INSERT INTO public.journals VALUES (2477, 658, 'Issue', 13, NULL, '2020-05-07 08:10:36+07', false);
INSERT INTO public.journals VALUES (2478, 560, 'Issue', 13, NULL, '2020-05-07 08:10:49+07', false);
INSERT INTO public.journals VALUES (2479, 561, 'Issue', 13, NULL, '2020-05-07 08:10:57+07', false);
INSERT INTO public.journals VALUES (2480, 560, 'Issue', 13, NULL, '2020-05-07 08:11:05+07', false);
INSERT INTO public.journals VALUES (2481, 714, 'Issue', 13, '', '2020-05-07 08:13:59+07', false);
INSERT INTO public.journals VALUES (2482, 713, 'Issue', 13, '', '2020-05-07 08:14:37+07', false);
INSERT INTO public.journals VALUES (2483, 715, 'Issue', 13, '', '2020-05-07 08:14:57+07', false);
INSERT INTO public.journals VALUES (2484, 715, 'Issue', 13, NULL, '2020-05-07 08:15:17+07', false);
INSERT INTO public.journals VALUES (2485, 714, 'Issue', 13, NULL, '2020-05-07 08:15:24+07', false);
INSERT INTO public.journals VALUES (2486, 517, 'Issue', 13, NULL, '2020-05-07 08:15:35+07', false);
INSERT INTO public.journals VALUES (2487, 522, 'Issue', 13, NULL, '2020-05-07 08:15:52+07', false);
INSERT INTO public.journals VALUES (2488, 659, 'Issue', 13, NULL, '2020-05-07 08:15:59+07', false);
INSERT INTO public.journals VALUES (2489, 511, 'Issue', 13, NULL, '2020-05-07 08:16:08+07', false);
INSERT INTO public.journals VALUES (2490, 508, 'Issue', 13, NULL, '2020-05-07 08:16:27+07', false);
INSERT INTO public.journals VALUES (2491, 713, 'Issue', 13, NULL, '2020-05-07 08:16:42+07', false);
INSERT INTO public.journals VALUES (2492, 556, 'Issue', 13, NULL, '2020-05-07 08:16:51+07', false);
INSERT INTO public.journals VALUES (2493, 564, 'Issue', 13, NULL, '2020-05-07 08:17:01+07', false);
INSERT INTO public.journals VALUES (2494, 505, 'Issue', 13, NULL, '2020-05-07 08:17:09+07', false);
INSERT INTO public.journals VALUES (2495, 520, 'Issue', 13, NULL, '2020-05-07 08:17:33+07', false);
INSERT INTO public.journals VALUES (2496, 715, 'Issue', 13, NULL, '2020-05-07 08:17:40+07', false);
INSERT INTO public.journals VALUES (2497, 517, 'Issue', 13, NULL, '2020-05-07 08:17:48+07', false);
INSERT INTO public.journals VALUES (2498, 599, 'Issue', 13, NULL, '2020-05-07 08:17:55+07', false);
INSERT INTO public.journals VALUES (2499, 521, 'Issue', 13, NULL, '2020-05-07 08:18:07+07', false);
INSERT INTO public.journals VALUES (2500, 520, 'Issue', 13, NULL, '2020-05-07 08:18:17+07', false);
INSERT INTO public.journals VALUES (2501, 514, 'Issue', 13, NULL, '2020-05-07 08:18:24+07', false);
INSERT INTO public.journals VALUES (2502, 522, 'Issue', 13, NULL, '2020-05-07 08:18:36+07', false);
INSERT INTO public.journals VALUES (2503, 714, 'Issue', 13, NULL, '2020-05-07 08:18:44+07', false);
INSERT INTO public.journals VALUES (2504, 713, 'Issue', 13, NULL, '2020-05-07 08:18:52+07', false);
INSERT INTO public.journals VALUES (2505, 511, 'Issue', 13, NULL, '2020-05-07 08:19:23+07', false);
INSERT INTO public.journals VALUES (2506, 626, 'Issue', 5, NULL, '2020-05-08 08:36:37+07', false);
INSERT INTO public.journals VALUES (2507, 654, 'Issue', 5, NULL, '2020-05-08 08:36:38+07', false);
INSERT INTO public.journals VALUES (2508, 702, 'Issue', 5, NULL, '2020-05-08 08:36:39+07', false);
INSERT INTO public.journals VALUES (2509, 591, 'Issue', 5, NULL, '2020-05-08 08:36:39+07', false);
INSERT INTO public.journals VALUES (2510, 592, 'Issue', 5, NULL, '2020-05-08 08:36:40+07', false);
INSERT INTO public.journals VALUES (2511, 689, 'Issue', 5, NULL, '2020-05-08 08:36:40+07', false);
INSERT INTO public.journals VALUES (2512, 690, 'Issue', 5, NULL, '2020-05-08 08:36:40+07', false);
INSERT INTO public.journals VALUES (2513, 691, 'Issue', 5, NULL, '2020-05-08 08:36:41+07', false);
INSERT INTO public.journals VALUES (2514, 692, 'Issue', 5, NULL, '2020-05-08 08:36:41+07', false);
INSERT INTO public.journals VALUES (2515, 703, 'Issue', 5, NULL, '2020-05-08 08:36:41+07', false);
INSERT INTO public.journals VALUES (2516, 704, 'Issue', 5, NULL, '2020-05-08 08:36:41+07', false);
INSERT INTO public.journals VALUES (2517, 705, 'Issue', 5, NULL, '2020-05-08 08:36:41+07', false);
INSERT INTO public.journals VALUES (2518, 706, 'Issue', 5, NULL, '2020-05-08 08:36:41+07', false);
INSERT INTO public.journals VALUES (2519, 680, 'Issue', 5, NULL, '2020-05-08 08:36:41+07', false);
INSERT INTO public.journals VALUES (2520, 681, 'Issue', 5, NULL, '2020-05-08 08:36:41+07', false);
INSERT INTO public.journals VALUES (2521, 682, 'Issue', 5, NULL, '2020-05-08 08:36:41+07', false);
INSERT INTO public.journals VALUES (2522, 683, 'Issue', 5, NULL, '2020-05-08 08:36:41+07', false);
INSERT INTO public.journals VALUES (2523, 684, 'Issue', 5, NULL, '2020-05-08 08:36:41+07', false);
INSERT INTO public.journals VALUES (2524, 685, 'Issue', 5, NULL, '2020-05-08 08:36:41+07', false);
INSERT INTO public.journals VALUES (2525, 686, 'Issue', 5, NULL, '2020-05-08 08:36:41+07', false);
INSERT INTO public.journals VALUES (2526, 696, 'Issue', 5, NULL, '2020-05-08 08:36:42+07', false);
INSERT INTO public.journals VALUES (2527, 697, 'Issue', 5, NULL, '2020-05-08 08:36:42+07', false);
INSERT INTO public.journals VALUES (2528, 699, 'Issue', 5, NULL, '2020-05-08 08:36:42+07', false);
INSERT INTO public.journals VALUES (2529, 698, 'Issue', 5, NULL, '2020-05-08 08:36:42+07', false);
INSERT INTO public.journals VALUES (2530, 700, 'Issue', 5, NULL, '2020-05-08 08:36:42+07', false);
INSERT INTO public.journals VALUES (2531, 701, 'Issue', 5, NULL, '2020-05-08 08:36:42+07', false);
INSERT INTO public.journals VALUES (2532, 679, 'Issue', 5, NULL, '2020-05-08 09:41:39+07', false);
INSERT INTO public.journals VALUES (2533, 694, 'Issue', 5, NULL, '2020-05-08 09:41:40+07', false);
INSERT INTO public.journals VALUES (2534, 695, 'Issue', 5, NULL, '2020-05-08 09:41:40+07', false);
INSERT INTO public.journals VALUES (2535, 625, 'Issue', 5, NULL, '2020-05-08 09:41:59+07', false);
INSERT INTO public.journals VALUES (2536, 677, 'Issue', 5, NULL, '2020-05-08 09:42:00+07', false);
INSERT INTO public.journals VALUES (2537, 693, 'Issue', 5, NULL, '2020-05-08 09:42:00+07', false);
INSERT INTO public.journals VALUES (2538, 667, 'Issue', 5, NULL, '2020-05-08 09:42:05+07', false);
INSERT INTO public.journals VALUES (2539, 593, 'Issue', 5, NULL, '2020-05-08 09:42:40+07', false);
INSERT INTO public.journals VALUES (2540, 719, 'Issue', 5, '', '2020-05-08 14:13:40+07', false);
INSERT INTO public.journals VALUES (2541, 720, 'Issue', 5, '', '2020-05-08 14:13:40+07', false);
INSERT INTO public.journals VALUES (2542, 721, 'Issue', 5, '', '2020-05-08 14:13:41+07', false);
INSERT INTO public.journals VALUES (2543, 722, 'Issue', 5, '', '2020-05-08 14:13:41+07', false);
INSERT INTO public.journals VALUES (2544, 723, 'Issue', 5, '', '2020-05-08 14:13:41+07', false);
INSERT INTO public.journals VALUES (2545, 389, 'Issue', 5, NULL, '2020-05-08 14:38:26+07', false);
INSERT INTO public.journals VALUES (2546, 709, 'Issue', 5, '', '2020-05-08 15:28:03+07', false);
INSERT INTO public.journals VALUES (2547, 724, 'Issue', 5, '', '2020-05-08 16:39:40+07', false);
INSERT INTO public.journals VALUES (2550, 727, 'Issue', 5, '', '2020-05-08 16:39:40+07', false);
INSERT INTO public.journals VALUES (2551, 712, 'Issue', 12, NULL, '2020-05-09 15:09:44+07', false);
INSERT INTO public.journals VALUES (2552, 712, 'Issue', 12, NULL, '2020-05-09 15:10:01+07', false);
INSERT INTO public.journals VALUES (2553, 712, 'Issue', 12, '', '2020-05-09 15:10:17+07', false);
INSERT INTO public.journals VALUES (2554, 678, 'Issue', 12, '', '2020-05-09 15:54:28+07', false);
INSERT INTO public.journals VALUES (2556, 602, 'Issue', 12, NULL, '2020-05-09 16:00:46+07', false);
INSERT INTO public.journals VALUES (2557, 259, 'Issue', 12, NULL, '2020-05-09 16:05:02+07', false);
INSERT INTO public.journals VALUES (2558, 259, 'Issue', 12, NULL, '2020-05-09 16:05:07+07', false);
INSERT INTO public.journals VALUES (2559, 260, 'Issue', 12, '', '2020-05-09 16:05:32+07', false);
INSERT INTO public.journals VALUES (2561, 710, 'Issue', 12, '', '2020-05-09 16:05:32+07', false);
INSERT INTO public.journals VALUES (2562, 709, 'Issue', 12, '', '2020-05-09 16:05:33+07', false);
INSERT INTO public.journals VALUES (2563, 668, 'Issue', 12, '', '2020-05-09 16:05:58+07', false);
INSERT INTO public.journals VALUES (2564, 669, 'Issue', 12, '', '2020-05-09 16:05:58+07', false);
INSERT INTO public.journals VALUES (2565, 611, 'Issue', 12, '', '2020-05-09 16:05:58+07', false);
INSERT INTO public.journals VALUES (2568, 260, 'Issue', 12, '', '2020-05-09 16:06:42+07', false);
INSERT INTO public.journals VALUES (2569, 709, 'Issue', 12, '', '2020-05-09 16:07:06+07', false);
INSERT INTO public.journals VALUES (2570, 710, 'Issue', 12, '', '2020-05-09 16:07:37+07', false);
INSERT INTO public.journals VALUES (2571, 719, 'Issue', 5, NULL, '2020-05-11 08:35:53+07', false);
INSERT INTO public.journals VALUES (2572, 720, 'Issue', 5, NULL, '2020-05-11 08:35:53+07', false);
INSERT INTO public.journals VALUES (2573, 719, 'Issue', 5, NULL, '2020-05-11 08:36:01+07', false);
INSERT INTO public.journals VALUES (2574, 720, 'Issue', 5, NULL, '2020-05-11 08:36:01+07', false);
INSERT INTO public.journals VALUES (2575, 719, 'Issue', 5, NULL, '2020-05-11 08:36:17+07', false);
INSERT INTO public.journals VALUES (2576, 720, 'Issue', 5, NULL, '2020-05-11 08:36:17+07', false);
INSERT INTO public.journals VALUES (2577, 721, 'Issue', 5, NULL, '2020-05-11 08:36:18+07', false);
INSERT INTO public.journals VALUES (2578, 722, 'Issue', 5, NULL, '2020-05-11 08:36:18+07', false);
INSERT INTO public.journals VALUES (2579, 723, 'Issue', 5, NULL, '2020-05-11 08:36:18+07', false);
INSERT INTO public.journals VALUES (2580, 743, 'Issue', 12, '', '2020-05-11 08:39:34+07', false);
INSERT INTO public.journals VALUES (2581, 745, 'Issue', 12, '', '2020-05-11 08:40:19+07', false);
INSERT INTO public.journals VALUES (2582, 746, 'Issue', 12, '', '2020-05-11 08:41:24+07', false);
INSERT INTO public.journals VALUES (2583, 747, 'Issue', 12, '', '2020-05-11 08:41:49+07', false);
INSERT INTO public.journals VALUES (2584, 750, 'Issue', 12, '', '2020-05-11 08:44:30+07', false);
INSERT INTO public.journals VALUES (2585, 741, 'Issue', 5, '', '2020-05-11 14:15:17+07', false);
INSERT INTO public.journals VALUES (2586, 743, 'Issue', 5, '', '2020-05-11 14:15:37+07', false);
INSERT INTO public.journals VALUES (2587, 744, 'Issue', 5, '', '2020-05-11 14:15:38+07', false);
INSERT INTO public.journals VALUES (2588, 745, 'Issue', 5, '', '2020-05-11 14:16:10+07', false);
INSERT INTO public.journals VALUES (2589, 746, 'Issue', 5, '', '2020-05-11 14:16:37+07', false);
INSERT INTO public.journals VALUES (2590, 747, 'Issue', 5, '', '2020-05-11 14:16:37+07', false);
INSERT INTO public.journals VALUES (2591, 748, 'Issue', 5, '', '2020-05-11 14:16:56+07', false);
INSERT INTO public.journals VALUES (2592, 749, 'Issue', 5, '', '2020-05-11 14:16:57+07', false);
INSERT INTO public.journals VALUES (2593, 750, 'Issue', 5, '', '2020-05-11 14:17:11+07', false);
INSERT INTO public.journals VALUES (2594, 751, 'Issue', 5, '', '2020-05-11 14:17:11+07', false);
INSERT INTO public.journals VALUES (2595, 711, 'Issue', 12, '', '2020-05-11 14:48:53+07', false);
INSERT INTO public.journals VALUES (2597, 710, 'Issue', 12, '', '2020-05-11 14:49:15+07', false);
INSERT INTO public.journals VALUES (2598, 669, 'Issue', 10, NULL, '2020-05-11 14:52:09+07', false);
INSERT INTO public.journals VALUES (2599, 669, 'Issue', 10, NULL, '2020-05-11 14:52:20+07', false);
INSERT INTO public.journals VALUES (2600, 709, 'Issue', 12, NULL, '2020-05-11 14:52:50+07', false);
INSERT INTO public.journals VALUES (2601, 709, 'Issue', 12, NULL, '2020-05-11 14:53:08+07', false);
INSERT INTO public.journals VALUES (2602, 755, 'Issue', 5, '', '2020-05-12 08:31:22+07', false);
INSERT INTO public.journals VALUES (2603, 754, 'Issue', 15, '', '2020-05-12 08:48:40+07', false);
INSERT INTO public.journals VALUES (2604, 755, 'Issue', 15, '', '2020-05-12 08:48:40+07', false);
INSERT INTO public.journals VALUES (2605, 757, 'Issue', 15, '', '2020-05-12 08:48:40+07', false);
INSERT INTO public.journals VALUES (2606, 758, 'Issue', 15, '', '2020-05-12 08:48:40+07', false);
INSERT INTO public.journals VALUES (2607, 668, 'Issue', 10, NULL, '2020-05-12 08:56:30+07', false);
INSERT INTO public.journals VALUES (2608, 668, 'Issue', 10, NULL, '2020-05-12 08:56:38+07', false);
INSERT INTO public.journals VALUES (2609, 759, 'Issue', 10, NULL, '2020-05-12 17:13:40+07', false);
INSERT INTO public.journals VALUES (2610, 759, 'Issue', 10, NULL, '2020-05-12 17:13:59+07', false);
INSERT INTO public.journals VALUES (2611, 15, 'Issue', 5, NULL, '2020-05-13 06:44:34+07', false);
INSERT INTO public.journals VALUES (2612, 15, 'Issue', 5, NULL, '2020-05-13 06:44:39+07', false);
INSERT INTO public.journals VALUES (2613, 15, 'Issue', 5, NULL, '2020-05-13 06:44:44+07', false);
INSERT INTO public.journals VALUES (2614, 44, 'Issue', 5, NULL, '2020-05-13 06:44:59+07', false);
INSERT INTO public.journals VALUES (2615, 162, 'Issue', 5, NULL, '2020-05-13 06:44:59+07', false);
INSERT INTO public.journals VALUES (2616, 164, 'Issue', 5, NULL, '2020-05-13 06:44:59+07', false);
INSERT INTO public.journals VALUES (2617, 205, 'Issue', 5, NULL, '2020-05-13 06:44:59+07', false);
INSERT INTO public.journals VALUES (2618, 641, 'Issue', 5, NULL, '2020-05-13 06:45:00+07', false);
INSERT INTO public.journals VALUES (2619, 641, 'Issue', 5, NULL, '2020-05-13 06:45:34+07', false);
INSERT INTO public.journals VALUES (2620, 162, 'Issue', 5, NULL, '2020-05-13 06:45:42+07', false);
INSERT INTO public.journals VALUES (2621, 164, 'Issue', 5, NULL, '2020-05-13 06:45:42+07', false);
INSERT INTO public.journals VALUES (2622, 162, 'Issue', 5, NULL, '2020-05-13 06:46:04+07', false);
INSERT INTO public.journals VALUES (2623, 164, 'Issue', 5, NULL, '2020-05-13 06:46:04+07', false);
INSERT INTO public.journals VALUES (2624, 205, 'Issue', 5, NULL, '2020-05-13 06:46:05+07', false);
INSERT INTO public.journals VALUES (2625, 641, 'Issue', 5, NULL, '2020-05-13 06:46:05+07', false);
INSERT INTO public.journals VALUES (2626, 165, 'Issue', 5, NULL, '2020-05-13 06:46:22+07', false);
INSERT INTO public.journals VALUES (2627, 44, 'Issue', 5, NULL, '2020-05-13 06:46:27+07', false);
INSERT INTO public.journals VALUES (2628, 148, 'Issue', 5, NULL, '2020-05-13 06:46:45+07', false);
INSERT INTO public.journals VALUES (2629, 249, 'Issue', 5, NULL, '2020-05-13 06:46:45+07', false);
INSERT INTO public.journals VALUES (2630, 308, 'Issue', 5, NULL, '2020-05-13 06:46:45+07', false);
INSERT INTO public.journals VALUES (2631, 148, 'Issue', 5, NULL, '2020-05-13 06:46:51+07', false);
INSERT INTO public.journals VALUES (2632, 249, 'Issue', 5, NULL, '2020-05-13 06:46:51+07', false);
INSERT INTO public.journals VALUES (2633, 308, 'Issue', 5, NULL, '2020-05-13 06:46:51+07', false);
INSERT INTO public.journals VALUES (2634, 90, 'Issue', 5, NULL, '2020-05-13 06:46:56+07', false);
INSERT INTO public.journals VALUES (2635, 90, 'Issue', 5, NULL, '2020-05-13 06:47:05+07', false);
INSERT INTO public.journals VALUES (2636, 760, 'Issue', 12, '', '2020-05-14 08:51:26+07', false);
INSERT INTO public.journals VALUES (2637, 760, 'Issue', 12, '', '2020-05-14 08:51:47+07', false);
INSERT INTO public.journals VALUES (2638, 711, 'Issue', 12, NULL, '2020-05-14 08:55:22+07', false);
INSERT INTO public.journals VALUES (2639, 711, 'Issue', 12, NULL, '2020-05-14 08:55:31+07', false);
INSERT INTO public.journals VALUES (2641, 710, 'Issue', 12, '', '2020-05-14 08:56:52+07', false);
INSERT INTO public.journals VALUES (2642, 710, 'Issue', 12, '', '2020-05-14 08:57:07+07', false);
INSERT INTO public.journals VALUES (2643, 741, 'Issue', 6, '', '2020-05-14 14:05:41+07', false);
INSERT INTO public.journals VALUES (2644, 742, 'Issue', 6, '', '2020-05-14 14:06:14+07', false);
INSERT INTO public.journals VALUES (2645, 743, 'Issue', 6, '', '2020-05-14 14:06:14+07', false);
INSERT INTO public.journals VALUES (2646, 744, 'Issue', 6, '', '2020-05-14 14:06:14+07', false);
INSERT INTO public.journals VALUES (2647, 745, 'Issue', 6, '', '2020-05-14 14:06:30+07', false);
INSERT INTO public.journals VALUES (2648, 763, 'Issue', 5, '', '2020-05-14 14:52:09+07', false);
INSERT INTO public.journals VALUES (2650, 752, 'Issue', 12, '', '2020-05-15 08:37:42+07', false);
INSERT INTO public.journals VALUES (2651, 710, 'Issue', 12, NULL, '2020-05-15 08:38:02+07', false);
INSERT INTO public.journals VALUES (2652, 710, 'Issue', 12, NULL, '2020-05-15 08:38:11+07', false);
INSERT INTO public.journals VALUES (2653, 741, 'Issue', 6, NULL, '2020-05-15 11:27:19+07', false);
INSERT INTO public.journals VALUES (2654, 743, 'Issue', 6, NULL, '2020-05-15 11:27:27+07', false);
INSERT INTO public.journals VALUES (2655, 742, 'Issue', 6, NULL, '2020-05-15 11:27:33+07', false);
INSERT INTO public.journals VALUES (2656, 744, 'Issue', 6, NULL, '2020-05-15 11:27:42+07', false);
INSERT INTO public.journals VALUES (2657, 741, 'Issue', 6, '', '2020-05-15 11:27:59+07', false);
INSERT INTO public.journals VALUES (2658, 742, 'Issue', 6, '', '2020-05-15 11:27:59+07', false);
INSERT INTO public.journals VALUES (2659, 743, 'Issue', 6, '', '2020-05-15 11:28:00+07', false);
INSERT INTO public.journals VALUES (2660, 744, 'Issue', 6, '', '2020-05-15 11:28:00+07', false);
INSERT INTO public.journals VALUES (2661, 745, 'Issue', 6, '', '2020-05-15 11:28:26+07', false);
INSERT INTO public.journals VALUES (2662, 746, 'Issue', 6, '', '2020-05-15 11:28:26+07', false);
INSERT INTO public.journals VALUES (2663, 747, 'Issue', 6, '', '2020-05-15 11:28:26+07', false);
INSERT INTO public.journals VALUES (2664, 748, 'Issue', 6, '', '2020-05-15 11:28:27+07', false);
INSERT INTO public.journals VALUES (2665, 749, 'Issue', 6, '', '2020-05-15 11:28:27+07', false);
INSERT INTO public.journals VALUES (2666, 741, 'Issue', 6, NULL, '2020-05-15 11:28:39+07', false);
INSERT INTO public.journals VALUES (2667, 741, 'Issue', 6, NULL, '2020-05-15 11:28:47+07', false);
INSERT INTO public.journals VALUES (2668, 678, 'Issue', 6, '<ul>
	<li>DSDangKy</li>
	<li>TheoDoiHocTap</li>
	<li>DSHocVien (isBlank= true | false)</li>
	<li>DSDuThi</li>
	<li>BangDiemThi(b&aacute;o c&aacute;o 5+6)</li>
	<li>TongKetLop</li>
	<li>KetQuaHocTap</li>
	<li>CongNhanTotNghiep</li>
	<li>KyNhanTotNghiep</li>
	<li>TheoDoiGioGiang</li>
	<li>TongHopGioGiang</li>
	<li>...</li>
	<li>DSThiTotNghiep</li>
</ul>
', '2020-05-15 11:38:51+07', false);
INSERT INTO public.journals VALUES (2669, 724, 'Issue', 5, NULL, '2020-05-15 19:50:23+07', false);
INSERT INTO public.journals VALUES (2670, 724, 'Issue', 5, NULL, '2020-05-15 19:50:29+07', false);
INSERT INTO public.journals VALUES (2671, 724, 'Issue', 5, NULL, '2020-05-15 19:50:35+07', false);
INSERT INTO public.journals VALUES (2672, 728, 'Issue', 5, '', '2020-05-15 19:51:58+07', false);
INSERT INTO public.journals VALUES (2673, 729, 'Issue', 5, '', '2020-05-15 19:51:58+07', false);
INSERT INTO public.journals VALUES (2674, 730, 'Issue', 5, '', '2020-05-15 19:51:58+07', false);
INSERT INTO public.journals VALUES (2675, 731, 'Issue', 5, '', '2020-05-15 19:51:59+07', false);
INSERT INTO public.journals VALUES (2676, 732, 'Issue', 5, '', '2020-05-15 19:51:59+07', false);
INSERT INTO public.journals VALUES (2677, 733, 'Issue', 5, '', '2020-05-15 19:51:59+07', false);
INSERT INTO public.journals VALUES (2678, 734, 'Issue', 5, '', '2020-05-15 19:51:59+07', false);
INSERT INTO public.journals VALUES (2679, 735, 'Issue', 5, '', '2020-05-15 19:51:59+07', false);
INSERT INTO public.journals VALUES (2680, 736, 'Issue', 5, '', '2020-05-15 19:51:59+07', false);
INSERT INTO public.journals VALUES (2681, 737, 'Issue', 5, '', '2020-05-15 19:51:59+07', false);
INSERT INTO public.journals VALUES (2682, 739, 'Issue', 5, '', '2020-05-15 19:52:26+07', false);
INSERT INTO public.journals VALUES (2683, 740, 'Issue', 5, '', '2020-05-15 19:52:26+07', false);
INSERT INTO public.journals VALUES (2684, 743, 'Issue', 5, '', '2020-05-16 08:01:59+07', false);
INSERT INTO public.journals VALUES (2685, 744, 'Issue', 5, '', '2020-05-16 08:01:59+07', false);
INSERT INTO public.journals VALUES (2686, 745, 'Issue', 5, '', '2020-05-16 08:02:23+07', false);
INSERT INTO public.journals VALUES (2687, 746, 'Issue', 5, '', '2020-05-16 08:02:24+07', false);
INSERT INTO public.journals VALUES (2688, 747, 'Issue', 5, '', '2020-05-16 08:02:24+07', false);
INSERT INTO public.journals VALUES (2689, 748, 'Issue', 5, '', '2020-05-16 08:02:24+07', false);
INSERT INTO public.journals VALUES (2690, 749, 'Issue', 5, '', '2020-05-16 08:02:24+07', false);
INSERT INTO public.journals VALUES (2691, 750, 'Issue', 5, '', '2020-05-16 08:02:24+07', false);
INSERT INTO public.journals VALUES (2692, 751, 'Issue', 5, '', '2020-05-16 08:02:24+07', false);
INSERT INTO public.journals VALUES (2693, 742, 'Issue', 5, '', '2020-05-16 08:03:08+07', false);
INSERT INTO public.journals VALUES (2694, 761, 'Issue', 5, '', '2020-05-16 08:04:32+07', false);
INSERT INTO public.journals VALUES (2695, 762, 'Issue', 5, '', '2020-05-16 08:04:32+07', false);
INSERT INTO public.journals VALUES (2696, 763, 'Issue', 5, '', '2020-05-16 08:04:32+07', false);
INSERT INTO public.journals VALUES (2697, 611, 'Issue', 5, '', '2020-05-16 08:05:37+07', false);
INSERT INTO public.journals VALUES (2698, 752, 'Issue', 5, '', '2020-05-16 08:05:37+07', false);
INSERT INTO public.journals VALUES (2699, 760, 'Issue', 5, '', '2020-05-16 08:05:37+07', false);
INSERT INTO public.journals VALUES (2700, 611, 'Issue', 10, NULL, '2020-05-16 08:08:19+07', false);
INSERT INTO public.journals VALUES (2701, 611, 'Issue', 10, NULL, '2020-05-16 08:08:26+07', false);
INSERT INTO public.journals VALUES (2702, 752, 'Issue', 10, NULL, '2020-05-16 08:08:34+07', false);
INSERT INTO public.journals VALUES (2703, 752, 'Issue', 10, NULL, '2020-05-16 08:08:42+07', false);
INSERT INTO public.journals VALUES (2704, 743, 'Issue', 6, NULL, '2020-05-16 08:11:48+07', false);
INSERT INTO public.journals VALUES (2705, 743, 'Issue', 6, NULL, '2020-05-16 08:11:53+07', false);
INSERT INTO public.journals VALUES (2706, 743, 'Issue', 6, '', '2020-05-16 08:12:05+07', false);
INSERT INTO public.journals VALUES (2707, 743, 'Issue', 6, '', '2020-05-16 08:12:17+07', false);
INSERT INTO public.journals VALUES (2708, 600, 'Issue', 13, '<p>l&agrave;m nhanh nhanh l&ecirc;n coi chừng bị qu&aacute;nh sấp mặt&nbsp;nhanh nhanh l&ecirc;n</p>
', '2020-05-16 10:08:27+07', false);
INSERT INTO public.journals VALUES (2709, 727, 'Issue', 13, NULL, '2020-05-16 10:09:13+07', false);
INSERT INTO public.journals VALUES (2710, 597, 'Issue', 13, NULL, '2020-05-16 10:09:33+07', false);
INSERT INTO public.journals VALUES (2711, 728, 'Issue', 13, NULL, '2020-05-16 10:09:49+07', false);
INSERT INTO public.journals VALUES (2712, 563, 'Issue', 13, NULL, '2020-05-16 10:10:16+07', false);
INSERT INTO public.journals VALUES (2713, 732, 'Issue', 13, NULL, '2020-05-16 10:11:10+07', false);
INSERT INTO public.journals VALUES (2714, 729, 'Issue', 13, NULL, '2020-05-16 10:11:24+07', false);
INSERT INTO public.journals VALUES (2715, 730, 'Issue', 13, NULL, '2020-05-16 10:11:43+07', false);
INSERT INTO public.journals VALUES (2716, 736, 'Issue', 13, NULL, '2020-05-16 10:13:26+07', false);
INSERT INTO public.journals VALUES (2717, 737, 'Issue', 13, NULL, '2020-05-16 10:13:43+07', false);
INSERT INTO public.journals VALUES (2718, 739, 'Issue', 13, NULL, '2020-05-16 10:14:01+07', false);
INSERT INTO public.journals VALUES (2719, 740, 'Issue', 13, NULL, '2020-05-16 10:14:09+07', false);
INSERT INTO public.journals VALUES (2720, 769, 'Issue', 13, '', '2020-05-16 10:24:25+07', false);
INSERT INTO public.journals VALUES (2722, 767, 'Issue', 13, '', '2020-05-16 10:25:08+07', false);
INSERT INTO public.journals VALUES (2723, 766, 'Issue', 13, NULL, '2020-05-16 10:25:29+07', false);
INSERT INTO public.journals VALUES (2724, 769, 'Issue', 13, NULL, '2020-05-16 10:25:36+07', false);
INSERT INTO public.journals VALUES (2726, 727, 'Issue', 5, NULL, '2020-05-18 09:48:30+07', false);
INSERT INTO public.journals VALUES (2727, 727, 'Issue', 5, NULL, '2020-05-18 09:48:35+07', false);
INSERT INTO public.journals VALUES (2728, 750, 'Issue', 5, '', '2020-05-18 11:07:05+07', false);
INSERT INTO public.journals VALUES (2729, 751, 'Issue', 5, '', '2020-05-18 11:07:05+07', false);
INSERT INTO public.journals VALUES (2730, 748, 'Issue', 5, '', '2020-05-18 11:07:19+07', false);
INSERT INTO public.journals VALUES (2731, 749, 'Issue', 5, '', '2020-05-18 11:07:19+07', false);
INSERT INTO public.journals VALUES (2732, 747, 'Issue', 5, '', '2020-05-18 11:07:36+07', false);
INSERT INTO public.journals VALUES (2733, 760, 'Issue', 10, NULL, '2020-05-18 11:38:49+07', false);
INSERT INTO public.journals VALUES (2734, 392, 'Issue', 6, NULL, '2020-05-18 13:59:08+07', false);
INSERT INTO public.journals VALUES (2735, 393, 'Issue', 6, NULL, '2020-05-18 13:59:12+07', false);
INSERT INTO public.journals VALUES (2736, 394, 'Issue', 6, NULL, '2020-05-18 13:59:18+07', false);
INSERT INTO public.journals VALUES (2737, 395, 'Issue', 6, NULL, '2020-05-18 13:59:23+07', false);
INSERT INTO public.journals VALUES (2738, 396, 'Issue', 6, NULL, '2020-05-18 13:59:27+07', false);
INSERT INTO public.journals VALUES (2739, 391, 'Issue', 6, NULL, '2020-05-18 13:59:33+07', false);
INSERT INTO public.journals VALUES (2741, 600, 'Issue', 13, NULL, '2020-05-18 17:11:31+07', false);
INSERT INTO public.journals VALUES (2742, 773, 'Issue', 6, '', '2020-05-18 19:12:48+07', false);
INSERT INTO public.journals VALUES (2743, 753, 'Issue', 5, '', '2020-05-19 11:32:11+07', false);
INSERT INTO public.journals VALUES (2744, 756, 'Issue', 5, '', '2020-05-19 11:32:11+07', false);
INSERT INTO public.journals VALUES (2745, 721, 'Issue', 5, '', '2020-05-19 11:32:12+07', false);
INSERT INTO public.journals VALUES (2746, 722, 'Issue', 5, '', '2020-05-19 11:32:12+07', false);
INSERT INTO public.journals VALUES (2747, 723, 'Issue', 5, '', '2020-05-19 11:32:12+07', false);
INSERT INTO public.journals VALUES (2751, 769, 'Issue', 5, '', '2020-05-19 13:47:51+07', false);
INSERT INTO public.journals VALUES (2752, 767, 'Issue', 5, '', '2020-05-19 13:48:26+07', false);
INSERT INTO public.journals VALUES (2753, 768, 'Issue', 5, '', '2020-05-19 13:48:26+07', false);
INSERT INTO public.journals VALUES (2754, 766, 'Issue', 13, NULL, '2020-05-19 13:51:08+07', false);
INSERT INTO public.journals VALUES (2755, 767, 'Issue', 5, '', '2020-05-19 14:00:06+07', false);
INSERT INTO public.journals VALUES (2756, 728, 'Issue', 5, '', '2020-05-19 14:02:34+07', false);
INSERT INTO public.journals VALUES (2757, 729, 'Issue', 5, '', '2020-05-19 14:02:34+07', false);
INSERT INTO public.journals VALUES (2758, 730, 'Issue', 5, '', '2020-05-19 14:02:35+07', false);
INSERT INTO public.journals VALUES (2759, 731, 'Issue', 5, '', '2020-05-19 14:02:35+07', false);
INSERT INTO public.journals VALUES (2760, 732, 'Issue', 5, '', '2020-05-19 14:02:35+07', false);
INSERT INTO public.journals VALUES (2761, 733, 'Issue', 5, '', '2020-05-19 14:02:35+07', false);
INSERT INTO public.journals VALUES (2762, 734, 'Issue', 5, '', '2020-05-19 14:02:35+07', false);
INSERT INTO public.journals VALUES (2763, 735, 'Issue', 5, '', '2020-05-19 14:02:35+07', false);
INSERT INTO public.journals VALUES (2764, 736, 'Issue', 5, '', '2020-05-19 14:02:36+07', false);
INSERT INTO public.journals VALUES (2765, 737, 'Issue', 5, '', '2020-05-19 14:02:36+07', false);
INSERT INTO public.journals VALUES (2766, 769, 'Issue', 5, NULL, '2020-05-19 14:03:00+07', false);
INSERT INTO public.journals VALUES (2767, 769, 'Issue', 5, NULL, '2020-05-19 14:03:07+07', false);
INSERT INTO public.journals VALUES (2768, 768, 'Issue', 5, '', '2020-05-19 14:03:44+07', false);
INSERT INTO public.journals VALUES (2769, 731, 'Issue', 5, '', '2020-05-19 14:11:52+07', false);
INSERT INTO public.journals VALUES (2770, 732, 'Issue', 5, '', '2020-05-19 14:11:52+07', false);
INSERT INTO public.journals VALUES (2771, 733, 'Issue', 5, '', '2020-05-19 14:11:52+07', false);
INSERT INTO public.journals VALUES (2772, 734, 'Issue', 5, '', '2020-05-19 14:11:52+07', false);
INSERT INTO public.journals VALUES (2773, 735, 'Issue', 5, '', '2020-05-19 14:11:52+07', false);
INSERT INTO public.journals VALUES (2774, 736, 'Issue', 5, '', '2020-05-19 14:11:52+07', false);
INSERT INTO public.journals VALUES (2775, 737, 'Issue', 5, '', '2020-05-19 14:11:53+07', false);
INSERT INTO public.journals VALUES (2776, 729, 'Issue', 5, '', '2020-05-19 14:12:19+07', false);
INSERT INTO public.journals VALUES (2777, 730, 'Issue', 5, '', '2020-05-19 14:12:35+07', false);
INSERT INTO public.journals VALUES (2778, 736, 'Issue', 5, '', '2020-05-19 14:15:55+07', false);
INSERT INTO public.journals VALUES (2779, 737, 'Issue', 5, '', '2020-05-19 14:15:55+07', false);
INSERT INTO public.journals VALUES (2780, 734, 'Issue', 5, '', '2020-05-19 14:16:20+07', false);
INSERT INTO public.journals VALUES (2781, 735, 'Issue', 5, '', '2020-05-19 14:16:20+07', false);
INSERT INTO public.journals VALUES (2782, 733, 'Issue', 5, '', '2020-05-19 14:16:59+07', false);
INSERT INTO public.journals VALUES (2783, 733, 'Issue', 5, '', '2020-05-19 14:17:17+07', false);
INSERT INTO public.journals VALUES (2784, 787, 'Issue', 5, '', '2020-05-19 14:31:59+07', false);
INSERT INTO public.journals VALUES (2785, 786, 'Issue', 5, '', '2020-05-19 14:32:13+07', false);
INSERT INTO public.journals VALUES (2786, 761, 'Issue', 5, '', '2020-05-19 14:33:16+07', false);
INSERT INTO public.journals VALUES (2787, 767, 'Issue', 10, NULL, '2020-05-19 17:04:31+07', false);
INSERT INTO public.journals VALUES (2788, 767, 'Issue', 10, NULL, '2020-05-19 17:04:43+07', false);
INSERT INTO public.journals VALUES (2789, 788, 'Issue', 13, '', '2020-05-20 08:19:41+07', false);
INSERT INTO public.journals VALUES (2790, 789, 'Issue', 13, '', '2020-05-20 08:48:11+07', false);
INSERT INTO public.journals VALUES (2791, 738, 'Issue', 13, NULL, '2020-05-20 08:48:29+07', false);
INSERT INTO public.journals VALUES (2792, 789, 'Issue', 13, '', '2020-05-20 08:48:48+07', false);
INSERT INTO public.journals VALUES (2793, 789, 'Issue', 13, NULL, '2020-05-20 08:50:11+07', false);
INSERT INTO public.journals VALUES (2794, 388, 'Issue', 5, NULL, '2020-05-20 09:19:35+07', false);
INSERT INTO public.journals VALUES (2795, 496, 'Issue', 5, NULL, '2020-05-20 09:19:35+07', false);
INSERT INTO public.journals VALUES (2796, 497, 'Issue', 5, NULL, '2020-05-20 09:19:35+07', false);
INSERT INTO public.journals VALUES (2797, 524, 'Issue', 5, NULL, '2020-05-20 09:19:35+07', false);
INSERT INTO public.journals VALUES (2798, 567, 'Issue', 5, NULL, '2020-05-20 09:19:36+07', false);
INSERT INTO public.journals VALUES (2799, 552, 'Issue', 5, NULL, '2020-05-20 09:19:36+07', false);
INSERT INTO public.journals VALUES (2800, 553, 'Issue', 5, NULL, '2020-05-20 09:19:36+07', false);
INSERT INTO public.journals VALUES (2801, 506, 'Issue', 5, NULL, '2020-05-20 09:19:36+07', false);
INSERT INTO public.journals VALUES (2802, 554, 'Issue', 5, NULL, '2020-05-20 09:19:36+07', false);
INSERT INTO public.journals VALUES (2803, 556, 'Issue', 5, NULL, '2020-05-20 09:19:36+07', false);
INSERT INTO public.journals VALUES (2804, 557, 'Issue', 5, NULL, '2020-05-20 09:19:36+07', false);
INSERT INTO public.journals VALUES (2805, 558, 'Issue', 5, NULL, '2020-05-20 09:19:36+07', false);
INSERT INTO public.journals VALUES (2806, 559, 'Issue', 5, NULL, '2020-05-20 09:19:36+07', false);
INSERT INTO public.journals VALUES (2807, 560, 'Issue', 5, NULL, '2020-05-20 09:19:37+07', false);
INSERT INTO public.journals VALUES (2808, 561, 'Issue', 5, NULL, '2020-05-20 09:19:37+07', false);
INSERT INTO public.journals VALUES (2809, 511, 'Issue', 5, NULL, '2020-05-20 09:19:37+07', false);
INSERT INTO public.journals VALUES (2810, 562, 'Issue', 5, NULL, '2020-05-20 09:19:37+07', false);
INSERT INTO public.journals VALUES (2811, 563, 'Issue', 5, NULL, '2020-05-20 09:19:37+07', false);
INSERT INTO public.journals VALUES (2812, 564, 'Issue', 5, NULL, '2020-05-20 09:19:37+07', false);
INSERT INTO public.journals VALUES (2813, 658, 'Issue', 5, NULL, '2020-05-20 09:19:37+07', false);
INSERT INTO public.journals VALUES (2814, 659, 'Issue', 5, NULL, '2020-05-20 09:19:38+07', false);
INSERT INTO public.journals VALUES (2815, 515, 'Issue', 5, NULL, '2020-05-20 09:19:38+07', false);
INSERT INTO public.journals VALUES (2816, 516, 'Issue', 5, NULL, '2020-05-20 09:19:38+07', false);
INSERT INTO public.journals VALUES (2817, 517, 'Issue', 5, NULL, '2020-05-20 09:19:38+07', false);
INSERT INTO public.journals VALUES (2818, 522, 'Issue', 5, NULL, '2020-05-20 09:19:38+07', false);
INSERT INTO public.journals VALUES (2819, 520, 'Issue', 5, NULL, '2020-05-20 09:19:38+07', false);
INSERT INTO public.journals VALUES (2820, 521, 'Issue', 5, NULL, '2020-05-20 09:19:38+07', false);
INSERT INTO public.journals VALUES (2821, 566, 'Issue', 5, NULL, '2020-05-20 09:19:38+07', false);
INSERT INTO public.journals VALUES (2822, 713, 'Issue', 5, NULL, '2020-05-20 09:19:39+07', false);
INSERT INTO public.journals VALUES (2823, 714, 'Issue', 5, NULL, '2020-05-20 09:19:39+07', false);
INSERT INTO public.journals VALUES (2824, 715, 'Issue', 5, NULL, '2020-05-20 09:19:39+07', false);
INSERT INTO public.journals VALUES (2825, 596, 'Issue', 5, NULL, '2020-05-20 09:19:39+07', false);
INSERT INTO public.journals VALUES (2826, 599, 'Issue', 5, NULL, '2020-05-20 09:19:39+07', false);
INSERT INTO public.journals VALUES (2827, 505, 'Issue', 5, NULL, '2020-05-20 09:20:55+07', false);
INSERT INTO public.journals VALUES (2828, 508, 'Issue', 5, NULL, '2020-05-20 09:20:55+07', false);
INSERT INTO public.journals VALUES (2829, 510, 'Issue', 5, NULL, '2020-05-20 09:20:55+07', false);
INSERT INTO public.journals VALUES (2830, 514, 'Issue', 5, NULL, '2020-05-20 09:20:56+07', false);
INSERT INTO public.journals VALUES (2831, 499, 'Issue', 5, NULL, '2020-05-20 09:21:12+07', false);
INSERT INTO public.journals VALUES (2832, 509, 'Issue', 5, NULL, '2020-05-20 09:21:12+07', false);
INSERT INTO public.journals VALUES (2833, 509, 'Issue', 5, NULL, '2020-05-20 09:21:31+07', false);
INSERT INTO public.journals VALUES (2834, 499, 'Issue', 5, NULL, '2020-05-20 09:21:37+07', false);
INSERT INTO public.journals VALUES (2835, 525, 'Issue', 5, '', '2020-05-20 09:22:20+07', false);
INSERT INTO public.journals VALUES (2836, 568, 'Issue', 5, '', '2020-05-20 09:22:20+07', false);
INSERT INTO public.journals VALUES (2837, 555, 'Issue', 5, '', '2020-05-20 09:22:20+07', false);
INSERT INTO public.journals VALUES (2838, 565, 'Issue', 5, '', '2020-05-20 09:22:20+07', false);
INSERT INTO public.journals VALUES (2839, 518, 'Issue', 5, '', '2020-05-20 09:22:20+07', false);
INSERT INTO public.journals VALUES (2840, 523, 'Issue', 5, '', '2020-05-20 09:22:20+07', false);
INSERT INTO public.journals VALUES (2841, 597, 'Issue', 5, '', '2020-05-20 09:22:20+07', false);
INSERT INTO public.journals VALUES (2842, 600, 'Issue', 5, '', '2020-05-20 09:22:20+07', false);
INSERT INTO public.journals VALUES (2843, 512, 'Issue', 5, NULL, '2020-05-20 09:22:41+07', false);
INSERT INTO public.journals VALUES (2844, 512, 'Issue', 5, NULL, '2020-05-20 09:22:46+07', false);
INSERT INTO public.journals VALUES (2845, 780, 'Issue', 5, '', '2020-05-20 09:23:06+07', false);
INSERT INTO public.journals VALUES (2846, 781, 'Issue', 5, '', '2020-05-20 09:23:06+07', false);
INSERT INTO public.journals VALUES (2847, 782, 'Issue', 5, '', '2020-05-20 09:23:06+07', false);
INSERT INTO public.journals VALUES (2848, 783, 'Issue', 5, '', '2020-05-20 09:23:06+07', false);
INSERT INTO public.journals VALUES (2849, 784, 'Issue', 5, '', '2020-05-20 09:23:06+07', false);
INSERT INTO public.journals VALUES (2850, 774, 'Issue', 6, '', '2020-05-20 13:41:22+07', false);
INSERT INTO public.journals VALUES (2851, 773, 'Issue', 6, '', '2020-05-20 13:41:51+07', false);
INSERT INTO public.journals VALUES (2852, 733, 'Issue', 5, '', '2020-05-20 15:17:26+07', false);
INSERT INTO public.journals VALUES (2854, 785, 'Issue', 12, '', '2020-05-21 09:45:42+07', false);
INSERT INTO public.journals VALUES (2855, 786, 'Issue', 12, '', '2020-05-21 09:46:14+07', false);
INSERT INTO public.journals VALUES (2856, 786, 'Issue', 12, '', '2020-05-21 09:46:35+07', false);
INSERT INTO public.journals VALUES (2857, 785, 'Issue', 12, '', '2020-05-21 09:49:23+07', false);
INSERT INTO public.journals VALUES (2858, 785, 'Issue', 12, NULL, '2020-05-21 09:49:34+07', false);
INSERT INTO public.journals VALUES (2859, 785, 'Issue', 12, NULL, '2020-05-21 09:49:38+07', false);
INSERT INTO public.journals VALUES (2860, 786, 'Issue', 12, '', '2020-05-21 09:50:33+07', false);
INSERT INTO public.journals VALUES (2861, 786, 'Issue', 12, NULL, '2020-05-21 09:50:42+07', false);
INSERT INTO public.journals VALUES (2862, 786, 'Issue', 12, NULL, '2020-05-21 09:50:49+07', false);
INSERT INTO public.journals VALUES (2863, 800, 'Issue', 8, '', '2020-05-21 14:05:09+07', false);
INSERT INTO public.journals VALUES (2864, 788, 'Issue', 10, NULL, '2020-05-21 14:19:09+07', false);
INSERT INTO public.journals VALUES (2865, 788, 'Issue', 10, NULL, '2020-05-21 14:19:15+07', false);
INSERT INTO public.journals VALUES (2866, 789, 'Issue', 10, NULL, '2020-05-21 14:19:54+07', false);
INSERT INTO public.journals VALUES (2867, 789, 'Issue', 10, NULL, '2020-05-21 14:20:03+07', false);
INSERT INTO public.journals VALUES (2868, 739, 'Issue', 10, NULL, '2020-05-21 14:20:12+07', false);
INSERT INTO public.journals VALUES (2869, 739, 'Issue', 10, NULL, '2020-05-21 14:20:32+07', false);
INSERT INTO public.journals VALUES (2870, 740, 'Issue', 10, NULL, '2020-05-21 14:20:39+07', false);
INSERT INTO public.journals VALUES (2871, 740, 'Issue', 10, NULL, '2020-05-21 14:20:58+07', false);
INSERT INTO public.journals VALUES (2872, 761, 'Issue', 6, NULL, '2020-05-23 08:37:38+07', false);
INSERT INTO public.journals VALUES (2873, 761, 'Issue', 6, NULL, '2020-05-23 08:37:44+07', false);
INSERT INTO public.journals VALUES (2874, 762, 'Issue', 6, NULL, '2020-05-23 08:37:52+07', false);
INSERT INTO public.journals VALUES (2875, 762, 'Issue', 6, NULL, '2020-05-23 08:38:05+07', false);
INSERT INTO public.journals VALUES (2876, 763, 'Issue', 6, NULL, '2020-05-23 08:38:38+07', false);
INSERT INTO public.journals VALUES (2877, 763, 'Issue', 6, NULL, '2020-05-23 08:38:45+07', false);
INSERT INTO public.journals VALUES (2878, 793, 'Issue', 12, '', '2020-05-23 08:50:50+07', false);
INSERT INTO public.journals VALUES (2879, 787, 'Issue', 12, '', '2020-05-23 08:51:31+07', false);
INSERT INTO public.journals VALUES (2880, 804, 'Issue', 12, '', '2020-05-23 08:51:59+07', false);
INSERT INTO public.journals VALUES (2881, 745, 'Issue', 6, '', '2020-05-23 08:54:05+07', false);
INSERT INTO public.journals VALUES (2882, 742, 'Issue', 6, '', '2020-05-23 08:54:34+07', false);
INSERT INTO public.journals VALUES (2883, 745, 'Issue', 6, NULL, '2020-05-23 08:54:46+07', false);
INSERT INTO public.journals VALUES (2884, 744, 'Issue', 6, '', '2020-05-23 08:55:00+07', false);
INSERT INTO public.journals VALUES (2885, 742, 'Issue', 6, '', '2020-05-23 08:55:42+07', false);
INSERT INTO public.journals VALUES (2886, 746, 'Issue', 6, '', '2020-05-23 08:55:42+07', false);
INSERT INTO public.journals VALUES (2887, 747, 'Issue', 6, '', '2020-05-23 08:55:42+07', false);
INSERT INTO public.journals VALUES (2888, 748, 'Issue', 6, '', '2020-05-23 08:55:42+07', false);
INSERT INTO public.journals VALUES (2889, 749, 'Issue', 6, '', '2020-05-23 08:55:42+07', false);
INSERT INTO public.journals VALUES (2890, 751, 'Issue', 6, '', '2020-05-23 08:55:42+07', false);
INSERT INTO public.journals VALUES (2891, 742, 'Issue', 6, '', '2020-05-23 08:56:01+07', false);
INSERT INTO public.journals VALUES (2892, 600, 'Issue', 13, NULL, '2020-05-23 08:58:23+07', false);
INSERT INTO public.journals VALUES (2893, 597, 'Issue', 13, NULL, '2020-05-23 08:58:37+07', false);
INSERT INTO public.journals VALUES (2894, 597, 'Issue', 13, NULL, '2020-05-23 08:59:01+07', false);
INSERT INTO public.journals VALUES (2895, 600, 'Issue', 13, NULL, '2020-05-23 08:59:01+07', false);
INSERT INTO public.journals VALUES (2896, 728, 'Issue', 13, NULL, '2020-05-23 09:03:23+07', false);
INSERT INTO public.journals VALUES (2897, 728, 'Issue', 13, '', '2020-05-23 09:08:28+07', false);
INSERT INTO public.journals VALUES (2898, 729, 'Issue', 13, NULL, '2020-05-23 09:19:25+07', false);
INSERT INTO public.journals VALUES (2899, 805, 'Issue', 13, '', '2020-05-23 09:33:11+07', false);
INSERT INTO public.journals VALUES (2900, 806, 'Issue', 13, NULL, '2020-05-23 09:33:32+07', false);
INSERT INTO public.journals VALUES (2901, 807, 'Issue', 13, NULL, '2020-05-23 09:33:33+07', false);
INSERT INTO public.journals VALUES (2902, 808, 'Issue', 13, NULL, '2020-05-23 09:33:33+07', false);
INSERT INTO public.journals VALUES (2903, 809, 'Issue', 13, NULL, '2020-05-23 09:33:33+07', false);
INSERT INTO public.journals VALUES (2904, 810, 'Issue', 13, NULL, '2020-05-23 09:34:08+07', false);
INSERT INTO public.journals VALUES (2905, 811, 'Issue', 13, NULL, '2020-05-23 09:37:35+07', false);
INSERT INTO public.journals VALUES (2906, 732, 'Issue', 13, NULL, '2020-05-23 09:39:48+07', false);
INSERT INTO public.journals VALUES (2907, 733, 'Issue', 13, NULL, '2020-05-23 09:39:48+07', false);
INSERT INTO public.journals VALUES (2908, 734, 'Issue', 13, NULL, '2020-05-23 09:39:48+07', false);
INSERT INTO public.journals VALUES (2909, 735, 'Issue', 13, NULL, '2020-05-23 09:39:48+07', false);
INSERT INTO public.journals VALUES (2910, 732, 'Issue', 13, '', '2020-05-23 09:40:14+07', false);
INSERT INTO public.journals VALUES (2911, 733, 'Issue', 13, '', '2020-05-23 09:40:14+07', false);
INSERT INTO public.journals VALUES (2912, 734, 'Issue', 13, '', '2020-05-23 09:40:14+07', false);
INSERT INTO public.journals VALUES (2913, 735, 'Issue', 13, '', '2020-05-23 09:40:14+07', false);
INSERT INTO public.journals VALUES (2914, 806, 'Issue', 13, '', '2020-05-23 09:40:55+07', false);
INSERT INTO public.journals VALUES (2915, 807, 'Issue', 13, '', '2020-05-23 09:41:16+07', false);
INSERT INTO public.journals VALUES (2916, 808, 'Issue', 13, '', '2020-05-23 09:41:17+07', false);
INSERT INTO public.journals VALUES (2917, 809, 'Issue', 13, '', '2020-05-23 09:41:34+07', false);
INSERT INTO public.journals VALUES (2918, 810, 'Issue', 13, '', '2020-05-23 09:41:34+07', false);
INSERT INTO public.journals VALUES (2919, 811, 'Issue', 13, '', '2020-05-23 09:42:00+07', false);
INSERT INTO public.journals VALUES (2920, 812, 'Issue', 13, '', '2020-05-23 09:42:00+07', false);
INSERT INTO public.journals VALUES (2921, 813, 'Issue', 13, '', '2020-05-23 09:42:20+07', false);
INSERT INTO public.journals VALUES (2922, 814, 'Issue', 13, '', '2020-05-23 09:42:20+07', false);
INSERT INTO public.journals VALUES (2923, 736, 'Issue', 13, '', '2020-05-23 09:42:46+07', false);
INSERT INTO public.journals VALUES (2924, 737, 'Issue', 13, '', '2020-05-23 09:42:46+07', false);
INSERT INTO public.journals VALUES (2926, 736, 'Issue', 13, NULL, '2020-05-23 09:43:02+07', false);
INSERT INTO public.journals VALUES (2927, 737, 'Issue', 13, NULL, '2020-05-23 09:43:02+07', false);
INSERT INTO public.journals VALUES (2929, 750, 'Issue', 6, '', '2020-05-23 10:04:13+07', false);
INSERT INTO public.journals VALUES (2930, 804, 'Issue', 12, NULL, '2020-05-25 08:14:09+07', false);
INSERT INTO public.journals VALUES (2931, 804, 'Issue', 12, NULL, '2020-05-25 08:14:16+07', false);
INSERT INTO public.journals VALUES (2932, 803, 'Issue', 12, NULL, '2020-05-25 08:14:39+07', false);
INSERT INTO public.journals VALUES (2933, 803, 'Issue', 12, NULL, '2020-05-25 08:14:45+07', false);
INSERT INTO public.journals VALUES (2934, 793, 'Issue', 12, NULL, '2020-05-25 08:14:58+07', false);
INSERT INTO public.journals VALUES (2935, 793, 'Issue', 12, NULL, '2020-05-25 08:15:03+07', false);
INSERT INTO public.journals VALUES (2939, 820, 'Issue', 5, '', '2020-05-25 10:15:55+07', false);
INSERT INTO public.journals VALUES (2940, 821, 'Issue', 5, '', '2020-05-25 10:15:55+07', false);
INSERT INTO public.journals VALUES (2941, 787, 'Issue', 12, NULL, '2020-05-25 16:07:51+07', false);
INSERT INTO public.journals VALUES (2942, 787, 'Issue', 12, NULL, '2020-05-25 16:07:57+07', false);
INSERT INTO public.journals VALUES (2943, 728, 'Issue', 10, NULL, '2020-05-26 08:10:59+07', false);
INSERT INTO public.journals VALUES (2944, 805, 'Issue', 4, NULL, '2020-05-26 08:11:12+07', false);
INSERT INTO public.journals VALUES (2945, 728, 'Issue', 10, NULL, '2020-05-26 08:11:13+07', false);
INSERT INTO public.journals VALUES (2946, 823, 'Issue', 12, '', '2020-05-26 08:11:37+07', false);
INSERT INTO public.journals VALUES (2947, 806, 'Issue', 4, NULL, '2020-05-26 08:11:58+07', false);
INSERT INTO public.journals VALUES (2948, 806, 'Issue', 4, NULL, '2020-05-26 08:29:50+07', false);
INSERT INTO public.journals VALUES (2949, 807, 'Issue', 4, NULL, '2020-05-26 08:29:59+07', false);
INSERT INTO public.journals VALUES (2950, 808, 'Issue', 4, NULL, '2020-05-26 08:30:08+07', false);
INSERT INTO public.journals VALUES (2951, 809, 'Issue', 4, NULL, '2020-05-26 08:30:16+07', false);
INSERT INTO public.journals VALUES (2952, 742, 'Issue', 6, '', '2020-05-26 08:51:04+07', false);
INSERT INTO public.journals VALUES (2953, 742, 'Issue', 6, '', '2020-05-26 08:51:41+07', false);
INSERT INTO public.journals VALUES (2954, 742, 'Issue', 6, '', '2020-05-26 08:51:55+07', false);
INSERT INTO public.journals VALUES (2955, 744, 'Issue', 6, '', '2020-05-26 08:52:14+07', false);
INSERT INTO public.journals VALUES (2956, 745, 'Issue', 6, '', '2020-05-26 08:52:32+07', false);
INSERT INTO public.journals VALUES (2957, 523, 'Issue', 13, NULL, '2020-05-26 09:06:14+07', false);
INSERT INTO public.journals VALUES (2958, 518, 'Issue', 13, NULL, '2020-05-26 09:06:25+07', false);
INSERT INTO public.journals VALUES (2959, 518, 'Issue', 13, NULL, '2020-05-26 09:06:59+07', false);
INSERT INTO public.journals VALUES (2960, 523, 'Issue', 13, NULL, '2020-05-26 09:06:59+07', false);
INSERT INTO public.journals VALUES (2961, 565, 'Issue', 13, NULL, '2020-05-26 09:07:49+07', false);
INSERT INTO public.journals VALUES (2962, 565, 'Issue', 13, NULL, '2020-05-26 09:08:02+07', false);
INSERT INTO public.journals VALUES (2963, 525, 'Issue', 13, NULL, '2020-05-26 09:08:14+07', false);
INSERT INTO public.journals VALUES (2964, 568, 'Issue', 13, NULL, '2020-05-26 09:08:20+07', false);
INSERT INTO public.journals VALUES (2965, 525, 'Issue', 13, NULL, '2020-05-26 09:08:33+07', false);
INSERT INTO public.journals VALUES (2966, 568, 'Issue', 13, NULL, '2020-05-26 09:08:33+07', false);
INSERT INTO public.journals VALUES (2967, 555, 'Issue', 13, NULL, '2020-05-26 09:08:47+07', false);
INSERT INTO public.journals VALUES (2968, 555, 'Issue', 13, NULL, '2020-05-26 09:08:52+07', false);
INSERT INTO public.journals VALUES (2969, 824, 'Issue', 13, '', '2020-05-26 09:20:06+07', false);
INSERT INTO public.journals VALUES (2970, 781, 'Issue', 13, NULL, '2020-05-26 09:22:14+07', false);
INSERT INTO public.journals VALUES (2971, 782, 'Issue', 13, NULL, '2020-05-26 09:22:14+07', false);
INSERT INTO public.journals VALUES (2972, 783, 'Issue', 13, NULL, '2020-05-26 09:22:14+07', false);
INSERT INTO public.journals VALUES (2973, 784, 'Issue', 13, NULL, '2020-05-26 09:22:14+07', false);
INSERT INTO public.journals VALUES (2974, 781, 'Issue', 13, NULL, '2020-05-26 09:22:26+07', false);
INSERT INTO public.journals VALUES (2975, 782, 'Issue', 13, NULL, '2020-05-26 09:22:26+07', false);
INSERT INTO public.journals VALUES (2976, 783, 'Issue', 13, NULL, '2020-05-26 09:22:26+07', false);
INSERT INTO public.journals VALUES (2977, 784, 'Issue', 13, NULL, '2020-05-26 09:22:26+07', false);
INSERT INTO public.journals VALUES (2978, 744, 'Issue', 6, NULL, '2020-05-26 15:24:07+07', false);
INSERT INTO public.journals VALUES (2979, 744, 'Issue', 6, NULL, '2020-05-26 15:24:12+07', false);
INSERT INTO public.journals VALUES (2980, 744, 'Issue', 6, '<p>POST: https://api-quanlydaotao.gdtsolutions.vn/report/DSDuThi</p>

<p>
{<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&quot;classId&quot;: &quot;2684feb5-9095-11ea-a860-525400330bc0&quot;,<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&quot;examForm&quot;: &quot;Tự luận&quot;,<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&quot;subjectId&quot;: 4,<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&quot;examDate&quot;: &quot;2020-01-04&quot;,<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&quot;location&quot;: &quot;Ph&ograve;ng thi&quot;<br />
}</p>
', '2020-05-26 15:26:03+07', false);
INSERT INTO public.journals VALUES (2981, 741, 'Issue', 6, '<p>POST: <span><span>https://api-quanlydaotao.gdtsolutions.vn/report/DSDangKy</span></span></p>

<p>{<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&quot;classId&quot;: &quot;2684feb5-9095-11ea-a860-525400330bc0&quot;<br />
}</p>
', '2020-05-26 15:27:41+07', false);
INSERT INTO public.journals VALUES (2982, 743, 'Issue', 6, '<p>POST: <a href="https://api-quanlydaotao.gdtsolutions.vn/report/DSHocVien">https://api-quanlydaotao.gdtsolutions.vn/report/DSHocVien</a></p>

<p>{<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&quot;classId&quot;: &quot;2684feb5-9095-11ea-a860-525400330bc0&quot;<br />
}</p>
', '2020-05-26 15:28:00+07', false);
INSERT INTO public.journals VALUES (2983, 742, 'Issue', 6, '<pre class="microlight">
<span><span>POST: https://api-quanlydaotao.gdtsolutions.vn/report/TheoDoiHocTap</span></span></pre>

<p>{<br />
&nbsp;&nbsp;&nbsp; &quot;classId&quot;: &quot;85ce88fa-3a23-42cc-a33d-3cd470f30125&quot;,<br />
&nbsp;&nbsp;&nbsp; &quot;group&quot;: 1,<br />
&nbsp;&nbsp;&nbsp; &quot;subjectId&quot;: 1,<br />
&nbsp;&nbsp;&nbsp; &quot;isBlank&quot;: true,<br />
&nbsp;&nbsp;&nbsp; &quot;startDate&quot;: &quot;2020-05-01&quot;,<br />
&nbsp;&nbsp;&nbsp; &quot;endDate&quot;: &quot;2020-06-01&quot;<br />
}</p>
', '2020-05-26 15:29:57+07', false);
INSERT INTO public.journals VALUES (2984, 806, 'Issue', 4, NULL, '2020-05-27 08:08:39+07', false);
INSERT INTO public.journals VALUES (2985, 808, 'Issue', 4, NULL, '2020-05-27 08:08:54+07', false);
INSERT INTO public.journals VALUES (2986, 809, 'Issue', 4, NULL, '2020-05-27 08:09:01+07', false);
INSERT INTO public.journals VALUES (2987, 811, 'Issue', 10, NULL, '2020-05-27 08:35:45+07', false);
INSERT INTO public.journals VALUES (2988, 811, 'Issue', 10, NULL, '2020-05-27 08:36:01+07', false);
INSERT INTO public.journals VALUES (2989, 812, 'Issue', 10, NULL, '2020-05-27 08:36:12+07', false);
INSERT INTO public.journals VALUES (2990, 812, 'Issue', 10, NULL, '2020-05-27 08:36:22+07', false);
INSERT INTO public.journals VALUES (2991, 807, 'Issue', 4, NULL, '2020-05-27 08:54:56+07', false);
INSERT INTO public.journals VALUES (2992, 824, 'Issue', 13, NULL, '2020-05-27 09:06:22+07', false);
INSERT INTO public.journals VALUES (2993, 826, 'Issue', 13, NULL, '2020-05-27 09:06:40+07', false);
INSERT INTO public.journals VALUES (2994, 824, 'Issue', 13, NULL, '2020-05-27 09:07:32+07', false);
INSERT INTO public.journals VALUES (2995, 826, 'Issue', 13, NULL, '2020-05-27 09:07:32+07', false);
INSERT INTO public.journals VALUES (2996, 810, 'Issue', 13, NULL, '2020-05-27 09:08:05+07', false);
INSERT INTO public.journals VALUES (2997, 732, 'Issue', 13, NULL, '2020-05-27 09:08:05+07', false);
INSERT INTO public.journals VALUES (2998, 733, 'Issue', 13, NULL, '2020-05-27 09:08:06+07', false);
INSERT INTO public.journals VALUES (2999, 734, 'Issue', 13, NULL, '2020-05-27 09:08:06+07', false);
INSERT INTO public.journals VALUES (3000, 810, 'Issue', 13, NULL, '2020-05-27 09:11:55+07', false);
INSERT INTO public.journals VALUES (3001, 736, 'Issue', 13, NULL, '2020-05-27 09:17:59+07', false);
INSERT INTO public.journals VALUES (3002, 737, 'Issue', 13, NULL, '2020-05-27 09:17:59+07', false);
INSERT INTO public.journals VALUES (3003, 732, 'Issue', 10, NULL, '2020-05-27 10:10:19+07', false);
INSERT INTO public.journals VALUES (3004, 732, 'Issue', 10, NULL, '2020-05-27 10:10:29+07', false);
INSERT INTO public.journals VALUES (3005, 742, 'Issue', 6, '', '2020-05-27 10:39:50+07', false);
INSERT INTO public.journals VALUES (3006, 734, 'Issue', 10, NULL, '2020-05-27 11:18:45+07', false);
INSERT INTO public.journals VALUES (3007, 734, 'Issue', 10, NULL, '2020-05-27 11:18:55+07', false);
INSERT INTO public.journals VALUES (3008, 815, 'Issue', 5, '', '2020-05-27 13:46:28+07', false);
INSERT INTO public.journals VALUES (3009, 775, 'Issue', 5, '', '2020-05-27 13:48:19+07', false);
INSERT INTO public.journals VALUES (3010, 794, 'Issue', 5, '', '2020-05-27 13:48:19+07', false);
INSERT INTO public.journals VALUES (3011, 795, 'Issue', 5, '', '2020-05-27 13:48:19+07', false);
INSERT INTO public.journals VALUES (3012, 797, 'Issue', 5, '', '2020-05-27 13:48:19+07', false);
INSERT INTO public.journals VALUES (3013, 798, 'Issue', 5, '', '2020-05-27 13:48:19+07', false);
INSERT INTO public.journals VALUES (3014, 820, 'Issue', 5, '', '2020-05-27 13:48:19+07', false);
INSERT INTO public.journals VALUES (3015, 821, 'Issue', 5, '', '2020-05-27 13:48:19+07', false);
INSERT INTO public.journals VALUES (3016, 816, 'Issue', 5, NULL, '2020-05-27 13:48:40+07', false);
INSERT INTO public.journals VALUES (3017, 816, 'Issue', 5, NULL, '2020-05-27 13:48:46+07', false);
INSERT INTO public.journals VALUES (3018, 800, 'Issue', 5, NULL, '2020-05-27 13:50:25+07', false);
INSERT INTO public.journals VALUES (3019, 800, 'Issue', 5, NULL, '2020-05-27 13:50:30+07', false);
INSERT INTO public.journals VALUES (3020, 815, 'Issue', 5, '', '2020-05-27 13:51:00+07', false);
INSERT INTO public.journals VALUES (3021, 822, 'Issue', 12, NULL, '2020-05-27 15:47:20+07', false);
INSERT INTO public.journals VALUES (3022, 822, 'Issue', 12, NULL, '2020-05-27 15:47:30+07', false);
INSERT INTO public.journals VALUES (3023, 823, 'Issue', 12, NULL, '2020-05-27 15:47:46+07', false);
INSERT INTO public.journals VALUES (3024, 823, 'Issue', 12, NULL, '2020-05-27 15:47:53+07', false);
INSERT INTO public.journals VALUES (3025, 813, 'Issue', 4, NULL, '2020-05-28 09:52:49+07', false);
INSERT INTO public.journals VALUES (3026, 737, 'Issue', 4, NULL, '2020-05-29 08:10:16+07', false);
INSERT INTO public.journals VALUES (3027, 742, 'Issue', 6, NULL, '2020-05-29 10:15:15+07', false);
INSERT INTO public.journals VALUES (3028, 745, 'Issue', 6, NULL, '2020-05-29 11:06:03+07', false);
INSERT INTO public.journals VALUES (3029, 745, 'Issue', 6, NULL, '2020-05-29 11:06:10+07', false);
INSERT INTO public.journals VALUES (3030, 742, 'Issue', 6, NULL, '2020-05-29 14:42:55+07', false);
INSERT INTO public.journals VALUES (3031, 745, 'Issue', 6, '<p>POST: https://api-quanlydaotao.gdtsolutions.vn/report/BangDiemThi</p>

<p>{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;classId&quot;: &quot;2684feb5-9095-11ea-a860-525400330bc0&quot;,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;subjectId&quot;: 10,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;examDate&quot;: &quot;2020-02-12&quot;,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;location&quot;: &quot;Ph&ograve;ng thi số 1&quot;<br />
}</p>
', '2020-05-29 14:43:38+07', false);
INSERT INTO public.journals VALUES (3032, 746, 'Issue', 6, NULL, '2020-05-29 17:49:41+07', false);
INSERT INTO public.journals VALUES (3033, 746, 'Issue', 6, NULL, '2020-05-29 17:49:51+07', false);
INSERT INTO public.journals VALUES (3034, 735, 'Issue', 10, NULL, '2020-05-30 08:03:37+07', false);
INSERT INTO public.journals VALUES (3035, 736, 'Issue', 4, NULL, '2020-05-30 13:23:36+07', false);
INSERT INTO public.journals VALUES (3036, 827, 'Issue', 12, NULL, '2020-05-30 15:32:25+07', false);
INSERT INTO public.journals VALUES (3037, 827, 'Issue', 12, NULL, '2020-05-30 15:32:32+07', false);
INSERT INTO public.journals VALUES (3038, 828, 'Issue', 12, NULL, '2020-05-30 16:37:28+07', false);
INSERT INTO public.journals VALUES (3039, 828, 'Issue', 12, NULL, '2020-05-30 16:37:34+07', false);
INSERT INTO public.journals VALUES (3040, 829, 'Issue', 12, NULL, '2020-05-30 17:04:22+07', false);
INSERT INTO public.journals VALUES (3041, 829, 'Issue', 12, NULL, '2020-05-30 17:04:30+07', false);
INSERT INTO public.journals VALUES (3042, 746, 'Issue', 6, '<p>POST: https://api-quanlydaotao.gdtsolutions.vn/report/TongKetLop</p>

<p>{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;classId&quot;: &quot;2684feb5-9095-11ea-a860-525400330bc0&quot;<br />
}</p>
', '2020-05-30 17:20:10+07', false);
INSERT INTO public.journals VALUES (3043, 733, 'Issue', 10, NULL, '2020-05-31 07:56:19+07', false);
INSERT INTO public.journals VALUES (3044, 829, 'Issue', 12, '', '2020-06-01 08:19:21+07', false);
INSERT INTO public.journals VALUES (3045, 378, 'Issue', 8, NULL, '2020-06-03 08:06:21+07', false);
INSERT INTO public.journals VALUES (3046, 379, 'Issue', 8, NULL, '2020-06-03 08:06:21+07', false);
INSERT INTO public.journals VALUES (3047, 382, 'Issue', 8, NULL, '2020-06-03 08:06:21+07', false);
INSERT INTO public.journals VALUES (3048, 383, 'Issue', 8, NULL, '2020-06-03 08:06:22+07', false);
INSERT INTO public.journals VALUES (3049, 378, 'Issue', 8, NULL, '2020-06-03 08:06:34+07', false);
INSERT INTO public.journals VALUES (3050, 379, 'Issue', 8, NULL, '2020-06-03 08:06:34+07', false);
INSERT INTO public.journals VALUES (3051, 382, 'Issue', 8, NULL, '2020-06-03 08:06:35+07', false);
INSERT INTO public.journals VALUES (3052, 383, 'Issue', 8, NULL, '2020-06-03 08:06:35+07', false);
INSERT INTO public.journals VALUES (3053, 753, 'Issue', 5, NULL, '2020-06-03 08:07:03+07', false);
INSERT INTO public.journals VALUES (3054, 754, 'Issue', 5, NULL, '2020-06-03 08:07:03+07', false);
INSERT INTO public.journals VALUES (3055, 755, 'Issue', 5, NULL, '2020-06-03 08:07:03+07', false);
INSERT INTO public.journals VALUES (3056, 756, 'Issue', 5, NULL, '2020-06-03 08:07:03+07', false);
INSERT INTO public.journals VALUES (3057, 757, 'Issue', 5, NULL, '2020-06-03 08:07:04+07', false);
INSERT INTO public.journals VALUES (3058, 758, 'Issue', 5, NULL, '2020-06-03 08:07:04+07', false);
INSERT INTO public.journals VALUES (3059, 719, 'Issue', 5, NULL, '2020-06-03 08:07:04+07', false);
INSERT INTO public.journals VALUES (3060, 720, 'Issue', 5, NULL, '2020-06-03 08:07:04+07', false);
INSERT INTO public.journals VALUES (3061, 721, 'Issue', 5, NULL, '2020-06-03 08:07:05+07', false);
INSERT INTO public.journals VALUES (3062, 722, 'Issue', 5, NULL, '2020-06-03 08:07:05+07', false);
INSERT INTO public.journals VALUES (3063, 723, 'Issue', 5, NULL, '2020-06-03 08:07:05+07', false);
INSERT INTO public.journals VALUES (3064, 775, 'Issue', 5, NULL, '2020-06-03 08:07:05+07', false);
INSERT INTO public.journals VALUES (3065, 794, 'Issue', 5, NULL, '2020-06-03 08:07:06+07', false);
INSERT INTO public.journals VALUES (3066, 795, 'Issue', 5, NULL, '2020-06-03 08:07:06+07', false);
INSERT INTO public.journals VALUES (3067, 797, 'Issue', 5, NULL, '2020-06-03 08:07:06+07', false);
INSERT INTO public.journals VALUES (3068, 798, 'Issue', 5, NULL, '2020-06-03 08:07:06+07', false);
INSERT INTO public.journals VALUES (3069, 800, 'Issue', 5, NULL, '2020-06-03 08:07:06+07', false);
INSERT INTO public.journals VALUES (3070, 816, 'Issue', 5, NULL, '2020-06-03 08:07:06+07', false);
INSERT INTO public.journals VALUES (3071, 820, 'Issue', 5, NULL, '2020-06-03 08:07:07+07', false);
INSERT INTO public.journals VALUES (3072, 821, 'Issue', 5, NULL, '2020-06-03 08:07:07+07', false);
INSERT INTO public.journals VALUES (3073, 716, 'Issue', 5, NULL, '2020-06-03 08:07:22+07', false);
INSERT INTO public.journals VALUES (3074, 717, 'Issue', 5, NULL, '2020-06-03 08:07:22+07', false);
INSERT INTO public.journals VALUES (3075, 718, 'Issue', 5, NULL, '2020-06-03 08:07:33+07', false);
INSERT INTO public.journals VALUES (3076, 792, 'Issue', 5, NULL, '2020-06-03 08:07:33+07', false);
INSERT INTO public.journals VALUES (3077, 799, 'Issue', 5, NULL, '2020-06-03 08:07:33+07', false);
INSERT INTO public.journals VALUES (3078, 802, 'Issue', 5, '', '2020-06-03 08:08:03+07', false);
INSERT INTO public.journals VALUES (3079, 815, 'Issue', 5, '', '2020-06-03 08:08:03+07', false);
INSERT INTO public.journals VALUES (3080, 802, 'Issue', 5, NULL, '2020-06-03 08:08:17+07', false);
INSERT INTO public.journals VALUES (3081, 815, 'Issue', 5, NULL, '2020-06-03 08:08:17+07', false);
INSERT INTO public.journals VALUES (3082, 647, 'Issue', 5, NULL, '2020-06-03 08:08:28+07', false);
INSERT INTO public.journals VALUES (3083, 802, 'Issue', 5, NULL, '2020-06-03 08:08:28+07', false);
INSERT INTO public.journals VALUES (3084, 815, 'Issue', 5, NULL, '2020-06-03 08:08:28+07', false);
INSERT INTO public.journals VALUES (3085, 801, 'Issue', 5, NULL, '2020-06-03 08:08:38+07', false);
INSERT INTO public.journals VALUES (3086, 12, 'Issue', 5, NULL, '2020-06-03 08:12:50+07', false);
INSERT INTO public.journals VALUES (3087, 51, 'Issue', 5, NULL, '2020-06-03 08:12:51+07', false);
INSERT INTO public.journals VALUES (3088, 145, 'Issue', 5, NULL, '2020-06-03 08:12:51+07', false);
INSERT INTO public.journals VALUES (3089, 146, 'Issue', 5, NULL, '2020-06-03 08:12:51+07', false);
INSERT INTO public.journals VALUES (3090, 18, 'Issue', 5, NULL, '2020-06-03 08:12:58+07', false);
INSERT INTO public.journals VALUES (3091, 144, 'Issue', 5, NULL, '2020-06-03 08:12:58+07', false);
INSERT INTO public.journals VALUES (3092, 746, 'Issue', 6, NULL, '2020-06-03 08:14:08+07', false);
INSERT INTO public.journals VALUES (3093, 374, 'Issue', 5, NULL, '2020-06-03 09:24:34+07', false);
INSERT INTO public.journals VALUES (3094, 375, 'Issue', 5, NULL, '2020-06-03 09:24:34+07', false);
INSERT INTO public.journals VALUES (3095, 374, 'Issue', 5, NULL, '2020-06-03 09:24:40+07', false);
INSERT INTO public.journals VALUES (3096, 375, 'Issue', 5, NULL, '2020-06-03 09:24:40+07', false);
INSERT INTO public.journals VALUES (3097, 378, 'Issue', 5, NULL, '2020-06-03 09:24:53+07', false);
INSERT INTO public.journals VALUES (3098, 379, 'Issue', 5, NULL, '2020-06-03 09:24:53+07', false);
INSERT INTO public.journals VALUES (3099, 382, 'Issue', 5, NULL, '2020-06-03 09:24:53+07', false);
INSERT INTO public.journals VALUES (3100, 383, 'Issue', 5, NULL, '2020-06-03 09:24:53+07', false);
INSERT INTO public.journals VALUES (3101, 374, 'Issue', 5, NULL, '2020-06-03 09:26:55+07', false);
INSERT INTO public.journals VALUES (3102, 375, 'Issue', 5, NULL, '2020-06-03 09:26:55+07', false);
INSERT INTO public.journals VALUES (3103, 829, 'Issue', 5, '', '2020-06-03 09:43:16+07', false);
INSERT INTO public.journals VALUES (3104, 830, 'Issue', 5, '', '2020-06-03 09:43:16+07', false);
INSERT INTO public.journals VALUES (3105, 747, 'Issue', 5, '', '2020-06-03 09:43:16+07', false);
INSERT INTO public.journals VALUES (3106, 748, 'Issue', 5, '', '2020-06-03 09:43:16+07', false);
INSERT INTO public.journals VALUES (3107, 749, 'Issue', 5, '', '2020-06-03 09:43:17+07', false);
INSERT INTO public.journals VALUES (3108, 750, 'Issue', 5, '', '2020-06-03 09:43:17+07', false);
INSERT INTO public.journals VALUES (3109, 751, 'Issue', 5, '', '2020-06-03 09:43:17+07', false);
INSERT INTO public.journals VALUES (3110, 259, 'Issue', 12, NULL, '2020-06-03 09:44:47+07', false);
INSERT INTO public.journals VALUES (3111, 711, 'Issue', 12, NULL, '2020-06-03 09:44:47+07', false);
INSERT INTO public.journals VALUES (3112, 712, 'Issue', 12, NULL, '2020-06-03 09:44:48+07', false);
INSERT INTO public.journals VALUES (3113, 710, 'Issue', 12, NULL, '2020-06-03 09:44:56+07', false);
INSERT INTO public.journals VALUES (3114, 761, 'Issue', 12, NULL, '2020-06-03 09:45:08+07', false);
INSERT INTO public.journals VALUES (3115, 762, 'Issue', 12, NULL, '2020-06-03 09:45:09+07', false);
INSERT INTO public.journals VALUES (3116, 763, 'Issue', 12, NULL, '2020-06-03 09:45:09+07', false);
INSERT INTO public.journals VALUES (3117, 785, 'Issue', 12, NULL, '2020-06-03 09:45:09+07', false);
INSERT INTO public.journals VALUES (3118, 786, 'Issue', 12, NULL, '2020-06-03 09:45:09+07', false);
INSERT INTO public.journals VALUES (3119, 787, 'Issue', 12, NULL, '2020-06-03 09:45:09+07', false);
INSERT INTO public.journals VALUES (3120, 793, 'Issue', 12, NULL, '2020-06-03 09:45:09+07', false);
INSERT INTO public.journals VALUES (3121, 803, 'Issue', 12, NULL, '2020-06-03 09:45:10+07', false);
INSERT INTO public.journals VALUES (3122, 804, 'Issue', 12, NULL, '2020-06-03 09:45:10+07', false);
INSERT INTO public.journals VALUES (3123, 822, 'Issue', 12, NULL, '2020-06-03 09:45:10+07', false);
INSERT INTO public.journals VALUES (3124, 260, 'Issue', 12, NULL, '2020-06-03 09:45:55+07', false);
INSERT INTO public.journals VALUES (3125, 601, 'Issue', 12, NULL, '2020-06-03 09:45:55+07', false);
INSERT INTO public.journals VALUES (3126, 823, 'Issue', 12, NULL, '2020-06-03 09:45:55+07', false);
INSERT INTO public.journals VALUES (3127, 827, 'Issue', 12, NULL, '2020-06-03 09:45:55+07', false);
INSERT INTO public.journals VALUES (3128, 828, 'Issue', 12, NULL, '2020-06-03 09:45:55+07', false);
INSERT INTO public.journals VALUES (3129, 668, 'Issue', 12, NULL, '2020-06-03 09:46:14+07', false);
INSERT INTO public.journals VALUES (3130, 669, 'Issue', 12, NULL, '2020-06-03 09:46:14+07', false);
INSERT INTO public.journals VALUES (3131, 609, 'Issue', 12, NULL, '2020-06-03 09:46:29+07', false);
INSERT INTO public.journals VALUES (3132, 611, 'Issue', 12, NULL, '2020-06-03 09:46:29+07', false);
INSERT INTO public.journals VALUES (3133, 709, 'Issue', 12, NULL, '2020-06-03 09:46:29+07', false);
INSERT INTO public.journals VALUES (3134, 752, 'Issue', 12, NULL, '2020-06-03 09:46:30+07', false);
INSERT INTO public.journals VALUES (3135, 759, 'Issue', 12, NULL, '2020-06-03 09:46:30+07', false);
INSERT INTO public.journals VALUES (3136, 760, 'Issue', 12, NULL, '2020-06-03 09:46:30+07', false);
INSERT INTO public.journals VALUES (3137, 832, 'Issue', 12, '', '2020-06-03 10:05:28+07', false);
INSERT INTO public.journals VALUES (3139, 835, 'Issue', 12, '', '2020-06-03 10:05:29+07', false);
INSERT INTO public.journals VALUES (3141, 837, 'Issue', 12, '', '2020-06-03 10:05:29+07', false);
INSERT INTO public.journals VALUES (3143, 839, 'Issue', 12, '', '2020-06-03 10:05:29+07', false);
INSERT INTO public.journals VALUES (3144, 842, 'Issue', 12, '', '2020-06-03 10:05:30+07', false);
INSERT INTO public.journals VALUES (3145, 843, 'Issue', 12, '', '2020-06-03 10:05:30+07', false);
INSERT INTO public.journals VALUES (3147, 805, 'Issue', 5, NULL, '2020-06-03 10:05:48+07', false);
INSERT INTO public.journals VALUES (3148, 806, 'Issue', 5, NULL, '2020-06-03 10:05:48+07', false);
INSERT INTO public.journals VALUES (3149, 807, 'Issue', 5, NULL, '2020-06-03 10:05:48+07', false);
INSERT INTO public.journals VALUES (3150, 808, 'Issue', 5, NULL, '2020-06-03 10:05:48+07', false);
INSERT INTO public.journals VALUES (3151, 809, 'Issue', 5, NULL, '2020-06-03 10:05:48+07', false);
INSERT INTO public.journals VALUES (3152, 813, 'Issue', 5, NULL, '2020-06-03 10:05:49+07', false);
INSERT INTO public.journals VALUES (3153, 735, 'Issue', 5, NULL, '2020-06-03 10:05:49+07', false);
INSERT INTO public.journals VALUES (3154, 736, 'Issue', 5, NULL, '2020-06-03 10:05:49+07', false);
INSERT INTO public.journals VALUES (3155, 737, 'Issue', 5, NULL, '2020-06-03 10:05:49+07', false);
INSERT INTO public.journals VALUES (3156, 738, 'Issue', 5, NULL, '2020-06-03 10:05:49+07', false);
INSERT INTO public.journals VALUES (3157, 845, 'Issue', 6, '', '2020-06-03 10:07:15+07', false);
INSERT INTO public.journals VALUES (3158, 830, 'Issue', 12, NULL, '2020-06-03 10:10:26+07', false);
INSERT INTO public.journals VALUES (3159, 830, 'Issue', 12, NULL, '2020-06-03 10:10:52+07', false);
INSERT INTO public.journals VALUES (3160, 831, 'Issue', 12, NULL, '2020-06-03 10:10:57+07', false);
INSERT INTO public.journals VALUES (3161, 498, 'Issue', 5, NULL, '2020-06-03 10:11:44+07', false);
INSERT INTO public.journals VALUES (3162, 504, 'Issue', 5, NULL, '2020-06-03 10:11:44+07', false);
INSERT INTO public.journals VALUES (3163, 507, 'Issue', 5, NULL, '2020-06-03 10:11:45+07', false);
INSERT INTO public.journals VALUES (3164, 500, 'Issue', 5, NULL, '2020-06-03 10:11:45+07', false);
INSERT INTO public.journals VALUES (3165, 513, 'Issue', 5, NULL, '2020-06-03 10:11:45+07', false);
INSERT INTO public.journals VALUES (3166, 519, 'Issue', 5, NULL, '2020-06-03 10:11:45+07', false);
INSERT INTO public.journals VALUES (3167, 502, 'Issue', 5, NULL, '2020-06-03 10:11:45+07', false);
INSERT INTO public.journals VALUES (3168, 730, 'Issue', 5, NULL, '2020-06-03 10:11:45+07', false);
INSERT INTO public.journals VALUES (3169, 733, 'Issue', 5, NULL, '2020-06-03 10:11:45+07', false);
INSERT INTO public.journals VALUES (3170, 595, 'Issue', 5, NULL, '2020-06-03 10:11:45+07', false);
INSERT INTO public.journals VALUES (3171, 598, 'Issue', 5, NULL, '2020-06-03 10:11:45+07', false);
INSERT INTO public.journals VALUES (3172, 525, 'Issue', 5, NULL, '2020-06-03 10:13:25+07', false);
INSERT INTO public.journals VALUES (3173, 568, 'Issue', 5, NULL, '2020-06-03 10:13:25+07', false);
INSERT INTO public.journals VALUES (3174, 555, 'Issue', 5, NULL, '2020-06-03 10:13:25+07', false);
INSERT INTO public.journals VALUES (3175, 565, 'Issue', 5, NULL, '2020-06-03 10:13:25+07', false);
INSERT INTO public.journals VALUES (3176, 518, 'Issue', 5, NULL, '2020-06-03 10:13:25+07', false);
INSERT INTO public.journals VALUES (3177, 523, 'Issue', 5, NULL, '2020-06-03 10:13:25+07', false);
INSERT INTO public.journals VALUES (3178, 824, 'Issue', 5, NULL, '2020-06-03 10:13:25+07', false);
INSERT INTO public.journals VALUES (3179, 826, 'Issue', 5, NULL, '2020-06-03 10:13:25+07', false);
INSERT INTO public.journals VALUES (3180, 724, 'Issue', 5, NULL, '2020-06-03 10:13:26+07', false);
INSERT INTO public.journals VALUES (3181, 727, 'Issue', 5, NULL, '2020-06-03 10:13:26+07', false);
INSERT INTO public.journals VALUES (3182, 728, 'Issue', 5, NULL, '2020-06-03 10:13:26+07', false);
INSERT INTO public.journals VALUES (3183, 805, 'Issue', 5, NULL, '2020-06-03 10:13:26+07', false);
INSERT INTO public.journals VALUES (3184, 806, 'Issue', 5, NULL, '2020-06-03 10:13:26+07', false);
INSERT INTO public.journals VALUES (3185, 807, 'Issue', 5, NULL, '2020-06-03 10:13:26+07', false);
INSERT INTO public.journals VALUES (3186, 808, 'Issue', 5, NULL, '2020-06-03 10:13:26+07', false);
INSERT INTO public.journals VALUES (3187, 809, 'Issue', 5, NULL, '2020-06-03 10:13:26+07', false);
INSERT INTO public.journals VALUES (3188, 811, 'Issue', 5, NULL, '2020-06-03 10:13:26+07', false);
INSERT INTO public.journals VALUES (3189, 812, 'Issue', 5, NULL, '2020-06-03 10:13:27+07', false);
INSERT INTO public.journals VALUES (3190, 813, 'Issue', 5, NULL, '2020-06-03 10:13:27+07', false);
INSERT INTO public.journals VALUES (3191, 732, 'Issue', 5, NULL, '2020-06-03 10:13:27+07', false);
INSERT INTO public.journals VALUES (3192, 733, 'Issue', 5, NULL, '2020-06-03 10:13:27+07', false);
INSERT INTO public.journals VALUES (3193, 734, 'Issue', 5, NULL, '2020-06-03 10:13:27+07', false);
INSERT INTO public.journals VALUES (3194, 735, 'Issue', 5, NULL, '2020-06-03 10:13:27+07', false);
INSERT INTO public.journals VALUES (3195, 736, 'Issue', 5, NULL, '2020-06-03 10:13:27+07', false);
INSERT INTO public.journals VALUES (3196, 737, 'Issue', 5, NULL, '2020-06-03 10:13:27+07', false);
INSERT INTO public.journals VALUES (3197, 597, 'Issue', 5, NULL, '2020-06-03 10:13:27+07', false);
INSERT INTO public.journals VALUES (3198, 600, 'Issue', 5, NULL, '2020-06-03 10:13:28+07', false);
INSERT INTO public.journals VALUES (3199, 739, 'Issue', 5, NULL, '2020-06-03 10:13:28+07', false);
INSERT INTO public.journals VALUES (3200, 740, 'Issue', 5, NULL, '2020-06-03 10:13:28+07', false);
INSERT INTO public.journals VALUES (3201, 788, 'Issue', 5, NULL, '2020-06-03 10:13:28+07', false);
INSERT INTO public.journals VALUES (3202, 789, 'Issue', 5, NULL, '2020-06-03 10:13:28+07', false);
INSERT INTO public.journals VALUES (3203, 769, 'Issue', 5, NULL, '2020-06-03 10:13:28+07', false);
INSERT INTO public.journals VALUES (3204, 767, 'Issue', 5, NULL, '2020-06-03 10:13:28+07', false);
INSERT INTO public.journals VALUES (3205, 781, 'Issue', 5, NULL, '2020-06-03 10:13:28+07', false);
INSERT INTO public.journals VALUES (3206, 782, 'Issue', 5, NULL, '2020-06-03 10:13:28+07', false);
INSERT INTO public.journals VALUES (3207, 783, 'Issue', 5, NULL, '2020-06-03 10:13:28+07', false);
INSERT INTO public.journals VALUES (3208, 784, 'Issue', 5, NULL, '2020-06-03 10:13:29+07', false);
INSERT INTO public.journals VALUES (3209, 504, 'Issue', 5, NULL, '2020-06-03 10:13:50+07', false);
INSERT INTO public.journals VALUES (3210, 507, 'Issue', 5, NULL, '2020-06-03 10:13:50+07', false);
INSERT INTO public.journals VALUES (3211, 513, 'Issue', 5, NULL, '2020-06-03 10:13:50+07', false);
INSERT INTO public.journals VALUES (3212, 519, 'Issue', 5, NULL, '2020-06-03 10:13:50+07', false);
INSERT INTO public.journals VALUES (3213, 502, 'Issue', 5, NULL, '2020-06-03 10:13:50+07', false);
INSERT INTO public.journals VALUES (3214, 730, 'Issue', 5, NULL, '2020-06-03 10:13:51+07', false);
INSERT INTO public.journals VALUES (3215, 598, 'Issue', 5, NULL, '2020-06-03 10:13:51+07', false);
INSERT INTO public.journals VALUES (3216, 738, 'Issue', 5, NULL, '2020-06-03 10:13:51+07', false);
INSERT INTO public.journals VALUES (3217, 766, 'Issue', 5, NULL, '2020-06-03 10:13:51+07', false);
INSERT INTO public.journals VALUES (3218, 498, 'Issue', 5, NULL, '2020-06-03 10:13:59+07', false);
INSERT INTO public.journals VALUES (3219, 500, 'Issue', 5, NULL, '2020-06-03 10:14:00+07', false);
INSERT INTO public.journals VALUES (3220, 595, 'Issue', 5, NULL, '2020-06-03 10:14:00+07', false);
INSERT INTO public.journals VALUES (3221, 825, 'Issue', 5, '', '2020-06-03 10:27:12+07', false);
INSERT INTO public.journals VALUES (3222, 810, 'Issue', 5, '', '2020-06-03 10:27:13+07', false);
INSERT INTO public.journals VALUES (3223, 814, 'Issue', 5, '', '2020-06-03 10:27:13+07', false);
INSERT INTO public.journals VALUES (3224, 780, 'Issue', 5, '', '2020-06-03 10:27:13+07', false);
INSERT INTO public.journals VALUES (3225, 847, 'Issue', 6, NULL, '2020-06-03 10:36:10+07', false);
INSERT INTO public.journals VALUES (3226, 848, 'Issue', 6, NULL, '2020-06-03 10:36:28+07', false);
INSERT INTO public.journals VALUES (3227, 851, 'Issue', 6, NULL, '2020-06-03 10:36:36+07', false);
INSERT INTO public.journals VALUES (3228, 852, 'Issue', 6, '', '2020-06-03 10:38:28+07', false);
INSERT INTO public.journals VALUES (3229, 857, 'Issue', 6, NULL, '2020-06-03 10:41:50+07', false);
INSERT INTO public.journals VALUES (3230, 858, 'Issue', 6, NULL, '2020-06-03 10:41:57+07', false);
INSERT INTO public.journals VALUES (3231, 856, 'Issue', 6, NULL, '2020-06-03 10:44:48+07', false);
INSERT INTO public.journals VALUES (3232, 856, 'Issue', 6, '', '2020-06-03 10:45:20+07', false);
INSERT INTO public.journals VALUES (3233, 847, 'Issue', 6, NULL, '2020-06-03 10:45:35+07', false);
INSERT INTO public.journals VALUES (3234, 848, 'Issue', 6, NULL, '2020-06-03 10:45:42+07', false);
INSERT INTO public.journals VALUES (3235, 846, 'Issue', 6, '', '2020-06-03 10:46:17+07', false);
INSERT INTO public.journals VALUES (3236, 855, 'Issue', 6, NULL, '2020-06-03 10:46:57+07', false);
INSERT INTO public.journals VALUES (3237, 747, 'Issue', 6, '<p>POST: https://api-quanlydaotao.gdtsolutions.vn/report/KetQuaHocTap</p>

<blockquote>{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;studentId&quot;: &quot;4b9f2ce7-92d8-4763-b9ff-8808c615d604&quot;<br />
}</blockquote>
', '2020-06-03 11:12:36+07', false);
INSERT INTO public.journals VALUES (3238, 860, 'Issue', 5, '', '2020-06-03 11:33:08+07', false);
INSERT INTO public.journals VALUES (3239, 861, 'Issue', 5, '', '2020-06-03 11:33:21+07', false);
INSERT INTO public.journals VALUES (3240, 862, 'Issue', 5, '', '2020-06-03 11:33:32+07', false);
INSERT INTO public.journals VALUES (3241, 863, 'Issue', 5, '', '2020-06-03 11:33:51+07', false);
INSERT INTO public.journals VALUES (3242, 864, 'Issue', 5, '', '2020-06-03 11:34:42+07', false);
INSERT INTO public.journals VALUES (3243, 865, 'Issue', 5, '', '2020-06-03 11:37:14+07', false);
INSERT INTO public.journals VALUES (3244, 865, 'Issue', 5, '', '2020-06-03 11:39:45+07', false);
INSERT INTO public.journals VALUES (3245, 866, 'Issue', 5, '', '2020-06-03 11:39:45+07', false);
INSERT INTO public.journals VALUES (3246, 211, 'Issue', 5, NULL, '2020-06-03 11:41:53+07', false);
INSERT INTO public.journals VALUES (3247, 212, 'Issue', 5, NULL, '2020-06-03 11:41:53+07', false);
INSERT INTO public.journals VALUES (3252, 215, 'Issue', 5, NULL, '2020-06-03 11:41:53+07', false);
INSERT INTO public.journals VALUES (3253, 216, 'Issue', 5, NULL, '2020-06-03 11:41:53+07', false);
INSERT INTO public.journals VALUES (3254, 217, 'Issue', 5, NULL, '2020-06-03 11:41:53+07', false);
INSERT INTO public.journals VALUES (3255, 218, 'Issue', 5, NULL, '2020-06-03 11:41:53+07', false);
INSERT INTO public.journals VALUES (3256, 220, 'Issue', 5, NULL, '2020-06-03 11:41:54+07', false);
INSERT INTO public.journals VALUES (3257, 221, 'Issue', 5, NULL, '2020-06-03 11:41:54+07', false);
INSERT INTO public.journals VALUES (3258, 222, 'Issue', 5, NULL, '2020-06-03 11:41:54+07', false);
INSERT INTO public.journals VALUES (3259, 223, 'Issue', 5, NULL, '2020-06-03 11:41:54+07', false);
INSERT INTO public.journals VALUES (3260, 224, 'Issue', 5, NULL, '2020-06-03 11:41:54+07', false);
INSERT INTO public.journals VALUES (3261, 225, 'Issue', 5, NULL, '2020-06-03 11:41:54+07', false);
INSERT INTO public.journals VALUES (3262, 246, 'Issue', 5, NULL, '2020-06-03 11:41:54+07', false);
INSERT INTO public.journals VALUES (3263, 247, 'Issue', 5, NULL, '2020-06-03 11:41:54+07', false);
INSERT INTO public.journals VALUES (3264, 248, 'Issue', 5, NULL, '2020-06-03 11:41:54+07', false);
INSERT INTO public.journals VALUES (3265, 338, 'Issue', 5, NULL, '2020-06-03 11:41:55+07', false);
INSERT INTO public.journals VALUES (3266, 372, 'Issue', 5, NULL, '2020-06-03 11:41:55+07', false);
INSERT INTO public.journals VALUES (3267, 303, 'Issue', 5, NULL, '2020-06-03 11:41:55+07', false);
INSERT INTO public.journals VALUES (3268, 360, 'Issue', 5, NULL, '2020-06-03 11:41:55+07', false);
INSERT INTO public.journals VALUES (3269, 300, 'Issue', 5, NULL, '2020-06-03 11:41:55+07', false);
INSERT INTO public.journals VALUES (3270, 344, 'Issue', 5, NULL, '2020-06-03 11:41:55+07', false);
INSERT INTO public.journals VALUES (3271, 345, 'Issue', 5, NULL, '2020-06-03 11:41:55+07', false);
INSERT INTO public.journals VALUES (3272, 299, 'Issue', 5, NULL, '2020-06-03 11:41:55+07', false);
INSERT INTO public.journals VALUES (3273, 346, 'Issue', 5, NULL, '2020-06-03 11:41:55+07', false);
INSERT INTO public.journals VALUES (3274, 347, 'Issue', 5, NULL, '2020-06-03 11:41:56+07', false);
INSERT INTO public.journals VALUES (3275, 348, 'Issue', 5, NULL, '2020-06-03 11:41:56+07', false);
INSERT INTO public.journals VALUES (3276, 349, 'Issue', 5, NULL, '2020-06-03 11:41:56+07', false);
INSERT INTO public.journals VALUES (3277, 350, 'Issue', 5, NULL, '2020-06-03 11:41:56+07', false);
INSERT INTO public.journals VALUES (3278, 351, 'Issue', 5, NULL, '2020-06-03 11:41:56+07', false);
INSERT INTO public.journals VALUES (3279, 352, 'Issue', 5, NULL, '2020-06-03 11:41:56+07', false);
INSERT INTO public.journals VALUES (3280, 355, 'Issue', 5, NULL, '2020-06-03 11:41:56+07', false);
INSERT INTO public.journals VALUES (3281, 358, 'Issue', 5, NULL, '2020-06-03 11:41:57+07', false);
INSERT INTO public.journals VALUES (3282, 301, 'Issue', 5, NULL, '2020-06-03 11:41:57+07', false);
INSERT INTO public.journals VALUES (3283, 359, 'Issue', 5, NULL, '2020-06-03 11:41:57+07', false);
INSERT INTO public.journals VALUES (3284, 304, 'Issue', 5, NULL, '2020-06-03 11:41:57+07', false);
INSERT INTO public.journals VALUES (3285, 361, 'Issue', 5, NULL, '2020-06-03 11:41:57+07', false);
INSERT INTO public.journals VALUES (3286, 207, 'Issue', 5, NULL, '2020-06-03 11:42:06+07', false);
INSERT INTO public.journals VALUES (3287, 209, 'Issue', 5, NULL, '2020-06-03 11:42:06+07', false);
INSERT INTO public.journals VALUES (3288, 810, 'Issue', 13, NULL, '2020-06-03 13:50:43+07', false);
INSERT INTO public.journals VALUES (3289, 814, 'Issue', 13, NULL, '2020-06-03 13:50:43+07', false);
INSERT INTO public.journals VALUES (3290, 768, 'Issue', 13, NULL, '2020-06-03 13:50:43+07', false);
INSERT INTO public.journals VALUES (3291, 780, 'Issue', 13, NULL, '2020-06-03 13:50:43+07', false);
INSERT INTO public.journals VALUES (3292, 814, 'Issue', 13, NULL, '2020-06-03 13:51:27+07', false);
INSERT INTO public.journals VALUES (3293, 810, 'Issue', 13, NULL, '2020-06-03 14:50:28+07', false);
INSERT INTO public.journals VALUES (3294, 780, 'Issue', 13, NULL, '2020-06-03 14:50:46+07', false);
INSERT INTO public.journals VALUES (3295, 865, 'Issue', 13, NULL, '2020-06-03 14:51:13+07', false);
INSERT INTO public.journals VALUES (3296, 866, 'Issue', 13, NULL, '2020-06-03 14:51:26+07', false);
INSERT INTO public.journals VALUES (3297, 862, 'Issue', 13, NULL, '2020-06-03 14:51:43+07', false);
INSERT INTO public.journals VALUES (3298, 860, 'Issue', 13, NULL, '2020-06-03 16:20:15+07', false);
INSERT INTO public.journals VALUES (3299, 861, 'Issue', 13, NULL, '2020-06-03 16:20:38+07', false);
INSERT INTO public.journals VALUES (3300, 842, 'Issue', 12, NULL, '2020-06-03 16:34:38+07', false);
INSERT INTO public.journals VALUES (3301, 842, 'Issue', 12, NULL, '2020-06-03 16:35:05+07', false);
INSERT INTO public.journals VALUES (3302, 867, 'Issue', 12, NULL, '2020-06-03 16:37:23+07', false);
INSERT INTO public.journals VALUES (3303, 867, 'Issue', 12, NULL, '2020-06-03 16:37:29+07', false);
INSERT INTO public.journals VALUES (3304, 747, 'Issue', 6, NULL, '2020-06-03 16:38:46+07', false);
INSERT INTO public.journals VALUES (3305, 747, 'Issue', 6, NULL, '2020-06-03 16:38:58+07', false);
INSERT INTO public.journals VALUES (3306, 831, 'Issue', 12, '', '2020-06-04 08:29:22+07', false);
INSERT INTO public.journals VALUES (3307, 832, 'Issue', 12, '', '2020-06-04 08:29:22+07', false);
INSERT INTO public.journals VALUES (3309, 835, 'Issue', 12, '', '2020-06-04 08:29:22+07', false);
INSERT INTO public.journals VALUES (3310, 837, 'Issue', 12, '', '2020-06-04 08:29:23+07', false);
INSERT INTO public.journals VALUES (3311, 839, 'Issue', 12, '', '2020-06-04 08:29:23+07', false);
INSERT INTO public.journals VALUES (3312, 843, 'Issue', 12, '', '2020-06-04 08:29:23+07', false);
INSERT INTO public.journals VALUES (3314, 835, 'Issue', 12, NULL, '2020-06-04 08:29:38+07', false);
INSERT INTO public.journals VALUES (3315, 864, 'Issue', 13, NULL, '2020-06-04 08:33:18+07', false);
INSERT INTO public.journals VALUES (3316, 863, 'Issue', 13, NULL, '2020-06-04 08:33:22+07', false);
INSERT INTO public.journals VALUES (3317, 868, 'Issue', 13, '', '2020-06-04 08:50:56+07', false);
INSERT INTO public.journals VALUES (3318, 832, 'Issue', 12, '', '2020-06-04 09:02:22+07', false);
INSERT INTO public.journals VALUES (3319, 868, 'Issue', 10, '', '2020-06-04 09:02:38+07', false);
INSERT INTO public.journals VALUES (3320, 831, 'Issue', 12, NULL, '2020-06-04 09:03:55+07', false);
INSERT INTO public.journals VALUES (3321, 843, 'Issue', 12, NULL, '2020-06-04 09:04:06+07', false);
INSERT INTO public.journals VALUES (3322, 831, 'Issue', 12, '', '2020-06-04 09:04:25+07', false);
INSERT INTO public.journals VALUES (3323, 837, 'Issue', 12, '', '2020-06-04 09:04:25+07', false);
INSERT INTO public.journals VALUES (3324, 839, 'Issue', 12, '', '2020-06-04 09:04:25+07', false);
INSERT INTO public.journals VALUES (3326, 869, 'Issue', 12, NULL, '2020-06-04 09:05:31+07', false);
INSERT INTO public.journals VALUES (3327, 839, 'Issue', 12, '', '2020-06-04 09:06:55+07', false);
INSERT INTO public.journals VALUES (3328, 837, 'Issue', 12, '', '2020-06-04 09:07:51+07', false);
INSERT INTO public.journals VALUES (3329, 863, 'Issue', 5, '', '2020-06-04 10:03:03+07', false);
INSERT INTO public.journals VALUES (3330, 864, 'Issue', 5, '', '2020-06-04 10:03:03+07', false);
INSERT INTO public.journals VALUES (3331, 835, 'Issue', 12, '', '2020-06-04 14:15:20+07', false);
INSERT INTO public.journals VALUES (3332, 835, 'Issue', 12, '', '2020-06-04 14:56:17+07', false);
INSERT INTO public.journals VALUES (3333, 835, 'Issue', 12, NULL, '2020-06-04 15:03:39+07', false);
INSERT INTO public.journals VALUES (3334, 839, 'Issue', 12, NULL, '2020-06-04 15:17:40+07', false);
INSERT INTO public.journals VALUES (3335, 839, 'Issue', 12, NULL, '2020-06-04 15:46:06+07', false);
INSERT INTO public.journals VALUES (3336, 835, 'Issue', 12, NULL, '2020-06-04 15:46:12+07', false);
INSERT INTO public.journals VALUES (3337, 839, 'Issue', 12, NULL, '2020-06-04 15:46:22+07', false);
INSERT INTO public.journals VALUES (3338, 843, 'Issue', 12, '', '2020-06-05 08:58:07+07', false);
INSERT INTO public.journals VALUES (3339, 832, 'Issue', 12, '', '2020-06-05 08:58:07+07', false);
INSERT INTO public.journals VALUES (3340, 748, 'Issue', 12, '', '2020-06-05 08:58:08+07', false);
INSERT INTO public.journals VALUES (3341, 749, 'Issue', 12, '', '2020-06-05 08:58:08+07', false);
INSERT INTO public.journals VALUES (3342, 750, 'Issue', 12, '', '2020-06-05 08:58:08+07', false);
INSERT INTO public.journals VALUES (3343, 751, 'Issue', 12, '', '2020-06-05 08:58:08+07', false);
INSERT INTO public.journals VALUES (3344, 853, 'Issue', 12, '', '2020-06-05 08:59:21+07', false);
INSERT INTO public.journals VALUES (3345, 854, 'Issue', 12, '', '2020-06-05 08:59:22+07', false);
INSERT INTO public.journals VALUES (3346, 855, 'Issue', 12, '', '2020-06-05 08:59:22+07', false);
INSERT INTO public.journals VALUES (3348, 832, 'Issue', 12, '', '2020-06-05 09:21:17+07', false);
INSERT INTO public.journals VALUES (3349, 749, 'Issue', 12, '', '2020-06-05 09:21:54+07', false);
INSERT INTO public.journals VALUES (3350, 750, 'Issue', 12, '', '2020-06-05 09:21:54+07', false);
INSERT INTO public.journals VALUES (3351, 751, 'Issue', 12, '', '2020-06-05 09:21:54+07', false);
INSERT INTO public.journals VALUES (3352, 853, 'Issue', 12, '', '2020-06-05 09:21:54+07', false);
INSERT INTO public.journals VALUES (3353, 854, 'Issue', 12, '', '2020-06-05 09:21:54+07', false);
INSERT INTO public.journals VALUES (3354, 855, 'Issue', 12, '', '2020-06-05 09:21:54+07', false);
INSERT INTO public.journals VALUES (3355, 750, 'Issue', 12, '', '2020-06-05 09:23:00+07', false);
INSERT INTO public.journals VALUES (3356, 751, 'Issue', 12, '', '2020-06-05 09:23:00+07', false);
INSERT INTO public.journals VALUES (3357, 853, 'Issue', 12, '', '2020-06-05 09:23:00+07', false);
INSERT INTO public.journals VALUES (3358, 854, 'Issue', 12, '', '2020-06-05 09:23:00+07', false);
INSERT INTO public.journals VALUES (3359, 855, 'Issue', 12, '', '2020-06-05 09:23:01+07', false);
INSERT INTO public.journals VALUES (3360, 750, 'Issue', 12, '', '2020-06-05 09:23:49+07', false);
INSERT INTO public.journals VALUES (3361, 751, 'Issue', 12, '', '2020-06-05 09:23:49+07', false);
INSERT INTO public.journals VALUES (3362, 854, 'Issue', 12, '', '2020-06-05 09:23:49+07', false);
INSERT INTO public.journals VALUES (3363, 751, 'Issue', 12, '', '2020-06-05 09:24:13+07', false);
INSERT INTO public.journals VALUES (3364, 854, 'Issue', 12, '', '2020-06-05 09:24:31+07', false);
INSERT INTO public.journals VALUES (3365, 750, 'Issue', 12, '', '2020-06-05 09:25:05+07', false);
INSERT INTO public.journals VALUES (3366, 854, 'Issue', 12, '', '2020-06-05 09:25:35+07', false);
INSERT INTO public.journals VALUES (3367, 751, 'Issue', 12, '', '2020-06-05 09:25:51+07', false);
INSERT INTO public.journals VALUES (3369, 353, 'Issue', 5, NULL, '2020-06-05 10:49:12+07', false);
INSERT INTO public.journals VALUES (3370, 354, 'Issue', 5, NULL, '2020-06-05 10:49:12+07', false);
INSERT INTO public.journals VALUES (3371, 239, 'Issue', 5, NULL, '2020-06-05 10:49:12+07', false);
INSERT INTO public.journals VALUES (3372, 240, 'Issue', 5, NULL, '2020-06-05 10:49:12+07', false);
INSERT INTO public.journals VALUES (3373, 356, 'Issue', 5, NULL, '2020-06-05 10:49:13+07', false);
INSERT INTO public.journals VALUES (3374, 384, 'Issue', 5, NULL, '2020-06-05 10:49:13+07', false);
INSERT INTO public.journals VALUES (3375, 387, 'Issue', 5, NULL, '2020-06-05 10:49:13+07', false);
INSERT INTO public.journals VALUES (3376, 343, 'Issue', 5, NULL, '2020-06-05 10:49:13+07', false);
INSERT INTO public.journals VALUES (3377, 353, 'Issue', 5, NULL, '2020-06-05 10:49:28+07', false);
INSERT INTO public.journals VALUES (3378, 354, 'Issue', 5, NULL, '2020-06-05 10:49:29+07', false);
INSERT INTO public.journals VALUES (3379, 239, 'Issue', 5, NULL, '2020-06-05 10:49:29+07', false);
INSERT INTO public.journals VALUES (3380, 240, 'Issue', 5, NULL, '2020-06-05 10:49:29+07', false);
INSERT INTO public.journals VALUES (3381, 356, 'Issue', 5, NULL, '2020-06-05 10:49:29+07', false);
INSERT INTO public.journals VALUES (3382, 384, 'Issue', 5, NULL, '2020-06-05 10:49:29+07', false);
INSERT INTO public.journals VALUES (3383, 387, 'Issue', 5, NULL, '2020-06-05 10:49:29+07', false);
INSERT INTO public.journals VALUES (3384, 343, 'Issue', 5, NULL, '2020-06-05 10:49:30+07', false);
INSERT INTO public.journals VALUES (3385, 238, 'Issue', 5, NULL, '2020-06-05 10:49:42+07', false);
INSERT INTO public.journals VALUES (3386, 242, 'Issue', 5, NULL, '2020-06-05 10:49:43+07', false);
INSERT INTO public.journals VALUES (3387, 244, 'Issue', 5, NULL, '2020-06-05 10:49:43+07', false);
INSERT INTO public.journals VALUES (3388, 245, 'Issue', 5, NULL, '2020-06-05 10:49:43+07', false);
INSERT INTO public.journals VALUES (3389, 238, 'Issue', 5, NULL, '2020-06-05 10:49:49+07', false);
INSERT INTO public.journals VALUES (3390, 242, 'Issue', 5, NULL, '2020-06-05 10:49:50+07', false);
INSERT INTO public.journals VALUES (3391, 244, 'Issue', 5, NULL, '2020-06-05 10:49:50+07', false);
INSERT INTO public.journals VALUES (3392, 245, 'Issue', 5, NULL, '2020-06-05 10:49:50+07', false);
INSERT INTO public.journals VALUES (3393, 226, 'Issue', 5, NULL, '2020-06-05 10:49:56+07', false);
INSERT INTO public.journals VALUES (3394, 226, 'Issue', 5, NULL, '2020-06-05 10:50:01+07', false);
INSERT INTO public.journals VALUES (3395, 335, 'Issue', 5, '', '2020-06-05 10:54:55+07', false);
INSERT INTO public.journals VALUES (3396, 336, 'Issue', 5, '', '2020-06-05 10:54:56+07', false);
INSERT INTO public.journals VALUES (3397, 337, 'Issue', 5, '', '2020-06-05 10:54:56+07', false);
INSERT INTO public.journals VALUES (3401, 862, 'Issue', 10, NULL, '2020-06-05 14:54:49+07', false);
INSERT INTO public.journals VALUES (3402, 862, 'Issue', 10, NULL, '2020-06-05 14:54:55+07', false);
INSERT INTO public.journals VALUES (3403, 866, 'Issue', 10, NULL, '2020-06-05 14:55:11+07', false);
INSERT INTO public.journals VALUES (3404, 866, 'Issue', 10, NULL, '2020-06-05 14:55:17+07', false);
INSERT INTO public.journals VALUES (3405, 843, 'Issue', 12, NULL, '2020-06-06 08:59:25+07', false);
INSERT INTO public.journals VALUES (3406, 843, 'Issue', 12, NULL, '2020-06-06 08:59:31+07', false);
INSERT INTO public.journals VALUES (3407, 831, 'Issue', 12, NULL, '2020-06-06 13:45:54+07', false);
INSERT INTO public.journals VALUES (3408, 837, 'Issue', 12, NULL, '2020-06-06 13:46:00+07', false);
INSERT INTO public.journals VALUES (3409, 837, 'Issue', 12, NULL, '2020-06-06 13:46:09+07', false);
INSERT INTO public.journals VALUES (3411, 856, 'Issue', 12, '', '2020-06-06 16:48:11+07', false);
INSERT INTO public.journals VALUES (3412, 832, 'Issue', 12, '', '2020-06-06 16:48:12+07', false);
INSERT INTO public.journals VALUES (3413, 748, 'Issue', 12, '', '2020-06-06 16:48:12+07', false);
INSERT INTO public.journals VALUES (3414, 749, 'Issue', 12, '', '2020-06-06 16:48:12+07', false);
INSERT INTO public.journals VALUES (3415, 846, 'Issue', 12, '', '2020-06-06 16:48:48+07', false);
INSERT INTO public.journals VALUES (3416, 831, 'Issue', 12, NULL, '2020-06-06 17:11:17+07', false);
INSERT INTO public.journals VALUES (3417, 831, 'Issue', 12, NULL, '2020-06-06 17:11:23+07', false);
INSERT INTO public.journals VALUES (3418, 837, 'Issue', 12, NULL, '2020-06-06 17:11:34+07', false);
INSERT INTO public.journals VALUES (3419, 832, 'Issue', 12, '', '2020-06-08 08:04:33+07', false);
INSERT INTO public.journals VALUES (3420, 749, 'Issue', 12, '', '2020-06-08 08:04:33+07', false);
INSERT INTO public.journals VALUES (3421, 853, 'Issue', 12, '', '2020-06-08 08:04:33+07', false);
INSERT INTO public.journals VALUES (3422, 855, 'Issue', 12, '', '2020-06-08 08:04:34+07', false);
INSERT INTO public.journals VALUES (3423, 829, 'Issue', 12, '', '2020-06-08 09:00:11+07', false);
INSERT INTO public.journals VALUES (3424, 837, 'Issue', 12, '', '2020-06-08 09:00:12+07', false);
INSERT INTO public.journals VALUES (3425, 749, 'Issue', 12, NULL, '2020-06-08 09:01:35+07', false);
INSERT INTO public.journals VALUES (3426, 748, 'Issue', 12, NULL, '2020-06-08 09:01:42+07', false);
INSERT INTO public.journals VALUES (3427, 846, 'Issue', 12, '', '2020-06-08 09:06:05+07', false);
INSERT INTO public.journals VALUES (3428, 750, 'Issue', 12, '', '2020-06-08 09:14:08+07', false);
INSERT INTO public.journals VALUES (3429, 751, 'Issue', 12, '', '2020-06-08 09:14:08+07', false);
INSERT INTO public.journals VALUES (3430, 854, 'Issue', 12, '', '2020-06-08 09:14:24+07', false);
INSERT INTO public.journals VALUES (3431, 855, 'Issue', 12, '', '2020-06-08 09:14:24+07', false);
INSERT INTO public.journals VALUES (3432, 853, 'Issue', 12, '', '2020-06-08 09:14:51+07', false);
INSERT INTO public.journals VALUES (3433, 865, 'Issue', 10, NULL, '2020-06-08 09:16:33+07', false);
INSERT INTO public.journals VALUES (3434, 865, 'Issue', 10, NULL, '2020-06-08 09:16:40+07', false);
INSERT INTO public.journals VALUES (3435, 868, 'Issue', 10, NULL, '2020-06-08 09:16:50+07', false);
INSERT INTO public.journals VALUES (3436, 868, 'Issue', 10, NULL, '2020-06-08 09:16:54+07', false);
INSERT INTO public.journals VALUES (3437, 861, 'Issue', 10, NULL, '2020-06-08 09:17:05+07', false);
INSERT INTO public.journals VALUES (3438, 861, 'Issue', 10, NULL, '2020-06-08 09:17:09+07', false);
INSERT INTO public.journals VALUES (3439, 825, 'Issue', 10, '', '2020-06-08 09:17:49+07', false);
INSERT INTO public.journals VALUES (3440, 860, 'Issue', 10, '', '2020-06-08 09:17:50+07', false);
INSERT INTO public.journals VALUES (3441, 863, 'Issue', 10, '', '2020-06-08 09:17:50+07', false);
INSERT INTO public.journals VALUES (3442, 864, 'Issue', 10, '', '2020-06-08 09:17:50+07', false);
INSERT INTO public.journals VALUES (3443, 864, 'Issue', 10, '', '2020-06-08 09:23:43+07', false);
INSERT INTO public.journals VALUES (3444, 748, 'Issue', 12, NULL, '2020-06-08 15:20:22+07', false);
INSERT INTO public.journals VALUES (3445, 748, 'Issue', 12, NULL, '2020-06-08 15:20:34+07', false);
INSERT INTO public.journals VALUES (3446, 749, 'Issue', 12, NULL, '2020-06-08 15:24:05+07', false);
INSERT INTO public.journals VALUES (3447, 749, 'Issue', 12, NULL, '2020-06-08 15:24:15+07', false);
INSERT INTO public.journals VALUES (3448, 846, 'Issue', 5, NULL, '2020-06-09 08:42:04+07', false);
INSERT INTO public.journals VALUES (3449, 856, 'Issue', 6, NULL, '2020-06-09 10:56:43+07', false);
INSERT INTO public.journals VALUES (3450, 856, 'Issue', 6, NULL, '2020-06-09 10:56:50+07', false);
INSERT INTO public.journals VALUES (3451, 829, 'Issue', 12, NULL, '2020-06-09 13:21:37+07', false);
INSERT INTO public.journals VALUES (3452, 829, 'Issue', 12, NULL, '2020-06-09 13:21:44+07', false);
INSERT INTO public.journals VALUES (3453, 853, 'Issue', 5, '', '2020-06-09 15:05:24+07', false);
INSERT INTO public.journals VALUES (3454, 854, 'Issue', 5, '', '2020-06-09 15:05:24+07', false);
INSERT INTO public.journals VALUES (3455, 750, 'Issue', 5, '', '2020-06-09 15:05:37+07', false);
INSERT INTO public.journals VALUES (3456, 751, 'Issue', 5, '', '2020-06-09 15:05:38+07', false);
INSERT INTO public.journals VALUES (3457, 855, 'Issue', 5, '', '2020-06-09 15:05:38+07', false);
INSERT INTO public.journals VALUES (3458, 778, 'Issue', 5, '', '2020-06-09 15:37:35+07', false);
INSERT INTO public.journals VALUES (3459, 777, 'Issue', 5, '', '2020-06-09 15:39:58+07', false);
INSERT INTO public.journals VALUES (3460, 776, 'Issue', 5, '', '2020-06-09 15:40:31+07', false);
INSERT INTO public.journals VALUES (3461, 778, 'Issue', 5, '', '2020-06-09 15:42:35+07', false);
INSERT INTO public.journals VALUES (3462, 92, 'Issue', 5, '', '2020-06-09 15:43:29+07', false);
INSERT INTO public.journals VALUES (3463, 854, 'Issue', 12, NULL, '2020-06-09 15:43:46+07', false);
INSERT INTO public.journals VALUES (3464, 854, 'Issue', 12, NULL, '2020-06-09 15:44:18+07', false);
INSERT INTO public.journals VALUES (3465, 870, 'Issue', 5, '', '2020-06-09 15:44:33+07', false);
INSERT INTO public.journals VALUES (3466, 778, 'Issue', 5, '', '2020-06-09 15:44:47+07', false);
INSERT INTO public.journals VALUES (3467, 777, 'Issue', 5, '', '2020-06-09 15:44:57+07', false);
INSERT INTO public.journals VALUES (3468, 776, 'Issue', 5, '', '2020-06-09 15:45:14+07', false);
INSERT INTO public.journals VALUES (3469, 750, 'Issue', 12, NULL, '2020-06-09 16:42:01+07', false);
INSERT INTO public.journals VALUES (3470, 750, 'Issue', 12, NULL, '2020-06-09 16:42:09+07', false);
INSERT INTO public.journals VALUES (3471, 863, 'Issue', 10, NULL, '2020-06-09 17:02:18+07', false);
INSERT INTO public.journals VALUES (3472, 863, 'Issue', 10, NULL, '2020-06-09 17:02:33+07', false);
INSERT INTO public.journals VALUES (3473, 864, 'Issue', 10, NULL, '2020-06-09 17:02:41+07', false);
INSERT INTO public.journals VALUES (3474, 864, 'Issue', 10, NULL, '2020-06-09 17:03:00+07', false);
INSERT INTO public.journals VALUES (3475, 751, 'Issue', 12, NULL, '2020-06-10 08:17:16+07', false);
INSERT INTO public.journals VALUES (3476, 751, 'Issue', 12, NULL, '2020-06-10 08:17:22+07', false);
INSERT INTO public.journals VALUES (3477, 832, 'Issue', 12, NULL, '2020-06-10 08:17:59+07', false);
INSERT INTO public.journals VALUES (3478, 832, 'Issue', 12, '', '2020-06-10 08:19:21+07', false);
INSERT INTO public.journals VALUES (3479, 853, 'Issue', 12, '', '2020-06-10 08:19:21+07', false);
INSERT INTO public.journals VALUES (3480, 860, 'Issue', 10, NULL, '2020-06-10 08:59:00+07', false);
INSERT INTO public.journals VALUES (3481, 860, 'Issue', 10, NULL, '2020-06-10 08:59:06+07', false);
INSERT INTO public.journals VALUES (3482, 855, 'Issue', 5, '', '2020-06-10 09:03:55+07', false);
INSERT INTO public.journals VALUES (3483, 871, 'Issue', 10, '', '2020-06-10 09:12:42+07', false);
INSERT INTO public.journals VALUES (3484, 876, 'Issue', 5, '', '2020-06-10 11:05:19+07', false);
INSERT INTO public.journals VALUES (3485, 873, 'Issue', 5, '', '2020-06-10 11:05:36+07', false);
INSERT INTO public.journals VALUES (3490, 871, 'Issue', 10, NULL, '2020-06-10 13:44:21+07', false);
INSERT INTO public.journals VALUES (3491, 871, 'Issue', 10, NULL, '2020-06-10 13:44:28+07', false);
INSERT INTO public.journals VALUES (3492, 837, 'Issue', 12, NULL, '2020-06-10 16:17:58+07', false);
INSERT INTO public.journals VALUES (3493, 837, 'Issue', 12, NULL, '2020-06-10 16:18:09+07', false);
INSERT INTO public.journals VALUES (3494, 887, 'Issue', 6, '', '2020-06-10 16:35:10+07', false);
INSERT INTO public.journals VALUES (3495, 832, 'Issue', 6, NULL, '2020-06-10 16:41:24+07', false);
INSERT INTO public.journals VALUES (3496, 832, 'Issue', 6, NULL, '2020-06-10 16:41:32+07', false);
INSERT INTO public.journals VALUES (3497, 853, 'Issue', 12, '', '2020-06-12 08:24:06+07', false);
INSERT INTO public.journals VALUES (3498, 855, 'Issue', 12, '', '2020-06-12 08:24:06+07', false);
INSERT INTO public.journals VALUES (3501, 341, 'Issue', 5, '', '2020-06-12 08:38:36+07', false);
INSERT INTO public.journals VALUES (3502, 342, 'Issue', 5, '', '2020-06-12 08:38:36+07', false);
INSERT INTO public.journals VALUES (3505, 341, 'Issue', 5, '', '2020-06-12 08:40:16+07', false);
INSERT INTO public.journals VALUES (3506, 342, 'Issue', 5, '', '2020-06-12 08:40:16+07', false);
INSERT INTO public.journals VALUES (3507, 855, 'Issue', 6, '', '2020-06-12 17:13:43+07', false);
INSERT INTO public.journals VALUES (3508, 855, 'Issue', 6, NULL, '2020-06-12 17:27:40+07', false);
INSERT INTO public.journals VALUES (3509, 855, 'Issue', 6, NULL, '2020-06-12 17:27:45+07', false);
INSERT INTO public.journals VALUES (3510, 853, 'Issue', 12, NULL, '2020-06-13 07:56:24+07', false);
INSERT INTO public.journals VALUES (3511, 887, 'Issue', 12, NULL, '2020-06-13 07:56:48+07', false);
INSERT INTO public.journals VALUES (3512, 872, 'Issue', 13, NULL, '2020-06-13 08:18:25+07', false);
INSERT INTO public.journals VALUES (3513, 873, 'Issue', 13, NULL, '2020-06-13 08:18:25+07', false);
INSERT INTO public.journals VALUES (3514, 874, 'Issue', 13, NULL, '2020-06-13 08:18:25+07', false);
INSERT INTO public.journals VALUES (3515, 875, 'Issue', 13, NULL, '2020-06-13 08:18:26+07', false);
INSERT INTO public.journals VALUES (3516, 872, 'Issue', 13, NULL, '2020-06-13 08:18:37+07', false);
INSERT INTO public.journals VALUES (3517, 873, 'Issue', 13, NULL, '2020-06-13 08:18:37+07', false);
INSERT INTO public.journals VALUES (3518, 874, 'Issue', 13, NULL, '2020-06-13 08:18:37+07', false);
INSERT INTO public.journals VALUES (3519, 875, 'Issue', 13, NULL, '2020-06-13 08:18:37+07', false);
INSERT INTO public.journals VALUES (3520, 317, 'Issue', 6, '', '2020-06-13 08:51:14+07', false);
INSERT INTO public.journals VALUES (3521, 92, 'Issue', 8, NULL, '2020-06-13 09:52:15+07', false);
INSERT INTO public.journals VALUES (3522, 92, 'Issue', 8, NULL, '2020-06-13 09:52:19+07', false);
INSERT INTO public.journals VALUES (3523, 876, 'Issue', 5, '', '2020-06-13 10:33:05+07', false);
INSERT INTO public.journals VALUES (3524, 853, 'Issue', 12, NULL, '2020-06-13 14:08:03+07', false);
INSERT INTO public.journals VALUES (3525, 853, 'Issue', 12, NULL, '2020-06-13 14:08:14+07', false);
INSERT INTO public.journals VALUES (3526, 790, 'Issue', 6, '', '2020-06-13 16:36:35+07', false);
INSERT INTO public.journals VALUES (3527, 888, 'Issue', 5, '', '2020-06-15 08:29:25+07', false);
INSERT INTO public.journals VALUES (3528, 334, 'Issue', 5, '', '2020-06-15 08:31:50+07', false);
INSERT INTO public.journals VALUES (3529, 335, 'Issue', 5, '', '2020-06-15 08:32:51+07', false);
INSERT INTO public.journals VALUES (3530, 891, 'Issue', 5, '', '2020-06-15 08:43:42+07', false);
INSERT INTO public.journals VALUES (3531, 891, 'Issue', 5, '', '2020-06-15 08:46:23+07', false);
INSERT INTO public.journals VALUES (3532, 776, 'Issue', 8, NULL, '2020-06-15 09:23:06+07', false);
INSERT INTO public.journals VALUES (3533, 777, 'Issue', 8, NULL, '2020-06-15 09:23:06+07', false);
INSERT INTO public.journals VALUES (3534, 778, 'Issue', 8, NULL, '2020-06-15 09:23:06+07', false);
INSERT INTO public.journals VALUES (3535, 870, 'Issue', 8, NULL, '2020-06-15 09:23:06+07', false);
INSERT INTO public.journals VALUES (3536, 776, 'Issue', 8, NULL, '2020-06-15 09:23:14+07', false);
INSERT INTO public.journals VALUES (3537, 777, 'Issue', 8, NULL, '2020-06-15 09:23:14+07', false);
INSERT INTO public.journals VALUES (3538, 778, 'Issue', 8, NULL, '2020-06-15 09:23:14+07', false);
INSERT INTO public.journals VALUES (3539, 870, 'Issue', 8, NULL, '2020-06-15 09:23:14+07', false);
INSERT INTO public.journals VALUES (3540, 910, 'Issue', 4, '', '2020-06-15 10:09:39+07', false);
INSERT INTO public.journals VALUES (3541, 911, 'Issue', 4, '', '2020-06-15 10:09:57+07', false);
INSERT INTO public.journals VALUES (3542, 912, 'Issue', 4, '', '2020-06-15 10:10:23+07', false);
INSERT INTO public.journals VALUES (3543, 913, 'Issue', 4, '', '2020-06-15 10:10:43+07', false);
INSERT INTO public.journals VALUES (3544, 341, 'Issue', 5, '', '2020-06-15 10:22:23+07', false);
INSERT INTO public.journals VALUES (3545, 342, 'Issue', 5, '', '2020-06-15 10:22:24+07', false);
INSERT INTO public.journals VALUES (3546, 912, 'Issue', 4, NULL, '2020-06-15 10:40:42+07', false);
INSERT INTO public.journals VALUES (3547, 913, 'Issue', 4, '', '2020-06-15 10:41:44+07', false);
INSERT INTO public.journals VALUES (3548, 337, 'Issue', 5, '', '2020-06-15 10:46:06+07', false);
INSERT INTO public.journals VALUES (3549, 336, 'Issue', 5, '', '2020-06-15 10:46:36+07', false);
INSERT INTO public.journals VALUES (3550, 335, 'Issue', 5, '', '2020-06-15 10:46:53+07', false);
INSERT INTO public.journals VALUES (3551, 335, 'Issue', 5, '', '2020-06-15 10:47:12+07', false);
INSERT INTO public.journals VALUES (3552, 894, 'Issue', 5, '', '2020-06-15 10:49:30+07', false);
INSERT INTO public.journals VALUES (3553, 895, 'Issue', 5, '', '2020-06-15 10:49:43+07', false);
INSERT INTO public.journals VALUES (3554, 896, 'Issue', 5, '', '2020-06-15 10:50:05+07', false);
INSERT INTO public.journals VALUES (3555, 896, 'Issue', 5, '', '2020-06-15 10:50:22+07', false);
INSERT INTO public.journals VALUES (3556, 897, 'Issue', 5, '', '2020-06-15 10:50:39+07', false);
INSERT INTO public.journals VALUES (3557, 897, 'Issue', 5, '', '2020-06-15 10:50:47+07', false);
INSERT INTO public.journals VALUES (3558, 898, 'Issue', 5, '', '2020-06-15 10:51:03+07', false);
INSERT INTO public.journals VALUES (3559, 899, 'Issue', 5, '', '2020-06-15 10:51:18+07', false);
INSERT INTO public.journals VALUES (3560, 900, 'Issue', 5, '', '2020-06-15 10:51:18+07', false);
INSERT INTO public.journals VALUES (3561, 900, 'Issue', 5, '', '2020-06-15 10:51:34+07', false);
INSERT INTO public.journals VALUES (3562, 889, 'Issue', 5, '', '2020-06-15 10:52:07+07', false);
INSERT INTO public.journals VALUES (3563, 890, 'Issue', 5, '', '2020-06-15 10:52:25+07', false);
INSERT INTO public.journals VALUES (3564, 891, 'Issue', 5, '', '2020-06-15 10:52:41+07', false);
INSERT INTO public.journals VALUES (3565, 901, 'Issue', 5, '', '2020-06-15 10:52:55+07', false);
INSERT INTO public.journals VALUES (3566, 902, 'Issue', 5, '', '2020-06-15 10:53:10+07', false);
INSERT INTO public.journals VALUES (3567, 903, 'Issue', 5, '', '2020-06-15 10:53:26+07', false);
INSERT INTO public.journals VALUES (3568, 904, 'Issue', 5, '', '2020-06-15 10:53:40+07', false);
INSERT INTO public.journals VALUES (3569, 904, 'Issue', 5, '', '2020-06-15 10:54:03+07', false);
INSERT INTO public.journals VALUES (3570, 905, 'Issue', 5, '', '2020-06-15 10:54:27+07', false);
INSERT INTO public.journals VALUES (3571, 906, 'Issue', 5, '', '2020-06-15 10:54:50+07', false);
INSERT INTO public.journals VALUES (3572, 336, 'Issue', 5, '', '2020-06-15 10:56:34+07', false);
INSERT INTO public.journals VALUES (3573, 337, 'Issue', 5, '', '2020-06-15 10:56:50+07', false);
INSERT INTO public.journals VALUES (3574, 920, 'Issue', 5, '', '2020-06-15 11:00:55+07', false);
INSERT INTO public.journals VALUES (3575, 916, 'Issue', 5, '', '2020-06-15 11:01:19+07', false);
INSERT INTO public.journals VALUES (3576, 917, 'Issue', 5, '', '2020-06-15 11:01:19+07', false);
INSERT INTO public.journals VALUES (3577, 918, 'Issue', 5, '', '2020-06-15 11:01:46+07', false);
INSERT INTO public.journals VALUES (3578, 919, 'Issue', 5, '', '2020-06-15 11:01:46+07', false);
INSERT INTO public.journals VALUES (3579, 913, 'Issue', 4, NULL, '2020-06-15 11:18:50+07', false);
INSERT INTO public.journals VALUES (3580, 909, 'Issue', 4, NULL, '2020-06-15 13:29:33+07', false);
INSERT INTO public.journals VALUES (3581, 911, 'Issue', 4, NULL, '2020-06-15 13:36:24+07', false);
INSERT INTO public.journals VALUES (3582, 887, 'Issue', 12, NULL, '2020-06-15 16:31:58+07', false);
INSERT INTO public.journals VALUES (3583, 887, 'Issue', 12, NULL, '2020-06-15 16:32:04+07', false);
INSERT INTO public.journals VALUES (3584, 910, 'Issue', 4, NULL, '2020-06-15 16:39:26+07', false);
INSERT INTO public.journals VALUES (3585, 908, 'Issue', 12, NULL, '2020-06-15 16:56:04+07', false);
INSERT INTO public.journals VALUES (3586, 908, 'Issue', 12, NULL, '2020-06-15 16:56:13+07', false);
INSERT INTO public.journals VALUES (3587, 892, 'Issue', 5, NULL, '2020-06-16 08:28:15+07', false);
INSERT INTO public.journals VALUES (3588, 894, 'Issue', 5, NULL, '2020-06-16 08:28:16+07', false);
INSERT INTO public.journals VALUES (3589, 895, 'Issue', 5, NULL, '2020-06-16 08:28:17+07', false);
INSERT INTO public.journals VALUES (3590, 896, 'Issue', 5, NULL, '2020-06-16 08:28:17+07', false);
INSERT INTO public.journals VALUES (3591, 893, 'Issue', 5, NULL, '2020-06-16 08:28:27+07', false);
INSERT INTO public.journals VALUES (3592, 897, 'Issue', 5, NULL, '2020-06-16 08:28:28+07', false);
INSERT INTO public.journals VALUES (3593, 898, 'Issue', 5, NULL, '2020-06-16 08:28:29+07', false);
INSERT INTO public.journals VALUES (3594, 899, 'Issue', 5, NULL, '2020-06-16 08:28:29+07', false);
INSERT INTO public.journals VALUES (3595, 900, 'Issue', 5, NULL, '2020-06-16 08:28:29+07', false);
INSERT INTO public.journals VALUES (3596, 918, 'Issue', 5, NULL, '2020-06-16 08:29:13+07', false);
INSERT INTO public.journals VALUES (3597, 919, 'Issue', 5, NULL, '2020-06-16 08:29:13+07', false);
INSERT INTO public.journals VALUES (3598, 920, 'Issue', 5, NULL, '2020-06-16 08:29:14+07', false);
INSERT INTO public.journals VALUES (3599, 916, 'Issue', 5, NULL, '2020-06-16 08:29:32+07', false);
INSERT INTO public.journals VALUES (3600, 917, 'Issue', 5, NULL, '2020-06-16 08:29:32+07', false);
INSERT INTO public.journals VALUES (3601, 921, 'Issue', 5, NULL, '2020-06-16 08:29:32+07', false);
INSERT INTO public.journals VALUES (3602, 923, 'Issue', 5, NULL, '2020-06-16 08:29:32+07', false);
INSERT INTO public.journals VALUES (3603, 922, 'Issue', 5, NULL, '2020-06-16 08:29:53+07', false);
INSERT INTO public.journals VALUES (3604, 334, 'Issue', 5, NULL, '2020-06-16 08:30:04+07', false);
INSERT INTO public.journals VALUES (3605, 335, 'Issue', 5, NULL, '2020-06-16 08:30:05+07', false);
INSERT INTO public.journals VALUES (3606, 336, 'Issue', 5, NULL, '2020-06-16 08:30:05+07', false);
INSERT INTO public.journals VALUES (3607, 337, 'Issue', 5, NULL, '2020-06-16 08:30:05+07', false);
INSERT INTO public.journals VALUES (3608, 905, 'Issue', 5, NULL, '2020-06-16 08:30:22+07', false);
INSERT INTO public.journals VALUES (3609, 906, 'Issue', 5, NULL, '2020-06-16 08:30:23+07', false);
INSERT INTO public.journals VALUES (3610, 888, 'Issue', 5, NULL, '2020-06-16 08:30:57+07', false);
INSERT INTO public.journals VALUES (3611, 889, 'Issue', 5, NULL, '2020-06-16 08:30:58+07', false);
INSERT INTO public.journals VALUES (3612, 890, 'Issue', 5, NULL, '2020-06-16 08:30:58+07', false);
INSERT INTO public.journals VALUES (3613, 891, 'Issue', 5, NULL, '2020-06-16 08:30:58+07', false);
INSERT INTO public.journals VALUES (3614, 901, 'Issue', 5, NULL, '2020-06-16 08:30:58+07', false);
INSERT INTO public.journals VALUES (3615, 902, 'Issue', 5, NULL, '2020-06-16 08:30:58+07', false);
INSERT INTO public.journals VALUES (3616, 903, 'Issue', 5, NULL, '2020-06-16 08:30:59+07', false);
INSERT INTO public.journals VALUES (3617, 904, 'Issue', 5, NULL, '2020-06-16 08:30:59+07', false);
INSERT INTO public.journals VALUES (3618, 336, 'Issue', 13, '', '2020-06-18 09:39:13+07', false);
INSERT INTO public.journals VALUES (3619, 895, 'Issue', 13, '', '2020-06-18 09:39:13+07', false);
INSERT INTO public.journals VALUES (3620, 898, 'Issue', 13, '', '2020-06-18 09:39:14+07', false);
INSERT INTO public.journals VALUES (3621, 906, 'Issue', 13, '', '2020-06-18 09:39:14+07', false);
INSERT INTO public.journals VALUES (3622, 916, 'Issue', 13, '', '2020-06-18 09:39:14+07', false);
INSERT INTO public.journals VALUES (3623, 917, 'Issue', 13, '', '2020-06-18 09:39:14+07', false);
INSERT INTO public.journals VALUES (3624, 920, 'Issue', 13, '', '2020-06-18 09:39:14+07', false);
INSERT INTO public.journals VALUES (3625, 916, 'Issue', 13, '', '2020-06-18 09:41:23+07', false);
INSERT INTO public.journals VALUES (3626, 917, 'Issue', 13, '', '2020-06-18 09:41:23+07', false);
INSERT INTO public.journals VALUES (3627, 918, 'Issue', 13, '', '2020-06-18 09:41:23+07', false);
INSERT INTO public.journals VALUES (3628, 919, 'Issue', 13, '', '2020-06-18 09:41:23+07', false);
INSERT INTO public.journals VALUES (3629, 920, 'Issue', 13, '', '2020-06-18 09:41:23+07', false);
INSERT INTO public.journals VALUES (3630, 925, 'Issue', 13, '', '2020-06-18 09:43:12+07', false);
INSERT INTO public.journals VALUES (3631, 921, 'Issue', 13, '', '2020-06-18 09:52:58+07', false);
INSERT INTO public.journals VALUES (3632, 922, 'Issue', 13, '', '2020-06-18 09:52:59+07', false);
INSERT INTO public.journals VALUES (3633, 894, 'Issue', 13, '', '2020-06-18 10:23:00+07', false);
INSERT INTO public.journals VALUES (3634, 895, 'Issue', 13, '', '2020-06-18 10:23:25+07', false);
INSERT INTO public.journals VALUES (3635, 896, 'Issue', 13, '', '2020-06-18 10:23:25+07', false);
INSERT INTO public.journals VALUES (3636, 928, 'Issue', 13, '', '2020-06-18 10:28:18+07', false);
INSERT INTO public.journals VALUES (3637, 929, 'Issue', 13, '', '2020-06-18 10:29:30+07', false);
INSERT INTO public.journals VALUES (3638, 893, 'Issue', 13, '', '2020-06-18 10:33:56+07', false);
INSERT INTO public.journals VALUES (3639, 897, 'Issue', 13, '', '2020-06-18 10:33:56+07', false);
INSERT INTO public.journals VALUES (3640, 898, 'Issue', 13, '', '2020-06-18 10:33:56+07', false);
INSERT INTO public.journals VALUES (3641, 899, 'Issue', 13, '', '2020-06-18 10:33:56+07', false);
INSERT INTO public.journals VALUES (3642, 900, 'Issue', 13, '', '2020-06-18 10:33:56+07', false);
INSERT INTO public.journals VALUES (3643, 335, 'Issue', 13, '', '2020-06-18 10:35:50+07', false);
INSERT INTO public.journals VALUES (3644, 336, 'Issue', 13, '', '2020-06-18 10:35:51+07', false);
INSERT INTO public.journals VALUES (3645, 889, 'Issue', 13, '', '2020-06-18 10:35:51+07', false);
INSERT INTO public.journals VALUES (3646, 890, 'Issue', 13, '', '2020-06-18 10:35:51+07', false);
INSERT INTO public.journals VALUES (3647, 891, 'Issue', 13, '', '2020-06-18 10:35:51+07', false);
INSERT INTO public.journals VALUES (3648, 897, 'Issue', 13, '', '2020-06-18 10:35:51+07', false);
INSERT INTO public.journals VALUES (3649, 898, 'Issue', 13, '', '2020-06-18 10:35:51+07', false);
INSERT INTO public.journals VALUES (3650, 899, 'Issue', 13, '', '2020-06-18 10:35:52+07', false);
INSERT INTO public.journals VALUES (3651, 905, 'Issue', 13, '', '2020-06-18 10:35:52+07', false);
INSERT INTO public.journals VALUES (3652, 906, 'Issue', 13, '', '2020-06-18 10:35:52+07', false);
INSERT INTO public.journals VALUES (3653, 921, 'Issue', 13, '', '2020-06-18 10:35:52+07', false);
INSERT INTO public.journals VALUES (3654, 922, 'Issue', 13, '', '2020-06-18 10:35:52+07', false);
INSERT INTO public.journals VALUES (3655, 925, 'Issue', 13, '', '2020-06-18 10:35:52+07', false);
INSERT INTO public.journals VALUES (3656, 921, 'Issue', 5, '', '2020-06-18 10:42:06+07', false);
INSERT INTO public.journals VALUES (3657, 922, 'Issue', 5, '', '2020-06-18 10:42:07+07', false);
INSERT INTO public.journals VALUES (3658, 335, 'Issue', 5, '', '2020-06-18 10:44:03+07', false);
INSERT INTO public.journals VALUES (3659, 336, 'Issue', 5, '', '2020-06-18 10:44:03+07', false);
INSERT INTO public.journals VALUES (3660, 337, 'Issue', 5, '', '2020-06-18 10:44:24+07', false);
INSERT INTO public.journals VALUES (3661, 890, 'Issue', 5, '', '2020-06-18 10:44:53+07', false);
INSERT INTO public.journals VALUES (3662, 905, 'Issue', 5, '', '2020-06-18 10:45:52+07', false);
INSERT INTO public.journals VALUES (3663, 906, 'Issue', 5, '', '2020-06-18 10:45:53+07', false);
INSERT INTO public.journals VALUES (3664, 898, 'Issue', 5, '', '2020-06-18 10:46:47+07', false);
INSERT INTO public.journals VALUES (3665, 899, 'Issue', 5, '', '2020-06-18 10:46:48+07', false);
INSERT INTO public.journals VALUES (3666, 900, 'Issue', 5, '', '2020-06-18 10:46:48+07', false);
INSERT INTO public.journals VALUES (3667, 897, 'Issue', 5, '', '2020-06-18 10:47:03+07', false);
INSERT INTO public.journals VALUES (3668, 915, 'Issue', 6, NULL, '2020-06-18 14:34:59+07', false);
INSERT INTO public.journals VALUES (3669, 925, 'Issue', 6, NULL, '2020-06-18 14:35:36+07', false);
INSERT INTO public.journals VALUES (3670, 925, 'Issue', 6, NULL, '2020-06-18 14:36:06+07', false);
INSERT INTO public.journals VALUES (3671, 894, 'Issue', 6, NULL, '2020-06-18 15:02:45+07', false);
INSERT INTO public.journals VALUES (3672, 894, 'Issue', 6, NULL, '2020-06-18 15:02:55+07', false);
INSERT INTO public.journals VALUES (3673, 923, 'Issue', 6, NULL, '2020-06-18 15:03:08+07', false);
INSERT INTO public.journals VALUES (3674, 923, 'Issue', 6, NULL, '2020-06-18 15:03:16+07', false);
INSERT INTO public.journals VALUES (3675, 925, 'Issue', 6, '', '2020-06-18 15:04:20+07', false);
INSERT INTO public.journals VALUES (3676, 924, 'Issue', 6, NULL, '2020-06-18 15:04:55+07', false);
INSERT INTO public.journals VALUES (3677, 923, 'Issue', 6, '', '2020-06-18 15:05:15+07', false);
INSERT INTO public.journals VALUES (3678, 924, 'Issue', 6, NULL, '2020-06-18 15:05:37+07', false);
INSERT INTO public.journals VALUES (3679, 877, 'Issue', 5, NULL, '2020-06-19 08:32:32+07', false);
INSERT INTO public.journals VALUES (3680, 877, 'Issue', 5, NULL, '2020-06-19 08:32:40+07', false);
INSERT INTO public.journals VALUES (3681, 884, 'Issue', 5, '', '2020-06-19 08:34:55+07', false);
INSERT INTO public.journals VALUES (3682, 924, 'Issue', 6, NULL, '2020-06-19 15:43:50+07', false);
INSERT INTO public.journals VALUES (3683, 924, 'Issue', 6, NULL, '2020-06-19 15:44:00+07', false);
INSERT INTO public.journals VALUES (3684, 915, 'Issue', 6, NULL, '2020-06-19 16:04:58+07', false);
INSERT INTO public.journals VALUES (3685, 915, 'Issue', 6, NULL, '2020-06-19 16:05:03+07', false);
INSERT INTO public.journals VALUES (3686, 894, 'Issue', 10, NULL, '2020-06-19 16:57:05+07', false);
INSERT INTO public.journals VALUES (3687, 897, 'Issue', 12, NULL, '2020-06-19 17:00:00+07', false);
INSERT INTO public.journals VALUES (3688, 897, 'Issue', 12, NULL, '2020-06-19 17:00:09+07', false);
INSERT INTO public.journals VALUES (3689, 889, 'Issue', 15, NULL, '2020-06-19 17:01:49+07', false);
INSERT INTO public.journals VALUES (3690, 890, 'Issue', 15, NULL, '2020-06-19 17:01:49+07', false);
INSERT INTO public.journals VALUES (3691, 891, 'Issue', 15, NULL, '2020-06-19 17:01:49+07', false);
INSERT INTO public.journals VALUES (3692, 901, 'Issue', 15, NULL, '2020-06-19 17:01:49+07', false);
INSERT INTO public.journals VALUES (3693, 902, 'Issue', 15, NULL, '2020-06-19 17:01:49+07', false);
INSERT INTO public.journals VALUES (3694, 903, 'Issue', 15, NULL, '2020-06-19 17:01:50+07', false);
INSERT INTO public.journals VALUES (3695, 904, 'Issue', 15, NULL, '2020-06-19 17:01:50+07', false);
INSERT INTO public.journals VALUES (3696, 929, 'Issue', 6, NULL, '2020-06-20 08:05:10+07', false);
INSERT INTO public.journals VALUES (3697, 335, 'Issue', 8, NULL, '2020-06-20 08:08:03+07', false);
INSERT INTO public.journals VALUES (3698, 930, 'Issue', 8, NULL, '2020-06-20 08:08:04+07', false);
INSERT INTO public.journals VALUES (3699, 931, 'Issue', 8, NULL, '2020-06-20 08:08:04+07', false);
INSERT INTO public.journals VALUES (3700, 335, 'Issue', 8, NULL, '2020-06-20 10:33:00+07', false);
INSERT INTO public.journals VALUES (3701, 930, 'Issue', 8, NULL, '2020-06-20 10:33:00+07', false);
INSERT INTO public.journals VALUES (3702, 931, 'Issue', 8, NULL, '2020-06-20 10:33:01+07', false);
INSERT INTO public.journals VALUES (3703, 335, 'Issue', 8, NULL, '2020-06-20 10:33:13+07', false);
INSERT INTO public.journals VALUES (3704, 930, 'Issue', 8, NULL, '2020-06-20 10:33:13+07', false);
INSERT INTO public.journals VALUES (3705, 931, 'Issue', 8, NULL, '2020-06-20 10:33:14+07', false);
INSERT INTO public.journals VALUES (3706, 921, 'Issue', 6, NULL, '2020-06-20 14:38:00+07', false);
INSERT INTO public.journals VALUES (3707, 922, 'Issue', 6, NULL, '2020-06-20 14:38:12+07', false);
INSERT INTO public.journals VALUES (3708, 921, 'Issue', 6, NULL, '2020-06-20 14:38:21+07', false);
INSERT INTO public.journals VALUES (3709, 922, 'Issue', 6, NULL, '2020-06-20 14:38:31+07', false);
INSERT INTO public.journals VALUES (3710, 926, 'Issue', 6, '', '2020-06-22 08:49:07+07', false);
INSERT INTO public.journals VALUES (3711, 926, 'Issue', 6, '', '2020-06-22 08:49:31+07', false);
INSERT INTO public.journals VALUES (3712, 92, 'Issue', 5, '', '2020-06-22 11:30:01+07', false);
INSERT INTO public.journals VALUES (3713, 776, 'Issue', 5, '', '2020-06-22 11:30:02+07', false);
INSERT INTO public.journals VALUES (3714, 777, 'Issue', 5, '', '2020-06-22 11:30:02+07', false);
INSERT INTO public.journals VALUES (3715, 778, 'Issue', 5, '', '2020-06-22 11:30:02+07', false);
INSERT INTO public.journals VALUES (3716, 870, 'Issue', 5, '', '2020-06-22 11:30:02+07', false);
INSERT INTO public.journals VALUES (3717, 899, 'Issue', 12, NULL, '2020-06-22 13:24:01+07', false);
INSERT INTO public.journals VALUES (3718, 899, 'Issue', 12, NULL, '2020-06-22 13:25:06+07', false);
INSERT INTO public.journals VALUES (3719, 900, 'Issue', 12, NULL, '2020-06-22 13:25:17+07', false);
INSERT INTO public.journals VALUES (3720, 898, 'Issue', 12, NULL, '2020-06-22 13:25:22+07', false);
INSERT INTO public.journals VALUES (3721, 898, 'Issue', 12, NULL, '2020-06-22 13:25:27+07', false);
INSERT INTO public.journals VALUES (3722, 899, 'Issue', 12, NULL, '2020-06-22 13:25:36+07', false);
INSERT INTO public.journals VALUES (3723, 900, 'Issue', 12, NULL, '2020-06-22 13:25:46+07', false);
INSERT INTO public.journals VALUES (3724, 895, 'Issue', 10, NULL, '2020-06-22 14:11:39+07', false);
INSERT INTO public.journals VALUES (3725, 895, 'Issue', 10, NULL, '2020-06-22 14:11:53+07', false);
INSERT INTO public.journals VALUES (3726, 898, 'Issue', 12, NULL, '2020-06-22 14:43:13+07', false);
INSERT INTO public.journals VALUES (3727, 896, 'Issue', 10, NULL, '2020-06-22 14:54:17+07', false);
INSERT INTO public.journals VALUES (3728, 896, 'Issue', 10, NULL, '2020-06-22 14:54:22+07', false);
INSERT INTO public.journals VALUES (3729, 889, 'Issue', 15, '', '2020-06-22 17:14:37+07', false);
INSERT INTO public.journals VALUES (3730, 929, 'Issue', 4, NULL, '2020-06-23 07:59:14+07', false);
INSERT INTO public.journals VALUES (3731, 825, 'Issue', 5, '', '2020-06-23 09:38:12+07', false);
INSERT INTO public.journals VALUES (3732, 882, 'Issue', 5, '', '2020-06-23 09:38:12+07', false);
INSERT INTO public.journals VALUES (3733, 883, 'Issue', 5, '', '2020-06-23 09:38:12+07', false);
INSERT INTO public.journals VALUES (3734, 886, 'Issue', 5, '', '2020-06-23 09:38:12+07', false);
INSERT INTO public.journals VALUES (3735, 932, 'Issue', 5, '', '2020-06-23 09:38:13+07', false);
INSERT INTO public.journals VALUES (3736, 933, 'Issue', 5, '', '2020-06-23 09:39:30+07', false);
INSERT INTO public.journals VALUES (3737, 934, 'Issue', 5, '', '2020-06-23 09:39:31+07', false);
INSERT INTO public.journals VALUES (3739, 860, 'Issue', 5, NULL, '2020-06-23 09:40:23+07', false);
INSERT INTO public.journals VALUES (3740, 861, 'Issue', 5, NULL, '2020-06-23 09:40:23+07', false);
INSERT INTO public.journals VALUES (3741, 862, 'Issue', 5, NULL, '2020-06-23 09:40:23+07', false);
INSERT INTO public.journals VALUES (3742, 863, 'Issue', 5, NULL, '2020-06-23 09:40:24+07', false);
INSERT INTO public.journals VALUES (3743, 864, 'Issue', 5, NULL, '2020-06-23 09:40:24+07', false);
INSERT INTO public.journals VALUES (3744, 865, 'Issue', 5, NULL, '2020-06-23 09:40:24+07', false);
INSERT INTO public.journals VALUES (3745, 866, 'Issue', 5, NULL, '2020-06-23 09:40:24+07', false);
INSERT INTO public.journals VALUES (3746, 868, 'Issue', 5, NULL, '2020-06-23 09:40:25+07', false);
INSERT INTO public.journals VALUES (3747, 871, 'Issue', 5, NULL, '2020-06-23 09:40:26+07', false);
INSERT INTO public.journals VALUES (3748, 872, 'Issue', 5, NULL, '2020-06-23 09:40:26+07', false);
INSERT INTO public.journals VALUES (3749, 873, 'Issue', 5, NULL, '2020-06-23 09:40:26+07', false);
INSERT INTO public.journals VALUES (3750, 874, 'Issue', 5, NULL, '2020-06-23 09:40:26+07', false);
INSERT INTO public.journals VALUES (3751, 875, 'Issue', 5, NULL, '2020-06-23 09:40:26+07', false);
INSERT INTO public.journals VALUES (3752, 876, 'Issue', 5, NULL, '2020-06-23 09:40:27+07', false);
INSERT INTO public.journals VALUES (3753, 877, 'Issue', 5, NULL, '2020-06-23 09:40:27+07', false);
INSERT INTO public.journals VALUES (3754, 825, 'Issue', 5, '', '2020-06-23 09:40:41+07', false);
INSERT INTO public.journals VALUES (3755, 886, 'Issue', 5, '', '2020-06-23 09:40:42+07', false);
INSERT INTO public.journals VALUES (3756, 810, 'Issue', 5, NULL, '2020-06-23 09:40:59+07', false);
INSERT INTO public.journals VALUES (3757, 814, 'Issue', 5, NULL, '2020-06-23 09:40:59+07', false);
INSERT INTO public.journals VALUES (3758, 780, 'Issue', 5, NULL, '2020-06-23 09:40:59+07', false);
INSERT INTO public.journals VALUES (3759, 859, 'Issue', 5, NULL, '2020-06-23 09:40:59+07', false);
INSERT INTO public.journals VALUES (3760, 729, 'Issue', 5, NULL, '2020-06-23 09:41:08+07', false);
INSERT INTO public.journals VALUES (3761, 731, 'Issue', 5, NULL, '2020-06-23 09:41:09+07', false);
INSERT INTO public.journals VALUES (3762, 501, 'Issue', 5, NULL, '2020-06-23 09:41:17+07', false);
INSERT INTO public.journals VALUES (3763, 503, 'Issue', 5, NULL, '2020-06-23 09:41:17+07', false);
INSERT INTO public.journals VALUES (3764, 768, 'Issue', 5, NULL, '2020-06-23 09:41:17+07', false);
INSERT INTO public.journals VALUES (3766, 318, 'Issue', 5, NULL, '2020-06-23 13:19:27+07', false);
INSERT INTO public.journals VALUES (3767, 319, 'Issue', 5, NULL, '2020-06-23 13:19:27+07', false);
INSERT INTO public.journals VALUES (3768, 320, 'Issue', 5, NULL, '2020-06-23 13:19:27+07', false);
INSERT INTO public.journals VALUES (3769, 312, 'Issue', 5, NULL, '2020-06-23 13:19:27+07', false);
INSERT INTO public.journals VALUES (3770, 323, 'Issue', 5, NULL, '2020-06-23 13:19:27+07', false);
INSERT INTO public.journals VALUES (3771, 324, 'Issue', 5, NULL, '2020-06-23 13:19:27+07', false);
INSERT INTO public.journals VALUES (3772, 325, 'Issue', 5, NULL, '2020-06-23 13:19:27+07', false);
INSERT INTO public.journals VALUES (3773, 316, 'Issue', 5, '', '2020-06-23 13:19:46+07', false);
INSERT INTO public.journals VALUES (3774, 315, 'Issue', 5, NULL, '2020-06-23 13:20:00+07', false);
INSERT INTO public.journals VALUES (3775, 311, 'Issue', 5, NULL, '2020-06-23 13:20:07+07', false);
INSERT INTO public.journals VALUES (3776, 882, 'Issue', 5, NULL, '2020-06-23 13:53:30+07', false);
INSERT INTO public.journals VALUES (3777, 882, 'Issue', 5, NULL, '2020-06-23 13:53:46+07', false);
INSERT INTO public.journals VALUES (3778, 882, 'Issue', 5, NULL, '2020-06-23 13:53:58+07', false);
INSERT INTO public.journals VALUES (3779, 933, 'Issue', 12, NULL, '2020-06-25 09:38:08+07', false);
INSERT INTO public.journals VALUES (3780, 933, 'Issue', 12, NULL, '2020-06-25 09:38:15+07', false);
INSERT INTO public.journals VALUES (3781, 934, 'Issue', 12, NULL, '2020-06-25 09:38:22+07', false);
INSERT INTO public.journals VALUES (3782, 934, 'Issue', 12, NULL, '2020-06-25 09:38:36+07', false);
INSERT INTO public.journals VALUES (3783, 929, 'Issue', 4, NULL, '2020-06-25 09:46:44+07', false);
INSERT INTO public.journals VALUES (3784, 934, 'Issue', 12, NULL, '2020-06-25 16:41:07+07', false);
INSERT INTO public.journals VALUES (3785, 934, 'Issue', 12, NULL, '2020-06-26 08:25:05+07', false);
INSERT INTO public.journals VALUES (3786, 937, 'Issue', 12, NULL, '2020-06-26 11:10:07+07', false);
INSERT INTO public.journals VALUES (3787, 937, 'Issue', 12, NULL, '2020-06-26 11:10:13+07', false);
INSERT INTO public.journals VALUES (3788, 937, 'Issue', 12, '', '2020-06-26 11:10:48+07', false);
INSERT INTO public.journals VALUES (3789, 938, 'Issue', 12, '', '2020-06-26 11:10:48+07', false);
INSERT INTO public.journals VALUES (3790, 939, 'Issue', 12, '', '2020-06-26 11:10:48+07', false);
INSERT INTO public.journals VALUES (3791, 940, 'Issue', 12, '', '2020-06-26 11:10:49+07', false);
INSERT INTO public.journals VALUES (3792, 941, 'Issue', 12, '', '2020-06-26 11:10:49+07', false);
INSERT INTO public.journals VALUES (3793, 942, 'Issue', 12, '', '2020-06-26 11:10:49+07', false);
INSERT INTO public.journals VALUES (3794, 943, 'Issue', 12, '', '2020-06-26 11:10:49+07', false);
INSERT INTO public.journals VALUES (3795, 944, 'Issue', 12, '', '2020-06-26 11:10:49+07', false);
INSERT INTO public.journals VALUES (3796, 945, 'Issue', 12, '', '2020-06-26 11:10:50+07', false);
INSERT INTO public.journals VALUES (3797, 946, 'Issue', 12, '', '2020-06-26 11:10:50+07', false);
INSERT INTO public.journals VALUES (3798, 947, 'Issue', 12, '', '2020-06-26 11:10:50+07', false);
INSERT INTO public.journals VALUES (3799, 336, 'Issue', 8, NULL, '2020-06-26 11:37:00+07', false);
INSERT INTO public.journals VALUES (3800, 337, 'Issue', 8, NULL, '2020-06-26 11:37:00+07', false);
INSERT INTO public.journals VALUES (3801, 939, 'Issue', 13, NULL, '2020-06-26 13:22:40+07', false);
INSERT INTO public.journals VALUES (3802, 944, 'Issue', 13, NULL, '2020-06-26 13:24:58+07', false);
INSERT INTO public.journals VALUES (3803, 945, 'Issue', 13, NULL, '2020-06-26 13:24:58+07', false);
INSERT INTO public.journals VALUES (3804, 946, 'Issue', 13, NULL, '2020-06-26 13:24:58+07', false);
INSERT INTO public.journals VALUES (3805, 947, 'Issue', 13, NULL, '2020-06-26 13:24:58+07', false);
INSERT INTO public.journals VALUES (3806, 939, 'Issue', 12, NULL, '2020-06-26 14:08:15+07', false);
INSERT INTO public.journals VALUES (3807, 939, 'Issue', 12, NULL, '2020-06-26 14:08:26+07', false);
INSERT INTO public.journals VALUES (3808, 940, 'Issue', 12, NULL, '2020-06-26 14:52:08+07', false);
INSERT INTO public.journals VALUES (3809, 940, 'Issue', 12, NULL, '2020-06-26 14:52:17+07', false);
INSERT INTO public.journals VALUES (3814, 955, 'Issue', 5, '', '2020-06-26 15:23:52+07', false);
INSERT INTO public.journals VALUES (3815, 956, 'Issue', 19, '', '2020-06-26 15:32:09+07', false);
INSERT INTO public.journals VALUES (3816, 956, 'Issue', 19, '', '2020-06-26 15:32:44+07', false);
INSERT INTO public.journals VALUES (3817, 956, 'Issue', 5, NULL, '2020-06-26 16:12:26+07', false);
INSERT INTO public.journals VALUES (3818, 956, 'Issue', 5, NULL, '2020-06-26 16:12:32+07', false);
INSERT INTO public.journals VALUES (3819, 956, 'Issue', 5, '', '2020-06-26 16:13:00+07', false);
INSERT INTO public.journals VALUES (3821, 883, 'Issue', 10, NULL, '2020-06-27 08:00:56+07', false);
INSERT INTO public.journals VALUES (3822, 883, 'Issue', 10, NULL, '2020-06-27 08:01:01+07', false);
INSERT INTO public.journals VALUES (3823, 955, 'Issue', 13, NULL, '2020-06-27 08:33:52+07', false);
INSERT INTO public.journals VALUES (3824, 955, 'Issue', 13, NULL, '2020-06-27 08:33:59+07', false);
INSERT INTO public.journals VALUES (3825, 938, 'Issue', 13, NULL, '2020-06-27 08:34:18+07', false);
INSERT INTO public.journals VALUES (3826, 938, 'Issue', 13, NULL, '2020-06-27 08:34:30+07', false);
INSERT INTO public.journals VALUES (3827, 947, 'Issue', 13, NULL, '2020-06-27 08:35:09+07', false);
INSERT INTO public.journals VALUES (3828, 947, 'Issue', 13, NULL, '2020-06-27 08:35:21+07', false);
INSERT INTO public.journals VALUES (3829, 945, 'Issue', 10, NULL, '2020-06-27 08:38:19+07', false);
INSERT INTO public.journals VALUES (3830, 945, 'Issue', 10, NULL, '2020-06-27 08:38:27+07', false);
INSERT INTO public.journals VALUES (3831, 943, 'Issue', 10, NULL, '2020-06-27 09:09:47+07', false);
INSERT INTO public.journals VALUES (3832, 943, 'Issue', 10, NULL, '2020-06-27 09:10:13+07', false);
INSERT INTO public.journals VALUES (3833, 886, 'Issue', 10, NULL, '2020-06-27 14:15:15+07', false);
INSERT INTO public.journals VALUES (3834, 886, 'Issue', 10, NULL, '2020-06-27 14:15:22+07', false);
INSERT INTO public.journals VALUES (3835, 825, 'Issue', 10, NULL, '2020-06-27 14:15:38+07', false);
INSERT INTO public.journals VALUES (3836, 932, 'Issue', 10, NULL, '2020-06-27 14:15:57+07', false);
INSERT INTO public.journals VALUES (3837, 932, 'Issue', 10, NULL, '2020-06-27 14:16:04+07', false);
INSERT INTO public.journals VALUES (3838, 942, 'Issue', 10, NULL, '2020-06-27 14:16:32+07', false);
INSERT INTO public.journals VALUES (3839, 942, 'Issue', 10, NULL, '2020-06-27 14:16:38+07', false);
INSERT INTO public.journals VALUES (3840, 946, 'Issue', 10, NULL, '2020-06-27 14:39:47+07', false);
INSERT INTO public.journals VALUES (3841, 946, 'Issue', 10, NULL, '2020-06-27 14:39:58+07', false);
INSERT INTO public.journals VALUES (3842, 944, 'Issue', 10, NULL, '2020-06-27 16:39:30+07', false);
INSERT INTO public.journals VALUES (3843, 944, 'Issue', 10, NULL, '2020-06-27 16:39:37+07', false);
INSERT INTO public.journals VALUES (3844, 894, 'Issue', 15, NULL, '2020-06-30 08:12:13+07', false);
INSERT INTO public.journals VALUES (3845, 894, 'Issue', 15, NULL, '2020-06-30 08:12:24+07', false);
INSERT INTO public.journals VALUES (3846, 906, 'Issue', 15, NULL, '2020-06-30 08:14:13+07', false);
INSERT INTO public.journals VALUES (3847, 906, 'Issue', 15, NULL, '2020-06-30 08:14:20+07', false);
INSERT INTO public.journals VALUES (3848, 905, 'Issue', 15, NULL, '2020-06-30 08:14:30+07', false);
INSERT INTO public.journals VALUES (3849, 897, 'Issue', 15, NULL, '2020-06-30 08:14:40+07', false);
INSERT INTO public.journals VALUES (3850, 958, 'Issue', 5, '', '2020-06-30 10:42:54+07', false);
INSERT INTO public.journals VALUES (3851, 959, 'Issue', 5, '', '2020-06-30 10:42:54+07', false);
INSERT INTO public.journals VALUES (3852, 960, 'Issue', 5, '', '2020-06-30 10:42:54+07', false);
INSERT INTO public.journals VALUES (3853, 961, 'Issue', 5, '', '2020-06-30 10:42:54+07', false);
INSERT INTO public.journals VALUES (3854, 890, 'Issue', 5, '', '2020-07-01 09:48:52+07', false);
INSERT INTO public.journals VALUES (3855, 891, 'Issue', 5, '', '2020-07-01 09:48:53+07', false);
INSERT INTO public.journals VALUES (3856, 901, 'Issue', 5, '', '2020-07-01 09:48:54+07', false);
INSERT INTO public.journals VALUES (3857, 902, 'Issue', 5, '', '2020-07-01 09:48:55+07', false);
INSERT INTO public.journals VALUES (3858, 903, 'Issue', 5, '', '2020-07-01 09:48:55+07', false);
INSERT INTO public.journals VALUES (3859, 904, 'Issue', 5, '', '2020-07-01 09:48:55+07', false);
INSERT INTO public.journals VALUES (3860, 905, 'Issue', 5, '', '2020-07-01 09:48:55+07', false);
INSERT INTO public.journals VALUES (3862, 962, 'Issue', 5, '', '2020-07-01 09:48:56+07', false);
INSERT INTO public.journals VALUES (3864, 964, 'Issue', 5, '', '2020-07-01 09:48:56+07', false);
INSERT INTO public.journals VALUES (3865, 965, 'Issue', 5, '', '2020-07-01 09:48:56+07', false);
INSERT INTO public.journals VALUES (3866, 966, 'Issue', 5, '', '2020-07-01 09:48:56+07', false);
INSERT INTO public.journals VALUES (3867, 905, 'Issue', 15, NULL, '2020-07-01 10:08:58+07', false);
INSERT INTO public.journals VALUES (3868, 890, 'Issue', 15, NULL, '2020-07-01 10:10:09+07', false);
INSERT INTO public.journals VALUES (3869, 891, 'Issue', 15, NULL, '2020-07-01 10:10:53+07', false);
INSERT INTO public.journals VALUES (3870, 901, 'Issue', 15, NULL, '2020-07-01 10:10:53+07', false);
INSERT INTO public.journals VALUES (3871, 902, 'Issue', 15, NULL, '2020-07-01 10:10:53+07', false);
INSERT INTO public.journals VALUES (3872, 904, 'Issue', 15, NULL, '2020-07-01 10:10:53+07', false);
INSERT INTO public.journals VALUES (3873, 890, 'Issue', 15, NULL, '2020-07-01 10:11:14+07', false);
INSERT INTO public.journals VALUES (3874, 891, 'Issue', 15, NULL, '2020-07-01 10:11:14+07', false);
INSERT INTO public.journals VALUES (3875, 901, 'Issue', 15, NULL, '2020-07-01 10:11:15+07', false);
INSERT INTO public.journals VALUES (3876, 902, 'Issue', 15, NULL, '2020-07-01 10:11:15+07', false);
INSERT INTO public.journals VALUES (3877, 904, 'Issue', 15, NULL, '2020-07-01 10:11:15+07', false);
INSERT INTO public.journals VALUES (3878, 905, 'Issue', 15, NULL, '2020-07-01 10:11:43+07', false);
INSERT INTO public.journals VALUES (3879, 958, 'Issue', 15, NULL, '2020-07-01 15:41:26+07', false);
INSERT INTO public.journals VALUES (3880, 959, 'Issue', 15, NULL, '2020-07-01 15:44:12+07', false);
INSERT INTO public.journals VALUES (3881, 960, 'Issue', 15, NULL, '2020-07-01 15:44:12+07', false);
INSERT INTO public.journals VALUES (3882, 958, 'Issue', 15, NULL, '2020-07-01 15:44:23+07', false);
INSERT INTO public.journals VALUES (3883, 959, 'Issue', 15, NULL, '2020-07-01 15:44:24+07', false);
INSERT INTO public.journals VALUES (3884, 960, 'Issue', 15, NULL, '2020-07-01 15:44:24+07', false);
INSERT INTO public.journals VALUES (3885, 961, 'Issue', 15, NULL, '2020-07-01 15:49:36+07', false);
INSERT INTO public.journals VALUES (3886, 961, 'Issue', 15, NULL, '2020-07-01 15:49:43+07', false);
INSERT INTO public.journals VALUES (3887, 903, 'Issue', 15, NULL, '2020-07-02 14:21:36+07', false);
INSERT INTO public.journals VALUES (3888, 903, 'Issue', 15, NULL, '2020-07-02 14:21:46+07', false);
INSERT INTO public.journals VALUES (3889, 976, 'Issue', 4, '', '2020-07-06 09:10:23+07', false);
INSERT INTO public.journals VALUES (3890, 977, 'Issue', 4, '', '2020-07-06 09:10:27+07', false);
INSERT INTO public.journals VALUES (3891, 978, 'Issue', 4, '', '2020-07-06 09:10:28+07', false);
INSERT INTO public.journals VALUES (3892, 979, 'Issue', 4, '', '2020-07-06 09:10:28+07', false);
INSERT INTO public.journals VALUES (3893, 980, 'Issue', 4, '', '2020-07-06 09:10:28+07', false);
INSERT INTO public.journals VALUES (3894, 981, 'Issue', 4, '', '2020-07-06 09:10:29+07', false);
INSERT INTO public.journals VALUES (3895, 973, 'Issue', 4, '', '2020-07-06 09:21:20+07', false);
INSERT INTO public.journals VALUES (3896, 974, 'Issue', 4, '', '2020-07-06 09:21:20+07', false);
INSERT INTO public.journals VALUES (3897, 976, 'Issue', 4, '', '2020-07-06 09:21:20+07', false);
INSERT INTO public.journals VALUES (3898, 977, 'Issue', 4, '', '2020-07-06 09:21:20+07', false);
INSERT INTO public.journals VALUES (3899, 978, 'Issue', 4, '', '2020-07-06 09:21:21+07', false);
INSERT INTO public.journals VALUES (3900, 979, 'Issue', 4, '', '2020-07-06 09:21:21+07', false);
INSERT INTO public.journals VALUES (3901, 980, 'Issue', 4, '', '2020-07-06 09:21:21+07', false);
INSERT INTO public.journals VALUES (3902, 981, 'Issue', 4, '', '2020-07-06 09:21:21+07', false);
INSERT INTO public.journals VALUES (3903, 982, 'Issue', 4, '', '2020-07-06 09:21:57+07', false);
INSERT INTO public.journals VALUES (3904, 983, 'Issue', 4, '', '2020-07-06 09:21:57+07', false);
INSERT INTO public.journals VALUES (3905, 984, 'Issue', 4, '', '2020-07-06 09:21:57+07', false);
INSERT INTO public.journals VALUES (3906, 985, 'Issue', 4, '', '2020-07-06 09:22:53+07', false);
INSERT INTO public.journals VALUES (3907, 986, 'Issue', 4, '', '2020-07-06 09:22:53+07', false);
INSERT INTO public.journals VALUES (3908, 987, 'Issue', 4, '', '2020-07-06 09:22:53+07', false);
INSERT INTO public.journals VALUES (3909, 988, 'Issue', 4, '', '2020-07-06 09:22:53+07', false);
INSERT INTO public.journals VALUES (3910, 989, 'Issue', 4, '', '2020-07-06 09:22:54+07', false);
INSERT INTO public.journals VALUES (3911, 990, 'Issue', 4, '', '2020-07-06 09:22:54+07', false);
INSERT INTO public.journals VALUES (3912, 991, 'Issue', 4, '', '2020-07-06 09:22:54+07', false);
INSERT INTO public.journals VALUES (3913, 994, 'Issue', 4, '', '2020-07-06 09:22:54+07', false);
INSERT INTO public.journals VALUES (3914, 996, 'Issue', 4, '', '2020-07-06 09:22:54+07', false);
INSERT INTO public.journals VALUES (3915, 997, 'Issue', 4, '', '2020-07-06 09:22:55+07', false);
INSERT INTO public.journals VALUES (3916, 998, 'Issue', 4, '', '2020-07-06 09:22:55+07', false);
INSERT INTO public.journals VALUES (3917, 973, 'Issue', 4, '', '2020-07-06 09:34:25+07', false);
INSERT INTO public.journals VALUES (3918, 982, 'Issue', 4, '', '2020-07-06 09:34:56+07', false);
INSERT INTO public.journals VALUES (3919, 985, 'Issue', 4, '', '2020-07-06 09:34:56+07', false);
INSERT INTO public.journals VALUES (3920, 988, 'Issue', 4, '', '2020-07-06 09:34:57+07', false);
INSERT INTO public.journals VALUES (3921, 990, 'Issue', 4, '', '2020-07-06 09:34:57+07', false);
INSERT INTO public.journals VALUES (3922, 995, 'Issue', 4, '', '2020-07-06 09:34:58+07', false);
INSERT INTO public.journals VALUES (3923, 999, 'Issue', 4, '', '2020-07-06 09:34:58+07', false);
INSERT INTO public.journals VALUES (3924, 992, 'Issue', 4, '', '2020-07-06 09:35:21+07', false);
INSERT INTO public.journals VALUES (3925, 995, 'Issue', 4, '', '2020-07-06 17:00:41+07', false);
INSERT INTO public.journals VALUES (3926, 1002, 'Issue', 13, '', '2020-07-07 11:10:02+07', false);
INSERT INTO public.journals VALUES (3927, 1001, 'Issue', 13, '', '2020-07-07 11:10:29+07', false);
INSERT INTO public.journals VALUES (3928, 967, 'Issue', 13, '', '2020-07-07 11:22:25+07', false);
INSERT INTO public.journals VALUES (3929, 1007, 'Issue', 13, '', '2020-07-07 11:31:18+07', false);
INSERT INTO public.journals VALUES (3930, 1006, 'Issue', 13, '', '2020-07-07 11:31:39+07', false);
INSERT INTO public.journals VALUES (3931, 967, 'Issue', 13, '', '2020-07-07 11:32:03+07', false);
INSERT INTO public.journals VALUES (3932, 968, 'Issue', 13, '', '2020-07-07 11:32:34+07', false);
INSERT INTO public.journals VALUES (3934, 972, 'Issue', 15, NULL, '2020-07-07 16:48:46+07', false);
INSERT INTO public.journals VALUES (3935, 972, 'Issue', 15, NULL, '2020-07-07 16:48:57+07', false);
INSERT INTO public.journals VALUES (3936, 972, 'Issue', 15, '', '2020-07-07 16:49:29+07', false);
INSERT INTO public.journals VALUES (3937, 1000, 'Issue', 4, NULL, '2020-07-08 08:05:38+07', false);
INSERT INTO public.journals VALUES (3938, 1014, 'Issue', 12, '', '2020-07-08 08:09:40+07', false);
INSERT INTO public.journals VALUES (3939, 1015, 'Issue', 12, '', '2020-07-08 08:09:40+07', false);
INSERT INTO public.journals VALUES (3940, 1016, 'Issue', 12, '', '2020-07-08 08:09:41+07', false);
INSERT INTO public.journals VALUES (3941, 962, 'Issue', 5, '', '2020-07-08 01:14:43+07', false);
INSERT INTO public.journals VALUES (3942, 964, 'Issue', 5, '', '2020-07-08 01:14:43+07', false);
INSERT INTO public.journals VALUES (3944, 965, 'Issue', 5, '', '2020-07-08 01:15:53+07', false);
INSERT INTO public.journals VALUES (3945, 966, 'Issue', 5, '', '2020-07-08 01:15:53+07', false);
INSERT INTO public.journals VALUES (3947, 889, 'Issue', 5, NULL, '2020-07-08 01:18:00+07', false);
INSERT INTO public.journals VALUES (3948, 890, 'Issue', 5, NULL, '2020-07-08 01:18:00+07', false);
INSERT INTO public.journals VALUES (3949, 891, 'Issue', 5, NULL, '2020-07-08 01:18:00+07', false);
INSERT INTO public.journals VALUES (3950, 901, 'Issue', 5, NULL, '2020-07-08 01:18:01+07', false);
INSERT INTO public.journals VALUES (3951, 902, 'Issue', 5, NULL, '2020-07-08 01:18:01+07', false);
INSERT INTO public.journals VALUES (3952, 903, 'Issue', 5, NULL, '2020-07-08 01:18:01+07', false);
INSERT INTO public.journals VALUES (3953, 904, 'Issue', 5, NULL, '2020-07-08 01:18:01+07', false);
INSERT INTO public.journals VALUES (3954, 905, 'Issue', 5, NULL, '2020-07-08 01:18:02+07', false);
INSERT INTO public.journals VALUES (3955, 906, 'Issue', 5, NULL, '2020-07-08 01:18:03+07', false);
INSERT INTO public.journals VALUES (3956, 958, 'Issue', 5, NULL, '2020-07-08 01:18:03+07', false);
INSERT INTO public.journals VALUES (3957, 959, 'Issue', 5, NULL, '2020-07-08 01:18:03+07', false);
INSERT INTO public.journals VALUES (3958, 960, 'Issue', 5, NULL, '2020-07-08 01:18:03+07', false);
INSERT INTO public.journals VALUES (3959, 961, 'Issue', 5, NULL, '2020-07-08 01:18:04+07', false);
INSERT INTO public.journals VALUES (3960, 962, 'Issue', 5, NULL, '2020-07-08 01:18:04+07', false);
INSERT INTO public.journals VALUES (3961, 964, 'Issue', 5, NULL, '2020-07-08 01:18:04+07', false);
INSERT INTO public.journals VALUES (3962, 335, 'Issue', 5, NULL, '2020-07-08 01:18:35+07', false);
INSERT INTO public.journals VALUES (3963, 336, 'Issue', 5, NULL, '2020-07-08 01:18:35+07', false);
INSERT INTO public.journals VALUES (3964, 337, 'Issue', 5, NULL, '2020-07-08 01:18:35+07', false);
INSERT INTO public.journals VALUES (3965, 930, 'Issue', 5, NULL, '2020-07-08 01:18:36+07', false);
INSERT INTO public.journals VALUES (3966, 931, 'Issue', 5, NULL, '2020-07-08 01:18:36+07', false);
INSERT INTO public.journals VALUES (3967, 888, 'Issue', 5, NULL, '2020-07-08 01:18:36+07', false);
INSERT INTO public.journals VALUES (3968, 897, 'Issue', 5, NULL, '2020-07-08 01:18:36+07', false);
INSERT INTO public.journals VALUES (3969, 898, 'Issue', 5, NULL, '2020-07-08 01:18:36+07', false);
INSERT INTO public.journals VALUES (3970, 899, 'Issue', 5, NULL, '2020-07-08 01:18:36+07', false);
INSERT INTO public.journals VALUES (3971, 900, 'Issue', 5, NULL, '2020-07-08 01:18:36+07', false);
INSERT INTO public.journals VALUES (3972, 928, 'Issue', 5, NULL, '2020-07-08 01:18:37+07', false);
INSERT INTO public.journals VALUES (3973, 929, 'Issue', 5, NULL, '2020-07-08 01:18:37+07', false);
INSERT INTO public.journals VALUES (3974, 341, 'Issue', 5, NULL, '2020-07-08 01:18:54+07', false);
INSERT INTO public.journals VALUES (3975, 342, 'Issue', 5, NULL, '2020-07-08 01:18:54+07', false);
INSERT INTO public.journals VALUES (3976, 926, 'Issue', 5, NULL, '2020-07-08 01:18:55+07', false);
INSERT INTO public.journals VALUES (3977, 334, 'Issue', 5, NULL, '2020-07-08 01:18:55+07', false);
INSERT INTO public.journals VALUES (3978, 894, 'Issue', 5, NULL, '2020-07-08 01:18:55+07', false);
INSERT INTO public.journals VALUES (3979, 895, 'Issue', 5, NULL, '2020-07-08 01:18:55+07', false);
INSERT INTO public.journals VALUES (3980, 896, 'Issue', 5, NULL, '2020-07-08 01:18:55+07', false);
INSERT INTO public.journals VALUES (3981, 893, 'Issue', 5, NULL, '2020-07-08 01:18:55+07', false);
INSERT INTO public.journals VALUES (3982, 915, 'Issue', 5, NULL, '2020-07-08 01:18:56+07', false);
INSERT INTO public.journals VALUES (3983, 916, 'Issue', 5, NULL, '2020-07-08 01:18:56+07', false);
INSERT INTO public.journals VALUES (3984, 917, 'Issue', 5, NULL, '2020-07-08 01:18:56+07', false);
INSERT INTO public.journals VALUES (3985, 918, 'Issue', 5, NULL, '2020-07-08 01:18:56+07', false);
INSERT INTO public.journals VALUES (3986, 919, 'Issue', 5, NULL, '2020-07-08 01:18:56+07', false);
INSERT INTO public.journals VALUES (3987, 920, 'Issue', 5, NULL, '2020-07-08 01:18:57+07', false);
INSERT INTO public.journals VALUES (3988, 921, 'Issue', 5, NULL, '2020-07-08 01:18:57+07', false);
INSERT INTO public.journals VALUES (3989, 922, 'Issue', 5, NULL, '2020-07-08 01:18:57+07', false);
INSERT INTO public.journals VALUES (3990, 923, 'Issue', 5, NULL, '2020-07-08 01:18:57+07', false);
INSERT INTO public.journals VALUES (3991, 925, 'Issue', 5, NULL, '2020-07-08 01:18:57+07', false);
INSERT INTO public.journals VALUES (3992, 927, 'Issue', 5, NULL, '2020-07-08 01:18:57+07', false);
INSERT INTO public.journals VALUES (3993, 924, 'Issue', 5, '', '2020-07-08 08:21:51+07', false);
INSERT INTO public.journals VALUES (3994, 892, 'Issue', 5, NULL, '2020-07-08 08:22:47+07', false);
INSERT INTO public.journals VALUES (3995, 210, 'Issue', 5, NULL, '2020-07-08 08:23:02+07', false);
INSERT INTO public.journals VALUES (3996, 914, 'Issue', 5, NULL, '2020-07-08 08:23:02+07', false);
INSERT INTO public.journals VALUES (3997, 1001, 'Issue', 5, '', '2020-07-08 08:23:23+07', false);
INSERT INTO public.journals VALUES (3998, 1001, 'Issue', 5, '', '2020-07-08 08:23:37+07', false);
INSERT INTO public.journals VALUES (3999, 972, 'Issue', 5, NULL, '2020-07-08 08:25:02+07', false);
INSERT INTO public.journals VALUES (4000, 1000, 'Issue', 5, NULL, '2020-07-08 08:25:02+07', false);
INSERT INTO public.journals VALUES (4001, 970, 'Issue', 5, '', '2020-07-08 08:25:37+07', false);
INSERT INTO public.journals VALUES (4002, 971, 'Issue', 5, '', '2020-07-08 08:25:38+07', false);
INSERT INTO public.journals VALUES (4003, 975, 'Issue', 5, '', '2020-07-08 08:25:38+07', false);
INSERT INTO public.journals VALUES (4004, 993, 'Issue', 5, '', '2020-07-08 08:25:38+07', false);
INSERT INTO public.journals VALUES (4005, 995, 'Issue', 5, '', '2020-07-08 08:25:38+07', false);
INSERT INTO public.journals VALUES (4006, 970, 'Issue', 5, '', '2020-07-08 08:26:45+07', false);
INSERT INTO public.journals VALUES (4007, 971, 'Issue', 5, '', '2020-07-08 08:26:45+07', false);
INSERT INTO public.journals VALUES (4008, 975, 'Issue', 5, '', '2020-07-08 08:26:45+07', false);
INSERT INTO public.journals VALUES (4010, 966, 'Issue', 5, '', '2020-07-08 09:44:47+07', false);
INSERT INTO public.journals VALUES (4011, 993, 'Issue', 10, NULL, '2020-07-08 17:00:14+07', false);
INSERT INTO public.journals VALUES (4012, 993, 'Issue', 10, NULL, '2020-07-08 17:00:27+07', false);
INSERT INTO public.journals VALUES (4013, 1014, 'Issue', 12, NULL, '2020-07-08 17:10:21+07', false);
INSERT INTO public.journals VALUES (4014, 1014, 'Issue', 12, NULL, '2020-07-08 17:10:32+07', false);
INSERT INTO public.journals VALUES (4015, 971, 'Issue', 15, NULL, '2020-07-09 08:36:34+07', false);
INSERT INTO public.journals VALUES (4016, 971, 'Issue', 15, NULL, '2020-07-09 08:36:48+07', false);
INSERT INTO public.journals VALUES (4017, 1002, 'Issue', 15, NULL, '2020-07-09 08:41:33+07', false);
INSERT INTO public.journals VALUES (4018, 1003, 'Issue', 15, NULL, '2020-07-09 08:41:33+07', false);
INSERT INTO public.journals VALUES (4019, 1004, 'Issue', 15, NULL, '2020-07-09 08:41:33+07', false);
INSERT INTO public.journals VALUES (4020, 1005, 'Issue', 15, NULL, '2020-07-09 08:41:34+07', false);
INSERT INTO public.journals VALUES (4021, 1002, 'Issue', 15, NULL, '2020-07-09 08:42:03+07', false);
INSERT INTO public.journals VALUES (4022, 1003, 'Issue', 15, NULL, '2020-07-09 08:42:03+07', false);
INSERT INTO public.journals VALUES (4023, 1004, 'Issue', 15, NULL, '2020-07-09 08:42:03+07', false);
INSERT INTO public.journals VALUES (4024, 1005, 'Issue', 15, NULL, '2020-07-09 08:42:04+07', false);
INSERT INTO public.journals VALUES (4025, 1021, 'Issue', 15, NULL, '2020-07-09 09:06:06+07', false);
INSERT INTO public.journals VALUES (4026, 1031, 'Issue', 15, NULL, '2020-07-09 09:06:06+07', false);
INSERT INTO public.journals VALUES (4029, 1034, 'Issue', 15, NULL, '2020-07-09 09:06:07+07', false);
INSERT INTO public.journals VALUES (4030, 1021, 'Issue', 15, '', '2020-07-09 09:06:45+07', false);
INSERT INTO public.journals VALUES (4031, 1031, 'Issue', 15, '', '2020-07-09 09:07:06+07', false);
INSERT INTO public.journals VALUES (4032, 1031, 'Issue', 15, '', '2020-07-09 09:07:20+07', false);
INSERT INTO public.journals VALUES (4035, 1034, 'Issue', 15, '', '2020-07-09 09:08:42+07', false);
INSERT INTO public.journals VALUES (4036, 1036, 'Issue', 15, '', '2020-07-09 09:13:07+07', false);
INSERT INTO public.journals VALUES (4037, 1037, 'Issue', 15, '', '2020-07-09 09:13:07+07', false);
INSERT INTO public.journals VALUES (4038, 1038, 'Issue', 15, '', '2020-07-09 09:13:08+07', false);
INSERT INTO public.journals VALUES (4039, 1039, 'Issue', 15, '', '2020-07-09 09:13:08+07', false);
INSERT INTO public.journals VALUES (4040, 1040, 'Issue', 15, '', '2020-07-09 09:13:08+07', false);
INSERT INTO public.journals VALUES (4041, 1041, 'Issue', 15, '', '2020-07-09 09:13:08+07', false);
INSERT INTO public.journals VALUES (4042, 1042, 'Issue', 15, '', '2020-07-09 09:13:08+07', false);
INSERT INTO public.journals VALUES (4043, 1024, 'Issue', 15, NULL, '2020-07-09 09:22:19+07', false);
INSERT INTO public.journals VALUES (4044, 1024, 'Issue', 15, '', '2020-07-09 09:22:42+07', false);
INSERT INTO public.journals VALUES (4045, 1025, 'Issue', 15, '', '2020-07-09 09:23:12+07', false);
INSERT INTO public.journals VALUES (4046, 1026, 'Issue', 15, '', '2020-07-09 09:24:10+07', false);
INSERT INTO public.journals VALUES (4047, 1020, 'Issue', 10, NULL, '2020-07-09 09:26:24+07', false);
INSERT INTO public.journals VALUES (4048, 1022, 'Issue', 10, NULL, '2020-07-09 09:26:25+07', false);
INSERT INTO public.journals VALUES (4049, 1023, 'Issue', 10, NULL, '2020-07-09 09:26:25+07', false);
INSERT INTO public.journals VALUES (4050, 1020, 'Issue', 10, '', '2020-07-09 09:26:54+07', false);
INSERT INTO public.journals VALUES (4051, 1022, 'Issue', 10, '', '2020-07-09 09:27:14+07', false);
INSERT INTO public.journals VALUES (4052, 1023, 'Issue', 10, '', '2020-07-09 09:27:39+07', false);
INSERT INTO public.journals VALUES (4053, 1027, 'Issue', 15, NULL, '2020-07-09 09:28:02+07', false);
INSERT INTO public.journals VALUES (4054, 1028, 'Issue', 15, '', '2020-07-09 09:33:45+07', false);
INSERT INTO public.journals VALUES (4055, 1027, 'Issue', 15, '', '2020-07-09 09:36:57+07', false);
INSERT INTO public.journals VALUES (4056, 1027, 'Issue', 15, NULL, '2020-07-09 09:37:46+07', false);
INSERT INTO public.journals VALUES (4057, 1015, 'Issue', 12, NULL, '2020-07-09 15:38:44+07', false);
INSERT INTO public.journals VALUES (4058, 1015, 'Issue', 12, NULL, '2020-07-09 15:38:51+07', false);
INSERT INTO public.journals VALUES (4060, 1044, 'Issue', 5, '', '2020-07-10 08:49:21+07', false);
INSERT INTO public.journals VALUES (4062, 1044, 'Issue', 5, NULL, '2020-07-10 09:02:41+07', false);
INSERT INTO public.journals VALUES (4063, 1050, 'Issue', 12, '', '2020-07-11 09:22:06+07', false);
INSERT INTO public.journals VALUES (4064, 1016, 'Issue', 12, NULL, '2020-07-11 09:49:11+07', false);
INSERT INTO public.journals VALUES (4065, 1016, 'Issue', 12, NULL, '2020-07-11 09:49:16+07', false);
INSERT INTO public.journals VALUES (4066, 1050, 'Issue', 12, NULL, '2020-07-11 09:49:24+07', false);
INSERT INTO public.journals VALUES (4067, 1050, 'Issue', 12, NULL, '2020-07-11 09:49:31+07', false);
INSERT INTO public.journals VALUES (4068, 1026, 'Issue', 15, NULL, '2020-07-13 08:22:59+07', false);
INSERT INTO public.journals VALUES (4069, 1026, 'Issue', 15, NULL, '2020-07-13 08:23:15+07', false);
INSERT INTO public.journals VALUES (4070, 1026, 'Issue', 15, NULL, '2020-07-13 08:42:08+07', false);
INSERT INTO public.journals VALUES (4071, 1052, 'Issue', 4, '', '2020-07-13 09:23:13+07', false);
INSERT INTO public.journals VALUES (4072, 1054, 'Issue', 4, '', '2020-07-13 09:26:10+07', false);
INSERT INTO public.journals VALUES (4073, 1053, 'Issue', 4, '', '2020-07-13 09:26:25+07', false);
INSERT INTO public.journals VALUES (4074, 1052, 'Issue', 4, '', '2020-07-13 09:26:38+07', false);
INSERT INTO public.journals VALUES (4075, 1051, 'Issue', 4, '', '2020-07-13 09:30:03+07', false);
INSERT INTO public.journals VALUES (4076, 1058, 'Issue', 4, '', '2020-07-13 09:33:28+07', false);
INSERT INTO public.journals VALUES (4077, 1052, 'Issue', 4, '', '2020-07-13 09:35:48+07', false);
INSERT INTO public.journals VALUES (4078, 1068, 'Issue', 4, NULL, '2020-07-13 09:45:36+07', false);
INSERT INTO public.journals VALUES (4079, 1067, 'Issue', 4, NULL, '2020-07-13 09:46:05+07', false);
INSERT INTO public.journals VALUES (4080, 1066, 'Issue', 4, NULL, '2020-07-13 09:46:09+07', false);
INSERT INTO public.journals VALUES (4081, 1065, 'Issue', 4, NULL, '2020-07-13 09:46:14+07', false);
INSERT INTO public.journals VALUES (4082, 1064, 'Issue', 4, NULL, '2020-07-13 09:46:18+07', false);
INSERT INTO public.journals VALUES (4083, 1063, 'Issue', 4, NULL, '2020-07-13 09:46:22+07', false);
INSERT INTO public.journals VALUES (4084, 1062, 'Issue', 4, NULL, '2020-07-13 09:46:25+07', false);
INSERT INTO public.journals VALUES (4085, 1061, 'Issue', 4, NULL, '2020-07-13 09:46:29+07', false);
INSERT INTO public.journals VALUES (4086, 1060, 'Issue', 4, NULL, '2020-07-13 09:46:33+07', false);
INSERT INTO public.journals VALUES (4087, 1059, 'Issue', 4, NULL, '2020-07-13 09:46:36+07', false);
INSERT INTO public.journals VALUES (4088, 1058, 'Issue', 4, NULL, '2020-07-13 09:46:40+07', false);
INSERT INTO public.journals VALUES (4089, 1057, 'Issue', 4, NULL, '2020-07-13 09:46:44+07', false);
INSERT INTO public.journals VALUES (4090, 1056, 'Issue', 4, NULL, '2020-07-13 09:46:47+07', false);
INSERT INTO public.journals VALUES (4091, 1055, 'Issue', 4, NULL, '2020-07-13 09:46:51+07', false);
INSERT INTO public.journals VALUES (4092, 1054, 'Issue', 4, NULL, '2020-07-13 09:46:56+07', false);
INSERT INTO public.journals VALUES (4093, 1053, 'Issue', 4, NULL, '2020-07-13 09:47:00+07', false);
INSERT INTO public.journals VALUES (4094, 1052, 'Issue', 4, NULL, '2020-07-13 09:47:03+07', false);
INSERT INTO public.journals VALUES (4095, 1051, 'Issue', 4, NULL, '2020-07-13 09:47:07+07', false);
INSERT INTO public.journals VALUES (4096, 1066, 'Issue', 4, '', '2020-07-13 10:00:23+07', false);
INSERT INTO public.journals VALUES (4097, 1067, 'Issue', 4, '', '2020-07-13 10:01:14+07', false);
INSERT INTO public.journals VALUES (4098, 1079, 'Issue', 4, '', '2020-07-13 10:07:29+07', false);
INSERT INTO public.journals VALUES (4099, 1088, 'Issue', 4, '', '2020-07-13 10:35:42+07', false);
INSERT INTO public.journals VALUES (4100, 1089, 'Issue', 4, '', '2020-07-13 10:42:39+07', false);
INSERT INTO public.journals VALUES (4101, 1020, 'Issue', 10, '', '2020-07-13 11:03:20+07', false);
INSERT INTO public.journals VALUES (4102, 1021, 'Issue', 4, '', '2020-07-13 11:03:45+07', false);
INSERT INTO public.journals VALUES (4103, 1036, 'Issue', 5, '', '2020-07-13 11:04:18+07', false);
INSERT INTO public.journals VALUES (4104, 1037, 'Issue', 5, '', '2020-07-13 11:04:18+07', false);
INSERT INTO public.journals VALUES (4105, 1038, 'Issue', 5, '', '2020-07-13 11:04:19+07', false);
INSERT INTO public.journals VALUES (4106, 1039, 'Issue', 5, '', '2020-07-13 11:04:19+07', false);
INSERT INTO public.journals VALUES (4107, 1040, 'Issue', 5, '', '2020-07-13 11:04:19+07', false);
INSERT INTO public.journals VALUES (4108, 1022, 'Issue', 10, '', '2020-07-13 11:04:19+07', false);
INSERT INTO public.journals VALUES (4109, 1041, 'Issue', 5, '', '2020-07-13 11:04:19+07', false);
INSERT INTO public.journals VALUES (4110, 1042, 'Issue', 5, '', '2020-07-13 11:04:19+07', false);
INSERT INTO public.journals VALUES (4111, 1031, 'Issue', 4, '', '2020-07-13 11:04:25+07', false);
INSERT INTO public.journals VALUES (4112, 1021, 'Issue', 5, '', '2020-07-13 11:05:42+07', false);
INSERT INTO public.journals VALUES (4113, 965, 'Issue', 5, NULL, '2020-07-13 11:06:22+07', false);
INSERT INTO public.journals VALUES (4114, 1001, 'Issue', 13, NULL, '2020-07-13 11:06:35+07', false);
INSERT INTO public.journals VALUES (4115, 967, 'Issue', 13, NULL, '2020-07-13 11:07:10+07', false);
INSERT INTO public.journals VALUES (4116, 967, 'Issue', 13, NULL, '2020-07-13 11:07:27+07', false);
INSERT INTO public.journals VALUES (4119, 1007, 'Issue', 13, NULL, '2020-07-13 04:11:39+07', false);
INSERT INTO public.journals VALUES (4120, 1023, 'Issue', 10, '', '2020-07-13 04:11:59+07', false);
INSERT INTO public.journals VALUES (4121, 1007, 'Issue', 13, NULL, '2020-07-13 04:13:05+07', false);
INSERT INTO public.journals VALUES (4122, 1006, 'Issue', 13, NULL, '2020-07-13 04:13:39+07', false);
INSERT INTO public.journals VALUES (4123, 1006, 'Issue', 13, NULL, '2020-07-13 04:13:47+07', false);
INSERT INTO public.journals VALUES (4124, 1001, 'Issue', 13, NULL, '2020-07-13 04:14:05+07', false);
INSERT INTO public.journals VALUES (4125, 970, 'Issue', 15, NULL, '2020-07-13 11:23:36+07', false);
INSERT INTO public.journals VALUES (4126, 975, 'Issue', 15, NULL, '2020-07-13 11:23:50+07', false);
INSERT INTO public.journals VALUES (4127, 1030, 'Issue', 15, NULL, '2020-07-13 11:24:54+07', false);
INSERT INTO public.journals VALUES (4128, 970, 'Issue', 20, '', '2020-07-13 13:18:22+07', false);
INSERT INTO public.journals VALUES (4129, 975, 'Issue', 20, '', '2020-07-13 13:18:22+07', false);
INSERT INTO public.journals VALUES (4130, 995, 'Issue', 20, '', '2020-07-13 13:18:22+07', false);
INSERT INTO public.journals VALUES (4131, 1092, 'Issue', 4, '', '2020-07-13 13:41:36+07', false);
INSERT INTO public.journals VALUES (4132, 1100, 'Issue', 4, '', '2020-07-13 13:54:06+07', false);
INSERT INTO public.journals VALUES (4133, 1100, 'Issue', 4, '', '2020-07-13 13:54:18+07', false);
INSERT INTO public.journals VALUES (4134, 1044, 'Issue', 5, '', '2020-07-13 13:57:55+07', false);
INSERT INTO public.journals VALUES (4135, 1024, 'Issue', 5, '', '2020-07-13 14:00:54+07', false);
INSERT INTO public.journals VALUES (4136, 1024, 'Issue', 5, NULL, '2020-07-13 14:01:25+07', false);
INSERT INTO public.journals VALUES (4137, 1024, 'Issue', 5, NULL, '2020-07-13 14:01:32+07', false);
INSERT INTO public.journals VALUES (4138, 1025, 'Issue', 5, '', '2020-07-13 14:04:21+07', false);
INSERT INTO public.journals VALUES (4139, 1029, 'Issue', 5, NULL, '2020-07-13 14:06:45+07', false);
INSERT INTO public.journals VALUES (4140, 1027, 'Issue', 5, '', '2020-07-13 14:07:58+07', false);
INSERT INTO public.journals VALUES (4141, 1028, 'Issue', 5, '', '2020-07-13 14:07:58+07', false);
INSERT INTO public.journals VALUES (4142, 1029, 'Issue', 5, '', '2020-07-13 14:09:31+07', false);
INSERT INTO public.journals VALUES (4143, 1030, 'Issue', 5, '', '2020-07-13 14:09:31+07', false);
INSERT INTO public.journals VALUES (4144, 1021, 'Issue', 5, '', '2020-07-13 14:10:37+07', false);
INSERT INTO public.journals VALUES (4145, 1031, 'Issue', 5, '', '2020-07-13 14:10:37+07', false);
INSERT INTO public.journals VALUES (4148, 1034, 'Issue', 5, '', '2020-07-13 14:10:38+07', false);
INSERT INTO public.journals VALUES (4149, 971, 'Issue', 5, NULL, '2020-07-13 14:10:59+07', false);
INSERT INTO public.journals VALUES (4150, 993, 'Issue', 5, NULL, '2020-07-13 14:10:59+07', false);
INSERT INTO public.journals VALUES (4151, 1104, 'Issue', 4, '', '2020-07-13 14:12:07+07', false);
INSERT INTO public.journals VALUES (4152, 965, 'Issue', 13, '', '2020-07-13 14:19:27+07', false);
INSERT INTO public.journals VALUES (4153, 968, 'Issue', 13, '', '2020-07-13 14:19:28+07', false);
INSERT INTO public.journals VALUES (4154, 1011, 'Issue', 13, NULL, '2020-07-13 14:21:17+07', false);
INSERT INTO public.journals VALUES (4155, 1010, 'Issue', 13, NULL, '2020-07-13 14:21:25+07', false);
INSERT INTO public.journals VALUES (4156, 1010, 'Issue', 13, NULL, '2020-07-13 14:21:42+07', false);
INSERT INTO public.journals VALUES (4157, 1010, 'Issue', 13, NULL, '2020-07-13 14:21:50+07', false);
INSERT INTO public.journals VALUES (4158, 1006, 'Issue', 13, NULL, '2020-07-13 14:23:09+07', false);
INSERT INTO public.journals VALUES (4159, 1007, 'Issue', 13, NULL, '2020-07-13 14:23:09+07', false);
INSERT INTO public.journals VALUES (4160, 1104, 'Issue', 4, 'Cần hiển thị nội dung như vầy', '2020-07-13 14:24:24+07', false);
INSERT INTO public.journals VALUES (4161, 966, 'Issue', 13, '', '2020-07-13 14:24:51+07', false);
INSERT INTO public.journals VALUES (4162, 1011, 'Issue', 13, '', '2020-07-13 14:24:51+07', false);
INSERT INTO public.journals VALUES (4163, 1105, 'Issue', 4, '', '2020-07-13 14:28:38+07', false);
INSERT INTO public.journals VALUES (4164, 1105, 'Issue', 4, '', '2020-07-13 14:29:40+07', false);
INSERT INTO public.journals VALUES (4165, 1106, 'Issue', 4, '', '2020-07-13 14:34:10+07', false);
INSERT INTO public.journals VALUES (4166, 1107, 'Issue', 4, '', '2020-07-13 14:37:39+07', false);
INSERT INTO public.journals VALUES (4167, 1091, 'Issue', 4, 'Có 2 phầ, phần tìm kiếm là có các tiêu chí cụ thể hiển thị ra chọn để tìm kiếm, còn phần sắp xếp thì bấm vào button sắp xếp sẽ ra các tiêu chí sắp xếp như theo giá từ cao đến thấp, giá từ thấp đến cao, theo gần hết thời gian, còn nhiều thời gian, theo kích thước từ lớn đến nhỏ, theo kích thuoc tù nhỏ đến lớn, theo số lượng tham gia nhiều đến ít, theo số lượt thích nhiều đến ít', '2020-07-13 14:43:44+07', false);
INSERT INTO public.journals VALUES (4168, 1108, 'Issue', 4, '', '2020-07-13 14:48:59+07', false);
INSERT INTO public.journals VALUES (4169, 1110, 'Issue', 4, '', '2020-07-13 15:02:03+07', false);
INSERT INTO public.journals VALUES (4170, 1117, 'Issue', 4, '', '2020-07-13 15:06:19+07', false);
INSERT INTO public.journals VALUES (4172, 1124, 'Issue', 4, '', '2020-07-13 15:11:34+07', false);
INSERT INTO public.journals VALUES (4173, 1117, 'Issue', 4, NULL, '2020-07-13 15:17:06+07', false);
INSERT INTO public.journals VALUES (4174, 1122, 'Issue', 4, NULL, '2020-07-13 15:17:15+07', false);
INSERT INTO public.journals VALUES (4175, 1144, 'Issue', 5, '', '2020-07-13 15:20:06+07', false);
INSERT INTO public.journals VALUES (4176, 1145, 'Issue', 5, '', '2020-07-13 15:20:06+07', false);
INSERT INTO public.journals VALUES (4177, 1146, 'Issue', 5, '', '2020-07-13 15:20:07+07', false);
INSERT INTO public.journals VALUES (4178, 1124, 'Issue', 4, '', '2020-07-13 15:24:44+07', false);
INSERT INTO public.journals VALUES (4179, 1178, 'Issue', 5, '', '2020-07-13 15:28:37+07', false);
INSERT INTO public.journals VALUES (4180, 1173, 'Issue', 5, '', '2020-07-13 15:29:01+07', false);
INSERT INTO public.journals VALUES (4181, 1179, 'Issue', 5, '', '2020-07-13 15:29:51+07', false);
INSERT INTO public.journals VALUES (4182, 1181, 'Issue', 4, '', '2020-07-13 15:31:04+07', false);
INSERT INTO public.journals VALUES (4183, 1179, 'Issue', 5, '', '2020-07-13 15:31:52+07', false);
INSERT INTO public.journals VALUES (4184, 1142, 'Issue', 4, '', '2020-07-13 15:33:16+07', false);
INSERT INTO public.journals VALUES (4185, 1126, 'Issue', 4, '', '2020-07-13 15:35:28+07', false);
INSERT INTO public.journals VALUES (4186, 1114, 'Issue', 5, '', '2020-07-13 16:22:52+07', false);
INSERT INTO public.journals VALUES (4187, 1114, 'Issue', 5, '', '2020-07-13 16:23:36+07', false);
INSERT INTO public.journals VALUES (4188, 1116, 'Issue', 5, '', '2020-07-13 16:24:57+07', false);
INSERT INTO public.journals VALUES (4189, 1116, 'Issue', 5, NULL, '2020-07-13 16:25:12+07', false);
INSERT INTO public.journals VALUES (4190, 1116, 'Issue', 5, NULL, '2020-07-13 16:25:17+07', false);
INSERT INTO public.journals VALUES (4191, 1114, 'Issue', 5, '', '2020-07-13 16:27:53+07', false);
INSERT INTO public.journals VALUES (4192, 1194, 'Issue', 5, '', '2020-07-13 16:30:11+07', false);
INSERT INTO public.journals VALUES (4193, 1191, 'Issue', 5, '', '2020-07-13 16:31:32+07', false);
INSERT INTO public.journals VALUES (4194, 1194, 'Issue', 5, NULL, '2020-07-13 16:31:41+07', false);
INSERT INTO public.journals VALUES (4195, 1192, 'Issue', 5, '', '2020-07-13 16:32:10+07', false);
INSERT INTO public.journals VALUES (4196, 1115, 'Issue', 5, '', '2020-07-13 16:33:12+07', false);
INSERT INTO public.journals VALUES (4197, 1119, 'Issue', 5, '', '2020-07-13 16:33:33+07', false);
INSERT INTO public.journals VALUES (4198, 1193, 'Issue', 5, '', '2020-07-13 16:47:42+07', false);
INSERT INTO public.journals VALUES (4199, 1044, 'Issue', 19, '', '2020-07-13 17:08:07+07', false);
INSERT INTO public.journals VALUES (4200, 1027, 'Issue', 13, '', '2020-07-14 08:18:45+07', false);
INSERT INTO public.journals VALUES (4201, 1028, 'Issue', 13, '', '2020-07-14 08:18:45+07', false);
INSERT INTO public.journals VALUES (4202, 1020, 'Issue', 10, NULL, '2020-07-14 08:56:17+07', false);
INSERT INTO public.journals VALUES (4203, 1020, 'Issue', 10, NULL, '2020-07-14 08:56:32+07', false);
INSERT INTO public.journals VALUES (4204, 1194, 'Issue', 5, '', '2020-07-14 09:05:48+07', false);
INSERT INTO public.journals VALUES (4205, 1031, 'Issue', 4, NULL, '2020-07-14 09:43:24+07', false);
INSERT INTO public.journals VALUES (4206, 1021, 'Issue', 4, '', '2020-07-14 09:43:44+07', false);
INSERT INTO public.journals VALUES (4207, 1034, 'Issue', 4, '', '2020-07-14 09:44:05+07', false);
INSERT INTO public.journals VALUES (4208, 1074, 'Issue', 4, '', '2020-07-14 11:17:53+07', false);
INSERT INTO public.journals VALUES (4209, 1199, 'Issue', 4, '', '2020-07-14 11:18:09+07', false);
INSERT INTO public.journals VALUES (4210, 1199, 'Issue', 4, NULL, '2020-07-14 11:18:21+07', false);
INSERT INTO public.journals VALUES (4211, 1021, 'Issue', 4, NULL, '2020-07-14 14:53:06+07', false);
INSERT INTO public.journals VALUES (4212, 1211, 'Issue', 4, '', '2020-07-14 14:57:11+07', false);
INSERT INTO public.journals VALUES (4213, 1211, 'Issue', 4, NULL, '2020-07-14 14:58:46+07', false);
INSERT INTO public.journals VALUES (4214, 1210, 'Issue', 4, NULL, '2020-07-14 14:58:52+07', false);
INSERT INTO public.journals VALUES (4215, 1212, 'Issue', 4, NULL, '2020-07-14 14:58:56+07', false);
INSERT INTO public.journals VALUES (4216, 1213, 'Issue', 4, NULL, '2020-07-14 14:59:00+07', false);
INSERT INTO public.journals VALUES (4217, 1214, 'Issue', 4, NULL, '2020-07-14 14:59:06+07', false);
INSERT INTO public.journals VALUES (4218, 1215, 'Issue', 4, NULL, '2020-07-14 14:59:11+07', false);
INSERT INTO public.journals VALUES (4219, 1216, 'Issue', 4, '', '2020-07-14 15:00:26+07', false);
INSERT INTO public.journals VALUES (4220, 1226, 'Issue', 4, NULL, '2020-07-14 15:15:27+07', false);
INSERT INTO public.journals VALUES (4221, 1227, 'Issue', 4, NULL, '2020-07-14 15:19:39+07', false);
INSERT INTO public.journals VALUES (4222, 1228, 'Issue', 4, NULL, '2020-07-14 15:19:47+07', false);
INSERT INTO public.journals VALUES (4223, 1229, 'Issue', 4, NULL, '2020-07-14 15:19:52+07', false);
INSERT INTO public.journals VALUES (4224, 1234, 'Issue', 4, NULL, '2020-07-14 15:25:41+07', false);
INSERT INTO public.journals VALUES (4225, 1235, 'Issue', 4, NULL, '2020-07-14 15:25:46+07', false);
INSERT INTO public.journals VALUES (4226, 1031, 'Issue', 4, NULL, '2020-07-14 16:38:05+07', false);
INSERT INTO public.journals VALUES (4227, 1034, 'Issue', 4, '', '2020-07-14 16:38:20+07', false);
INSERT INTO public.journals VALUES (4228, 1034, 'Issue', 4, NULL, '2020-07-14 16:38:34+07', false);
INSERT INTO public.journals VALUES (4229, 1194, 'Issue', 5, NULL, '2020-07-15 08:09:25+07', false);
INSERT INTO public.journals VALUES (4230, 1190, 'Issue', 5, '', '2020-07-15 08:13:40+07', false);
INSERT INTO public.journals VALUES (4231, 1025, 'Issue', 8, '', '2020-07-15 08:41:25+07', false);
INSERT INTO public.journals VALUES (4232, 1115, 'Issue', 5, '', '2020-07-15 08:49:57+07', false);
INSERT INTO public.journals VALUES (4233, 1194, 'Issue', 5, '', '2020-07-15 08:50:34+07', false);
INSERT INTO public.journals VALUES (4234, 1191, 'Issue', 5, NULL, '2020-07-15 08:52:05+07', false);
INSERT INTO public.journals VALUES (4235, 1192, 'Issue', 5, '', '2020-07-15 08:52:28+07', false);
INSERT INTO public.journals VALUES (4236, 1021, 'Issue', 5, NULL, '2020-07-15 09:08:27+07', false);
INSERT INTO public.journals VALUES (4237, 1034, 'Issue', 5, NULL, '2020-07-15 09:08:28+07', false);
INSERT INTO public.journals VALUES (4238, 1031, 'Issue', 5, '', '2020-07-15 09:08:42+07', false);
INSERT INTO public.journals VALUES (4239, 1195, 'Issue', 5, '', '2020-07-15 09:09:27+07', false);
INSERT INTO public.journals VALUES (4240, 1196, 'Issue', 5, '', '2020-07-15 09:09:27+07', false);
INSERT INTO public.journals VALUES (4241, 1025, 'Issue', 5, '', '2020-07-15 02:12:31+07', false);
INSERT INTO public.journals VALUES (4242, 1039, 'Issue', 5, '', '2020-07-15 09:50:22+07', false);
INSERT INTO public.journals VALUES (4243, 1040, 'Issue', 5, '', '2020-07-15 09:50:22+07', false);
INSERT INTO public.journals VALUES (4244, 1042, 'Issue', 5, '', '2020-07-15 09:50:41+07', false);
INSERT INTO public.journals VALUES (4245, 1041, 'Issue', 5, '', '2020-07-15 09:50:53+07', false);
INSERT INTO public.journals VALUES (4246, 1037, 'Issue', 5, '', '2020-07-15 09:51:23+07', false);
INSERT INTO public.journals VALUES (4247, 1038, 'Issue', 5, '', '2020-07-15 09:51:23+07', false);
INSERT INTO public.journals VALUES (4248, 1036, 'Issue', 5, NULL, '2020-07-15 10:01:30+07', false);
INSERT INTO public.journals VALUES (4249, 1037, 'Issue', 5, NULL, '2020-07-15 10:01:30+07', false);
INSERT INTO public.journals VALUES (4250, 1038, 'Issue', 5, NULL, '2020-07-15 10:01:31+07', false);
INSERT INTO public.journals VALUES (4251, 1039, 'Issue', 5, NULL, '2020-07-15 10:01:31+07', false);
INSERT INTO public.journals VALUES (4252, 1040, 'Issue', 5, NULL, '2020-07-15 10:01:31+07', false);
INSERT INTO public.journals VALUES (4253, 1041, 'Issue', 5, NULL, '2020-07-15 10:01:31+07', false);
INSERT INTO public.journals VALUES (4254, 1042, 'Issue', 5, NULL, '2020-07-15 10:01:31+07', false);
INSERT INTO public.journals VALUES (4255, 1002, 'Issue', 5, NULL, '2020-07-15 10:01:52+07', false);
INSERT INTO public.journals VALUES (4256, 1003, 'Issue', 5, NULL, '2020-07-15 10:01:52+07', false);
INSERT INTO public.journals VALUES (4257, 1004, 'Issue', 5, NULL, '2020-07-15 10:01:52+07', false);
INSERT INTO public.journals VALUES (4258, 1005, 'Issue', 5, NULL, '2020-07-15 10:01:52+07', false);
INSERT INTO public.journals VALUES (4259, 1271, 'Issue', 21, NULL, '2020-07-15 10:23:55+07', false);
INSERT INTO public.journals VALUES (4261, 1274, 'Issue', 4, NULL, '2020-07-15 10:29:31+07', false);
INSERT INTO public.journals VALUES (4262, 1287, 'Issue', 4, NULL, '2020-07-15 10:56:57+07', false);
INSERT INTO public.journals VALUES (4263, 1288, 'Issue', 4, NULL, '2020-07-15 10:57:26+07', false);
INSERT INTO public.journals VALUES (4264, 1193, 'Issue', 5, '', '2020-07-15 13:34:14+07', false);
INSERT INTO public.journals VALUES (4265, 1310, 'Issue', 5, '', '2020-07-15 13:37:58+07', false);
INSERT INTO public.journals VALUES (4266, 1310, 'Issue', 5, '', '2020-07-15 13:38:31+07', false);
INSERT INTO public.journals VALUES (4267, 1309, 'Issue', 5, '', '2020-07-15 13:38:58+07', false);
INSERT INTO public.journals VALUES (4268, 1191, 'Issue', 5, '', '2020-07-15 13:39:15+07', false);
INSERT INTO public.journals VALUES (4269, 1192, 'Issue', 5, '', '2020-07-15 13:39:51+07', false);
INSERT INTO public.journals VALUES (4270, 1192, 'Issue', 5, NULL, '2020-07-15 13:40:32+07', false);
INSERT INTO public.journals VALUES (4271, 1340, 'Issue', 4, NULL, '2020-07-15 16:21:24+07', false);
INSERT INTO public.journals VALUES (4272, 1339, 'Issue', 4, '', '2020-07-15 16:23:19+07', false);
INSERT INTO public.journals VALUES (4273, 1031, 'Issue', 4, NULL, '2020-07-16 07:58:21+07', false);
INSERT INTO public.journals VALUES (4274, 1346, 'Issue', 4, NULL, '2020-07-16 08:27:03+07', false);
INSERT INTO public.journals VALUES (4275, 1011, 'Issue', 5, '', '2020-07-16 08:27:38+07', false);
INSERT INTO public.journals VALUES (4276, 1029, 'Issue', 5, '', '2020-07-16 08:28:21+07', false);
INSERT INTO public.journals VALUES (4277, 1030, 'Issue', 5, '', '2020-07-16 08:28:51+07', false);
INSERT INTO public.journals VALUES (4278, 1029, 'Issue', 5, NULL, '2020-07-16 08:30:56+07', false);
INSERT INTO public.journals VALUES (4279, 1030, 'Issue', 5, NULL, '2020-07-16 08:30:56+07', false);
INSERT INTO public.journals VALUES (4280, 1027, 'Issue', 5, '', '2020-07-16 08:31:23+07', false);
INSERT INTO public.journals VALUES (4281, 1028, 'Issue', 5, '', '2020-07-16 08:31:38+07', false);
INSERT INTO public.journals VALUES (4282, 1029, 'Issue', 5, '', '2020-07-16 08:31:59+07', false);
INSERT INTO public.journals VALUES (4283, 1030, 'Issue', 5, '', '2020-07-16 08:32:18+07', false);
INSERT INTO public.journals VALUES (4284, 1025, 'Issue', 5, '', '2020-07-16 08:32:47+07', false);
INSERT INTO public.journals VALUES (4285, 1022, 'Issue', 5, '', '2020-07-16 08:33:54+07', false);
INSERT INTO public.journals VALUES (4286, 1195, 'Issue', 5, '', '2020-07-16 08:34:13+07', false);
INSERT INTO public.journals VALUES (4287, 1196, 'Issue', 5, '', '2020-07-16 08:34:13+07', false);
INSERT INTO public.journals VALUES (4288, 1347, 'Issue', 4, NULL, '2020-07-16 08:34:50+07', false);
INSERT INTO public.journals VALUES (4289, 1023, 'Issue', 5, '', '2020-07-16 08:35:20+07', false);
INSERT INTO public.journals VALUES (4290, 1344, 'Issue', 4, NULL, '2020-07-16 08:36:57+07', false);
INSERT INTO public.journals VALUES (4291, 1346, 'Issue', 4, NULL, '2020-07-16 08:37:07+07', false);
INSERT INTO public.journals VALUES (4292, 1347, 'Issue', 4, NULL, '2020-07-16 08:37:11+07', false);
INSERT INTO public.journals VALUES (4293, 1023, 'Issue', 5, '', '2020-07-16 08:38:27+07', false);
INSERT INTO public.journals VALUES (4294, 1036, 'Issue', 5, NULL, '2020-07-16 08:44:41+07', false);
INSERT INTO public.journals VALUES (4295, 1037, 'Issue', 5, NULL, '2020-07-16 08:44:41+07', false);
INSERT INTO public.journals VALUES (4296, 1038, 'Issue', 5, NULL, '2020-07-16 08:44:42+07', false);
INSERT INTO public.journals VALUES (4297, 1039, 'Issue', 5, NULL, '2020-07-16 08:44:42+07', false);
INSERT INTO public.journals VALUES (4298, 1040, 'Issue', 5, NULL, '2020-07-16 08:44:42+07', false);
INSERT INTO public.journals VALUES (4299, 1041, 'Issue', 5, NULL, '2020-07-16 08:44:42+07', false);
INSERT INTO public.journals VALUES (4300, 1042, 'Issue', 5, NULL, '2020-07-16 08:44:42+07', false);
INSERT INTO public.journals VALUES (4301, 1351, 'Issue', 4, '', '2020-07-16 09:23:17+07', false);
INSERT INTO public.journals VALUES (4302, 1363, 'Issue', 4, NULL, '2020-07-16 10:37:05+07', false);
INSERT INTO public.journals VALUES (4303, 1363, 'Issue', 4, '', '2020-07-16 10:37:58+07', false);
INSERT INTO public.journals VALUES (4304, 1362, 'Issue', 4, '', '2020-07-16 10:38:21+07', false);
INSERT INTO public.journals VALUES (4305, 1191, 'Issue', 5, NULL, '2020-07-16 15:19:45+07', false);
INSERT INTO public.journals VALUES (4306, 1309, 'Issue', 5, NULL, '2020-07-16 15:19:54+07', false);
INSERT INTO public.journals VALUES (4307, 1309, 'Issue', 5, NULL, '2020-07-16 15:20:01+07', false);
INSERT INTO public.journals VALUES (4308, 1191, 'Issue', 5, '', '2020-07-16 15:20:45+07', false);
INSERT INTO public.journals VALUES (4309, 1115, 'Issue', 5, '', '2020-07-16 15:21:24+07', false);
INSERT INTO public.journals VALUES (4310, 1193, 'Issue', 5, '', '2020-07-16 15:22:01+07', false);
INSERT INTO public.journals VALUES (4311, 1309, 'Issue', 5, '', '2020-07-16 15:22:02+07', false);
INSERT INTO public.journals VALUES (4312, 1310, 'Issue', 5, '', '2020-07-16 15:22:02+07', false);
INSERT INTO public.journals VALUES (4313, 1311, 'Issue', 5, '', '2020-07-16 15:22:02+07', false);
INSERT INTO public.journals VALUES (4314, 1345, 'Issue', 6, NULL, '2020-07-16 16:02:11+07', false);
INSERT INTO public.journals VALUES (4315, 1345, 'Issue', 6, NULL, '2020-07-16 16:02:23+07', false);
INSERT INTO public.journals VALUES (4316, 1196, 'Issue', 5, '', '2020-07-17 08:15:24+07', false);
INSERT INTO public.journals VALUES (4317, 1029, 'Issue', 5, '', '2020-07-17 08:16:35+07', false);
INSERT INTO public.journals VALUES (4318, 1025, 'Issue', 5, '', '2020-07-17 08:20:00+07', false);
INSERT INTO public.journals VALUES (4319, 1030, 'Issue', 5, '', '2020-07-17 08:20:52+07', false);
INSERT INTO public.journals VALUES (4320, 1025, 'Issue', 8, NULL, '2020-07-17 08:20:57+07', false);
INSERT INTO public.journals VALUES (4321, 1025, 'Issue', 8, NULL, '2020-07-17 08:21:07+07', false);
INSERT INTO public.journals VALUES (4322, 1310, 'Issue', 24, '', '2020-07-17 08:33:24+07', false);
INSERT INTO public.journals VALUES (4323, 1310, 'Issue', 24, NULL, '2020-07-17 08:36:16+07', false);
INSERT INTO public.journals VALUES (4324, 1193, 'Issue', 24, NULL, '2020-07-17 08:37:04+07', false);
INSERT INTO public.journals VALUES (4325, 1193, 'Issue', 24, NULL, '2020-07-17 08:37:25+07', false);
INSERT INTO public.journals VALUES (4326, 1115, 'Issue', 24, NULL, '2020-07-17 08:37:50+07', false);
INSERT INTO public.journals VALUES (4327, 1073, 'Issue', 17, '', '2020-07-17 08:48:43+07', false);
INSERT INTO public.journals VALUES (4328, 1348, 'Issue', 17, '', '2020-07-17 08:49:01+07', false);
INSERT INTO public.journals VALUES (4329, 1307, 'Issue', 17, '', '2020-07-17 08:49:30+07', false);
INSERT INTO public.journals VALUES (4330, 1295, 'Issue', 17, '', '2020-07-17 08:50:59+07', false);
INSERT INTO public.journals VALUES (4331, 1300, 'Issue', 17, '', '2020-07-17 08:50:59+07', false);
INSERT INTO public.journals VALUES (4332, 1298, 'Issue', 17, '', '2020-07-17 08:51:00+07', false);
INSERT INTO public.journals VALUES (4333, 1299, 'Issue', 17, '', '2020-07-17 08:51:00+07', false);
INSERT INTO public.journals VALUES (4334, 1304, 'Issue', 17, '', '2020-07-17 08:51:00+07', false);
INSERT INTO public.journals VALUES (4335, 1306, 'Issue', 17, '', '2020-07-17 08:51:00+07', false);
INSERT INTO public.journals VALUES (4336, 1100, 'Issue', 17, '', '2020-07-17 08:53:04+07', false);
INSERT INTO public.journals VALUES (4337, 1206, 'Issue', 17, '', '2020-07-17 08:53:05+07', false);
INSERT INTO public.journals VALUES (4338, 1207, 'Issue', 17, '', '2020-07-17 08:53:05+07', false);
INSERT INTO public.journals VALUES (4339, 1197, 'Issue', 17, '', '2020-07-17 08:53:05+07', false);
INSERT INTO public.journals VALUES (4340, 1199, 'Issue', 17, '', '2020-07-17 08:53:05+07', false);
INSERT INTO public.journals VALUES (4341, 1110, 'Issue', 17, '', '2020-07-17 08:53:05+07', false);
INSERT INTO public.journals VALUES (4342, 1113, 'Issue', 17, '', '2020-07-17 08:53:05+07', false);
INSERT INTO public.journals VALUES (4343, 1200, 'Issue', 17, '', '2020-07-17 08:53:05+07', false);
INSERT INTO public.journals VALUES (4344, 1311, 'Issue', 5, '', '2020-07-17 09:16:44+07', false);
INSERT INTO public.journals VALUES (4345, 1190, 'Issue', 19, 'Nguyễn Khánh Nghĩa đã viết:
> Lấy file txt từ máy trạm, đẩy về server
> 
> Xử lý file và lưu dữ liệu
> 
> Windown service thường trú
> 
> Mở máy tính trạm lên là khởi động luôn
> 
> Nhận các cấu hình từ server

', '2020-07-17 09:23:42+07', false);
INSERT INTO public.journals VALUES (4346, 1192, 'Issue', 24, NULL, '2020-07-17 11:15:21+07', false);
INSERT INTO public.journals VALUES (4347, 1192, 'Issue', 24, NULL, '2020-07-17 11:15:55+07', false);
INSERT INTO public.journals VALUES (4348, 1171, 'Issue', 5, '', '2020-07-17 13:33:39+07', false);
INSERT INTO public.journals VALUES (4349, 1172, 'Issue', 5, '', '2020-07-17 13:36:19+07', false);
INSERT INTO public.journals VALUES (4350, 1311, 'Issue', 5, NULL, '2020-07-17 13:36:46+07', false);
INSERT INTO public.journals VALUES (4351, 1075, 'Issue', 17, NULL, '2020-07-17 13:51:16+07', false);
INSERT INTO public.journals VALUES (4352, 1308, 'Issue', 17, NULL, '2020-07-17 13:51:36+07', false);
INSERT INTO public.journals VALUES (4353, 1074, 'Issue', 17, NULL, '2020-07-17 13:52:52+07', false);
INSERT INTO public.journals VALUES (4354, 1078, 'Issue', 17, NULL, '2020-07-17 13:53:23+07', false);
INSERT INTO public.journals VALUES (4355, 1027, 'Issue', 15, '', '2020-07-17 14:03:28+07', false);
INSERT INTO public.journals VALUES (4356, 1369, 'Issue', 4, NULL, '2020-07-17 14:35:43+07', false);
INSERT INTO public.journals VALUES (4357, 1370, 'Issue', 4, '', '2020-07-17 14:45:50+07', false);
INSERT INTO public.journals VALUES (4358, 1373, 'Issue', 4, NULL, '2020-07-17 14:50:42+07', false);
INSERT INTO public.journals VALUES (4359, 1011, 'Issue', 5, '', '2020-07-17 15:33:38+07', false);
INSERT INTO public.journals VALUES (4360, 1195, 'Issue', 5, '', '2020-07-17 15:35:10+07', false);
INSERT INTO public.journals VALUES (4361, 1196, 'Issue', 5, '', '2020-07-17 15:35:11+07', false);
INSERT INTO public.journals VALUES (4362, 1022, 'Issue', 5, '', '2020-07-17 15:36:10+07', false);
INSERT INTO public.journals VALUES (4363, 1022, 'Issue', 5, '', '2020-07-17 15:36:37+07', false);
INSERT INTO public.journals VALUES (4364, 1196, 'Issue', 5, '', '2020-07-17 15:39:52+07', false);
INSERT INTO public.journals VALUES (4365, 1023, 'Issue', 4, NULL, '2020-07-17 16:26:52+07', false);
INSERT INTO public.journals VALUES (4366, 1029, 'Issue', 12, NULL, '2020-07-17 16:28:05+07', false);
INSERT INTO public.journals VALUES (4367, 1029, 'Issue', 12, NULL, '2020-07-17 16:28:29+07', false);
INSERT INTO public.journals VALUES (4368, 1172, 'Issue', 5, '', '2020-07-17 16:30:04+07', false);
INSERT INTO public.journals VALUES (4369, 1174, 'Issue', 5, '', '2020-07-17 16:30:04+07', false);
INSERT INTO public.journals VALUES (4370, 1171, 'Issue', 5, '', '2020-07-17 16:30:39+07', false);
INSERT INTO public.journals VALUES (4371, 1175, 'Issue', 5, '', '2020-07-17 16:30:40+07', false);
INSERT INTO public.journals VALUES (4372, 1391, 'Issue', 5, '', '2020-07-17 16:33:39+07', false);
INSERT INTO public.journals VALUES (4373, 1392, 'Issue', 5, '', '2020-07-17 16:33:39+07', false);
INSERT INTO public.journals VALUES (4374, 1178, 'Issue', 5, '', '2020-07-17 16:33:39+07', false);
INSERT INTO public.journals VALUES (4375, 1179, 'Issue', 5, '', '2020-07-17 16:33:40+07', false);
INSERT INTO public.journals VALUES (4376, 1182, 'Issue', 5, '', '2020-07-17 16:34:50+07', false);
INSERT INTO public.journals VALUES (4377, 1180, 'Issue', 5, '', '2020-07-17 16:36:07+07', false);
INSERT INTO public.journals VALUES (4378, 1389, 'Issue', 5, '', '2020-07-17 16:36:55+07', false);
INSERT INTO public.journals VALUES (4379, 1390, 'Issue', 5, '', '2020-07-17 16:36:55+07', false);
INSERT INTO public.journals VALUES (4380, 1118, 'Issue', 5, '', '2020-07-17 16:42:21+07', false);
INSERT INTO public.journals VALUES (4381, 1120, 'Issue', 5, '', '2020-07-17 16:42:21+07', false);
INSERT INTO public.journals VALUES (4382, 1123, 'Issue', 5, '', '2020-07-17 16:42:22+07', false);
INSERT INTO public.journals VALUES (4383, 1145, 'Issue', 5, '', '2020-07-17 16:42:22+07', false);
INSERT INTO public.journals VALUES (4384, 1146, 'Issue', 5, '', '2020-07-17 16:42:22+07', false);
INSERT INTO public.journals VALUES (4386, 1144, 'Issue', 5, '', '2020-07-17 16:43:18+07', false);
INSERT INTO public.journals VALUES (4387, 1144, 'Issue', 5, '', '2020-07-17 16:43:49+07', false);
INSERT INTO public.journals VALUES (4388, 1182, 'Issue', 5, NULL, '2020-07-17 16:44:23+07', false);
INSERT INTO public.journals VALUES (4394, 1133, 'Issue', 5, '', '2020-07-17 16:47:38+07', false);
INSERT INTO public.journals VALUES (4395, 1134, 'Issue', 5, '', '2020-07-17 16:47:38+07', false);
INSERT INTO public.journals VALUES (4396, 1135, 'Issue', 5, '', '2020-07-17 16:47:38+07', false);
INSERT INTO public.journals VALUES (4397, 1136, 'Issue', 5, '', '2020-07-17 16:47:38+07', false);
INSERT INTO public.journals VALUES (4398, 1137, 'Issue', 5, '', '2020-07-17 16:47:39+07', false);
INSERT INTO public.journals VALUES (4399, 1138, 'Issue', 5, '', '2020-07-17 16:47:39+07', false);
INSERT INTO public.journals VALUES (4400, 1139, 'Issue', 5, '', '2020-07-17 16:47:39+07', false);
INSERT INTO public.journals VALUES (4401, 1140, 'Issue', 5, '', '2020-07-17 16:47:39+07', false);
INSERT INTO public.journals VALUES (4402, 1171, 'Issue', 5, NULL, '2020-07-17 16:59:44+07', false);
INSERT INTO public.journals VALUES (4403, 1175, 'Issue', 5, NULL, '2020-07-17 16:59:44+07', false);
INSERT INTO public.journals VALUES (4404, 1391, 'Issue', 5, NULL, '2020-07-17 17:06:12+07', false);
INSERT INTO public.journals VALUES (4405, 1392, 'Issue', 5, NULL, '2020-07-17 17:06:13+07', false);
INSERT INTO public.journals VALUES (4406, 1178, 'Issue', 5, NULL, '2020-07-17 17:06:13+07', false);
INSERT INTO public.journals VALUES (4407, 1179, 'Issue', 5, NULL, '2020-07-17 17:06:13+07', false);
INSERT INTO public.journals VALUES (4414, 1143, 'Issue', 5, NULL, '2020-07-17 17:07:34+07', false);
INSERT INTO public.journals VALUES (4415, 1141, 'Issue', 5, '', '2020-07-17 17:08:09+07', false);
INSERT INTO public.journals VALUES (4416, 1143, 'Issue', 5, '', '2020-07-17 17:08:09+07', false);
INSERT INTO public.journals VALUES (4417, 1141, 'Issue', 5, NULL, '2020-07-17 17:08:22+07', false);
INSERT INTO public.journals VALUES (4418, 1169, 'Issue', 5, '', '2020-07-17 17:10:52+07', false);
INSERT INTO public.journals VALUES (4420, 1154, 'Issue', 5, '', '2020-07-17 17:14:05+07', false);
INSERT INTO public.journals VALUES (4421, 1155, 'Issue', 5, '', '2020-07-17 17:14:05+07', false);
INSERT INTO public.journals VALUES (4422, 1156, 'Issue', 5, '', '2020-07-17 17:14:05+07', false);
INSERT INTO public.journals VALUES (4423, 1157, 'Issue', 5, '', '2020-07-17 17:14:05+07', false);
INSERT INTO public.journals VALUES (4424, 1158, 'Issue', 5, '', '2020-07-17 17:14:05+07', false);
INSERT INTO public.journals VALUES (4425, 1159, 'Issue', 5, '', '2020-07-17 17:14:06+07', false);
INSERT INTO public.journals VALUES (4426, 1160, 'Issue', 5, '', '2020-07-17 17:14:06+07', false);
INSERT INTO public.journals VALUES (4427, 1161, 'Issue', 5, '', '2020-07-17 17:14:06+07', false);
INSERT INTO public.journals VALUES (4428, 1162, 'Issue', 5, '', '2020-07-17 17:14:06+07', false);
INSERT INTO public.journals VALUES (4429, 1163, 'Issue', 5, '', '2020-07-17 17:14:06+07', false);
INSERT INTO public.journals VALUES (4430, 1164, 'Issue', 5, '', '2020-07-17 17:14:06+07', false);
INSERT INTO public.journals VALUES (4431, 1165, 'Issue', 5, '', '2020-07-17 17:14:06+07', false);
INSERT INTO public.journals VALUES (4432, 1166, 'Issue', 5, '', '2020-07-17 17:14:06+07', false);
INSERT INTO public.journals VALUES (4433, 1183, 'Issue', 5, '', '2020-07-17 17:15:03+07', false);
INSERT INTO public.journals VALUES (4434, 1184, 'Issue', 5, '', '2020-07-17 17:15:03+07', false);
INSERT INTO public.journals VALUES (4435, 1185, 'Issue', 5, '', '2020-07-17 17:15:04+07', false);
INSERT INTO public.journals VALUES (4436, 1186, 'Issue', 5, '', '2020-07-17 17:15:04+07', false);
INSERT INTO public.journals VALUES (4437, 1368, 'Issue', 5, '', '2020-07-17 17:16:10+07', false);
INSERT INTO public.journals VALUES (4438, 1191, 'Issue', 24, NULL, '2020-07-18 09:04:34+07', false);
INSERT INTO public.journals VALUES (4439, 1191, 'Issue', 24, NULL, '2020-07-18 09:05:32+07', false);
INSERT INTO public.journals VALUES (4442, 1176, 'Issue', 19, '', '2020-07-18 10:23:34+07', false);
INSERT INTO public.journals VALUES (4443, 1176, 'Issue', 19, NULL, '2020-07-18 10:27:26+07', false);
INSERT INTO public.journals VALUES (4456, 966, 'Issue', 5, '', '2020-07-18 12:38:22+07', false);
INSERT INTO public.journals VALUES (4457, 1367, 'Issue', 5, '', '2020-07-18 12:47:31+07', false);
INSERT INTO public.journals VALUES (4458, 1118, 'Issue', 5, '', '2020-07-18 12:48:50+07', false);
INSERT INTO public.journals VALUES (4459, 1120, 'Issue', 5, '', '2020-07-18 12:49:18+07', false);
INSERT INTO public.journals VALUES (4460, 1123, 'Issue', 5, '', '2020-07-18 12:49:18+07', false);
INSERT INTO public.journals VALUES (4461, 1368, 'Issue', 5, '', '2020-07-18 12:50:00+07', false);
INSERT INTO public.journals VALUES (4477, 1141, 'Issue', 5, '', '2020-07-18 12:59:57+07', false);
INSERT INTO public.journals VALUES (4478, 1169, 'Issue', 5, '', '2020-07-18 13:00:40+07', false);
INSERT INTO public.journals VALUES (4480, 1171, 'Issue', 5, '', '2020-07-18 13:04:19+07', false);
INSERT INTO public.journals VALUES (4481, 1172, 'Issue', 5, '', '2020-07-18 13:05:40+07', false);
INSERT INTO public.journals VALUES (4482, 1172, 'Issue', 5, '', '2020-07-18 13:06:34+07', false);
INSERT INTO public.journals VALUES (4483, 1392, 'Issue', 5, '', '2020-07-18 13:07:26+07', false);
INSERT INTO public.journals VALUES (4484, 1174, 'Issue', 5, '', '2020-07-18 13:08:11+07', false);
INSERT INTO public.journals VALUES (4485, 1175, 'Issue', 5, '', '2020-07-18 13:08:12+07', false);
INSERT INTO public.journals VALUES (4486, 1178, 'Issue', 5, '', '2020-07-18 13:08:39+07', false);
INSERT INTO public.journals VALUES (4487, 1179, 'Issue', 5, '', '2020-07-18 13:09:30+07', false);
INSERT INTO public.journals VALUES (4488, 1182, 'Issue', 5, '', '2020-07-18 13:10:07+07', false);
INSERT INTO public.journals VALUES (4489, 1179, 'Issue', 5, '', '2020-07-18 13:10:27+07', false);
INSERT INTO public.journals VALUES (4490, 1180, 'Issue', 5, '', '2020-07-18 13:11:02+07', false);
INSERT INTO public.journals VALUES (4491, 1133, 'Issue', 5, '', '2020-07-18 13:12:35+07', false);
INSERT INTO public.journals VALUES (4492, 1134, 'Issue', 5, '', '2020-07-18 13:12:35+07', false);
INSERT INTO public.journals VALUES (4493, 1135, 'Issue', 5, '', '2020-07-18 13:12:35+07', false);
INSERT INTO public.journals VALUES (4494, 1136, 'Issue', 5, '', '2020-07-18 13:12:35+07', false);
INSERT INTO public.journals VALUES (4495, 1137, 'Issue', 5, '', '2020-07-18 13:12:35+07', false);
INSERT INTO public.journals VALUES (4496, 1138, 'Issue', 5, '', '2020-07-18 13:12:36+07', false);
INSERT INTO public.journals VALUES (4497, 1139, 'Issue', 5, '', '2020-07-18 13:12:36+07', false);
INSERT INTO public.journals VALUES (4498, 1140, 'Issue', 5, '', '2020-07-18 13:12:36+07', false);
INSERT INTO public.journals VALUES (4499, 1180, 'Issue', 5, NULL, '2020-07-18 13:13:34+07', false);
INSERT INTO public.journals VALUES (4500, 1389, 'Issue', 5, '', '2020-07-18 13:14:03+07', false);
INSERT INTO public.journals VALUES (4501, 1390, 'Issue', 5, '', '2020-07-18 13:14:22+07', false);
INSERT INTO public.journals VALUES (4502, 1144, 'Issue', 5, '', '2020-07-18 13:14:47+07', false);
INSERT INTO public.journals VALUES (4504, 1144, 'Issue', 5, '', '2020-07-18 13:16:26+07', false);
INSERT INTO public.journals VALUES (4505, 1133, 'Issue', 5, '', '2020-07-18 13:17:32+07', false);
INSERT INTO public.journals VALUES (4506, 1134, 'Issue', 5, '', '2020-07-18 13:18:07+07', false);
INSERT INTO public.journals VALUES (4507, 1135, 'Issue', 5, '', '2020-07-18 13:18:18+07', false);
INSERT INTO public.journals VALUES (4508, 1136, 'Issue', 5, '', '2020-07-18 13:18:38+07', false);
INSERT INTO public.journals VALUES (4509, 1340, 'Issue', 16, NULL, '2020-07-18 13:21:26+07', false);
INSERT INTO public.journals VALUES (4510, 1137, 'Issue', 5, '', '2020-07-18 13:29:05+07', false);
INSERT INTO public.journals VALUES (4511, 1138, 'Issue', 5, '', '2020-07-18 13:29:17+07', false);
INSERT INTO public.journals VALUES (4512, 1139, 'Issue', 5, '', '2020-07-18 13:29:35+07', false);
INSERT INTO public.journals VALUES (4513, 1140, 'Issue', 5, '', '2020-07-18 13:29:48+07', false);
INSERT INTO public.journals VALUES (4514, 1143, 'Issue', 5, '', '2020-07-18 13:31:58+07', false);
INSERT INTO public.journals VALUES (4515, 1183, 'Issue', 5, '', '2020-07-18 13:49:05+07', false);
INSERT INTO public.journals VALUES (4516, 1184, 'Issue', 5, '', '2020-07-18 13:49:05+07', false);
INSERT INTO public.journals VALUES (4517, 1185, 'Issue', 5, '', '2020-07-18 13:49:06+07', false);
INSERT INTO public.journals VALUES (4518, 1186, 'Issue', 5, '', '2020-07-18 13:49:06+07', false);
INSERT INTO public.journals VALUES (4519, 1076, 'Issue', 17, NULL, '2020-07-18 13:56:00+07', false);
INSERT INTO public.journals VALUES (4520, 1387, 'Issue', 19, '', '2020-07-18 14:04:47+07', false);
INSERT INTO public.journals VALUES (4521, 1402, 'Issue', 19, '', '2020-07-18 14:09:29+07', false);
INSERT INTO public.journals VALUES (4522, 1402, 'Issue', 19, '', '2020-07-18 14:10:01+07', false);
INSERT INTO public.journals VALUES (4523, 1011, 'Issue', 13, '', '2020-07-18 14:38:56+07', false);
INSERT INTO public.journals VALUES (4524, 1403, 'Issue', 13, '', '2020-07-18 14:39:57+07', false);
INSERT INTO public.journals VALUES (4525, 1003, 'Issue', 13, NULL, '2020-07-18 14:46:05+07', false);
INSERT INTO public.journals VALUES (4526, 1003, 'Issue', 13, NULL, '2020-07-18 14:46:15+07', false);
INSERT INTO public.journals VALUES (4527, 1404, 'Issue', 13, NULL, '2020-07-18 14:47:15+07', false);
INSERT INTO public.journals VALUES (4528, 1402, 'Issue', 19, '', '2020-07-18 15:10:58+07', false);
INSERT INTO public.journals VALUES (4529, 1031, 'Issue', 6, NULL, '2020-07-18 15:35:44+07', false);
INSERT INTO public.journals VALUES (4530, 1410, 'Issue', 4, NULL, '2020-07-18 15:36:35+07', false);
INSERT INTO public.journals VALUES (4531, 1190, 'Issue', 19, '', '2020-07-18 16:52:16+07', false);
INSERT INTO public.journals VALUES (4532, 1119, 'Issue', 24, NULL, '2020-07-20 08:36:12+07', false);
INSERT INTO public.journals VALUES (4533, 1119, 'Issue', 24, NULL, '2020-07-20 08:36:25+07', false);
INSERT INTO public.journals VALUES (4534, 1407, 'Issue', 5, '', '2020-07-20 08:37:58+07', false);
INSERT INTO public.journals VALUES (4535, 1365, 'Issue', 8, NULL, '2020-07-20 08:38:34+07', false);
INSERT INTO public.journals VALUES (4536, 1365, 'Issue', 8, NULL, '2020-07-20 08:38:42+07', false);
INSERT INTO public.journals VALUES (4537, 1028, 'Issue', 5, '', '2020-07-20 08:40:44+07', false);
INSERT INTO public.journals VALUES (4538, 1419, 'Issue', 21, '', '2020-07-20 09:56:19+07', false);
INSERT INTO public.journals VALUES (4539, 1418, 'Issue', 21, '', '2020-07-20 09:56:42+07', false);
INSERT INTO public.journals VALUES (4540, 1366, 'Issue', 4, NULL, '2020-07-20 10:01:53+07', false);
INSERT INTO public.journals VALUES (4541, 1420, 'Issue', 21, '', '2020-07-20 10:19:09+07', false);
INSERT INTO public.journals VALUES (4542, 1003, 'Issue', 13, NULL, '2020-07-20 11:10:03+07', false);
INSERT INTO public.journals VALUES (4543, 1003, 'Issue', 13, NULL, '2020-07-20 11:10:11+07', false);
INSERT INTO public.journals VALUES (4544, 1011, 'Issue', 13, NULL, '2020-07-20 11:11:55+07', false);
INSERT INTO public.journals VALUES (4545, 1011, 'Issue', 13, NULL, '2020-07-20 11:12:07+07', false);
INSERT INTO public.journals VALUES (4546, 1407, 'Issue', 13, NULL, '2020-07-20 11:18:24+07', false);
INSERT INTO public.journals VALUES (4547, 1407, 'Issue', 13, NULL, '2020-07-20 11:18:32+07', false);
INSERT INTO public.journals VALUES (4548, 1072, 'Issue', 17, NULL, '2020-07-20 11:18:57+07', false);
INSERT INTO public.journals VALUES (4549, 1382, 'Issue', 17, NULL, '2020-07-20 11:19:19+07', false);
INSERT INTO public.journals VALUES (4550, 1381, 'Issue', 17, NULL, '2020-07-20 11:19:27+07', false);
INSERT INTO public.journals VALUES (4551, 1022, 'Issue', 10, NULL, '2020-07-20 11:24:50+07', false);
INSERT INTO public.journals VALUES (4552, 1022, 'Issue', 10, NULL, '2020-07-20 11:25:01+07', false);
INSERT INTO public.journals VALUES (4553, 1428, 'Issue', 10, '', '2020-07-20 11:26:16+07', false);
INSERT INTO public.journals VALUES (4554, 1023, 'Issue', 4, NULL, '2020-07-20 11:27:39+07', false);
INSERT INTO public.journals VALUES (4555, 1366, 'Issue', 4, NULL, '2020-07-20 11:27:45+07', false);
INSERT INTO public.journals VALUES (4556, 1428, 'Issue', 10, NULL, '2020-07-20 11:27:54+07', false);
INSERT INTO public.journals VALUES (4557, 1427, 'Issue', 10, '', '2020-07-20 11:28:29+07', false);
INSERT INTO public.journals VALUES (4558, 1379, 'Issue', 17, NULL, '2020-07-20 11:35:30+07', false);
INSERT INTO public.journals VALUES (4559, 1379, 'Issue', 17, NULL, '2020-07-20 11:35:38+07', false);
INSERT INTO public.journals VALUES (4560, 1427, 'Issue', 10, NULL, '2020-07-20 11:36:17+07', false);
INSERT INTO public.journals VALUES (4561, 1404, 'Issue', 10, NULL, '2020-07-20 13:16:40+07', false);
INSERT INTO public.journals VALUES (4562, 1404, 'Issue', 10, NULL, '2020-07-20 13:16:48+07', false);
INSERT INTO public.journals VALUES (4563, 1378, 'Issue', 17, NULL, '2020-07-20 13:29:34+07', false);
INSERT INTO public.journals VALUES (4564, 1371, 'Issue', 17, NULL, '2020-07-20 13:30:10+07', false);
INSERT INTO public.journals VALUES (4565, 1427, 'Issue', 10, NULL, '2020-07-20 13:35:56+07', false);
INSERT INTO public.journals VALUES (4566, 1427, 'Issue', 10, NULL, '2020-07-20 13:36:07+07', false);
INSERT INTO public.journals VALUES (4567, 1414, 'Issue', 14, NULL, '2020-07-20 13:58:04+07', false);
INSERT INTO public.journals VALUES (4574, 1456, 'Issue', 17, NULL, '2020-07-20 14:35:24+07', false);
INSERT INTO public.journals VALUES (4575, 1460, 'Issue', 17, NULL, '2020-07-20 14:37:02+07', false);
INSERT INTO public.journals VALUES (4581, 1484, 'Issue', 4, NULL, '2020-07-20 15:32:04+07', false);
INSERT INTO public.journals VALUES (4582, 1488, 'Issue', 4, '', '2020-07-20 15:35:18+07', false);
INSERT INTO public.journals VALUES (4583, 1487, 'Issue', 4, '', '2020-07-20 15:35:39+07', false);
INSERT INTO public.journals VALUES (4584, 1488, 'Issue', 4, '', '2020-07-20 15:35:51+07', false);
INSERT INTO public.journals VALUES (4585, 1491, 'Issue', 4, '', '2020-07-20 15:42:23+07', false);
INSERT INTO public.journals VALUES (4586, 1492, 'Issue', 4, '', '2020-07-20 15:42:39+07', false);
INSERT INTO public.journals VALUES (4591, 1428, 'Issue', 10, NULL, '2020-07-20 16:54:16+07', false);
INSERT INTO public.journals VALUES (4592, 1428, 'Issue', 10, NULL, '2020-07-20 16:54:26+07', false);
INSERT INTO public.journals VALUES (4593, 1526, 'Issue', 4, 'Hiển thị đầy đủ các bước để đăng đấu giá:
- Bước 1: Chọn danh mục đấu giá: chọn đấu giá đất hoặc đấu giá nhà
- Bước 2: Cài đặt cho phiên đấu giá: 
     + Phương thức đấu giá (bắt buộc)
     + Hình thức đấu giá (bắt buộc)
     + Phương thức đấu giá (bắt buộc)
     + Thời gian bắt đầu (bắt buộc)
     + Thời hạn nộp tiền đặt cọc (bắt buộc)
     + Tổng diện tích (bắt buộc)
     + Tài khoản ngân hàng để nộp tiền đặt cọc (Nhập nhiều tài khoản)
     + Yêu cầu nội dung nộp tiền
     + Điều kiện tham gia đấu giá
- Bước 3: Nhập thông tin từng lô đất:
     + Đối với thông tin lô đất: 
          * Ký hiệu lô đất(Số lô) - bắt buộc
          * Diện tích (m2) - bắt buộc
          * Khu đất
          * Tên đường
          * Lộ giới(m)
          * Đơn giá khởi điểm(VNĐ) - bắt buộc
          * Giá khởi điểm(VNĐ) - bắt buộc
          * Tiền đặt trước(VNĐ) - bắt buộc
          * Bước giá(VNĐ) - bắt buộc
     + Gộp thành danh sách các lô và đếm tổng số lô đã nhập.
- Bước 4: Nhập thông tin cá nhân/tổ chức đấu giá:
     + Chọn một cá nhân/tố chức đấu giá đã nhập trong hệ thống
     + Hoặc nhập mới một cá nhân/tổ chức đấu giá', '2020-07-20 16:54:45+07', false);
INSERT INTO public.journals VALUES (4595, 1028, 'Issue', 15, NULL, '2020-07-20 17:25:23+07', false);
INSERT INTO public.journals VALUES (4596, 1028, 'Issue', 15, NULL, '2020-07-20 17:25:41+07', false);
INSERT INTO public.journals VALUES (4597, 1406, 'Issue', 15, NULL, '2020-07-21 08:08:37+07', false);
INSERT INTO public.journals VALUES (4598, 1406, 'Issue', 15, NULL, '2020-07-21 08:08:55+07', false);
INSERT INTO public.journals VALUES (4599, 1535, 'Issue', 5, '', '2020-07-21 08:24:10+07', false);
INSERT INTO public.journals VALUES (4600, 1415, 'Issue', 15, NULL, '2020-07-21 08:47:58+07', false);
INSERT INTO public.journals VALUES (4601, 1415, 'Issue', 15, NULL, '2020-07-21 08:48:08+07', false);
INSERT INTO public.journals VALUES (4602, 1301, 'Issue', 22, NULL, '2020-07-21 09:11:41+07', false);
INSERT INTO public.journals VALUES (4603, 1171, 'Issue', 5, '', '2020-07-21 10:19:39+07', false);
INSERT INTO public.journals VALUES (4604, 1172, 'Issue', 5, '', '2020-07-21 10:19:39+07', false);
INSERT INTO public.journals VALUES (4605, 1195, 'Issue', 10, NULL, '2020-07-21 11:42:16+07', false);
INSERT INTO public.journals VALUES (4606, 1195, 'Issue', 10, NULL, '2020-07-21 11:42:28+07', false);
INSERT INTO public.journals VALUES (4607, 1417, 'Issue', 22, NULL, '2020-07-21 13:28:28+07', false);
INSERT INTO public.journals VALUES (4608, 1421, 'Issue', 30, NULL, '2020-07-21 15:07:55+07', false);
INSERT INTO public.journals VALUES (4609, 1386, 'Issue', 4, NULL, '2020-07-21 15:30:04+07', false);
INSERT INTO public.journals VALUES (4610, 1386, 'Issue', 4, NULL, '2020-07-21 15:30:22+07', false);
INSERT INTO public.journals VALUES (4611, 1196, 'Issue', 10, NULL, '2020-07-21 16:00:02+07', false);
INSERT INTO public.journals VALUES (4612, 1196, 'Issue', 10, NULL, '2020-07-21 16:00:46+07', false);
INSERT INTO public.journals VALUES (4613, 1083, 'Issue', 17, NULL, '2020-07-21 16:36:35+07', false);
INSERT INTO public.journals VALUES (4614, 1530, 'Issue', 5, '', '2020-07-22 08:54:59+07', false);
INSERT INTO public.journals VALUES (4615, 968, 'Issue', 5, '', '2020-07-22 09:36:28+07', false);
INSERT INTO public.journals VALUES (4616, 975, 'Issue', 15, NULL, '2020-07-22 09:38:17+07', false);
INSERT INTO public.journals VALUES (4617, 975, 'Issue', 15, NULL, '2020-07-22 09:38:27+07', false);
INSERT INTO public.journals VALUES (4618, 1536, 'Issue', 10, NULL, '2020-07-22 09:42:20+07', false);
INSERT INTO public.journals VALUES (4619, 1405, 'Issue', 4, NULL, '2020-07-22 09:45:30+07', false);
INSERT INTO public.journals VALUES (4620, 1405, 'Issue', 4, NULL, '2020-07-22 09:45:43+07', false);
INSERT INTO public.journals VALUES (4621, 1412, 'Issue', 5, '', '2020-07-22 11:14:20+07', false);
INSERT INTO public.journals VALUES (4622, 1190, 'Issue', 19, '', '2020-07-22 13:22:52+07', false);
INSERT INTO public.journals VALUES (4623, 1538, 'Issue', 4, '![](clipboard-202007221439-jfgmx.png)
', '2020-07-22 14:40:01+07', false);
INSERT INTO public.journals VALUES (4624, 1539, 'Issue', 4, '![](clipboard-202007221442-x8vui.png)
', '2020-07-22 14:42:10+07', false);
INSERT INTO public.journals VALUES (4625, 1539, 'Issue', 4, '', '2020-07-22 14:43:32+07', false);
INSERT INTO public.journals VALUES (4626, 1412, 'Issue', 19, '', '2020-07-22 14:54:08+07', false);
INSERT INTO public.journals VALUES (4627, 1543, 'Issue', 4, NULL, '2020-07-22 15:10:36+07', false);
INSERT INTO public.journals VALUES (4628, 1551, 'Issue', 4, '', '2020-07-22 15:12:17+07', false);
INSERT INTO public.journals VALUES (4629, 1551, 'Issue', 4, 'Cần hiển thị danh sách các phòng đấu giá đang diễn ra', '2020-07-22 15:15:37+07', false);
INSERT INTO public.journals VALUES (4630, 1553, 'Issue', 4, NULL, '2020-07-22 15:17:08+07', false);
INSERT INTO public.journals VALUES (4631, 1556, 'Issue', 4, NULL, '2020-07-22 15:20:45+07', false);
INSERT INTO public.journals VALUES (4632, 1552, 'Issue', 19, 'https://thuvienphapluat.vn/van-ban/tai-nguyen-moi-truong/Quyet-dinh-1459-QD-TCMT-2019-ky-thuat-tinh-toan-va-cong-bo-chi-so-chat-luong-khong-khi-Viet-Nam-428215.aspx', '2020-07-22 15:23:33+07', false);
INSERT INTO public.journals VALUES (4633, 1036, 'Issue', 6, NULL, '2020-07-22 15:26:12+07', false);
INSERT INTO public.journals VALUES (4634, 1036, 'Issue', 6, NULL, '2020-07-22 15:26:25+07', false);
INSERT INTO public.journals VALUES (4635, 1037, 'Issue', 6, '', '2020-07-22 15:27:10+07', false);
INSERT INTO public.journals VALUES (4636, 1038, 'Issue', 6, '', '2020-07-22 15:27:11+07', false);
INSERT INTO public.journals VALUES (4637, 1040, 'Issue', 6, '', '2020-07-22 15:27:11+07', false);
INSERT INTO public.journals VALUES (4638, 1041, 'Issue', 6, '', '2020-07-22 15:27:11+07', false);
INSERT INTO public.journals VALUES (4639, 1042, 'Issue', 6, '', '2020-07-22 15:27:11+07', false);
INSERT INTO public.journals VALUES (4640, 1552, 'Issue', 19, '', '2020-07-22 15:33:10+07', false);
INSERT INTO public.journals VALUES (4641, 1368, 'Issue', 24, NULL, '2020-07-22 15:53:09+07', false);
INSERT INTO public.journals VALUES (4642, 1368, 'Issue', 24, NULL, '2020-07-22 15:53:16+07', false);
INSERT INTO public.journals VALUES (4643, 1115, 'Issue', 5, NULL, '2020-07-22 15:54:55+07', false);
INSERT INTO public.journals VALUES (4644, 1116, 'Issue', 5, NULL, '2020-07-22 16:02:14+07', false);
INSERT INTO public.journals VALUES (4645, 1423, 'Issue', 29, NULL, '2020-07-22 16:37:06+07', false);
INSERT INTO public.journals VALUES (4646, 1421, 'Issue', 30, '', '2020-07-22 17:43:46+07', false);
INSERT INTO public.journals VALUES (4647, 1425, 'Issue', 34, NULL, '2020-07-23 07:49:18+07', false);
INSERT INTO public.journals VALUES (4648, 1403, 'Issue', 6, NULL, '2020-07-23 08:00:13+07', false);
INSERT INTO public.journals VALUES (4649, 1403, 'Issue', 6, NULL, '2020-07-23 08:00:19+07', false);
INSERT INTO public.journals VALUES (4650, 1410, 'Issue', 6, NULL, '2020-07-23 08:01:19+07', false);
INSERT INTO public.journals VALUES (4651, 1432, 'Issue', 6, NULL, '2020-07-23 08:21:36+07', false);
INSERT INTO public.journals VALUES (4652, 1433, 'Issue', 6, NULL, '2020-07-23 08:21:36+07', false);
INSERT INTO public.journals VALUES (4653, 1561, 'Issue', 15, '', '2020-07-23 08:30:53+07', false);
INSERT INTO public.journals VALUES (4654, 1040, 'Issue', 13, NULL, '2020-07-23 08:45:54+07', false);
INSERT INTO public.journals VALUES (4655, 1041, 'Issue', 13, NULL, '2020-07-23 08:46:05+07', false);
INSERT INTO public.journals VALUES (4656, 1042, 'Issue', 13, NULL, '2020-07-23 08:46:05+07', false);
INSERT INTO public.journals VALUES (4657, 1562, 'Issue', 4, '', '2020-07-23 09:05:31+07', false);
INSERT INTO public.journals VALUES (4658, 1567, 'Issue', 4, '', '2020-07-23 09:19:59+07', false);
INSERT INTO public.journals VALUES (4659, 1408, 'Issue', 8, NULL, '2020-07-23 09:20:03+07', false);
INSERT INTO public.journals VALUES (4660, 1409, 'Issue', 8, NULL, '2020-07-23 09:20:03+07', false);
INSERT INTO public.journals VALUES (4661, 1408, 'Issue', 8, NULL, '2020-07-23 09:20:12+07', false);
INSERT INTO public.journals VALUES (4662, 1409, 'Issue', 8, NULL, '2020-07-23 09:20:12+07', false);
INSERT INTO public.journals VALUES (4663, 1561, 'Issue', 15, '', '2020-07-23 09:43:34+07', false);
INSERT INTO public.journals VALUES (4664, 970, 'Issue', 15, NULL, '2020-07-23 09:43:54+07', false);
INSERT INTO public.journals VALUES (4665, 970, 'Issue', 15, NULL, '2020-07-23 09:44:23+07', false);
INSERT INTO public.journals VALUES (4666, 1311, 'Issue', 5, '', '2020-07-23 09:46:47+07', false);
INSERT INTO public.journals VALUES (4667, 1484, 'Issue', 4, '', '2020-07-23 09:47:29+07', false);
INSERT INTO public.journals VALUES (4668, 1431, 'Issue', 4, '', '2020-07-23 09:47:47+07', false);
INSERT INTO public.journals VALUES (4669, 1432, 'Issue', 4, NULL, '2020-07-23 09:47:51+07', false);
INSERT INTO public.journals VALUES (4670, 1433, 'Issue', 4, NULL, '2020-07-23 09:48:02+07', false);
INSERT INTO public.journals VALUES (4671, 1311, 'Issue', 5, '', '2020-07-23 09:48:25+07', false);
INSERT INTO public.journals VALUES (4672, 1143, 'Issue', 5, NULL, '2020-07-23 10:37:02+07', false);
INSERT INTO public.journals VALUES (4673, 1311, 'Issue', 5, NULL, '2020-07-23 10:44:54+07', false);
INSERT INTO public.journals VALUES (4674, 1367, 'Issue', 5, NULL, '2020-07-23 10:44:54+07', false);
INSERT INTO public.journals VALUES (4676, 1141, 'Issue', 5, NULL, '2020-07-23 10:44:55+07', false);
INSERT INTO public.journals VALUES (4677, 1143, 'Issue', 5, NULL, '2020-07-23 10:44:55+07', false);
INSERT INTO public.journals VALUES (4684, 1169, 'Issue', 5, NULL, '2020-07-23 10:44:57+07', false);
INSERT INTO public.journals VALUES (4686, 1421, 'Issue', 30, NULL, '2020-07-23 14:14:09+07', false);
INSERT INTO public.journals VALUES (4687, 1584, 'Issue', 26, '', '2020-07-23 15:42:51+07', false);
INSERT INTO public.journals VALUES (4688, 1171, 'Issue', 8, NULL, '2020-07-23 15:52:28+07', false);
INSERT INTO public.journals VALUES (4689, 1172, 'Issue', 8, NULL, '2020-07-23 15:52:28+07', false);
INSERT INTO public.journals VALUES (4690, 1171, 'Issue', 8, NULL, '2020-07-23 15:52:35+07', false);
INSERT INTO public.journals VALUES (4691, 1172, 'Issue', 8, NULL, '2020-07-23 15:52:36+07', false);
INSERT INTO public.journals VALUES (4692, 1423, 'Issue', 29, NULL, '2020-07-23 16:28:41+07', false);
INSERT INTO public.journals VALUES (4693, 1536, 'Issue', 10, NULL, '2020-07-24 08:19:50+07', false);
INSERT INTO public.journals VALUES (4694, 1536, 'Issue', 10, NULL, '2020-07-24 08:19:58+07', false);
INSERT INTO public.journals VALUES (4695, 1030, 'Issue', 12, NULL, '2020-07-24 10:41:23+07', false);
INSERT INTO public.journals VALUES (4696, 1030, 'Issue', 12, NULL, '2020-07-24 10:41:29+07', false);
INSERT INTO public.journals VALUES (4698, 1560, 'Issue', 5, '', '2020-07-24 10:42:40+07', false);
INSERT INTO public.journals VALUES (4699, 1311, 'Issue', 5, '', '2020-07-24 10:44:40+07', false);
INSERT INTO public.journals VALUES (4700, 1367, 'Issue', 5, '', '2020-07-24 10:44:41+07', false);
INSERT INTO public.journals VALUES (4702, 1178, 'Issue', 5, '', '2020-07-24 10:44:41+07', false);
INSERT INTO public.journals VALUES (4703, 1175, 'Issue', 5, '', '2020-07-24 10:47:30+07', false);
INSERT INTO public.journals VALUES (4704, 1182, 'Issue', 5, '', '2020-07-24 10:47:53+07', false);
INSERT INTO public.journals VALUES (4705, 1179, 'Issue', 5, '', '2020-07-24 10:48:08+07', false);
INSERT INTO public.journals VALUES (4706, 1178, 'Issue', 5, '', '2020-07-24 10:53:07+07', false);
INSERT INTO public.journals VALUES (4707, 1179, 'Issue', 5, '', '2020-07-24 10:53:07+07', false);
INSERT INTO public.journals VALUES (4708, 1389, 'Issue', 5, '', '2020-07-24 10:54:07+07', false);
INSERT INTO public.journals VALUES (4709, 1390, 'Issue', 5, '', '2020-07-24 10:54:07+07', false);
INSERT INTO public.journals VALUES (4710, 1182, 'Issue', 5, '', '2020-07-24 10:56:49+07', false);
INSERT INTO public.journals VALUES (4711, 1169, 'Issue', 5, '', '2020-07-24 10:59:14+07', false);
INSERT INTO public.journals VALUES (4713, 1421, 'Issue', 30, NULL, '2020-07-24 11:08:35+07', false);
INSERT INTO public.journals VALUES (4714, 1175, 'Issue', 8, NULL, '2020-07-24 11:18:35+07', false);
INSERT INTO public.journals VALUES (4715, 1178, 'Issue', 8, NULL, '2020-07-24 11:18:35+07', false);
INSERT INTO public.journals VALUES (4716, 1182, 'Issue', 8, NULL, '2020-07-24 11:18:36+07', false);
INSERT INTO public.journals VALUES (4717, 1174, 'Issue', 8, NULL, '2020-07-24 11:18:54+07', false);
INSERT INTO public.journals VALUES (4718, 1391, 'Issue', 8, NULL, '2020-07-24 11:18:55+07', false);
INSERT INTO public.journals VALUES (4719, 1392, 'Issue', 8, NULL, '2020-07-24 11:18:55+07', false);
INSERT INTO public.journals VALUES (4720, 1174, 'Issue', 8, NULL, '2020-07-24 11:19:03+07', false);
INSERT INTO public.journals VALUES (4721, 1175, 'Issue', 8, NULL, '2020-07-24 11:19:04+07', false);
INSERT INTO public.journals VALUES (4722, 1391, 'Issue', 8, NULL, '2020-07-24 11:19:04+07', false);
INSERT INTO public.journals VALUES (4723, 1392, 'Issue', 8, NULL, '2020-07-24 11:19:04+07', false);
INSERT INTO public.journals VALUES (4724, 1582, 'Issue', 19, '/QuanTrac/ChiSoChatLuongQuanTrac', '2020-07-24 11:25:35+07', false);
INSERT INTO public.journals VALUES (4725, 1594, 'Issue', 12, '', '2020-07-24 11:29:24+07', false);
INSERT INTO public.journals VALUES (4726, 1594, 'Issue', 12, '', '2020-07-24 11:29:54+07', false);
INSERT INTO public.journals VALUES (4727, 1047, 'Issue', 5, '', '2020-07-24 14:55:58+07', false);
INSERT INTO public.journals VALUES (4728, 1178, 'Issue', 5, '', '2020-07-24 14:57:33+07', false);
INSERT INTO public.journals VALUES (4729, 1389, 'Issue', 5, '', '2020-07-24 14:59:29+07', false);
INSERT INTO public.journals VALUES (4730, 1390, 'Issue', 5, '', '2020-07-24 14:59:29+07', false);
INSERT INTO public.journals VALUES (4731, 1179, 'Issue', 5, '', '2020-07-24 15:00:38+07', false);
INSERT INTO public.journals VALUES (4732, 1047, 'Issue', 5, '', '2020-07-24 15:01:17+07', false);
INSERT INTO public.journals VALUES (4733, 1182, 'Issue', 5, '', '2020-07-24 15:01:52+07', false);
INSERT INTO public.journals VALUES (4734, 1603, 'Issue', 5, NULL, '2020-07-24 15:04:55+07', false);
INSERT INTO public.journals VALUES (4737, 1584, 'Issue', 26, '', '2020-07-24 15:35:59+07', false);
INSERT INTO public.journals VALUES (4738, 1585, 'Issue', 22, NULL, '2020-07-24 15:41:45+07', false);
INSERT INTO public.journals VALUES (4739, 1182, 'Issue', 5, '', '2020-07-24 16:24:16+07', false);
INSERT INTO public.journals VALUES (4740, 1586, 'Issue', 29, '- 20/7: 
Hộp 37: 78 văn bản
Hộp 38: 206 văn bản
- 21&22/7: 
Hộp 44: 210 văn bản
Hộp 45: 310 văn bản
Hộp 48: 228 văn bản
- 23&24/7: 
Hộp 49: 89 văn bản
Hộp 50: 254 văn bản
Hộp 55: 209 văn bản
Hộp 62: 88 văn bản', '2020-07-24 16:27:55+07', false);
INSERT INTO public.journals VALUES (4741, 1587, 'Issue', 34, 'Phan Tuấn Tài đã viết:
> 20/7: Hộp 42 (200 văn bản)
> 21/7: Hộp 43 (151 văn bản)
> 22/7: Hộp 46 (135 văn bản)
> 23/7: Hộp 47 (312 văn bản)
>       Hộp 51 (71 văn bản)
> 24/7: Hộp 54 (245 văn bản)


Phan Tuấn Tài đã viết:
> 20/7: Hộp 42 (200 văn bản)
> 21/7: Hộp 43 (151 văn bản)
> 22/7: Hộp 46 (135 văn bản)
> 23/7: Hộp 47 (312 văn bản)
>       Hộp 51 (71 văn bản)



Phan Tuấn Tài đã viết:
> 20/7: Hộp 42 (200 văn bản)
> 21/7: Hộp 43 (151 văn bản)
> 22/7: Hộp 46 (135 văn bản)
> 23/7: Hộp 47 (312 văn bản)
>       Hộp 51 (71 văn bản)
> 24/7: Hộp 54 (245 văn bản)

', '2020-07-24 16:36:41+07', false);
INSERT INTO public.journals VALUES (4742, 1587, 'Issue', 34, '24/7: Hộp 54 (245 văn bản)', '2020-07-24 16:38:36+07', false);
INSERT INTO public.journals VALUES (4743, 1108, 'Issue', 17, NULL, '2020-07-24 17:06:36+07', false);
INSERT INTO public.journals VALUES (4744, 1385, 'Issue', 17, NULL, '2020-07-24 17:06:47+07', false);
INSERT INTO public.journals VALUES (4745, 1383, 'Issue', 17, NULL, '2020-07-24 17:07:01+07', false);
INSERT INTO public.journals VALUES (4746, 1375, 'Issue', 17, NULL, '2020-07-24 17:07:26+07', false);
INSERT INTO public.journals VALUES (4747, 1608, 'Issue', 35, '', '2020-07-24 17:27:23+07', false);
INSERT INTO public.journals VALUES (4748, 1608, 'Issue', 35, '', '2020-07-24 18:22:27+07', false);
INSERT INTO public.journals VALUES (4749, 1120, 'Issue', 24, NULL, '2020-07-25 08:32:47+07', false);
INSERT INTO public.journals VALUES (4750, 1120, 'Issue', 24, NULL, '2020-07-25 08:32:55+07', false);
INSERT INTO public.journals VALUES (4751, 1118, 'Issue', 24, NULL, '2020-07-25 08:33:17+07', false);
INSERT INTO public.journals VALUES (4752, 1118, 'Issue', 24, NULL, '2020-07-25 08:33:33+07', false);
INSERT INTO public.journals VALUES (4753, 1191, 'Issue', 24, NULL, '2020-07-25 08:36:09+07', false);
INSERT INTO public.journals VALUES (4754, 1191, 'Issue', 24, NULL, '2020-07-25 08:36:21+07', false);
INSERT INTO public.journals VALUES (4755, 1123, 'Issue', 24, NULL, '2020-07-25 08:36:46+07', false);
INSERT INTO public.journals VALUES (4757, 1416, 'Issue', 5, NULL, '2020-07-25 09:32:27+07', false);
INSERT INTO public.journals VALUES (4758, 1054, 'Issue', 17, NULL, '2020-07-25 11:04:52+07', false);
INSERT INTO public.journals VALUES (4759, 1611, 'Issue', 4, NULL, '2020-07-25 13:56:44+07', false);
INSERT INTO public.journals VALUES (4760, 1559, 'Issue', 19, 'Post API trước cho front end. Vẫn đang hiệu chỉnh dữ liệu dưới backend.
QuanTrac/AQI_24Gio?Id=<value>', '2020-07-25 15:37:50+07', false);
INSERT INTO public.journals VALUES (4761, 1552, 'Issue', 19, '', '2020-07-25 16:35:13+07', false);
INSERT INTO public.journals VALUES (4762, 1612, 'Issue', 19, '', '2020-07-25 16:43:50+07', false);
INSERT INTO public.journals VALUES (4763, 1613, 'Issue', 19, '', '2020-07-25 16:45:07+07', false);
INSERT INTO public.journals VALUES (4764, 1592, 'Issue', 4, NULL, '2020-07-25 16:52:44+07', false);
INSERT INTO public.journals VALUES (4765, 1559, 'Issue', 19, '', '2020-07-25 16:53:53+07', false);
INSERT INTO public.journals VALUES (4766, 1557, 'Issue', 19, '', '2020-07-25 17:01:43+07', false);
INSERT INTO public.journals VALUES (4767, 1554, 'Issue', 19, '', '2020-07-25 17:03:07+07', false);
INSERT INTO public.journals VALUES (4768, 1595, 'Issue', 5, '', '2020-07-26 10:16:28+07', false);
INSERT INTO public.journals VALUES (4769, 1596, 'Issue', 5, '', '2020-07-26 10:17:09+07', false);
INSERT INTO public.journals VALUES (4770, 1597, 'Issue', 5, '', '2020-07-26 10:17:10+07', false);
INSERT INTO public.journals VALUES (4771, 1598, 'Issue', 5, '', '2020-07-26 10:17:10+07', false);
INSERT INTO public.journals VALUES (4772, 1599, 'Issue', 5, '', '2020-07-26 10:17:26+07', false);
INSERT INTO public.journals VALUES (4773, 974, 'Issue', 5, '', '2020-07-26 10:25:46+07', false);
INSERT INTO public.journals VALUES (4774, 976, 'Issue', 5, '', '2020-07-26 10:25:46+07', false);
INSERT INTO public.journals VALUES (4775, 977, 'Issue', 5, '', '2020-07-26 10:25:46+07', false);
INSERT INTO public.journals VALUES (4776, 882, 'Issue', 5, NULL, '2020-07-26 10:26:17+07', false);
INSERT INTO public.journals VALUES (4777, 883, 'Issue', 5, NULL, '2020-07-26 10:26:17+07', false);
INSERT INTO public.journals VALUES (4778, 886, 'Issue', 5, NULL, '2020-07-26 10:26:17+07', false);
INSERT INTO public.journals VALUES (4779, 932, 'Issue', 5, NULL, '2020-07-26 10:26:17+07', false);
INSERT INTO public.journals VALUES (4780, 933, 'Issue', 5, NULL, '2020-07-26 10:26:18+07', false);
INSERT INTO public.journals VALUES (4781, 934, 'Issue', 5, NULL, '2020-07-26 10:26:18+07', false);
INSERT INTO public.journals VALUES (4782, 955, 'Issue', 5, NULL, '2020-07-26 10:26:18+07', false);
INSERT INTO public.journals VALUES (4783, 937, 'Issue', 5, NULL, '2020-07-26 10:26:18+07', false);
INSERT INTO public.journals VALUES (4784, 938, 'Issue', 5, NULL, '2020-07-26 10:26:18+07', false);
INSERT INTO public.journals VALUES (4785, 939, 'Issue', 5, NULL, '2020-07-26 10:26:18+07', false);
INSERT INTO public.journals VALUES (4786, 940, 'Issue', 5, NULL, '2020-07-26 10:26:19+07', false);
INSERT INTO public.journals VALUES (4787, 942, 'Issue', 5, NULL, '2020-07-26 10:26:19+07', false);
INSERT INTO public.journals VALUES (4788, 943, 'Issue', 5, NULL, '2020-07-26 10:26:19+07', false);
INSERT INTO public.journals VALUES (4789, 944, 'Issue', 5, NULL, '2020-07-26 10:26:19+07', false);
INSERT INTO public.journals VALUES (4790, 945, 'Issue', 5, NULL, '2020-07-26 10:26:19+07', false);
INSERT INTO public.journals VALUES (4791, 946, 'Issue', 5, NULL, '2020-07-26 10:26:20+07', false);
INSERT INTO public.journals VALUES (4792, 947, 'Issue', 5, NULL, '2020-07-26 10:26:20+07', false);
INSERT INTO public.journals VALUES (4793, 956, 'Issue', 5, NULL, '2020-07-26 10:26:20+07', false);
INSERT INTO public.journals VALUES (4794, 884, 'Issue', 5, NULL, '2020-07-26 10:26:30+07', false);
INSERT INTO public.journals VALUES (4795, 941, 'Issue', 5, '', '2020-07-26 10:26:59+07', false);
INSERT INTO public.journals VALUES (4796, 978, 'Issue', 5, '', '2020-07-26 10:27:16+07', false);
INSERT INTO public.journals VALUES (4797, 979, 'Issue', 5, '', '2020-07-26 10:27:16+07', false);
INSERT INTO public.journals VALUES (4798, 980, 'Issue', 5, '', '2020-07-26 10:27:17+07', false);
INSERT INTO public.journals VALUES (4799, 981, 'Issue', 5, '', '2020-07-26 10:27:49+07', false);
INSERT INTO public.journals VALUES (4800, 983, 'Issue', 5, '', '2020-07-26 10:27:49+07', false);
INSERT INTO public.journals VALUES (4801, 984, 'Issue', 5, '', '2020-07-26 10:27:50+07', false);
INSERT INTO public.journals VALUES (4802, 986, 'Issue', 5, '', '2020-07-26 10:28:15+07', false);
INSERT INTO public.journals VALUES (4803, 987, 'Issue', 5, '', '2020-07-26 10:28:15+07', false);
INSERT INTO public.journals VALUES (4804, 989, 'Issue', 5, '', '2020-07-26 10:28:15+07', false);
INSERT INTO public.journals VALUES (4805, 991, 'Issue', 5, '', '2020-07-26 10:28:41+07', false);
INSERT INTO public.journals VALUES (4806, 992, 'Issue', 5, '', '2020-07-26 10:28:42+07', false);
INSERT INTO public.journals VALUES (4807, 994, 'Issue', 5, '', '2020-07-26 10:28:42+07', false);
INSERT INTO public.journals VALUES (4808, 996, 'Issue', 5, '', '2020-07-26 10:29:09+07', false);
INSERT INTO public.journals VALUES (4809, 997, 'Issue', 5, '', '2020-07-26 10:29:09+07', false);
INSERT INTO public.journals VALUES (4810, 998, 'Issue', 5, '', '2020-07-26 10:29:09+07', false);
INSERT INTO public.journals VALUES (4811, 999, 'Issue', 5, '', '2020-07-26 10:30:59+07', false);
INSERT INTO public.journals VALUES (4812, 996, 'Issue', 5, '', '2020-07-26 10:32:56+07', false);
INSERT INTO public.journals VALUES (4813, 997, 'Issue', 5, '', '2020-07-26 10:32:56+07', false);
INSERT INTO public.journals VALUES (4814, 998, 'Issue', 5, '', '2020-07-26 10:32:56+07', false);
INSERT INTO public.journals VALUES (4815, 999, 'Issue', 5, '', '2020-07-26 10:32:56+07', false);
INSERT INTO public.journals VALUES (4816, 991, 'Issue', 5, '', '2020-07-26 10:33:19+07', false);
INSERT INTO public.journals VALUES (4817, 992, 'Issue', 5, '', '2020-07-26 10:33:19+07', false);
INSERT INTO public.journals VALUES (4818, 994, 'Issue', 5, '', '2020-07-26 10:33:19+07', false);
INSERT INTO public.journals VALUES (4819, 986, 'Issue', 5, '', '2020-07-26 10:33:56+07', false);
INSERT INTO public.journals VALUES (4820, 987, 'Issue', 5, '', '2020-07-26 10:33:56+07', false);
INSERT INTO public.journals VALUES (4821, 989, 'Issue', 5, '', '2020-07-26 10:33:56+07', false);
INSERT INTO public.journals VALUES (4822, 981, 'Issue', 5, '', '2020-07-26 10:35:23+07', false);
INSERT INTO public.journals VALUES (4823, 983, 'Issue', 5, '', '2020-07-26 10:35:24+07', false);
INSERT INTO public.journals VALUES (4824, 984, 'Issue', 5, '', '2020-07-26 10:35:24+07', false);
INSERT INTO public.journals VALUES (4825, 981, 'Issue', 5, '', '2020-07-26 10:36:48+07', false);
INSERT INTO public.journals VALUES (4826, 983, 'Issue', 5, '', '2020-07-26 10:36:49+07', false);
INSERT INTO public.journals VALUES (4827, 984, 'Issue', 5, '', '2020-07-26 10:36:49+07', false);
INSERT INTO public.journals VALUES (4828, 978, 'Issue', 5, '', '2020-07-26 10:37:14+07', false);
INSERT INTO public.journals VALUES (4829, 979, 'Issue', 5, '', '2020-07-26 10:37:14+07', false);
INSERT INTO public.journals VALUES (4830, 980, 'Issue', 5, '', '2020-07-26 10:37:14+07', false);
INSERT INTO public.journals VALUES (4831, 1559, 'Issue', 5, '', '2020-07-26 10:47:47+07', false);
INSERT INTO public.journals VALUES (4836, 1624, 'Issue', 5, NULL, '2020-07-26 11:07:01+07', false);
INSERT INTO public.journals VALUES (4837, 1271, 'Issue', 21, '', '2020-07-27 08:03:38+07', false);
INSERT INTO public.journals VALUES (4838, 1582, 'Issue', 19, '', '2020-07-27 08:07:58+07', false);
INSERT INTO public.journals VALUES (4839, 1612, 'Issue', 19, '/QuanTrac/AQI_24Gio/?Id=<number>', '2020-07-27 08:15:51+07', false);
INSERT INTO public.journals VALUES (4840, 1422, 'Issue', 21, '', '2020-07-27 08:18:46+07', false);
INSERT INTO public.journals VALUES (4841, 1609, 'Issue', 28, '', '2020-07-27 08:28:50+07', false);
INSERT INTO public.journals VALUES (4842, 1503, 'Issue', 15, NULL, '2020-07-27 08:34:42+07', false);
INSERT INTO public.journals VALUES (4843, 1503, 'Issue', 15, '', '2020-07-27 08:35:13+07', false);
INSERT INTO public.journals VALUES (4844, 1499, 'Issue', 15, NULL, '2020-07-27 08:45:59+07', false);
INSERT INTO public.journals VALUES (4845, 1500, 'Issue', 15, NULL, '2020-07-27 08:46:14+07', false);
INSERT INTO public.journals VALUES (4846, 1501, 'Issue', 15, NULL, '2020-07-27 08:46:24+07', false);
INSERT INTO public.journals VALUES (4849, 1635, 'Issue', 21, '', '2020-07-27 10:22:03+07', false);
INSERT INTO public.journals VALUES (4850, 1503, 'Issue', 15, NULL, '2020-07-27 10:25:16+07', false);
INSERT INTO public.journals VALUES (4851, 1503, 'Issue', 15, NULL, '2020-07-27 10:25:23+07', false);
INSERT INTO public.journals VALUES (4853, 1621, 'Issue', 19, NULL, '2020-07-27 13:41:08+07', false);
INSERT INTO public.journals VALUES (4854, 1622, 'Issue', 19, NULL, '2020-07-27 13:41:31+07', false);
INSERT INTO public.journals VALUES (4855, 1621, 'Issue', 19, '', '2020-07-27 13:42:13+07', false);
INSERT INTO public.journals VALUES (4856, 1622, 'Issue', 19, '', '2020-07-27 13:42:17+07', false);
INSERT INTO public.journals VALUES (4857, 1621, 'Issue', 5, NULL, '2020-07-27 13:47:42+07', false);
INSERT INTO public.journals VALUES (4858, 1622, 'Issue', 5, NULL, '2020-07-27 13:47:42+07', false);
INSERT INTO public.journals VALUES (4859, 1621, 'Issue', 5, '', '2020-07-27 13:48:38+07', false);
INSERT INTO public.journals VALUES (4860, 1622, 'Issue', 5, '', '2020-07-27 13:48:38+07', false);
INSERT INTO public.journals VALUES (4949, 1156, 'Issue', 5, NULL, '2020-07-29 08:13:25+07', false);
INSERT INTO public.journals VALUES (4950, 1157, 'Issue', 5, NULL, '2020-07-29 08:13:25+07', false);
INSERT INTO public.journals VALUES (4951, 1158, 'Issue', 5, NULL, '2020-07-29 08:13:25+07', false);
INSERT INTO public.journals VALUES (4861, 1621, 'Issue', 19, 'QuanTrac/SoLieuQuanTracKhiTuDong?Id=21&startDay=2020-07-11 2008:10:11.000&endDay: 202020-07-11%2016:10:11.000
Trạng thái thông số: 1-Bình thường, 2-Vượt Ngưỡng
Trạng thái thiết bị: 00-Đang đo, 01 Hiệu chỉnh, 02 Lỗi thiết bị', '2020-07-27 13:52:48+07', false);
INSERT INTO public.journals VALUES (4862, 1621, 'Issue', 19, '', '2020-07-27 13:53:13+07', false);
INSERT INTO public.journals VALUES (4863, 1411, 'Issue', 14, NULL, '2020-07-27 17:03:46+07', false);
INSERT INTO public.journals VALUES (4864, 1583, 'Issue', 14, NULL, '2020-07-27 17:03:53+07', false);
INSERT INTO public.journals VALUES (4865, 1583, 'Issue', 14, NULL, '2020-07-27 17:03:59+07', false);
INSERT INTO public.journals VALUES (4866, 1629, 'Issue', 30, 'Phan Lê Vũ đã viết:
> * 20/7:
> Hop 02: 470 trang
> Hop 09: 36 trang
> * 21/7
> Hop 10: 433 trang
> Hop 19: 413 trang
> Hop 32: 157 trang
> Hop 37: 23 trang
> Hop 40: 133 trang
> * 22/7
> Hop 44: 457 trang
> Hop 59: 669 trang
> * 23/7
> Hop 73: 677 trang
> Hop 81: 289 trang
> * 24/7
> Hop 89: 437 trang
Hop 01: 606 trang
* 27/7
Hop 155: 160 trang
Hop 157: 624 trang

', '2020-07-28 08:04:10+07', false);
INSERT INTO public.journals VALUES (4867, 1629, 'Issue', 30, NULL, '2020-07-28 08:07:26+07', false);
INSERT INTO public.journals VALUES (4868, 1595, 'Issue', 4, NULL, '2020-07-28 08:25:07+07', false);
INSERT INTO public.journals VALUES (4869, 1596, 'Issue', 4, NULL, '2020-07-28 08:25:20+07', false);
INSERT INTO public.journals VALUES (4870, 1597, 'Issue', 4, NULL, '2020-07-28 08:25:30+07', false);
INSERT INTO public.journals VALUES (4871, 1552, 'Issue', 5, '', '2020-07-28 08:43:32+07', false);
INSERT INTO public.journals VALUES (4872, 1554, 'Issue', 5, '', '2020-07-28 08:43:32+07', false);
INSERT INTO public.journals VALUES (4873, 1557, 'Issue', 5, '', '2020-07-28 08:43:33+07', false);
INSERT INTO public.journals VALUES (4874, 1554, 'Issue', 5, '', '2020-07-28 08:48:43+07', false);
INSERT INTO public.journals VALUES (4875, 1602, 'Issue', 5, '', '2020-07-28 08:49:55+07', false);
INSERT INTO public.journals VALUES (4876, 1557, 'Issue', 5, '', '2020-07-28 08:50:34+07', false);
INSERT INTO public.journals VALUES (4877, 1559, 'Issue', 5, '', '2020-07-28 08:51:07+07', false);
INSERT INTO public.journals VALUES (4878, 1616, 'Issue', 5, '', '2020-07-28 08:51:21+07', false);
INSERT INTO public.journals VALUES (4879, 1629, 'Issue', 30, 'Phan Lê Vũ đã viết (#note-1):
> Phan Lê Vũ đã viết:
> > * 20/7:
> > Hop 02: 470 trang
> > Hop 09: 36 trang
> > * 21/7
> > Hop 10: 433 trang
> > Hop 19: 413 trang
> > Hop 32: 157 trang
> > Hop 37: 23 trang
> > Hop 40: 133 trang
> > * 22/7
> > Hop 44: 457 trang
> > Hop 59: 669 trang
> > * 23/7
> > Hop 73: 677 trang
> > Hop 81: 289 trang
> > * 24/7
> > Hop 89: 437 trang
> Hop 01: 606 trang
> * 27/7
> Hop 155: 160 trang
> Hop 157: 624 trang
-> Tổng: 5584 trang
', '2020-07-28 09:04:05+07', false);
INSERT INTO public.journals VALUES (4880, 1180, 'Issue', 5, '', '2020-07-28 09:05:29+07', false);
INSERT INTO public.journals VALUES (4881, 1190, 'Issue', 5, '', '2020-07-28 09:05:29+07', false);
INSERT INTO public.journals VALUES (4882, 1044, 'Issue', 5, '', '2020-07-28 09:05:43+07', false);
INSERT INTO public.journals VALUES (4883, 1387, 'Issue', 5, '', '2020-07-28 09:06:00+07', false);
INSERT INTO public.journals VALUES (4884, 1179, 'Issue', 5, '', '2020-07-28 09:15:40+07', false);
INSERT INTO public.journals VALUES (4885, 1621, 'Issue', 19, 'Trạng thái thông số: 1-HieuChinh, 2-Vượt Ngưỡng, 3- Dang Do, 4-LoiThietBi
', '2020-07-28 09:28:08+07', false);
INSERT INTO public.journals VALUES (4886, 1145, 'Issue', 5, '', '2020-07-28 09:34:47+07', false);
INSERT INTO public.journals VALUES (4887, 1146, 'Issue', 5, '', '2020-07-28 09:34:47+07', false);
INSERT INTO public.journals VALUES (4888, 1144, 'Issue', 5, '', '2020-07-28 09:35:42+07', false);
INSERT INTO public.journals VALUES (4889, 1401, 'Issue', 5, '', '2020-07-28 09:37:45+07', false);
INSERT INTO public.journals VALUES (4890, 1145, 'Issue', 5, NULL, '2020-07-28 09:39:26+07', false);
INSERT INTO public.journals VALUES (4891, 1146, 'Issue', 5, NULL, '2020-07-28 09:39:26+07', false);
INSERT INTO public.journals VALUES (4892, 1645, 'Issue', 5, NULL, '2020-07-28 09:48:16+07', false);
INSERT INTO public.journals VALUES (4893, 1632, 'Issue', 4, NULL, '2020-07-28 10:32:11+07', false);
INSERT INTO public.journals VALUES (4894, 1633, 'Issue', 4, NULL, '2020-07-28 10:32:19+07', false);
INSERT INTO public.journals VALUES (4895, 1610, 'Issue', 4, NULL, '2020-07-28 10:32:28+07', false);
INSERT INTO public.journals VALUES (4896, 1603, 'Issue', 5, '', '2020-07-28 14:05:30+07', false);
INSERT INTO public.journals VALUES (4897, 1182, 'Issue', 5, '', '2020-07-28 14:06:01+07', false);
INSERT INTO public.journals VALUES (4898, 1612, 'Issue', 5, '', '2020-07-28 14:56:55+07', false);
INSERT INTO public.journals VALUES (4899, 1613, 'Issue', 5, '', '2020-07-28 14:57:33+07', false);
INSERT INTO public.journals VALUES (4900, 1587, 'Issue', 21, NULL, '2020-07-28 15:46:02+07', false);
INSERT INTO public.journals VALUES (4901, 1586, 'Issue', 21, NULL, '2020-07-28 15:46:38+07', false);
INSERT INTO public.journals VALUES (4902, 1638, 'Issue', 5, '', '2020-07-28 16:34:20+07', false);
INSERT INTO public.journals VALUES (4903, 1639, 'Issue', 5, '', '2020-07-28 16:34:21+07', false);
INSERT INTO public.journals VALUES (4904, 1640, 'Issue', 5, '', '2020-07-28 16:34:21+07', false);
INSERT INTO public.journals VALUES (4905, 1641, 'Issue', 5, '', '2020-07-28 16:34:21+07', false);
INSERT INTO public.journals VALUES (4906, 1643, 'Issue', 5, '', '2020-07-28 16:34:21+07', false);
INSERT INTO public.journals VALUES (4907, 1644, 'Issue', 5, '', '2020-07-28 16:34:21+07', false);
INSERT INTO public.journals VALUES (4908, 1645, 'Issue', 5, '', '2020-07-28 16:34:21+07', false);
INSERT INTO public.journals VALUES (4909, 1145, 'Issue', 5, '', '2020-07-28 16:38:24+07', false);
INSERT INTO public.journals VALUES (4910, 1146, 'Issue', 5, '', '2020-07-28 16:38:24+07', false);
INSERT INTO public.journals VALUES (4911, 1178, 'Issue', 5, '', '2020-07-28 16:38:25+07', false);
INSERT INTO public.journals VALUES (4912, 1179, 'Issue', 5, '', '2020-07-28 16:38:25+07', false);
INSERT INTO public.journals VALUES (4913, 1183, 'Issue', 5, NULL, '2020-07-28 16:44:54+07', false);
INSERT INTO public.journals VALUES (4914, 1184, 'Issue', 5, NULL, '2020-07-28 16:44:54+07', false);
INSERT INTO public.journals VALUES (4915, 1185, 'Issue', 5, NULL, '2020-07-28 16:44:54+07', false);
INSERT INTO public.journals VALUES (4916, 1049, 'Issue', 5, '', '2020-07-28 16:49:06+07', false);
INSERT INTO public.journals VALUES (4917, 1114, 'Issue', 5, NULL, '2020-07-28 16:49:42+07', false);
INSERT INTO public.journals VALUES (4918, 1115, 'Issue', 5, NULL, '2020-07-28 16:49:43+07', false);
INSERT INTO public.journals VALUES (4919, 1116, 'Issue', 5, NULL, '2020-07-28 16:49:43+07', false);
INSERT INTO public.journals VALUES (4920, 1118, 'Issue', 5, NULL, '2020-07-28 16:49:43+07', false);
INSERT INTO public.journals VALUES (4921, 1119, 'Issue', 5, NULL, '2020-07-28 16:49:43+07', false);
INSERT INTO public.journals VALUES (4922, 1120, 'Issue', 5, NULL, '2020-07-28 16:49:43+07', false);
INSERT INTO public.journals VALUES (4923, 1123, 'Issue', 5, NULL, '2020-07-28 16:49:43+07', false);
INSERT INTO public.journals VALUES (4924, 1191, 'Issue', 5, NULL, '2020-07-28 16:49:44+07', false);
INSERT INTO public.journals VALUES (4925, 1192, 'Issue', 5, NULL, '2020-07-28 16:49:44+07', false);
INSERT INTO public.journals VALUES (4926, 1194, 'Issue', 5, NULL, '2020-07-28 16:49:44+07', false);
INSERT INTO public.journals VALUES (4927, 1368, 'Issue', 5, NULL, '2020-07-28 16:49:44+07', false);
INSERT INTO public.journals VALUES (4928, 1560, 'Issue', 5, NULL, '2020-07-28 16:49:44+07', false);
INSERT INTO public.journals VALUES (4929, 1046, 'Issue', 5, NULL, '2020-07-28 16:56:24+07', false);
INSERT INTO public.journals VALUES (4930, 1171, 'Issue', 5, NULL, '2020-07-28 16:56:24+07', false);
INSERT INTO public.journals VALUES (4931, 1172, 'Issue', 5, NULL, '2020-07-28 16:56:25+07', false);
INSERT INTO public.journals VALUES (4932, 1173, 'Issue', 5, NULL, '2020-07-28 16:56:25+07', false);
INSERT INTO public.journals VALUES (4933, 1193, 'Issue', 5, NULL, '2020-07-28 16:56:25+07', false);
INSERT INTO public.journals VALUES (4934, 1309, 'Issue', 5, NULL, '2020-07-28 16:56:25+07', false);
INSERT INTO public.journals VALUES (4935, 1310, 'Issue', 5, NULL, '2020-07-28 16:56:25+07', false);
INSERT INTO public.journals VALUES (4936, 1311, 'Issue', 5, NULL, '2020-07-28 16:56:26+07', false);
INSERT INTO public.journals VALUES (4937, 1367, 'Issue', 5, NULL, '2020-07-28 16:56:26+07', false);
INSERT INTO public.journals VALUES (4939, 1647, 'Issue', 5, NULL, '2020-07-28 16:56:26+07', false);
INSERT INTO public.journals VALUES (4940, 1648, 'Issue', 5, NULL, '2020-07-28 16:56:26+07', false);
INSERT INTO public.journals VALUES (4941, 1174, 'Issue', 5, NULL, '2020-07-28 16:56:26+07', false);
INSERT INTO public.journals VALUES (4942, 1175, 'Issue', 5, NULL, '2020-07-28 16:56:27+07', false);
INSERT INTO public.journals VALUES (4943, 1176, 'Issue', 5, NULL, '2020-07-28 16:56:27+07', false);
INSERT INTO public.journals VALUES (4944, 1391, 'Issue', 5, NULL, '2020-07-28 16:56:27+07', false);
INSERT INTO public.journals VALUES (4945, 1392, 'Issue', 5, NULL, '2020-07-28 16:56:27+07', false);
INSERT INTO public.journals VALUES (4946, 1153, 'Issue', 5, NULL, '2020-07-29 08:13:24+07', false);
INSERT INTO public.journals VALUES (4947, 1154, 'Issue', 5, NULL, '2020-07-29 08:13:25+07', false);
INSERT INTO public.journals VALUES (4948, 1155, 'Issue', 5, NULL, '2020-07-29 08:13:25+07', false);
INSERT INTO public.journals VALUES (4952, 1159, 'Issue', 5, NULL, '2020-07-29 08:13:25+07', false);
INSERT INTO public.journals VALUES (4953, 1160, 'Issue', 5, NULL, '2020-07-29 08:13:25+07', false);
INSERT INTO public.journals VALUES (4954, 1161, 'Issue', 5, NULL, '2020-07-29 08:13:25+07', false);
INSERT INTO public.journals VALUES (4955, 1162, 'Issue', 5, NULL, '2020-07-29 08:13:25+07', false);
INSERT INTO public.journals VALUES (4956, 1163, 'Issue', 5, NULL, '2020-07-29 08:13:26+07', false);
INSERT INTO public.journals VALUES (4957, 1164, 'Issue', 5, NULL, '2020-07-29 08:13:26+07', false);
INSERT INTO public.journals VALUES (4958, 1165, 'Issue', 5, NULL, '2020-07-29 08:13:26+07', false);
INSERT INTO public.journals VALUES (4959, 1166, 'Issue', 5, NULL, '2020-07-29 08:13:26+07', false);
INSERT INTO public.journals VALUES (4960, 1552, 'Issue', 5, '', '2020-07-29 08:21:18+07', false);
INSERT INTO public.journals VALUES (4961, 1557, 'Issue', 5, '', '2020-07-29 08:21:53+07', false);
INSERT INTO public.journals VALUES (4962, 1559, 'Issue', 5, NULL, '2020-07-29 08:26:53+07', false);
INSERT INTO public.journals VALUES (4963, 1612, 'Issue', 5, NULL, '2020-07-29 08:26:53+07', false);
INSERT INTO public.journals VALUES (4964, 1613, 'Issue', 5, NULL, '2020-07-29 08:26:53+07', false);
INSERT INTO public.journals VALUES (4965, 1614, 'Issue', 5, NULL, '2020-07-29 08:26:53+07', false);
INSERT INTO public.journals VALUES (4966, 1615, 'Issue', 5, NULL, '2020-07-29 08:26:53+07', false);
INSERT INTO public.journals VALUES (4967, 1616, 'Issue', 5, NULL, '2020-07-29 08:26:54+07', false);
INSERT INTO public.journals VALUES (4968, 1617, 'Issue', 5, NULL, '2020-07-29 08:26:54+07', false);
INSERT INTO public.journals VALUES (4969, 1180, 'Issue', 5, '', '2020-07-29 08:28:11+07', false);
INSERT INTO public.journals VALUES (4970, 1602, 'Issue', 5, '', '2020-07-29 08:28:11+07', false);
INSERT INTO public.journals VALUES (4972, 1554, 'Issue', 5, '', '2020-07-29 08:28:45+07', false);
INSERT INTO public.journals VALUES (4973, 1622, 'Issue', 5, '', '2020-07-29 08:29:18+07', false);
INSERT INTO public.journals VALUES (4974, 1047, 'Issue', 5, NULL, '2020-07-29 08:29:56+07', false);
INSERT INTO public.journals VALUES (4975, 1182, 'Issue', 5, NULL, '2020-07-29 08:29:56+07', false);
INSERT INTO public.journals VALUES (4976, 1603, 'Issue', 5, NULL, '2020-07-29 08:29:56+07', false);
INSERT INTO public.journals VALUES (4977, 1387, 'Issue', 5, NULL, '2020-07-29 08:29:56+07', false);
INSERT INTO public.journals VALUES (4978, 1044, 'Issue', 5, NULL, '2020-07-29 08:29:57+07', false);
INSERT INTO public.journals VALUES (4979, 1190, 'Issue', 5, NULL, '2020-07-29 08:29:57+07', false);
INSERT INTO public.journals VALUES (4980, 1402, 'Issue', 5, NULL, '2020-07-29 08:29:57+07', false);
INSERT INTO public.journals VALUES (4981, 1412, 'Issue', 5, NULL, '2020-07-29 08:29:57+07', false);
INSERT INTO public.journals VALUES (4982, 1582, 'Issue', 5, NULL, '2020-07-29 08:29:57+07', false);
INSERT INTO public.journals VALUES (4984, 1621, 'Issue', 5, NULL, '2020-07-29 08:29:57+07', false);
INSERT INTO public.journals VALUES (4985, 1168, 'Issue', 5, NULL, '2020-07-29 08:30:15+07', false);
INSERT INTO public.journals VALUES (4986, 1169, 'Issue', 5, NULL, '2020-07-29 08:30:15+07', false);
INSERT INTO public.journals VALUES (4987, 1623, 'Issue', 5, NULL, '2020-07-29 08:30:15+07', false);
INSERT INTO public.journals VALUES (4988, 1624, 'Issue', 5, NULL, '2020-07-29 08:30:16+07', false);
INSERT INTO public.journals VALUES (4989, 1183, 'Issue', 5, NULL, '2020-07-29 08:30:16+07', false);
INSERT INTO public.journals VALUES (4990, 1184, 'Issue', 5, NULL, '2020-07-29 08:30:16+07', false);
INSERT INTO public.journals VALUES (4991, 1185, 'Issue', 5, NULL, '2020-07-29 08:30:16+07', false);
INSERT INTO public.journals VALUES (4992, 1186, 'Issue', 5, NULL, '2020-07-29 08:30:16+07', false);
INSERT INTO public.journals VALUES (4994, 1401, 'Issue', 5, '', '2020-07-29 08:31:29+07', false);
INSERT INTO public.journals VALUES (5000, 1600, 'Issue', 5, NULL, '2020-07-29 08:32:23+07', false);
INSERT INTO public.journals VALUES (5001, 1145, 'Issue', 5, NULL, '2020-07-29 08:32:23+07', false);
INSERT INTO public.journals VALUES (5002, 1146, 'Issue', 5, NULL, '2020-07-29 08:32:23+07', false);
INSERT INTO public.journals VALUES (5003, 1178, 'Issue', 5, NULL, '2020-07-29 08:32:23+07', false);
INSERT INTO public.journals VALUES (5004, 1179, 'Issue', 5, NULL, '2020-07-29 08:32:24+07', false);
INSERT INTO public.journals VALUES (5005, 1601, 'Issue', 5, NULL, '2020-07-29 08:32:24+07', false);
INSERT INTO public.journals VALUES (5006, 1144, 'Issue', 5, NULL, '2020-07-29 08:32:24+07', false);
INSERT INTO public.journals VALUES (5007, 1389, 'Issue', 5, NULL, '2020-07-29 08:32:24+07', false);
INSERT INTO public.journals VALUES (5008, 1390, 'Issue', 5, NULL, '2020-07-29 08:32:24+07', false);
INSERT INTO public.journals VALUES (5010, 1643, 'Issue', 5, NULL, '2020-07-29 08:32:37+07', false);
INSERT INTO public.journals VALUES (5011, 1644, 'Issue', 5, NULL, '2020-07-29 08:32:37+07', false);
INSERT INTO public.journals VALUES (5012, 1645, 'Issue', 5, NULL, '2020-07-29 08:32:38+07', false);
INSERT INTO public.journals VALUES (5013, 1141, 'Issue', 5, NULL, '2020-07-29 08:32:51+07', false);
INSERT INTO public.journals VALUES (5015, 1143, 'Issue', 5, NULL, '2020-07-29 08:33:26+07', false);
INSERT INTO public.journals VALUES (5016, 1133, 'Issue', 5, NULL, '2020-07-29 08:33:43+07', false);
INSERT INTO public.journals VALUES (5017, 1134, 'Issue', 5, NULL, '2020-07-29 08:33:43+07', false);
INSERT INTO public.journals VALUES (5018, 1135, 'Issue', 5, NULL, '2020-07-29 08:33:43+07', false);
INSERT INTO public.journals VALUES (5019, 1136, 'Issue', 5, NULL, '2020-07-29 08:33:43+07', false);
INSERT INTO public.journals VALUES (5020, 1137, 'Issue', 5, NULL, '2020-07-29 08:33:43+07', false);
INSERT INTO public.journals VALUES (5021, 1138, 'Issue', 5, NULL, '2020-07-29 08:33:44+07', false);
INSERT INTO public.journals VALUES (5022, 1139, 'Issue', 5, NULL, '2020-07-29 08:33:44+07', false);
INSERT INTO public.journals VALUES (5023, 1140, 'Issue', 5, NULL, '2020-07-29 08:33:44+07', false);
INSERT INTO public.journals VALUES (5024, 1638, 'Issue', 5, NULL, '2020-07-29 08:33:44+07', false);
INSERT INTO public.journals VALUES (5025, 1639, 'Issue', 5, NULL, '2020-07-29 08:33:44+07', false);
INSERT INTO public.journals VALUES (5026, 1640, 'Issue', 5, NULL, '2020-07-29 08:33:44+07', false);
INSERT INTO public.journals VALUES (5027, 1641, 'Issue', 5, NULL, '2020-07-29 08:33:44+07', false);
INSERT INTO public.journals VALUES (5028, 1621, 'Issue', 5, '', '2020-07-29 08:37:25+07', false);
INSERT INTO public.journals VALUES (5029, 1622, 'Issue', 5, '', '2020-07-29 08:37:26+07', false);
INSERT INTO public.journals VALUES (5030, 1133, 'Issue', 5, NULL, '2020-07-29 08:39:41+07', false);
INSERT INTO public.journals VALUES (5031, 1134, 'Issue', 5, NULL, '2020-07-29 08:39:42+07', false);
INSERT INTO public.journals VALUES (5032, 1135, 'Issue', 5, NULL, '2020-07-29 08:39:42+07', false);
INSERT INTO public.journals VALUES (5033, 1136, 'Issue', 5, NULL, '2020-07-29 08:39:42+07', false);
INSERT INTO public.journals VALUES (5034, 1137, 'Issue', 5, NULL, '2020-07-29 08:39:42+07', false);
INSERT INTO public.journals VALUES (5035, 1138, 'Issue', 5, NULL, '2020-07-29 08:39:42+07', false);
INSERT INTO public.journals VALUES (5036, 1139, 'Issue', 5, NULL, '2020-07-29 08:39:42+07', false);
INSERT INTO public.journals VALUES (5037, 1140, 'Issue', 5, NULL, '2020-07-29 08:39:43+07', false);
INSERT INTO public.journals VALUES (5044, 1141, 'Issue', 5, '', '2020-07-29 08:41:28+07', false);
INSERT INTO public.journals VALUES (5045, 1143, 'Issue', 5, '', '2020-07-29 08:41:28+07', false);
INSERT INTO public.journals VALUES (5046, 1114, 'Issue', 5, '', '2020-07-29 08:48:47+07', false);
INSERT INTO public.journals VALUES (5047, 1629, 'Issue', 30, 'Phan Lê Vũ đã viết (#note-1):
* 20/7:
Hộp 02: 470 trang
* 21/7
Hộp 10: 433 trang
Hộp 19: 413 trang
Hộp 32: 157 trang
Hộp 37: 23 trang
Hộp 40: 133 trang
* 22/7
Hộp 44: 457 trang
Hộp 59: 669 trang
* 23/7
Hộp 73: 677 trang
Hộp 81: 289 trang
* 24/7
Hộp 89: 437 trang
Hộp 01: 606 trang
* 27/7
Hộp 155: 160 trang
Hộp 157: 624 trang
* 28/7
Hộp 182: 950 trang
-> Tổng: 6534
', '2020-07-29 08:52:17+07', false);
INSERT INTO public.journals VALUES (5048, 1180, 'Issue', 5, '', '2020-07-29 08:52:23+07', false);
INSERT INTO public.journals VALUES (5049, 1180, 'Issue', 5, '', '2020-07-29 08:52:29+07', false);
INSERT INTO public.journals VALUES (5050, 1154, 'Issue', 5, '', '2020-07-29 08:53:11+07', false);
INSERT INTO public.journals VALUES (5051, 1155, 'Issue', 5, '', '2020-07-29 08:53:12+07', false);
INSERT INTO public.journals VALUES (5052, 1156, 'Issue', 5, '', '2020-07-29 08:53:12+07', false);
INSERT INTO public.journals VALUES (5053, 1157, 'Issue', 5, '', '2020-07-29 08:53:12+07', false);
INSERT INTO public.journals VALUES (5054, 1158, 'Issue', 5, '', '2020-07-29 08:53:12+07', false);
INSERT INTO public.journals VALUES (5055, 1159, 'Issue', 5, '', '2020-07-29 08:53:12+07', false);
INSERT INTO public.journals VALUES (5056, 1160, 'Issue', 5, '', '2020-07-29 08:53:12+07', false);
INSERT INTO public.journals VALUES (5057, 1161, 'Issue', 5, '', '2020-07-29 08:53:12+07', false);
INSERT INTO public.journals VALUES (5058, 1162, 'Issue', 5, '', '2020-07-29 08:53:12+07', false);
INSERT INTO public.journals VALUES (5059, 1163, 'Issue', 5, '', '2020-07-29 08:53:13+07', false);
INSERT INTO public.journals VALUES (5060, 1164, 'Issue', 5, '', '2020-07-29 08:53:13+07', false);
INSERT INTO public.journals VALUES (5061, 1165, 'Issue', 5, '', '2020-07-29 08:53:13+07', false);
INSERT INTO public.journals VALUES (5062, 1166, 'Issue', 5, '', '2020-07-29 08:53:13+07', false);
INSERT INTO public.journals VALUES (5063, 1648, 'Issue', 8, NULL, '2020-07-29 08:53:52+07', false);
INSERT INTO public.journals VALUES (5064, 1648, 'Issue', 8, NULL, '2020-07-29 08:54:18+07', false);
INSERT INTO public.journals VALUES (5066, 1613, 'Issue', 5, '', '2020-07-29 08:56:31+07', false);
INSERT INTO public.journals VALUES (5067, 1616, 'Issue', 5, '', '2020-07-29 08:57:08+07', false);
INSERT INTO public.journals VALUES (5068, 1614, 'Issue', 5, '', '2020-07-29 08:57:26+07', false);
INSERT INTO public.journals VALUES (5069, 1615, 'Issue', 5, '', '2020-07-29 08:57:54+07', false);
INSERT INTO public.journals VALUES (5070, 1617, 'Issue', 5, '', '2020-07-29 08:58:35+07', false);
INSERT INTO public.journals VALUES (5073, 1104, 'Issue', 17, NULL, '2020-07-29 09:59:21+07', false);
INSERT INTO public.journals VALUES (5074, 1141, 'Issue', 5, NULL, '2020-07-29 10:07:17+07', false);
INSERT INTO public.journals VALUES (5075, 1153, 'Issue', 5, NULL, '2020-07-29 10:07:17+07', false);
INSERT INTO public.journals VALUES (5076, 1154, 'Issue', 5, NULL, '2020-07-29 10:07:17+07', false);
INSERT INTO public.journals VALUES (5077, 1155, 'Issue', 5, NULL, '2020-07-29 10:07:17+07', false);
INSERT INTO public.journals VALUES (5078, 1156, 'Issue', 5, NULL, '2020-07-29 10:07:17+07', false);
INSERT INTO public.journals VALUES (5079, 1157, 'Issue', 5, NULL, '2020-07-29 10:07:18+07', false);
INSERT INTO public.journals VALUES (5080, 1158, 'Issue', 5, NULL, '2020-07-29 10:07:18+07', false);
INSERT INTO public.journals VALUES (5081, 1159, 'Issue', 5, NULL, '2020-07-29 10:07:18+07', false);
INSERT INTO public.journals VALUES (5082, 1160, 'Issue', 5, NULL, '2020-07-29 10:07:18+07', false);
INSERT INTO public.journals VALUES (5083, 1161, 'Issue', 5, NULL, '2020-07-29 10:07:18+07', false);
INSERT INTO public.journals VALUES (5084, 1162, 'Issue', 5, NULL, '2020-07-29 10:07:18+07', false);
INSERT INTO public.journals VALUES (5085, 1163, 'Issue', 5, NULL, '2020-07-29 10:07:18+07', false);
INSERT INTO public.journals VALUES (5086, 1164, 'Issue', 5, NULL, '2020-07-29 10:07:19+07', false);
INSERT INTO public.journals VALUES (5087, 1165, 'Issue', 5, NULL, '2020-07-29 10:07:19+07', false);
INSERT INTO public.journals VALUES (5088, 1166, 'Issue', 5, NULL, '2020-07-29 10:07:19+07', false);
INSERT INTO public.journals VALUES (5089, 1180, 'Issue', 5, NULL, '2020-07-29 10:07:19+07', false);
INSERT INTO public.journals VALUES (5090, 1600, 'Issue', 5, NULL, '2020-07-29 10:09:45+07', false);
INSERT INTO public.journals VALUES (5091, 1145, 'Issue', 5, NULL, '2020-07-29 10:09:45+07', false);
INSERT INTO public.journals VALUES (5092, 1146, 'Issue', 5, NULL, '2020-07-29 10:09:45+07', false);
INSERT INTO public.journals VALUES (5093, 1178, 'Issue', 5, NULL, '2020-07-29 10:09:45+07', false);
INSERT INTO public.journals VALUES (5094, 1179, 'Issue', 5, NULL, '2020-07-29 10:09:46+07', false);
INSERT INTO public.journals VALUES (5095, 1601, 'Issue', 5, NULL, '2020-07-29 10:09:46+07', false);
INSERT INTO public.journals VALUES (5096, 1144, 'Issue', 5, NULL, '2020-07-29 10:09:46+07', false);
INSERT INTO public.journals VALUES (5097, 1389, 'Issue', 5, NULL, '2020-07-29 10:09:46+07', false);
INSERT INTO public.journals VALUES (5098, 1390, 'Issue', 5, NULL, '2020-07-29 10:09:46+07', false);
INSERT INTO public.journals VALUES (5100, 1640, 'Issue', 5, NULL, '2020-07-29 10:09:47+07', false);
INSERT INTO public.journals VALUES (5101, 1641, 'Issue', 5, NULL, '2020-07-29 10:09:47+07', false);
INSERT INTO public.journals VALUES (5102, 1623, 'Issue', 5, '', '2020-07-29 10:26:50+07', false);
INSERT INTO public.journals VALUES (5103, 1624, 'Issue', 5, '', '2020-07-29 10:26:50+07', false);
INSERT INTO public.journals VALUES (5104, 1186, 'Issue', 5, '', '2020-07-29 10:27:19+07', false);
INSERT INTO public.journals VALUES (5105, 1183, 'Issue', 5, '', '2020-07-29 10:30:40+07', false);
INSERT INTO public.journals VALUES (5106, 1184, 'Issue', 5, '', '2020-07-29 10:34:16+07', false);
INSERT INTO public.journals VALUES (5107, 1185, 'Issue', 5, '', '2020-07-29 10:34:16+07', false);
INSERT INTO public.journals VALUES (5108, 1640, 'Issue', 5, '', '2020-07-29 10:35:50+07', false);
INSERT INTO public.journals VALUES (5109, 1641, 'Issue', 5, '', '2020-07-29 10:35:50+07', false);
INSERT INTO public.journals VALUES (5110, 1178, 'Issue', 5, '', '2020-07-29 10:38:26+07', false);
INSERT INTO public.journals VALUES (5111, 1179, 'Issue', 5, '', '2020-07-29 10:38:27+07', false);
INSERT INTO public.journals VALUES (5112, 1144, 'Issue', 5, '', '2020-07-29 10:38:27+07', false);
INSERT INTO public.journals VALUES (5113, 1389, 'Issue', 5, '', '2020-07-29 10:38:27+07', false);
INSERT INTO public.journals VALUES (5114, 1390, 'Issue', 5, '', '2020-07-29 10:38:27+07', false);
INSERT INTO public.journals VALUES (5115, 1144, 'Issue', 5, '', '2020-07-29 10:42:01+07', false);
INSERT INTO public.journals VALUES (5116, 1389, 'Issue', 5, '', '2020-07-29 10:42:02+07', false);
INSERT INTO public.journals VALUES (5117, 1390, 'Issue', 5, '', '2020-07-29 10:42:02+07', false);
INSERT INTO public.journals VALUES (5118, 1190, 'Issue', 19, '', '2020-07-29 10:42:58+07', false);
INSERT INTO public.journals VALUES (5119, 1612, 'Issue', 19, '', '2020-07-29 10:44:56+07', false);
INSERT INTO public.journals VALUES (5120, 1649, 'Issue', 33, NULL, '2020-07-29 10:47:57+07', false);
INSERT INTO public.journals VALUES (5121, 1651, 'Issue', 33, NULL, '2020-07-29 10:48:24+07', false);
INSERT INTO public.journals VALUES (5122, 1653, 'Issue', 33, NULL, '2020-07-29 10:48:42+07', false);
INSERT INTO public.journals VALUES (5123, 1649, 'Issue', 33, NULL, '2020-07-29 10:49:21+07', false);
INSERT INTO public.journals VALUES (5124, 1649, 'Issue', 33, NULL, '2020-07-29 10:49:32+07', false);
INSERT INTO public.journals VALUES (5125, 1649, 'Issue', 33, NULL, '2020-07-29 10:50:57+07', false);
INSERT INTO public.journals VALUES (5126, 1649, 'Issue', 33, NULL, '2020-07-29 10:51:07+07', false);
INSERT INTO public.journals VALUES (5127, 1402, 'Issue', 19, '', '2020-07-29 11:03:07+07', false);
INSERT INTO public.journals VALUES (5128, 1133, 'Issue', 5, '', '2020-07-29 11:08:55+07', false);
INSERT INTO public.journals VALUES (5129, 1134, 'Issue', 5, '', '2020-07-29 11:08:55+07', false);
INSERT INTO public.journals VALUES (5130, 1135, 'Issue', 5, '', '2020-07-29 11:08:56+07', false);
INSERT INTO public.journals VALUES (5131, 1136, 'Issue', 5, '', '2020-07-29 11:08:56+07', false);
INSERT INTO public.journals VALUES (5132, 1137, 'Issue', 5, '', '2020-07-29 11:08:56+07', false);
INSERT INTO public.journals VALUES (5133, 1138, 'Issue', 5, '', '2020-07-29 11:08:56+07', false);
INSERT INTO public.journals VALUES (5134, 1139, 'Issue', 5, '', '2020-07-29 11:08:56+07', false);
INSERT INTO public.journals VALUES (5135, 1140, 'Issue', 5, '', '2020-07-29 11:08:56+07', false);
INSERT INTO public.journals VALUES (5136, 1135, 'Issue', 5, '', '2020-07-29 11:11:37+07', false);
INSERT INTO public.journals VALUES (5137, 1136, 'Issue', 5, '', '2020-07-29 11:11:38+07', false);
INSERT INTO public.journals VALUES (5138, 1137, 'Issue', 5, '', '2020-07-29 11:12:03+07', false);
INSERT INTO public.journals VALUES (5139, 1138, 'Issue', 5, '', '2020-07-29 11:12:03+07', false);
INSERT INTO public.journals VALUES (5140, 1137, 'Issue', 5, '', '2020-07-29 11:12:36+07', false);
INSERT INTO public.journals VALUES (5141, 1138, 'Issue', 5, '', '2020-07-29 11:12:36+07', false);
INSERT INTO public.journals VALUES (5142, 1139, 'Issue', 5, '', '2020-07-29 11:13:14+07', false);
INSERT INTO public.journals VALUES (5143, 1140, 'Issue', 5, '', '2020-07-29 11:13:14+07', false);
INSERT INTO public.journals VALUES (5144, 1144, 'Issue', 5, '', '2020-07-29 11:15:36+07', false);
INSERT INTO public.journals VALUES (5145, 1133, 'Issue', 5, '', '2020-07-29 11:16:59+07', false);
INSERT INTO public.journals VALUES (5146, 1134, 'Issue', 5, '', '2020-07-29 11:17:00+07', false);
INSERT INTO public.journals VALUES (5147, 1135, 'Issue', 5, '', '2020-07-29 11:18:15+07', false);
INSERT INTO public.journals VALUES (5148, 1136, 'Issue', 5, '', '2020-07-29 11:18:15+07', false);
INSERT INTO public.journals VALUES (5149, 1623, 'Issue', 5, '', '2020-07-29 11:21:35+07', false);
INSERT INTO public.journals VALUES (5150, 1186, 'Issue', 5, '', '2020-07-29 11:21:46+07', false);
INSERT INTO public.journals VALUES (5151, 1651, 'Issue', 32, NULL, '2020-07-29 11:22:19+07', false);
INSERT INTO public.journals VALUES (5152, 1651, 'Issue', 32, NULL, '2020-07-29 11:22:37+07', false);
INSERT INTO public.journals VALUES (5153, 1144, 'Issue', 5, '', '2020-07-29 11:22:38+07', false);
INSERT INTO public.journals VALUES (5154, 1389, 'Issue', 5, '', '2020-07-29 11:23:26+07', false);
INSERT INTO public.journals VALUES (5155, 1390, 'Issue', 5, '', '2020-07-29 11:23:26+07', false);
INSERT INTO public.journals VALUES (5156, 1178, 'Issue', 5, '', '2020-07-29 11:23:56+07', false);
INSERT INTO public.journals VALUES (5157, 1179, 'Issue', 5, '', '2020-07-29 11:23:56+07', false);
INSERT INTO public.journals VALUES (5158, 1640, 'Issue', 5, '', '2020-07-29 11:24:56+07', false);
INSERT INTO public.journals VALUES (5159, 1641, 'Issue', 5, '', '2020-07-29 11:24:56+07', false);
INSERT INTO public.journals VALUES (5165, 1143, 'Issue', 5, '', '2020-07-29 11:35:30+07', false);
INSERT INTO public.journals VALUES (5166, 1557, 'Issue', 5, '', '2020-07-29 11:36:45+07', false);
INSERT INTO public.journals VALUES (5167, 1554, 'Issue', 5, '', '2020-07-29 11:36:57+07', false);
INSERT INTO public.journals VALUES (5168, 1141, 'Issue', 5, '', '2020-07-29 11:37:58+07', false);
INSERT INTO public.journals VALUES (5169, 1145, 'Issue', 5, '', '2020-07-29 11:41:54+07', false);
INSERT INTO public.journals VALUES (5170, 1146, 'Issue', 5, '', '2020-07-29 11:41:54+07', false);
INSERT INTO public.journals VALUES (5171, 1141, 'Issue', 5, NULL, '2020-07-29 13:26:14+07', false);
INSERT INTO public.journals VALUES (5172, 1153, 'Issue', 5, NULL, '2020-07-29 13:26:14+07', false);
INSERT INTO public.journals VALUES (5173, 1154, 'Issue', 5, NULL, '2020-07-29 13:26:14+07', false);
INSERT INTO public.journals VALUES (5174, 1155, 'Issue', 5, NULL, '2020-07-29 13:26:14+07', false);
INSERT INTO public.journals VALUES (5175, 1156, 'Issue', 5, NULL, '2020-07-29 13:26:14+07', false);
INSERT INTO public.journals VALUES (5176, 1157, 'Issue', 5, NULL, '2020-07-29 13:26:14+07', false);
INSERT INTO public.journals VALUES (5177, 1158, 'Issue', 5, NULL, '2020-07-29 13:26:15+07', false);
INSERT INTO public.journals VALUES (5178, 1159, 'Issue', 5, NULL, '2020-07-29 13:26:15+07', false);
INSERT INTO public.journals VALUES (5179, 1160, 'Issue', 5, NULL, '2020-07-29 13:26:15+07', false);
INSERT INTO public.journals VALUES (5180, 1161, 'Issue', 5, NULL, '2020-07-29 13:26:15+07', false);
INSERT INTO public.journals VALUES (5181, 1162, 'Issue', 5, NULL, '2020-07-29 13:26:15+07', false);
INSERT INTO public.journals VALUES (5182, 1163, 'Issue', 5, NULL, '2020-07-29 13:26:15+07', false);
INSERT INTO public.journals VALUES (5183, 1164, 'Issue', 5, NULL, '2020-07-29 13:26:15+07', false);
INSERT INTO public.journals VALUES (5184, 1165, 'Issue', 5, NULL, '2020-07-29 13:26:15+07', false);
INSERT INTO public.journals VALUES (5185, 1166, 'Issue', 5, NULL, '2020-07-29 13:26:16+07', false);
INSERT INTO public.journals VALUES (5186, 1180, 'Issue', 5, NULL, '2020-07-29 13:26:16+07', false);
INSERT INTO public.journals VALUES (5187, 1412, 'Issue', 5, NULL, '2020-07-29 13:31:12+07', false);
INSERT INTO public.journals VALUES (5188, 1387, 'Issue', 5, NULL, '2020-07-29 13:31:28+07', false);
INSERT INTO public.journals VALUES (5189, 1190, 'Issue', 5, NULL, '2020-07-29 13:31:28+07', false);
INSERT INTO public.journals VALUES (5190, 1582, 'Issue', 5, NULL, '2020-07-29 13:31:29+07', false);
INSERT INTO public.journals VALUES (5191, 1176, 'Issue', 5, NULL, '2020-07-29 13:31:40+07', false);
INSERT INTO public.journals VALUES (5192, 1504, 'Issue', 15, '', '2020-07-29 13:34:05+07', false);
INSERT INTO public.journals VALUES (5193, 1505, 'Issue', 15, '', '2020-07-29 13:34:30+07', false);
INSERT INTO public.journals VALUES (5194, 1503, 'Issue', 15, '', '2020-07-29 13:35:08+07', false);
INSERT INTO public.journals VALUES (5195, 1552, 'Issue', 5, '', '2020-07-29 13:36:29+07', false);
INSERT INTO public.journals VALUES (5196, 1659, 'Issue', 5, '', '2020-07-29 13:36:29+07', false);
INSERT INTO public.journals VALUES (5197, 1559, 'Issue', 5, '', '2020-07-29 13:36:29+07', false);
INSERT INTO public.journals VALUES (5198, 1660, 'Issue', 5, '', '2020-07-29 13:36:29+07', false);
INSERT INTO public.journals VALUES (5199, 1612, 'Issue', 5, '', '2020-07-29 13:36:29+07', false);
INSERT INTO public.journals VALUES (5200, 1661, 'Issue', 5, '', '2020-07-29 13:36:29+07', false);
INSERT INTO public.journals VALUES (5201, 1613, 'Issue', 5, '', '2020-07-29 13:36:29+07', false);
INSERT INTO public.journals VALUES (5202, 1662, 'Issue', 5, '', '2020-07-29 13:36:29+07', false);
INSERT INTO public.journals VALUES (5203, 1614, 'Issue', 5, '', '2020-07-29 13:36:29+07', false);
INSERT INTO public.journals VALUES (5204, 1663, 'Issue', 5, '', '2020-07-29 13:36:29+07', false);
INSERT INTO public.journals VALUES (5205, 1615, 'Issue', 5, '', '2020-07-29 13:36:29+07', false);
INSERT INTO public.journals VALUES (5206, 1664, 'Issue', 5, '', '2020-07-29 13:36:29+07', false);
INSERT INTO public.journals VALUES (5207, 1616, 'Issue', 5, '', '2020-07-29 13:36:29+07', false);
INSERT INTO public.journals VALUES (5208, 1665, 'Issue', 5, '', '2020-07-29 13:36:29+07', false);
INSERT INTO public.journals VALUES (5209, 1617, 'Issue', 5, '', '2020-07-29 13:36:29+07', false);
INSERT INTO public.journals VALUES (5210, 1666, 'Issue', 5, '', '2020-07-29 13:36:29+07', false);
INSERT INTO public.journals VALUES (5211, 1552, 'Issue', 5, '', '2020-07-29 13:37:41+07', false);
INSERT INTO public.journals VALUES (5212, 1659, 'Issue', 5, '', '2020-07-29 13:38:01+07', false);
INSERT INTO public.journals VALUES (5213, 1660, 'Issue', 5, '', '2020-07-29 13:39:01+07', false);
INSERT INTO public.journals VALUES (5214, 1661, 'Issue', 5, '', '2020-07-29 13:39:01+07', false);
INSERT INTO public.journals VALUES (5215, 1660, 'Issue', 5, '', '2020-07-29 13:39:23+07', false);
INSERT INTO public.journals VALUES (5216, 1661, 'Issue', 5, '', '2020-07-29 13:39:46+07', false);
INSERT INTO public.journals VALUES (5217, 1662, 'Issue', 5, '', '2020-07-29 13:39:58+07', false);
INSERT INTO public.journals VALUES (5218, 1663, 'Issue', 5, '', '2020-07-29 13:40:17+07', false);
INSERT INTO public.journals VALUES (5219, 1664, 'Issue', 5, '', '2020-07-29 13:40:23+07', false);
INSERT INTO public.journals VALUES (5220, 1665, 'Issue', 5, '', '2020-07-29 13:40:29+07', false);
INSERT INTO public.journals VALUES (5221, 1666, 'Issue', 5, '', '2020-07-29 13:40:35+07', false);
INSERT INTO public.journals VALUES (5222, 1660, 'Issue', 5, NULL, '2020-07-29 13:42:19+07', false);
INSERT INTO public.journals VALUES (5223, 1661, 'Issue', 5, NULL, '2020-07-29 13:42:19+07', false);
INSERT INTO public.journals VALUES (5224, 1662, 'Issue', 5, NULL, '2020-07-29 13:42:19+07', false);
INSERT INTO public.journals VALUES (5225, 1663, 'Issue', 5, NULL, '2020-07-29 13:42:20+07', false);
INSERT INTO public.journals VALUES (5226, 1664, 'Issue', 5, NULL, '2020-07-29 13:42:20+07', false);
INSERT INTO public.journals VALUES (5227, 1665, 'Issue', 5, NULL, '2020-07-29 13:42:20+07', false);
INSERT INTO public.journals VALUES (5228, 1666, 'Issue', 5, NULL, '2020-07-29 13:42:20+07', false);
INSERT INTO public.journals VALUES (5229, 1667, 'Issue', 5, NULL, '2020-07-29 13:57:06+07', false);
INSERT INTO public.journals VALUES (5230, 1667, 'Issue', 5, '', '2020-07-29 13:57:50+07', false);
INSERT INTO public.journals VALUES (5231, 1667, 'Issue', 5, '', '2020-07-29 14:02:17+07', false);
INSERT INTO public.journals VALUES (5232, 1643, 'Issue', 5, '', '2020-07-29 14:04:20+07', false);
INSERT INTO public.journals VALUES (5233, 1644, 'Issue', 5, '', '2020-07-29 14:04:20+07', false);
INSERT INTO public.journals VALUES (5234, 1645, 'Issue', 5, '', '2020-07-29 14:04:20+07', false);
INSERT INTO public.journals VALUES (5235, 1143, 'Issue', 5, '', '2020-07-29 14:05:02+07', false);
INSERT INTO public.journals VALUES (5236, 1667, 'Issue', 5, '', '2020-07-29 14:06:46+07', false);
INSERT INTO public.journals VALUES (5237, 1668, 'Issue', 5, '', '2020-07-29 14:06:46+07', false);
INSERT INTO public.journals VALUES (5238, 1669, 'Issue', 5, '', '2020-07-29 14:18:14+07', false);
INSERT INTO public.journals VALUES (5239, 1670, 'Issue', 5, '', '2020-07-29 14:18:15+07', false);
INSERT INTO public.journals VALUES (5245, 1669, 'Issue', 5, '', '2020-07-29 14:21:10+07', false);
INSERT INTO public.journals VALUES (5246, 1670, 'Issue', 5, '', '2020-07-29 14:21:10+07', false);
INSERT INTO public.journals VALUES (5247, 1143, 'Issue', 5, '', '2020-07-29 14:21:50+07', false);
INSERT INTO public.journals VALUES (5248, 1669, 'Issue', 5, '', '2020-07-29 14:22:17+07', false);
INSERT INTO public.journals VALUES (5249, 1670, 'Issue', 5, '', '2020-07-29 14:22:18+07', false);
INSERT INTO public.journals VALUES (5250, 1667, 'Issue', 5, '', '2020-07-29 14:23:01+07', false);
INSERT INTO public.journals VALUES (5251, 1668, 'Issue', 5, '', '2020-07-29 14:23:01+07', false);
INSERT INTO public.journals VALUES (5252, 1638, 'Issue', 5, '', '2020-07-29 14:24:34+07', false);
INSERT INTO public.journals VALUES (5253, 1643, 'Issue', 5, '', '2020-07-29 14:24:34+07', false);
INSERT INTO public.journals VALUES (5254, 1639, 'Issue', 5, '', '2020-07-29 14:24:51+07', false);
INSERT INTO public.journals VALUES (5255, 1644, 'Issue', 5, '', '2020-07-29 14:24:51+07', false);
INSERT INTO public.journals VALUES (5256, 1645, 'Issue', 5, '', '2020-07-29 14:24:51+07', false);
INSERT INTO public.journals VALUES (5257, 1660, 'Issue', 5, '', '2020-07-29 14:28:47+07', false);
INSERT INTO public.journals VALUES (5258, 1661, 'Issue', 5, '', '2020-07-29 14:28:47+07', false);
INSERT INTO public.journals VALUES (5259, 1661, 'Issue', 5, '', '2020-07-29 14:29:36+07', false);
INSERT INTO public.journals VALUES (5260, 1662, 'Issue', 5, '', '2020-07-29 14:29:37+07', false);
INSERT INTO public.journals VALUES (5261, 1664, 'Issue', 5, '', '2020-07-29 14:31:02+07', false);
INSERT INTO public.journals VALUES (5262, 1663, 'Issue', 5, '', '2020-07-29 14:39:02+07', false);
INSERT INTO public.journals VALUES (5263, 1123, 'Issue', 5, '', '2020-07-29 14:39:28+07', false);
INSERT INTO public.journals VALUES (5264, 1503, 'Issue', 15, NULL, '2020-07-29 14:45:22+07', false);
INSERT INTO public.journals VALUES (5265, 1503, 'Issue', 15, NULL, '2020-07-29 14:45:33+07', false);
INSERT INTO public.journals VALUES (5266, 1182, 'Issue', 8, NULL, '2020-07-29 15:56:00+07', false);
INSERT INTO public.journals VALUES (5267, 1603, 'Issue', 8, NULL, '2020-07-29 15:56:01+07', false);
INSERT INTO public.journals VALUES (5268, 1182, 'Issue', 8, NULL, '2020-07-29 15:56:10+07', false);
INSERT INTO public.journals VALUES (5269, 1603, 'Issue', 8, NULL, '2020-07-29 15:56:10+07', false);
INSERT INTO public.journals VALUES (5270, 1622, 'Issue', 5, '', '2020-07-29 16:16:21+07', false);
INSERT INTO public.journals VALUES (5271, 1629, 'Issue', 30, 'Phan Lê Vũ đã viết (#note-4):
* 20/7:
Hộp 02: 470 trang
Hộp 09: 36 trang
* 21/7
Hộp 10: 433 trang
Hộp 19: 413 trang
Hộp 32: 157 trang
Hộp 37: 23 trang
Hộp 40: 133 trang
* 22/7
Hộp 44: 457 trang
Hộp 59: 669 trang
* 23/7
Hộp 73: 677 trang
Hộp 81: 289 trang
* 24/7
Hộp 89: 437 trang
Hộp 01: 606 trang
* 27/7
Hộp 155: 160 trang
Hộp 157: 624 trang
* 28/7
Hộp 182: 950 trang
-> Tổng: 6534

', '2020-07-29 16:26:52+07', false);
INSERT INTO public.journals VALUES (5272, 1584, 'Issue', 26, '', '2020-07-30 07:51:56+07', false);
INSERT INTO public.journals VALUES (5273, 1595, 'Issue', 4, NULL, '2020-07-30 08:10:51+07', false);
INSERT INTO public.journals VALUES (5274, 1596, 'Issue', 4, NULL, '2020-07-30 08:11:02+07', false);
INSERT INTO public.journals VALUES (5275, 1597, 'Issue', 4, NULL, '2020-07-30 08:11:14+07', false);
INSERT INTO public.journals VALUES (5276, 1652, 'Issue', 32, NULL, '2020-07-30 09:02:40+07', false);
INSERT INTO public.journals VALUES (5277, 1652, 'Issue', 32, NULL, '2020-07-30 09:02:54+07', false);
INSERT INTO public.journals VALUES (5278, 1652, 'Issue', 32, NULL, '2020-07-30 09:03:13+07', false);
INSERT INTO public.journals VALUES (5279, 1652, 'Issue', 32, NULL, '2020-07-30 09:03:21+07', false);
INSERT INTO public.journals VALUES (5280, 1651, 'Issue', 32, NULL, '2020-07-30 09:03:52+07', false);
INSERT INTO public.journals VALUES (5281, 1649, 'Issue', 32, NULL, '2020-07-30 09:04:43+07', false);
INSERT INTO public.journals VALUES (5282, 1653, 'Issue', 32, NULL, '2020-07-30 09:05:33+07', false);
INSERT INTO public.journals VALUES (5283, 1629, 'Issue', 30, '* 20/7:
Hộp 02: 470 trang
Hộp 09: 546 trang 
* 21/7
Hộp 10: 433 trang
Hộp 19: 413 trang
Hộp 32: 157 trang
Hộp 37: 23 trang
Hộp 40: 133 trang
* 22/7
Hộp 44: 457 trang
Hộp 59: 669 trang
* 23/7
Hộp 73: 677 trang
Hộp 81: 289 trang
* 24/7
Hộp 89: 437 trang
Hộp 01: 606 trang
* 27/7
Hộp 155: 160 trang
Hộp 157: 624 trang
* 28/7
Hộp 182: 950 trang
-> Tổng: 7044 trang

', '2020-07-30 09:31:54+07', false);
INSERT INTO public.journals VALUES (5284, 1636, 'Issue', 22, NULL, '2020-07-30 11:26:35+07', false);
INSERT INTO public.journals VALUES (5285, 1647, 'Issue', 8, NULL, '2020-07-30 11:36:02+07', false);
INSERT INTO public.journals VALUES (5286, 1647, 'Issue', 8, NULL, '2020-07-30 11:36:19+07', false);
INSERT INTO public.journals VALUES (5287, 1607, 'Issue', 31, '', '2020-07-30 14:52:07+07', false);
INSERT INTO public.journals VALUES (5288, 1607, 'Issue', 31, NULL, '2020-07-30 14:52:41+07', false);
INSERT INTO public.journals VALUES (5289, 1586, 'Issue', 29, NULL, '2020-07-30 14:54:43+07', false);
INSERT INTO public.journals VALUES (5290, 1586, 'Issue', 29, NULL, '2020-07-30 14:55:06+07', false);
INSERT INTO public.journals VALUES (5291, 1609, 'Issue', 28, '', '2020-07-30 15:00:12+07', false);
INSERT INTO public.journals VALUES (5292, 1629, 'Issue', 30, NULL, '2020-07-30 15:08:10+07', false);
INSERT INTO public.journals VALUES (5293, 1608, 'Issue', 35, 'Lê Ý Phương đã viết:
> Hộp 04-178 trang
>     05-577 trang
>     18-112 trang
>     22-34 trang
>     23-513 trang
>     43-486 trang
>     60-607 trang
>     79-450 trang
>    161-228 trang
Tổng 3185

', '2020-07-30 15:12:52+07', false);
INSERT INTO public.journals VALUES (5294, 1311, 'Issue', 8, NULL, '2020-07-30 16:48:37+07', false);
INSERT INTO public.journals VALUES (5295, 1367, 'Issue', 8, NULL, '2020-07-30 16:48:37+07', false);
INSERT INTO public.journals VALUES (5296, 1311, 'Issue', 8, NULL, '2020-07-30 16:48:45+07', false);
INSERT INTO public.journals VALUES (5297, 1367, 'Issue', 8, NULL, '2020-07-30 16:48:45+07', false);
INSERT INTO public.journals VALUES (5298, 1123, 'Issue', 24, NULL, '2020-07-31 08:04:50+07', false);
INSERT INTO public.journals VALUES (5299, 1191, 'Issue', 24, NULL, '2020-07-31 08:05:11+07', false);
INSERT INTO public.journals VALUES (5300, 1673, 'Issue', 13, 'https://docs.google.com/spreadsheets/d/1wlpO5s28iVfUTDixlPDgejJCkuo0-C3b6b5vkDfDfBM/edit?usp=sharing', '2020-07-31 08:10:07+07', false);
INSERT INTO public.journals VALUES (5301, 1587, 'Issue', 21, '', '2020-07-31 08:23:03+07', false);
INSERT INTO public.journals VALUES (5302, 1586, 'Issue', 21, '', '2020-07-31 08:23:34+07', false);
INSERT INTO public.journals VALUES (5303, 1607, 'Issue', 21, '', '2020-07-31 08:24:09+07', false);
INSERT INTO public.journals VALUES (5304, 1609, 'Issue', 21, '', '2020-07-31 08:25:35+07', false);
INSERT INTO public.journals VALUES (5305, 1065, 'Issue', 17, NULL, '2020-07-31 08:40:34+07', false);
INSERT INTO public.journals VALUES (5306, 1068, 'Issue', 17, NULL, '2020-07-31 08:40:45+07', false);
INSERT INTO public.journals VALUES (5307, 1063, 'Issue', 17, NULL, '2020-07-31 08:41:14+07', false);
INSERT INTO public.journals VALUES (5308, 1088, 'Issue', 17, NULL, '2020-07-31 08:43:24+07', false);
INSERT INTO public.journals VALUES (5309, 1384, 'Issue', 17, NULL, '2020-07-31 08:51:02+07', false);
INSERT INTO public.journals VALUES (5310, 1676, 'Issue', 13, '', '2020-07-31 02:09:15+07', false);
INSERT INTO public.journals VALUES (5311, 1675, 'Issue', 13, '', '2020-07-31 02:09:35+07', false);
INSERT INTO public.journals VALUES (5312, 1635, 'Issue', 9, NULL, '2020-07-31 13:25:32+07', false);
INSERT INTO public.journals VALUES (5313, 1634, 'Issue', 9, NULL, '2020-07-31 13:25:42+07', false);
INSERT INTO public.journals VALUES (5314, 1679, 'Issue', 15, NULL, '2020-07-31 13:40:45+07', false);
INSERT INTO public.journals VALUES (5315, 1675, 'Issue', 12, NULL, '2020-07-31 13:44:46+07', false);
INSERT INTO public.journals VALUES (5316, 1676, 'Issue', 12, NULL, '2020-07-31 13:44:51+07', false);
INSERT INTO public.journals VALUES (5317, 1675, 'Issue', 12, NULL, '2020-07-31 13:44:57+07', false);
INSERT INTO public.journals VALUES (5318, 1676, 'Issue', 12, NULL, '2020-07-31 13:45:02+07', false);
INSERT INTO public.journals VALUES (5319, 1683, 'Issue', 15, '', '2020-07-31 13:48:18+07', false);
INSERT INTO public.journals VALUES (5320, 1677, 'Issue', 13, '', '2020-07-31 13:58:58+07', false);
INSERT INTO public.journals VALUES (5321, 989, 'Issue', 12, '', '2020-07-31 14:01:00+07', false);
INSERT INTO public.journals VALUES (5322, 1608, 'Issue', 35, '', '2020-07-31 16:08:50+07', false);
INSERT INTO public.journals VALUES (5323, 1586, 'Issue', 29, NULL, '2020-07-31 16:17:14+07', false);
INSERT INTO public.journals VALUES (5324, 1559, 'Issue', 19, '', '2020-07-31 16:29:00+07', false);
INSERT INTO public.journals VALUES (5325, 1684, 'Issue', 29, NULL, '2020-07-31 16:32:06+07', false);
INSERT INTO public.journals VALUES (5326, 1616, 'Issue', 19, '', '2020-07-31 16:32:10+07', false);
INSERT INTO public.journals VALUES (5327, 1686, 'Issue', 34, NULL, '2020-07-31 16:32:25+07', false);
INSERT INTO public.journals VALUES (5328, 1629, 'Issue', 30, '
* 20/7:
Hộp 02: 470 trang
Hộp 09: 546 trang 
* 21/7
Hộp 10: 433 trang
Hộp 19: 789 trang
Hộp 32: 497 trang
Hộp 37: 136 trang
Hộp 40: 711 trang
* 22/7
Hộp 44: 457 trang
Hộp 59: 669 trang
* 23/7
Hộp 73: 677 trang
Hộp 81: 289 trang
* 24/7
Hộp 89: 437 trang
Hộp 01: 606 trang
* 27/7
Hộp 155: 160 trang
Hộp 157: 624 trang
* 28/7
Hộp 182: 950 trang
-> Tổng: 8451 trang

', '2020-07-31 16:33:24+07', false);
INSERT INTO public.journals VALUES (5329, 1685, 'Issue', 23, '', '2020-07-31 16:34:08+07', false);
INSERT INTO public.journals VALUES (5330, 1616, 'Issue', 19, '', '2020-07-31 16:39:50+07', false);
INSERT INTO public.journals VALUES (5331, 1660, 'Issue', 8, NULL, '2020-08-01 08:52:22+07', false);
INSERT INTO public.journals VALUES (5332, 1661, 'Issue', 8, NULL, '2020-08-01 08:52:22+07', false);
INSERT INTO public.journals VALUES (5333, 1663, 'Issue', 8, NULL, '2020-08-01 08:52:22+07', false);
INSERT INTO public.journals VALUES (5334, 1660, 'Issue', 8, NULL, '2020-08-01 08:52:35+07', false);
INSERT INTO public.journals VALUES (5335, 1661, 'Issue', 8, NULL, '2020-08-01 08:52:35+07', false);
INSERT INTO public.journals VALUES (5336, 1663, 'Issue', 8, NULL, '2020-08-01 08:52:35+07', false);
INSERT INTO public.journals VALUES (5337, 989, 'Issue', 12, NULL, '2020-08-01 10:08:35+07', false);
INSERT INTO public.journals VALUES (5338, 989, 'Issue', 12, '', '2020-08-01 10:09:15+07', false);
INSERT INTO public.journals VALUES (5339, 941, 'Issue', 12, NULL, '2020-08-01 11:29:42+07', false);
INSERT INTO public.journals VALUES (5340, 941, 'Issue', 12, NULL, '2020-08-01 11:29:53+07', false);
INSERT INTO public.journals VALUES (5341, 983, 'Issue', 12, NULL, '2020-08-01 11:30:36+07', false);
INSERT INTO public.journals VALUES (5342, 983, 'Issue', 12, NULL, '2020-08-01 11:30:58+07', false);
INSERT INTO public.journals VALUES (5343, 1609, 'Issue', 28, 'Nguyễn Thu Quyên đã viết:
> 20/07: Hộp 39 (97 văn bản)
> 21-22/07: Hộp 40 (266 văn bản)
> 23/07:Hộp 41 + Hộp 52 (229 + 46 văn bản)
> 24/07: Hộp 53+56+57+58+59 (48+43+74+81+59 văn bản)

> 27/07: Hộp 60 (178 văn bản) + Hộp 61 (117 văn bản)
> 28/07: Hộp 67 (186 văn bản) 
> 29/07 - 30/07: Hộp 68 (163 văn bản) + Hộp 78 (212 văn bản)
> 31/07: Hộp 73 (221 văn bản) + Hộp 74 (hồ sơ 380a: 138 văn bản + hồ sơ 380: 26 văn bản)', '2020-08-03 07:53:12+07', false);
INSERT INTO public.journals VALUES (5344, 967, 'Issue', 5, NULL, '2020-08-03 08:09:05+07', false);
INSERT INTO public.journals VALUES (5345, 1002, 'Issue', 5, NULL, '2020-08-03 08:09:05+07', false);
INSERT INTO public.journals VALUES (5346, 1003, 'Issue', 5, NULL, '2020-08-03 08:09:05+07', false);
INSERT INTO public.journals VALUES (5347, 1004, 'Issue', 5, NULL, '2020-08-03 08:09:06+07', false);
INSERT INTO public.journals VALUES (5348, 1005, 'Issue', 5, NULL, '2020-08-03 08:09:06+07', false);
INSERT INTO public.journals VALUES (5349, 1006, 'Issue', 5, NULL, '2020-08-03 08:09:06+07', false);
INSERT INTO public.journals VALUES (5350, 1007, 'Issue', 5, NULL, '2020-08-03 08:09:06+07', false);
INSERT INTO public.journals VALUES (5351, 1010, 'Issue', 5, NULL, '2020-08-03 08:09:06+07', false);
INSERT INTO public.journals VALUES (5352, 1011, 'Issue', 5, NULL, '2020-08-03 08:09:06+07', false);
INSERT INTO public.journals VALUES (5353, 1345, 'Issue', 5, NULL, '2020-08-03 08:09:06+07', false);
INSERT INTO public.journals VALUES (5354, 1404, 'Issue', 5, NULL, '2020-08-03 08:09:07+07', false);
INSERT INTO public.journals VALUES (5355, 1405, 'Issue', 5, NULL, '2020-08-03 08:09:07+07', false);
INSERT INTO public.journals VALUES (5356, 1024, 'Issue', 5, NULL, '2020-08-03 08:09:07+07', false);
INSERT INTO public.journals VALUES (5357, 1025, 'Issue', 5, NULL, '2020-08-03 08:09:07+07', false);
INSERT INTO public.journals VALUES (5358, 1026, 'Issue', 5, NULL, '2020-08-03 08:09:07+07', false);
INSERT INTO public.journals VALUES (5359, 1027, 'Issue', 5, NULL, '2020-08-03 08:09:08+07', false);
INSERT INTO public.journals VALUES (5360, 1028, 'Issue', 5, NULL, '2020-08-03 08:09:08+07', false);
INSERT INTO public.journals VALUES (5361, 1029, 'Issue', 5, NULL, '2020-08-03 08:09:08+07', false);
INSERT INTO public.journals VALUES (5362, 1030, 'Issue', 5, NULL, '2020-08-03 08:09:08+07', false);
INSERT INTO public.journals VALUES (5363, 1365, 'Issue', 5, NULL, '2020-08-03 08:09:08+07', false);
INSERT INTO public.journals VALUES (5364, 1406, 'Issue', 5, NULL, '2020-08-03 08:09:08+07', false);
INSERT INTO public.journals VALUES (5365, 1407, 'Issue', 5, NULL, '2020-08-03 08:09:09+07', false);
INSERT INTO public.journals VALUES (5366, 1408, 'Issue', 5, NULL, '2020-08-03 08:09:09+07', false);
INSERT INTO public.journals VALUES (5367, 1409, 'Issue', 5, NULL, '2020-08-03 08:09:09+07', false);
INSERT INTO public.journals VALUES (5368, 1415, 'Issue', 5, NULL, '2020-08-03 08:09:09+07', false);
INSERT INTO public.journals VALUES (5369, 1001, 'Issue', 5, NULL, '2020-08-03 08:09:29+07', false);
INSERT INTO public.journals VALUES (5370, 1020, 'Issue', 5, NULL, '2020-08-03 08:09:30+07', false);
INSERT INTO public.journals VALUES (5371, 1022, 'Issue', 5, NULL, '2020-08-03 08:09:30+07', false);
INSERT INTO public.journals VALUES (5372, 1023, 'Issue', 5, NULL, '2020-08-03 08:09:30+07', false);
INSERT INTO public.journals VALUES (5373, 1195, 'Issue', 5, NULL, '2020-08-03 08:09:30+07', false);
INSERT INTO public.journals VALUES (5374, 1196, 'Issue', 5, NULL, '2020-08-03 08:09:30+07', false);
INSERT INTO public.journals VALUES (5375, 1366, 'Issue', 5, NULL, '2020-08-03 08:09:30+07', false);
INSERT INTO public.journals VALUES (5376, 1386, 'Issue', 5, NULL, '2020-08-03 08:09:31+07', false);
INSERT INTO public.journals VALUES (5377, 1427, 'Issue', 5, NULL, '2020-08-03 08:09:31+07', false);
INSERT INTO public.journals VALUES (5378, 1428, 'Issue', 5, NULL, '2020-08-03 08:09:31+07', false);
INSERT INTO public.journals VALUES (5379, 1536, 'Issue', 5, NULL, '2020-08-03 08:09:31+07', false);
INSERT INTO public.journals VALUES (5380, 970, 'Issue', 5, NULL, '2020-08-03 08:09:31+07', false);
INSERT INTO public.journals VALUES (5381, 975, 'Issue', 5, NULL, '2020-08-03 08:09:32+07', false);
INSERT INTO public.journals VALUES (5382, 1561, 'Issue', 5, NULL, '2020-08-03 08:09:32+07', false);
INSERT INTO public.journals VALUES (5383, 1036, 'Issue', 5, NULL, '2020-08-03 08:09:44+07', false);
INSERT INTO public.journals VALUES (5384, 1037, 'Issue', 5, NULL, '2020-08-03 08:09:44+07', false);
INSERT INTO public.journals VALUES (5385, 1038, 'Issue', 5, NULL, '2020-08-03 08:09:45+07', false);
INSERT INTO public.journals VALUES (5386, 1040, 'Issue', 5, NULL, '2020-08-03 08:09:45+07', false);
INSERT INTO public.journals VALUES (5387, 1041, 'Issue', 5, NULL, '2020-08-03 08:09:45+07', false);
INSERT INTO public.journals VALUES (5388, 1042, 'Issue', 5, NULL, '2020-08-03 08:09:45+07', false);
INSERT INTO public.journals VALUES (5389, 1021, 'Issue', 5, NULL, '2020-08-03 08:10:03+07', false);
INSERT INTO public.journals VALUES (5390, 1031, 'Issue', 5, NULL, '2020-08-03 08:10:03+07', false);
INSERT INTO public.journals VALUES (5391, 1034, 'Issue', 5, NULL, '2020-08-03 08:10:03+07', false);
INSERT INTO public.journals VALUES (5392, 1410, 'Issue', 5, NULL, '2020-08-03 08:10:03+07', false);
INSERT INTO public.journals VALUES (5393, 1530, 'Issue', 5, NULL, '2020-08-03 08:10:03+07', false);
INSERT INTO public.journals VALUES (5394, 1018, 'Issue', 5, NULL, '2020-08-03 08:10:22+07', false);
INSERT INTO public.journals VALUES (5395, 1035, 'Issue', 5, NULL, '2020-08-03 08:10:22+07', false);
INSERT INTO public.journals VALUES (5396, 1103, 'Issue', 5, NULL, '2020-08-03 08:10:22+07', false);
INSERT INTO public.journals VALUES (5397, 1592, 'Issue', 5, NULL, '2020-08-03 08:10:22+07', false);
INSERT INTO public.journals VALUES (5398, 1610, 'Issue', 5, NULL, '2020-08-03 08:10:22+07', false);
INSERT INTO public.journals VALUES (5399, 1632, 'Issue', 5, NULL, '2020-08-03 08:10:22+07', false);
INSERT INTO public.journals VALUES (5400, 1633, 'Issue', 5, NULL, '2020-08-03 08:10:23+07', false);
INSERT INTO public.journals VALUES (5401, 1595, 'Issue', 5, NULL, '2020-08-03 08:10:23+07', false);
INSERT INTO public.journals VALUES (5402, 1596, 'Issue', 5, NULL, '2020-08-03 08:10:23+07', false);
INSERT INTO public.journals VALUES (5403, 1597, 'Issue', 5, NULL, '2020-08-03 08:10:23+07', false);
INSERT INTO public.journals VALUES (5404, 1589, 'Issue', 5, NULL, '2020-08-03 08:14:15+07', false);
INSERT INTO public.journals VALUES (5405, 1590, 'Issue', 5, NULL, '2020-08-03 08:14:16+07', false);
INSERT INTO public.journals VALUES (5406, 1591, 'Issue', 5, NULL, '2020-08-03 08:14:16+07', false);
INSERT INTO public.journals VALUES (5407, 1593, 'Issue', 5, NULL, '2020-08-03 08:15:17+07', false);
INSERT INTO public.journals VALUES (5408, 1594, 'Issue', 5, NULL, '2020-08-03 08:15:17+07', false);
INSERT INTO public.journals VALUES (5409, 1611, 'Issue', 5, NULL, '2020-08-03 08:15:17+07', false);
INSERT INTO public.journals VALUES (5411, 1688, 'Issue', 5, NULL, '2020-08-03 08:15:17+07', false);
INSERT INTO public.journals VALUES (5412, 1689, 'Issue', 5, NULL, '2020-08-03 08:15:17+07', false);
INSERT INTO public.journals VALUES (5413, 1690, 'Issue', 5, NULL, '2020-08-03 08:15:17+07', false);
INSERT INTO public.journals VALUES (5414, 1673, 'Issue', 5, NULL, '2020-08-03 08:15:18+07', false);
INSERT INTO public.journals VALUES (5415, 1598, 'Issue', 5, '', '2020-08-03 08:17:08+07', false);
INSERT INTO public.journals VALUES (5416, 1599, 'Issue', 5, '', '2020-08-03 08:17:08+07', false);
INSERT INTO public.journals VALUES (5417, 1646, 'Issue', 5, '', '2020-08-03 08:17:08+07', false);
INSERT INTO public.journals VALUES (5418, 1588, 'Issue', 5, NULL, '2020-08-03 08:17:28+07', false);
INSERT INTO public.journals VALUES (5419, 1598, 'Issue', 5, NULL, '2020-08-03 08:17:28+07', false);
INSERT INTO public.journals VALUES (5420, 1599, 'Issue', 5, NULL, '2020-08-03 08:17:28+07', false);
INSERT INTO public.journals VALUES (5421, 1646, 'Issue', 5, NULL, '2020-08-03 08:17:28+07', false);
INSERT INTO public.journals VALUES (5422, 1598, 'Issue', 5, NULL, '2020-08-03 08:17:41+07', false);
INSERT INTO public.journals VALUES (5423, 1599, 'Issue', 5, NULL, '2020-08-03 08:17:41+07', false);
INSERT INTO public.journals VALUES (5424, 1008, 'Issue', 5, NULL, '2020-08-03 08:18:08+07', false);
INSERT INTO public.journals VALUES (5425, 924, 'Issue', 5, NULL, '2020-08-03 08:18:09+07', false);
INSERT INTO public.journals VALUES (5426, 965, 'Issue', 5, NULL, '2020-08-03 08:18:09+07', false);
INSERT INTO public.journals VALUES (5427, 966, 'Issue', 5, NULL, '2020-08-03 08:18:09+07', false);
INSERT INTO public.journals VALUES (5428, 968, 'Issue', 5, NULL, '2020-08-03 08:18:09+07', false);
INSERT INTO public.journals VALUES (5429, 1009, 'Issue', 5, NULL, '2020-08-03 08:18:10+07', false);
INSERT INTO public.journals VALUES (5430, 1403, 'Issue', 5, NULL, '2020-08-03 08:18:10+07', false);
INSERT INTO public.journals VALUES (5432, 1019, 'Issue', 5, NULL, '2020-08-03 08:18:10+07', false);
INSERT INTO public.journals VALUES (5433, 1416, 'Issue', 5, NULL, '2020-08-03 08:18:10+07', false);
INSERT INTO public.journals VALUES (5434, 1426, 'Issue', 5, NULL, '2020-08-03 08:18:11+07', false);
INSERT INTO public.journals VALUES (5435, 1017, 'Issue', 5, NULL, '2020-08-03 08:18:11+07', false);
INSERT INTO public.journals VALUES (5436, 995, 'Issue', 5, NULL, '2020-08-03 08:18:11+07', false);
INSERT INTO public.journals VALUES (5437, 1535, 'Issue', 5, NULL, '2020-08-03 08:18:11+07', false);
INSERT INTO public.journals VALUES (5438, 1595, 'Issue', 5, '', '2020-08-03 08:19:38+07', false);
INSERT INTO public.journals VALUES (5439, 1596, 'Issue', 5, '', '2020-08-03 08:19:39+07', false);
INSERT INTO public.journals VALUES (5440, 1597, 'Issue', 5, '', '2020-08-03 08:19:39+07', false);
INSERT INTO public.journals VALUES (5441, 1607, 'Issue', 31, 'Trần Lê Mỹ Nhơn đã viết:
> 20/07/2020: Hộp 06 - 94; Hộp - 332
> 21/07/2020: Hộp 12 - 681; Hộp - 681; Hộp - 394
> 22/07/2020: Hộp 41 - 311; Hộp 58 - 254; Hộp 64 - 75; Hộp 66 - 210
> Sáng 23/07/2020 (Chiều nghỉ): Hộp 71 - 379
> 24/27/2020: Hộp 80 - 222; Hộp 183 - 388

> 27/07/2020: Hộp 01 - 713; Hộp 157 - 830
> 28/07/2020: Hộp 181 - 440; Hộp 211 - 295
> 29/07/2020: Hộp 06 - 522; Hộp 07 - 346
> 30/07/2020: Hộp 12 - 78; Hộp 31 - 184
> 31/07/2020: Hộp 29 - 561', '2020-08-03 08:23:01+07', false);
INSERT INTO public.journals VALUES (5442, 979, 'Issue', 4, NULL, '2020-08-03 08:24:53+07', false);
INSERT INTO public.journals VALUES (5443, 1688, 'Issue', 12, NULL, '2020-08-03 08:30:02+07', false);
INSERT INTO public.journals VALUES (5444, 1688, 'Issue', 12, NULL, '2020-08-03 08:30:17+07', false);
INSERT INTO public.journals VALUES (5445, 1695, 'Issue', 5, NULL, '2020-08-03 09:09:54+07', false);
INSERT INTO public.journals VALUES (5446, 1696, 'Issue', 5, NULL, '2020-08-03 09:09:54+07', false);
INSERT INTO public.journals VALUES (5447, 1691, 'Issue', 5, NULL, '2020-08-03 09:09:54+07', false);
INSERT INTO public.journals VALUES (5448, 1692, 'Issue', 5, NULL, '2020-08-03 09:09:54+07', false);
INSERT INTO public.journals VALUES (5449, 1693, 'Issue', 5, NULL, '2020-08-03 09:09:55+07', false);
INSERT INTO public.journals VALUES (5450, 1694, 'Issue', 5, NULL, '2020-08-03 09:09:55+07', false);
INSERT INTO public.journals VALUES (5451, 1699, 'Issue', 5, NULL, '2020-08-03 09:16:04+07', false);
INSERT INTO public.journals VALUES (5452, 1598, 'Issue', 5, '', '2020-08-03 09:34:35+07', false);
INSERT INTO public.journals VALUES (5453, 1599, 'Issue', 5, '', '2020-08-03 09:34:36+07', false);
INSERT INTO public.journals VALUES (5454, 1646, 'Issue', 5, '', '2020-08-03 09:34:36+07', false);
INSERT INTO public.journals VALUES (5455, 1693, 'Issue', 5, '', '2020-08-03 09:36:20+07', false);
INSERT INTO public.journals VALUES (5456, 1694, 'Issue', 5, NULL, '2020-08-03 09:36:47+07', false);
INSERT INTO public.journals VALUES (5457, 1692, 'Issue', 5, NULL, '2020-08-03 09:36:59+07', false);
INSERT INTO public.journals VALUES (5458, 1695, 'Issue', 5, NULL, '2020-08-03 09:37:44+07', false);
INSERT INTO public.journals VALUES (5459, 1696, 'Issue', 5, NULL, '2020-08-03 09:37:56+07', false);
INSERT INTO public.journals VALUES (5460, 1688, 'Issue', 5, NULL, '2020-08-03 09:38:07+07', false);
INSERT INTO public.journals VALUES (5461, 1689, 'Issue', 5, NULL, '2020-08-03 09:39:00+07', false);
INSERT INTO public.journals VALUES (5462, 1690, 'Issue', 5, NULL, '2020-08-03 09:39:00+07', false);
INSERT INTO public.journals VALUES (5463, 1673, 'Issue', 5, '', '2020-08-03 09:39:38+07', false);
INSERT INTO public.journals VALUES (5464, 1673, 'Issue', 5, NULL, '2020-08-03 09:39:46+07', false);
INSERT INTO public.journals VALUES (5465, 1693, 'Issue', 5, '', '2020-08-03 09:41:09+07', false);
INSERT INTO public.journals VALUES (5466, 1694, 'Issue', 5, '', '2020-08-03 09:41:34+07', false);
INSERT INTO public.journals VALUES (5467, 1692, 'Issue', 5, '', '2020-08-03 09:41:45+07', false);
INSERT INTO public.journals VALUES (5468, 1589, 'Issue', 5, '', '2020-08-03 09:42:24+07', false);
INSERT INTO public.journals VALUES (5469, 1590, 'Issue', 5, '', '2020-08-03 09:42:25+07', false);
INSERT INTO public.journals VALUES (5470, 1591, 'Issue', 5, '', '2020-08-03 09:42:25+07', false);
INSERT INTO public.journals VALUES (5471, 1611, 'Issue', 5, '', '2020-08-03 09:42:25+07', false);
INSERT INTO public.journals VALUES (5472, 1695, 'Issue', 5, '', '2020-08-03 09:43:08+07', false);
INSERT INTO public.journals VALUES (5473, 1699, 'Issue', 5, '', '2020-08-03 09:43:20+07', false);
INSERT INTO public.journals VALUES (5474, 1594, 'Issue', 5, '', '2020-08-03 09:43:38+07', false);
INSERT INTO public.journals VALUES (5475, 1696, 'Issue', 5, '', '2020-08-03 09:44:31+07', false);
INSERT INTO public.journals VALUES (5476, 1689, 'Issue', 5, '', '2020-08-03 09:45:21+07', false);
INSERT INTO public.journals VALUES (5477, 1690, 'Issue', 5, '', '2020-08-03 09:45:40+07', false);
INSERT INTO public.journals VALUES (5478, 1702, 'Issue', 23, '', '2020-08-03 09:46:35+07', false);
INSERT INTO public.journals VALUES (5479, 1683, 'Issue', 10, '', '2020-08-03 09:55:32+07', false);
INSERT INTO public.journals VALUES (5480, 1372, 'Issue', 17, NULL, '2020-08-03 10:06:55+07', false);
INSERT INTO public.journals VALUES (5481, 1123, 'Issue', 5, '', '2020-08-03 10:11:43+07', false);
INSERT INTO public.journals VALUES (5482, 1191, 'Issue', 5, '', '2020-08-03 10:11:43+07', false);
INSERT INTO public.journals VALUES (5483, 1368, 'Issue', 5, '', '2020-08-03 10:11:44+07', false);
INSERT INTO public.journals VALUES (5484, 1616, 'Issue', 19, 'QuanTrac/AQI_30Days?Id=<>', '2020-08-03 11:04:14+07', false);
INSERT INTO public.journals VALUES (5485, 1613, 'Issue', 19, 'QuanTrac/AQI_30Days?Id=<>', '2020-08-03 11:05:43+07', false);
INSERT INTO public.journals VALUES (5486, 1582, 'Issue', 19, '', '2020-08-03 11:07:40+07', false);
INSERT INTO public.journals VALUES (5487, 1665, 'Issue', 8, NULL, '2020-08-03 11:26:34+07', false);
INSERT INTO public.journals VALUES (5488, 1665, 'Issue', 8, NULL, '2020-08-03 11:26:52+07', false);
INSERT INTO public.journals VALUES (5489, 1498, 'Issue', 15, NULL, '2020-08-03 11:27:16+07', false);
INSERT INTO public.journals VALUES (5490, 1488, 'Issue', 15, NULL, '2020-08-03 11:27:29+07', false);
INSERT INTO public.journals VALUES (5491, 1488, 'Issue', 15, NULL, '2020-08-03 11:27:42+07', false);
INSERT INTO public.journals VALUES (5492, 1498, 'Issue', 15, NULL, '2020-08-03 11:28:48+07', false);
INSERT INTO public.journals VALUES (5493, 1498, 'Issue', 15, NULL, '2020-08-03 11:29:09+07', false);
INSERT INTO public.journals VALUES (5494, 1507, 'Issue', 15, NULL, '2020-08-03 11:30:51+07', false);
INSERT INTO public.journals VALUES (5495, 1507, 'Issue', 15, NULL, '2020-08-03 11:30:59+07', false);
INSERT INTO public.journals VALUES (5496, 1508, 'Issue', 15, NULL, '2020-08-03 11:31:15+07', false);
INSERT INTO public.journals VALUES (5497, 1509, 'Issue', 15, NULL, '2020-08-03 11:31:31+07', false);
INSERT INTO public.journals VALUES (5498, 1510, 'Issue', 15, NULL, '2020-08-03 11:31:31+07', false);
INSERT INTO public.journals VALUES (5499, 1508, 'Issue', 15, NULL, '2020-08-03 11:31:38+07', false);
INSERT INTO public.journals VALUES (5500, 1509, 'Issue', 15, NULL, '2020-08-03 11:31:38+07', false);
INSERT INTO public.journals VALUES (5501, 1510, 'Issue', 15, NULL, '2020-08-03 11:31:38+07', false);
INSERT INTO public.journals VALUES (5502, 1699, 'Issue', 12, NULL, '2020-08-03 11:43:38+07', false);
INSERT INTO public.journals VALUES (5503, 1699, 'Issue', 12, NULL, '2020-08-03 11:43:43+07', false);
INSERT INTO public.journals VALUES (5504, 1699, 'Issue', 12, '', '2020-08-03 11:44:00+07', false);
INSERT INTO public.journals VALUES (5505, 1706, 'Issue', 23, '', '2020-08-03 14:18:44+07', false);
INSERT INTO public.journals VALUES (5506, 1706, 'Issue', 23, '', '2020-08-03 14:18:51+07', false);
INSERT INTO public.journals VALUES (5507, 1589, 'Issue', 4, NULL, '2020-08-03 14:44:19+07', false);
INSERT INTO public.journals VALUES (5508, 1590, 'Issue', 4, NULL, '2020-08-03 14:44:19+07', false);
INSERT INTO public.journals VALUES (5509, 1591, 'Issue', 4, NULL, '2020-08-03 14:44:19+07', false);
INSERT INTO public.journals VALUES (5510, 1688, 'Issue', 12, '', '2020-08-03 14:45:28+07', false);
INSERT INTO public.journals VALUES (5511, 1707, 'Issue', 30, NULL, '2020-08-03 15:54:30+07', false);
INSERT INTO public.journals VALUES (5512, 1707, 'Issue', 30, NULL, '2020-08-03 15:54:36+07', false);
INSERT INTO public.journals VALUES (5513, 1708, 'Issue', 26, '', '2020-08-03 16:15:14+07', false);
INSERT INTO public.journals VALUES (5514, 1693, 'Issue', 4, NULL, '2020-08-04 09:36:28+07', false);
INSERT INTO public.journals VALUES (5515, 1589, 'Issue', 4, NULL, '2020-08-04 09:37:22+07', false);
INSERT INTO public.journals VALUES (5516, 1590, 'Issue', 4, NULL, '2020-08-04 09:37:23+07', false);
INSERT INTO public.journals VALUES (5517, 1591, 'Issue', 4, NULL, '2020-08-04 09:37:23+07', false);
INSERT INTO public.journals VALUES (5518, 1638, 'Issue', 5, '', '2020-08-04 10:32:39+07', false);
INSERT INTO public.journals VALUES (5519, 1643, 'Issue', 5, '', '2020-08-04 10:32:39+07', false);
INSERT INTO public.journals VALUES (5520, 1667, 'Issue', 5, '', '2020-08-04 10:34:24+07', false);
INSERT INTO public.journals VALUES (5521, 1668, 'Issue', 5, '', '2020-08-04 10:34:24+07', false);
INSERT INTO public.journals VALUES (5522, 1669, 'Issue', 5, '', '2020-08-04 10:34:38+07', false);
INSERT INTO public.journals VALUES (5523, 1670, 'Issue', 5, '', '2020-08-04 10:34:39+07', false);
INSERT INTO public.journals VALUES (5524, 1638, 'Issue', 5, '', '2020-08-04 10:35:16+07', false);
INSERT INTO public.journals VALUES (5525, 1643, 'Issue', 5, '', '2020-08-04 10:35:17+07', false);
INSERT INTO public.journals VALUES (5526, 1639, 'Issue', 5, '', '2020-08-04 10:37:09+07', false);
INSERT INTO public.journals VALUES (5527, 1644, 'Issue', 5, '', '2020-08-04 10:37:10+07', false);
INSERT INTO public.journals VALUES (5528, 1645, 'Issue', 5, '', '2020-08-04 10:37:10+07', false);
INSERT INTO public.journals VALUES (5534, 1426, 'Issue', 5, '', '2020-08-04 04:09:45+07', false);
INSERT INTO public.journals VALUES (5535, 924, 'Issue', 5, '', '2020-08-04 04:10:04+07', false);
INSERT INTO public.journals VALUES (5536, 965, 'Issue', 5, '', '2020-08-04 04:10:04+07', false);
INSERT INTO public.journals VALUES (5537, 966, 'Issue', 5, '', '2020-08-04 04:10:05+07', false);
INSERT INTO public.journals VALUES (5538, 968, 'Issue', 5, '', '2020-08-04 04:10:05+07', false);
INSERT INTO public.journals VALUES (5539, 1403, 'Issue', 5, '', '2020-08-04 04:10:05+07', false);
INSERT INTO public.journals VALUES (5541, 1416, 'Issue', 5, '', '2020-08-04 04:10:05+07', false);
INSERT INTO public.journals VALUES (5542, 995, 'Issue', 5, '', '2020-08-04 04:10:05+07', false);
INSERT INTO public.journals VALUES (5543, 1535, 'Issue', 5, '', '2020-08-04 04:10:06+07', false);
INSERT INTO public.journals VALUES (5544, 1614, 'Issue', 19, 'QuanTrac/AQIGioTungThongSo?Id=<>', '2020-08-04 13:36:33+07', false);
INSERT INTO public.journals VALUES (5545, 1582, 'Issue', 19, '', '2020-08-04 13:40:47+07', false);
INSERT INTO public.journals VALUES (5546, 1719, 'Issue', 15, '', '2020-08-04 14:15:57+07', false);
INSERT INTO public.journals VALUES (5547, 1504, 'Issue', 15, NULL, '2020-08-04 14:47:26+07', false);
INSERT INTO public.journals VALUES (5548, 1504, 'Issue', 15, NULL, '2020-08-04 14:47:44+07', false);
INSERT INTO public.journals VALUES (5549, 1716, 'Issue', 15, NULL, '2020-08-04 14:47:52+07', false);
INSERT INTO public.journals VALUES (5550, 1717, 'Issue', 15, NULL, '2020-08-04 14:47:53+07', false);
INSERT INTO public.journals VALUES (5551, 1718, 'Issue', 15, NULL, '2020-08-04 14:47:53+07', false);
INSERT INTO public.journals VALUES (5552, 1719, 'Issue', 15, NULL, '2020-08-04 14:47:53+07', false);
INSERT INTO public.journals VALUES (5553, 1716, 'Issue', 15, NULL, '2020-08-04 14:48:01+07', false);
INSERT INTO public.journals VALUES (5554, 1717, 'Issue', 15, NULL, '2020-08-04 14:48:01+07', false);
INSERT INTO public.journals VALUES (5555, 1718, 'Issue', 15, NULL, '2020-08-04 14:48:01+07', false);
INSERT INTO public.journals VALUES (5556, 1719, 'Issue', 15, NULL, '2020-08-04 14:48:01+07', false);
INSERT INTO public.journals VALUES (5557, 1680, 'Issue', 15, NULL, '2020-08-04 14:50:06+07', false);
INSERT INTO public.journals VALUES (5558, 1681, 'Issue', 15, NULL, '2020-08-04 14:50:16+07', false);
INSERT INTO public.journals VALUES (5559, 1682, 'Issue', 15, NULL, '2020-08-04 14:50:24+07', false);
INSERT INTO public.journals VALUES (5560, 1707, 'Issue', 30, '* 3/8
Hộp 21: 614 trang
* 4/8:
Hộp 73: 42 trang
Hộp 61: 481 trang
Hộp 62: 494 trang
-> Tổng: 1631 trang
', '2020-08-04 15:54:05+07', false);
INSERT INTO public.journals VALUES (5561, 1707, 'Issue', 30, NULL, '2020-08-04 15:54:35+07', false);
INSERT INTO public.journals VALUES (5562, 1662, 'Issue', 8, NULL, '2020-08-04 16:04:54+07', false);
INSERT INTO public.journals VALUES (5563, 1664, 'Issue', 8, NULL, '2020-08-04 16:04:55+07', false);
INSERT INTO public.journals VALUES (5564, 1662, 'Issue', 8, NULL, '2020-08-04 16:05:08+07', false);
INSERT INTO public.journals VALUES (5565, 1664, 'Issue', 8, NULL, '2020-08-04 16:05:08+07', false);
INSERT INTO public.journals VALUES (5566, 1662, 'Issue', 8, NULL, '2020-08-04 16:05:25+07', false);
INSERT INTO public.journals VALUES (5567, 1664, 'Issue', 8, NULL, '2020-08-04 16:05:25+07', false);
INSERT INTO public.journals VALUES (5568, 1710, 'Issue', 10, NULL, '2020-08-04 16:43:58+07', false);
INSERT INTO public.journals VALUES (5569, 1711, 'Issue', 10, NULL, '2020-08-04 16:43:58+07', false);
INSERT INTO public.journals VALUES (5570, 1712, 'Issue', 10, NULL, '2020-08-04 16:43:58+07', false);
INSERT INTO public.journals VALUES (5571, 1711, 'Issue', 10, '', '2020-08-04 16:44:12+07', false);
INSERT INTO public.journals VALUES (5572, 1712, 'Issue', 10, '', '2020-08-04 16:44:36+07', false);
INSERT INTO public.journals VALUES (5573, 1702, 'Issue', 29, NULL, '2020-08-05 07:47:52+07', false);
INSERT INTO public.journals VALUES (5574, 1702, 'Issue', 29, NULL, '2020-08-05 07:48:21+07', false);
INSERT INTO public.journals VALUES (5575, 1708, 'Issue', 26, '', '2020-08-05 08:49:56+07', false);
INSERT INTO public.journals VALUES (5576, 1617, 'Issue', 5, '', '2020-08-05 13:41:20+07', false);
INSERT INTO public.journals VALUES (5577, 1401, 'Issue', 5, NULL, '2020-08-05 14:04:29+07', false);
INSERT INTO public.journals VALUES (5578, 1133, 'Issue', 5, NULL, '2020-08-05 14:04:29+07', false);
INSERT INTO public.journals VALUES (5579, 1134, 'Issue', 5, NULL, '2020-08-05 14:04:29+07', false);
INSERT INTO public.journals VALUES (5580, 1135, 'Issue', 5, NULL, '2020-08-05 14:04:29+07', false);
INSERT INTO public.journals VALUES (5581, 1136, 'Issue', 5, NULL, '2020-08-05 14:04:30+07', false);
INSERT INTO public.journals VALUES (5582, 1137, 'Issue', 5, NULL, '2020-08-05 14:04:30+07', false);
INSERT INTO public.journals VALUES (5583, 1138, 'Issue', 5, NULL, '2020-08-05 14:04:30+07', false);
INSERT INTO public.journals VALUES (5584, 1139, 'Issue', 5, NULL, '2020-08-05 14:04:30+07', false);
INSERT INTO public.journals VALUES (5585, 1140, 'Issue', 5, NULL, '2020-08-05 14:04:30+07', false);
INSERT INTO public.journals VALUES (5586, 1143, 'Issue', 5, '', '2020-08-05 14:05:16+07', false);
INSERT INTO public.journals VALUES (5587, 1133, 'Issue', 5, '', '2020-08-05 14:05:50+07', false);
INSERT INTO public.journals VALUES (5588, 1134, 'Issue', 5, '', '2020-08-05 14:05:50+07', false);
INSERT INTO public.journals VALUES (5589, 1135, 'Issue', 5, '', '2020-08-05 14:05:50+07', false);
INSERT INTO public.journals VALUES (5590, 1136, 'Issue', 5, '', '2020-08-05 14:05:50+07', false);
INSERT INTO public.journals VALUES (5591, 1137, 'Issue', 5, '', '2020-08-05 14:06:04+07', false);
INSERT INTO public.journals VALUES (5592, 1138, 'Issue', 5, '', '2020-08-05 14:06:04+07', false);
INSERT INTO public.journals VALUES (5593, 1139, 'Issue', 5, '', '2020-08-05 14:06:04+07', false);
INSERT INTO public.journals VALUES (5594, 1140, 'Issue', 5, '', '2020-08-05 14:06:05+07', false);
INSERT INTO public.journals VALUES (5595, 1695, 'Issue', 12, NULL, '2020-08-05 14:57:28+07', false);
INSERT INTO public.journals VALUES (5596, 1695, 'Issue', 12, NULL, '2020-08-05 14:57:35+07', false);
INSERT INTO public.journals VALUES (5597, 1697, 'Issue', 13, '', '2020-08-05 15:35:09+07', false);
INSERT INTO public.journals VALUES (5598, 1698, 'Issue', 13, '', '2020-08-05 15:36:59+07', false);
INSERT INTO public.journals VALUES (5599, 1697, 'Issue', 13, NULL, '2020-08-05 15:37:11+07', false);
INSERT INTO public.journals VALUES (5600, 1721, 'Issue', 13, NULL, '2020-08-05 15:38:08+07', false);
INSERT INTO public.journals VALUES (5601, 1722, 'Issue', 13, NULL, '2020-08-05 15:38:23+07', false);
INSERT INTO public.journals VALUES (5602, 1674, 'Issue', 5, '', '2020-08-05 16:04:29+07', false);
INSERT INTO public.journals VALUES (5603, 1721, 'Issue', 5, NULL, '2020-08-06 08:13:44+07', false);
INSERT INTO public.journals VALUES (5604, 1722, 'Issue', 5, NULL, '2020-08-06 08:13:44+07', false);
INSERT INTO public.journals VALUES (5605, 1036, 'Issue', 5, NULL, '2020-08-06 10:20:23+07', false);
INSERT INTO public.journals VALUES (5606, 1036, 'Issue', 5, NULL, '2020-08-06 10:20:33+07', false);
INSERT INTO public.journals VALUES (5607, 1723, 'Issue', 5, NULL, '2020-08-06 10:25:39+07', false);
INSERT INTO public.journals VALUES (5608, 1694, 'Issue', 5, '', '2020-08-06 10:33:12+07', false);
INSERT INTO public.journals VALUES (5609, 1725, 'Issue', 5, NULL, '2020-08-06 10:37:20+07', false);
INSERT INTO public.journals VALUES (5610, 1726, 'Issue', 5, NULL, '2020-08-06 10:37:21+07', false);
INSERT INTO public.journals VALUES (5611, 1693, 'Issue', 5, NULL, '2020-08-06 10:39:35+07', false);
INSERT INTO public.journals VALUES (5612, 1693, 'Issue', 5, NULL, '2020-08-06 10:39:46+07', false);
INSERT INTO public.journals VALUES (5613, 1728, 'Issue', 5, NULL, '2020-08-06 10:47:04+07', false);
INSERT INTO public.journals VALUES (5614, 1729, 'Issue', 5, NULL, '2020-08-06 10:47:04+07', false);
INSERT INTO public.journals VALUES (5615, 1696, 'Issue', 5, '', '2020-08-06 10:48:19+07', false);
INSERT INTO public.journals VALUES (5616, 1726, 'Issue', 5, NULL, '2020-08-06 10:48:44+07', false);
INSERT INTO public.journals VALUES (5617, 1726, 'Issue', 5, '', '2020-08-06 10:49:00+07', false);
INSERT INTO public.journals VALUES (5618, 1692, 'Issue', 5, '', '2020-08-06 10:50:06+07', false);
INSERT INTO public.journals VALUES (5619, 1725, 'Issue', 5, NULL, '2020-08-06 10:50:55+07', false);
INSERT INTO public.journals VALUES (5620, 1727, 'Issue', 5, NULL, '2020-08-06 10:50:55+07', false);
INSERT INTO public.journals VALUES (5621, 1728, 'Issue', 5, NULL, '2020-08-06 10:50:56+07', false);
INSERT INTO public.journals VALUES (5622, 1725, 'Issue', 5, '', '2020-08-06 10:51:26+07', false);
INSERT INTO public.journals VALUES (5623, 1727, 'Issue', 5, '', '2020-08-06 10:51:26+07', false);
INSERT INTO public.journals VALUES (5624, 1728, 'Issue', 5, '', '2020-08-06 10:51:27+07', false);
INSERT INTO public.journals VALUES (5625, 1689, 'Issue', 5, '', '2020-08-06 10:59:21+07', false);
INSERT INTO public.journals VALUES (5626, 1721, 'Issue', 5, NULL, '2020-08-06 11:00:51+07', false);
INSERT INTO public.journals VALUES (5627, 1722, 'Issue', 5, NULL, '2020-08-06 11:00:51+07', false);
INSERT INTO public.journals VALUES (5628, 1721, 'Issue', 5, NULL, '2020-08-06 11:00:58+07', false);
INSERT INTO public.journals VALUES (5629, 1722, 'Issue', 5, NULL, '2020-08-06 11:00:58+07', false);
INSERT INTO public.journals VALUES (5630, 1697, 'Issue', 5, '', '2020-08-06 11:17:20+07', false);
INSERT INTO public.journals VALUES (5631, 1697, 'Issue', 5, '', '2020-08-06 11:24:48+07', false);
INSERT INTO public.journals VALUES (5632, 1697, 'Issue', 5, '', '2020-08-06 11:25:36+07', false);
INSERT INTO public.journals VALUES (5633, 1698, 'Issue', 5, '', '2020-08-06 15:07:13+07', false);
INSERT INTO public.journals VALUES (5634, 1732, 'Issue', 5, '', '2020-08-06 15:28:16+07', false);
INSERT INTO public.journals VALUES (5635, 1733, 'Issue', 5, '', '2020-08-06 15:28:16+07', false);
INSERT INTO public.journals VALUES (5636, 1734, 'Issue', 5, '', '2020-08-06 15:28:16+07', false);
INSERT INTO public.journals VALUES (5637, 1732, 'Issue', 5, NULL, '2020-08-06 15:29:48+07', false);
INSERT INTO public.journals VALUES (5638, 1733, 'Issue', 5, NULL, '2020-08-06 15:29:48+07', false);
INSERT INTO public.journals VALUES (5639, 1734, 'Issue', 5, NULL, '2020-08-06 15:29:48+07', false);
INSERT INTO public.journals VALUES (5640, 1735, 'Issue', 5, '', '2020-08-06 15:30:19+07', false);
INSERT INTO public.journals VALUES (5641, 1736, 'Issue', 5, '', '2020-08-06 15:30:24+07', false);
INSERT INTO public.journals VALUES (5642, 1737, 'Issue', 5, '', '2020-08-06 15:30:29+07', false);
INSERT INTO public.journals VALUES (5643, 1732, 'Issue', 5, '', '2020-08-06 15:31:13+07', false);
INSERT INTO public.journals VALUES (5644, 1582, 'Issue', 19, '', '2020-08-06 15:43:12+07', false);
INSERT INTO public.journals VALUES (5645, 1702, 'Issue', 29, NULL, '2020-08-06 16:08:44+07', false);
INSERT INTO public.journals VALUES (5646, 1666, 'Issue', 8, NULL, '2020-08-07 08:31:38+07', false);
INSERT INTO public.journals VALUES (5647, 1666, 'Issue', 8, NULL, '2020-08-07 08:31:45+07', false);
INSERT INTO public.journals VALUES (5648, 1655, 'Issue', 33, NULL, '2020-08-07 09:48:20+07', false);
INSERT INTO public.journals VALUES (5649, 1693, 'Issue', 4, NULL, '2020-08-07 10:30:03+07', false);
INSERT INTO public.journals VALUES (5650, 1693, 'Issue', 4, NULL, '2020-08-07 10:30:13+07', false);
INSERT INTO public.journals VALUES (5651, 1726, 'Issue', 4, NULL, '2020-08-07 10:30:29+07', false);
INSERT INTO public.journals VALUES (5652, 1726, 'Issue', 4, NULL, '2020-08-07 10:30:35+07', false);
INSERT INTO public.journals VALUES (5653, 1729, 'Issue', 4, NULL, '2020-08-07 11:06:21+07', false);
INSERT INTO public.journals VALUES (5654, 1729, 'Issue', 4, NULL, '2020-08-07 11:06:29+07', false);
INSERT INTO public.journals VALUES (5655, 1735, 'Issue', 5, '', '2020-08-07 11:09:26+07', false);
INSERT INTO public.journals VALUES (5656, 1736, 'Issue', 5, '', '2020-08-07 11:09:26+07', false);
INSERT INTO public.journals VALUES (5657, 1737, 'Issue', 5, '', '2020-08-07 11:09:27+07', false);
INSERT INTO public.journals VALUES (5658, 1723, 'Issue', 13, '', '2020-08-07 15:22:52+07', false);
INSERT INTO public.journals VALUES (5659, 1724, 'Issue', 13, '', '2020-08-07 15:22:52+07', false);
INSERT INTO public.journals VALUES (5660, 1723, 'Issue', 13, NULL, '2020-08-07 15:23:00+07', false);
INSERT INTO public.journals VALUES (5661, 1724, 'Issue', 13, NULL, '2020-08-07 15:23:04+07', false);
INSERT INTO public.journals VALUES (5662, 1741, 'Issue', 13, '', '2020-08-07 15:24:52+07', false);
INSERT INTO public.journals VALUES (5663, 1746, 'Issue', 35, '', '2020-08-07 16:00:19+07', false);
INSERT INTO public.journals VALUES (5664, 1708, 'Issue', 26, '', '2020-08-07 16:16:46+07', false);
INSERT INTO public.journals VALUES (5665, 1747, 'Issue', 29, NULL, '2020-08-07 16:32:31+07', false);
INSERT INTO public.journals VALUES (5666, 1582, 'Issue', 5, NULL, '2020-08-07 16:37:54+07', false);
INSERT INTO public.journals VALUES (5667, 1615, 'Issue', 5, '', '2020-08-07 16:38:47+07', false);
INSERT INTO public.journals VALUES (5668, 1046, 'Issue', 5, NULL, '2020-08-07 16:39:17+07', false);
INSERT INTO public.journals VALUES (5669, 1173, 'Issue', 5, NULL, '2020-08-07 16:39:17+07', false);
INSERT INTO public.journals VALUES (5670, 1047, 'Issue', 5, NULL, '2020-08-07 16:39:17+07', false);
INSERT INTO public.journals VALUES (5671, 1049, 'Issue', 5, NULL, '2020-08-07 16:39:17+07', false);
INSERT INTO public.journals VALUES (5672, 1552, 'Issue', 5, NULL, '2020-08-07 16:39:17+07', false);
INSERT INTO public.journals VALUES (5673, 1659, 'Issue', 5, NULL, '2020-08-07 16:39:42+07', false);
INSERT INTO public.journals VALUES (5674, 1114, 'Issue', 5, NULL, '2020-08-07 16:39:59+07', false);
INSERT INTO public.journals VALUES (5675, 1115, 'Issue', 5, NULL, '2020-08-07 16:39:59+07', false);
INSERT INTO public.journals VALUES (5676, 1116, 'Issue', 5, NULL, '2020-08-07 16:39:59+07', false);
INSERT INTO public.journals VALUES (5677, 1118, 'Issue', 5, NULL, '2020-08-07 16:40:00+07', false);
INSERT INTO public.journals VALUES (5678, 1119, 'Issue', 5, NULL, '2020-08-07 16:40:00+07', false);
INSERT INTO public.journals VALUES (5679, 1120, 'Issue', 5, NULL, '2020-08-07 16:40:00+07', false);
INSERT INTO public.journals VALUES (5680, 1123, 'Issue', 5, NULL, '2020-08-07 16:40:00+07', false);
INSERT INTO public.journals VALUES (5681, 1191, 'Issue', 5, NULL, '2020-08-07 16:40:00+07', false);
INSERT INTO public.journals VALUES (5682, 1192, 'Issue', 5, NULL, '2020-08-07 16:40:00+07', false);
INSERT INTO public.journals VALUES (5683, 1194, 'Issue', 5, NULL, '2020-08-07 16:40:00+07', false);
INSERT INTO public.journals VALUES (5684, 1368, 'Issue', 5, NULL, '2020-08-07 16:40:01+07', false);
INSERT INTO public.journals VALUES (5685, 1560, 'Issue', 5, NULL, '2020-08-07 16:40:01+07', false);
INSERT INTO public.journals VALUES (5686, 1193, 'Issue', 5, NULL, '2020-08-07 16:40:08+07', false);
INSERT INTO public.journals VALUES (5687, 1309, 'Issue', 5, NULL, '2020-08-07 16:40:08+07', false);
INSERT INTO public.journals VALUES (5688, 1310, 'Issue', 5, NULL, '2020-08-07 16:40:08+07', false);
INSERT INTO public.journals VALUES (5689, 1311, 'Issue', 5, NULL, '2020-08-07 16:40:08+07', false);
INSERT INTO public.journals VALUES (5690, 1367, 'Issue', 5, NULL, '2020-08-07 16:40:09+07', false);
INSERT INTO public.journals VALUES (5691, 1647, 'Issue', 5, NULL, '2020-08-07 16:40:09+07', false);
INSERT INTO public.journals VALUES (5692, 1648, 'Issue', 5, NULL, '2020-08-07 16:40:09+07', false);
INSERT INTO public.journals VALUES (5693, 1171, 'Issue', 5, NULL, '2020-08-07 16:40:42+07', false);
INSERT INTO public.journals VALUES (5694, 1172, 'Issue', 5, NULL, '2020-08-07 16:40:42+07', false);
INSERT INTO public.journals VALUES (5695, 1173, 'Issue', 5, NULL, '2020-08-07 16:40:42+07', false);
INSERT INTO public.journals VALUES (5696, 1174, 'Issue', 5, NULL, '2020-08-07 16:40:59+07', false);
INSERT INTO public.journals VALUES (5697, 1175, 'Issue', 5, NULL, '2020-08-07 16:40:59+07', false);
INSERT INTO public.journals VALUES (5698, 1391, 'Issue', 5, NULL, '2020-08-07 16:40:59+07', false);
INSERT INTO public.journals VALUES (5699, 1392, 'Issue', 5, NULL, '2020-08-07 16:41:00+07', false);
INSERT INTO public.journals VALUES (5700, 1044, 'Issue', 5, NULL, '2020-08-07 16:41:30+07', false);
INSERT INTO public.journals VALUES (5701, 1190, 'Issue', 5, NULL, '2020-08-07 16:41:30+07', false);
INSERT INTO public.journals VALUES (5702, 1402, 'Issue', 5, NULL, '2020-08-07 16:41:30+07', false);
INSERT INTO public.journals VALUES (5703, 1412, 'Issue', 5, NULL, '2020-08-07 16:41:31+07', false);
INSERT INTO public.journals VALUES (5704, 1559, 'Issue', 5, NULL, '2020-08-07 16:41:38+07', false);
INSERT INTO public.journals VALUES (5705, 1612, 'Issue', 5, NULL, '2020-08-07 16:41:39+07', false);
INSERT INTO public.journals VALUES (5706, 1613, 'Issue', 5, NULL, '2020-08-07 16:41:39+07', false);
INSERT INTO public.journals VALUES (5707, 1614, 'Issue', 5, NULL, '2020-08-07 16:41:39+07', false);
INSERT INTO public.journals VALUES (5708, 1615, 'Issue', 5, NULL, '2020-08-07 16:41:39+07', false);
INSERT INTO public.journals VALUES (5709, 1616, 'Issue', 5, NULL, '2020-08-07 16:41:39+07', false);
INSERT INTO public.journals VALUES (5710, 1617, 'Issue', 5, NULL, '2020-08-07 16:41:39+07', false);
INSERT INTO public.journals VALUES (5711, 1182, 'Issue', 5, NULL, '2020-08-07 16:41:46+07', false);
INSERT INTO public.journals VALUES (5712, 1603, 'Issue', 5, NULL, '2020-08-07 16:41:46+07', false);
INSERT INTO public.journals VALUES (5713, 1621, 'Issue', 5, NULL, '2020-08-07 16:41:47+07', false);
INSERT INTO public.journals VALUES (5714, 1622, 'Issue', 5, NULL, '2020-08-07 16:41:47+07', false);
INSERT INTO public.journals VALUES (5715, 1660, 'Issue', 5, NULL, '2020-08-07 16:41:53+07', false);
INSERT INTO public.journals VALUES (5716, 1661, 'Issue', 5, NULL, '2020-08-07 16:41:54+07', false);
INSERT INTO public.journals VALUES (5717, 1662, 'Issue', 5, NULL, '2020-08-07 16:41:54+07', false);
INSERT INTO public.journals VALUES (5718, 1663, 'Issue', 5, NULL, '2020-08-07 16:41:54+07', false);
INSERT INTO public.journals VALUES (5719, 1664, 'Issue', 5, NULL, '2020-08-07 16:41:54+07', false);
INSERT INTO public.journals VALUES (5720, 1665, 'Issue', 5, NULL, '2020-08-07 16:41:54+07', false);
INSERT INTO public.journals VALUES (5721, 1666, 'Issue', 5, NULL, '2020-08-07 16:41:54+07', false);
INSERT INTO public.journals VALUES (5722, 1047, 'Issue', 5, NULL, '2020-08-07 16:42:37+07', false);
INSERT INTO public.journals VALUES (5723, 1552, 'Issue', 5, NULL, '2020-08-07 16:42:37+07', false);
INSERT INTO public.journals VALUES (5724, 1659, 'Issue', 5, NULL, '2020-08-07 16:42:37+07', false);
INSERT INTO public.journals VALUES (5725, 1582, 'Issue', 5, '', '2020-08-07 16:42:56+07', false);
INSERT INTO public.journals VALUES (5726, 1176, 'Issue', 5, NULL, '2020-08-07 16:43:12+07', false);
INSERT INTO public.journals VALUES (5727, 1049, 'Issue', 5, NULL, '2020-08-07 16:43:12+07', false);
INSERT INTO public.journals VALUES (5728, 1387, 'Issue', 5, NULL, '2020-08-07 16:43:12+07', false);
INSERT INTO public.journals VALUES (5729, 1046, 'Issue', 5, NULL, '2020-08-07 16:43:23+07', false);
INSERT INTO public.journals VALUES (5730, 1667, 'Issue', 5, '', '2020-08-07 16:46:42+07', false);
INSERT INTO public.journals VALUES (5731, 1668, 'Issue', 5, '', '2020-08-07 16:46:42+07', false);
INSERT INTO public.journals VALUES (5732, 1669, 'Issue', 5, '', '2020-08-07 16:46:59+07', false);
INSERT INTO public.journals VALUES (5733, 1670, 'Issue', 5, '', '2020-08-07 16:47:00+07', false);
INSERT INTO public.journals VALUES (5734, 1638, 'Issue', 5, '', '2020-08-07 16:47:27+07', false);
INSERT INTO public.journals VALUES (5735, 1639, 'Issue', 5, '', '2020-08-07 16:47:28+07', false);
INSERT INTO public.journals VALUES (5736, 1643, 'Issue', 5, '', '2020-08-07 16:47:28+07', false);
INSERT INTO public.journals VALUES (5737, 1644, 'Issue', 5, '', '2020-08-07 16:47:28+07', false);
INSERT INTO public.journals VALUES (5738, 1645, 'Issue', 5, '', '2020-08-07 16:47:28+07', false);
INSERT INTO public.journals VALUES (5739, 1752, 'Issue', 5, '', '2020-08-07 17:05:23+07', false);
INSERT INTO public.journals VALUES (5740, 1698, 'Issue', 5, '', '2020-08-08 08:33:42+07', false);
INSERT INTO public.journals VALUES (5741, 1748, 'Issue', 5, NULL, '2020-08-08 08:35:52+07', false);
INSERT INTO public.journals VALUES (5742, 1611, 'Issue', 5, '', '2020-08-08 08:36:57+07', false);
INSERT INTO public.journals VALUES (5743, 1692, 'Issue', 5, '', '2020-08-08 08:36:57+07', false);
INSERT INTO public.journals VALUES (5744, 1694, 'Issue', 5, '', '2020-08-08 08:36:57+07', false);
INSERT INTO public.journals VALUES (5745, 1611, 'Issue', 5, NULL, '2020-08-08 08:37:09+07', false);
INSERT INTO public.journals VALUES (5746, 1692, 'Issue', 5, NULL, '2020-08-08 08:37:09+07', false);
INSERT INTO public.journals VALUES (5747, 1694, 'Issue', 5, NULL, '2020-08-08 08:37:09+07', false);
INSERT INTO public.journals VALUES (5748, 1594, 'Issue', 5, NULL, '2020-08-08 08:37:38+07', false);
INSERT INTO public.journals VALUES (5749, 1594, 'Issue', 5, '', '2020-08-08 08:37:56+07', false);
INSERT INTO public.journals VALUES (5750, 1757, 'Issue', 13, '', '2020-08-08 09:08:34+07', false);
INSERT INTO public.journals VALUES (5751, 1723, 'Issue', 13, '', '2020-08-08 09:09:15+07', false);
INSERT INTO public.journals VALUES (5752, 1724, 'Issue', 13, '', '2020-08-08 09:09:16+07', false);
INSERT INTO public.journals VALUES (5753, 1740, 'Issue', 13, '', '2020-08-08 09:09:16+07', false);
INSERT INTO public.journals VALUES (5754, 1741, 'Issue', 13, '', '2020-08-08 09:09:16+07', false);
INSERT INTO public.journals VALUES (5755, 1723, 'Issue', 13, '', '2020-08-08 09:13:14+07', false);
INSERT INTO public.journals VALUES (5756, 1758, 'Issue', 13, '', '2020-08-08 09:13:14+07', false);
INSERT INTO public.journals VALUES (5757, 1760, 'Issue', 13, '', '2020-08-08 09:16:07+07', false);
INSERT INTO public.journals VALUES (5758, 1759, 'Issue', 13, '', '2020-08-08 09:16:32+07', false);
INSERT INTO public.journals VALUES (5759, 1760, 'Issue', 13, '', '2020-08-08 09:16:33+07', false);
INSERT INTO public.journals VALUES (5760, 1740, 'Issue', 13, NULL, '2020-08-08 09:17:06+07', false);
INSERT INTO public.journals VALUES (5761, 1740, 'Issue', 13, NULL, '2020-08-08 09:17:14+07', false);
INSERT INTO public.journals VALUES (5762, 1535, 'Issue', 5, '', '2020-08-08 10:59:37+07', false);
INSERT INTO public.journals VALUES (5763, 924, 'Issue', 5, NULL, '2020-08-08 11:01:01+07', false);
INSERT INTO public.journals VALUES (5764, 995, 'Issue', 5, '', '2020-08-08 11:02:29+07', false);
INSERT INTO public.journals VALUES (5765, 1017, 'Issue', 5, NULL, '2020-08-08 11:02:36+07', false);
INSERT INTO public.journals VALUES (5766, 995, 'Issue', 5, NULL, '2020-08-08 11:02:36+07', false);
INSERT INTO public.journals VALUES (5767, 1752, 'Issue', 5, NULL, '2020-08-08 11:04:33+07', false);
INSERT INTO public.journals VALUES (5768, 1753, 'Issue', 5, NULL, '2020-08-08 11:04:33+07', false);
INSERT INTO public.journals VALUES (5769, 1754, 'Issue', 5, NULL, '2020-08-08 11:04:33+07', false);
INSERT INTO public.journals VALUES (5770, 1750, 'Issue', 5, NULL, '2020-08-08 11:04:42+07', false);
INSERT INTO public.journals VALUES (5771, 1751, 'Issue', 5, NULL, '2020-08-08 11:04:43+07', false);
INSERT INTO public.journals VALUES (5772, 924, 'Issue', 5, '', '2020-08-08 11:05:31+07', false);
INSERT INTO public.journals VALUES (5773, 965, 'Issue', 5, '', '2020-08-08 11:05:31+07', false);
INSERT INTO public.journals VALUES (5774, 966, 'Issue', 5, '', '2020-08-08 11:05:32+07', false);
INSERT INTO public.journals VALUES (5775, 968, 'Issue', 5, '', '2020-08-08 11:05:32+07', false);
INSERT INTO public.journals VALUES (5776, 1403, 'Issue', 5, '', '2020-08-08 11:05:32+07', false);
INSERT INTO public.journals VALUES (5777, 1416, 'Issue', 5, '', '2020-08-08 11:05:32+07', false);
INSERT INTO public.journals VALUES (5778, 1426, 'Issue', 5, '', '2020-08-08 11:05:32+07', false);
INSERT INTO public.journals VALUES (5779, 1009, 'Issue', 5, NULL, '2020-08-08 11:05:41+07', false);
INSERT INTO public.journals VALUES (5780, 1019, 'Issue', 5, NULL, '2020-08-08 11:05:42+07', false);
INSERT INTO public.journals VALUES (5781, 1696, 'Issue', 5, '', '2020-08-08 11:06:15+07', false);
INSERT INTO public.journals VALUES (5782, 1695, 'Issue', 5, '', '2020-08-08 11:06:49+07', false);
INSERT INTO public.journals VALUES (5783, 1008, 'Issue', 5, NULL, '2020-08-08 11:07:04+07', false);
INSERT INTO public.journals VALUES (5784, 924, 'Issue', 5, '', '2020-08-08 11:08:43+07', false);
INSERT INTO public.journals VALUES (5785, 1009, 'Issue', 5, '', '2020-08-08 11:09:04+07', false);
INSERT INTO public.journals VALUES (5786, 1019, 'Issue', 5, '', '2020-08-08 11:09:05+07', false);
INSERT INTO public.journals VALUES (5787, 1008, 'Issue', 5, '', '2020-08-08 11:09:06+07', false);
INSERT INTO public.journals VALUES (5788, 1403, 'Issue', 5, '', '2020-08-08 11:09:12+07', false);
INSERT INTO public.journals VALUES (5789, 1403, 'Issue', 5, '', '2020-08-08 11:09:13+07', false);
INSERT INTO public.journals VALUES (5790, 1698, 'Issue', 5, '', '2020-08-08 11:09:49+07', false);
INSERT INTO public.journals VALUES (5791, 1756, 'Issue', 5, '', '2020-08-08 11:09:59+07', false);
INSERT INTO public.journals VALUES (5792, 1745, 'Issue', 5, '', '2020-08-08 11:10:33+07', false);
INSERT INTO public.journals VALUES (5793, 1732, 'Issue', 5, '', '2020-08-08 11:12:15+07', false);
INSERT INTO public.journals VALUES (5794, 1733, 'Issue', 5, '', '2020-08-08 11:12:16+07', false);
INSERT INTO public.journals VALUES (5795, 1734, 'Issue', 5, '', '2020-08-08 11:12:18+07', false);
INSERT INTO public.journals VALUES (5796, 1748, 'Issue', 5, NULL, '2020-08-08 11:21:45+07', false);
INSERT INTO public.journals VALUES (5797, 1689, 'Issue', 5, NULL, '2020-08-08 11:22:01+07', false);
INSERT INTO public.journals VALUES (5798, 1690, 'Issue', 5, NULL, '2020-08-08 11:22:02+07', false);
INSERT INTO public.journals VALUES (5799, 1725, 'Issue', 5, NULL, '2020-08-08 11:22:02+07', false);
INSERT INTO public.journals VALUES (5800, 1727, 'Issue', 5, NULL, '2020-08-08 11:22:02+07', false);
INSERT INTO public.journals VALUES (5801, 1728, 'Issue', 5, NULL, '2020-08-08 11:22:02+07', false);
INSERT INTO public.journals VALUES (5802, 1696, 'Issue', 5, NULL, '2020-08-08 11:22:02+07', false);
INSERT INTO public.journals VALUES (5803, 1730, 'Issue', 5, NULL, '2020-08-08 11:22:02+07', false);
INSERT INTO public.journals VALUES (5804, 1738, 'Issue', 5, NULL, '2020-08-08 11:22:02+07', false);
INSERT INTO public.journals VALUES (5805, 1743, 'Issue', 5, NULL, '2020-08-08 11:22:02+07', false);
INSERT INTO public.journals VALUES (5806, 1744, 'Issue', 5, NULL, '2020-08-08 11:22:02+07', false);
INSERT INTO public.journals VALUES (5807, 965, 'Issue', 5, '', '2020-08-08 11:22:44+07', false);
INSERT INTO public.journals VALUES (5808, 966, 'Issue', 5, '', '2020-08-08 11:22:45+07', false);
INSERT INTO public.journals VALUES (5809, 1416, 'Issue', 5, '', '2020-08-08 11:22:45+07', false);
INSERT INTO public.journals VALUES (5810, 1689, 'Issue', 5, '', '2020-08-08 11:23:53+07', false);
INSERT INTO public.journals VALUES (5811, 1690, 'Issue', 5, '', '2020-08-08 11:23:53+07', false);
INSERT INTO public.journals VALUES (5812, 1725, 'Issue', 5, '', '2020-08-08 11:23:53+07', false);
INSERT INTO public.journals VALUES (5813, 1727, 'Issue', 5, '', '2020-08-08 11:23:54+07', false);
INSERT INTO public.journals VALUES (5814, 1728, 'Issue', 5, '', '2020-08-08 11:24:12+07', false);
INSERT INTO public.journals VALUES (5815, 1696, 'Issue', 5, '', '2020-08-08 11:24:12+07', false);
INSERT INTO public.journals VALUES (5816, 1738, 'Issue', 5, '', '2020-08-08 11:24:13+07', false);
INSERT INTO public.journals VALUES (5817, 1730, 'Issue', 5, '', '2020-08-08 11:24:34+07', false);
INSERT INTO public.journals VALUES (5818, 1743, 'Issue', 5, '', '2020-08-08 11:24:34+07', false);
INSERT INTO public.journals VALUES (5819, 1744, 'Issue', 5, '', '2020-08-08 11:24:34+07', false);
INSERT INTO public.journals VALUES (5820, 1745, 'Issue', 5, '', '2020-08-08 11:25:03+07', false);
INSERT INTO public.journals VALUES (5821, 1752, 'Issue', 5, '', '2020-08-08 11:25:04+07', false);
INSERT INTO public.journals VALUES (5822, 1753, 'Issue', 5, '', '2020-08-08 11:25:18+07', false);
INSERT INTO public.journals VALUES (5823, 1754, 'Issue', 5, '', '2020-08-08 11:25:18+07', false);
INSERT INTO public.journals VALUES (5824, 968, 'Issue', 5, '', '2020-08-08 11:25:55+07', false);
INSERT INTO public.journals VALUES (5825, 1748, 'Issue', 5, '', '2020-08-08 11:26:14+07', false);
INSERT INTO public.journals VALUES (5826, 1750, 'Issue', 5, '', '2020-08-08 11:26:14+07', false);
INSERT INTO public.journals VALUES (5827, 1751, 'Issue', 5, '', '2020-08-08 11:26:14+07', false);
INSERT INTO public.journals VALUES (5828, 1727, 'Issue', 5, NULL, '2020-08-08 11:27:26+07', false);
INSERT INTO public.journals VALUES (5829, 1730, 'Issue', 5, NULL, '2020-08-08 11:27:26+07', false);
INSERT INTO public.journals VALUES (5830, 1743, 'Issue', 5, NULL, '2020-08-08 11:27:26+07', false);
INSERT INTO public.journals VALUES (5831, 1744, 'Issue', 5, NULL, '2020-08-08 11:27:26+07', false);
INSERT INTO public.journals VALUES (5832, 1696, 'Issue', 5, '', '2020-08-08 11:27:46+07', false);
INSERT INTO public.journals VALUES (5833, 1738, 'Issue', 5, '', '2020-08-08 11:27:46+07', false);
INSERT INTO public.journals VALUES (5834, 1694, 'Issue', 5, '', '2020-08-08 11:29:11+07', false);
INSERT INTO public.journals VALUES (5835, 1611, 'Issue', 5, '', '2020-08-08 11:29:22+07', false);
INSERT INTO public.journals VALUES (5836, 1403, 'Issue', 5, '', '2020-08-08 11:30:22+07', false);
INSERT INTO public.journals VALUES (5837, 1426, 'Issue', 5, '', '2020-08-08 11:30:22+07', false);
INSERT INTO public.journals VALUES (5838, 1695, 'Issue', 12, NULL, '2020-08-08 15:53:01+07', false);
INSERT INTO public.journals VALUES (5839, 1695, 'Issue', 12, NULL, '2020-08-08 15:53:13+07', false);
INSERT INTO public.journals VALUES (5840, 1731, 'Issue', 12, NULL, '2020-08-08 15:53:34+07', false);
INSERT INTO public.journals VALUES (5841, 1731, 'Issue', 12, NULL, '2020-08-08 15:53:41+07', false);
INSERT INTO public.journals VALUES (5842, 1732, 'Issue', 12, NULL, '2020-08-10 00:25:56+07', false);
INSERT INTO public.journals VALUES (5843, 1733, 'Issue', 12, NULL, '2020-08-10 00:25:56+07', false);
INSERT INTO public.journals VALUES (5844, 1734, 'Issue', 12, NULL, '2020-08-10 00:25:57+07', false);
INSERT INTO public.journals VALUES (5845, 1732, 'Issue', 12, NULL, '2020-08-10 00:26:06+07', false);
INSERT INTO public.journals VALUES (5846, 1733, 'Issue', 12, NULL, '2020-08-10 00:26:06+07', false);
INSERT INTO public.journals VALUES (5847, 1734, 'Issue', 12, NULL, '2020-08-10 00:26:06+07', false);
INSERT INTO public.journals VALUES (5848, 1758, 'Issue', 13, NULL, '2020-08-10 08:12:22+07', false);
INSERT INTO public.journals VALUES (5849, 1758, 'Issue', 13, NULL, '2020-08-10 08:12:37+07', false);
INSERT INTO public.journals VALUES (5850, 1757, 'Issue', 13, NULL, '2020-08-10 08:12:51+07', false);
INSERT INTO public.journals VALUES (5851, 1757, 'Issue', 13, NULL, '2020-08-10 08:13:02+07', false);
INSERT INTO public.journals VALUES (5852, 1698, 'Issue', 5, '', '2020-08-10 08:18:11+07', false);
INSERT INTO public.journals VALUES (5853, 1756, 'Issue', 5, '', '2020-08-10 08:18:12+07', false);
INSERT INTO public.journals VALUES (5854, 1535, 'Issue', 5, NULL, '2020-08-10 08:22:03+07', false);
INSERT INTO public.journals VALUES (5855, 1535, 'Issue', 5, '', '2020-08-10 08:22:34+07', false);
INSERT INTO public.journals VALUES (5856, 1403, 'Issue', 5, '', '2020-08-10 08:25:01+07', false);
INSERT INTO public.journals VALUES (5857, 1426, 'Issue', 5, '', '2020-08-10 08:25:01+07', false);
INSERT INTO public.journals VALUES (5859, 1681, 'Issue', 15, '', '2020-08-10 08:28:31+07', false);
INSERT INTO public.journals VALUES (5860, 1772, 'Issue', 23, '', '2020-08-10 08:49:00+07', false);
INSERT INTO public.journals VALUES (5861, 1740, 'Issue', 13, '', '2020-08-10 09:11:30+07', false);
INSERT INTO public.journals VALUES (5862, 1764, 'Issue', 12, NULL, '2020-08-10 09:36:06+07', false);
INSERT INTO public.journals VALUES (5863, 1582, 'Issue', 19, '', '2020-08-10 10:37:29+07', false);
INSERT INTO public.journals VALUES (5864, 1669, 'Issue', 19, 'pH, DO, TSS, BOD5, COD, NH4+, PO43-, Fe, Pb, Hg, CN-, Cd, Cl-, Chất hoạt động bề mặt, Dầu mỡ, Coliform (16 thông số)
', '2020-08-10 10:39:46+07', false);
INSERT INTO public.journals VALUES (5865, 1557, 'Issue', 19, 'pH, độ cứng, TS, COD, NH4+, NO3-, NO2-, SO42-, Cl,  Fe, Mn,  As, E.Coli và Coliform (14 thông số)
', '2020-08-10 10:40:46+07', false);
INSERT INTO public.journals VALUES (5866, 1554, 'Issue', 19, 'Thông số:
pH
TSS
COD
BOD
N-NH4+
Tổng P
Tổng N
TOC
Hg
Fe
Tổng crôm
Cd
Clorua
Tổng phenol
Tổng xianua', '2020-08-10 10:48:37+07', false);
INSERT INTO public.journals VALUES (5867, 1495, 'Issue', 15, NULL, '2020-08-10 10:54:52+07', false);
INSERT INTO public.journals VALUES (5868, 1496, 'Issue', 15, NULL, '2020-08-10 10:54:52+07', false);
INSERT INTO public.journals VALUES (5869, 1495, 'Issue', 15, NULL, '2020-08-10 10:55:07+07', false);
INSERT INTO public.journals VALUES (5870, 1496, 'Issue', 15, NULL, '2020-08-10 10:55:07+07', false);
INSERT INTO public.journals VALUES (5871, 1567, 'Issue', 15, NULL, '2020-08-10 10:57:52+07', false);
INSERT INTO public.journals VALUES (5872, 1568, 'Issue', 15, NULL, '2020-08-10 10:57:52+07', false);
INSERT INTO public.journals VALUES (5873, 1569, 'Issue', 15, NULL, '2020-08-10 10:57:52+07', false);
INSERT INTO public.journals VALUES (5874, 1570, 'Issue', 15, NULL, '2020-08-10 10:57:52+07', false);
INSERT INTO public.journals VALUES (5875, 1562, 'Issue', 15, NULL, '2020-08-10 10:58:31+07', false);
INSERT INTO public.journals VALUES (5876, 1567, 'Issue', 15, NULL, '2020-08-10 10:58:31+07', false);
INSERT INTO public.journals VALUES (5877, 1568, 'Issue', 15, NULL, '2020-08-10 10:58:32+07', false);
INSERT INTO public.journals VALUES (5878, 1569, 'Issue', 15, NULL, '2020-08-10 10:58:32+07', false);
INSERT INTO public.journals VALUES (5879, 1570, 'Issue', 15, NULL, '2020-08-10 10:58:32+07', false);
INSERT INTO public.journals VALUES (5880, 1710, 'Issue', 15, NULL, '2020-08-10 10:58:44+07', false);
INSERT INTO public.journals VALUES (5881, 1711, 'Issue', 15, NULL, '2020-08-10 10:58:44+07', false);
INSERT INTO public.journals VALUES (5882, 1712, 'Issue', 15, NULL, '2020-08-10 10:58:45+07', false);
INSERT INTO public.journals VALUES (5883, 1777, 'Issue', 15, '', '2020-08-10 11:00:53+07', false);
INSERT INTO public.journals VALUES (5884, 1778, 'Issue', 15, '', '2020-08-10 11:01:31+07', false);
INSERT INTO public.journals VALUES (5885, 1778, 'Issue', 15, '', '2020-08-10 11:02:48+07', false);
INSERT INTO public.journals VALUES (5886, 1779, 'Issue', 15, '', '2020-08-10 11:03:00+07', false);
INSERT INTO public.journals VALUES (5887, 1781, 'Issue', 15, NULL, '2020-08-10 11:05:47+07', false);
INSERT INTO public.journals VALUES (5888, 1782, 'Issue', 15, NULL, '2020-08-10 11:05:47+07', false);
INSERT INTO public.journals VALUES (5889, 1783, 'Issue', 15, NULL, '2020-08-10 11:05:47+07', false);
INSERT INTO public.journals VALUES (5890, 1781, 'Issue', 15, NULL, '2020-08-10 11:05:55+07', false);
INSERT INTO public.journals VALUES (5891, 1782, 'Issue', 15, NULL, '2020-08-10 11:05:55+07', false);
INSERT INTO public.journals VALUES (5892, 1783, 'Issue', 15, NULL, '2020-08-10 11:05:55+07', false);
INSERT INTO public.journals VALUES (5893, 1780, 'Issue', 15, NULL, '2020-08-10 11:06:08+07', false);
INSERT INTO public.journals VALUES (5894, 1780, 'Issue', 15, NULL, '2020-08-10 11:06:17+07', false);
INSERT INTO public.journals VALUES (5895, 1582, 'Issue', 19, '', '2020-08-10 11:09:52+07', false);
INSERT INTO public.journals VALUES (5896, 1785, 'Issue', 13, '', '2020-08-10 14:13:28+07', false);
INSERT INTO public.journals VALUES (5897, 1557, 'Issue', 19, 'https://thuvienphapluat.vn/van-ban/tai-nguyen-moi-truong/Quyet-dinh-1460-QD-TCMT-2019-ky-thuat-tinh-toan-va-cong-bo-chi-so-chat-luong-nuoc-428277.aspx', '2020-08-10 14:39:28+07', false);
INSERT INTO public.journals VALUES (5898, 1557, 'Issue', 19, 'pH, DO, TSS, BOD5, COD, NH4+, PO43-, Fe, Pb, Hg, CN-, Cd, Cl-, Chất hoạt động bề mặt, Dầu mỡ, Coliform (16 thông số)', '2020-08-10 14:48:10+07', false);
INSERT INTO public.journals VALUES (5899, 1778, 'Issue', 10, NULL, '2020-08-10 16:40:02+07', false);
INSERT INTO public.journals VALUES (5900, 1707, 'Issue', 30, '* 3/8
Hộp 21: 614 trang
Hộp 73: 42 trang
* 4/8
Hộp 61: 481 trang
Hộp 62: 443 trang
* 5/8
Hộp 76: 491 trang
Hộp 89: 71 trang
Hộp 155: 70 trang
* 6/8
Hộp 87: 896 trang
* 7/8
Hộp 164: 772 trang
* 10/8
Hộp 173: 709 trang
* 11/8
Hộp 184: 735
-> Tổng: 5324 trang

', '2020-08-11 09:27:37+07', false);
INSERT INTO public.journals VALUES (5901, 1707, 'Issue', 30, NULL, '2020-08-11 09:28:40+07', false);
INSERT INTO public.journals VALUES (5902, 1784, 'Issue', 5, NULL, '2020-08-11 09:31:42+07', false);
INSERT INTO public.journals VALUES (5903, 1594, 'Issue', 5, '', '2020-08-11 09:36:41+07', false);
INSERT INTO public.journals VALUES (5904, 1594, 'Issue', 5, '', '2020-08-11 09:36:50+07', false);
INSERT INTO public.journals VALUES (5905, 1594, 'Issue', 5, '', '2020-08-11 09:37:09+07', false);
INSERT INTO public.journals VALUES (5906, 1594, 'Issue', 5, '', '2020-08-11 09:37:33+07', false);
INSERT INTO public.journals VALUES (5907, 1594, 'Issue', 5, '', '2020-08-11 09:37:45+07', false);
INSERT INTO public.journals VALUES (5908, 1055, 'Issue', 17, NULL, '2020-08-11 09:37:57+07', false);
INSERT INTO public.journals VALUES (5909, 1064, 'Issue', 17, NULL, '2020-08-11 09:38:21+07', false);
INSERT INTO public.journals VALUES (5910, 1067, 'Issue', 17, NULL, '2020-08-11 09:38:40+07', false);
INSERT INTO public.journals VALUES (5911, 1066, 'Issue', 17, NULL, '2020-08-11 09:38:55+07', false);
INSERT INTO public.journals VALUES (5912, 1056, 'Issue', 17, NULL, '2020-08-11 09:41:11+07', false);
INSERT INTO public.journals VALUES (5913, 1062, 'Issue', 17, NULL, '2020-08-11 09:51:32+07', false);
INSERT INTO public.journals VALUES (5914, 1594, 'Issue', 5, '', '2020-08-11 09:53:02+07', false);
INSERT INTO public.journals VALUES (5915, 1785, 'Issue', 5, '', '2020-08-11 09:53:51+07', false);
INSERT INTO public.journals VALUES (5916, 1785, 'Issue', 5, '', '2020-08-11 09:54:47+07', false);
INSERT INTO public.journals VALUES (5917, 1692, 'Issue', 5, '', '2020-08-11 09:55:14+07', false);
INSERT INTO public.journals VALUES (5918, 1694, 'Issue', 5, '', '2020-08-11 09:55:14+07', false);
INSERT INTO public.journals VALUES (5919, 1725, 'Issue', 5, '', '2020-08-11 09:55:14+07', false);
INSERT INTO public.journals VALUES (5920, 1727, 'Issue', 5, '', '2020-08-11 09:55:14+07', false);
INSERT INTO public.journals VALUES (5921, 1728, 'Issue', 5, '', '2020-08-11 09:55:14+07', false);
INSERT INTO public.journals VALUES (5922, 1594, 'Issue', 5, '', '2020-08-11 09:55:32+07', false);
INSERT INTO public.journals VALUES (5923, 1611, 'Issue', 5, '', '2020-08-11 09:55:32+07', false);
INSERT INTO public.journals VALUES (5924, 1689, 'Issue', 5, '', '2020-08-11 09:55:32+07', false);
INSERT INTO public.journals VALUES (5925, 1690, 'Issue', 5, '', '2020-08-11 09:55:32+07', false);
INSERT INTO public.journals VALUES (5926, 1199, 'Issue', 5, '', '2020-08-11 11:38:33+07', false);
INSERT INTO public.journals VALUES (5927, 1295, 'Issue', 5, '', '2020-08-11 11:38:35+07', false);
INSERT INTO public.journals VALUES (5928, 1299, 'Issue', 5, '', '2020-08-11 11:38:36+07', false);
INSERT INTO public.journals VALUES (5929, 1300, 'Issue', 5, '', '2020-08-11 11:38:38+07', false);
INSERT INTO public.journals VALUES (5930, 1304, 'Issue', 5, '', '2020-08-11 11:38:40+07', false);
INSERT INTO public.journals VALUES (5931, 1307, 'Issue', 5, '', '2020-08-11 11:38:45+07', false);
INSERT INTO public.journals VALUES (5932, 1308, 'Issue', 5, '', '2020-08-11 11:38:47+07', false);
INSERT INTO public.journals VALUES (5933, 1381, 'Issue', 5, '', '2020-08-11 11:38:49+07', false);
INSERT INTO public.journals VALUES (5934, 1340, 'Issue', 5, '', '2020-08-11 11:38:50+07', false);
INSERT INTO public.journals VALUES (5935, 1306, 'Issue', 5, '', '2020-08-11 11:38:52+07', false);
INSERT INTO public.journals VALUES (5936, 1285, 'Issue', 5, '', '2020-08-11 11:38:58+07', false);
INSERT INTO public.journals VALUES (5937, 1287, 'Issue', 5, '', '2020-08-11 11:39:00+07', false);
INSERT INTO public.journals VALUES (5938, 1288, 'Issue', 5, '', '2020-08-11 11:39:02+07', false);
INSERT INTO public.journals VALUES (5939, 1289, 'Issue', 5, '', '2020-08-11 11:39:04+07', false);
INSERT INTO public.journals VALUES (5940, 1292, 'Issue', 5, '', '2020-08-11 11:39:09+07', false);
INSERT INTO public.journals VALUES (5941, 1293, 'Issue', 5, '', '2020-08-11 11:39:11+07', false);
INSERT INTO public.journals VALUES (5942, 1305, 'Issue', 5, '', '2020-08-11 11:39:14+07', false);
INSERT INTO public.journals VALUES (5943, 1314, 'Issue', 5, '', '2020-08-11 11:39:17+07', false);
INSERT INTO public.journals VALUES (5944, 1316, 'Issue', 5, '', '2020-08-11 11:39:20+07', false);
INSERT INTO public.journals VALUES (5945, 1317, 'Issue', 5, '', '2020-08-11 11:39:23+07', false);
INSERT INTO public.journals VALUES (5946, 1318, 'Issue', 5, '', '2020-08-11 11:39:24+07', false);
INSERT INTO public.journals VALUES (5947, 1351, 'Issue', 5, '', '2020-08-11 11:39:34+07', false);
INSERT INTO public.journals VALUES (5948, 1352, 'Issue', 5, '', '2020-08-11 11:39:35+07', false);
INSERT INTO public.journals VALUES (5949, 1355, 'Issue', 5, '', '2020-08-11 11:39:40+07', false);
INSERT INTO public.journals VALUES (5950, 1356, 'Issue', 5, '', '2020-08-11 11:39:41+07', false);
INSERT INTO public.journals VALUES (5951, 1357, 'Issue', 5, '', '2020-08-11 11:39:43+07', false);
INSERT INTO public.journals VALUES (5952, 1360, 'Issue', 5, '', '2020-08-11 11:39:45+07', false);
INSERT INTO public.journals VALUES (5953, 1361, 'Issue', 5, '', '2020-08-11 11:39:47+07', false);
INSERT INTO public.journals VALUES (5954, 1321, 'Issue', 5, '', '2020-08-11 11:39:49+07', false);
INSERT INTO public.journals VALUES (5955, 1322, 'Issue', 5, '', '2020-08-11 11:39:50+07', false);
INSERT INTO public.journals VALUES (5956, 1323, 'Issue', 5, '', '2020-08-11 11:39:52+07', false);
INSERT INTO public.journals VALUES (5957, 1326, 'Issue', 5, '', '2020-08-11 11:39:53+07', false);
INSERT INTO public.journals VALUES (5958, 1328, 'Issue', 5, '', '2020-08-11 11:39:55+07', false);
INSERT INTO public.journals VALUES (5959, 1329, 'Issue', 5, '', '2020-08-11 11:39:56+07', false);
INSERT INTO public.journals VALUES (5960, 1330, 'Issue', 5, '', '2020-08-11 11:39:58+07', false);
INSERT INTO public.journals VALUES (5961, 1331, 'Issue', 5, '', '2020-08-11 11:40:00+07', false);
INSERT INTO public.journals VALUES (5962, 1334, 'Issue', 5, '', '2020-08-11 11:40:01+07', false);
INSERT INTO public.journals VALUES (5963, 1336, 'Issue', 5, '', '2020-08-11 11:40:06+07', false);
INSERT INTO public.journals VALUES (5964, 1337, 'Issue', 5, '', '2020-08-11 11:40:09+07', false);
INSERT INTO public.journals VALUES (5965, 1341, 'Issue', 5, '', '2020-08-11 11:40:12+07', false);
INSERT INTO public.journals VALUES (5966, 1343, 'Issue', 5, '', '2020-08-11 11:40:13+07', false);
INSERT INTO public.journals VALUES (5967, 1249, 'Issue', 5, '', '2020-08-11 11:40:17+07', false);
INSERT INTO public.journals VALUES (5968, 1250, 'Issue', 5, '', '2020-08-11 11:40:19+07', false);
INSERT INTO public.journals VALUES (5969, 1251, 'Issue', 5, '', '2020-08-11 11:40:20+07', false);
INSERT INTO public.journals VALUES (5970, 1253, 'Issue', 5, '', '2020-08-11 11:40:22+07', false);
INSERT INTO public.journals VALUES (5971, 1255, 'Issue', 5, '', '2020-08-11 11:40:25+07', false);
INSERT INTO public.journals VALUES (5972, 1256, 'Issue', 5, '', '2020-08-11 11:40:27+07', false);
INSERT INTO public.journals VALUES (5973, 1257, 'Issue', 5, '', '2020-08-11 11:40:29+07', false);
INSERT INTO public.journals VALUES (5974, 1258, 'Issue', 5, '', '2020-08-11 11:40:30+07', false);
INSERT INTO public.journals VALUES (5975, 1260, 'Issue', 5, '', '2020-08-11 11:40:33+07', false);
INSERT INTO public.journals VALUES (5976, 1261, 'Issue', 5, '', '2020-08-11 11:40:35+07', false);
INSERT INTO public.journals VALUES (5977, 1262, 'Issue', 5, '', '2020-08-11 11:40:37+07', false);
INSERT INTO public.journals VALUES (5978, 1263, 'Issue', 5, '', '2020-08-11 11:40:38+07', false);
INSERT INTO public.journals VALUES (5979, 1265, 'Issue', 5, '', '2020-08-11 11:40:41+07', false);
INSERT INTO public.journals VALUES (5980, 1267, 'Issue', 5, '', '2020-08-11 11:40:45+07', false);
INSERT INTO public.journals VALUES (5981, 1268, 'Issue', 5, '', '2020-08-11 11:40:46+07', false);
INSERT INTO public.journals VALUES (5982, 1269, 'Issue', 5, '', '2020-08-11 11:40:47+07', false);
INSERT INTO public.journals VALUES (5983, 1277, 'Issue', 5, '', '2020-08-11 11:40:50+07', false);
INSERT INTO public.journals VALUES (5984, 1278, 'Issue', 5, '', '2020-08-11 11:40:51+07', false);
INSERT INTO public.journals VALUES (5985, 1279, 'Issue', 5, '', '2020-08-11 11:40:53+07', false);
INSERT INTO public.journals VALUES (5986, 1266, 'Issue', 5, '', '2020-08-11 11:40:56+07', false);
INSERT INTO public.journals VALUES (5987, 1224, 'Issue', 5, '', '2020-08-11 11:41:12+07', false);
INSERT INTO public.journals VALUES (5988, 1225, 'Issue', 5, '', '2020-08-11 11:41:14+07', false);
INSERT INTO public.journals VALUES (5989, 1226, 'Issue', 5, '', '2020-08-11 11:41:16+07', false);
INSERT INTO public.journals VALUES (5990, 1227, 'Issue', 5, '', '2020-08-11 11:41:17+07', false);
INSERT INTO public.journals VALUES (5991, 1228, 'Issue', 5, '', '2020-08-11 11:41:19+07', false);
INSERT INTO public.journals VALUES (5992, 1229, 'Issue', 5, '', '2020-08-11 11:41:20+07', false);
INSERT INTO public.journals VALUES (5993, 1230, 'Issue', 5, '', '2020-08-11 11:41:21+07', false);
INSERT INTO public.journals VALUES (5994, 1231, 'Issue', 5, '', '2020-08-11 11:41:23+07', false);
INSERT INTO public.journals VALUES (5995, 1232, 'Issue', 5, '', '2020-08-11 11:41:25+07', false);
INSERT INTO public.journals VALUES (5996, 1233, 'Issue', 5, '', '2020-08-11 11:41:26+07', false);
INSERT INTO public.journals VALUES (5997, 1234, 'Issue', 5, '', '2020-08-11 11:41:28+07', false);
INSERT INTO public.journals VALUES (5998, 1235, 'Issue', 5, '', '2020-08-11 11:41:29+07', false);
INSERT INTO public.journals VALUES (5999, 1236, 'Issue', 5, '', '2020-08-11 11:41:30+07', false);
INSERT INTO public.journals VALUES (6000, 1237, 'Issue', 5, '', '2020-08-11 11:41:32+07', false);
INSERT INTO public.journals VALUES (6001, 1238, 'Issue', 5, '', '2020-08-11 11:41:33+07', false);
INSERT INTO public.journals VALUES (6002, 1239, 'Issue', 5, '', '2020-08-11 11:41:35+07', false);
INSERT INTO public.journals VALUES (6003, 1240, 'Issue', 5, '', '2020-08-11 11:41:36+07', false);
INSERT INTO public.journals VALUES (6004, 1241, 'Issue', 5, '', '2020-08-11 11:41:37+07', false);
INSERT INTO public.journals VALUES (6005, 1242, 'Issue', 5, '', '2020-08-11 11:41:39+07', false);
INSERT INTO public.journals VALUES (6006, 1243, 'Issue', 5, '', '2020-08-11 11:41:40+07', false);
INSERT INTO public.journals VALUES (6007, 1244, 'Issue', 5, '', '2020-08-11 11:41:41+07', false);
INSERT INTO public.journals VALUES (6008, 1245, 'Issue', 5, '', '2020-08-11 11:41:43+07', false);
INSERT INTO public.journals VALUES (6009, 1246, 'Issue', 5, '', '2020-08-11 11:41:44+07', false);
INSERT INTO public.journals VALUES (6010, 1247, 'Issue', 5, '', '2020-08-11 11:41:45+07', false);
INSERT INTO public.journals VALUES (6011, 1223, 'Issue', 5, '', '2020-08-11 11:41:46+07', false);
INSERT INTO public.journals VALUES (6012, 1215, 'Issue', 5, '', '2020-08-11 11:41:48+07', false);
INSERT INTO public.journals VALUES (6013, 1214, 'Issue', 5, '', '2020-08-11 11:41:51+07', false);
INSERT INTO public.journals VALUES (6014, 1213, 'Issue', 5, '', '2020-08-11 11:41:53+07', false);
INSERT INTO public.journals VALUES (6015, 1212, 'Issue', 5, '', '2020-08-11 11:41:54+07', false);
INSERT INTO public.journals VALUES (6016, 1211, 'Issue', 5, '', '2020-08-11 11:41:56+07', false);
INSERT INTO public.journals VALUES (6017, 1210, 'Issue', 5, '', '2020-08-11 11:41:57+07', false);
INSERT INTO public.journals VALUES (6018, 1264, 'Issue', 5, '', '2020-08-11 11:41:58+07', false);
INSERT INTO public.journals VALUES (6019, 1259, 'Issue', 5, '', '2020-08-11 11:42:00+07', false);
INSERT INTO public.journals VALUES (6020, 1254, 'Issue', 5, '', '2020-08-11 11:42:01+07', false);
INSERT INTO public.journals VALUES (6021, 1252, 'Issue', 5, '', '2020-08-11 11:42:02+07', false);
INSERT INTO public.journals VALUES (6022, 1248, 'Issue', 5, '', '2020-08-11 11:42:03+07', false);
INSERT INTO public.journals VALUES (6023, 1339, 'Issue', 5, '', '2020-08-11 11:42:05+07', false);
INSERT INTO public.journals VALUES (6024, 1335, 'Issue', 5, '', '2020-08-11 11:42:06+07', false);
INSERT INTO public.journals VALUES (6025, 1354, 'Issue', 5, '', '2020-08-11 11:42:07+07', false);
INSERT INTO public.journals VALUES (6026, 1350, 'Issue', 5, '', '2020-08-11 11:42:09+07', false);
INSERT INTO public.journals VALUES (6027, 1315, 'Issue', 5, '', '2020-08-11 11:42:10+07', false);
INSERT INTO public.journals VALUES (6028, 1313, 'Issue', 5, '', '2020-08-11 11:42:11+07', false);
INSERT INTO public.journals VALUES (6029, 1290, 'Issue', 5, '', '2020-08-11 11:42:13+07', false);
INSERT INTO public.journals VALUES (6030, 1282, 'Issue', 5, '', '2020-08-11 11:42:14+07', false);
INSERT INTO public.journals VALUES (6031, 1682, 'Issue', 17, '', '2020-08-11 13:20:40+07', false);
INSERT INTO public.journals VALUES (6032, 1681, 'Issue', 17, '', '2020-08-11 13:22:12+07', false);
INSERT INTO public.journals VALUES (6033, 1681, 'Issue', 17, '', '2020-08-11 13:22:43+07', false);
INSERT INTO public.journals VALUES (6034, 1766, 'Issue', 17, '', '2020-08-11 13:23:09+07', false);
INSERT INTO public.journals VALUES (6035, 1767, 'Issue', 17, '', '2020-08-11 13:23:31+07', false);
INSERT INTO public.journals VALUES (6036, 1768, 'Issue', 17, '', '2020-08-11 13:23:53+07', false);
INSERT INTO public.journals VALUES (6037, 1769, 'Issue', 17, '', '2020-08-11 13:24:15+07', false);
INSERT INTO public.journals VALUES (6038, 1771, 'Issue', 17, '', '2020-08-11 13:24:44+07', false);
INSERT INTO public.journals VALUES (6039, 1680, 'Issue', 17, '', '2020-08-11 13:25:22+07', false);
INSERT INTO public.journals VALUES (6040, 1776, 'Issue', 17, '', '2020-08-11 13:25:50+07', false);
INSERT INTO public.journals VALUES (6041, 1680, 'Issue', 17, '', '2020-08-11 13:26:31+07', false);
INSERT INTO public.journals VALUES (6042, 1535, 'Issue', 13, NULL, '2020-08-11 13:37:15+07', false);
INSERT INTO public.journals VALUES (6043, 1784, 'Issue', 13, NULL, '2020-08-11 13:37:15+07', false);
INSERT INTO public.journals VALUES (6044, 1535, 'Issue', 13, NULL, '2020-08-11 13:37:28+07', false);
INSERT INTO public.journals VALUES (6045, 1784, 'Issue', 13, NULL, '2020-08-11 13:37:28+07', false);
INSERT INTO public.journals VALUES (6046, 1759, 'Issue', 13, NULL, '2020-08-11 13:37:35+07', false);
INSERT INTO public.journals VALUES (6047, 1760, 'Issue', 13, NULL, '2020-08-11 13:37:35+07', false);
INSERT INTO public.journals VALUES (6048, 1759, 'Issue', 13, NULL, '2020-08-11 13:37:47+07', false);
INSERT INTO public.journals VALUES (6049, 1760, 'Issue', 13, NULL, '2020-08-11 13:37:47+07', false);
INSERT INTO public.journals VALUES (6050, 1790, 'Issue', 13, '', '2020-08-11 13:39:13+07', false);
INSERT INTO public.journals VALUES (6051, 1708, 'Issue', 26, '', '2020-08-11 16:34:09+07', false);
INSERT INTO public.journals VALUES (6052, 995, 'Issue', 5, '', '2020-08-12 08:53:11+07', false);
INSERT INTO public.journals VALUES (6053, 1017, 'Issue', 5, NULL, '2020-08-12 08:53:22+07', false);
INSERT INTO public.journals VALUES (6054, 1017, 'Issue', 5, NULL, '2020-08-12 08:53:48+07', false);
INSERT INTO public.journals VALUES (6055, 1790, 'Issue', 13, NULL, '2020-08-12 09:26:50+07', false);
INSERT INTO public.journals VALUES (6056, 1790, 'Issue', 13, NULL, '2020-08-12 09:27:05+07', false);
INSERT INTO public.journals VALUES (6057, 1741, 'Issue', 13, NULL, '2020-08-12 09:27:15+07', false);
INSERT INTO public.journals VALUES (6058, 1795, 'Issue', 12, '', '2020-08-12 09:55:47+07', false);
INSERT INTO public.journals VALUES (6059, 1796, 'Issue', 12, '', '2020-08-12 09:55:47+07', false);
INSERT INTO public.journals VALUES (6060, 1797, 'Issue', 12, '', '2020-08-12 09:55:47+07', false);
INSERT INTO public.journals VALUES (6061, 1801, 'Issue', 12, '', '2020-08-12 09:55:48+07', false);
INSERT INTO public.journals VALUES (6062, 1403, 'Issue', 13, '', '2020-08-12 09:56:11+07', false);
INSERT INTO public.journals VALUES (6063, 1795, 'Issue', 12, NULL, '2020-08-12 09:57:14+07', false);
INSERT INTO public.journals VALUES (6064, 1795, 'Issue', 12, NULL, '2020-08-12 09:57:23+07', false);
INSERT INTO public.journals VALUES (6065, 1797, 'Issue', 12, '', '2020-08-12 09:57:57+07', false);
INSERT INTO public.journals VALUES (6066, 1799, 'Issue', 12, '', '2020-08-12 09:57:58+07', false);
INSERT INTO public.journals VALUES (6067, 1796, 'Issue', 12, '', '2020-08-12 09:59:12+07', false);
INSERT INTO public.journals VALUES (6068, 1796, 'Issue', 12, '', '2020-08-12 10:00:20+07', false);
INSERT INTO public.journals VALUES (6069, 1764, 'Issue', 12, NULL, '2020-08-12 10:01:01+07', false);
INSERT INTO public.journals VALUES (6070, 1764, 'Issue', 12, '', '2020-08-12 10:01:23+07', false);
INSERT INTO public.journals VALUES (6071, 1582, 'Issue', 19, '', '2020-08-12 10:43:50+07', false);
INSERT INTO public.journals VALUES (6072, 1708, 'Issue', 26, '', '2020-08-12 04:10:26+07', false);
INSERT INTO public.journals VALUES (6073, 1786, 'Issue', 9, '', '2020-08-12 04:20:37+07', false);
INSERT INTO public.journals VALUES (6074, 1793, 'Issue', 19, '', '2020-08-12 06:54:56+07', false);
INSERT INTO public.journals VALUES (6075, 1791, 'Issue', 19, '', '2020-08-12 07:24:41+07', false);
INSERT INTO public.journals VALUES (6076, 1739, 'Issue', 31, '', '2020-08-12 16:11:19+07', false);
INSERT INTO public.journals VALUES (6077, 1746, 'Issue', 35, '', '2020-08-12 16:43:39+07', false);
INSERT INTO public.journals VALUES (6078, 1803, 'Issue', 12, '', '2020-08-13 09:22:44+07', false);
INSERT INTO public.journals VALUES (6079, 1801, 'Issue', 12, NULL, '2020-08-13 09:23:14+07', false);
INSERT INTO public.journals VALUES (6080, 1804, 'Issue', 6, '', '2020-08-13 09:23:23+07', false);
INSERT INTO public.journals VALUES (6081, 1801, 'Issue', 12, NULL, '2020-08-13 09:23:24+07', false);
INSERT INTO public.journals VALUES (6083, 1798, 'Issue', 12, NULL, '2020-08-13 09:24:00+07', false);
INSERT INTO public.journals VALUES (6084, 1798, 'Issue', 12, '', '2020-08-13 09:25:37+07', false);
INSERT INTO public.journals VALUES (6085, 1817, 'Issue', 19, '', '2020-08-13 09:49:38+07', false);
INSERT INTO public.journals VALUES (6086, 1821, 'Issue', 13, '', '2020-08-13 10:19:40+07', false);
INSERT INTO public.journals VALUES (6087, 1822, 'Issue', 13, '', '2020-08-13 10:19:40+07', false);
INSERT INTO public.journals VALUES (6088, 1817, 'Issue', 19, '31: Liệt kê danh sách các trạm quan trắc vượt ngưỡng theo trạng thái của từng loại thông số của trạm quan trắc. ', '2020-08-13 10:33:35+07', false);
INSERT INTO public.journals VALUES (6089, 1803, 'Issue', 12, NULL, '2020-08-13 10:48:04+07', false);
INSERT INTO public.journals VALUES (6090, 1803, 'Issue', 12, NULL, '2020-08-13 10:48:12+07', false);
INSERT INTO public.journals VALUES (6091, 1824, 'Issue', 5, '', '2020-08-13 11:11:47+07', false);
INSERT INTO public.journals VALUES (6092, 1825, 'Issue', 5, '', '2020-08-13 11:11:47+07', false);
INSERT INTO public.journals VALUES (6093, 1692, 'Issue', 4, NULL, '2020-08-13 11:11:53+07', false);
INSERT INTO public.journals VALUES (6094, 1694, 'Issue', 4, NULL, '2020-08-13 11:11:57+07', false);
INSERT INTO public.journals VALUES (6095, 1828, 'Issue', 12, '', '2020-08-13 11:31:28+07', false);
INSERT INTO public.journals VALUES (6096, 1594, 'Issue', 12, NULL, '2020-08-13 14:40:52+07', false);
INSERT INTO public.journals VALUES (6097, 1594, 'Issue', 12, NULL, '2020-08-13 14:41:04+07', false);
INSERT INTO public.journals VALUES (6098, 1826, 'Issue', 4, NULL, '2020-08-13 15:23:14+07', false);
INSERT INTO public.journals VALUES (6099, 1827, 'Issue', 4, NULL, '2020-08-13 15:23:32+07', false);
INSERT INTO public.journals VALUES (6100, 1829, 'Issue', 4, NULL, '2020-08-13 15:23:52+07', false);
INSERT INTO public.journals VALUES (6101, 1831, 'Issue', 4, NULL, '2020-08-13 16:45:18+07', false);
INSERT INTO public.journals VALUES (6102, 1764, 'Issue', 12, '', '2020-08-13 16:58:46+07', false);
INSERT INTO public.journals VALUES (6103, 1748, 'Issue', 12, NULL, '2020-08-14 08:52:06+07', false);
INSERT INTO public.journals VALUES (6104, 1786, 'Issue', 12, NULL, '2020-08-14 08:52:14+07', false);
INSERT INTO public.journals VALUES (6105, 1748, 'Issue', 12, NULL, '2020-08-14 08:52:55+07', false);
INSERT INTO public.journals VALUES (6106, 1746, 'Issue', 35, '', '2020-08-14 09:08:20+07', false);
INSERT INTO public.journals VALUES (6107, 1707, 'Issue', 30, '
* 3/8
Hộp 21: 614 trang
Hộp 73: 42 trang
* 4/8
Hộp 61: 481 trang
Hộp 62: 443 trang
* 5/8
Hộp 76: 491 trang
Hộp 89: 71 trang
Hộp 155: 70 trang
* 6/8
Hộp 87: 896 trang
* 7/8
Hộp 164: 772 trang
* 10/8
Hộp 173: 709 trang
* 11/8
Hộp 184: 735
* 12/8
 Hộp 202: 822 trang
* 13/8
 Hộp 166: 537 trang
-> Tổng: 6683 trang

', '2020-08-14 09:21:24+07', false);
INSERT INTO public.journals VALUES (6108, 1707, 'Issue', 30, NULL, '2020-08-14 09:21:56+07', false);
INSERT INTO public.journals VALUES (6109, 941, 'Issue', 5, '', '2020-08-14 09:52:27+07', false);
INSERT INTO public.journals VALUES (6110, 979, 'Issue', 5, '', '2020-08-14 09:52:28+07', false);
INSERT INTO public.journals VALUES (6111, 983, 'Issue', 5, '', '2020-08-14 09:52:28+07', false);
INSERT INTO public.journals VALUES (6112, 1675, 'Issue', 5, '', '2020-08-14 09:52:28+07', false);
INSERT INTO public.journals VALUES (6113, 1676, 'Issue', 5, '', '2020-08-14 09:52:28+07', false);
INSERT INTO public.journals VALUES (6114, 1677, 'Issue', 5, '', '2020-08-14 09:52:59+07', false);
INSERT INTO public.journals VALUES (6115, 989, 'Issue', 5, '', '2020-08-14 09:52:59+07', false);
INSERT INTO public.journals VALUES (6116, 988, 'Issue', 5, NULL, '2020-08-14 09:53:22+07', false);
INSERT INTO public.journals VALUES (6117, 936, 'Issue', 5, NULL, '2020-08-14 09:53:28+07', false);
INSERT INTO public.journals VALUES (6118, 973, 'Issue', 5, '', '2020-08-14 09:53:57+07', false);
INSERT INTO public.journals VALUES (6119, 974, 'Issue', 5, '', '2020-08-14 09:53:57+07', false);
INSERT INTO public.journals VALUES (6120, 976, 'Issue', 5, '', '2020-08-14 09:53:57+07', false);
INSERT INTO public.journals VALUES (6121, 977, 'Issue', 5, '', '2020-08-14 09:53:57+07', false);
INSERT INTO public.journals VALUES (6122, 978, 'Issue', 5, '', '2020-08-14 09:53:57+07', false);
INSERT INTO public.journals VALUES (6123, 980, 'Issue', 5, '', '2020-08-14 09:53:57+07', false);
INSERT INTO public.journals VALUES (6124, 981, 'Issue', 5, '', '2020-08-14 09:53:57+07', false);
INSERT INTO public.journals VALUES (6125, 982, 'Issue', 5, '', '2020-08-14 09:53:57+07', false);
INSERT INTO public.journals VALUES (6126, 984, 'Issue', 5, '', '2020-08-14 09:53:58+07', false);
INSERT INTO public.journals VALUES (6127, 985, 'Issue', 5, '', '2020-08-14 09:53:58+07', false);
INSERT INTO public.journals VALUES (6128, 986, 'Issue', 5, '', '2020-08-14 09:53:58+07', false);
INSERT INTO public.journals VALUES (6129, 987, 'Issue', 5, '', '2020-08-14 09:53:58+07', false);
INSERT INTO public.journals VALUES (6130, 990, 'Issue', 5, '', '2020-08-14 09:53:58+07', false);
INSERT INTO public.journals VALUES (6131, 991, 'Issue', 5, '', '2020-08-14 09:53:58+07', false);
INSERT INTO public.journals VALUES (6132, 992, 'Issue', 5, '', '2020-08-14 09:53:58+07', false);
INSERT INTO public.journals VALUES (6133, 994, 'Issue', 5, '', '2020-08-14 09:53:59+07', false);
INSERT INTO public.journals VALUES (6134, 996, 'Issue', 5, '', '2020-08-14 09:53:59+07', false);
INSERT INTO public.journals VALUES (6135, 997, 'Issue', 5, '', '2020-08-14 09:53:59+07', false);
INSERT INTO public.journals VALUES (6136, 998, 'Issue', 5, '', '2020-08-14 09:53:59+07', false);
INSERT INTO public.journals VALUES (6137, 999, 'Issue', 5, '', '2020-08-14 09:53:59+07', false);
INSERT INTO public.journals VALUES (6138, 974, 'Issue', 5, '', '2020-08-14 09:55:16+07', false);
INSERT INTO public.journals VALUES (6139, 976, 'Issue', 5, '', '2020-08-14 09:55:16+07', false);
INSERT INTO public.journals VALUES (6140, 977, 'Issue', 5, '', '2020-08-14 09:55:16+07', false);
INSERT INTO public.journals VALUES (6141, 989, 'Issue', 5, '', '2020-08-14 09:55:16+07', false);
INSERT INTO public.journals VALUES (6142, 1677, 'Issue', 5, '', '2020-08-14 09:55:17+07', false);
INSERT INTO public.journals VALUES (6143, 978, 'Issue', 5, '', '2020-08-14 09:56:01+07', false);
INSERT INTO public.journals VALUES (6144, 980, 'Issue', 5, '', '2020-08-14 09:56:01+07', false);
INSERT INTO public.journals VALUES (6145, 981, 'Issue', 5, '', '2020-08-14 09:56:01+07', false);
INSERT INTO public.journals VALUES (6146, 984, 'Issue', 5, '', '2020-08-14 09:56:01+07', false);
INSERT INTO public.journals VALUES (6147, 986, 'Issue', 5, '', '2020-08-14 09:56:29+07', false);
INSERT INTO public.journals VALUES (6148, 987, 'Issue', 5, '', '2020-08-14 09:56:29+07', false);
INSERT INTO public.journals VALUES (6149, 991, 'Issue', 5, '', '2020-08-14 09:56:44+07', false);
INSERT INTO public.journals VALUES (6150, 992, 'Issue', 5, '', '2020-08-14 09:56:44+07', false);
INSERT INTO public.journals VALUES (6151, 994, 'Issue', 5, '', '2020-08-14 09:56:44+07', false);
INSERT INTO public.journals VALUES (6152, 996, 'Issue', 5, '', '2020-08-14 09:57:11+07', false);
INSERT INTO public.journals VALUES (6153, 997, 'Issue', 5, '', '2020-08-14 09:57:11+07', false);
INSERT INTO public.journals VALUES (6154, 998, 'Issue', 5, '', '2020-08-14 09:57:11+07', false);
INSERT INTO public.journals VALUES (6155, 989, 'Issue', 5, '', '2020-08-14 09:57:44+07', false);
INSERT INTO public.journals VALUES (6156, 999, 'Issue', 5, '', '2020-08-14 09:57:44+07', false);
INSERT INTO public.journals VALUES (6157, 1677, 'Issue', 5, '', '2020-08-14 09:57:44+07', false);
INSERT INTO public.journals VALUES (6158, 984, 'Issue', 5, '', '2020-08-14 09:58:04+07', false);
INSERT INTO public.journals VALUES (6159, 982, 'Issue', 5, NULL, '2020-08-14 09:58:15+07', false);
INSERT INTO public.journals VALUES (6160, 974, 'Issue', 5, '', '2020-08-14 09:58:31+07', false);
INSERT INTO public.journals VALUES (6161, 976, 'Issue', 5, '', '2020-08-14 09:58:32+07', false);
INSERT INTO public.journals VALUES (6162, 977, 'Issue', 5, '', '2020-08-14 09:58:32+07', false);
INSERT INTO public.journals VALUES (6163, 978, 'Issue', 5, '', '2020-08-14 09:58:32+07', false);
INSERT INTO public.journals VALUES (6164, 980, 'Issue', 5, '', '2020-08-14 09:58:32+07', false);
INSERT INTO public.journals VALUES (6165, 981, 'Issue', 5, '', '2020-08-14 09:58:32+07', false);
INSERT INTO public.journals VALUES (6166, 973, 'Issue', 5, NULL, '2020-08-14 09:58:48+07', false);
INSERT INTO public.journals VALUES (6167, 973, 'Issue', 5, NULL, '2020-08-14 09:59:28+07', false);
INSERT INTO public.journals VALUES (6168, 982, 'Issue', 5, NULL, '2020-08-14 09:59:28+07', false);
INSERT INTO public.journals VALUES (6169, 995, 'Issue', 5, NULL, '2020-08-14 10:25:02+07', false);
INSERT INTO public.journals VALUES (6170, 1789, 'Issue', 5, NULL, '2020-08-14 10:25:02+07', false);
INSERT INTO public.journals VALUES (6171, 995, 'Issue', 5, '', '2020-08-14 10:25:22+07', false);
INSERT INTO public.journals VALUES (6172, 1789, 'Issue', 5, '', '2020-08-14 10:25:22+07', false);
INSERT INTO public.journals VALUES (6173, 1833, 'Issue', 5, NULL, '2020-08-14 10:25:57+07', false);
INSERT INTO public.journals VALUES (6174, 1611, 'Issue', 12, '', '2020-08-14 10:30:55+07', false);
INSERT INTO public.journals VALUES (6175, 1611, 'Issue', 12, '', '2020-08-14 10:31:10+07', false);
INSERT INTO public.journals VALUES (6176, 965, 'Issue', 13, NULL, '2020-08-14 10:37:30+07', false);
INSERT INTO public.journals VALUES (6177, 966, 'Issue', 13, NULL, '2020-08-14 10:37:30+07', false);
INSERT INTO public.journals VALUES (6178, 1416, 'Issue', 13, NULL, '2020-08-14 10:37:31+07', false);
INSERT INTO public.journals VALUES (6179, 1426, 'Issue', 13, NULL, '2020-08-14 10:37:31+07', false);
INSERT INTO public.journals VALUES (6180, 1689, 'Issue', 13, NULL, '2020-08-14 10:37:31+07', false);
INSERT INTO public.journals VALUES (6181, 1690, 'Issue', 13, NULL, '2020-08-14 10:37:31+07', false);
INSERT INTO public.journals VALUES (6182, 1696, 'Issue', 13, NULL, '2020-08-14 10:37:31+07', false);
INSERT INTO public.journals VALUES (6183, 1738, 'Issue', 13, NULL, '2020-08-14 10:37:31+07', false);
INSERT INTO public.journals VALUES (6184, 1745, 'Issue', 13, NULL, '2020-08-14 10:37:31+07', false);
INSERT INTO public.journals VALUES (6185, 1752, 'Issue', 13, NULL, '2020-08-14 10:37:31+07', false);
INSERT INTO public.journals VALUES (6186, 1753, 'Issue', 13, NULL, '2020-08-14 10:37:31+07', false);
INSERT INTO public.journals VALUES (6187, 1754, 'Issue', 13, NULL, '2020-08-14 10:37:31+07', false);
INSERT INTO public.journals VALUES (6188, 1785, 'Issue', 13, NULL, '2020-08-14 10:37:32+07', false);
INSERT INTO public.journals VALUES (6189, 1821, 'Issue', 13, '', '2020-08-14 10:38:47+07', false);
INSERT INTO public.journals VALUES (6190, 1822, 'Issue', 13, '', '2020-08-14 10:38:47+07', false);
INSERT INTO public.journals VALUES (6191, 1823, 'Issue', 13, '', '2020-08-14 10:38:47+07', false);
INSERT INTO public.journals VALUES (6192, 1677, 'Issue', 12, '', '2020-08-14 10:43:41+07', false);
INSERT INTO public.journals VALUES (6193, 1834, 'Issue', 13, '', '2020-08-14 10:44:42+07', false);
INSERT INTO public.journals VALUES (6194, 1738, 'Issue', 12, '', '2020-08-14 10:48:54+07', false);
INSERT INTO public.journals VALUES (6195, 1835, 'Issue', 19, '', '2020-08-14 10:57:19+07', false);
INSERT INTO public.journals VALUES (6196, 1416, 'Issue', 12, '', '2020-08-14 11:03:08+07', false);
INSERT INTO public.journals VALUES (6197, 1836, 'Issue', 12, '', '2020-08-14 11:04:08+07', false);
INSERT INTO public.journals VALUES (6198, 1837, 'Issue', 12, '', '2020-08-14 11:04:08+07', false);
INSERT INTO public.journals VALUES (6199, 1838, 'Issue', 12, '', '2020-08-14 11:04:08+07', false);
INSERT INTO public.journals VALUES (6200, 1775, 'Issue', 4, NULL, '2020-08-14 11:18:41+07', false);
INSERT INTO public.journals VALUES (6201, 1730, 'Issue', 4, NULL, '2020-08-14 11:21:31+07', false);
INSERT INTO public.journals VALUES (6202, 1745, 'Issue', 4, NULL, '2020-08-14 11:22:39+07', false);
INSERT INTO public.journals VALUES (6203, 1752, 'Issue', 4, NULL, '2020-08-14 11:44:40+07', false);
INSERT INTO public.journals VALUES (6204, 1750, 'Issue', 4, NULL, '2020-08-14 11:45:09+07', false);
INSERT INTO public.journals VALUES (6205, 1775, 'Issue', 4, NULL, '2020-08-14 13:40:50+07', false);
INSERT INTO public.journals VALUES (6206, 1752, 'Issue', 4, NULL, '2020-08-14 13:52:16+07', false);
INSERT INTO public.journals VALUES (6207, 1750, 'Issue', 4, NULL, '2020-08-14 14:07:02+07', false);
INSERT INTO public.journals VALUES (6208, 1730, 'Issue', 4, NULL, '2020-08-14 16:02:41+07', false);
INSERT INTO public.journals VALUES (6209, 1841, 'Issue', 29, NULL, '2020-08-14 16:03:56+07', false);
INSERT INTO public.journals VALUES (6210, 1743, 'Issue', 4, NULL, '2020-08-14 16:17:06+07', false);
INSERT INTO public.journals VALUES (6211, 1743, 'Issue', 4, NULL, '2020-08-14 16:17:18+07', false);
INSERT INTO public.journals VALUES (6212, 1730, 'Issue', 4, NULL, '2020-08-14 16:17:46+07', false);
INSERT INTO public.journals VALUES (6213, 1743, 'Issue', 4, NULL, '2020-08-14 16:17:46+07', false);
INSERT INTO public.journals VALUES (6214, 1752, 'Issue', 4, NULL, '2020-08-14 16:17:46+07', false);
INSERT INTO public.journals VALUES (6215, 1826, 'Issue', 4, NULL, '2020-08-14 16:17:46+07', false);
INSERT INTO public.journals VALUES (6216, 1827, 'Issue', 4, NULL, '2020-08-14 16:17:47+07', false);
INSERT INTO public.journals VALUES (6217, 1831, 'Issue', 4, NULL, '2020-08-14 16:17:47+07', false);
INSERT INTO public.journals VALUES (6218, 1689, 'Issue', 12, '', '2020-08-14 16:55:33+07', false);
INSERT INTO public.journals VALUES (6219, 1377, 'Issue', 17, NULL, '2020-08-15 07:46:15+07', false);
INSERT INTO public.journals VALUES (6220, 1376, 'Issue', 17, 'Chưa có api hiển thị người trả giá thành công', '2020-08-15 07:47:12+07', false);
INSERT INTO public.journals VALUES (6221, 1381, 'Issue', 17, NULL, '2020-08-15 07:47:53+07', false);
INSERT INTO public.journals VALUES (6222, 1830, 'Issue', 5, '', '2020-08-15 07:49:17+07', false);
INSERT INTO public.journals VALUES (6223, 1057, 'Issue', 17, 'Chưa có api', '2020-08-15 08:04:06+07', false);
INSERT INTO public.journals VALUES (6224, 1787, 'Issue', 9, '', '2020-08-15 08:18:51+07', false);
INSERT INTO public.journals VALUES (6225, 1788, 'Issue', 9, '', '2020-08-15 08:20:26+07', false);
INSERT INTO public.journals VALUES (6226, 1817, 'Issue', 19, '', '2020-08-15 09:29:15+07', false);
INSERT INTO public.journals VALUES (6227, 1835, 'Issue', 19, '', '2020-08-15 09:30:45+07', false);
INSERT INTO public.journals VALUES (6228, 1845, 'Issue', 12, '', '2020-08-15 09:32:37+07', false);
INSERT INTO public.journals VALUES (6229, 1668, 'Issue', 19, '', '2020-08-15 10:06:39+07', false);
INSERT INTO public.journals VALUES (6230, 1668, 'Issue', 19, '', '2020-08-15 10:06:50+07', false);
INSERT INTO public.journals VALUES (6231, 1373, 'Issue', 17, 'Chức năng thêm vào giỏ hàng thiếu thông tin donViTinhUuid,productPortfolioUuid,totalVAT
1. API trả về thêm dữ liệu
2. Khi bấm vào nút thêm vào giỏ hàng thì gọi api lấy thêm dữ liệu', '2020-08-15 10:07:12+07', false);
INSERT INTO public.journals VALUES (6232, 1668, 'Issue', 19, '', '2020-08-15 10:07:56+07', false);
INSERT INTO public.journals VALUES (6233, 1380, 'Issue', 17, NULL, '2020-08-15 10:17:11+07', false);
INSERT INTO public.journals VALUES (6234, 1069, 'Issue', 17, NULL, '2020-08-15 10:21:06+07', false);
INSERT INTO public.journals VALUES (6235, 1370, 'Issue', 17, 'Cần trao đổi lại với Viettel', '2020-08-15 10:23:26+07', false);
INSERT INTO public.journals VALUES (6236, 1373, 'Issue', 17, '50%
Thiếu dữ liệu nút Thêm vào giỏ hàng: portfolioUuid,doiViTinhUuid,totalVAT
Giải quyết :
1. api trả về thêm dữ liệu
2. khi bấm nút thì gọi api để lấy dữ liệu', '2020-08-15 03:25:26+07', false);
INSERT INTO public.journals VALUES (6237, 1061, 'Issue', 17, NULL, '2020-08-15 03:25:45+07', false);
INSERT INTO public.journals VALUES (6238, 1059, 'Issue', 17, NULL, '2020-08-15 03:26:17+07', false);
INSERT INTO public.journals VALUES (6239, 1058, 'Issue', 17, NULL, '2020-08-15 03:28:40+07', false);
INSERT INTO public.journals VALUES (6240, 1209, 'Issue', 17, NULL, '2020-08-15 03:29:11+07', false);
INSERT INTO public.journals VALUES (6241, 1611, 'Issue', 12, '', '2020-08-15 10:35:03+07', false);
INSERT INTO public.journals VALUES (6242, 1087, 'Issue', 17, 'Chức năng này cần có 2 mốc giá, tuy nhiên lúc đầu chỉ có 1 mốc, sau khi sửa thì chưa phê duyệt phiên trả giá được nên chưa thực hiện được', '2020-08-15 10:45:47+07', false);
INSERT INTO public.journals VALUES (6243, 1089, 'Issue', 17, NULL, '2020-08-15 10:48:15+07', false);
INSERT INTO public.journals VALUES (6244, 1054, 'Issue', 17, NULL, '2020-08-15 10:54:07+07', false);
INSERT INTO public.journals VALUES (6245, 1055, 'Issue', 17, NULL, '2020-08-15 10:54:07+07', false);
INSERT INTO public.journals VALUES (6246, 1056, 'Issue', 17, NULL, '2020-08-15 10:54:08+07', false);
INSERT INTO public.journals VALUES (6247, 1058, 'Issue', 17, NULL, '2020-08-15 10:54:08+07', false);
INSERT INTO public.journals VALUES (6248, 1059, 'Issue', 17, NULL, '2020-08-15 10:54:08+07', false);
INSERT INTO public.journals VALUES (6249, 1068, 'Issue', 17, NULL, '2020-08-15 10:54:08+07', false);
INSERT INTO public.journals VALUES (6250, 1061, 'Issue', 17, NULL, '2020-08-15 10:54:08+07', false);
INSERT INTO public.journals VALUES (6251, 1062, 'Issue', 17, NULL, '2020-08-15 10:54:09+07', false);
INSERT INTO public.journals VALUES (6252, 1063, 'Issue', 17, NULL, '2020-08-15 10:54:09+07', false);
INSERT INTO public.journals VALUES (6253, 1064, 'Issue', 17, NULL, '2020-08-15 10:54:09+07', false);
INSERT INTO public.journals VALUES (6254, 1065, 'Issue', 17, NULL, '2020-08-15 10:54:09+07', false);
INSERT INTO public.journals VALUES (6255, 1100, 'Issue', 17, NULL, '2020-08-15 10:54:09+07', false);
INSERT INTO public.journals VALUES (6256, 1206, 'Issue', 17, NULL, '2020-08-15 10:54:09+07', false);
INSERT INTO public.journals VALUES (6257, 1207, 'Issue', 17, NULL, '2020-08-15 10:54:10+07', false);
INSERT INTO public.journals VALUES (6258, 1209, 'Issue', 17, NULL, '2020-08-15 10:54:10+07', false);
INSERT INTO public.journals VALUES (6259, 1067, 'Issue', 17, NULL, '2020-08-15 10:54:10+07', false);
INSERT INTO public.journals VALUES (6260, 1069, 'Issue', 17, NULL, '2020-08-15 10:54:10+07', false);
INSERT INTO public.journals VALUES (6261, 1072, 'Issue', 17, NULL, '2020-08-15 10:54:10+07', false);
INSERT INTO public.journals VALUES (6262, 1073, 'Issue', 17, NULL, '2020-08-15 10:54:10+07', false);
INSERT INTO public.journals VALUES (6263, 1075, 'Issue', 17, NULL, '2020-08-15 10:54:10+07', false);
INSERT INTO public.journals VALUES (6264, 1076, 'Issue', 17, NULL, '2020-08-15 10:54:10+07', false);
INSERT INTO public.journals VALUES (6265, 1078, 'Issue', 17, NULL, '2020-08-15 10:54:11+07', false);
INSERT INTO public.journals VALUES (6266, 1083, 'Issue', 17, NULL, '2020-08-15 10:54:11+07', false);
INSERT INTO public.journals VALUES (6267, 1088, 'Issue', 17, NULL, '2020-08-15 10:54:11+07', false);
INSERT INTO public.journals VALUES (6268, 1104, 'Issue', 17, NULL, '2020-08-15 10:54:11+07', false);
INSERT INTO public.journals VALUES (6269, 1197, 'Issue', 17, NULL, '2020-08-15 10:54:11+07', false);
INSERT INTO public.journals VALUES (6270, 1298, 'Issue', 17, NULL, '2020-08-15 10:54:11+07', false);
INSERT INTO public.journals VALUES (6271, 1372, 'Issue', 17, NULL, '2020-08-15 10:54:11+07', false);
INSERT INTO public.journals VALUES (6272, 1375, 'Issue', 17, NULL, '2020-08-15 10:54:12+07', false);
INSERT INTO public.journals VALUES (6273, 1379, 'Issue', 17, NULL, '2020-08-15 10:54:12+07', false);
INSERT INTO public.journals VALUES (6274, 1380, 'Issue', 17, NULL, '2020-08-15 10:54:12+07', false);
INSERT INTO public.journals VALUES (6275, 1382, 'Issue', 17, NULL, '2020-08-15 10:54:12+07', false);
INSERT INTO public.journals VALUES (6276, 1383, 'Issue', 17, NULL, '2020-08-15 10:54:12+07', false);
INSERT INTO public.journals VALUES (6277, 1385, 'Issue', 17, NULL, '2020-08-15 10:54:13+07', false);
INSERT INTO public.journals VALUES (6278, 1089, 'Issue', 17, NULL, '2020-08-15 10:54:13+07', false);
INSERT INTO public.journals VALUES (6279, 1110, 'Issue', 17, NULL, '2020-08-15 10:54:13+07', false);
INSERT INTO public.journals VALUES (6280, 1113, 'Issue', 17, NULL, '2020-08-15 10:54:13+07', false);
INSERT INTO public.journals VALUES (6281, 1200, 'Issue', 17, NULL, '2020-08-15 10:54:13+07', false);
INSERT INTO public.journals VALUES (6282, 1348, 'Issue', 17, NULL, '2020-08-15 10:54:13+07', false);
INSERT INTO public.journals VALUES (6283, 1371, 'Issue', 17, NULL, '2020-08-15 10:54:13+07', false);
INSERT INTO public.journals VALUES (6284, 1378, 'Issue', 17, NULL, '2020-08-15 10:54:13+07', false);
INSERT INTO public.journals VALUES (6285, 1296, 'Issue', 17, NULL, '2020-08-15 10:54:56+07', false);
INSERT INTO public.journals VALUES (6286, 1554, 'Issue', 19, '', '2020-08-15 10:55:18+07', false);
INSERT INTO public.journals VALUES (6287, 1086, 'Issue', 17, NULL, '2020-08-15 11:17:12+07', false);
INSERT INTO public.journals VALUES (6288, 1097, 'Issue', 17, NULL, '2020-08-15 11:18:13+07', false);
INSERT INTO public.journals VALUES (6289, 1090, 'Issue', 17, NULL, '2020-08-15 11:18:38+07', false);
INSERT INTO public.journals VALUES (6290, 1099, 'Issue', 17, NULL, '2020-08-15 11:18:53+07', false);
INSERT INTO public.journals VALUES (6291, 1095, 'Issue', 17, 'Đối tác thanh toán chỉ cho thanh toán 1 lần 1 sản phẩm', '2020-08-15 11:20:12+07', false);
INSERT INTO public.journals VALUES (6292, 1384, 'Issue', 17, NULL, '2020-08-15 11:21:50+07', false);
INSERT INTO public.journals VALUES (6293, 1077, 'Issue', 17, NULL, '2020-08-15 11:22:38+07', false);
INSERT INTO public.journals VALUES (6294, 1753, 'Issue', 12, NULL, '2020-08-15 14:38:33+07', false);
INSERT INTO public.journals VALUES (6295, 1753, 'Issue', 12, NULL, '2020-08-15 14:38:39+07', false);
INSERT INTO public.journals VALUES (6296, 1844, 'Issue', 8, NULL, '2020-08-15 14:41:12+07', false);
INSERT INTO public.journals VALUES (6297, 1844, 'Issue', 8, NULL, '2020-08-15 14:41:17+07', false);
INSERT INTO public.journals VALUES (6298, 968, 'Issue', 12, NULL, '2020-08-15 14:41:31+07', false);
INSERT INTO public.journals VALUES (6299, 1690, 'Issue', 12, NULL, '2020-08-15 14:41:44+07', false);
INSERT INTO public.journals VALUES (6300, 1690, 'Issue', 12, NULL, '2020-08-15 14:41:48+07', false);
INSERT INTO public.journals VALUES (6301, 1751, 'Issue', 12, NULL, '2020-08-15 14:44:39+07', false);
INSERT INTO public.journals VALUES (6302, 1727, 'Issue', 12, 'http://localhost:4200/home
Chức năng tìm kiếm kcn, ccn trong trang home', '2020-08-15 14:51:29+07', false);
INSERT INTO public.journals VALUES (6303, 1727, 'Issue', 12, NULL, '2020-08-15 14:51:46+07', false);
INSERT INTO public.journals VALUES (6304, 966, 'Issue', 12, NULL, '2020-08-15 14:52:09+07', false);
INSERT INTO public.journals VALUES (6305, 966, 'Issue', 12, NULL, '2020-08-15 14:52:23+07', false);
INSERT INTO public.journals VALUES (6306, 1754, 'Issue', 12, '', '2020-08-15 14:54:22+07', false);
INSERT INTO public.journals VALUES (6307, 1696, 'Issue', 12, NULL, '2020-08-15 14:58:42+07', false);
INSERT INTO public.journals VALUES (6308, 1785, 'Issue', 12, NULL, '2020-08-15 14:58:54+07', false);
INSERT INTO public.journals VALUES (6309, 1744, 'Issue', 12, NULL, '2020-08-15 14:59:14+07', false);
INSERT INTO public.journals VALUES (6310, 1800, 'Issue', 12, NULL, '2020-08-15 14:59:38+07', false);
INSERT INTO public.journals VALUES (6311, 965, 'Issue', 12, NULL, '2020-08-15 16:34:25+07', false);
INSERT INTO public.journals VALUES (6312, 965, 'Issue', 12, NULL, '2020-08-15 16:34:35+07', false);
INSERT INTO public.journals VALUES (6313, 1787, 'Issue', 9, '', '2020-08-15 16:35:29+07', false);
INSERT INTO public.journals VALUES (6314, 1851, 'Issue', 19, '', '2020-08-15 16:36:14+07', false);
INSERT INTO public.journals VALUES (6315, 1846, 'Issue', 19, '', '2020-08-15 16:46:00+07', false);
INSERT INTO public.journals VALUES (6316, 1852, 'Issue', 19, '', '2020-08-15 16:50:40+07', false);
INSERT INTO public.journals VALUES (6317, 1807, 'Issue', 14, NULL, '2020-08-17 07:57:04+07', false);
INSERT INTO public.journals VALUES (6318, 1833, 'Issue', 13, NULL, '2020-08-17 08:15:52+07', false);
INSERT INTO public.journals VALUES (6319, 1834, 'Issue', 13, NULL, '2020-08-17 08:15:52+07', false);
INSERT INTO public.journals VALUES (6320, 1833, 'Issue', 13, NULL, '2020-08-17 08:15:57+07', false);
INSERT INTO public.journals VALUES (6321, 1834, 'Issue', 13, NULL, '2020-08-17 08:15:58+07', false);
INSERT INTO public.journals VALUES (6322, 974, 'Issue', 12, NULL, '2020-08-17 08:31:58+07', false);
INSERT INTO public.journals VALUES (6323, 976, 'Issue', 12, NULL, '2020-08-17 08:31:58+07', false);
INSERT INTO public.journals VALUES (6324, 977, 'Issue', 12, NULL, '2020-08-17 08:31:59+07', false);
INSERT INTO public.journals VALUES (6325, 978, 'Issue', 12, NULL, '2020-08-17 08:36:36+07', false);
INSERT INTO public.journals VALUES (6326, 980, 'Issue', 12, 'Nguyễn Thị Thu Hà đã viết:
> + Giấy phép xây dựng: Số, ngày cấp, file đính kèm.
> + Giấy kiểm định: Số/thông báo, ngày cấp, file đính kèm.

', '2020-08-17 08:41:40+07', false);
INSERT INTO public.journals VALUES (6327, 976, 'Issue', 12, '', '2020-08-17 08:48:09+07', false);
INSERT INTO public.journals VALUES (6328, 977, 'Issue', 12, '', '2020-08-17 08:50:11+07', false);
INSERT INTO public.journals VALUES (6329, 981, 'Issue', 12, '', '2020-08-17 08:52:16+07', false);
INSERT INTO public.journals VALUES (6330, 984, 'Issue', 12, '', '2020-08-17 08:55:19+07', false);
INSERT INTO public.journals VALUES (6331, 986, 'Issue', 12, '', '2020-08-17 08:57:14+07', false);
INSERT INTO public.journals VALUES (6332, 987, 'Issue', 12, NULL, '2020-08-17 08:59:51+07', false);
INSERT INTO public.journals VALUES (6333, 992, 'Issue', 12, '', '2020-08-17 09:03:25+07', false);
INSERT INTO public.journals VALUES (6334, 997, 'Issue', 12, '', '2020-08-17 09:07:33+07', false);
INSERT INTO public.journals VALUES (6335, 991, 'Issue', 12, NULL, '2020-08-17 09:14:39+07', false);
INSERT INTO public.journals VALUES (6336, 980, 'Issue', 12, NULL, '2020-08-17 09:15:05+07', false);
INSERT INTO public.journals VALUES (6337, 999, 'Issue', 12, NULL, '2020-08-17 09:18:54+07', false);
INSERT INTO public.journals VALUES (6338, 981, 'Issue', 12, NULL, '2020-08-17 09:19:19+07', false);
INSERT INTO public.journals VALUES (6339, 984, 'Issue', 12, NULL, '2020-08-17 09:20:19+07', false);
INSERT INTO public.journals VALUES (6340, 986, 'Issue', 12, NULL, '2020-08-17 09:21:19+07', false);
INSERT INTO public.journals VALUES (6341, 992, 'Issue', 12, NULL, '2020-08-17 09:22:32+07', false);
INSERT INTO public.journals VALUES (6342, 997, 'Issue', 12, NULL, '2020-08-17 09:30:46+07', false);
INSERT INTO public.journals VALUES (6343, 998, 'Issue', 12, NULL, '2020-08-17 09:30:54+07', false);
INSERT INTO public.journals VALUES (6344, 974, 'Issue', 12, NULL, '2020-08-17 09:31:43+07', false);
INSERT INTO public.journals VALUES (6345, 1854, 'Issue', 12, '', '2020-08-17 09:32:47+07', false);
INSERT INTO public.journals VALUES (6346, 1854, 'Issue', 5, '', '2020-08-17 10:47:46+07', false);
INSERT INTO public.journals VALUES (6347, 989, 'Issue', 5, '', '2020-08-17 10:48:17+07', false);
INSERT INTO public.journals VALUES (6348, 1852, 'Issue', 19, '', '2020-08-17 13:14:51+07', false);
INSERT INTO public.journals VALUES (6349, 1835, 'Issue', 19, '', '2020-08-17 13:16:29+07', false);
INSERT INTO public.journals VALUES (6350, 1670, 'Issue', 19, '', '2020-08-17 14:12:06+07', false);
INSERT INTO public.journals VALUES (6351, 1855, 'Issue', 19, '', '2020-08-17 14:14:41+07', false);
INSERT INTO public.journals VALUES (6352, 1787, 'Issue', 9, NULL, '2020-08-17 15:29:58+07', false);
INSERT INTO public.journals VALUES (6353, 1788, 'Issue', 9, '', '2020-08-17 15:31:45+07', false);
INSERT INTO public.journals VALUES (6354, 1789, 'Issue', 9, '', '2020-08-17 15:32:17+07', false);
INSERT INTO public.journals VALUES (6355, 1677, 'Issue', 10, NULL, '2020-08-17 17:08:10+07', false);
INSERT INTO public.journals VALUES (6356, 989, 'Issue', 4, NULL, '2020-08-17 17:08:38+07', false);
INSERT INTO public.journals VALUES (6357, 989, 'Issue', 4, NULL, '2020-08-17 17:08:48+07', false);
INSERT INTO public.journals VALUES (6358, 976, 'Issue', 12, NULL, '2020-08-17 17:09:44+07', false);
INSERT INTO public.journals VALUES (6359, 976, 'Issue', 12, NULL, '2020-08-17 17:09:51+07', false);
INSERT INTO public.journals VALUES (6360, 1746, 'Issue', 35, '', '2020-08-18 07:52:29+07', false);
INSERT INTO public.journals VALUES (6361, 977, 'Issue', 12, '', '2020-08-18 08:10:48+07', false);
INSERT INTO public.journals VALUES (6362, 1854, 'Issue', 12, '', '2020-08-18 08:10:48+07', false);
INSERT INTO public.journals VALUES (6363, 981, 'Issue', 12, '', '2020-08-18 08:12:21+07', false);
INSERT INTO public.journals VALUES (6364, 984, 'Issue', 12, '', '2020-08-18 08:12:38+07', false);
INSERT INTO public.journals VALUES (6365, 1854, 'Issue', 12, '', '2020-08-18 08:13:00+07', false);
INSERT INTO public.journals VALUES (6366, 1677, 'Issue', 10, NULL, '2020-08-18 08:16:21+07', false);
INSERT INTO public.journals VALUES (6367, 1677, 'Issue', 10, NULL, '2020-08-18 08:16:27+07', false);
INSERT INTO public.journals VALUES (6368, 1856, 'Issue', 13, '', '2020-08-18 08:16:51+07', false);
INSERT INTO public.journals VALUES (6369, 1857, 'Issue', 13, '', '2020-08-18 08:16:51+07', false);
INSERT INTO public.journals VALUES (6370, 1858, 'Issue', 13, '', '2020-08-18 08:16:51+07', false);
INSERT INTO public.journals VALUES (6371, 1859, 'Issue', 13, '', '2020-08-18 08:16:52+07', false);
INSERT INTO public.journals VALUES (6372, 1848, 'Issue', 13, '', '2020-08-18 08:17:40+07', false);
INSERT INTO public.journals VALUES (6373, 1849, 'Issue', 13, '', '2020-08-18 08:17:40+07', false);
INSERT INTO public.journals VALUES (6374, 1850, 'Issue', 13, '', '2020-08-18 08:17:40+07', false);
INSERT INTO public.journals VALUES (6375, 1847, 'Issue', 13, '', '2020-08-18 08:18:01+07', false);
INSERT INTO public.journals VALUES (6376, 1855, 'Issue', 5, NULL, '2020-08-18 08:38:55+07', false);
INSERT INTO public.journals VALUES (6377, 1846, 'Issue', 5, NULL, '2020-08-18 08:38:55+07', false);
INSERT INTO public.journals VALUES (6378, 1851, 'Issue', 5, NULL, '2020-08-18 08:38:55+07', false);
INSERT INTO public.journals VALUES (6379, 1852, 'Issue', 5, NULL, '2020-08-18 08:38:55+07', false);
INSERT INTO public.journals VALUES (6380, 1860, 'Issue', 9, '', '2020-08-18 09:44:48+07', false);
INSERT INTO public.journals VALUES (6381, 1863, 'Issue', 9, '', '2020-08-18 09:49:08+07', false);
INSERT INTO public.journals VALUES (6382, 1860, 'Issue', 9, '', '2020-08-18 10:13:50+07', false);
INSERT INTO public.journals VALUES (6383, 1869, 'Issue', 9, '', '2020-08-18 10:14:23+07', false);
INSERT INTO public.journals VALUES (6384, 1868, 'Issue', 9, '', '2020-08-18 10:14:41+07', false);
INSERT INTO public.journals VALUES (6385, 1667, 'Issue', 8, NULL, '2020-08-18 10:15:46+07', false);
INSERT INTO public.journals VALUES (6386, 1667, 'Issue', 8, NULL, '2020-08-18 10:15:51+07', false);
INSERT INTO public.journals VALUES (6387, 1867, 'Issue', 12, NULL, '2020-08-18 10:22:37+07', false);
INSERT INTO public.journals VALUES (6388, 1867, 'Issue', 12, NULL, '2020-08-18 10:22:46+07', false);
INSERT INTO public.journals VALUES (6389, 977, 'Issue', 12, '', '2020-08-18 10:23:03+07', false);
INSERT INTO public.journals VALUES (6390, 981, 'Issue', 12, '', '2020-08-18 10:23:20+07', false);
INSERT INTO public.journals VALUES (6391, 1870, 'Issue', 12, '', '2020-08-18 10:58:11+07', false);
INSERT INTO public.journals VALUES (6392, 981, 'Issue', 12, NULL, '2020-08-18 11:09:16+07', false);
INSERT INTO public.journals VALUES (6393, 981, 'Issue', 12, NULL, '2020-08-18 11:09:24+07', false);
INSERT INTO public.journals VALUES (6394, 1867, 'Issue', 12, '', '2020-08-18 11:16:03+07', false);
INSERT INTO public.journals VALUES (6395, 1871, 'Issue', 9, '', '2020-08-18 14:07:24+07', false);
INSERT INTO public.journals VALUES (6396, 1788, 'Issue', 9, '', '2020-08-18 14:36:29+07', false);
INSERT INTO public.journals VALUES (6397, 1789, 'Issue', 9, '', '2020-08-18 14:36:55+07', false);
INSERT INTO public.journals VALUES (6398, 1866, 'Issue', 12, NULL, '2020-08-18 15:11:01+07', false);
INSERT INTO public.journals VALUES (6399, 980, 'Issue', 12, NULL, '2020-08-18 15:12:56+07', false);
INSERT INTO public.journals VALUES (6400, 986, 'Issue', 12, NULL, '2020-08-18 15:12:57+07', false);
INSERT INTO public.journals VALUES (6401, 992, 'Issue', 12, NULL, '2020-08-18 15:12:57+07', false);
INSERT INTO public.journals VALUES (6402, 999, 'Issue', 12, NULL, '2020-08-18 15:12:57+07', false);
INSERT INTO public.journals VALUES (6403, 978, 'Issue', 4, NULL, '2020-08-18 15:28:31+07', false);
INSERT INTO public.journals VALUES (6404, 1870, 'Issue', 4, NULL, '2020-08-18 15:28:31+07', false);
INSERT INTO public.journals VALUES (6405, 978, 'Issue', 4, NULL, '2020-08-18 15:28:40+07', false);
INSERT INTO public.journals VALUES (6406, 1870, 'Issue', 4, NULL, '2020-08-18 15:28:40+07', false);
INSERT INTO public.journals VALUES (6407, 999, 'Issue', 12, NULL, '2020-08-18 15:40:36+07', false);
INSERT INTO public.journals VALUES (6408, 986, 'Issue', 12, NULL, '2020-08-18 15:41:29+07', false);
INSERT INTO public.journals VALUES (6409, 991, 'Issue', 4, NULL, '2020-08-18 15:54:37+07', false);
INSERT INTO public.journals VALUES (6410, 997, 'Issue', 4, NULL, '2020-08-18 15:54:37+07', false);
INSERT INTO public.journals VALUES (6411, 991, 'Issue', 4, NULL, '2020-08-18 15:54:51+07', false);
INSERT INTO public.journals VALUES (6412, 997, 'Issue', 4, NULL, '2020-08-18 15:54:51+07', false);
INSERT INTO public.journals VALUES (6413, 1854, 'Issue', 12, NULL, '2020-08-18 16:28:03+07', false);
INSERT INTO public.journals VALUES (6414, 1854, 'Issue', 12, NULL, '2020-08-18 16:28:10+07', false);
INSERT INTO public.journals VALUES (6415, 1854, 'Issue', 12, '', '2020-08-18 16:28:23+07', false);
INSERT INTO public.journals VALUES (6416, 1855, 'Issue', 19, 'Group by Moi truong -> DS tram vuot nguong (chi tiet tram, thong so vuot nguong, gia tri vuot nguong )', '2020-08-18 16:57:52+07', false);
INSERT INTO public.journals VALUES (6417, 1856, 'Issue', 13, NULL, '2020-08-19 08:19:46+07', false);
INSERT INTO public.journals VALUES (6418, 1857, 'Issue', 13, NULL, '2020-08-19 08:19:46+07', false);
INSERT INTO public.journals VALUES (6419, 1859, 'Issue', 13, NULL, '2020-08-19 08:19:47+07', false);
INSERT INTO public.journals VALUES (6420, 1856, 'Issue', 13, NULL, '2020-08-19 08:19:53+07', false);
INSERT INTO public.journals VALUES (6421, 1857, 'Issue', 13, NULL, '2020-08-19 08:19:54+07', false);
INSERT INTO public.journals VALUES (6422, 1859, 'Issue', 13, NULL, '2020-08-19 08:19:54+07', false);
INSERT INTO public.journals VALUES (6423, 999, 'Issue', 4, NULL, '2020-08-19 09:42:31+07', false);
INSERT INTO public.journals VALUES (6424, 999, 'Issue', 4, NULL, '2020-08-19 09:42:37+07', false);
INSERT INTO public.journals VALUES (6425, 977, 'Issue', 12, '', '2020-08-19 09:58:56+07', false);
INSERT INTO public.journals VALUES (6426, 980, 'Issue', 12, '', '2020-08-19 09:59:20+07', false);
INSERT INTO public.journals VALUES (6427, 1872, 'Issue', 9, '', '2020-08-19 10:40:16+07', false);
INSERT INTO public.journals VALUES (6428, 1876, 'Issue', 9, '', '2020-08-19 10:45:42+07', false);
INSERT INTO public.journals VALUES (6429, 1875, 'Issue', 9, '', '2020-08-19 10:45:59+07', false);
INSERT INTO public.journals VALUES (6430, 1874, 'Issue', 9, '', '2020-08-19 10:47:01+07', false);
INSERT INTO public.journals VALUES (6431, 984, 'Issue', 12, NULL, '2020-08-19 13:29:49+07', false);
INSERT INTO public.journals VALUES (6432, 984, 'Issue', 12, '', '2020-08-19 13:30:32+07', false);
INSERT INTO public.journals VALUES (6433, 992, 'Issue', 12, NULL, '2020-08-19 13:47:25+07', false);
INSERT INTO public.journals VALUES (6434, 992, 'Issue', 12, '', '2020-08-19 13:48:15+07', false);
INSERT INTO public.journals VALUES (6435, 984, 'Issue', 12, '', '2020-08-19 13:48:28+07', false);
INSERT INTO public.journals VALUES (6436, 984, 'Issue', 12, NULL, '2020-08-19 14:21:41+07', false);
INSERT INTO public.journals VALUES (6437, 980, 'Issue', 12, NULL, '2020-08-19 14:31:58+07', false);
INSERT INTO public.journals VALUES (6438, 980, 'Issue', 12, NULL, '2020-08-19 14:32:06+07', false);
INSERT INTO public.journals VALUES (6439, 1639, 'Issue', 19, '', '2020-08-19 14:50:36+07', false);
INSERT INTO public.journals VALUES (6440, 984, 'Issue', 4, NULL, '2020-08-19 15:57:20+07', false);
INSERT INTO public.journals VALUES (6441, 984, 'Issue', 4, NULL, '2020-08-19 15:57:28+07', false);
INSERT INTO public.journals VALUES (6442, 994, 'Issue', 12, NULL, '2020-08-19 16:50:26+07', false);
INSERT INTO public.journals VALUES (6443, 996, 'Issue', 12, NULL, '2020-08-19 16:50:42+07', false);
INSERT INTO public.journals VALUES (6444, 1880, 'Issue', 9, '', '2020-08-19 16:58:31+07', false);
INSERT INTO public.journals VALUES (6445, 1879, 'Issue', 9, '', '2020-08-19 16:58:42+07', false);
INSERT INTO public.journals VALUES (6446, 1861, 'Issue', 4, NULL, '2020-08-19 17:02:36+07', false);
INSERT INTO public.journals VALUES (6447, 1862, 'Issue', 4, NULL, '2020-08-19 17:02:37+07', false);
INSERT INTO public.journals VALUES (6448, 1863, 'Issue', 4, NULL, '2020-08-19 17:02:37+07', false);
INSERT INTO public.journals VALUES (6449, 1871, 'Issue', 4, NULL, '2020-08-19 17:02:37+07', false);
INSERT INTO public.journals VALUES (6450, 1847, 'Issue', 13, '', '2020-08-20 08:14:34+07', false);
INSERT INTO public.journals VALUES (6451, 1848, 'Issue', 13, '', '2020-08-20 08:15:11+07', false);
INSERT INTO public.journals VALUES (6452, 1849, 'Issue', 13, '', '2020-08-20 08:15:11+07', false);
INSERT INTO public.journals VALUES (6453, 1850, 'Issue', 13, '', '2020-08-20 08:15:11+07', false);
INSERT INTO public.journals VALUES (6454, 1861, 'Issue', 4, NULL, '2020-08-20 08:16:01+07', false);
INSERT INTO public.journals VALUES (6455, 1862, 'Issue', 4, NULL, '2020-08-20 08:16:01+07', false);
INSERT INTO public.journals VALUES (6456, 1861, 'Issue', 4, '', '2020-08-20 08:17:31+07', false);
INSERT INTO public.journals VALUES (6457, 1862, 'Issue', 4, '', '2020-08-20 08:17:47+07', false);
INSERT INTO public.journals VALUES (6458, 1863, 'Issue', 4, '', '2020-08-20 08:18:13+07', false);
INSERT INTO public.journals VALUES (6459, 1871, 'Issue', 4, '', '2020-08-20 08:18:27+07', false);
INSERT INTO public.journals VALUES (6460, 1639, 'Issue', 19, '', '2020-08-20 08:32:19+07', false);
INSERT INTO public.journals VALUES (6461, 1883, 'Issue', 9, '', '2020-08-20 08:50:46+07', false);
INSERT INTO public.journals VALUES (6462, 1638, 'Issue', 19, '', '2020-08-20 09:08:57+07', false);
INSERT INTO public.journals VALUES (6463, 1858, 'Issue', 13, NULL, '2020-08-20 09:16:18+07', false);
INSERT INTO public.journals VALUES (6464, 1858, 'Issue', 13, NULL, '2020-08-20 09:16:24+07', false);
INSERT INTO public.journals VALUES (6465, 1858, 'Issue', 13, NULL, '2020-08-20 09:16:39+07', false);
INSERT INTO public.journals VALUES (6466, 1858, 'Issue', 13, NULL, '2020-08-20 09:16:47+07', false);
INSERT INTO public.journals VALUES (6467, 1847, 'Issue', 13, NULL, '2020-08-20 09:17:18+07', false);
INSERT INTO public.journals VALUES (6468, 1847, 'Issue', 13, NULL, '2020-08-20 09:17:25+07', false);
INSERT INTO public.journals VALUES (6469, 1846, 'Issue', 19, '', '2020-08-20 11:12:28+07', false);
INSERT INTO public.journals VALUES (6470, 1883, 'Issue', 12, NULL, '2020-08-20 13:19:29+07', false);
INSERT INTO public.journals VALUES (6471, 1883, 'Issue', 12, NULL, '2020-08-20 13:20:11+07', false);
INSERT INTO public.journals VALUES (6472, 1883, 'Issue', 12, NULL, '2020-08-20 13:20:18+07', false);
INSERT INTO public.journals VALUES (6473, 1865, 'Issue', 4, NULL, '2020-08-20 13:20:23+07', false);
INSERT INTO public.journals VALUES (6474, 1883, 'Issue', 12, '', '2020-08-20 13:20:36+07', false);
INSERT INTO public.journals VALUES (6475, 1865, 'Issue', 4, '', '2020-08-20 13:20:59+07', false);
INSERT INTO public.journals VALUES (6476, 1880, 'Issue', 12, NULL, '2020-08-20 13:21:48+07', false);
INSERT INTO public.journals VALUES (6477, 1670, 'Issue', 19, '', '2020-08-20 16:18:59+07', false);
INSERT INTO public.journals VALUES (6478, 1670, 'Issue', 19, 'http://cem.gov.vn/storage/news_file_attach/QD%201460%20TCMT%20ngay%2012.11.2019%20WQI.pdf', '2020-08-20 16:21:02+07', false);
INSERT INTO public.journals VALUES (6479, 998, 'Issue', 12, '', '2020-08-20 16:47:29+07', false);
INSERT INTO public.journals VALUES (6480, 977, 'Issue', 12, '', '2020-08-20 17:04:04+07', false);
INSERT INTO public.journals VALUES (6481, 980, 'Issue', 12, NULL, '2020-08-21 08:18:34+07', false);
INSERT INTO public.journals VALUES (6482, 1885, 'Issue', 5, NULL, '2020-08-21 11:33:41+07', false);
INSERT INTO public.journals VALUES (6483, 1885, 'Issue', 5, NULL, '2020-08-21 11:34:58+07', false);
INSERT INTO public.journals VALUES (6484, 1734, 'Issue', 5, '', '2020-08-21 11:57:51+07', false);
INSERT INTO public.journals VALUES (6485, 1733, 'Issue', 5, '', '2020-08-21 11:57:53+07', false);
INSERT INTO public.journals VALUES (6486, 1698, 'Issue', 5, '', '2020-08-21 11:57:54+07', false);
INSERT INTO public.journals VALUES (6487, 1732, 'Issue', 5, '', '2020-08-21 11:57:55+07', false);
INSERT INTO public.journals VALUES (6488, 1695, 'Issue', 5, '', '2020-08-21 11:57:56+07', false);
INSERT INTO public.journals VALUES (6489, 1756, 'Issue', 5, '', '2020-08-21 11:57:57+07', false);
INSERT INTO public.journals VALUES (6490, 1756, 'Issue', 5, '', '2020-08-21 11:58:17+07', false);
INSERT INTO public.journals VALUES (6491, 1695, 'Issue', 5, '', '2020-08-21 11:58:18+07', false);
INSERT INTO public.journals VALUES (6492, 1732, 'Issue', 5, '', '2020-08-21 11:58:19+07', false);
INSERT INTO public.journals VALUES (6493, 1698, 'Issue', 5, '', '2020-08-21 11:58:20+07', false);
INSERT INTO public.journals VALUES (6494, 1733, 'Issue', 5, '', '2020-08-21 11:58:20+07', false);
INSERT INTO public.journals VALUES (6495, 1734, 'Issue', 5, '', '2020-08-21 11:58:21+07', false);
INSERT INTO public.journals VALUES (6496, 1589, 'Issue', 5, '', '2020-08-21 11:58:22+07', false);
INSERT INTO public.journals VALUES (6497, 1590, 'Issue', 5, '', '2020-08-21 11:58:23+07', false);
INSERT INTO public.journals VALUES (6498, 1591, 'Issue', 5, '', '2020-08-21 11:58:24+07', false);
INSERT INTO public.journals VALUES (6499, 1688, 'Issue', 5, '', '2020-08-21 11:58:25+07', false);
INSERT INTO public.journals VALUES (6500, 1693, 'Issue', 5, '', '2020-08-21 11:58:26+07', false);
INSERT INTO public.journals VALUES (6501, 1699, 'Issue', 5, '', '2020-08-21 11:58:29+07', false);
INSERT INTO public.journals VALUES (6502, 1721, 'Issue', 5, '', '2020-08-21 11:58:30+07', false);
INSERT INTO public.journals VALUES (6503, 1722, 'Issue', 5, '', '2020-08-21 11:58:32+07', false);
INSERT INTO public.journals VALUES (6504, 1726, 'Issue', 5, '', '2020-08-21 11:58:33+07', false);
INSERT INTO public.journals VALUES (6505, 1697, 'Issue', 5, '', '2020-08-21 11:58:34+07', false);
INSERT INTO public.journals VALUES (6506, 1729, 'Issue', 5, '', '2020-08-21 11:58:36+07', false);
INSERT INTO public.journals VALUES (6507, 1731, 'Issue', 5, '', '2020-08-21 11:58:37+07', false);
INSERT INTO public.journals VALUES (6508, 1735, 'Issue', 5, '', '2020-08-21 11:58:38+07', false);
INSERT INTO public.journals VALUES (6509, 1736, 'Issue', 5, '', '2020-08-21 11:58:38+07', false);
INSERT INTO public.journals VALUES (6510, 1737, 'Issue', 5, '', '2020-08-21 11:58:39+07', false);
INSERT INTO public.journals VALUES (6511, 1877, 'Issue', 33, NULL, '2020-08-21 13:58:13+07', false);
INSERT INTO public.journals VALUES (6512, 1884, 'Issue', 33, NULL, '2020-08-21 13:58:37+07', false);
INSERT INTO public.journals VALUES (6513, 1884, 'Issue', 33, NULL, '2020-08-21 13:58:52+07', false);
INSERT INTO public.journals VALUES (6514, 1888, 'Issue', 33, NULL, '2020-08-21 13:58:58+07', false);
INSERT INTO public.journals VALUES (6515, 1890, 'Issue', 5, '', '2020-08-21 16:56:13+07', false);
INSERT INTO public.journals VALUES (6516, 1863, 'Issue', 4, NULL, '2020-08-22 10:57:02+07', false);
INSERT INTO public.journals VALUES (6517, 1895, 'Issue', 19, '', '2020-08-22 15:30:39+07', false);
INSERT INTO public.journals VALUES (6518, 1895, 'Issue', 19, '', '2020-08-22 15:31:12+07', false);
INSERT INTO public.journals VALUES (6519, 1888, 'Issue', 33, NULL, '2020-08-22 15:43:22+07', false);
INSERT INTO public.journals VALUES (6520, 1888, 'Issue', 33, NULL, '2020-08-22 15:43:37+07', false);
INSERT INTO public.journals VALUES (6521, 1858, 'Issue', 13, '', '2020-08-22 15:58:52+07', false);
INSERT INTO public.journals VALUES (6522, 1892, 'Issue', 13, '', '2020-08-22 15:58:52+07', false);
INSERT INTO public.journals VALUES (6523, 1893, 'Issue', 13, '', '2020-08-22 15:58:52+07', false);
INSERT INTO public.journals VALUES (6524, 1894, 'Issue', 13, '', '2020-08-22 15:58:52+07', false);
INSERT INTO public.journals VALUES (6525, 1898, 'Issue', 19, '', '2020-08-22 16:32:48+07', false);
INSERT INTO public.journals VALUES (6526, 1145, 'Issue', 5, '', '2020-08-23 12:23:13+07', false);
INSERT INTO public.journals VALUES (6527, 1145, 'Issue', 5, '', '2020-08-23 12:23:38+07', false);
INSERT INTO public.journals VALUES (6528, 1145, 'Issue', 5, '', '2020-08-23 12:25:16+07', false);
INSERT INTO public.journals VALUES (6529, 1898, 'Issue', 19, '/QuanTrac/WQIGioTungThongSo', '2020-08-24 08:14:32+07', false);
INSERT INTO public.journals VALUES (6530, 1145, 'Issue', 5, NULL, '2020-08-24 08:34:55+07', false);
INSERT INTO public.journals VALUES (6531, 1146, 'Issue', 5, NULL, '2020-08-24 08:34:55+07', false);
INSERT INTO public.journals VALUES (6532, 1788, 'Issue', 9, NULL, '2020-08-24 08:37:04+07', false);
INSERT INTO public.journals VALUES (6533, 980, 'Issue', 12, '', '2020-08-24 08:38:06+07', false);
INSERT INTO public.journals VALUES (6534, 1902, 'Issue', 19, '', '2020-08-24 10:36:37+07', false);
INSERT INTO public.journals VALUES (6535, 1903, 'Issue', 35, '', '2020-08-24 14:06:05+07', false);
INSERT INTO public.journals VALUES (6536, 1903, 'Issue', 35, '', '2020-08-24 14:09:20+07', false);
INSERT INTO public.journals VALUES (6537, 986, 'Issue', 5, '', '2020-08-24 15:47:14+07', false);
INSERT INTO public.journals VALUES (6538, 992, 'Issue', 5, '', '2020-08-24 15:47:14+07', false);
INSERT INTO public.journals VALUES (6539, 994, 'Issue', 5, '', '2020-08-24 15:47:14+07', false);
INSERT INTO public.journals VALUES (6540, 996, 'Issue', 5, '', '2020-08-24 15:47:14+07', false);
INSERT INTO public.journals VALUES (6541, 994, 'Issue', 5, '', '2020-08-24 15:47:29+07', false);
INSERT INTO public.journals VALUES (6542, 1881, 'Issue', 4, '', '2020-08-24 15:48:12+07', false);
INSERT INTO public.journals VALUES (6543, 1403, 'Issue', 5, '', '2020-08-24 16:32:03+07', false);
INSERT INTO public.journals VALUES (6544, 1426, 'Issue', 5, '', '2020-08-24 16:32:03+07', false);
INSERT INTO public.journals VALUES (6545, 1725, 'Issue', 5, '', '2020-08-24 16:32:04+07', false);
INSERT INTO public.journals VALUES (6546, 1728, 'Issue', 5, '', '2020-08-24 16:32:04+07', false);
INSERT INTO public.journals VALUES (6547, 1745, 'Issue', 5, '', '2020-08-24 16:32:04+07', false);
INSERT INTO public.journals VALUES (6548, 1754, 'Issue', 5, '', '2020-08-24 16:32:04+07', false);
INSERT INTO public.journals VALUES (6549, 1800, 'Issue', 5, '', '2020-08-24 16:32:04+07', false);
INSERT INTO public.journals VALUES (6550, 1828, 'Issue', 5, '', '2020-08-24 16:32:04+07', false);
INSERT INTO public.journals VALUES (6551, 1802, 'Issue', 5, '', '2020-08-24 16:32:04+07', false);
INSERT INTO public.journals VALUES (6552, 1840, 'Issue', 5, '', '2020-08-24 16:32:04+07', false);
INSERT INTO public.journals VALUES (6553, 1800, 'Issue', 5, '', '2020-08-24 16:32:52+07', false);
INSERT INTO public.journals VALUES (6554, 1828, 'Issue', 5, '', '2020-08-24 16:32:53+07', false);
INSERT INTO public.journals VALUES (6555, 1839, 'Issue', 5, '', '2020-08-24 16:32:53+07', false);
INSERT INTO public.journals VALUES (6556, 1788, 'Issue', 5, NULL, '2020-08-24 16:33:22+07', false);
INSERT INTO public.journals VALUES (6557, 1692, 'Issue', 5, NULL, '2020-08-24 16:34:16+07', false);
INSERT INTO public.journals VALUES (6558, 1694, 'Issue', 5, NULL, '2020-08-24 16:34:16+07', false);
INSERT INTO public.journals VALUES (6559, 1750, 'Issue', 5, NULL, '2020-08-24 16:34:16+07', false);
INSERT INTO public.journals VALUES (6560, 1775, 'Issue', 5, NULL, '2020-08-24 16:34:16+07', false);
INSERT INTO public.journals VALUES (6561, 1786, 'Issue', 5, NULL, '2020-08-24 16:34:16+07', false);
INSERT INTO public.journals VALUES (6562, 1787, 'Issue', 5, NULL, '2020-08-24 16:34:17+07', false);
INSERT INTO public.journals VALUES (6563, 1829, 'Issue', 5, NULL, '2020-08-24 16:34:17+07', false);
INSERT INTO public.journals VALUES (6564, 1794, 'Issue', 5, NULL, '2020-08-24 16:34:36+07', false);
INSERT INTO public.journals VALUES (6565, 968, 'Issue', 5, '', '2020-08-24 16:36:17+07', false);
INSERT INTO public.journals VALUES (6566, 1696, 'Issue', 5, '', '2020-08-24 16:36:18+07', false);
INSERT INTO public.journals VALUES (6567, 1727, 'Issue', 5, '', '2020-08-24 16:36:18+07', false);
INSERT INTO public.journals VALUES (6568, 1744, 'Issue', 5, '', '2020-08-24 16:36:18+07', false);
INSERT INTO public.journals VALUES (6569, 1785, 'Issue', 5, '', '2020-08-24 16:36:18+07', false);
INSERT INTO public.journals VALUES (6570, 1868, 'Issue', 5, '', '2020-08-24 16:36:18+07', false);
INSERT INTO public.journals VALUES (6571, 1869, 'Issue', 5, '', '2020-08-24 16:36:18+07', false);
INSERT INTO public.journals VALUES (6572, 1872, 'Issue', 5, '', '2020-08-24 16:36:18+07', false);
INSERT INTO public.journals VALUES (6573, 1874, 'Issue', 5, '', '2020-08-24 16:36:19+07', false);
INSERT INTO public.journals VALUES (6574, 1875, 'Issue', 5, '', '2020-08-24 16:36:19+07', false);
INSERT INTO public.journals VALUES (6575, 1876, 'Issue', 5, '', '2020-08-24 16:36:19+07', false);
INSERT INTO public.journals VALUES (6576, 1879, 'Issue', 5, '', '2020-08-24 16:36:19+07', false);
INSERT INTO public.journals VALUES (6577, 1887, 'Issue', 5, '', '2020-08-24 16:36:19+07', false);
INSERT INTO public.journals VALUES (6578, 1886, 'Issue', 5, '', '2020-08-24 16:36:19+07', false);
INSERT INTO public.journals VALUES (6579, 1883, 'Issue', 5, NULL, '2020-08-24 16:44:24+07', false);
INSERT INTO public.journals VALUES (6580, 1882, 'Issue', 5, NULL, '2020-08-24 16:44:32+07', false);
INSERT INTO public.journals VALUES (6581, 1861, 'Issue', 5, NULL, '2020-08-24 16:45:24+07', false);
INSERT INTO public.journals VALUES (6582, 1862, 'Issue', 5, NULL, '2020-08-24 16:45:24+07', false);
INSERT INTO public.journals VALUES (6583, 1865, 'Issue', 5, NULL, '2020-08-24 16:45:24+07', false);
INSERT INTO public.journals VALUES (6584, 1881, 'Issue', 5, NULL, '2020-08-24 16:45:24+07', false);
INSERT INTO public.journals VALUES (6585, 995, 'Issue', 5, '', '2020-08-24 16:45:40+07', false);
INSERT INTO public.journals VALUES (6586, 1416, 'Issue', 5, '', '2020-08-24 16:45:40+07', false);
INSERT INTO public.journals VALUES (6587, 1611, 'Issue', 5, '', '2020-08-24 16:45:40+07', false);
INSERT INTO public.journals VALUES (6588, 1789, 'Issue', 5, '', '2020-08-24 16:45:40+07', false);
INSERT INTO public.journals VALUES (6589, 1839, 'Issue', 5, '', '2020-08-24 16:45:40+07', false);
INSERT INTO public.journals VALUES (6590, 1845, 'Issue', 5, '', '2020-08-24 16:45:40+07', false);
INSERT INTO public.journals VALUES (6591, 1788, 'Issue', 5, '', '2020-08-24 16:49:12+07', false);
INSERT INTO public.journals VALUES (6592, 1861, 'Issue', 5, '', '2020-08-24 16:49:13+07', false);
INSERT INTO public.journals VALUES (6593, 1862, 'Issue', 5, '', '2020-08-24 16:49:13+07', false);
INSERT INTO public.journals VALUES (6594, 1865, 'Issue', 5, '', '2020-08-24 16:49:13+07', false);
INSERT INTO public.journals VALUES (6595, 1861, 'Issue', 5, NULL, '2020-08-24 16:51:28+07', false);
INSERT INTO public.journals VALUES (6596, 1862, 'Issue', 5, NULL, '2020-08-24 16:51:28+07', false);
INSERT INTO public.journals VALUES (6597, 1865, 'Issue', 5, NULL, '2020-08-24 16:51:29+07', false);
INSERT INTO public.journals VALUES (6598, 1881, 'Issue', 5, NULL, '2020-08-24 16:51:29+07', false);
INSERT INTO public.journals VALUES (6599, 1895, 'Issue', 5, NULL, '2020-08-24 16:59:26+07', false);
INSERT INTO public.journals VALUES (6600, 1898, 'Issue', 5, NULL, '2020-08-24 16:59:26+07', false);
INSERT INTO public.journals VALUES (6601, 1902, 'Issue', 5, NULL, '2020-08-24 16:59:36+07', false);
INSERT INTO public.journals VALUES (6602, 992, 'Issue', 12, '', '2020-08-24 17:03:24+07', false);
INSERT INTO public.journals VALUES (6603, 1876, 'Issue', 12, NULL, '2020-08-25 08:10:36+07', false);
INSERT INTO public.journals VALUES (6604, 1879, 'Issue', 12, NULL, '2020-08-25 08:11:10+07', false);
INSERT INTO public.journals VALUES (6605, 1871, 'Issue', 12, NULL, '2020-08-25 08:11:36+07', false);
INSERT INTO public.journals VALUES (6606, 1868, 'Issue', 12, NULL, '2020-08-25 08:12:05+07', false);
INSERT INTO public.journals VALUES (6607, 995, 'Issue', 12, NULL, '2020-08-25 08:16:53+07', false);
INSERT INTO public.journals VALUES (6608, 1828, 'Issue', 12, NULL, '2020-08-25 08:17:43+07', false);
INSERT INTO public.journals VALUES (6609, 1828, 'Issue', 12, '', '2020-08-25 08:21:59+07', false);
INSERT INTO public.journals VALUES (6610, 1876, 'Issue', 12, '', '2020-08-25 08:21:59+07', false);
INSERT INTO public.journals VALUES (6611, 1879, 'Issue', 12, '', '2020-08-25 08:21:59+07', false);
INSERT INTO public.journals VALUES (6612, 1871, 'Issue', 12, '', '2020-08-25 08:22:29+07', false);
INSERT INTO public.journals VALUES (6613, 1830, 'Issue', 5, NULL, '2020-08-25 08:25:13+07', false);
INSERT INTO public.journals VALUES (6614, 1890, 'Issue', 5, NULL, '2020-08-25 08:25:13+07', false);
INSERT INTO public.journals VALUES (6615, 986, 'Issue', 12, '', '2020-08-25 08:26:47+07', false);
INSERT INTO public.journals VALUES (6616, 996, 'Issue', 12, '', '2020-08-25 08:26:47+07', false);
INSERT INTO public.journals VALUES (6617, 1904, 'Issue', 5, '', '2020-08-25 08:29:17+07', false);
INSERT INTO public.journals VALUES (6618, 1777, 'Issue', 10, NULL, '2020-08-25 09:17:42+07', false);
INSERT INTO public.journals VALUES (6619, 1777, 'Issue', 10, NULL, '2020-08-25 09:17:52+07', false);
INSERT INTO public.journals VALUES (6620, 1778, 'Issue', 10, NULL, '2020-08-25 09:17:58+07', false);
INSERT INTO public.journals VALUES (6621, 1879, 'Issue', 10, NULL, '2020-08-25 10:22:28+07', false);
INSERT INTO public.journals VALUES (6622, 1879, 'Issue', 10, NULL, '2020-08-25 10:22:35+07', false);
INSERT INTO public.journals VALUES (6623, 1824, 'Issue', 19, '', '2020-08-25 14:30:44+07', false);
INSERT INTO public.journals VALUES (6624, 1890, 'Issue', 5, '', '2020-08-25 14:53:26+07', false);
INSERT INTO public.journals VALUES (6625, 965, 'Issue', 5, NULL, '2020-08-25 14:58:10+07', false);
INSERT INTO public.journals VALUES (6626, 966, 'Issue', 5, NULL, '2020-08-25 14:58:10+07', false);
INSERT INTO public.journals VALUES (6627, 1882, 'Issue', 5, NULL, '2020-08-25 14:58:10+07', false);
INSERT INTO public.journals VALUES (6628, 1883, 'Issue', 5, NULL, '2020-08-25 14:58:11+07', false);
INSERT INTO public.journals VALUES (6629, 1787, 'Issue', 5, '', '2020-08-25 14:58:23+07', false);
INSERT INTO public.journals VALUES (6630, 965, 'Issue', 5, NULL, '2020-08-25 14:58:51+07', false);
INSERT INTO public.journals VALUES (6631, 966, 'Issue', 5, NULL, '2020-08-25 14:58:51+07', false);
INSERT INTO public.journals VALUES (6632, 996, 'Issue', 12, '', '2020-08-25 16:41:12+07', false);
INSERT INTO public.journals VALUES (6633, 1868, 'Issue', 4, NULL, '2020-08-25 16:57:31+07', false);
INSERT INTO public.journals VALUES (6634, 1868, 'Issue', 4, NULL, '2020-08-25 16:57:39+07', false);
INSERT INTO public.journals VALUES (6635, 986, 'Issue', 10, NULL, '2020-08-25 17:27:56+07', false);
INSERT INTO public.journals VALUES (6636, 986, 'Issue', 10, NULL, '2020-08-25 17:28:11+07', false);
INSERT INTO public.journals VALUES (6637, 1903, 'Issue', 35, '', '2020-08-26 07:46:16+07', false);
INSERT INTO public.journals VALUES (6638, 1874, 'Issue', 4, NULL, '2020-08-26 08:12:59+07', false);
INSERT INTO public.journals VALUES (6639, 1875, 'Issue', 4, NULL, '2020-08-26 08:12:59+07', false);
INSERT INTO public.journals VALUES (6640, 1874, 'Issue', 4, NULL, '2020-08-26 09:30:47+07', false);
INSERT INTO public.journals VALUES (6641, 1875, 'Issue', 4, NULL, '2020-08-26 09:30:47+07', false);
INSERT INTO public.journals VALUES (6642, 1874, 'Issue', 4, NULL, '2020-08-26 09:31:09+07', false);
INSERT INTO public.journals VALUES (6643, 1875, 'Issue', 4, NULL, '2020-08-26 09:31:09+07', false);
INSERT INTO public.journals VALUES (6644, 1845, 'Issue', 12, '', '2020-08-26 11:17:01+07', false);
INSERT INTO public.journals VALUES (6645, 1845, 'Issue', 12, '', '2020-08-26 11:17:21+07', false);
INSERT INTO public.journals VALUES (6646, 1557, 'Issue', 19, NULL, '2020-08-26 13:39:09+07', false);
INSERT INTO public.journals VALUES (6647, 1669, 'Issue', 19, NULL, '2020-08-26 13:39:53+07', false);
INSERT INTO public.journals VALUES (6648, 1670, 'Issue', 19, NULL, '2020-08-26 13:40:12+07', false);
INSERT INTO public.journals VALUES (6649, 1885, 'Issue', 19, NULL, '2020-08-26 13:40:31+07', false);
INSERT INTO public.journals VALUES (6650, 1602, 'Issue', 19, NULL, '2020-08-26 13:41:29+07', false);
INSERT INTO public.journals VALUES (6651, 1643, 'Issue', 19, NULL, '2020-08-26 13:42:00+07', false);
INSERT INTO public.journals VALUES (6652, 1644, 'Issue', 19, NULL, '2020-08-26 13:42:22+07', false);
INSERT INTO public.journals VALUES (6653, 1645, 'Issue', 19, NULL, '2020-08-26 13:42:40+07', false);
INSERT INTO public.journals VALUES (6654, 1825, 'Issue', 19, NULL, '2020-08-26 13:42:57+07', false);
INSERT INTO public.journals VALUES (6655, 1824, 'Issue', 19, NULL, '2020-08-26 13:43:13+07', false);
INSERT INTO public.journals VALUES (6656, 1401, 'Issue', 19, NULL, '2020-08-26 13:43:44+07', false);
INSERT INTO public.journals VALUES (6657, 1133, 'Issue', 19, NULL, '2020-08-26 13:44:00+07', false);
INSERT INTO public.journals VALUES (6658, 1134, 'Issue', 19, NULL, '2020-08-26 13:44:15+07', false);
INSERT INTO public.journals VALUES (6659, 1135, 'Issue', 19, NULL, '2020-08-26 13:44:30+07', false);
INSERT INTO public.journals VALUES (6660, 1136, 'Issue', 19, NULL, '2020-08-26 13:44:45+07', false);
INSERT INTO public.journals VALUES (6661, 1137, 'Issue', 19, NULL, '2020-08-26 13:44:59+07', false);
INSERT INTO public.journals VALUES (6662, 1138, 'Issue', 19, NULL, '2020-08-26 13:45:17+07', false);
INSERT INTO public.journals VALUES (6663, 1139, 'Issue', 19, NULL, '2020-08-26 13:45:37+07', false);
INSERT INTO public.journals VALUES (6664, 1140, 'Issue', 19, NULL, '2020-08-26 13:45:59+07', false);
INSERT INTO public.journals VALUES (6665, 985, 'Issue', 5, NULL, '2020-08-26 14:22:52+07', false);
INSERT INTO public.journals VALUES (6666, 1904, 'Issue', 5, '', '2020-08-26 14:25:45+07', false);
INSERT INTO public.journals VALUES (6667, 1744, 'Issue', 4, NULL, '2020-08-26 15:57:52+07', false);
INSERT INTO public.journals VALUES (6668, 1907, 'Issue', 5, '', '2020-08-26 16:19:23+07', false);
INSERT INTO public.journals VALUES (6669, 1908, 'Issue', 5, '', '2020-08-26 16:19:23+07', false);
INSERT INTO public.journals VALUES (6670, 1871, 'Issue', 10, NULL, '2020-08-27 08:11:27+07', false);
INSERT INTO public.journals VALUES (6671, 1876, 'Issue', 10, NULL, '2020-08-27 08:11:27+07', false);
INSERT INTO public.journals VALUES (6672, 1871, 'Issue', 10, NULL, '2020-08-27 08:11:38+07', false);
INSERT INTO public.journals VALUES (6673, 1744, 'Issue', 4, NULL, '2020-08-27 08:14:01+07', false);
INSERT INTO public.journals VALUES (6674, 1912, 'Issue', 33, '', '2020-08-27 08:20:12+07', false);
INSERT INTO public.journals VALUES (6675, 1913, 'Issue', 13, NULL, '2020-08-27 08:20:32+07', false);
INSERT INTO public.journals VALUES (6676, 1902, 'Issue', 19, '', '2020-08-27 10:08:25+07', false);
INSERT INTO public.journals VALUES (6677, 1913, 'Issue', 37, NULL, '2020-08-27 10:36:14+07', false);
INSERT INTO public.journals VALUES (6678, 1828, 'Issue', 10, NULL, '2020-08-27 10:47:51+07', false);
INSERT INTO public.journals VALUES (6679, 1828, 'Issue', 10, NULL, '2020-08-27 10:48:31+07', false);
INSERT INTO public.journals VALUES (6680, 1876, 'Issue', 10, NULL, '2020-08-27 10:48:39+07', false);
INSERT INTO public.journals VALUES (6681, 1754, 'Issue', 12, NULL, '2020-08-27 10:50:01+07', false);
INSERT INTO public.journals VALUES (6682, 1828, 'Issue', 10, NULL, '2020-08-27 10:52:32+07', false);
INSERT INTO public.journals VALUES (6683, 1828, 'Issue', 10, NULL, '2020-08-27 10:52:55+07', false);
INSERT INTO public.journals VALUES (6684, 1800, 'Issue', 12, NULL, '2020-08-27 10:53:12+07', false);
INSERT INTO public.journals VALUES (6685, 1800, 'Issue', 10, NULL, '2020-08-27 15:03:43+07', false);
INSERT INTO public.journals VALUES (6686, 1800, 'Issue', 10, NULL, '2020-08-27 15:03:52+07', false);
INSERT INTO public.journals VALUES (6687, 1828, 'Issue', 10, NULL, '2020-08-27 15:52:23+07', false);
INSERT INTO public.journals VALUES (6688, 1828, 'Issue', 10, NULL, '2020-08-27 15:52:33+07', false);
INSERT INTO public.journals VALUES (6689, 1909, 'Issue', 5, '', '2020-08-27 16:34:03+07', false);
INSERT INTO public.journals VALUES (6690, 1911, 'Issue', 5, '', '2020-08-27 16:34:03+07', false);
INSERT INTO public.journals VALUES (6691, 1754, 'Issue', 10, NULL, '2020-08-28 09:35:26+07', false);
INSERT INTO public.journals VALUES (6692, 1754, 'Issue', 10, NULL, '2020-08-28 09:35:34+07', false);
INSERT INTO public.journals VALUES (6693, 1840, 'Issue', 10, NULL, '2020-08-28 09:50:27+07', false);
INSERT INTO public.journals VALUES (6694, 1872, 'Issue', 10, NULL, '2020-08-28 09:50:41+07', false);
INSERT INTO public.journals VALUES (6695, 1744, 'Issue', 10, NULL, '2020-08-28 09:52:37+07', false);
INSERT INTO public.journals VALUES (6696, 1925, 'Issue', 10, '', '2020-08-28 10:28:10+07', false);
INSERT INTO public.journals VALUES (6697, 1839, 'Issue', 12, NULL, '2020-08-28 10:29:33+07', false);
INSERT INTO public.journals VALUES (6698, 1863, 'Issue', 12, NULL, '2020-08-28 10:31:35+07', false);
INSERT INTO public.journals VALUES (6699, 1863, 'Issue', 10, NULL, '2020-08-28 11:41:25+07', false);
INSERT INTO public.journals VALUES (6700, 1863, 'Issue', 10, NULL, '2020-08-28 11:41:35+07', false);
INSERT INTO public.journals VALUES (6701, 1916, 'Issue', 4, NULL, '2020-08-28 14:41:22+07', false);
INSERT INTO public.journals VALUES (6702, 1917, 'Issue', 4, NULL, '2020-08-28 14:41:23+07', false);
INSERT INTO public.journals VALUES (6703, 1916, 'Issue', 4, NULL, '2020-08-28 14:41:43+07', false);
INSERT INTO public.journals VALUES (6704, 1917, 'Issue', 4, NULL, '2020-08-28 14:41:43+07', false);
INSERT INTO public.journals VALUES (6705, 1830, 'Issue', 5, NULL, '2020-08-28 15:16:19+07', false);
INSERT INTO public.journals VALUES (6706, 1890, 'Issue', 5, NULL, '2020-08-28 15:16:19+07', false);
INSERT INTO public.journals VALUES (6707, 1904, 'Issue', 5, NULL, '2020-08-28 15:16:19+07', false);
INSERT INTO public.journals VALUES (6708, 1907, 'Issue', 5, NULL, '2020-08-28 15:16:19+07', false);
INSERT INTO public.journals VALUES (6709, 1908, 'Issue', 5, NULL, '2020-08-28 15:16:19+07', false);
INSERT INTO public.journals VALUES (6710, 1909, 'Issue', 5, NULL, '2020-08-28 15:16:19+07', false);
INSERT INTO public.journals VALUES (6711, 1911, 'Issue', 5, NULL, '2020-08-28 15:16:19+07', false);
INSERT INTO public.journals VALUES (6712, 1910, 'Issue', 5, NULL, '2020-08-28 15:16:39+07', false);
INSERT INTO public.journals VALUES (6713, 1910, 'Issue', 5, '', '2020-08-28 15:16:59+07', false);
INSERT INTO public.journals VALUES (6714, 1557, 'Issue', 19, NULL, '2020-08-28 15:28:19+07', false);
INSERT INTO public.journals VALUES (6715, 1669, 'Issue', 19, NULL, '2020-08-28 15:29:17+07', false);
INSERT INTO public.journals VALUES (6716, 1670, 'Issue', 19, NULL, '2020-08-28 15:29:33+07', false);
INSERT INTO public.journals VALUES (6717, 1885, 'Issue', 19, NULL, '2020-08-28 15:30:01+07', false);
INSERT INTO public.journals VALUES (6718, 1696, 'Issue', 12, NULL, '2020-08-28 15:31:57+07', false);
INSERT INTO public.journals VALUES (6719, 1913, 'Issue', 37, NULL, '2020-08-28 15:32:42+07', false);
INSERT INTO public.journals VALUES (6720, 1914, 'Issue', 37, NULL, '2020-08-28 15:33:06+07', false);
INSERT INTO public.journals VALUES (6721, 1824, 'Issue', 19, 'Quantrac/UploadExcel
Quantrac/ImportExcel', '2020-08-28 15:41:58+07', false);
INSERT INTO public.journals VALUES (6722, 1696, 'Issue', 12, NULL, '2020-08-28 15:57:44+07', false);
INSERT INTO public.journals VALUES (6723, 1887, 'Issue', 12, NULL, '2020-08-28 16:13:55+07', false);
INSERT INTO public.journals VALUES (6724, 1869, 'Issue', 12, '', '2020-08-28 16:18:00+07', false);
INSERT INTO public.journals VALUES (6725, 1915, 'Issue', 37, NULL, '2020-08-28 16:34:47+07', false);
INSERT INTO public.journals VALUES (6726, 1914, 'Issue', 37, NULL, '2020-08-28 16:35:03+07', false);
INSERT INTO public.journals VALUES (6727, 1913, 'Issue', 37, NULL, '2020-08-28 16:35:13+07', false);
INSERT INTO public.journals VALUES (6728, 1785, 'Issue', 13, NULL, '2020-08-29 08:15:22+07', false);
INSERT INTO public.journals VALUES (6729, 1785, 'Issue', 13, NULL, '2020-08-29 08:15:39+07', false);
INSERT INTO public.journals VALUES (6730, 1611, 'Issue', 13, NULL, '2020-08-29 08:18:22+07', false);
INSERT INTO public.journals VALUES (6731, 968, 'Issue', 13, NULL, '2020-08-29 08:34:00+07', false);
INSERT INTO public.journals VALUES (6732, 1869, 'Issue', 13, NULL, '2020-08-29 08:34:01+07', false);
INSERT INTO public.journals VALUES (6733, 995, 'Issue', 13, NULL, '2020-08-29 08:34:15+07', false);
INSERT INTO public.journals VALUES (6734, 1416, 'Issue', 13, NULL, '2020-08-29 08:34:25+07', false);
INSERT INTO public.journals VALUES (6735, 1845, 'Issue', 13, NULL, '2020-08-29 08:35:46+07', false);
INSERT INTO public.journals VALUES (6736, 1926, 'Issue', 4, NULL, '2020-08-29 08:36:45+07', false);
INSERT INTO public.journals VALUES (6737, 1926, 'Issue', 4, NULL, '2020-08-29 08:37:19+07', false);
INSERT INTO public.journals VALUES (6738, 1643, 'Issue', 8, NULL, '2020-08-29 09:12:15+07', false);
INSERT INTO public.journals VALUES (6739, 1644, 'Issue', 8, NULL, '2020-08-29 09:12:15+07', false);
INSERT INTO public.journals VALUES (6740, 1825, 'Issue', 8, NULL, '2020-08-29 09:12:15+07', false);
INSERT INTO public.journals VALUES (6741, 1643, 'Issue', 8, NULL, '2020-08-29 09:12:30+07', false);
INSERT INTO public.journals VALUES (6742, 1644, 'Issue', 8, NULL, '2020-08-29 09:12:30+07', false);
INSERT INTO public.journals VALUES (6743, 1825, 'Issue', 8, NULL, '2020-08-29 09:12:30+07', false);
INSERT INTO public.journals VALUES (6744, 1696, 'Issue', 10, NULL, '2020-08-29 10:34:07+07', false);
INSERT INTO public.journals VALUES (6745, 1696, 'Issue', 10, NULL, '2020-08-29 10:35:09+07', false);
INSERT INTO public.journals VALUES (6746, 1925, 'Issue', 12, NULL, '2020-08-29 15:44:39+07', false);
INSERT INTO public.journals VALUES (6747, 1925, 'Issue', 12, '', '2020-08-29 15:45:37+07', false);
INSERT INTO public.journals VALUES (6748, 1611, 'Issue', 4, NULL, '2020-08-29 15:48:58+07', false);
INSERT INTO public.journals VALUES (6749, 1611, 'Issue', 4, NULL, '2020-08-29 15:49:35+07', false);
INSERT INTO public.journals VALUES (6750, 1930, 'Issue', 13, NULL, '2020-08-29 15:56:32+07', false);
INSERT INTO public.journals VALUES (6751, 1725, 'Issue', 13, '', '2020-08-29 16:09:14+07', false);
INSERT INTO public.journals VALUES (6752, 1727, 'Issue', 13, '', '2020-08-29 16:09:14+07', false);
INSERT INTO public.journals VALUES (6753, 1728, 'Issue', 13, '', '2020-08-29 16:09:15+07', false);
INSERT INTO public.journals VALUES (6754, 1802, 'Issue', 13, '', '2020-08-29 16:09:15+07', false);
INSERT INTO public.journals VALUES (6755, 1930, 'Issue', 10, NULL, '2020-08-29 16:18:33+07', false);
INSERT INTO public.journals VALUES (6756, 1930, 'Issue', 10, NULL, '2020-08-29 16:18:55+07', false);
INSERT INTO public.journals VALUES (6757, 1928, 'Issue', 4, '', '2020-08-29 16:49:20+07', false);
INSERT INTO public.journals VALUES (6758, 1929, 'Issue', 13, NULL, '2020-08-31 08:59:43+07', false);
INSERT INTO public.journals VALUES (6759, 1910, 'Issue', 5, '', '2020-08-31 13:54:50+07', false);
INSERT INTO public.journals VALUES (6760, 1933, 'Issue', 10, NULL, '2020-08-31 15:30:17+07', false);
INSERT INTO public.journals VALUES (6761, 1933, 'Issue', 10, NULL, '2020-08-31 15:30:26+07', false);
INSERT INTO public.journals VALUES (6762, 1645, 'Issue', 8, NULL, '2020-08-31 16:54:15+07', false);
INSERT INTO public.journals VALUES (6763, 1645, 'Issue', 8, NULL, '2020-08-31 16:54:23+07', false);
INSERT INTO public.journals VALUES (6764, 1934, 'Issue', 19, '', '2020-09-01 09:05:32+07', false);
INSERT INTO public.journals VALUES (6765, 1918, 'Issue', 5, NULL, '2020-09-01 13:48:57+07', false);
INSERT INTO public.journals VALUES (6766, 1921, 'Issue', 5, NULL, '2020-09-01 13:48:57+07', false);
INSERT INTO public.journals VALUES (6767, 1918, 'Issue', 5, NULL, '2020-09-01 13:49:03+07', false);
INSERT INTO public.journals VALUES (6768, 1921, 'Issue', 5, NULL, '2020-09-01 13:49:03+07', false);
INSERT INTO public.journals VALUES (6769, 1932, 'Issue', 4, NULL, '2020-09-03 07:57:26+07', false);
INSERT INTO public.journals VALUES (6770, 1932, 'Issue', 4, NULL, '2020-09-03 07:57:34+07', false);
INSERT INTO public.journals VALUES (6771, 1931, 'Issue', 13, NULL, '2020-09-03 08:26:42+07', false);
INSERT INTO public.journals VALUES (6772, 1931, 'Issue', 13, '', '2020-09-03 08:27:07+07', false);
INSERT INTO public.journals VALUES (6773, 1923, 'Issue', 15, '', '2020-09-03 08:27:43+07', false);
INSERT INTO public.journals VALUES (6774, 1924, 'Issue', 15, '', '2020-09-03 08:28:05+07', false);
INSERT INTO public.journals VALUES (6775, 1927, 'Issue', 15, '', '2020-09-03 08:28:21+07', false);
INSERT INTO public.journals VALUES (6776, 1937, 'Issue', 15, '', '2020-09-03 08:28:42+07', false);
INSERT INTO public.journals VALUES (6777, 1922, 'Issue', 15, '', '2020-09-03 08:29:12+07', false);
INSERT INTO public.journals VALUES (6778, 1923, 'Issue', 15, '', '2020-09-03 08:29:27+07', false);
INSERT INTO public.journals VALUES (6779, 1945, 'Issue', 15, '', '2020-09-03 08:29:44+07', false);
INSERT INTO public.journals VALUES (6780, 1949, 'Issue', 15, '', '2020-09-03 08:30:07+07', false);
INSERT INTO public.journals VALUES (6781, 1947, 'Issue', 15, '', '2020-09-03 08:30:25+07', false);
INSERT INTO public.journals VALUES (6782, 1939, 'Issue', 15, '', '2020-09-03 08:30:55+07', false);
INSERT INTO public.journals VALUES (6783, 1941, 'Issue', 15, '', '2020-09-03 08:31:17+07', false);
INSERT INTO public.journals VALUES (6784, 1937, 'Issue', 15, '', '2020-09-03 08:31:33+07', false);
INSERT INTO public.journals VALUES (6785, 1942, 'Issue', 15, '', '2020-09-03 08:31:47+07', false);
INSERT INTO public.journals VALUES (6786, 1940, 'Issue', 6, '', '2020-09-03 08:32:17+07', false);
INSERT INTO public.journals VALUES (6787, 1923, 'Issue', 15, NULL, '2020-09-03 08:32:51+07', false);
INSERT INTO public.journals VALUES (6788, 1924, 'Issue', 15, NULL, '2020-09-03 08:32:52+07', false);
INSERT INTO public.journals VALUES (6789, 1927, 'Issue', 15, NULL, '2020-09-03 08:32:52+07', false);
INSERT INTO public.journals VALUES (6790, 1937, 'Issue', 15, NULL, '2020-09-03 08:32:52+07', false);
INSERT INTO public.journals VALUES (6791, 1938, 'Issue', 15, NULL, '2020-09-03 08:32:52+07', false);
INSERT INTO public.journals VALUES (6792, 1939, 'Issue', 15, NULL, '2020-09-03 08:32:52+07', false);
INSERT INTO public.journals VALUES (6793, 1941, 'Issue', 15, NULL, '2020-09-03 08:32:52+07', false);
INSERT INTO public.journals VALUES (6794, 1942, 'Issue', 15, NULL, '2020-09-03 08:32:53+07', false);
INSERT INTO public.journals VALUES (6795, 1943, 'Issue', 15, NULL, '2020-09-03 08:32:53+07', false);
INSERT INTO public.journals VALUES (6796, 1944, 'Issue', 15, NULL, '2020-09-03 08:32:53+07', false);
INSERT INTO public.journals VALUES (6797, 1945, 'Issue', 15, NULL, '2020-09-03 08:32:53+07', false);
INSERT INTO public.journals VALUES (6798, 1947, 'Issue', 15, NULL, '2020-09-03 08:32:53+07', false);
INSERT INTO public.journals VALUES (6799, 1948, 'Issue', 15, NULL, '2020-09-03 08:32:53+07', false);
INSERT INTO public.journals VALUES (6800, 1949, 'Issue', 15, NULL, '2020-09-03 08:32:53+07', false);
INSERT INTO public.journals VALUES (6801, 1923, 'Issue', 15, NULL, '2020-09-03 08:33:14+07', false);
INSERT INTO public.journals VALUES (6802, 1924, 'Issue', 15, NULL, '2020-09-03 08:33:14+07', false);
INSERT INTO public.journals VALUES (6803, 1927, 'Issue', 15, NULL, '2020-09-03 08:33:14+07', false);
INSERT INTO public.journals VALUES (6804, 1937, 'Issue', 15, NULL, '2020-09-03 08:33:14+07', false);
INSERT INTO public.journals VALUES (6805, 1938, 'Issue', 15, NULL, '2020-09-03 08:33:14+07', false);
INSERT INTO public.journals VALUES (6806, 1939, 'Issue', 15, NULL, '2020-09-03 08:33:14+07', false);
INSERT INTO public.journals VALUES (6807, 1941, 'Issue', 15, NULL, '2020-09-03 08:33:14+07', false);
INSERT INTO public.journals VALUES (6808, 1942, 'Issue', 15, NULL, '2020-09-03 08:33:14+07', false);
INSERT INTO public.journals VALUES (6809, 1943, 'Issue', 15, NULL, '2020-09-03 08:33:15+07', false);
INSERT INTO public.journals VALUES (6810, 1944, 'Issue', 15, NULL, '2020-09-03 08:33:15+07', false);
INSERT INTO public.journals VALUES (6811, 1945, 'Issue', 15, NULL, '2020-09-03 08:33:15+07', false);
INSERT INTO public.journals VALUES (6812, 1947, 'Issue', 15, NULL, '2020-09-03 08:33:15+07', false);
INSERT INTO public.journals VALUES (6813, 1948, 'Issue', 15, NULL, '2020-09-03 08:33:15+07', false);
INSERT INTO public.journals VALUES (6814, 1949, 'Issue', 15, NULL, '2020-09-03 08:33:15+07', false);
INSERT INTO public.journals VALUES (6815, 1923, 'Issue', 15, NULL, '2020-09-03 08:33:31+07', false);
INSERT INTO public.journals VALUES (6816, 1924, 'Issue', 15, NULL, '2020-09-03 08:33:31+07', false);
INSERT INTO public.journals VALUES (6817, 1927, 'Issue', 15, NULL, '2020-09-03 08:33:31+07', false);
INSERT INTO public.journals VALUES (6818, 1937, 'Issue', 15, NULL, '2020-09-03 08:33:32+07', false);
INSERT INTO public.journals VALUES (6819, 1938, 'Issue', 15, NULL, '2020-09-03 08:33:32+07', false);
INSERT INTO public.journals VALUES (6820, 1939, 'Issue', 15, NULL, '2020-09-03 08:33:32+07', false);
INSERT INTO public.journals VALUES (6821, 1941, 'Issue', 15, NULL, '2020-09-03 08:33:32+07', false);
INSERT INTO public.journals VALUES (6822, 1942, 'Issue', 15, NULL, '2020-09-03 08:33:32+07', false);
INSERT INTO public.journals VALUES (6823, 1943, 'Issue', 15, NULL, '2020-09-03 08:33:32+07', false);
INSERT INTO public.journals VALUES (6824, 1944, 'Issue', 15, NULL, '2020-09-03 08:33:32+07', false);
INSERT INTO public.journals VALUES (6825, 1945, 'Issue', 15, NULL, '2020-09-03 08:33:33+07', false);
INSERT INTO public.journals VALUES (6826, 1947, 'Issue', 15, NULL, '2020-09-03 08:33:33+07', false);
INSERT INTO public.journals VALUES (6827, 1948, 'Issue', 15, NULL, '2020-09-03 08:33:33+07', false);
INSERT INTO public.journals VALUES (6828, 1949, 'Issue', 15, NULL, '2020-09-03 08:33:33+07', false);
INSERT INTO public.journals VALUES (6829, 1946, 'Issue', 6, '', '2020-09-03 08:34:19+07', false);
INSERT INTO public.journals VALUES (6830, 1950, 'Issue', 13, '', '2020-09-03 08:39:35+07', false);
INSERT INTO public.journals VALUES (6831, 1952, 'Issue', 5, NULL, '2020-09-03 09:04:49+07', false);
INSERT INTO public.journals VALUES (6832, 1946, 'Issue', 6, '', '2020-09-03 10:05:56+07', false);
INSERT INTO public.journals VALUES (6833, 1940, 'Issue', 6, '', '2020-09-03 10:06:14+07', false);
INSERT INTO public.journals VALUES (6834, 1920, 'Issue', 19, '', '2020-09-03 10:20:40+07', false);
INSERT INTO public.journals VALUES (6835, 1602, 'Issue', 19, '', '2020-09-03 10:50:44+07', false);
INSERT INTO public.journals VALUES (6836, 1143, 'Issue', 19, '', '2020-09-03 10:52:06+07', false);
INSERT INTO public.journals VALUES (6837, 1668, 'Issue', 19, '', '2020-09-03 10:52:31+07', false);
INSERT INTO public.journals VALUES (6838, 1133, 'Issue', 19, '', '2020-09-03 10:55:55+07', false);
INSERT INTO public.journals VALUES (6839, 1955, 'Issue', 19, '', '2020-09-03 13:33:49+07', false);
INSERT INTO public.journals VALUES (6840, 1955, 'Issue', 19, NULL, '2020-09-03 13:36:12+07', false);
INSERT INTO public.journals VALUES (6841, 1956, 'Issue', 19, NULL, '2020-09-03 13:36:19+07', false);
INSERT INTO public.journals VALUES (6842, 1957, 'Issue', 19, NULL, '2020-09-03 13:36:25+07', false);
INSERT INTO public.journals VALUES (6843, 1958, 'Issue', 19, NULL, '2020-09-03 13:36:30+07', false);
INSERT INTO public.journals VALUES (6844, 1919, 'Issue', 12, NULL, '2020-09-03 13:37:16+07', false);
INSERT INTO public.journals VALUES (6845, 1919, 'Issue', 12, '', '2020-09-03 13:38:03+07', false);
INSERT INTO public.journals VALUES (6846, 1960, 'Issue', 19, NULL, '2020-09-03 13:41:33+07', false);
INSERT INTO public.journals VALUES (6847, 1961, 'Issue', 19, NULL, '2020-09-03 13:41:46+07', false);
INSERT INTO public.journals VALUES (6848, 1962, 'Issue', 19, NULL, '2020-09-03 13:41:54+07', false);
INSERT INTO public.journals VALUES (6849, 1963, 'Issue', 19, NULL, '2020-09-03 13:45:38+07', false);
INSERT INTO public.journals VALUES (6850, 1964, 'Issue', 15, '', '2020-09-03 13:59:59+07', false);
INSERT INTO public.journals VALUES (6851, 1968, 'Issue', 12, '', '2020-09-03 14:07:41+07', false);
INSERT INTO public.journals VALUES (6852, 1968, 'Issue', 12, '', '2020-09-03 14:08:30+07', false);
INSERT INTO public.journals VALUES (6853, 1968, 'Issue', 12, NULL, '2020-09-03 14:09:41+07', false);
INSERT INTO public.journals VALUES (6854, 1935, 'Issue', 5, '', '2020-09-03 14:46:10+07', false);
INSERT INTO public.journals VALUES (6855, 1935, 'Issue', 5, '', '2020-09-03 14:46:19+07', false);
INSERT INTO public.journals VALUES (6856, 1955, 'Issue', 5, '', '2020-09-03 15:20:32+07', false);
INSERT INTO public.journals VALUES (6857, 1956, 'Issue', 5, '', '2020-09-03 15:20:32+07', false);
INSERT INTO public.journals VALUES (6858, 1957, 'Issue', 5, '', '2020-09-03 15:20:32+07', false);
INSERT INTO public.journals VALUES (6859, 1958, 'Issue', 5, '', '2020-09-03 15:20:33+07', false);
INSERT INTO public.journals VALUES (6860, 1955, 'Issue', 5, '', '2020-09-03 15:20:58+07', false);
INSERT INTO public.journals VALUES (6861, 1956, 'Issue', 5, '', '2020-09-03 15:20:59+07', false);
INSERT INTO public.journals VALUES (6862, 1957, 'Issue', 5, '', '2020-09-03 15:20:59+07', false);
INSERT INTO public.journals VALUES (6863, 1958, 'Issue', 5, '', '2020-09-03 15:20:59+07', false);
INSERT INTO public.journals VALUES (6864, 1960, 'Issue', 5, '', '2020-09-03 15:20:59+07', false);
INSERT INTO public.journals VALUES (6865, 1961, 'Issue', 5, '', '2020-09-03 15:20:59+07', false);
INSERT INTO public.journals VALUES (6866, 1962, 'Issue', 5, '', '2020-09-03 15:20:59+07', false);
INSERT INTO public.journals VALUES (6867, 1953, 'Issue', 6, '', '2020-09-03 16:01:57+07', false);
INSERT INTO public.journals VALUES (6868, 1946, 'Issue', 6, NULL, '2020-09-03 16:02:08+07', false);
INSERT INTO public.journals VALUES (6869, 1946, 'Issue', 6, '', '2020-09-03 16:02:41+07', false);
INSERT INTO public.journals VALUES (6870, 1940, 'Issue', 6, '', '2020-09-03 16:03:00+07', false);
INSERT INTO public.journals VALUES (6871, 1920, 'Issue', 19, '', '2020-09-04 08:06:07+07', false);
INSERT INTO public.journals VALUES (6872, 1970, 'Issue', 41, '', '2020-09-04 08:10:47+07', false);
INSERT INTO public.journals VALUES (6873, 1950, 'Issue', 4, NULL, '2020-09-04 08:45:24+07', false);
INSERT INTO public.journals VALUES (6874, 1950, 'Issue', 4, NULL, '2020-09-04 08:45:33+07', false);
INSERT INTO public.journals VALUES (6875, 1969, 'Issue', 6, '', '2020-09-04 09:37:22+07', false);
INSERT INTO public.journals VALUES (6876, 1968, 'Issue', 40, NULL, '2020-09-04 09:53:10+07', false);
INSERT INTO public.journals VALUES (6877, 1968, 'Issue', 40, NULL, '2020-09-04 09:53:24+07', false);
INSERT INTO public.journals VALUES (6878, 1971, 'Issue', 12, '', '2020-09-04 09:53:55+07', false);
INSERT INTO public.journals VALUES (6879, 1972, 'Issue', 4, '', '2020-09-04 10:09:22+07', false);
INSERT INTO public.journals VALUES (6880, 1973, 'Issue', 4, '', '2020-09-04 10:09:23+07', false);
INSERT INTO public.journals VALUES (6881, 1974, 'Issue', 4, '', '2020-09-04 10:09:23+07', false);
INSERT INTO public.journals VALUES (6883, 1972, 'Issue', 4, NULL, '2020-09-04 10:13:34+07', false);
INSERT INTO public.journals VALUES (6884, 1973, 'Issue', 4, NULL, '2020-09-04 10:13:35+07', false);
INSERT INTO public.journals VALUES (6885, 1974, 'Issue', 4, NULL, '2020-09-04 10:13:35+07', false);
INSERT INTO public.journals VALUES (6887, 1971, 'Issue', 12, '', '2020-09-04 10:34:41+07', false);
INSERT INTO public.journals VALUES (6888, 1976, 'Issue', 12, '', '2020-09-04 10:43:02+07', false);
INSERT INTO public.journals VALUES (6889, 1970, 'Issue', 41, '', '2020-09-04 10:52:40+07', false);
INSERT INTO public.journals VALUES (6890, 1969, 'Issue', 6, NULL, '2020-09-04 14:21:08+07', false);
INSERT INTO public.journals VALUES (6891, 1969, 'Issue', 6, NULL, '2020-09-04 14:21:14+07', false);
INSERT INTO public.journals VALUES (6892, 1978, 'Issue', 41, '', '2020-09-05 09:01:54+07', false);
INSERT INTO public.journals VALUES (6893, 1978, 'Issue', 5, NULL, '2020-09-05 09:27:06+07', false);
INSERT INTO public.journals VALUES (6894, 1978, 'Issue', 5, '', '2020-09-05 09:27:29+07', false);
INSERT INTO public.journals VALUES (6895, 1978, 'Issue', 5, '', '2020-09-05 09:28:27+07', false);
INSERT INTO public.journals VALUES (6896, 1960, 'Issue', 5, '', '2020-09-05 09:29:04+07', false);
INSERT INTO public.journals VALUES (6897, 1970, 'Issue', 41, '', '2020-09-05 09:35:26+07', false);
INSERT INTO public.journals VALUES (6898, 1978, 'Issue', 41, '', '2020-09-05 09:37:01+07', false);
INSERT INTO public.journals VALUES (6899, 1981, 'Issue', 39, '', '2020-09-05 09:40:10+07', false);
INSERT INTO public.journals VALUES (6900, 1934, 'Issue', 19, '', '2020-09-05 09:47:49+07', false);
INSERT INTO public.journals VALUES (6901, 1934, 'Issue', 19, NULL, '2020-09-05 09:48:10+07', false);
INSERT INTO public.journals VALUES (6902, 1133, 'Issue', 19, '', '2020-09-05 09:50:02+07', false);
INSERT INTO public.journals VALUES (6903, 1135, 'Issue', 19, '', '2020-09-05 09:51:04+07', false);
INSERT INTO public.journals VALUES (6904, 1137, 'Issue', 19, '', '2020-09-05 09:51:37+07', false);
INSERT INTO public.journals VALUES (6905, 1134, 'Issue', 19, '', '2020-09-05 09:54:00+07', false);
INSERT INTO public.journals VALUES (6906, 1136, 'Issue', 19, '', '2020-09-05 09:54:35+07', false);
INSERT INTO public.journals VALUES (6907, 1138, 'Issue', 19, '', '2020-09-05 09:55:19+07', false);
INSERT INTO public.journals VALUES (6908, 1139, 'Issue', 19, '', '2020-09-05 09:55:47+07', false);
INSERT INTO public.journals VALUES (6909, 1554, 'Issue', 19, NULL, '2020-09-05 09:56:25+07', false);
INSERT INTO public.journals VALUES (6910, 1140, 'Issue', 19, '', '2020-09-05 09:58:05+07', false);
INSERT INTO public.journals VALUES (6911, 1624, 'Issue', 19, '', '2020-09-05 09:59:41+07', false);
INSERT INTO public.journals VALUES (6912, 1623, 'Issue', 19, '', '2020-09-05 10:00:02+07', false);
INSERT INTO public.journals VALUES (6913, 1183, 'Issue', 19, '', '2020-09-05 10:01:26+07', false);
INSERT INTO public.journals VALUES (6914, 1186, 'Issue', 19, '', '2020-09-05 10:01:46+07', false);
INSERT INTO public.journals VALUES (6915, 1184, 'Issue', 19, '', '2020-09-05 10:02:03+07', false);
INSERT INTO public.journals VALUES (6916, 1185, 'Issue', 19, '', '2020-09-05 10:02:32+07', false);
INSERT INTO public.journals VALUES (6917, 1178, 'Issue', 19, '', '2020-09-05 10:02:58+07', false);
INSERT INTO public.journals VALUES (6918, 1902, 'Issue', 19, '', '2020-09-05 10:04:49+07', false);
INSERT INTO public.journals VALUES (6919, 1145, 'Issue', 19, '', '2020-09-05 10:05:36+07', false);
INSERT INTO public.journals VALUES (6920, 1600, 'Issue', 19, NULL, '2020-09-05 10:06:34+07', false);
INSERT INTO public.journals VALUES (6921, 1554, 'Issue', 19, '', '2020-09-05 10:07:27+07', false);
INSERT INTO public.journals VALUES (6922, 1146, 'Issue', 19, NULL, '2020-09-05 10:07:52+07', false);
INSERT INTO public.journals VALUES (6923, 1178, 'Issue', 19, NULL, '2020-09-05 10:08:06+07', false);
INSERT INTO public.journals VALUES (6924, 1179, 'Issue', 19, NULL, '2020-09-05 10:08:19+07', false);
INSERT INTO public.journals VALUES (6925, 1640, 'Issue', 19, NULL, '2020-09-05 10:08:35+07', false);
INSERT INTO public.journals VALUES (6926, 1641, 'Issue', 19, NULL, '2020-09-05 10:08:48+07', false);
INSERT INTO public.journals VALUES (6927, 1601, 'Issue', 19, NULL, '2020-09-05 10:09:04+07', false);
INSERT INTO public.journals VALUES (6928, 1145, 'Issue', 19, NULL, '2020-09-05 10:09:14+07', false);
INSERT INTO public.journals VALUES (6929, 1389, 'Issue', 19, NULL, '2020-09-05 10:09:31+07', false);
INSERT INTO public.journals VALUES (6930, 1390, 'Issue', 19, NULL, '2020-09-05 10:09:43+07', false);
INSERT INTO public.journals VALUES (6931, 1144, 'Issue', 19, NULL, '2020-09-05 10:09:57+07', false);
INSERT INTO public.journals VALUES (6932, 1146, 'Issue', 19, '', '2020-09-05 10:11:24+07', false);
INSERT INTO public.journals VALUES (6933, 1669, 'Issue', 19, '', '2020-09-05 10:11:59+07', false);
INSERT INTO public.journals VALUES (6934, 1885, 'Issue', 19, '', '2020-09-05 10:12:36+07', false);
INSERT INTO public.journals VALUES (6935, 1178, 'Issue', 19, '', '2020-09-05 10:12:57+07', false);
INSERT INTO public.journals VALUES (6936, 1179, 'Issue', 19, '', '2020-09-05 10:13:55+07', false);
INSERT INTO public.journals VALUES (6937, 1640, 'Issue', 19, '', '2020-09-05 10:14:24+07', false);
INSERT INTO public.journals VALUES (6938, 1982, 'Issue', 13, 'Hiện trên phần mềm trang thông tin người dùng chưa có, do đó tạo mới trang:
- Cấu hình router
- Tạo component
- Tạo giao diện
- Kết nối api

Tại trang này có thêm tính năng đổi mật khẩu. Khi click vào button đổi mật khẩu thì giao diện sẽ xuất hiện dialog đổi mật khẩu. Gọi api thực hiện đổi mật khẩu.
![](clipboard-202009051022-otpob.png)

Góc trái màn hình thay dòng chữ đổi mật khẩu thành thông tin người dùng. Khi click vào dòng chữ đó thì chuyển sang trang thông tin người dùng.
Dùng api tài khoản: Patch /tai-khoan/{id} để update thông tin người dùng và đổi mật khẩu.', '2020-09-05 10:24:21+07', false);
INSERT INTO public.journals VALUES (6939, 1641, 'Issue', 19, '', '2020-09-05 10:26:23+07', false);
INSERT INTO public.journals VALUES (6940, 1144, 'Issue', 19, '', '2020-09-05 10:26:56+07', false);
INSERT INTO public.journals VALUES (6941, 1389, 'Issue', 19, '', '2020-09-05 10:27:17+07', false);
INSERT INTO public.journals VALUES (6942, 1390, 'Issue', 19, '', '2020-09-05 10:45:41+07', false);
INSERT INTO public.journals VALUES (6943, 1180, 'Issue', 19, '', '2020-09-05 10:49:40+07', false);
INSERT INTO public.journals VALUES (6944, 1154, 'Issue', 19, '', '2020-09-05 10:50:17+07', false);
INSERT INTO public.journals VALUES (6945, 1155, 'Issue', 19, '', '2020-09-05 10:50:50+07', false);
INSERT INTO public.journals VALUES (6946, 1156, 'Issue', 19, '', '2020-09-05 10:51:07+07', false);
INSERT INTO public.journals VALUES (6947, 1157, 'Issue', 19, '', '2020-09-05 10:51:27+07', false);
INSERT INTO public.journals VALUES (6948, 1158, 'Issue', 19, '', '2020-09-05 10:51:53+07', false);
INSERT INTO public.journals VALUES (6949, 1159, 'Issue', 19, '', '2020-09-05 10:52:08+07', false);
INSERT INTO public.journals VALUES (6950, 1160, 'Issue', 19, '', '2020-09-05 10:52:21+07', false);
INSERT INTO public.journals VALUES (6951, 1161, 'Issue', 19, '', '2020-09-05 10:52:40+07', false);
INSERT INTO public.journals VALUES (6952, 1162, 'Issue', 19, '', '2020-09-05 10:52:55+07', false);
INSERT INTO public.journals VALUES (6953, 1163, 'Issue', 19, '', '2020-09-05 10:53:09+07', false);
INSERT INTO public.journals VALUES (6954, 1164, 'Issue', 19, '', '2020-09-05 10:53:30+07', false);
INSERT INTO public.journals VALUES (6955, 1165, 'Issue', 19, '', '2020-09-05 10:53:46+07', false);
INSERT INTO public.journals VALUES (6956, 1166, 'Issue', 19, '', '2020-09-05 10:54:03+07', false);
INSERT INTO public.journals VALUES (6957, 1971, 'Issue', 12, '', '2020-09-07 08:27:40+07', false);
INSERT INTO public.journals VALUES (6958, 1985, 'Issue', 12, '', '2020-09-07 08:31:52+07', false);
INSERT INTO public.journals VALUES (6959, 1986, 'Issue', 12, '', '2020-09-07 08:31:52+07', false);
INSERT INTO public.journals VALUES (6960, 1985, 'Issue', 12, NULL, '2020-09-07 08:32:06+07', false);
INSERT INTO public.journals VALUES (6961, 1984, 'Issue', 12, '', '2020-09-07 08:32:29+07', false);
INSERT INTO public.journals VALUES (6962, 1955, 'Issue', 12, '', '2020-09-07 08:32:54+07', false);
INSERT INTO public.journals VALUES (6963, 1956, 'Issue', 12, NULL, '2020-09-07 08:33:15+07', false);
INSERT INTO public.journals VALUES (6964, 1956, 'Issue', 12, NULL, '2020-09-07 08:33:25+07', false);
INSERT INTO public.journals VALUES (6965, 1956, 'Issue', 12, '', '2020-09-07 08:33:41+07', false);
INSERT INTO public.journals VALUES (6966, 1957, 'Issue', 12, '', '2020-09-07 08:35:01+07', false);
INSERT INTO public.journals VALUES (6967, 1957, 'Issue', 12, '', '2020-09-07 08:35:23+07', false);
INSERT INTO public.journals VALUES (6968, 1957, 'Issue', 12, '', '2020-09-07 08:37:50+07', false);
INSERT INTO public.journals VALUES (6969, 1958, 'Issue', 12, '', '2020-09-07 08:38:47+07', false);
INSERT INTO public.journals VALUES (6970, 1986, 'Issue', 12, '', '2020-09-07 08:39:19+07', false);
INSERT INTO public.journals VALUES (6971, 1961, 'Issue', 12, '', '2020-09-07 08:40:03+07', false);
INSERT INTO public.journals VALUES (6972, 1962, 'Issue', 12, '', '2020-09-07 08:40:25+07', false);
INSERT INTO public.journals VALUES (6973, 1976, 'Issue', 12, '', '2020-09-07 08:40:51+07', false);
INSERT INTO public.journals VALUES (6974, 1977, 'Issue', 12, '', '2020-09-07 08:41:14+07', false);
INSERT INTO public.journals VALUES (6975, 1957, 'Issue', 12, '', '2020-09-07 08:42:02+07', false);
INSERT INTO public.journals VALUES (6976, 1955, 'Issue', 12, '', '2020-09-07 08:44:17+07', false);
INSERT INTO public.journals VALUES (6977, 1897, 'Issue', 33, NULL, '2020-09-07 13:15:49+07', false);
INSERT INTO public.journals VALUES (6978, 1896, 'Issue', 33, NULL, '2020-09-07 13:15:54+07', false);
INSERT INTO public.journals VALUES (6979, 1912, 'Issue', 33, NULL, '2020-09-07 13:16:11+07', false);
INSERT INTO public.journals VALUES (6980, 1988, 'Issue', 33, '', '2020-09-07 13:23:47+07', false);
INSERT INTO public.journals VALUES (6981, 1989, 'Issue', 33, '', '2020-09-07 14:02:24+07', false);
INSERT INTO public.journals VALUES (6982, 1981, 'Issue', 39, '', '2020-09-07 14:03:24+07', false);
INSERT INTO public.journals VALUES (6983, 1989, 'Issue', 33, '', '2020-09-07 14:04:00+07', false);
INSERT INTO public.journals VALUES (6984, 1988, 'Issue', 33, NULL, '2020-09-07 14:04:44+07', false);
INSERT INTO public.journals VALUES (6985, 1990, 'Issue', 41, 'odata/ChiTietQCVN : Chi tiết quy chuẩn Việt Nam
odata/DMDiemQuanTrac : Danh mục điểm quan trắc
DMDiemQuanTrac/ThemDiemQT: Thêm điểm quan trắc
DMDiemQuanTrac/CapNhatDiemQT: cập nhật điểm quan trắc
DMDiemQuanTrac/Tree: Tree
DMDiemQuanTrac/DanhSachTheoTrangThai: Danh sách theo dõi trạng thái
odata/DMLoaiMoiTruong: Danh mục loại môi trường
odata/DMLoaiQuanTrac : Danh mục loại quan trắc
odata/DMQCVN: Danh mục quy chuẩn Việt Nam
odata/DMThongSoDo: Danh mục thông số đo
odata/DonViTinh: Đơn vị tính
odata/LoaiDuAn: Loại dự án
odata/LoaiHoSo: Loại hồ sơ
odata/HANHCHINHXA: hành chính Xã
odata/HANHCHINHHUYEN: hành chính Huyện', '2020-09-07 14:06:49+07', false);
INSERT INTO public.journals VALUES (6986, 1987, 'Issue', 33, NULL, '2020-09-07 14:10:51+07', false);
INSERT INTO public.journals VALUES (6987, 1896, 'Issue', 33, NULL, '2020-09-07 14:11:13+07', false);
INSERT INTO public.journals VALUES (6988, 1897, 'Issue', 33, NULL, '2020-09-07 14:11:27+07', false);
INSERT INTO public.journals VALUES (6989, 1912, 'Issue', 33, NULL, '2020-09-07 14:11:36+07', false);
INSERT INTO public.journals VALUES (6990, 1988, 'Issue', 33, NULL, '2020-09-07 14:14:15+07', false);
INSERT INTO public.journals VALUES (6991, 1989, 'Issue', 33, NULL, '2020-09-07 14:14:18+07', false);
INSERT INTO public.journals VALUES (6992, 1991, 'Issue', 19, NULL, '2020-09-07 14:17:30+07', false);
INSERT INTO public.journals VALUES (6993, 1992, 'Issue', 41, NULL, '2020-09-07 14:19:57+07', false);
INSERT INTO public.journals VALUES (6994, 1993, 'Issue', 41, NULL, '2020-09-07 14:21:22+07', false);
INSERT INTO public.journals VALUES (6995, 1991, 'Issue', 41, '', '2020-09-07 14:22:20+07', false);
INSERT INTO public.journals VALUES (6996, 1958, 'Issue', 12, '', '2020-09-07 16:18:13+07', false);
INSERT INTO public.journals VALUES (6997, 1985, 'Issue', 12, NULL, '2020-09-07 16:19:54+07', false);
INSERT INTO public.journals VALUES (6998, 1985, 'Issue', 12, NULL, '2020-09-07 16:20:03+07', false);
INSERT INTO public.journals VALUES (6999, 1984, 'Issue', 12, NULL, '2020-09-07 16:20:17+07', false);
INSERT INTO public.journals VALUES (7000, 1984, 'Issue', 12, NULL, '2020-09-07 16:20:22+07', false);
INSERT INTO public.journals VALUES (7001, 1955, 'Issue', 12, NULL, '2020-09-07 16:21:21+07', false);
INSERT INTO public.journals VALUES (7002, 1956, 'Issue', 12, NULL, '2020-09-07 16:21:21+07', false);
INSERT INTO public.journals VALUES (7003, 1958, 'Issue', 12, NULL, '2020-09-07 16:21:21+07', false);
INSERT INTO public.journals VALUES (7004, 1960, 'Issue', 12, NULL, '2020-09-07 16:21:22+07', false);
INSERT INTO public.journals VALUES (7005, 1961, 'Issue', 12, NULL, '2020-09-07 16:21:22+07', false);
INSERT INTO public.journals VALUES (7006, 1962, 'Issue', 12, NULL, '2020-09-07 16:21:22+07', false);
INSERT INTO public.journals VALUES (7007, 1963, 'Issue', 12, NULL, '2020-09-07 16:21:22+07', false);
INSERT INTO public.journals VALUES (7008, 1976, 'Issue', 12, NULL, '2020-09-07 16:21:22+07', false);
INSERT INTO public.journals VALUES (7009, 1977, 'Issue', 12, NULL, '2020-09-07 16:21:22+07', false);
INSERT INTO public.journals VALUES (7010, 1984, 'Issue', 12, NULL, '2020-09-07 16:21:22+07', false);
INSERT INTO public.journals VALUES (7011, 1980, 'Issue', 37, NULL, '2020-09-07 19:28:42+07', false);
INSERT INTO public.journals VALUES (7012, 1992, 'Issue', 41, '', '2020-09-08 07:50:58+07', false);
INSERT INTO public.journals VALUES (7013, 1958, 'Issue', 5, '', '2020-09-08 08:11:53+07', false);
INSERT INTO public.journals VALUES (7014, 1994, 'Issue', 5, '', '2020-09-08 08:27:36+07', false);
INSERT INTO public.journals VALUES (7015, 1978, 'Issue', 41, '', '2020-09-08 08:42:06+07', false);
INSERT INTO public.journals VALUES (7017, 1181, 'Issue', 6, '', '2020-09-08 10:25:50+07', false);
INSERT INTO public.journals VALUES (7018, 1952, 'Issue', 13, NULL, '2020-09-08 10:42:49+07', false);
INSERT INTO public.journals VALUES (7019, 1952, 'Issue', 13, NULL, '2020-09-08 10:43:02+07', false);
INSERT INTO public.journals VALUES (7020, 1977, 'Issue', 12, NULL, '2020-09-08 10:53:01+07', false);
INSERT INTO public.journals VALUES (7021, 1977, 'Issue', 12, NULL, '2020-09-08 10:55:05+07', false);
INSERT INTO public.journals VALUES (7022, 1976, 'Issue', 12, '', '2020-09-08 11:04:00+07', false);
INSERT INTO public.journals VALUES (7023, 1955, 'Issue', 12, '', '2020-09-08 11:05:02+07', false);
INSERT INTO public.journals VALUES (7024, 1957, 'Issue', 12, '', '2020-09-08 11:05:02+07', false);
INSERT INTO public.journals VALUES (7025, 1962, 'Issue', 12, '', '2020-09-08 11:05:19+07', false);
INSERT INTO public.journals VALUES (7026, 1986, 'Issue', 12, '', '2020-09-08 11:06:12+07', false);
INSERT INTO public.journals VALUES (7027, 1986, 'Issue', 12, '', '2020-09-08 11:06:51+07', false);
INSERT INTO public.journals VALUES (7028, 1986, 'Issue', 12, '', '2020-09-08 11:07:13+07', false);
INSERT INTO public.journals VALUES (7029, 1962, 'Issue', 12, '', '2020-09-08 11:07:33+07', false);
INSERT INTO public.journals VALUES (7030, 1962, 'Issue', 12, '', '2020-09-08 11:08:01+07', false);
INSERT INTO public.journals VALUES (7032, 1992, 'Issue', 41, '', '2020-09-08 13:34:08+07', false);
INSERT INTO public.journals VALUES (7033, 1992, 'Issue', 41, '', '2020-09-08 13:34:17+07', false);
INSERT INTO public.journals VALUES (7034, 1972, 'Issue', 4, NULL, '2020-09-09 08:03:27+07', false);
INSERT INTO public.journals VALUES (7035, 1973, 'Issue', 4, NULL, '2020-09-09 08:03:28+07', false);
INSERT INTO public.journals VALUES (7036, 1974, 'Issue', 4, NULL, '2020-09-09 08:03:28+07', false);
INSERT INTO public.journals VALUES (7037, 1973, 'Issue', 4, NULL, '2020-09-09 08:03:45+07', false);
INSERT INTO public.journals VALUES (7038, 1974, 'Issue', 4, NULL, '2020-09-09 08:03:45+07', false);
INSERT INTO public.journals VALUES (7039, 1972, 'Issue', 4, NULL, '2020-09-09 08:03:52+07', false);
INSERT INTO public.journals VALUES (7040, 1503, 'Issue', 17, NULL, '2020-09-09 08:09:36+07', false);
INSERT INTO public.journals VALUES (7041, 1504, 'Issue', 17, NULL, '2020-09-09 08:09:37+07', false);
INSERT INTO public.journals VALUES (7042, 1507, 'Issue', 17, NULL, '2020-09-09 08:09:37+07', false);
INSERT INTO public.journals VALUES (7043, 1508, 'Issue', 17, NULL, '2020-09-09 08:09:37+07', false);
INSERT INTO public.journals VALUES (7044, 1509, 'Issue', 17, NULL, '2020-09-09 08:09:37+07', false);
INSERT INTO public.journals VALUES (7045, 1510, 'Issue', 17, NULL, '2020-09-09 08:09:38+07', false);
INSERT INTO public.journals VALUES (7046, 1680, 'Issue', 17, NULL, '2020-09-09 08:09:38+07', false);
INSERT INTO public.journals VALUES (7047, 1681, 'Issue', 17, NULL, '2020-09-09 08:09:38+07', false);
INSERT INTO public.journals VALUES (7048, 1682, 'Issue', 17, NULL, '2020-09-09 08:09:39+07', false);
INSERT INTO public.journals VALUES (7049, 1766, 'Issue', 17, NULL, '2020-09-09 08:09:39+07', false);
INSERT INTO public.journals VALUES (7050, 1767, 'Issue', 17, NULL, '2020-09-09 08:09:39+07', false);
INSERT INTO public.journals VALUES (7051, 1768, 'Issue', 17, NULL, '2020-09-09 08:09:39+07', false);
INSERT INTO public.journals VALUES (7052, 1769, 'Issue', 17, NULL, '2020-09-09 08:09:40+07', false);
INSERT INTO public.journals VALUES (7053, 1771, 'Issue', 17, NULL, '2020-09-09 08:09:40+07', false);
INSERT INTO public.journals VALUES (7054, 1776, 'Issue', 17, NULL, '2020-09-09 08:09:40+07', false);
INSERT INTO public.journals VALUES (7055, 1432, 'Issue', 17, NULL, '2020-09-09 08:10:02+07', false);
INSERT INTO public.journals VALUES (7056, 1433, 'Issue', 17, NULL, '2020-09-09 08:10:02+07', false);
INSERT INTO public.journals VALUES (7057, 1488, 'Issue', 17, NULL, '2020-09-09 08:10:02+07', false);
INSERT INTO public.journals VALUES (7058, 1495, 'Issue', 17, NULL, '2020-09-09 08:10:03+07', false);
INSERT INTO public.journals VALUES (7059, 1496, 'Issue', 17, NULL, '2020-09-09 08:10:03+07', false);
INSERT INTO public.journals VALUES (7060, 1498, 'Issue', 17, NULL, '2020-09-09 08:10:03+07', false);
INSERT INTO public.journals VALUES (7061, 1567, 'Issue', 17, NULL, '2020-09-09 08:10:03+07', false);
INSERT INTO public.journals VALUES (7062, 1568, 'Issue', 17, NULL, '2020-09-09 08:10:04+07', false);
INSERT INTO public.journals VALUES (7063, 1569, 'Issue', 17, NULL, '2020-09-09 08:10:04+07', false);
INSERT INTO public.journals VALUES (7064, 1570, 'Issue', 17, NULL, '2020-09-09 08:10:05+07', false);
INSERT INTO public.journals VALUES (7065, 1710, 'Issue', 17, NULL, '2020-09-09 08:10:23+07', false);
INSERT INTO public.journals VALUES (7066, 1711, 'Issue', 17, NULL, '2020-09-09 08:10:23+07', false);
INSERT INTO public.journals VALUES (7067, 1712, 'Issue', 17, NULL, '2020-09-09 08:10:23+07', false);
INSERT INTO public.journals VALUES (7068, 1716, 'Issue', 17, NULL, '2020-09-09 08:10:23+07', false);
INSERT INTO public.journals VALUES (7069, 1717, 'Issue', 17, NULL, '2020-09-09 08:10:23+07', false);
INSERT INTO public.journals VALUES (7070, 1718, 'Issue', 17, NULL, '2020-09-09 08:10:23+07', false);
INSERT INTO public.journals VALUES (7071, 1719, 'Issue', 17, NULL, '2020-09-09 08:10:23+07', false);
INSERT INTO public.journals VALUES (7072, 1777, 'Issue', 17, NULL, '2020-09-09 08:10:24+07', false);
INSERT INTO public.journals VALUES (7073, 1778, 'Issue', 17, NULL, '2020-09-09 08:10:24+07', false);
INSERT INTO public.journals VALUES (7074, 1506, 'Issue', 17, NULL, '2020-09-09 08:10:48+07', false);
INSERT INTO public.journals VALUES (7075, 1431, 'Issue', 17, NULL, '2020-09-09 08:11:01+07', false);
INSERT INTO public.journals VALUES (7076, 1562, 'Issue', 17, NULL, '2020-09-09 08:12:55+07', false);
INSERT INTO public.journals VALUES (7077, 1484, 'Issue', 17, '', '2020-09-09 08:13:48+07', false);
INSERT INTO public.journals VALUES (7078, 1485, 'Issue', 17, '', '2020-09-09 08:13:49+07', false);
INSERT INTO public.journals VALUES (7079, 1486, 'Issue', 17, '', '2020-09-09 08:13:54+07', false);
INSERT INTO public.journals VALUES (7080, 1683, 'Issue', 17, '', '2020-09-09 08:13:56+07', false);
INSERT INTO public.journals VALUES (7081, 1715, 'Issue', 17, '', '2020-09-09 08:13:56+07', false);
INSERT INTO public.journals VALUES (7082, 1779, 'Issue', 17, '', '2020-09-09 08:13:57+07', false);
INSERT INTO public.journals VALUES (7083, 1484, 'Issue', 17, NULL, '2020-09-09 08:14:08+07', false);
INSERT INTO public.journals VALUES (7084, 1494, 'Issue', 17, NULL, '2020-09-09 08:14:19+07', false);
INSERT INTO public.journals VALUES (7085, 1715, 'Issue', 17, NULL, '2020-09-09 08:14:19+07', false);
INSERT INTO public.journals VALUES (7086, 1505, 'Issue', 17, '', '2020-09-09 08:14:40+07', false);
INSERT INTO public.journals VALUES (7087, 1489, 'Issue', 17, NULL, '2020-09-09 08:17:15+07', false);
INSERT INTO public.journals VALUES (7088, 1490, 'Issue', 17, NULL, '2020-09-09 08:17:15+07', false);
INSERT INTO public.journals VALUES (7089, 1491, 'Issue', 17, NULL, '2020-09-09 08:17:15+07', false);
INSERT INTO public.journals VALUES (7090, 1492, 'Issue', 17, NULL, '2020-09-09 08:17:16+07', false);
INSERT INTO public.journals VALUES (7091, 1493, 'Issue', 17, NULL, '2020-09-09 08:17:16+07', false);
INSERT INTO public.journals VALUES (7092, 1500, 'Issue', 17, NULL, '2020-09-09 08:17:16+07', false);
INSERT INTO public.journals VALUES (7093, 1501, 'Issue', 17, NULL, '2020-09-09 08:17:16+07', false);
INSERT INTO public.journals VALUES (7094, 1487, 'Issue', 17, NULL, '2020-09-09 08:17:28+07', false);
INSERT INTO public.journals VALUES (7095, 1499, 'Issue', 17, NULL, '2020-09-09 08:17:29+07', false);
INSERT INTO public.journals VALUES (7096, 1485, 'Issue', 17, NULL, '2020-09-09 08:17:56+07', false);
INSERT INTO public.journals VALUES (7097, 1526, 'Issue', 17, NULL, '2020-09-09 08:18:53+07', false);
INSERT INTO public.journals VALUES (7098, 1528, 'Issue', 17, NULL, '2020-09-09 08:18:54+07', false);
INSERT INTO public.journals VALUES (7099, 1529, 'Issue', 17, NULL, '2020-09-09 08:18:54+07', false);
INSERT INTO public.journals VALUES (7100, 1525, 'Issue', 17, NULL, '2020-09-09 08:19:01+07', false);
INSERT INTO public.journals VALUES (7101, 1572, 'Issue', 17, NULL, '2020-09-09 08:20:38+07', false);
INSERT INTO public.journals VALUES (7102, 1573, 'Issue', 17, NULL, '2020-09-09 08:20:39+07', false);
INSERT INTO public.journals VALUES (7103, 1574, 'Issue', 17, NULL, '2020-09-09 08:20:39+07', false);
INSERT INTO public.journals VALUES (7104, 1571, 'Issue', 17, NULL, '2020-09-09 08:20:44+07', false);
INSERT INTO public.journals VALUES (7105, 1578, 'Issue', 17, '', '2020-09-09 08:21:32+07', false);
INSERT INTO public.journals VALUES (7106, 1579, 'Issue', 17, '', '2020-09-09 08:21:33+07', false);
INSERT INTO public.journals VALUES (7107, 1578, 'Issue', 17, NULL, '2020-09-09 08:21:47+07', false);
INSERT INTO public.journals VALUES (7108, 1579, 'Issue', 17, NULL, '2020-09-09 08:21:47+07', false);
INSERT INTO public.journals VALUES (7109, 1564, 'Issue', 17, NULL, '2020-09-09 08:22:00+07', false);
INSERT INTO public.journals VALUES (7110, 1770, 'Issue', 17, '', '2020-09-09 08:22:10+07', false);
INSERT INTO public.journals VALUES (7111, 1679, 'Issue', 17, NULL, '2020-09-09 08:22:21+07', false);
INSERT INTO public.journals VALUES (7112, 1505, 'Issue', 17, '', '2020-09-09 08:23:38+07', false);
INSERT INTO public.journals VALUES (7113, 1565, 'Issue', 17, '', '2020-09-09 08:23:39+07', false);
INSERT INTO public.journals VALUES (7114, 1566, 'Issue', 17, '', '2020-09-09 08:23:39+07', false);
INSERT INTO public.journals VALUES (7115, 1486, 'Issue', 17, NULL, '2020-09-09 08:23:45+07', false);
INSERT INTO public.journals VALUES (7116, 1683, 'Issue', 17, NULL, '2020-09-09 08:24:33+07', false);
INSERT INTO public.journals VALUES (7117, 1683, 'Issue', 17, NULL, '2020-09-09 08:24:50+07', false);
INSERT INTO public.journals VALUES (7118, 1720, 'Issue', 17, NULL, '2020-09-09 08:25:04+07', false);
INSERT INTO public.journals VALUES (7119, 1782, 'Issue', 17, NULL, '2020-09-09 08:25:52+07', false);
INSERT INTO public.journals VALUES (7120, 1783, 'Issue', 17, NULL, '2020-09-09 08:25:52+07', false);
INSERT INTO public.journals VALUES (7121, 1780, 'Issue', 17, NULL, '2020-09-09 08:26:46+07', false);
INSERT INTO public.journals VALUES (7122, 1781, 'Issue', 17, NULL, '2020-09-09 08:26:46+07', false);
INSERT INTO public.journals VALUES (7123, 1779, 'Issue', 17, NULL, '2020-09-09 08:26:51+07', false);
INSERT INTO public.journals VALUES (7124, 1627, 'Issue', 17, NULL, '2020-09-09 08:27:05+07', false);
INSERT INTO public.journals VALUES (7125, 1626, 'Issue', 17, NULL, '2020-09-09 08:27:10+07', false);
INSERT INTO public.journals VALUES (7126, 1936, 'Issue', 6, '', '2020-09-09 08:28:17+07', false);
INSERT INTO public.journals VALUES (7127, 1940, 'Issue', 6, '', '2020-09-09 08:28:18+07', false);
INSERT INTO public.journals VALUES (7128, 1946, 'Issue', 6, '', '2020-09-09 08:28:18+07', false);
INSERT INTO public.journals VALUES (7129, 1953, 'Issue', 6, '', '2020-09-09 08:28:18+07', false);
INSERT INTO public.journals VALUES (7130, 1969, 'Issue', 6, '', '2020-09-09 08:28:18+07', false);
INSERT INTO public.journals VALUES (7131, 2000, 'Issue', 6, '', '2020-09-09 08:28:18+07', false);
INSERT INTO public.journals VALUES (7132, 1936, 'Issue', 6, NULL, '2020-09-09 08:28:37+07', false);
INSERT INTO public.journals VALUES (7133, 1940, 'Issue', 6, NULL, '2020-09-09 08:28:37+07', false);
INSERT INTO public.journals VALUES (7134, 1946, 'Issue', 6, NULL, '2020-09-09 08:28:37+07', false);
INSERT INTO public.journals VALUES (7135, 1953, 'Issue', 6, NULL, '2020-09-09 08:28:37+07', false);
INSERT INTO public.journals VALUES (7136, 1969, 'Issue', 6, NULL, '2020-09-09 08:28:37+07', false);
INSERT INTO public.journals VALUES (7137, 1505, 'Issue', 5, NULL, '2020-09-09 08:35:56+07', false);
INSERT INTO public.journals VALUES (7138, 1565, 'Issue', 5, NULL, '2020-09-09 08:35:57+07', false);
INSERT INTO public.journals VALUES (7139, 1566, 'Issue', 5, NULL, '2020-09-09 08:35:57+07', false);
INSERT INTO public.journals VALUES (7140, 1770, 'Issue', 5, NULL, '2020-09-09 08:36:56+07', false);
INSERT INTO public.journals VALUES (7141, 2000, 'Issue', 5, '', '2020-09-09 08:37:27+07', false);
INSERT INTO public.journals VALUES (7142, 2001, 'Issue', 5, NULL, '2020-09-09 08:37:36+07', false);
INSERT INTO public.journals VALUES (7143, 1505, 'Issue', 5, '', '2020-09-09 08:38:16+07', false);
INSERT INTO public.journals VALUES (7144, 1565, 'Issue', 5, '', '2020-09-09 08:38:16+07', false);
INSERT INTO public.journals VALUES (7145, 1566, 'Issue', 5, '', '2020-09-09 08:38:17+07', false);
INSERT INTO public.journals VALUES (7146, 2002, 'Issue', 17, '', '2020-09-09 08:47:54+07', false);
INSERT INTO public.journals VALUES (7147, 2003, 'Issue', 13, '', '2020-09-09 09:04:16+07', false);
INSERT INTO public.journals VALUES (7148, 1993, 'Issue', 41, '', '2020-09-09 09:07:45+07', false);
INSERT INTO public.journals VALUES (7149, 2004, 'Issue', 41, '', '2020-09-09 09:09:33+07', false);
INSERT INTO public.journals VALUES (7150, 2005, 'Issue', 5, NULL, '2020-09-09 09:40:41+07', false);
INSERT INTO public.journals VALUES (7151, 2006, 'Issue', 5, NULL, '2020-09-09 09:40:41+07', false);
INSERT INTO public.journals VALUES (7152, 2007, 'Issue', 5, NULL, '2020-09-09 09:40:41+07', false);
INSERT INTO public.journals VALUES (7153, 2008, 'Issue', 5, NULL, '2020-09-09 09:40:41+07', false);
INSERT INTO public.journals VALUES (7154, 2009, 'Issue', 5, NULL, '2020-09-09 09:40:41+07', false);
INSERT INTO public.journals VALUES (7155, 2010, 'Issue', 5, NULL, '2020-09-09 09:40:41+07', false);
INSERT INTO public.journals VALUES (7156, 2005, 'Issue', 5, NULL, '2020-09-09 09:40:58+07', false);
INSERT INTO public.journals VALUES (7157, 2006, 'Issue', 5, NULL, '2020-09-09 09:40:58+07', false);
INSERT INTO public.journals VALUES (7158, 2007, 'Issue', 5, NULL, '2020-09-09 09:40:58+07', false);
INSERT INTO public.journals VALUES (7159, 2008, 'Issue', 5, NULL, '2020-09-09 09:40:58+07', false);
INSERT INTO public.journals VALUES (7160, 2009, 'Issue', 5, NULL, '2020-09-09 09:40:58+07', false);
INSERT INTO public.journals VALUES (7161, 2010, 'Issue', 5, NULL, '2020-09-09 09:40:58+07', false);
INSERT INTO public.journals VALUES (7162, 2010, 'Issue', 17, NULL, '2020-09-09 09:45:52+07', false);
INSERT INTO public.journals VALUES (7163, 2010, 'Issue', 17, NULL, '2020-09-09 09:50:00+07', false);
INSERT INTO public.journals VALUES (7164, 2010, 'Issue', 17, '', '2020-09-09 09:50:17+07', false);
INSERT INTO public.journals VALUES (7165, 2002, 'Issue', 5, '', '2020-09-09 09:51:29+07', false);
INSERT INTO public.journals VALUES (7166, 2005, 'Issue', 5, '', '2020-09-09 09:52:11+07', false);
INSERT INTO public.journals VALUES (7167, 2006, 'Issue', 5, '', '2020-09-09 09:52:11+07', false);
INSERT INTO public.journals VALUES (7168, 2007, 'Issue', 5, '', '2020-09-09 09:52:11+07', false);
INSERT INTO public.journals VALUES (7169, 2008, 'Issue', 5, '', '2020-09-09 09:52:31+07', false);
INSERT INTO public.journals VALUES (7170, 2009, 'Issue', 5, '', '2020-09-09 09:52:31+07', false);
INSERT INTO public.journals VALUES (7171, 2000, 'Issue', 5, '', '2020-09-09 09:52:55+07', false);
INSERT INTO public.journals VALUES (7172, 1994, 'Issue', 12, '', '2020-09-09 11:18:47+07', false);
INSERT INTO public.journals VALUES (7173, 1955, 'Issue', 12, '', '2020-09-09 11:19:12+07', false);
INSERT INTO public.journals VALUES (7174, 1957, 'Issue', 12, '', '2020-09-09 11:19:12+07', false);
INSERT INTO public.journals VALUES (7175, 2003, 'Issue', 13, 'Trần Đồng đã viết:
> ![](clipboard-202009090900-y9l2v.png)
> ![](clipboard-202009090903-v92qa.png)



Trần Đồng đã viết:
> ![](clipboard-202009090900-y9l2v.png)
> ![](clipboard-202009090903-v92qa.png)
![](clipboard-202009091312-1esa1.png)

', '2020-09-09 13:12:58+07', false);
INSERT INTO public.journals VALUES (7176, 1135, 'Issue', 19, '', '2020-09-09 15:23:26+07', false);
INSERT INTO public.journals VALUES (7177, 1134, 'Issue', 19, '', '2020-09-09 15:24:17+07', false);
INSERT INTO public.journals VALUES (7178, 1133, 'Issue', 19, '', '2020-09-09 15:25:06+07', false);
INSERT INTO public.journals VALUES (7179, 1137, 'Issue', 19, '', '2020-09-09 15:34:21+07', false);
INSERT INTO public.journals VALUES (7180, 2012, 'Issue', 19, '', '2020-09-09 15:35:00+07', false);
INSERT INTO public.journals VALUES (7181, 1136, 'Issue', 19, '', '2020-09-09 16:57:45+07', false);
INSERT INTO public.journals VALUES (7182, 2004, 'Issue', 41, '', '2020-09-09 16:58:58+07', false);
INSERT INTO public.journals VALUES (7183, 2016, 'Issue', 19, NULL, '2020-09-09 16:59:33+07', false);
INSERT INTO public.journals VALUES (7184, 2016, 'Issue', 19, NULL, '2020-09-09 16:59:46+07', false);
INSERT INTO public.journals VALUES (7185, 2016, 'Issue', 19, '', '2020-09-09 17:00:21+07', false);
INSERT INTO public.journals VALUES (7186, 1999, 'Issue', 37, NULL, '2020-09-09 21:21:31+07', false);
INSERT INTO public.journals VALUES (7187, 2004, 'Issue', 41, '', '2020-09-10 08:27:17+07', false);
INSERT INTO public.journals VALUES (7188, 2011, 'Issue', 12, '', '2020-09-10 13:56:59+07', false);
INSERT INTO public.journals VALUES (7189, 2010, 'Issue', 10, NULL, '2020-09-10 14:28:21+07', false);
INSERT INTO public.journals VALUES (7190, 2010, 'Issue', 10, NULL, '2020-09-10 14:28:33+07', false);
INSERT INTO public.journals VALUES (7191, 2022, 'Issue', 19, '', '2020-09-10 15:37:06+07', false);
INSERT INTO public.journals VALUES (7192, 1995, 'Issue', 4, NULL, '2020-09-11 08:08:50+07', false);
INSERT INTO public.journals VALUES (7193, 1995, 'Issue', 4, NULL, '2020-09-11 08:08:57+07', false);
INSERT INTO public.journals VALUES (7194, 1962, 'Issue', 8, NULL, '2020-09-11 09:54:23+07', false);
INSERT INTO public.journals VALUES (7195, 1963, 'Issue', 8, NULL, '2020-09-11 09:55:12+07', false);
INSERT INTO public.journals VALUES (7196, 1963, 'Issue', 8, NULL, '2020-09-11 09:55:29+07', false);
INSERT INTO public.journals VALUES (7197, 1963, 'Issue', 8, NULL, '2020-09-11 09:55:42+07', false);
INSERT INTO public.journals VALUES (7198, 2023, 'Issue', 8, '', '2020-09-11 09:57:50+07', false);
INSERT INTO public.journals VALUES (7199, 1958, 'Issue', 8, NULL, '2020-09-11 09:59:02+07', false);
INSERT INTO public.journals VALUES (7200, 2020, 'Issue', 39, '', '2020-09-11 15:22:18+07', false);
INSERT INTO public.journals VALUES (7201, 2020, 'Issue', 39, '', '2020-09-11 15:38:29+07', false);
INSERT INTO public.journals VALUES (7202, 2025, 'Issue', 5, '', '2020-09-11 16:07:36+07', false);
INSERT INTO public.journals VALUES (7203, 2026, 'Issue', 5, '', '2020-09-11 16:07:36+07', false);
INSERT INTO public.journals VALUES (7204, 2027, 'Issue', 5, '', '2020-09-11 16:07:36+07', false);
INSERT INTO public.journals VALUES (7205, 2028, 'Issue', 5, '', '2020-09-11 16:07:36+07', false);
INSERT INTO public.journals VALUES (7206, 2029, 'Issue', 5, '', '2020-09-11 16:07:36+07', false);
INSERT INTO public.journals VALUES (7208, 2032, 'Issue', 5, '', '2020-09-11 16:07:36+07', false);
INSERT INTO public.journals VALUES (7209, 2033, 'Issue', 5, '', '2020-09-11 16:07:37+07', false);
INSERT INTO public.journals VALUES (7210, 2034, 'Issue', 5, '', '2020-09-11 16:07:37+07', false);
INSERT INTO public.journals VALUES (7211, 2048, 'Issue', 5, '', '2020-09-11 16:07:37+07', false);
INSERT INTO public.journals VALUES (7212, 2049, 'Issue', 5, '', '2020-09-11 16:07:37+07', false);
INSERT INTO public.journals VALUES (7213, 2050, 'Issue', 5, '', '2020-09-11 16:07:37+07', false);
INSERT INTO public.journals VALUES (7214, 2051, 'Issue', 5, '', '2020-09-11 16:07:37+07', false);
INSERT INTO public.journals VALUES (7215, 2052, 'Issue', 5, '', '2020-09-11 16:07:37+07', false);
INSERT INTO public.journals VALUES (7216, 2024, 'Issue', 5, '', '2020-09-11 16:12:19+07', false);
INSERT INTO public.journals VALUES (7217, 2024, 'Issue', 5, '', '2020-09-11 16:38:49+07', false);
INSERT INTO public.journals VALUES (7218, 2053, 'Issue', 12, NULL, '2020-09-12 08:45:49+07', false);
INSERT INTO public.journals VALUES (7219, 2053, 'Issue', 12, NULL, '2020-09-12 08:54:19+07', false);
INSERT INTO public.journals VALUES (7220, 2053, 'Issue', 5, NULL, '2020-09-12 10:45:23+07', false);
INSERT INTO public.journals VALUES (7221, 2054, 'Issue', 5, NULL, '2020-09-12 10:45:30+07', false);
INSERT INTO public.journals VALUES (7222, 2054, 'Issue', 12, NULL, '2020-09-12 10:55:17+07', false);
INSERT INTO public.journals VALUES (7223, 2054, 'Issue', 12, NULL, '2020-09-12 10:55:22+07', false);
INSERT INTO public.journals VALUES (7224, 2059, 'Issue', 17, '', '2020-09-12 13:49:52+07', false);
INSERT INTO public.journals VALUES (7225, 1994, 'Issue', 5, '', '2020-09-12 14:01:29+07', false);
INSERT INTO public.journals VALUES (7226, 2061, 'Issue', 17, '', '2020-09-12 14:15:49+07', false);
INSERT INTO public.journals VALUES (7227, 2030, 'Issue', 5, NULL, '2020-09-12 14:51:42+07', false);
INSERT INTO public.journals VALUES (7228, 2066, 'Issue', 5, NULL, '2020-09-12 14:55:23+07', false);
INSERT INTO public.journals VALUES (7229, 2067, 'Issue', 5, NULL, '2020-09-12 14:55:23+07', false);
INSERT INTO public.journals VALUES (7230, 2030, 'Issue', 5, '', '2020-09-12 14:56:18+07', false);
INSERT INTO public.journals VALUES (7231, 2024, 'Issue', 5, NULL, '2020-09-12 14:56:27+07', false);
INSERT INTO public.journals VALUES (7232, 2024, 'Issue', 5, NULL, '2020-09-12 14:56:33+07', false);
INSERT INTO public.journals VALUES (7233, 2005, 'Issue', 17, '', '2020-09-12 14:57:19+07', false);
INSERT INTO public.journals VALUES (7234, 2006, 'Issue', 17, '', '2020-09-12 14:57:38+07', false);
INSERT INTO public.journals VALUES (7235, 2007, 'Issue', 17, '', '2020-09-12 14:58:06+07', false);
INSERT INTO public.journals VALUES (7236, 2059, 'Issue', 17, '', '2020-09-12 14:58:23+07', false);
INSERT INTO public.journals VALUES (7237, 2057, 'Issue', 17, NULL, '2020-09-12 15:36:30+07', false);
INSERT INTO public.journals VALUES (7238, 2058, 'Issue', 17, NULL, '2020-09-12 15:36:31+07', false);
INSERT INTO public.journals VALUES (7239, 2059, 'Issue', 17, NULL, '2020-09-12 15:36:31+07', false);
INSERT INTO public.journals VALUES (7240, 2025, 'Issue', 40, '', '2020-09-12 16:49:43+07', false);
INSERT INTO public.journals VALUES (7241, 2048, 'Issue', 10, '', '2020-09-12 16:53:30+07', false);
INSERT INTO public.journals VALUES (7242, 2026, 'Issue', 39, '', '2020-09-12 16:54:16+07', false);
INSERT INTO public.journals VALUES (7243, 2048, 'Issue', 10, '', '2020-09-12 16:54:54+07', false);
INSERT INTO public.journals VALUES (7244, 1994, 'Issue', 5, '', '2020-09-14 07:56:45+07', false);
INSERT INTO public.journals VALUES (7245, 2054, 'Issue', 5, NULL, '2020-09-14 07:57:39+07', false);
INSERT INTO public.journals VALUES (7246, 1958, 'Issue', 5, NULL, '2020-09-14 07:57:55+07', false);
INSERT INTO public.journals VALUES (7247, 2023, 'Issue', 19, '', '2020-09-14 08:18:59+07', false);
INSERT INTO public.journals VALUES (7248, 2030, 'Issue', 5, '', '2020-09-14 08:41:31+07', false);
INSERT INTO public.journals VALUES (7249, 2030, 'Issue', 8, '', '2020-09-14 09:01:08+07', false);
INSERT INTO public.journals VALUES (7251, 2000, 'Issue', 38, NULL, '2020-09-14 09:41:36+07', false);
INSERT INTO public.journals VALUES (7252, 2000, 'Issue', 38, NULL, '2020-09-14 09:41:43+07', false);
INSERT INTO public.journals VALUES (7253, 2030, 'Issue', 8, '', '2020-09-14 09:42:38+07', false);
INSERT INTO public.journals VALUES (7255, 2027, 'Issue', 39, '', '2020-09-14 09:56:21+07', false);
INSERT INTO public.journals VALUES (7256, 2071, 'Issue', 5, '', '2020-09-14 10:27:26+07', false);
INSERT INTO public.journals VALUES (7257, 2072, 'Issue', 5, '', '2020-09-14 10:28:35+07', false);
INSERT INTO public.journals VALUES (7258, 2073, 'Issue', 5, '', '2020-09-14 10:30:48+07', false);
INSERT INTO public.journals VALUES (7259, 2026, 'Issue', 39, '', '2020-09-14 10:33:08+07', false);
INSERT INTO public.journals VALUES (7260, 2048, 'Issue', 10, NULL, '2020-09-14 11:13:48+07', false);
INSERT INTO public.journals VALUES (7261, 2048, 'Issue', 10, NULL, '2020-09-14 11:14:00+07', false);
INSERT INTO public.journals VALUES (7262, 2074, 'Issue', 5, '', '2020-09-14 11:35:02+07', false);
INSERT INTO public.journals VALUES (7263, 2029, 'Issue', 5, '', '2020-09-14 15:34:38+07', false);
INSERT INTO public.journals VALUES (7264, 2065, 'Issue', 5, '', '2020-09-14 15:35:39+07', false);
INSERT INTO public.journals VALUES (7265, 2066, 'Issue', 5, '', '2020-09-14 15:36:04+07', false);
INSERT INTO public.journals VALUES (7266, 2067, 'Issue', 5, '', '2020-09-14 15:36:04+07', false);
INSERT INTO public.journals VALUES (7267, 2049, 'Issue', 5, '', '2020-09-14 15:36:34+07', false);
INSERT INTO public.journals VALUES (7268, 2028, 'Issue', 5, '', '2020-09-14 15:37:22+07', false);
INSERT INTO public.journals VALUES (7269, 2032, 'Issue', 5, '', '2020-09-14 15:39:07+07', false);
INSERT INTO public.journals VALUES (7270, 2033, 'Issue', 5, '', '2020-09-14 15:39:07+07', false);
INSERT INTO public.journals VALUES (7271, 2032, 'Issue', 5, NULL, '2020-09-14 15:43:00+07', false);
INSERT INTO public.journals VALUES (7272, 2033, 'Issue', 5, NULL, '2020-09-14 15:43:01+07', false);
INSERT INTO public.journals VALUES (7273, 2034, 'Issue', 5, NULL, '2020-09-14 15:43:01+07', false);
INSERT INTO public.journals VALUES (7274, 2034, 'Issue', 5, '', '2020-09-14 15:43:24+07', false);
INSERT INTO public.journals VALUES (7275, 2050, 'Issue', 5, NULL, '2020-09-14 15:44:59+07', false);
INSERT INTO public.journals VALUES (7276, 2052, 'Issue', 5, '', '2020-09-14 15:45:45+07', false);
INSERT INTO public.journals VALUES (7277, 2051, 'Issue', 5, NULL, '2020-09-14 15:46:01+07', false);
INSERT INTO public.journals VALUES (7278, 2035, 'Issue', 5, NULL, '2020-09-14 15:47:19+07', false);
INSERT INTO public.journals VALUES (7279, 2036, 'Issue', 5, NULL, '2020-09-14 15:47:20+07', false);
INSERT INTO public.journals VALUES (7280, 2037, 'Issue', 5, NULL, '2020-09-14 15:47:20+07', false);
INSERT INTO public.journals VALUES (7281, 2038, 'Issue', 5, NULL, '2020-09-14 15:47:20+07', false);
INSERT INTO public.journals VALUES (7284, 2041, 'Issue', 5, NULL, '2020-09-14 15:47:20+07', false);
INSERT INTO public.journals VALUES (7285, 2042, 'Issue', 5, NULL, '2020-09-14 15:47:20+07', false);
INSERT INTO public.journals VALUES (7286, 2062, 'Issue', 5, NULL, '2020-09-14 15:47:20+07', false);
INSERT INTO public.journals VALUES (7288, 2064, 'Issue', 5, NULL, '2020-09-14 15:47:20+07', false);
INSERT INTO public.journals VALUES (7289, 2035, 'Issue', 5, '', '2020-09-14 15:48:21+07', false);
INSERT INTO public.journals VALUES (7290, 2036, 'Issue', 5, '', '2020-09-14 15:48:21+07', false);
INSERT INTO public.journals VALUES (7291, 2037, 'Issue', 5, '', '2020-09-14 15:48:21+07', false);
INSERT INTO public.journals VALUES (7292, 2038, 'Issue', 5, '', '2020-09-14 15:48:21+07', false);
INSERT INTO public.journals VALUES (7293, 2041, 'Issue', 5, '', '2020-09-14 15:48:45+07', false);
INSERT INTO public.journals VALUES (7294, 2042, 'Issue', 5, '', '2020-09-14 15:48:45+07', false);
INSERT INTO public.journals VALUES (7297, 2041, 'Issue', 5, '', '2020-09-14 15:49:28+07', false);
INSERT INTO public.journals VALUES (7298, 2042, 'Issue', 5, '', '2020-09-14 15:49:28+07', false);
INSERT INTO public.journals VALUES (7301, 2067, 'Issue', 5, '', '2020-09-14 15:50:05+07', false);
INSERT INTO public.journals VALUES (7302, 2062, 'Issue', 5, '', '2020-09-14 15:50:37+07', false);
INSERT INTO public.journals VALUES (7304, 2064, 'Issue', 5, '', '2020-09-14 15:51:12+07', false);
INSERT INTO public.journals VALUES (7305, 2062, 'Issue', 5, NULL, '2020-09-14 16:06:19+07', false);
INSERT INTO public.journals VALUES (7307, 2064, 'Issue', 5, NULL, '2020-09-14 16:06:19+07', false);
INSERT INTO public.journals VALUES (7308, 2035, 'Issue', 5, NULL, '2020-09-14 16:07:31+07', false);
INSERT INTO public.journals VALUES (7309, 2037, 'Issue', 5, NULL, '2020-09-14 16:07:31+07', false);
INSERT INTO public.journals VALUES (7310, 2036, 'Issue', 5, NULL, '2020-09-14 16:07:52+07', false);
INSERT INTO public.journals VALUES (7311, 2038, 'Issue', 5, NULL, '2020-09-14 16:07:52+07', false);
INSERT INTO public.journals VALUES (7312, 2041, 'Issue', 5, NULL, '2020-09-14 16:08:21+07', false);
INSERT INTO public.journals VALUES (7313, 2042, 'Issue', 5, NULL, '2020-09-14 16:08:34+07', false);
INSERT INTO public.journals VALUES (7314, 2067, 'Issue', 5, NULL, '2020-09-14 16:08:45+07', false);
INSERT INTO public.journals VALUES (7317, 2050, 'Issue', 5, '', '2020-09-14 16:09:56+07', false);
INSERT INTO public.journals VALUES (7318, 2051, 'Issue', 5, '', '2020-09-14 16:10:18+07', false);
INSERT INTO public.journals VALUES (7319, 2052, 'Issue', 5, '', '2020-09-14 16:10:29+07', false);
INSERT INTO public.journals VALUES (7320, 2051, 'Issue', 5, NULL, '2020-09-14 16:10:40+07', false);
INSERT INTO public.journals VALUES (7321, 2052, 'Issue', 5, NULL, '2020-09-14 16:10:40+07', false);
INSERT INTO public.journals VALUES (7322, 2066, 'Issue', 5, NULL, '2020-09-14 16:11:07+07', false);
INSERT INTO public.journals VALUES (7323, 2025, 'Issue', 40, NULL, '2020-09-14 16:37:36+07', false);
INSERT INTO public.journals VALUES (7324, 2025, 'Issue', 40, NULL, '2020-09-14 16:37:56+07', false);
INSERT INTO public.journals VALUES (7325, 2026, 'Issue', 40, NULL, '2020-09-14 16:39:20+07', false);
INSERT INTO public.journals VALUES (7326, 2026, 'Issue', 5, NULL, '2020-09-14 16:42:21+07', false);
INSERT INTO public.journals VALUES (7327, 2029, 'Issue', 5, NULL, '2020-09-14 16:42:33+07', false);
INSERT INTO public.journals VALUES (7328, 2029, 'Issue', 5, NULL, '2020-09-14 16:43:15+07', false);
INSERT INTO public.journals VALUES (7329, 2035, 'Issue', 40, NULL, '2020-09-14 16:47:56+07', false);
INSERT INTO public.journals VALUES (7330, 2035, 'Issue', 40, '', '2020-09-14 16:48:53+07', false);
INSERT INTO public.journals VALUES (7331, 2026, 'Issue', 5, '', '2020-09-15 08:06:14+07', false);
INSERT INTO public.journals VALUES (7332, 2027, 'Issue', 39, '', '2020-09-15 08:07:07+07', false);
INSERT INTO public.journals VALUES (7333, 2000, 'Issue', 38, NULL, '2020-09-15 08:12:55+07', false);
INSERT INTO public.journals VALUES (7334, 2077, 'Issue', 12, '> ', '2020-09-15 10:18:45+07', false);
INSERT INTO public.journals VALUES (7335, 2078, 'Issue', 12, '> ', '2020-09-15 10:18:45+07', false);
INSERT INTO public.journals VALUES (7336, 2079, 'Issue', 12, '> ', '2020-09-15 10:18:45+07', false);
INSERT INTO public.journals VALUES (7337, 2080, 'Issue', 12, '> ', '2020-09-15 10:18:45+07', false);
INSERT INTO public.journals VALUES (7338, 2081, 'Issue', 12, '> ', '2020-09-15 10:18:45+07', false);
INSERT INTO public.journals VALUES (7339, 2082, 'Issue', 12, '> ', '2020-09-15 10:18:45+07', false);
INSERT INTO public.journals VALUES (7340, 2055, 'Issue', 12, '', '2020-09-15 10:19:36+07', false);
INSERT INTO public.journals VALUES (7341, 1958, 'Issue', 12, NULL, '2020-09-15 10:24:12+07', false);
INSERT INTO public.journals VALUES (7342, 1958, 'Issue', 12, NULL, '2020-09-15 10:24:17+07', false);
INSERT INTO public.journals VALUES (7343, 2076, 'Issue', 12, '', '2020-09-15 10:24:49+07', false);
INSERT INTO public.journals VALUES (7344, 2077, 'Issue', 12, '', '2020-09-15 10:24:49+07', false);
INSERT INTO public.journals VALUES (7345, 2078, 'Issue', 12, '', '2020-09-15 10:24:49+07', false);
INSERT INTO public.journals VALUES (7346, 2083, 'Issue', 12, '', '2020-09-15 10:24:49+07', false);
INSERT INTO public.journals VALUES (7347, 2079, 'Issue', 12, NULL, '2020-09-15 10:25:24+07', false);
INSERT INTO public.journals VALUES (7348, 2080, 'Issue', 12, '', '2020-09-15 10:25:50+07', false);
INSERT INTO public.journals VALUES (7349, 2081, 'Issue', 12, '', '2020-09-15 10:25:50+07', false);
INSERT INTO public.journals VALUES (7350, 2082, 'Issue', 12, '', '2020-09-15 10:25:50+07', false);
INSERT INTO public.journals VALUES (7351, 1976, 'Issue', 12, '', '2020-09-15 10:26:11+07', false);
INSERT INTO public.journals VALUES (7352, 2049, 'Issue', 10, NULL, '2020-09-15 11:46:40+07', false);
INSERT INTO public.journals VALUES (7353, 2049, 'Issue', 10, NULL, '2020-09-15 11:46:51+07', false);
INSERT INTO public.journals VALUES (7354, 2050, 'Issue', 10, '', '2020-09-15 16:56:50+07', false);
INSERT INTO public.journals VALUES (7355, 2052, 'Issue', 10, '', '2020-09-15 16:57:15+07', false);
INSERT INTO public.journals VALUES (7356, 2029, 'Issue', 40, NULL, '2020-09-16 08:05:05+07', false);
INSERT INTO public.journals VALUES (7357, 2029, 'Issue', 40, NULL, '2020-09-16 08:05:19+07', false);
INSERT INTO public.journals VALUES (7358, 2075, 'Issue', 41, '', '2020-09-16 09:53:51+07', false);
INSERT INTO public.journals VALUES (7359, 2083, 'Issue', 12, NULL, '2020-09-16 10:05:35+07', false);
INSERT INTO public.journals VALUES (7360, 2083, 'Issue', 12, NULL, '2020-09-16 10:05:44+07', false);
INSERT INTO public.journals VALUES (7361, 2084, 'Issue', 5, '', '2020-09-16 10:58:52+07', false);
INSERT INTO public.journals VALUES (7362, 2026, 'Issue', 39, '', '2020-09-16 11:24:57+07', false);
INSERT INTO public.journals VALUES (7363, 2078, 'Issue', 12, NULL, '2020-09-16 11:29:47+07', false);
INSERT INTO public.journals VALUES (7364, 2078, 'Issue', 12, NULL, '2020-09-16 11:29:55+07', false);
INSERT INTO public.journals VALUES (7365, 2077, 'Issue', 12, NULL, '2020-09-16 11:41:42+07', false);
INSERT INTO public.journals VALUES (7366, 2077, 'Issue', 12, NULL, '2020-09-16 11:41:51+07', false);
INSERT INTO public.journals VALUES (7367, 2055, 'Issue', 12, NULL, '2020-09-16 13:52:22+07', false);
INSERT INTO public.journals VALUES (7368, 2055, 'Issue', 12, NULL, '2020-09-16 13:52:34+07', false);
INSERT INTO public.journals VALUES (7369, 2076, 'Issue', 12, NULL, '2020-09-16 13:53:11+07', false);
INSERT INTO public.journals VALUES (7370, 2076, 'Issue', 12, NULL, '2020-09-16 13:53:20+07', false);
INSERT INTO public.journals VALUES (7371, 2076, 'Issue', 12, NULL, '2020-09-16 13:53:32+07', false);
INSERT INTO public.journals VALUES (7372, 2082, 'Issue', 12, NULL, '2020-09-16 14:14:43+07', false);
INSERT INTO public.journals VALUES (7373, 2082, 'Issue', 12, NULL, '2020-09-16 14:14:54+07', false);
INSERT INTO public.journals VALUES (7374, 2032, 'Issue', 5, NULL, '2020-09-16 14:47:16+07', false);
INSERT INTO public.journals VALUES (7375, 2033, 'Issue', 5, NULL, '2020-09-16 14:47:49+07', false);
INSERT INTO public.journals VALUES (7376, 2034, 'Issue', 5, NULL, '2020-09-16 14:47:50+07', false);
INSERT INTO public.journals VALUES (7377, 2033, 'Issue', 5, '', '2020-09-16 14:54:57+07', false);
INSERT INTO public.journals VALUES (7378, 2028, 'Issue', 5, '', '2020-09-16 14:56:09+07', false);
INSERT INTO public.journals VALUES (7379, 1963, 'Issue', 12, '', '2020-09-16 15:22:02+07', false);
INSERT INTO public.journals VALUES (7380, 2085, 'Issue', 41, '', '2020-09-17 07:48:20+07', false);
INSERT INTO public.journals VALUES (7381, 2089, 'Issue', 41, '', '2020-09-17 07:52:25+07', false);
INSERT INTO public.journals VALUES (7382, 2086, 'Issue', 5, NULL, '2020-09-17 08:17:07+07', false);
INSERT INTO public.journals VALUES (7383, 2087, 'Issue', 5, NULL, '2020-09-17 08:17:07+07', false);
INSERT INTO public.journals VALUES (7384, 2088, 'Issue', 5, NULL, '2020-09-17 08:17:07+07', false);
INSERT INTO public.journals VALUES (7385, 2035, 'Issue', 40, NULL, '2020-09-17 08:59:16+07', false);
INSERT INTO public.journals VALUES (7386, 2035, 'Issue', 40, NULL, '2020-09-17 08:59:35+07', false);
INSERT INTO public.journals VALUES (7387, 2080, 'Issue', 12, NULL, '2020-09-17 10:13:57+07', false);
INSERT INTO public.journals VALUES (7388, 2080, 'Issue', 12, NULL, '2020-09-17 10:14:06+07', false);
INSERT INTO public.journals VALUES (7389, 2084, 'Issue', 38, 'API: /Phieus/NapTien
Body:
{
  "idPhieu": id,
  "idDanhMucThe": id,
  "soTienNap": int
}', '2020-09-17 14:55:35+07', false);
INSERT INTO public.journals VALUES (7390, 1998, 'Issue', 13, NULL, '2020-09-17 15:12:14+07', false);
INSERT INTO public.journals VALUES (7391, 1998, 'Issue', 13, NULL, '2020-09-17 15:12:29+07', false);
INSERT INTO public.journals VALUES (7392, 1999, 'Issue', 13, NULL, '2020-09-17 15:12:29+07', false);
INSERT INTO public.journals VALUES (7393, 2003, 'Issue', 13, NULL, '2020-09-17 15:15:31+07', false);
INSERT INTO public.journals VALUES (7394, 2003, 'Issue', 13, NULL, '2020-09-17 15:15:39+07', false);
INSERT INTO public.journals VALUES (7395, 1996, 'Issue', 13, '', '2020-09-17 15:19:02+07', false);
INSERT INTO public.journals VALUES (7396, 2021, 'Issue', 13, '', '2020-09-17 15:19:02+07', false);
INSERT INTO public.journals VALUES (7397, 2091, 'Issue', 13, '', '2020-09-17 15:19:03+07', false);
INSERT INTO public.journals VALUES (7398, 2092, 'Issue', 13, '', '2020-09-17 15:19:03+07', false);
INSERT INTO public.journals VALUES (7399, 2091, 'Issue', 13, NULL, '2020-09-17 15:19:27+07', false);
INSERT INTO public.journals VALUES (7400, 2092, 'Issue', 13, NULL, '2020-09-17 15:19:27+07', false);
INSERT INTO public.journals VALUES (7401, 2089, 'Issue', 41, '', '2020-09-17 16:22:15+07', false);
INSERT INTO public.journals VALUES (7402, 2017, 'Issue', 33, NULL, '2020-09-18 01:08:15+07', false);
INSERT INTO public.journals VALUES (7403, 2014, 'Issue', 33, NULL, '2020-09-18 01:08:20+07', false);
INSERT INTO public.journals VALUES (7404, 2069, 'Issue', 33, NULL, '2020-09-18 01:08:24+07', false);
INSERT INTO public.journals VALUES (7405, 2090, 'Issue', 41, '', '2020-09-18 01:14:11+07', false);
INSERT INTO public.journals VALUES (7406, 2090, 'Issue', 41, '', '2020-09-18 01:27:19+07', false);
INSERT INTO public.journals VALUES (7407, 2098, 'Issue', 41, '', '2020-09-18 01:27:59+07', false);
INSERT INTO public.journals VALUES (7408, 2098, 'Issue', 41, '', '2020-09-18 01:28:18+07', false);
INSERT INTO public.journals VALUES (7409, 2030, 'Issue', 5, '', '2020-09-18 02:16:25+07', false);
INSERT INTO public.journals VALUES (7410, 2033, 'Issue', 5, '', '2020-09-18 02:18:17+07', false);
INSERT INTO public.journals VALUES (7411, 2034, 'Issue', 5, '', '2020-09-18 02:18:17+07', false);
INSERT INTO public.journals VALUES (7412, 2032, 'Issue', 5, '', '2020-09-18 02:18:49+07', false);
INSERT INTO public.journals VALUES (7413, 2034, 'Issue', 5, '', '2020-09-18 02:19:01+07', false);
INSERT INTO public.journals VALUES (7414, 2037, 'Issue', 5, '', '2020-09-18 02:19:14+07', false);
INSERT INTO public.journals VALUES (7415, 2041, 'Issue', 5, '', '2020-09-18 02:19:28+07', false);
INSERT INTO public.journals VALUES (7416, 2084, 'Issue', 38, 'API: /Phieus/NapTien
Body:
{
"IdPhieu": id,
"SoTienNap": int
}', '2020-09-18 06:07:29+07', false);
INSERT INTO public.journals VALUES (7417, 2028, 'Issue', 39, '', '2020-09-18 07:46:45+07', false);
INSERT INTO public.journals VALUES (7418, 2086, 'Issue', 39, '', '2020-09-18 07:46:54+07', false);
INSERT INTO public.journals VALUES (7419, 2087, 'Issue', 39, '', '2020-09-18 07:47:24+07', false);
INSERT INTO public.journals VALUES (7420, 2070, 'Issue', 33, NULL, '2020-09-18 10:04:09+07', false);
INSERT INTO public.journals VALUES (7421, 2052, 'Issue', 10, NULL, '2020-09-18 18:00:44+07', false);
INSERT INTO public.journals VALUES (7422, 2052, 'Issue', 10, NULL, '2020-09-18 18:00:50+07', false);
INSERT INTO public.journals VALUES (7423, 2030, 'Issue', 8, NULL, '2020-09-19 09:20:27+07', false);
INSERT INTO public.journals VALUES (7424, 2030, 'Issue', 8, NULL, '2020-09-19 09:20:32+07', false);
INSERT INTO public.journals VALUES (7425, 2051, 'Issue', 5, '', '2020-09-19 02:22:25+07', false);
INSERT INTO public.journals VALUES (7426, 2100, 'Issue', 8, '', '2020-09-19 02:22:29+07', false);
INSERT INTO public.journals VALUES (7427, 2033, 'Issue', 5, NULL, '2020-09-19 02:22:47+07', false);
INSERT INTO public.journals VALUES (7428, 2034, 'Issue', 5, NULL, '2020-09-19 02:22:48+07', false);
INSERT INTO public.journals VALUES (7429, 2028, 'Issue', 39, '', '2020-09-19 10:55:43+07', false);
INSERT INTO public.journals VALUES (7430, 2088, 'Issue', 39, '', '2020-09-19 10:56:01+07', false);
INSERT INTO public.journals VALUES (7431, 2034, 'Issue', 40, '', '2020-09-19 11:19:58+07', false);
INSERT INTO public.journals VALUES (7432, 2104, 'Issue', 5, '', '2020-09-19 11:21:17+07', false);
INSERT INTO public.journals VALUES (7433, 2034, 'Issue', 5, NULL, '2020-09-19 11:22:36+07', false);
INSERT INTO public.journals VALUES (7434, 2033, 'Issue', 5, NULL, '2020-09-19 11:27:08+07', false);
INSERT INTO public.journals VALUES (7435, 2033, 'Issue', 5, NULL, '2020-09-19 11:27:18+07', false);
INSERT INTO public.journals VALUES (7436, 2062, 'Issue', 5, NULL, '2020-09-19 11:27:55+07', false);
INSERT INTO public.journals VALUES (7438, 2064, 'Issue', 5, NULL, '2020-09-19 11:27:56+07', false);
INSERT INTO public.journals VALUES (7439, 2032, 'Issue', 40, NULL, '2020-09-19 14:55:33+07', false);
INSERT INTO public.journals VALUES (7440, 2032, 'Issue', 40, '', '2020-09-19 14:56:46+07', false);
INSERT INTO public.journals VALUES (7441, 2100, 'Issue', 39, '', '2020-09-19 15:23:38+07', false);
INSERT INTO public.journals VALUES (7442, 2032, 'Issue', 40, '', '2020-09-19 16:05:35+07', false);
INSERT INTO public.journals VALUES (7443, 2032, 'Issue', 40, '', '2020-09-19 16:05:51+07', false);
INSERT INTO public.journals VALUES (7444, 2097, 'Issue', 5, '', '2020-09-21 08:01:15+07', false);
INSERT INTO public.journals VALUES (7445, 2032, 'Issue', 40, NULL, '2020-09-21 09:56:54+07', false);
INSERT INTO public.journals VALUES (7446, 2032, 'Issue', 40, NULL, '2020-09-21 09:57:03+07', false);
INSERT INTO public.journals VALUES (7447, 2034, 'Issue', 40, NULL, '2020-09-21 09:57:12+07', false);
INSERT INTO public.journals VALUES (7448, 2034, 'Issue', 40, NULL, '2020-09-21 09:57:39+07', false);
INSERT INTO public.journals VALUES (7449, 2033, 'Issue', 40, NULL, '2020-09-21 13:01:05+07', false);
INSERT INTO public.journals VALUES (7450, 2033, 'Issue', 40, NULL, '2020-09-21 13:01:13+07', false);
INSERT INTO public.journals VALUES (7451, 2050, 'Issue', 10, NULL, '2020-09-21 14:41:21+07', false);
INSERT INTO public.journals VALUES (7452, 2050, 'Issue', 10, NULL, '2020-09-21 14:41:29+07', false);
INSERT INTO public.journals VALUES (7453, 2051, 'Issue', 10, NULL, '2020-09-21 14:41:38+07', false);
INSERT INTO public.journals VALUES (7454, 2051, 'Issue', 10, NULL, '2020-09-21 14:41:47+07', false);
INSERT INTO public.journals VALUES (7455, 2062, 'Issue', 5, '', '2020-09-21 14:44:40+07', false);
INSERT INTO public.journals VALUES (7456, 2105, 'Issue', 10, '', '2020-09-21 14:56:25+07', false);
INSERT INTO public.journals VALUES (7457, 2107, 'Issue', 5, NULL, '2020-09-21 15:02:07+07', false);
INSERT INTO public.journals VALUES (7458, 2107, 'Issue', 5, NULL, '2020-09-21 15:02:17+07', false);
INSERT INTO public.journals VALUES (7459, 2106, 'Issue', 5, '', '2020-09-21 15:02:47+07', false);
INSERT INTO public.journals VALUES (7460, 2107, 'Issue', 5, '', '2020-09-21 15:11:16+07', false);
INSERT INTO public.journals VALUES (7461, 2036, 'Issue', 5, '', '2020-09-21 15:15:45+07', false);
INSERT INTO public.journals VALUES (7462, 2038, 'Issue', 5, '', '2020-09-21 15:15:46+07', false);
INSERT INTO public.journals VALUES (7463, 2066, 'Issue', 5, '', '2020-09-21 15:15:46+07', false);
INSERT INTO public.journals VALUES (7464, 2105, 'Issue', 5, '', '2020-09-21 15:16:41+07', false);
INSERT INTO public.journals VALUES (7465, 2107, 'Issue', 5, '', '2020-09-21 15:16:42+07', false);
INSERT INTO public.journals VALUES (7466, 2065, 'Issue', 5, NULL, '2020-09-21 15:29:12+07', false);
INSERT INTO public.journals VALUES (7467, 2065, 'Issue', 5, '', '2020-09-21 15:29:24+07', false);
INSERT INTO public.journals VALUES (7468, 2034, 'Issue', 40, NULL, '2020-09-21 16:53:02+07', false);
INSERT INTO public.journals VALUES (7469, 2032, 'Issue', 40, NULL, '2020-09-21 16:53:24+07', false);
INSERT INTO public.journals VALUES (7470, 2062, 'Issue', 39, '', '2020-09-21 17:12:54+07', false);
INSERT INTO public.journals VALUES (7471, 2081, 'Issue', 12, NULL, '2020-09-22 08:14:23+07', false);
INSERT INTO public.journals VALUES (7472, 2081, 'Issue', 12, NULL, '2020-09-22 08:14:30+07', false);
INSERT INTO public.journals VALUES (7473, 1976, 'Issue', 12, NULL, '2020-09-22 08:16:15+07', false);
INSERT INTO public.journals VALUES (7474, 2037, 'Issue', 5, NULL, '2020-09-22 09:27:38+07', false);
INSERT INTO public.journals VALUES (7475, 2041, 'Issue', 5, NULL, '2020-09-22 09:27:38+07', false);
INSERT INTO public.journals VALUES (7477, 2036, 'Issue', 5, NULL, '2020-09-22 09:29:44+07', false);
INSERT INTO public.journals VALUES (7478, 2038, 'Issue', 5, NULL, '2020-09-22 09:29:45+07', false);
INSERT INTO public.journals VALUES (7481, 2042, 'Issue', 5, NULL, '2020-09-22 09:29:45+07', false);
INSERT INTO public.journals VALUES (7482, 2036, 'Issue', 5, NULL, '2020-09-22 09:33:55+07', false);
INSERT INTO public.journals VALUES (7483, 2037, 'Issue', 5, NULL, '2020-09-22 09:33:55+07', false);
INSERT INTO public.journals VALUES (7484, 2038, 'Issue', 5, NULL, '2020-09-22 09:33:55+07', false);
INSERT INTO public.journals VALUES (7485, 2062, 'Issue', 39, '', '2020-09-22 13:33:04+07', false);
INSERT INTO public.journals VALUES (7486, 2036, 'Issue', 39, '', '2020-09-22 13:33:18+07', false);
INSERT INTO public.journals VALUES (7487, 2109, 'Issue', 19, '', '2020-09-22 14:33:23+07', false);
INSERT INTO public.journals VALUES (7488, 2113, 'Issue', 41, '', '2020-09-22 15:11:49+07', false);
INSERT INTO public.journals VALUES (7489, 2114, 'Issue', 41, '', '2020-09-22 15:12:13+07', false);
INSERT INTO public.journals VALUES (7490, 2114, 'Issue', 41, '', '2020-09-22 15:12:20+07', false);
INSERT INTO public.journals VALUES (7491, 2108, 'Issue', 39, '', '2020-09-22 16:05:25+07', false);
INSERT INTO public.journals VALUES (7492, 2115, 'Issue', 39, '', '2020-09-22 16:08:29+07', false);
INSERT INTO public.journals VALUES (7493, 2107, 'Issue', 10, NULL, '2020-09-22 16:56:02+07', false);
INSERT INTO public.journals VALUES (7494, 2107, 'Issue', 10, NULL, '2020-09-22 16:56:09+07', false);
INSERT INTO public.journals VALUES (7495, 2110, 'Issue', 41, '', '2020-09-23 08:38:02+07', false);
INSERT INTO public.journals VALUES (7496, 2105, 'Issue', 10, NULL, '2020-09-23 08:59:30+07', false);
INSERT INTO public.journals VALUES (7497, 2105, 'Issue', 10, NULL, '2020-09-23 08:59:39+07', false);
INSERT INTO public.journals VALUES (7498, 2117, 'Issue', 10, '', '2020-09-23 09:09:35+07', false);
INSERT INTO public.journals VALUES (7499, 2117, 'Issue', 10, '', '2020-09-23 09:10:26+07', false);
INSERT INTO public.journals VALUES (7500, 2117, 'Issue', 10, '', '2020-09-23 09:10:59+07', false);
INSERT INTO public.journals VALUES (7501, 2117, 'Issue', 10, NULL, '2020-09-23 09:11:11+07', false);
INSERT INTO public.journals VALUES (7502, 2117, 'Issue', 10, NULL, '2020-09-23 09:11:16+07', false);
INSERT INTO public.journals VALUES (7503, 2111, 'Issue', 41, '', '2020-09-23 09:13:40+07', false);
INSERT INTO public.journals VALUES (7504, 2119, 'Issue', 41, NULL, '2020-09-23 09:34:48+07', false);
INSERT INTO public.journals VALUES (7506, 2125, 'Issue', 38, '', '2020-09-23 10:39:45+07', false);
INSERT INTO public.journals VALUES (7507, 2101, 'Issue', 5, '', '2020-09-23 10:50:09+07', false);
INSERT INTO public.journals VALUES (7508, 2102, 'Issue', 5, '', '2020-09-23 10:50:10+07', false);
INSERT INTO public.journals VALUES (7509, 2106, 'Issue', 5, '', '2020-09-23 10:50:32+07', false);
INSERT INTO public.journals VALUES (7510, 2127, 'Issue', 5, '', '2020-09-23 11:08:53+07', false);
INSERT INTO public.journals VALUES (7511, 1996, 'Issue', 4, NULL, '2020-09-23 13:56:34+07', false);
INSERT INTO public.journals VALUES (7512, 2093, 'Issue', 4, NULL, '2020-09-23 13:56:34+07', false);
INSERT INTO public.journals VALUES (7513, 1996, 'Issue', 4, NULL, '2020-09-23 13:56:44+07', false);
INSERT INTO public.journals VALUES (7514, 2093, 'Issue', 4, NULL, '2020-09-23 13:56:44+07', false);
INSERT INTO public.journals VALUES (7515, 2119, 'Issue', 41, '', '2020-09-23 14:07:32+07', false);
INSERT INTO public.journals VALUES (7516, 2132, 'Issue', 5, '', '2020-09-23 14:13:59+07', false);
INSERT INTO public.journals VALUES (7518, 2134, 'Issue', 5, '', '2020-09-23 14:13:59+07', false);
INSERT INTO public.journals VALUES (7519, 2024, 'Issue', 5, NULL, '2020-09-23 14:15:10+07', false);
INSERT INTO public.journals VALUES (7520, 2025, 'Issue', 5, NULL, '2020-09-23 14:15:10+07', false);
INSERT INTO public.journals VALUES (7521, 2026, 'Issue', 5, NULL, '2020-09-23 14:15:10+07', false);
INSERT INTO public.journals VALUES (7522, 2027, 'Issue', 5, NULL, '2020-09-23 14:15:10+07', false);
INSERT INTO public.journals VALUES (7523, 2028, 'Issue', 5, NULL, '2020-09-23 14:15:10+07', false);
INSERT INTO public.journals VALUES (7524, 2029, 'Issue', 5, NULL, '2020-09-23 14:15:11+07', false);
INSERT INTO public.journals VALUES (7525, 2030, 'Issue', 5, NULL, '2020-09-23 14:15:11+07', false);
INSERT INTO public.journals VALUES (7526, 2032, 'Issue', 5, NULL, '2020-09-23 14:15:11+07', false);
INSERT INTO public.journals VALUES (7527, 2034, 'Issue', 5, NULL, '2020-09-23 14:15:11+07', false);
INSERT INTO public.journals VALUES (7528, 2035, 'Issue', 5, NULL, '2020-09-23 14:15:11+07', false);
INSERT INTO public.journals VALUES (7529, 2048, 'Issue', 5, NULL, '2020-09-23 14:15:11+07', false);
INSERT INTO public.journals VALUES (7530, 2049, 'Issue', 5, NULL, '2020-09-23 14:15:11+07', false);
INSERT INTO public.journals VALUES (7531, 2050, 'Issue', 5, NULL, '2020-09-23 14:15:11+07', false);
INSERT INTO public.journals VALUES (7532, 2052, 'Issue', 5, NULL, '2020-09-23 14:15:11+07', false);
INSERT INTO public.journals VALUES (7533, 2071, 'Issue', 5, NULL, '2020-09-23 14:15:11+07', false);
INSERT INTO public.journals VALUES (7534, 2072, 'Issue', 5, NULL, '2020-09-23 14:15:12+07', false);
INSERT INTO public.journals VALUES (7535, 2073, 'Issue', 5, NULL, '2020-09-23 14:15:12+07', false);
INSERT INTO public.journals VALUES (7536, 2074, 'Issue', 5, NULL, '2020-09-23 14:15:12+07', false);
INSERT INTO public.journals VALUES (7537, 2075, 'Issue', 5, NULL, '2020-09-23 14:15:12+07', false);
INSERT INTO public.journals VALUES (7538, 2084, 'Issue', 5, NULL, '2020-09-23 14:15:12+07', false);
INSERT INTO public.journals VALUES (7539, 2085, 'Issue', 5, NULL, '2020-09-23 14:15:12+07', false);
INSERT INTO public.journals VALUES (7540, 2086, 'Issue', 5, NULL, '2020-09-23 14:15:12+07', false);
INSERT INTO public.journals VALUES (7541, 2087, 'Issue', 5, NULL, '2020-09-23 14:15:13+07', false);
INSERT INTO public.journals VALUES (7542, 2088, 'Issue', 5, NULL, '2020-09-23 14:15:13+07', false);
INSERT INTO public.journals VALUES (7543, 2089, 'Issue', 5, NULL, '2020-09-23 14:15:13+07', false);
INSERT INTO public.journals VALUES (7544, 2090, 'Issue', 5, NULL, '2020-09-23 14:15:13+07', false);
INSERT INTO public.journals VALUES (7545, 2097, 'Issue', 5, NULL, '2020-09-23 14:15:13+07', false);
INSERT INTO public.journals VALUES (7546, 2098, 'Issue', 5, NULL, '2020-09-23 14:15:13+07', false);
INSERT INTO public.journals VALUES (7547, 2100, 'Issue', 5, NULL, '2020-09-23 14:15:13+07', false);
INSERT INTO public.journals VALUES (7548, 2123, 'Issue', 5, '', '2020-09-23 14:15:49+07', false);
INSERT INTO public.journals VALUES (7549, 2124, 'Issue', 5, '', '2020-09-23 14:15:49+07', false);
INSERT INTO public.journals VALUES (7550, 2125, 'Issue', 5, '', '2020-09-23 14:15:49+07', false);
INSERT INTO public.journals VALUES (7551, 2126, 'Issue', 5, '', '2020-09-23 14:15:50+07', false);
INSERT INTO public.journals VALUES (7552, 2127, 'Issue', 5, '', '2020-09-23 14:15:50+07', false);
INSERT INTO public.journals VALUES (7553, 2128, 'Issue', 5, '', '2020-09-23 14:15:50+07', false);
INSERT INTO public.journals VALUES (7555, 2042, 'Issue', 5, NULL, '2020-09-23 14:17:47+07', false);
INSERT INTO public.journals VALUES (7556, 2041, 'Issue', 5, NULL, '2020-09-23 14:17:59+07', false);
INSERT INTO public.journals VALUES (7557, 2041, 'Issue', 5, NULL, '2020-09-23 14:18:36+07', false);
INSERT INTO public.journals VALUES (7558, 2067, 'Issue', 5, '', '2020-09-23 14:19:39+07', false);
INSERT INTO public.journals VALUES (7559, 2123, 'Issue', 38, NULL, '2020-09-23 15:25:48+07', false);
INSERT INTO public.journals VALUES (7560, 2123, 'Issue', 38, NULL, '2020-09-23 15:26:07+07', false);
INSERT INTO public.journals VALUES (7561, 2124, 'Issue', 38, NULL, '2020-09-23 15:26:22+07', false);
INSERT INTO public.journals VALUES (7562, 2125, 'Issue', 38, NULL, '2020-09-23 15:26:33+07', false);
INSERT INTO public.journals VALUES (7563, 2125, 'Issue', 38, NULL, '2020-09-23 15:26:40+07', false);
INSERT INTO public.journals VALUES (7564, 2124, 'Issue', 38, NULL, '2020-09-23 15:26:51+07', false);
INSERT INTO public.journals VALUES (7565, 2131, 'Issue', 41, '', '2020-09-23 15:55:59+07', false);
INSERT INTO public.journals VALUES (7566, 2135, 'Issue', 41, '', '2020-09-23 15:59:18+07', false);
INSERT INTO public.journals VALUES (7567, 2126, 'Issue', 38, NULL, '2020-09-24 09:58:37+07', false);
INSERT INTO public.journals VALUES (7568, 2126, 'Issue', 38, NULL, '2020-09-24 09:58:50+07', false);
INSERT INTO public.journals VALUES (7669, 2111, 'Issue', 5, NULL, '2020-09-28 08:16:09+07', false);
INSERT INTO public.journals VALUES (7670, 2112, 'Issue', 5, NULL, '2020-09-28 08:16:09+07', false);
INSERT INTO public.journals VALUES (7569, 2126, 'Issue', 38, 'Hiện tại em đang làm trường hợp có sản phẩm trong kho và nhập sản phẩm vào kho.
Còn trường hợp Sản phẩm mới em chưa tìm được cách giải quyết.', '2020-09-24 10:01:03+07', false);
INSERT INTO public.journals VALUES (7570, 2038, 'Issue', 39, '', '2020-09-24 11:28:21+07', false);
INSERT INTO public.journals VALUES (7571, 2037, 'Issue', 39, '', '2020-09-24 11:28:30+07', false);
INSERT INTO public.journals VALUES (7572, 2112, 'Issue', 39, '', '2020-09-24 11:28:48+07', false);
INSERT INTO public.journals VALUES (7573, 2140, 'Issue', 39, '', '2020-09-24 11:28:54+07', false);
INSERT INTO public.journals VALUES (7574, 2141, 'Issue', 5, NULL, '2020-09-24 14:38:43+07', false);
INSERT INTO public.journals VALUES (7575, 2141, 'Issue', 5, NULL, '2020-09-24 14:38:49+07', false);
INSERT INTO public.journals VALUES (7576, 2141, 'Issue', 5, '', '2020-09-24 14:39:07+07', false);
INSERT INTO public.journals VALUES (7577, 2042, 'Issue', 39, '', '2020-09-24 16:11:15+07', false);
INSERT INTO public.journals VALUES (7578, 2041, 'Issue', 39, '', '2020-09-24 16:11:26+07', false);
INSERT INTO public.journals VALUES (7579, 2112, 'Issue', 5, NULL, '2020-09-24 16:56:23+07', false);
INSERT INTO public.journals VALUES (7580, 2095, 'Issue', 33, NULL, '2020-09-25 08:18:02+07', false);
INSERT INTO public.journals VALUES (7581, 2096, 'Issue', 33, NULL, '2020-09-25 08:18:18+07', false);
INSERT INTO public.journals VALUES (7582, 2099, 'Issue', 33, NULL, '2020-09-25 08:18:35+07', false);
INSERT INTO public.journals VALUES (7583, 2143, 'Issue', 33, NULL, '2020-09-25 08:18:52+07', false);
INSERT INTO public.journals VALUES (7584, 2145, 'Issue', 33, NULL, '2020-09-25 08:19:00+07', false);
INSERT INTO public.journals VALUES (7585, 2149, 'Issue', 33, NULL, '2020-09-25 08:19:27+07', false);
INSERT INTO public.journals VALUES (7586, 2064, 'Issue', 5, NULL, '2020-09-25 08:34:50+07', false);
INSERT INTO public.journals VALUES (7587, 2130, 'Issue', 5, NULL, '2020-09-25 08:35:09+07', false);
INSERT INTO public.journals VALUES (7588, 2064, 'Issue', 39, '', '2020-09-25 08:37:11+07', false);
INSERT INTO public.journals VALUES (7589, 1951, 'Issue', 13, '', '2020-09-25 08:46:28+07', false);
INSERT INTO public.journals VALUES (7590, 1997, 'Issue', 13, '', '2020-09-25 08:46:29+07', false);
INSERT INTO public.journals VALUES (7591, 2151, 'Issue', 13, '', '2020-09-25 08:46:29+07', false);
INSERT INTO public.journals VALUES (7592, 2154, 'Issue', 39, '', '2020-09-25 08:48:19+07', false);
INSERT INTO public.journals VALUES (7593, 2155, 'Issue', 39, '', '2020-09-25 08:48:27+07', false);
INSERT INTO public.journals VALUES (7594, 2101, 'Issue', 10, '', '2020-09-25 09:44:44+07', false);
INSERT INTO public.journals VALUES (7595, 2101, 'Issue', 10, NULL, '2020-09-25 09:45:57+07', false);
INSERT INTO public.journals VALUES (7596, 2101, 'Issue', 10, NULL, '2020-09-25 09:46:03+07', false);
INSERT INTO public.journals VALUES (7597, 2101, 'Issue', 10, NULL, '2020-09-25 09:46:13+07', false);
INSERT INTO public.journals VALUES (7598, 2102, 'Issue', 10, NULL, '2020-09-25 09:46:27+07', false);
INSERT INTO public.journals VALUES (7599, 2102, 'Issue', 10, NULL, '2020-09-25 09:46:35+07', false);
INSERT INTO public.journals VALUES (7600, 1951, 'Issue', 13, NULL, '2020-09-25 10:05:14+07', false);
INSERT INTO public.journals VALUES (7601, 1951, 'Issue', 13, NULL, '2020-09-25 10:05:27+07', false);
INSERT INTO public.journals VALUES (7602, 1997, 'Issue', 13, NULL, '2020-09-25 10:06:04+07', false);
INSERT INTO public.journals VALUES (7603, 1951, 'Issue', 13, NULL, '2020-09-25 10:06:15+07', false);
INSERT INTO public.journals VALUES (7604, 1997, 'Issue', 13, '', '2020-09-25 10:06:44+07', false);
INSERT INTO public.journals VALUES (7605, 1972, 'Issue', 13, NULL, '2020-09-25 10:07:47+07', false);
INSERT INTO public.journals VALUES (7606, 1982, 'Issue', 13, '', '2020-09-25 10:08:20+07', false);
INSERT INTO public.journals VALUES (7607, 1983, 'Issue', 13, '', '2020-09-25 10:08:20+07', false);
INSERT INTO public.journals VALUES (7608, 2021, 'Issue', 13, '', '2020-09-25 10:08:20+07', false);
INSERT INTO public.journals VALUES (7609, 2094, 'Issue', 13, '', '2020-09-25 10:08:21+07', false);
INSERT INTO public.journals VALUES (7610, 2152, 'Issue', 13, '', '2020-09-25 10:09:20+07', false);
INSERT INTO public.journals VALUES (7611, 2153, 'Issue', 13, '', '2020-09-25 10:09:20+07', false);
INSERT INTO public.journals VALUES (7612, 2156, 'Issue', 13, '', '2020-09-25 10:09:21+07', false);
INSERT INTO public.journals VALUES (7613, 2157, 'Issue', 13, '', '2020-09-25 10:09:21+07', false);
INSERT INTO public.journals VALUES (7614, 2158, 'Issue', 13, '', '2020-09-25 10:09:21+07', false);
INSERT INTO public.journals VALUES (7615, 2159, 'Issue', 13, '', '2020-09-25 10:09:21+07', false);
INSERT INTO public.journals VALUES (7616, 2160, 'Issue', 13, '', '2020-09-25 10:09:21+07', false);
INSERT INTO public.journals VALUES (7617, 2161, 'Issue', 13, '', '2020-09-25 10:09:21+07', false);
INSERT INTO public.journals VALUES (7618, 2136, 'Issue', 41, '', '2020-09-25 10:53:16+07', false);
INSERT INTO public.journals VALUES (7619, 2136, 'Issue', 41, '', '2020-09-25 10:53:36+07', false);
INSERT INTO public.journals VALUES (7620, 2155, 'Issue', 39, '', '2020-09-25 13:03:53+07', false);
INSERT INTO public.journals VALUES (7621, 2065, 'Issue', 8, NULL, '2020-09-25 13:41:19+07', false);
INSERT INTO public.journals VALUES (7622, 2066, 'Issue', 8, NULL, '2020-09-25 13:41:19+07', false);
INSERT INTO public.journals VALUES (7623, 2065, 'Issue', 8, NULL, '2020-09-25 13:41:28+07', false);
INSERT INTO public.journals VALUES (7624, 2066, 'Issue', 8, NULL, '2020-09-25 13:41:28+07', false);
INSERT INTO public.journals VALUES (7625, 2129, 'Issue', 10, NULL, '2020-09-25 16:28:53+07', false);
INSERT INTO public.journals VALUES (7626, 2106, 'Issue', 10, NULL, '2020-09-25 16:29:01+07', false);
INSERT INTO public.journals VALUES (7627, 2150, 'Issue', 41, '', '2020-09-26 08:07:19+07', false);
INSERT INTO public.journals VALUES (7628, 2164, 'Issue', 41, '', '2020-09-26 08:08:47+07', false);
INSERT INTO public.journals VALUES (7629, 2147, 'Issue', 33, NULL, '2020-09-26 08:09:45+07', false);
INSERT INTO public.journals VALUES (7630, 2170, 'Issue', 41, '', '2020-09-26 08:48:50+07', false);
INSERT INTO public.journals VALUES (7631, 2171, 'Issue', 41, '', '2020-09-26 09:04:55+07', false);
INSERT INTO public.journals VALUES (7632, 2169, 'Issue', 10, NULL, '2020-09-26 10:49:57+07', false);
INSERT INTO public.journals VALUES (7633, 2169, 'Issue', 10, NULL, '2020-09-26 10:50:04+07', false);
INSERT INTO public.journals VALUES (7634, 2166, 'Issue', 39, '', '2020-09-26 13:15:00+07', false);
INSERT INTO public.journals VALUES (7635, 2171, 'Issue', 41, NULL, '2020-09-26 13:28:45+07', false);
INSERT INTO public.journals VALUES (7636, 2171, 'Issue', 41, '', '2020-09-26 13:35:38+07', false);
INSERT INTO public.journals VALUES (7637, 2064, 'Issue', 39, '', '2020-09-26 14:31:38+07', false);
INSERT INTO public.journals VALUES (7638, 2151, 'Issue', 4, NULL, '2020-09-26 16:38:09+07', false);
INSERT INTO public.journals VALUES (7639, 2152, 'Issue', 4, NULL, '2020-09-26 16:38:09+07', false);
INSERT INTO public.journals VALUES (7640, 2156, 'Issue', 4, NULL, '2020-09-26 16:38:09+07', false);
INSERT INTO public.journals VALUES (7641, 2115, 'Issue', 12, '', '2020-09-26 16:50:18+07', false);
INSERT INTO public.journals VALUES (7642, 2180, 'Issue', 12, '', '2020-09-26 16:56:23+07', false);
INSERT INTO public.journals VALUES (7643, 2181, 'Issue', 12, '', '2020-09-26 16:56:23+07', false);
INSERT INTO public.journals VALUES (7644, 2178, 'Issue', 12, NULL, '2020-09-26 16:57:29+07', false);
INSERT INTO public.journals VALUES (7645, 2179, 'Issue', 12, NULL, '2020-09-26 16:57:54+07', false);
INSERT INTO public.journals VALUES (7646, 2126, 'Issue', 38, NULL, '2020-09-27 10:06:04+07', false);
INSERT INTO public.journals VALUES (7647, 2126, 'Issue', 38, NULL, '2020-09-27 10:06:12+07', false);
INSERT INTO public.journals VALUES (7648, 2128, 'Issue', 38, NULL, '2020-09-27 10:06:31+07', false);
INSERT INTO public.journals VALUES (7649, 2128, 'Issue', 38, NULL, '2020-09-27 10:06:43+07', false);
INSERT INTO public.journals VALUES (7650, 2127, 'Issue', 38, NULL, '2020-09-27 10:07:00+07', false);
INSERT INTO public.journals VALUES (7651, 2127, 'Issue', 38, NULL, '2020-09-27 10:07:07+07', false);
INSERT INTO public.journals VALUES (7652, 2182, 'Issue', 41, '', '2020-09-28 08:00:31+07', false);
INSERT INTO public.journals VALUES (7653, 2033, 'Issue', 5, NULL, '2020-09-28 08:16:07+07', false);
INSERT INTO public.journals VALUES (7654, 2036, 'Issue', 5, NULL, '2020-09-28 08:16:07+07', false);
INSERT INTO public.journals VALUES (7655, 2037, 'Issue', 5, NULL, '2020-09-28 08:16:07+07', false);
INSERT INTO public.journals VALUES (7656, 2038, 'Issue', 5, NULL, '2020-09-28 08:16:07+07', false);
INSERT INTO public.journals VALUES (7657, 2041, 'Issue', 5, NULL, '2020-09-28 08:16:07+07', false);
INSERT INTO public.journals VALUES (7658, 2042, 'Issue', 5, NULL, '2020-09-28 08:16:08+07', false);
INSERT INTO public.journals VALUES (7659, 2051, 'Issue', 5, NULL, '2020-09-28 08:16:08+07', false);
INSERT INTO public.journals VALUES (7660, 2062, 'Issue', 5, NULL, '2020-09-28 08:16:08+07', false);
INSERT INTO public.journals VALUES (7661, 2065, 'Issue', 5, NULL, '2020-09-28 08:16:08+07', false);
INSERT INTO public.journals VALUES (7662, 2066, 'Issue', 5, NULL, '2020-09-28 08:16:08+07', false);
INSERT INTO public.journals VALUES (7663, 2101, 'Issue', 5, NULL, '2020-09-28 08:16:08+07', false);
INSERT INTO public.journals VALUES (7664, 2102, 'Issue', 5, NULL, '2020-09-28 08:16:08+07', false);
INSERT INTO public.journals VALUES (7665, 2105, 'Issue', 5, NULL, '2020-09-28 08:16:08+07', false);
INSERT INTO public.journals VALUES (7666, 2107, 'Issue', 5, NULL, '2020-09-28 08:16:08+07', false);
INSERT INTO public.journals VALUES (7667, 2108, 'Issue', 5, NULL, '2020-09-28 08:16:08+07', false);
INSERT INTO public.journals VALUES (7668, 2110, 'Issue', 5, NULL, '2020-09-28 08:16:08+07', false);
INSERT INTO public.journals VALUES (7671, 2113, 'Issue', 5, NULL, '2020-09-28 08:16:09+07', false);
INSERT INTO public.journals VALUES (7672, 2114, 'Issue', 5, NULL, '2020-09-28 08:16:09+07', false);
INSERT INTO public.journals VALUES (7673, 2115, 'Issue', 5, NULL, '2020-09-28 08:16:09+07', false);
INSERT INTO public.journals VALUES (7674, 2117, 'Issue', 5, NULL, '2020-09-28 08:16:09+07', false);
INSERT INTO public.journals VALUES (7675, 2119, 'Issue', 5, NULL, '2020-09-28 08:16:09+07', false);
INSERT INTO public.journals VALUES (7676, 2123, 'Issue', 5, NULL, '2020-09-28 08:16:10+07', false);
INSERT INTO public.journals VALUES (7677, 2124, 'Issue', 5, NULL, '2020-09-28 08:16:10+07', false);
INSERT INTO public.journals VALUES (7678, 2125, 'Issue', 5, NULL, '2020-09-28 08:16:10+07', false);
INSERT INTO public.journals VALUES (7679, 2126, 'Issue', 5, NULL, '2020-09-28 08:16:10+07', false);
INSERT INTO public.journals VALUES (7680, 2127, 'Issue', 5, NULL, '2020-09-28 08:16:10+07', false);
INSERT INTO public.journals VALUES (7681, 2128, 'Issue', 5, NULL, '2020-09-28 08:16:10+07', false);
INSERT INTO public.journals VALUES (7682, 2129, 'Issue', 5, NULL, '2020-09-28 08:16:10+07', false);
INSERT INTO public.journals VALUES (7683, 2131, 'Issue', 5, NULL, '2020-09-28 08:16:10+07', false);
INSERT INTO public.journals VALUES (7684, 2135, 'Issue', 5, NULL, '2020-09-28 08:16:10+07', false);
INSERT INTO public.journals VALUES (7685, 2136, 'Issue', 5, NULL, '2020-09-28 08:16:10+07', false);
INSERT INTO public.journals VALUES (7686, 2140, 'Issue', 5, NULL, '2020-09-28 08:16:10+07', false);
INSERT INTO public.journals VALUES (7687, 2141, 'Issue', 5, NULL, '2020-09-28 08:16:11+07', false);
INSERT INTO public.journals VALUES (7688, 2150, 'Issue', 5, NULL, '2020-09-28 08:16:11+07', false);
INSERT INTO public.journals VALUES (7689, 2154, 'Issue', 5, NULL, '2020-09-28 08:16:11+07', false);
INSERT INTO public.journals VALUES (7690, 2155, 'Issue', 5, NULL, '2020-09-28 08:16:11+07', false);
INSERT INTO public.journals VALUES (7691, 2164, 'Issue', 5, NULL, '2020-09-28 08:16:11+07', false);
INSERT INTO public.journals VALUES (7692, 2166, 'Issue', 5, NULL, '2020-09-28 08:16:11+07', false);
INSERT INTO public.journals VALUES (7693, 2169, 'Issue', 5, NULL, '2020-09-28 08:16:11+07', false);
INSERT INTO public.journals VALUES (7694, 2170, 'Issue', 5, NULL, '2020-09-28 08:16:11+07', false);
INSERT INTO public.journals VALUES (7695, 2171, 'Issue', 5, NULL, '2020-09-28 08:16:11+07', false);
INSERT INTO public.journals VALUES (7696, 2178, 'Issue', 5, NULL, '2020-09-28 08:16:11+07', false);
INSERT INTO public.journals VALUES (7697, 2179, 'Issue', 5, NULL, '2020-09-28 08:16:12+07', false);
INSERT INTO public.journals VALUES (7698, 2167, 'Issue', 5, NULL, '2020-09-28 08:16:51+07', false);
INSERT INTO public.journals VALUES (7699, 2157, 'Issue', 13, NULL, '2020-09-28 08:17:39+07', false);
INSERT INTO public.journals VALUES (7700, 2157, 'Issue', 13, NULL, '2020-09-28 08:18:03+07', false);
INSERT INTO public.journals VALUES (7701, 2160, 'Issue', 13, NULL, '2020-09-28 08:18:25+07', false);
INSERT INTO public.journals VALUES (7702, 2160, 'Issue', 13, NULL, '2020-09-28 08:18:37+07', false);
INSERT INTO public.journals VALUES (7703, 2064, 'Issue', 5, '', '2020-09-28 08:19:55+07', false);
INSERT INTO public.journals VALUES (7704, 2103, 'Issue', 5, '', '2020-09-28 08:19:55+07', false);
INSERT INTO public.journals VALUES (7705, 2104, 'Issue', 5, '', '2020-09-28 08:19:55+07', false);
INSERT INTO public.journals VALUES (7706, 2106, 'Issue', 5, '', '2020-09-28 08:19:55+07', false);
INSERT INTO public.journals VALUES (7707, 2130, 'Issue', 5, '', '2020-09-28 08:19:56+07', false);
INSERT INTO public.journals VALUES (7708, 2167, 'Issue', 5, '', '2020-09-28 08:19:56+07', false);
INSERT INTO public.journals VALUES (7709, 2064, 'Issue', 5, NULL, '2020-09-28 08:20:14+07', false);
INSERT INTO public.journals VALUES (7710, 2103, 'Issue', 5, NULL, '2020-09-28 08:20:14+07', false);
INSERT INTO public.journals VALUES (7711, 2104, 'Issue', 5, NULL, '2020-09-28 08:20:14+07', false);
INSERT INTO public.journals VALUES (7712, 2106, 'Issue', 5, NULL, '2020-09-28 08:20:14+07', false);
INSERT INTO public.journals VALUES (7713, 2130, 'Issue', 5, NULL, '2020-09-28 08:20:14+07', false);
INSERT INTO public.journals VALUES (7714, 2167, 'Issue', 5, NULL, '2020-09-28 08:20:14+07', false);
INSERT INTO public.journals VALUES (7715, 2168, 'Issue', 5, NULL, '2020-09-28 08:20:15+07', false);
INSERT INTO public.journals VALUES (7716, 2173, 'Issue', 13, '', '2020-09-28 08:21:44+07', false);
INSERT INTO public.journals VALUES (7717, 2174, 'Issue', 13, '', '2020-09-28 08:21:44+07', false);
INSERT INTO public.journals VALUES (7718, 2175, 'Issue', 13, '', '2020-09-28 08:21:45+07', false);
INSERT INTO public.journals VALUES (7719, 2132, 'Issue', 5, NULL, '2020-09-28 08:22:10+07', false);
INSERT INTO public.journals VALUES (7721, 2134, 'Issue', 5, NULL, '2020-09-28 08:22:10+07', false);
INSERT INTO public.journals VALUES (7722, 2153, 'Issue', 13, NULL, '2020-09-28 08:22:15+07', false);
INSERT INTO public.journals VALUES (7724, 2134, 'Issue', 5, '', '2020-09-28 08:22:55+07', false);
INSERT INTO public.journals VALUES (7725, 2064, 'Issue', 5, NULL, '2020-09-28 08:23:10+07', false);
INSERT INTO public.journals VALUES (7726, 2130, 'Issue', 5, NULL, '2020-09-28 08:23:10+07', false);
INSERT INTO public.journals VALUES (7727, 2172, 'Issue', 13, NULL, '2020-09-28 08:23:19+07', false);
INSERT INTO public.journals VALUES (7728, 2064, 'Issue', 5, '', '2020-09-28 08:23:22+07', false);
INSERT INTO public.journals VALUES (7729, 2130, 'Issue', 5, '', '2020-09-28 08:23:22+07', false);
INSERT INTO public.journals VALUES (7730, 2103, 'Issue', 5, '', '2020-09-28 08:23:34+07', false);
INSERT INTO public.journals VALUES (7731, 2104, 'Issue', 5, '', '2020-09-28 08:23:35+07', false);
INSERT INTO public.journals VALUES (7732, 2153, 'Issue', 13, '', '2020-09-28 08:24:31+07', false);
INSERT INTO public.journals VALUES (7733, 2158, 'Issue', 13, '', '2020-09-28 08:24:31+07', false);
INSERT INTO public.journals VALUES (7734, 2159, 'Issue', 13, '', '2020-09-28 08:24:32+07', false);
INSERT INTO public.journals VALUES (7735, 2161, 'Issue', 13, '', '2020-09-28 08:24:32+07', false);
INSERT INTO public.journals VALUES (7736, 2162, 'Issue', 13, '', '2020-09-28 08:24:32+07', false);
INSERT INTO public.journals VALUES (7737, 2163, 'Issue', 13, '', '2020-09-28 08:24:32+07', false);
INSERT INTO public.journals VALUES (7738, 2172, 'Issue', 13, '', '2020-09-28 08:24:32+07', false);
INSERT INTO public.journals VALUES (7739, 2176, 'Issue', 13, '', '2020-09-28 08:24:32+07', false);
INSERT INTO public.journals VALUES (7740, 2177, 'Issue', 13, '', '2020-09-28 08:24:33+07', false);
INSERT INTO public.journals VALUES (7741, 2165, 'Issue', 13, NULL, '2020-09-28 08:31:34+07', false);
INSERT INTO public.journals VALUES (7742, 2165, 'Issue', 13, NULL, '2020-09-28 08:31:45+07', false);
INSERT INTO public.journals VALUES (7743, 2167, 'Issue', 39, '', '2020-09-28 08:32:42+07', false);
INSERT INTO public.journals VALUES (7744, 2172, 'Issue', 13, '', '2020-09-28 08:35:25+07', false);
INSERT INTO public.journals VALUES (7745, 2153, 'Issue', 13, '', '2020-09-28 08:36:22+07', false);
INSERT INTO public.journals VALUES (7746, 2158, 'Issue', 13, '', '2020-09-28 08:36:22+07', false);
INSERT INTO public.journals VALUES (7747, 2159, 'Issue', 13, '', '2020-09-28 08:36:22+07', false);
INSERT INTO public.journals VALUES (7748, 2161, 'Issue', 13, '', '2020-09-28 08:36:22+07', false);
INSERT INTO public.journals VALUES (7749, 2162, 'Issue', 13, '', '2020-09-28 08:36:22+07', false);
INSERT INTO public.journals VALUES (7750, 2163, 'Issue', 13, '', '2020-09-28 08:36:23+07', false);
INSERT INTO public.journals VALUES (7751, 2176, 'Issue', 13, '', '2020-09-28 08:36:23+07', false);
INSERT INTO public.journals VALUES (7752, 2177, 'Issue', 13, '', '2020-09-28 08:36:23+07', false);
INSERT INTO public.journals VALUES (7753, 2130, 'Issue', 39, '', '2020-09-28 08:42:10+07', false);
INSERT INTO public.journals VALUES (7754, 2176, 'Issue', 4, NULL, '2020-09-28 08:43:08+07', false);
INSERT INTO public.journals VALUES (7755, 2177, 'Issue', 4, NULL, '2020-09-28 08:45:12+07', false);
INSERT INTO public.journals VALUES (7756, 2153, 'Issue', 13, NULL, '2020-09-28 09:14:51+07', false);
INSERT INTO public.journals VALUES (7757, 2153, 'Issue', 13, NULL, '2020-09-28 09:14:57+07', false);
INSERT INTO public.journals VALUES (7758, 2168, 'Issue', 39, '', '2020-09-28 10:40:28+07', false);
INSERT INTO public.journals VALUES (7759, 2158, 'Issue', 13, '', '2020-09-28 11:04:42+07', false);
INSERT INTO public.journals VALUES (7760, 2159, 'Issue', 13, '', '2020-09-28 11:04:42+07', false);
INSERT INTO public.journals VALUES (7761, 2176, 'Issue', 13, '', '2020-09-28 11:12:43+07', false);
INSERT INTO public.journals VALUES (7762, 2177, 'Issue', 13, '', '2020-09-28 11:12:43+07', false);
INSERT INTO public.journals VALUES (7763, 2190, 'Issue', 19, '', '2020-09-28 13:16:49+07', false);
INSERT INTO public.journals VALUES (7764, 2185, 'Issue', 39, '', '2020-09-28 13:40:11+07', false);
INSERT INTO public.journals VALUES (7765, 2191, 'Issue', 13, NULL, '2020-09-28 14:02:28+07', false);
INSERT INTO public.journals VALUES (7766, 2182, 'Issue', 41, '', '2020-09-28 15:25:36+07', false);
INSERT INTO public.journals VALUES (7767, 2187, 'Issue', 41, '', '2020-09-28 15:26:05+07', false);
INSERT INTO public.journals VALUES (7768, 2193, 'Issue', 10, '', '2020-09-28 16:13:21+07', false);
INSERT INTO public.journals VALUES (7769, 2192, 'Issue', 10, '', '2020-09-28 16:13:37+07', false);
INSERT INTO public.journals VALUES (7770, 2193, 'Issue', 10, '', '2020-09-28 16:15:27+07', false);
INSERT INTO public.journals VALUES (7771, 2192, 'Issue', 10, '', '2020-09-28 16:15:37+07', false);
INSERT INTO public.journals VALUES (7772, 2180, 'Issue', 12, NULL, '2020-09-28 17:07:54+07', false);
INSERT INTO public.journals VALUES (7773, 2180, 'Issue', 12, NULL, '2020-09-28 17:08:00+07', false);
INSERT INTO public.journals VALUES (7774, 2181, 'Issue', 12, NULL, '2020-09-28 17:08:06+07', false);
INSERT INTO public.journals VALUES (7775, 2181, 'Issue', 12, NULL, '2020-09-28 17:08:12+07', false);
INSERT INTO public.journals VALUES (7776, 2190, 'Issue', 19, '', '2020-09-29 10:42:26+07', false);
INSERT INTO public.journals VALUES (7778, 2067, 'Issue', 8, NULL, '2020-09-29 11:33:45+07', false);
INSERT INTO public.journals VALUES (7779, 2067, 'Issue', 8, NULL, '2020-09-29 11:33:49+07', false);
INSERT INTO public.journals VALUES (7780, 2067, 'Issue', 8, NULL, '2020-09-29 11:33:58+07', false);
INSERT INTO public.journals VALUES (7781, 2191, 'Issue', 37, NULL, '2020-09-29 13:23:50+07', false);
INSERT INTO public.journals VALUES (7782, 2191, 'Issue', 37, NULL, '2020-09-29 13:23:58+07', false);
INSERT INTO public.journals VALUES (7783, 2172, 'Issue', 37, NULL, '2020-09-29 13:25:09+07', false);
INSERT INTO public.journals VALUES (7784, 2173, 'Issue', 37, NULL, '2020-09-29 13:26:35+07', false);
INSERT INTO public.journals VALUES (7785, 2186, 'Issue', 39, '', '2020-09-29 13:37:21+07', false);
INSERT INTO public.journals VALUES (7786, 2162, 'Issue', 4, NULL, '2020-09-29 13:49:07+07', false);
INSERT INTO public.journals VALUES (7787, 2163, 'Issue', 4, NULL, '2020-09-29 13:49:07+07', false);
INSERT INTO public.journals VALUES (7788, 2188, 'Issue', 13, '', '2020-09-29 14:39:47+07', false);
INSERT INTO public.journals VALUES (7789, 2189, 'Issue', 13, '', '2020-09-29 14:39:47+07', false);
INSERT INTO public.journals VALUES (7790, 2183, 'Issue', 39, '', '2020-09-29 15:21:52+07', false);
INSERT INTO public.journals VALUES (7791, 2201, 'Issue', 41, '', '2020-09-29 15:55:01+07', false);
INSERT INTO public.journals VALUES (7792, 2161, 'Issue', 4, NULL, '2020-09-29 16:37:32+07', false);
INSERT INTO public.journals VALUES (7793, 2192, 'Issue', 10, NULL, '2020-09-29 16:43:39+07', false);
INSERT INTO public.journals VALUES (7794, 2192, 'Issue', 10, NULL, '2020-09-29 16:43:45+07', false);
INSERT INTO public.journals VALUES (7795, 2204, 'Issue', 39, '', '2020-09-29 16:52:58+07', false);
INSERT INTO public.journals VALUES (7796, 2183, 'Issue', 39, '', '2020-09-29 16:53:37+07', false);
INSERT INTO public.journals VALUES (7797, 2204, 'Issue', 39, '', '2020-09-29 16:53:54+07', false);
INSERT INTO public.journals VALUES (7798, 2204, 'Issue', 39, '', '2020-09-29 16:54:38+07', false);
INSERT INTO public.journals VALUES (7799, 1988, 'Issue', 33, NULL, '2020-09-29 16:57:23+07', false);
INSERT INTO public.journals VALUES (7800, 1989, 'Issue', 33, NULL, '2020-09-29 16:57:30+07', false);
INSERT INTO public.journals VALUES (7801, 2209, 'Issue', 5, '', '2020-09-30 08:53:31+07', false);
INSERT INTO public.journals VALUES (7802, 2204, 'Issue', 5, NULL, '2020-09-30 08:58:45+07', false);
INSERT INTO public.journals VALUES (7803, 2183, 'Issue', 5, '', '2020-09-30 08:59:07+07', false);
INSERT INTO public.journals VALUES (7804, 2212, 'Issue', 5, '', '2020-09-30 08:59:57+07', false);
INSERT INTO public.journals VALUES (7805, 2215, 'Issue', 5, NULL, '2020-09-30 09:07:44+07', false);
INSERT INTO public.journals VALUES (7806, 2215, 'Issue', 5, '', '2020-09-30 09:08:02+07', false);
INSERT INTO public.journals VALUES (7807, 2200, 'Issue', 37, NULL, '2020-09-30 09:50:11+07', false);
INSERT INTO public.journals VALUES (7808, 2175, 'Issue', 37, NULL, '2020-09-30 09:50:47+07', false);
INSERT INTO public.journals VALUES (7809, 2172, 'Issue', 37, NULL, '2020-09-30 09:52:12+07', false);
INSERT INTO public.journals VALUES (7810, 2173, 'Issue', 37, NULL, '2020-09-30 09:52:40+07', false);
INSERT INTO public.journals VALUES (7811, 2174, 'Issue', 37, NULL, '2020-09-30 09:52:59+07', false);
INSERT INTO public.journals VALUES (7812, 2175, 'Issue', 37, NULL, '2020-09-30 09:53:13+07', false);
INSERT INTO public.journals VALUES (7813, 2174, 'Issue', 37, NULL, '2020-09-30 09:53:40+07', false);
INSERT INTO public.journals VALUES (7814, 2190, 'Issue', 19, '', '2020-09-30 10:33:46+07', false);
INSERT INTO public.journals VALUES (7815, 2161, 'Issue', 4, NULL, '2020-09-30 10:43:50+07', false);
INSERT INTO public.journals VALUES (7816, 2162, 'Issue', 4, NULL, '2020-09-30 10:43:50+07', false);
INSERT INTO public.journals VALUES (7817, 2163, 'Issue', 4, NULL, '2020-09-30 10:43:50+07', false);
INSERT INTO public.journals VALUES (7818, 2236, 'Issue', 40, '', '2020-09-30 10:43:50+07', false);
INSERT INTO public.journals VALUES (7819, 2236, 'Issue', 40, 'Nguyễn Hồng Gấm đã viết:
> Xác minh chức năng "Tìm kiếm" thành công. Khi người dùng nhập đúng thông tin có trong danh sách
> 
> *Các Bước Thực Hiện:
>   1. Nhập thông tin cần tìm kiếm có trong danh sách
>   2. Nhấn phím Enter
> 
> *Kết Qủa Mong Đợi:
>   Hiển thị danh sách các thông tin liên quan đến nội dung tìm kiếm
> 
> *Kết Qủa Thực Tế:
>   Hiển thị tất cả các thông tin kể cả thông tin không liên quan đến nội dung tìm kiếm
> 
> *Ví dụ:
> Nhập nội dung tìm kiếm: WC1



Nguyễn Hồng Gấm đã viết:
> Xác minh chức năng "Tìm kiếm" không thành công. Khi người dùng nhập đúng thông tin có trong danh sách
> 
> *Các Bước Thực Hiện:
>   1. Nhập thông tin cần tìm kiếm không có trong danh sách
>   2. Nhấn phím Enter
> 
> *Kết Qủa Mong Đợi:
>   Hiển thị thông báo thông tin tìm kiếm không có trong danh sách.
> 
> *Kết Qủa Thực Tế:
>   Hiển thị tất cả các thông tin kể cả thông tin không liên quan đến nội dung tìm kiếm
> 
> *Ví dụ:
> Nhập nội dung tìm kiếm: abcdef

', '2020-09-30 10:47:31+07', false);
INSERT INTO public.journals VALUES (7820, 2215, 'Issue', 38, NULL, '2020-09-30 10:48:46+07', false);
INSERT INTO public.journals VALUES (7821, 2215, 'Issue', 38, NULL, '2020-09-30 10:48:53+07', false);
INSERT INTO public.journals VALUES (7822, 2236, 'Issue', 40, NULL, '2020-09-30 10:49:32+07', false);
INSERT INTO public.journals VALUES (7823, 2212, 'Issue', 5, '', '2020-09-30 10:58:19+07', false);
INSERT INTO public.journals VALUES (7824, 2193, 'Issue', 10, NULL, '2020-09-30 11:05:52+07', false);
INSERT INTO public.journals VALUES (7825, 2193, 'Issue', 10, NULL, '2020-09-30 11:06:02+07', false);
INSERT INTO public.journals VALUES (7826, 2222, 'Issue', 13, '', '2020-09-30 11:07:18+07', false);
INSERT INTO public.journals VALUES (7827, 2222, 'Issue', 13, '', '2020-09-30 11:08:19+07', false);
INSERT INTO public.journals VALUES (7828, 2237, 'Issue', 5, '', '2020-09-30 11:09:41+07', false);
INSERT INTO public.journals VALUES (7829, 2232, 'Issue', 5, NULL, '2020-09-30 11:10:49+07', false);
INSERT INTO public.journals VALUES (7830, 2233, 'Issue', 5, NULL, '2020-09-30 11:10:49+07', false);
INSERT INTO public.journals VALUES (7831, 2235, 'Issue', 5, NULL, '2020-09-30 11:10:49+07', false);
INSERT INTO public.journals VALUES (7832, 2237, 'Issue', 5, NULL, '2020-09-30 11:10:49+07', false);
INSERT INTO public.journals VALUES (7833, 2216, 'Issue', 41, '', '2020-09-30 11:12:56+07', false);
INSERT INTO public.journals VALUES (7834, 2235, 'Issue', 40, '', '2020-09-30 11:13:30+07', false);
INSERT INTO public.journals VALUES (7835, 2235, 'Issue', 40, '', '2020-09-30 11:13:54+07', false);
INSERT INTO public.journals VALUES (7836, 2233, 'Issue', 40, '', '2020-09-30 11:14:27+07', false);
INSERT INTO public.journals VALUES (7837, 2232, 'Issue', 40, '', '2020-09-30 11:15:22+07', false);
INSERT INTO public.journals VALUES (7838, 2237, 'Issue', 40, '', '2020-09-30 11:17:16+07', false);
INSERT INTO public.journals VALUES (7839, 2239, 'Issue', 40, NULL, '2020-09-30 11:55:58+07', false);
INSERT INTO public.journals VALUES (7842, 2246, 'Issue', 40, '', '2020-09-30 13:25:27+07', false);
INSERT INTO public.journals VALUES (7843, 2242, 'Issue', 40, '', '2020-09-30 13:26:20+07', false);
INSERT INTO public.journals VALUES (7845, 2232, 'Issue', 39, '', '2020-09-30 16:51:19+07', false);
INSERT INTO public.journals VALUES (7846, 2232, 'Issue', 39, '', '2020-09-30 16:51:44+07', false);
INSERT INTO public.journals VALUES (7847, 2232, 'Issue', 39, '', '2020-09-30 16:52:25+07', false);
INSERT INTO public.journals VALUES (7848, 2232, 'Issue', 39, '', '2020-09-30 16:53:08+07', false);
INSERT INTO public.journals VALUES (7849, 2210, 'Issue', 38, NULL, '2020-09-30 20:27:20+07', false);
INSERT INTO public.journals VALUES (7850, 2210, 'Issue', 38, NULL, '2020-09-30 20:27:26+07', false);
INSERT INTO public.journals VALUES (7851, 2211, 'Issue', 38, NULL, '2020-09-30 21:33:43+07', false);
INSERT INTO public.journals VALUES (7852, 2211, 'Issue', 38, NULL, '2020-09-30 21:33:51+07', false);
INSERT INTO public.journals VALUES (7853, 2258, 'Issue', 39, '', '2020-10-01 07:41:34+07', false);
INSERT INTO public.journals VALUES (7859, 2217, 'Issue', 12, '', '2020-10-01 08:38:45+07', false);
INSERT INTO public.journals VALUES (7860, 2234, 'Issue', 19, '', '2020-10-01 08:43:04+07', false);
INSERT INTO public.journals VALUES (7861, 2217, 'Issue', 12, '', '2020-10-01 08:43:28+07', false);
INSERT INTO public.journals VALUES (7862, 2217, 'Issue', 12, '', '2020-10-01 09:12:53+07', false);
INSERT INTO public.journals VALUES (7863, 2208, 'Issue', 41, '', '2020-10-01 10:07:16+07', false);
INSERT INTO public.journals VALUES (7864, 2106, 'Issue', 10, NULL, '2020-10-01 11:35:52+07', false);
INSERT INTO public.journals VALUES (7865, 2183, 'Issue', 39, '', '2020-10-01 13:08:36+07', false);
INSERT INTO public.journals VALUES (7866, 2281, 'Issue', 39, '', '2020-10-01 13:11:42+07', false);
INSERT INTO public.journals VALUES (7867, 2281, 'Issue', 39, '', '2020-10-01 13:11:49+07', false);
INSERT INTO public.journals VALUES (7868, 2218, 'Issue', 19, '/Dashboard/DoanhThuTheoSPDV?Id=&tuNgay=2020-09-01&denNgay=2020-10-22&sortOption=1

', '2020-10-01 14:18:34+07', false);
INSERT INTO public.journals VALUES (7869, 2218, 'Issue', 19, '', '2020-10-01 14:20:12+07', false);
INSERT INTO public.journals VALUES (7870, 2219, 'Issue', 19, '', '2020-10-01 14:40:47+07', false);
INSERT INTO public.journals VALUES (7871, 2153, 'Issue', 13, NULL, '2020-10-01 15:37:25+07', false);
INSERT INTO public.journals VALUES (7872, 2222, 'Issue', 13, NULL, '2020-10-01 15:38:01+07', false);
INSERT INTO public.journals VALUES (7873, 2226, 'Issue', 13, NULL, '2020-10-01 15:38:18+07', false);
INSERT INTO public.journals VALUES (7874, 2226, 'Issue', 13, NULL, '2020-10-01 15:38:26+07', false);
INSERT INTO public.journals VALUES (7875, 2227, 'Issue', 13, NULL, '2020-10-01 15:50:33+07', false);
INSERT INTO public.journals VALUES (7876, 2230, 'Issue', 13, NULL, '2020-10-01 15:51:10+07', false);
INSERT INTO public.journals VALUES (7877, 2231, 'Issue', 13, NULL, '2020-10-01 15:51:19+07', false);
INSERT INTO public.journals VALUES (7878, 2224, 'Issue', 13, '', '2020-10-01 15:51:57+07', false);
INSERT INTO public.journals VALUES (7879, 2227, 'Issue', 37, NULL, '2020-10-01 16:29:43+07', false);
INSERT INTO public.journals VALUES (7880, 2227, 'Issue', 37, NULL, '2020-10-01 16:29:56+07', false);
INSERT INTO public.journals VALUES (7881, 2222, 'Issue', 37, NULL, '2020-10-01 16:30:10+07', false);
INSERT INTO public.journals VALUES (7882, 2222, 'Issue', 37, NULL, '2020-10-01 16:30:18+07', false);
INSERT INTO public.journals VALUES (7883, 2283, 'Issue', 39, '', '2020-10-01 16:38:35+07', false);
INSERT INTO public.journals VALUES (7884, 2287, 'Issue', 39, '', '2020-10-01 16:39:50+07', false);
INSERT INTO public.journals VALUES (7885, 2269, 'Issue', 38, NULL, '2020-10-01 21:11:32+07', false);
INSERT INTO public.journals VALUES (7886, 2269, 'Issue', 38, NULL, '2020-10-01 21:11:50+07', false);
INSERT INTO public.journals VALUES (7887, 2270, 'Issue', 38, NULL, '2020-10-01 21:12:10+07', false);
INSERT INTO public.journals VALUES (7888, 2270, 'Issue', 38, NULL, '2020-10-01 21:12:47+07', false);
INSERT INTO public.journals VALUES (7892, 2106, 'Issue', 5, NULL, '2020-10-02 09:04:50+07', false);
INSERT INTO public.journals VALUES (7893, 2130, 'Issue', 5, NULL, '2020-10-02 09:04:50+07', false);
INSERT INTO public.journals VALUES (7894, 2167, 'Issue', 5, NULL, '2020-10-02 09:04:51+07', false);
INSERT INTO public.journals VALUES (7895, 2168, 'Issue', 5, NULL, '2020-10-02 09:04:51+07', false);
INSERT INTO public.journals VALUES (7896, 2180, 'Issue', 5, NULL, '2020-10-02 09:04:51+07', false);
INSERT INTO public.journals VALUES (7897, 2181, 'Issue', 5, NULL, '2020-10-02 09:04:51+07', false);
INSERT INTO public.journals VALUES (7898, 2182, 'Issue', 5, NULL, '2020-10-02 09:04:51+07', false);
INSERT INTO public.journals VALUES (7899, 2183, 'Issue', 5, NULL, '2020-10-02 09:04:51+07', false);
INSERT INTO public.journals VALUES (7900, 2185, 'Issue', 5, NULL, '2020-10-02 09:04:52+07', false);
INSERT INTO public.journals VALUES (7901, 2186, 'Issue', 5, NULL, '2020-10-02 09:04:52+07', false);
INSERT INTO public.journals VALUES (7902, 2187, 'Issue', 5, NULL, '2020-10-02 09:04:52+07', false);
INSERT INTO public.journals VALUES (7903, 2190, 'Issue', 5, NULL, '2020-10-02 09:04:52+07', false);
INSERT INTO public.journals VALUES (7904, 2192, 'Issue', 5, NULL, '2020-10-02 09:04:52+07', false);
INSERT INTO public.journals VALUES (7905, 2193, 'Issue', 5, NULL, '2020-10-02 09:04:52+07', false);
INSERT INTO public.journals VALUES (7906, 2201, 'Issue', 5, NULL, '2020-10-02 09:04:52+07', false);
INSERT INTO public.journals VALUES (7907, 2208, 'Issue', 5, NULL, '2020-10-02 09:04:52+07', false);
INSERT INTO public.journals VALUES (7908, 2209, 'Issue', 5, NULL, '2020-10-02 09:04:53+07', false);
INSERT INTO public.journals VALUES (7909, 2210, 'Issue', 5, NULL, '2020-10-02 09:04:53+07', false);
INSERT INTO public.journals VALUES (7910, 2211, 'Issue', 5, NULL, '2020-10-02 09:04:53+07', false);
INSERT INTO public.journals VALUES (7911, 2212, 'Issue', 5, NULL, '2020-10-02 09:04:53+07', false);
INSERT INTO public.journals VALUES (7912, 2215, 'Issue', 5, NULL, '2020-10-02 09:04:53+07', false);
INSERT INTO public.journals VALUES (7913, 2216, 'Issue', 5, NULL, '2020-10-02 09:04:53+07', false);
INSERT INTO public.journals VALUES (7914, 2218, 'Issue', 5, NULL, '2020-10-02 09:04:53+07', false);
INSERT INTO public.journals VALUES (7915, 2219, 'Issue', 5, NULL, '2020-10-02 09:04:54+07', false);
INSERT INTO public.journals VALUES (7916, 2269, 'Issue', 5, NULL, '2020-10-02 09:04:54+07', false);
INSERT INTO public.journals VALUES (7917, 2270, 'Issue', 5, NULL, '2020-10-02 09:04:54+07', false);
INSERT INTO public.journals VALUES (7918, 2281, 'Issue', 5, NULL, '2020-10-02 09:04:54+07', false);
INSERT INTO public.journals VALUES (7919, 2287, 'Issue', 39, '', '2020-10-02 09:20:10+07', false);
INSERT INTO public.journals VALUES (7920, 2233, 'Issue', 39, '', '2020-10-02 02:22:12+07', false);
INSERT INTO public.journals VALUES (7921, 2233, 'Issue', 39, '', '2020-10-02 02:22:29+07', false);
INSERT INTO public.journals VALUES (7922, 2235, 'Issue', 39, '', '2020-10-02 02:24:35+07', false);
INSERT INTO public.journals VALUES (7923, 2233, 'Issue', 39, '', '2020-10-02 02:24:50+07', false);
INSERT INTO public.journals VALUES (7924, 2237, 'Issue', 39, '', '2020-10-02 02:29:02+07', false);
INSERT INTO public.journals VALUES (7925, 2234, 'Issue', 19, '', '2020-10-02 03:21:23+07', false);
INSERT INTO public.journals VALUES (7926, 2242, 'Issue', 39, '', '2020-10-02 03:51:34+07', false);
INSERT INTO public.journals VALUES (7927, 2242, 'Issue', 39, '', '2020-10-02 03:51:43+07', false);
INSERT INTO public.journals VALUES (7928, 2286, 'Issue', 19, '', '2020-10-02 03:55:48+07', false);
INSERT INTO public.journals VALUES (7929, 2217, 'Issue', 19, '', '2020-10-02 03:56:24+07', false);
INSERT INTO public.journals VALUES (7930, 2242, 'Issue', 39, '', '2020-10-02 03:59:09+07', false);
INSERT INTO public.journals VALUES (7931, 2064, 'Issue', 39, '', '2020-10-02 11:10:09+07', false);
INSERT INTO public.journals VALUES (7932, 2293, 'Issue', 39, '', '2020-10-02 11:13:42+07', false);
INSERT INTO public.journals VALUES (7933, 2244, 'Issue', 39, '', '2020-10-02 13:27:15+07', false);
INSERT INTO public.journals VALUES (7934, 2245, 'Issue', 39, '', '2020-10-02 13:28:07+07', false);
INSERT INTO public.journals VALUES (7935, 2246, 'Issue', 39, '', '2020-10-02 13:29:02+07', false);
INSERT INTO public.journals VALUES (7936, 2247, 'Issue', 39, '', '2020-10-02 13:30:45+07', false);
INSERT INTO public.journals VALUES (7937, 2247, 'Issue', 39, '', '2020-10-02 13:30:59+07', false);
INSERT INTO public.journals VALUES (7938, 2248, 'Issue', 39, '', '2020-10-02 13:32:32+07', false);
INSERT INTO public.journals VALUES (7939, 2249, 'Issue', 39, '', '2020-10-02 13:32:53+07', false);
INSERT INTO public.journals VALUES (7940, 2250, 'Issue', 39, '', '2020-10-02 13:37:01+07', false);
INSERT INTO public.journals VALUES (7941, 2251, 'Issue', 39, '', '2020-10-02 13:40:45+07', false);
INSERT INTO public.journals VALUES (7942, 2252, 'Issue', 39, '', '2020-10-02 14:00:57+07', false);
INSERT INTO public.journals VALUES (7943, 2253, 'Issue', 39, '', '2020-10-02 14:05:50+07', false);
INSERT INTO public.journals VALUES (7944, 2254, 'Issue', 39, '', '2020-10-02 14:06:18+07', false);
INSERT INTO public.journals VALUES (7945, 2255, 'Issue', 39, '', '2020-10-02 14:08:31+07', false);
INSERT INTO public.journals VALUES (7946, 2256, 'Issue', 39, '', '2020-10-02 14:09:02+07', false);
INSERT INTO public.journals VALUES (7947, 2257, 'Issue', 39, '', '2020-10-02 14:11:07+07', false);
INSERT INTO public.journals VALUES (7948, 2258, 'Issue', 39, '', '2020-10-02 14:11:25+07', false);
INSERT INTO public.journals VALUES (7949, 2259, 'Issue', 39, '', '2020-10-02 14:17:14+07', false);
INSERT INTO public.journals VALUES (7950, 2220, 'Issue', 19, '/Dashboard/ThongKeDoanhThuTheoNgay?Id=1&tuNgay=2020-09-01&denNgay=2020-10-22
', '2020-10-02 14:29:18+07', false);
INSERT INTO public.journals VALUES (7951, 2217, 'Issue', 19, '@Anh Tiến
/Dashboard/ThongKeDoanhThuTheoNgay?Id=1&tuNgay=2020-09-01&denNgay=2020-10-22
/ReportMobile/BaoCaoTonKho?Id=
/ReportMoblie/BCDTBanThe?Id=&tuNgay=2020-09-01&denNgay=2020-10-22
/Dashboard/DoanhThuTheoSPDV?Id=&tuNgay=2020-09-01&denNgay=2020-10-22&sortOption=1', '2020-10-02 14:31:38+07', false);
INSERT INTO public.journals VALUES (7952, 2288, 'Issue', 41, '', '2020-10-02 14:39:11+07', false);
INSERT INTO public.journals VALUES (7953, 2286, 'Issue', 19, '/Dashboard/ThongKeDoanhThuTheoNgay?Id=1&tuNgay=2020-09-01&denNgay=2020-10-22
/ReportMobile/BaoCaoTonKho?Id=
/ReportMoblie/BCDTBanThe?Id=&tuNgay=2020-09-01&denNgay=2020-10-22
/Dashboard/DoanhThuTheoSPDV?Id=&tuNgay=2020-09-01&denNgay=2020-10-22&sortOption=1', '2020-10-02 14:41:14+07', false);
INSERT INTO public.journals VALUES (7954, 2296, 'Issue', 41, '', '2020-10-02 14:44:26+07', false);
INSERT INTO public.journals VALUES (7955, 2297, 'Issue', 41, '', '2020-10-02 14:44:50+07', false);
INSERT INTO public.journals VALUES (7956, 2296, 'Issue', 41, '', '2020-10-02 14:45:03+07', false);
INSERT INTO public.journals VALUES (7957, 2296, 'Issue', 41, NULL, '2020-10-02 14:47:48+07', false);
INSERT INTO public.journals VALUES (7958, 2221, 'Issue', 19, '', '2020-10-02 16:07:17+07', false);
INSERT INTO public.journals VALUES (7959, 2295, 'Issue', 39, '', '2020-10-03 08:03:18+07', false);
INSERT INTO public.journals VALUES (7960, 2103, 'Issue', 10, NULL, '2020-10-03 08:05:22+07', false);
INSERT INTO public.journals VALUES (7961, 2103, 'Issue', 10, NULL, '2020-10-03 08:05:27+07', false);
INSERT INTO public.journals VALUES (7962, 2064, 'Issue', 5, NULL, '2020-10-03 08:19:06+07', false);
INSERT INTO public.journals VALUES (7963, 2103, 'Issue', 5, NULL, '2020-10-03 08:19:06+07', false);
INSERT INTO public.journals VALUES (7964, 2220, 'Issue', 5, NULL, '2020-10-03 08:19:06+07', false);
INSERT INTO public.journals VALUES (7965, 2234, 'Issue', 5, NULL, '2020-10-03 08:19:06+07', false);
INSERT INTO public.journals VALUES (7966, 2286, 'Issue', 5, NULL, '2020-10-03 08:19:06+07', false);
INSERT INTO public.journals VALUES (7967, 2287, 'Issue', 5, NULL, '2020-10-03 08:19:06+07', false);
INSERT INTO public.journals VALUES (7968, 2288, 'Issue', 5, NULL, '2020-10-03 08:19:06+07', false);
INSERT INTO public.journals VALUES (7969, 2289, 'Issue', 5, NULL, '2020-10-03 08:19:07+07', false);
INSERT INTO public.journals VALUES (7970, 2292, 'Issue', 5, NULL, '2020-10-03 08:19:07+07', false);
INSERT INTO public.journals VALUES (7971, 2295, 'Issue', 5, NULL, '2020-10-03 08:19:07+07', false);
INSERT INTO public.journals VALUES (7972, 2297, 'Issue', 5, NULL, '2020-10-03 08:19:07+07', false);
INSERT INTO public.journals VALUES (7973, 2213, 'Issue', 5, '', '2020-10-03 08:20:57+07', false);
INSERT INTO public.journals VALUES (7974, 2232, 'Issue', 5, NULL, '2020-10-03 08:37:52+07', false);
INSERT INTO public.journals VALUES (7975, 2233, 'Issue', 5, NULL, '2020-10-03 08:37:52+07', false);
INSERT INTO public.journals VALUES (7976, 2235, 'Issue', 5, NULL, '2020-10-03 08:37:52+07', false);
INSERT INTO public.journals VALUES (7977, 2237, 'Issue', 5, NULL, '2020-10-03 08:37:52+07', false);
INSERT INTO public.journals VALUES (7978, 2242, 'Issue', 5, NULL, '2020-10-03 08:37:52+07', false);
INSERT INTO public.journals VALUES (7979, 2244, 'Issue', 5, NULL, '2020-10-03 08:37:53+07', false);
INSERT INTO public.journals VALUES (7980, 2245, 'Issue', 5, NULL, '2020-10-03 08:37:53+07', false);
INSERT INTO public.journals VALUES (7981, 2246, 'Issue', 5, NULL, '2020-10-03 08:37:53+07', false);
INSERT INTO public.journals VALUES (7982, 2247, 'Issue', 5, NULL, '2020-10-03 08:37:53+07', false);
INSERT INTO public.journals VALUES (7983, 2248, 'Issue', 5, NULL, '2020-10-03 08:37:53+07', false);
INSERT INTO public.journals VALUES (7984, 2249, 'Issue', 5, NULL, '2020-10-03 08:37:53+07', false);
INSERT INTO public.journals VALUES (7985, 2250, 'Issue', 5, NULL, '2020-10-03 08:37:53+07', false);
INSERT INTO public.journals VALUES (7986, 2251, 'Issue', 5, NULL, '2020-10-03 08:37:54+07', false);
INSERT INTO public.journals VALUES (7987, 2252, 'Issue', 5, NULL, '2020-10-03 08:37:54+07', false);
INSERT INTO public.journals VALUES (7988, 2253, 'Issue', 5, NULL, '2020-10-03 08:37:54+07', false);
INSERT INTO public.journals VALUES (7989, 2254, 'Issue', 5, NULL, '2020-10-03 08:37:54+07', false);
INSERT INTO public.journals VALUES (7990, 2255, 'Issue', 5, NULL, '2020-10-03 08:37:54+07', false);
INSERT INTO public.journals VALUES (7991, 2256, 'Issue', 5, NULL, '2020-10-03 08:37:55+07', false);
INSERT INTO public.journals VALUES (7992, 2257, 'Issue', 5, NULL, '2020-10-03 08:37:55+07', false);
INSERT INTO public.journals VALUES (7993, 2258, 'Issue', 5, NULL, '2020-10-03 08:37:55+07', false);
INSERT INTO public.journals VALUES (7994, 2259, 'Issue', 5, NULL, '2020-10-03 08:37:55+07', false);
INSERT INTO public.journals VALUES (7996, 2243, 'Issue', 39, '', '2020-10-03 11:44:07+07', false);
INSERT INTO public.journals VALUES (7997, 2301, 'Issue', 5, NULL, '2020-10-03 13:43:47+07', false);
INSERT INTO public.journals VALUES (7998, 2302, 'Issue', 5, NULL, '2020-10-03 13:43:47+07', false);
INSERT INTO public.journals VALUES (7999, 2221, 'Issue', 19, '/QuanLyKho/CanhBaoTonKho?idDiem=3', '2020-10-03 14:11:20+07', false);
INSERT INTO public.journals VALUES (8000, 2303, 'Issue', 41, '', '2020-10-03 15:04:13+07', false);
INSERT INTO public.journals VALUES (8001, 2134, 'Issue', 5, NULL, '2020-10-03 15:56:51+07', false);
INSERT INTO public.journals VALUES (8003, 2243, 'Issue', 5, NULL, '2020-10-03 16:05:24+07', false);
INSERT INTO public.journals VALUES (8006, 2293, 'Issue', 39, '', '2020-10-03 16:27:43+07', false);
INSERT INTO public.journals VALUES (8007, 2283, 'Issue', 39, '', '2020-10-03 16:27:52+07', false);
INSERT INTO public.journals VALUES (8008, 2305, 'Issue', 39, '', '2020-10-03 16:39:09+07', false);
INSERT INTO public.journals VALUES (8009, 2306, 'Issue', 39, '', '2020-10-03 16:39:31+07', false);
INSERT INTO public.journals VALUES (8010, 2307, 'Issue', 39, '', '2020-10-03 16:39:50+07', false);
INSERT INTO public.journals VALUES (8011, 2262, 'Issue', 40, '', '2020-10-03 16:45:23+07', false);
INSERT INTO public.journals VALUES (8012, 2311, 'Issue', 40, NULL, '2020-10-03 16:50:25+07', false);
INSERT INTO public.journals VALUES (8013, 2260, 'Issue', 41, '', '2020-10-03 16:52:37+07', false);
INSERT INTO public.journals VALUES (8014, 2260, 'Issue', 41, '', '2020-10-03 16:53:03+07', false);
INSERT INTO public.journals VALUES (8015, 2260, 'Issue', 41, '', '2020-10-03 16:53:32+07', false);
INSERT INTO public.journals VALUES (8016, 2238, 'Issue', 13, NULL, '2020-10-05 08:06:00+07', false);
INSERT INTO public.journals VALUES (8017, 2224, 'Issue', 13, NULL, '2020-10-05 08:11:09+07', false);
INSERT INTO public.journals VALUES (8018, 2223, 'Issue', 13, NULL, '2020-10-05 08:11:18+07', false);
INSERT INTO public.journals VALUES (8019, 2229, 'Issue', 13, NULL, '2020-10-05 08:11:41+07', false);
INSERT INTO public.journals VALUES (8020, 2225, 'Issue', 13, NULL, '2020-10-05 08:11:48+07', false);
INSERT INTO public.journals VALUES (8022, 2320, 'Issue', 12, NULL, '2020-10-05 08:15:32+07', false);
INSERT INTO public.journals VALUES (8023, 2322, 'Issue', 12, NULL, '2020-10-05 08:15:32+07', false);
INSERT INTO public.journals VALUES (8024, 2320, 'Issue', 12, NULL, '2020-10-05 08:15:44+07', false);
INSERT INTO public.journals VALUES (8025, 2313, 'Issue', 12, NULL, '2020-10-05 08:16:04+07', false);
INSERT INTO public.journals VALUES (8026, 2314, 'Issue', 12, NULL, '2020-10-05 08:16:04+07', false);
INSERT INTO public.journals VALUES (8027, 2316, 'Issue', 12, NULL, '2020-10-05 08:16:04+07', false);
INSERT INTO public.journals VALUES (8028, 2317, 'Issue', 12, NULL, '2020-10-05 08:16:05+07', false);
INSERT INTO public.journals VALUES (8029, 2320, 'Issue', 12, NULL, '2020-10-05 08:16:05+07', false);
INSERT INTO public.journals VALUES (8030, 2322, 'Issue', 12, NULL, '2020-10-05 08:16:05+07', false);
INSERT INTO public.journals VALUES (8031, 2323, 'Issue', 12, NULL, '2020-10-05 08:16:05+07', false);
INSERT INTO public.journals VALUES (8032, 2324, 'Issue', 12, NULL, '2020-10-05 08:16:05+07', false);
INSERT INTO public.journals VALUES (8033, 2320, 'Issue', 12, '', '2020-10-05 08:16:30+07', false);
INSERT INTO public.journals VALUES (8034, 2312, 'Issue', 12, '', '2020-10-05 08:16:55+07', false);
INSERT INTO public.journals VALUES (8035, 2313, 'Issue', 12, '', '2020-10-05 08:16:55+07', false);
INSERT INTO public.journals VALUES (8036, 2314, 'Issue', 12, '', '2020-10-05 08:16:55+07', false);
INSERT INTO public.journals VALUES (8037, 2316, 'Issue', 12, '', '2020-10-05 08:16:56+07', false);
INSERT INTO public.journals VALUES (8038, 2317, 'Issue', 12, '', '2020-10-05 08:16:56+07', false);
INSERT INTO public.journals VALUES (8039, 2322, 'Issue', 12, '', '2020-10-05 08:16:56+07', false);
INSERT INTO public.journals VALUES (8040, 2323, 'Issue', 12, '', '2020-10-05 08:16:56+07', false);
INSERT INTO public.journals VALUES (8041, 2324, 'Issue', 12, '', '2020-10-05 08:16:56+07', false);
INSERT INTO public.journals VALUES (8042, 2312, 'Issue', 12, '', '2020-10-05 08:18:25+07', false);
INSERT INTO public.journals VALUES (8043, 2313, 'Issue', 12, '', '2020-10-05 08:18:25+07', false);
INSERT INTO public.journals VALUES (8044, 2314, 'Issue', 12, '', '2020-10-05 08:18:25+07', false);
INSERT INTO public.journals VALUES (8045, 2316, 'Issue', 12, '', '2020-10-05 08:18:26+07', false);
INSERT INTO public.journals VALUES (8046, 2317, 'Issue', 12, '', '2020-10-05 08:18:26+07', false);
INSERT INTO public.journals VALUES (8047, 2322, 'Issue', 12, '', '2020-10-05 08:18:26+07', false);
INSERT INTO public.journals VALUES (8048, 2324, 'Issue', 12, '', '2020-10-05 08:18:51+07', false);
INSERT INTO public.journals VALUES (8049, 2320, 'Issue', 12, '', '2020-10-05 08:19:23+07', false);
INSERT INTO public.journals VALUES (8050, 2323, 'Issue', 12, '', '2020-10-05 08:19:24+07', false);
INSERT INTO public.journals VALUES (8051, 2206, 'Issue', 29, NULL, '2020-10-05 08:30:30+07', false);
INSERT INTO public.journals VALUES (8052, 2204, 'Issue', 39, '', '2020-10-05 09:08:13+07', false);
INSERT INTO public.journals VALUES (8053, 2320, 'Issue', 12, NULL, '2020-10-05 09:22:38+07', false);
INSERT INTO public.journals VALUES (8054, 2320, 'Issue', 12, NULL, '2020-10-05 09:22:49+07', false);
INSERT INTO public.journals VALUES (8055, 2221, 'Issue', 5, NULL, '2020-10-05 09:38:26+07', false);
INSERT INTO public.journals VALUES (8056, 2283, 'Issue', 5, NULL, '2020-10-05 09:38:26+07', false);
INSERT INTO public.journals VALUES (8057, 2293, 'Issue', 5, NULL, '2020-10-05 09:38:26+07', false);
INSERT INTO public.journals VALUES (8058, 2303, 'Issue', 5, NULL, '2020-10-05 09:38:26+07', false);
INSERT INTO public.journals VALUES (8059, 2312, 'Issue', 5, NULL, '2020-10-05 09:38:26+07', false);
INSERT INTO public.journals VALUES (8060, 2313, 'Issue', 5, NULL, '2020-10-05 09:38:27+07', false);
INSERT INTO public.journals VALUES (8061, 2314, 'Issue', 5, NULL, '2020-10-05 09:38:27+07', false);
INSERT INTO public.journals VALUES (8062, 2316, 'Issue', 5, NULL, '2020-10-05 09:38:27+07', false);
INSERT INTO public.journals VALUES (8063, 2317, 'Issue', 5, NULL, '2020-10-05 09:38:27+07', false);
INSERT INTO public.journals VALUES (8064, 2322, 'Issue', 5, NULL, '2020-10-05 09:38:27+07', false);
INSERT INTO public.journals VALUES (8065, 2324, 'Issue', 5, NULL, '2020-10-05 09:38:27+07', false);
INSERT INTO public.journals VALUES (8066, 2217, 'Issue', 5, NULL, '2020-10-05 09:39:09+07', false);
INSERT INTO public.journals VALUES (8067, 2213, 'Issue', 5, NULL, '2020-10-05 09:39:28+07', false);
INSERT INTO public.journals VALUES (8068, 2298, 'Issue', 5, NULL, '2020-10-05 09:39:28+07', false);
INSERT INTO public.journals VALUES (8069, 2134, 'Issue', 5, '', '2020-10-05 09:39:57+07', false);
INSERT INTO public.journals VALUES (8070, 2213, 'Issue', 5, '', '2020-10-05 09:40:19+07', false);
INSERT INTO public.journals VALUES (8071, 2298, 'Issue', 5, '', '2020-10-05 09:40:19+07', false);
INSERT INTO public.journals VALUES (8072, 2319, 'Issue', 5, NULL, '2020-10-05 09:40:56+07', false);
INSERT INTO public.journals VALUES (8073, 2260, 'Issue', 5, NULL, '2020-10-05 09:41:22+07', false);
INSERT INTO public.journals VALUES (8074, 2305, 'Issue', 5, NULL, '2020-10-05 09:41:23+07', false);
INSERT INTO public.journals VALUES (8075, 2306, 'Issue', 5, NULL, '2020-10-05 09:41:23+07', false);
INSERT INTO public.journals VALUES (8076, 2307, 'Issue', 5, NULL, '2020-10-05 09:41:23+07', false);
INSERT INTO public.journals VALUES (8077, 1910, 'Issue', 5, NULL, '2020-10-05 11:08:38+07', false);
INSERT INTO public.journals VALUES (8078, 2315, 'Issue', 13, '', '2020-10-05 11:22:28+07', false);
INSERT INTO public.journals VALUES (8079, 2223, 'Issue', 13, '', '2020-10-05 11:25:01+07', false);
INSERT INTO public.journals VALUES (8080, 2224, 'Issue', 13, '', '2020-10-05 11:25:01+07', false);
INSERT INTO public.journals VALUES (8081, 2225, 'Issue', 13, '', '2020-10-05 11:25:01+07', false);
INSERT INTO public.journals VALUES (8083, 2229, 'Issue', 13, '', '2020-10-05 11:25:02+07', false);
INSERT INTO public.journals VALUES (8084, 2230, 'Issue', 13, '', '2020-10-05 11:25:02+07', false);
INSERT INTO public.journals VALUES (8085, 2231, 'Issue', 13, '', '2020-10-05 11:25:02+07', false);
INSERT INTO public.journals VALUES (8086, 2290, 'Issue', 13, '', '2020-10-05 11:25:02+07', false);
INSERT INTO public.journals VALUES (8087, 2291, 'Issue', 13, '', '2020-10-05 11:25:02+07', false);
INSERT INTO public.journals VALUES (8088, 2294, 'Issue', 13, '', '2020-10-05 11:25:02+07', false);
INSERT INTO public.journals VALUES (8089, 2315, 'Issue', 13, '', '2020-10-05 11:25:02+07', false);
INSERT INTO public.journals VALUES (8090, 2321, 'Issue', 13, '', '2020-10-05 11:25:02+07', false);
INSERT INTO public.journals VALUES (8091, 2325, 'Issue', 13, '', '2020-10-05 11:25:03+07', false);
INSERT INTO public.journals VALUES (8092, 2223, 'Issue', 13, '', '2020-10-05 14:33:36+07', false);
INSERT INTO public.journals VALUES (8093, 2224, 'Issue', 13, '', '2020-10-05 14:33:36+07', false);
INSERT INTO public.journals VALUES (8094, 2290, 'Issue', 13, '', '2020-10-05 14:33:37+07', false);
INSERT INTO public.journals VALUES (8095, 2294, 'Issue', 13, '', '2020-10-05 14:33:37+07', false);
INSERT INTO public.journals VALUES (8096, 2321, 'Issue', 13, '', '2020-10-05 14:33:37+07', false);
INSERT INTO public.journals VALUES (8097, 2213, 'Issue', 38, NULL, '2020-10-05 17:00:30+07', false);
INSERT INTO public.journals VALUES (8098, 2298, 'Issue', 38, NULL, '2020-10-05 17:00:38+07', false);
INSERT INTO public.journals VALUES (8099, 2213, 'Issue', 38, NULL, '2020-10-05 17:00:45+07', false);
INSERT INTO public.journals VALUES (8100, 2298, 'Issue', 38, NULL, '2020-10-05 17:00:51+07', false);
INSERT INTO public.journals VALUES (8101, 2326, 'Issue', 13, '', '2020-10-05 17:09:29+07', false);
INSERT INTO public.journals VALUES (8102, 2280, 'Issue', 38, NULL, '2020-10-05 17:13:23+07', false);
INSERT INTO public.journals VALUES (8103, 2280, 'Issue', 38, NULL, '2020-10-05 17:13:32+07', false);
INSERT INTO public.journals VALUES (8104, 2325, 'Issue', 37, NULL, '2020-10-06 08:08:05+07', false);
INSERT INTO public.journals VALUES (8105, 2325, 'Issue', 37, NULL, '2020-10-06 08:08:12+07', false);
INSERT INTO public.journals VALUES (8106, 2319, 'Issue', 12, NULL, '2020-10-06 08:14:45+07', false);
INSERT INTO public.journals VALUES (8107, 2319, 'Issue', 12, NULL, '2020-10-06 08:15:03+07', false);
INSERT INTO public.journals VALUES (8108, 2323, 'Issue', 12, NULL, '2020-10-06 08:15:17+07', false);
INSERT INTO public.journals VALUES (8109, 2323, 'Issue', 12, NULL, '2020-10-06 08:15:28+07', false);
INSERT INTO public.journals VALUES (8110, 2329, 'Issue', 13, '', '2020-10-06 08:21:36+07', false);
INSERT INTO public.journals VALUES (8111, 2309, 'Issue', 5, NULL, '2020-10-06 08:40:27+07', false);
INSERT INTO public.journals VALUES (8112, 2319, 'Issue', 12, '', '2020-10-06 08:40:39+07', false);
INSERT INTO public.journals VALUES (8113, 2204, 'Issue', 5, '', '2020-10-06 08:41:14+07', false);
INSERT INTO public.journals VALUES (8114, 2204, 'Issue', 5, NULL, '2020-10-06 08:46:32+07', false);
INSERT INTO public.journals VALUES (8115, 2330, 'Issue', 5, NULL, '2020-10-06 08:46:32+07', false);
INSERT INTO public.journals VALUES (8116, 2331, 'Issue', 5, NULL, '2020-10-06 08:46:32+07', false);
INSERT INTO public.journals VALUES (8117, 2332, 'Issue', 5, NULL, '2020-10-06 08:46:32+07', false);
INSERT INTO public.journals VALUES (8118, 2204, 'Issue', 5, '', '2020-10-06 08:46:50+07', false);
INSERT INTO public.journals VALUES (8119, 2330, 'Issue', 5, '', '2020-10-06 08:46:50+07', false);
INSERT INTO public.journals VALUES (8120, 2331, 'Issue', 5, '', '2020-10-06 08:46:51+07', false);
INSERT INTO public.journals VALUES (8121, 2332, 'Issue', 5, '', '2020-10-06 08:46:51+07', false);
INSERT INTO public.journals VALUES (8123, 2229, 'Issue', 13, '', '2020-10-06 09:04:16+07', false);
INSERT INTO public.journals VALUES (8124, 2315, 'Issue', 13, '', '2020-10-06 09:04:17+07', false);
INSERT INTO public.journals VALUES (8125, 2321, 'Issue', 13, '', '2020-10-06 09:04:17+07', false);
INSERT INTO public.journals VALUES (8126, 2325, 'Issue', 13, '', '2020-10-06 09:04:17+07', false);
INSERT INTO public.journals VALUES (8127, 2290, 'Issue', 13, '', '2020-10-06 09:06:50+07', false);
INSERT INTO public.journals VALUES (8128, 2291, 'Issue', 13, '', '2020-10-06 09:06:50+07', false);
INSERT INTO public.journals VALUES (8129, 2294, 'Issue', 13, '', '2020-10-06 09:06:50+07', false);
INSERT INTO public.journals VALUES (8130, 2318, 'Issue', 39, '', '2020-10-06 02:26:16+07', false);
INSERT INTO public.journals VALUES (8131, 2319, 'Issue', 12, NULL, '2020-10-06 09:51:52+07', false);
INSERT INTO public.journals VALUES (8132, 2319, 'Issue', 12, NULL, '2020-10-06 09:52:01+07', false);
INSERT INTO public.journals VALUES (8133, 2328, 'Issue', 12, '', '2020-10-06 10:07:16+07', false);
INSERT INTO public.journals VALUES (8134, 2327, 'Issue', 12, '', '2020-10-06 10:07:54+07', false);
INSERT INTO public.journals VALUES (8135, 2229, 'Issue', 13, NULL, '2020-10-06 10:20:47+07', false);
INSERT INTO public.journals VALUES (8136, 2229, 'Issue', 13, NULL, '2020-10-06 10:20:59+07', false);
INSERT INTO public.journals VALUES (8137, 2315, 'Issue', 13, NULL, '2020-10-06 10:21:12+07', false);
INSERT INTO public.journals VALUES (8138, 2315, 'Issue', 13, NULL, '2020-10-06 10:21:18+07', false);
INSERT INTO public.journals VALUES (8139, 2333, 'Issue', 13, '', '2020-10-06 10:21:43+07', false);
INSERT INTO public.journals VALUES (8140, 2334, 'Issue', 13, '', '2020-10-06 10:21:43+07', false);
INSERT INTO public.journals VALUES (8141, 2327, 'Issue', 19, '/Dashboard/PieChartDoanhThu?tuNgay=2020-09-01&denNgay=2020-10-22
', '2020-10-06 10:28:31+07', false);
INSERT INTO public.journals VALUES (8142, 2197, 'Issue', 5, '', '2020-10-06 10:49:06+07', false);
INSERT INTO public.journals VALUES (8143, 2198, 'Issue', 5, '', '2020-10-06 10:49:06+07', false);
INSERT INTO public.journals VALUES (8144, 2199, 'Issue', 5, '', '2020-10-06 10:49:06+07', false);
INSERT INTO public.journals VALUES (8145, 2197, 'Issue', 5, '', '2020-10-06 10:49:20+07', false);
INSERT INTO public.journals VALUES (8146, 2198, 'Issue', 5, '', '2020-10-06 10:49:21+07', false);
INSERT INTO public.journals VALUES (8147, 2199, 'Issue', 5, '', '2020-10-06 10:49:21+07', false);
INSERT INTO public.journals VALUES (8148, 2337, 'Issue', 5, NULL, '2020-10-06 11:09:23+07', false);
INSERT INTO public.journals VALUES (8149, 2338, 'Issue', 5, NULL, '2020-10-06 11:09:23+07', false);
INSERT INTO public.journals VALUES (8150, 2337, 'Issue', 5, '', '2020-10-06 11:09:34+07', false);
INSERT INTO public.journals VALUES (8151, 2338, 'Issue', 5, '', '2020-10-06 11:09:34+07', false);
INSERT INTO public.journals VALUES (8152, 2335, 'Issue', 37, NULL, '2020-10-06 13:21:31+07', false);
INSERT INTO public.journals VALUES (8153, 2335, 'Issue', 37, NULL, '2020-10-06 13:21:39+07', false);
INSERT INTO public.journals VALUES (8154, 2328, 'Issue', 12, NULL, '2020-10-06 17:03:34+07', false);
INSERT INTO public.journals VALUES (8155, 2328, 'Issue', 12, NULL, '2020-10-06 17:03:41+07', false);
INSERT INTO public.journals VALUES (8156, 2339, 'Issue', 12, '', '2020-10-06 17:05:14+07', false);
INSERT INTO public.journals VALUES (8157, 2309, 'Issue', 5, NULL, '2020-10-07 08:19:30+07', false);
INSERT INTO public.journals VALUES (8158, 2309, 'Issue', 5, NULL, '2020-10-07 08:19:34+07', false);
INSERT INTO public.journals VALUES (8159, 2213, 'Issue', 5, NULL, '2020-10-07 08:19:59+07', false);
INSERT INTO public.journals VALUES (8160, 2298, 'Issue', 5, NULL, '2020-10-07 08:19:59+07', false);
INSERT INTO public.journals VALUES (8161, 2319, 'Issue', 5, NULL, '2020-10-07 08:20:00+07', false);
INSERT INTO public.journals VALUES (8162, 2327, 'Issue', 5, NULL, '2020-10-07 08:20:06+07', false);
INSERT INTO public.journals VALUES (8163, 2309, 'Issue', 5, NULL, '2020-10-07 08:20:22+07', false);
INSERT INTO public.journals VALUES (8164, 2320, 'Issue', 5, NULL, '2020-10-07 08:20:22+07', false);
INSERT INTO public.journals VALUES (8165, 2323, 'Issue', 5, NULL, '2020-10-07 08:20:22+07', false);
INSERT INTO public.journals VALUES (8166, 2327, 'Issue', 5, NULL, '2020-10-07 08:20:22+07', false);
INSERT INTO public.journals VALUES (8167, 2328, 'Issue', 5, NULL, '2020-10-07 08:20:23+07', false);
INSERT INTO public.journals VALUES (8168, 2340, 'Issue', 41, '', '2020-10-07 08:40:55+07', false);
INSERT INTO public.journals VALUES (8169, 2318, 'Issue', 39, '', '2020-10-07 09:41:59+07', false);
INSERT INTO public.journals VALUES (8170, 2134, 'Issue', 38, NULL, '2020-10-07 10:15:39+07', false);
INSERT INTO public.journals VALUES (8171, 2134, 'Issue', 38, '', '2020-10-07 10:16:07+07', false);
INSERT INTO public.journals VALUES (8172, 2204, 'Issue', 5, NULL, '2020-10-07 10:21:26+07', false);
INSERT INTO public.journals VALUES (8173, 2330, 'Issue', 5, NULL, '2020-10-07 10:21:26+07', false);
INSERT INTO public.journals VALUES (8174, 2331, 'Issue', 5, NULL, '2020-10-07 10:21:26+07', false);
INSERT INTO public.journals VALUES (8175, 2332, 'Issue', 5, NULL, '2020-10-07 10:21:26+07', false);
INSERT INTO public.journals VALUES (8176, 2231, 'Issue', 13, '', '2020-10-07 10:21:36+07', false);
INSERT INTO public.journals VALUES (8177, 2326, 'Issue', 13, '', '2020-10-07 10:21:36+07', false);
INSERT INTO public.journals VALUES (8178, 2204, 'Issue', 5, '', '2020-10-07 10:21:47+07', false);
INSERT INTO public.journals VALUES (8179, 2132, 'Issue', 5, '', '2020-10-07 11:44:58+07', false);
INSERT INTO public.journals VALUES (8180, 2207, 'Issue', 33, NULL, '2020-10-07 13:34:49+07', false);
INSERT INTO public.journals VALUES (8181, 2203, 'Issue', 32, NULL, '2020-10-07 13:35:10+07', false);
INSERT INTO public.journals VALUES (8182, 2104, 'Issue', 10, NULL, '2020-10-07 15:59:30+07', false);
INSERT INTO public.journals VALUES (8183, 2104, 'Issue', 10, NULL, '2020-10-07 15:59:36+07', false);
INSERT INTO public.journals VALUES (8184, 2104, 'Issue', 5, NULL, '2020-10-07 16:21:52+07', false);
INSERT INTO public.journals VALUES (8185, 2132, 'Issue', 5, NULL, '2020-10-07 16:21:52+07', false);
INSERT INTO public.journals VALUES (8186, 2134, 'Issue', 8, NULL, '2020-10-08 09:01:36+07', false);
INSERT INTO public.journals VALUES (8187, 2134, 'Issue', 8, NULL, '2020-10-08 09:01:41+07', false);
INSERT INTO public.journals VALUES (8188, 2348, 'Issue', 39, '', '2020-10-08 11:06:03+07', false);
INSERT INTO public.journals VALUES (8189, 2206, 'Issue', 29, NULL, '2020-10-08 14:05:12+07', false);
INSERT INTO public.journals VALUES (8190, 2341, 'Issue', 41, '', '2020-10-08 15:03:56+07', false);
INSERT INTO public.journals VALUES (8191, 2349, 'Issue', 41, '', '2020-10-08 15:06:12+07', false);
INSERT INTO public.journals VALUES (8192, 2332, 'Issue', 39, '', '2020-10-08 15:12:37+07', false);
INSERT INTO public.journals VALUES (8193, 2331, 'Issue', 39, '', '2020-10-08 15:12:46+07', false);
INSERT INTO public.journals VALUES (8194, 2330, 'Issue', 39, '', '2020-10-08 15:12:57+07', false);
INSERT INTO public.journals VALUES (8195, 2350, 'Issue', 19, '', '2020-10-08 15:13:01+07', false);
INSERT INTO public.journals VALUES (8196, 2204, 'Issue', 39, '', '2020-10-08 15:13:09+07', false);
INSERT INTO public.journals VALUES (8197, 2330, 'Issue', 5, '', '2020-10-08 16:36:19+07', false);
INSERT INTO public.journals VALUES (8198, 2331, 'Issue', 5, '', '2020-10-08 16:36:19+07', false);
INSERT INTO public.journals VALUES (8199, 2332, 'Issue', 5, '', '2020-10-08 16:36:19+07', false);
INSERT INTO public.journals VALUES (8200, 2299, 'Issue', 5, '', '2020-10-08 16:37:14+07', false);
INSERT INTO public.journals VALUES (8201, 2301, 'Issue', 5, NULL, '2020-10-08 16:37:53+07', false);
INSERT INTO public.journals VALUES (8202, 2301, 'Issue', 5, '', '2020-10-08 16:38:07+07', false);
INSERT INTO public.journals VALUES (8203, 2300, 'Issue', 5, '', '2020-10-08 16:38:43+07', false);
INSERT INTO public.journals VALUES (8204, 2148, 'Issue', 33, NULL, '2020-10-08 16:59:21+07', false);
INSERT INTO public.journals VALUES (8205, 2147, 'Issue', 33, NULL, '2020-10-08 16:59:53+07', false);
INSERT INTO public.journals VALUES (8206, 2146, 'Issue', 33, NULL, '2020-10-08 17:00:00+07', false);
INSERT INTO public.journals VALUES (8207, 2145, 'Issue', 33, NULL, '2020-10-08 17:00:10+07', false);
INSERT INTO public.journals VALUES (8208, 2143, 'Issue', 33, NULL, '2020-10-08 17:00:20+07', false);
INSERT INTO public.journals VALUES (8209, 2099, 'Issue', 33, NULL, '2020-10-08 17:00:26+07', false);
INSERT INTO public.journals VALUES (8210, 2096, 'Issue', 33, NULL, '2020-10-08 17:00:33+07', false);
INSERT INTO public.journals VALUES (8211, 2095, 'Issue', 33, NULL, '2020-10-08 17:00:39+07', false);
INSERT INTO public.journals VALUES (8212, 2149, 'Issue', 33, NULL, '2020-10-08 17:00:46+07', false);
INSERT INTO public.journals VALUES (8213, 2070, 'Issue', 33, NULL, '2020-10-08 17:00:56+07', false);
INSERT INTO public.journals VALUES (8214, 2069, 'Issue', 33, NULL, '2020-10-08 17:01:03+07', false);
INSERT INTO public.journals VALUES (8215, 2017, 'Issue', 33, NULL, '2020-10-08 17:01:10+07', false);
INSERT INTO public.journals VALUES (8216, 2014, 'Issue', 33, NULL, '2020-10-08 17:01:17+07', false);
INSERT INTO public.journals VALUES (8217, 2350, 'Issue', 19, 'Tận dụng API đã có sắn:
/ReportMoblie/BCDTBanThe?Id=&tuNgay=2020-09-01&denNgay=2020-10-30', '2020-10-09 08:31:27+07', false);
INSERT INTO public.journals VALUES (8218, 2339, 'Issue', 12, NULL, '2020-10-09 11:20:21+07', false);
INSERT INTO public.journals VALUES (8219, 2339, 'Issue', 12, NULL, '2020-10-09 11:20:28+07', false);
INSERT INTO public.journals VALUES (8220, 2339, 'Issue', 12, NULL, '2020-10-09 11:22:39+07', false);
INSERT INTO public.journals VALUES (8221, 2352, 'Issue', 12, NULL, '2020-10-09 15:07:32+07', false);
INSERT INTO public.journals VALUES (8222, 2352, 'Issue', 12, NULL, '2020-10-09 15:07:39+07', false);
INSERT INTO public.journals VALUES (8223, 2360, 'Issue', 40, '', '2020-10-09 15:52:19+07', false);
INSERT INTO public.journals VALUES (8224, 2361, 'Issue', 40, '', '2020-10-09 16:19:32+07', false);
INSERT INTO public.journals VALUES (8225, 2360, 'Issue', 40, '', '2020-10-09 16:52:56+07', false);
INSERT INTO public.journals VALUES (8226, 2356, 'Issue', 40, '', '2020-10-09 16:54:34+07', false);
INSERT INTO public.journals VALUES (8227, 2356, 'Issue', 40, '', '2020-10-09 16:55:23+07', false);
INSERT INTO public.journals VALUES (8228, 2355, 'Issue', 13, '', '2020-10-10 08:17:50+07', false);
INSERT INTO public.journals VALUES (8229, 2356, 'Issue', 13, '', '2020-10-10 08:17:51+07', false);
INSERT INTO public.journals VALUES (8230, 2357, 'Issue', 13, '', '2020-10-10 08:17:51+07', false);
INSERT INTO public.journals VALUES (8231, 2358, 'Issue', 13, '', '2020-10-10 08:17:51+07', false);
INSERT INTO public.journals VALUES (8232, 2359, 'Issue', 13, '', '2020-10-10 08:17:51+07', false);
INSERT INTO public.journals VALUES (8233, 2360, 'Issue', 13, '', '2020-10-10 08:17:51+07', false);
INSERT INTO public.journals VALUES (8234, 2361, 'Issue', 13, '', '2020-10-10 08:17:51+07', false);
INSERT INTO public.journals VALUES (8235, 2362, 'Issue', 13, '', '2020-10-10 08:17:51+07', false);
INSERT INTO public.journals VALUES (8236, 2363, 'Issue', 13, '', '2020-10-10 08:17:51+07', false);
INSERT INTO public.journals VALUES (8237, 2364, 'Issue', 13, '', '2020-10-10 08:17:52+07', false);
INSERT INTO public.journals VALUES (8238, 2365, 'Issue', 13, '', '2020-10-10 08:17:52+07', false);
INSERT INTO public.journals VALUES (8239, 2366, 'Issue', 13, '', '2020-10-10 08:17:52+07', false);
INSERT INTO public.journals VALUES (8240, 2367, 'Issue', 13, '', '2020-10-10 08:17:52+07', false);
INSERT INTO public.journals VALUES (8241, 2368, 'Issue', 13, '', '2020-10-10 08:17:52+07', false);
INSERT INTO public.journals VALUES (8242, 2225, 'Issue', 13, '', '2020-10-10 08:19:01+07', false);
INSERT INTO public.journals VALUES (8243, 2291, 'Issue', 13, '', '2020-10-10 08:19:01+07', false);
INSERT INTO public.journals VALUES (8244, 2355, 'Issue', 13, '', '2020-10-10 08:19:01+07', false);
INSERT INTO public.journals VALUES (8245, 2356, 'Issue', 13, '', '2020-10-10 08:19:01+07', false);
INSERT INTO public.journals VALUES (8246, 2357, 'Issue', 13, '', '2020-10-10 08:19:01+07', false);
INSERT INTO public.journals VALUES (8247, 2358, 'Issue', 13, '', '2020-10-10 08:19:02+07', false);
INSERT INTO public.journals VALUES (8248, 2359, 'Issue', 13, '', '2020-10-10 08:19:02+07', false);
INSERT INTO public.journals VALUES (8249, 2360, 'Issue', 13, '', '2020-10-10 08:19:02+07', false);
INSERT INTO public.journals VALUES (8250, 2361, 'Issue', 13, '', '2020-10-10 08:19:02+07', false);
INSERT INTO public.journals VALUES (8251, 2362, 'Issue', 13, '', '2020-10-10 08:19:02+07', false);
INSERT INTO public.journals VALUES (8252, 2363, 'Issue', 13, '', '2020-10-10 08:19:02+07', false);
INSERT INTO public.journals VALUES (8253, 2364, 'Issue', 13, '', '2020-10-10 08:19:02+07', false);
INSERT INTO public.journals VALUES (8254, 2365, 'Issue', 13, '', '2020-10-10 08:19:02+07', false);
INSERT INTO public.journals VALUES (8255, 2366, 'Issue', 13, '', '2020-10-10 08:19:02+07', false);
INSERT INTO public.journals VALUES (8256, 2367, 'Issue', 13, '', '2020-10-10 08:19:03+07', false);
INSERT INTO public.journals VALUES (8257, 2368, 'Issue', 13, '', '2020-10-10 08:19:03+07', false);
INSERT INTO public.journals VALUES (8258, 2365, 'Issue', 13, NULL, '2020-10-10 08:27:45+07', false);
INSERT INTO public.journals VALUES (8259, 2366, 'Issue', 13, NULL, '2020-10-10 08:27:45+07', false);
INSERT INTO public.journals VALUES (8260, 2363, 'Issue', 13, NULL, '2020-10-10 08:28:10+07', false);
INSERT INTO public.journals VALUES (8261, 2360, 'Issue', 13, NULL, '2020-10-10 08:42:07+07', false);
INSERT INTO public.journals VALUES (8262, 2369, 'Issue', 40, '', '2020-10-10 08:42:43+07', false);
INSERT INTO public.journals VALUES (8263, 2362, 'Issue', 13, NULL, '2020-10-10 08:43:24+07', false);
INSERT INTO public.journals VALUES (8264, 2361, 'Issue', 13, 'thay đổi kiểu dữ liệu number cho những trường chỉ cho phép nhập số tron mục thông tin thuê của doanh nghiệp', '2020-10-10 09:28:50+07', false);
INSERT INTO public.journals VALUES (8265, 2370, 'Issue', 39, '', '2020-10-10 09:29:45+07', false);
INSERT INTO public.journals VALUES (8266, 2302, 'Issue', 17, '', '2020-10-10 09:37:30+07', false);
INSERT INTO public.journals VALUES (8267, 2368, 'Issue', 13, NULL, '2020-10-10 10:50:33+07', false);
INSERT INTO public.journals VALUES (8268, 2368, 'Issue', 13, NULL, '2020-10-10 10:51:01+07', false);
INSERT INTO public.journals VALUES (8269, 2363, 'Issue', 4, NULL, '2020-10-10 11:22:58+07', false);
INSERT INTO public.journals VALUES (8270, 2365, 'Issue', 4, NULL, '2020-10-10 11:22:58+07', false);
INSERT INTO public.journals VALUES (8271, 2134, 'Issue', 5, NULL, '2020-10-10 12:53:50+07', false);
INSERT INTO public.journals VALUES (8272, 2204, 'Issue', 5, NULL, '2020-10-10 12:53:50+07', false);
INSERT INTO public.journals VALUES (8273, 2302, 'Issue', 5, NULL, '2020-10-10 12:53:50+07', false);
INSERT INTO public.journals VALUES (8274, 2318, 'Issue', 5, NULL, '2020-10-10 12:53:50+07', false);
INSERT INTO public.journals VALUES (8275, 2330, 'Issue', 5, NULL, '2020-10-10 12:53:50+07', false);
INSERT INTO public.journals VALUES (8276, 2331, 'Issue', 5, NULL, '2020-10-10 12:53:51+07', false);
INSERT INTO public.journals VALUES (8277, 2332, 'Issue', 5, NULL, '2020-10-10 12:53:51+07', false);
INSERT INTO public.journals VALUES (8278, 2339, 'Issue', 5, NULL, '2020-10-10 12:53:51+07', false);
INSERT INTO public.journals VALUES (8279, 2340, 'Issue', 5, NULL, '2020-10-10 12:53:51+07', false);
INSERT INTO public.journals VALUES (8280, 2341, 'Issue', 5, NULL, '2020-10-10 12:53:51+07', false);
INSERT INTO public.journals VALUES (8281, 2348, 'Issue', 5, NULL, '2020-10-10 12:53:51+07', false);
INSERT INTO public.journals VALUES (8282, 2349, 'Issue', 5, NULL, '2020-10-10 12:53:51+07', false);
INSERT INTO public.journals VALUES (8283, 2350, 'Issue', 5, NULL, '2020-10-10 12:53:51+07', false);
INSERT INTO public.journals VALUES (8284, 2352, 'Issue', 5, NULL, '2020-10-10 12:53:51+07', false);
INSERT INTO public.journals VALUES (8285, 2372, 'Issue', 5, NULL, '2020-10-10 12:53:51+07', false);
INSERT INTO public.journals VALUES (8286, 2373, 'Issue', 5, NULL, '2020-10-10 12:53:52+07', false);
INSERT INTO public.journals VALUES (8287, 2364, 'Issue', 13, NULL, '2020-10-10 13:27:53+07', false);
INSERT INTO public.journals VALUES (8288, 2361, 'Issue', 13, NULL, '2020-10-10 15:01:57+07', false);
INSERT INTO public.journals VALUES (8289, 2362, 'Issue', 4, NULL, '2020-10-10 15:19:40+07', false);
INSERT INTO public.journals VALUES (8290, 2371, 'Issue', 5, NULL, '2020-10-10 15:20:34+07', false);
INSERT INTO public.journals VALUES (8291, 2359, 'Issue', 13, NULL, '2020-10-10 16:06:14+07', false);
INSERT INTO public.journals VALUES (8292, 2357, 'Issue', 13, 'lấy DaSD từ domain. field lấy từ service -> viết form riêng để dễ custom', '2020-10-10 16:16:21+07', false);
INSERT INTO public.journals VALUES (8293, 2358, 'Issue', 13, 'không nhập thông tin gì vẫn thông báo lưu thành công', '2020-10-10 16:17:24+07', false);
INSERT INTO public.journals VALUES (8294, 2355, 'Issue', 13, 'Quy hoạch chồng lên nhau vẫn thêm mới thành công', '2020-10-10 16:18:44+07', false);
INSERT INTO public.journals VALUES (8295, 2367, 'Issue', 13, 'Ngày thành lập khi xuất excel bị lệch một ngày so với dữ liệu trong database. kết quả do backend trả về', '2020-10-10 16:20:19+07', false);
INSERT INTO public.journals VALUES (8296, 2359, 'Issue', 13, '', '2020-10-12 08:17:23+07', false);
INSERT INTO public.journals VALUES (8297, 2362, 'Issue', 13, '', '2020-10-12 08:17:23+07', false);
INSERT INTO public.journals VALUES (8298, 2363, 'Issue', 13, '', '2020-10-12 08:17:23+07', false);
INSERT INTO public.journals VALUES (8299, 2364, 'Issue', 13, '', '2020-10-12 08:17:23+07', false);
INSERT INTO public.journals VALUES (8300, 2365, 'Issue', 13, '', '2020-10-12 08:17:24+07', false);
INSERT INTO public.journals VALUES (8301, 2368, 'Issue', 13, '', '2020-10-12 08:17:24+07', false);
INSERT INTO public.journals VALUES (8302, 2225, 'Issue', 13, '', '2020-10-12 08:18:58+07', false);
INSERT INTO public.journals VALUES (8303, 2291, 'Issue', 13, '', '2020-10-12 08:18:58+07', false);
INSERT INTO public.journals VALUES (8304, 2355, 'Issue', 13, '', '2020-10-12 08:18:58+07', false);
INSERT INTO public.journals VALUES (8305, 2356, 'Issue', 13, '', '2020-10-12 08:18:58+07', false);
INSERT INTO public.journals VALUES (8306, 2357, 'Issue', 13, '', '2020-10-12 08:18:59+07', false);
INSERT INTO public.journals VALUES (8307, 2358, 'Issue', 13, '', '2020-10-12 08:18:59+07', false);
INSERT INTO public.journals VALUES (8308, 2360, 'Issue', 13, '', '2020-10-12 08:18:59+07', false);
INSERT INTO public.journals VALUES (8309, 2361, 'Issue', 13, '', '2020-10-12 08:18:59+07', false);
INSERT INTO public.journals VALUES (8310, 2366, 'Issue', 13, '', '2020-10-12 08:18:59+07', false);
INSERT INTO public.journals VALUES (8311, 2367, 'Issue', 13, '', '2020-10-12 08:18:59+07', false);
INSERT INTO public.journals VALUES (8312, 2384, 'Issue', 40, '', '2020-10-12 08:19:44+07', false);
INSERT INTO public.journals VALUES (8313, 2385, 'Issue', 40, '', '2020-10-12 08:25:32+07', false);
INSERT INTO public.journals VALUES (8314, 2385, 'Issue', 40, '', '2020-10-12 08:26:09+07', false);
INSERT INTO public.journals VALUES (8315, 2386, 'Issue', 40, '', '2020-10-12 08:29:37+07', false);
INSERT INTO public.journals VALUES (8316, 2284, 'Issue', 40, '', '2020-10-12 09:37:41+07', false);
INSERT INTO public.journals VALUES (8317, 2380, 'Issue', 5, '', '2020-10-12 10:36:59+07', false);
INSERT INTO public.journals VALUES (8318, 2304, 'Issue', 40, NULL, '2020-10-12 12:55:36+07', false);
INSERT INTO public.journals VALUES (8319, 2304, 'Issue', 40, NULL, '2020-10-12 12:55:49+07', false);
INSERT INTO public.journals VALUES (8320, 2391, 'Issue', 37, NULL, '2020-10-12 13:06:41+07', false);
INSERT INTO public.journals VALUES (8321, 2391, 'Issue', 37, NULL, '2020-10-12 13:06:54+07', false);
INSERT INTO public.journals VALUES (8322, 2371, 'Issue', 37, NULL, '2020-10-12 13:07:35+07', false);
INSERT INTO public.journals VALUES (8323, 2371, 'Issue', 37, NULL, '2020-10-12 13:07:45+07', false);
INSERT INTO public.journals VALUES (8324, 2370, 'Issue', 39, '', '2020-10-12 15:45:49+07', false);
INSERT INTO public.journals VALUES (8325, 2394, 'Issue', 19, '', '2020-10-12 16:26:36+07', false);
INSERT INTO public.journals VALUES (8326, 2395, 'Issue', 19, '', '2020-10-12 16:28:20+07', false);
INSERT INTO public.journals VALUES (8327, 2394, 'Issue', 19, 'https://docs.google.com/drawings/d/135VV0ET39SJb5gEMx56dDXITlCoRZbP8-LdHGvvwa0w/edit', '2020-10-12 16:28:58+07', false);
INSERT INTO public.journals VALUES (8328, 2361, 'Issue', 13, '', '2020-10-12 16:33:17+07', false);
INSERT INTO public.journals VALUES (8329, 2366, 'Issue', 13, '', '2020-10-12 16:33:18+07', false);
INSERT INTO public.journals VALUES (8330, 2397, 'Issue', 13, '', '2020-10-12 16:33:18+07', false);
INSERT INTO public.journals VALUES (8331, 2380, 'Issue', 5, '', '2020-10-13 08:04:53+07', false);
INSERT INTO public.journals VALUES (8332, 2392, 'Issue', 37, NULL, '2020-10-13 08:14:19+07', false);
INSERT INTO public.journals VALUES (8333, 2389, 'Issue', 5, NULL, '2020-10-13 08:21:02+07', false);
INSERT INTO public.journals VALUES (8334, 2239, 'Issue', 40, '', '2020-10-13 08:23:36+07', false);
INSERT INTO public.journals VALUES (8335, 2239, 'Issue', 5, '', '2020-10-13 09:13:51+07', false);
INSERT INTO public.journals VALUES (8336, 2300, 'Issue', 5, '', '2020-10-13 09:14:50+07', false);
INSERT INTO public.journals VALUES (8337, 2389, 'Issue', 39, '', '2020-10-13 09:25:32+07', false);
INSERT INTO public.journals VALUES (8338, 2401, 'Issue', 39, '', '2020-10-13 09:47:38+07', false);
INSERT INTO public.journals VALUES (8339, 2400, 'Issue', 39, '', '2020-10-13 10:49:36+07', false);
INSERT INTO public.journals VALUES (8340, 2383, 'Issue', 39, '', '2020-10-13 11:26:58+07', false);
INSERT INTO public.journals VALUES (8341, 2384, 'Issue', 39, '', '2020-10-13 11:27:15+07', false);
INSERT INTO public.journals VALUES (8342, 2385, 'Issue', 39, '', '2020-10-13 11:27:38+07', false);
INSERT INTO public.journals VALUES (8343, 2382, 'Issue', 39, '', '2020-10-13 11:28:57+07', false);
INSERT INTO public.journals VALUES (8344, 2357, 'Issue', 13, '', '2020-10-13 11:29:12+07', false);
INSERT INTO public.journals VALUES (8345, 2392, 'Issue', 37, NULL, '2020-10-13 12:50:36+07', false);
INSERT INTO public.journals VALUES (8346, 2402, 'Issue', 40, '', '2020-10-13 13:52:28+07', false);
INSERT INTO public.journals VALUES (8347, 2299, 'Issue', 10, NULL, '2020-10-13 16:56:53+07', false);
INSERT INTO public.journals VALUES (8348, 2299, 'Issue', 10, NULL, '2020-10-13 16:57:06+07', false);
INSERT INTO public.journals VALUES (8349, 2299, 'Issue', 5, NULL, '2020-10-14 07:52:39+07', false);
INSERT INTO public.journals VALUES (8350, 2370, 'Issue', 5, NULL, '2020-10-14 07:52:39+07', false);
INSERT INTO public.journals VALUES (8351, 2371, 'Issue', 5, NULL, '2020-10-14 07:52:40+07', false);
INSERT INTO public.journals VALUES (8355, 2271, 'Issue', 5, NULL, '2020-10-14 08:49:21+07', false);
INSERT INTO public.journals VALUES (8356, 2271, 'Issue', 5, '', '2020-10-14 08:49:39+07', false);
INSERT INTO public.journals VALUES (8357, 2386, 'Issue', 5, '', '2020-10-14 08:51:49+07', false);
INSERT INTO public.journals VALUES (8358, 2387, 'Issue', 5, '', '2020-10-14 08:53:12+07', false);
INSERT INTO public.journals VALUES (8359, 2388, 'Issue', 5, '', '2020-10-14 08:53:38+07', false);
INSERT INTO public.journals VALUES (8360, 2390, 'Issue', 5, '', '2020-10-14 08:54:50+07', false);
INSERT INTO public.journals VALUES (8361, 2392, 'Issue', 5, '', '2020-10-14 08:55:13+07', false);
INSERT INTO public.journals VALUES (8362, 2262, 'Issue', 40, NULL, '2020-10-14 08:58:04+07', false);
INSERT INTO public.journals VALUES (8363, 2391, 'Issue', 5, NULL, '2020-10-14 09:06:55+07', false);
INSERT INTO public.journals VALUES (8364, 2391, 'Issue', 5, '', '2020-10-14 09:07:13+07', false);
INSERT INTO public.journals VALUES (8365, 2384, 'Issue', 39, '', '2020-10-14 13:33:24+07', false);
INSERT INTO public.journals VALUES (8366, 2405, 'Issue', 39, '', '2020-10-14 13:34:03+07', false);
INSERT INTO public.journals VALUES (8367, 2280, 'Issue', 40, NULL, '2020-10-14 07:47:18+07', false);
INSERT INTO public.journals VALUES (8368, 2284, 'Issue', 40, NULL, '2020-10-14 14:47:26+07', false);
INSERT INTO public.journals VALUES (8369, 2310, 'Issue', 40, NULL, '2020-10-14 14:47:45+07', false);
INSERT INTO public.journals VALUES (8370, 2263, 'Issue', 40, NULL, '2020-10-14 15:19:17+07', false);
INSERT INTO public.journals VALUES (8371, 2268, 'Issue', 40, NULL, '2020-10-14 15:19:38+07', false);
INSERT INTO public.journals VALUES (8372, 2267, 'Issue', 40, NULL, '2020-10-14 15:19:49+07', false);
INSERT INTO public.journals VALUES (8373, 2409, 'Issue', 40, NULL, '2020-10-14 15:22:25+07', false);
INSERT INTO public.journals VALUES (8374, 2391, 'Issue', 40, 'Sai số liệu, chỉnh form', '2020-10-14 15:39:53+07', false);
INSERT INTO public.journals VALUES (8375, 2265, 'Issue', 40, 'Sai số liệu, chỉnh form', '2020-10-14 16:12:46+07', false);
INSERT INTO public.journals VALUES (8376, 2383, 'Issue', 39, '', '2020-10-14 16:15:34+07', false);
INSERT INTO public.journals VALUES (8377, 2304, 'Issue', 40, NULL, '2020-10-14 16:16:08+07', false);
INSERT INTO public.journals VALUES (8379, 2382, 'Issue', 5, '', '2020-10-15 08:36:58+07', false);
INSERT INTO public.journals VALUES (8380, 2403, 'Issue', 5, '', '2020-10-15 08:36:58+07', false);
INSERT INTO public.journals VALUES (8381, 2406, 'Issue', 5, '', '2020-10-15 08:36:58+07', false);
INSERT INTO public.journals VALUES (8382, 2382, 'Issue', 5, '', '2020-10-15 08:37:21+07', false);
INSERT INTO public.journals VALUES (8383, 2406, 'Issue', 5, '', '2020-10-15 08:37:21+07', false);
INSERT INTO public.journals VALUES (8384, 2410, 'Issue', 39, 'Không nạp được ở tài khoản điều hành (gdt)', '2020-10-15 08:37:22+07', false);
INSERT INTO public.journals VALUES (8385, 2275, 'Issue', 5, '', '2020-10-15 08:41:56+07', false);
INSERT INTO public.journals VALUES (8386, 2277, 'Issue', 5, '', '2020-10-15 08:41:56+07', false);
INSERT INTO public.journals VALUES (8387, 2404, 'Issue', 5, '', '2020-10-15 08:42:30+07', false);
INSERT INTO public.journals VALUES (8388, 2387, 'Issue', 8, NULL, '2020-10-15 08:44:00+07', false);
INSERT INTO public.journals VALUES (8389, 2388, 'Issue', 8, NULL, '2020-10-15 08:44:01+07', false);
INSERT INTO public.journals VALUES (8390, 2390, 'Issue', 8, NULL, '2020-10-15 08:44:01+07', false);
INSERT INTO public.journals VALUES (8391, 2387, 'Issue', 8, NULL, '2020-10-15 08:44:18+07', false);
INSERT INTO public.journals VALUES (8392, 2388, 'Issue', 8, NULL, '2020-10-15 08:44:18+07', false);
INSERT INTO public.journals VALUES (8393, 2390, 'Issue', 8, NULL, '2020-10-15 08:44:19+07', false);
INSERT INTO public.journals VALUES (8394, 2413, 'Issue', 15, '', '2020-10-15 08:44:37+07', false);
INSERT INTO public.journals VALUES (8395, 2416, 'Issue', 15, '', '2020-10-15 08:47:45+07', false);
INSERT INTO public.journals VALUES (8396, 2417, 'Issue', 15, '', '2020-10-15 08:50:34+07', false);
INSERT INTO public.journals VALUES (8397, 2416, 'Issue', 15, NULL, '2020-10-15 08:52:50+07', false);
INSERT INTO public.journals VALUES (8398, 2416, 'Issue', 15, NULL, '2020-10-15 08:52:54+07', false);
INSERT INTO public.journals VALUES (8399, 2416, 'Issue', 15, NULL, '2020-10-15 09:00:47+07', false);
INSERT INTO public.journals VALUES (8400, 2418, 'Issue', 15, NULL, '2020-10-15 09:00:48+07', false);
INSERT INTO public.journals VALUES (8401, 2419, 'Issue', 15, NULL, '2020-10-15 09:00:48+07', false);
INSERT INTO public.journals VALUES (8402, 2412, 'Issue', 15, NULL, '2020-10-15 09:01:02+07', false);
INSERT INTO public.journals VALUES (8403, 2414, 'Issue', 15, NULL, '2020-10-15 09:01:10+07', false);
INSERT INTO public.journals VALUES (8404, 2264, 'Issue', 41, '', '2020-10-15 14:34:54+07', false);
INSERT INTO public.journals VALUES (8405, 2274, 'Issue', 41, '', '2020-10-15 14:35:23+07', false);
INSERT INTO public.journals VALUES (8406, 2276, 'Issue', 41, '', '2020-10-15 14:36:00+07', false);
INSERT INTO public.journals VALUES (8407, 2274, 'Issue', 41, '', '2020-10-15 14:36:31+07', false);
INSERT INTO public.journals VALUES (8408, 2264, 'Issue', 41, '', '2020-10-15 14:36:50+07', false);
INSERT INTO public.journals VALUES (8409, 2276, 'Issue', 41, '', '2020-10-15 14:37:27+07', false);
INSERT INTO public.journals VALUES (8410, 2271, 'Issue', 41, '', '2020-10-15 14:38:23+07', false);
INSERT INTO public.journals VALUES (8411, 2275, 'Issue', 41, '', '2020-10-15 14:39:01+07', false);
INSERT INTO public.journals VALUES (8412, 2264, 'Issue', 5, '', '2020-10-15 16:07:43+07', false);
INSERT INTO public.journals VALUES (8413, 2274, 'Issue', 5, '', '2020-10-15 16:07:43+07', false);
INSERT INTO public.journals VALUES (8414, 2276, 'Issue', 5, '', '2020-10-15 16:07:43+07', false);
INSERT INTO public.journals VALUES (8415, 2418, 'Issue', 15, NULL, '2020-10-15 16:55:15+07', false);
INSERT INTO public.journals VALUES (8416, 2418, 'Issue', 15, NULL, '2020-10-15 16:55:23+07', false);
INSERT INTO public.journals VALUES (8417, 2385, 'Issue', 39, '', '2020-10-15 17:06:46+07', false);
INSERT INTO public.journals VALUES (8418, 2408, 'Issue', 39, '', '2020-10-15 17:07:01+07', false);
INSERT INTO public.journals VALUES (8419, 2382, 'Issue', 39, '', '2020-10-15 17:07:34+07', false);
INSERT INTO public.journals VALUES (8420, 2406, 'Issue', 39, '', '2020-10-15 17:07:56+07', false);
INSERT INTO public.journals VALUES (8421, 2301, 'Issue', 17, '', '2020-10-16 09:06:45+07', false);
INSERT INTO public.journals VALUES (8422, 2392, 'Issue', 5, '', '2020-10-16 09:48:25+07', false);
INSERT INTO public.journals VALUES (8423, 2403, 'Issue', 5, NULL, '2020-10-16 09:48:46+07', false);
INSERT INTO public.journals VALUES (8424, 2403, 'Issue', 5, '', '2020-10-16 09:49:01+07', false);
INSERT INTO public.journals VALUES (8425, 2282, 'Issue', 38, NULL, '2020-10-16 09:50:56+07', false);
INSERT INTO public.journals VALUES (8426, 2285, 'Issue', 38, NULL, '2020-10-16 09:51:10+07', false);
INSERT INTO public.journals VALUES (8427, 2279, 'Issue', 38, NULL, '2020-10-16 09:51:23+07', false);
INSERT INTO public.journals VALUES (8428, 2266, 'Issue', 38, NULL, '2020-10-16 09:51:33+07', false);
INSERT INTO public.journals VALUES (8429, 2380, 'Issue', 8, NULL, '2020-10-16 09:52:12+07', false);
INSERT INTO public.journals VALUES (8430, 2386, 'Issue', 8, NULL, '2020-10-16 09:52:12+07', false);
INSERT INTO public.journals VALUES (8431, 2380, 'Issue', 8, NULL, '2020-10-16 09:52:18+07', false);
INSERT INTO public.journals VALUES (8432, 2386, 'Issue', 8, NULL, '2020-10-16 09:52:19+07', false);
INSERT INTO public.journals VALUES (8433, 2380, 'Issue', 8, NULL, '2020-10-16 09:52:25+07', false);
INSERT INTO public.journals VALUES (8434, 2386, 'Issue', 8, NULL, '2020-10-16 09:52:25+07', false);
INSERT INTO public.journals VALUES (8435, 2264, 'Issue', 5, NULL, '2020-10-16 09:55:11+07', false);
INSERT INTO public.journals VALUES (8436, 2271, 'Issue', 5, NULL, '2020-10-16 09:55:11+07', false);
INSERT INTO public.journals VALUES (8437, 2274, 'Issue', 5, NULL, '2020-10-16 09:55:11+07', false);
INSERT INTO public.journals VALUES (8438, 2275, 'Issue', 5, NULL, '2020-10-16 09:55:11+07', false);
INSERT INTO public.journals VALUES (8439, 2276, 'Issue', 5, NULL, '2020-10-16 09:55:11+07', false);
INSERT INTO public.journals VALUES (8440, 2301, 'Issue', 5, NULL, '2020-10-16 09:55:11+07', false);
INSERT INTO public.journals VALUES (8441, 2380, 'Issue', 5, NULL, '2020-10-16 09:55:11+07', false);
INSERT INTO public.journals VALUES (8442, 2383, 'Issue', 5, NULL, '2020-10-16 09:55:11+07', false);
INSERT INTO public.journals VALUES (8443, 2384, 'Issue', 5, NULL, '2020-10-16 09:55:12+07', false);
INSERT INTO public.journals VALUES (8444, 2385, 'Issue', 5, NULL, '2020-10-16 09:55:12+07', false);
INSERT INTO public.journals VALUES (8445, 2386, 'Issue', 5, NULL, '2020-10-16 09:55:12+07', false);
INSERT INTO public.journals VALUES (8446, 2387, 'Issue', 5, NULL, '2020-10-16 09:55:12+07', false);
INSERT INTO public.journals VALUES (8447, 2388, 'Issue', 5, NULL, '2020-10-16 09:55:12+07', false);
INSERT INTO public.journals VALUES (8448, 2389, 'Issue', 5, NULL, '2020-10-16 09:55:12+07', false);
INSERT INTO public.journals VALUES (8449, 2390, 'Issue', 5, NULL, '2020-10-16 09:55:12+07', false);
INSERT INTO public.journals VALUES (8450, 2393, 'Issue', 5, NULL, '2020-10-16 09:55:13+07', false);
INSERT INTO public.journals VALUES (8451, 2400, 'Issue', 5, NULL, '2020-10-16 09:55:13+07', false);
INSERT INTO public.journals VALUES (8452, 2401, 'Issue', 5, NULL, '2020-10-16 09:55:13+07', false);
INSERT INTO public.journals VALUES (8453, 2404, 'Issue', 5, NULL, '2020-10-16 09:55:13+07', false);
INSERT INTO public.journals VALUES (8454, 2405, 'Issue', 5, NULL, '2020-10-16 09:55:13+07', false);
INSERT INTO public.journals VALUES (8455, 2407, 'Issue', 5, NULL, '2020-10-16 09:55:13+07', false);
INSERT INTO public.journals VALUES (8456, 2410, 'Issue', 5, NULL, '2020-10-16 09:55:13+07', false);
INSERT INTO public.journals VALUES (8458, 2425, 'Issue', 40, '', '2020-10-16 10:30:18+07', false);
INSERT INTO public.journals VALUES (8460, 2428, 'Issue', 40, '', '2020-10-16 10:40:27+07', false);
INSERT INTO public.journals VALUES (8461, 2411, 'Issue', 40, NULL, '2020-10-16 10:41:25+07', false);
INSERT INTO public.journals VALUES (8462, 2396, 'Issue', 12, NULL, '2020-10-16 11:17:18+07', false);
INSERT INTO public.journals VALUES (8463, 2396, 'Issue', 12, NULL, '2020-10-16 11:17:25+07', false);
INSERT INTO public.journals VALUES (8464, 2430, 'Issue', 12, NULL, '2020-10-16 11:19:51+07', false);
INSERT INTO public.journals VALUES (8465, 2430, 'Issue', 12, NULL, '2020-10-16 11:19:58+07', false);
INSERT INTO public.journals VALUES (8466, 2396, 'Issue', 12, '', '2020-10-16 11:21:24+07', false);
INSERT INTO public.journals VALUES (8467, 2396, 'Issue', 12, '', '2020-10-16 11:21:58+07', false);
INSERT INTO public.journals VALUES (8468, 2429, 'Issue', 39, '', '2020-10-16 12:15:54+07', false);
INSERT INTO public.journals VALUES (8469, 2291, 'Issue', 13, NULL, '2020-10-16 13:23:45+07', false);
INSERT INTO public.journals VALUES (8470, 2225, 'Issue', 13, NULL, '2020-10-16 13:24:08+07', false);
INSERT INTO public.journals VALUES (8471, 2429, 'Issue', 37, NULL, '2020-10-16 16:00:42+07', false);
INSERT INTO public.journals VALUES (8472, 2239, 'Issue', 41, '', '2020-10-16 16:06:05+07', false);
INSERT INTO public.journals VALUES (8473, 2398, 'Issue', 8, NULL, '2020-10-17 08:22:15+07', false);
INSERT INTO public.journals VALUES (8474, 2398, 'Issue', 8, NULL, '2020-10-17 08:22:21+07', false);
INSERT INTO public.journals VALUES (8475, 2116, 'Issue', 5, '', '2020-10-17 08:35:17+07', false);
INSERT INTO public.journals VALUES (8476, 2429, 'Issue', 39, '', '2020-10-17 09:09:52+07', false);
INSERT INTO public.journals VALUES (8477, 2392, 'Issue', 39, '', '2020-10-17 09:10:11+07', false);
INSERT INTO public.journals VALUES (8478, 2427, 'Issue', 39, '', '2020-10-17 09:10:52+07', false);
INSERT INTO public.journals VALUES (8479, 2408, 'Issue', 39, '', '2020-10-17 09:11:07+07', false);
INSERT INTO public.journals VALUES (8480, 2428, 'Issue', 39, '', '2020-10-17 09:11:44+07', false);
INSERT INTO public.journals VALUES (8481, 2382, 'Issue', 39, '', '2020-10-17 09:13:57+07', false);
INSERT INTO public.journals VALUES (8482, 2406, 'Issue', 39, '', '2020-10-17 09:14:02+07', false);
INSERT INTO public.journals VALUES (8483, 2419, 'Issue', 15, '', '2020-10-17 09:42:06+07', false);
INSERT INTO public.journals VALUES (8484, 2419, 'Issue', 15, NULL, '2020-10-17 09:42:15+07', false);
INSERT INTO public.journals VALUES (8485, 2419, 'Issue', 15, NULL, '2020-10-17 09:42:24+07', false);
INSERT INTO public.journals VALUES (8486, 2420, 'Issue', 15, NULL, '2020-10-17 09:42:24+07', false);
INSERT INTO public.journals VALUES (8487, 2420, 'Issue', 15, NULL, '2020-10-17 09:42:38+07', false);
INSERT INTO public.journals VALUES (8488, 2421, 'Issue', 15, NULL, '2020-10-17 09:42:38+07', false);
INSERT INTO public.journals VALUES (8489, 2431, 'Issue', 12, NULL, '2020-10-17 09:53:07+07', false);
INSERT INTO public.journals VALUES (8490, 2431, 'Issue', 12, NULL, '2020-10-17 09:53:17+07', false);
INSERT INTO public.journals VALUES (8491, 2266, 'Issue', 40, NULL, '2020-10-17 10:32:14+07', false);
INSERT INTO public.journals VALUES (8492, 2279, 'Issue', 40, NULL, '2020-10-17 10:32:22+07', false);
INSERT INTO public.journals VALUES (8493, 2282, 'Issue', 40, NULL, '2020-10-17 10:32:28+07', false);
INSERT INTO public.journals VALUES (8494, 2285, 'Issue', 40, NULL, '2020-10-17 10:32:34+07', false);
INSERT INTO public.journals VALUES (8495, 2428, 'Issue', 40, NULL, '2020-10-17 11:36:34+07', false);
INSERT INTO public.journals VALUES (8496, 2425, 'Issue', 5, '', '2020-10-17 11:39:57+07', false);
INSERT INTO public.journals VALUES (8497, 2425, 'Issue', 5, NULL, '2020-10-17 11:43:03+07', false);
INSERT INTO public.journals VALUES (8498, 2425, 'Issue', 5, '', '2020-10-17 11:43:31+07', false);
INSERT INTO public.journals VALUES (8499, 2429, 'Issue', 5, '', '2020-10-17 11:44:11+07', false);
INSERT INTO public.journals VALUES (8500, 2382, 'Issue', 5, NULL, '2020-10-17 11:44:38+07', false);
INSERT INTO public.journals VALUES (8501, 2406, 'Issue', 5, NULL, '2020-10-17 11:44:39+07', false);
INSERT INTO public.journals VALUES (8502, 2408, 'Issue', 5, NULL, '2020-10-17 11:44:39+07', false);
INSERT INTO public.journals VALUES (8503, 2427, 'Issue', 5, NULL, '2020-10-17 11:44:39+07', false);
INSERT INTO public.journals VALUES (8504, 2428, 'Issue', 5, NULL, '2020-10-17 11:44:39+07', false);
INSERT INTO public.journals VALUES (8505, 2434, 'Issue', 5, NULL, '2020-10-17 11:44:39+07', false);
INSERT INTO public.journals VALUES (8506, 2239, 'Issue', 5, NULL, '2020-10-17 11:45:07+07', false);
INSERT INTO public.journals VALUES (8507, 2382, 'Issue', 5, NULL, '2020-10-17 11:45:07+07', false);
INSERT INTO public.journals VALUES (8508, 2392, 'Issue', 5, NULL, '2020-10-17 11:45:07+07', false);
INSERT INTO public.journals VALUES (8509, 2398, 'Issue', 5, NULL, '2020-10-17 11:45:07+07', false);
INSERT INTO public.journals VALUES (8510, 2406, 'Issue', 5, NULL, '2020-10-17 11:45:07+07', false);
INSERT INTO public.journals VALUES (8511, 2408, 'Issue', 5, NULL, '2020-10-17 11:45:08+07', false);
INSERT INTO public.journals VALUES (8512, 2427, 'Issue', 5, NULL, '2020-10-17 11:45:08+07', false);
INSERT INTO public.journals VALUES (8513, 2428, 'Issue', 5, NULL, '2020-10-17 11:45:08+07', false);
INSERT INTO public.journals VALUES (8514, 2429, 'Issue', 5, NULL, '2020-10-17 11:45:08+07', false);
INSERT INTO public.journals VALUES (8515, 2434, 'Issue', 5, NULL, '2020-10-17 11:45:08+07', false);
INSERT INTO public.journals VALUES (8516, 2217, 'Issue', 5, NULL, '2020-10-17 11:49:33+07', false);
INSERT INTO public.journals VALUES (8517, 2232, 'Issue', 5, '', '2020-10-17 11:51:41+07', false);
INSERT INTO public.journals VALUES (8518, 2233, 'Issue', 5, '', '2020-10-17 11:51:41+07', false);
INSERT INTO public.journals VALUES (8519, 2235, 'Issue', 5, '', '2020-10-17 11:51:41+07', false);
INSERT INTO public.journals VALUES (8520, 2237, 'Issue', 5, '', '2020-10-17 11:51:41+07', false);
INSERT INTO public.journals VALUES (8521, 2242, 'Issue', 5, '', '2020-10-17 11:51:41+07', false);
INSERT INTO public.journals VALUES (8522, 2243, 'Issue', 5, '', '2020-10-17 11:51:41+07', false);
INSERT INTO public.journals VALUES (8523, 2244, 'Issue', 5, '', '2020-10-17 11:51:42+07', false);
INSERT INTO public.journals VALUES (8524, 2245, 'Issue', 5, '', '2020-10-17 11:51:42+07', false);
INSERT INTO public.journals VALUES (8525, 2246, 'Issue', 5, '', '2020-10-17 11:51:42+07', false);
INSERT INTO public.journals VALUES (8526, 2247, 'Issue', 5, '', '2020-10-17 11:51:42+07', false);
INSERT INTO public.journals VALUES (8527, 2248, 'Issue', 5, '', '2020-10-17 11:51:42+07', false);
INSERT INTO public.journals VALUES (8528, 2249, 'Issue', 5, '', '2020-10-17 11:51:43+07', false);
INSERT INTO public.journals VALUES (8529, 2250, 'Issue', 5, '', '2020-10-17 11:51:43+07', false);
INSERT INTO public.journals VALUES (8530, 2251, 'Issue', 5, '', '2020-10-17 11:51:43+07', false);
INSERT INTO public.journals VALUES (8531, 2252, 'Issue', 5, '', '2020-10-17 11:51:43+07', false);
INSERT INTO public.journals VALUES (8532, 2253, 'Issue', 5, '', '2020-10-17 11:51:43+07', false);
INSERT INTO public.journals VALUES (8533, 2254, 'Issue', 5, '', '2020-10-17 11:51:43+07', false);
INSERT INTO public.journals VALUES (8534, 2255, 'Issue', 5, '', '2020-10-17 11:51:43+07', false);
INSERT INTO public.journals VALUES (8535, 2256, 'Issue', 5, '', '2020-10-17 11:51:43+07', false);
INSERT INTO public.journals VALUES (8536, 2257, 'Issue', 5, '', '2020-10-17 11:51:44+07', false);
INSERT INTO public.journals VALUES (8537, 2258, 'Issue', 5, '', '2020-10-17 11:51:44+07', false);
INSERT INTO public.journals VALUES (8538, 2259, 'Issue', 5, '', '2020-10-17 11:51:44+07', false);
INSERT INTO public.journals VALUES (8539, 2260, 'Issue', 5, '', '2020-10-17 11:51:44+07', false);
INSERT INTO public.journals VALUES (8540, 2262, 'Issue', 5, '', '2020-10-17 11:51:44+07', false);
INSERT INTO public.journals VALUES (8541, 2263, 'Issue', 5, '', '2020-10-17 11:51:44+07', false);
INSERT INTO public.journals VALUES (8542, 2266, 'Issue', 5, '', '2020-10-17 11:51:44+07', false);
INSERT INTO public.journals VALUES (8543, 2267, 'Issue', 5, '', '2020-10-17 11:51:44+07', false);
INSERT INTO public.journals VALUES (8544, 2268, 'Issue', 5, '', '2020-10-17 11:51:45+07', false);
INSERT INTO public.journals VALUES (8545, 2279, 'Issue', 5, '', '2020-10-17 11:51:45+07', false);
INSERT INTO public.journals VALUES (8546, 2280, 'Issue', 5, '', '2020-10-17 11:51:45+07', false);
INSERT INTO public.journals VALUES (8547, 2282, 'Issue', 5, '', '2020-10-17 11:51:45+07', false);
INSERT INTO public.journals VALUES (8548, 2284, 'Issue', 5, '', '2020-10-17 11:51:45+07', false);
INSERT INTO public.journals VALUES (8549, 2285, 'Issue', 5, '', '2020-10-17 11:51:45+07', false);
INSERT INTO public.journals VALUES (8550, 2304, 'Issue', 5, '', '2020-10-17 11:51:45+07', false);
INSERT INTO public.journals VALUES (8551, 2262, 'Issue', 5, NULL, '2020-10-17 11:52:38+07', false);
INSERT INTO public.journals VALUES (8552, 2263, 'Issue', 5, NULL, '2020-10-17 11:52:38+07', false);
INSERT INTO public.journals VALUES (8553, 2266, 'Issue', 5, NULL, '2020-10-17 11:52:38+07', false);
INSERT INTO public.journals VALUES (8554, 2267, 'Issue', 5, NULL, '2020-10-17 11:52:38+07', false);
INSERT INTO public.journals VALUES (8555, 2268, 'Issue', 5, NULL, '2020-10-17 11:52:38+07', false);
INSERT INTO public.journals VALUES (8556, 2279, 'Issue', 5, NULL, '2020-10-17 11:52:38+07', false);
INSERT INTO public.journals VALUES (8557, 2282, 'Issue', 5, NULL, '2020-10-17 11:52:39+07', false);
INSERT INTO public.journals VALUES (8558, 2284, 'Issue', 5, NULL, '2020-10-17 11:52:39+07', false);
INSERT INTO public.journals VALUES (8559, 2285, 'Issue', 5, NULL, '2020-10-17 11:52:39+07', false);
INSERT INTO public.journals VALUES (8560, 2305, 'Issue', 5, '', '2020-10-17 11:53:42+07', false);
INSERT INTO public.journals VALUES (8561, 2306, 'Issue', 5, '', '2020-10-17 11:53:42+07', false);
INSERT INTO public.journals VALUES (8562, 2307, 'Issue', 5, '', '2020-10-17 11:53:42+07', false);
INSERT INTO public.journals VALUES (8563, 2310, 'Issue', 5, '', '2020-10-17 11:53:42+07', false);
INSERT INTO public.journals VALUES (8564, 2311, 'Issue', 5, '', '2020-10-17 11:53:43+07', false);
INSERT INTO public.journals VALUES (8565, 2402, 'Issue', 40, '', '2020-10-17 13:22:04+07', false);
INSERT INTO public.journals VALUES (8566, 2391, 'Issue', 19, '', '2020-10-17 13:29:12+07', false);
INSERT INTO public.journals VALUES (8567, 2265, 'Issue', 40, NULL, '2020-10-17 13:34:01+07', false);
INSERT INTO public.journals VALUES (8568, 2277, 'Issue', 40, NULL, '2020-10-17 13:34:35+07', false);
INSERT INTO public.journals VALUES (8569, 2439, 'Issue', 37, '', '2020-10-17 14:23:22+07', false);
INSERT INTO public.journals VALUES (8570, 2441, 'Issue', 38, NULL, '2020-10-17 14:36:27+07', false);
INSERT INTO public.journals VALUES (8571, 2442, 'Issue', 38, NULL, '2020-10-17 14:36:35+07', false);
INSERT INTO public.journals VALUES (8572, 2443, 'Issue', 38, NULL, '2020-10-17 14:36:41+07', false);
INSERT INTO public.journals VALUES (8573, 2444, 'Issue', 38, NULL, '2020-10-17 14:36:47+07', false);
INSERT INTO public.journals VALUES (8574, 2439, 'Issue', 37, '', '2020-10-17 14:39:13+07', false);
INSERT INTO public.journals VALUES (8575, 2411, 'Issue', 39, '', '2020-10-17 15:35:31+07', false);
INSERT INTO public.journals VALUES (8576, 2421, 'Issue', 15, NULL, '2020-10-17 16:04:10+07', false);
INSERT INTO public.journals VALUES (8577, 2421, 'Issue', 15, '', '2020-10-17 16:04:43+07', false);
INSERT INTO public.journals VALUES (8578, 2439, 'Issue', 37, '', '2020-10-19 08:18:52+07', false);
INSERT INTO public.journals VALUES (8579, 2403, 'Issue', 17, '', '2020-10-19 08:20:00+07', false);
INSERT INTO public.journals VALUES (8580, 2391, 'Issue', 19, '', '2020-10-19 08:22:56+07', false);
INSERT INTO public.journals VALUES (8581, 2441, 'Issue', 38, NULL, '2020-10-19 08:23:16+07', false);
INSERT INTO public.journals VALUES (8582, 2440, 'Issue', 38, NULL, '2020-10-19 08:23:38+07', false);
INSERT INTO public.journals VALUES (8583, 2402, 'Issue', 19, '', '2020-10-19 08:24:27+07', false);
INSERT INTO public.journals VALUES (8584, 2225, 'Issue', 13, '', '2020-10-19 08:27:02+07', false);
INSERT INTO public.journals VALUES (8585, 2291, 'Issue', 13, '', '2020-10-19 08:27:02+07', false);
INSERT INTO public.journals VALUES (8586, 2360, 'Issue', 13, '', '2020-10-19 08:27:02+07', false);
INSERT INTO public.journals VALUES (8587, 2422, 'Issue', 13, '', '2020-10-19 08:27:02+07', false);
INSERT INTO public.journals VALUES (8588, 2440, 'Issue', 38, NULL, '2020-10-19 08:27:17+07', false);
INSERT INTO public.journals VALUES (8589, 2441, 'Issue', 38, NULL, '2020-10-19 08:27:24+07', false);
INSERT INTO public.journals VALUES (8590, 2440, 'Issue', 38, NULL, '2020-10-19 08:27:34+07', false);
INSERT INTO public.journals VALUES (8591, 2441, 'Issue', 38, NULL, '2020-10-19 08:27:48+07', false);
INSERT INTO public.journals VALUES (8592, 2355, 'Issue', 13, NULL, '2020-10-19 08:29:44+07', false);
INSERT INTO public.journals VALUES (8593, 2356, 'Issue', 13, NULL, '2020-10-19 08:29:44+07', false);
INSERT INTO public.journals VALUES (8594, 2357, 'Issue', 13, NULL, '2020-10-19 08:29:45+07', false);
INSERT INTO public.journals VALUES (8595, 2358, 'Issue', 13, NULL, '2020-10-19 08:29:45+07', false);
INSERT INTO public.journals VALUES (8596, 2367, 'Issue', 13, NULL, '2020-10-19 08:29:45+07', false);
INSERT INTO public.journals VALUES (8597, 2355, 'Issue', 13, '', '2020-10-19 08:30:06+07', false);
INSERT INTO public.journals VALUES (8598, 2356, 'Issue', 13, '', '2020-10-19 08:30:06+07', false);
INSERT INTO public.journals VALUES (8599, 2358, 'Issue', 13, '', '2020-10-19 08:30:06+07', false);
INSERT INTO public.journals VALUES (8600, 2367, 'Issue', 13, '', '2020-10-19 08:30:06+07', false);
INSERT INTO public.journals VALUES (8601, 2355, 'Issue', 13, '', '2020-10-19 08:30:42+07', false);
INSERT INTO public.journals VALUES (8602, 2356, 'Issue', 13, '', '2020-10-19 08:30:42+07', false);
INSERT INTO public.journals VALUES (8603, 2358, 'Issue', 13, '', '2020-10-19 08:30:43+07', false);
INSERT INTO public.journals VALUES (8604, 2367, 'Issue', 13, '', '2020-10-19 08:30:43+07', false);
INSERT INTO public.journals VALUES (8605, 2454, 'Issue', 5, '', '2020-10-19 08:35:02+07', false);
INSERT INTO public.journals VALUES (8607, 2394, 'Issue', 12, NULL, '2020-10-19 10:33:39+07', false);
INSERT INTO public.journals VALUES (8608, 2460, 'Issue', 12, NULL, '2020-10-19 14:30:25+07', false);
INSERT INTO public.journals VALUES (8609, 2460, 'Issue', 12, NULL, '2020-10-19 14:30:30+07', false);
INSERT INTO public.journals VALUES (8610, 2460, 'Issue', 12, NULL, '2020-10-19 14:32:31+07', false);
INSERT INTO public.journals VALUES (8611, 2462, 'Issue', 15, NULL, '2020-10-19 15:04:40+07', false);
INSERT INTO public.journals VALUES (8612, 2300, 'Issue', 10, NULL, '2020-10-19 15:22:16+07', false);
INSERT INTO public.journals VALUES (8613, 2300, 'Issue', 10, NULL, '2020-10-19 15:22:24+07', false);
INSERT INTO public.journals VALUES (8614, 2391, 'Issue', 19, '', '2020-10-20 08:31:52+07', false);
INSERT INTO public.journals VALUES (8615, 2462, 'Issue', 15, NULL, '2020-10-20 09:07:17+07', false);
INSERT INTO public.journals VALUES (8616, 2462, 'Issue', 15, NULL, '2020-10-20 09:07:26+07', false);
INSERT INTO public.journals VALUES (8617, 2462, 'Issue', 15, '', '2020-10-20 09:07:50+07', false);
INSERT INTO public.journals VALUES (8618, 2423, 'Issue', 5, NULL, '2020-10-20 10:05:52+07', false);
INSERT INTO public.journals VALUES (8619, 2423, 'Issue', 5, '', '2020-10-20 10:06:06+07', false);
INSERT INTO public.journals VALUES (8620, 2440, 'Issue', 5, '', '2020-10-20 10:06:06+07', false);
INSERT INTO public.journals VALUES (8621, 2441, 'Issue', 5, '', '2020-10-20 10:06:06+07', false);
INSERT INTO public.journals VALUES (8622, 2402, 'Issue', 19, '', '2020-10-20 10:45:48+07', false);
INSERT INTO public.journals VALUES (8623, 2446, 'Issue', 38, NULL, '2020-10-20 11:19:02+07', false);
INSERT INTO public.journals VALUES (8624, 2391, 'Issue', 5, NULL, '2020-10-20 11:19:05+07', false);
INSERT INTO public.journals VALUES (8625, 2402, 'Issue', 5, NULL, '2020-10-20 11:19:06+07', false);
INSERT INTO public.journals VALUES (8626, 2446, 'Issue', 38, NULL, '2020-10-20 11:19:14+07', false);
INSERT INTO public.journals VALUES (8627, 2482, 'Issue', 15, '', '2020-10-20 14:40:56+07', false);
INSERT INTO public.journals VALUES (8628, 2483, 'Issue', 15, '', '2020-10-20 14:41:13+07', false);
INSERT INTO public.journals VALUES (8629, 2435, 'Issue', 5, '', '2020-10-20 15:00:20+07', false);
INSERT INTO public.journals VALUES (8630, 2300, 'Issue', 5, NULL, '2020-10-20 15:00:31+07', false);
INSERT INTO public.journals VALUES (8631, 2403, 'Issue', 5, NULL, '2020-10-20 15:00:31+07', false);
INSERT INTO public.journals VALUES (8632, 2435, 'Issue', 5, NULL, '2020-10-20 15:00:32+07', false);
INSERT INTO public.journals VALUES (8633, 2446, 'Issue', 5, NULL, '2020-10-20 15:00:32+07', false);
INSERT INTO public.journals VALUES (8634, 2447, 'Issue', 5, NULL, '2020-10-20 15:00:32+07', false);
INSERT INTO public.journals VALUES (8635, 2461, 'Issue', 19, '', '2020-10-20 16:22:22+07', false);
INSERT INTO public.journals VALUES (8636, 2461, 'Issue', 19, '', '2020-10-20 16:22:24+07', false);
INSERT INTO public.journals VALUES (8637, 2396, 'Issue', 19, '', '2020-10-20 16:22:31+07', false);
INSERT INTO public.journals VALUES (8638, 2396, 'Issue', 19, '', '2020-10-20 16:22:32+07', false);
INSERT INTO public.journals VALUES (8639, 2396, 'Issue', 19, '', '2020-10-20 16:22:35+07', false);
INSERT INTO public.journals VALUES (8640, 2396, 'Issue', 19, '', '2020-10-20 16:22:37+07', false);
INSERT INTO public.journals VALUES (8641, 2485, 'Issue', 19, '', '2020-10-20 16:28:29+07', false);
INSERT INTO public.journals VALUES (8642, 2461, 'Issue', 12, '', '2020-10-21 10:08:22+07', false);
INSERT INTO public.journals VALUES (8643, 2461, 'Issue', 12, '', '2020-10-21 10:08:24+07', false);
INSERT INTO public.journals VALUES (8644, 2461, 'Issue', 12, '', '2020-10-21 10:08:26+07', false);
INSERT INTO public.journals VALUES (8645, 2461, 'Issue', 12, '', '2020-10-21 10:08:26+07', false);
INSERT INTO public.journals VALUES (8646, 2396, 'Issue', 12, '', '2020-10-21 10:08:33+07', false);
INSERT INTO public.journals VALUES (8647, 2396, 'Issue', 12, '', '2020-10-21 10:08:36+07', false);
INSERT INTO public.journals VALUES (8648, 2500, 'Issue', 40, '', '2020-10-21 13:35:09+07', false);
INSERT INTO public.journals VALUES (8649, 2501, 'Issue', 40, '', '2020-10-21 14:10:27+07', false);
INSERT INTO public.journals VALUES (8650, 2498, 'Issue', 40, NULL, '2020-10-21 14:18:40+07', false);
INSERT INTO public.journals VALUES (8652, 2423, 'Issue', 39, NULL, '2020-10-21 14:20:28+07', false);
INSERT INTO public.journals VALUES (8653, 2497, 'Issue', 39, NULL, '2020-10-21 14:22:13+07', false);
INSERT INTO public.journals VALUES (8654, 2478, 'Issue', 39, NULL, '2020-10-21 14:22:52+07', false);
INSERT INTO public.journals VALUES (8655, 2478, 'Issue', 39, NULL, '2020-10-21 14:23:00+07', false);
INSERT INTO public.journals VALUES (8656, 2488, 'Issue', 39, NULL, '2020-10-21 14:23:14+07', false);
INSERT INTO public.journals VALUES (8657, 2493, 'Issue', 39, NULL, '2020-10-21 14:25:10+07', false);
INSERT INTO public.journals VALUES (8658, 2481, 'Issue', 39, '', '2020-10-21 14:42:48+07', false);
INSERT INTO public.journals VALUES (8659, 2481, 'Issue', 39, '', '2020-10-21 14:42:56+07', false);
INSERT INTO public.journals VALUES (8660, 2424, 'Issue', 39, '', '2020-10-21 14:47:17+07', false);
INSERT INTO public.journals VALUES (8661, 2437, 'Issue', 39, '', '2020-10-21 14:47:17+07', false);
INSERT INTO public.journals VALUES (8662, 2438, 'Issue', 39, '', '2020-10-21 14:47:17+07', false);
INSERT INTO public.journals VALUES (8663, 2455, 'Issue', 39, '', '2020-10-21 14:47:42+07', false);
INSERT INTO public.journals VALUES (8664, 2425, 'Issue', 39, '', '2020-10-21 14:48:44+07', false);
INSERT INTO public.journals VALUES (8665, 2436, 'Issue', 39, '', '2020-10-21 14:48:45+07', false);
INSERT INTO public.journals VALUES (8666, 2508, 'Issue', 40, '', '2020-10-21 15:21:18+07', false);
INSERT INTO public.journals VALUES (8667, 2507, 'Issue', 40, '', '2020-10-21 15:22:06+07', false);
INSERT INTO public.journals VALUES (8668, 2506, 'Issue', 40, '', '2020-10-21 15:22:28+07', false);
INSERT INTO public.journals VALUES (8669, 2461, 'Issue', 12, NULL, '2020-10-21 15:24:24+07', false);
INSERT INTO public.journals VALUES (8670, 2461, 'Issue', 12, NULL, '2020-10-21 15:24:30+07', false);
INSERT INTO public.journals VALUES (8671, 2461, 'Issue', 12, '', '2020-10-21 15:24:46+07', false);
INSERT INTO public.journals VALUES (8672, 2509, 'Issue', 12, '', '2020-10-21 15:25:34+07', false);
INSERT INTO public.journals VALUES (8673, 2486, 'Issue', 10, NULL, '2020-10-21 16:01:49+07', false);
INSERT INTO public.journals VALUES (8674, 2486, 'Issue', 10, NULL, '2020-10-21 16:02:01+07', false);
INSERT INTO public.journals VALUES (8675, 2500, 'Issue', 10, NULL, '2020-10-21 16:08:06+07', false);
INSERT INTO public.journals VALUES (8676, 2503, 'Issue', 40, '', '2020-10-21 16:09:51+07', false);
INSERT INTO public.journals VALUES (8677, 2499, 'Issue', 40, NULL, '2020-10-21 16:22:01+07', false);
INSERT INTO public.journals VALUES (8678, 2499, 'Issue', 40, '', '2020-10-21 16:23:16+07', false);
INSERT INTO public.journals VALUES (8679, 2512, 'Issue', 40, '', '2020-10-21 16:28:56+07', false);
INSERT INTO public.journals VALUES (8680, 2513, 'Issue', 39, '', '2020-10-21 16:41:40+07', false);
INSERT INTO public.journals VALUES (8681, 2497, 'Issue', 40, NULL, '2020-10-21 16:57:22+07', false);
INSERT INTO public.journals VALUES (8682, 2489, 'Issue', 39, '', '2020-10-22 08:31:50+07', false);
INSERT INTO public.journals VALUES (8683, 2518, 'Issue', 41, '', '2020-10-22 08:33:18+07', false);
INSERT INTO public.journals VALUES (8684, 2423, 'Issue', 37, '', '2020-10-22 08:34:09+07', false);
INSERT INTO public.journals VALUES (8685, 2439, 'Issue', 37, NULL, '2020-10-22 08:34:54+07', false);
INSERT INTO public.journals VALUES (8686, 2425, 'Issue', 37, NULL, '2020-10-22 08:35:13+07', false);
INSERT INTO public.journals VALUES (8687, 2425, 'Issue', 37, NULL, '2020-10-22 08:35:24+07', false);
INSERT INTO public.journals VALUES (8688, 2517, 'Issue', 41, '', '2020-10-22 08:35:48+07', false);
INSERT INTO public.journals VALUES (8689, 2436, 'Issue', 37, '', '2020-10-22 08:35:57+07', false);
INSERT INTO public.journals VALUES (8690, 2442, 'Issue', 5, '', '2020-10-22 08:35:59+07', false);
INSERT INTO public.journals VALUES (8691, 2443, 'Issue', 5, '', '2020-10-22 08:35:59+07', false);
INSERT INTO public.journals VALUES (8692, 2444, 'Issue', 5, '', '2020-10-22 08:35:59+07', false);
INSERT INTO public.journals VALUES (8693, 2487, 'Issue', 41, '', '2020-10-22 08:36:12+07', false);
INSERT INTO public.journals VALUES (8694, 2494, 'Issue', 5, '', '2020-10-22 08:37:04+07', false);
INSERT INTO public.journals VALUES (8695, 2504, 'Issue', 5, '', '2020-10-22 08:37:04+07', false);
INSERT INTO public.journals VALUES (8696, 2495, 'Issue', 5, '', '2020-10-22 08:37:22+07', false);
INSERT INTO public.journals VALUES (8697, 2499, 'Issue', 5, '', '2020-10-22 08:37:22+07', false);
INSERT INTO public.journals VALUES (8698, 2511, 'Issue', 5, '', '2020-10-22 08:37:22+07', false);
INSERT INTO public.journals VALUES (8699, 2512, 'Issue', 5, '', '2020-10-22 08:37:22+07', false);
INSERT INTO public.journals VALUES (8700, 2507, 'Issue', 10, '', '2020-10-22 08:39:14+07', false);
INSERT INTO public.journals VALUES (8701, 2506, 'Issue', 10, '', '2020-10-22 08:40:52+07', false);
INSERT INTO public.journals VALUES (8702, 2510, 'Issue', 10, '', '2020-10-22 08:42:50+07', false);
INSERT INTO public.journals VALUES (8703, 2508, 'Issue', 10, '', '2020-10-22 08:44:36+07', false);
INSERT INTO public.journals VALUES (8704, 2502, 'Issue', 10, '', '2020-10-22 08:45:20+07', false);
INSERT INTO public.journals VALUES (8705, 2508, 'Issue', 10, '', '2020-10-22 08:45:37+07', false);
INSERT INTO public.journals VALUES (8706, 2501, 'Issue', 10, '', '2020-10-22 08:47:27+07', false);
INSERT INTO public.journals VALUES (8707, 2503, 'Issue', 10, '', '2020-10-22 08:48:33+07', false);
INSERT INTO public.journals VALUES (8708, 2521, 'Issue', 22, NULL, '2020-10-22 08:49:48+07', false);
INSERT INTO public.journals VALUES (8709, 2375, 'Issue', 5, '', '2020-10-22 09:12:40+07', false);
INSERT INTO public.journals VALUES (8710, 2375, 'Issue', 5, '', '2020-10-22 09:14:35+07', false);
INSERT INTO public.journals VALUES (8711, 2375, 'Issue', 5, '', '2020-10-22 09:15:18+07', false);
INSERT INTO public.journals VALUES (8712, 2375, 'Issue', 5, '', '2020-10-22 09:15:33+07', false);
INSERT INTO public.journals VALUES (8713, 2510, 'Issue', 40, '', '2020-10-22 10:07:40+07', false);
INSERT INTO public.journals VALUES (8714, 2507, 'Issue', 10, NULL, '2020-10-22 10:09:27+07', false);
INSERT INTO public.journals VALUES (8715, 2507, 'Issue', 10, NULL, '2020-10-22 10:12:21+07', false);
INSERT INTO public.journals VALUES (8716, 2496, 'Issue', 40, NULL, '2020-10-22 10:21:21+07', false);
INSERT INTO public.journals VALUES (8717, 2439, 'Issue', 40, NULL, '2020-10-22 10:29:54+07', false);
INSERT INTO public.journals VALUES (8718, 2529, 'Issue', 40, '', '2020-10-22 11:34:27+07', false);
INSERT INTO public.journals VALUES (8719, 2529, 'Issue', 40, '', '2020-10-22 11:34:44+07', false);
INSERT INTO public.journals VALUES (8720, 2402, 'Issue', 40, NULL, '2020-10-22 13:09:05+07', false);
INSERT INTO public.journals VALUES (8721, 2481, 'Issue', 40, NULL, '2020-10-22 13:23:02+07', false);
INSERT INTO public.journals VALUES (8722, 2441, 'Issue', 40, NULL, '2020-10-22 13:23:12+07', false);
INSERT INTO public.journals VALUES (8723, 2440, 'Issue', 40, NULL, '2020-10-22 13:23:22+07', false);
INSERT INTO public.journals VALUES (8724, 2391, 'Issue', 40, NULL, '2020-10-22 13:23:41+07', false);
INSERT INTO public.journals VALUES (8725, 2478, 'Issue', 40, NULL, '2020-10-22 13:24:06+07', false);
INSERT INTO public.journals VALUES (8726, 2486, 'Issue', 40, NULL, '2020-10-22 13:25:10+07', false);
INSERT INTO public.journals VALUES (8727, 2487, 'Issue', 40, NULL, '2020-10-22 13:25:41+07', false);
INSERT INTO public.journals VALUES (8728, 2488, 'Issue', 40, NULL, '2020-10-22 13:25:51+07', false);
INSERT INTO public.journals VALUES (8729, 2513, 'Issue', 40, NULL, '2020-10-22 13:26:37+07', false);
INSERT INTO public.journals VALUES (8730, 2507, 'Issue', 40, NULL, '2020-10-22 13:26:55+07', false);
INSERT INTO public.journals VALUES (8731, 2518, 'Issue', 40, NULL, '2020-10-22 13:28:45+07', false);
INSERT INTO public.journals VALUES (8732, 2517, 'Issue', 40, NULL, '2020-10-22 13:28:53+07', false);
INSERT INTO public.journals VALUES (8733, 2402, 'Issue', 40, '', '2020-10-22 13:40:16+07', false);
INSERT INTO public.journals VALUES (8734, 2529, 'Issue', 40, NULL, '2020-10-22 13:46:56+07', false);
INSERT INTO public.journals VALUES (8735, 2402, 'Issue', 40, NULL, '2020-10-22 13:50:14+07', false);
INSERT INTO public.journals VALUES (8736, 2402, 'Issue', 40, NULL, '2020-10-22 13:52:30+07', false);
INSERT INTO public.journals VALUES (8737, 2530, 'Issue', 39, '', '2020-10-22 13:55:58+07', false);
INSERT INTO public.journals VALUES (8738, 2515, 'Issue', 5, '', '2020-10-22 14:04:36+07', false);
INSERT INTO public.journals VALUES (8739, 2519, 'Issue', 5, '', '2020-10-22 14:05:02+07', false);
INSERT INTO public.journals VALUES (8740, 2522, 'Issue', 5, NULL, '2020-10-22 14:06:44+07', false);
INSERT INTO public.journals VALUES (8741, 2424, 'Issue', 5, '', '2020-10-22 14:07:56+07', false);
INSERT INTO public.journals VALUES (8742, 2437, 'Issue', 5, '', '2020-10-22 14:09:08+07', false);
INSERT INTO public.journals VALUES (8743, 2438, 'Issue', 5, '', '2020-10-22 14:09:08+07', false);
INSERT INTO public.journals VALUES (8744, 2455, 'Issue', 5, NULL, '2020-10-22 14:09:20+07', false);
INSERT INTO public.journals VALUES (8745, 2455, 'Issue', 5, '', '2020-10-22 14:11:57+07', false);
INSERT INTO public.journals VALUES (8746, 2520, 'Issue', 39, '', '2020-10-22 14:40:33+07', false);
INSERT INTO public.journals VALUES (8748, 2479, 'Issue', 5, '', '2020-10-22 14:43:12+07', false);
INSERT INTO public.journals VALUES (8749, 2375, 'Issue', 5, '', '2020-10-22 15:14:13+07', false);
INSERT INTO public.journals VALUES (8750, 2506, 'Issue', 10, NULL, '2020-10-22 15:21:33+07', false);
INSERT INTO public.journals VALUES (8751, 2508, 'Issue', 10, NULL, '2020-10-22 16:05:04+07', false);
INSERT INTO public.journals VALUES (8752, 2506, 'Issue', 10, NULL, '2020-10-22 16:06:27+07', false);
INSERT INTO public.journals VALUES (8753, 2508, 'Issue', 10, NULL, '2020-10-22 16:06:35+07', false);
INSERT INTO public.journals VALUES (8754, 2506, 'Issue', 10, NULL, '2020-10-22 16:06:57+07', false);
INSERT INTO public.journals VALUES (8755, 2508, 'Issue', 10, NULL, '2020-10-22 16:07:05+07', false);
INSERT INTO public.journals VALUES (8756, 2526, 'Issue', 10, '', '2020-10-22 16:07:40+07', false);
INSERT INTO public.journals VALUES (8757, 2501, 'Issue', 10, '', '2020-10-22 16:08:42+07', false);
INSERT INTO public.journals VALUES (8758, 2502, 'Issue', 10, '', '2020-10-22 16:08:42+07', false);
INSERT INTO public.journals VALUES (8759, 2501, 'Issue', 10, '', '2020-10-22 16:09:09+07', false);
INSERT INTO public.journals VALUES (8760, 2502, 'Issue', 10, '', '2020-10-22 16:09:09+07', false);
INSERT INTO public.journals VALUES (8761, 2501, 'Issue', 10, '', '2020-10-22 16:09:26+07', false);
INSERT INTO public.journals VALUES (8762, 2502, 'Issue', 10, '', '2020-10-22 16:09:26+07', false);
INSERT INTO public.journals VALUES (8763, 2503, 'Issue', 10, '', '2020-10-22 16:09:44+07', false);
INSERT INTO public.journals VALUES (8764, 2514, 'Issue', 39, '', '2020-10-23 07:55:18+07', false);
INSERT INTO public.journals VALUES (8765, 2493, 'Issue', 39, '', '2020-10-23 07:55:43+07', false);
INSERT INTO public.journals VALUES (8766, 2445, 'Issue', 39, '', '2020-10-23 08:00:44+07', false);
INSERT INTO public.journals VALUES (8767, 2514, 'Issue', 40, NULL, '2020-10-23 08:07:31+07', false);
INSERT INTO public.journals VALUES (8768, 2442, 'Issue', 38, NULL, '2020-10-23 08:47:47+07', false);
INSERT INTO public.journals VALUES (8769, 2442, 'Issue', 38, NULL, '2020-10-23 08:47:57+07', false);
INSERT INTO public.journals VALUES (8770, 2443, 'Issue', 38, NULL, '2020-10-23 09:29:57+07', false);
INSERT INTO public.journals VALUES (8771, 2444, 'Issue', 38, NULL, '2020-10-23 09:30:07+07', false);
INSERT INTO public.journals VALUES (8772, 2532, 'Issue', 39, '', '2020-10-23 10:12:58+07', false);
INSERT INTO public.journals VALUES (8773, 2532, 'Issue', 39, '', '2020-10-23 10:13:15+07', false);
INSERT INTO public.journals VALUES (8774, 2445, 'Issue', 39, '', '2020-10-23 10:14:18+07', false);
INSERT INTO public.journals VALUES (8775, 2532, 'Issue', 39, '', '2020-10-23 10:14:30+07', false);
INSERT INTO public.journals VALUES (8776, 2445, 'Issue', 39, '', '2020-10-23 10:14:42+07', false);
INSERT INTO public.journals VALUES (8777, 2479, 'Issue', 5, '', '2020-10-23 10:18:24+07', false);
INSERT INTO public.journals VALUES (8778, 2510, 'Issue', 10, NULL, '2020-10-23 11:28:22+07', false);
INSERT INTO public.journals VALUES (8779, 2510, 'Issue', 10, NULL, '2020-10-23 11:28:32+07', false);
INSERT INTO public.journals VALUES (8780, 2502, 'Issue', 10, NULL, '2020-10-23 11:45:02+07', false);
INSERT INTO public.journals VALUES (8781, 2502, 'Issue', 10, NULL, '2020-10-23 11:46:25+07', false);
INSERT INTO public.journals VALUES (8782, 2509, 'Issue', 12, NULL, '2020-10-23 14:00:29+07', false);
INSERT INTO public.journals VALUES (8783, 2509, 'Issue', 12, NULL, '2020-10-23 14:00:43+07', false);
INSERT INTO public.journals VALUES (8784, 2536, 'Issue', 12, '', '2020-10-23 14:02:26+07', false);
INSERT INTO public.journals VALUES (8785, 2536, 'Issue', 12, '', '2020-10-23 14:02:58+07', false);
INSERT INTO public.journals VALUES (8786, 2538, 'Issue', 12, '', '2020-10-23 14:06:11+07', false);
INSERT INTO public.journals VALUES (8787, 2540, 'Issue', 12, '', '2020-10-23 14:06:22+07', false);
INSERT INTO public.journals VALUES (8788, 2537, 'Issue', 12, '', '2020-10-23 14:06:57+07', false);
INSERT INTO public.journals VALUES (8789, 2537, 'Issue', 12, '', '2020-10-23 14:07:09+07', false);
INSERT INTO public.journals VALUES (8790, 2541, 'Issue', 12, '', '2020-10-23 14:08:33+07', false);
INSERT INTO public.journals VALUES (8791, 2537, 'Issue', 12, '', '2020-10-23 14:09:25+07', false);
INSERT INTO public.journals VALUES (8792, 2543, 'Issue', 12, '', '2020-10-23 14:14:49+07', false);
INSERT INTO public.journals VALUES (8793, 2543, 'Issue', 12, '', '2020-10-23 14:14:54+07', false);
INSERT INTO public.journals VALUES (8794, 2542, 'Issue', 12, '', '2020-10-23 14:15:13+07', false);
INSERT INTO public.journals VALUES (8795, 2369, 'Issue', 40, '', '2020-10-23 14:48:38+07', false);
INSERT INTO public.journals VALUES (8796, 2369, 'Issue', 40, '', '2020-10-23 15:09:47+07', false);
INSERT INTO public.journals VALUES (8797, 2374, 'Issue', 13, '', '2020-10-23 15:59:43+07', false);
INSERT INTO public.journals VALUES (8798, 2546, 'Issue', 13, '', '2020-10-23 15:59:43+07', false);
INSERT INTO public.journals VALUES (8799, 2374, 'Issue', 13, '', '2020-10-23 16:01:23+07', false);
INSERT INTO public.journals VALUES (8800, 2546, 'Issue', 13, '', '2020-10-23 16:02:02+07', false);
INSERT INTO public.journals VALUES (8801, 2356, 'Issue', 13, NULL, '2020-10-23 16:06:05+07', false);
INSERT INTO public.journals VALUES (8802, 2457, 'Issue', 13, NULL, '2020-10-23 16:06:36+07', false);
INSERT INTO public.journals VALUES (8803, 2458, 'Issue', 13, NULL, '2020-10-23 16:06:37+07', false);
INSERT INTO public.journals VALUES (8804, 2459, 'Issue', 13, NULL, '2020-10-23 16:06:37+07', false);
INSERT INTO public.journals VALUES (8805, 2356, 'Issue', 13, NULL, '2020-10-23 16:06:54+07', false);
INSERT INTO public.journals VALUES (8806, 2457, 'Issue', 13, NULL, '2020-10-23 16:06:54+07', false);
INSERT INTO public.journals VALUES (8807, 2458, 'Issue', 13, NULL, '2020-10-23 16:06:54+07', false);
INSERT INTO public.journals VALUES (8808, 2459, 'Issue', 13, NULL, '2020-10-23 16:06:54+07', false);
INSERT INTO public.journals VALUES (8809, 2445, 'Issue', 5, '', '2020-10-24 07:55:19+07', false);
INSERT INTO public.journals VALUES (8810, 2532, 'Issue', 5, '', '2020-10-24 07:55:19+07', false);
INSERT INTO public.journals VALUES (8811, 2524, 'Issue', 37, NULL, '2020-10-24 08:42:07+07', false);
INSERT INTO public.journals VALUES (8812, 2524, 'Issue', 37, NULL, '2020-10-24 08:42:19+07', false);
INSERT INTO public.journals VALUES (8813, 2554, 'Issue', 13, '', '2020-10-24 08:49:15+07', false);
INSERT INTO public.journals VALUES (8814, 2555, 'Issue', 13, '', '2020-10-24 08:49:15+07', false);
INSERT INTO public.journals VALUES (8815, 2556, 'Issue', 13, '', '2020-10-24 08:49:15+07', false);
INSERT INTO public.journals VALUES (8816, 2557, 'Issue', 13, '', '2020-10-24 08:49:15+07', false);
INSERT INTO public.journals VALUES (8817, 2561, 'Issue', 13, '', '2020-10-24 08:49:15+07', false);
INSERT INTO public.journals VALUES (8818, 2567, 'Issue', 13, '', '2020-10-24 08:49:37+07', false);
INSERT INTO public.journals VALUES (8819, 2568, 'Issue', 13, '', '2020-10-24 08:49:37+07', false);
INSERT INTO public.journals VALUES (8820, 2569, 'Issue', 13, '', '2020-10-24 08:49:37+07', false);
INSERT INTO public.journals VALUES (8821, 2570, 'Issue', 13, '', '2020-10-24 08:49:37+07', false);
INSERT INTO public.journals VALUES (8822, 2571, 'Issue', 13, '', '2020-10-24 08:49:38+07', false);
INSERT INTO public.journals VALUES (8823, 2547, 'Issue', 13, '', '2020-10-24 08:50:38+07', false);
INSERT INTO public.journals VALUES (8824, 2548, 'Issue', 13, '', '2020-10-24 08:50:38+07', false);
INSERT INTO public.journals VALUES (8825, 2572, 'Issue', 13, '', '2020-10-24 08:50:39+07', false);
INSERT INTO public.journals VALUES (8826, 2573, 'Issue', 13, '', '2020-10-24 08:50:39+07', false);
INSERT INTO public.journals VALUES (8827, 2562, 'Issue', 13, '', '2020-10-24 08:51:00+07', false);
INSERT INTO public.journals VALUES (8828, 2563, 'Issue', 13, '', '2020-10-24 08:51:00+07', false);
INSERT INTO public.journals VALUES (8829, 2564, 'Issue', 13, '', '2020-10-24 08:51:00+07', false);
INSERT INTO public.journals VALUES (8830, 2565, 'Issue', 13, '', '2020-10-24 08:51:01+07', false);
INSERT INTO public.journals VALUES (8831, 2566, 'Issue', 13, '', '2020-10-24 08:51:01+07', false);
INSERT INTO public.journals VALUES (8832, 2545, 'Issue', 13, '', '2020-10-24 08:57:58+07', false);
INSERT INTO public.journals VALUES (8833, 2494, 'Issue', 38, NULL, '2020-10-24 09:07:58+07', false);
INSERT INTO public.journals VALUES (8834, 2443, 'Issue', 38, NULL, '2020-10-24 09:08:19+07', false);
INSERT INTO public.journals VALUES (8835, 2444, 'Issue', 38, NULL, '2020-10-24 09:08:20+07', false);
INSERT INTO public.journals VALUES (8836, 2494, 'Issue', 38, NULL, '2020-10-24 09:08:20+07', false);
INSERT INTO public.journals VALUES (8837, 2531, 'Issue', 38, NULL, '2020-10-24 09:08:43+07', false);
INSERT INTO public.journals VALUES (8838, 2531, 'Issue', 38, NULL, '2020-10-24 09:08:52+07', false);
INSERT INTO public.journals VALUES (8839, 2552, 'Issue', 13, NULL, '2020-10-24 09:15:50+07', false);
INSERT INTO public.journals VALUES (8840, 2552, 'Issue', 13, NULL, '2020-10-24 09:16:17+07', false);
INSERT INTO public.journals VALUES (8841, 2559, 'Issue', 13, '', '2020-10-24 09:29:07+07', false);
INSERT INTO public.journals VALUES (8842, 2546, 'Issue', 13, NULL, '2020-10-24 09:34:39+07', false);
INSERT INTO public.journals VALUES (8843, 2374, 'Issue', 13, NULL, '2020-10-24 09:34:50+07', false);
INSERT INTO public.journals VALUES (8844, 2369, 'Issue', 13, NULL, '2020-10-24 09:35:51+07', false);
INSERT INTO public.journals VALUES (8845, 2369, 'Issue', 13, '', '2020-10-24 09:36:22+07', false);
INSERT INTO public.journals VALUES (8846, 2549, 'Issue', 13, '', '2020-10-24 09:36:22+07', false);
INSERT INTO public.journals VALUES (8847, 2550, 'Issue', 13, '', '2020-10-24 09:36:22+07', false);
INSERT INTO public.journals VALUES (8848, 2551, 'Issue', 13, '', '2020-10-24 09:36:23+07', false);
INSERT INTO public.journals VALUES (8849, 2553, 'Issue', 13, '', '2020-10-24 09:36:23+07', false);
INSERT INTO public.journals VALUES (8850, 2489, 'Issue', 39, '', '2020-10-24 10:10:44+07', false);
INSERT INTO public.journals VALUES (8851, 2526, 'Issue', 10, NULL, '2020-10-24 13:44:52+07', false);
INSERT INTO public.journals VALUES (8852, 2526, 'Issue', 10, NULL, '2020-10-24 13:45:07+07', false);
INSERT INTO public.journals VALUES (8853, 2501, 'Issue', 10, '', '2020-10-24 16:39:55+07', false);
INSERT INTO public.journals VALUES (8854, 2534, 'Issue', 10, '', '2020-10-24 16:39:55+07', false);
INSERT INTO public.journals VALUES (8855, 2425, 'Issue', 5, NULL, '2020-10-24 16:39:55+07', false);
INSERT INTO public.journals VALUES (8856, 2442, 'Issue', 5, NULL, '2020-10-24 16:39:56+07', false);
INSERT INTO public.journals VALUES (8857, 2443, 'Issue', 5, NULL, '2020-10-24 16:39:56+07', false);
INSERT INTO public.journals VALUES (8858, 2444, 'Issue', 5, NULL, '2020-10-24 16:39:56+07', false);
INSERT INTO public.journals VALUES (8859, 2445, 'Issue', 5, NULL, '2020-10-24 16:39:56+07', false);
INSERT INTO public.journals VALUES (8860, 2489, 'Issue', 5, NULL, '2020-10-24 16:39:56+07', false);
INSERT INTO public.journals VALUES (8861, 2493, 'Issue', 5, NULL, '2020-10-24 16:39:56+07', false);
INSERT INTO public.journals VALUES (8862, 2494, 'Issue', 5, NULL, '2020-10-24 16:39:56+07', false);
INSERT INTO public.journals VALUES (8863, 2502, 'Issue', 5, NULL, '2020-10-24 16:39:56+07', false);
INSERT INTO public.journals VALUES (8864, 2510, 'Issue', 5, NULL, '2020-10-24 16:39:57+07', false);
INSERT INTO public.journals VALUES (8865, 2520, 'Issue', 5, NULL, '2020-10-24 16:39:57+07', false);
INSERT INTO public.journals VALUES (8866, 2524, 'Issue', 5, NULL, '2020-10-24 16:39:57+07', false);
INSERT INTO public.journals VALUES (8867, 2526, 'Issue', 5, NULL, '2020-10-24 16:39:57+07', false);
INSERT INTO public.journals VALUES (8868, 2530, 'Issue', 5, NULL, '2020-10-24 16:39:57+07', false);
INSERT INTO public.journals VALUES (8869, 2531, 'Issue', 5, NULL, '2020-10-24 16:39:57+07', false);
INSERT INTO public.journals VALUES (8870, 2505, 'Issue', 41, '', '2020-10-24 16:40:01+07', false);
INSERT INTO public.journals VALUES (8871, 2501, 'Issue', 10, '', '2020-10-24 16:40:12+07', false);
INSERT INTO public.journals VALUES (8872, 2534, 'Issue', 10, '', '2020-10-24 16:40:13+07', false);
INSERT INTO public.journals VALUES (8873, 2495, 'Issue', 38, NULL, '2020-10-24 16:42:49+07', false);
INSERT INTO public.journals VALUES (8874, 2504, 'Issue', 38, NULL, '2020-10-24 16:42:49+07', false);
INSERT INTO public.journals VALUES (8875, 2511, 'Issue', 38, NULL, '2020-10-24 16:42:49+07', false);
INSERT INTO public.journals VALUES (8876, 2495, 'Issue', 38, NULL, '2020-10-24 16:43:18+07', false);
INSERT INTO public.journals VALUES (8877, 2504, 'Issue', 38, NULL, '2020-10-24 16:43:18+07', false);
INSERT INTO public.journals VALUES (8878, 2511, 'Issue', 38, NULL, '2020-10-24 16:43:18+07', false);
INSERT INTO public.journals VALUES (8879, 2519, 'Issue', 39, '', '2020-10-24 16:51:49+07', false);
INSERT INTO public.journals VALUES (8880, 2532, 'Issue', 39, '', '2020-10-24 16:52:04+07', false);
INSERT INTO public.journals VALUES (8881, 2423, 'Issue', 37, NULL, '2020-10-24 16:53:12+07', false);
INSERT INTO public.journals VALUES (8882, 2423, 'Issue', 37, NULL, '2020-10-24 16:53:19+07', false);
INSERT INTO public.journals VALUES (8883, 2436, 'Issue', 37, '', '2020-10-24 16:54:56+07', false);
INSERT INTO public.journals VALUES (8884, 2523, 'Issue', 37, '', '2020-10-24 16:54:56+07', false);
INSERT INTO public.journals VALUES (8885, 2525, 'Issue', 37, '', '2020-10-24 16:54:56+07', false);
INSERT INTO public.journals VALUES (8886, 2423, 'Issue', 5, NULL, '2020-10-24 16:55:35+07', false);
INSERT INTO public.journals VALUES (8887, 2495, 'Issue', 5, NULL, '2020-10-24 16:55:35+07', false);
INSERT INTO public.journals VALUES (8888, 2504, 'Issue', 5, NULL, '2020-10-24 16:55:36+07', false);
INSERT INTO public.journals VALUES (8889, 2505, 'Issue', 5, NULL, '2020-10-24 16:55:36+07', false);
INSERT INTO public.journals VALUES (8890, 2511, 'Issue', 5, NULL, '2020-10-24 16:55:36+07', false);
INSERT INTO public.journals VALUES (8891, 2519, 'Issue', 5, NULL, '2020-10-24 16:55:36+07', false);
INSERT INTO public.journals VALUES (8892, 2402, 'Issue', 5, NULL, '2020-10-24 16:58:02+07', false);
INSERT INTO public.journals VALUES (8893, 2515, 'Issue', 5, '', '2020-10-24 16:58:25+07', false);
INSERT INTO public.journals VALUES (8894, 2516, 'Issue', 5, '', '2020-10-24 16:58:25+07', false);
INSERT INTO public.journals VALUES (8895, 2518, 'Issue', 5, '', '2020-10-24 16:58:25+07', false);
INSERT INTO public.journals VALUES (8896, 2402, 'Issue', 5, NULL, '2020-10-24 16:58:54+07', false);
INSERT INTO public.journals VALUES (8897, 2515, 'Issue', 5, NULL, '2020-10-24 16:59:02+07', false);
INSERT INTO public.journals VALUES (8898, 2516, 'Issue', 5, NULL, '2020-10-24 16:59:02+07', false);
INSERT INTO public.journals VALUES (8899, 2518, 'Issue', 5, NULL, '2020-10-24 16:59:02+07', false);
INSERT INTO public.journals VALUES (8900, 2424, 'Issue', 8, '', '2020-10-24 16:59:05+07', false);
INSERT INTO public.journals VALUES (8901, 2437, 'Issue', 8, '', '2020-10-24 16:59:05+07', false);
INSERT INTO public.journals VALUES (8902, 2438, 'Issue', 8, '', '2020-10-24 16:59:05+07', false);
INSERT INTO public.journals VALUES (8903, 2522, 'Issue', 8, '', '2020-10-24 16:59:05+07', false);
INSERT INTO public.journals VALUES (8904, 2439, 'Issue', 37, NULL, '2020-10-24 16:59:16+07', false);
INSERT INTO public.journals VALUES (8905, 2439, 'Issue', 37, NULL, '2020-10-24 16:59:22+07', false);
INSERT INTO public.journals VALUES (8906, 2499, 'Issue', 38, NULL, '2020-10-24 16:59:35+07', false);
INSERT INTO public.journals VALUES (8907, 2512, 'Issue', 38, NULL, '2020-10-24 16:59:35+07', false);
INSERT INTO public.journals VALUES (8908, 2558, 'Issue', 38, NULL, '2020-10-24 16:59:35+07', false);
INSERT INTO public.journals VALUES (8909, 2424, 'Issue', 8, '', '2020-10-24 17:00:13+07', false);
INSERT INTO public.journals VALUES (8910, 2437, 'Issue', 8, '', '2020-10-24 17:00:13+07', false);
INSERT INTO public.journals VALUES (8911, 2438, 'Issue', 8, '', '2020-10-24 17:00:13+07', false);
INSERT INTO public.journals VALUES (8912, 2522, 'Issue', 8, '', '2020-10-24 17:00:13+07', false);
INSERT INTO public.journals VALUES (8913, 2499, 'Issue', 5, '', '2020-10-24 17:00:39+07', false);
INSERT INTO public.journals VALUES (8914, 2512, 'Issue', 5, '', '2020-10-24 17:00:39+07', false);
INSERT INTO public.journals VALUES (8915, 2558, 'Issue', 5, '', '2020-10-24 17:00:39+07', false);
INSERT INTO public.journals VALUES (8916, 2439, 'Issue', 5, NULL, '2020-10-24 17:00:56+07', false);
INSERT INTO public.journals VALUES (8917, 2431, 'Issue', 12, NULL, '2020-10-26 08:15:34+07', false);
INSERT INTO public.journals VALUES (8918, 2355, 'Issue', 13, '', '2020-10-26 08:21:16+07', false);
INSERT INTO public.journals VALUES (8919, 2358, 'Issue', 13, '', '2020-10-26 08:21:16+07', false);
INSERT INTO public.journals VALUES (8920, 2367, 'Issue', 13, '', '2020-10-26 08:21:16+07', false);
INSERT INTO public.journals VALUES (8921, 2518, 'Issue', 41, '', '2020-10-26 13:38:39+07', false);
INSERT INTO public.journals VALUES (8922, 2515, 'Issue', 41, '', '2020-10-26 13:39:02+07', false);
INSERT INTO public.journals VALUES (8923, 2525, 'Issue', 37, NULL, '2020-10-26 13:39:53+07', false);
INSERT INTO public.journals VALUES (8924, 2525, 'Issue', 37, NULL, '2020-10-26 13:40:03+07', false);
INSERT INTO public.journals VALUES (8925, 2578, 'Issue', 41, '', '2020-10-26 13:40:11+07', false);
INSERT INTO public.journals VALUES (8926, 2579, 'Issue', 41, '', '2020-10-26 13:41:45+07', false);
INSERT INTO public.journals VALUES (8928, 2532, 'Issue', 39, '', '2020-10-26 13:48:23+07', false);
INSERT INTO public.journals VALUES (8929, 2451, 'Issue', 5, '', '2020-10-26 13:51:03+07', false);
INSERT INTO public.journals VALUES (8930, 2501, 'Issue', 10, NULL, '2020-10-26 14:20:19+07', false);
INSERT INTO public.journals VALUES (8931, 2501, 'Issue', 10, NULL, '2020-10-26 14:20:25+07', false);
INSERT INTO public.journals VALUES (8932, 2424, 'Issue', 8, NULL, '2020-10-26 15:39:20+07', false);
INSERT INTO public.journals VALUES (8933, 2437, 'Issue', 8, NULL, '2020-10-26 15:39:21+07', false);
INSERT INTO public.journals VALUES (8934, 2438, 'Issue', 8, NULL, '2020-10-26 15:39:21+07', false);
INSERT INTO public.journals VALUES (8935, 2522, 'Issue', 8, NULL, '2020-10-26 15:39:21+07', false);
INSERT INTO public.journals VALUES (8936, 2424, 'Issue', 8, NULL, '2020-10-26 15:39:33+07', false);
INSERT INTO public.journals VALUES (8937, 2437, 'Issue', 8, NULL, '2020-10-26 15:39:33+07', false);
INSERT INTO public.journals VALUES (8938, 2438, 'Issue', 8, NULL, '2020-10-26 15:39:33+07', false);
INSERT INTO public.journals VALUES (8939, 2522, 'Issue', 8, NULL, '2020-10-26 15:39:34+07', false);
INSERT INTO public.journals VALUES (8940, 2558, 'Issue', 38, NULL, '2020-10-26 16:53:46+07', false);
INSERT INTO public.journals VALUES (8941, 2558, 'Issue', 38, NULL, '2020-10-26 16:54:57+07', false);
INSERT INTO public.journals VALUES (8942, 2575, 'Issue', 38, NULL, '2020-10-26 16:55:04+07', false);
INSERT INTO public.journals VALUES (8943, 2576, 'Issue', 38, NULL, '2020-10-26 16:55:10+07', false);
INSERT INTO public.journals VALUES (8944, 2499, 'Issue', 38, NULL, '2020-10-26 16:55:19+07', false);
INSERT INTO public.journals VALUES (8945, 2512, 'Issue', 38, NULL, '2020-10-26 16:55:19+07', false);
INSERT INTO public.journals VALUES (8946, 2575, 'Issue', 38, NULL, '2020-10-26 16:55:20+07', false);
INSERT INTO public.journals VALUES (8947, 2576, 'Issue', 38, NULL, '2020-10-26 16:55:20+07', false);
INSERT INTO public.journals VALUES (8948, 2499, 'Issue', 38, NULL, '2020-10-26 16:55:25+07', false);
INSERT INTO public.journals VALUES (8949, 2512, 'Issue', 38, NULL, '2020-10-26 16:55:30+07', false);
INSERT INTO public.journals VALUES (8950, 2451, 'Issue', 5, NULL, '2020-10-26 17:22:19+07', false);
INSERT INTO public.journals VALUES (8951, 2583, 'Issue', 41, '', '2020-10-27 08:42:09+07', false);
INSERT INTO public.journals VALUES (8952, 2542, 'Issue', 12, NULL, '2020-10-27 09:07:01+07', false);
INSERT INTO public.journals VALUES (8953, 2542, 'Issue', 12, NULL, '2020-10-27 09:07:12+07', false);
INSERT INTO public.journals VALUES (8954, 2538, 'Issue', 12, 'Chưa có api', '2020-10-27 09:08:56+07', false);
INSERT INTO public.journals VALUES (8955, 2539, 'Issue', 12, 'Chưa có api', '2020-10-27 09:08:56+07', false);
INSERT INTO public.journals VALUES (8956, 2540, 'Issue', 12, 'Chưa có api', '2020-10-27 09:08:56+07', false);
INSERT INTO public.journals VALUES (8957, 2541, 'Issue', 12, 'Chưa có api', '2020-10-27 09:08:56+07', false);
INSERT INTO public.journals VALUES (8958, 2542, 'Issue', 12, '', '2020-10-27 09:09:20+07', false);
INSERT INTO public.journals VALUES (8961, 2586, 'Issue', 10, '', '2020-10-27 11:08:00+07', false);
INSERT INTO public.journals VALUES (8962, 2480, 'Issue', 5, '', '2020-10-27 11:20:32+07', false);
INSERT INTO public.journals VALUES (8963, 2580, 'Issue', 5, NULL, '2020-10-27 11:22:13+07', false);
INSERT INTO public.journals VALUES (8964, 2581, 'Issue', 5, NULL, '2020-10-27 11:22:13+07', false);
INSERT INTO public.journals VALUES (8965, 2582, 'Issue', 5, NULL, '2020-10-27 11:22:13+07', false);
INSERT INTO public.journals VALUES (8966, 2455, 'Issue', 5, '', '2020-10-27 11:37:19+07', false);
INSERT INTO public.journals VALUES (8967, 2424, 'Issue', 5, NULL, '2020-10-27 11:38:09+07', false);
INSERT INTO public.journals VALUES (8968, 2437, 'Issue', 5, NULL, '2020-10-27 11:38:09+07', false);
INSERT INTO public.journals VALUES (8969, 2438, 'Issue', 5, NULL, '2020-10-27 11:38:10+07', false);
INSERT INTO public.journals VALUES (8970, 2499, 'Issue', 5, NULL, '2020-10-27 11:38:10+07', false);
INSERT INTO public.journals VALUES (8971, 2501, 'Issue', 5, NULL, '2020-10-27 11:38:10+07', false);
INSERT INTO public.journals VALUES (8972, 2512, 'Issue', 5, NULL, '2020-10-27 11:38:10+07', false);
INSERT INTO public.journals VALUES (8973, 2515, 'Issue', 5, NULL, '2020-10-27 11:38:10+07', false);
INSERT INTO public.journals VALUES (8974, 2518, 'Issue', 5, NULL, '2020-10-27 11:38:10+07', false);
INSERT INTO public.journals VALUES (8975, 2522, 'Issue', 5, NULL, '2020-10-27 11:38:10+07', false);
INSERT INTO public.journals VALUES (8976, 2525, 'Issue', 5, NULL, '2020-10-27 11:38:11+07', false);
INSERT INTO public.journals VALUES (8977, 2532, 'Issue', 5, NULL, '2020-10-27 11:38:11+07', false);
INSERT INTO public.journals VALUES (8978, 2575, 'Issue', 5, NULL, '2020-10-27 11:38:11+07', false);
INSERT INTO public.journals VALUES (8979, 2576, 'Issue', 5, NULL, '2020-10-27 11:38:11+07', false);
INSERT INTO public.journals VALUES (8980, 2578, 'Issue', 5, NULL, '2020-10-27 11:38:11+07', false);
INSERT INTO public.journals VALUES (8981, 2579, 'Issue', 5, NULL, '2020-10-27 11:38:11+07', false);
INSERT INTO public.journals VALUES (8982, 2583, 'Issue', 5, NULL, '2020-10-27 11:38:11+07', false);
INSERT INTO public.journals VALUES (8983, 2534, 'Issue', 10, NULL, '2020-10-27 06:29:01+07', false);
INSERT INTO public.journals VALUES (8984, 2534, 'Issue', 10, NULL, '2020-10-27 06:29:17+07', false);
INSERT INTO public.journals VALUES (8985, 2586, 'Issue', 10, NULL, '2020-10-27 06:51:48+07', false);
INSERT INTO public.journals VALUES (8986, 2586, 'Issue', 10, NULL, '2020-10-27 06:51:52+07', false);
INSERT INTO public.journals VALUES (8987, 2587, 'Issue', 37, NULL, '2020-10-27 08:21:15+07', false);
INSERT INTO public.journals VALUES (8988, 2587, 'Issue', 37, NULL, '2020-10-27 08:21:20+07', false);
INSERT INTO public.journals VALUES (8989, 2590, 'Issue', 39, '', '2020-10-29 10:03:48+07', false);
INSERT INTO public.journals VALUES (8990, 2591, 'Issue', 39, '', '2020-10-29 10:54:35+07', false);
INSERT INTO public.journals VALUES (8991, 2580, 'Issue', 40, NULL, '2020-10-29 10:59:06+07', false);
INSERT INTO public.journals VALUES (8992, 2581, 'Issue', 40, NULL, '2020-10-29 10:59:13+07', false);
INSERT INTO public.journals VALUES (8993, 2582, 'Issue', 40, NULL, '2020-10-29 10:59:18+07', false);
INSERT INTO public.journals VALUES (8994, 2589, 'Issue', 39, '', '2020-10-29 11:09:33+07', false);
INSERT INTO public.journals VALUES (8995, 2543, 'Issue', 12, NULL, '2020-10-29 13:24:05+07', false);
INSERT INTO public.journals VALUES (8996, 2543, 'Issue', 12, NULL, '2020-10-29 13:24:18+07', false);
INSERT INTO public.journals VALUES (8997, 2544, 'Issue', 12, NULL, '2020-10-29 13:24:27+07', false);
INSERT INTO public.journals VALUES (8998, 2544, 'Issue', 12, NULL, '2020-10-29 13:24:37+07', false);
INSERT INTO public.journals VALUES (8999, 2584, 'Issue', 12, NULL, '2020-10-29 13:24:54+07', false);
INSERT INTO public.journals VALUES (9000, 2584, 'Issue', 12, NULL, '2020-10-29 13:25:03+07', false);
INSERT INTO public.journals VALUES (9001, 2594, 'Issue', 39, '', '2020-10-29 13:35:19+07', false);
INSERT INTO public.journals VALUES (9002, 2523, 'Issue', 37, NULL, '2020-10-29 15:28:29+07', false);
INSERT INTO public.journals VALUES (9003, 2523, 'Issue', 37, NULL, '2020-10-29 15:30:00+07', false);
INSERT INTO public.journals VALUES (9004, 2436, 'Issue', 37, NULL, '2020-10-29 16:41:40+07', false);
INSERT INTO public.journals VALUES (9005, 2436, 'Issue', 37, NULL, '2020-10-29 16:41:49+07', false);
INSERT INTO public.journals VALUES (9006, 2503, 'Issue', 10, NULL, '2020-10-29 17:04:52+07', false);
INSERT INTO public.journals VALUES (9007, 2503, 'Issue', 10, NULL, '2020-10-29 17:04:58+07', false);
INSERT INTO public.journals VALUES (9008, 2590, 'Issue', 38, '', '2020-10-30 08:00:52+07', false);
INSERT INTO public.journals VALUES (9009, 2599, 'Issue', 5, NULL, '2020-10-30 08:11:16+07', false);
INSERT INTO public.journals VALUES (9010, 2436, 'Issue', 5, NULL, '2020-10-30 08:37:47+07', false);
INSERT INTO public.journals VALUES (9011, 2503, 'Issue', 5, NULL, '2020-10-30 08:37:47+07', false);
INSERT INTO public.journals VALUES (9012, 2523, 'Issue', 5, NULL, '2020-10-30 08:37:48+07', false);
INSERT INTO public.journals VALUES (9013, 2534, 'Issue', 5, NULL, '2020-10-30 08:37:48+07', false);
INSERT INTO public.journals VALUES (9014, 2586, 'Issue', 5, NULL, '2020-10-30 08:37:48+07', false);
INSERT INTO public.journals VALUES (9015, 2587, 'Issue', 5, NULL, '2020-10-30 08:37:48+07', false);
INSERT INTO public.journals VALUES (9016, 2594, 'Issue', 5, NULL, '2020-10-30 08:37:48+07', false);
INSERT INTO public.journals VALUES (9017, 2590, 'Issue', 5, NULL, '2020-10-30 08:38:01+07', false);
INSERT INTO public.journals VALUES (9018, 2591, 'Issue', 5, NULL, '2020-10-30 08:38:02+07', false);
INSERT INTO public.journals VALUES (9019, 2585, 'Issue', 5, '', '2020-10-30 08:40:03+07', false);
INSERT INTO public.journals VALUES (9020, 2577, 'Issue', 5, '', '2020-10-30 08:40:44+07', false);
INSERT INTO public.journals VALUES (9021, 2592, 'Issue', 5, '', '2020-10-30 08:41:14+07', false);
INSERT INTO public.journals VALUES (9022, 2516, 'Issue', 5, '', '2020-10-30 08:41:33+07', false);
INSERT INTO public.journals VALUES (9023, 2595, 'Issue', 5, '', '2020-10-30 08:57:57+07', false);
INSERT INTO public.journals VALUES (9024, 2593, 'Issue', 5, '', '2020-10-30 08:58:33+07', false);
INSERT INTO public.journals VALUES (9025, 2589, 'Issue', 5, '', '2020-10-30 08:59:00+07', false);
INSERT INTO public.journals VALUES (9026, 2592, 'Issue', 5, '', '2020-10-30 09:00:36+07', false);
INSERT INTO public.journals VALUES (9027, 2480, 'Issue', 5, '', '2020-10-30 09:00:55+07', false);
INSERT INTO public.journals VALUES (9029, 2454, 'Issue', 5, '', '2020-10-30 09:06:02+07', false);
INSERT INTO public.journals VALUES (9030, 2601, 'Issue', 39, '', '2020-10-30 10:23:10+07', false);
INSERT INTO public.journals VALUES (9031, 2595, 'Issue', 41, '', '2020-10-30 10:49:30+07', false);
INSERT INTO public.journals VALUES (9032, 2355, 'Issue', 13, '', '2020-10-30 14:13:36+07', false);
INSERT INTO public.journals VALUES (9033, 2358, 'Issue', 13, '', '2020-10-30 14:13:36+07', false);
INSERT INTO public.journals VALUES (9034, 2606, 'Issue', 10, NULL, '2020-10-30 15:19:32+07', false);
INSERT INTO public.journals VALUES (9035, 2606, 'Issue', 10, NULL, '2020-10-30 15:19:39+07', false);
INSERT INTO public.journals VALUES (9036, 2608, 'Issue', 10, '', '2020-10-30 16:07:07+07', false);
INSERT INTO public.journals VALUES (9037, 2608, 'Issue', 10, '', '2020-10-30 16:15:40+07', false);
INSERT INTO public.journals VALUES (9038, 2607, 'Issue', 41, '', '2020-10-30 16:26:07+07', false);
INSERT INTO public.journals VALUES (9039, 2609, 'Issue', 41, '', '2020-10-30 16:26:43+07', false);
INSERT INTO public.journals VALUES (9040, 2603, 'Issue', 39, '', '2020-10-30 16:30:54+07', false);
INSERT INTO public.journals VALUES (9041, 2604, 'Issue', 39, '', '2020-10-30 16:31:01+07', false);
INSERT INTO public.journals VALUES (9042, 2605, 'Issue', 39, '', '2020-10-30 16:31:09+07', false);
INSERT INTO public.journals VALUES (9043, 2603, 'Issue', 39, '', '2020-10-30 16:31:27+07', false);
INSERT INTO public.journals VALUES (9044, 2602, 'Issue', 39, '', '2020-10-30 16:31:53+07', false);
INSERT INTO public.journals VALUES (9045, 2601, 'Issue', 39, '', '2020-10-30 16:59:46+07', false);
INSERT INTO public.journals VALUES (9046, 2602, 'Issue', 39, '', '2020-10-30 16:59:56+07', false);
INSERT INTO public.journals VALUES (9047, 2610, 'Issue', 41, '', '2020-10-31 08:54:37+07', false);
INSERT INTO public.journals VALUES (9048, 2611, 'Issue', 41, '', '2020-10-31 08:54:53+07', false);
INSERT INTO public.journals VALUES (9049, 2608, 'Issue', 10, NULL, '2020-10-31 09:55:52+07', false);
INSERT INTO public.journals VALUES (9050, 2608, 'Issue', 10, NULL, '2020-10-31 09:55:59+07', false);
INSERT INTO public.journals VALUES (9051, 2454, 'Issue', 37, NULL, '2020-10-31 10:07:46+07', false);
INSERT INTO public.journals VALUES (9052, 2454, 'Issue', 37, NULL, '2020-10-31 10:07:54+07', false);
INSERT INTO public.journals VALUES (9053, 2612, 'Issue', 41, '', '2020-10-31 10:16:09+07', false);
INSERT INTO public.journals VALUES (9054, 2614, 'Issue', 10, NULL, '2020-10-31 10:22:48+07', false);
INSERT INTO public.journals VALUES (9055, 2614, 'Issue', 10, NULL, '2020-10-31 10:23:21+07', false);
INSERT INTO public.journals VALUES (9056, 2619, 'Issue', 40, '', '2020-10-31 10:28:44+07', false);
INSERT INTO public.journals VALUES (9057, 2613, 'Issue', 39, '', '2020-10-31 13:37:46+07', false);
INSERT INTO public.journals VALUES (9058, 2615, 'Issue', 41, '', '2020-10-31 16:05:54+07', false);
INSERT INTO public.journals VALUES (9059, 2596, 'Issue', 37, NULL, '2020-10-31 16:23:01+07', false);
INSERT INTO public.journals VALUES (9060, 2596, 'Issue', 37, NULL, '2020-10-31 16:23:13+07', false);
INSERT INTO public.journals VALUES (9061, 2480, 'Issue', 8, '', '2020-10-31 16:34:12+07', false);
INSERT INTO public.journals VALUES (9062, 2592, 'Issue', 8, '', '2020-10-31 16:34:12+07', false);
INSERT INTO public.journals VALUES (9063, 2600, 'Issue', 8, '', '2020-10-31 16:34:12+07', false);
INSERT INTO public.journals VALUES (9064, 2602, 'Issue', 39, '', '2020-10-31 16:34:57+07', false);
INSERT INTO public.journals VALUES (9065, 2601, 'Issue', 39, '', '2020-10-31 16:35:17+07', false);
INSERT INTO public.journals VALUES (9066, 2615, 'Issue', 41, '', '2020-10-31 16:36:18+07', false);
INSERT INTO public.journals VALUES (9067, 2616, 'Issue', 10, '', '2020-10-31 16:41:31+07', false);
INSERT INTO public.journals VALUES (9068, 2617, 'Issue', 10, '', '2020-10-31 16:41:31+07', false);
INSERT INTO public.journals VALUES (9069, 2618, 'Issue', 10, '', '2020-10-31 16:41:31+07', false);
INSERT INTO public.journals VALUES (9070, 2619, 'Issue', 10, '', '2020-10-31 16:41:31+07', false);
INSERT INTO public.journals VALUES (9071, 2620, 'Issue', 10, '', '2020-10-31 16:41:31+07', false);
INSERT INTO public.journals VALUES (9072, 2621, 'Issue', 10, '', '2020-10-31 16:41:31+07', false);
INSERT INTO public.journals VALUES (9073, 2558, 'Issue', 5, '', '2020-10-31 19:35:11+07', false);
INSERT INTO public.journals VALUES (9074, 2454, 'Issue', 5, NULL, '2020-11-02 08:18:31+07', false);
INSERT INTO public.journals VALUES (9075, 2516, 'Issue', 5, NULL, '2020-11-02 08:18:31+07', false);
INSERT INTO public.journals VALUES (9076, 2577, 'Issue', 5, NULL, '2020-11-02 08:18:31+07', false);
INSERT INTO public.journals VALUES (9077, 2585, 'Issue', 5, NULL, '2020-11-02 08:18:31+07', false);
INSERT INTO public.journals VALUES (9078, 2589, 'Issue', 5, NULL, '2020-11-02 08:18:31+07', false);
INSERT INTO public.journals VALUES (9079, 2593, 'Issue', 5, NULL, '2020-11-02 08:18:31+07', false);
INSERT INTO public.journals VALUES (9080, 2595, 'Issue', 5, NULL, '2020-11-02 08:18:31+07', false);
INSERT INTO public.journals VALUES (9081, 2596, 'Issue', 5, NULL, '2020-11-02 08:18:32+07', false);
INSERT INTO public.journals VALUES (9082, 2603, 'Issue', 5, NULL, '2020-11-02 08:18:32+07', false);
INSERT INTO public.journals VALUES (9083, 2604, 'Issue', 5, NULL, '2020-11-02 08:18:32+07', false);
INSERT INTO public.journals VALUES (9084, 2605, 'Issue', 5, NULL, '2020-11-02 08:18:32+07', false);
INSERT INTO public.journals VALUES (9085, 2606, 'Issue', 5, NULL, '2020-11-02 08:18:32+07', false);
INSERT INTO public.journals VALUES (9086, 2607, 'Issue', 5, NULL, '2020-11-02 08:18:32+07', false);
INSERT INTO public.journals VALUES (9087, 2608, 'Issue', 5, NULL, '2020-11-02 08:18:32+07', false);
INSERT INTO public.journals VALUES (9088, 2609, 'Issue', 5, NULL, '2020-11-02 08:18:32+07', false);
INSERT INTO public.journals VALUES (9089, 2610, 'Issue', 5, NULL, '2020-11-02 08:18:32+07', false);
INSERT INTO public.journals VALUES (9090, 2611, 'Issue', 5, NULL, '2020-11-02 08:18:32+07', false);
INSERT INTO public.journals VALUES (9091, 2612, 'Issue', 5, NULL, '2020-11-02 08:18:33+07', false);
INSERT INTO public.journals VALUES (9092, 2613, 'Issue', 5, NULL, '2020-11-02 08:18:33+07', false);
INSERT INTO public.journals VALUES (9093, 2614, 'Issue', 5, NULL, '2020-11-02 08:18:33+07', false);
INSERT INTO public.journals VALUES (9094, 2588, 'Issue', 19, '', '2020-11-02 08:23:56+07', false);
INSERT INTO public.journals VALUES (9095, 2622, 'Issue', 19, '', '2020-11-02 08:29:05+07', false);
INSERT INTO public.journals VALUES (9096, 2624, 'Issue', 19, '', '2020-11-02 08:30:22+07', false);
INSERT INTO public.journals VALUES (9097, 2621, 'Issue', 10, NULL, '2020-11-02 08:57:35+07', false);
INSERT INTO public.journals VALUES (9098, 2621, 'Issue', 10, NULL, '2020-11-02 08:57:57+07', false);
INSERT INTO public.journals VALUES (9099, 2602, 'Issue', 39, '', '2020-11-02 09:32:52+07', false);
INSERT INTO public.journals VALUES (9100, 2624, 'Issue', 19, '', '2020-11-02 09:56:28+07', false);
INSERT INTO public.journals VALUES (9101, 2480, 'Issue', 5, '', '2020-11-02 10:05:00+07', false);
INSERT INTO public.journals VALUES (9102, 2592, 'Issue', 5, '', '2020-11-02 10:05:01+07', false);
INSERT INTO public.journals VALUES (9103, 2597, 'Issue', 5, '', '2020-11-02 10:20:13+07', false);
INSERT INTO public.journals VALUES (9104, 2598, 'Issue', 5, '', '2020-11-02 10:20:13+07', false);
INSERT INTO public.journals VALUES (9105, 2599, 'Issue', 5, '', '2020-11-02 10:20:13+07', false);
INSERT INTO public.journals VALUES (9106, 2597, 'Issue', 5, NULL, '2020-11-02 10:20:28+07', false);
INSERT INTO public.journals VALUES (9107, 2598, 'Issue', 5, NULL, '2020-11-02 10:20:28+07', false);
INSERT INTO public.journals VALUES (9108, 2599, 'Issue', 5, NULL, '2020-11-02 10:20:28+07', false);
INSERT INTO public.journals VALUES (9109, 2597, 'Issue', 37, '', '2020-11-02 10:39:14+07', false);
INSERT INTO public.journals VALUES (9110, 2598, 'Issue', 37, '', '2020-11-02 10:39:14+07', false);
INSERT INTO public.journals VALUES (9111, 2599, 'Issue', 37, '', '2020-11-02 10:39:14+07', false);
INSERT INTO public.journals VALUES (9112, 2602, 'Issue', 39, '', '2020-11-02 10:49:50+07', false);
INSERT INTO public.journals VALUES (9113, 2616, 'Issue', 10, NULL, '2020-11-02 11:08:20+07', false);
INSERT INTO public.journals VALUES (9114, 2616, 'Issue', 10, NULL, '2020-11-02 11:08:24+07', false);
INSERT INTO public.journals VALUES (9115, 2588, 'Issue', 19, '', '2020-11-02 11:13:25+07', false);
INSERT INTO public.journals VALUES (9116, 2618, 'Issue', 10, NULL, '2020-11-02 11:23:16+07', false);
INSERT INTO public.journals VALUES (9117, 2618, 'Issue', 10, NULL, '2020-11-02 11:23:22+07', false);
INSERT INTO public.journals VALUES (9118, 2629, 'Issue', 5, '', '2020-11-02 11:30:03+07', false);
INSERT INTO public.journals VALUES (9119, 2630, 'Issue', 5, '', '2020-11-02 11:30:16+07', false);
INSERT INTO public.journals VALUES (9120, 2617, 'Issue', 10, NULL, '2020-11-02 11:41:12+07', false);
INSERT INTO public.journals VALUES (9121, 2617, 'Issue', 10, NULL, '2020-11-02 11:41:17+07', false);
INSERT INTO public.journals VALUES (9122, 2615, 'Issue', 41, '', '2020-11-02 13:53:30+07', false);
INSERT INTO public.journals VALUES (9123, 2633, 'Issue', 39, '', '2020-11-02 15:50:50+07', false);
INSERT INTO public.journals VALUES (9124, 2367, 'Issue', 13, NULL, '2020-11-03 08:16:44+07', false);
INSERT INTO public.journals VALUES (9126, 2627, 'Issue', 5, '', '2020-11-03 08:35:05+07', false);
INSERT INTO public.journals VALUES (9127, 2631, 'Issue', 5, '', '2020-11-03 08:35:19+07', false);
INSERT INTO public.journals VALUES (9128, 2632, 'Issue', 5, '', '2020-11-03 08:35:19+07', false);
INSERT INTO public.journals VALUES (9129, 2626, 'Issue', 5, '', '2020-11-03 08:35:51+07', false);
INSERT INTO public.journals VALUES (9130, 2629, 'Issue', 5, '', '2020-11-03 08:36:43+07', false);
INSERT INTO public.journals VALUES (9131, 2628, 'Issue', 5, '', '2020-11-03 08:37:44+07', false);
INSERT INTO public.journals VALUES (9132, 2599, 'Issue', 5, '', '2020-11-03 08:38:03+07', false);
INSERT INTO public.journals VALUES (9133, 2636, 'Issue', 5, '', '2020-11-03 08:38:18+07', false);
INSERT INTO public.journals VALUES (9134, 2619, 'Issue', 10, NULL, '2020-11-03 08:43:12+07', false);
INSERT INTO public.journals VALUES (9135, 2619, 'Issue', 10, NULL, '2020-11-03 08:43:22+07', false);
INSERT INTO public.journals VALUES (9136, 2620, 'Issue', 10, NULL, '2020-11-03 11:02:14+07', false);
INSERT INTO public.journals VALUES (9137, 2620, 'Issue', 10, NULL, '2020-11-03 11:02:22+07', false);
INSERT INTO public.journals VALUES (9138, 2644, 'Issue', 40, '', '2020-11-03 14:10:43+07', false);
INSERT INTO public.journals VALUES (9139, 2645, 'Issue', 40, '', '2020-11-03 14:37:56+07', false);
INSERT INTO public.journals VALUES (9140, 2645, 'Issue', 40, '', '2020-11-03 14:39:56+07', false);
INSERT INTO public.journals VALUES (9141, 2644, 'Issue', 40, '', '2020-11-03 14:41:13+07', false);
INSERT INTO public.journals VALUES (9142, 2644, 'Issue', 10, NULL, '2020-11-03 15:22:13+07', false);
INSERT INTO public.journals VALUES (9143, 2644, 'Issue', 10, NULL, '2020-11-03 15:22:23+07', false);
INSERT INTO public.journals VALUES (9144, 2646, 'Issue', 10, NULL, '2020-11-03 15:34:28+07', false);
INSERT INTO public.journals VALUES (9145, 2646, 'Issue', 10, NULL, '2020-11-03 15:34:34+07', false);
INSERT INTO public.journals VALUES (9146, 2647, 'Issue', 10, NULL, '2020-11-03 15:34:44+07', false);
INSERT INTO public.journals VALUES (9147, 2647, 'Issue', 10, NULL, '2020-11-03 15:34:52+07', false);
INSERT INTO public.journals VALUES (9148, 2627, 'Issue', 5, '', '2020-11-03 15:57:05+07', false);
INSERT INTO public.journals VALUES (9149, 2651, 'Issue', 5, '', '2020-11-03 15:58:13+07', false);
INSERT INTO public.journals VALUES (9150, 2654, 'Issue', 5, '', '2020-11-03 15:58:52+07', false);
INSERT INTO public.journals VALUES (9151, 2645, 'Issue', 10, NULL, '2020-11-03 16:47:56+07', false);
INSERT INTO public.journals VALUES (9152, 2645, 'Issue', 10, NULL, '2020-11-03 16:48:03+07', false);
INSERT INTO public.journals VALUES (9153, 2626, 'Issue', 39, '', '2020-11-03 17:14:37+07', false);
INSERT INTO public.journals VALUES (9154, 2649, 'Issue', 10, NULL, '2020-11-04 10:01:13+07', false);
INSERT INTO public.journals VALUES (9155, 2649, 'Issue', 10, NULL, '2020-11-04 10:01:19+07', false);
INSERT INTO public.journals VALUES (9156, 2658, 'Issue', 40, '', '2020-11-04 10:48:22+07', false);
INSERT INTO public.journals VALUES (9157, 2657, 'Issue', 10, NULL, '2020-11-04 11:06:44+07', false);
INSERT INTO public.journals VALUES (9158, 2657, 'Issue', 10, NULL, '2020-11-04 11:06:51+07', false);
INSERT INTO public.journals VALUES (9159, 2661, 'Issue', 40, '', '2020-11-04 13:42:48+07', false);
INSERT INTO public.journals VALUES (9160, 2628, 'Issue', 37, NULL, '2020-11-04 14:18:56+07', false);
INSERT INTO public.journals VALUES (9161, 2628, 'Issue', 37, NULL, '2020-11-04 14:19:16+07', false);
INSERT INTO public.journals VALUES (9162, 2651, 'Issue', 41, '', '2020-11-04 14:57:43+07', false);
INSERT INTO public.journals VALUES (9163, 2650, 'Issue', 41, '', '2020-11-04 14:58:22+07', false);
INSERT INTO public.journals VALUES (9164, 2625, 'Issue', 37, '', '2020-11-04 15:05:31+07', false);
INSERT INTO public.journals VALUES (9165, 2661, 'Issue', 10, NULL, '2020-11-04 15:11:56+07', false);
INSERT INTO public.journals VALUES (9166, 2658, 'Issue', 10, NULL, '2020-11-04 15:23:33+07', false);
INSERT INTO public.journals VALUES (9167, 2658, 'Issue', 10, NULL, '2020-11-04 15:23:38+07', false);
INSERT INTO public.journals VALUES (9168, 2660, 'Issue', 5, '', '2020-11-04 15:30:07+07', false);
INSERT INTO public.journals VALUES (9169, 2662, 'Issue', 37, '', '2020-11-04 15:47:24+07', false);
INSERT INTO public.journals VALUES (9170, 2664, 'Issue', 40, '', '2020-11-04 16:09:03+07', false);
INSERT INTO public.journals VALUES (9171, 2665, 'Issue', 40, '', '2020-11-04 16:09:19+07', false);
INSERT INTO public.journals VALUES (9173, 2634, 'Issue', 5, '', '2020-11-05 11:09:24+07', false);
INSERT INTO public.journals VALUES (9176, 2599, 'Issue', 5, NULL, '2020-11-05 11:12:11+07', false);
INSERT INTO public.journals VALUES (9177, 2630, 'Issue', 5, NULL, '2020-11-05 11:12:12+07', false);
INSERT INTO public.journals VALUES (9178, 2636, 'Issue', 5, '', '2020-11-05 11:12:37+07', false);
INSERT INTO public.journals VALUES (9179, 2480, 'Issue', 5, NULL, '2020-11-05 11:13:19+07', false);
INSERT INTO public.journals VALUES (9180, 2592, 'Issue', 5, NULL, '2020-11-05 11:13:19+07', false);
INSERT INTO public.journals VALUES (9181, 2602, 'Issue', 5, NULL, '2020-11-05 11:13:19+07', false);
INSERT INTO public.journals VALUES (9182, 2615, 'Issue', 5, NULL, '2020-11-05 11:13:20+07', false);
INSERT INTO public.journals VALUES (9183, 2616, 'Issue', 5, NULL, '2020-11-05 11:13:20+07', false);
INSERT INTO public.journals VALUES (9184, 2617, 'Issue', 5, NULL, '2020-11-05 11:13:20+07', false);
INSERT INTO public.journals VALUES (9185, 2618, 'Issue', 5, NULL, '2020-11-05 11:13:20+07', false);
INSERT INTO public.journals VALUES (9186, 2619, 'Issue', 5, NULL, '2020-11-05 11:13:20+07', false);
INSERT INTO public.journals VALUES (9187, 2620, 'Issue', 5, NULL, '2020-11-05 11:13:20+07', false);
INSERT INTO public.journals VALUES (9188, 2621, 'Issue', 5, NULL, '2020-11-05 11:13:20+07', false);
INSERT INTO public.journals VALUES (9189, 2625, 'Issue', 5, NULL, '2020-11-05 11:13:20+07', false);
INSERT INTO public.journals VALUES (9190, 2633, 'Issue', 5, NULL, '2020-11-05 11:13:20+07', false);
INSERT INTO public.journals VALUES (9191, 2634, 'Issue', 5, NULL, '2020-11-05 11:13:20+07', false);
INSERT INTO public.journals VALUES (9192, 2644, 'Issue', 5, NULL, '2020-11-05 11:13:20+07', false);
INSERT INTO public.journals VALUES (9193, 2645, 'Issue', 5, NULL, '2020-11-05 11:13:20+07', false);
INSERT INTO public.journals VALUES (9194, 2646, 'Issue', 5, NULL, '2020-11-05 11:13:21+07', false);
INSERT INTO public.journals VALUES (9195, 2647, 'Issue', 5, NULL, '2020-11-05 11:13:21+07', false);
INSERT INTO public.journals VALUES (9196, 2649, 'Issue', 5, NULL, '2020-11-05 11:13:21+07', false);
INSERT INTO public.journals VALUES (9197, 2650, 'Issue', 5, NULL, '2020-11-05 11:13:21+07', false);
INSERT INTO public.journals VALUES (9198, 2651, 'Issue', 5, NULL, '2020-11-05 11:13:21+07', false);
INSERT INTO public.journals VALUES (9199, 2657, 'Issue', 5, NULL, '2020-11-05 11:13:21+07', false);
INSERT INTO public.journals VALUES (9200, 2658, 'Issue', 5, NULL, '2020-11-05 11:13:21+07', false);
INSERT INTO public.journals VALUES (9201, 2662, 'Issue', 5, NULL, '2020-11-05 11:13:21+07', false);
INSERT INTO public.journals VALUES (9202, 2344, 'Issue', 32, NULL, '2020-11-05 13:13:38+07', false);
INSERT INTO public.journals VALUES (9203, 2673, 'Issue', 40, '', '2020-11-05 13:14:31+07', false);
INSERT INTO public.journals VALUES (9204, 2601, 'Issue', 5, '', '2020-11-05 14:31:25+07', false);
INSERT INTO public.journals VALUES (9205, 2601, 'Issue', 37, '', '2020-11-05 14:32:42+07', false);
INSERT INTO public.journals VALUES (9206, 2600, 'Issue', 8, NULL, '2020-11-05 14:46:52+07', false);
INSERT INTO public.journals VALUES (9207, 2652, 'Issue', 8, NULL, '2020-11-05 14:46:52+07', false);
INSERT INTO public.journals VALUES (9208, 2600, 'Issue', 8, NULL, '2020-11-05 14:47:00+07', false);
INSERT INTO public.journals VALUES (9209, 2652, 'Issue', 8, NULL, '2020-11-05 14:47:00+07', false);
INSERT INTO public.journals VALUES (9210, 2641, 'Issue', 13, '', '2020-11-05 14:55:30+07', false);
INSERT INTO public.journals VALUES (9211, 2642, 'Issue', 13, '', '2020-11-05 14:55:30+07', false);
INSERT INTO public.journals VALUES (9212, 2643, 'Issue', 13, '', '2020-11-05 14:55:30+07', false);
INSERT INTO public.journals VALUES (9213, 2629, 'Issue', 5, '', '2020-11-05 15:32:40+07', false);
INSERT INTO public.journals VALUES (9214, 2659, 'Issue', 5, '', '2020-11-05 15:32:55+07', false);
INSERT INTO public.journals VALUES (9215, 2631, 'Issue', 5, '', '2020-11-05 15:35:48+07', false);
INSERT INTO public.journals VALUES (9216, 2632, 'Issue', 5, '', '2020-11-05 15:35:48+07', false);
INSERT INTO public.journals VALUES (9217, 2653, 'Issue', 5, '', '2020-11-05 15:35:48+07', false);
INSERT INTO public.journals VALUES (9218, 2673, 'Issue', 5, '', '2020-11-05 15:39:43+07', false);
INSERT INTO public.journals VALUES (9219, 2654, 'Issue', 41, '', '2020-11-05 15:54:46+07', false);
INSERT INTO public.journals VALUES (9220, 2681, 'Issue', 10, '', '2020-11-06 10:17:53+07', false);
INSERT INTO public.journals VALUES (9221, 2681, 'Issue', 10, NULL, '2020-11-06 10:18:14+07', false);
INSERT INTO public.journals VALUES (9222, 2681, 'Issue', 10, NULL, '2020-11-06 10:18:22+07', false);
INSERT INTO public.journals VALUES (9223, 2626, 'Issue', 39, '', '2020-11-06 11:00:48+07', false);
INSERT INTO public.journals VALUES (9224, 2659, 'Issue', 39, '', '2020-11-06 11:08:47+07', false);
INSERT INTO public.journals VALUES (9225, 2673, 'Issue', 39, '', '2020-11-06 11:10:14+07', false);
INSERT INTO public.journals VALUES (9227, 2640, 'Issue', 41, '', '2020-11-06 11:17:17+07', false);
INSERT INTO public.journals VALUES (9228, 2663, 'Issue', 10, '', '2020-11-06 11:18:56+07', false);
INSERT INTO public.journals VALUES (9229, 2664, 'Issue', 10, '', '2020-11-06 11:18:57+07', false);
INSERT INTO public.journals VALUES (9230, 2665, 'Issue', 10, '', '2020-11-06 11:18:57+07', false);
INSERT INTO public.journals VALUES (9231, 2666, 'Issue', 10, '', '2020-11-06 11:18:57+07', false);
INSERT INTO public.journals VALUES (9232, 2682, 'Issue', 10, NULL, '2020-11-06 11:30:19+07', false);
INSERT INTO public.journals VALUES (9233, 2682, 'Issue', 10, NULL, '2020-11-06 11:30:23+07', false);
INSERT INTO public.journals VALUES (9234, 2683, 'Issue', 10, NULL, '2020-11-06 14:51:58+07', false);
INSERT INTO public.journals VALUES (9235, 2683, 'Issue', 10, NULL, '2020-11-06 14:52:06+07', false);
INSERT INTO public.journals VALUES (9236, 2684, 'Issue', 10, '', '2020-11-06 15:44:36+07', false);
INSERT INTO public.journals VALUES (9237, 2663, 'Issue', 10, '', '2020-11-06 15:45:44+07', false);
INSERT INTO public.journals VALUES (9238, 2663, 'Issue', 10, '', '2020-11-06 15:48:10+07', false);
INSERT INTO public.journals VALUES (9239, 2666, 'Issue', 10, '', '2020-11-06 15:48:30+07', false);
INSERT INTO public.journals VALUES (9240, 2666, 'Issue', 10, '', '2020-11-06 15:48:44+07', false);
INSERT INTO public.journals VALUES (9241, 2664, 'Issue', 10, '', '2020-11-06 15:50:10+07', false);
INSERT INTO public.journals VALUES (9242, 2664, 'Issue', 10, '', '2020-11-06 15:50:29+07', false);
INSERT INTO public.journals VALUES (9243, 2688, 'Issue', 10, '', '2020-11-06 15:53:40+07', false);
INSERT INTO public.journals VALUES (9244, 2665, 'Issue', 10, NULL, '2020-11-06 15:59:49+07', false);
INSERT INTO public.journals VALUES (9245, 2688, 'Issue', 10, '', '2020-11-06 16:00:06+07', false);
INSERT INTO public.journals VALUES (9246, 2656, 'Issue', 40, '', '2020-11-06 16:25:54+07', false);
INSERT INTO public.journals VALUES (9247, 2686, 'Issue', 40, '', '2020-11-06 16:26:14+07', false);
INSERT INTO public.journals VALUES (9248, 2655, 'Issue', 40, '', '2020-11-06 16:26:41+07', false);
INSERT INTO public.journals VALUES (9249, 2679, 'Issue', 39, '', '2020-11-07 08:03:22+07', false);
INSERT INTO public.journals VALUES (9250, 2627, 'Issue', 8, NULL, '2020-11-07 08:37:08+07', false);
INSERT INTO public.journals VALUES (9251, 2627, 'Issue', 8, NULL, '2020-11-07 08:37:14+07', false);
INSERT INTO public.journals VALUES (9252, 2629, 'Issue', 5, '', '2020-11-07 09:30:25+07', false);
INSERT INTO public.journals VALUES (9253, 2597, 'Issue', 5, '', '2020-11-07 10:08:54+07', false);
INSERT INTO public.journals VALUES (9254, 2598, 'Issue', 5, '', '2020-11-07 10:08:54+07', false);
INSERT INTO public.journals VALUES (9255, 2628, 'Issue', 5, '', '2020-11-07 10:08:54+07', false);
INSERT INTO public.journals VALUES (9257, 2687, 'Issue', 5, '', '2020-11-07 10:09:33+07', false);
INSERT INTO public.journals VALUES (9258, 2691, 'Issue', 8, NULL, '2020-11-07 10:12:34+07', false);
INSERT INTO public.journals VALUES (9259, 2692, 'Issue', 8, NULL, '2020-11-07 10:12:34+07', false);
INSERT INTO public.journals VALUES (9260, 2631, 'Issue', 8, NULL, '2020-11-07 10:13:59+07', false);
INSERT INTO public.journals VALUES (9261, 2632, 'Issue', 8, NULL, '2020-11-07 10:13:59+07', false);
INSERT INTO public.journals VALUES (9262, 2624, 'Issue', 38, '', '2020-11-07 11:43:56+07', false);
INSERT INTO public.journals VALUES (9263, 2696, 'Issue', 40, '', '2020-11-07 14:12:04+07', false);
INSERT INTO public.journals VALUES (9264, 2631, 'Issue', 39, '', '2020-11-07 14:35:26+07', false);
INSERT INTO public.journals VALUES (9265, 2632, 'Issue', 39, '', '2020-11-07 14:35:35+07', false);
INSERT INTO public.journals VALUES (9266, 2690, 'Issue', 39, '', '2020-11-07 14:35:50+07', false);
INSERT INTO public.journals VALUES (9267, 2679, 'Issue', 39, '', '2020-11-07 15:58:16+07', false);
INSERT INTO public.journals VALUES (9268, 2666, 'Issue', 10, NULL, '2020-11-07 16:03:27+07', false);
INSERT INTO public.journals VALUES (9269, 2666, 'Issue', 10, NULL, '2020-11-07 16:03:43+07', false);
INSERT INTO public.journals VALUES (9270, 2666, 'Issue', 10, '', '2020-11-07 16:04:26+07', false);
INSERT INTO public.journals VALUES (9271, 2684, 'Issue', 10, '', '2020-11-07 16:04:45+07', false);
INSERT INTO public.journals VALUES (9272, 2684, 'Issue', 10, '', '2020-11-07 16:04:57+07', false);
INSERT INTO public.journals VALUES (9273, 2653, 'Issue', 8, '', '2020-11-07 16:06:54+07', false);
INSERT INTO public.journals VALUES (9274, 2674, 'Issue', 8, '', '2020-11-07 16:06:54+07', false);
INSERT INTO public.journals VALUES (9275, 2653, 'Issue', 8, '', '2020-11-07 16:07:24+07', false);
INSERT INTO public.journals VALUES (9276, 2674, 'Issue', 8, '', '2020-11-07 16:07:24+07', false);
INSERT INTO public.journals VALUES (9277, 2655, 'Issue', 41, '', '2020-11-07 16:21:14+07', false);
INSERT INTO public.journals VALUES (9278, 2656, 'Issue', 41, '', '2020-11-07 16:21:46+07', false);
INSERT INTO public.journals VALUES (9280, 2680, 'Issue', 41, '', '2020-11-07 16:22:38+07', false);
INSERT INTO public.journals VALUES (9281, 2686, 'Issue', 41, '', '2020-11-07 16:22:57+07', false);
INSERT INTO public.journals VALUES (9282, 2696, 'Issue', 41, '', '2020-11-07 16:23:26+07', false);
INSERT INTO public.journals VALUES (9283, 2697, 'Issue', 41, '', '2020-11-07 16:23:49+07', false);
INSERT INTO public.journals VALUES (9285, 2686, 'Issue', 41, NULL, '2020-11-07 16:24:58+07', false);
INSERT INTO public.journals VALUES (9286, 2698, 'Issue', 12, NULL, '2020-11-07 16:26:57+07', false);
INSERT INTO public.journals VALUES (9287, 2699, 'Issue', 12, NULL, '2020-11-07 16:28:49+07', false);
INSERT INTO public.journals VALUES (9288, 2698, 'Issue', 12, NULL, '2020-11-07 16:28:56+07', false);
INSERT INTO public.journals VALUES (9289, 2699, 'Issue', 12, NULL, '2020-11-07 16:29:07+07', false);
INSERT INTO public.journals VALUES (9290, 2636, 'Issue', 37, '', '2020-11-09 08:08:09+07', false);
INSERT INTO public.journals VALUES (9291, 2345, 'Issue', 33, NULL, '2020-11-09 08:29:16+07', false);
INSERT INTO public.journals VALUES (9292, 2351, 'Issue', 33, NULL, '2020-11-09 08:29:30+07', false);
INSERT INTO public.journals VALUES (9293, 2399, 'Issue', 33, NULL, '2020-11-09 08:29:36+07', false);
INSERT INTO public.journals VALUES (9294, 2601, 'Issue', 37, '', '2020-11-09 08:34:23+07', false);
INSERT INTO public.journals VALUES (9295, 2659, 'Issue', 37, '', '2020-11-09 08:39:38+07', false);
INSERT INTO public.journals VALUES (9296, 2660, 'Issue', 37, '', '2020-11-09 08:39:56+07', false);
INSERT INTO public.journals VALUES (9297, 2597, 'Issue', 37, '', '2020-11-09 08:40:57+07', false);
INSERT INTO public.journals VALUES (9298, 2598, 'Issue', 37, '', '2020-11-09 08:40:57+07', false);
INSERT INTO public.journals VALUES (9299, 2599, 'Issue', 37, '', '2020-11-09 08:40:57+07', false);
INSERT INTO public.journals VALUES (9300, 2628, 'Issue', 37, '', '2020-11-09 08:41:10+07', false);
INSERT INTO public.journals VALUES (9301, 2694, 'Issue', 37, '', '2020-11-09 09:28:28+07', false);
INSERT INTO public.journals VALUES (9302, 2695, 'Issue', 37, '', '2020-11-09 09:28:28+07', false);
INSERT INTO public.journals VALUES (9303, 2655, 'Issue', 41, '', '2020-11-09 10:23:37+07', false);
INSERT INTO public.journals VALUES (9304, 2656, 'Issue', 41, '', '2020-11-09 10:23:57+07', false);
INSERT INTO public.journals VALUES (9305, 2711, 'Issue', 41, '', '2020-11-09 10:24:26+07', false);
INSERT INTO public.journals VALUES (9306, 2712, 'Issue', 41, '', '2020-11-09 10:24:53+07', false);
INSERT INTO public.journals VALUES (9307, 2696, 'Issue', 41, '', '2020-11-09 10:25:35+07', false);
INSERT INTO public.journals VALUES (9308, 2686, 'Issue', 41, '', '2020-11-09 13:30:24+07', false);
INSERT INTO public.journals VALUES (9311, 2680, 'Issue', 41, '', '2020-11-09 13:32:54+07', false);
INSERT INTO public.journals VALUES (9312, 2653, 'Issue', 8, NULL, '2020-11-09 15:03:03+07', false);
INSERT INTO public.journals VALUES (9313, 2653, 'Issue', 8, NULL, '2020-11-09 15:03:08+07', false);
INSERT INTO public.journals VALUES (9314, 2693, 'Issue', 5, '', '2020-11-09 15:08:12+07', false);
INSERT INTO public.journals VALUES (9315, 2600, 'Issue', 5, NULL, '2020-11-09 15:08:20+07', false);
INSERT INTO public.journals VALUES (9316, 2601, 'Issue', 5, NULL, '2020-11-09 15:08:20+07', false);
INSERT INTO public.journals VALUES (9317, 2626, 'Issue', 5, NULL, '2020-11-09 15:08:20+07', false);
INSERT INTO public.journals VALUES (9318, 2627, 'Issue', 5, NULL, '2020-11-09 15:08:20+07', false);
INSERT INTO public.journals VALUES (9319, 2631, 'Issue', 5, NULL, '2020-11-09 15:08:20+07', false);
INSERT INTO public.journals VALUES (9320, 2632, 'Issue', 5, NULL, '2020-11-09 15:08:21+07', false);
INSERT INTO public.journals VALUES (9321, 2640, 'Issue', 5, NULL, '2020-11-09 15:08:21+07', false);
INSERT INTO public.journals VALUES (9322, 2652, 'Issue', 5, NULL, '2020-11-09 15:08:21+07', false);
INSERT INTO public.journals VALUES (9323, 2654, 'Issue', 5, NULL, '2020-11-09 15:08:21+07', false);
INSERT INTO public.journals VALUES (9324, 2659, 'Issue', 5, NULL, '2020-11-09 15:08:21+07', false);
INSERT INTO public.journals VALUES (9325, 2660, 'Issue', 5, NULL, '2020-11-09 15:08:21+07', false);
INSERT INTO public.journals VALUES (9326, 2666, 'Issue', 5, NULL, '2020-11-09 15:08:21+07', false);
INSERT INTO public.journals VALUES (9327, 2673, 'Issue', 5, NULL, '2020-11-09 15:08:21+07', false);
INSERT INTO public.journals VALUES (9328, 2681, 'Issue', 5, NULL, '2020-11-09 15:08:21+07', false);
INSERT INTO public.journals VALUES (9329, 2682, 'Issue', 5, NULL, '2020-11-09 15:08:21+07', false);
INSERT INTO public.journals VALUES (9330, 2683, 'Issue', 5, NULL, '2020-11-09 15:08:22+07', false);
INSERT INTO public.journals VALUES (9331, 2687, 'Issue', 5, NULL, '2020-11-09 15:08:22+07', false);
INSERT INTO public.journals VALUES (9332, 2690, 'Issue', 5, NULL, '2020-11-09 15:08:22+07', false);
INSERT INTO public.journals VALUES (9333, 2691, 'Issue', 5, NULL, '2020-11-09 15:08:22+07', false);
INSERT INTO public.journals VALUES (9334, 2692, 'Issue', 5, NULL, '2020-11-09 15:08:22+07', false);
INSERT INTO public.journals VALUES (9335, 2694, 'Issue', 5, NULL, '2020-11-09 15:08:22+07', false);
INSERT INTO public.journals VALUES (9336, 2695, 'Issue', 5, NULL, '2020-11-09 15:08:22+07', false);
INSERT INTO public.journals VALUES (9337, 2684, 'Issue', 10, '', '2020-11-09 15:34:16+07', false);
INSERT INTO public.journals VALUES (9338, 2689, 'Issue', 5, '', '2020-11-09 16:54:01+07', false);
INSERT INTO public.journals VALUES (9339, 2623, 'Issue', 19, '', '2020-11-10 08:18:45+07', false);
INSERT INTO public.journals VALUES (9340, 2622, 'Issue', 19, '', '2020-11-10 08:19:00+07', false);
INSERT INTO public.journals VALUES (9341, 2671, 'Issue', 19, '', '2020-11-10 08:23:15+07', false);
INSERT INTO public.journals VALUES (9342, 2718, 'Issue', 19, '', '2020-11-10 08:24:48+07', false);
INSERT INTO public.journals VALUES (9343, 2713, 'Issue', 37, '', '2020-11-10 01:51:15+07', false);
INSERT INTO public.journals VALUES (9344, 2664, 'Issue', 10, '', '2020-11-10 10:29:51+07', false);
INSERT INTO public.journals VALUES (9345, 2720, 'Issue', 39, '', '2020-11-10 13:54:32+07', false);
INSERT INTO public.journals VALUES (9346, 2721, 'Issue', 23, '', '2020-11-10 13:54:35+07', false);
INSERT INTO public.journals VALUES (9347, 2689, 'Issue', 39, '', '2020-11-10 13:54:57+07', false);
INSERT INTO public.journals VALUES (9348, 2679, 'Issue', 39, '', '2020-11-10 13:55:17+07', false);
INSERT INTO public.journals VALUES (9349, 2722, 'Issue', 39, '', '2020-11-10 13:55:27+07', false);
INSERT INTO public.journals VALUES (9350, 2637, 'Issue', 5, '', '2020-11-10 15:13:33+07', false);
INSERT INTO public.journals VALUES (9351, 2638, 'Issue', 5, '', '2020-11-10 15:13:33+07', false);
INSERT INTO public.journals VALUES (9352, 2639, 'Issue', 5, '', '2020-11-10 15:13:33+07', false);
INSERT INTO public.journals VALUES (9353, 2638, 'Issue', 5, '', '2020-11-10 16:19:07+07', false);
INSERT INTO public.journals VALUES (9354, 2455, 'Issue', 5, NULL, '2020-11-10 16:21:18+07', false);
INSERT INTO public.journals VALUES (9356, 2715, 'Issue', 39, '', '2020-11-10 16:50:24+07', false);
INSERT INTO public.journals VALUES (9357, 2722, 'Issue', 39, '', '2020-11-10 16:50:48+07', false);
INSERT INTO public.journals VALUES (9358, 2629, 'Issue', 39, '', '2020-11-10 16:53:05+07', false);
INSERT INTO public.journals VALUES (9359, 2630, 'Issue', 39, '', '2020-11-10 16:53:11+07', false);
INSERT INTO public.journals VALUES (9360, 2733, 'Issue', 39, '', '2020-11-10 16:55:27+07', false);
INSERT INTO public.journals VALUES (9361, 2736, 'Issue', 39, '', '2020-11-10 17:06:34+07', false);
INSERT INTO public.journals VALUES (9362, 2719, 'Issue', 37, '', '2020-11-11 09:34:46+07', false);
INSERT INTO public.journals VALUES (9363, 2674, 'Issue', 5, NULL, '2020-11-11 10:10:52+07', false);
INSERT INTO public.journals VALUES (9364, 2733, 'Issue', 39, '', '2020-11-11 11:01:09+07', false);
INSERT INTO public.journals VALUES (9365, 2674, 'Issue', 39, '', '2020-11-11 11:01:37+07', false);
INSERT INTO public.journals VALUES (9366, 2738, 'Issue', 41, '', '2020-11-11 13:50:03+07', false);
INSERT INTO public.journals VALUES (9367, 2741, 'Issue', 40, '', '2020-11-11 17:01:12+07', false);
INSERT INTO public.journals VALUES (9369, 2752, 'Issue', 23, '', '2020-11-12 08:27:39+07', false);
INSERT INTO public.journals VALUES (9370, 2729, 'Issue', 23, '', '2020-11-12 08:28:25+07', false);
INSERT INTO public.journals VALUES (9371, 2727, 'Issue', 23, '', '2020-11-12 08:29:03+07', false);
INSERT INTO public.journals VALUES (9372, 2731, 'Issue', 23, '', '2020-11-12 08:30:32+07', false);
INSERT INTO public.journals VALUES (9373, 2749, 'Issue', 40, '', '2020-11-12 08:36:46+07', false);
INSERT INTO public.journals VALUES (9374, 2756, 'Issue', 10, '', '2020-11-12 09:35:36+07', false);
INSERT INTO public.journals VALUES (9375, 2755, 'Issue', 10, '', '2020-11-12 09:35:53+07', false);
INSERT INTO public.journals VALUES (9376, 2688, 'Issue', 10, NULL, '2020-11-12 09:37:08+07', false);
INSERT INTO public.journals VALUES (9377, 2712, 'Issue', 41, '', '2020-11-12 09:42:32+07', false);
INSERT INTO public.journals VALUES (9378, 2680, 'Issue', 41, '', '2020-11-12 09:42:49+07', false);
INSERT INTO public.journals VALUES (9379, 2693, 'Issue', 41, '', '2020-11-12 09:43:23+07', false);
INSERT INTO public.journals VALUES (9380, 2697, 'Issue', 41, '', '2020-11-12 09:45:40+07', false);
INSERT INTO public.journals VALUES (9381, 2756, 'Issue', 10, NULL, '2020-11-12 10:58:36+07', false);
INSERT INTO public.journals VALUES (9382, 2756, 'Issue', 10, NULL, '2020-11-12 10:58:42+07', false);
INSERT INTO public.journals VALUES (9383, 2741, 'Issue', 5, '', '2020-11-12 14:12:42+07', false);
INSERT INTO public.journals VALUES (9384, 2713, 'Issue', 37, '', '2020-11-12 14:13:21+07', false);
INSERT INTO public.journals VALUES (9385, 2742, 'Issue', 5, '', '2020-11-12 14:26:09+07', false);
INSERT INTO public.journals VALUES (9386, 2637, 'Issue', 5, '', '2020-11-12 14:29:35+07', false);
INSERT INTO public.journals VALUES (9387, 2639, 'Issue', 5, '', '2020-11-12 14:29:35+07', false);
INSERT INTO public.journals VALUES (9388, 2740, 'Issue', 39, '', '2020-11-12 14:53:38+07', false);
INSERT INTO public.journals VALUES (9389, 2742, 'Issue', 5, NULL, '2020-11-12 14:53:59+07', false);
INSERT INTO public.journals VALUES (9390, 2762, 'Issue', 23, '', '2020-11-13 07:25:34+07', false);
INSERT INTO public.journals VALUES (9391, 2754, 'Issue', 23, '', '2020-11-13 07:27:08+07', false);
INSERT INTO public.journals VALUES (9392, 2761, 'Issue', 32, NULL, '2020-11-13 08:00:33+07', false);
INSERT INTO public.journals VALUES (9393, 2755, 'Issue', 10, NULL, '2020-11-13 08:26:17+07', false);
INSERT INTO public.journals VALUES (9394, 2755, 'Issue', 10, NULL, '2020-11-13 08:26:24+07', false);
INSERT INTO public.journals VALUES (9395, 2735, 'Issue', 39, '', '2020-11-13 09:58:14+07', false);
INSERT INTO public.journals VALUES (9396, 2766, 'Issue', 10, '', '2020-11-13 10:09:55+07', false);
INSERT INTO public.journals VALUES (9397, 2663, 'Issue', 10, NULL, '2020-11-13 16:16:53+07', false);
INSERT INTO public.journals VALUES (9398, 2663, 'Issue', 10, NULL, '2020-11-13 16:16:59+07', false);
INSERT INTO public.journals VALUES (9399, 2762, 'Issue', 23, '', '2020-11-13 16:44:28+07', false);
INSERT INTO public.journals VALUES (9400, 2768, 'Issue', 33, NULL, '2020-11-14 08:29:48+07', false);
INSERT INTO public.journals VALUES (9401, 2768, 'Issue', 33, NULL, '2020-11-14 08:29:56+07', false);
INSERT INTO public.journals VALUES (9402, 2772, 'Issue', 33, NULL, '2020-11-14 08:31:13+07', false);
INSERT INTO public.journals VALUES (9403, 2773, 'Issue', 33, NULL, '2020-11-14 08:31:19+07', false);
INSERT INTO public.journals VALUES (9404, 2776, 'Issue', 39, '', '2020-11-14 08:32:16+07', false);
INSERT INTO public.journals VALUES (9405, 2770, 'Issue', 33, NULL, '2020-11-14 08:33:57+07', false);
INSERT INTO public.journals VALUES (9406, 2771, 'Issue', 33, NULL, '2020-11-14 08:34:01+07', false);
INSERT INTO public.journals VALUES (9407, 2739, 'Issue', 19, 'odata/RP_AssginReport
odata/RP_ChiTietAssignReport', '2020-11-14 09:21:00+07', false);
INSERT INTO public.journals VALUES (9408, 2767, 'Issue', 23, '', '2020-11-14 09:26:22+07', false);
INSERT INTO public.journals VALUES (9409, 2763, 'Issue', 23, '', '2020-11-14 09:26:57+07', false);
INSERT INTO public.journals VALUES (9410, 2734, 'Issue', 5, '', '2020-11-14 09:31:20+07', false);
INSERT INTO public.journals VALUES (9411, 2735, 'Issue', 5, '', '2020-11-14 09:31:20+07', false);
INSERT INTO public.journals VALUES (9412, 2734, 'Issue', 5, NULL, '2020-11-14 09:33:17+07', false);
INSERT INTO public.journals VALUES (9413, 2735, 'Issue', 5, NULL, '2020-11-14 09:33:17+07', false);
INSERT INTO public.journals VALUES (9414, 2714, 'Issue', 5, '', '2020-11-14 09:34:41+07', false);
INSERT INTO public.journals VALUES (9415, 2716, 'Issue', 5, '', '2020-11-14 09:34:41+07', false);
INSERT INTO public.journals VALUES (9416, 2638, 'Issue', 5, NULL, '2020-11-14 09:35:53+07', false);
INSERT INTO public.journals VALUES (9417, 2782, 'Issue', 23, '', '2020-11-14 09:38:47+07', false);
INSERT INTO public.journals VALUES (9418, 2780, 'Issue', 23, '', '2020-11-14 09:39:39+07', false);
INSERT INTO public.journals VALUES (9419, 2778, 'Issue', 23, '', '2020-11-14 09:42:45+07', false);
INSERT INTO public.journals VALUES (9420, 2779, 'Issue', 23, '', '2020-11-14 09:43:46+07', false);
INSERT INTO public.journals VALUES (9421, 2667, 'Issue', 19, NULL, '2020-11-14 09:57:10+07', false);
INSERT INTO public.journals VALUES (9422, 2672, 'Issue', 19, NULL, '2020-11-14 09:57:18+07', false);
INSERT INTO public.journals VALUES (9423, 2785, 'Issue', 19, NULL, '2020-11-14 09:57:41+07', false);
INSERT INTO public.journals VALUES (9424, 2785, 'Issue', 19, '', '2020-11-14 09:58:23+07', false);
INSERT INTO public.journals VALUES (9425, 2784, 'Issue', 40, '', '2020-11-14 09:59:22+07', false);
INSERT INTO public.journals VALUES (9426, 2670, 'Issue', 19, NULL, '2020-11-14 10:00:04+07', false);
INSERT INTO public.journals VALUES (9427, 2739, 'Issue', 19, 'AssignReport', '2020-11-14 10:04:50+07', false);
INSERT INTO public.journals VALUES (9428, 2758, 'Issue', 41, '', '2020-11-14 10:09:02+07', false);
INSERT INTO public.journals VALUES (9429, 2788, 'Issue', 19, '', '2020-11-14 10:09:31+07', false);
INSERT INTO public.journals VALUES (9430, 2788, 'Issue', 19, '', '2020-11-14 10:09:51+07', false);
INSERT INTO public.journals VALUES (9431, 2783, 'Issue', 41, '', '2020-11-14 10:20:19+07', false);
INSERT INTO public.journals VALUES (9432, 2786, 'Issue', 41, '', '2020-11-14 10:20:43+07', false);
INSERT INTO public.journals VALUES (9433, 2766, 'Issue', 10, NULL, '2020-11-14 10:22:33+07', false);
INSERT INTO public.journals VALUES (9434, 2766, 'Issue', 10, NULL, '2020-11-14 10:22:39+07', false);
INSERT INTO public.journals VALUES (9435, 2761, 'Issue', 32, NULL, '2020-11-14 14:02:12+07', false);
INSERT INTO public.journals VALUES (9436, 2777, 'Issue', 33, '', '2020-11-14 16:20:11+07', false);
INSERT INTO public.journals VALUES (9437, 2764, 'Issue', 33, NULL, '2020-11-14 16:20:37+07', false);
INSERT INTO public.journals VALUES (9438, 2638, 'Issue', 37, '', '2020-11-14 16:22:26+07', false);
INSERT INTO public.journals VALUES (9440, 2629, 'Issue', 39, '', '2020-11-14 16:23:47+07', false);
INSERT INTO public.journals VALUES (9441, 2630, 'Issue', 39, '', '2020-11-14 16:24:05+07', false);
INSERT INTO public.journals VALUES (9443, 2787, 'Issue', 39, '', '2020-11-14 16:24:59+07', false);
INSERT INTO public.journals VALUES (9444, 2784, 'Issue', 39, '', '2020-11-14 16:25:12+07', false);
INSERT INTO public.journals VALUES (9446, 2630, 'Issue', 39, '', '2020-11-14 16:25:49+07', false);
INSERT INTO public.journals VALUES (9447, 2784, 'Issue', 39, '', '2020-11-14 16:25:54+07', false);
INSERT INTO public.journals VALUES (9448, 2782, 'Issue', 23, '', '2020-11-14 17:11:08+07', false);
INSERT INTO public.journals VALUES (9449, 2781, 'Issue', 23, '', '2020-11-14 17:11:36+07', false);
INSERT INTO public.journals VALUES (9450, 2782, 'Issue', 23, '', '2020-11-14 17:12:15+07', false);
INSERT INTO public.journals VALUES (9451, 2780, 'Issue', 23, '', '2020-11-14 17:12:33+07', false);
INSERT INTO public.journals VALUES (9452, 2779, 'Issue', 23, '', '2020-11-14 17:12:53+07', false);
INSERT INTO public.journals VALUES (9453, 2778, 'Issue', 23, '', '2020-11-14 17:13:09+07', false);
INSERT INTO public.journals VALUES (9455, 2717, 'Issue', 41, '', '2020-11-16 07:57:20+07', false);
INSERT INTO public.journals VALUES (9457, 2741, 'Issue', 41, '', '2020-11-16 07:58:23+07', false);
INSERT INTO public.journals VALUES (9458, 2741, 'Issue', 41, '', '2020-11-16 07:58:46+07', false);
INSERT INTO public.journals VALUES (9459, 2793, 'Issue', 10, '', '2020-11-16 07:58:59+07', false);
INSERT INTO public.journals VALUES (9460, 2789, 'Issue', 41, '', '2020-11-16 07:59:10+07', false);
INSERT INTO public.journals VALUES (9461, 2791, 'Issue', 41, '', '2020-11-16 07:59:43+07', false);
INSERT INTO public.journals VALUES (9462, 2742, 'Issue', 8, NULL, '2020-11-16 08:28:54+07', false);
INSERT INTO public.journals VALUES (9463, 2742, 'Issue', 8, NULL, '2020-11-16 08:29:05+07', false);
INSERT INTO public.journals VALUES (9464, 2793, 'Issue', 10, '', '2020-11-16 08:34:09+07', false);
INSERT INTO public.journals VALUES (9466, 2597, 'Issue', 5, NULL, '2020-11-16 08:44:50+07', false);
INSERT INTO public.journals VALUES (9467, 2598, 'Issue', 5, NULL, '2020-11-16 08:44:50+07', false);
INSERT INTO public.journals VALUES (9468, 2599, 'Issue', 5, NULL, '2020-11-16 08:44:50+07', false);
INSERT INTO public.journals VALUES (9469, 2628, 'Issue', 5, NULL, '2020-11-16 08:44:50+07', false);
INSERT INTO public.journals VALUES (9470, 2636, 'Issue', 5, NULL, '2020-11-16 08:44:50+07', false);
INSERT INTO public.journals VALUES (9471, 2637, 'Issue', 5, NULL, '2020-11-16 08:44:50+07', false);
INSERT INTO public.journals VALUES (9472, 2639, 'Issue', 5, NULL, '2020-11-16 08:44:51+07', false);
INSERT INTO public.journals VALUES (9473, 2653, 'Issue', 5, NULL, '2020-11-16 08:44:51+07', false);
INSERT INTO public.journals VALUES (9474, 2655, 'Issue', 5, NULL, '2020-11-16 08:44:51+07', false);
INSERT INTO public.journals VALUES (9475, 2656, 'Issue', 5, NULL, '2020-11-16 08:44:51+07', false);
INSERT INTO public.journals VALUES (9476, 2663, 'Issue', 5, NULL, '2020-11-16 08:44:51+07', false);
INSERT INTO public.journals VALUES (9477, 2664, 'Issue', 5, NULL, '2020-11-16 08:44:51+07', false);
INSERT INTO public.journals VALUES (9478, 2674, 'Issue', 5, NULL, '2020-11-16 08:44:51+07', false);
INSERT INTO public.journals VALUES (9479, 2679, 'Issue', 5, NULL, '2020-11-16 08:44:51+07', false);
INSERT INTO public.journals VALUES (9480, 2680, 'Issue', 5, NULL, '2020-11-16 08:44:51+07', false);
INSERT INTO public.journals VALUES (9481, 2684, 'Issue', 5, NULL, '2020-11-16 08:44:52+07', false);
INSERT INTO public.journals VALUES (9482, 2686, 'Issue', 5, NULL, '2020-11-16 08:44:52+07', false);
INSERT INTO public.journals VALUES (9483, 2689, 'Issue', 5, NULL, '2020-11-16 08:44:52+07', false);
INSERT INTO public.journals VALUES (9484, 2693, 'Issue', 5, NULL, '2020-11-16 08:44:52+07', false);
INSERT INTO public.journals VALUES (9485, 2696, 'Issue', 5, NULL, '2020-11-16 08:44:52+07', false);
INSERT INTO public.journals VALUES (9486, 2697, 'Issue', 5, NULL, '2020-11-16 08:44:52+07', false);
INSERT INTO public.journals VALUES (9487, 2711, 'Issue', 5, NULL, '2020-11-16 08:44:52+07', false);
INSERT INTO public.journals VALUES (9488, 2712, 'Issue', 5, NULL, '2020-11-16 08:44:52+07', false);
INSERT INTO public.journals VALUES (9489, 2713, 'Issue', 5, NULL, '2020-11-16 08:44:53+07', false);
INSERT INTO public.journals VALUES (9490, 2715, 'Issue', 5, NULL, '2020-11-16 08:44:53+07', false);
INSERT INTO public.journals VALUES (9491, 2719, 'Issue', 5, NULL, '2020-11-16 08:44:53+07', false);
INSERT INTO public.journals VALUES (9492, 2720, 'Issue', 5, NULL, '2020-11-16 08:44:53+07', false);
INSERT INTO public.journals VALUES (9493, 2722, 'Issue', 5, NULL, '2020-11-16 08:44:53+07', false);
INSERT INTO public.journals VALUES (9494, 2733, 'Issue', 5, NULL, '2020-11-16 08:44:53+07', false);
INSERT INTO public.journals VALUES (9495, 2736, 'Issue', 5, NULL, '2020-11-16 08:44:53+07', false);
INSERT INTO public.journals VALUES (9496, 2738, 'Issue', 5, NULL, '2020-11-16 08:44:53+07', false);
INSERT INTO public.journals VALUES (9497, 2740, 'Issue', 5, NULL, '2020-11-16 08:44:53+07', false);
INSERT INTO public.journals VALUES (9498, 2742, 'Issue', 5, NULL, '2020-11-16 08:44:54+07', false);
INSERT INTO public.journals VALUES (9499, 2755, 'Issue', 5, NULL, '2020-11-16 08:44:54+07', false);
INSERT INTO public.journals VALUES (9500, 2756, 'Issue', 5, NULL, '2020-11-16 08:44:54+07', false);
INSERT INTO public.journals VALUES (9501, 2758, 'Issue', 5, NULL, '2020-11-16 08:44:54+07', false);
INSERT INTO public.journals VALUES (9502, 2766, 'Issue', 5, NULL, '2020-11-16 08:44:54+07', false);
INSERT INTO public.journals VALUES (9503, 2776, 'Issue', 5, NULL, '2020-11-16 08:44:54+07', false);
INSERT INTO public.journals VALUES (9504, 2783, 'Issue', 5, NULL, '2020-11-16 08:44:54+07', false);
INSERT INTO public.journals VALUES (9505, 2786, 'Issue', 5, NULL, '2020-11-16 08:44:54+07', false);
INSERT INTO public.journals VALUES (9506, 2787, 'Issue', 5, NULL, '2020-11-16 08:44:54+07', false);
INSERT INTO public.journals VALUES (9507, 2375, 'Issue', 5, '', '2020-11-16 09:48:05+07', false);
INSERT INTO public.journals VALUES (9508, 2376, 'Issue', 5, '', '2020-11-16 09:48:05+07', false);
INSERT INTO public.journals VALUES (9509, 2377, 'Issue', 5, '', '2020-11-16 09:48:05+07', false);
INSERT INTO public.journals VALUES (9510, 2378, 'Issue', 5, '', '2020-11-16 09:48:05+07', false);
INSERT INTO public.journals VALUES (9511, 2379, 'Issue', 5, '', '2020-11-16 09:48:05+07', false);
INSERT INTO public.journals VALUES (9512, 2375, 'Issue', 5, NULL, '2020-11-16 09:48:16+07', false);
INSERT INTO public.journals VALUES (9513, 2809, 'Issue', 5, '', '2020-11-16 11:34:30+07', false);
INSERT INTO public.journals VALUES (9514, 2375, 'Issue', 5, '', '2020-11-16 11:37:44+07', false);
INSERT INTO public.journals VALUES (9515, 2794, 'Issue', 32, NULL, '2020-11-16 13:16:58+07', false);
INSERT INTO public.journals VALUES (9516, 2811, 'Issue', 19, '', '2020-11-16 14:24:15+07', false);
INSERT INTO public.journals VALUES (9517, 2629, 'Issue', 39, '', '2020-11-16 14:31:19+07', false);
INSERT INTO public.journals VALUES (9518, 2630, 'Issue', 39, '', '2020-11-16 14:31:27+07', false);
INSERT INTO public.journals VALUES (9519, 2667, 'Issue', 19, '', '2020-11-16 14:38:25+07', false);
INSERT INTO public.journals VALUES (9520, 2698, 'Issue', 5, '', '2020-11-16 14:40:00+07', false);
INSERT INTO public.journals VALUES (9521, 2699, 'Issue', 5, '', '2020-11-16 14:40:00+07', false);
INSERT INTO public.journals VALUES (9522, 2672, 'Issue', 19, '', '2020-11-16 14:40:18+07', false);
INSERT INTO public.journals VALUES (9523, 2669, 'Issue', 19, '', '2020-11-16 14:41:17+07', false);
INSERT INTO public.journals VALUES (9524, 2699, 'Issue', 19, NULL, '2020-11-16 14:42:57+07', false);
INSERT INTO public.journals VALUES (9525, 2699, 'Issue', 19, NULL, '2020-11-16 14:43:07+07', false);
INSERT INTO public.journals VALUES (9526, 2698, 'Issue', 19, NULL, '2020-11-16 14:43:17+07', false);
INSERT INTO public.journals VALUES (9527, 2671, 'Issue', 19, '', '2020-11-16 14:45:25+07', false);
INSERT INTO public.journals VALUES (9529, 2793, 'Issue', 10, NULL, '2020-11-16 16:48:24+07', false);
INSERT INTO public.journals VALUES (9530, 2794, 'Issue', 32, NULL, '2020-11-17 08:03:15+07', false);
INSERT INTO public.journals VALUES (9531, 2760, 'Issue', 33, NULL, '2020-11-17 08:20:35+07', false);
INSERT INTO public.journals VALUES (9532, 2768, 'Issue', 33, NULL, '2020-11-17 08:21:09+07', false);
INSERT INTO public.journals VALUES (9533, 2777, 'Issue', 33, NULL, '2020-11-17 08:21:17+07', false);
INSERT INTO public.journals VALUES (9534, 2765, 'Issue', 33, NULL, '2020-11-17 08:21:24+07', false);
INSERT INTO public.journals VALUES (9535, 2792, 'Issue', 33, NULL, '2020-11-17 08:21:38+07', false);
INSERT INTO public.journals VALUES (9536, 2773, 'Issue', 33, NULL, '2020-11-17 08:22:26+07', false);
INSERT INTO public.journals VALUES (9537, 2802, 'Issue', 10, NULL, '2020-11-17 10:36:30+07', false);
INSERT INTO public.journals VALUES (9538, 2802, 'Issue', 10, NULL, '2020-11-17 10:36:44+07', false);
INSERT INTO public.journals VALUES (9539, 2354, 'Issue', 21, '', '2020-11-17 11:36:37+07', false);
INSERT INTO public.journals VALUES (9540, 2813, 'Issue', 19, NULL, '2020-11-17 15:01:04+07', false);
INSERT INTO public.journals VALUES (9541, 2813, 'Issue', 19, NULL, '2020-11-17 15:01:12+07', false);
INSERT INTO public.journals VALUES (9542, 2813, 'Issue', 19, '', '2020-11-17 15:01:32+07', false);
INSERT INTO public.journals VALUES (9543, 2803, 'Issue', 10, NULL, '2020-11-17 15:18:46+07', false);
INSERT INTO public.journals VALUES (9544, 2803, 'Issue', 10, NULL, '2020-11-17 15:19:13+07', false);
INSERT INTO public.journals VALUES (9545, 1809, 'Issue', 21, NULL, '2020-11-17 16:28:42+07', false);
INSERT INTO public.journals VALUES (9546, 1810, 'Issue', 21, NULL, '2020-11-17 16:28:57+07', false);
INSERT INTO public.journals VALUES (9547, 1634, 'Issue', 21, '', '2020-11-17 16:31:19+07', false);
INSERT INTO public.journals VALUES (9548, 2832, 'Issue', 21, '', '2020-11-17 16:31:19+07', false);
INSERT INTO public.journals VALUES (9549, 2832, 'Issue', 21, '', '2020-11-17 16:32:12+07', false);
INSERT INTO public.journals VALUES (9550, 2832, 'Issue', 21, '', '2020-11-17 16:32:30+07', false);
INSERT INTO public.journals VALUES (9551, 2780, 'Issue', 28, '', '2020-11-17 18:44:36+07', false);
INSERT INTO public.journals VALUES (9552, 2781, 'Issue', 28, '', '2020-11-17 18:45:21+07', false);
INSERT INTO public.journals VALUES (9553, 2781, 'Issue', 28, '', '2020-11-17 18:45:34+07', false);
INSERT INTO public.journals VALUES (9554, 2778, 'Issue', 28, '', '2020-11-17 18:46:44+07', false);
INSERT INTO public.journals VALUES (9555, 2778, 'Issue', 28, '', '2020-11-17 18:47:02+07', false);
INSERT INTO public.journals VALUES (9556, 2779, 'Issue', 28, '', '2020-11-17 18:48:35+07', false);
INSERT INTO public.journals VALUES (9557, 2780, 'Issue', 28, '', '2020-11-17 18:52:52+07', false);
INSERT INTO public.journals VALUES (9558, 2779, 'Issue', 28, '', '2020-11-17 18:56:25+07', false);
INSERT INTO public.journals VALUES (9559, 2779, 'Issue', 28, '', '2020-11-17 18:57:30+07', false);
INSERT INTO public.journals VALUES (9560, 2638, 'Issue', 37, '', '2020-11-18 08:05:24+07', false);
INSERT INTO public.journals VALUES (9561, 2810, 'Issue', 33, NULL, '2020-11-18 08:10:48+07', false);
INSERT INTO public.journals VALUES (9562, 2821, 'Issue', 32, NULL, '2020-11-18 09:04:49+07', false);
INSERT INTO public.journals VALUES (9563, 2688, 'Issue', 5, NULL, '2020-11-18 11:22:10+07', false);
INSERT INTO public.journals VALUES (9564, 2665, 'Issue', 5, NULL, '2020-11-18 11:22:17+07', false);
INSERT INTO public.journals VALUES (9565, 2661, 'Issue', 5, NULL, '2020-11-18 11:22:23+07', false);
INSERT INTO public.journals VALUES (9566, 2793, 'Issue', 5, NULL, '2020-11-18 11:22:30+07', false);
INSERT INTO public.journals VALUES (9567, 2821, 'Issue', 32, NULL, '2020-11-18 13:16:42+07', false);
INSERT INTO public.journals VALUES (9570, 2843, 'Issue', 40, '', '2020-11-18 14:12:46+07', false);
INSERT INTO public.journals VALUES (9571, 2844, 'Issue', 40, '', '2020-11-18 14:12:59+07', false);
INSERT INTO public.journals VALUES (9572, 2846, 'Issue', 40, '', '2020-11-18 14:13:18+07', false);
INSERT INTO public.journals VALUES (9573, 2847, 'Issue', 40, '', '2020-11-18 14:13:38+07', false);
INSERT INTO public.journals VALUES (9574, 2849, 'Issue', 40, '', '2020-11-18 14:13:49+07', false);
INSERT INTO public.journals VALUES (9575, 2856, 'Issue', 40, '', '2020-11-18 14:14:03+07', false);
INSERT INTO public.journals VALUES (9576, 2852, 'Issue', 40, '', '2020-11-18 14:14:15+07', false);
INSERT INTO public.journals VALUES (9577, 2850, 'Issue', 40, '', '2020-11-18 14:14:29+07', false);
INSERT INTO public.journals VALUES (9578, 2854, 'Issue', 40, '', '2020-11-18 14:14:42+07', false);
INSERT INTO public.journals VALUES (9579, 2848, 'Issue', 40, '', '2020-11-18 14:14:58+07', false);
INSERT INTO public.journals VALUES (9581, 2853, 'Issue', 40, '', '2020-11-18 14:15:22+07', false);
INSERT INTO public.journals VALUES (9584, 2805, 'Issue', 10, NULL, '2020-11-18 14:29:03+07', false);
INSERT INTO public.journals VALUES (9585, 2805, 'Issue', 10, NULL, '2020-11-18 14:29:12+07', false);
INSERT INTO public.journals VALUES (9588, 2795, 'Issue', 33, NULL, '2020-11-18 15:08:03+07', false);
INSERT INTO public.journals VALUES (9589, 2835, 'Issue', 33, NULL, '2020-11-18 15:08:18+07', false);
INSERT INTO public.journals VALUES (9590, 2836, 'Issue', 33, NULL, '2020-11-18 15:08:48+07', false);
INSERT INTO public.journals VALUES (9591, 2629, 'Issue', 39, '', '2020-11-18 17:03:16+07', false);
INSERT INTO public.journals VALUES (9593, 2784, 'Issue', 39, '', '2020-11-18 17:03:44+07', false);
INSERT INTO public.journals VALUES (9594, 2735, 'Issue', 39, '', '2020-11-18 17:03:52+07', false);
INSERT INTO public.journals VALUES (9595, 2630, 'Issue', 39, '', '2020-11-18 17:04:08+07', false);
INSERT INTO public.journals VALUES (9596, 2820, 'Issue', 33, NULL, '2020-11-18 17:06:40+07', false);
INSERT INTO public.journals VALUES (9597, 2806, 'Issue', 10, NULL, '2020-11-19 00:02:28+07', false);
INSERT INTO public.journals VALUES (9598, 2806, 'Issue', 10, NULL, '2020-11-19 00:02:32+07', false);
INSERT INTO public.journals VALUES (9599, 2845, 'Issue', 5, NULL, '2020-11-19 10:45:49+07', false);
INSERT INTO public.journals VALUES (9600, 2851, 'Issue', 5, NULL, '2020-11-19 10:45:49+07', false);
INSERT INTO public.journals VALUES (9601, 2838, 'Issue', 33, NULL, '2020-11-19 14:02:11+07', false);
INSERT INTO public.journals VALUES (9602, 2863, 'Issue', 33, NULL, '2020-11-19 14:02:22+07', false);
INSERT INTO public.journals VALUES (9603, 2867, 'Issue', 40, '', '2020-11-19 15:16:33+07', false);
INSERT INTO public.journals VALUES (9605, 2872, 'Issue', 40, '', '2020-11-19 15:51:45+07', false);
INSERT INTO public.journals VALUES (9606, 2807, 'Issue', 10, NULL, '2020-11-19 16:20:35+07', false);
INSERT INTO public.journals VALUES (9607, 2807, 'Issue', 10, NULL, '2020-11-19 16:20:39+07', false);
INSERT INTO public.journals VALUES (9613, 2874, 'Issue', 10, '', '2020-11-19 17:07:08+07', false);
INSERT INTO public.journals VALUES (9614, 2833, 'Issue', 28, '', '2020-11-19 18:58:57+07', false);
INSERT INTO public.journals VALUES (9615, 2781, 'Issue', 28, '', '2020-11-19 19:02:26+07', false);
INSERT INTO public.journals VALUES (9616, 2782, 'Issue', 28, '', '2020-11-19 19:03:44+07', false);
INSERT INTO public.journals VALUES (9617, 2780, 'Issue', 28, '', '2020-11-19 19:04:45+07', false);
INSERT INTO public.journals VALUES (9618, 2839, 'Issue', 32, NULL, '2020-11-20 08:04:33+07', false);
INSERT INTO public.journals VALUES (9620, 2638, 'Issue', 5, NULL, '2020-11-20 08:31:00+07', false);
INSERT INTO public.journals VALUES (9621, 2793, 'Issue', 5, NULL, '2020-11-20 08:31:00+07', false);
INSERT INTO public.journals VALUES (9622, 2802, 'Issue', 5, NULL, '2020-11-20 08:31:00+07', false);
INSERT INTO public.journals VALUES (9623, 2803, 'Issue', 5, NULL, '2020-11-20 08:31:01+07', false);
INSERT INTO public.journals VALUES (9624, 2805, 'Issue', 5, NULL, '2020-11-20 08:31:01+07', false);
INSERT INTO public.journals VALUES (9625, 2806, 'Issue', 5, NULL, '2020-11-20 08:31:01+07', false);
INSERT INTO public.journals VALUES (9626, 2807, 'Issue', 5, NULL, '2020-11-20 08:31:01+07', false);
INSERT INTO public.journals VALUES (9627, 2829, 'Issue', 5, NULL, '2020-11-20 08:31:01+07', false);
INSERT INTO public.journals VALUES (9628, 2741, 'Issue', 5, '', '2020-11-20 08:39:21+07', false);
INSERT INTO public.journals VALUES (9629, 2717, 'Issue', 5, '', '2020-11-20 09:05:42+07', false);
INSERT INTO public.journals VALUES (9630, 2734, 'Issue', 5, '', '2020-11-20 09:05:42+07', false);
INSERT INTO public.journals VALUES (9631, 2741, 'Issue', 5, '', '2020-11-20 09:06:17+07', false);
INSERT INTO public.journals VALUES (9632, 2714, 'Issue', 5, '', '2020-11-20 09:06:35+07', false);
INSERT INTO public.journals VALUES (9633, 2716, 'Issue', 5, '', '2020-11-20 09:06:35+07', false);
INSERT INTO public.journals VALUES (9634, 2789, 'Issue', 5, '', '2020-11-20 09:09:28+07', false);
INSERT INTO public.journals VALUES (9635, 2868, 'Issue', 5, '', '2020-11-20 09:12:59+07', false);
INSERT INTO public.journals VALUES (9636, 2868, 'Issue', 5, '', '2020-11-20 09:13:07+07', false);
INSERT INTO public.journals VALUES (9637, 2879, 'Issue', 5, '', '2020-11-20 09:14:05+07', false);
INSERT INTO public.journals VALUES (9638, 2871, 'Issue', 5, '', '2020-11-20 09:16:55+07', false);
INSERT INTO public.journals VALUES (9639, 2872, 'Issue', 5, '', '2020-11-20 09:22:55+07', false);
INSERT INTO public.journals VALUES (9640, 2873, 'Issue', 5, '', '2020-11-20 09:22:55+07', false);
INSERT INTO public.journals VALUES (9641, 2868, 'Issue', 5, NULL, '2020-11-20 09:23:12+07', false);
INSERT INTO public.journals VALUES (9642, 2791, 'Issue', 5, '', '2020-11-20 09:25:28+07', false);
INSERT INTO public.journals VALUES (9643, 2791, 'Issue', 5, '', '2020-11-20 09:25:40+07', false);
INSERT INTO public.journals VALUES (9645, 2784, 'Issue', 5, '', '2020-11-20 09:28:19+07', false);
INSERT INTO public.journals VALUES (9646, 2629, 'Issue', 5, '', '2020-11-20 09:30:02+07', false);
INSERT INTO public.journals VALUES (9647, 2630, 'Issue', 5, '', '2020-11-20 09:30:02+07', false);
INSERT INTO public.journals VALUES (9648, 2735, 'Issue', 5, '', '2020-11-20 09:30:02+07', false);
INSERT INTO public.journals VALUES (9649, 2784, 'Issue', 5, NULL, '2020-11-20 09:31:32+07', false);
INSERT INTO public.journals VALUES (9650, 2791, 'Issue', 5, NULL, '2020-11-20 09:31:49+07', false);
INSERT INTO public.journals VALUES (9652, 2865, 'Issue', 5, '', '2020-11-20 09:33:01+07', false);
INSERT INTO public.journals VALUES (9653, 2866, 'Issue', 5, '', '2020-11-20 09:33:01+07', false);
INSERT INTO public.journals VALUES (9654, 2867, 'Issue', 5, '', '2020-11-20 09:33:01+07', false);
INSERT INTO public.journals VALUES (9655, 2869, 'Issue', 5, '', '2020-11-20 09:33:01+07', false);
INSERT INTO public.journals VALUES (9657, 2840, 'Issue', 5, '', '2020-11-20 09:33:44+07', false);
INSERT INTO public.journals VALUES (9658, 2840, 'Issue', 5, NULL, '2020-11-20 09:33:54+07', false);
INSERT INTO public.journals VALUES (9659, 2814, 'Issue', 5, '', '2020-11-20 09:36:22+07', false);
INSERT INTO public.journals VALUES (9660, 2814, 'Issue', 5, NULL, '2020-11-20 09:36:42+07', false);
INSERT INTO public.journals VALUES (9661, 2845, 'Issue', 5, NULL, '2020-11-20 09:37:39+07', false);
INSERT INTO public.journals VALUES (9662, 2851, 'Issue', 5, NULL, '2020-11-20 09:37:39+07', false);
INSERT INTO public.journals VALUES (9663, 2843, 'Issue', 5, '', '2020-11-20 09:40:37+07', false);
INSERT INTO public.journals VALUES (9664, 2844, 'Issue', 5, '', '2020-11-20 09:40:37+07', false);
INSERT INTO public.journals VALUES (9665, 2845, 'Issue', 5, '', '2020-11-20 09:40:37+07', false);
INSERT INTO public.journals VALUES (9666, 2843, 'Issue', 5, NULL, '2020-11-20 09:40:57+07', false);
INSERT INTO public.journals VALUES (9667, 2844, 'Issue', 5, NULL, '2020-11-20 09:40:57+07', false);
INSERT INTO public.journals VALUES (9668, 2845, 'Issue', 5, NULL, '2020-11-20 09:40:57+07', false);
INSERT INTO public.journals VALUES (9669, 2880, 'Issue', 5, NULL, '2020-11-20 09:40:57+07', false);
INSERT INTO public.journals VALUES (9670, 2872, 'Issue', 5, NULL, '2020-11-20 09:44:17+07', false);
INSERT INTO public.journals VALUES (9671, 2873, 'Issue', 5, NULL, '2020-11-20 09:44:18+07', false);
INSERT INTO public.journals VALUES (9672, 2843, 'Issue', 40, NULL, '2020-11-20 09:57:20+07', false);
INSERT INTO public.journals VALUES (9673, 2843, 'Issue', 40, NULL, '2020-11-20 09:57:28+07', false);
INSERT INTO public.journals VALUES (9674, 2741, 'Issue', 39, '', '2020-11-20 10:27:07+07', false);
INSERT INTO public.journals VALUES (9675, 1672, 'Issue', 22, NULL, '2020-11-20 10:42:52+07', false);
INSERT INTO public.journals VALUES (9676, 1672, 'Issue', 22, NULL, '2020-11-20 10:44:12+07', false);
INSERT INTO public.journals VALUES (9677, 2871, 'Issue', 39, '', '2020-11-20 10:45:53+07', false);
INSERT INTO public.journals VALUES (9678, 2880, 'Issue', 40, NULL, '2020-11-20 11:25:18+07', false);
INSERT INTO public.journals VALUES (9679, 2881, 'Issue', 40, NULL, '2020-11-20 11:25:24+07', false);
INSERT INTO public.journals VALUES (9680, 2886, 'Issue', 10, '', '2020-11-20 11:40:20+07', false);
INSERT INTO public.journals VALUES (9681, 2885, 'Issue', 10, '', '2020-11-20 11:41:18+07', false);
INSERT INTO public.journals VALUES (9682, 2789, 'Issue', 5, NULL, '2020-11-20 13:32:28+07', false);
INSERT INTO public.journals VALUES (9683, 2878, 'Issue', 5, NULL, '2020-11-20 13:32:28+07', false);
INSERT INTO public.journals VALUES (9684, 2879, 'Issue', 39, '', '2020-11-20 13:33:19+07', false);
INSERT INTO public.journals VALUES (9686, 2837, 'Issue', 33, NULL, '2020-11-20 15:18:23+07', false);
INSERT INTO public.journals VALUES (9687, 2861, 'Issue', 33, NULL, '2020-11-20 15:18:35+07', false);
INSERT INTO public.journals VALUES (9688, 2864, 'Issue', 33, NULL, '2020-11-20 15:18:59+07', false);
INSERT INTO public.journals VALUES (9689, 2819, 'Issue', 33, NULL, '2020-11-20 15:19:07+07', false);
INSERT INTO public.journals VALUES (9690, 2895, 'Issue', 41, '', '2020-11-21 08:49:38+07', false);
INSERT INTO public.journals VALUES (9691, 2574, 'Issue', 14, NULL, '2020-11-21 09:32:27+07', false);
INSERT INTO public.journals VALUES (9692, 2574, 'Issue', 14, NULL, '2020-11-21 09:32:39+07', false);
INSERT INTO public.journals VALUES (9693, 1583, 'Issue', 14, NULL, '2020-11-21 09:35:42+07', false);
INSERT INTO public.journals VALUES (9694, 1806, 'Issue', 14, NULL, '2020-11-21 09:36:53+07', false);
INSERT INTO public.journals VALUES (9695, 2137, 'Issue', 14, NULL, '2020-11-21 09:37:05+07', false);
INSERT INTO public.journals VALUES (9696, 2137, 'Issue', 14, NULL, '2020-11-21 09:37:15+07', false);
INSERT INTO public.journals VALUES (9697, 2138, 'Issue', 14, NULL, '2020-11-21 09:37:24+07', false);
INSERT INTO public.journals VALUES (9698, 2138, 'Issue', 14, NULL, '2020-11-21 09:37:29+07', false);
INSERT INTO public.journals VALUES (9699, 2801, 'Issue', 14, NULL, '2020-11-21 09:37:35+07', false);
INSERT INTO public.journals VALUES (9700, 2801, 'Issue', 14, NULL, '2020-11-21 09:37:40+07', false);
INSERT INTO public.journals VALUES (9701, 1819, 'Issue', 14, NULL, '2020-11-21 09:38:02+07', false);
INSERT INTO public.journals VALUES (9702, 1411, 'Issue', 14, NULL, '2020-11-21 09:39:46+07', false);
INSERT INTO public.journals VALUES (9703, 2896, 'Issue', 15, '', '2020-11-21 09:43:19+07', false);
INSERT INTO public.journals VALUES (9704, 1819, 'Issue', 14, NULL, '2020-11-21 09:45:59+07', false);
INSERT INTO public.journals VALUES (9705, 1819, 'Issue', 14, NULL, '2020-11-21 09:46:06+07', false);
INSERT INTO public.journals VALUES (9706, 2450, 'Issue', 15, '', '2020-11-21 09:48:30+07', false);
INSERT INTO public.journals VALUES (9707, 2482, 'Issue', 15, '', '2020-11-21 09:55:37+07', false);
INSERT INTO public.journals VALUES (9708, 2483, 'Issue', 15, '', '2020-11-21 09:56:11+07', false);
INSERT INTO public.journals VALUES (9709, 2906, 'Issue', 15, '', '2020-11-21 10:01:48+07', false);
INSERT INTO public.journals VALUES (9710, 2476, 'Issue', 15, '', '2020-11-21 10:12:40+07', false);
INSERT INTO public.journals VALUES (9711, 2476, 'Issue', 15, '', '2020-11-21 10:13:03+07', false);
INSERT INTO public.journals VALUES (9712, 2916, 'Issue', 15, '', '2020-11-21 10:17:23+07', false);
INSERT INTO public.journals VALUES (9713, 2843, 'Issue', 40, NULL, '2020-11-21 10:24:43+07', false);
INSERT INTO public.journals VALUES (9714, 2880, 'Issue', 40, NULL, '2020-11-21 10:24:49+07', false);
INSERT INTO public.journals VALUES (9715, 2881, 'Issue', 40, NULL, '2020-11-21 10:24:55+07', false);
INSERT INTO public.journals VALUES (9716, 2928, 'Issue', 15, '', '2020-11-21 10:25:17+07', false);
INSERT INTO public.journals VALUES (9717, 2928, 'Issue', 17, '', '2020-11-21 10:27:48+07', false);
INSERT INTO public.journals VALUES (9718, 2928, 'Issue', 17, '', '2020-11-21 10:28:58+07', false);
INSERT INTO public.journals VALUES (9719, 2450, 'Issue', 15, NULL, '2020-11-21 10:29:04+07', false);
INSERT INTO public.journals VALUES (9720, 2901, 'Issue', 15, NULL, '2020-11-21 10:29:04+07', false);
INSERT INTO public.journals VALUES (9721, 2902, 'Issue', 15, NULL, '2020-11-21 10:29:04+07', false);
INSERT INTO public.journals VALUES (9722, 2903, 'Issue', 15, NULL, '2020-11-21 10:29:04+07', false);
INSERT INTO public.journals VALUES (9723, 2904, 'Issue', 15, NULL, '2020-11-21 10:29:05+07', false);
INSERT INTO public.journals VALUES (9724, 2905, 'Issue', 15, NULL, '2020-11-21 10:29:05+07', false);
INSERT INTO public.journals VALUES (9725, 2789, 'Issue', 41, '', '2020-11-21 10:29:10+07', false);
INSERT INTO public.journals VALUES (9726, 2925, 'Issue', 17, '', '2020-11-21 10:29:14+07', false);
INSERT INTO public.journals VALUES (9727, 2450, 'Issue', 15, NULL, '2020-11-21 10:29:18+07', false);
INSERT INTO public.journals VALUES (9728, 2901, 'Issue', 15, NULL, '2020-11-21 10:29:18+07', false);
INSERT INTO public.journals VALUES (9729, 2902, 'Issue', 15, NULL, '2020-11-21 10:29:19+07', false);
INSERT INTO public.journals VALUES (9730, 2903, 'Issue', 15, NULL, '2020-11-21 10:29:19+07', false);
INSERT INTO public.journals VALUES (9731, 2904, 'Issue', 15, NULL, '2020-11-21 10:29:19+07', false);
INSERT INTO public.journals VALUES (9732, 2905, 'Issue', 15, NULL, '2020-11-21 10:29:19+07', false);
INSERT INTO public.journals VALUES (9733, 2924, 'Issue', 17, '', '2020-11-21 10:29:29+07', false);
INSERT INTO public.journals VALUES (9734, 2450, 'Issue', 15, NULL, '2020-11-21 10:29:31+07', false);
INSERT INTO public.journals VALUES (9735, 2901, 'Issue', 15, NULL, '2020-11-21 10:29:32+07', false);
INSERT INTO public.journals VALUES (9736, 2902, 'Issue', 15, NULL, '2020-11-21 10:29:32+07', false);
INSERT INTO public.journals VALUES (9737, 2903, 'Issue', 15, NULL, '2020-11-21 10:29:32+07', false);
INSERT INTO public.journals VALUES (9738, 2904, 'Issue', 15, NULL, '2020-11-21 10:29:32+07', false);
INSERT INTO public.journals VALUES (9739, 2905, 'Issue', 15, NULL, '2020-11-21 10:29:33+07', false);
INSERT INTO public.journals VALUES (9742, 2483, 'Issue', 15, NULL, '2020-11-21 10:30:09+07', false);
INSERT INTO public.journals VALUES (9743, 2906, 'Issue', 15, NULL, '2020-11-21 10:30:09+07', false);
INSERT INTO public.journals VALUES (9746, 2483, 'Issue', 15, NULL, '2020-11-21 10:30:24+07', false);
INSERT INTO public.journals VALUES (9747, 2906, 'Issue', 15, NULL, '2020-11-21 10:30:24+07', false);
INSERT INTO public.journals VALUES (9748, 2923, 'Issue', 17, '', '2020-11-21 10:30:28+07', false);
INSERT INTO public.journals VALUES (9751, 2483, 'Issue', 15, NULL, '2020-11-21 10:30:34+07', false);
INSERT INTO public.journals VALUES (9752, 2906, 'Issue', 15, NULL, '2020-11-21 10:30:34+07', false);
INSERT INTO public.journals VALUES (9755, 2922, 'Issue', 17, '', '2020-11-21 10:30:47+07', false);
INSERT INTO public.journals VALUES (9761, 2926, 'Issue', 17, '', '2020-11-21 10:35:47+07', false);
INSERT INTO public.journals VALUES (9762, 2928, 'Issue', 17, '', '2020-11-21 10:39:18+07', false);
INSERT INTO public.journals VALUES (9764, 2932, 'Issue', 15, NULL, '2020-11-21 10:45:30+07', false);
INSERT INTO public.journals VALUES (9765, 2933, 'Issue', 15, NULL, '2020-11-21 10:45:30+07', false);
INSERT INTO public.journals VALUES (9766, 2934, 'Issue', 15, NULL, '2020-11-21 10:45:41+07', false);
INSERT INTO public.journals VALUES (9767, 2935, 'Issue', 15, NULL, '2020-11-21 10:45:41+07', false);
INSERT INTO public.journals VALUES (9768, 2932, 'Issue', 15, NULL, '2020-11-21 10:46:02+07', false);
INSERT INTO public.journals VALUES (9769, 2933, 'Issue', 15, NULL, '2020-11-21 10:46:02+07', false);
INSERT INTO public.journals VALUES (9770, 2934, 'Issue', 15, NULL, '2020-11-21 10:46:02+07', false);
INSERT INTO public.journals VALUES (9771, 2935, 'Issue', 15, NULL, '2020-11-21 10:46:02+07', false);
INSERT INTO public.journals VALUES (9772, 2936, 'Issue', 15, NULL, '2020-11-21 10:46:03+07', false);
INSERT INTO public.journals VALUES (9773, 2932, 'Issue', 15, NULL, '2020-11-21 10:46:13+07', false);
INSERT INTO public.journals VALUES (9774, 2933, 'Issue', 15, NULL, '2020-11-21 10:46:13+07', false);
INSERT INTO public.journals VALUES (9775, 2934, 'Issue', 15, NULL, '2020-11-21 10:46:13+07', false);
INSERT INTO public.journals VALUES (9776, 2935, 'Issue', 15, NULL, '2020-11-21 10:46:14+07', false);
INSERT INTO public.journals VALUES (9777, 2914, 'Issue', 15, NULL, '2020-11-21 10:46:41+07', false);
INSERT INTO public.journals VALUES (9778, 2915, 'Issue', 15, NULL, '2020-11-21 10:46:42+07', false);
INSERT INTO public.journals VALUES (9779, 2916, 'Issue', 15, NULL, '2020-11-21 10:46:42+07', false);
INSERT INTO public.journals VALUES (9780, 2917, 'Issue', 15, NULL, '2020-11-21 10:46:42+07', false);
INSERT INTO public.journals VALUES (9781, 2918, 'Issue', 15, NULL, '2020-11-21 10:46:43+07', false);
INSERT INTO public.journals VALUES (9782, 2919, 'Issue', 15, NULL, '2020-11-21 10:46:43+07', false);
INSERT INTO public.journals VALUES (9783, 2920, 'Issue', 15, NULL, '2020-11-21 10:46:43+07', false);
INSERT INTO public.journals VALUES (9784, 2914, 'Issue', 15, NULL, '2020-11-21 10:46:56+07', false);
INSERT INTO public.journals VALUES (9785, 2915, 'Issue', 15, NULL, '2020-11-21 10:46:57+07', false);
INSERT INTO public.journals VALUES (9786, 2916, 'Issue', 15, NULL, '2020-11-21 10:46:57+07', false);
INSERT INTO public.journals VALUES (9787, 2917, 'Issue', 15, NULL, '2020-11-21 10:46:57+07', false);
INSERT INTO public.journals VALUES (9788, 2918, 'Issue', 15, NULL, '2020-11-21 10:46:58+07', false);
INSERT INTO public.journals VALUES (9789, 2919, 'Issue', 15, NULL, '2020-11-21 10:46:58+07', false);
INSERT INTO public.journals VALUES (9790, 2920, 'Issue', 15, NULL, '2020-11-21 10:46:58+07', false);
INSERT INTO public.journals VALUES (9791, 2914, 'Issue', 15, NULL, '2020-11-21 10:47:14+07', false);
INSERT INTO public.journals VALUES (9792, 2915, 'Issue', 15, NULL, '2020-11-21 10:47:14+07', false);
INSERT INTO public.journals VALUES (9793, 2916, 'Issue', 15, NULL, '2020-11-21 10:47:14+07', false);
INSERT INTO public.journals VALUES (9794, 2917, 'Issue', 15, NULL, '2020-11-21 10:47:14+07', false);
INSERT INTO public.journals VALUES (9795, 2918, 'Issue', 15, NULL, '2020-11-21 10:47:15+07', false);
INSERT INTO public.journals VALUES (9796, 2919, 'Issue', 15, NULL, '2020-11-21 10:47:15+07', false);
INSERT INTO public.journals VALUES (9797, 2920, 'Issue', 15, NULL, '2020-11-21 10:47:15+07', false);
INSERT INTO public.journals VALUES (9798, 2937, 'Issue', 15, '', '2020-11-21 10:49:13+07', false);
INSERT INTO public.journals VALUES (9799, 2938, 'Issue', 17, '', '2020-11-21 10:51:27+07', false);
INSERT INTO public.journals VALUES (9800, 2927, 'Issue', 15, NULL, '2020-11-21 10:51:59+07', false);
INSERT INTO public.journals VALUES (9801, 2927, 'Issue', 15, NULL, '2020-11-21 10:52:05+07', false);
INSERT INTO public.journals VALUES (9802, 2927, 'Issue', 15, NULL, '2020-11-21 10:52:13+07', false);
INSERT INTO public.journals VALUES (9803, 2922, 'Issue', 15, NULL, '2020-11-21 10:52:22+07', false);
INSERT INTO public.journals VALUES (9804, 2923, 'Issue', 15, NULL, '2020-11-21 10:52:22+07', false);
INSERT INTO public.journals VALUES (9805, 2924, 'Issue', 15, NULL, '2020-11-21 10:52:23+07', false);
INSERT INTO public.journals VALUES (9806, 2925, 'Issue', 15, NULL, '2020-11-21 10:52:23+07', false);
INSERT INTO public.journals VALUES (9807, 2926, 'Issue', 15, NULL, '2020-11-21 10:52:23+07', false);
INSERT INTO public.journals VALUES (9808, 2897, 'Issue', 15, '', '2020-11-21 10:53:59+07', false);
INSERT INTO public.journals VALUES (9809, 2898, 'Issue', 15, '', '2020-11-21 10:54:23+07', false);
INSERT INTO public.journals VALUES (9810, 2899, 'Issue', 15, '', '2020-11-21 10:54:37+07', false);
INSERT INTO public.journals VALUES (9811, 2900, 'Issue', 15, '', '2020-11-21 10:54:50+07', false);
INSERT INTO public.journals VALUES (9812, 2897, 'Issue', 15, NULL, '2020-11-21 10:55:06+07', false);
INSERT INTO public.journals VALUES (9813, 2898, 'Issue', 15, NULL, '2020-11-21 10:55:06+07', false);
INSERT INTO public.journals VALUES (9814, 2899, 'Issue', 15, NULL, '2020-11-21 10:55:06+07', false);
INSERT INTO public.journals VALUES (9815, 2900, 'Issue', 15, NULL, '2020-11-21 10:55:06+07', false);
INSERT INTO public.journals VALUES (9816, 2897, 'Issue', 15, NULL, '2020-11-21 10:55:29+07', false);
INSERT INTO public.journals VALUES (9817, 2898, 'Issue', 15, NULL, '2020-11-21 10:55:29+07', false);
INSERT INTO public.journals VALUES (9818, 2899, 'Issue', 15, NULL, '2020-11-21 10:55:30+07', false);
INSERT INTO public.journals VALUES (9819, 2900, 'Issue', 15, NULL, '2020-11-21 10:55:30+07', false);
INSERT INTO public.journals VALUES (9820, 2897, 'Issue', 15, NULL, '2020-11-21 10:55:42+07', false);
INSERT INTO public.journals VALUES (9821, 2898, 'Issue', 15, NULL, '2020-11-21 10:55:42+07', false);
INSERT INTO public.journals VALUES (9822, 2899, 'Issue', 15, NULL, '2020-11-21 10:55:42+07', false);
INSERT INTO public.journals VALUES (9823, 2900, 'Issue', 15, NULL, '2020-11-21 10:55:42+07', false);
INSERT INTO public.journals VALUES (9824, 2896, 'Issue', 15, NULL, '2020-11-21 10:55:59+07', false);
INSERT INTO public.journals VALUES (9825, 2815, 'Issue', 15, NULL, '2020-11-21 10:56:06+07', false);
INSERT INTO public.journals VALUES (9826, 2815, 'Issue', 15, NULL, '2020-11-21 10:56:19+07', false);
INSERT INTO public.journals VALUES (9827, 2896, 'Issue', 15, NULL, '2020-11-21 10:56:19+07', false);
INSERT INTO public.journals VALUES (9828, 2936, 'Issue', 15, NULL, '2020-11-21 10:56:28+07', false);
INSERT INTO public.journals VALUES (9829, 2912, 'Issue', 15, NULL, '2020-11-21 10:56:56+07', false);
INSERT INTO public.journals VALUES (9830, 2913, 'Issue', 15, NULL, '2020-11-21 10:56:56+07', false);
INSERT INTO public.journals VALUES (9831, 2912, 'Issue', 15, NULL, '2020-11-21 10:57:07+07', false);
INSERT INTO public.journals VALUES (9832, 2913, 'Issue', 15, NULL, '2020-11-21 10:57:07+07', false);
INSERT INTO public.journals VALUES (9833, 2880, 'Issue', 40, NULL, '2020-11-21 11:07:23+07', false);
INSERT INTO public.journals VALUES (9834, 2882, 'Issue', 10, NULL, '2020-11-21 11:07:48+07', false);
INSERT INTO public.journals VALUES (9835, 2882, 'Issue', 10, NULL, '2020-11-21 11:07:56+07', false);
INSERT INTO public.journals VALUES (9836, 2873, 'Issue', 40, '', '2020-11-21 11:08:05+07', false);
INSERT INTO public.journals VALUES (9837, 2940, 'Issue', 40, '', '2020-11-21 11:22:30+07', false);
INSERT INTO public.journals VALUES (9838, 2881, 'Issue', 40, NULL, '2020-11-21 11:27:03+07', false);
INSERT INTO public.journals VALUES (9839, 2785, 'Issue', 38, NULL, '2020-11-21 13:25:07+07', false);
INSERT INTO public.journals VALUES (9840, 2785, 'Issue', 38, NULL, '2020-11-21 13:25:14+07', false);
INSERT INTO public.journals VALUES (9841, 2788, 'Issue', 38, NULL, '2020-11-21 13:25:30+07', false);
INSERT INTO public.journals VALUES (9842, 2788, 'Issue', 38, NULL, '2020-11-21 13:25:37+07', false);
INSERT INTO public.journals VALUES (9843, 2714, 'Issue', 5, '', '2020-11-21 13:56:12+07', false);
INSERT INTO public.journals VALUES (9844, 2846, 'Issue', 40, '', '2020-11-21 13:56:53+07', false);
INSERT INTO public.journals VALUES (9845, 2847, 'Issue', 40, '', '2020-11-21 13:56:54+07', false);
INSERT INTO public.journals VALUES (9846, 2848, 'Issue', 40, '', '2020-11-21 13:56:54+07', false);
INSERT INTO public.journals VALUES (9847, 2849, 'Issue', 40, '', '2020-11-21 13:56:54+07', false);
INSERT INTO public.journals VALUES (9848, 2850, 'Issue', 40, '', '2020-11-21 13:56:54+07', false);
INSERT INTO public.journals VALUES (9849, 2851, 'Issue', 40, '', '2020-11-21 13:56:54+07', false);
INSERT INTO public.journals VALUES (9850, 2852, 'Issue', 40, '', '2020-11-21 13:56:54+07', false);
INSERT INTO public.journals VALUES (9851, 2853, 'Issue', 40, '', '2020-11-21 13:56:54+07', false);
INSERT INTO public.journals VALUES (9852, 2854, 'Issue', 40, '', '2020-11-21 13:56:54+07', false);
INSERT INTO public.journals VALUES (9854, 2856, 'Issue', 40, '', '2020-11-21 13:56:55+07', false);
INSERT INTO public.journals VALUES (9858, 2482, 'Issue', 15, NULL, '2020-11-21 13:59:16+07', false);
INSERT INTO public.journals VALUES (9859, 2448, 'Issue', 15, NULL, '2020-11-21 13:59:28+07', false);
INSERT INTO public.journals VALUES (9860, 2449, 'Issue', 15, NULL, '2020-11-21 13:59:28+07', false);
INSERT INTO public.journals VALUES (9861, 2912, 'Issue', 15, NULL, '2020-11-21 13:59:41+07', false);
INSERT INTO public.journals VALUES (9862, 2913, 'Issue', 15, NULL, '2020-11-21 13:59:41+07', false);
INSERT INTO public.journals VALUES (9863, 2714, 'Issue', 5, '', '2020-11-21 14:39:34+07', false);
INSERT INTO public.journals VALUES (9864, 2943, 'Issue', 17, '', '2020-11-21 15:23:21+07', false);
INSERT INTO public.journals VALUES (9865, 2938, 'Issue', 17, '', '2020-11-21 15:24:11+07', false);
INSERT INTO public.journals VALUES (9866, 2928, 'Issue', 17, '', '2020-11-21 15:44:05+07', false);
INSERT INTO public.journals VALUES (9867, 2907, 'Issue', 15, NULL, '2020-11-21 15:44:33+07', false);
INSERT INTO public.journals VALUES (9868, 2872, 'Issue', 5, '', '2020-11-21 15:58:42+07', false);
INSERT INTO public.journals VALUES (9869, 2873, 'Issue', 5, '', '2020-11-21 15:58:42+07', false);
INSERT INTO public.journals VALUES (9870, 2832, 'Issue', 9, NULL, '2020-11-21 16:25:31+07', false);
INSERT INTO public.journals VALUES (9871, 2883, 'Issue', 10, NULL, '2020-11-21 16:37:39+07', false);
INSERT INTO public.journals VALUES (9872, 2881, 'Issue', 40, NULL, '2020-11-21 16:44:26+07', false);
INSERT INTO public.journals VALUES (9873, 2880, 'Issue', 40, NULL, '2020-11-21 16:44:31+07', false);
INSERT INTO public.journals VALUES (9874, 2852, 'Issue', 40, '', '2020-11-21 16:49:33+07', false);
INSERT INTO public.journals VALUES (9875, 2878, 'Issue', 41, NULL, '2020-11-21 16:51:35+07', false);
INSERT INTO public.journals VALUES (9876, 2878, 'Issue', 41, '', '2020-11-21 16:51:51+07', false);
INSERT INTO public.journals VALUES (9877, 2883, 'Issue', 10, NULL, '2020-11-21 23:49:16+07', false);
INSERT INTO public.journals VALUES (9878, 2883, 'Issue', 10, NULL, '2020-11-21 23:49:22+07', false);
INSERT INTO public.journals VALUES (9879, 2874, 'Issue', 10, NULL, '2020-11-21 23:52:21+07', false);
INSERT INTO public.journals VALUES (9880, 2739, 'Issue', 38, '', '2020-11-23 07:44:04+07', false);
INSERT INTO public.journals VALUES (9881, 2671, 'Issue', 19, NULL, '2020-11-23 08:03:11+07', false);
INSERT INTO public.journals VALUES (9882, 2670, 'Issue', 19, NULL, '2020-11-23 08:03:18+07', false);
INSERT INTO public.journals VALUES (9883, 2812, 'Issue', 19, NULL, '2020-11-23 08:03:38+07', false);
INSERT INTO public.journals VALUES (9884, 2830, 'Issue', 19, NULL, '2020-11-23 08:04:05+07', false);
INSERT INTO public.journals VALUES (9885, 2671, 'Issue', 12, NULL, '2020-11-23 08:13:09+07', false);
INSERT INTO public.journals VALUES (9886, 2671, 'Issue', 12, NULL, '2020-11-23 08:13:26+07', false);
INSERT INTO public.journals VALUES (9887, 2839, 'Issue', 33, NULL, '2020-11-23 08:14:26+07', false);
INSERT INTO public.journals VALUES (9888, 2862, 'Issue', 33, NULL, '2020-11-23 08:14:32+07', false);
INSERT INTO public.journals VALUES (9890, 2875, 'Issue', 10, '', '2020-11-23 08:19:43+07', false);
INSERT INTO public.journals VALUES (9891, 2843, 'Issue', 40, NULL, '2020-11-23 08:40:16+07', false);
INSERT INTO public.journals VALUES (9892, 2844, 'Issue', 40, NULL, '2020-11-23 08:40:16+07', false);
INSERT INTO public.journals VALUES (9893, 2845, 'Issue', 40, NULL, '2020-11-23 08:40:16+07', false);
INSERT INTO public.journals VALUES (9894, 2852, 'Issue', 40, NULL, '2020-11-23 08:40:16+07', false);
INSERT INTO public.journals VALUES (9895, 2880, 'Issue', 40, NULL, '2020-11-23 08:40:16+07', false);
INSERT INTO public.journals VALUES (9896, 2881, 'Issue', 40, NULL, '2020-11-23 08:40:16+07', false);
INSERT INTO public.journals VALUES (9897, 2843, 'Issue', 40, '', '2020-11-23 08:43:00+07', false);
INSERT INTO public.journals VALUES (9898, 2844, 'Issue', 40, '', '2020-11-23 08:43:00+07', false);
INSERT INTO public.journals VALUES (9899, 2845, 'Issue', 40, '', '2020-11-23 08:43:00+07', false);
INSERT INTO public.journals VALUES (9900, 2880, 'Issue', 40, '', '2020-11-23 08:43:00+07', false);
INSERT INTO public.journals VALUES (9901, 2881, 'Issue', 40, '', '2020-11-23 08:43:01+07', false);
INSERT INTO public.journals VALUES (9902, 2880, 'Issue', 40, '', '2020-11-23 08:44:54+07', false);
INSERT INTO public.journals VALUES (9903, 2881, 'Issue', 40, '', '2020-11-23 08:44:54+07', false);
INSERT INTO public.journals VALUES (9904, 2843, 'Issue', 40, '', '2020-11-23 08:45:24+07', false);
INSERT INTO public.journals VALUES (9905, 2844, 'Issue', 40, '', '2020-11-23 08:45:24+07', false);
INSERT INTO public.journals VALUES (9906, 2845, 'Issue', 40, '', '2020-11-23 08:45:25+07', false);
INSERT INTO public.journals VALUES (9908, 2748, 'Issue', 40, NULL, '2020-11-23 08:57:41+07', false);
INSERT INTO public.journals VALUES (9909, 2865, 'Issue', 5, '', '2020-11-23 09:44:05+07', false);
INSERT INTO public.journals VALUES (9910, 2866, 'Issue', 5, '', '2020-11-23 09:44:05+07', false);
INSERT INTO public.journals VALUES (9911, 2867, 'Issue', 5, '', '2020-11-23 09:44:05+07', false);
INSERT INTO public.journals VALUES (9912, 2869, 'Issue', 5, '', '2020-11-23 09:44:05+07', false);
INSERT INTO public.journals VALUES (9914, 2865, 'Issue', 5, NULL, '2020-11-23 09:44:19+07', false);
INSERT INTO public.journals VALUES (9915, 2866, 'Issue', 5, NULL, '2020-11-23 09:44:19+07', false);
INSERT INTO public.journals VALUES (9916, 2867, 'Issue', 5, NULL, '2020-11-23 09:44:19+07', false);
INSERT INTO public.journals VALUES (9917, 2869, 'Issue', 5, NULL, '2020-11-23 09:44:19+07', false);
INSERT INTO public.journals VALUES (9919, 2865, 'Issue', 5, '', '2020-11-23 09:44:43+07', false);
INSERT INTO public.journals VALUES (9920, 2866, 'Issue', 5, '', '2020-11-23 09:44:43+07', false);
INSERT INTO public.journals VALUES (9921, 2867, 'Issue', 5, '', '2020-11-23 09:44:43+07', false);
INSERT INTO public.journals VALUES (9922, 2869, 'Issue', 5, '', '2020-11-23 09:44:43+07', false);
INSERT INTO public.journals VALUES (9924, 2865, 'Issue', 5, '', '2020-11-23 09:47:23+07', false);
INSERT INTO public.journals VALUES (9925, 2866, 'Issue', 5, '', '2020-11-23 09:47:23+07', false);
INSERT INTO public.journals VALUES (9926, 2867, 'Issue', 5, '', '2020-11-23 09:47:23+07', false);
INSERT INTO public.journals VALUES (9927, 2939, 'Issue', 5, '', '2020-11-23 09:52:22+07', false);
INSERT INTO public.journals VALUES (9928, 2940, 'Issue', 5, NULL, '2020-11-23 09:52:51+07', false);
INSERT INTO public.journals VALUES (9929, 2940, 'Issue', 5, NULL, '2020-11-23 09:52:57+07', false);
INSERT INTO public.journals VALUES (9930, 2875, 'Issue', 5, NULL, '2020-11-23 09:56:34+07', false);
INSERT INTO public.journals VALUES (9931, 2714, 'Issue', 5, NULL, '2020-11-23 09:57:15+07', false);
INSERT INTO public.journals VALUES (9932, 2741, 'Issue', 5, NULL, '2020-11-23 09:57:15+07', false);
INSERT INTO public.journals VALUES (9933, 2789, 'Issue', 5, NULL, '2020-11-23 09:57:15+07', false);
INSERT INTO public.journals VALUES (9934, 2871, 'Issue', 5, NULL, '2020-11-23 09:57:16+07', false);
INSERT INTO public.journals VALUES (9935, 2872, 'Issue', 5, NULL, '2020-11-23 09:57:16+07', false);
INSERT INTO public.journals VALUES (9936, 2873, 'Issue', 5, NULL, '2020-11-23 09:57:16+07', false);
INSERT INTO public.journals VALUES (9937, 2879, 'Issue', 5, NULL, '2020-11-23 09:57:16+07', false);
INSERT INTO public.journals VALUES (9938, 2882, 'Issue', 5, NULL, '2020-11-23 09:57:16+07', false);
INSERT INTO public.journals VALUES (9939, 2883, 'Issue', 5, NULL, '2020-11-23 09:57:16+07', false);
INSERT INTO public.journals VALUES (9940, 2895, 'Issue', 5, NULL, '2020-11-23 09:57:16+07', false);
INSERT INTO public.journals VALUES (9941, 2941, 'Issue', 5, NULL, '2020-11-23 09:57:16+07', false);
INSERT INTO public.journals VALUES (9942, 2944, 'Issue', 5, NULL, '2020-11-23 09:57:16+07', false);
INSERT INTO public.journals VALUES (9944, 2734, 'Issue', 5, NULL, '2020-11-23 09:59:21+07', false);
INSERT INTO public.journals VALUES (9945, 2878, 'Issue', 5, '', '2020-11-23 09:59:53+07', false);
INSERT INTO public.journals VALUES (9946, 2629, 'Issue', 5, '', '2020-11-23 10:02:14+07', false);
INSERT INTO public.journals VALUES (9947, 2630, 'Issue', 5, '', '2020-11-23 10:02:14+07', false);
INSERT INTO public.journals VALUES (9948, 2735, 'Issue', 5, NULL, '2020-11-23 10:04:03+07', false);
INSERT INTO public.journals VALUES (9949, 2953, 'Issue', 5, '', '2020-11-23 10:04:33+07', false);
INSERT INTO public.journals VALUES (9950, 2846, 'Issue', 5, '', '2020-11-23 10:06:17+07', false);
INSERT INTO public.journals VALUES (9951, 2847, 'Issue', 5, '', '2020-11-23 10:06:17+07', false);
INSERT INTO public.journals VALUES (9952, 2848, 'Issue', 5, '', '2020-11-23 10:06:17+07', false);
INSERT INTO public.journals VALUES (9953, 2849, 'Issue', 5, '', '2020-11-23 10:06:17+07', false);
INSERT INTO public.journals VALUES (9954, 2843, 'Issue', 5, '', '2020-11-23 10:06:35+07', false);
INSERT INTO public.journals VALUES (9955, 2844, 'Issue', 5, '', '2020-11-23 10:06:35+07', false);
INSERT INTO public.journals VALUES (9956, 2845, 'Issue', 5, '', '2020-11-23 10:06:35+07', false);
INSERT INTO public.journals VALUES (9957, 2850, 'Issue', 5, '', '2020-11-23 10:08:09+07', false);
INSERT INTO public.journals VALUES (9958, 2851, 'Issue', 5, '', '2020-11-23 10:08:09+07', false);
INSERT INTO public.journals VALUES (9959, 2852, 'Issue', 5, '', '2020-11-23 10:08:48+07', false);
INSERT INTO public.journals VALUES (9960, 2853, 'Issue', 5, '', '2020-11-23 10:08:48+07', false);
INSERT INTO public.journals VALUES (9961, 2854, 'Issue', 5, '', '2020-11-23 10:09:55+07', false);
INSERT INTO public.journals VALUES (9963, 2956, 'Issue', 15, NULL, '2020-11-23 10:09:58+07', false);
INSERT INTO public.journals VALUES (9964, 2957, 'Issue', 15, NULL, '2020-11-23 10:09:58+07', false);
INSERT INTO public.journals VALUES (9965, 2957, 'Issue', 15, '', '2020-11-23 10:10:22+07', false);
INSERT INTO public.journals VALUES (9966, 2856, 'Issue', 5, '', '2020-11-23 10:10:24+07', false);
INSERT INTO public.journals VALUES (9970, 2734, 'Issue', 5, '', '2020-11-23 10:20:57+07', false);
INSERT INTO public.journals VALUES (9971, 2735, 'Issue', 5, '', '2020-11-23 10:20:58+07', false);
INSERT INTO public.journals VALUES (9973, 2960, 'Issue', 19, '', '2020-11-23 10:21:26+07', false);
INSERT INTO public.journals VALUES (9974, 2964, 'Issue', 14, '', '2020-11-23 10:49:11+07', false);
INSERT INTO public.journals VALUES (9975, 2884, 'Issue', 10, '', '2020-11-23 10:49:15+07', false);
INSERT INTO public.journals VALUES (9976, 2892, 'Issue', 10, '', '2020-11-23 11:00:20+07', false);
INSERT INTO public.journals VALUES (9977, 2893, 'Issue', 10, '', '2020-11-23 11:00:20+07', false);
INSERT INTO public.journals VALUES (9980, 2885, 'Issue', 10, '', '2020-11-23 11:01:01+07', false);
INSERT INTO public.journals VALUES (9981, 2782, 'Issue', 28, '', '2020-11-23 11:10:11+07', false);
INSERT INTO public.journals VALUES (9982, 2969, 'Issue', 28, '', '2020-11-23 11:13:07+07', false);
INSERT INTO public.journals VALUES (9983, 2726, 'Issue', 28, '', '2020-11-23 11:26:33+07', false);
INSERT INTO public.journals VALUES (9984, 2884, 'Issue', 10, NULL, '2020-11-23 11:34:02+07', false);
INSERT INTO public.journals VALUES (9985, 2884, 'Issue', 10, NULL, '2020-11-23 11:34:09+07', false);
INSERT INTO public.journals VALUES (9986, 2972, 'Issue', 17, '', '2020-11-23 13:47:04+07', false);
INSERT INTO public.journals VALUES (9987, 2953, 'Issue', 39, '', '2020-11-23 14:08:09+07', false);
INSERT INTO public.journals VALUES (9988, 2974, 'Issue', 40, NULL, '2020-11-23 14:48:39+07', false);
INSERT INTO public.journals VALUES (9989, 2814, 'Issue', 10, '', '2020-11-23 14:48:43+07', false);
INSERT INTO public.journals VALUES (9990, 2831, 'Issue', 19, '', '2020-11-23 15:27:21+07', false);
INSERT INTO public.journals VALUES (9991, 2831, 'Issue', 19, NULL, '2020-11-23 15:27:33+07', false);
INSERT INTO public.journals VALUES (9992, 2670, 'Issue', 19, '', '2020-11-23 15:34:16+07', false);
INSERT INTO public.journals VALUES (9993, 2812, 'Issue', 19, '', '2020-11-23 15:34:37+07', false);
INSERT INTO public.journals VALUES (9994, 2830, 'Issue', 19, '', '2020-11-23 15:35:25+07', false);
INSERT INTO public.journals VALUES (9995, 2830, 'Issue', 19, '', '2020-11-23 15:35:36+07', false);
INSERT INTO public.journals VALUES (9996, 2831, 'Issue', 19, '', '2020-11-23 15:35:54+07', false);
INSERT INTO public.journals VALUES (9997, 2718, 'Issue', 19, 'Assign tự động cho tất cả các cấp hành chính.', '2020-11-23 15:37:03+07', false);
INSERT INTO public.journals VALUES (9998, 2960, 'Issue', 38, NULL, '2020-11-23 15:41:21+07', false);
INSERT INTO public.journals VALUES (9999, 2961, 'Issue', 38, NULL, '2020-11-23 15:41:21+07', false);
INSERT INTO public.journals VALUES (10000, 2960, 'Issue', 38, NULL, '2020-11-23 15:41:48+07', false);
INSERT INTO public.journals VALUES (10001, 2961, 'Issue', 38, NULL, '2020-11-23 15:41:49+07', false);
INSERT INTO public.journals VALUES (10002, 2973, 'Issue', 39, '', '2020-11-23 15:43:18+07', false);
INSERT INTO public.journals VALUES (10003, 2875, 'Issue', 10, NULL, '2020-11-23 15:52:40+07', false);
INSERT INTO public.journals VALUES (10004, 2875, 'Issue', 10, NULL, '2020-11-23 15:52:51+07', false);
INSERT INTO public.journals VALUES (10005, 2853, 'Issue', 40, NULL, '2020-11-23 16:30:46+07', false);
INSERT INTO public.journals VALUES (10006, 2853, 'Issue', 40, NULL, '2020-11-23 16:30:55+07', false);
INSERT INTO public.journals VALUES (10007, 2852, 'Issue', 40, NULL, '2020-11-23 16:31:01+07', false);
INSERT INTO public.journals VALUES (10008, 2956, 'Issue', 15, NULL, '2020-11-23 16:43:24+07', false);
INSERT INTO public.journals VALUES (10009, 2956, 'Issue', 15, NULL, '2020-11-23 16:43:30+07', false);
INSERT INTO public.journals VALUES (10010, 2463, 'Issue', 15, '', '2020-11-23 16:45:02+07', false);
INSERT INTO public.journals VALUES (10011, 2853, 'Issue', 40, NULL, '2020-11-23 16:57:39+07', false);
INSERT INTO public.journals VALUES (10013, 2990, 'Issue', 17, '', '2020-11-24 13:57:45+07', false);
INSERT INTO public.journals VALUES (10014, 2945, 'Issue', 5, NULL, '2020-11-24 14:12:04+07', false);
INSERT INTO public.journals VALUES (10015, 2945, 'Issue', 5, NULL, '2020-11-24 14:12:11+07', false);
INSERT INTO public.journals VALUES (10016, 2985, 'Issue', 5, NULL, '2020-11-24 14:12:39+07', false);
INSERT INTO public.journals VALUES (10017, 2717, 'Issue', 5, '', '2020-11-24 14:14:46+07', false);
INSERT INTO public.journals VALUES (10018, 2814, 'Issue', 10, NULL, '2020-11-24 14:20:42+07', false);
INSERT INTO public.journals VALUES (10019, 2852, 'Issue', 5, NULL, '2020-11-24 14:28:33+07', false);
INSERT INTO public.journals VALUES (10020, 2853, 'Issue', 5, NULL, '2020-11-24 14:28:33+07', false);
INSERT INTO public.journals VALUES (10021, 2852, 'Issue', 5, NULL, '2020-11-24 14:28:39+07', false);
INSERT INTO public.journals VALUES (10022, 2853, 'Issue', 5, NULL, '2020-11-24 14:28:39+07', false);
INSERT INTO public.journals VALUES (10023, 2716, 'Issue', 5, '', '2020-11-24 14:59:10+07', false);
INSERT INTO public.journals VALUES (10024, 2846, 'Issue', 40, NULL, '2020-11-24 15:25:35+07', false);
INSERT INTO public.journals VALUES (10025, 2846, 'Issue', 40, NULL, '2020-11-24 15:25:46+07', false);
INSERT INTO public.journals VALUES (10026, 2975, 'Issue', 38, '', '2020-11-24 15:36:27+07', false);
INSERT INTO public.journals VALUES (10027, 2982, 'Issue', 38, '', '2020-11-24 15:37:43+07', false);
INSERT INTO public.journals VALUES (10028, 2983, 'Issue', 38, '', '2020-11-24 15:39:15+07', false);
INSERT INTO public.journals VALUES (10029, 2983, 'Issue', 37, '', '2020-11-24 15:44:15+07', false);
INSERT INTO public.journals VALUES (10030, 2988, 'Issue', 39, '', '2020-11-24 15:44:32+07', false);
INSERT INTO public.journals VALUES (10031, 2846, 'Issue', 40, NULL, '2020-11-24 15:45:40+07', false);
INSERT INTO public.journals VALUES (10032, 2992, 'Issue', 37, '', '2020-11-24 15:45:57+07', false);
INSERT INTO public.journals VALUES (10033, 2993, 'Issue', 37, '', '2020-11-24 15:45:57+07', false);
INSERT INTO public.journals VALUES (10034, 2994, 'Issue', 37, '', '2020-11-24 15:45:57+07', false);
INSERT INTO public.journals VALUES (10035, 2975, 'Issue', 38, NULL, '2020-11-24 16:21:00+07', false);
INSERT INTO public.journals VALUES (10036, 2982, 'Issue', 38, NULL, '2020-11-24 16:21:00+07', false);
INSERT INTO public.journals VALUES (10037, 2975, 'Issue', 38, NULL, '2020-11-24 16:21:09+07', false);
INSERT INTO public.journals VALUES (10038, 2982, 'Issue', 38, NULL, '2020-11-24 16:21:09+07', false);
INSERT INTO public.journals VALUES (10039, 2880, 'Issue', 40, NULL, '2020-11-24 16:23:00+07', false);
INSERT INTO public.journals VALUES (10040, 2880, 'Issue', 40, NULL, '2020-11-24 16:23:11+07', false);
INSERT INTO public.journals VALUES (10041, 2881, 'Issue', 40, NULL, '2020-11-24 16:23:17+07', false);
INSERT INTO public.journals VALUES (10042, 2881, 'Issue', 40, NULL, '2020-11-24 16:23:27+07', false);
INSERT INTO public.journals VALUES (10043, 2814, 'Issue', 10, NULL, '2020-11-24 16:26:50+07', false);
INSERT INTO public.journals VALUES (10044, 2814, 'Issue', 10, NULL, '2020-11-24 16:26:57+07', false);
INSERT INTO public.journals VALUES (10045, 2957, 'Issue', 15, '', '2020-11-24 16:42:02+07', false);
INSERT INTO public.journals VALUES (10046, 2957, 'Issue', 15, NULL, '2020-11-24 16:42:14+07', false);
INSERT INTO public.journals VALUES (10047, 2957, 'Issue', 15, NULL, '2020-11-24 16:42:21+07', false);
INSERT INTO public.journals VALUES (10048, 2997, 'Issue', 15, '', '2020-11-24 16:50:52+07', false);
INSERT INTO public.journals VALUES (10049, 2946, 'Issue', 33, '', '2020-11-24 16:54:58+07', false);
INSERT INTO public.journals VALUES (10050, 2998, 'Issue', 15, NULL, '2020-11-24 16:55:06+07', false);
INSERT INTO public.journals VALUES (10051, 2999, 'Issue', 15, NULL, '2020-11-24 16:55:07+07', false);
INSERT INTO public.journals VALUES (10052, 3000, 'Issue', 15, NULL, '2020-11-24 16:55:07+07', false);
INSERT INTO public.journals VALUES (10053, 2997, 'Issue', 15, NULL, '2020-11-24 16:55:17+07', false);
INSERT INTO public.journals VALUES (10054, 2951, 'Issue', 33, '', '2020-11-24 16:57:10+07', false);
INSERT INTO public.journals VALUES (10055, 2854, 'Issue', 40, NULL, '2020-11-24 16:58:10+07', false);
INSERT INTO public.journals VALUES (10056, 2854, 'Issue', 40, NULL, '2020-11-24 16:58:18+07', false);
INSERT INTO public.journals VALUES (10057, 2968, 'Issue', 10, NULL, '2020-11-24 17:03:06+07', false);
INSERT INTO public.journals VALUES (10058, 2967, 'Issue', 10, NULL, '2020-11-24 17:03:20+07', false);
INSERT INTO public.journals VALUES (10059, 2949, 'Issue', 32, NULL, '2020-11-25 07:57:03+07', false);
INSERT INTO public.journals VALUES (10060, 2946, 'Issue', 33, 'Xử lý bản đồ và nhập liệu', '2020-11-25 08:06:14+07', false);
INSERT INTO public.journals VALUES (10061, 2951, 'Issue', 33, 'xử lí bản đồ và nhập liệu', '2020-11-25 08:07:34+07', false);
INSERT INTO public.journals VALUES (10062, 2988, 'Issue', 39, '', '2020-11-25 08:44:12+07', false);
INSERT INTO public.journals VALUES (10063, 2989, 'Issue', 39, '', '2020-11-25 08:44:12+07', false);
INSERT INTO public.journals VALUES (10064, 2996, 'Issue', 39, '', '2020-11-25 08:44:12+07', false);
INSERT INTO public.journals VALUES (10065, 2946, 'Issue', 33, 'xử lí bản đồ', '2020-11-25 09:18:07+07', false);
INSERT INTO public.journals VALUES (10067, 2888, 'Issue', 10, NULL, '2020-11-25 11:24:08+07', false);
INSERT INTO public.journals VALUES (10068, 2888, 'Issue', 10, NULL, '2020-11-25 11:24:17+07', false);
INSERT INTO public.journals VALUES (10069, 2996, 'Issue', 39, NULL, '2020-11-25 13:09:19+07', false);
INSERT INTO public.journals VALUES (10070, 2996, 'Issue', 39, NULL, '2020-11-25 13:09:25+07', false);
INSERT INTO public.journals VALUES (10071, 2988, 'Issue', 39, NULL, '2020-11-25 13:09:51+07', false);
INSERT INTO public.journals VALUES (10072, 2988, 'Issue', 39, NULL, '2020-11-25 13:09:56+07', false);
INSERT INTO public.journals VALUES (10075, 2889, 'Issue', 10, NULL, '2020-11-25 14:49:23+07', false);
INSERT INTO public.journals VALUES (10076, 2889, 'Issue', 10, NULL, '2020-11-25 14:49:34+07', false);
INSERT INTO public.journals VALUES (10077, 2869, 'Issue', 8, NULL, '2020-11-25 15:43:28+07', false);
INSERT INTO public.journals VALUES (10078, 2869, 'Issue', 8, NULL, '2020-11-25 15:43:43+07', false);
INSERT INTO public.journals VALUES (10079, 2874, 'Issue', 5, NULL, '2020-11-25 15:58:11+07', false);
INSERT INTO public.journals VALUES (10080, 2809, 'Issue', 5, '', '2020-11-25 16:12:04+07', false);
INSERT INTO public.journals VALUES (10081, 2885, 'Issue', 10, NULL, '2020-11-25 16:16:40+07', false);
INSERT INTO public.journals VALUES (10082, 2885, 'Issue', 10, '', '2020-11-25 16:17:04+07', false);
INSERT INTO public.journals VALUES (10083, 2886, 'Issue', 10, '', '2020-11-25 16:17:42+07', false);
INSERT INTO public.journals VALUES (10084, 2887, 'Issue', 10, '', '2020-11-25 16:17:55+07', false);
INSERT INTO public.journals VALUES (10085, 2888, 'Issue', 10, '', '2020-11-25 16:18:09+07', false);
INSERT INTO public.journals VALUES (10086, 2889, 'Issue', 10, '', '2020-11-25 16:18:22+07', false);
INSERT INTO public.journals VALUES (10087, 2892, 'Issue', 10, '', '2020-11-25 16:18:37+07', false);
INSERT INTO public.journals VALUES (10088, 2893, 'Issue', 10, '', '2020-11-25 16:18:51+07', false);
INSERT INTO public.journals VALUES (10091, 2893, 'Issue', 10, '', '2020-11-25 16:19:45+07', false);
INSERT INTO public.journals VALUES (10092, 2809, 'Issue', 5, '', '2020-11-25 16:33:07+07', false);
INSERT INTO public.journals VALUES (10093, 2893, 'Issue', 10, NULL, '2020-11-25 16:59:15+07', false);
INSERT INTO public.journals VALUES (10094, 2893, 'Issue', 10, NULL, '2020-11-25 16:59:23+07', false);
INSERT INTO public.journals VALUES (10095, 2998, 'Issue', 15, NULL, '2020-11-25 17:09:09+07', false);
INSERT INTO public.journals VALUES (10096, 2999, 'Issue', 15, NULL, '2020-11-25 17:09:09+07', false);
INSERT INTO public.journals VALUES (10097, 3000, 'Issue', 15, NULL, '2020-11-25 17:09:09+07', false);
INSERT INTO public.journals VALUES (10098, 2989, 'Issue', 39, NULL, '2020-11-25 17:09:18+07', false);
INSERT INTO public.journals VALUES (10099, 2998, 'Issue', 15, NULL, '2020-11-25 17:09:26+07', false);
INSERT INTO public.journals VALUES (10100, 2999, 'Issue', 15, NULL, '2020-11-25 17:09:26+07', false);
INSERT INTO public.journals VALUES (10101, 3000, 'Issue', 15, NULL, '2020-11-25 17:09:26+07', false);
INSERT INTO public.journals VALUES (10102, 2989, 'Issue', 39, NULL, '2020-11-25 17:09:27+07', false);
INSERT INTO public.journals VALUES (10103, 3002, 'Issue', 32, NULL, '2020-11-26 08:09:07+07', false);
INSERT INTO public.journals VALUES (10104, 2951, 'Issue', 32, NULL, '2020-11-26 08:09:30+07', false);
INSERT INTO public.journals VALUES (10105, 2999, 'Issue', 15, '', '2020-11-26 08:19:33+07', false);
INSERT INTO public.journals VALUES (10106, 3000, 'Issue', 15, '', '2020-11-26 08:19:52+07', false);
INSERT INTO public.journals VALUES (10107, 2998, 'Issue', 15, '', '2020-11-26 08:20:18+07', false);
INSERT INTO public.journals VALUES (10108, 2998, 'Issue', 15, '', '2020-11-26 08:21:04+07', false);
INSERT INTO public.journals VALUES (10109, 3008, 'Issue', 15, NULL, '2020-11-26 08:23:59+07', false);
INSERT INTO public.journals VALUES (10110, 3007, 'Issue', 39, '', '2020-11-26 08:53:30+07', false);
INSERT INTO public.journals VALUES (10111, 2892, 'Issue', 10, NULL, '2020-11-26 09:56:03+07', false);
INSERT INTO public.journals VALUES (10112, 2967, 'Issue', 10, NULL, '2020-11-26 10:50:09+07', false);
INSERT INTO public.journals VALUES (10113, 2968, 'Issue', 10, NULL, '2020-11-26 10:50:34+07', false);
INSERT INTO public.journals VALUES (10114, 2629, 'Issue', 5, NULL, '2020-11-26 13:34:43+07', false);
INSERT INTO public.journals VALUES (10115, 2630, 'Issue', 5, NULL, '2020-11-26 13:34:43+07', false);
INSERT INTO public.journals VALUES (10116, 2716, 'Issue', 5, NULL, '2020-11-26 13:34:43+07', false);
INSERT INTO public.journals VALUES (10117, 2717, 'Issue', 5, NULL, '2020-11-26 13:34:44+07', false);
INSERT INTO public.journals VALUES (10118, 2814, 'Issue', 5, NULL, '2020-11-26 13:34:44+07', false);
INSERT INTO public.journals VALUES (10119, 2846, 'Issue', 5, NULL, '2020-11-26 13:34:44+07', false);
INSERT INTO public.journals VALUES (10120, 2852, 'Issue', 5, NULL, '2020-11-26 13:34:44+07', false);
INSERT INTO public.journals VALUES (10121, 2853, 'Issue', 5, NULL, '2020-11-26 13:34:44+07', false);
INSERT INTO public.journals VALUES (10122, 2854, 'Issue', 5, NULL, '2020-11-26 13:34:44+07', false);
INSERT INTO public.journals VALUES (10123, 2869, 'Issue', 5, NULL, '2020-11-26 13:34:44+07', false);
INSERT INTO public.journals VALUES (10124, 2875, 'Issue', 5, NULL, '2020-11-26 13:34:44+07', false);
INSERT INTO public.journals VALUES (10125, 2880, 'Issue', 5, NULL, '2020-11-26 13:34:44+07', false);
INSERT INTO public.journals VALUES (10126, 2881, 'Issue', 5, NULL, '2020-11-26 13:34:44+07', false);
INSERT INTO public.journals VALUES (10127, 2884, 'Issue', 5, NULL, '2020-11-26 13:34:45+07', false);
INSERT INTO public.journals VALUES (10128, 2885, 'Issue', 5, NULL, '2020-11-26 13:34:45+07', false);
INSERT INTO public.journals VALUES (10129, 2888, 'Issue', 5, NULL, '2020-11-26 13:34:45+07', false);
INSERT INTO public.journals VALUES (10130, 2889, 'Issue', 5, NULL, '2020-11-26 13:34:45+07', false);
INSERT INTO public.journals VALUES (10131, 2893, 'Issue', 5, NULL, '2020-11-26 13:34:45+07', false);
INSERT INTO public.journals VALUES (10132, 2940, 'Issue', 5, NULL, '2020-11-26 13:34:45+07', false);
INSERT INTO public.journals VALUES (10133, 2945, 'Issue', 5, NULL, '2020-11-26 13:34:45+07', false);
INSERT INTO public.journals VALUES (10134, 2953, 'Issue', 5, NULL, '2020-11-26 13:34:45+07', false);
INSERT INTO public.journals VALUES (10135, 2967, 'Issue', 5, NULL, '2020-11-26 13:34:45+07', false);
INSERT INTO public.journals VALUES (10136, 2968, 'Issue', 5, NULL, '2020-11-26 13:34:45+07', false);
INSERT INTO public.journals VALUES (10137, 2973, 'Issue', 5, NULL, '2020-11-26 13:34:46+07', false);
INSERT INTO public.journals VALUES (10138, 2981, 'Issue', 5, NULL, '2020-11-26 13:34:46+07', false);
INSERT INTO public.journals VALUES (10139, 2987, 'Issue', 5, NULL, '2020-11-26 13:34:46+07', false);
INSERT INTO public.journals VALUES (10140, 2988, 'Issue', 5, NULL, '2020-11-26 13:34:46+07', false);
INSERT INTO public.journals VALUES (10141, 2989, 'Issue', 5, NULL, '2020-11-26 13:34:46+07', false);
INSERT INTO public.journals VALUES (10142, 2995, 'Issue', 5, NULL, '2020-11-26 13:34:46+07', false);
INSERT INTO public.journals VALUES (10143, 2996, 'Issue', 5, NULL, '2020-11-26 13:34:46+07', false);
INSERT INTO public.journals VALUES (10144, 3006, 'Issue', 5, NULL, '2020-11-26 13:34:46+07', false);
INSERT INTO public.journals VALUES (10145, 3007, 'Issue', 5, NULL, '2020-11-26 13:34:46+07', false);
INSERT INTO public.journals VALUES (10146, 2959, 'Issue', 17, '', '2020-11-26 14:17:03+07', false);
INSERT INTO public.journals VALUES (10147, 2997, 'Issue', 17, '', '2020-11-26 14:17:36+07', false);
INSERT INTO public.journals VALUES (10148, 2966, 'Issue', 10, NULL, '2020-11-26 15:39:54+07', false);
INSERT INTO public.journals VALUES (10149, 2966, 'Issue', 10, NULL, '2020-11-26 15:40:13+07', false);
INSERT INTO public.journals VALUES (10150, 3008, 'Issue', 17, '', '2020-11-26 17:05:48+07', false);
INSERT INTO public.journals VALUES (10151, 3010, 'Issue', 15, NULL, '2020-11-26 17:08:22+07', false);
INSERT INTO public.journals VALUES (10152, 3010, 'Issue', 15, NULL, '2020-11-26 17:08:31+07', false);
INSERT INTO public.journals VALUES (10153, 2991, 'Issue', 41, '', '2020-11-26 23:52:50+07', false);
INSERT INTO public.journals VALUES (10154, 2878, 'Issue', 41, '', '2020-11-26 23:53:07+07', false);
INSERT INTO public.journals VALUES (10155, 2965, 'Issue', 10, NULL, '2020-11-27 08:32:28+07', false);
INSERT INTO public.journals VALUES (10156, 2965, 'Issue', 10, NULL, '2020-11-27 08:32:34+07', false);
INSERT INTO public.journals VALUES (10157, 3011, 'Issue', 8, '', '2020-11-27 10:38:28+07', false);
INSERT INTO public.journals VALUES (10158, 2865, 'Issue', 8, NULL, '2020-11-27 10:38:40+07', false);
INSERT INTO public.journals VALUES (10159, 2866, 'Issue', 8, NULL, '2020-11-27 10:38:40+07', false);
INSERT INTO public.journals VALUES (10160, 2867, 'Issue', 8, NULL, '2020-11-27 10:38:40+07', false);
INSERT INTO public.journals VALUES (10161, 2939, 'Issue', 8, NULL, '2020-11-27 10:38:40+07', false);
INSERT INTO public.journals VALUES (10162, 3011, 'Issue', 8, NULL, '2020-11-27 10:38:40+07', false);
INSERT INTO public.journals VALUES (10163, 2865, 'Issue', 8, NULL, '2020-11-27 10:38:48+07', false);
INSERT INTO public.journals VALUES (10164, 2866, 'Issue', 8, NULL, '2020-11-27 10:38:48+07', false);
INSERT INTO public.journals VALUES (10165, 2867, 'Issue', 8, NULL, '2020-11-27 10:38:49+07', false);
INSERT INTO public.journals VALUES (10166, 2939, 'Issue', 8, NULL, '2020-11-27 10:38:49+07', false);
INSERT INTO public.journals VALUES (10167, 3011, 'Issue', 8, NULL, '2020-11-27 10:38:49+07', false);
INSERT INTO public.journals VALUES (10168, 3008, 'Issue', 17, '', '2020-11-27 14:39:32+07', false);
INSERT INTO public.journals VALUES (10169, 2979, 'Issue', 17, '', '2020-11-27 14:45:36+07', false);
INSERT INTO public.journals VALUES (10170, 2780, 'Issue', 28, '', '2020-11-27 14:45:38+07', false);
INSERT INTO public.journals VALUES (10171, 2754, 'Issue', 28, '', '2020-11-27 14:46:47+07', false);
INSERT INTO public.journals VALUES (10172, 2979, 'Issue', 17, '[Click me](pornhub.com "Click me")', '2020-11-27 14:47:16+07', false);
INSERT INTO public.journals VALUES (10173, 2969, 'Issue', 28, '', '2020-11-27 14:47:17+07', false);
INSERT INTO public.journals VALUES (10174, 2970, 'Issue', 28, '', '2020-11-27 14:47:44+07', false);
INSERT INTO public.journals VALUES (10175, 2971, 'Issue', 28, '', '2020-11-27 14:48:07+07', false);
INSERT INTO public.journals VALUES (10176, 3008, 'Issue', 17, '', '2020-11-27 14:48:15+07', false);
INSERT INTO public.journals VALUES (10177, 3015, 'Issue', 28, '', '2020-11-27 14:53:14+07', false);
INSERT INTO public.journals VALUES (10178, 3020, 'Issue', 8, '', '2020-11-27 15:32:21+07', false);
INSERT INTO public.journals VALUES (10179, 3021, 'Issue', 8, '', '2020-11-27 15:34:22+07', false);
INSERT INTO public.journals VALUES (10180, 3009, 'Issue', 15, '', '2020-11-27 16:54:17+07', false);
INSERT INTO public.journals VALUES (10181, 3024, 'Issue', 15, NULL, '2020-11-27 16:57:12+07', false);
INSERT INTO public.journals VALUES (10182, 3024, 'Issue', 15, NULL, '2020-11-27 16:57:23+07', false);
INSERT INTO public.journals VALUES (10183, 3008, 'Issue', 15, NULL, '2020-11-27 16:57:59+07', false);
INSERT INTO public.journals VALUES (10184, 2992, 'Issue', 37, '', '2020-11-28 07:53:56+07', false);
INSERT INTO public.journals VALUES (10185, 2993, 'Issue', 37, '', '2020-11-28 07:55:22+07', false);
INSERT INTO public.journals VALUES (10186, 2994, 'Issue', 37, '', '2020-11-28 07:55:22+07', false);
INSERT INTO public.journals VALUES (10187, 3023, 'Issue', 8, NULL, '2020-11-28 08:42:27+07', false);
INSERT INTO public.journals VALUES (10188, 3023, 'Issue', 8, NULL, '2020-11-28 08:42:42+07', false);
INSERT INTO public.journals VALUES (10189, 2856, 'Issue', 5, '', '2020-11-28 08:50:28+07', false);
INSERT INTO public.journals VALUES (10190, 2856, 'Issue', 5, NULL, '2020-11-28 08:51:00+07', false);
INSERT INTO public.journals VALUES (10191, 2865, 'Issue', 5, NULL, '2020-11-28 08:51:00+07', false);
INSERT INTO public.journals VALUES (10192, 2866, 'Issue', 5, NULL, '2020-11-28 08:51:00+07', false);
INSERT INTO public.journals VALUES (10193, 2867, 'Issue', 5, NULL, '2020-11-28 08:51:00+07', false);
INSERT INTO public.journals VALUES (10194, 2878, 'Issue', 5, NULL, '2020-11-28 08:51:01+07', false);
INSERT INTO public.journals VALUES (10195, 2939, 'Issue', 5, NULL, '2020-11-28 08:51:01+07', false);
INSERT INTO public.journals VALUES (10196, 2965, 'Issue', 5, NULL, '2020-11-28 08:51:01+07', false);
INSERT INTO public.journals VALUES (10197, 2966, 'Issue', 5, NULL, '2020-11-28 08:51:01+07', false);
INSERT INTO public.journals VALUES (10198, 2991, 'Issue', 5, NULL, '2020-11-28 08:51:01+07', false);
INSERT INTO public.journals VALUES (10199, 3011, 'Issue', 5, NULL, '2020-11-28 08:51:01+07', false);
INSERT INTO public.journals VALUES (10200, 3023, 'Issue', 5, NULL, '2020-11-28 08:51:01+07', false);
INSERT INTO public.journals VALUES (10201, 2848, 'Issue', 5, '', '2020-11-28 08:53:18+07', false);
INSERT INTO public.journals VALUES (10202, 2848, 'Issue', 5, NULL, '2020-11-28 09:08:09+07', false);
INSERT INTO public.journals VALUES (10203, 2984, 'Issue', 19, '', '2020-11-28 09:12:13+07', false);
INSERT INTO public.journals VALUES (10204, 2670, 'Issue', 19, NULL, '2020-11-28 09:13:38+07', false);
INSERT INTO public.journals VALUES (10205, 2831, 'Issue', 19, NULL, '2020-11-28 09:13:48+07', false);
INSERT INTO public.journals VALUES (10206, 2812, 'Issue', 19, NULL, '2020-11-28 09:14:08+07', false);
INSERT INTO public.journals VALUES (10207, 3025, 'Issue', 19, '', '2020-11-28 09:16:32+07', false);
INSERT INTO public.journals VALUES (10208, 2850, 'Issue', 5, '', '2020-11-28 09:29:15+07', false);
INSERT INTO public.journals VALUES (10209, 2851, 'Issue', 5, '', '2020-11-28 09:29:15+07', false);
INSERT INTO public.journals VALUES (10210, 2850, 'Issue', 5, NULL, '2020-11-28 09:29:54+07', false);
INSERT INTO public.journals VALUES (10211, 2851, 'Issue', 5, NULL, '2020-11-28 09:29:54+07', false);
INSERT INTO public.journals VALUES (10212, 2743, 'Issue', 5, '', '2020-11-28 09:30:52+07', false);
INSERT INTO public.journals VALUES (10213, 2743, 'Issue', 5, '', '2020-11-28 09:31:08+07', false);
INSERT INTO public.journals VALUES (10214, 2743, 'Issue', 5, '', '2020-11-28 09:32:00+07', false);
INSERT INTO public.journals VALUES (10215, 2743, 'Issue', 5, NULL, '2020-11-28 09:32:11+07', false);
INSERT INTO public.journals VALUES (10216, 2811, 'Issue', 19, '**Trần Đồng : Quản lý form nhập liệu, form mẫu báo cáo**

*   Vẽ giao diện giống excel
*   Tạo, update template báo cáo
*   Tạo công thức row, column
*   Cập nhật dữ liệu trên form
*   Quản lý số liệu báo cáo

**Phạm Tính : Quản lý quy trình báo cáo**

*   Giao diện quản lý, theo dõi báo cáo
*   Giao diện cấu hình báo cáo
*   Giao diện quản lý assign báo cáo
*   Quản lý quy trình báo cáo
*   Giao diện tổng hợp báo cáo
*   Chức năng thống kê tổng quan báo cáo
*   Xây dựng bộ lọc báo cáo theo: lĩnh vực, loại, chế độ, đơn vị thực hiện, đơn vị nhận.
*   Xây dựng nội dung và mẫu đề cương báo cáo

**Ngọc Tiến : Quản lý account, tài khoản**

*   Giao diện quản lý account
*   Cấp account và phân quyền cho các đơn vị

**Văn Toàn : Quản lý API của hệ thống**

**Note: Thông tin cơ bản của 1 báo cáo:**

_*Đối tượng thực hiện báo cáo
Cơ quan nhận báo cáo
Quy trình thực hiện báo cáo
Tần suất thực hiện báo cáo
Nội dung và mẫu đề cương báo cáo
Loại báo cáo
Thời gian chốt số liệu báo cáo
Thời hạn gửi báo cáo
Chế độ báo cáo*_', '2020-11-28 09:48:22+07', false);
INSERT INTO public.journals VALUES (10217, 2670, 'Issue', 19, '', '2020-11-28 10:09:46+07', false);
INSERT INTO public.journals VALUES (10218, 2812, 'Issue', 19, '', '2020-11-28 10:10:16+07', false);
INSERT INTO public.journals VALUES (10219, 2831, 'Issue', 19, '', '2020-11-28 10:10:34+07', false);
INSERT INTO public.journals VALUES (10220, 3021, 'Issue', 8, NULL, '2020-11-28 15:06:03+07', false);
INSERT INTO public.journals VALUES (10221, 3022, 'Issue', 8, NULL, '2020-11-28 15:06:03+07', false);
INSERT INTO public.journals VALUES (10222, 3021, 'Issue', 8, NULL, '2020-11-28 15:06:16+07', false);
INSERT INTO public.journals VALUES (10223, 3022, 'Issue', 8, NULL, '2020-11-28 15:06:16+07', false);
INSERT INTO public.journals VALUES (10224, 2886, 'Issue', 10, '', '2020-11-28 15:13:43+07', false);
INSERT INTO public.journals VALUES (10225, 2887, 'Issue', 10, '', '2020-11-28 15:13:43+07', false);
INSERT INTO public.journals VALUES (10226, 2886, 'Issue', 10, '', '2020-11-28 15:14:02+07', false);
INSERT INTO public.journals VALUES (10227, 2887, 'Issue', 10, '', '2020-11-28 15:14:02+07', false);
INSERT INTO public.journals VALUES (10230, 2734, 'Issue', 41, '', '2020-11-28 16:41:49+07', false);
INSERT INTO public.journals VALUES (10231, 2974, 'Issue', 41, '', '2020-11-28 16:47:59+07', false);
INSERT INTO public.journals VALUES (10232, 3018, 'Issue', 8, '', '2020-11-28 17:04:31+07', false);
INSERT INTO public.journals VALUES (10233, 3019, 'Issue', 8, '', '2020-11-28 17:04:31+07', false);
INSERT INTO public.journals VALUES (10234, 3020, 'Issue', 8, '', '2020-11-28 17:04:31+07', false);
INSERT INTO public.journals VALUES (10235, 3027, 'Issue', 8, '', '2020-11-28 17:07:23+07', false);
INSERT INTO public.journals VALUES (10236, 2843, 'Issue', 5, NULL, '2020-11-28 17:08:17+07', false);
INSERT INTO public.journals VALUES (10237, 2844, 'Issue', 5, NULL, '2020-11-28 17:08:23+07', false);
INSERT INTO public.journals VALUES (10238, 2845, 'Issue', 5, NULL, '2020-11-28 17:08:36+07', false);
INSERT INTO public.journals VALUES (10239, 2843, 'Issue', 5, NULL, '2020-11-28 17:08:48+07', false);
INSERT INTO public.journals VALUES (10240, 2844, 'Issue', 5, NULL, '2020-11-28 17:08:49+07', false);
INSERT INTO public.journals VALUES (10241, 2845, 'Issue', 5, NULL, '2020-11-28 17:08:49+07', false);
INSERT INTO public.journals VALUES (10242, 2843, 'Issue', 5, NULL, '2020-11-28 17:08:55+07', false);
INSERT INTO public.journals VALUES (10243, 2844, 'Issue', 5, NULL, '2020-11-28 17:08:55+07', false);
INSERT INTO public.journals VALUES (10244, 2845, 'Issue', 5, NULL, '2020-11-28 17:08:56+07', false);
INSERT INTO public.journals VALUES (10245, 2847, 'Issue', 5, '', '2020-11-28 17:09:11+07', false);
INSERT INTO public.journals VALUES (10246, 2849, 'Issue', 5, '', '2020-11-28 17:09:11+07', false);
INSERT INTO public.journals VALUES (10247, 2847, 'Issue', 5, NULL, '2020-11-28 17:09:22+07', false);
INSERT INTO public.journals VALUES (10248, 2849, 'Issue', 5, NULL, '2020-11-28 17:09:22+07', false);
INSERT INTO public.journals VALUES (10249, 2734, 'Issue', 5, NULL, '2020-11-28 17:09:30+07', false);
INSERT INTO public.journals VALUES (10250, 2843, 'Issue', 5, NULL, '2020-11-28 17:09:30+07', false);
INSERT INTO public.journals VALUES (10251, 2844, 'Issue', 5, NULL, '2020-11-28 17:09:30+07', false);
INSERT INTO public.journals VALUES (10252, 2845, 'Issue', 5, NULL, '2020-11-28 17:09:31+07', false);
INSERT INTO public.journals VALUES (10253, 3021, 'Issue', 5, NULL, '2020-11-28 17:09:31+07', false);
INSERT INTO public.journals VALUES (10254, 3022, 'Issue', 5, NULL, '2020-11-28 17:09:31+07', false);
INSERT INTO public.journals VALUES (10255, 3026, 'Issue', 5, NULL, '2020-11-28 17:09:31+07', false);
INSERT INTO public.journals VALUES (10256, 3027, 'Issue', 5, NULL, '2020-11-28 17:09:31+07', false);
INSERT INTO public.journals VALUES (10257, 2962, 'Issue', 19, NULL, '2020-11-29 17:24:44+07', false);
INSERT INTO public.journals VALUES (10258, 3012, 'Issue', 19, NULL, '2020-11-29 17:24:55+07', false);
INSERT INTO public.journals VALUES (10259, 2735, 'Issue', 39, NULL, '2020-11-30 08:06:32+07', false);
INSERT INTO public.journals VALUES (10260, 2954, 'Issue', 39, '', '2020-11-30 08:07:10+07', false);
INSERT INTO public.journals VALUES (10261, 2955, 'Issue', 39, '', '2020-11-30 08:07:10+07', false);
INSERT INTO public.journals VALUES (10262, 3008, 'Issue', 15, '', '2020-11-30 08:19:00+07', false);
INSERT INTO public.journals VALUES (10263, 3031, 'Issue', 15, NULL, '2020-11-30 08:22:03+07', false);
INSERT INTO public.journals VALUES (10264, 3032, 'Issue', 15, NULL, '2020-11-30 08:22:03+07', false);
INSERT INTO public.journals VALUES (10265, 3033, 'Issue', 15, NULL, '2020-11-30 08:22:03+07', false);
INSERT INTO public.journals VALUES (10266, 2749, 'Issue', 5, '', '2020-11-30 08:37:12+07', false);
INSERT INTO public.journals VALUES (10267, 2749, 'Issue', 8, NULL, '2020-11-30 08:37:25+07', false);
INSERT INTO public.journals VALUES (10268, 2749, 'Issue', 8, NULL, '2020-11-30 08:37:30+07', false);
INSERT INTO public.journals VALUES (10269, 2749, 'Issue', 5, NULL, '2020-11-30 08:38:31+07', false);
INSERT INTO public.journals VALUES (10270, 2847, 'Issue', 5, '', '2020-11-30 08:39:11+07', false);
INSERT INTO public.journals VALUES (10271, 2849, 'Issue', 5, '', '2020-11-30 08:39:11+07', false);
INSERT INTO public.journals VALUES (10272, 2850, 'Issue', 5, '', '2020-11-30 08:39:11+07', false);
INSERT INTO public.journals VALUES (10273, 2851, 'Issue', 5, '', '2020-11-30 08:39:11+07', false);
INSERT INTO public.journals VALUES (10274, 2894, 'Issue', 9, NULL, '2020-11-30 08:45:56+07', false);
INSERT INTO public.journals VALUES (10275, 3014, 'Issue', 28, '', '2020-11-30 08:47:21+07', false);
INSERT INTO public.journals VALUES (10276, 3016, 'Issue', 28, '', '2020-11-30 08:47:39+07', false);
INSERT INTO public.journals VALUES (10277, 3017, 'Issue', 28, '', '2020-11-30 08:47:54+07', false);
INSERT INTO public.journals VALUES (10278, 3018, 'Issue', 8, NULL, '2020-11-30 13:18:07+07', false);
INSERT INTO public.journals VALUES (10279, 3018, 'Issue', 8, NULL, '2020-11-30 13:18:13+07', false);
INSERT INTO public.journals VALUES (10280, 3042, 'Issue', 41, '', '2020-11-30 13:25:58+07', false);
INSERT INTO public.journals VALUES (10281, 2850, 'Issue', 5, '', '2020-11-30 14:08:06+07', false);
INSERT INTO public.journals VALUES (10282, 2851, 'Issue', 5, '', '2020-11-30 14:08:06+07', false);
INSERT INTO public.journals VALUES (10283, 3044, 'Issue', 5, '', '2020-11-30 14:08:24+07', false);
INSERT INTO public.journals VALUES (10284, 2977, 'Issue', 17, '', '2020-11-30 14:18:02+07', false);
INSERT INTO public.journals VALUES (10285, 3028, 'Issue', 10, NULL, '2020-11-30 14:23:34+07', false);
INSERT INTO public.journals VALUES (10286, 3028, 'Issue', 10, NULL, '2020-11-30 14:23:55+07', false);
INSERT INTO public.journals VALUES (10287, 3043, 'Issue', 41, '', '2020-11-30 15:00:34+07', false);
INSERT INTO public.journals VALUES (10288, 2974, 'Issue', 41, '', '2020-11-30 15:00:51+07', false);
INSERT INTO public.journals VALUES (10289, 2948, 'Issue', 33, NULL, '2020-11-30 15:06:49+07', false);
INSERT INTO public.journals VALUES (10290, 2947, 'Issue', 33, NULL, '2020-11-30 15:06:58+07', false);
INSERT INTO public.journals VALUES (10291, 3008, 'Issue', 15, NULL, '2020-11-30 15:42:36+07', false);
INSERT INTO public.journals VALUES (10292, 3031, 'Issue', 15, NULL, '2020-11-30 15:42:37+07', false);
INSERT INTO public.journals VALUES (10293, 3032, 'Issue', 15, NULL, '2020-11-30 15:42:37+07', false);
INSERT INTO public.journals VALUES (10294, 3033, 'Issue', 15, NULL, '2020-11-30 15:42:37+07', false);
INSERT INTO public.journals VALUES (10295, 3031, 'Issue', 15, NULL, '2020-11-30 15:43:03+07', false);
INSERT INTO public.journals VALUES (10296, 3032, 'Issue', 15, NULL, '2020-11-30 15:43:04+07', false);
INSERT INTO public.journals VALUES (10297, 3033, 'Issue', 15, NULL, '2020-11-30 15:43:04+07', false);
INSERT INTO public.journals VALUES (10298, 3031, 'Issue', 15, NULL, '2020-11-30 15:43:13+07', false);
INSERT INTO public.journals VALUES (10299, 3032, 'Issue', 15, NULL, '2020-11-30 15:43:13+07', false);
INSERT INTO public.journals VALUES (10300, 3033, 'Issue', 15, NULL, '2020-11-30 15:43:13+07', false);
INSERT INTO public.journals VALUES (10301, 3012, 'Issue', 12, '', '2020-11-30 16:14:10+07', false);
INSERT INTO public.journals VALUES (10302, 3053, 'Issue', 40, '', '2020-11-30 16:15:47+07', false);
INSERT INTO public.journals VALUES (10303, 3053, 'Issue', 40, '', '2020-11-30 16:19:02+07', false);
INSERT INTO public.journals VALUES (10304, 2977, 'Issue', 17, '', '2020-11-30 16:35:55+07', false);
INSERT INTO public.journals VALUES (10305, 3039, 'Issue', 38, NULL, '2020-11-30 16:49:59+07', false);
INSERT INTO public.journals VALUES (10306, 3039, 'Issue', 38, NULL, '2020-11-30 16:50:17+07', false);
INSERT INTO public.journals VALUES (10307, 2951, 'Issue', 32, NULL, '2020-11-30 17:00:06+07', false);
INSERT INTO public.journals VALUES (10308, 2812, 'Issue', 19, '', '2020-12-01 08:13:59+07', false);
INSERT INTO public.journals VALUES (10309, 2886, 'Issue', 10, '', '2020-12-01 08:14:23+07', false);
INSERT INTO public.journals VALUES (10310, 2887, 'Issue', 10, '', '2020-12-01 08:14:23+07', false);
INSERT INTO public.journals VALUES (10311, 2962, 'Issue', 19, '', '2020-12-01 08:14:52+07', false);
INSERT INTO public.journals VALUES (10312, 2954, 'Issue', 39, '', '2020-12-01 08:28:26+07', false);
INSERT INTO public.journals VALUES (10313, 2955, 'Issue', 39, '', '2020-12-01 08:28:26+07', false);
INSERT INTO public.journals VALUES (10314, 3053, 'Issue', 39, '', '2020-12-01 08:28:26+07', false);
INSERT INTO public.journals VALUES (10315, 3054, 'Issue', 39, '', '2020-12-01 08:28:26+07', false);
INSERT INTO public.journals VALUES (10316, 3061, 'Issue', 10, NULL, '2020-12-01 09:16:12+07', false);
INSERT INTO public.journals VALUES (10317, 3061, 'Issue', 10, NULL, '2020-12-01 09:16:19+07', false);
INSERT INTO public.journals VALUES (10318, 3062, 'Issue', 10, '', '2020-12-01 09:47:06+07', false);
INSERT INTO public.journals VALUES (10319, 3062, 'Issue', 10, '', '2020-12-01 10:12:08+07', false);
INSERT INTO public.journals VALUES (10320, 3066, 'Issue', 10, NULL, '2020-12-01 10:14:05+07', false);
INSERT INTO public.journals VALUES (10321, 3066, 'Issue', 10, NULL, '2020-12-01 10:14:09+07', false);
INSERT INTO public.journals VALUES (10322, 3067, 'Issue', 10, NULL, '2020-12-01 14:10:02+07', false);
INSERT INTO public.journals VALUES (10323, 3067, 'Issue', 10, NULL, '2020-12-01 14:10:12+07', false);
INSERT INTO public.journals VALUES (10324, 3069, 'Issue', 17, '', '2020-12-01 15:10:51+07', false);
INSERT INTO public.journals VALUES (10325, 3070, 'Issue', 40, '', '2020-12-01 15:37:32+07', false);
INSERT INTO public.journals VALUES (10326, 3058, 'Issue', 41, '', '2020-12-01 15:46:11+07', false);
INSERT INTO public.journals VALUES (10327, 3071, 'Issue', 40, '', '2020-12-01 15:52:34+07', false);
INSERT INTO public.journals VALUES (10328, 2977, 'Issue', 15, NULL, '2020-12-01 16:54:14+07', false);
INSERT INTO public.journals VALUES (10329, 2976, 'Issue', 15, NULL, '2020-12-01 16:55:09+07', false);
INSERT INTO public.journals VALUES (10330, 2980, 'Issue', 15, NULL, '2020-12-01 16:55:09+07', false);
INSERT INTO public.journals VALUES (10331, 2976, 'Issue', 15, NULL, '2020-12-01 16:55:21+07', false);
INSERT INTO public.journals VALUES (10332, 2980, 'Issue', 15, NULL, '2020-12-01 16:55:21+07', false);
INSERT INTO public.journals VALUES (10333, 2978, 'Issue', 17, '', '2020-12-01 16:55:31+07', false);
INSERT INTO public.journals VALUES (10334, 2976, 'Issue', 15, NULL, '2020-12-01 16:55:32+07', false);
INSERT INTO public.journals VALUES (10335, 2980, 'Issue', 15, NULL, '2020-12-01 16:55:32+07', false);
INSERT INTO public.journals VALUES (10336, 2976, 'Issue', 15, '', '2020-12-01 16:55:57+07', false);
INSERT INTO public.journals VALUES (10337, 2980, 'Issue', 15, '', '2020-12-01 16:56:31+07', false);
INSERT INTO public.journals VALUES (10338, 2976, 'Issue', 15, '', '2020-12-01 16:58:59+07', false);
INSERT INTO public.journals VALUES (10339, 3074, 'Issue', 15, '', '2020-12-01 17:00:40+07', false);
INSERT INTO public.journals VALUES (10340, 3074, 'Issue', 15, NULL, '2020-12-01 17:01:02+07', false);
INSERT INTO public.journals VALUES (10341, 3074, 'Issue', 15, NULL, '2020-12-01 17:01:25+07', false);
INSERT INTO public.journals VALUES (10342, 3074, 'Issue', 15, NULL, '2020-12-01 17:01:32+07', false);
INSERT INTO public.journals VALUES (10343, 3076, 'Issue', 10, '', '2020-12-02 08:49:13+07', false);
INSERT INTO public.journals VALUES (10344, 3072, 'Issue', 41, '', '2020-12-02 09:28:07+07', false);
INSERT INTO public.journals VALUES (10345, 3072, 'Issue', 41, '', '2020-12-02 09:28:32+07', false);
INSERT INTO public.journals VALUES (10346, 3069, 'Issue', 17, '', '2020-12-02 09:36:03+07', false);
INSERT INTO public.journals VALUES (10347, 2990, 'Issue', 17, '', '2020-12-02 09:36:58+07', false);
INSERT INTO public.journals VALUES (10348, 2943, 'Issue', 17, '', '2020-12-02 09:37:27+07', false);
INSERT INTO public.journals VALUES (10349, 3077, 'Issue', 15, '', '2020-12-02 10:31:42+07', false);
INSERT INTO public.journals VALUES (10350, 3044, 'Issue', 5, NULL, '2020-12-02 10:43:53+07', false);
INSERT INTO public.journals VALUES (10351, 3045, 'Issue', 5, NULL, '2020-12-02 10:43:53+07', false);
INSERT INTO public.journals VALUES (10352, 3046, 'Issue', 5, NULL, '2020-12-02 10:43:53+07', false);
INSERT INTO public.journals VALUES (10353, 3047, 'Issue', 5, NULL, '2020-12-02 10:43:54+07', false);
INSERT INTO public.journals VALUES (10354, 3048, 'Issue', 5, NULL, '2020-12-02 10:43:54+07', false);
INSERT INTO public.journals VALUES (10355, 3049, 'Issue', 5, NULL, '2020-12-02 10:43:54+07', false);
INSERT INTO public.journals VALUES (10356, 3046, 'Issue', 41, '', '2020-12-02 11:12:10+07', false);
INSERT INTO public.journals VALUES (10357, 3047, 'Issue', 41, '', '2020-12-02 11:12:26+07', false);
INSERT INTO public.journals VALUES (10358, 3048, 'Issue', 41, '', '2020-12-02 11:12:44+07', false);
INSERT INTO public.journals VALUES (10359, 3079, 'Issue', 41, '', '2020-12-02 11:14:14+07', false);
INSERT INTO public.journals VALUES (10360, 2954, 'Issue', 39, '', '2020-12-02 14:57:25+07', false);
INSERT INTO public.journals VALUES (10361, 2955, 'Issue', 39, '', '2020-12-02 14:57:58+07', false);
INSERT INTO public.journals VALUES (10362, 3053, 'Issue', 39, '', '2020-12-02 14:57:58+07', false);
INSERT INTO public.journals VALUES (10363, 3054, 'Issue', 39, '', '2020-12-02 14:57:58+07', false);
INSERT INTO public.journals VALUES (10364, 3062, 'Issue', 10, NULL, '2020-12-02 16:19:43+07', false);
INSERT INTO public.journals VALUES (10365, 3062, 'Issue', 10, NULL, '2020-12-02 16:19:53+07', false);
INSERT INTO public.journals VALUES (10366, 3087, 'Issue', 15, NULL, '2020-12-02 16:27:25+07', false);
INSERT INTO public.journals VALUES (10367, 3087, 'Issue', 15, NULL, '2020-12-02 16:27:32+07', false);
INSERT INTO public.journals VALUES (10368, 3078, 'Issue', 41, '', '2020-12-02 16:34:11+07', false);
INSERT INTO public.journals VALUES (10369, 2455, 'Issue', 5, '', '2020-12-03 09:00:31+07', false);
INSERT INTO public.journals VALUES (10370, 3050, 'Issue', 8, NULL, '2020-12-03 10:13:22+07', false);
INSERT INTO public.journals VALUES (10371, 3070, 'Issue', 8, NULL, '2020-12-03 10:13:22+07', false);
INSERT INTO public.journals VALUES (10372, 3050, 'Issue', 8, NULL, '2020-12-03 10:13:31+07', false);
INSERT INTO public.journals VALUES (10373, 3070, 'Issue', 8, NULL, '2020-12-03 10:13:31+07', false);
INSERT INTO public.journals VALUES (10374, 3040, 'Issue', 8, NULL, '2020-12-03 10:14:00+07', false);
INSERT INTO public.journals VALUES (10375, 3041, 'Issue', 8, NULL, '2020-12-03 10:14:00+07', false);
INSERT INTO public.journals VALUES (10376, 3040, 'Issue', 8, NULL, '2020-12-03 10:14:06+07', false);
INSERT INTO public.journals VALUES (10377, 3041, 'Issue', 8, NULL, '2020-12-03 10:14:06+07', false);
INSERT INTO public.journals VALUES (10378, 3071, 'Issue', 8, NULL, '2020-12-03 10:19:41+07', false);
INSERT INTO public.journals VALUES (10379, 3071, 'Issue', 8, NULL, '2020-12-03 10:19:55+07', false);
INSERT INTO public.journals VALUES (10380, 2847, 'Issue', 40, '', '2020-12-03 10:57:26+07', false);
INSERT INTO public.journals VALUES (10381, 2849, 'Issue', 40, '', '2020-12-03 10:57:26+07', false);
INSERT INTO public.journals VALUES (10382, 3084, 'Issue', 40, NULL, '2020-12-03 10:59:24+07', false);
INSERT INTO public.journals VALUES (10383, 3084, 'Issue', 40, NULL, '2020-12-03 10:59:30+07', false);
INSERT INTO public.journals VALUES (10384, 3094, 'Issue', 40, NULL, '2020-12-03 11:07:02+07', false);
INSERT INTO public.journals VALUES (10385, 3091, 'Issue', 8, NULL, '2020-12-03 11:12:53+07', false);
INSERT INTO public.journals VALUES (10386, 3091, 'Issue', 8, NULL, '2020-12-03 11:13:09+07', false);
INSERT INTO public.journals VALUES (10387, 3076, 'Issue', 10, NULL, '2020-12-03 11:21:35+07', false);
INSERT INTO public.journals VALUES (10388, 3076, 'Issue', 10, NULL, '2020-12-03 11:21:45+07', false);
INSERT INTO public.journals VALUES (10389, 3076, 'Issue', 10, NULL, '2020-12-03 11:22:09+07', false);
INSERT INTO public.journals VALUES (10390, 3076, 'Issue', 10, NULL, '2020-12-03 11:22:16+07', false);
INSERT INTO public.journals VALUES (10391, 3059, 'Issue', 38, NULL, '2020-12-03 13:40:13+07', false);
INSERT INTO public.journals VALUES (10392, 3098, 'Issue', 40, NULL, '2020-12-03 14:12:09+07', false);
INSERT INTO public.journals VALUES (10393, 3098, 'Issue', 40, NULL, '2020-12-03 14:12:16+07', false);
INSERT INTO public.journals VALUES (10394, 3098, 'Issue', 40, '', '2020-12-03 14:17:05+07', false);
INSERT INTO public.journals VALUES (10395, 3095, 'Issue', 40, NULL, '2020-12-03 15:06:44+07', false);
INSERT INTO public.journals VALUES (10396, 3096, 'Issue', 40, NULL, '2020-12-03 15:06:55+07', false);
INSERT INTO public.journals VALUES (10397, 3093, 'Issue', 40, NULL, '2020-12-03 15:09:28+07', false);
INSERT INTO public.journals VALUES (10398, 3098, 'Issue', 41, '', '2020-12-03 15:11:10+07', false);
INSERT INTO public.journals VALUES (10399, 2831, 'Issue', 19, '', '2020-12-03 16:37:17+07', false);
INSERT INTO public.journals VALUES (10400, 3012, 'Issue', 19, '', '2020-12-03 16:38:15+07', false);
INSERT INTO public.journals VALUES (10401, 3039, 'Issue', 19, '', '2020-12-03 16:38:32+07', false);
INSERT INTO public.journals VALUES (10402, 3054, 'Issue', 40, NULL, '2020-12-03 16:43:59+07', false);
INSERT INTO public.journals VALUES (10403, 3053, 'Issue', 40, NULL, '2020-12-03 16:44:16+07', false);
INSERT INTO public.journals VALUES (10404, 3085, 'Issue', 39, '', '2020-12-03 16:58:07+07', false);
INSERT INTO public.journals VALUES (10405, 3086, 'Issue', 39, '', '2020-12-03 16:58:07+07', false);
INSERT INTO public.journals VALUES (10406, 3071, 'Issue', 5, '', '2020-12-04 08:07:47+07', false);
INSERT INTO public.journals VALUES (10407, 2974, 'Issue', 5, NULL, '2020-12-04 08:08:01+07', false);
INSERT INTO public.journals VALUES (10408, 3055, 'Issue', 5, NULL, '2020-12-04 08:08:10+07', false);
INSERT INTO public.journals VALUES (10409, 3056, 'Issue', 5, NULL, '2020-12-04 08:08:10+07', false);
INSERT INTO public.journals VALUES (10410, 3068, 'Issue', 5, NULL, '2020-12-04 08:08:23+07', false);
INSERT INTO public.journals VALUES (10411, 3063, 'Issue', 10, '', '2020-12-04 08:12:16+07', false);
INSERT INTO public.journals VALUES (10412, 3093, 'Issue', 40, NULL, '2020-12-04 08:12:41+07', false);
INSERT INTO public.journals VALUES (10413, 3095, 'Issue', 40, NULL, '2020-12-04 08:12:41+07', false);
INSERT INTO public.journals VALUES (10414, 3096, 'Issue', 40, NULL, '2020-12-04 08:12:41+07', false);
INSERT INTO public.journals VALUES (10415, 2850, 'Issue', 40, '', '2020-12-04 08:13:41+07', false);
INSERT INTO public.journals VALUES (10416, 2851, 'Issue', 40, '', '2020-12-04 08:13:41+07', false);
INSERT INTO public.journals VALUES (10417, 3080, 'Issue', 40, '', '2020-12-04 08:13:41+07', false);
INSERT INTO public.journals VALUES (10418, 3081, 'Issue', 40, '', '2020-12-04 08:13:41+07', false);
INSERT INTO public.journals VALUES (10419, 3082, 'Issue', 40, '', '2020-12-04 08:13:41+07', false);
INSERT INTO public.journals VALUES (10420, 3083, 'Issue', 40, '', '2020-12-04 08:13:41+07', false);
INSERT INTO public.journals VALUES (10421, 3092, 'Issue', 40, '', '2020-12-04 08:13:41+07', false);
INSERT INTO public.journals VALUES (10422, 3102, 'Issue', 40, '', '2020-12-04 08:13:41+07', false);
INSERT INTO public.journals VALUES (10423, 3063, 'Issue', 10, '', '2020-12-04 08:17:47+07', false);
INSERT INTO public.journals VALUES (10424, 3063, 'Issue', 10, '', '2020-12-04 08:19:31+07', false);
INSERT INTO public.journals VALUES (10425, 2886, 'Issue', 10, '', '2020-12-04 08:23:26+07', false);
INSERT INTO public.journals VALUES (10426, 2887, 'Issue', 10, '', '2020-12-04 08:23:26+07', false);
INSERT INTO public.journals VALUES (10427, 3075, 'Issue', 10, '', '2020-12-04 08:23:26+07', false);
INSERT INTO public.journals VALUES (10428, 3064, 'Issue', 10, '', '2020-12-04 08:24:02+07', false);
INSERT INTO public.journals VALUES (10429, 3065, 'Issue', 10, '', '2020-12-04 08:24:02+07', false);
INSERT INTO public.journals VALUES (10430, 3143, 'Issue', 9, '', '2020-12-04 09:39:38+07', false);
INSERT INTO public.journals VALUES (10431, 3154, 'Issue', 10, '', '2020-12-04 09:45:56+07', false);
INSERT INTO public.journals VALUES (10432, 3097, 'Issue', 10, NULL, '2020-12-04 10:30:35+07', false);
INSERT INTO public.journals VALUES (10433, 3097, 'Issue', 10, NULL, '2020-12-04 10:30:47+07', false);
INSERT INTO public.journals VALUES (10434, 2455, 'Issue', 8, NULL, '2020-12-04 10:35:42+07', false);
INSERT INTO public.journals VALUES (10435, 3103, 'Issue', 8, NULL, '2020-12-04 10:35:42+07', false);
INSERT INTO public.journals VALUES (10436, 2455, 'Issue', 8, NULL, '2020-12-04 10:35:50+07', false);
INSERT INTO public.journals VALUES (10437, 3103, 'Issue', 8, NULL, '2020-12-04 10:35:50+07', false);
INSERT INTO public.journals VALUES (10438, 3174, 'Issue', 10, NULL, '2020-12-04 14:52:38+07', false);
INSERT INTO public.journals VALUES (10439, 3174, 'Issue', 10, NULL, '2020-12-04 14:52:48+07', false);
INSERT INTO public.journals VALUES (10440, 3126, 'Issue', 17, '', '2020-12-04 15:19:42+07', false);
INSERT INTO public.journals VALUES (10441, 3127, 'Issue', 17, '', '2020-12-04 15:19:43+07', false);
INSERT INTO public.journals VALUES (10442, 3128, 'Issue', 17, '', '2020-12-04 15:19:43+07', false);
INSERT INTO public.journals VALUES (10443, 3129, 'Issue', 17, '', '2020-12-04 15:19:44+07', false);
INSERT INTO public.journals VALUES (10444, 3130, 'Issue', 17, '', '2020-12-04 15:19:44+07', false);
INSERT INTO public.journals VALUES (10445, 3131, 'Issue', 17, '', '2020-12-04 15:19:44+07', false);
INSERT INTO public.journals VALUES (10446, 3133, 'Issue', 17, '', '2020-12-04 15:19:45+07', false);
INSERT INTO public.journals VALUES (10447, 3134, 'Issue', 17, '', '2020-12-04 15:19:45+07', false);
INSERT INTO public.journals VALUES (10448, 3135, 'Issue', 17, '', '2020-12-04 15:19:46+07', false);
INSERT INTO public.journals VALUES (10449, 3167, 'Issue', 17, '', '2020-12-04 15:25:33+07', false);
INSERT INTO public.journals VALUES (10450, 3168, 'Issue', 17, '', '2020-12-04 15:25:35+07', false);
INSERT INTO public.journals VALUES (10451, 3171, 'Issue', 17, '', '2020-12-04 15:25:35+07', false);
INSERT INTO public.journals VALUES (10452, 3175, 'Issue', 17, '', '2020-12-04 15:25:35+07', false);
INSERT INTO public.journals VALUES (10453, 3177, 'Issue', 17, '', '2020-12-04 15:25:36+07', false);
INSERT INTO public.journals VALUES (10454, 3178, 'Issue', 17, '', '2020-12-04 15:25:36+07', false);
INSERT INTO public.journals VALUES (10455, 3179, 'Issue', 17, '', '2020-12-04 15:25:36+07', false);
INSERT INTO public.journals VALUES (10456, 3151, 'Issue', 17, NULL, '2020-12-04 15:26:36+07', false);
INSERT INTO public.journals VALUES (10457, 3149, 'Issue', 17, '', '2020-12-04 15:27:40+07', false);
INSERT INTO public.journals VALUES (10458, 3150, 'Issue', 17, '', '2020-12-04 15:27:40+07', false);
INSERT INTO public.journals VALUES (10459, 3151, 'Issue', 17, '', '2020-12-04 15:27:41+07', false);
INSERT INTO public.journals VALUES (10460, 3153, 'Issue', 17, '', '2020-12-04 15:27:41+07', false);
INSERT INTO public.journals VALUES (10461, 3155, 'Issue', 17, '', '2020-12-04 15:27:41+07', false);
INSERT INTO public.journals VALUES (10462, 3156, 'Issue', 17, '', '2020-12-04 15:27:42+07', false);
INSERT INTO public.journals VALUES (10463, 3157, 'Issue', 17, '', '2020-12-04 15:27:42+07', false);
INSERT INTO public.journals VALUES (10464, 3149, 'Issue', 17, '', '2020-12-04 15:28:23+07', false);
INSERT INTO public.journals VALUES (10465, 3150, 'Issue', 17, '', '2020-12-04 15:28:24+07', false);
INSERT INTO public.journals VALUES (10466, 3151, 'Issue', 17, '', '2020-12-04 15:28:24+07', false);
INSERT INTO public.journals VALUES (10467, 3153, 'Issue', 17, '', '2020-12-04 15:28:24+07', false);
INSERT INTO public.journals VALUES (10468, 3155, 'Issue', 17, '', '2020-12-04 15:28:24+07', false);
INSERT INTO public.journals VALUES (10469, 3156, 'Issue', 17, '', '2020-12-04 15:28:25+07', false);
INSERT INTO public.journals VALUES (10470, 3157, 'Issue', 17, '', '2020-12-04 15:28:25+07', false);
INSERT INTO public.journals VALUES (10471, 3114, 'Issue', 15, NULL, '2020-12-04 15:30:41+07', false);
INSERT INTO public.journals VALUES (10472, 3115, 'Issue', 15, NULL, '2020-12-04 15:30:41+07', false);
INSERT INTO public.journals VALUES (10473, 3116, 'Issue', 15, NULL, '2020-12-04 15:30:42+07', false);
INSERT INTO public.journals VALUES (10474, 3118, 'Issue', 15, NULL, '2020-12-04 15:30:42+07', false);
INSERT INTO public.journals VALUES (10475, 3119, 'Issue', 15, NULL, '2020-12-04 15:30:42+07', false);
INSERT INTO public.journals VALUES (10476, 3120, 'Issue', 15, NULL, '2020-12-04 15:30:42+07', false);
INSERT INTO public.journals VALUES (10477, 3121, 'Issue', 15, NULL, '2020-12-04 15:30:43+07', false);
INSERT INTO public.journals VALUES (10478, 3114, 'Issue', 15, NULL, '2020-12-04 15:31:10+07', false);
INSERT INTO public.journals VALUES (10479, 3115, 'Issue', 15, NULL, '2020-12-04 15:31:11+07', false);
INSERT INTO public.journals VALUES (10480, 3116, 'Issue', 15, NULL, '2020-12-04 15:31:11+07', false);
INSERT INTO public.journals VALUES (10481, 3118, 'Issue', 15, NULL, '2020-12-04 15:31:11+07', false);
INSERT INTO public.journals VALUES (10482, 3119, 'Issue', 15, NULL, '2020-12-04 15:31:12+07', false);
INSERT INTO public.journals VALUES (10483, 3120, 'Issue', 15, NULL, '2020-12-04 15:31:12+07', false);
INSERT INTO public.journals VALUES (10484, 3121, 'Issue', 15, NULL, '2020-12-04 15:31:12+07', false);
INSERT INTO public.journals VALUES (10485, 3114, 'Issue', 15, '', '2020-12-04 15:31:45+07', false);
INSERT INTO public.journals VALUES (10486, 3115, 'Issue', 15, '', '2020-12-04 15:31:45+07', false);
INSERT INTO public.journals VALUES (10487, 3116, 'Issue', 15, '', '2020-12-04 15:31:46+07', false);
INSERT INTO public.journals VALUES (10488, 3118, 'Issue', 15, '', '2020-12-04 15:31:46+07', false);
INSERT INTO public.journals VALUES (10489, 3119, 'Issue', 15, '', '2020-12-04 15:31:46+07', false);
INSERT INTO public.journals VALUES (10490, 3120, 'Issue', 15, '', '2020-12-04 15:31:46+07', false);
INSERT INTO public.journals VALUES (10491, 3121, 'Issue', 15, '', '2020-12-04 15:31:47+07', false);
INSERT INTO public.journals VALUES (10492, 3114, 'Issue', 15, NULL, '2020-12-04 15:32:15+07', false);
INSERT INTO public.journals VALUES (10493, 3115, 'Issue', 15, NULL, '2020-12-04 15:32:15+07', false);
INSERT INTO public.journals VALUES (10494, 3116, 'Issue', 15, NULL, '2020-12-04 15:32:16+07', false);
INSERT INTO public.journals VALUES (10495, 3118, 'Issue', 15, NULL, '2020-12-04 15:32:16+07', false);
INSERT INTO public.journals VALUES (10496, 3119, 'Issue', 15, NULL, '2020-12-04 15:32:16+07', false);
INSERT INTO public.journals VALUES (10497, 3120, 'Issue', 15, NULL, '2020-12-04 15:32:16+07', false);
INSERT INTO public.journals VALUES (10498, 3121, 'Issue', 15, NULL, '2020-12-04 15:32:17+07', false);
INSERT INTO public.journals VALUES (10499, 3123, 'Issue', 15, '', '2020-12-04 15:33:08+07', false);
INSERT INTO public.journals VALUES (10500, 3124, 'Issue', 15, '', '2020-12-04 15:33:08+07', false);
INSERT INTO public.journals VALUES (10501, 3137, 'Issue', 15, '', '2020-12-04 15:33:09+07', false);
INSERT INTO public.journals VALUES (10502, 3138, 'Issue', 15, '', '2020-12-04 15:33:09+07', false);
INSERT INTO public.journals VALUES (10503, 3139, 'Issue', 15, '', '2020-12-04 15:33:09+07', false);
INSERT INTO public.journals VALUES (10504, 3141, 'Issue', 15, '', '2020-12-04 15:33:09+07', false);
INSERT INTO public.journals VALUES (10505, 3142, 'Issue', 15, '', '2020-12-04 15:33:10+07', false);
INSERT INTO public.journals VALUES (10506, 3181, 'Issue', 15, '', '2020-12-04 15:33:10+07', false);
INSERT INTO public.journals VALUES (10507, 3182, 'Issue', 15, '', '2020-12-04 15:33:10+07', false);
INSERT INTO public.journals VALUES (10508, 3137, 'Issue', 15, '', '2020-12-04 15:33:47+07', false);
INSERT INTO public.journals VALUES (10509, 3138, 'Issue', 15, '', '2020-12-04 15:33:48+07', false);
INSERT INTO public.journals VALUES (10510, 3139, 'Issue', 15, '', '2020-12-04 15:33:48+07', false);
INSERT INTO public.journals VALUES (10511, 3141, 'Issue', 15, '', '2020-12-04 15:33:48+07', false);
INSERT INTO public.journals VALUES (10512, 3142, 'Issue', 15, '', '2020-12-04 15:33:49+07', false);
INSERT INTO public.journals VALUES (10513, 3181, 'Issue', 15, '', '2020-12-04 15:33:49+07', false);
INSERT INTO public.journals VALUES (10514, 3182, 'Issue', 15, '', '2020-12-04 15:33:49+07', false);
INSERT INTO public.journals VALUES (10515, 3146, 'Issue', 15, '', '2020-12-04 15:35:00+07', false);
INSERT INTO public.journals VALUES (10516, 3147, 'Issue', 15, '', '2020-12-04 15:35:00+07', false);
INSERT INTO public.journals VALUES (10517, 3160, 'Issue', 15, '', '2020-12-04 15:35:01+07', false);
INSERT INTO public.journals VALUES (10518, 3164, 'Issue', 15, '', '2020-12-04 15:35:01+07', false);
INSERT INTO public.journals VALUES (10519, 3180, 'Issue', 15, '', '2020-12-04 15:35:01+07', false);
INSERT INTO public.journals VALUES (10520, 3183, 'Issue', 15, '', '2020-12-04 15:35:01+07', false);
INSERT INTO public.journals VALUES (10521, 3123, 'Issue', 15, NULL, '2020-12-04 15:35:24+07', false);
INSERT INTO public.journals VALUES (10522, 3124, 'Issue', 15, NULL, '2020-12-04 15:35:24+07', false);
INSERT INTO public.journals VALUES (10523, 3125, 'Issue', 17, '', '2020-12-04 15:37:13+07', false);
INSERT INTO public.journals VALUES (10524, 3126, 'Issue', 17, '', '2020-12-04 15:37:13+07', false);
INSERT INTO public.journals VALUES (10525, 3127, 'Issue', 17, '', '2020-12-04 15:37:14+07', false);
INSERT INTO public.journals VALUES (10526, 3128, 'Issue', 17, '', '2020-12-04 15:37:14+07', false);
INSERT INTO public.journals VALUES (10527, 3129, 'Issue', 17, '', '2020-12-04 15:37:14+07', false);
INSERT INTO public.journals VALUES (10528, 3130, 'Issue', 17, '', '2020-12-04 15:37:15+07', false);
INSERT INTO public.journals VALUES (10529, 3131, 'Issue', 17, '', '2020-12-04 15:37:15+07', false);
INSERT INTO public.journals VALUES (10530, 3132, 'Issue', 17, '', '2020-12-04 15:37:15+07', false);
INSERT INTO public.journals VALUES (10531, 3133, 'Issue', 17, '', '2020-12-04 15:37:16+07', false);
INSERT INTO public.journals VALUES (10532, 3134, 'Issue', 17, '', '2020-12-04 15:37:16+07', false);
INSERT INTO public.journals VALUES (10533, 3135, 'Issue', 17, '', '2020-12-04 15:37:16+07', false);
INSERT INTO public.journals VALUES (10534, 3148, 'Issue', 17, '', '2020-12-04 15:37:16+07', false);
INSERT INTO public.journals VALUES (10535, 3165, 'Issue', 17, '', '2020-12-04 15:37:16+07', false);
INSERT INTO public.journals VALUES (10536, 3167, 'Issue', 17, '', '2020-12-04 15:37:17+07', false);
INSERT INTO public.journals VALUES (10537, 3168, 'Issue', 17, '', '2020-12-04 15:37:17+07', false);
INSERT INTO public.journals VALUES (10538, 3169, 'Issue', 17, '', '2020-12-04 15:37:17+07', false);
INSERT INTO public.journals VALUES (10539, 3171, 'Issue', 17, '', '2020-12-04 15:37:17+07', false);
INSERT INTO public.journals VALUES (10540, 3173, 'Issue', 17, '', '2020-12-04 15:37:17+07', false);
INSERT INTO public.journals VALUES (10541, 3175, 'Issue', 17, '', '2020-12-04 15:37:18+07', false);
INSERT INTO public.journals VALUES (10542, 3177, 'Issue', 17, '', '2020-12-04 15:37:18+07', false);
INSERT INTO public.journals VALUES (10543, 3178, 'Issue', 17, '', '2020-12-04 15:37:18+07', false);
INSERT INTO public.journals VALUES (10544, 3179, 'Issue', 17, '', '2020-12-04 15:37:18+07', false);
INSERT INTO public.journals VALUES (10545, 3123, 'Issue', 15, '', '2020-12-04 15:38:25+07', false);
INSERT INTO public.journals VALUES (10546, 3124, 'Issue', 15, '', '2020-12-04 15:38:25+07', false);
INSERT INTO public.journals VALUES (10547, 2955, 'Issue', 39, '', '2020-12-04 16:14:52+07', false);
INSERT INTO public.journals VALUES (10548, 3191, 'Issue', 39, '', '2020-12-04 16:26:15+07', false);
INSERT INTO public.journals VALUES (10549, 3193, 'Issue', 40, '', '2020-12-04 16:46:21+07', false);
INSERT INTO public.journals VALUES (10550, 3088, 'Issue', 39, '', '2020-12-05 08:46:34+07', false);
INSERT INTO public.journals VALUES (10551, 3089, 'Issue', 39, '', '2020-12-05 08:47:24+07', false);
INSERT INTO public.journals VALUES (10552, 3090, 'Issue', 39, '', '2020-12-05 08:47:24+07', false);
INSERT INTO public.journals VALUES (10553, 3057, 'Issue', 38, NULL, '2020-12-05 08:53:55+07', false);
INSERT INTO public.journals VALUES (10554, 3057, 'Issue', 38, NULL, '2020-12-05 08:54:01+07', false);
INSERT INTO public.journals VALUES (10555, 3060, 'Issue', 38, NULL, '2020-12-05 08:54:09+07', false);
INSERT INTO public.journals VALUES (10556, 3060, 'Issue', 38, NULL, '2020-12-05 08:54:13+07', false);
INSERT INTO public.journals VALUES (10557, 3059, 'Issue', 38, NULL, '2020-12-05 08:54:17+07', false);
INSERT INTO public.journals VALUES (10558, 3090, 'Issue', 40, '', '2020-12-05 08:54:32+07', false);
INSERT INTO public.journals VALUES (10559, 3090, 'Issue', 40, NULL, '2020-12-05 08:54:48+07', false);
INSERT INTO public.journals VALUES (10560, 3089, 'Issue', 39, '', '2020-12-05 08:56:34+07', false);
INSERT INTO public.journals VALUES (10561, 3199, 'Issue', 40, '', '2020-12-05 09:27:20+07', false);
INSERT INTO public.journals VALUES (10562, 3199, 'Issue', 40, '', '2020-12-05 09:27:38+07', false);
INSERT INTO public.journals VALUES (10563, 3192, 'Issue', 8, NULL, '2020-12-05 09:38:47+07', false);
INSERT INTO public.journals VALUES (10564, 3192, 'Issue', 8, NULL, '2020-12-05 09:38:58+07', false);
INSERT INTO public.journals VALUES (10565, 3201, 'Issue', 8, NULL, '2020-12-05 13:35:38+07', false);
INSERT INTO public.journals VALUES (10566, 3202, 'Issue', 8, NULL, '2020-12-05 13:35:38+07', false);
INSERT INTO public.journals VALUES (10567, 3201, 'Issue', 8, NULL, '2020-12-05 13:35:53+07', false);
INSERT INTO public.journals VALUES (10568, 3202, 'Issue', 8, NULL, '2020-12-05 13:35:53+07', false);
INSERT INTO public.journals VALUES (10569, 3203, 'Issue', 41, '', '2020-12-05 14:02:15+07', false);
INSERT INTO public.journals VALUES (10570, 3105, 'Issue', 40, NULL, '2020-12-05 14:14:44+07', false);
INSERT INTO public.journals VALUES (10571, 3106, 'Issue', 40, NULL, '2020-12-05 14:14:44+07', false);
INSERT INTO public.journals VALUES (10572, 3107, 'Issue', 40, NULL, '2020-12-05 14:14:44+07', false);
INSERT INTO public.journals VALUES (10573, 3108, 'Issue', 40, NULL, '2020-12-05 14:14:45+07', false);
INSERT INTO public.journals VALUES (10574, 3109, 'Issue', 40, NULL, '2020-12-05 14:14:45+07', false);
INSERT INTO public.journals VALUES (10575, 3111, 'Issue', 40, NULL, '2020-12-05 14:14:45+07', false);
INSERT INTO public.journals VALUES (10576, 3112, 'Issue', 40, NULL, '2020-12-05 14:14:45+07', false);
INSERT INTO public.journals VALUES (10577, 3189, 'Issue', 39, '', '2020-12-05 14:14:55+07', false);
INSERT INTO public.journals VALUES (10578, 3105, 'Issue', 40, NULL, '2020-12-05 14:27:51+07', false);
INSERT INTO public.journals VALUES (10579, 3109, 'Issue', 40, NULL, '2020-12-05 14:27:51+07', false);
INSERT INTO public.journals VALUES (10580, 3105, 'Issue', 40, NULL, '2020-12-05 14:28:16+07', false);
INSERT INTO public.journals VALUES (10581, 3109, 'Issue', 40, NULL, '2020-12-05 14:28:16+07', false);
INSERT INTO public.journals VALUES (10582, 3106, 'Issue', 40, NULL, '2020-12-05 15:05:01+07', false);
INSERT INTO public.journals VALUES (10583, 3106, 'Issue', 40, NULL, '2020-12-05 15:05:11+07', false);
INSERT INTO public.journals VALUES (10584, 3107, 'Issue', 40, NULL, '2020-12-05 15:12:47+07', false);
INSERT INTO public.journals VALUES (10585, 3107, 'Issue', 40, NULL, '2020-12-05 15:12:53+07', false);
INSERT INTO public.journals VALUES (10586, 3108, 'Issue', 40, NULL, '2020-12-05 15:28:33+07', false);
INSERT INTO public.journals VALUES (10587, 3108, 'Issue', 40, NULL, '2020-12-05 15:28:40+07', false);
INSERT INTO public.journals VALUES (10588, 2954, 'Issue', 5, NULL, '2020-12-05 15:30:26+07', false);
INSERT INTO public.journals VALUES (10589, 3053, 'Issue', 5, NULL, '2020-12-05 15:30:27+07', false);
INSERT INTO public.journals VALUES (10590, 3054, 'Issue', 5, NULL, '2020-12-05 15:30:27+07', false);
INSERT INTO public.journals VALUES (10591, 3073, 'Issue', 5, NULL, '2020-12-05 15:30:28+07', false);
INSERT INTO public.journals VALUES (10592, 3085, 'Issue', 5, NULL, '2020-12-05 15:30:29+07', false);
INSERT INTO public.journals VALUES (10593, 3086, 'Issue', 5, NULL, '2020-12-05 15:30:29+07', false);
INSERT INTO public.journals VALUES (10594, 3088, 'Issue', 5, NULL, '2020-12-05 15:30:29+07', false);
INSERT INTO public.journals VALUES (10595, 3105, 'Issue', 5, NULL, '2020-12-05 15:30:29+07', false);
INSERT INTO public.journals VALUES (10596, 3109, 'Issue', 5, NULL, '2020-12-05 15:30:29+07', false);
INSERT INTO public.journals VALUES (10597, 3188, 'Issue', 5, NULL, '2020-12-05 15:30:30+07', false);
INSERT INTO public.journals VALUES (10598, 3189, 'Issue', 5, NULL, '2020-12-05 15:30:30+07', false);
INSERT INTO public.journals VALUES (10599, 3190, 'Issue', 5, NULL, '2020-12-05 15:30:30+07', false);
INSERT INTO public.journals VALUES (10600, 3111, 'Issue', 40, NULL, '2020-12-05 15:34:02+07', false);
INSERT INTO public.journals VALUES (10601, 3111, 'Issue', 40, NULL, '2020-12-05 15:34:07+07', false);
INSERT INTO public.journals VALUES (10602, 3112, 'Issue', 40, NULL, '2020-12-05 15:54:50+07', false);
INSERT INTO public.journals VALUES (10603, 3112, 'Issue', 40, NULL, '2020-12-05 15:54:55+07', false);
INSERT INTO public.journals VALUES (10604, 3193, 'Issue', 41, '', '2020-12-05 16:20:54+07', false);
INSERT INTO public.journals VALUES (10605, 3199, 'Issue', 39, '', '2020-12-05 16:54:51+07', false);
INSERT INTO public.journals VALUES (10606, 3200, 'Issue', 8, NULL, '2020-12-05 16:56:41+07', false);
INSERT INTO public.journals VALUES (10607, 3200, 'Issue', 8, NULL, '2020-12-05 16:56:48+07', false);
INSERT INTO public.journals VALUES (10608, 3019, 'Issue', 8, '', '2020-12-05 16:57:20+07', false);
INSERT INTO public.journals VALUES (10609, 3020, 'Issue', 8, '', '2020-12-05 16:57:20+07', false);
INSERT INTO public.journals VALUES (10610, 2455, 'Issue', 5, NULL, '2020-12-05 18:23:04+07', false);
INSERT INTO public.journals VALUES (10611, 2847, 'Issue', 5, NULL, '2020-12-05 18:23:04+07', false);
INSERT INTO public.journals VALUES (10612, 2849, 'Issue', 5, NULL, '2020-12-05 18:23:05+07', false);
INSERT INTO public.journals VALUES (10613, 2954, 'Issue', 5, NULL, '2020-12-05 18:23:05+07', false);
INSERT INTO public.journals VALUES (10614, 2955, 'Issue', 5, NULL, '2020-12-05 18:23:05+07', false);
INSERT INTO public.journals VALUES (10615, 2974, 'Issue', 5, NULL, '2020-12-05 18:23:05+07', false);
INSERT INTO public.journals VALUES (10616, 3018, 'Issue', 5, NULL, '2020-12-05 18:23:05+07', false);
INSERT INTO public.journals VALUES (10617, 3028, 'Issue', 5, NULL, '2020-12-05 18:23:05+07', false);
INSERT INTO public.journals VALUES (10618, 3040, 'Issue', 5, NULL, '2020-12-05 18:23:05+07', false);
INSERT INTO public.journals VALUES (10619, 3041, 'Issue', 5, NULL, '2020-12-05 18:23:05+07', false);
INSERT INTO public.journals VALUES (10620, 3042, 'Issue', 5, NULL, '2020-12-05 18:23:05+07', false);
INSERT INTO public.journals VALUES (10621, 3043, 'Issue', 5, NULL, '2020-12-05 18:23:05+07', false);
INSERT INTO public.journals VALUES (10622, 3046, 'Issue', 5, NULL, '2020-12-05 18:23:05+07', false);
INSERT INTO public.journals VALUES (10623, 3047, 'Issue', 5, NULL, '2020-12-05 18:23:05+07', false);
INSERT INTO public.journals VALUES (10624, 3048, 'Issue', 5, NULL, '2020-12-05 18:23:05+07', false);
INSERT INTO public.journals VALUES (10625, 3050, 'Issue', 5, NULL, '2020-12-05 18:23:05+07', false);
INSERT INTO public.journals VALUES (10626, 3053, 'Issue', 5, NULL, '2020-12-05 18:23:06+07', false);
INSERT INTO public.journals VALUES (10627, 3054, 'Issue', 5, NULL, '2020-12-05 18:23:06+07', false);
INSERT INTO public.journals VALUES (10628, 3055, 'Issue', 5, NULL, '2020-12-05 18:23:06+07', false);
INSERT INTO public.journals VALUES (10629, 3056, 'Issue', 5, NULL, '2020-12-05 18:23:06+07', false);
INSERT INTO public.journals VALUES (10630, 3058, 'Issue', 5, NULL, '2020-12-05 18:23:06+07', false);
INSERT INTO public.journals VALUES (10631, 3061, 'Issue', 5, NULL, '2020-12-05 18:23:06+07', false);
INSERT INTO public.journals VALUES (10632, 3062, 'Issue', 5, NULL, '2020-12-05 18:23:06+07', false);
INSERT INTO public.journals VALUES (10633, 3066, 'Issue', 5, NULL, '2020-12-05 18:23:06+07', false);
INSERT INTO public.journals VALUES (10634, 3067, 'Issue', 5, NULL, '2020-12-05 18:23:06+07', false);
INSERT INTO public.journals VALUES (10635, 3068, 'Issue', 5, NULL, '2020-12-05 18:23:06+07', false);
INSERT INTO public.journals VALUES (10636, 3070, 'Issue', 5, NULL, '2020-12-05 18:23:06+07', false);
INSERT INTO public.journals VALUES (10637, 3071, 'Issue', 5, NULL, '2020-12-05 18:23:07+07', false);
INSERT INTO public.journals VALUES (10638, 3072, 'Issue', 5, NULL, '2020-12-05 18:23:07+07', false);
INSERT INTO public.journals VALUES (10639, 3073, 'Issue', 5, NULL, '2020-12-05 18:23:07+07', false);
INSERT INTO public.journals VALUES (10640, 3076, 'Issue', 5, NULL, '2020-12-05 18:23:07+07', false);
INSERT INTO public.journals VALUES (10641, 3078, 'Issue', 5, NULL, '2020-12-05 18:23:07+07', false);
INSERT INTO public.journals VALUES (10642, 3079, 'Issue', 5, NULL, '2020-12-05 18:23:07+07', false);
INSERT INTO public.journals VALUES (10643, 3084, 'Issue', 5, NULL, '2020-12-05 18:23:07+07', false);
INSERT INTO public.journals VALUES (10644, 3085, 'Issue', 5, NULL, '2020-12-05 18:23:07+07', false);
INSERT INTO public.journals VALUES (10645, 3086, 'Issue', 5, NULL, '2020-12-05 18:23:07+07', false);
INSERT INTO public.journals VALUES (10646, 3088, 'Issue', 5, NULL, '2020-12-05 18:23:07+07', false);
INSERT INTO public.journals VALUES (10647, 3089, 'Issue', 5, NULL, '2020-12-05 18:23:07+07', false);
INSERT INTO public.journals VALUES (10648, 3091, 'Issue', 5, NULL, '2020-12-05 18:23:08+07', false);
INSERT INTO public.journals VALUES (10649, 3093, 'Issue', 5, NULL, '2020-12-05 18:23:08+07', false);
INSERT INTO public.journals VALUES (10650, 3095, 'Issue', 5, NULL, '2020-12-05 18:23:08+07', false);
INSERT INTO public.journals VALUES (10651, 3096, 'Issue', 5, NULL, '2020-12-05 18:23:08+07', false);
INSERT INTO public.journals VALUES (10652, 3097, 'Issue', 5, NULL, '2020-12-05 18:23:08+07', false);
INSERT INTO public.journals VALUES (10653, 3098, 'Issue', 5, NULL, '2020-12-05 18:23:08+07', false);
INSERT INTO public.journals VALUES (10654, 3103, 'Issue', 5, NULL, '2020-12-05 18:23:08+07', false);
INSERT INTO public.journals VALUES (10655, 3105, 'Issue', 5, NULL, '2020-12-05 18:23:08+07', false);
INSERT INTO public.journals VALUES (10656, 3106, 'Issue', 5, NULL, '2020-12-05 18:23:08+07', false);
INSERT INTO public.journals VALUES (10657, 3107, 'Issue', 5, NULL, '2020-12-05 18:23:08+07', false);
INSERT INTO public.journals VALUES (10658, 3108, 'Issue', 5, NULL, '2020-12-05 18:23:08+07', false);
INSERT INTO public.journals VALUES (10659, 3109, 'Issue', 5, NULL, '2020-12-05 18:23:08+07', false);
INSERT INTO public.journals VALUES (10660, 3111, 'Issue', 5, NULL, '2020-12-05 18:23:08+07', false);
INSERT INTO public.journals VALUES (10661, 3112, 'Issue', 5, NULL, '2020-12-05 18:23:09+07', false);
INSERT INTO public.journals VALUES (10662, 3174, 'Issue', 5, NULL, '2020-12-05 18:23:09+07', false);
INSERT INTO public.journals VALUES (10663, 3188, 'Issue', 5, NULL, '2020-12-05 18:23:09+07', false);
INSERT INTO public.journals VALUES (10664, 3189, 'Issue', 5, NULL, '2020-12-05 18:23:09+07', false);
INSERT INTO public.journals VALUES (10665, 3190, 'Issue', 5, NULL, '2020-12-05 18:23:09+07', false);
INSERT INTO public.journals VALUES (10666, 3191, 'Issue', 5, NULL, '2020-12-05 18:23:09+07', false);
INSERT INTO public.journals VALUES (10667, 3192, 'Issue', 5, NULL, '2020-12-05 18:23:09+07', false);
INSERT INTO public.journals VALUES (10668, 3193, 'Issue', 5, NULL, '2020-12-05 18:23:09+07', false);
INSERT INTO public.journals VALUES (10669, 3200, 'Issue', 5, NULL, '2020-12-05 18:23:09+07', false);
INSERT INTO public.journals VALUES (10670, 3201, 'Issue', 5, NULL, '2020-12-05 18:23:10+07', false);
INSERT INTO public.journals VALUES (10671, 3202, 'Issue', 5, NULL, '2020-12-05 18:23:10+07', false);
INSERT INTO public.journals VALUES (10672, 3203, 'Issue', 5, NULL, '2020-12-05 18:23:10+07', false);
INSERT INTO public.journals VALUES (10673, 3195, 'Issue', 37, '', '2020-12-07 07:51:03+07', false);
INSERT INTO public.journals VALUES (10674, 3196, 'Issue', 37, '', '2020-12-07 07:51:03+07', false);
INSERT INTO public.journals VALUES (10675, 3197, 'Issue', 37, '', '2020-12-07 07:51:04+07', false);
INSERT INTO public.journals VALUES (10676, 3198, 'Issue', 38, NULL, '2020-12-07 07:56:09+07', false);
INSERT INTO public.journals VALUES (10677, 3195, 'Issue', 37, '', '2020-12-07 08:06:56+07', false);
INSERT INTO public.journals VALUES (10678, 3196, 'Issue', 37, '', '2020-12-07 08:06:56+07', false);
INSERT INTO public.journals VALUES (10679, 3197, 'Issue', 37, '', '2020-12-07 08:06:56+07', false);
INSERT INTO public.journals VALUES (10680, 3002, 'Issue', 32, NULL, '2020-12-07 08:14:59+07', false);
INSERT INTO public.journals VALUES (10681, 2670, 'Issue', 19, NULL, '2020-12-07 08:21:31+07', false);
INSERT INTO public.journals VALUES (10682, 2812, 'Issue', 19, NULL, '2020-12-07 08:21:42+07', false);
INSERT INTO public.journals VALUES (10683, 2962, 'Issue', 19, NULL, '2020-12-07 08:21:57+07', false);
INSERT INTO public.journals VALUES (10684, 3198, 'Issue', 19, NULL, '2020-12-07 08:22:13+07', false);
INSERT INTO public.journals VALUES (10685, 3104, 'Issue', 19, '', '2020-12-07 08:22:39+07', false);
INSERT INTO public.journals VALUES (10686, 2670, 'Issue', 19, '', '2020-12-07 08:23:20+07', false);
INSERT INTO public.journals VALUES (10687, 2962, 'Issue', 19, '', '2020-12-07 08:23:40+07', false);
INSERT INTO public.journals VALUES (10688, 2812, 'Issue', 19, '', '2020-12-07 08:23:57+07', false);
INSERT INTO public.journals VALUES (10689, 3044, 'Issue', 41, '', '2020-12-07 09:30:01+07', false);
INSERT INTO public.journals VALUES (10690, 3045, 'Issue', 41, '', '2020-12-07 09:30:20+07', false);
INSERT INTO public.journals VALUES (10691, 3049, 'Issue', 41, '', '2020-12-07 09:30:35+07', false);
INSERT INTO public.journals VALUES (10692, 3194, 'Issue', 41, '', '2020-12-07 09:31:02+07', false);
INSERT INTO public.journals VALUES (10693, 3019, 'Issue', 8, NULL, '2020-12-07 09:50:33+07', false);
INSERT INTO public.journals VALUES (10694, 3020, 'Issue', 8, NULL, '2020-12-07 09:50:33+07', false);
INSERT INTO public.journals VALUES (10695, 3020, 'Issue', 39, NULL, '2020-12-07 09:52:40+07', false);
INSERT INTO public.journals VALUES (10696, 2850, 'Issue', 40, NULL, '2020-12-07 10:09:56+07', false);
INSERT INTO public.journals VALUES (10697, 2851, 'Issue', 40, NULL, '2020-12-07 10:09:56+07', false);
INSERT INTO public.journals VALUES (10698, 2886, 'Issue', 40, NULL, '2020-12-07 10:09:56+07', false);
INSERT INTO public.journals VALUES (10699, 2887, 'Issue', 40, NULL, '2020-12-07 10:09:56+07', false);
INSERT INTO public.journals VALUES (10700, 3063, 'Issue', 40, NULL, '2020-12-07 10:09:56+07', false);
INSERT INTO public.journals VALUES (10701, 3064, 'Issue', 40, NULL, '2020-12-07 10:09:56+07', false);
INSERT INTO public.journals VALUES (10702, 3065, 'Issue', 40, NULL, '2020-12-07 10:09:56+07', false);
INSERT INTO public.journals VALUES (10703, 3075, 'Issue', 40, NULL, '2020-12-07 10:09:56+07', false);
INSERT INTO public.journals VALUES (10704, 3080, 'Issue', 40, NULL, '2020-12-07 10:09:56+07', false);
INSERT INTO public.journals VALUES (10705, 3081, 'Issue', 40, NULL, '2020-12-07 10:09:57+07', false);
INSERT INTO public.journals VALUES (10706, 3082, 'Issue', 40, NULL, '2020-12-07 10:09:57+07', false);
INSERT INTO public.journals VALUES (10707, 3083, 'Issue', 40, NULL, '2020-12-07 10:09:57+07', false);
INSERT INTO public.journals VALUES (10708, 3090, 'Issue', 40, NULL, '2020-12-07 10:09:57+07', false);
INSERT INTO public.journals VALUES (10709, 3092, 'Issue', 40, NULL, '2020-12-07 10:09:57+07', false);
INSERT INTO public.journals VALUES (10711, 3100, 'Issue', 40, NULL, '2020-12-07 10:09:57+07', false);
INSERT INTO public.journals VALUES (10712, 3101, 'Issue', 40, NULL, '2020-12-07 10:09:57+07', false);
INSERT INTO public.journals VALUES (10713, 3102, 'Issue', 40, NULL, '2020-12-07 10:09:57+07', false);
INSERT INTO public.journals VALUES (10714, 3154, 'Issue', 40, NULL, '2020-12-07 10:09:57+07', false);
INSERT INTO public.journals VALUES (10715, 3162, 'Issue', 40, NULL, '2020-12-07 10:09:57+07', false);
INSERT INTO public.journals VALUES (10716, 3163, 'Issue', 40, NULL, '2020-12-07 10:09:58+07', false);
INSERT INTO public.journals VALUES (10717, 3166, 'Issue', 40, NULL, '2020-12-07 10:09:58+07', false);
INSERT INTO public.journals VALUES (10720, 3184, 'Issue', 40, NULL, '2020-12-07 10:09:58+07', false);
INSERT INTO public.journals VALUES (10721, 3185, 'Issue', 40, NULL, '2020-12-07 10:09:58+07', false);
INSERT INTO public.journals VALUES (10722, 3186, 'Issue', 40, NULL, '2020-12-07 10:09:58+07', false);
INSERT INTO public.journals VALUES (10723, 3187, 'Issue', 40, NULL, '2020-12-07 10:09:58+07', false);
INSERT INTO public.journals VALUES (10724, 3044, 'Issue', 40, NULL, '2020-12-07 10:10:15+07', false);
INSERT INTO public.journals VALUES (10725, 3045, 'Issue', 40, NULL, '2020-12-07 10:10:15+07', false);
INSERT INTO public.journals VALUES (10726, 3049, 'Issue', 40, NULL, '2020-12-07 10:10:15+07', false);
INSERT INTO public.journals VALUES (10727, 3194, 'Issue', 40, NULL, '2020-12-07 10:10:15+07', false);
INSERT INTO public.journals VALUES (10728, 2850, 'Issue', 40, '', '2020-12-07 10:10:35+07', false);
INSERT INTO public.journals VALUES (10729, 2851, 'Issue', 40, '', '2020-12-07 10:10:35+07', false);
INSERT INTO public.journals VALUES (10730, 2886, 'Issue', 40, '', '2020-12-07 10:10:35+07', false);
INSERT INTO public.journals VALUES (10731, 2887, 'Issue', 40, '', '2020-12-07 10:10:35+07', false);
INSERT INTO public.journals VALUES (10732, 3063, 'Issue', 40, '', '2020-12-07 10:10:35+07', false);
INSERT INTO public.journals VALUES (10733, 3064, 'Issue', 40, '', '2020-12-07 10:10:35+07', false);
INSERT INTO public.journals VALUES (10734, 3065, 'Issue', 40, '', '2020-12-07 10:10:35+07', false);
INSERT INTO public.journals VALUES (10735, 3075, 'Issue', 40, '', '2020-12-07 10:10:35+07', false);
INSERT INTO public.journals VALUES (10736, 3080, 'Issue', 40, '', '2020-12-07 10:10:35+07', false);
INSERT INTO public.journals VALUES (10737, 3081, 'Issue', 40, '', '2020-12-07 10:10:35+07', false);
INSERT INTO public.journals VALUES (10738, 3082, 'Issue', 40, '', '2020-12-07 10:10:36+07', false);
INSERT INTO public.journals VALUES (10739, 3083, 'Issue', 40, '', '2020-12-07 10:10:36+07', false);
INSERT INTO public.journals VALUES (10740, 3090, 'Issue', 40, '', '2020-12-07 10:10:36+07', false);
INSERT INTO public.journals VALUES (10741, 3092, 'Issue', 40, '', '2020-12-07 10:10:36+07', false);
INSERT INTO public.journals VALUES (10743, 3100, 'Issue', 40, '', '2020-12-07 10:10:36+07', false);
INSERT INTO public.journals VALUES (10744, 3101, 'Issue', 40, '', '2020-12-07 10:10:36+07', false);
INSERT INTO public.journals VALUES (10745, 3102, 'Issue', 40, '', '2020-12-07 10:10:36+07', false);
INSERT INTO public.journals VALUES (10746, 3154, 'Issue', 40, '', '2020-12-07 10:10:36+07', false);
INSERT INTO public.journals VALUES (10747, 3162, 'Issue', 40, '', '2020-12-07 10:10:37+07', false);
INSERT INTO public.journals VALUES (10748, 3163, 'Issue', 40, '', '2020-12-07 10:10:37+07', false);
INSERT INTO public.journals VALUES (10749, 3166, 'Issue', 40, '', '2020-12-07 10:10:37+07', false);
INSERT INTO public.journals VALUES (10752, 3184, 'Issue', 40, '', '2020-12-07 10:10:37+07', false);
INSERT INTO public.journals VALUES (10753, 3185, 'Issue', 40, '', '2020-12-07 10:10:37+07', false);
INSERT INTO public.journals VALUES (10754, 3186, 'Issue', 40, '', '2020-12-07 10:10:38+07', false);
INSERT INTO public.journals VALUES (10755, 3187, 'Issue', 40, '', '2020-12-07 10:10:38+07', false);
INSERT INTO public.journals VALUES (10756, 3205, 'Issue', 40, '', '2020-12-07 10:10:38+07', false);
INSERT INTO public.journals VALUES (10757, 2850, 'Issue', 40, '', '2020-12-07 10:11:01+07', false);
INSERT INTO public.journals VALUES (10758, 2851, 'Issue', 40, '', '2020-12-07 10:11:01+07', false);
INSERT INTO public.journals VALUES (10759, 2886, 'Issue', 40, '', '2020-12-07 10:11:35+07', false);
INSERT INTO public.journals VALUES (10760, 2887, 'Issue', 40, '', '2020-12-07 10:11:36+07', false);
INSERT INTO public.journals VALUES (10761, 3063, 'Issue', 40, '', '2020-12-07 10:11:36+07', false);
INSERT INTO public.journals VALUES (10762, 3064, 'Issue', 40, '', '2020-12-07 10:11:36+07', false);
INSERT INTO public.journals VALUES (10763, 3065, 'Issue', 40, '', '2020-12-07 10:11:36+07', false);
INSERT INTO public.journals VALUES (10764, 3075, 'Issue', 40, '', '2020-12-07 10:11:36+07', false);
INSERT INTO public.journals VALUES (10765, 3080, 'Issue', 40, '', '2020-12-07 10:12:09+07', false);
INSERT INTO public.journals VALUES (10766, 3081, 'Issue', 40, '', '2020-12-07 10:12:09+07', false);
INSERT INTO public.journals VALUES (10767, 3082, 'Issue', 40, '', '2020-12-07 10:12:09+07', false);
INSERT INTO public.journals VALUES (10768, 3154, 'Issue', 40, '', '2020-12-07 10:12:39+07', false);
INSERT INTO public.journals VALUES (10769, 3162, 'Issue', 40, '', '2020-12-07 10:12:39+07', false);
INSERT INTO public.journals VALUES (10770, 3163, 'Issue', 40, '', '2020-12-07 10:12:39+07', false);
INSERT INTO public.journals VALUES (10771, 3166, 'Issue', 40, '', '2020-12-07 10:12:40+07', false);
INSERT INTO public.journals VALUES (10774, 3184, 'Issue', 40, '', '2020-12-07 10:12:40+07', false);
INSERT INTO public.journals VALUES (10775, 3185, 'Issue', 40, '', '2020-12-07 10:12:40+07', false);
INSERT INTO public.journals VALUES (10776, 3186, 'Issue', 40, '', '2020-12-07 10:12:40+07', false);
INSERT INTO public.journals VALUES (10777, 3187, 'Issue', 40, '', '2020-12-07 10:12:40+07', false);
INSERT INTO public.journals VALUES (10778, 3083, 'Issue', 40, NULL, '2020-12-07 10:14:28+07', false);
INSERT INTO public.journals VALUES (10779, 3092, 'Issue', 40, NULL, '2020-12-07 10:14:28+07', false);
INSERT INTO public.journals VALUES (10780, 3102, 'Issue', 40, NULL, '2020-12-07 10:14:28+07', false);
INSERT INTO public.journals VALUES (10781, 3100, 'Issue', 40, '', '2020-12-07 10:17:02+07', false);
INSERT INTO public.journals VALUES (10782, 3101, 'Issue', 40, '', '2020-12-07 10:17:02+07', false);
INSERT INTO public.journals VALUES (10783, 3205, 'Issue', 40, '', '2020-12-07 10:17:02+07', false);
INSERT INTO public.journals VALUES (10784, 2886, 'Issue', 10, '', '2020-12-07 10:57:43+07', false);
INSERT INTO public.journals VALUES (10785, 2887, 'Issue', 10, '', '2020-12-07 10:57:43+07', false);
INSERT INTO public.journals VALUES (10786, 3075, 'Issue', 10, '', '2020-12-07 10:57:43+07', false);
INSERT INTO public.journals VALUES (10787, 3154, 'Issue', 10, '', '2020-12-07 10:59:07+07', false);
INSERT INTO public.journals VALUES (10788, 3162, 'Issue', 10, '', '2020-12-07 10:59:07+07', false);
INSERT INTO public.journals VALUES (10789, 3163, 'Issue', 10, '', '2020-12-07 10:59:07+07', false);
INSERT INTO public.journals VALUES (10790, 3166, 'Issue', 10, '', '2020-12-07 10:59:07+07', false);
INSERT INTO public.journals VALUES (10791, 3184, 'Issue', 10, '', '2020-12-07 10:59:07+07', false);
INSERT INTO public.journals VALUES (10794, 2886, 'Issue', 10, '', '2020-12-07 11:00:24+07', false);
INSERT INTO public.journals VALUES (10795, 2887, 'Issue', 10, '', '2020-12-07 11:00:24+07', false);
INSERT INTO public.journals VALUES (10796, 3075, 'Issue', 10, '', '2020-12-07 11:00:24+07', false);
INSERT INTO public.journals VALUES (10797, 3063, 'Issue', 10, '', '2020-12-07 11:01:13+07', false);
INSERT INTO public.journals VALUES (10798, 3064, 'Issue', 10, '', '2020-12-07 11:01:13+07', false);
INSERT INTO public.journals VALUES (10799, 3065, 'Issue', 10, '', '2020-12-07 11:01:13+07', false);
INSERT INTO public.journals VALUES (10800, 3185, 'Issue', 10, '', '2020-12-07 11:01:14+07', false);
INSERT INTO public.journals VALUES (10801, 3186, 'Issue', 10, '', '2020-12-07 11:01:14+07', false);
INSERT INTO public.journals VALUES (10802, 3187, 'Issue', 10, '', '2020-12-07 11:01:14+07', false);
INSERT INTO public.journals VALUES (10803, 3154, 'Issue', 10, NULL, '2020-12-07 11:22:37+07', false);
INSERT INTO public.journals VALUES (10804, 3154, 'Issue', 10, NULL, '2020-12-07 11:22:43+07', false);
INSERT INTO public.journals VALUES (10805, 3166, 'Issue', 10, NULL, '2020-12-07 13:36:36+07', false);
INSERT INTO public.journals VALUES (10806, 3166, 'Issue', 10, NULL, '2020-12-07 13:36:41+07', false);
INSERT INTO public.journals VALUES (10807, 3210, 'Issue', 40, NULL, '2020-12-07 14:00:52+07', false);
INSERT INTO public.journals VALUES (10808, 3210, 'Issue', 40, NULL, '2020-12-07 14:01:00+07', false);
INSERT INTO public.journals VALUES (10809, 3209, 'Issue', 40, NULL, '2020-12-07 14:01:43+07', false);
INSERT INTO public.journals VALUES (10810, 3209, 'Issue', 39, '', '2020-12-07 14:10:09+07', false);
INSERT INTO public.journals VALUES (10811, 3208, 'Issue', 39, '', '2020-12-07 14:11:41+07', false);
INSERT INTO public.journals VALUES (10812, 3208, 'Issue', 39, '', '2020-12-07 14:12:17+07', false);
INSERT INTO public.journals VALUES (10813, 3205, 'Issue', 39, '', '2020-12-07 14:12:35+07', false);
INSERT INTO public.journals VALUES (10814, 3209, 'Issue', 39, '', '2020-12-07 14:12:35+07', false);
INSERT INTO public.journals VALUES (10815, 3210, 'Issue', 39, '', '2020-12-07 14:12:35+07', false);
INSERT INTO public.journals VALUES (10816, 3019, 'Issue', 39, '', '2020-12-07 14:12:54+07', false);
INSERT INTO public.journals VALUES (10817, 3199, 'Issue', 39, '', '2020-12-07 14:12:54+07', false);
INSERT INTO public.journals VALUES (10818, 3199, 'Issue', 39, NULL, '2020-12-07 14:13:01+07', false);
INSERT INTO public.journals VALUES (10819, 3199, 'Issue', 39, NULL, '2020-12-07 14:13:05+07', false);
INSERT INTO public.journals VALUES (10820, 3205, 'Issue', 39, NULL, '2020-12-07 15:24:18+07', false);
INSERT INTO public.journals VALUES (10821, 3205, 'Issue', 39, NULL, '2020-12-07 15:24:32+07', false);
INSERT INTO public.journals VALUES (10822, 3162, 'Issue', 10, NULL, '2020-12-07 16:57:38+07', false);
INSERT INTO public.journals VALUES (10823, 3162, 'Issue', 10, NULL, '2020-12-07 16:57:45+07', false);
INSERT INTO public.journals VALUES (10824, 2667, 'Issue', 16, NULL, '2020-12-08 08:01:59+07', false);
INSERT INTO public.journals VALUES (10825, 3029, 'Issue', 33, NULL, '2020-12-08 08:13:50+07', false);
INSERT INTO public.journals VALUES (10826, 3030, 'Issue', 33, NULL, '2020-12-08 08:14:02+07', false);
INSERT INTO public.journals VALUES (10827, 3110, 'Issue', 33, NULL, '2020-12-08 08:14:15+07', false);
INSERT INTO public.journals VALUES (10828, 3215, 'Issue', 33, NULL, '2020-12-08 08:14:24+07', false);
INSERT INTO public.journals VALUES (10829, 2950, 'Issue', 33, NULL, '2020-12-08 08:14:42+07', false);
INSERT INTO public.journals VALUES (10830, 3004, 'Issue', 33, NULL, '2020-12-08 08:14:52+07', false);
INSERT INTO public.journals VALUES (10831, 2886, 'Issue', 5, NULL, '2020-12-08 08:32:03+07', false);
INSERT INTO public.journals VALUES (10832, 2887, 'Issue', 5, NULL, '2020-12-08 08:32:03+07', false);
INSERT INTO public.journals VALUES (10833, 3063, 'Issue', 5, NULL, '2020-12-08 08:32:03+07', false);
INSERT INTO public.journals VALUES (10834, 3064, 'Issue', 5, NULL, '2020-12-08 08:32:03+07', false);
INSERT INTO public.journals VALUES (10835, 3065, 'Issue', 5, NULL, '2020-12-08 08:32:03+07', false);
INSERT INTO public.journals VALUES (10836, 3075, 'Issue', 5, NULL, '2020-12-08 08:32:03+07', false);
INSERT INTO public.journals VALUES (10837, 3154, 'Issue', 5, NULL, '2020-12-08 08:32:03+07', false);
INSERT INTO public.journals VALUES (10838, 3162, 'Issue', 5, NULL, '2020-12-08 08:32:03+07', false);
INSERT INTO public.journals VALUES (10839, 3163, 'Issue', 5, NULL, '2020-12-08 08:32:03+07', false);
INSERT INTO public.journals VALUES (10840, 3166, 'Issue', 5, NULL, '2020-12-08 08:32:03+07', false);
INSERT INTO public.journals VALUES (10843, 3184, 'Issue', 5, NULL, '2020-12-08 08:32:04+07', false);
INSERT INTO public.journals VALUES (10844, 3185, 'Issue', 5, NULL, '2020-12-08 08:32:04+07', false);
INSERT INTO public.journals VALUES (10845, 3186, 'Issue', 5, NULL, '2020-12-08 08:32:04+07', false);
INSERT INTO public.journals VALUES (10846, 3187, 'Issue', 5, NULL, '2020-12-08 08:32:04+07', false);
INSERT INTO public.journals VALUES (10847, 3090, 'Issue', 5, '', '2020-12-08 08:36:16+07', false);
INSERT INTO public.journals VALUES (10848, 3206, 'Issue', 8, NULL, '2020-12-08 08:36:49+07', false);
INSERT INTO public.journals VALUES (10849, 3206, 'Issue', 8, NULL, '2020-12-08 08:36:55+07', false);
INSERT INTO public.journals VALUES (10850, 3207, 'Issue', 5, NULL, '2020-12-08 08:38:19+07', false);
INSERT INTO public.journals VALUES (10851, 3211, 'Issue', 5, '', '2020-12-08 08:38:39+07', false);
INSERT INTO public.journals VALUES (10852, 3019, 'Issue', 39, '', '2020-12-08 08:48:01+07', false);
INSERT INTO public.journals VALUES (10853, 3218, 'Issue', 40, '', '2020-12-08 08:57:33+07', false);
INSERT INTO public.journals VALUES (10854, 3224, 'Issue', 40, NULL, '2020-12-08 09:17:14+07', false);
INSERT INTO public.journals VALUES (10855, 3224, 'Issue', 40, NULL, '2020-12-08 09:17:24+07', false);
INSERT INTO public.journals VALUES (10856, 3222, 'Issue', 40, '', '2020-12-08 09:22:59+07', false);
INSERT INTO public.journals VALUES (10857, 3225, 'Issue', 8, NULL, '2020-12-08 09:34:37+07', false);
INSERT INTO public.journals VALUES (10858, 3225, 'Issue', 8, NULL, '2020-12-08 09:34:56+07', false);
INSERT INTO public.journals VALUES (10859, 3090, 'Issue', 40, NULL, '2020-12-08 09:48:11+07', false);
INSERT INTO public.journals VALUES (10860, 3221, 'Issue', 40, '', '2020-12-08 09:48:54+07', false);
INSERT INTO public.journals VALUES (10861, 3221, 'Issue', 40, NULL, '2020-12-08 09:49:02+07', false);
INSERT INTO public.journals VALUES (10862, 3221, 'Issue', 40, NULL, '2020-12-08 09:49:08+07', false);
INSERT INTO public.journals VALUES (10863, 3221, 'Issue', 40, NULL, '2020-12-08 09:49:36+07', false);
INSERT INTO public.journals VALUES (10864, 3221, 'Issue', 40, NULL, '2020-12-08 09:49:43+07', false);
INSERT INTO public.journals VALUES (10865, 3226, 'Issue', 40, NULL, '2020-12-08 10:03:50+07', false);
INSERT INTO public.journals VALUES (10866, 3019, 'Issue', 39, NULL, '2020-12-08 10:03:52+07', false);
INSERT INTO public.journals VALUES (10867, 3226, 'Issue', 40, NULL, '2020-12-08 10:04:02+07', false);
INSERT INTO public.journals VALUES (10868, 3019, 'Issue', 39, NULL, '2020-12-08 10:04:03+07', false);
INSERT INTO public.journals VALUES (10869, 3226, 'Issue', 40, NULL, '2020-12-08 10:04:13+07', false);
INSERT INTO public.journals VALUES (10870, 3080, 'Issue', 40, NULL, '2020-12-08 10:04:52+07', false);
INSERT INTO public.journals VALUES (10871, 3081, 'Issue', 40, NULL, '2020-12-08 10:04:52+07', false);
INSERT INTO public.journals VALUES (10872, 3082, 'Issue', 40, NULL, '2020-12-08 10:04:52+07', false);
INSERT INTO public.journals VALUES (10873, 2850, 'Issue', 40, NULL, '2020-12-08 10:05:35+07', false);
INSERT INTO public.journals VALUES (10874, 2851, 'Issue', 40, NULL, '2020-12-08 10:05:35+07', false);
INSERT INTO public.journals VALUES (10875, 3080, 'Issue', 40, NULL, '2020-12-08 10:05:35+07', false);
INSERT INTO public.journals VALUES (10876, 3081, 'Issue', 40, NULL, '2020-12-08 10:05:36+07', false);
INSERT INTO public.journals VALUES (10877, 3082, 'Issue', 40, NULL, '2020-12-08 10:05:36+07', false);
INSERT INTO public.journals VALUES (10878, 2850, 'Issue', 40, NULL, '2020-12-08 10:05:42+07', false);
INSERT INTO public.journals VALUES (10879, 2851, 'Issue', 40, NULL, '2020-12-08 10:05:42+07', false);
INSERT INTO public.journals VALUES (10880, 3080, 'Issue', 40, NULL, '2020-12-08 10:05:42+07', false);
INSERT INTO public.journals VALUES (10881, 3081, 'Issue', 40, NULL, '2020-12-08 10:05:42+07', false);
INSERT INTO public.journals VALUES (10882, 3082, 'Issue', 40, NULL, '2020-12-08 10:05:42+07', false);
INSERT INTO public.journals VALUES (10883, 3184, 'Issue', 10, NULL, '2020-12-08 10:34:08+07', false);
INSERT INTO public.journals VALUES (10884, 3184, 'Issue', 10, NULL, '2020-12-08 10:34:15+07', false);
INSERT INTO public.journals VALUES (10885, 3163, 'Issue', 10, NULL, '2020-12-08 10:35:01+07', false);
INSERT INTO public.journals VALUES (10886, 3217, 'Issue', 39, NULL, '2020-12-08 10:55:59+07', false);
INSERT INTO public.journals VALUES (10887, 3217, 'Issue', 39, NULL, '2020-12-08 10:56:15+07', false);
INSERT INTO public.journals VALUES (10888, 3227, 'Issue', 39, NULL, '2020-12-08 13:32:49+07', false);
INSERT INTO public.journals VALUES (10889, 3227, 'Issue', 39, NULL, '2020-12-08 13:32:55+07', false);
INSERT INTO public.journals VALUES (10890, 3207, 'Issue', 39, NULL, '2020-12-08 13:57:51+07', false);
INSERT INTO public.journals VALUES (10891, 3207, 'Issue', 39, '', '2020-12-08 13:57:58+07', false);
INSERT INTO public.journals VALUES (10892, 3207, 'Issue', 39, '', '2020-12-08 13:58:09+07', false);
INSERT INTO public.journals VALUES (10893, 3212, 'Issue', 39, NULL, '2020-12-08 14:00:19+07', false);
INSERT INTO public.journals VALUES (10894, 3205, 'Issue', 40, NULL, '2020-12-08 15:08:33+07', false);
INSERT INTO public.journals VALUES (10895, 3205, 'Issue', 40, NULL, '2020-12-08 15:08:43+07', false);
INSERT INTO public.journals VALUES (10896, 3210, 'Issue', 40, NULL, '2020-12-08 15:13:24+07', false);
INSERT INTO public.journals VALUES (10897, 2453, 'Issue', 39, '', '2020-12-08 16:09:58+07', false);
INSERT INTO public.journals VALUES (10898, 3205, 'Issue', 39, '', '2020-12-08 16:16:23+07', false);
INSERT INTO public.journals VALUES (10899, 3231, 'Issue', 40, NULL, '2020-12-08 16:19:44+07', false);
INSERT INTO public.journals VALUES (10900, 3235, 'Issue', 23, '', '2020-12-08 16:47:30+07', false);
INSERT INTO public.journals VALUES (10901, 3235, 'Issue', 23, '', '2020-12-08 16:47:52+07', false);
INSERT INTO public.journals VALUES (10902, 3238, 'Issue', 23, '', '2020-12-08 16:50:34+07', false);
INSERT INTO public.journals VALUES (10903, 2675, 'Issue', 13, '', '2020-12-08 17:07:25+07', false);
INSERT INTO public.journals VALUES (10904, 2676, 'Issue', 13, '', '2020-12-08 17:07:26+07', false);
INSERT INTO public.journals VALUES (10905, 2685, 'Issue', 13, '', '2020-12-08 17:07:26+07', false);
INSERT INTO public.journals VALUES (10907, 3100, 'Issue', 5, '', '2020-12-08 17:18:15+07', false);
INSERT INTO public.journals VALUES (10908, 3101, 'Issue', 5, '', '2020-12-08 17:18:16+07', false);
INSERT INTO public.journals VALUES (10909, 3218, 'Issue', 5, '', '2020-12-08 17:18:16+07', false);
INSERT INTO public.journals VALUES (10910, 3219, 'Issue', 5, '', '2020-12-08 17:18:16+07', false);
INSERT INTO public.journals VALUES (10911, 3220, 'Issue', 5, '', '2020-12-08 17:18:16+07', false);
INSERT INTO public.journals VALUES (10912, 3222, 'Issue', 5, '', '2020-12-08 17:18:16+07', false);
INSERT INTO public.journals VALUES (10914, 3228, 'Issue', 5, '', '2020-12-08 17:18:17+07', false);
INSERT INTO public.journals VALUES (10915, 3230, 'Issue', 5, '', '2020-12-08 17:18:17+07', false);
INSERT INTO public.journals VALUES (10916, 3231, 'Issue', 5, '', '2020-12-08 17:18:17+07', false);
INSERT INTO public.journals VALUES (10917, 3232, 'Issue', 5, '', '2020-12-08 17:18:17+07', false);
INSERT INTO public.journals VALUES (10918, 3234, 'Issue', 5, '', '2020-12-08 17:18:17+07', false);
INSERT INTO public.journals VALUES (10919, 3213, 'Issue', 16, NULL, '2020-12-09 08:55:23+07', false);
INSERT INTO public.journals VALUES (10920, 3214, 'Issue', 16, NULL, '2020-12-09 08:55:23+07', false);
INSERT INTO public.journals VALUES (10921, 3213, 'Issue', 16, NULL, '2020-12-09 08:55:37+07', false);
INSERT INTO public.journals VALUES (10922, 3214, 'Issue', 16, NULL, '2020-12-09 08:55:37+07', false);
INSERT INTO public.journals VALUES (10923, 3248, 'Issue', 40, '', '2020-12-09 10:56:46+07', false);
INSERT INTO public.journals VALUES (10924, 3228, 'Issue', 39, NULL, '2020-12-09 11:20:34+07', false);
INSERT INTO public.journals VALUES (10925, 3228, 'Issue', 39, NULL, '2020-12-09 11:20:40+07', false);
INSERT INTO public.journals VALUES (10926, 3250, 'Issue', 40, NULL, '2020-12-09 11:26:39+07', false);
INSERT INTO public.journals VALUES (10927, 3250, 'Issue', 40, NULL, '2020-12-09 11:26:45+07', false);
INSERT INTO public.journals VALUES (10928, 3231, 'Issue', 8, NULL, '2020-12-09 11:27:55+07', false);
INSERT INTO public.journals VALUES (10929, 3231, 'Issue', 8, NULL, '2020-12-09 11:28:05+07', false);
INSERT INTO public.journals VALUES (10930, 3241, 'Issue', 15, NULL, '2020-12-09 13:45:04+07', false);
INSERT INTO public.journals VALUES (10931, 3242, 'Issue', 15, NULL, '2020-12-09 13:45:04+07', false);
INSERT INTO public.journals VALUES (10932, 3244, 'Issue', 15, NULL, '2020-12-09 13:45:05+07', false);
INSERT INTO public.journals VALUES (10933, 3245, 'Issue', 15, '', '2020-12-09 13:45:46+07', false);
INSERT INTO public.journals VALUES (10934, 3257, 'Issue', 15, '', '2020-12-09 13:54:14+07', false);
INSERT INTO public.journals VALUES (10935, 3252, 'Issue', 40, '', '2020-12-09 14:27:55+07', false);
INSERT INTO public.journals VALUES (10936, 3249, 'Issue', 39, NULL, '2020-12-09 14:54:15+07', false);
INSERT INTO public.journals VALUES (10937, 3249, 'Issue', 39, NULL, '2020-12-09 14:54:22+07', false);
INSERT INTO public.journals VALUES (10938, 3247, 'Issue', 8, NULL, '2020-12-09 14:55:57+07', false);
INSERT INTO public.journals VALUES (10939, 3248, 'Issue', 8, NULL, '2020-12-09 14:55:57+07', false);
INSERT INTO public.journals VALUES (10940, 3234, 'Issue', 8, NULL, '2020-12-09 14:56:05+07', false);
INSERT INTO public.journals VALUES (10941, 3251, 'Issue', 39, NULL, '2020-12-09 14:57:22+07', false);
INSERT INTO public.journals VALUES (10942, 3246, 'Issue', 39, NULL, '2020-12-09 14:57:59+07', false);
INSERT INTO public.journals VALUES (10943, 3246, 'Issue', 39, NULL, '2020-12-09 14:58:08+07', false);
INSERT INTO public.journals VALUES (10944, 3230, 'Issue', 39, NULL, '2020-12-09 14:59:03+07', false);
INSERT INTO public.journals VALUES (10945, 3230, 'Issue', 39, NULL, '2020-12-09 14:59:08+07', false);
INSERT INTO public.journals VALUES (10946, 3260, 'Issue', 39, NULL, '2020-12-09 15:05:21+07', false);
INSERT INTO public.journals VALUES (10947, 3260, 'Issue', 39, NULL, '2020-12-09 15:05:36+07', false);
INSERT INTO public.journals VALUES (10948, 3249, 'Issue', 39, '', '2020-12-09 16:24:29+07', false);
INSERT INTO public.journals VALUES (10949, 3261, 'Issue', 39, NULL, '2020-12-10 09:39:14+07', false);
INSERT INTO public.journals VALUES (10950, 3261, 'Issue', 39, NULL, '2020-12-10 09:39:23+07', false);
INSERT INTO public.journals VALUES (10951, 3263, 'Issue', 39, NULL, '2020-12-10 09:44:03+07', false);
INSERT INTO public.journals VALUES (10952, 3263, 'Issue', 39, NULL, '2020-12-10 09:44:09+07', false);
INSERT INTO public.journals VALUES (10953, 3234, 'Issue', 39, NULL, '2020-12-10 10:24:17+07', false);
INSERT INTO public.journals VALUES (10954, 3234, 'Issue', 39, NULL, '2020-12-10 10:24:21+07', false);
INSERT INTO public.journals VALUES (10955, 2453, 'Issue', 39, '', '2020-12-10 10:24:39+07', false);
INSERT INTO public.journals VALUES (10956, 3221, 'Issue', 40, NULL, '2020-12-10 14:19:45+07', false);
INSERT INTO public.journals VALUES (10957, 3266, 'Issue', 40, '', '2020-12-10 14:26:12+07', false);
INSERT INTO public.journals VALUES (10958, 3267, 'Issue', 40, '', '2020-12-10 14:26:12+07', false);
INSERT INTO public.journals VALUES (10959, 3221, 'Issue', 40, NULL, '2020-12-10 14:45:35+07', false);
INSERT INTO public.journals VALUES (10960, 3221, 'Issue', 40, NULL, '2020-12-10 14:46:04+07', false);
INSERT INTO public.journals VALUES (10961, 3266, 'Issue', 10, NULL, '2020-12-10 15:09:28+07', false);
INSERT INTO public.journals VALUES (10962, 3266, 'Issue', 10, NULL, '2020-12-10 15:09:40+07', false);
INSERT INTO public.journals VALUES (10963, 3271, 'Issue', 40, '', '2020-12-10 15:11:16+07', false);
INSERT INTO public.journals VALUES (10964, 3271, 'Issue', 10, NULL, '2020-12-10 15:21:10+07', false);
INSERT INTO public.journals VALUES (10965, 3271, 'Issue', 10, NULL, '2020-12-10 15:21:18+07', false);
INSERT INTO public.journals VALUES (10966, 3269, 'Issue', 39, '', '2020-12-11 08:44:14+07', false);
INSERT INTO public.journals VALUES (10967, 3234, 'Issue', 39, '', '2020-12-11 09:47:35+07', false);
INSERT INTO public.journals VALUES (10968, 3263, 'Issue', 39, '', '2020-12-11 09:47:35+07', false);
INSERT INTO public.journals VALUES (10969, 3269, 'Issue', 39, '', '2020-12-11 09:47:52+07', false);
INSERT INTO public.journals VALUES (10970, 3273, 'Issue', 8, NULL, '2020-12-11 10:45:29+07', false);
INSERT INTO public.journals VALUES (10971, 3273, 'Issue', 8, NULL, '2020-12-11 10:45:38+07', false);
INSERT INTO public.journals VALUES (10972, 3019, 'Issue', 5, NULL, '2020-12-11 13:57:34+07', false);
INSERT INTO public.journals VALUES (10973, 3199, 'Issue', 5, NULL, '2020-12-11 13:57:34+07', false);
INSERT INTO public.journals VALUES (10974, 3205, 'Issue', 5, NULL, '2020-12-11 13:57:34+07', false);
INSERT INTO public.journals VALUES (10975, 3206, 'Issue', 5, NULL, '2020-12-11 13:57:35+07', false);
INSERT INTO public.journals VALUES (10976, 3207, 'Issue', 5, NULL, '2020-12-11 13:57:35+07', false);
INSERT INTO public.journals VALUES (10977, 3208, 'Issue', 5, NULL, '2020-12-11 13:57:35+07', false);
INSERT INTO public.journals VALUES (10978, 3209, 'Issue', 5, NULL, '2020-12-11 13:57:35+07', false);
INSERT INTO public.journals VALUES (10979, 3211, 'Issue', 5, NULL, '2020-12-11 13:57:35+07', false);
INSERT INTO public.journals VALUES (10980, 3212, 'Issue', 5, NULL, '2020-12-11 13:57:35+07', false);
INSERT INTO public.journals VALUES (10981, 3217, 'Issue', 5, NULL, '2020-12-11 13:57:35+07', false);
INSERT INTO public.journals VALUES (10982, 3221, 'Issue', 5, NULL, '2020-12-11 13:57:35+07', false);
INSERT INTO public.journals VALUES (10983, 3224, 'Issue', 5, NULL, '2020-12-11 13:57:35+07', false);
INSERT INTO public.journals VALUES (10984, 3225, 'Issue', 5, NULL, '2020-12-11 13:57:36+07', false);
INSERT INTO public.journals VALUES (10985, 3226, 'Issue', 5, NULL, '2020-12-11 13:57:36+07', false);
INSERT INTO public.journals VALUES (10986, 3227, 'Issue', 5, NULL, '2020-12-11 13:57:36+07', false);
INSERT INTO public.journals VALUES (10987, 3228, 'Issue', 5, NULL, '2020-12-11 13:57:36+07', false);
INSERT INTO public.journals VALUES (10988, 3230, 'Issue', 5, NULL, '2020-12-11 13:57:36+07', false);
INSERT INTO public.journals VALUES (10989, 3231, 'Issue', 5, NULL, '2020-12-11 13:57:36+07', false);
INSERT INTO public.journals VALUES (10990, 3234, 'Issue', 5, NULL, '2020-12-11 13:57:36+07', false);
INSERT INTO public.journals VALUES (10991, 3246, 'Issue', 5, NULL, '2020-12-11 13:57:36+07', false);
INSERT INTO public.journals VALUES (10992, 3249, 'Issue', 5, NULL, '2020-12-11 13:57:36+07', false);
INSERT INTO public.journals VALUES (10993, 3250, 'Issue', 5, NULL, '2020-12-11 13:57:36+07', false);
INSERT INTO public.journals VALUES (10994, 3260, 'Issue', 5, NULL, '2020-12-11 13:57:36+07', false);
INSERT INTO public.journals VALUES (10995, 3261, 'Issue', 5, NULL, '2020-12-11 13:57:37+07', false);
INSERT INTO public.journals VALUES (10996, 3263, 'Issue', 5, NULL, '2020-12-11 13:57:37+07', false);
INSERT INTO public.journals VALUES (10997, 2453, 'Issue', 5, '', '2020-12-11 14:00:08+07', false);
INSERT INTO public.journals VALUES (10998, 2850, 'Issue', 5, '', '2020-12-11 14:00:08+07', false);
INSERT INTO public.journals VALUES (10999, 2851, 'Issue', 5, '', '2020-12-11 14:00:09+07', false);
INSERT INTO public.journals VALUES (11000, 3080, 'Issue', 5, '', '2020-12-11 14:00:09+07', false);
INSERT INTO public.journals VALUES (11001, 3081, 'Issue', 5, '', '2020-12-11 14:00:09+07', false);
INSERT INTO public.journals VALUES (11002, 3082, 'Issue', 5, '', '2020-12-11 14:00:09+07', false);
INSERT INTO public.journals VALUES (11003, 3080, 'Issue', 5, '', '2020-12-11 14:00:35+07', false);
INSERT INTO public.journals VALUES (11004, 3081, 'Issue', 5, '', '2020-12-11 14:00:35+07', false);
INSERT INTO public.journals VALUES (11005, 3082, 'Issue', 5, '', '2020-12-11 14:00:36+07', false);
INSERT INTO public.journals VALUES (11006, 2453, 'Issue', 5, '', '2020-12-11 14:01:27+07', false);
INSERT INTO public.journals VALUES (11007, 3063, 'Issue', 10, NULL, '2020-12-11 14:56:05+07', false);
INSERT INTO public.journals VALUES (11008, 3063, 'Issue', 10, NULL, '2020-12-11 14:56:13+07', false);
INSERT INTO public.journals VALUES (11009, 2886, 'Issue', 10, '', '2020-12-11 14:56:38+07', false);
INSERT INTO public.journals VALUES (11010, 2887, 'Issue', 10, '', '2020-12-11 14:56:38+07', false);
INSERT INTO public.journals VALUES (11011, 3075, 'Issue', 10, '', '2020-12-11 14:56:39+07', false);
INSERT INTO public.journals VALUES (11012, 3063, 'Issue', 10, '', '2020-12-11 15:03:42+07', false);
INSERT INTO public.journals VALUES (11013, 3274, 'Issue', 39, NULL, '2020-12-11 15:13:20+07', false);
INSERT INTO public.journals VALUES (11014, 3274, 'Issue', 39, NULL, '2020-12-11 15:13:27+07', false);
INSERT INTO public.journals VALUES (11015, 3276, 'Issue', 10, '', '2020-12-11 16:24:58+07', false);
INSERT INTO public.journals VALUES (11016, 3278, 'Issue', 15, '', '2020-12-11 16:36:38+07', false);
INSERT INTO public.journals VALUES (11017, 3278, 'Issue', 15, NULL, '2020-12-11 16:37:07+07', false);
INSERT INTO public.journals VALUES (11018, 3275, 'Issue', 10, '', '2020-12-11 17:03:40+07', false);
INSERT INTO public.journals VALUES (11019, 3280, 'Issue', 10, NULL, '2020-12-12 14:00:31+07', false);
INSERT INTO public.journals VALUES (11020, 3280, 'Issue', 10, NULL, '2020-12-12 14:00:47+07', false);
INSERT INTO public.journals VALUES (11021, 3243, 'Issue', 41, '', '2020-12-12 15:03:35+07', false);
INSERT INTO public.journals VALUES (11022, 3232, 'Issue', 41, '', '2020-12-12 15:03:56+07', false);
INSERT INTO public.journals VALUES (11023, 3247, 'Issue', 41, '', '2020-12-12 15:04:48+07', false);
INSERT INTO public.journals VALUES (11024, 3248, 'Issue', 41, '', '2020-12-12 15:05:26+07', false);
INSERT INTO public.journals VALUES (11025, 3220, 'Issue', 41, '', '2020-12-12 15:06:01+07', false);
INSERT INTO public.journals VALUES (11026, 3100, 'Issue', 41, '', '2020-12-12 15:06:46+07', false);
INSERT INTO public.journals VALUES (11027, 3281, 'Issue', 41, '', '2020-12-12 15:11:54+07', false);
INSERT INTO public.journals VALUES (11028, 3222, 'Issue', 41, NULL, '2020-12-12 15:31:12+07', false);
INSERT INTO public.journals VALUES (11029, 3219, 'Issue', 41, NULL, '2020-12-12 15:31:32+07', false);
INSERT INTO public.journals VALUES (11030, 3262, 'Issue', 41, NULL, '2020-12-12 15:31:49+07', false);
INSERT INTO public.journals VALUES (11031, 3268, 'Issue', 41, NULL, '2020-12-12 15:32:04+07', false);
INSERT INTO public.journals VALUES (11034, 3218, 'Issue', 41, NULL, '2020-12-12 15:32:40+07', false);
INSERT INTO public.journals VALUES (11035, 3252, 'Issue', 41, '', '2020-12-12 16:04:53+07', false);
INSERT INTO public.journals VALUES (11036, 3259, 'Issue', 41, NULL, '2020-12-12 16:08:17+07', false);
INSERT INTO public.journals VALUES (11037, 3264, 'Issue', 41, '', '2020-12-12 16:08:41+07', false);
INSERT INTO public.journals VALUES (11038, 2670, 'Issue', 19, NULL, '2020-12-12 16:26:23+07', false);
INSERT INTO public.journals VALUES (11039, 2962, 'Issue', 19, NULL, '2020-12-12 16:27:12+07', false);
INSERT INTO public.journals VALUES (11040, 2812, 'Issue', 19, NULL, '2020-12-12 16:27:25+07', false);
INSERT INTO public.journals VALUES (11041, 2812, 'Issue', 19, '', '2020-12-12 16:27:57+07', false);
INSERT INTO public.journals VALUES (11042, 2962, 'Issue', 19, '', '2020-12-12 16:28:21+07', false);
INSERT INTO public.journals VALUES (11043, 2667, 'Issue', 19, '', '2020-12-12 16:29:01+07', false);
INSERT INTO public.journals VALUES (11044, 3101, 'Issue', 41, NULL, '2020-12-12 16:29:27+07', false);
INSERT INTO public.journals VALUES (11046, 2670, 'Issue', 19, '', '2020-12-12 16:30:26+07', false);
INSERT INTO public.journals VALUES (11047, 2670, 'Issue', 19, '', '2020-12-12 16:30:41+07', false);
INSERT INTO public.journals VALUES (11048, 3286, 'Issue', 41, '', '2020-12-12 16:31:03+07', false);
INSERT INTO public.journals VALUES (11049, 3285, 'Issue', 39, NULL, '2020-12-12 16:45:38+07', false);
INSERT INTO public.journals VALUES (11050, 3269, 'Issue', 39, '', '2020-12-12 16:46:01+07', false);
INSERT INTO public.journals VALUES (11051, 3285, 'Issue', 39, '', '2020-12-12 16:46:19+07', false);
INSERT INTO public.journals VALUES (11052, 3279, 'Issue', 10, '', '2020-12-14 08:02:06+07', false);
INSERT INTO public.journals VALUES (11053, 3185, 'Issue', 10, '', '2020-12-14 08:03:10+07', false);
INSERT INTO public.journals VALUES (11054, 3186, 'Issue', 10, '', '2020-12-14 08:03:10+07', false);
INSERT INTO public.journals VALUES (11055, 3187, 'Issue', 10, '', '2020-12-14 08:04:05+07', false);
INSERT INTO public.journals VALUES (11056, 3198, 'Issue', 38, NULL, '2020-12-14 08:04:42+07', false);
INSERT INTO public.journals VALUES (11057, 2886, 'Issue', 10, '', '2020-12-14 08:05:08+07', false);
INSERT INTO public.journals VALUES (11058, 2887, 'Issue', 10, '', '2020-12-14 08:05:08+07', false);
INSERT INTO public.journals VALUES (11059, 3075, 'Issue', 10, '', '2020-12-14 08:05:08+07', false);
INSERT INTO public.journals VALUES (11060, 3267, 'Issue', 10, '', '2020-12-14 08:05:08+07', false);
INSERT INTO public.journals VALUES (11061, 3277, 'Issue', 10, '', '2020-12-14 08:05:53+07', false);
INSERT INTO public.journals VALUES (11062, 3277, 'Issue', 10, '', '2020-12-14 08:06:22+07', false);
INSERT INTO public.journals VALUES (11063, 3064, 'Issue', 10, '', '2020-12-14 08:06:50+07', false);
INSERT INTO public.journals VALUES (11064, 3065, 'Issue', 10, '', '2020-12-14 08:06:50+07', false);
INSERT INTO public.journals VALUES (11065, 3064, 'Issue', 10, '', '2020-12-14 08:07:04+07', false);
INSERT INTO public.journals VALUES (11066, 3065, 'Issue', 10, '', '2020-12-14 08:07:04+07', false);
INSERT INTO public.journals VALUES (11069, 3287, 'Issue', 15, '', '2020-12-14 08:24:32+07', false);
INSERT INTO public.journals VALUES (11070, 3029, 'Issue', 33, NULL, '2020-12-14 08:25:06+07', false);
INSERT INTO public.journals VALUES (11071, 3030, 'Issue', 33, NULL, '2020-12-14 08:25:17+07', false);
INSERT INTO public.journals VALUES (11072, 3110, 'Issue', 33, NULL, '2020-12-14 08:25:27+07', false);
INSERT INTO public.journals VALUES (11073, 3215, 'Issue', 33, NULL, '2020-12-14 08:25:35+07', false);
INSERT INTO public.journals VALUES (11074, 3289, 'Issue', 33, '', '2020-12-14 08:30:14+07', false);
INSERT INTO public.journals VALUES (11075, 3287, 'Issue', 15, '', '2020-12-14 08:31:12+07', false);
INSERT INTO public.journals VALUES (11076, 2453, 'Issue', 39, '', '2020-12-14 08:39:09+07', false);
INSERT INTO public.journals VALUES (11077, 2453, 'Issue', 39, '', '2020-12-14 08:39:28+07', false);
INSERT INTO public.journals VALUES (11078, 3285, 'Issue', 39, NULL, '2020-12-14 08:39:40+07', false);
INSERT INTO public.journals VALUES (11079, 3285, 'Issue', 39, NULL, '2020-12-14 08:39:48+07', false);
INSERT INTO public.journals VALUES (11080, 3063, 'Issue', 5, NULL, '2020-12-14 11:17:14+07', false);
INSERT INTO public.journals VALUES (11081, 3154, 'Issue', 5, NULL, '2020-12-14 11:17:14+07', false);
INSERT INTO public.journals VALUES (11082, 3162, 'Issue', 5, NULL, '2020-12-14 11:17:14+07', false);
INSERT INTO public.journals VALUES (11083, 3166, 'Issue', 5, NULL, '2020-12-14 11:17:15+07', false);
INSERT INTO public.journals VALUES (11084, 3184, 'Issue', 5, NULL, '2020-12-14 11:17:15+07', false);
INSERT INTO public.journals VALUES (11085, 3266, 'Issue', 5, NULL, '2020-12-14 11:17:15+07', false);
INSERT INTO public.journals VALUES (11086, 3271, 'Issue', 5, NULL, '2020-12-14 11:17:15+07', false);
INSERT INTO public.journals VALUES (11087, 3275, 'Issue', 5, NULL, '2020-12-14 11:17:15+07', false);
INSERT INTO public.journals VALUES (11088, 3276, 'Issue', 5, NULL, '2020-12-14 11:17:15+07', false);
INSERT INTO public.journals VALUES (11089, 3280, 'Issue', 5, NULL, '2020-12-14 11:17:16+07', false);
INSERT INTO public.journals VALUES (11090, 3100, 'Issue', 5, NULL, '2020-12-14 11:17:37+07', false);
INSERT INTO public.journals VALUES (11091, 3220, 'Issue', 5, NULL, '2020-12-14 11:17:38+07', false);
INSERT INTO public.journals VALUES (11092, 3232, 'Issue', 5, NULL, '2020-12-14 11:17:39+07', false);
INSERT INTO public.journals VALUES (11093, 3243, 'Issue', 5, NULL, '2020-12-14 11:17:39+07', false);
INSERT INTO public.journals VALUES (11094, 3247, 'Issue', 5, NULL, '2020-12-14 11:17:39+07', false);
INSERT INTO public.journals VALUES (11095, 3248, 'Issue', 5, NULL, '2020-12-14 11:17:39+07', false);
INSERT INTO public.journals VALUES (11096, 3252, 'Issue', 5, NULL, '2020-12-14 11:17:39+07', false);
INSERT INTO public.journals VALUES (11097, 3264, 'Issue', 5, NULL, '2020-12-14 11:17:39+07', false);
INSERT INTO public.journals VALUES (11098, 3274, 'Issue', 5, NULL, '2020-12-14 11:17:39+07', false);
INSERT INTO public.journals VALUES (11099, 3281, 'Issue', 5, NULL, '2020-12-14 11:17:39+07', false);
INSERT INTO public.journals VALUES (11100, 3282, 'Issue', 5, NULL, '2020-12-14 11:17:39+07', false);
INSERT INTO public.journals VALUES (11101, 3283, 'Issue', 5, NULL, '2020-12-14 11:17:39+07', false);
INSERT INTO public.journals VALUES (11102, 3284, 'Issue', 5, NULL, '2020-12-14 11:17:40+07', false);
INSERT INTO public.journals VALUES (11103, 3286, 'Issue', 5, NULL, '2020-12-14 11:17:40+07', false);
INSERT INTO public.journals VALUES (11105, 3101, 'Issue', 5, '', '2020-12-14 11:40:41+07', false);
INSERT INTO public.journals VALUES (11106, 3218, 'Issue', 5, '', '2020-12-14 11:40:41+07', false);
INSERT INTO public.journals VALUES (11107, 3219, 'Issue', 5, '', '2020-12-14 11:40:41+07', false);
INSERT INTO public.journals VALUES (11108, 3222, 'Issue', 5, '', '2020-12-14 11:40:41+07', false);
INSERT INTO public.journals VALUES (11110, 3259, 'Issue', 5, '', '2020-12-14 11:40:41+07', false);
INSERT INTO public.journals VALUES (11111, 3262, 'Issue', 5, '', '2020-12-14 11:40:42+07', false);
INSERT INTO public.journals VALUES (11112, 3268, 'Issue', 5, '', '2020-12-14 11:40:42+07', false);
INSERT INTO public.journals VALUES (11115, 2453, 'Issue', 5, '', '2020-12-14 11:53:46+07', false);
INSERT INTO public.journals VALUES (11116, 2850, 'Issue', 5, '', '2020-12-14 11:53:46+07', false);
INSERT INTO public.journals VALUES (11117, 2851, 'Issue', 5, '', '2020-12-14 11:53:46+07', false);
INSERT INTO public.journals VALUES (11118, 3080, 'Issue', 5, '', '2020-12-14 11:53:46+07', false);
INSERT INTO public.journals VALUES (11119, 3081, 'Issue', 5, '', '2020-12-14 11:53:46+07', false);
INSERT INTO public.journals VALUES (11120, 3082, 'Issue', 5, '', '2020-12-14 11:53:47+07', false);
INSERT INTO public.journals VALUES (11121, 3218, 'Issue', 5, '', '2020-12-14 11:55:52+07', false);
INSERT INTO public.journals VALUES (11122, 3219, 'Issue', 5, '', '2020-12-14 11:55:52+07', false);
INSERT INTO public.journals VALUES (11123, 3222, 'Issue', 5, '', '2020-12-14 11:55:52+07', false);
INSERT INTO public.journals VALUES (11125, 3259, 'Issue', 5, '', '2020-12-14 11:55:52+07', false);
INSERT INTO public.journals VALUES (11126, 3262, 'Issue', 5, '', '2020-12-14 11:55:52+07', false);
INSERT INTO public.journals VALUES (11127, 3268, 'Issue', 5, '', '2020-12-14 11:55:53+07', false);
INSERT INTO public.journals VALUES (11128, 3269, 'Issue', 5, '', '2020-12-14 11:55:53+07', false);
INSERT INTO public.journals VALUES (11130, 3101, 'Issue', 5, '', '2020-12-14 11:56:16+07', false);
INSERT INTO public.journals VALUES (11131, 3292, 'Issue', 33, 'Xử lý bản đồ', '2020-12-14 13:42:41+07', false);
INSERT INTO public.journals VALUES (11132, 3296, 'Issue', 6, NULL, '2020-12-14 13:49:53+07', false);
INSERT INTO public.journals VALUES (11133, 3295, 'Issue', 6, NULL, '2020-12-14 13:49:59+07', false);
INSERT INTO public.journals VALUES (11134, 3297, 'Issue', 6, NULL, '2020-12-14 13:54:55+07', false);
INSERT INTO public.journals VALUES (11135, 3298, 'Issue', 6, NULL, '2020-12-14 13:54:55+07', false);
INSERT INTO public.journals VALUES (11136, 3295, 'Issue', 6, NULL, '2020-12-14 13:55:02+07', false);
INSERT INTO public.journals VALUES (11137, 3293, 'Issue', 10, NULL, '2020-12-14 15:56:04+07', false);
INSERT INTO public.journals VALUES (11138, 3293, 'Issue', 10, NULL, '2020-12-14 15:56:24+07', false);
INSERT INTO public.journals VALUES (11139, 3279, 'Issue', 10, NULL, '2020-12-15 08:06:44+07', false);
INSERT INTO public.journals VALUES (11140, 3279, 'Issue', 10, NULL, '2020-12-15 08:06:56+07', false);
INSERT INTO public.journals VALUES (11141, 3302, 'Issue', 15, NULL, '2020-12-15 10:46:00+07', false);
INSERT INTO public.journals VALUES (11142, 3303, 'Issue', 15, NULL, '2020-12-15 10:46:00+07', false);
INSERT INTO public.journals VALUES (11143, 3304, 'Issue', 15, NULL, '2020-12-15 10:46:00+07', false);
INSERT INTO public.journals VALUES (11144, 3302, 'Issue', 15, NULL, '2020-12-15 10:46:08+07', false);
INSERT INTO public.journals VALUES (11145, 3303, 'Issue', 15, NULL, '2020-12-15 10:46:08+07', false);
INSERT INTO public.journals VALUES (11146, 3304, 'Issue', 15, NULL, '2020-12-15 10:46:08+07', false);
INSERT INTO public.journals VALUES (11147, 3301, 'Issue', 39, NULL, '2020-12-15 11:31:48+07', false);
INSERT INTO public.journals VALUES (11148, 3101, 'Issue', 5, NULL, '2020-12-15 14:07:04+07', false);
INSERT INTO public.journals VALUES (11149, 3101, 'Issue', 5, '', '2020-12-15 14:54:40+07', false);
INSERT INTO public.journals VALUES (11150, 3185, 'Issue', 10, NULL, '2020-12-15 15:08:30+07', false);
INSERT INTO public.journals VALUES (11151, 3186, 'Issue', 10, NULL, '2020-12-15 15:08:30+07', false);
INSERT INTO public.journals VALUES (11152, 3312, 'Issue', 10, NULL, '2020-12-15 15:11:46+07', false);
INSERT INTO public.journals VALUES (11153, 3313, 'Issue', 10, NULL, '2020-12-15 15:11:46+07', false);
INSERT INTO public.journals VALUES (11154, 3312, 'Issue', 10, NULL, '2020-12-15 15:12:03+07', false);
INSERT INTO public.journals VALUES (11155, 3313, 'Issue', 10, NULL, '2020-12-15 15:12:03+07', false);
INSERT INTO public.journals VALUES (11156, 3310, 'Issue', 41, '', '2020-12-16 10:01:20+07', false);
INSERT INTO public.journals VALUES (11157, 3311, 'Issue', 41, NULL, '2020-12-16 10:01:58+07', false);
INSERT INTO public.journals VALUES (11158, 3311, 'Issue', 41, NULL, '2020-12-16 10:02:12+07', false);
INSERT INTO public.journals VALUES (11159, 3314, 'Issue', 39, '', '2020-12-16 10:23:03+07', false);
INSERT INTO public.journals VALUES (11160, 3317, 'Issue', 10, NULL, '2020-12-16 10:56:40+07', false);
INSERT INTO public.journals VALUES (11161, 3317, 'Issue', 10, NULL, '2020-12-16 10:56:47+07', false);
INSERT INTO public.journals VALUES (11162, 3287, 'Issue', 15, NULL, '2020-12-16 13:45:06+07', false);
INSERT INTO public.journals VALUES (11163, 2415, 'Issue', 15, NULL, '2020-12-16 13:49:34+07', false);
INSERT INTO public.journals VALUES (11164, 2463, 'Issue', 15, NULL, '2020-12-16 13:49:34+07', false);
INSERT INTO public.journals VALUES (11165, 2464, 'Issue', 15, NULL, '2020-12-16 13:49:34+07', false);
INSERT INTO public.journals VALUES (11166, 2476, 'Issue', 15, NULL, '2020-12-16 13:49:34+07', false);
INSERT INTO public.journals VALUES (11167, 3143, 'Issue', 15, NULL, '2020-12-16 13:50:11+07', false);
INSERT INTO public.journals VALUES (11168, 3143, 'Issue', 15, NULL, '2020-12-16 13:50:35+07', false);
INSERT INTO public.journals VALUES (11169, 3143, 'Issue', 15, NULL, '2020-12-16 13:50:58+07', false);
INSERT INTO public.journals VALUES (11170, 3113, 'Issue', 15, NULL, '2020-12-16 13:51:58+07', false);
INSERT INTO public.journals VALUES (11171, 3117, 'Issue', 15, NULL, '2020-12-16 13:51:58+07', false);
INSERT INTO public.journals VALUES (11172, 3122, 'Issue', 15, NULL, '2020-12-16 13:51:58+07', false);
INSERT INTO public.journals VALUES (11173, 3136, 'Issue', 15, NULL, '2020-12-16 13:51:58+07', false);
INSERT INTO public.journals VALUES (11174, 3140, 'Issue', 15, NULL, '2020-12-16 13:51:59+07', false);
INSERT INTO public.journals VALUES (11175, 3145, 'Issue', 15, NULL, '2020-12-16 13:51:59+07', false);
INSERT INTO public.journals VALUES (11176, 3152, 'Issue', 15, NULL, '2020-12-16 13:51:59+07', false);
INSERT INTO public.journals VALUES (11177, 3159, 'Issue', 15, NULL, '2020-12-16 13:51:59+07', false);
INSERT INTO public.journals VALUES (11178, 3161, 'Issue', 15, NULL, '2020-12-16 13:52:00+07', false);
INSERT INTO public.journals VALUES (11179, 3176, 'Issue', 15, NULL, '2020-12-16 13:52:00+07', false);
INSERT INTO public.journals VALUES (11180, 3143, 'Issue', 15, '', '2020-12-16 13:53:17+07', false);
INSERT INTO public.journals VALUES (11181, 3253, 'Issue', 15, NULL, '2020-12-16 13:55:15+07', false);
INSERT INTO public.journals VALUES (11182, 3254, 'Issue', 15, NULL, '2020-12-16 13:55:15+07', false);
INSERT INTO public.journals VALUES (11183, 3255, 'Issue', 15, NULL, '2020-12-16 13:55:15+07', false);
INSERT INTO public.journals VALUES (11184, 3256, 'Issue', 15, NULL, '2020-12-16 13:55:16+07', false);
INSERT INTO public.journals VALUES (11185, 3257, 'Issue', 15, NULL, '2020-12-16 13:55:16+07', false);
INSERT INTO public.journals VALUES (11186, 3258, 'Issue', 15, NULL, '2020-12-16 13:55:16+07', false);
INSERT INTO public.journals VALUES (11187, 3253, 'Issue', 15, NULL, '2020-12-16 13:57:05+07', false);
INSERT INTO public.journals VALUES (11188, 3254, 'Issue', 15, NULL, '2020-12-16 13:57:05+07', false);
INSERT INTO public.journals VALUES (11189, 3255, 'Issue', 15, NULL, '2020-12-16 13:57:06+07', false);
INSERT INTO public.journals VALUES (11190, 3256, 'Issue', 15, NULL, '2020-12-16 13:57:06+07', false);
INSERT INTO public.journals VALUES (11191, 3257, 'Issue', 15, NULL, '2020-12-16 13:57:06+07', false);
INSERT INTO public.journals VALUES (11192, 3258, 'Issue', 15, NULL, '2020-12-16 13:57:06+07', false);
INSERT INTO public.journals VALUES (11193, 3241, 'Issue', 15, NULL, '2020-12-16 13:57:20+07', false);
INSERT INTO public.journals VALUES (11194, 3242, 'Issue', 15, NULL, '2020-12-16 13:57:20+07', false);
INSERT INTO public.journals VALUES (11195, 3244, 'Issue', 15, NULL, '2020-12-16 13:57:21+07', false);
INSERT INTO public.journals VALUES (11196, 3241, 'Issue', 15, NULL, '2020-12-16 13:58:30+07', false);
INSERT INTO public.journals VALUES (11197, 3242, 'Issue', 15, NULL, '2020-12-16 13:58:31+07', false);
INSERT INTO public.journals VALUES (11198, 3244, 'Issue', 15, NULL, '2020-12-16 13:58:31+07', false);
INSERT INTO public.journals VALUES (11199, 3241, 'Issue', 15, '', '2020-12-16 14:00:06+07', false);
INSERT INTO public.journals VALUES (11200, 3242, 'Issue', 15, '', '2020-12-16 14:00:06+07', false);
INSERT INTO public.journals VALUES (11201, 3244, 'Issue', 15, '', '2020-12-16 14:00:06+07', false);
INSERT INTO public.journals VALUES (11202, 3241, 'Issue', 15, '', '2020-12-16 14:01:41+07', false);
INSERT INTO public.journals VALUES (11203, 3242, 'Issue', 15, '', '2020-12-16 14:01:41+07', false);
INSERT INTO public.journals VALUES (11204, 3244, 'Issue', 15, '', '2020-12-16 14:01:42+07', false);
INSERT INTO public.journals VALUES (11205, 3294, 'Issue', 5, '', '2020-12-16 14:14:06+07', false);
INSERT INTO public.journals VALUES (11206, 3307, 'Issue', 5, '', '2020-12-16 14:14:57+07', false);
INSERT INTO public.journals VALUES (11207, 3308, 'Issue', 5, '', '2020-12-16 14:14:57+07', false);
INSERT INTO public.journals VALUES (11208, 3309, 'Issue', 5, '', '2020-12-16 14:14:57+07', false);
INSERT INTO public.journals VALUES (11209, 3315, 'Issue', 5, '', '2020-12-16 14:18:08+07', false);
INSERT INTO public.journals VALUES (11210, 3218, 'Issue', 5, '', '2020-12-16 14:19:14+07', false);
INSERT INTO public.journals VALUES (11211, 3218, 'Issue', 5, '', '2020-12-16 14:19:44+07', false);
INSERT INTO public.journals VALUES (11212, 3222, 'Issue', 5, '', '2020-12-16 14:20:35+07', false);
INSERT INTO public.journals VALUES (11213, 3259, 'Issue', 5, '', '2020-12-16 14:21:16+07', false);
INSERT INTO public.journals VALUES (11214, 3268, 'Issue', 5, '', '2020-12-16 14:25:13+07', false);
INSERT INTO public.journals VALUES (11216, 3269, 'Issue', 5, '', '2020-12-16 14:38:10+07', false);
INSERT INTO public.journals VALUES (11217, 3219, 'Issue', 5, '', '2020-12-16 14:43:28+07', false);
INSERT INTO public.journals VALUES (11218, 3320, 'Issue', 5, '', '2020-12-16 14:50:41+07', false);
INSERT INTO public.journals VALUES (11219, 3219, 'Issue', 5, '', '2020-12-16 14:51:40+07', false);
INSERT INTO public.journals VALUES (11220, 3219, 'Issue', 5, '', '2020-12-16 14:52:23+07', false);
INSERT INTO public.journals VALUES (11221, 2453, 'Issue', 5, '', '2020-12-16 14:52:57+07', false);
INSERT INTO public.journals VALUES (11222, 2850, 'Issue', 5, '', '2020-12-16 14:52:57+07', false);
INSERT INTO public.journals VALUES (11223, 2851, 'Issue', 5, '', '2020-12-16 14:52:57+07', false);
INSERT INTO public.journals VALUES (11224, 3080, 'Issue', 5, '', '2020-12-16 14:52:58+07', false);
INSERT INTO public.journals VALUES (11225, 3081, 'Issue', 5, '', '2020-12-16 14:52:58+07', false);
INSERT INTO public.journals VALUES (11226, 3082, 'Issue', 5, '', '2020-12-16 14:52:58+07', false);
INSERT INTO public.journals VALUES (11227, 3319, 'Issue', 5, '', '2020-12-16 14:55:08+07', false);
INSERT INTO public.journals VALUES (11228, 2453, 'Issue', 5, NULL, '2020-12-16 15:12:53+07', false);
INSERT INTO public.journals VALUES (11229, 1674, 'Issue', 5, NULL, '2020-12-16 15:36:56+07', false);
INSERT INTO public.journals VALUES (11230, 2588, 'Issue', 5, NULL, '2020-12-16 15:36:56+07', false);
INSERT INTO public.journals VALUES (11231, 2622, 'Issue', 5, NULL, '2020-12-16 15:36:57+07', false);
INSERT INTO public.journals VALUES (11232, 2623, 'Issue', 5, NULL, '2020-12-16 15:36:57+07', false);
INSERT INTO public.journals VALUES (11233, 2624, 'Issue', 5, NULL, '2020-12-16 15:36:57+07', false);
INSERT INTO public.journals VALUES (11234, 2698, 'Issue', 5, NULL, '2020-12-16 15:36:57+07', false);
INSERT INTO public.journals VALUES (11235, 2699, 'Issue', 5, NULL, '2020-12-16 15:36:58+07', false);
INSERT INTO public.journals VALUES (11236, 2669, 'Issue', 5, NULL, '2020-12-16 15:37:04+07', false);
INSERT INTO public.journals VALUES (11237, 2739, 'Issue', 5, NULL, '2020-12-16 15:37:05+07', false);
INSERT INTO public.journals VALUES (11238, 2672, 'Issue', 5, NULL, '2020-12-16 15:37:27+07', false);
INSERT INTO public.journals VALUES (11239, 2668, 'Issue', 5, NULL, '2020-12-16 15:37:28+07', false);
INSERT INTO public.journals VALUES (11240, 2718, 'Issue', 5, NULL, '2020-12-16 15:37:28+07', false);
INSERT INTO public.journals VALUES (11241, 2672, 'Issue', 5, NULL, '2020-12-16 15:37:48+07', false);
INSERT INTO public.journals VALUES (11242, 2788, 'Issue', 5, NULL, '2020-12-16 15:37:48+07', false);
INSERT INTO public.journals VALUES (11243, 2813, 'Issue', 5, NULL, '2020-12-16 15:37:49+07', false);
INSERT INTO public.journals VALUES (11244, 2785, 'Issue', 5, NULL, '2020-12-16 15:37:49+07', false);
INSERT INTO public.journals VALUES (11245, 2718, 'Issue', 5, NULL, '2020-12-16 15:38:01+07', false);
INSERT INTO public.journals VALUES (11246, 2671, 'Issue', 5, NULL, '2020-12-16 15:38:14+07', false);
INSERT INTO public.journals VALUES (11247, 2668, 'Issue', 5, NULL, '2020-12-16 15:38:22+07', false);
INSERT INTO public.journals VALUES (11248, 2830, 'Issue', 5, NULL, '2020-12-16 15:38:32+07', false);
INSERT INTO public.journals VALUES (11249, 2960, 'Issue', 5, NULL, '2020-12-16 15:38:32+07', false);
INSERT INTO public.journals VALUES (11250, 2961, 'Issue', 5, NULL, '2020-12-16 15:38:32+07', false);
INSERT INTO public.journals VALUES (11251, 2975, 'Issue', 5, NULL, '2020-12-16 15:38:32+07', false);
INSERT INTO public.journals VALUES (11252, 2982, 'Issue', 5, NULL, '2020-12-16 15:38:32+07', false);
INSERT INTO public.journals VALUES (11253, 2984, 'Issue', 5, NULL, '2020-12-16 15:38:32+07', false);
INSERT INTO public.journals VALUES (11254, 3025, 'Issue', 5, NULL, '2020-12-16 15:38:32+07', false);
INSERT INTO public.journals VALUES (11255, 3322, 'Issue', 10, NULL, '2020-12-16 15:39:55+07', false);
INSERT INTO public.journals VALUES (11256, 3323, 'Issue', 10, NULL, '2020-12-16 15:39:55+07', false);
INSERT INTO public.journals VALUES (11257, 3324, 'Issue', 10, NULL, '2020-12-16 15:39:55+07', false);
INSERT INTO public.journals VALUES (11258, 3322, 'Issue', 10, NULL, '2020-12-16 15:40:07+07', false);
INSERT INTO public.journals VALUES (11259, 3323, 'Issue', 10, NULL, '2020-12-16 15:40:08+07', false);
INSERT INTO public.journals VALUES (11260, 3324, 'Issue', 10, NULL, '2020-12-16 15:40:08+07', false);
INSERT INTO public.journals VALUES (11261, 2992, 'Issue', 5, NULL, '2020-12-16 15:43:32+07', false);
INSERT INTO public.journals VALUES (11262, 2993, 'Issue', 5, NULL, '2020-12-16 15:43:33+07', false);
INSERT INTO public.journals VALUES (11263, 2994, 'Issue', 5, NULL, '2020-12-16 15:43:33+07', false);
INSERT INTO public.journals VALUES (11264, 2831, 'Issue', 5, NULL, '2020-12-16 15:43:40+07', false);
INSERT INTO public.journals VALUES (11265, 3012, 'Issue', 5, NULL, '2020-12-16 15:43:40+07', false);
INSERT INTO public.journals VALUES (11266, 3039, 'Issue', 5, NULL, '2020-12-16 15:43:40+07', false);
INSERT INTO public.journals VALUES (11267, 3057, 'Issue', 5, NULL, '2020-12-16 15:43:40+07', false);
INSERT INTO public.journals VALUES (11268, 3059, 'Issue', 5, NULL, '2020-12-16 15:43:40+07', false);
INSERT INTO public.journals VALUES (11269, 3060, 'Issue', 5, NULL, '2020-12-16 15:43:40+07', false);
INSERT INTO public.journals VALUES (11270, 3104, 'Issue', 5, NULL, '2020-12-16 15:43:40+07', false);
INSERT INTO public.journals VALUES (11271, 3195, 'Issue', 5, NULL, '2020-12-16 15:43:40+07', false);
INSERT INTO public.journals VALUES (11272, 3196, 'Issue', 5, NULL, '2020-12-16 15:43:41+07', false);
INSERT INTO public.journals VALUES (11273, 3197, 'Issue', 5, NULL, '2020-12-16 15:43:41+07', false);
INSERT INTO public.journals VALUES (11274, 2667, 'Issue', 5, NULL, '2020-12-16 15:43:47+07', false);
INSERT INTO public.journals VALUES (11275, 3198, 'Issue', 5, NULL, '2020-12-16 15:43:47+07', false);
INSERT INTO public.journals VALUES (11276, 3213, 'Issue', 5, NULL, '2020-12-16 15:43:47+07', false);
INSERT INTO public.journals VALUES (11277, 3214, 'Issue', 5, NULL, '2020-12-16 15:43:47+07', false);
INSERT INTO public.journals VALUES (11278, 3273, 'Issue', 5, NULL, '2020-12-16 15:43:47+07', false);
INSERT INTO public.journals VALUES (11279, 3278, 'Issue', 5, NULL, '2020-12-16 15:43:48+07', false);
INSERT INTO public.journals VALUES (11280, 3287, 'Issue', 5, NULL, '2020-12-16 15:43:48+07', false);
INSERT INTO public.journals VALUES (11281, 2983, 'Issue', 5, NULL, '2020-12-16 15:43:52+07', false);
INSERT INTO public.journals VALUES (11282, 2670, 'Issue', 5, NULL, '2020-12-16 15:44:09+07', false);
INSERT INTO public.journals VALUES (11283, 2812, 'Issue', 5, NULL, '2020-12-16 15:44:09+07', false);
INSERT INTO public.journals VALUES (11284, 2962, 'Issue', 5, NULL, '2020-12-16 15:44:10+07', false);
INSERT INTO public.journals VALUES (11285, 3329, 'Issue', 10, NULL, '2020-12-16 16:04:01+07', false);
INSERT INTO public.journals VALUES (11286, 3330, 'Issue', 10, NULL, '2020-12-16 16:40:41+07', false);
INSERT INTO public.journals VALUES (11287, 3262, 'Issue', 39, '', '2020-12-16 16:46:02+07', false);
INSERT INTO public.journals VALUES (11288, 3294, 'Issue', 41, '', '2020-12-16 16:50:17+07', false);
INSERT INTO public.journals VALUES (11289, 3332, 'Issue', 10, NULL, '2020-12-17 00:16:32+07', false);
INSERT INTO public.journals VALUES (11290, 3332, 'Issue', 10, NULL, '2020-12-17 00:16:44+07', false);
INSERT INTO public.journals VALUES (11291, 3318, 'Issue', 41, '', '2020-12-17 08:33:55+07', false);
INSERT INTO public.journals VALUES (11292, 3319, 'Issue', 41, '', '2020-12-17 08:34:15+07', false);
INSERT INTO public.journals VALUES (11293, 3339, 'Issue', 15, NULL, '2020-12-17 08:34:15+07', false);
INSERT INTO public.journals VALUES (11294, 3269, 'Issue', 39, NULL, '2020-12-17 08:34:27+07', false);
INSERT INTO public.journals VALUES (11295, 3269, 'Issue', 39, NULL, '2020-12-17 08:34:39+07', false);
INSERT INTO public.journals VALUES (11296, 3325, 'Issue', 41, '', '2020-12-17 08:34:41+07', false);
INSERT INTO public.journals VALUES (11297, 3340, 'Issue', 41, '', '2020-12-17 09:29:37+07', false);
INSERT INTO public.journals VALUES (11298, 3341, 'Issue', 10, NULL, '2020-12-17 09:44:22+07', false);
INSERT INTO public.journals VALUES (11299, 3341, 'Issue', 10, NULL, '2020-12-17 09:44:30+07', false);
INSERT INTO public.journals VALUES (11300, 3262, 'Issue', 41, '', '2020-12-17 10:58:59+07', false);
INSERT INTO public.journals VALUES (11301, 3342, 'Issue', 10, NULL, '2020-12-17 13:36:24+07', false);
INSERT INTO public.journals VALUES (11302, 3343, 'Issue', 10, NULL, '2020-12-17 13:36:24+07', false);
INSERT INTO public.journals VALUES (11303, 3342, 'Issue', 10, NULL, '2020-12-17 13:36:34+07', false);
INSERT INTO public.journals VALUES (11304, 3343, 'Issue', 10, NULL, '2020-12-17 13:36:34+07', false);
INSERT INTO public.journals VALUES (11305, 2886, 'Issue', 10, '', '2020-12-17 13:41:57+07', false);
INSERT INTO public.journals VALUES (11306, 2887, 'Issue', 10, '', '2020-12-17 13:41:57+07', false);
INSERT INTO public.journals VALUES (11307, 3075, 'Issue', 10, '', '2020-12-17 13:41:57+07', false);
INSERT INTO public.journals VALUES (11308, 3267, 'Issue', 10, '', '2020-12-17 13:41:57+07', false);
INSERT INTO public.journals VALUES (11309, 3320, 'Issue', 41, '', '2020-12-17 16:46:09+07', false);
INSERT INTO public.journals VALUES (11310, 3290, 'Issue', 32, NULL, '2020-12-18 07:42:13+07', false);
INSERT INTO public.journals VALUES (11311, 3187, 'Issue', 10, '', '2020-12-18 08:05:11+07', false);
INSERT INTO public.journals VALUES (11312, 3064, 'Issue', 10, '', '2020-12-18 08:05:34+07', false);
INSERT INTO public.journals VALUES (11313, 3065, 'Issue', 10, '', '2020-12-18 08:05:34+07', false);
INSERT INTO public.journals VALUES (11314, 3064, 'Issue', 10, '', '2020-12-18 08:06:17+07', false);
INSERT INTO public.journals VALUES (11315, 3065, 'Issue', 10, '', '2020-12-18 08:06:17+07', false);
INSERT INTO public.journals VALUES (11316, 3277, 'Issue', 10, '', '2020-12-18 08:06:17+07', false);
INSERT INTO public.journals VALUES (11317, 3187, 'Issue', 10, NULL, '2020-12-18 11:08:01+07', false);
INSERT INTO public.journals VALUES (11318, 3187, 'Issue', 10, NULL, '2020-12-18 11:08:08+07', false);
INSERT INTO public.journals VALUES (11319, 3291, 'Issue', 33, NULL, '2020-12-18 11:42:24+07', false);
INSERT INTO public.journals VALUES (11320, 3306, 'Issue', 5, '', '2020-12-18 13:35:46+07', false);
INSERT INTO public.journals VALUES (11321, 3219, 'Issue', 5, NULL, '2020-12-18 13:37:32+07', false);
INSERT INTO public.journals VALUES (11322, 3344, 'Issue', 5, '', '2020-12-18 13:38:06+07', false);
INSERT INTO public.journals VALUES (11323, 3349, 'Issue', 5, '', '2020-12-18 16:09:10+07', false);
INSERT INTO public.journals VALUES (11324, 3349, 'Issue', 5, '', '2020-12-18 16:14:20+07', false);
INSERT INTO public.journals VALUES (11325, 3350, 'Issue', 5, '', '2020-12-18 16:14:20+07', false);
INSERT INTO public.journals VALUES (11326, 3305, 'Issue', 39, '', '2020-12-18 16:22:30+07', false);
INSERT INTO public.journals VALUES (11327, 3314, 'Issue', 39, '', '2020-12-18 16:22:57+07', false);
INSERT INTO public.journals VALUES (11328, 3305, 'Issue', 39, '', '2020-12-18 16:23:34+07', false);
INSERT INTO public.journals VALUES (11329, 3219, 'Issue', 39, '', '2020-12-18 16:23:45+07', false);
INSERT INTO public.journals VALUES (11330, 3314, 'Issue', 39, '', '2020-12-18 16:23:59+07', false);
INSERT INTO public.journals VALUES (11331, 3219, 'Issue', 39, '', '2020-12-18 16:24:18+07', false);
INSERT INTO public.journals VALUES (11332, 3352, 'Issue', 15, NULL, '2020-12-19 08:17:25+07', false);
INSERT INTO public.journals VALUES (11333, 3321, 'Issue', 41, '', '2020-12-19 09:25:59+07', false);
INSERT INTO public.journals VALUES (11334, 3218, 'Issue', 41, '', '2020-12-19 10:17:18+07', false);
INSERT INTO public.journals VALUES (11335, 3262, 'Issue', 41, NULL, '2020-12-19 13:49:14+07', false);
INSERT INTO public.journals VALUES (11336, 3262, 'Issue', 41, NULL, '2020-12-19 13:49:20+07', false);
INSERT INTO public.journals VALUES (11337, 3353, 'Issue', 41, NULL, '2020-12-19 13:49:33+07', false);
INSERT INTO public.journals VALUES (11338, 3222, 'Issue', 41, NULL, '2020-12-19 13:49:47+07', false);
INSERT INTO public.journals VALUES (11339, 3268, 'Issue', 41, NULL, '2020-12-19 13:49:57+07', false);
INSERT INTO public.journals VALUES (11340, 3222, 'Issue', 41, '', '2020-12-19 13:50:22+07', false);
INSERT INTO public.journals VALUES (11341, 3268, 'Issue', 41, '', '2020-12-19 13:50:38+07', false);
INSERT INTO public.journals VALUES (11342, 3353, 'Issue', 41, '', '2020-12-19 13:51:18+07', false);
INSERT INTO public.journals VALUES (11343, 3338, 'Issue', 38, NULL, '2020-12-19 14:10:58+07', false);
INSERT INTO public.journals VALUES (11344, 3338, 'Issue', 38, NULL, '2020-12-19 14:11:09+07', false);
INSERT INTO public.journals VALUES (11345, 3331, 'Issue', 39, NULL, '2020-12-19 15:20:19+07', false);
INSERT INTO public.journals VALUES (11346, 3219, 'Issue', 39, '', '2020-12-19 15:20:32+07', false);
INSERT INTO public.journals VALUES (11347, 3305, 'Issue', 39, '', '2020-12-19 15:20:33+07', false);
INSERT INTO public.journals VALUES (11348, 3316, 'Issue', 39, NULL, '2020-12-19 15:20:44+07', false);
INSERT INTO public.journals VALUES (11349, 3355, 'Issue', 39, NULL, '2020-12-19 15:21:18+07', false);
INSERT INTO public.journals VALUES (11350, 3351, 'Issue', 15, NULL, '2020-12-19 17:03:10+07', false);
INSERT INTO public.journals VALUES (11351, 3351, 'Issue', 15, NULL, '2020-12-19 17:03:14+07', false);
INSERT INTO public.journals VALUES (11352, 3345, 'Issue', 10, NULL, '2020-12-19 17:03:37+07', false);
INSERT INTO public.journals VALUES (11353, 3345, 'Issue', 10, '', '2020-12-19 17:04:07+07', false);
INSERT INTO public.journals VALUES (11354, 3354, 'Issue', 5, '', '2020-12-21 08:09:48+07', false);
INSERT INTO public.journals VALUES (11355, 3357, 'Issue', 5, '', '2020-12-21 08:09:48+07', false);
INSERT INTO public.journals VALUES (11356, 3101, 'Issue', 5, NULL, '2020-12-21 08:10:07+07', false);
INSERT INTO public.journals VALUES (11357, 3218, 'Issue', 5, NULL, '2020-12-21 08:10:08+07', false);
INSERT INTO public.journals VALUES (11358, 3219, 'Issue', 5, NULL, '2020-12-21 08:10:08+07', false);
INSERT INTO public.journals VALUES (11359, 3259, 'Issue', 5, NULL, '2020-12-21 08:10:08+07', false);
INSERT INTO public.journals VALUES (11360, 3262, 'Issue', 5, NULL, '2020-12-21 08:10:08+07', false);
INSERT INTO public.journals VALUES (11361, 3269, 'Issue', 5, NULL, '2020-12-21 08:10:08+07', false);
INSERT INTO public.journals VALUES (11362, 3285, 'Issue', 5, NULL, '2020-12-21 08:10:08+07', false);
INSERT INTO public.journals VALUES (11363, 3294, 'Issue', 5, NULL, '2020-12-21 08:10:08+07', false);
INSERT INTO public.journals VALUES (11364, 3301, 'Issue', 5, NULL, '2020-12-21 08:10:08+07', false);
INSERT INTO public.journals VALUES (11365, 3305, 'Issue', 5, NULL, '2020-12-21 08:10:08+07', false);
INSERT INTO public.journals VALUES (11366, 3306, 'Issue', 5, NULL, '2020-12-21 08:10:09+07', false);
INSERT INTO public.journals VALUES (11367, 3307, 'Issue', 5, NULL, '2020-12-21 08:10:09+07', false);
INSERT INTO public.journals VALUES (11368, 3308, 'Issue', 5, NULL, '2020-12-21 08:10:09+07', false);
INSERT INTO public.journals VALUES (11369, 3309, 'Issue', 5, NULL, '2020-12-21 08:10:09+07', false);
INSERT INTO public.journals VALUES (11370, 3310, 'Issue', 5, NULL, '2020-12-21 08:10:09+07', false);
INSERT INTO public.journals VALUES (11371, 3311, 'Issue', 5, NULL, '2020-12-21 08:10:09+07', false);
INSERT INTO public.journals VALUES (11372, 3314, 'Issue', 5, NULL, '2020-12-21 08:10:09+07', false);
INSERT INTO public.journals VALUES (11373, 3315, 'Issue', 5, NULL, '2020-12-21 08:10:09+07', false);
INSERT INTO public.journals VALUES (11374, 3316, 'Issue', 5, NULL, '2020-12-21 08:10:09+07', false);
INSERT INTO public.journals VALUES (11375, 3318, 'Issue', 5, NULL, '2020-12-21 08:10:10+07', false);
INSERT INTO public.journals VALUES (11376, 3319, 'Issue', 5, NULL, '2020-12-21 08:10:10+07', false);
INSERT INTO public.journals VALUES (11377, 3320, 'Issue', 5, NULL, '2020-12-21 08:10:10+07', false);
INSERT INTO public.journals VALUES (11378, 3321, 'Issue', 5, NULL, '2020-12-21 08:10:10+07', false);
INSERT INTO public.journals VALUES (11379, 3325, 'Issue', 5, NULL, '2020-12-21 08:10:10+07', false);
INSERT INTO public.journals VALUES (11380, 3340, 'Issue', 5, NULL, '2020-12-21 08:10:10+07', false);
INSERT INTO public.journals VALUES (11381, 3344, 'Issue', 5, NULL, '2020-12-21 08:10:10+07', false);
INSERT INTO public.journals VALUES (11382, 3349, 'Issue', 5, NULL, '2020-12-21 08:10:10+07', false);
INSERT INTO public.journals VALUES (11383, 3350, 'Issue', 5, NULL, '2020-12-21 08:10:10+07', false);
INSERT INTO public.journals VALUES (11384, 3355, 'Issue', 5, NULL, '2020-12-21 08:10:10+07', false);
INSERT INTO public.journals VALUES (11385, 3326, 'Issue', 5, '', '2020-12-21 08:17:28+07', false);
INSERT INTO public.journals VALUES (11386, 3327, 'Issue', 5, '', '2020-12-21 08:18:10+07', false);
INSERT INTO public.journals VALUES (11387, 3328, 'Issue', 5, '', '2020-12-21 08:19:52+07', false);
INSERT INTO public.journals VALUES (11388, 2850, 'Issue', 40, '', '2020-12-21 08:21:01+07', false);
INSERT INTO public.journals VALUES (11389, 2851, 'Issue', 40, '', '2020-12-21 08:22:03+07', false);
INSERT INTO public.journals VALUES (11390, 3290, 'Issue', 32, NULL, '2020-12-21 08:23:15+07', false);
INSERT INTO public.journals VALUES (11391, 3080, 'Issue', 40, '', '2020-12-21 08:23:26+07', false);
INSERT INTO public.journals VALUES (11392, 3081, 'Issue', 40, '', '2020-12-21 08:24:04+07', false);
INSERT INTO public.journals VALUES (11393, 3082, 'Issue', 40, '', '2020-12-21 08:24:38+07', false);
INSERT INTO public.journals VALUES (11394, 2886, 'Issue', 10, '', '2020-12-21 08:27:52+07', false);
INSERT INTO public.journals VALUES (11395, 2887, 'Issue', 10, '', '2020-12-21 08:27:52+07', false);
INSERT INTO public.journals VALUES (11396, 3064, 'Issue', 10, '', '2020-12-21 08:27:53+07', false);
INSERT INTO public.journals VALUES (11397, 3065, 'Issue', 10, '', '2020-12-21 08:27:53+07', false);
INSERT INTO public.journals VALUES (11398, 3075, 'Issue', 10, '', '2020-12-21 08:27:53+07', false);
INSERT INTO public.journals VALUES (11401, 3267, 'Issue', 10, '', '2020-12-21 08:27:53+07', false);
INSERT INTO public.journals VALUES (11402, 3277, 'Issue', 10, '', '2020-12-21 08:27:53+07', false);
INSERT INTO public.journals VALUES (11403, 3366, 'Issue', 5, NULL, '2020-12-21 08:42:40+07', false);
INSERT INTO public.journals VALUES (11404, 3366, 'Issue', 5, '', '2020-12-21 08:42:54+07', false);
INSERT INTO public.journals VALUES (11405, 3366, 'Issue', 5, NULL, '2020-12-21 08:49:07+07', false);
INSERT INTO public.journals VALUES (11406, 3354, 'Issue', 39, '', '2020-12-21 09:01:16+07', false);
INSERT INTO public.journals VALUES (11407, 3328, 'Issue', 5, NULL, '2020-12-21 09:22:20+07', false);
INSERT INTO public.journals VALUES (11408, 3361, 'Issue', 5, NULL, '2020-12-21 09:22:21+07', false);
INSERT INTO public.journals VALUES (11409, 3362, 'Issue', 5, NULL, '2020-12-21 09:22:21+07', false);
INSERT INTO public.journals VALUES (11410, 3326, 'Issue', 12, NULL, '2020-12-21 10:04:45+07', false);
INSERT INTO public.journals VALUES (11411, 3326, 'Issue', 12, NULL, '2020-12-21 10:04:55+07', false);
INSERT INTO public.journals VALUES (11412, 3328, 'Issue', 12, NULL, '2020-12-21 10:05:01+07', false);
INSERT INTO public.journals VALUES (11413, 3328, 'Issue', 12, NULL, '2020-12-21 10:05:19+07', false);
INSERT INTO public.journals VALUES (11414, 3327, 'Issue', 12, NULL, '2020-12-21 10:05:31+07', false);
INSERT INTO public.journals VALUES (11415, 3327, 'Issue', 12, NULL, '2020-12-21 10:05:41+07', false);
INSERT INTO public.journals VALUES (11416, 3370, 'Issue', 40, NULL, '2020-12-21 10:29:58+07', false);
INSERT INTO public.journals VALUES (11417, 3371, 'Issue', 8, NULL, '2020-12-21 11:08:06+07', false);
INSERT INTO public.journals VALUES (11418, 3372, 'Issue', 8, NULL, '2020-12-21 11:08:06+07', false);
INSERT INTO public.journals VALUES (11419, 3373, 'Issue', 8, NULL, '2020-12-21 11:08:06+07', false);
INSERT INTO public.journals VALUES (11420, 3374, 'Issue', 8, NULL, '2020-12-21 11:08:06+07', false);
INSERT INTO public.journals VALUES (11421, 3367, 'Issue', 10, NULL, '2020-12-21 12:20:28+07', false);
INSERT INTO public.journals VALUES (11422, 3367, 'Issue', 10, NULL, '2020-12-21 12:20:34+07', false);
INSERT INTO public.journals VALUES (11423, 3361, 'Issue', 5, '', '2020-12-21 14:49:21+07', false);
INSERT INTO public.journals VALUES (11424, 3360, 'Issue', 5, '', '2020-12-21 14:50:31+07', false);
INSERT INTO public.journals VALUES (11425, 3328, 'Issue', 5, '', '2020-12-21 14:50:50+07', false);
INSERT INTO public.journals VALUES (11426, 3359, 'Issue', 5, '', '2020-12-21 14:51:02+07', false);
INSERT INTO public.journals VALUES (11427, 3328, 'Issue', 37, NULL, '2020-12-21 14:57:38+07', false);
INSERT INTO public.journals VALUES (11428, 3328, 'Issue', 37, NULL, '2020-12-21 14:57:45+07', false);
INSERT INTO public.journals VALUES (11429, 3328, 'Issue', 37, '', '2020-12-21 15:03:53+07', false);
INSERT INTO public.journals VALUES (11430, 3368, 'Issue', 10, '', '2020-12-21 15:51:27+07', false);
INSERT INTO public.journals VALUES (11431, 3375, 'Issue', 41, '', '2020-12-21 16:36:15+07', false);
INSERT INTO public.journals VALUES (11432, 3358, 'Issue', 12, NULL, '2020-12-21 17:03:49+07', false);
INSERT INTO public.journals VALUES (11433, 3358, 'Issue', 12, NULL, '2020-12-21 17:04:02+07', false);
INSERT INTO public.journals VALUES (11434, 3377, 'Issue', 5, NULL, '2020-12-22 00:52:04+07', false);
INSERT INTO public.journals VALUES (11435, 3376, 'Issue', 5, '', '2020-12-22 00:52:37+07', false);
INSERT INTO public.journals VALUES (11436, 3378, 'Issue', 5, '', '2020-12-22 00:52:37+07', false);
INSERT INTO public.journals VALUES (11437, 3379, 'Issue', 5, NULL, '2020-12-22 00:52:51+07', false);
INSERT INTO public.journals VALUES (11438, 3380, 'Issue', 5, NULL, '2020-12-22 00:52:52+07', false);
INSERT INTO public.journals VALUES (11439, 3362, 'Issue', 5, '', '2020-12-22 00:53:10+07', false);
INSERT INTO public.journals VALUES (11440, 3357, 'Issue', 39, NULL, '2020-12-22 02:08:19+07', false);
INSERT INTO public.journals VALUES (11441, 3357, 'Issue', 39, NULL, '2020-12-22 02:08:23+07', false);
INSERT INTO public.journals VALUES (11442, 3383, 'Issue', 39, NULL, '2020-12-22 02:08:33+07', false);
INSERT INTO public.journals VALUES (11443, 3383, 'Issue', 39, NULL, '2020-12-22 02:08:37+07', false);
INSERT INTO public.journals VALUES (11444, 3385, 'Issue', 39, NULL, '2020-12-22 02:08:47+07', false);
INSERT INTO public.journals VALUES (11445, 3385, 'Issue', 39, NULL, '2020-12-22 02:08:50+07', false);
INSERT INTO public.journals VALUES (11446, 3331, 'Issue', 39, '', '2020-12-22 02:09:12+07', false);
INSERT INTO public.journals VALUES (11447, 3386, 'Issue', 40, '', '2020-12-22 06:40:42+07', false);
INSERT INTO public.journals VALUES (11448, 3384, 'Issue', 40, '', '2020-12-22 07:05:13+07', false);
INSERT INTO public.journals VALUES (11449, 3384, 'Issue', 40, '', '2020-12-22 07:07:13+07', false);
INSERT INTO public.journals VALUES (11450, 3351, 'Issue', 15, '', '2020-12-22 08:26:28+07', false);
INSERT INTO public.journals VALUES (11451, 3389, 'Issue', 15, '', '2020-12-22 08:27:54+07', false);
INSERT INTO public.journals VALUES (11452, 3388, 'Issue', 15, NULL, '2020-12-22 08:31:35+07', false);
INSERT INTO public.journals VALUES (11453, 3288, 'Issue', 33, NULL, '2020-12-22 09:14:50+07', false);
INSERT INTO public.journals VALUES (11454, 3359, 'Issue', 12, NULL, '2020-12-22 09:25:41+07', false);
INSERT INTO public.journals VALUES (11455, 3359, 'Issue', 12, NULL, '2020-12-22 09:25:48+07', false);
INSERT INTO public.journals VALUES (11456, 3360, 'Issue', 12, NULL, '2020-12-22 09:25:56+07', false);
INSERT INTO public.journals VALUES (11457, 3391, 'Issue', 10, NULL, '2020-12-23 01:14:57+07', false);
INSERT INTO public.journals VALUES (11458, 3379, 'Issue', 37, '', '2020-12-23 01:30:11+07', false);
INSERT INTO public.journals VALUES (11459, 3380, 'Issue', 37, NULL, '2020-12-23 01:30:27+07', false);
INSERT INTO public.journals VALUES (11460, 3380, 'Issue', 37, NULL, '2020-12-23 01:30:39+07', false);
INSERT INTO public.journals VALUES (11461, 3377, 'Issue', 37, NULL, '2020-12-23 01:31:24+07', false);
INSERT INTO public.journals VALUES (11462, 3377, 'Issue', 37, NULL, '2020-12-23 01:31:32+07', false);
INSERT INTO public.journals VALUES (11463, 3361, 'Issue', 5, '', '2020-12-23 01:54:30+07', false);
INSERT INTO public.journals VALUES (11464, 3362, 'Issue', 5, '', '2020-12-23 01:54:30+07', false);
INSERT INTO public.journals VALUES (11465, 3363, 'Issue', 5, '', '2020-12-23 01:55:00+07', false);
INSERT INTO public.journals VALUES (11466, 3392, 'Issue', 15, '', '2020-12-23 02:00:52+07', false);
INSERT INTO public.journals VALUES (11467, 3362, 'Issue', 37, NULL, '2020-12-23 02:26:00+07', false);
INSERT INTO public.journals VALUES (11468, 3362, 'Issue', 37, NULL, '2020-12-23 02:26:06+07', false);
INSERT INTO public.journals VALUES (11469, 3392, 'Issue', 15, NULL, '2020-12-23 03:12:41+07', false);
INSERT INTO public.journals VALUES (11470, 3392, 'Issue', 15, NULL, '2020-12-23 03:12:45+07', false);
INSERT INTO public.journals VALUES (11471, 3392, 'Issue', 15, NULL, '2020-12-23 03:12:50+07', false);
INSERT INTO public.journals VALUES (11472, 3393, 'Issue', 37, NULL, '2020-12-23 04:19:08+07', false);
INSERT INTO public.journals VALUES (11473, 3393, 'Issue', 37, NULL, '2020-12-23 04:19:14+07', false);
INSERT INTO public.journals VALUES (11474, 3386, 'Issue', 39, NULL, '2020-12-23 16:29:49+07', false);
INSERT INTO public.journals VALUES (11475, 3386, 'Issue', 39, '', '2020-12-23 16:30:04+07', false);
INSERT INTO public.journals VALUES (11476, 3386, 'Issue', 39, '', '2020-12-23 16:30:17+07', false);
INSERT INTO public.journals VALUES (11477, 3390, 'Issue', 39, '', '2020-12-23 16:30:27+07', false);
INSERT INTO public.journals VALUES (11478, 3390, 'Issue', 39, '', '2020-12-23 16:31:07+07', false);
INSERT INTO public.journals VALUES (11479, 3396, 'Issue', 39, NULL, '2020-12-23 16:31:53+07', false);
INSERT INTO public.journals VALUES (11480, 3399, 'Issue', 15, '', '2020-12-23 17:04:59+07', false);
INSERT INTO public.journals VALUES (11481, 3400, 'Issue', 15, '', '2020-12-23 17:05:13+07', false);
INSERT INTO public.journals VALUES (11482, 3399, 'Issue', 15, '', '2020-12-23 17:05:46+07', false);
INSERT INTO public.journals VALUES (11483, 3400, 'Issue', 15, '', '2020-12-23 17:05:46+07', false);
INSERT INTO public.journals VALUES (11484, 3361, 'Issue', 37, NULL, '2020-12-24 08:22:56+07', false);
INSERT INTO public.journals VALUES (11485, 3394, 'Issue', 5, '', '2020-12-24 08:33:55+07', false);
INSERT INTO public.journals VALUES (11486, 3395, 'Issue', 5, NULL, '2020-12-24 08:34:02+07', false);
INSERT INTO public.journals VALUES (11487, 3363, 'Issue', 5, NULL, '2020-12-24 08:34:24+07', false);
INSERT INTO public.journals VALUES (11488, 3361, 'Issue', 5, '', '2020-12-24 09:01:09+07', false);
INSERT INTO public.journals VALUES (11489, 3382, 'Issue', 41, '', '2020-12-24 10:09:49+07', false);
INSERT INTO public.journals VALUES (11490, 3402, 'Issue', 41, NULL, '2020-12-24 10:14:48+07', false);
INSERT INTO public.journals VALUES (11491, 3403, 'Issue', 41, NULL, '2020-12-24 10:15:03+07', false);
INSERT INTO public.journals VALUES (11492, 3404, 'Issue', 41, NULL, '2020-12-24 10:15:12+07', false);
INSERT INTO public.journals VALUES (11493, 3405, 'Issue', 41, NULL, '2020-12-24 10:15:19+07', false);
INSERT INTO public.journals VALUES (11494, 3401, 'Issue', 41, '', '2020-12-24 10:17:09+07', false);
INSERT INTO public.journals VALUES (11495, 3403, 'Issue', 41, NULL, '2020-12-24 10:17:34+07', false);
INSERT INTO public.journals VALUES (11496, 3403, 'Issue', 41, NULL, '2020-12-24 10:17:43+07', false);
INSERT INTO public.journals VALUES (11497, 3404, 'Issue', 41, NULL, '2020-12-24 10:17:53+07', false);
INSERT INTO public.journals VALUES (11498, 3404, 'Issue', 41, NULL, '2020-12-24 10:18:00+07', false);
INSERT INTO public.journals VALUES (11499, 3402, 'Issue', 41, NULL, '2020-12-24 10:18:07+07', false);
INSERT INTO public.journals VALUES (11500, 3402, 'Issue', 41, NULL, '2020-12-24 10:18:14+07', false);
INSERT INTO public.journals VALUES (11501, 3402, 'Issue', 41, NULL, '2020-12-24 10:18:22+07', false);
INSERT INTO public.journals VALUES (11502, 3384, 'Issue', 41, '', '2020-12-24 10:20:04+07', false);
INSERT INTO public.journals VALUES (11503, 3082, 'Issue', 40, '', '2020-12-24 10:21:54+07', false);
INSERT INTO public.journals VALUES (11504, 3405, 'Issue', 41, '', '2020-12-24 14:24:09+07', false);
INSERT INTO public.journals VALUES (11505, 3398, 'Issue', 15, NULL, '2020-12-24 16:09:33+07', false);
INSERT INTO public.journals VALUES (11506, 3387, 'Issue', 15, NULL, '2020-12-24 16:09:49+07', false);
INSERT INTO public.journals VALUES (11507, 3398, 'Issue', 15, NULL, '2020-12-24 16:09:49+07', false);
INSERT INTO public.journals VALUES (11508, 3396, 'Issue', 39, NULL, '2020-12-24 17:03:14+07', false);
INSERT INTO public.journals VALUES (11509, 3396, 'Issue', 39, NULL, '2020-12-24 17:03:17+07', false);
INSERT INTO public.journals VALUES (11510, 3409, 'Issue', 10, NULL, '2020-12-25 14:16:17+07', false);
INSERT INTO public.journals VALUES (11511, 3409, 'Issue', 10, NULL, '2020-12-25 14:16:23+07', false);
INSERT INTO public.journals VALUES (11512, 3406, 'Issue', 10, NULL, '2020-12-25 14:16:35+07', false);
INSERT INTO public.journals VALUES (11513, 3407, 'Issue', 10, NULL, '2020-12-25 14:16:36+07', false);
INSERT INTO public.journals VALUES (11514, 3408, 'Issue', 10, NULL, '2020-12-25 14:16:36+07', false);
INSERT INTO public.journals VALUES (11517, 3297, 'Issue', 17, '', '2020-12-25 14:53:59+07', false);
INSERT INTO public.journals VALUES (11518, 3297, 'Issue', 6, '', '2020-12-25 14:54:34+07', false);
INSERT INTO public.journals VALUES (11519, 3363, 'Issue', 5, '', '2020-12-25 15:27:21+07', false);
INSERT INTO public.journals VALUES (11520, 3411, 'Issue', 10, NULL, '2020-12-25 16:35:40+07', false);
INSERT INTO public.journals VALUES (11521, 3396, 'Issue', 39, 'Sửa lại nhiều lần', '2020-12-25 16:48:04+07', false);
INSERT INTO public.journals VALUES (11522, 3361, 'Issue', 37, NULL, '2020-12-25 17:01:05+07', false);
INSERT INTO public.journals VALUES (11523, 3361, 'Issue', 37, NULL, '2020-12-25 17:01:12+07', false);
INSERT INTO public.journals VALUES (11524, 3395, 'Issue', 37, NULL, '2020-12-25 17:01:27+07', false);
INSERT INTO public.journals VALUES (11525, 3395, 'Issue', 37, NULL, '2020-12-25 17:01:33+07', false);
INSERT INTO public.journals VALUES (11526, 3412, 'Issue', 41, '', '2020-12-26 08:07:09+07', false);
INSERT INTO public.journals VALUES (11527, 3413, 'Issue', 41, '', '2020-12-26 08:08:21+07', false);
INSERT INTO public.journals VALUES (11528, 3337, 'Issue', 19, '', '2020-12-26 08:27:20+07', false);
INSERT INTO public.journals VALUES (11529, 3334, 'Issue', 19, NULL, '2020-12-26 08:27:44+07', false);
INSERT INTO public.journals VALUES (11530, 3335, 'Issue', 19, NULL, '2020-12-26 08:28:02+07', false);
INSERT INTO public.journals VALUES (11531, 3335, 'Issue', 19, '', '2020-12-26 08:28:47+07', false);
INSERT INTO public.journals VALUES (11532, 3081, 'Issue', 41, '', '2020-12-26 08:58:24+07', false);
INSERT INTO public.journals VALUES (11533, 3414, 'Issue', 39, NULL, '2020-12-26 11:35:05+07', false);
INSERT INTO public.journals VALUES (11534, 3414, 'Issue', 39, NULL, '2020-12-26 11:35:10+07', false);
INSERT INTO public.journals VALUES (11535, 3289, 'Issue', 33, NULL, '2020-12-26 15:27:03+07', false);
INSERT INTO public.journals VALUES (11536, 3291, 'Issue', 33, NULL, '2020-12-26 15:27:15+07', false);
INSERT INTO public.journals VALUES (11537, 3347, 'Issue', 33, NULL, '2020-12-26 15:27:27+07', false);
INSERT INTO public.journals VALUES (11538, 3346, 'Issue', 33, NULL, '2020-12-26 15:28:07+07', false);
INSERT INTO public.journals VALUES (11539, 3348, 'Issue', 33, NULL, '2020-12-26 15:28:14+07', false);
INSERT INTO public.journals VALUES (11540, 3415, 'Issue', 33, NULL, '2020-12-26 15:33:47+07', false);
INSERT INTO public.journals VALUES (11541, 3288, 'Issue', 33, '', '2020-12-26 15:35:00+07', false);
INSERT INTO public.journals VALUES (11542, 3417, 'Issue', 10, NULL, '2020-12-26 15:49:15+07', false);
INSERT INTO public.journals VALUES (11543, 3187, 'Issue', 40, NULL, '2020-12-26 16:10:31+07', false);
INSERT INTO public.journals VALUES (11544, 3279, 'Issue', 40, NULL, '2020-12-26 16:10:31+07', false);
INSERT INTO public.journals VALUES (11545, 3293, 'Issue', 40, NULL, '2020-12-26 16:10:31+07', false);
INSERT INTO public.journals VALUES (11546, 3312, 'Issue', 40, NULL, '2020-12-26 16:10:31+07', false);
INSERT INTO public.journals VALUES (11547, 3313, 'Issue', 40, NULL, '2020-12-26 16:10:31+07', false);
INSERT INTO public.journals VALUES (11548, 3317, 'Issue', 40, NULL, '2020-12-26 16:10:32+07', false);
INSERT INTO public.journals VALUES (11549, 3322, 'Issue', 40, NULL, '2020-12-26 16:10:32+07', false);
INSERT INTO public.journals VALUES (11550, 3323, 'Issue', 40, NULL, '2020-12-26 16:10:32+07', false);
INSERT INTO public.journals VALUES (11551, 3324, 'Issue', 40, NULL, '2020-12-26 16:10:32+07', false);
INSERT INTO public.journals VALUES (11552, 3329, 'Issue', 40, NULL, '2020-12-26 16:10:32+07', false);
INSERT INTO public.journals VALUES (11553, 3330, 'Issue', 40, NULL, '2020-12-26 16:10:32+07', false);
INSERT INTO public.journals VALUES (11554, 3332, 'Issue', 40, NULL, '2020-12-26 16:10:32+07', false);
INSERT INTO public.journals VALUES (11555, 3341, 'Issue', 40, NULL, '2020-12-26 16:10:32+07', false);
INSERT INTO public.journals VALUES (11556, 3342, 'Issue', 40, NULL, '2020-12-26 16:10:32+07', false);
INSERT INTO public.journals VALUES (11557, 3343, 'Issue', 40, NULL, '2020-12-26 16:10:32+07', false);
INSERT INTO public.journals VALUES (11558, 3345, 'Issue', 40, NULL, '2020-12-26 16:10:32+07', false);
INSERT INTO public.journals VALUES (11559, 3367, 'Issue', 40, NULL, '2020-12-26 16:11:11+07', false);
INSERT INTO public.journals VALUES (11560, 3368, 'Issue', 40, NULL, '2020-12-26 16:11:11+07', false);
INSERT INTO public.journals VALUES (11561, 3406, 'Issue', 40, NULL, '2020-12-26 16:11:11+07', false);
INSERT INTO public.journals VALUES (11562, 3407, 'Issue', 40, NULL, '2020-12-26 16:11:11+07', false);
INSERT INTO public.journals VALUES (11563, 3408, 'Issue', 40, NULL, '2020-12-26 16:11:11+07', false);
INSERT INTO public.journals VALUES (11564, 3409, 'Issue', 40, NULL, '2020-12-26 16:11:11+07', false);
INSERT INTO public.journals VALUES (11565, 3411, 'Issue', 40, NULL, '2020-12-26 16:11:11+07', false);
INSERT INTO public.journals VALUES (11566, 3417, 'Issue', 40, NULL, '2020-12-26 16:11:20+07', false);
INSERT INTO public.journals VALUES (11567, 3375, 'Issue', 40, NULL, '2020-12-26 16:23:40+07', false);
INSERT INTO public.journals VALUES (11568, 3381, 'Issue', 40, NULL, '2020-12-26 16:23:40+07', false);
INSERT INTO public.journals VALUES (11569, 3382, 'Issue', 40, NULL, '2020-12-26 16:23:40+07', false);
INSERT INTO public.journals VALUES (11570, 3383, 'Issue', 40, NULL, '2020-12-26 16:23:41+07', false);
INSERT INTO public.journals VALUES (11571, 3384, 'Issue', 40, NULL, '2020-12-26 16:23:41+07', false);
INSERT INTO public.journals VALUES (11572, 3385, 'Issue', 40, NULL, '2020-12-26 16:23:41+07', false);
INSERT INTO public.journals VALUES (11573, 3386, 'Issue', 40, NULL, '2020-12-26 16:23:41+07', false);
INSERT INTO public.journals VALUES (11574, 3390, 'Issue', 40, NULL, '2020-12-26 16:23:41+07', false);
INSERT INTO public.journals VALUES (11575, 3396, 'Issue', 40, NULL, '2020-12-26 16:23:41+07', false);
INSERT INTO public.journals VALUES (11576, 3401, 'Issue', 40, NULL, '2020-12-26 16:23:41+07', false);
INSERT INTO public.journals VALUES (11577, 3402, 'Issue', 40, NULL, '2020-12-26 16:23:41+07', false);
INSERT INTO public.journals VALUES (11578, 3403, 'Issue', 40, NULL, '2020-12-26 16:23:41+07', false);
INSERT INTO public.journals VALUES (11579, 3404, 'Issue', 40, NULL, '2020-12-26 16:23:42+07', false);
INSERT INTO public.journals VALUES (11580, 3405, 'Issue', 40, NULL, '2020-12-26 16:23:42+07', false);
INSERT INTO public.journals VALUES (11581, 3412, 'Issue', 40, NULL, '2020-12-26 16:23:42+07', false);
INSERT INTO public.journals VALUES (11582, 3413, 'Issue', 40, NULL, '2020-12-26 16:23:42+07', false);
INSERT INTO public.journals VALUES (11583, 3414, 'Issue', 40, NULL, '2020-12-26 16:23:42+07', false);
INSERT INTO public.journals VALUES (11584, 3371, 'Issue', 40, NULL, '2020-12-26 16:34:21+07', false);
INSERT INTO public.journals VALUES (11585, 3372, 'Issue', 40, NULL, '2020-12-26 16:34:21+07', false);
INSERT INTO public.journals VALUES (11586, 3373, 'Issue', 40, NULL, '2020-12-26 16:34:22+07', false);
INSERT INTO public.journals VALUES (11587, 3374, 'Issue', 40, NULL, '2020-12-26 16:34:22+07', false);
INSERT INTO public.journals VALUES (11588, 3357, 'Issue', 40, NULL, '2020-12-26 16:34:30+07', false);
INSERT INTO public.journals VALUES (11589, 3081, 'Issue', 40, NULL, '2020-12-26 16:34:42+07', false);
INSERT INTO public.journals VALUES (11590, 2886, 'Issue', 40, '', '2020-12-26 16:38:19+07', false);
INSERT INTO public.journals VALUES (11591, 2887, 'Issue', 40, '', '2020-12-26 16:38:19+07', false);
INSERT INTO public.journals VALUES (11592, 3064, 'Issue', 40, '', '2020-12-26 16:38:19+07', false);
INSERT INTO public.journals VALUES (11593, 3065, 'Issue', 40, '', '2020-12-26 16:38:19+07', false);
INSERT INTO public.journals VALUES (11594, 3075, 'Issue', 40, '', '2020-12-26 16:38:20+07', false);
INSERT INTO public.journals VALUES (11597, 3267, 'Issue', 40, '', '2020-12-26 16:38:20+07', false);
INSERT INTO public.journals VALUES (11598, 3277, 'Issue', 40, '', '2020-12-26 16:38:20+07', false);
INSERT INTO public.journals VALUES (11599, 3391, 'Issue', 40, '', '2020-12-26 16:38:20+07', false);
INSERT INTO public.journals VALUES (11600, 2850, 'Issue', 40, '', '2020-12-26 16:38:46+07', false);
INSERT INTO public.journals VALUES (11601, 2851, 'Issue', 40, '', '2020-12-26 16:38:48+07', false);
INSERT INTO public.journals VALUES (11602, 3080, 'Issue', 40, '', '2020-12-26 16:38:51+07', false);
INSERT INTO public.journals VALUES (11603, 3082, 'Issue', 40, '', '2020-12-26 16:38:51+07', false);
INSERT INTO public.journals VALUES (11604, 3222, 'Issue', 40, '', '2020-12-26 16:38:52+07', false);
INSERT INTO public.journals VALUES (11605, 3268, 'Issue', 40, '', '2020-12-26 16:38:53+07', false);
INSERT INTO public.journals VALUES (11606, 3353, 'Issue', 40, '', '2020-12-26 16:38:54+07', false);
INSERT INTO public.journals VALUES (11607, 3354, 'Issue', 40, '', '2020-12-26 16:38:55+07', false);
INSERT INTO public.journals VALUES (11608, 3365, 'Issue', 40, '', '2020-12-26 16:38:55+07', false);
INSERT INTO public.journals VALUES (11609, 2453, 'Issue', 39, '', '2020-12-26 16:42:55+07', false);
INSERT INTO public.journals VALUES (11610, 3331, 'Issue', 39, '', '2020-12-26 16:42:55+07', false);
INSERT INTO public.journals VALUES (11611, 3354, 'Issue', 39, '', '2020-12-26 16:42:55+07', false);
INSERT INTO public.journals VALUES (11612, 3064, 'Issue', 40, NULL, '2020-12-26 16:44:16+07', false);
INSERT INTO public.journals VALUES (11613, 3065, 'Issue', 40, NULL, '2020-12-26 16:44:16+07', false);
INSERT INTO public.journals VALUES (11614, 3391, 'Issue', 40, NULL, '2020-12-26 16:44:16+07', false);
INSERT INTO public.journals VALUES (11617, 2886, 'Issue', 10, '', '2020-12-26 16:46:15+07', false);
INSERT INTO public.journals VALUES (11618, 2887, 'Issue', 10, '', '2020-12-26 16:46:15+07', false);
INSERT INTO public.journals VALUES (11619, 3075, 'Issue', 10, '', '2020-12-26 16:46:15+07', false);
INSERT INTO public.journals VALUES (11620, 3267, 'Issue', 10, '', '2020-12-26 16:46:15+07', false);
INSERT INTO public.journals VALUES (11621, 3277, 'Issue', 10, '', '2020-12-26 16:46:15+07', false);
INSERT INTO public.journals VALUES (11624, 3082, 'Issue', 8, NULL, '2020-12-26 16:49:51+07', false);
INSERT INTO public.journals VALUES (11625, 3082, 'Issue', 8, NULL, '2020-12-26 16:49:57+07', false);
INSERT INTO public.journals VALUES (11626, 3353, 'Issue', 41, '', '2020-12-27 10:47:36+07', false);
INSERT INTO public.journals VALUES (11627, 2850, 'Issue', 41, '', '2020-12-27 10:48:04+07', false);
INSERT INTO public.journals VALUES (11628, 2851, 'Issue', 41, '', '2020-12-27 10:48:41+07', false);
INSERT INTO public.journals VALUES (11629, 3080, 'Issue', 41, '', '2020-12-27 10:48:56+07', false);
INSERT INTO public.journals VALUES (11630, 3365, 'Issue', 41, '', '2020-12-27 10:49:30+07', false);
INSERT INTO public.journals VALUES (11631, 3222, 'Issue', 41, '', '2020-12-27 10:50:00+07', false);
INSERT INTO public.journals VALUES (11632, 3268, 'Issue', 41, '', '2020-12-27 10:50:30+07', false);
INSERT INTO public.journals VALUES (11633, 3277, 'Issue', 10, NULL, '2020-12-27 11:20:26+07', false);
INSERT INTO public.journals VALUES (11634, 3360, 'Issue', 12, NULL, '2020-12-27 14:23:35+07', false);
INSERT INTO public.journals VALUES (11635, 3360, 'Issue', 12, NULL, '2020-12-27 14:23:43+07', false);
INSERT INTO public.journals VALUES (11636, 3388, 'Issue', 15, NULL, '2020-12-27 15:15:12+07', false);
INSERT INTO public.journals VALUES (11638, 3416, 'Issue', 32, NULL, '2020-12-28 08:33:20+07', false);
INSERT INTO public.journals VALUES (11639, 3433, 'Issue', 40, '', '2020-12-28 14:07:33+07', false);
INSERT INTO public.journals VALUES (11640, 3434, 'Issue', 40, '', '2020-12-28 14:07:33+07', false);
INSERT INTO public.journals VALUES (11641, 3364, 'Issue', 5, '', '2020-12-28 14:13:24+07', false);
INSERT INTO public.journals VALUES (11642, 3419, 'Issue', 5, NULL, '2020-12-28 14:14:14+07', false);
INSERT INTO public.journals VALUES (11643, 3418, 'Issue', 5, '', '2020-12-28 14:14:47+07', false);
INSERT INTO public.journals VALUES (11644, 3337, 'Issue', 5, NULL, '2020-12-28 14:15:36+07', false);
INSERT INTO public.journals VALUES (11645, 3338, 'Issue', 5, NULL, '2020-12-28 14:15:37+07', false);
INSERT INTO public.journals VALUES (11646, 3366, 'Issue', 5, '', '2020-12-28 14:18:15+07', false);
INSERT INTO public.journals VALUES (11647, 3364, 'Issue', 5, '', '2020-12-28 14:19:17+07', false);
INSERT INTO public.journals VALUES (11648, 3418, 'Issue', 5, '', '2020-12-28 14:19:17+07', false);
INSERT INTO public.journals VALUES (11649, 3326, 'Issue', 5, NULL, '2020-12-28 14:19:30+07', false);
INSERT INTO public.journals VALUES (11650, 3327, 'Issue', 5, NULL, '2020-12-28 14:19:30+07', false);
INSERT INTO public.journals VALUES (11651, 3328, 'Issue', 5, NULL, '2020-12-28 14:19:30+07', false);
INSERT INTO public.journals VALUES (11652, 3358, 'Issue', 5, NULL, '2020-12-28 14:19:31+07', false);
INSERT INTO public.journals VALUES (11653, 3359, 'Issue', 5, NULL, '2020-12-28 14:19:31+07', false);
INSERT INTO public.journals VALUES (11654, 3360, 'Issue', 5, NULL, '2020-12-28 14:19:31+07', false);
INSERT INTO public.journals VALUES (11655, 3361, 'Issue', 5, NULL, '2020-12-28 14:19:31+07', false);
INSERT INTO public.journals VALUES (11656, 3362, 'Issue', 5, NULL, '2020-12-28 14:19:31+07', false);
INSERT INTO public.journals VALUES (11657, 3363, 'Issue', 5, NULL, '2020-12-28 14:19:31+07', false);
INSERT INTO public.journals VALUES (11658, 3376, 'Issue', 5, NULL, '2020-12-28 14:19:31+07', false);
INSERT INTO public.journals VALUES (11659, 3377, 'Issue', 5, NULL, '2020-12-28 14:19:31+07', false);
INSERT INTO public.journals VALUES (11660, 3378, 'Issue', 5, NULL, '2020-12-28 14:19:31+07', false);
INSERT INTO public.journals VALUES (11661, 3379, 'Issue', 5, NULL, '2020-12-28 14:19:31+07', false);
INSERT INTO public.journals VALUES (11662, 3380, 'Issue', 5, NULL, '2020-12-28 14:19:31+07', false);
INSERT INTO public.journals VALUES (11663, 3393, 'Issue', 5, NULL, '2020-12-28 14:19:32+07', false);
INSERT INTO public.journals VALUES (11664, 3394, 'Issue', 5, NULL, '2020-12-28 14:19:32+07', false);
INSERT INTO public.journals VALUES (11665, 3395, 'Issue', 5, NULL, '2020-12-28 14:19:32+07', false);
INSERT INTO public.journals VALUES (11666, 3369, 'Issue', 5, '', '2020-12-28 14:20:28+07', false);
INSERT INTO public.journals VALUES (11667, 3364, 'Issue', 5, NULL, '2020-12-28 14:54:44+07', false);
INSERT INTO public.journals VALUES (11668, 3436, 'Issue', 5, NULL, '2020-12-28 14:54:44+07', false);
INSERT INTO public.journals VALUES (11669, 3364, 'Issue', 5, NULL, '2020-12-28 14:54:51+07', false);
INSERT INTO public.journals VALUES (11670, 3436, 'Issue', 5, NULL, '2020-12-28 14:54:51+07', false);
INSERT INTO public.journals VALUES (11671, 3440, 'Issue', 5, NULL, '2020-12-28 14:57:50+07', false);
INSERT INTO public.journals VALUES (11672, 3442, 'Issue', 5, NULL, '2020-12-28 14:57:50+07', false);
INSERT INTO public.journals VALUES (11673, 3443, 'Issue', 5, NULL, '2020-12-28 15:01:49+07', false);
INSERT INTO public.journals VALUES (11674, 3444, 'Issue', 5, NULL, '2020-12-28 15:01:50+07', false);
INSERT INTO public.journals VALUES (11675, 3444, 'Issue', 5, NULL, '2020-12-28 15:02:06+07', false);
INSERT INTO public.journals VALUES (11676, 3369, 'Issue', 5, NULL, '2020-12-28 15:34:07+07', false);
INSERT INTO public.journals VALUES (11677, 3421, 'Issue', 15, '', '2020-12-28 17:00:45+07', false);
INSERT INTO public.journals VALUES (11678, 3422, 'Issue', 15, '', '2020-12-28 17:01:01+07', false);
INSERT INTO public.journals VALUES (11679, 3423, 'Issue', 15, '', '2020-12-28 17:01:16+07', false);
INSERT INTO public.journals VALUES (11680, 3448, 'Issue', 10, '', '2020-12-29 08:23:04+07', false);
INSERT INTO public.journals VALUES (11681, 3075, 'Issue', 10, '', '2020-12-29 08:23:27+07', false);
INSERT INTO public.journals VALUES (11682, 3448, 'Issue', 10, NULL, '2020-12-29 08:33:17+07', false);
INSERT INTO public.journals VALUES (11683, 3075, 'Issue', 10, NULL, '2020-12-29 08:33:26+07', false);
INSERT INTO public.journals VALUES (11684, 3075, 'Issue', 10, NULL, '2020-12-29 08:33:34+07', false);
INSERT INTO public.journals VALUES (11685, 3448, 'Issue', 10, NULL, '2020-12-29 08:33:40+07', false);
INSERT INTO public.journals VALUES (11686, 3388, 'Issue', 15, '', '2020-12-29 09:16:45+07', false);
INSERT INTO public.journals VALUES (11687, 3449, 'Issue', 17, '', '2020-12-29 09:18:25+07', false);
INSERT INTO public.journals VALUES (11688, 3449, 'Issue', 17, '', '2020-12-29 09:20:26+07', false);
INSERT INTO public.journals VALUES (11689, 3451, 'Issue', 39, '', '2020-12-29 09:40:27+07', false);
INSERT INTO public.journals VALUES (11690, 3075, 'Issue', 10, NULL, '2020-12-29 10:04:52+07', false);
INSERT INTO public.journals VALUES (11691, 3075, 'Issue', 10, NULL, '2020-12-29 10:04:59+07', false);
INSERT INTO public.journals VALUES (11692, 3366, 'Issue', 5, '', '2020-12-29 11:36:14+07', false);
INSERT INTO public.journals VALUES (11693, 3439, 'Issue', 5, '', '2020-12-29 12:00:04+07', false);
INSERT INTO public.journals VALUES (11694, 3440, 'Issue', 5, '', '2020-12-29 12:00:04+07', false);
INSERT INTO public.journals VALUES (11695, 3441, 'Issue', 5, '', '2020-12-29 12:00:04+07', false);
INSERT INTO public.journals VALUES (11696, 3442, 'Issue', 5, '', '2020-12-29 12:00:05+07', false);
INSERT INTO public.journals VALUES (11697, 3439, 'Issue', 5, NULL, '2020-12-29 12:00:48+07', false);
INSERT INTO public.journals VALUES (11698, 3440, 'Issue', 5, NULL, '2020-12-29 12:00:48+07', false);
INSERT INTO public.journals VALUES (11699, 3441, 'Issue', 5, NULL, '2020-12-29 12:00:48+07', false);
INSERT INTO public.journals VALUES (11700, 3442, 'Issue', 5, NULL, '2020-12-29 12:00:49+07', false);
INSERT INTO public.journals VALUES (11701, 3418, 'Issue', 5, '', '2020-12-30 14:21:53+07', false);
INSERT INTO public.journals VALUES (11702, 3369, 'Issue', 5, '', '2020-12-30 14:22:35+07', false);
INSERT INTO public.journals VALUES (11703, 3421, 'Issue', 15, '', '2020-12-30 14:35:15+07', false);
INSERT INTO public.journals VALUES (11704, 3422, 'Issue', 15, '', '2020-12-30 14:35:16+07', false);
INSERT INTO public.journals VALUES (11705, 3423, 'Issue', 15, '', '2020-12-30 14:35:16+07', false);
INSERT INTO public.journals VALUES (11706, 3452, 'Issue', 15, '', '2020-12-30 14:35:16+07', false);
INSERT INTO public.journals VALUES (11707, 3453, 'Issue', 15, '', '2020-12-30 14:35:16+07', false);
INSERT INTO public.journals VALUES (11708, 3421, 'Issue', 15, NULL, '2020-12-30 15:28:55+07', false);
INSERT INTO public.journals VALUES (11709, 3422, 'Issue', 15, NULL, '2020-12-30 15:28:55+07', false);
INSERT INTO public.journals VALUES (11710, 3423, 'Issue', 15, NULL, '2020-12-30 15:28:55+07', false);
INSERT INTO public.journals VALUES (11711, 3452, 'Issue', 15, NULL, '2020-12-30 15:28:56+07', false);
INSERT INTO public.journals VALUES (11712, 3453, 'Issue', 15, NULL, '2020-12-30 15:28:56+07', false);
INSERT INTO public.journals VALUES (11713, 3421, 'Issue', 15, NULL, '2020-12-30 15:29:08+07', false);
INSERT INTO public.journals VALUES (11714, 3422, 'Issue', 15, NULL, '2020-12-30 15:29:08+07', false);
INSERT INTO public.journals VALUES (11715, 3423, 'Issue', 15, NULL, '2020-12-30 15:29:08+07', false);
INSERT INTO public.journals VALUES (11716, 3452, 'Issue', 15, NULL, '2020-12-30 15:29:08+07', false);
INSERT INTO public.journals VALUES (11717, 3453, 'Issue', 15, NULL, '2020-12-30 15:29:08+07', false);
INSERT INTO public.journals VALUES (11718, 3472, 'Issue', 17, '', '2020-12-30 16:37:30+07', false);
INSERT INTO public.journals VALUES (11719, 3471, 'Issue', 15, NULL, '2020-12-30 16:46:02+07', false);
INSERT INTO public.journals VALUES (11720, 3471, 'Issue', 15, NULL, '2020-12-30 16:46:21+07', false);
INSERT INTO public.journals VALUES (11721, 3420, 'Issue', 15, '', '2020-12-30 16:46:58+07', false);
INSERT INTO public.journals VALUES (11722, 3477, 'Issue', 40, '', '2020-12-30 22:23:52+07', false);
INSERT INTO public.journals VALUES (11723, 3467, 'Issue', 39, NULL, '2020-12-31 08:33:24+07', false);
INSERT INTO public.journals VALUES (11724, 3467, 'Issue', 39, NULL, '2020-12-31 08:33:29+07', false);
INSERT INTO public.journals VALUES (11725, 3467, 'Issue', 39, NULL, '2020-12-31 08:33:35+07', false);
INSERT INTO public.journals VALUES (11726, 3468, 'Issue', 39, NULL, '2020-12-31 08:33:48+07', false);
INSERT INTO public.journals VALUES (11727, 3468, 'Issue', 39, '', '2020-12-31 08:34:06+07', false);
INSERT INTO public.journals VALUES (11728, 3476, 'Issue', 39, NULL, '2020-12-31 08:34:50+07', false);
INSERT INTO public.journals VALUES (11729, 3476, 'Issue', 39, NULL, '2020-12-31 08:35:00+07', false);
INSERT INTO public.journals VALUES (11730, 3469, 'Issue', 39, NULL, '2020-12-31 08:35:16+07', false);
INSERT INTO public.journals VALUES (11731, 3477, 'Issue', 39, NULL, '2020-12-31 08:35:16+07', false);
INSERT INTO public.journals VALUES (11732, 3482, 'Issue', 39, NULL, '2020-12-31 08:35:16+07', false);
INSERT INTO public.journals VALUES (11733, 3469, 'Issue', 39, NULL, '2020-12-31 08:35:30+07', false);
INSERT INTO public.journals VALUES (11734, 3477, 'Issue', 39, NULL, '2020-12-31 08:35:31+07', false);
INSERT INTO public.journals VALUES (11735, 3482, 'Issue', 39, NULL, '2020-12-31 08:35:31+07', false);
INSERT INTO public.journals VALUES (11736, 3483, 'Issue', 39, '', '2020-12-31 08:38:25+07', false);
INSERT INTO public.journals VALUES (11737, 3474, 'Issue', 12, NULL, '2020-12-31 09:32:20+07', false);
INSERT INTO public.journals VALUES (11738, 3474, 'Issue', 12, NULL, '2020-12-31 09:32:33+07', false);
INSERT INTO public.journals VALUES (11739, 3475, 'Issue', 12, NULL, '2020-12-31 09:32:45+07', false);
INSERT INTO public.journals VALUES (11740, 3475, 'Issue', 12, NULL, '2020-12-31 09:32:50+07', false);
INSERT INTO public.journals VALUES (11741, 3486, 'Issue', 12, '', '2020-12-31 09:35:19+07', false);
INSERT INTO public.journals VALUES (11742, 3484, 'Issue', 10, NULL, '2020-12-31 09:51:53+07', false);
INSERT INTO public.journals VALUES (11743, 3485, 'Issue', 10, NULL, '2020-12-31 09:52:01+07', false);
INSERT INTO public.journals VALUES (11744, 3485, 'Issue', 10, NULL, '2020-12-31 09:52:08+07', false);
INSERT INTO public.journals VALUES (11745, 3484, 'Issue', 10, NULL, '2020-12-31 09:52:15+07', false);
INSERT INTO public.journals VALUES (11746, 3437, 'Issue', 12, NULL, '2020-12-31 10:08:57+07', false);
INSERT INTO public.journals VALUES (11747, 3437, 'Issue', 12, NULL, '2020-12-31 10:09:09+07', false);
INSERT INTO public.journals VALUES (11748, 3438, 'Issue', 12, NULL, '2020-12-31 10:09:19+07', false);
INSERT INTO public.journals VALUES (11749, 3438, 'Issue', 12, NULL, '2020-12-31 10:09:28+07', false);
INSERT INTO public.journals VALUES (11750, 3419, 'Issue', 5, '', '2020-12-31 11:10:23+07', false);
INSERT INTO public.journals VALUES (11751, 3446, 'Issue', 5, '', '2020-12-31 11:10:23+07', false);
INSERT INTO public.journals VALUES (11752, 3457, 'Issue', 5, '', '2020-12-31 11:10:23+07', false);
INSERT INTO public.journals VALUES (11753, 3454, 'Issue', 5, '', '2020-12-31 11:11:06+07', false);
INSERT INTO public.journals VALUES (11754, 3439, 'Issue', 5, '', '2020-12-31 11:11:27+07', false);
INSERT INTO public.journals VALUES (11755, 3440, 'Issue', 5, '', '2020-12-31 11:11:27+07', false);
INSERT INTO public.journals VALUES (11756, 3441, 'Issue', 5, '', '2020-12-31 11:11:27+07', false);
INSERT INTO public.journals VALUES (11757, 3442, 'Issue', 5, '', '2020-12-31 11:11:27+07', false);
INSERT INTO public.journals VALUES (11758, 3487, 'Issue', 40, NULL, '2020-12-31 11:17:51+07', false);
INSERT INTO public.journals VALUES (11759, 3487, 'Issue', 40, '', '2020-12-31 11:20:14+07', false);
INSERT INTO public.journals VALUES (11760, 3487, 'Issue', 40, '', '2020-12-31 11:20:20+07', false);
INSERT INTO public.journals VALUES (11761, 3459, 'Issue', 5, NULL, '2020-12-31 11:20:25+07', false);
INSERT INTO public.journals VALUES (11762, 3462, 'Issue', 33, '', '2020-12-31 13:51:10+07', false);
INSERT INTO public.journals VALUES (11763, 3465, 'Issue', 33, '', '2020-12-31 13:55:29+07', false);
INSERT INTO public.journals VALUES (11764, 3495, 'Issue', 40, '', '2020-12-31 15:52:01+07', false);
INSERT INTO public.journals VALUES (11765, 3495, 'Issue', 40, '', '2020-12-31 16:22:16+07', false);
INSERT INTO public.journals VALUES (11766, 3478, 'Issue', 41, '', '2021-01-04 08:22:52+07', false);
INSERT INTO public.journals VALUES (11767, 3479, 'Issue', 41, '', '2021-01-04 08:23:13+07', false);
INSERT INTO public.journals VALUES (11768, 3445, 'Issue', 41, '', '2021-01-04 08:23:55+07', false);
INSERT INTO public.journals VALUES (11769, 3431, 'Issue', 41, '', '2021-01-04 08:24:35+07', false);
INSERT INTO public.journals VALUES (11770, 3491, 'Issue', 40, NULL, '2021-01-04 09:21:25+07', false);
INSERT INTO public.journals VALUES (11771, 3443, 'Issue', 5, '', '2021-01-04 10:17:07+07', false);
INSERT INTO public.journals VALUES (11772, 3444, 'Issue', 5, '', '2021-01-04 10:17:24+07', false);
INSERT INTO public.journals VALUES (11773, 2453, 'Issue', 39, '', '2021-01-04 11:01:44+07', false);
INSERT INTO public.journals VALUES (11774, 3331, 'Issue', 39, '', '2021-01-04 11:01:44+07', false);
INSERT INTO public.journals VALUES (11775, 3354, 'Issue', 39, '', '2021-01-04 11:01:44+07', false);
INSERT INTO public.journals VALUES (11776, 3451, 'Issue', 39, NULL, '2021-01-04 11:01:54+07', false);
INSERT INTO public.journals VALUES (11777, 2453, 'Issue', 39, NULL, '2021-01-04 11:01:58+07', false);
INSERT INTO public.journals VALUES (11778, 2453, 'Issue', 39, NULL, '2021-01-04 11:02:02+07', false);
INSERT INTO public.journals VALUES (11779, 3364, 'Issue', 5, NULL, '2021-01-04 11:03:23+07', false);
INSERT INTO public.journals VALUES (11780, 3366, 'Issue', 5, NULL, '2021-01-04 11:03:24+07', false);
INSERT INTO public.journals VALUES (11781, 3369, 'Issue', 5, NULL, '2021-01-04 11:03:24+07', false);
INSERT INTO public.journals VALUES (11782, 3418, 'Issue', 5, NULL, '2021-01-04 11:03:24+07', false);
INSERT INTO public.journals VALUES (11783, 3419, 'Issue', 5, NULL, '2021-01-04 11:03:24+07', false);
INSERT INTO public.journals VALUES (11784, 3436, 'Issue', 5, NULL, '2021-01-04 11:03:24+07', false);
INSERT INTO public.journals VALUES (11785, 3437, 'Issue', 5, NULL, '2021-01-04 11:03:24+07', false);
INSERT INTO public.journals VALUES (11786, 3438, 'Issue', 5, NULL, '2021-01-04 11:03:24+07', false);
INSERT INTO public.journals VALUES (11787, 3446, 'Issue', 5, NULL, '2021-01-04 11:03:24+07', false);
INSERT INTO public.journals VALUES (11788, 3457, 'Issue', 5, NULL, '2021-01-04 11:03:24+07', false);
INSERT INTO public.journals VALUES (11789, 3474, 'Issue', 5, NULL, '2021-01-04 11:03:24+07', false);
INSERT INTO public.journals VALUES (11790, 3475, 'Issue', 5, NULL, '2021-01-04 11:03:25+07', false);
INSERT INTO public.journals VALUES (11791, 3486, 'Issue', 5, NULL, '2021-01-04 11:03:25+07', false);
INSERT INTO public.journals VALUES (11792, 3334, 'Issue', 5, NULL, '2021-01-04 11:03:32+07', false);
INSERT INTO public.journals VALUES (11793, 3335, 'Issue', 5, NULL, '2021-01-04 11:03:32+07', false);
INSERT INTO public.journals VALUES (11794, 3439, 'Issue', 39, NULL, '2021-01-04 11:03:45+07', false);
INSERT INTO public.journals VALUES (11795, 3440, 'Issue', 39, NULL, '2021-01-04 11:03:45+07', false);
INSERT INTO public.journals VALUES (11796, 3441, 'Issue', 39, NULL, '2021-01-04 11:03:45+07', false);
INSERT INTO public.journals VALUES (11797, 3442, 'Issue', 39, NULL, '2021-01-04 11:03:45+07', false);
INSERT INTO public.journals VALUES (11798, 3470, 'Issue', 15, '', '2021-01-04 11:03:47+07', false);
INSERT INTO public.journals VALUES (11799, 3439, 'Issue', 39, NULL, '2021-01-04 11:03:56+07', false);
INSERT INTO public.journals VALUES (11800, 3440, 'Issue', 39, NULL, '2021-01-04 11:03:56+07', false);
INSERT INTO public.journals VALUES (11801, 3441, 'Issue', 39, NULL, '2021-01-04 11:03:56+07', false);
INSERT INTO public.journals VALUES (11802, 3442, 'Issue', 39, NULL, '2021-01-04 11:03:56+07', false);
INSERT INTO public.journals VALUES (11803, 3454, 'Issue', 39, NULL, '2021-01-04 11:04:02+07', false);
INSERT INTO public.journals VALUES (11804, 3454, 'Issue', 39, NULL, '2021-01-04 11:04:07+07', false);
INSERT INTO public.journals VALUES (11805, 3470, 'Issue', 15, '', '2021-01-04 11:04:10+07', false);
INSERT INTO public.journals VALUES (11806, 3439, 'Issue', 5, '', '2021-01-04 11:04:41+07', false);
INSERT INTO public.journals VALUES (11807, 3440, 'Issue', 5, '', '2021-01-04 11:04:41+07', false);
INSERT INTO public.journals VALUES (11808, 3441, 'Issue', 5, '', '2021-01-04 11:04:41+07', false);
INSERT INTO public.journals VALUES (11809, 3442, 'Issue', 5, '', '2021-01-04 11:04:41+07', false);
INSERT INTO public.journals VALUES (11810, 3458, 'Issue', 5, '', '2021-01-04 11:04:42+07', false);
INSERT INTO public.journals VALUES (11811, 3459, 'Issue', 5, '', '2021-01-04 11:04:42+07', false);
INSERT INTO public.journals VALUES (11812, 3487, 'Issue', 5, '', '2021-01-04 11:04:42+07', false);
INSERT INTO public.journals VALUES (11813, 3490, 'Issue', 5, '', '2021-01-04 11:04:42+07', false);
INSERT INTO public.journals VALUES (11814, 3492, 'Issue', 5, '', '2021-01-04 11:04:42+07', false);
INSERT INTO public.journals VALUES (11815, 3493, 'Issue', 5, '', '2021-01-04 11:04:42+07', false);
INSERT INTO public.journals VALUES (11816, 3494, 'Issue', 5, '', '2021-01-04 11:04:42+07', false);
INSERT INTO public.journals VALUES (11817, 3495, 'Issue', 5, '', '2021-01-04 11:04:42+07', false);
INSERT INTO public.journals VALUES (11818, 3439, 'Issue', 5, '', '2021-01-04 11:05:13+07', false);
INSERT INTO public.journals VALUES (11819, 3440, 'Issue', 5, '', '2021-01-04 11:05:13+07', false);
INSERT INTO public.journals VALUES (11820, 3441, 'Issue', 5, '', '2021-01-04 11:05:14+07', false);
INSERT INTO public.journals VALUES (11821, 3442, 'Issue', 5, '', '2021-01-04 11:05:14+07', false);
INSERT INTO public.journals VALUES (11822, 3454, 'Issue', 5, NULL, '2021-01-04 11:22:59+07', false);
INSERT INTO public.journals VALUES (11823, 3277, 'Issue', 10, NULL, '2021-01-04 11:47:03+07', false);
INSERT INTO public.journals VALUES (11824, 3435, 'Issue', 10, NULL, '2021-01-04 11:47:20+07', false);
INSERT INTO public.journals VALUES (11825, 3075, 'Issue', 40, NULL, '2021-01-04 13:21:49+07', false);
INSERT INTO public.journals VALUES (11826, 3277, 'Issue', 40, NULL, '2021-01-04 13:21:49+07', false);
INSERT INTO public.journals VALUES (11827, 3433, 'Issue', 40, NULL, '2021-01-04 13:21:49+07', false);
INSERT INTO public.journals VALUES (11828, 3434, 'Issue', 40, NULL, '2021-01-04 13:21:49+07', false);
INSERT INTO public.journals VALUES (11829, 3435, 'Issue', 40, NULL, '2021-01-04 13:21:49+07', false);
INSERT INTO public.journals VALUES (11830, 3448, 'Issue', 40, NULL, '2021-01-04 13:21:49+07', false);
INSERT INTO public.journals VALUES (11831, 3484, 'Issue', 40, NULL, '2021-01-04 13:21:49+07', false);
INSERT INTO public.journals VALUES (11832, 3485, 'Issue', 40, NULL, '2021-01-04 13:21:49+07', false);
INSERT INTO public.journals VALUES (11833, 2453, 'Issue', 40, NULL, '2021-01-04 13:22:55+07', false);
INSERT INTO public.journals VALUES (11834, 3082, 'Issue', 40, NULL, '2021-01-04 13:22:55+07', false);
INSERT INTO public.journals VALUES (11835, 3353, 'Issue', 40, NULL, '2021-01-04 13:22:55+07', false);
INSERT INTO public.journals VALUES (11836, 3431, 'Issue', 40, NULL, '2021-01-04 13:22:56+07', false);
INSERT INTO public.journals VALUES (11837, 3445, 'Issue', 40, NULL, '2021-01-04 13:22:56+07', false);
INSERT INTO public.journals VALUES (11838, 3451, 'Issue', 40, NULL, '2021-01-04 13:22:56+07', false);
INSERT INTO public.journals VALUES (11839, 3467, 'Issue', 40, NULL, '2021-01-04 13:22:56+07', false);
INSERT INTO public.journals VALUES (11840, 3468, 'Issue', 40, NULL, '2021-01-04 13:22:56+07', false);
INSERT INTO public.journals VALUES (11841, 3469, 'Issue', 40, NULL, '2021-01-04 13:22:56+07', false);
INSERT INTO public.journals VALUES (11842, 3476, 'Issue', 40, NULL, '2021-01-04 13:22:56+07', false);
INSERT INTO public.journals VALUES (11843, 3477, 'Issue', 40, NULL, '2021-01-04 13:22:56+07', false);
INSERT INTO public.journals VALUES (11844, 3478, 'Issue', 40, NULL, '2021-01-04 13:22:56+07', false);
INSERT INTO public.journals VALUES (11845, 3479, 'Issue', 40, NULL, '2021-01-04 13:22:56+07', false);
INSERT INTO public.journals VALUES (11846, 3482, 'Issue', 40, NULL, '2021-01-04 13:22:57+07', false);
INSERT INTO public.journals VALUES (11847, 3503, 'Issue', 40, NULL, '2021-01-04 13:22:57+07', false);
INSERT INTO public.journals VALUES (11848, 2886, 'Issue', 40, '', '2021-01-04 13:25:22+07', false);
INSERT INTO public.journals VALUES (11849, 2887, 'Issue', 40, '', '2021-01-04 13:25:22+07', false);
INSERT INTO public.journals VALUES (11850, 3267, 'Issue', 40, '', '2021-01-04 13:25:22+07', false);
INSERT INTO public.journals VALUES (11851, 3507, 'Issue', 40, '', '2021-01-04 13:25:22+07', false);
INSERT INTO public.journals VALUES (11852, 3508, 'Issue', 40, '', '2021-01-04 13:25:23+07', false);
INSERT INTO public.journals VALUES (11853, 2850, 'Issue', 40, '', '2021-01-04 13:25:43+07', false);
INSERT INTO public.journals VALUES (11854, 2851, 'Issue', 40, '', '2021-01-04 13:25:44+07', false);
INSERT INTO public.journals VALUES (11855, 3080, 'Issue', 40, '', '2021-01-04 13:25:44+07', false);
INSERT INTO public.journals VALUES (11856, 3222, 'Issue', 40, '', '2021-01-04 13:25:44+07', false);
INSERT INTO public.journals VALUES (11857, 3268, 'Issue', 40, '', '2021-01-04 13:25:44+07', false);
INSERT INTO public.journals VALUES (11858, 3331, 'Issue', 40, '', '2021-01-04 13:25:44+07', false);
INSERT INTO public.journals VALUES (11859, 3354, 'Issue', 40, '', '2021-01-04 13:25:45+07', false);
INSERT INTO public.journals VALUES (11860, 3365, 'Issue', 40, '', '2021-01-04 13:25:45+07', false);
INSERT INTO public.journals VALUES (11861, 3432, 'Issue', 40, '', '2021-01-04 13:25:45+07', false);
INSERT INTO public.journals VALUES (11862, 3447, 'Issue', 40, '', '2021-01-04 13:25:45+07', false);
INSERT INTO public.journals VALUES (11863, 3480, 'Issue', 40, '', '2021-01-04 13:25:45+07', false);
INSERT INTO public.journals VALUES (11864, 3481, 'Issue', 40, '', '2021-01-04 13:25:45+07', false);
INSERT INTO public.journals VALUES (11865, 3483, 'Issue', 40, '', '2021-01-04 13:25:45+07', false);
INSERT INTO public.journals VALUES (11866, 3501, 'Issue', 40, '', '2021-01-04 13:25:45+07', false);
INSERT INTO public.journals VALUES (11867, 3502, 'Issue', 40, '', '2021-01-04 13:25:45+07', false);
INSERT INTO public.journals VALUES (11868, 2886, 'Issue', 40, '', '2021-01-04 13:26:36+07', false);
INSERT INTO public.journals VALUES (11869, 2887, 'Issue', 40, '', '2021-01-04 13:26:36+07', false);
INSERT INTO public.journals VALUES (11870, 3267, 'Issue', 40, '', '2021-01-04 13:26:36+07', false);
INSERT INTO public.journals VALUES (11871, 2850, 'Issue', 40, '', '2021-01-04 13:27:15+07', false);
INSERT INTO public.journals VALUES (11872, 2851, 'Issue', 40, '', '2021-01-04 13:27:15+07', false);
INSERT INTO public.journals VALUES (11873, 3080, 'Issue', 40, '', '2021-01-04 13:27:15+07', false);
INSERT INTO public.journals VALUES (11874, 3222, 'Issue', 40, '', '2021-01-04 13:27:16+07', false);
INSERT INTO public.journals VALUES (11875, 3268, 'Issue', 40, '', '2021-01-04 13:27:16+07', false);
INSERT INTO public.journals VALUES (11876, 3365, 'Issue', 40, '', '2021-01-04 13:27:16+07', false);
INSERT INTO public.journals VALUES (11877, 3432, 'Issue', 40, '', '2021-01-04 13:27:16+07', false);
INSERT INTO public.journals VALUES (11878, 3447, 'Issue', 40, '', '2021-01-04 13:27:16+07', false);
INSERT INTO public.journals VALUES (11879, 3480, 'Issue', 40, '', '2021-01-04 13:27:16+07', false);
INSERT INTO public.journals VALUES (11880, 3481, 'Issue', 40, '', '2021-01-04 13:27:17+07', false);
INSERT INTO public.journals VALUES (11881, 3483, 'Issue', 40, '', '2021-01-04 13:27:17+07', false);
INSERT INTO public.journals VALUES (11882, 3501, 'Issue', 39, NULL, '2021-01-04 13:45:47+07', false);
INSERT INTO public.journals VALUES (11883, 3502, 'Issue', 39, NULL, '2021-01-04 13:45:48+07', false);
INSERT INTO public.journals VALUES (11884, 3509, 'Issue', 39, NULL, '2021-01-04 13:45:48+07', false);
INSERT INTO public.journals VALUES (11885, 3501, 'Issue', 39, NULL, '2021-01-04 13:45:57+07', false);
INSERT INTO public.journals VALUES (11886, 3502, 'Issue', 39, NULL, '2021-01-04 13:45:57+07', false);
INSERT INTO public.journals VALUES (11887, 3509, 'Issue', 39, NULL, '2021-01-04 13:45:57+07', false);
INSERT INTO public.journals VALUES (11888, 3508, 'Issue', 10, NULL, '2021-01-04 13:59:35+07', false);
INSERT INTO public.journals VALUES (11889, 3508, 'Issue', 10, NULL, '2021-01-04 13:59:46+07', false);
INSERT INTO public.journals VALUES (11890, 3507, 'Issue', 10, NULL, '2021-01-04 14:39:31+07', false);
INSERT INTO public.journals VALUES (11891, 3507, 'Issue', 10, NULL, '2021-01-04 14:39:37+07', false);
INSERT INTO public.journals VALUES (11892, 3500, 'Issue', 37, '', '2021-01-04 15:56:06+07', false);
INSERT INTO public.journals VALUES (11893, 3510, 'Issue', 40, NULL, '2021-01-04 16:05:50+07', false);
INSERT INTO public.journals VALUES (11894, 3490, 'Issue', 38, '', '2021-01-04 16:23:09+07', false);
INSERT INTO public.journals VALUES (11895, 3511, 'Issue', 8, '', '2021-01-04 16:54:31+07', false);
INSERT INTO public.journals VALUES (11896, 3511, 'Issue', 8, NULL, '2021-01-04 16:54:38+07', false);
INSERT INTO public.journals VALUES (11897, 3512, 'Issue', 8, NULL, '2021-01-04 16:54:38+07', false);
INSERT INTO public.journals VALUES (11898, 3513, 'Issue', 8, NULL, '2021-01-04 16:58:18+07', false);
INSERT INTO public.journals VALUES (11899, 3483, 'Issue', 8, NULL, '2021-01-04 16:59:00+07', false);
INSERT INTO public.journals VALUES (11900, 3483, 'Issue', 8, NULL, '2021-01-04 16:59:04+07', false);
INSERT INTO public.journals VALUES (11901, 3439, 'Issue', 5, NULL, '2021-01-04 17:12:40+07', false);
INSERT INTO public.journals VALUES (11902, 3440, 'Issue', 5, NULL, '2021-01-04 17:12:40+07', false);
INSERT INTO public.journals VALUES (11903, 3441, 'Issue', 5, NULL, '2021-01-04 17:12:40+07', false);
INSERT INTO public.journals VALUES (11904, 3442, 'Issue', 5, NULL, '2021-01-04 17:12:40+07', false);
INSERT INTO public.journals VALUES (11905, 3300, 'Issue', 5, '', '2021-01-05 08:49:00+07', false);
INSERT INTO public.journals VALUES (11906, 3300, 'Issue', 5, '', '2021-01-05 08:49:07+07', false);
INSERT INTO public.journals VALUES (11907, 3493, 'Issue', 37, '', '2021-01-05 09:28:44+07', false);
INSERT INTO public.journals VALUES (11908, 3492, 'Issue', 37, '', '2021-01-05 09:29:31+07', false);
INSERT INTO public.journals VALUES (11909, 3506, 'Issue', 12, NULL, '2021-01-05 10:18:41+07', false);
INSERT INTO public.journals VALUES (11910, 3506, 'Issue', 12, NULL, '2021-01-05 10:18:47+07', false);
INSERT INTO public.journals VALUES (11911, 3517, 'Issue', 12, NULL, '2021-01-05 10:23:13+07', false);
INSERT INTO public.journals VALUES (11912, 3518, 'Issue', 12, NULL, '2021-01-05 10:23:21+07', false);
INSERT INTO public.journals VALUES (11913, 3497, 'Issue', 12, '', '2021-01-05 10:46:56+07', false);
INSERT INTO public.journals VALUES (11914, 3494, 'Issue', 12, '', '2021-01-05 10:49:04+07', false);
INSERT INTO public.journals VALUES (11915, 3505, 'Issue', 12, NULL, '2021-01-05 13:26:22+07', false);
INSERT INTO public.journals VALUES (11916, 3505, 'Issue', 12, NULL, '2021-01-05 13:26:52+07', false);
INSERT INTO public.journals VALUES (11917, 3514, 'Issue', 12, NULL, '2021-01-05 13:44:16+07', false);
INSERT INTO public.journals VALUES (11918, 3514, 'Issue', 12, NULL, '2021-01-05 13:44:27+07', false);
INSERT INTO public.journals VALUES (11919, 3516, 'Issue', 12, NULL, '2021-01-05 13:44:57+07', false);
INSERT INTO public.journals VALUES (11920, 3516, 'Issue', 12, '', '2021-01-05 13:45:17+07', false);
INSERT INTO public.journals VALUES (11921, 3459, 'Issue', 37, '', '2021-01-05 14:20:01+07', false);
INSERT INTO public.journals VALUES (11922, 3443, 'Issue', 5, '', '2021-01-05 14:44:55+07', false);
INSERT INTO public.journals VALUES (11923, 3444, 'Issue', 5, '', '2021-01-05 14:45:42+07', false);
INSERT INTO public.journals VALUES (11924, 3443, 'Issue', 5, '', '2021-01-05 14:47:31+07', false);
INSERT INTO public.journals VALUES (11925, 3444, 'Issue', 5, '', '2021-01-05 14:47:31+07', false);
INSERT INTO public.journals VALUES (11926, 3523, 'Issue', 5, NULL, '2021-01-05 14:47:49+07', false);
INSERT INTO public.journals VALUES (11927, 3524, 'Issue', 5, NULL, '2021-01-05 14:47:49+07', false);
INSERT INTO public.journals VALUES (11928, 3525, 'Issue', 5, NULL, '2021-01-05 14:47:49+07', false);
INSERT INTO public.journals VALUES (11929, 3444, 'Issue', 5, '', '2021-01-05 14:48:04+07', false);
INSERT INTO public.journals VALUES (11930, 3526, 'Issue', 12, NULL, '2021-01-05 15:41:01+07', false);
INSERT INTO public.journals VALUES (11931, 3527, 'Issue', 12, NULL, '2021-01-05 15:41:33+07', false);
INSERT INTO public.journals VALUES (11932, 3528, 'Issue', 12, NULL, '2021-01-05 15:41:33+07', false);
INSERT INTO public.journals VALUES (11933, 3526, 'Issue', 12, NULL, '2021-01-05 15:41:50+07', false);
INSERT INTO public.journals VALUES (11934, 3527, 'Issue', 12, NULL, '2021-01-05 15:41:50+07', false);
INSERT INTO public.journals VALUES (11935, 3528, 'Issue', 12, NULL, '2021-01-05 15:41:50+07', false);
INSERT INTO public.journals VALUES (11936, 3528, 'Issue', 12, '', '2021-01-05 15:42:29+07', false);
INSERT INTO public.journals VALUES (11937, 3526, 'Issue', 12, NULL, '2021-01-05 15:42:55+07', false);
INSERT INTO public.journals VALUES (11938, 3527, 'Issue', 12, NULL, '2021-01-05 15:42:55+07', false);
INSERT INTO public.journals VALUES (11939, 3529, 'Issue', 17, '', '2021-01-05 16:14:31+07', false);
INSERT INTO public.journals VALUES (11940, 3530, 'Issue', 10, NULL, '2021-01-05 16:30:02+07', false);
INSERT INTO public.journals VALUES (11941, 3531, 'Issue', 10, NULL, '2021-01-05 16:30:02+07', false);
INSERT INTO public.journals VALUES (11942, 3530, 'Issue', 10, NULL, '2021-01-05 16:30:19+07', false);
INSERT INTO public.journals VALUES (11943, 3531, 'Issue', 10, NULL, '2021-01-05 16:30:19+07', false);
INSERT INTO public.journals VALUES (11944, 3519, 'Issue', 37, NULL, '2021-01-06 08:40:14+07', false);
INSERT INTO public.journals VALUES (11945, 3519, 'Issue', 37, NULL, '2021-01-06 08:40:28+07', false);
INSERT INTO public.journals VALUES (11946, 3515, 'Issue', 37, '', '2021-01-06 08:55:45+07', false);
INSERT INTO public.journals VALUES (11947, 3498, 'Issue', 38, '', '2021-01-06 08:56:09+07', false);
INSERT INTO public.journals VALUES (11948, 3522, 'Issue', 38, NULL, '2021-01-06 08:59:59+07', false);
INSERT INTO public.journals VALUES (11949, 3522, 'Issue', 38, NULL, '2021-01-06 09:00:09+07', false);
INSERT INTO public.journals VALUES (11950, 3498, 'Issue', 38, NULL, '2021-01-06 09:00:16+07', false);
INSERT INTO public.journals VALUES (11951, 3490, 'Issue', 38, NULL, '2021-01-06 09:00:23+07', false);
INSERT INTO public.journals VALUES (11952, 3458, 'Issue', 38, '', '2021-01-06 09:01:19+07', false);
INSERT INTO public.journals VALUES (11953, 3487, 'Issue', 5, '', '2021-01-06 09:53:35+07', false);
INSERT INTO public.journals VALUES (11954, 3495, 'Issue', 5, '', '2021-01-06 09:54:01+07', false);
INSERT INTO public.journals VALUES (11955, 3495, 'Issue', 40, '', '2021-01-06 10:23:45+07', false);
INSERT INTO public.journals VALUES (11956, 3495, 'Issue', 40, NULL, '2021-01-06 10:24:03+07', false);
INSERT INTO public.journals VALUES (11957, 3495, 'Issue', 40, NULL, '2021-01-06 10:24:12+07', false);
INSERT INTO public.journals VALUES (11958, 3534, 'Issue', 12, NULL, '2021-01-06 10:28:39+07', false);
INSERT INTO public.journals VALUES (11959, 3534, 'Issue', 12, NULL, '2021-01-06 10:28:51+07', false);
INSERT INTO public.journals VALUES (11960, 3532, 'Issue', 12, '', '2021-01-06 10:47:52+07', false);
INSERT INTO public.journals VALUES (11961, 3535, 'Issue', 17, '', '2021-01-06 15:40:53+07', false);
INSERT INTO public.journals VALUES (11962, 3535, 'Issue', 17, '', '2021-01-06 15:41:12+07', false);
INSERT INTO public.journals VALUES (11963, 3535, 'Issue', 17, '', '2021-01-06 15:41:24+07', false);
INSERT INTO public.journals VALUES (11964, 3536, 'Issue', 15, NULL, '2021-01-06 16:12:03+07', false);
INSERT INTO public.journals VALUES (11965, 3537, 'Issue', 15, NULL, '2021-01-06 16:12:03+07', false);
INSERT INTO public.journals VALUES (11966, 3521, 'Issue', 37, '', '2021-01-07 08:16:15+07', false);
INSERT INTO public.journals VALUES (11967, 3538, 'Issue', 33, '', '2021-01-07 08:30:12+07', false);
INSERT INTO public.journals VALUES (11968, 3540, 'Issue', 33, '', '2021-01-07 11:29:22+07', false);
INSERT INTO public.journals VALUES (11969, 3542, 'Issue', 10, NULL, '2021-01-07 11:34:30+07', false);
INSERT INTO public.journals VALUES (11970, 3542, 'Issue', 10, NULL, '2021-01-07 11:34:45+07', false);
INSERT INTO public.journals VALUES (11971, 3515, 'Issue', 39, NULL, '2021-01-07 14:57:17+07', false);
INSERT INTO public.journals VALUES (11972, 3545, 'Issue', 40, NULL, '2021-01-07 15:12:46+07', false);
INSERT INTO public.journals VALUES (11973, 3545, 'Issue', 37, '', '2021-01-07 15:21:59+07', false);
INSERT INTO public.journals VALUES (11974, 3495, 'Issue', 37, '', '2021-01-07 15:27:42+07', false);
INSERT INTO public.journals VALUES (11975, 3520, 'Issue', 37, '', '2021-01-07 15:35:46+07', false);
INSERT INTO public.journals VALUES (11976, 3547, 'Issue', 17, '', '2021-01-07 16:55:48+07', false);
INSERT INTO public.journals VALUES (11977, 3548, 'Issue', 8, NULL, '2021-01-07 16:58:11+07', false);
INSERT INTO public.journals VALUES (11978, 3549, 'Issue', 8, NULL, '2021-01-07 16:58:11+07', false);
INSERT INTO public.journals VALUES (11979, 2850, 'Issue', 8, NULL, '2021-01-07 17:01:13+07', false);
INSERT INTO public.journals VALUES (11980, 2851, 'Issue', 8, NULL, '2021-01-07 17:01:13+07', false);
INSERT INTO public.journals VALUES (11981, 3080, 'Issue', 8, NULL, '2021-01-07 17:01:13+07', false);
INSERT INTO public.journals VALUES (11982, 3222, 'Issue', 8, NULL, '2021-01-07 17:01:14+07', false);
INSERT INTO public.journals VALUES (11983, 3432, 'Issue', 8, NULL, '2021-01-07 17:01:14+07', false);
INSERT INTO public.journals VALUES (11984, 3447, 'Issue', 8, NULL, '2021-01-07 17:01:14+07', false);
INSERT INTO public.journals VALUES (11985, 2850, 'Issue', 8, NULL, '2021-01-07 17:01:21+07', false);
INSERT INTO public.journals VALUES (11986, 2851, 'Issue', 8, NULL, '2021-01-07 17:01:21+07', false);
INSERT INTO public.journals VALUES (11987, 3080, 'Issue', 8, NULL, '2021-01-07 17:01:21+07', false);
INSERT INTO public.journals VALUES (11988, 3222, 'Issue', 8, NULL, '2021-01-07 17:01:22+07', false);
INSERT INTO public.journals VALUES (11989, 3432, 'Issue', 8, NULL, '2021-01-07 17:01:22+07', false);
INSERT INTO public.journals VALUES (11990, 3447, 'Issue', 8, NULL, '2021-01-07 17:01:22+07', false);
INSERT INTO public.journals VALUES (11991, 3550, 'Issue', 10, NULL, '2021-01-08 08:07:28+07', false);
INSERT INTO public.journals VALUES (11992, 3550, 'Issue', 10, NULL, '2021-01-08 08:07:36+07', false);
INSERT INTO public.journals VALUES (11993, 2886, 'Issue', 10, NULL, '2021-01-08 08:22:49+07', false);
INSERT INTO public.journals VALUES (11994, 3499, 'Issue', 40, NULL, '2021-01-08 08:32:32+07', false);
INSERT INTO public.journals VALUES (11995, 3499, 'Issue', 40, NULL, '2021-01-08 08:32:40+07', false);
INSERT INTO public.journals VALUES (11996, 3543, 'Issue', 39, NULL, '2021-01-08 08:51:42+07', false);
INSERT INTO public.journals VALUES (11997, 3544, 'Issue', 39, NULL, '2021-01-08 08:51:42+07', false);
INSERT INTO public.journals VALUES (11998, 3553, 'Issue', 39, NULL, '2021-01-08 08:51:42+07', false);
INSERT INTO public.journals VALUES (11999, 3543, 'Issue', 39, NULL, '2021-01-08 08:51:49+07', false);
INSERT INTO public.journals VALUES (12000, 3544, 'Issue', 39, NULL, '2021-01-08 08:51:49+07', false);
INSERT INTO public.journals VALUES (12001, 3553, 'Issue', 39, NULL, '2021-01-08 08:51:49+07', false);
INSERT INTO public.journals VALUES (12002, 3556, 'Issue', 5, '', '2021-01-08 09:16:02+07', false);
INSERT INTO public.journals VALUES (12003, 3365, 'Issue', 41, '', '2021-01-08 09:36:32+07', false);
INSERT INTO public.journals VALUES (12004, 3365, 'Issue', 41, '', '2021-01-08 09:36:40+07', false);
INSERT INTO public.journals VALUES (12005, 3447, 'Issue', 41, '', '2021-01-08 09:37:20+07', false);
INSERT INTO public.journals VALUES (12006, 3268, 'Issue', 41, '', '2021-01-08 09:37:44+07', false);
INSERT INTO public.journals VALUES (12007, 3480, 'Issue', 41, '', '2021-01-08 09:38:09+07', false);
INSERT INTO public.journals VALUES (12008, 3558, 'Issue', 41, '', '2021-01-08 09:39:11+07', false);
INSERT INTO public.journals VALUES (12009, 3551, 'Issue', 10, NULL, '2021-01-08 16:41:14+07', false);
INSERT INTO public.journals VALUES (12010, 3552, 'Issue', 10, NULL, '2021-01-08 16:41:14+07', false);
INSERT INTO public.journals VALUES (12011, 3559, 'Issue', 10, NULL, '2021-01-08 16:41:14+07', false);
INSERT INTO public.journals VALUES (12012, 3551, 'Issue', 10, NULL, '2021-01-08 16:41:32+07', false);
INSERT INTO public.journals VALUES (12013, 3552, 'Issue', 10, NULL, '2021-01-08 16:41:32+07', false);
INSERT INTO public.journals VALUES (12014, 3559, 'Issue', 10, NULL, '2021-01-08 16:41:32+07', false);
INSERT INTO public.journals VALUES (12015, 3268, 'Issue', 41, '', '2021-01-08 16:47:58+07', false);
INSERT INTO public.journals VALUES (12016, 3480, 'Issue', 40, NULL, '2021-01-08 17:02:03+07', false);
INSERT INTO public.journals VALUES (12017, 3480, 'Issue', 40, NULL, '2021-01-08 17:02:10+07', false);
INSERT INTO public.journals VALUES (12018, 3555, 'Issue', 39, NULL, '2021-01-08 17:03:55+07', false);
INSERT INTO public.journals VALUES (12019, 3562, 'Issue', 39, NULL, '2021-01-08 17:03:55+07', false);
INSERT INTO public.journals VALUES (12020, 3555, 'Issue', 39, NULL, '2021-01-08 17:03:58+07', false);
INSERT INTO public.journals VALUES (12021, 3555, 'Issue', 39, '', '2021-01-08 17:04:07+07', false);
INSERT INTO public.journals VALUES (12022, 3556, 'Issue', 39, '', '2021-01-08 17:04:42+07', false);
INSERT INTO public.journals VALUES (12023, 3443, 'Issue', 40, '', '2021-01-09 08:01:16+07', false);
INSERT INTO public.journals VALUES (12024, 3444, 'Issue', 40, '', '2021-01-09 08:01:17+07', false);
INSERT INTO public.journals VALUES (12025, 3523, 'Issue', 40, '', '2021-01-09 08:01:17+07', false);
INSERT INTO public.journals VALUES (12026, 3524, 'Issue', 40, '', '2021-01-09 08:01:17+07', false);
INSERT INTO public.journals VALUES (12027, 3525, 'Issue', 40, '', '2021-01-09 08:01:17+07', false);
INSERT INTO public.journals VALUES (12028, 3443, 'Issue', 5, NULL, '2021-01-09 08:03:36+07', false);
INSERT INTO public.journals VALUES (12029, 3444, 'Issue', 5, NULL, '2021-01-09 08:03:36+07', false);
INSERT INTO public.journals VALUES (12030, 3523, 'Issue', 5, NULL, '2021-01-09 08:03:36+07', false);
INSERT INTO public.journals VALUES (12031, 3524, 'Issue', 5, NULL, '2021-01-09 08:03:36+07', false);
INSERT INTO public.journals VALUES (12032, 3525, 'Issue', 5, NULL, '2021-01-09 08:03:36+07', false);
INSERT INTO public.journals VALUES (12033, 3554, 'Issue', 5, NULL, '2021-01-09 08:06:30+07', false);
INSERT INTO public.journals VALUES (12034, 3563, 'Issue', 41, '', '2021-01-09 09:40:23+07', false);
INSERT INTO public.journals VALUES (12035, 3533, 'Issue', 38, NULL, '2021-01-09 09:57:37+07', false);
INSERT INTO public.journals VALUES (12036, 3533, 'Issue', 38, NULL, '2021-01-09 09:58:06+07', false);
INSERT INTO public.journals VALUES (12037, 3566, 'Issue', 8, NULL, '2021-01-09 10:27:06+07', false);
INSERT INTO public.journals VALUES (12038, 3565, 'Issue', 8, NULL, '2021-01-09 10:27:15+07', false);
INSERT INTO public.journals VALUES (12039, 3566, 'Issue', 8, NULL, '2021-01-09 10:27:15+07', false);
INSERT INTO public.journals VALUES (12040, 3567, 'Issue', 8, NULL, '2021-01-09 10:28:48+07', false);
INSERT INTO public.journals VALUES (12041, 3568, 'Issue', 8, NULL, '2021-01-09 10:28:48+07', false);
INSERT INTO public.journals VALUES (12042, 3567, 'Issue', 8, NULL, '2021-01-09 10:28:52+07', false);
INSERT INTO public.journals VALUES (12043, 3568, 'Issue', 8, NULL, '2021-01-09 10:28:52+07', false);
INSERT INTO public.journals VALUES (12044, 3569, 'Issue', 15, NULL, '2021-01-09 13:30:04+07', false);
INSERT INTO public.journals VALUES (12045, 3570, 'Issue', 15, NULL, '2021-01-09 13:30:05+07', false);
INSERT INTO public.journals VALUES (12046, 3267, 'Issue', 10, '', '2021-01-09 14:36:56+07', false);
INSERT INTO public.journals VALUES (12047, 3571, 'Issue', 10, NULL, '2021-01-09 14:37:04+07', false);
INSERT INTO public.journals VALUES (12048, 3267, 'Issue', 10, NULL, '2021-01-09 14:37:10+07', false);
INSERT INTO public.journals VALUES (12049, 3571, 'Issue', 10, NULL, '2021-01-09 14:37:10+07', false);
INSERT INTO public.journals VALUES (12050, 3572, 'Issue', 10, NULL, '2021-01-09 15:44:10+07', false);
INSERT INTO public.journals VALUES (12051, 3572, 'Issue', 10, NULL, '2021-01-09 15:44:16+07', false);
INSERT INTO public.journals VALUES (12052, 3481, 'Issue', 41, '', '2021-01-09 16:04:29+07', false);
INSERT INTO public.journals VALUES (12053, 3573, 'Issue', 41, '', '2021-01-09 16:12:43+07', false);
INSERT INTO public.journals VALUES (12054, 2887, 'Issue', 10, '', '2021-01-09 16:41:32+07', false);
INSERT INTO public.journals VALUES (12055, 2887, 'Issue', 10, NULL, '2021-01-09 16:48:17+07', false);
INSERT INTO public.journals VALUES (12056, 3331, 'Issue', 8, '', '2021-01-09 16:58:20+07', false);
INSERT INTO public.journals VALUES (12057, 3331, 'Issue', 8, NULL, '2021-01-09 16:58:30+07', false);
INSERT INTO public.journals VALUES (12058, 3574, 'Issue', 8, '', '2021-01-09 16:59:44+07', false);
INSERT INTO public.journals VALUES (12059, 3574, 'Issue', 8, NULL, '2021-01-09 16:59:58+07', false);
INSERT INTO public.journals VALUES (12060, 3546, 'Issue', 38, NULL, '2021-01-11 08:02:14+07', false);
INSERT INTO public.journals VALUES (12061, 3557, 'Issue', 38, NULL, '2021-01-11 08:02:43+07', false);
INSERT INTO public.journals VALUES (12062, 3443, 'Issue', 40, '', '2021-01-11 08:10:41+07', false);
INSERT INTO public.journals VALUES (12063, 3444, 'Issue', 40, '', '2021-01-11 08:10:41+07', false);
INSERT INTO public.journals VALUES (12064, 3523, 'Issue', 40, '', '2021-01-11 08:10:41+07', false);
INSERT INTO public.journals VALUES (12065, 3524, 'Issue', 40, '', '2021-01-11 08:10:41+07', false);
INSERT INTO public.journals VALUES (12066, 3525, 'Issue', 40, '', '2021-01-11 08:10:42+07', false);
INSERT INTO public.journals VALUES (12067, 3554, 'Issue', 39, NULL, '2021-01-11 08:13:09+07', false);
INSERT INTO public.journals VALUES (12068, 3554, 'Issue', 39, NULL, '2021-01-11 08:13:14+07', false);
INSERT INTO public.journals VALUES (12069, 3556, 'Issue', 39, NULL, '2021-01-11 08:13:54+07', false);
INSERT INTO public.journals VALUES (12070, 3504, 'Issue', 39, NULL, '2021-01-11 08:13:58+07', false);
INSERT INTO public.journals VALUES (12071, 3546, 'Issue', 38, NULL, '2021-01-11 08:23:47+07', false);
INSERT INTO public.journals VALUES (12072, 3557, 'Issue', 38, NULL, '2021-01-11 08:23:55+07', false);
INSERT INTO public.journals VALUES (12073, 3443, 'Issue', 40, '', '2021-01-11 08:24:00+07', false);
INSERT INTO public.journals VALUES (12074, 3444, 'Issue', 40, '', '2021-01-11 08:24:00+07', false);
INSERT INTO public.journals VALUES (12075, 3523, 'Issue', 40, '', '2021-01-11 08:24:00+07', false);
INSERT INTO public.journals VALUES (12076, 3524, 'Issue', 40, '', '2021-01-11 08:24:00+07', false);
INSERT INTO public.journals VALUES (12077, 3525, 'Issue', 40, '', '2021-01-11 08:24:01+07', false);
INSERT INTO public.journals VALUES (12078, 3564, 'Issue', 5, '', '2021-01-11 08:29:49+07', false);
INSERT INTO public.journals VALUES (12079, 3439, 'Issue', 5, NULL, '2021-01-11 08:35:15+07', false);
INSERT INTO public.journals VALUES (12080, 3440, 'Issue', 5, NULL, '2021-01-11 08:35:15+07', false);
INSERT INTO public.journals VALUES (12081, 3441, 'Issue', 5, NULL, '2021-01-11 08:35:15+07', false);
INSERT INTO public.journals VALUES (12082, 3442, 'Issue', 5, NULL, '2021-01-11 08:35:15+07', false);
INSERT INTO public.journals VALUES (12083, 3458, 'Issue', 5, NULL, '2021-01-11 08:35:15+07', false);
INSERT INTO public.journals VALUES (12084, 3459, 'Issue', 5, NULL, '2021-01-11 08:35:15+07', false);
INSERT INTO public.journals VALUES (12085, 3487, 'Issue', 5, NULL, '2021-01-11 08:35:15+07', false);
INSERT INTO public.journals VALUES (12086, 3490, 'Issue', 5, NULL, '2021-01-11 08:35:15+07', false);
INSERT INTO public.journals VALUES (12087, 3492, 'Issue', 5, NULL, '2021-01-11 08:35:16+07', false);
INSERT INTO public.journals VALUES (12088, 3493, 'Issue', 5, NULL, '2021-01-11 08:35:16+07', false);
INSERT INTO public.journals VALUES (12089, 3494, 'Issue', 5, NULL, '2021-01-11 08:35:16+07', false);
INSERT INTO public.journals VALUES (12090, 3495, 'Issue', 5, NULL, '2021-01-11 08:35:16+07', false);
INSERT INTO public.journals VALUES (12091, 3498, 'Issue', 5, NULL, '2021-01-11 08:35:16+07', false);
INSERT INTO public.journals VALUES (12092, 3499, 'Issue', 5, NULL, '2021-01-11 08:35:16+07', false);
INSERT INTO public.journals VALUES (12093, 3500, 'Issue', 5, NULL, '2021-01-11 08:35:16+07', false);
INSERT INTO public.journals VALUES (12094, 3504, 'Issue', 5, NULL, '2021-01-11 08:35:17+07', false);
INSERT INTO public.journals VALUES (12095, 3505, 'Issue', 5, NULL, '2021-01-11 08:35:17+07', false);
INSERT INTO public.journals VALUES (12096, 3506, 'Issue', 5, NULL, '2021-01-11 08:35:17+07', false);
INSERT INTO public.journals VALUES (12097, 3511, 'Issue', 5, NULL, '2021-01-11 08:35:17+07', false);
INSERT INTO public.journals VALUES (12098, 3512, 'Issue', 5, NULL, '2021-01-11 08:35:17+07', false);
INSERT INTO public.journals VALUES (12099, 3514, 'Issue', 5, NULL, '2021-01-11 08:35:17+07', false);
INSERT INTO public.journals VALUES (12100, 3515, 'Issue', 5, NULL, '2021-01-11 08:35:17+07', false);
INSERT INTO public.journals VALUES (12101, 3516, 'Issue', 5, NULL, '2021-01-11 08:35:17+07', false);
INSERT INTO public.journals VALUES (12102, 3517, 'Issue', 5, NULL, '2021-01-11 08:35:17+07', false);
INSERT INTO public.journals VALUES (12103, 3518, 'Issue', 5, NULL, '2021-01-11 08:35:17+07', false);
INSERT INTO public.journals VALUES (12104, 3519, 'Issue', 5, NULL, '2021-01-11 08:35:18+07', false);
INSERT INTO public.journals VALUES (12105, 3520, 'Issue', 5, NULL, '2021-01-11 08:35:18+07', false);
INSERT INTO public.journals VALUES (12106, 3521, 'Issue', 5, NULL, '2021-01-11 08:35:18+07', false);
INSERT INTO public.journals VALUES (12107, 3522, 'Issue', 5, NULL, '2021-01-11 08:35:18+07', false);
INSERT INTO public.journals VALUES (12108, 3526, 'Issue', 5, NULL, '2021-01-11 08:35:18+07', false);
INSERT INTO public.journals VALUES (12109, 3527, 'Issue', 5, NULL, '2021-01-11 08:35:18+07', false);
INSERT INTO public.journals VALUES (12110, 3528, 'Issue', 5, NULL, '2021-01-11 08:35:18+07', false);
INSERT INTO public.journals VALUES (12111, 3532, 'Issue', 5, NULL, '2021-01-11 08:35:18+07', false);
INSERT INTO public.journals VALUES (12112, 3533, 'Issue', 5, NULL, '2021-01-11 08:35:19+07', false);
INSERT INTO public.journals VALUES (12113, 3534, 'Issue', 5, NULL, '2021-01-11 08:35:19+07', false);
INSERT INTO public.journals VALUES (12114, 3543, 'Issue', 5, NULL, '2021-01-11 08:35:19+07', false);
INSERT INTO public.journals VALUES (12115, 3544, 'Issue', 5, NULL, '2021-01-11 08:35:19+07', false);
INSERT INTO public.journals VALUES (12116, 3545, 'Issue', 5, NULL, '2021-01-11 08:35:19+07', false);
INSERT INTO public.journals VALUES (12117, 3546, 'Issue', 5, NULL, '2021-01-11 08:35:19+07', false);
INSERT INTO public.journals VALUES (12118, 3553, 'Issue', 5, NULL, '2021-01-11 08:35:19+07', false);
INSERT INTO public.journals VALUES (12119, 3555, 'Issue', 5, NULL, '2021-01-11 08:35:19+07', false);
INSERT INTO public.journals VALUES (12120, 3556, 'Issue', 5, NULL, '2021-01-11 08:35:20+07', false);
INSERT INTO public.journals VALUES (12121, 3557, 'Issue', 5, NULL, '2021-01-11 08:35:20+07', false);
INSERT INTO public.journals VALUES (12122, 3562, 'Issue', 5, NULL, '2021-01-11 08:35:20+07', false);
INSERT INTO public.journals VALUES (12123, 3565, 'Issue', 5, NULL, '2021-01-11 08:35:20+07', false);
INSERT INTO public.journals VALUES (12124, 3566, 'Issue', 5, NULL, '2021-01-11 08:35:20+07', false);
INSERT INTO public.journals VALUES (12125, 3567, 'Issue', 5, NULL, '2021-01-11 08:35:20+07', false);
INSERT INTO public.journals VALUES (12126, 3568, 'Issue', 5, NULL, '2021-01-11 08:35:20+07', false);
INSERT INTO public.journals VALUES (12127, 2887, 'Issue', 10, NULL, '2021-01-11 08:43:22+07', false);
INSERT INTO public.journals VALUES (12128, 3577, 'Issue', 19, '', '2021-01-11 08:50:57+07', false);
INSERT INTO public.journals VALUES (12129, 3443, 'Issue', 40, NULL, '2021-01-11 10:40:54+07', false);
INSERT INTO public.journals VALUES (12130, 3443, 'Issue', 40, NULL, '2021-01-11 10:41:02+07', false);
INSERT INTO public.journals VALUES (12131, 3444, 'Issue', 40, NULL, '2021-01-11 10:59:55+07', false);
INSERT INTO public.journals VALUES (12132, 3444, 'Issue', 40, NULL, '2021-01-11 11:00:03+07', false);
INSERT INTO public.journals VALUES (12133, 3523, 'Issue', 40, NULL, '2021-01-11 11:04:26+07', false);
INSERT INTO public.journals VALUES (12134, 3523, 'Issue', 40, NULL, '2021-01-11 11:04:34+07', false);
INSERT INTO public.journals VALUES (12135, 3524, 'Issue', 40, NULL, '2021-01-11 11:13:38+07', false);
INSERT INTO public.journals VALUES (12136, 3524, 'Issue', 40, NULL, '2021-01-11 11:13:42+07', false);
INSERT INTO public.journals VALUES (12137, 3525, 'Issue', 40, NULL, '2021-01-11 11:25:12+07', false);
INSERT INTO public.journals VALUES (12138, 3525, 'Issue', 40, NULL, '2021-01-11 11:25:18+07', false);
INSERT INTO public.journals VALUES (12139, 3465, 'Issue', 32, NULL, '2021-01-11 13:46:47+07', false);
INSERT INTO public.journals VALUES (12140, 3539, 'Issue', 32, NULL, '2021-01-11 13:48:11+07', false);
INSERT INTO public.journals VALUES (12141, 3580, 'Issue', 5, '', '2021-01-11 15:05:44+07', false);
INSERT INTO public.journals VALUES (12142, 3580, 'Issue', 5, '', '2021-01-11 15:09:25+07', false);
INSERT INTO public.journals VALUES (12143, 3578, 'Issue', 40, NULL, '2021-01-11 16:03:29+07', false);
INSERT INTO public.journals VALUES (12144, 3578, 'Issue', 40, NULL, '2021-01-11 16:03:39+07', false);
INSERT INTO public.journals VALUES (12145, 3579, 'Issue', 40, '', '2021-01-11 16:04:05+07', false);
INSERT INTO public.journals VALUES (12146, 3579, 'Issue', 40, NULL, '2021-01-11 16:04:26+07', false);
INSERT INTO public.journals VALUES (12147, 3581, 'Issue', 40, '', '2021-01-11 16:15:37+07', false);
INSERT INTO public.journals VALUES (12148, 3582, 'Issue', 40, '', '2021-01-11 16:15:37+07', false);
INSERT INTO public.journals VALUES (12149, 3584, 'Issue', 19, '', '2021-01-11 16:22:33+07', false);
INSERT INTO public.journals VALUES (12150, 3585, 'Issue', 19, '', '2021-01-11 16:22:50+07', false);
INSERT INTO public.journals VALUES (12151, 3443, 'Issue', 5, NULL, '2021-01-12 08:18:34+07', false);
INSERT INTO public.journals VALUES (12152, 3444, 'Issue', 5, NULL, '2021-01-12 08:18:34+07', false);
INSERT INTO public.journals VALUES (12153, 3523, 'Issue', 5, NULL, '2021-01-12 08:18:34+07', false);
INSERT INTO public.journals VALUES (12154, 3524, 'Issue', 5, NULL, '2021-01-12 08:18:35+07', false);
INSERT INTO public.journals VALUES (12155, 3525, 'Issue', 5, NULL, '2021-01-12 08:18:35+07', false);
INSERT INTO public.journals VALUES (12156, 2811, 'Issue', 5, NULL, '2021-01-12 08:18:49+07', false);
INSERT INTO public.journals VALUES (12157, 3584, 'Issue', 37, '', '2021-01-12 08:22:36+07', false);
INSERT INTO public.journals VALUES (12158, 2887, 'Issue', 5, NULL, '2021-01-12 08:26:10+07', false);
INSERT INTO public.journals VALUES (12159, 3267, 'Issue', 5, NULL, '2021-01-12 08:26:10+07', false);
INSERT INTO public.journals VALUES (12160, 3507, 'Issue', 5, NULL, '2021-01-12 08:26:11+07', false);
INSERT INTO public.journals VALUES (12161, 3508, 'Issue', 5, NULL, '2021-01-12 08:26:11+07', false);
INSERT INTO public.journals VALUES (12162, 3530, 'Issue', 5, NULL, '2021-01-12 08:26:11+07', false);
INSERT INTO public.journals VALUES (12163, 3531, 'Issue', 5, NULL, '2021-01-12 08:26:11+07', false);
INSERT INTO public.journals VALUES (12164, 3542, 'Issue', 5, NULL, '2021-01-12 08:26:11+07', false);
INSERT INTO public.journals VALUES (12165, 3550, 'Issue', 5, NULL, '2021-01-12 08:26:11+07', false);
INSERT INTO public.journals VALUES (12166, 3551, 'Issue', 5, NULL, '2021-01-12 08:26:11+07', false);
INSERT INTO public.journals VALUES (12167, 3552, 'Issue', 5, NULL, '2021-01-12 08:26:11+07', false);
INSERT INTO public.journals VALUES (12168, 3559, 'Issue', 5, NULL, '2021-01-12 08:26:12+07', false);
INSERT INTO public.journals VALUES (12169, 3571, 'Issue', 5, NULL, '2021-01-12 08:26:12+07', false);
INSERT INTO public.journals VALUES (12170, 3572, 'Issue', 5, NULL, '2021-01-12 08:26:12+07', false);
INSERT INTO public.journals VALUES (12171, 3397, 'Issue', 5, NULL, '2021-01-12 08:26:20+07', false);
INSERT INTO public.journals VALUES (12172, 2850, 'Issue', 5, NULL, '2021-01-12 08:26:44+07', false);
INSERT INTO public.journals VALUES (12173, 2851, 'Issue', 5, NULL, '2021-01-12 08:26:44+07', false);
INSERT INTO public.journals VALUES (12174, 3080, 'Issue', 5, NULL, '2021-01-12 08:26:44+07', false);
INSERT INTO public.journals VALUES (12175, 3222, 'Issue', 5, NULL, '2021-01-12 08:26:44+07', false);
INSERT INTO public.journals VALUES (12176, 3268, 'Issue', 5, NULL, '2021-01-12 08:26:45+07', false);
INSERT INTO public.journals VALUES (12177, 3331, 'Issue', 5, NULL, '2021-01-12 08:26:45+07', false);
INSERT INTO public.journals VALUES (12178, 3365, 'Issue', 5, NULL, '2021-01-12 08:26:45+07', false);
INSERT INTO public.journals VALUES (12179, 3432, 'Issue', 5, NULL, '2021-01-12 08:26:45+07', false);
INSERT INTO public.journals VALUES (12180, 3447, 'Issue', 5, NULL, '2021-01-12 08:26:45+07', false);
INSERT INTO public.journals VALUES (12181, 3480, 'Issue', 5, NULL, '2021-01-12 08:26:45+07', false);
INSERT INTO public.journals VALUES (12182, 3481, 'Issue', 5, NULL, '2021-01-12 08:26:45+07', false);
INSERT INTO public.journals VALUES (12183, 3483, 'Issue', 5, NULL, '2021-01-12 08:26:45+07', false);
INSERT INTO public.journals VALUES (12184, 3501, 'Issue', 5, NULL, '2021-01-12 08:26:46+07', false);
INSERT INTO public.journals VALUES (12185, 3502, 'Issue', 5, NULL, '2021-01-12 08:26:46+07', false);
INSERT INTO public.journals VALUES (12186, 3509, 'Issue', 5, NULL, '2021-01-12 08:26:46+07', false);
INSERT INTO public.journals VALUES (12187, 3513, 'Issue', 5, NULL, '2021-01-12 08:26:46+07', false);
INSERT INTO public.journals VALUES (12188, 3548, 'Issue', 5, NULL, '2021-01-12 08:26:46+07', false);
INSERT INTO public.journals VALUES (12189, 3549, 'Issue', 5, NULL, '2021-01-12 08:26:46+07', false);
INSERT INTO public.journals VALUES (12190, 3558, 'Issue', 5, NULL, '2021-01-12 08:26:46+07', false);
INSERT INTO public.journals VALUES (12191, 3563, 'Issue', 5, NULL, '2021-01-12 08:26:46+07', false);
INSERT INTO public.journals VALUES (12192, 3573, 'Issue', 5, NULL, '2021-01-12 08:26:46+07', false);
INSERT INTO public.journals VALUES (12193, 3574, 'Issue', 5, NULL, '2021-01-12 08:26:47+07', false);
INSERT INTO public.journals VALUES (12194, 3354, 'Issue', 5, NULL, '2021-01-12 08:28:47+07', false);
INSERT INTO public.journals VALUES (12195, 3584, 'Issue', 40, NULL, '2021-01-12 08:48:51+07', false);
INSERT INTO public.journals VALUES (12196, 3586, 'Issue', 40, NULL, '2021-01-12 08:49:07+07', false);
INSERT INTO public.journals VALUES (12197, 3489, 'Issue', 32, NULL, '2021-01-12 09:10:22+07', false);
INSERT INTO public.journals VALUES (12198, 3460, 'Issue', 33, NULL, '2021-01-12 09:52:37+07', false);
INSERT INTO public.journals VALUES (12199, 3461, 'Issue', 33, NULL, '2021-01-12 09:52:44+07', false);
INSERT INTO public.journals VALUES (12200, 3466, 'Issue', 33, NULL, '2021-01-12 09:52:55+07', false);
INSERT INTO public.journals VALUES (12201, 3488, 'Issue', 33, NULL, '2021-01-12 09:53:07+07', false);
INSERT INTO public.journals VALUES (12202, 3590, 'Issue', 17, '', '2021-01-12 10:08:56+07', false);
INSERT INTO public.journals VALUES (12203, 3586, 'Issue', 37, '', '2021-01-12 13:53:23+07', false);
INSERT INTO public.journals VALUES (12204, 3591, 'Issue', 12, NULL, '2021-01-12 15:37:17+07', false);
INSERT INTO public.journals VALUES (12205, 3539, 'Issue', 32, NULL, '2021-01-13 08:02:22+07', false);
INSERT INTO public.journals VALUES (12206, 3593, 'Issue', 41, NULL, '2021-01-13 08:28:24+07', false);
INSERT INTO public.journals VALUES (12207, 3594, 'Issue', 41, NULL, '2021-01-13 08:28:36+07', false);
INSERT INTO public.journals VALUES (12208, 3595, 'Issue', 41, NULL, '2021-01-13 08:28:46+07', false);
INSERT INTO public.journals VALUES (12209, 3592, 'Issue', 41, NULL, '2021-01-13 08:29:07+07', false);
INSERT INTO public.journals VALUES (12210, 3593, 'Issue', 41, NULL, '2021-01-13 08:29:21+07', false);
INSERT INTO public.journals VALUES (12211, 3584, 'Issue', 40, NULL, '2021-01-13 09:31:29+07', false);
INSERT INTO public.journals VALUES (12212, 3584, 'Issue', 40, NULL, '2021-01-13 09:31:40+07', false);
INSERT INTO public.journals VALUES (12213, 3599, 'Issue', 15, '', '2021-01-13 11:05:09+07', false);
INSERT INTO public.journals VALUES (12214, 3594, 'Issue', 41, '', '2021-01-13 14:47:18+07', false);
INSERT INTO public.journals VALUES (12215, 3602, 'Issue', 19, '', '2021-01-14 08:48:27+07', false);
INSERT INTO public.journals VALUES (12216, 3584, 'Issue', 40, NULL, '2021-01-14 09:26:31+07', false);
INSERT INTO public.journals VALUES (12217, 3603, 'Issue', 19, 'Còn lại 3 mẫu:

Mẫu 2.2 - Quyết định 38/2020/QĐ-UBND

Mẫu 2.1 - Quyết định 38/2020/QĐ-UBND

Phụ lục 1 - Thông tư số 116/2018/TT-BTC', '2021-01-14 16:32:26+07', false);
INSERT INTO public.journals VALUES (12218, 3600, 'Issue', 15, '', '2021-01-14 17:09:34+07', false);
INSERT INTO public.journals VALUES (12219, 3601, 'Issue', 15, '', '2021-01-14 17:09:34+07', false);
INSERT INTO public.journals VALUES (12220, 3604, 'Issue', 15, '', '2021-01-14 17:09:34+07', false);
INSERT INTO public.journals VALUES (12221, 3599, 'Issue', 15, NULL, '2021-01-14 17:09:45+07', false);
INSERT INTO public.journals VALUES (12222, 3605, 'Issue', 39, '', '2021-01-14 22:39:09+07', false);
INSERT INTO public.journals VALUES (12223, 3606, 'Issue', 39, NULL, '2021-01-14 22:39:17+07', false);
INSERT INTO public.journals VALUES (12224, 3606, 'Issue', 39, NULL, '2021-01-14 22:39:33+07', false);
INSERT INTO public.journals VALUES (12225, 3607, 'Issue', 39, '', '2021-01-14 22:40:52+07', false);
INSERT INTO public.journals VALUES (12226, 3607, 'Issue', 39, '', '2021-01-14 22:41:18+07', false);
INSERT INTO public.journals VALUES (12227, 3564, 'Issue', 19, '', '2021-01-15 08:00:42+07', false);
INSERT INTO public.journals VALUES (12228, 3539, 'Issue', 32, NULL, '2021-01-15 08:22:16+07', false);
INSERT INTO public.journals VALUES (12229, 3564, 'Issue', 38, NULL, '2021-01-15 08:40:54+07', false);
INSERT INTO public.journals VALUES (12230, 3564, 'Issue', 38, NULL, '2021-01-15 08:41:01+07', false);
INSERT INTO public.journals VALUES (12231, 3583, 'Issue', 38, NULL, '2021-01-15 08:41:14+07', false);
INSERT INTO public.journals VALUES (12232, 3580, 'Issue', 38, NULL, '2021-01-15 08:41:40+07', false);
INSERT INTO public.journals VALUES (12233, 3580, 'Issue', 38, '', '2021-01-15 08:42:21+07', false);
INSERT INTO public.journals VALUES (12234, 3576, 'Issue', 38, NULL, '2021-01-15 08:42:32+07', false);
INSERT INTO public.journals VALUES (12235, 3576, 'Issue', 38, NULL, '2021-01-15 08:42:37+07', false);
INSERT INTO public.journals VALUES (12236, 3575, 'Issue', 38, NULL, '2021-01-15 08:42:58+07', false);
INSERT INTO public.journals VALUES (12237, 3575, 'Issue', 38, NULL, '2021-01-15 08:43:03+07', false);
INSERT INTO public.journals VALUES (12238, 3579, 'Issue', 38, '', '2021-01-15 08:43:20+07', false);
INSERT INTO public.journals VALUES (12239, 3603, 'Issue', 40, NULL, '2021-01-15 10:06:18+07', false);
INSERT INTO public.journals VALUES (12240, 3603, 'Issue', 40, NULL, '2021-01-15 10:06:29+07', false);
INSERT INTO public.journals VALUES (12241, 3611, 'Issue', 38, '', '2021-01-15 14:29:19+07', false);
INSERT INTO public.journals VALUES (12242, 3611, 'Issue', 38, '', '2021-01-15 16:59:36+07', false);
INSERT INTO public.journals VALUES (12243, 3585, 'Issue', 40, NULL, '2021-01-16 07:56:02+07', false);
INSERT INTO public.journals VALUES (12244, 3585, 'Issue', 40, NULL, '2021-01-16 07:56:13+07', false);
INSERT INTO public.journals VALUES (12245, 3585, 'Issue', 40, NULL, '2021-01-16 07:56:25+07', false);
INSERT INTO public.journals VALUES (12246, 3597, 'Issue', 12, NULL, '2021-01-16 09:07:08+07', false);
INSERT INTO public.journals VALUES (12247, 3597, 'Issue', 12, NULL, '2021-01-16 09:07:17+07', false);
INSERT INTO public.journals VALUES (12248, 3617, 'Issue', 40, '', '2021-01-16 10:47:48+07', false);
INSERT INTO public.journals VALUES (12249, 3619, 'Issue', 40, '', '2021-01-16 10:47:48+07', false);
INSERT INTO public.journals VALUES (12250, 3617, 'Issue', 40, NULL, '2021-01-16 10:48:49+07', false);
INSERT INTO public.journals VALUES (12251, 3617, 'Issue', 5, NULL, '2021-01-16 11:29:40+07', false);
INSERT INTO public.journals VALUES (12252, 3620, 'Issue', 5, NULL, '2021-01-16 11:30:09+07', false);
INSERT INTO public.journals VALUES (12253, 3618, 'Issue', 5, NULL, '2021-01-16 11:31:46+07', false);
INSERT INTO public.journals VALUES (12254, 3617, 'Issue', 5, NULL, '2021-01-16 11:32:45+07', false);
INSERT INTO public.journals VALUES (12255, 3618, 'Issue', 5, NULL, '2021-01-16 11:32:45+07', false);
INSERT INTO public.journals VALUES (12256, 3619, 'Issue', 5, NULL, '2021-01-16 11:32:45+07', false);
INSERT INTO public.journals VALUES (12257, 3620, 'Issue', 5, NULL, '2021-01-16 11:32:45+07', false);
INSERT INTO public.journals VALUES (12258, 3591, 'Issue', 5, '', '2021-01-16 11:34:00+07', false);
INSERT INTO public.journals VALUES (12259, 3596, 'Issue', 5, '', '2021-01-16 11:34:01+07', false);
INSERT INTO public.journals VALUES (12260, 3617, 'Issue', 5, '', '2021-01-16 11:34:23+07', false);
INSERT INTO public.journals VALUES (12261, 3618, 'Issue', 5, '', '2021-01-16 11:34:24+07', false);
INSERT INTO public.journals VALUES (12262, 3619, 'Issue', 5, '', '2021-01-16 11:34:24+07', false);
INSERT INTO public.journals VALUES (12263, 3620, 'Issue', 5, '', '2021-01-16 11:34:24+07', false);
INSERT INTO public.journals VALUES (12264, 3615, 'Issue', 19, '', '2021-01-16 13:27:54+07', false);
INSERT INTO public.journals VALUES (12265, 3615, 'Issue', 19, 'Phân loại mẫu báo cáo theo lĩnh vực.', '2021-01-16 13:29:55+07', false);
INSERT INTO public.journals VALUES (12266, 3615, 'Issue', 19, '', '2021-01-16 14:08:16+07', false);
INSERT INTO public.journals VALUES (12267, 3598, 'Issue', 12, NULL, '2021-01-16 14:24:12+07', false);
INSERT INTO public.journals VALUES (12268, 3598, 'Issue', 12, NULL, '2021-01-16 14:24:24+07', false);
INSERT INTO public.journals VALUES (12269, 3621, 'Issue', 40, NULL, '2021-01-16 14:25:05+07', false);
INSERT INTO public.journals VALUES (12270, 3622, 'Issue', 40, NULL, '2021-01-16 14:25:05+07', false);
INSERT INTO public.journals VALUES (12271, 3621, 'Issue', 40, NULL, '2021-01-16 14:25:17+07', false);
INSERT INTO public.journals VALUES (12272, 3622, 'Issue', 40, NULL, '2021-01-16 14:25:17+07', false);
INSERT INTO public.journals VALUES (12273, 3584, 'Issue', 5, NULL, '2021-01-18 08:43:08+07', false);
INSERT INTO public.journals VALUES (12274, 3554, 'Issue', 5, NULL, '2021-01-18 08:43:41+07', false);
INSERT INTO public.journals VALUES (12275, 3564, 'Issue', 5, NULL, '2021-01-18 08:43:41+07', false);
INSERT INTO public.journals VALUES (12276, 3584, 'Issue', 5, NULL, '2021-01-18 08:43:42+07', false);
INSERT INTO public.journals VALUES (12277, 3585, 'Issue', 5, NULL, '2021-01-18 08:43:42+07', false);
INSERT INTO public.journals VALUES (12278, 3586, 'Issue', 5, NULL, '2021-01-18 08:43:42+07', false);
INSERT INTO public.journals VALUES (12279, 3602, 'Issue', 5, NULL, '2021-01-18 08:43:42+07', false);
INSERT INTO public.journals VALUES (12280, 3603, 'Issue', 5, NULL, '2021-01-18 08:43:42+07', false);
INSERT INTO public.journals VALUES (12281, 3575, 'Issue', 5, NULL, '2021-01-18 08:43:58+07', false);
INSERT INTO public.journals VALUES (12282, 3576, 'Issue', 5, NULL, '2021-01-18 08:43:58+07', false);
INSERT INTO public.journals VALUES (12283, 3577, 'Issue', 5, NULL, '2021-01-18 08:43:59+07', false);
INSERT INTO public.journals VALUES (12284, 3578, 'Issue', 5, NULL, '2021-01-18 08:44:00+07', false);
INSERT INTO public.journals VALUES (12285, 3579, 'Issue', 5, NULL, '2021-01-18 08:44:00+07', false);
INSERT INTO public.journals VALUES (12286, 3580, 'Issue', 5, NULL, '2021-01-18 08:44:00+07', false);
INSERT INTO public.journals VALUES (12287, 3581, 'Issue', 5, NULL, '2021-01-18 08:44:00+07', false);
INSERT INTO public.journals VALUES (12288, 3582, 'Issue', 5, NULL, '2021-01-18 08:44:00+07', false);
INSERT INTO public.journals VALUES (12289, 3583, 'Issue', 5, NULL, '2021-01-18 08:44:00+07', false);
INSERT INTO public.journals VALUES (12290, 3591, 'Issue', 5, NULL, '2021-01-18 08:44:00+07', false);
INSERT INTO public.journals VALUES (12291, 3596, 'Issue', 5, NULL, '2021-01-18 08:44:00+07', false);
INSERT INTO public.journals VALUES (12292, 3597, 'Issue', 5, NULL, '2021-01-18 08:44:01+07', false);
INSERT INTO public.journals VALUES (12293, 3598, 'Issue', 5, NULL, '2021-01-18 08:44:01+07', false);
INSERT INTO public.journals VALUES (12294, 3605, 'Issue', 5, NULL, '2021-01-18 08:44:01+07', false);
INSERT INTO public.journals VALUES (12295, 3607, 'Issue', 5, NULL, '2021-01-18 08:44:01+07', false);
INSERT INTO public.journals VALUES (12296, 3611, 'Issue', 5, NULL, '2021-01-18 08:44:01+07', false);
INSERT INTO public.journals VALUES (12297, 3621, 'Issue', 5, NULL, '2021-01-18 08:44:01+07', false);
INSERT INTO public.journals VALUES (12298, 3622, 'Issue', 5, NULL, '2021-01-18 08:44:01+07', false);
INSERT INTO public.journals VALUES (12299, 3595, 'Issue', 41, '', '2021-01-18 09:35:00+07', false);
INSERT INTO public.journals VALUES (12300, 3624, 'Issue', 41, NULL, '2021-01-18 09:40:43+07', false);
INSERT INTO public.journals VALUES (12301, 3625, 'Issue', 41, NULL, '2021-01-18 09:40:43+07', false);
INSERT INTO public.journals VALUES (12302, 3626, 'Issue', 41, NULL, '2021-01-18 09:40:43+07', false);
INSERT INTO public.journals VALUES (12303, 3623, 'Issue', 41, NULL, '2021-01-18 09:40:56+07', false);
INSERT INTO public.journals VALUES (12304, 3624, 'Issue', 41, NULL, '2021-01-18 09:40:56+07', false);
INSERT INTO public.journals VALUES (12305, 3625, 'Issue', 41, NULL, '2021-01-18 09:40:56+07', false);
INSERT INTO public.journals VALUES (12306, 3626, 'Issue', 41, NULL, '2021-01-18 09:40:56+07', false);
INSERT INTO public.journals VALUES (12307, 3623, 'Issue', 41, NULL, '2021-01-18 09:41:07+07', false);
INSERT INTO public.journals VALUES (12308, 3624, 'Issue', 41, NULL, '2021-01-18 09:41:07+07', false);
INSERT INTO public.journals VALUES (12309, 3625, 'Issue', 41, NULL, '2021-01-18 09:41:08+07', false);
INSERT INTO public.journals VALUES (12310, 3626, 'Issue', 41, NULL, '2021-01-18 09:41:08+07', false);
INSERT INTO public.journals VALUES (12311, 3606, 'Issue', 39, '', '2021-01-18 11:47:38+07', false);
INSERT INTO public.journals VALUES (12312, 3619, 'Issue', 39, '', '2021-01-18 11:47:49+07', false);
INSERT INTO public.journals VALUES (12313, 3354, 'Issue', 5, '', '2021-01-18 14:58:33+07', false);
INSERT INTO public.journals VALUES (12314, 3613, 'Issue', 32, NULL, '2021-01-18 17:01:33+07', false);
INSERT INTO public.journals VALUES (12315, 3627, 'Issue', 15, NULL, '2021-01-19 11:10:19+07', false);
INSERT INTO public.journals VALUES (12316, 3628, 'Issue', 15, '', '2021-01-19 11:27:45+07', false);
INSERT INTO public.journals VALUES (12317, 3617, 'Issue', 12, NULL, '2021-01-19 12:26:32+07', false);
INSERT INTO public.journals VALUES (12318, 3617, 'Issue', 12, NULL, '2021-01-19 12:26:45+07', false);
INSERT INTO public.journals VALUES (12319, 3618, 'Issue', 12, NULL, '2021-01-19 12:26:51+07', false);
INSERT INTO public.journals VALUES (12320, 3618, 'Issue', 12, NULL, '2021-01-19 12:26:57+07', false);
INSERT INTO public.journals VALUES (12321, 3631, 'Issue', 15, NULL, '2021-01-19 13:36:59+07', false);
INSERT INTO public.journals VALUES (12322, 3615, 'Issue', 19, '', '2021-01-19 14:50:05+07', false);
INSERT INTO public.journals VALUES (12323, 3633, 'Issue', 39, NULL, '2021-01-19 15:14:51+07', false);
INSERT INTO public.journals VALUES (12324, 3616, 'Issue', 19, '', '2021-01-19 15:23:25+07', false);
INSERT INTO public.journals VALUES (12325, 3620, 'Issue', 5, '', '2021-01-20 13:47:04+07', false);
INSERT INTO public.journals VALUES (12326, 3606, 'Issue', 5, NULL, '2021-01-20 13:48:59+07', false);
INSERT INTO public.journals VALUES (12327, 3615, 'Issue', 5, NULL, '2021-01-20 13:48:59+07', false);
INSERT INTO public.journals VALUES (12328, 3616, 'Issue', 5, NULL, '2021-01-20 13:49:00+07', false);
INSERT INTO public.journals VALUES (12329, 3629, 'Issue', 15, '', '2021-01-20 15:23:07+07', false);
INSERT INTO public.journals VALUES (12330, 3630, 'Issue', 15, '', '2021-01-20 15:23:07+07', false);
INSERT INTO public.journals VALUES (12331, 3631, 'Issue', 15, '', '2021-01-20 15:23:07+07', false);
INSERT INTO public.journals VALUES (12332, 3613, 'Issue', 32, NULL, '2021-01-20 15:53:37+07', false);
INSERT INTO public.journals VALUES (12333, 3637, 'Issue', 19, '', '2021-01-21 10:27:27+07', false);
INSERT INTO public.journals VALUES (12334, 2811, 'Issue', 40, '', '2021-01-21 10:30:38+07', false);
INSERT INTO public.journals VALUES (12335, 3638, 'Issue', 19, '', '2021-01-21 13:57:07+07', false);
INSERT INTO public.journals VALUES (12336, 3637, 'Issue', 40, '', '2021-01-21 16:58:06+07', false);
INSERT INTO public.journals VALUES (12337, 3632, 'Issue', 15, '', '2021-01-21 17:05:09+07', false);
INSERT INTO public.journals VALUES (12338, 3638, 'Issue', 38, '', '2021-01-21 17:06:32+07', false);
INSERT INTO public.journals VALUES (12339, 3634, 'Issue', 40, NULL, '2021-01-22 08:26:10+07', false);
INSERT INTO public.journals VALUES (12340, 3613, 'Issue', 32, NULL, '2021-01-22 15:59:43+07', false);
INSERT INTO public.journals VALUES (12341, 3639, 'Issue', 39, NULL, '2021-01-22 16:13:47+07', false);
INSERT INTO public.journals VALUES (12342, 3639, 'Issue', 39, NULL, '2021-01-22 16:13:52+07', false);
INSERT INTO public.journals VALUES (12343, 3641, 'Issue', 41, '', '2021-01-23 08:22:52+07', false);
INSERT INTO public.journals VALUES (12344, 3640, 'Issue', 41, '', '2021-01-23 08:23:10+07', false);
INSERT INTO public.journals VALUES (12345, 3656, 'Issue', 41, '', '2021-01-23 08:37:32+07', false);
INSERT INTO public.journals VALUES (12346, 3640, 'Issue', 41, NULL, '2021-01-23 08:44:39+07', false);
INSERT INTO public.journals VALUES (12347, 3641, 'Issue', 41, NULL, '2021-01-23 08:44:39+07', false);
INSERT INTO public.journals VALUES (12348, 3642, 'Issue', 41, NULL, '2021-01-23 08:44:39+07', false);
INSERT INTO public.journals VALUES (12349, 3643, 'Issue', 41, NULL, '2021-01-23 08:44:39+07', false);
INSERT INTO public.journals VALUES (12350, 3644, 'Issue', 41, NULL, '2021-01-23 08:44:39+07', false);
INSERT INTO public.journals VALUES (12351, 3645, 'Issue', 41, NULL, '2021-01-23 08:44:39+07', false);
INSERT INTO public.journals VALUES (12352, 3646, 'Issue', 41, NULL, '2021-01-23 08:44:40+07', false);
INSERT INTO public.journals VALUES (12353, 3647, 'Issue', 41, NULL, '2021-01-23 08:44:40+07', false);
INSERT INTO public.journals VALUES (12354, 3648, 'Issue', 41, NULL, '2021-01-23 08:44:40+07', false);
INSERT INTO public.journals VALUES (12355, 3649, 'Issue', 41, NULL, '2021-01-23 08:44:40+07', false);
INSERT INTO public.journals VALUES (12356, 3650, 'Issue', 41, NULL, '2021-01-23 08:44:40+07', false);
INSERT INTO public.journals VALUES (12357, 3651, 'Issue', 41, NULL, '2021-01-23 08:44:40+07', false);
INSERT INTO public.journals VALUES (12358, 3652, 'Issue', 41, NULL, '2021-01-23 08:44:40+07', false);
INSERT INTO public.journals VALUES (12359, 3653, 'Issue', 41, NULL, '2021-01-23 08:44:40+07', false);
INSERT INTO public.journals VALUES (12360, 3654, 'Issue', 41, NULL, '2021-01-23 08:44:40+07', false);
INSERT INTO public.journals VALUES (12361, 3655, 'Issue', 41, NULL, '2021-01-23 08:44:40+07', false);
INSERT INTO public.journals VALUES (12362, 3656, 'Issue', 41, NULL, '2021-01-23 08:44:41+07', false);
INSERT INTO public.journals VALUES (12363, 3657, 'Issue', 41, NULL, '2021-01-23 08:44:41+07', false);
INSERT INTO public.journals VALUES (12364, 3658, 'Issue', 41, NULL, '2021-01-23 08:44:41+07', false);
INSERT INTO public.journals VALUES (12365, 3659, 'Issue', 41, NULL, '2021-01-23 08:44:41+07', false);
INSERT INTO public.journals VALUES (12366, 3660, 'Issue', 41, NULL, '2021-01-23 08:44:41+07', false);
INSERT INTO public.journals VALUES (12367, 3661, 'Issue', 41, NULL, '2021-01-23 08:44:41+07', false);
INSERT INTO public.journals VALUES (12368, 3662, 'Issue', 41, NULL, '2021-01-23 08:44:41+07', false);
INSERT INTO public.journals VALUES (12369, 3663, 'Issue', 41, NULL, '2021-01-23 08:44:41+07', false);
INSERT INTO public.journals VALUES (12370, 3354, 'Issue', 5, NULL, '2021-01-23 09:01:44+07', false);
INSERT INTO public.journals VALUES (12371, 3354, 'Issue', 5, '', '2021-01-23 09:01:56+07', false);
INSERT INTO public.journals VALUES (12372, 3592, 'Issue', 5, NULL, '2021-01-23 09:02:07+07', false);
INSERT INTO public.journals VALUES (12373, 3593, 'Issue', 5, NULL, '2021-01-23 09:02:07+07', false);
INSERT INTO public.journals VALUES (12374, 3594, 'Issue', 5, NULL, '2021-01-23 09:02:07+07', false);
INSERT INTO public.journals VALUES (12375, 3595, 'Issue', 5, NULL, '2021-01-23 09:02:07+07', false);
INSERT INTO public.journals VALUES (12376, 3623, 'Issue', 5, NULL, '2021-01-23 09:02:08+07', false);
INSERT INTO public.journals VALUES (12377, 3624, 'Issue', 5, NULL, '2021-01-23 09:02:08+07', false);
INSERT INTO public.journals VALUES (12378, 3625, 'Issue', 5, NULL, '2021-01-23 09:02:08+07', false);
INSERT INTO public.journals VALUES (12379, 3626, 'Issue', 5, NULL, '2021-01-23 09:02:08+07', false);
INSERT INTO public.journals VALUES (12380, 3472, 'Issue', 15, NULL, '2021-01-25 08:11:00+07', false);
INSERT INTO public.journals VALUES (12381, 3473, 'Issue', 15, NULL, '2021-01-25 08:11:01+07', false);
INSERT INTO public.journals VALUES (12382, 3388, 'Issue', 15, NULL, '2021-01-25 08:11:21+07', false);
INSERT INTO public.journals VALUES (12383, 3664, 'Issue', 15, NULL, '2021-01-25 08:14:18+07', false);
INSERT INTO public.journals VALUES (12384, 3634, 'Issue', 5, '', '2021-01-26 08:58:53+07', false);
INSERT INTO public.journals VALUES (12385, 3617, 'Issue', 5, NULL, '2021-01-26 08:59:15+07', false);
INSERT INTO public.journals VALUES (12386, 3618, 'Issue', 5, NULL, '2021-01-26 08:59:15+07', false);
INSERT INTO public.journals VALUES (12387, 3619, 'Issue', 5, NULL, '2021-01-26 08:59:15+07', false);
INSERT INTO public.journals VALUES (12388, 3620, 'Issue', 5, NULL, '2021-01-26 08:59:15+07', false);
INSERT INTO public.journals VALUES (12389, 3633, 'Issue', 5, NULL, '2021-01-26 08:59:15+07', false);
INSERT INTO public.journals VALUES (12390, 3638, 'Issue', 5, NULL, '2021-01-26 08:59:15+07', false);
INSERT INTO public.journals VALUES (12391, 3639, 'Issue', 5, NULL, '2021-01-26 08:59:16+07', false);
INSERT INTO public.journals VALUES (12392, 3665, 'Issue', 15, '', '2021-01-26 14:21:34+07', false);
INSERT INTO public.journals VALUES (12393, 3665, 'Issue', 15, '', '2021-01-26 14:24:17+07', false);
INSERT INTO public.journals VALUES (12394, 3666, 'Issue', 15, '', '2021-01-26 14:27:00+07', false);
INSERT INTO public.journals VALUES (12396, 3668, 'Issue', 15, '', '2021-01-26 14:27:00+07', false);
INSERT INTO public.journals VALUES (12398, 3666, 'Issue', 15, NULL, '2021-01-26 14:28:14+07', false);
INSERT INTO public.journals VALUES (12399, 3668, 'Issue', 15, NULL, '2021-01-26 14:28:14+07', false);
INSERT INTO public.journals VALUES (12401, 3665, 'Issue', 15, NULL, '2021-01-26 14:28:33+07', false);
INSERT INTO public.journals VALUES (12403, 3640, 'Issue', 41, NULL, '2021-01-28 08:46:42+07', false);
INSERT INTO public.journals VALUES (12404, 3640, 'Issue', 41, '', '2021-01-28 08:48:08+07', false);
INSERT INTO public.journals VALUES (12405, 3642, 'Issue', 41, NULL, '2021-01-28 08:49:03+07', false);
INSERT INTO public.journals VALUES (12406, 3642, 'Issue', 41, '', '2021-01-28 08:49:43+07', false);
INSERT INTO public.journals VALUES (12407, 3670, 'Issue', 41, NULL, '2021-01-28 08:51:41+07', false);
INSERT INTO public.journals VALUES (12408, 3672, 'Issue', 41, '', '2021-01-28 08:58:08+07', false);
INSERT INTO public.journals VALUES (12409, 3644, 'Issue', 41, NULL, '2021-01-28 09:05:41+07', false);
INSERT INTO public.journals VALUES (12410, 3644, 'Issue', 41, NULL, '2021-01-28 09:05:53+07', false);
INSERT INTO public.journals VALUES (12411, 3644, 'Issue', 41, '', '2021-01-28 09:12:05+07', false);
INSERT INTO public.journals VALUES (12412, 3644, 'Issue', 41, '', '2021-01-28 09:14:47+07', false);
INSERT INTO public.journals VALUES (12413, 3642, 'Issue', 41, '', '2021-01-28 09:15:22+07', false);
INSERT INTO public.journals VALUES (12414, 3644, 'Issue', 41, '', '2021-01-28 09:15:50+07', false);
INSERT INTO public.journals VALUES (12415, 3614, 'Issue', 33, NULL, '2021-01-28 13:52:20+07', false);
INSERT INTO public.journals VALUES (12416, 3610, 'Issue', 33, NULL, '2021-01-28 13:52:32+07', false);
INSERT INTO public.journals VALUES (12417, 3609, 'Issue', 33, NULL, '2021-01-28 13:52:43+07', false);
INSERT INTO public.journals VALUES (12418, 3608, 'Issue', 33, NULL, '2021-01-28 13:53:00+07', false);
INSERT INTO public.journals VALUES (12419, 3588, 'Issue', 33, NULL, '2021-01-28 13:53:12+07', false);
INSERT INTO public.journals VALUES (12420, 3561, 'Issue', 33, NULL, '2021-01-28 13:53:23+07', false);
INSERT INTO public.journals VALUES (12421, 3541, 'Issue', 33, NULL, '2021-01-28 13:53:35+07', false);
INSERT INTO public.journals VALUES (12422, 3540, 'Issue', 33, NULL, '2021-01-28 13:53:48+07', false);
INSERT INTO public.journals VALUES (12423, 3488, 'Issue', 33, NULL, '2021-01-28 13:53:59+07', false);
INSERT INTO public.journals VALUES (12424, 3466, 'Issue', 33, NULL, '2021-01-28 13:54:12+07', false);
INSERT INTO public.journals VALUES (12425, 3460, 'Issue', 33, NULL, '2021-01-28 13:54:24+07', false);
INSERT INTO public.journals VALUES (12426, 3461, 'Issue', 33, NULL, '2021-01-28 13:54:34+07', false);
INSERT INTO public.journals VALUES (12427, 3416, 'Issue', 33, NULL, '2021-01-28 13:54:56+07', false);
INSERT INTO public.journals VALUES (12428, 2947, 'Issue', 33, NULL, '2021-01-28 13:55:06+07', false);
INSERT INTO public.journals VALUES (12429, 2948, 'Issue', 33, NULL, '2021-01-28 13:55:17+07', false);
INSERT INTO public.journals VALUES (12430, 3676, 'Issue', 33, NULL, '2021-01-28 14:00:44+07', false);
INSERT INTO public.journals VALUES (12431, 3640, 'Issue', 5, NULL, '2021-01-29 08:38:03+07', false);
INSERT INTO public.journals VALUES (12432, 3672, 'Issue', 5, NULL, '2021-01-29 08:38:03+07', false);
INSERT INTO public.journals VALUES (12433, 3673, 'Issue', 5, NULL, '2021-01-29 08:38:03+07', false);
INSERT INTO public.journals VALUES (12434, 3642, 'Issue', 5, NULL, '2021-01-29 08:38:03+07', false);
INSERT INTO public.journals VALUES (12435, 3670, 'Issue', 5, NULL, '2021-01-29 08:38:03+07', false);
INSERT INTO public.journals VALUES (12436, 3671, 'Issue', 5, NULL, '2021-01-29 08:38:04+07', false);
INSERT INTO public.journals VALUES (12437, 3644, 'Issue', 5, NULL, '2021-01-29 08:38:04+07', false);
INSERT INTO public.journals VALUES (12438, 3674, 'Issue', 5, NULL, '2021-01-29 08:38:04+07', false);
INSERT INTO public.journals VALUES (12439, 3675, 'Issue', 5, NULL, '2021-01-29 08:38:04+07', false);
INSERT INTO public.journals VALUES (12440, 3665, 'Issue', 5, NULL, '2021-01-29 08:38:04+07', false);
INSERT INTO public.journals VALUES (12441, 3666, 'Issue', 5, NULL, '2021-01-29 08:38:04+07', false);
INSERT INTO public.journals VALUES (12443, 3668, 'Issue', 5, NULL, '2021-01-29 08:38:04+07', false);
INSERT INTO public.journals VALUES (12445, 3635, 'Issue', 5, '', '2021-01-29 08:38:27+07', false);
INSERT INTO public.journals VALUES (12446, 3636, 'Issue', 5, '', '2021-01-29 08:38:27+07', false);
INSERT INTO public.journals VALUES (12447, 3635, 'Issue', 5, '', '2021-01-29 08:38:48+07', false);
INSERT INTO public.journals VALUES (12448, 3636, 'Issue', 5, '', '2021-01-29 08:38:48+07', false);
INSERT INTO public.journals VALUES (12449, 3641, 'Issue', 41, NULL, '2021-01-29 10:21:46+07', false);
INSERT INTO public.journals VALUES (12450, 3641, 'Issue', 41, '', '2021-01-29 10:22:17+07', false);
INSERT INTO public.journals VALUES (12451, 3647, 'Issue', 41, NULL, '2021-01-29 10:24:16+07', false);
INSERT INTO public.journals VALUES (12452, 3647, 'Issue', 41, '', '2021-01-29 10:24:56+07', false);
INSERT INTO public.journals VALUES (12453, 3682, 'Issue', 41, '', '2021-01-29 10:26:24+07', false);
INSERT INTO public.journals VALUES (12454, 3683, 'Issue', 15, '', '2021-01-30 08:12:54+07', false);
INSERT INTO public.journals VALUES (12455, 1848, 'Issue', 13, '', '2021-01-30 08:22:42+07', false);
INSERT INTO public.journals VALUES (12456, 1849, 'Issue', 13, '', '2021-01-30 08:22:42+07', false);
INSERT INTO public.journals VALUES (12457, 1850, 'Issue', 13, '', '2021-01-30 08:22:42+07', false);
INSERT INTO public.journals VALUES (12458, 1891, 'Issue', 13, '', '2021-01-30 08:22:42+07', false);
INSERT INTO public.journals VALUES (12459, 3688, 'Issue', 15, '', '2021-01-30 09:58:15+07', false);
INSERT INTO public.journals VALUES (12460, 3688, 'Issue', 15, '', '2021-01-30 09:59:34+07', false);
INSERT INTO public.journals VALUES (12461, 3641, 'Issue', 15, '', '2021-01-30 10:00:03+07', false);
INSERT INTO public.journals VALUES (12462, 3644, 'Issue', 15, '', '2021-01-30 10:00:03+07', false);
INSERT INTO public.journals VALUES (12463, 3647, 'Issue', 15, '', '2021-01-30 10:00:03+07', false);
INSERT INTO public.journals VALUES (12464, 3679, 'Issue', 15, '', '2021-01-30 10:01:49+07', false);
INSERT INTO public.journals VALUES (12465, 3680, 'Issue', 15, '', '2021-01-30 10:01:49+07', false);
INSERT INTO public.journals VALUES (12466, 3674, 'Issue', 15, '', '2021-01-30 10:01:49+07', false);
INSERT INTO public.journals VALUES (12467, 3675, 'Issue', 15, '', '2021-01-30 10:01:49+07', false);
INSERT INTO public.journals VALUES (12468, 3681, 'Issue', 15, '', '2021-01-30 10:01:49+07', false);
INSERT INTO public.journals VALUES (12469, 3682, 'Issue', 15, '', '2021-01-30 10:01:49+07', false);
INSERT INTO public.journals VALUES (12470, 3641, 'Issue', 15, '', '2021-01-30 10:05:01+07', false);
INSERT INTO public.journals VALUES (12471, 3679, 'Issue', 15, '', '2021-01-30 10:05:02+07', false);
INSERT INTO public.journals VALUES (12472, 3680, 'Issue', 15, '', '2021-01-30 10:05:02+07', false);
INSERT INTO public.journals VALUES (12473, 3644, 'Issue', 15, '', '2021-01-30 10:05:02+07', false);
INSERT INTO public.journals VALUES (12474, 3674, 'Issue', 15, '', '2021-01-30 10:05:02+07', false);
INSERT INTO public.journals VALUES (12475, 3675, 'Issue', 15, '', '2021-01-30 10:05:02+07', false);
INSERT INTO public.journals VALUES (12476, 3647, 'Issue', 15, '', '2021-01-30 10:05:03+07', false);
INSERT INTO public.journals VALUES (12477, 3681, 'Issue', 15, '', '2021-01-30 10:05:03+07', false);
INSERT INTO public.journals VALUES (12478, 3682, 'Issue', 15, '', '2021-01-30 10:05:03+07', false);
INSERT INTO public.journals VALUES (12479, 3674, 'Issue', 15, '', '2021-01-30 10:05:31+07', false);
INSERT INTO public.journals VALUES (12480, 3675, 'Issue', 15, '', '2021-01-30 10:05:31+07', false);
INSERT INTO public.journals VALUES (12481, 3688, 'Issue', 15, '', '2021-01-30 10:06:35+07', false);
INSERT INTO public.journals VALUES (12482, 3640, 'Issue', 15, '', '2021-01-30 10:08:02+07', false);
INSERT INTO public.journals VALUES (12483, 3672, 'Issue', 15, '', '2021-01-30 10:08:03+07', false);
INSERT INTO public.journals VALUES (12484, 3673, 'Issue', 15, '', '2021-01-30 10:08:03+07', false);
INSERT INTO public.journals VALUES (12485, 3642, 'Issue', 15, '', '2021-01-30 10:08:03+07', false);
INSERT INTO public.journals VALUES (12486, 3670, 'Issue', 15, '', '2021-01-30 10:08:03+07', false);
INSERT INTO public.journals VALUES (12487, 3671, 'Issue', 15, '', '2021-01-30 10:08:03+07', false);
INSERT INTO public.journals VALUES (12488, 3689, 'Issue', 15, '', '2021-01-30 10:12:59+07', false);
INSERT INTO public.journals VALUES (12489, 3666, 'Issue', 15, '', '2021-01-30 10:13:50+07', false);
INSERT INTO public.journals VALUES (12490, 3641, 'Issue', 41, '', '2021-01-30 10:13:53+07', false);
INSERT INTO public.journals VALUES (12491, 3644, 'Issue', 41, '', '2021-01-30 10:13:56+07', false);
INSERT INTO public.journals VALUES (12492, 3647, 'Issue', 41, '', '2021-01-30 10:13:59+07', false);
INSERT INTO public.journals VALUES (12493, 3679, 'Issue', 41, '', '2021-01-30 10:14:02+07', false);
INSERT INTO public.journals VALUES (12494, 3680, 'Issue', 41, '', '2021-01-30 10:14:05+07', false);
INSERT INTO public.journals VALUES (12495, 3681, 'Issue', 41, '', '2021-01-30 10:14:08+07', false);
INSERT INTO public.journals VALUES (12496, 3682, 'Issue', 41, '', '2021-01-30 10:14:10+07', false);
INSERT INTO public.journals VALUES (12497, 3688, 'Issue', 41, '', '2021-01-30 10:14:43+07', false);
INSERT INTO public.journals VALUES (12498, 3690, 'Issue', 15, '', '2021-01-30 10:15:25+07', false);
INSERT INTO public.journals VALUES (12499, 3691, 'Issue', 15, '', '2021-01-30 10:15:25+07', false);
INSERT INTO public.journals VALUES (12500, 3689, 'Issue', 15, NULL, '2021-01-30 10:15:39+07', false);
INSERT INTO public.journals VALUES (12501, 3666, 'Issue', 15, '', '2021-01-30 10:16:39+07', false);
INSERT INTO public.journals VALUES (12502, 3690, 'Issue', 15, '', '2021-01-30 10:16:39+07', false);
INSERT INTO public.journals VALUES (12503, 3691, 'Issue', 15, '', '2021-01-30 10:16:39+07', false);
INSERT INTO public.journals VALUES (12504, 3666, 'Issue', 15, NULL, '2021-01-30 10:16:52+07', false);
INSERT INTO public.journals VALUES (12505, 3690, 'Issue', 15, NULL, '2021-01-30 10:16:52+07', false);
INSERT INTO public.journals VALUES (12506, 3691, 'Issue', 15, NULL, '2021-01-30 10:16:52+07', false);
INSERT INTO public.journals VALUES (12507, 3666, 'Issue', 15, NULL, '2021-01-30 10:17:02+07', false);
INSERT INTO public.journals VALUES (12508, 3690, 'Issue', 15, NULL, '2021-01-30 10:17:02+07', false);
INSERT INTO public.journals VALUES (12509, 3691, 'Issue', 15, NULL, '2021-01-30 10:17:02+07', false);
INSERT INTO public.journals VALUES (12510, 3666, 'Issue', 15, NULL, '2021-01-30 10:17:13+07', false);
INSERT INTO public.journals VALUES (12511, 3690, 'Issue', 15, NULL, '2021-01-30 10:17:13+07', false);
INSERT INTO public.journals VALUES (12512, 3691, 'Issue', 15, NULL, '2021-01-30 10:17:14+07', false);
INSERT INTO public.journals VALUES (12513, 3679, 'Issue', 41, '', '2021-01-30 10:19:08+07', false);
INSERT INTO public.journals VALUES (12514, 3680, 'Issue', 41, '', '2021-01-30 10:19:24+07', false);
INSERT INTO public.journals VALUES (12515, 3681, 'Issue', 41, '', '2021-01-30 10:19:37+07', false);
INSERT INTO public.journals VALUES (12516, 3682, 'Issue', 41, '', '2021-01-30 10:19:47+07', false);
INSERT INTO public.journals VALUES (12517, 1848, 'Issue', 13, '', '2021-01-30 13:37:01+07', false);
INSERT INTO public.journals VALUES (12518, 1849, 'Issue', 13, '', '2021-01-30 13:37:01+07', false);
INSERT INTO public.journals VALUES (12519, 1850, 'Issue', 13, '', '2021-01-30 13:37:01+07', false);
INSERT INTO public.journals VALUES (12520, 1891, 'Issue', 13, '', '2021-01-30 13:37:01+07', false);
INSERT INTO public.journals VALUES (12521, 3684, 'Issue', 13, '', '2021-01-30 13:37:30+07', false);
INSERT INTO public.journals VALUES (12522, 3687, 'Issue', 13, '', '2021-01-30 13:37:30+07', false);
INSERT INTO public.journals VALUES (12523, 3684, 'Issue', 13, NULL, '2021-01-30 13:38:27+07', false);
INSERT INTO public.journals VALUES (12524, 3694, 'Issue', 13, '', '2021-02-01 09:01:04+07', false);
INSERT INTO public.journals VALUES (12525, 3694, 'Issue', 13, NULL, '2021-02-01 15:46:18+07', false);
INSERT INTO public.journals VALUES (12526, 3695, 'Issue', 13, NULL, '2021-02-01 15:46:18+07', false);
INSERT INTO public.journals VALUES (12527, 3696, 'Issue', 13, NULL, '2021-02-01 15:46:19+07', false);
INSERT INTO public.journals VALUES (12528, 3697, 'Issue', 13, NULL, '2021-02-01 15:46:19+07', false);
INSERT INTO public.journals VALUES (12529, 3684, 'Issue', 13, NULL, '2021-02-01 15:46:42+07', false);
INSERT INTO public.journals VALUES (12530, 3686, 'Issue', 13, NULL, '2021-02-01 15:46:54+07', false);
INSERT INTO public.journals VALUES (12531, 3686, 'Issue', 13, NULL, '2021-02-01 15:47:01+07', false);
INSERT INTO public.journals VALUES (12532, 3692, 'Issue', 13, NULL, '2021-02-01 15:47:15+07', false);
INSERT INTO public.journals VALUES (12533, 3698, 'Issue', 13, NULL, '2021-02-02 08:28:34+07', false);
INSERT INTO public.journals VALUES (12534, 3687, 'Issue', 13, NULL, '2021-02-02 09:26:32+07', false);
INSERT INTO public.journals VALUES (12535, 3700, 'Issue', 13, '', '2021-02-02 09:52:53+07', false);
INSERT INTO public.journals VALUES (12536, 3701, 'Issue', 13, '', '2021-02-02 09:52:53+07', false);
INSERT INTO public.journals VALUES (12537, 1848, 'Issue', 13, '', '2021-02-02 09:53:34+07', false);
INSERT INTO public.journals VALUES (12538, 1849, 'Issue', 13, '', '2021-02-02 09:53:34+07', false);
INSERT INTO public.journals VALUES (12539, 1850, 'Issue', 13, '', '2021-02-02 09:53:34+07', false);
INSERT INTO public.journals VALUES (12540, 1891, 'Issue', 13, '', '2021-02-02 09:53:34+07', false);
INSERT INTO public.journals VALUES (12541, 3685, 'Issue', 13, '', '2021-02-02 09:53:35+07', false);
INSERT INTO public.journals VALUES (12542, 3687, 'Issue', 13, '', '2021-02-02 09:53:35+07', false);
INSERT INTO public.journals VALUES (12543, 3693, 'Issue', 13, '', '2021-02-02 09:53:35+07', false);
INSERT INTO public.journals VALUES (12544, 3698, 'Issue', 13, '', '2021-02-02 09:53:35+07', false);
INSERT INTO public.journals VALUES (12545, 3699, 'Issue', 13, '', '2021-02-02 09:53:35+07', false);
INSERT INTO public.journals VALUES (12546, 3700, 'Issue', 13, '', '2021-02-02 09:53:35+07', false);
INSERT INTO public.journals VALUES (12547, 3701, 'Issue', 13, '', '2021-02-02 09:53:36+07', false);
INSERT INTO public.journals VALUES (12548, 3684, 'Issue', 13, NULL, '2021-02-02 09:54:14+07', false);
INSERT INTO public.journals VALUES (12549, 3692, 'Issue', 13, NULL, '2021-02-02 09:54:14+07', false);
INSERT INTO public.journals VALUES (12550, 3694, 'Issue', 13, NULL, '2021-02-02 09:54:14+07', false);
INSERT INTO public.journals VALUES (12551, 3695, 'Issue', 13, NULL, '2021-02-02 09:54:14+07', false);
INSERT INTO public.journals VALUES (12552, 3696, 'Issue', 13, NULL, '2021-02-02 09:54:14+07', false);
INSERT INTO public.journals VALUES (12553, 3697, 'Issue', 13, NULL, '2021-02-02 09:54:14+07', false);
INSERT INTO public.journals VALUES (12554, 3700, 'Issue', 13, '', '2021-02-02 10:22:50+07', false);
INSERT INTO public.journals VALUES (12555, 3701, 'Issue', 13, '', '2021-02-02 10:22:52+07', false);
INSERT INTO public.journals VALUES (12556, 3708, 'Issue', 10, NULL, '2021-02-04 10:11:18+07', false);
INSERT INTO public.journals VALUES (12557, 3712, 'Issue', 10, '', '2021-02-04 11:19:22+07', false);
INSERT INTO public.journals VALUES (12558, 3712, 'Issue', 10, NULL, '2021-02-04 11:19:35+07', false);
INSERT INTO public.journals VALUES (12559, 3687, 'Issue', 10, NULL, '2021-02-04 11:19:50+07', false);
INSERT INTO public.journals VALUES (12560, 3698, 'Issue', 10, NULL, '2021-02-04 11:19:50+07', false);
INSERT INTO public.journals VALUES (12561, 3687, 'Issue', 10, NULL, '2021-02-04 11:20:00+07', false);
INSERT INTO public.journals VALUES (12562, 3698, 'Issue', 10, NULL, '2021-02-04 11:20:00+07', false);
INSERT INTO public.journals VALUES (12563, 3708, 'Issue', 10, NULL, '2021-02-04 11:20:00+07', false);
INSERT INTO public.journals VALUES (12564, 3712, 'Issue', 10, NULL, '2021-02-04 11:20:01+07', false);
INSERT INTO public.journals VALUES (12565, 3711, 'Issue', 10, NULL, '2021-02-04 15:28:54+07', false);
INSERT INTO public.journals VALUES (12566, 3711, 'Issue', 10, NULL, '2021-02-04 15:29:03+07', false);
INSERT INTO public.journals VALUES (12567, 3710, 'Issue', 10, NULL, '2021-02-04 16:34:38+07', false);
INSERT INTO public.journals VALUES (12568, 3709, 'Issue', 10, NULL, '2021-02-05 08:38:17+07', false);
INSERT INTO public.journals VALUES (12569, 3709, 'Issue', 10, NULL, '2021-02-05 08:38:27+07', false);
INSERT INTO public.journals VALUES (12570, 3710, 'Issue', 10, NULL, '2021-02-05 08:38:28+07', false);
INSERT INTO public.journals VALUES (12571, 2091, 'Issue', 5, NULL, '2021-02-05 08:54:14+07', false);
INSERT INTO public.journals VALUES (12572, 2092, 'Issue', 5, NULL, '2021-02-05 08:54:14+07', false);
INSERT INTO public.journals VALUES (12573, 2093, 'Issue', 5, NULL, '2021-02-05 08:54:14+07', false);
INSERT INTO public.journals VALUES (12574, 2094, 'Issue', 5, NULL, '2021-02-05 08:54:14+07', false);
INSERT INTO public.journals VALUES (12575, 2151, 'Issue', 5, NULL, '2021-02-05 08:54:14+07', false);
INSERT INTO public.journals VALUES (12576, 2152, 'Issue', 5, NULL, '2021-02-05 08:54:14+07', false);
INSERT INTO public.journals VALUES (12577, 2156, 'Issue', 5, NULL, '2021-02-05 08:54:14+07', false);
INSERT INTO public.journals VALUES (12578, 2161, 'Issue', 5, NULL, '2021-02-05 08:54:15+07', false);
INSERT INTO public.journals VALUES (12579, 2162, 'Issue', 5, NULL, '2021-02-05 08:54:15+07', false);
INSERT INTO public.journals VALUES (12580, 2163, 'Issue', 5, NULL, '2021-02-05 08:54:15+07', false);
INSERT INTO public.journals VALUES (12581, 2176, 'Issue', 5, NULL, '2021-02-05 08:54:15+07', false);
INSERT INTO public.journals VALUES (12582, 2177, 'Issue', 5, NULL, '2021-02-05 08:54:15+07', false);
INSERT INTO public.journals VALUES (12583, 2223, 'Issue', 5, NULL, '2021-02-05 08:54:15+07', false);
INSERT INTO public.journals VALUES (12584, 2226, 'Issue', 5, NULL, '2021-02-05 08:54:15+07', false);
INSERT INTO public.journals VALUES (12585, 2229, 'Issue', 5, NULL, '2021-02-05 08:54:15+07', false);
INSERT INTO public.journals VALUES (12586, 2315, 'Issue', 5, NULL, '2021-02-05 08:54:16+07', false);
INSERT INTO public.journals VALUES (12587, 2321, 'Issue', 5, NULL, '2021-02-05 08:54:16+07', false);
INSERT INTO public.journals VALUES (12588, 2238, 'Issue', 5, NULL, '2021-02-05 08:54:16+07', false);
INSERT INTO public.journals VALUES (12589, 2329, 'Issue', 5, NULL, '2021-02-05 08:54:16+07', false);
INSERT INTO public.journals VALUES (12590, 2359, 'Issue', 5, NULL, '2021-02-05 08:54:16+07', false);
INSERT INTO public.journals VALUES (12591, 2360, 'Issue', 5, NULL, '2021-02-05 08:54:16+07', false);
INSERT INTO public.journals VALUES (12592, 2362, 'Issue', 5, NULL, '2021-02-05 08:54:16+07', false);
INSERT INTO public.journals VALUES (12593, 2363, 'Issue', 5, NULL, '2021-02-05 08:54:16+07', false);
INSERT INTO public.journals VALUES (12594, 2364, 'Issue', 5, NULL, '2021-02-05 08:54:17+07', false);
INSERT INTO public.journals VALUES (12595, 2365, 'Issue', 5, NULL, '2021-02-05 08:54:17+07', false);
INSERT INTO public.journals VALUES (12596, 1868, 'Issue', 5, NULL, '2021-02-05 08:54:27+07', false);
INSERT INTO public.journals VALUES (12597, 1869, 'Issue', 5, NULL, '2021-02-05 08:54:27+07', false);
INSERT INTO public.journals VALUES (12598, 1872, 'Issue', 5, NULL, '2021-02-05 08:54:27+07', false);
INSERT INTO public.journals VALUES (12599, 1873, 'Issue', 5, NULL, '2021-02-05 08:54:27+07', false);
INSERT INTO public.journals VALUES (12600, 1874, 'Issue', 5, NULL, '2021-02-05 08:54:27+07', false);
INSERT INTO public.journals VALUES (12601, 1875, 'Issue', 5, NULL, '2021-02-05 08:54:28+07', false);
INSERT INTO public.journals VALUES (12602, 1878, 'Issue', 5, NULL, '2021-02-05 08:54:28+07', false);
INSERT INTO public.journals VALUES (12603, 1880, 'Issue', 5, NULL, '2021-02-05 08:54:28+07', false);
INSERT INTO public.journals VALUES (12604, 1887, 'Issue', 5, NULL, '2021-02-05 08:54:28+07', false);
INSERT INTO public.journals VALUES (12605, 1881, 'Issue', 5, NULL, '2021-02-05 08:54:28+07', false);
INSERT INTO public.journals VALUES (12606, 1882, 'Issue', 5, NULL, '2021-02-05 08:54:28+07', false);
INSERT INTO public.journals VALUES (12607, 1886, 'Issue', 5, NULL, '2021-02-05 08:54:28+07', false);
INSERT INTO public.journals VALUES (12608, 1916, 'Issue', 5, NULL, '2021-02-05 08:54:29+07', false);
INSERT INTO public.journals VALUES (12609, 1917, 'Issue', 5, NULL, '2021-02-05 08:54:29+07', false);
INSERT INTO public.journals VALUES (12610, 1926, 'Issue', 5, NULL, '2021-02-05 08:54:29+07', false);
INSERT INTO public.journals VALUES (12611, 1928, 'Issue', 5, NULL, '2021-02-05 08:54:29+07', false);
INSERT INTO public.journals VALUES (12612, 1932, 'Issue', 5, NULL, '2021-02-05 08:54:29+07', false);
INSERT INTO public.journals VALUES (12613, 1950, 'Issue', 5, NULL, '2021-02-05 08:54:29+07', false);
INSERT INTO public.journals VALUES (12614, 1972, 'Issue', 5, NULL, '2021-02-05 08:54:29+07', false);
INSERT INTO public.journals VALUES (12615, 1973, 'Issue', 5, NULL, '2021-02-05 08:54:29+07', false);
INSERT INTO public.journals VALUES (12616, 1974, 'Issue', 5, NULL, '2021-02-05 08:54:30+07', false);
INSERT INTO public.journals VALUES (12617, 1995, 'Issue', 5, NULL, '2021-02-05 08:54:30+07', false);
INSERT INTO public.journals VALUES (12618, 1996, 'Issue', 5, NULL, '2021-02-05 08:54:30+07', false);
INSERT INTO public.journals VALUES (12619, 1997, 'Issue', 5, NULL, '2021-02-05 08:54:30+07', false);
INSERT INTO public.journals VALUES (12620, 2003, 'Issue', 5, NULL, '2021-02-05 08:54:30+07', false);
INSERT INTO public.journals VALUES (12621, 1750, 'Issue', 5, NULL, '2021-02-05 08:55:02+07', false);
INSERT INTO public.journals VALUES (12622, 1752, 'Issue', 5, NULL, '2021-02-05 08:55:02+07', false);
INSERT INTO public.journals VALUES (12623, 1775, 'Issue', 5, NULL, '2021-02-05 08:55:02+07', false);
INSERT INTO public.journals VALUES (12624, 1826, 'Issue', 5, NULL, '2021-02-05 08:55:03+07', false);
INSERT INTO public.journals VALUES (12625, 1827, 'Issue', 5, NULL, '2021-02-05 08:55:03+07', false);
INSERT INTO public.journals VALUES (12626, 1829, 'Issue', 5, NULL, '2021-02-05 08:55:03+07', false);
INSERT INTO public.journals VALUES (12627, 1831, 'Issue', 5, NULL, '2021-02-05 08:55:03+07', false);
INSERT INTO public.journals VALUES (12628, 1839, 'Issue', 5, NULL, '2021-02-05 08:55:03+07', false);
INSERT INTO public.journals VALUES (12629, 1840, 'Issue', 5, NULL, '2021-02-05 08:55:03+07', false);
INSERT INTO public.journals VALUES (12630, 1860, 'Issue', 5, NULL, '2021-02-05 08:55:03+07', false);
INSERT INTO public.journals VALUES (12631, 1861, 'Issue', 5, NULL, '2021-02-05 08:55:03+07', false);
INSERT INTO public.journals VALUES (12632, 1862, 'Issue', 5, NULL, '2021-02-05 08:55:04+07', false);
INSERT INTO public.journals VALUES (12633, 1864, 'Issue', 5, NULL, '2021-02-05 08:55:04+07', false);
INSERT INTO public.journals VALUES (12634, 1865, 'Issue', 5, NULL, '2021-02-05 08:55:04+07', false);
INSERT INTO public.journals VALUES (12635, 211, 'Issue', 5, NULL, '2021-02-05 08:56:45+07', false);
INSERT INTO public.journals VALUES (12636, 212, 'Issue', 5, NULL, '2021-02-05 08:56:46+07', false);
INSERT INTO public.journals VALUES (12637, 215, 'Issue', 5, NULL, '2021-02-05 08:56:46+07', false);
INSERT INTO public.journals VALUES (12638, 216, 'Issue', 5, NULL, '2021-02-05 08:56:46+07', false);
INSERT INTO public.journals VALUES (12639, 217, 'Issue', 5, NULL, '2021-02-05 08:56:46+07', false);
INSERT INTO public.journals VALUES (12640, 218, 'Issue', 5, NULL, '2021-02-05 08:56:46+07', false);
INSERT INTO public.journals VALUES (12641, 220, 'Issue', 5, NULL, '2021-02-05 08:57:02+07', false);
INSERT INTO public.journals VALUES (12642, 221, 'Issue', 5, NULL, '2021-02-05 08:57:03+07', false);
INSERT INTO public.journals VALUES (12643, 222, 'Issue', 5, NULL, '2021-02-05 08:57:03+07', false);
INSERT INTO public.journals VALUES (12644, 223, 'Issue', 5, NULL, '2021-02-05 08:57:03+07', false);
INSERT INTO public.journals VALUES (12645, 224, 'Issue', 5, NULL, '2021-02-05 08:57:03+07', false);
INSERT INTO public.journals VALUES (12646, 225, 'Issue', 5, NULL, '2021-02-05 08:57:03+07', false);
INSERT INTO public.journals VALUES (12647, 246, 'Issue', 5, NULL, '2021-02-05 08:57:04+07', false);
INSERT INTO public.journals VALUES (12648, 247, 'Issue', 5, NULL, '2021-02-05 08:57:04+07', false);
INSERT INTO public.journals VALUES (12649, 248, 'Issue', 5, NULL, '2021-02-05 08:57:04+07', false);
INSERT INTO public.journals VALUES (12650, 238, 'Issue', 5, NULL, '2021-02-05 08:57:42+07', false);
INSERT INTO public.journals VALUES (12651, 303, 'Issue', 5, NULL, '2021-02-05 08:57:42+07', false);
INSERT INTO public.journals VALUES (12652, 300, 'Issue', 5, NULL, '2021-02-05 08:57:43+07', false);
INSERT INTO public.journals VALUES (12653, 344, 'Issue', 5, NULL, '2021-02-05 08:57:43+07', false);
INSERT INTO public.journals VALUES (12654, 299, 'Issue', 5, NULL, '2021-02-05 08:57:43+07', false);
INSERT INTO public.journals VALUES (12655, 348, 'Issue', 5, NULL, '2021-02-05 08:57:43+07', false);
INSERT INTO public.journals VALUES (12656, 351, 'Issue', 5, NULL, '2021-02-05 08:57:44+07', false);
INSERT INTO public.journals VALUES (12657, 356, 'Issue', 5, NULL, '2021-02-05 08:57:44+07', false);
INSERT INTO public.journals VALUES (12658, 301, 'Issue', 5, NULL, '2021-02-05 08:57:44+07', false);
INSERT INTO public.journals VALUES (12659, 304, 'Issue', 5, NULL, '2021-02-05 08:57:44+07', false);
INSERT INTO public.journals VALUES (12660, 914, 'Issue', 5, NULL, '2021-02-05 08:57:44+07', false);
INSERT INTO public.journals VALUES (12661, 928, 'Issue', 5, NULL, '2021-02-05 08:57:44+07', false);
INSERT INTO public.journals VALUES (12662, 929, 'Issue', 5, NULL, '2021-02-05 08:57:45+07', false);
INSERT INTO public.journals VALUES (12663, 958, 'Issue', 5, NULL, '2021-02-05 08:57:45+07', false);
INSERT INTO public.journals VALUES (12664, 959, 'Issue', 5, NULL, '2021-02-05 08:57:45+07', false);
INSERT INTO public.journals VALUES (12665, 960, 'Issue', 5, NULL, '2021-02-05 08:57:45+07', false);
INSERT INTO public.journals VALUES (12666, 961, 'Issue', 5, NULL, '2021-02-05 08:57:45+07', false);
INSERT INTO public.journals VALUES (12667, 239, 'Issue', 5, NULL, '2021-02-05 08:57:53+07', false);
INSERT INTO public.journals VALUES (12668, 240, 'Issue', 5, NULL, '2021-02-05 08:57:54+07', false);
INSERT INTO public.journals VALUES (12669, 244, 'Issue', 5, NULL, '2021-02-05 08:57:54+07', false);
INSERT INTO public.journals VALUES (12670, 245, 'Issue', 5, NULL, '2021-02-05 08:57:54+07', false);
INSERT INTO public.journals VALUES (12671, 927, 'Issue', 5, NULL, '2021-02-05 08:58:02+07', false);
INSERT INTO public.journals VALUES (12672, 1008, 'Issue', 5, NULL, '2021-02-05 08:59:02+07', false);
INSERT INTO public.journals VALUES (12673, 1009, 'Issue', 5, NULL, '2021-02-05 08:59:02+07', false);
INSERT INTO public.journals VALUES (12674, 1019, 'Issue', 5, NULL, '2021-02-05 08:59:02+07', false);
INSERT INTO public.journals VALUES (12675, 1017, 'Issue', 5, NULL, '2021-02-05 08:59:02+07', false);
INSERT INTO public.journals VALUES (12676, 1588, 'Issue', 5, NULL, '2021-02-05 08:59:03+07', false);
INSERT INTO public.journals VALUES (12677, 1589, 'Issue', 5, NULL, '2021-02-05 08:59:03+07', false);
INSERT INTO public.journals VALUES (12678, 1590, 'Issue', 5, NULL, '2021-02-05 08:59:03+07', false);
INSERT INTO public.journals VALUES (12679, 1591, 'Issue', 5, NULL, '2021-02-05 08:59:03+07', false);
INSERT INTO public.journals VALUES (12680, 1593, 'Issue', 5, NULL, '2021-02-05 08:59:03+07', false);
INSERT INTO public.journals VALUES (12681, 1611, 'Issue', 5, NULL, '2021-02-05 08:59:03+07', false);
INSERT INTO public.journals VALUES (12682, 1673, 'Issue', 5, NULL, '2021-02-05 08:59:03+07', false);
INSERT INTO public.journals VALUES (12683, 1691, 'Issue', 5, NULL, '2021-02-05 08:59:03+07', false);
INSERT INTO public.journals VALUES (12684, 1693, 'Issue', 5, NULL, '2021-02-05 08:59:04+07', false);
INSERT INTO public.journals VALUES (12685, 1726, 'Issue', 5, NULL, '2021-02-05 08:59:04+07', false);
INSERT INTO public.journals VALUES (12686, 1729, 'Issue', 5, NULL, '2021-02-05 08:59:04+07', false);
INSERT INTO public.journals VALUES (12687, 1692, 'Issue', 5, NULL, '2021-02-05 08:59:04+07', false);
INSERT INTO public.journals VALUES (12688, 1694, 'Issue', 5, NULL, '2021-02-05 08:59:04+07', false);
INSERT INTO public.journals VALUES (12689, 1730, 'Issue', 5, NULL, '2021-02-05 08:59:04+07', false);
INSERT INTO public.journals VALUES (12690, 1743, 'Issue', 5, NULL, '2021-02-05 08:59:04+07', false);
INSERT INTO public.journals VALUES (12691, 1745, 'Issue', 5, NULL, '2021-02-05 08:59:04+07', false);
INSERT INTO public.journals VALUES (12692, 1592, 'Issue', 5, NULL, '2021-02-05 08:59:23+07', false);
INSERT INTO public.journals VALUES (12693, 1610, 'Issue', 5, NULL, '2021-02-05 08:59:23+07', false);
INSERT INTO public.journals VALUES (12694, 1632, 'Issue', 5, NULL, '2021-02-05 08:59:23+07', false);
INSERT INTO public.journals VALUES (12695, 1633, 'Issue', 5, NULL, '2021-02-05 08:59:23+07', false);
INSERT INTO public.journals VALUES (12696, 1595, 'Issue', 5, NULL, '2021-02-05 08:59:23+07', false);
INSERT INTO public.journals VALUES (12697, 1596, 'Issue', 5, NULL, '2021-02-05 08:59:24+07', false);
INSERT INTO public.journals VALUES (12698, 1597, 'Issue', 5, NULL, '2021-02-05 08:59:24+07', false);
INSERT INTO public.journals VALUES (12699, 1697, 'Issue', 5, NULL, '2021-02-05 08:59:35+07', false);
INSERT INTO public.journals VALUES (12700, 1698, 'Issue', 5, NULL, '2021-02-05 08:59:35+07', false);
INSERT INTO public.journals VALUES (12701, 1021, 'Issue', 5, NULL, '2021-02-05 08:59:45+07', false);
INSERT INTO public.journals VALUES (12702, 1031, 'Issue', 5, NULL, '2021-02-05 08:59:45+07', false);
INSERT INTO public.journals VALUES (12703, 1034, 'Issue', 5, NULL, '2021-02-05 08:59:45+07', false);
INSERT INTO public.journals VALUES (12704, 1410, 'Issue', 5, NULL, '2021-02-05 08:59:45+07', false);
INSERT INTO public.journals VALUES (12705, 207, 'Issue', 5, NULL, '2021-02-05 09:00:10+07', false);
INSERT INTO public.journals VALUES (12706, 209, 'Issue', 5, NULL, '2021-02-05 09:00:10+07', false);
INSERT INTO public.journals VALUES (12707, 962, 'Issue', 5, NULL, '2021-02-05 09:00:11+07', false);
INSERT INTO public.journals VALUES (12708, 964, 'Issue', 5, NULL, '2021-02-05 09:00:11+07', false);
INSERT INTO public.journals VALUES (12709, 972, 'Issue', 5, NULL, '2021-02-05 09:00:11+07', false);
INSERT INTO public.journals VALUES (12710, 1000, 'Issue', 5, NULL, '2021-02-05 09:00:11+07', false);
INSERT INTO public.journals VALUES (12711, 1018, 'Issue', 5, NULL, '2021-02-05 09:00:11+07', false);
INSERT INTO public.journals VALUES (12712, 1023, 'Issue', 5, NULL, '2021-02-05 09:00:11+07', false);
INSERT INTO public.journals VALUES (12713, 1366, 'Issue', 5, NULL, '2021-02-05 09:00:12+07', false);
INSERT INTO public.journals VALUES (12714, 971, 'Issue', 5, NULL, '2021-02-05 09:00:12+07', false);
INSERT INTO public.journals VALUES (12715, 993, 'Issue', 5, NULL, '2021-02-05 09:00:12+07', false);
INSERT INTO public.journals VALUES (12716, 1035, 'Issue', 5, NULL, '2021-02-05 09:00:12+07', false);
INSERT INTO public.journals VALUES (12717, 1040, 'Issue', 5, NULL, '2021-02-05 09:00:12+07', false);
INSERT INTO public.journals VALUES (12718, 1041, 'Issue', 5, NULL, '2021-02-05 09:00:12+07', false);
INSERT INTO public.journals VALUES (12719, 1042, 'Issue', 5, NULL, '2021-02-05 09:00:12+07', false);
INSERT INTO public.journals VALUES (12720, 1103, 'Issue', 5, NULL, '2021-02-05 09:00:13+07', false);
INSERT INTO public.journals VALUES (12721, 210, 'Issue', 5, NULL, '2021-02-05 09:00:19+07', false);
INSERT INTO public.journals VALUES (12722, 226, 'Issue', 5, NULL, '2021-02-05 09:00:19+07', false);
INSERT INTO public.journals VALUES (12723, 179, 'Issue', 5, NULL, '2021-02-05 09:07:51+07', false);
INSERT INTO public.journals VALUES (12724, 256, 'Issue', 5, NULL, '2021-02-05 09:07:52+07', false);
INSERT INTO public.journals VALUES (12725, 252, 'Issue', 5, NULL, '2021-02-05 09:07:52+07', false);
INSERT INTO public.journals VALUES (12726, 230, 'Issue', 5, NULL, '2021-02-05 09:07:52+07', false);
INSERT INTO public.journals VALUES (12727, 258, 'Issue', 5, NULL, '2021-02-05 09:07:52+07', false);
INSERT INTO public.journals VALUES (12728, 195, 'Issue', 5, NULL, '2021-02-05 09:07:52+07', false);
INSERT INTO public.journals VALUES (12729, 761, 'Issue', 5, NULL, '2021-02-05 09:07:52+07', false);
INSERT INTO public.journals VALUES (12730, 762, 'Issue', 5, NULL, '2021-02-05 09:07:52+07', false);
INSERT INTO public.journals VALUES (12731, 763, 'Issue', 5, NULL, '2021-02-05 09:07:53+07', false);
INSERT INTO public.journals VALUES (12732, 786, 'Issue', 5, NULL, '2021-02-05 09:07:53+07', false);
INSERT INTO public.journals VALUES (12733, 787, 'Issue', 5, NULL, '2021-02-05 09:07:53+07', false);
INSERT INTO public.journals VALUES (12734, 793, 'Issue', 5, NULL, '2021-02-05 09:07:53+07', false);
INSERT INTO public.journals VALUES (12735, 803, 'Issue', 5, NULL, '2021-02-05 09:07:53+07', false);
INSERT INTO public.journals VALUES (12736, 804, 'Issue', 5, NULL, '2021-02-05 09:07:54+07', false);
INSERT INTO public.journals VALUES (12737, 822, 'Issue', 5, NULL, '2021-02-05 09:07:54+07', false);
INSERT INTO public.journals VALUES (12738, 710, 'Issue', 5, NULL, '2021-02-05 09:07:54+07', false);
INSERT INTO public.journals VALUES (12739, 607, 'Issue', 5, NULL, '2021-02-05 09:07:54+07', false);
INSERT INTO public.journals VALUES (12740, 688, 'Issue', 5, NULL, '2021-02-05 09:07:54+07', false);
INSERT INTO public.journals VALUES (12741, 707, 'Issue', 5, NULL, '2021-02-05 09:07:54+07', false);
INSERT INTO public.journals VALUES (12742, 711, 'Issue', 5, NULL, '2021-02-05 09:07:54+07', false);
INSERT INTO public.journals VALUES (12743, 712, 'Issue', 5, NULL, '2021-02-05 09:07:55+07', false);
INSERT INTO public.journals VALUES (12744, 823, 'Issue', 5, NULL, '2021-02-05 09:07:55+07', false);
INSERT INTO public.journals VALUES (12745, 827, 'Issue', 5, NULL, '2021-02-05 09:07:55+07', false);
INSERT INTO public.journals VALUES (12746, 828, 'Issue', 5, NULL, '2021-02-05 09:07:55+07', false);
INSERT INTO public.journals VALUES (12747, 829, 'Issue', 5, NULL, '2021-02-05 09:07:56+07', false);
INSERT INTO public.journals VALUES (12748, 830, 'Issue', 5, NULL, '2021-02-05 09:07:56+07', false);
INSERT INTO public.journals VALUES (12749, 831, 'Issue', 5, NULL, '2021-02-05 09:07:56+07', false);
INSERT INTO public.journals VALUES (12750, 835, 'Issue', 5, NULL, '2021-02-05 09:07:56+07', false);
INSERT INTO public.journals VALUES (12751, 837, 'Issue', 5, NULL, '2021-02-05 09:07:56+07', false);
INSERT INTO public.journals VALUES (12752, 839, 'Issue', 5, NULL, '2021-02-05 09:07:56+07', false);
INSERT INTO public.journals VALUES (12753, 842, 'Issue', 5, NULL, '2021-02-05 09:07:57+07', false);
INSERT INTO public.journals VALUES (12754, 843, 'Issue', 5, NULL, '2021-02-05 09:07:57+07', false);
INSERT INTO public.journals VALUES (12755, 867, 'Issue', 5, NULL, '2021-02-05 09:07:57+07', false);
INSERT INTO public.journals VALUES (12756, 869, 'Issue', 5, NULL, '2021-02-05 09:07:57+07', false);
INSERT INTO public.journals VALUES (12757, 887, 'Issue', 5, NULL, '2021-02-05 09:07:57+07', false);
INSERT INTO public.journals VALUES (12758, 608, 'Issue', 5, NULL, '2021-02-05 09:07:57+07', false);
INSERT INTO public.journals VALUES (12759, 609, 'Issue', 5, NULL, '2021-02-05 09:07:58+07', false);
INSERT INTO public.journals VALUES (12760, 614, 'Issue', 5, NULL, '2021-02-05 09:07:58+07', false);
INSERT INTO public.journals VALUES (12761, 668, 'Issue', 5, NULL, '2021-02-05 09:07:58+07', false);
INSERT INTO public.journals VALUES (12762, 669, 'Issue', 5, NULL, '2021-02-05 09:07:58+07', false);
INSERT INTO public.journals VALUES (12763, 615, 'Issue', 5, NULL, '2021-02-05 09:07:58+07', false);
INSERT INTO public.journals VALUES (12764, 611, 'Issue', 5, NULL, '2021-02-05 09:07:59+07', false);
INSERT INTO public.journals VALUES (12765, 671, 'Issue', 5, NULL, '2021-02-05 09:07:59+07', false);
INSERT INTO public.journals VALUES (12766, 673, 'Issue', 5, NULL, '2021-02-05 09:07:59+07', false);
INSERT INTO public.journals VALUES (12767, 674, 'Issue', 5, NULL, '2021-02-05 09:07:59+07', false);
INSERT INTO public.journals VALUES (12768, 675, 'Issue', 5, NULL, '2021-02-05 09:08:00+07', false);
INSERT INTO public.journals VALUES (12769, 709, 'Issue', 5, NULL, '2021-02-05 09:08:00+07', false);
INSERT INTO public.journals VALUES (12770, 752, 'Issue', 5, NULL, '2021-02-05 09:08:00+07', false);
INSERT INTO public.journals VALUES (12771, 760, 'Issue', 5, NULL, '2021-02-05 09:08:00+07', false);
INSERT INTO public.journals VALUES (12772, 678, 'Issue', 5, NULL, '2021-02-05 09:08:00+07', false);
INSERT INTO public.journals VALUES (12773, 832, 'Issue', 5, NULL, '2021-02-05 09:08:01+07', false);
INSERT INTO public.journals VALUES (12774, 746, 'Issue', 5, NULL, '2021-02-05 09:08:01+07', false);
INSERT INTO public.journals VALUES (12775, 750, 'Issue', 5, NULL, '2021-02-05 09:08:01+07', false);
INSERT INTO public.journals VALUES (12776, 751, 'Issue', 5, NULL, '2021-02-05 09:08:01+07', false);
INSERT INTO public.journals VALUES (12777, 854, 'Issue', 5, NULL, '2021-02-05 09:08:01+07', false);
INSERT INTO public.journals VALUES (12778, 840, 'Issue', 5, NULL, '2021-02-05 09:08:02+07', false);
INSERT INTO public.journals VALUES (12779, 841, 'Issue', 5, NULL, '2021-02-05 09:08:02+07', false);
INSERT INTO public.journals VALUES (12780, 846, 'Issue', 5, NULL, '2021-02-05 09:08:02+07', false);
INSERT INTO public.journals VALUES (12781, 907, 'Issue', 5, NULL, '2021-02-05 09:08:02+07', false);
INSERT INTO public.journals VALUES (12782, 908, 'Issue', 5, NULL, '2021-02-05 09:08:02+07', false);
INSERT INTO public.journals VALUES (12783, 909, 'Issue', 5, NULL, '2021-02-05 09:08:03+07', false);
INSERT INTO public.journals VALUES (12784, 910, 'Issue', 5, NULL, '2021-02-05 09:08:03+07', false);
INSERT INTO public.journals VALUES (12785, 911, 'Issue', 5, NULL, '2021-02-05 09:08:03+07', false);
INSERT INTO public.journals VALUES (12786, 912, 'Issue', 5, NULL, '2021-02-05 09:08:03+07', false);
INSERT INTO public.journals VALUES (12787, 913, 'Issue', 5, NULL, '2021-02-05 09:08:03+07', false);
INSERT INTO public.journals VALUES (12788, 1013, 'Issue', 5, NULL, '2021-02-05 09:08:03+07', false);
INSERT INTO public.journals VALUES (12789, 1014, 'Issue', 5, NULL, '2021-02-05 09:08:04+07', false);
INSERT INTO public.journals VALUES (12790, 1015, 'Issue', 5, NULL, '2021-02-05 09:08:04+07', false);
INSERT INTO public.journals VALUES (12791, 1016, 'Issue', 5, NULL, '2021-02-05 09:08:04+07', false);
INSERT INTO public.journals VALUES (12792, 1050, 'Issue', 5, NULL, '2021-02-05 09:08:04+07', false);
INSERT INTO public.journals VALUES (12793, 1855, 'Issue', 5, NULL, '2021-02-05 11:13:07+07', false);
INSERT INTO public.journals VALUES (12794, 1851, 'Issue', 5, NULL, '2021-02-05 11:13:07+07', false);
INSERT INTO public.journals VALUES (12795, 1852, 'Issue', 5, NULL, '2021-02-05 11:13:07+07', false);
INSERT INTO public.journals VALUES (12796, 1902, 'Issue', 5, NULL, '2021-02-05 11:13:07+07', false);
INSERT INTO public.journals VALUES (12797, 1141, 'Issue', 5, NULL, '2021-02-05 11:14:15+07', false);
INSERT INTO public.journals VALUES (12798, 1169, 'Issue', 5, NULL, '2021-02-05 11:14:16+07', false);
INSERT INTO public.journals VALUES (12799, 1623, 'Issue', 5, NULL, '2021-02-05 11:14:16+07', false);
INSERT INTO public.journals VALUES (12800, 1624, 'Issue', 5, NULL, '2021-02-05 11:14:16+07', false);
INSERT INTO public.journals VALUES (12801, 1183, 'Issue', 5, NULL, '2021-02-05 11:14:17+07', false);
INSERT INTO public.journals VALUES (12802, 1184, 'Issue', 5, NULL, '2021-02-05 11:14:17+07', false);
INSERT INTO public.journals VALUES (12803, 1185, 'Issue', 5, NULL, '2021-02-05 11:14:17+07', false);
INSERT INTO public.journals VALUES (12804, 1186, 'Issue', 5, NULL, '2021-02-05 11:14:17+07', false);
INSERT INTO public.journals VALUES (12805, 1180, 'Issue', 5, NULL, '2021-02-05 11:14:17+07', false);
INSERT INTO public.journals VALUES (12806, 1133, 'Issue', 5, NULL, '2021-02-05 11:14:17+07', false);
INSERT INTO public.journals VALUES (12807, 1135, 'Issue', 5, NULL, '2021-02-05 11:14:17+07', false);
INSERT INTO public.journals VALUES (12808, 1137, 'Issue', 5, NULL, '2021-02-05 11:14:17+07', false);
INSERT INTO public.journals VALUES (12809, 1138, 'Issue', 5, NULL, '2021-02-05 11:14:17+07', false);
INSERT INTO public.journals VALUES (12810, 2019, 'Issue', 5, NULL, '2021-02-05 11:14:18+07', false);
INSERT INTO public.journals VALUES (12811, 1139, 'Issue', 5, NULL, '2021-02-05 11:14:18+07', false);
INSERT INTO public.journals VALUES (12812, 1140, 'Issue', 5, NULL, '2021-02-05 11:14:18+07', false);
INSERT INTO public.journals VALUES (12813, 2018, 'Issue', 5, NULL, '2021-02-05 11:14:18+07', false);
INSERT INTO public.journals VALUES (12814, 1669, 'Issue', 5, NULL, '2021-02-05 11:14:18+07', false);
INSERT INTO public.journals VALUES (12815, 1885, 'Issue', 5, NULL, '2021-02-05 11:14:18+07', false);
INSERT INTO public.journals VALUES (12816, 1145, 'Issue', 5, NULL, '2021-02-05 11:14:19+07', false);
INSERT INTO public.journals VALUES (12817, 1146, 'Issue', 5, NULL, '2021-02-05 11:14:19+07', false);
INSERT INTO public.journals VALUES (12818, 1179, 'Issue', 5, NULL, '2021-02-05 11:14:19+07', false);
INSERT INTO public.journals VALUES (12819, 1640, 'Issue', 5, NULL, '2021-02-05 11:14:19+07', false);
INSERT INTO public.journals VALUES (12820, 1641, 'Issue', 5, NULL, '2021-02-05 11:14:19+07', false);
INSERT INTO public.journals VALUES (12821, 1144, 'Issue', 5, NULL, '2021-02-05 11:14:19+07', false);
INSERT INTO public.journals VALUES (12822, 1389, 'Issue', 5, NULL, '2021-02-05 11:14:19+07', false);
INSERT INTO public.journals VALUES (12823, 1390, 'Issue', 5, NULL, '2021-02-05 11:14:19+07', false);
INSERT INTO public.journals VALUES (12824, 671, 'Issue', 12, NULL, '2021-02-05 12:15:51+07', false);
INSERT INTO public.journals VALUES (12825, 761, 'Issue', 12, NULL, '2021-02-05 12:17:43+07', false);
INSERT INTO public.journals VALUES (12826, 762, 'Issue', 12, NULL, '2021-02-05 12:17:44+07', false);
INSERT INTO public.journals VALUES (12827, 763, 'Issue', 12, NULL, '2021-02-05 12:17:44+07', false);
INSERT INTO public.journals VALUES (12828, 611, 'Issue', 12, NULL, '2021-02-05 12:19:06+07', false);
INSERT INTO public.journals VALUES (12829, 673, 'Issue', 12, NULL, '2021-02-05 12:19:07+07', false);
INSERT INTO public.journals VALUES (12830, 674, 'Issue', 12, NULL, '2021-02-05 12:19:07+07', false);
INSERT INTO public.journals VALUES (12831, 675, 'Issue', 12, NULL, '2021-02-05 12:19:07+07', false);
INSERT INTO public.journals VALUES (12832, 709, 'Issue', 12, NULL, '2021-02-05 12:19:07+07', false);
INSERT INTO public.journals VALUES (12833, 612, 'Issue', 12, NULL, '2021-02-05 12:20:13+07', false);
INSERT INTO public.journals VALUES (12834, 613, 'Issue', 12, NULL, '2021-02-05 12:20:13+07', false);
INSERT INTO public.journals VALUES (12835, 614, 'Issue', 12, NULL, '2021-02-05 12:20:14+07', false);
INSERT INTO public.journals VALUES (12836, 668, 'Issue', 12, NULL, '2021-02-05 12:20:14+07', false);
INSERT INTO public.journals VALUES (12837, 669, 'Issue', 12, NULL, '2021-02-05 12:20:14+07', false);
INSERT INTO public.journals VALUES (12838, 909, 'Issue', 12, NULL, '2021-02-05 12:24:58+07', false);
INSERT INTO public.journals VALUES (12839, 910, 'Issue', 12, NULL, '2021-02-05 12:24:58+07', false);
INSERT INTO public.journals VALUES (12840, 911, 'Issue', 12, NULL, '2021-02-05 12:24:58+07', false);
INSERT INTO public.journals VALUES (12841, 912, 'Issue', 12, NULL, '2021-02-05 12:24:58+07', false);
INSERT INTO public.journals VALUES (12842, 913, 'Issue', 12, NULL, '2021-02-05 12:24:58+07', false);
INSERT INTO public.journals VALUES (12843, 608, 'Issue', 12, NULL, '2021-02-05 12:25:25+07', false);
INSERT INTO public.journals VALUES (12844, 612, 'Issue', 12, NULL, '2021-02-05 12:26:14+07', false);
INSERT INTO public.journals VALUES (12845, 613, 'Issue', 12, NULL, '2021-02-05 12:26:14+07', false);
INSERT INTO public.journals VALUES (12846, 841, 'Issue', 12, NULL, '2021-02-05 12:26:29+07', false);
INSERT INTO public.journals VALUES (12847, 609, 'Issue', 12, NULL, '2021-02-05 12:29:45+07', false);
INSERT INTO public.journals VALUES (12848, 610, 'Issue', 12, NULL, '2021-02-05 12:29:45+07', false);
INSERT INTO public.journals VALUES (12849, 615, 'Issue', 12, NULL, '2021-02-05 12:29:46+07', false);
INSERT INTO public.journals VALUES (12850, 616, 'Issue', 12, NULL, '2021-02-05 12:29:46+07', false);
INSERT INTO public.journals VALUES (12851, 3707, 'Issue', 10, NULL, '2021-02-05 14:32:18+07', false);
INSERT INTO public.journals VALUES (12852, 3707, 'Issue', 10, NULL, '2021-02-05 14:32:26+07', false);
INSERT INTO public.journals VALUES (12853, 3665, 'Issue', 8, NULL, '2021-02-08 11:06:39+07', false);
INSERT INTO public.journals VALUES (12854, 3668, 'Issue', 8, NULL, '2021-02-08 11:06:40+07', false);
INSERT INTO public.journals VALUES (12855, 3668, 'Issue', 8, '', '2021-02-08 11:07:02+07', false);
INSERT INTO public.journals VALUES (12856, 3665, 'Issue', 8, NULL, '2021-02-08 11:07:15+07', false);
INSERT INTO public.journals VALUES (12857, 3668, 'Issue', 8, NULL, '2021-02-08 11:07:15+07', false);
INSERT INTO public.journals VALUES (12858, 3718, 'Issue', 8, NULL, '2021-02-08 11:09:36+07', false);
INSERT INTO public.journals VALUES (12859, 3718, 'Issue', 8, NULL, '2021-02-08 11:09:40+07', false);
INSERT INTO public.journals VALUES (12860, 3717, 'Issue', 15, NULL, '2021-02-08 11:10:44+07', false);
INSERT INTO public.journals VALUES (12861, 3719, 'Issue', 15, NULL, '2021-02-08 11:10:44+07', false);
INSERT INTO public.journals VALUES (12862, 3720, 'Issue', 15, NULL, '2021-02-08 11:10:44+07', false);
INSERT INTO public.journals VALUES (12863, 3720, 'Issue', 15, NULL, '2021-02-08 11:10:53+07', false);
INSERT INTO public.journals VALUES (12864, 3723, 'Issue', 37, NULL, '2021-02-17 13:18:58+07', false);
INSERT INTO public.journals VALUES (12866, 2811, 'Issue', 5, NULL, '2021-02-18 11:27:44+07', false);
INSERT INTO public.journals VALUES (12867, 2811, 'Issue', 5, NULL, '2021-02-18 11:27:51+07', false);
INSERT INTO public.journals VALUES (12868, 3334, 'Issue', 5, NULL, '2021-02-18 11:27:57+07', false);
INSERT INTO public.journals VALUES (12869, 3335, 'Issue', 5, NULL, '2021-02-18 11:27:57+07', false);
INSERT INTO public.journals VALUES (12870, 3637, 'Issue', 5, NULL, '2021-02-18 11:27:58+07', false);
INSERT INTO public.journals VALUES (12871, 3634, 'Issue', 5, '', '2021-02-18 11:28:25+07', false);
INSERT INTO public.journals VALUES (12872, 3677, 'Issue', 33, NULL, '2021-02-19 03:24:25+07', false);
INSERT INTO public.journals VALUES (12873, 3678, 'Issue', 33, NULL, '2021-02-19 03:24:37+07', false);
INSERT INTO public.journals VALUES (12874, 3725, 'Issue', 15, NULL, '2021-02-22 08:15:34+07', false);
INSERT INTO public.journals VALUES (12875, 3725, 'Issue', 15, NULL, '2021-02-22 08:17:05+07', false);
INSERT INTO public.journals VALUES (12876, 3725, 'Issue', 15, NULL, '2021-02-22 08:17:27+07', false);
INSERT INTO public.journals VALUES (12877, 3726, 'Issue', 15, NULL, '2021-02-22 08:17:27+07', false);
INSERT INTO public.journals VALUES (12878, 3727, 'Issue', 15, NULL, '2021-02-22 08:17:27+07', false);
INSERT INTO public.journals VALUES (12879, 3735, 'Issue', 15, NULL, '2021-02-23 15:01:32+07', false);
INSERT INTO public.journals VALUES (12880, 3735, 'Issue', 15, NULL, '2021-02-23 15:01:42+07', false);
INSERT INTO public.journals VALUES (12881, 3730, 'Issue', 5, '', '2021-02-25 03:25:47+07', false);
INSERT INTO public.journals VALUES (12882, 3736, 'Issue', 5, '', '2021-02-25 03:26:47+07', false);
INSERT INTO public.journals VALUES (12883, 3730, 'Issue', 5, NULL, '2021-02-25 03:27:08+07', false);
INSERT INTO public.journals VALUES (12884, 3730, 'Issue', 5, NULL, '2021-02-25 03:27:24+07', false);
INSERT INTO public.journals VALUES (12885, 3730, 'Issue', 5, NULL, '2021-02-25 03:27:42+07', false);
INSERT INTO public.journals VALUES (12886, 3731, 'Issue', 5, NULL, '2021-02-25 03:27:42+07', false);
INSERT INTO public.journals VALUES (12887, 3732, 'Issue', 5, NULL, '2021-02-25 03:27:42+07', false);
INSERT INTO public.journals VALUES (12888, 3733, 'Issue', 5, NULL, '2021-02-25 03:27:42+07', false);
INSERT INTO public.journals VALUES (12889, 3731, 'Issue', 5, '', '2021-02-25 03:27:59+07', false);
INSERT INTO public.journals VALUES (12890, 3732, 'Issue', 5, '', '2021-02-25 03:28:09+07', false);
INSERT INTO public.journals VALUES (12891, 3733, 'Issue', 5, '', '2021-02-25 03:28:32+07', false);
INSERT INTO public.journals VALUES (12892, 3731, 'Issue', 40, '', '2021-02-25 03:32:45+07', false);
INSERT INTO public.journals VALUES (12893, 3732, 'Issue', 40, '', '2021-02-25 03:33:21+07', false);
INSERT INTO public.journals VALUES (12894, 3733, 'Issue', 40, '', '2021-02-25 03:33:59+07', false);
INSERT INTO public.journals VALUES (12895, 3738, 'Issue', 40, '', '2021-02-25 03:36:29+07', false);
INSERT INTO public.journals VALUES (12896, 3740, 'Issue', 40, '', '2021-02-25 03:38:01+07', false);
INSERT INTO public.journals VALUES (12897, 3731, 'Issue', 40, '', '2021-02-25 03:38:21+07', false);
INSERT INTO public.journals VALUES (12898, 3732, 'Issue', 40, '', '2021-02-25 03:38:41+07', false);
INSERT INTO public.journals VALUES (12899, 3738, 'Issue', 40, '', '2021-02-25 03:38:58+07', false);
INSERT INTO public.journals VALUES (12900, 3739, 'Issue', 40, '', '2021-02-25 03:39:27+07', false);
INSERT INTO public.journals VALUES (12901, 3740, 'Issue', 40, '', '2021-02-25 03:39:54+07', false);
INSERT INTO public.journals VALUES (12902, 3740, 'Issue', 40, '', '2021-02-25 03:40:15+07', false);
INSERT INTO public.journals VALUES (12903, 3733, 'Issue', 40, '', '2021-02-25 03:40:33+07', false);
INSERT INTO public.journals VALUES (12904, 3730, 'Issue', 40, '', '2021-02-25 03:41:09+07', false);
INSERT INTO public.journals VALUES (12905, 3736, 'Issue', 40, '', '2021-02-25 03:41:09+07', false);
INSERT INTO public.journals VALUES (12906, 3731, 'Issue', 40, '', '2021-02-25 03:41:32+07', false);
INSERT INTO public.journals VALUES (12907, 3740, 'Issue', 40, '', '2021-02-25 03:41:33+07', false);
INSERT INTO public.journals VALUES (12908, 3732, 'Issue', 40, '', '2021-02-25 03:41:45+07', false);
INSERT INTO public.journals VALUES (12909, 3738, 'Issue', 40, '', '2021-02-25 03:41:45+07', false);
INSERT INTO public.journals VALUES (12910, 3739, 'Issue', 40, '', '2021-02-25 03:41:59+07', false);
INSERT INTO public.journals VALUES (12911, 3740, 'Issue', 40, '', '2021-02-25 03:42:58+07', false);
INSERT INTO public.journals VALUES (12912, 3741, 'Issue', 40, '', '2021-02-25 03:47:21+07', false);
INSERT INTO public.journals VALUES (12913, 3742, 'Issue', 40, '', '2021-02-25 03:49:51+07', false);
INSERT INTO public.journals VALUES (12914, 3743, 'Issue', 40, '', '2021-02-25 03:52:20+07', false);
INSERT INTO public.journals VALUES (12915, 3744, 'Issue', 40, '', '2021-02-25 03:54:26+07', false);
INSERT INTO public.journals VALUES (12916, 3745, 'Issue', 40, '', '2021-02-25 03:54:47+07', false);
INSERT INTO public.journals VALUES (12917, 3745, 'Issue', 40, '', '2021-02-25 03:55:13+07', false);
INSERT INTO public.journals VALUES (12918, 3741, 'Issue', 40, '', '2021-02-25 03:55:49+07', false);
INSERT INTO public.journals VALUES (12919, 3749, 'Issue', 33, '', '2021-02-25 04:23:56+07', false);
INSERT INTO public.journals VALUES (12920, 3750, 'Issue', 33, '', '2021-02-25 04:24:09+07', false);
INSERT INTO public.journals VALUES (12921, 3751, 'Issue', 33, '', '2021-02-25 04:24:28+07', false);
INSERT INTO public.journals VALUES (12922, 3748, 'Issue', 32, NULL, '2021-02-26 06:27:43+07', false);
INSERT INTO public.journals VALUES (12923, 3734, 'Issue', 15, NULL, '2021-02-27 07:03:43+07', false);
INSERT INTO public.journals VALUES (12924, 3757, 'Issue', 15, NULL, '2021-02-27 07:03:43+07', false);
INSERT INTO public.journals VALUES (12925, 3758, 'Issue', 15, NULL, '2021-02-27 07:03:43+07', false);
INSERT INTO public.journals VALUES (12926, 3759, 'Issue', 15, NULL, '2021-02-27 07:03:43+07', false);
INSERT INTO public.journals VALUES (12927, 3748, 'Issue', 32, NULL, '2021-02-27 15:10:58+07', false);
INSERT INTO public.journals VALUES (12928, 3651, 'Issue', 12, NULL, '2021-03-01 08:22:28+07', false);
INSERT INTO public.journals VALUES (12929, 3651, 'Issue', 12, NULL, '2021-03-01 08:22:41+07', false);
INSERT INTO public.journals VALUES (12930, 3651, 'Issue', 12, NULL, '2021-03-01 08:26:27+07', false);
INSERT INTO public.journals VALUES (12931, 3651, 'Issue', 12, NULL, '2021-03-01 08:26:45+07', false);
INSERT INTO public.journals VALUES (12932, 3761, 'Issue', 12, NULL, '2021-03-01 08:39:20+07', false);
INSERT INTO public.journals VALUES (12933, 3761, 'Issue', 12, '', '2021-03-01 08:39:51+07', false);
INSERT INTO public.journals VALUES (12934, 3761, 'Issue', 12, '', '2021-03-01 08:40:10+07', false);
INSERT INTO public.journals VALUES (12935, 3760, 'Issue', 12, '', '2021-03-01 08:41:43+07', false);
INSERT INTO public.journals VALUES (12936, 3760, 'Issue', 12, '', '2021-03-01 08:42:02+07', false);
INSERT INTO public.journals VALUES (12937, 3760, 'Issue', 12, '', '2021-03-01 08:44:08+07', false);
INSERT INTO public.journals VALUES (12938, 3760, 'Issue', 12, '', '2021-03-01 08:45:09+07', false);
INSERT INTO public.journals VALUES (12939, 3762, 'Issue', 12, '', '2021-03-01 08:46:32+07', false);
INSERT INTO public.journals VALUES (12940, 3763, 'Issue', 12, NULL, '2021-03-01 08:49:05+07', false);
INSERT INTO public.journals VALUES (12941, 3763, 'Issue', 12, NULL, '2021-03-01 08:49:11+07', false);
INSERT INTO public.journals VALUES (12942, 3763, 'Issue', 12, NULL, '2021-03-01 16:11:45+07', false);
INSERT INTO public.journals VALUES (12943, 3763, 'Issue', 12, NULL, '2021-03-01 16:11:51+07', false);
INSERT INTO public.journals VALUES (12944, 3736, 'Issue', 38, NULL, '2021-03-03 07:05:14+07', false);
INSERT INTO public.journals VALUES (12945, 3736, 'Issue', 38, NULL, '2021-03-03 07:05:25+07', false);
INSERT INTO public.journals VALUES (12946, 3738, 'Issue', 38, NULL, '2021-03-03 07:05:36+07', false);
INSERT INTO public.journals VALUES (12947, 3739, 'Issue', 38, NULL, '2021-03-03 07:05:36+07', false);
INSERT INTO public.journals VALUES (12948, 3740, 'Issue', 38, NULL, '2021-03-03 07:05:36+07', false);
INSERT INTO public.journals VALUES (12949, 3738, 'Issue', 38, NULL, '2021-03-03 07:05:48+07', false);
INSERT INTO public.journals VALUES (12950, 3739, 'Issue', 38, NULL, '2021-03-03 07:05:48+07', false);
INSERT INTO public.journals VALUES (12951, 3740, 'Issue', 38, NULL, '2021-03-03 07:05:48+07', false);
INSERT INTO public.journals VALUES (12952, 3741, 'Issue', 5, '', '2021-03-03 07:15:10+07', false);
INSERT INTO public.journals VALUES (12953, 3742, 'Issue', 5, '', '2021-03-03 07:15:10+07', false);
INSERT INTO public.journals VALUES (12954, 3743, 'Issue', 5, '', '2021-03-03 07:15:10+07', false);
INSERT INTO public.journals VALUES (12955, 3744, 'Issue', 5, '', '2021-03-03 07:15:10+07', false);
INSERT INTO public.journals VALUES (12956, 3702, 'Issue', 5, '', '2021-03-03 07:16:02+07', false);
INSERT INTO public.journals VALUES (12957, 3703, 'Issue', 5, '', '2021-03-03 07:16:02+07', false);
INSERT INTO public.journals VALUES (12961, 3731, 'Issue', 5, NULL, '2021-03-03 07:17:18+07', false);
INSERT INTO public.journals VALUES (12962, 3732, 'Issue', 5, NULL, '2021-03-03 07:17:18+07', false);
INSERT INTO public.journals VALUES (12963, 3733, 'Issue', 5, NULL, '2021-03-03 07:17:18+07', false);
INSERT INTO public.journals VALUES (12964, 3745, 'Issue', 5, NULL, '2021-03-03 07:17:18+07', false);
INSERT INTO public.journals VALUES (12966, 3730, 'Issue', 5, NULL, '2021-03-03 07:17:52+07', false);
INSERT INTO public.journals VALUES (12967, 3731, 'Issue', 5, NULL, '2021-03-03 07:17:52+07', false);
INSERT INTO public.journals VALUES (12968, 3732, 'Issue', 5, NULL, '2021-03-03 07:17:52+07', false);
INSERT INTO public.journals VALUES (12969, 3733, 'Issue', 5, NULL, '2021-03-03 07:17:52+07', false);
INSERT INTO public.journals VALUES (12970, 3745, 'Issue', 5, NULL, '2021-03-03 07:17:52+07', false);
INSERT INTO public.journals VALUES (12971, 3745, 'Issue', 5, NULL, '2021-03-03 07:18:22+07', false);
INSERT INTO public.journals VALUES (12972, 3746, 'Issue', 5, NULL, '2021-03-03 07:18:22+07', false);
INSERT INTO public.journals VALUES (12973, 3764, 'Issue', 40, '', '2021-03-03 07:40:04+07', false);
INSERT INTO public.journals VALUES (12974, 3765, 'Issue', 40, '', '2021-03-03 07:40:05+07', false);
INSERT INTO public.journals VALUES (12975, 3766, 'Issue', 40, '', '2021-03-03 07:40:05+07', false);
INSERT INTO public.journals VALUES (12976, 3767, 'Issue', 40, '', '2021-03-03 07:40:05+07', false);
INSERT INTO public.journals VALUES (12977, 3768, 'Issue', 40, '', '2021-03-03 07:40:05+07', false);
INSERT INTO public.journals VALUES (12978, 3769, 'Issue', 40, '', '2021-03-03 07:40:05+07', false);
INSERT INTO public.journals VALUES (12979, 3791, 'Issue', 40, NULL, '2021-03-03 07:56:34+07', false);
INSERT INTO public.journals VALUES (12980, 3795, 'Issue', 40, '', '2021-03-03 08:00:34+07', false);
INSERT INTO public.journals VALUES (12981, 3796, 'Issue', 40, '', '2021-03-03 08:00:47+07', false);
INSERT INTO public.journals VALUES (12982, 3797, 'Issue', 40, NULL, '2021-03-03 08:01:12+07', false);
INSERT INTO public.journals VALUES (12983, 3799, 'Issue', 40, '', '2021-03-03 08:01:22+07', false);
INSERT INTO public.journals VALUES (12984, 3800, 'Issue', 40, '', '2021-03-03 08:01:38+07', false);
INSERT INTO public.journals VALUES (12985, 3801, 'Issue', 40, '', '2021-03-03 08:01:56+07', false);
INSERT INTO public.journals VALUES (12986, 3746, 'Issue', 40, NULL, '2021-03-04 08:33:35+07', false);
INSERT INTO public.journals VALUES (12987, 3752, 'Issue', 33, NULL, '2021-03-05 06:59:49+07', false);
INSERT INTO public.journals VALUES (12988, 3747, 'Issue', 33, NULL, '2021-03-05 07:00:04+07', false);
INSERT INTO public.journals VALUES (12989, 3749, 'Issue', 33, NULL, '2021-03-05 07:00:13+07', false);
INSERT INTO public.journals VALUES (12990, 3750, 'Issue', 33, NULL, '2021-03-05 07:00:18+07', false);
INSERT INTO public.journals VALUES (12991, 3753, 'Issue', 33, NULL, '2021-03-05 07:00:23+07', false);
INSERT INTO public.journals VALUES (12992, 3754, 'Issue', 33, NULL, '2021-03-05 07:00:29+07', false);
INSERT INTO public.journals VALUES (12993, 3756, 'Issue', 33, NULL, '2021-03-05 07:00:33+07', false);
INSERT INTO public.journals VALUES (12994, 3755, 'Issue', 33, NULL, '2021-03-05 07:00:38+07', false);
INSERT INTO public.journals VALUES (12995, 3751, 'Issue', 33, NULL, '2021-03-05 07:01:01+07', false);
INSERT INTO public.journals VALUES (12996, 3770, 'Issue', 40, NULL, '2021-03-06 02:11:00+07', false);
INSERT INTO public.journals VALUES (12997, 3772, 'Issue', 40, NULL, '2021-03-06 02:11:00+07', false);
INSERT INTO public.journals VALUES (12998, 3773, 'Issue', 40, NULL, '2021-03-06 02:12:22+07', false);
INSERT INTO public.journals VALUES (12999, 3775, 'Issue', 40, NULL, '2021-03-06 02:12:22+07', false);
INSERT INTO public.journals VALUES (13000, 3776, 'Issue', 40, NULL, '2021-03-06 02:12:55+07', false);
INSERT INTO public.journals VALUES (13001, 3778, 'Issue', 40, NULL, '2021-03-06 02:12:55+07', false);
INSERT INTO public.journals VALUES (13002, 3780, 'Issue', 40, NULL, '2021-03-06 02:12:56+07', false);
INSERT INTO public.journals VALUES (13003, 3782, 'Issue', 40, NULL, '2021-03-06 02:12:56+07', false);
INSERT INTO public.journals VALUES (13004, 3784, 'Issue', 40, NULL, '2021-03-06 02:12:56+07', false);
INSERT INTO public.journals VALUES (13005, 3786, 'Issue', 40, NULL, '2021-03-06 02:12:56+07', false);
INSERT INTO public.journals VALUES (13006, 3788, 'Issue', 40, NULL, '2021-03-06 02:12:56+07', false);
INSERT INTO public.journals VALUES (13007, 3790, 'Issue', 40, NULL, '2021-03-06 02:12:56+07', false);
INSERT INTO public.journals VALUES (13008, 3793, 'Issue', 40, NULL, '2021-03-06 02:12:56+07', false);
INSERT INTO public.journals VALUES (13009, 3777, 'Issue', 40, NULL, '2021-03-06 02:13:18+07', false);
INSERT INTO public.journals VALUES (13010, 3779, 'Issue', 40, NULL, '2021-03-06 02:13:18+07', false);
INSERT INTO public.journals VALUES (13011, 3781, 'Issue', 40, NULL, '2021-03-06 02:13:18+07', false);
INSERT INTO public.journals VALUES (13012, 3783, 'Issue', 40, NULL, '2021-03-06 02:13:18+07', false);
INSERT INTO public.journals VALUES (13013, 3785, 'Issue', 40, NULL, '2021-03-06 02:13:19+07', false);
INSERT INTO public.journals VALUES (13014, 3787, 'Issue', 40, NULL, '2021-03-06 02:13:19+07', false);
INSERT INTO public.journals VALUES (13015, 3789, 'Issue', 40, NULL, '2021-03-06 02:13:19+07', false);
INSERT INTO public.journals VALUES (13016, 3792, 'Issue', 40, NULL, '2021-03-06 02:13:19+07', false);
INSERT INTO public.journals VALUES (13017, 3794, 'Issue', 40, NULL, '2021-03-06 02:13:19+07', false);
INSERT INTO public.journals VALUES (13018, 3795, 'Issue', 40, NULL, '2021-03-06 02:13:37+07', false);
INSERT INTO public.journals VALUES (13019, 3799, 'Issue', 40, NULL, '2021-03-06 02:13:37+07', false);
INSERT INTO public.journals VALUES (13020, 3802, 'Issue', 40, NULL, '2021-03-06 02:13:37+07', false);
INSERT INTO public.journals VALUES (13021, 3796, 'Issue', 40, NULL, '2021-03-06 02:13:48+07', false);
INSERT INTO public.journals VALUES (13022, 3800, 'Issue', 40, NULL, '2021-03-06 02:13:48+07', false);
INSERT INTO public.journals VALUES (13023, 3801, 'Issue', 40, NULL, '2021-03-06 02:13:48+07', false);
INSERT INTO public.journals VALUES (13024, 3771, 'Issue', 40, NULL, '2021-03-06 02:14:00+07', false);
INSERT INTO public.journals VALUES (13025, 3774, 'Issue', 40, NULL, '2021-03-06 02:14:10+07', false);
INSERT INTO public.journals VALUES (13026, 3795, 'Issue', 40, NULL, '2021-03-06 02:17:34+07', false);
INSERT INTO public.journals VALUES (13027, 3799, 'Issue', 40, NULL, '2021-03-06 02:17:35+07', false);
INSERT INTO public.journals VALUES (13028, 3802, 'Issue', 40, NULL, '2021-03-06 02:17:35+07', false);
INSERT INTO public.journals VALUES (13029, 3770, 'Issue', 40, NULL, '2021-03-06 10:24:43+07', false);
INSERT INTO public.journals VALUES (13030, 3772, 'Issue', 40, NULL, '2021-03-06 10:24:44+07', false);
INSERT INTO public.journals VALUES (13031, 3774, 'Issue', 40, NULL, '2021-03-06 10:24:44+07', false);
INSERT INTO public.journals VALUES (13032, 3770, 'Issue', 40, NULL, '2021-03-06 10:25:44+07', false);
INSERT INTO public.journals VALUES (13033, 3772, 'Issue', 40, NULL, '2021-03-06 10:25:44+07', false);
INSERT INTO public.journals VALUES (13034, 3774, 'Issue', 40, NULL, '2021-03-06 10:25:44+07', false);
INSERT INTO public.journals VALUES (13035, 3770, 'Issue', 40, '', '2021-03-06 10:26:21+07', false);
INSERT INTO public.journals VALUES (13036, 3772, 'Issue', 40, '', '2021-03-06 10:26:22+07', false);
INSERT INTO public.journals VALUES (13037, 3774, 'Issue', 40, '', '2021-03-06 10:26:22+07', false);
INSERT INTO public.journals VALUES (13038, 3730, 'Issue', 5, NULL, '2021-03-06 10:42:13+07', false);
INSERT INTO public.journals VALUES (13039, 3731, 'Issue', 5, NULL, '2021-03-06 10:42:13+07', false);
INSERT INTO public.journals VALUES (13040, 3732, 'Issue', 5, NULL, '2021-03-06 10:42:13+07', false);
INSERT INTO public.journals VALUES (13041, 3733, 'Issue', 5, NULL, '2021-03-06 10:42:13+07', false);
INSERT INTO public.journals VALUES (13042, 3736, 'Issue', 5, NULL, '2021-03-06 10:42:14+07', false);
INSERT INTO public.journals VALUES (13043, 3738, 'Issue', 5, NULL, '2021-03-06 10:42:14+07', false);
INSERT INTO public.journals VALUES (13044, 3739, 'Issue', 5, NULL, '2021-03-06 10:42:14+07', false);
INSERT INTO public.journals VALUES (13045, 3740, 'Issue', 5, NULL, '2021-03-06 10:42:14+07', false);
INSERT INTO public.journals VALUES (13046, 3746, 'Issue', 5, NULL, '2021-03-06 10:42:39+07', false);
INSERT INTO public.journals VALUES (13047, 3745, 'Issue', 5, NULL, '2021-03-06 10:42:52+07', false);
INSERT INTO public.journals VALUES (13048, 3746, 'Issue', 5, NULL, '2021-03-06 10:42:52+07', false);
INSERT INTO public.journals VALUES (13049, 3764, 'Issue', 5, NULL, '2021-03-06 10:42:52+07', false);
INSERT INTO public.journals VALUES (13050, 3765, 'Issue', 5, NULL, '2021-03-06 10:42:52+07', false);
INSERT INTO public.journals VALUES (13051, 3766, 'Issue', 5, NULL, '2021-03-06 10:42:53+07', false);
INSERT INTO public.journals VALUES (13052, 3767, 'Issue', 5, NULL, '2021-03-06 10:42:53+07', false);
INSERT INTO public.journals VALUES (13053, 3768, 'Issue', 5, NULL, '2021-03-06 10:42:53+07', false);
INSERT INTO public.journals VALUES (13054, 3769, 'Issue', 5, NULL, '2021-03-06 10:42:53+07', false);
INSERT INTO public.journals VALUES (13055, 3770, 'Issue', 5, NULL, '2021-03-06 10:42:53+07', false);
INSERT INTO public.journals VALUES (13056, 3772, 'Issue', 5, NULL, '2021-03-06 10:42:53+07', false);
INSERT INTO public.journals VALUES (13057, 3774, 'Issue', 5, NULL, '2021-03-06 10:42:53+07', false);
INSERT INTO public.journals VALUES (13058, 3803, 'Issue', 15, NULL, '2021-03-06 15:44:24+07', false);
INSERT INTO public.journals VALUES (13059, 3805, 'Issue', 15, NULL, '2021-03-06 15:44:24+07', false);
INSERT INTO public.journals VALUES (13060, 3806, 'Issue', 15, NULL, '2021-03-06 15:44:25+07', false);
INSERT INTO public.journals VALUES (13061, 3807, 'Issue', 15, NULL, '2021-03-06 15:44:25+07', false);
INSERT INTO public.journals VALUES (13062, 3808, 'Issue', 15, NULL, '2021-03-06 15:44:25+07', false);
INSERT INTO public.journals VALUES (13063, 3804, 'Issue', 15, NULL, '2021-03-06 15:44:25+07', false);
INSERT INTO public.journals VALUES (13064, 3771, 'Issue', 5, NULL, '2021-03-08 10:07:07+07', false);
INSERT INTO public.journals VALUES (13065, 3773, 'Issue', 5, NULL, '2021-03-08 10:07:08+07', false);
INSERT INTO public.journals VALUES (13066, 3775, 'Issue', 5, NULL, '2021-03-08 10:07:08+07', false);
INSERT INTO public.journals VALUES (13067, 3776, 'Issue', 5, NULL, '2021-03-08 10:07:08+07', false);
INSERT INTO public.journals VALUES (13068, 3777, 'Issue', 5, NULL, '2021-03-08 10:07:08+07', false);
INSERT INTO public.journals VALUES (13069, 3778, 'Issue', 5, NULL, '2021-03-08 10:07:08+07', false);
INSERT INTO public.journals VALUES (13070, 3779, 'Issue', 5, NULL, '2021-03-08 10:07:09+07', false);
INSERT INTO public.journals VALUES (13071, 3780, 'Issue', 5, NULL, '2021-03-08 10:07:09+07', false);
INSERT INTO public.journals VALUES (13072, 3781, 'Issue', 5, NULL, '2021-03-08 10:07:09+07', false);
INSERT INTO public.journals VALUES (13073, 3782, 'Issue', 5, NULL, '2021-03-08 10:07:09+07', false);
INSERT INTO public.journals VALUES (13074, 3783, 'Issue', 5, NULL, '2021-03-08 10:07:09+07', false);
INSERT INTO public.journals VALUES (13075, 3784, 'Issue', 5, NULL, '2021-03-08 10:07:09+07', false);
INSERT INTO public.journals VALUES (13076, 3785, 'Issue', 5, NULL, '2021-03-08 10:07:09+07', false);
INSERT INTO public.journals VALUES (13077, 3786, 'Issue', 5, NULL, '2021-03-08 10:07:09+07', false);
INSERT INTO public.journals VALUES (13078, 3787, 'Issue', 5, NULL, '2021-03-08 10:07:09+07', false);
INSERT INTO public.journals VALUES (13079, 3788, 'Issue', 5, NULL, '2021-03-08 10:07:10+07', false);
INSERT INTO public.journals VALUES (13080, 3789, 'Issue', 5, NULL, '2021-03-08 10:07:10+07', false);
INSERT INTO public.journals VALUES (13081, 3790, 'Issue', 5, NULL, '2021-03-08 10:07:10+07', false);
INSERT INTO public.journals VALUES (13082, 3792, 'Issue', 5, NULL, '2021-03-08 10:07:10+07', false);
INSERT INTO public.journals VALUES (13083, 3793, 'Issue', 5, NULL, '2021-03-08 10:07:10+07', false);
INSERT INTO public.journals VALUES (13084, 3794, 'Issue', 5, NULL, '2021-03-08 10:07:10+07', false);
INSERT INTO public.journals VALUES (13085, 3795, 'Issue', 5, NULL, '2021-03-08 10:07:10+07', false);
INSERT INTO public.journals VALUES (13086, 3796, 'Issue', 5, NULL, '2021-03-08 10:07:10+07', false);
INSERT INTO public.journals VALUES (13087, 3799, 'Issue', 5, NULL, '2021-03-08 10:07:11+07', false);
INSERT INTO public.journals VALUES (13088, 3800, 'Issue', 5, NULL, '2021-03-08 10:07:11+07', false);
INSERT INTO public.journals VALUES (13089, 3801, 'Issue', 5, NULL, '2021-03-08 10:07:11+07', false);
INSERT INTO public.journals VALUES (13090, 3802, 'Issue', 5, NULL, '2021-03-08 10:07:11+07', false);
INSERT INTO public.journals VALUES (13091, 3771, 'Issue', 5, NULL, '2021-03-08 03:58:17+07', false);
INSERT INTO public.journals VALUES (13092, 3773, 'Issue', 5, NULL, '2021-03-08 03:58:17+07', false);
INSERT INTO public.journals VALUES (13093, 3775, 'Issue', 5, NULL, '2021-03-08 03:58:18+07', false);
INSERT INTO public.journals VALUES (13094, 3776, 'Issue', 5, NULL, '2021-03-08 03:58:18+07', false);
INSERT INTO public.journals VALUES (13095, 3777, 'Issue', 5, NULL, '2021-03-08 03:58:18+07', false);
INSERT INTO public.journals VALUES (13096, 3778, 'Issue', 5, NULL, '2021-03-08 03:58:18+07', false);
INSERT INTO public.journals VALUES (13097, 3779, 'Issue', 5, NULL, '2021-03-08 03:58:18+07', false);
INSERT INTO public.journals VALUES (13098, 3780, 'Issue', 5, NULL, '2021-03-08 03:58:18+07', false);
INSERT INTO public.journals VALUES (13099, 3781, 'Issue', 5, NULL, '2021-03-08 03:58:18+07', false);
INSERT INTO public.journals VALUES (13100, 3782, 'Issue', 5, NULL, '2021-03-08 03:58:19+07', false);
INSERT INTO public.journals VALUES (13101, 3783, 'Issue', 5, NULL, '2021-03-08 03:58:19+07', false);
INSERT INTO public.journals VALUES (13102, 3784, 'Issue', 5, NULL, '2021-03-08 03:58:19+07', false);
INSERT INTO public.journals VALUES (13103, 3785, 'Issue', 5, NULL, '2021-03-08 03:58:19+07', false);
INSERT INTO public.journals VALUES (13104, 3786, 'Issue', 5, NULL, '2021-03-08 03:58:19+07', false);
INSERT INTO public.journals VALUES (13105, 3787, 'Issue', 5, NULL, '2021-03-08 03:58:19+07', false);
INSERT INTO public.journals VALUES (13106, 3788, 'Issue', 5, NULL, '2021-03-08 03:58:19+07', false);
INSERT INTO public.journals VALUES (13107, 3789, 'Issue', 5, NULL, '2021-03-08 03:58:20+07', false);
INSERT INTO public.journals VALUES (13108, 3790, 'Issue', 5, NULL, '2021-03-08 03:58:20+07', false);
INSERT INTO public.journals VALUES (13109, 3792, 'Issue', 5, NULL, '2021-03-08 03:58:20+07', false);
INSERT INTO public.journals VALUES (13110, 3793, 'Issue', 5, NULL, '2021-03-08 03:58:20+07', false);
INSERT INTO public.journals VALUES (13111, 3794, 'Issue', 5, NULL, '2021-03-08 03:58:20+07', false);
INSERT INTO public.journals VALUES (13112, 3795, 'Issue', 5, NULL, '2021-03-08 03:58:20+07', false);
INSERT INTO public.journals VALUES (13113, 3796, 'Issue', 5, NULL, '2021-03-08 03:58:20+07', false);
INSERT INTO public.journals VALUES (13114, 3799, 'Issue', 5, NULL, '2021-03-08 03:58:20+07', false);
INSERT INTO public.journals VALUES (13115, 3800, 'Issue', 5, NULL, '2021-03-08 03:58:21+07', false);
INSERT INTO public.journals VALUES (13116, 3801, 'Issue', 5, NULL, '2021-03-08 03:58:21+07', false);
INSERT INTO public.journals VALUES (13117, 3802, 'Issue', 5, NULL, '2021-03-08 03:58:21+07', false);
INSERT INTO public.journals VALUES (13118, 3771, 'Issue', 5, '', '2021-03-08 14:39:31+07', false);
INSERT INTO public.journals VALUES (13119, 3773, 'Issue', 5, '', '2021-03-08 14:39:31+07', false);
INSERT INTO public.journals VALUES (13120, 3775, 'Issue', 5, '', '2021-03-08 14:39:31+07', false);
INSERT INTO public.journals VALUES (13121, 3776, 'Issue', 5, '', '2021-03-08 14:40:33+07', false);
INSERT INTO public.journals VALUES (13122, 3777, 'Issue', 5, '', '2021-03-08 14:40:33+07', false);
INSERT INTO public.journals VALUES (13123, 3778, 'Issue', 5, '', '2021-03-08 14:40:33+07', false);
INSERT INTO public.journals VALUES (13124, 3779, 'Issue', 5, '', '2021-03-08 14:40:33+07', false);
INSERT INTO public.journals VALUES (13125, 3780, 'Issue', 5, '', '2021-03-08 14:40:33+07', false);
INSERT INTO public.journals VALUES (13126, 3781, 'Issue', 5, '', '2021-03-08 14:40:33+07', false);
INSERT INTO public.journals VALUES (13127, 3782, 'Issue', 5, '', '2021-03-08 14:41:09+07', false);
INSERT INTO public.journals VALUES (13128, 3783, 'Issue', 5, '', '2021-03-08 14:41:09+07', false);
INSERT INTO public.journals VALUES (13129, 3784, 'Issue', 5, '', '2021-03-08 14:41:09+07', false);
INSERT INTO public.journals VALUES (13130, 3785, 'Issue', 5, '', '2021-03-08 14:41:09+07', false);
INSERT INTO public.journals VALUES (13131, 3786, 'Issue', 5, '', '2021-03-08 14:41:34+07', false);
INSERT INTO public.journals VALUES (13132, 3787, 'Issue', 5, '', '2021-03-08 14:41:35+07', false);
INSERT INTO public.journals VALUES (13133, 3788, 'Issue', 5, '', '2021-03-08 14:41:35+07', false);
INSERT INTO public.journals VALUES (13134, 3789, 'Issue', 5, '', '2021-03-08 14:41:35+07', false);
INSERT INTO public.journals VALUES (13135, 3790, 'Issue', 5, '', '2021-03-08 14:41:35+07', false);
INSERT INTO public.journals VALUES (13136, 3792, 'Issue', 5, '', '2021-03-08 14:41:35+07', false);
INSERT INTO public.journals VALUES (13137, 3793, 'Issue', 5, '', '2021-03-08 14:41:35+07', false);
INSERT INTO public.journals VALUES (13138, 3794, 'Issue', 5, '', '2021-03-08 14:41:35+07', false);
INSERT INTO public.journals VALUES (13139, 3795, 'Issue', 5, '', '2021-03-08 14:42:08+07', false);
INSERT INTO public.journals VALUES (13140, 3796, 'Issue', 5, '', '2021-03-08 14:42:08+07', false);
INSERT INTO public.journals VALUES (13141, 3799, 'Issue', 5, '', '2021-03-08 14:42:08+07', false);
INSERT INTO public.journals VALUES (13142, 3800, 'Issue', 5, '', '2021-03-08 14:42:08+07', false);
INSERT INTO public.journals VALUES (13143, 3801, 'Issue', 5, '', '2021-03-08 14:42:08+07', false);
INSERT INTO public.journals VALUES (13144, 3802, 'Issue', 5, '', '2021-03-08 14:42:08+07', false);
INSERT INTO public.journals VALUES (13145, 3812, 'Issue', 33, '', '2021-03-09 08:11:13+07', false);
INSERT INTO public.journals VALUES (13146, 3795, 'Issue', 40, NULL, '2021-03-09 08:53:55+07', false);
INSERT INTO public.journals VALUES (13147, 3799, 'Issue', 40, NULL, '2021-03-09 08:53:55+07', false);
INSERT INTO public.journals VALUES (13148, 3802, 'Issue', 40, NULL, '2021-03-09 08:53:55+07', false);
INSERT INTO public.journals VALUES (13149, 3795, 'Issue', 40, '', '2021-03-09 08:56:03+07', false);
INSERT INTO public.journals VALUES (13150, 3799, 'Issue', 40, '', '2021-03-09 08:56:03+07', false);
INSERT INTO public.journals VALUES (13151, 3802, 'Issue', 40, '', '2021-03-09 08:56:03+07', false);
INSERT INTO public.journals VALUES (13152, 3778, 'Issue', 39, NULL, '2021-03-09 08:56:21+07', false);
INSERT INTO public.journals VALUES (13153, 3778, 'Issue', 39, NULL, '2021-03-09 08:56:27+07', false);
INSERT INTO public.journals VALUES (13154, 3703, 'Issue', 39, NULL, '2021-03-09 08:56:40+07', false);
INSERT INTO public.journals VALUES (13155, 3703, 'Issue', 39, NULL, '2021-03-09 08:56:45+07', false);
INSERT INTO public.journals VALUES (13156, 3723, 'Issue', 15, '', '2021-03-09 09:04:11+07', false);
INSERT INTO public.journals VALUES (13157, 3689, 'Issue', 15, NULL, '2021-03-09 09:06:13+07', false);
INSERT INTO public.journals VALUES (13158, 3817, 'Issue', 12, NULL, '2021-03-09 09:23:02+07', false);
INSERT INTO public.journals VALUES (13159, 3817, 'Issue', 12, NULL, '2021-03-09 09:23:09+07', false);
INSERT INTO public.journals VALUES (13160, 3780, 'Issue', 39, NULL, '2021-03-09 03:10:21+07', false);
INSERT INTO public.journals VALUES (13161, 3780, 'Issue', 39, NULL, '2021-03-09 03:10:29+07', false);
INSERT INTO public.journals VALUES (13162, 3816, 'Issue', 15, '', '2021-03-09 21:10:49+07', false);
INSERT INTO public.journals VALUES (13163, 3816, 'Issue', 15, NULL, '2021-03-09 21:11:34+07', false);
INSERT INTO public.journals VALUES (13164, 3819, 'Issue', 37, NULL, '2021-03-11 02:56:13+07', false);
INSERT INTO public.journals VALUES (13165, 3824, 'Issue', 40, NULL, '2021-03-12 01:21:07+07', false);
INSERT INTO public.journals VALUES (13166, 3824, 'Issue', 40, NULL, '2021-03-12 01:22:00+07', false);
INSERT INTO public.journals VALUES (13167, 3775, 'Issue', 38, NULL, '2021-03-12 01:24:51+07', false);
INSERT INTO public.journals VALUES (13168, 3840, 'Issue', 40, '', '2021-03-12 01:32:07+07', false);
INSERT INTO public.journals VALUES (13169, 3796, 'Issue', 38, NULL, '2021-03-12 01:39:33+07', false);
INSERT INTO public.journals VALUES (13170, 3800, 'Issue', 38, NULL, '2021-03-12 01:39:33+07', false);
INSERT INTO public.journals VALUES (13171, 3801, 'Issue', 38, NULL, '2021-03-12 01:39:33+07', false);
INSERT INTO public.journals VALUES (13172, 3777, 'Issue', 38, NULL, '2021-03-12 01:40:02+07', false);
INSERT INTO public.journals VALUES (13173, 3779, 'Issue', 38, NULL, '2021-03-12 01:40:02+07', false);
INSERT INTO public.journals VALUES (13174, 3781, 'Issue', 38, NULL, '2021-03-12 01:40:02+07', false);
INSERT INTO public.journals VALUES (13175, 3783, 'Issue', 38, NULL, '2021-03-12 01:40:02+07', false);
INSERT INTO public.journals VALUES (13176, 3785, 'Issue', 38, NULL, '2021-03-12 01:40:02+07', false);
INSERT INTO public.journals VALUES (13177, 3787, 'Issue', 38, NULL, '2021-03-12 01:40:03+07', false);
INSERT INTO public.journals VALUES (13178, 3789, 'Issue', 38, NULL, '2021-03-12 01:40:03+07', false);
INSERT INTO public.journals VALUES (13179, 3792, 'Issue', 38, NULL, '2021-03-12 01:40:03+07', false);
INSERT INTO public.journals VALUES (13180, 3794, 'Issue', 38, NULL, '2021-03-12 01:40:03+07', false);
INSERT INTO public.journals VALUES (13181, 3777, 'Issue', 38, NULL, '2021-03-12 01:40:15+07', false);
INSERT INTO public.journals VALUES (13182, 3779, 'Issue', 38, NULL, '2021-03-12 01:40:16+07', false);
INSERT INTO public.journals VALUES (13183, 3781, 'Issue', 38, NULL, '2021-03-12 01:40:16+07', false);
INSERT INTO public.journals VALUES (13184, 3783, 'Issue', 38, NULL, '2021-03-12 01:40:16+07', false);
INSERT INTO public.journals VALUES (13185, 3785, 'Issue', 38, NULL, '2021-03-12 01:40:16+07', false);
INSERT INTO public.journals VALUES (13186, 3787, 'Issue', 38, NULL, '2021-03-12 01:40:16+07', false);
INSERT INTO public.journals VALUES (13187, 3789, 'Issue', 38, NULL, '2021-03-12 01:40:17+07', false);
INSERT INTO public.journals VALUES (13188, 3792, 'Issue', 38, NULL, '2021-03-12 01:40:17+07', false);
INSERT INTO public.journals VALUES (13189, 3794, 'Issue', 38, NULL, '2021-03-12 01:40:17+07', false);
INSERT INTO public.journals VALUES (13190, 3796, 'Issue', 38, NULL, '2021-03-12 01:40:23+07', false);
INSERT INTO public.journals VALUES (13191, 3800, 'Issue', 38, NULL, '2021-03-12 01:40:23+07', false);
INSERT INTO public.journals VALUES (13192, 3801, 'Issue', 38, NULL, '2021-03-12 01:40:24+07', false);
INSERT INTO public.journals VALUES (13193, 3771, 'Issue', 38, NULL, '2021-03-12 01:40:35+07', false);
INSERT INTO public.journals VALUES (13194, 3773, 'Issue', 38, NULL, '2021-03-12 01:40:35+07', false);
INSERT INTO public.journals VALUES (13195, 3771, 'Issue', 38, NULL, '2021-03-12 01:40:42+07', false);
INSERT INTO public.journals VALUES (13196, 3773, 'Issue', 38, NULL, '2021-03-12 01:40:42+07', false);
INSERT INTO public.journals VALUES (13197, 3775, 'Issue', 38, NULL, '2021-03-12 01:40:42+07', false);
INSERT INTO public.journals VALUES (13198, 3782, 'Issue', 39, NULL, '2021-03-12 01:44:38+07', false);
INSERT INTO public.journals VALUES (13199, 3784, 'Issue', 39, NULL, '2021-03-12 01:44:38+07', false);
INSERT INTO public.journals VALUES (13200, 3786, 'Issue', 39, NULL, '2021-03-12 01:44:38+07', false);
INSERT INTO public.journals VALUES (13201, 3788, 'Issue', 39, NULL, '2021-03-12 01:44:38+07', false);
INSERT INTO public.journals VALUES (13202, 3790, 'Issue', 39, NULL, '2021-03-12 01:44:38+07', false);
INSERT INTO public.journals VALUES (13203, 3793, 'Issue', 39, NULL, '2021-03-12 01:44:39+07', false);
INSERT INTO public.journals VALUES (13204, 3782, 'Issue', 39, NULL, '2021-03-12 01:44:51+07', false);
INSERT INTO public.journals VALUES (13205, 3784, 'Issue', 39, NULL, '2021-03-12 01:44:51+07', false);
INSERT INTO public.journals VALUES (13206, 3786, 'Issue', 39, NULL, '2021-03-12 01:44:51+07', false);
INSERT INTO public.journals VALUES (13207, 3788, 'Issue', 39, NULL, '2021-03-12 01:44:51+07', false);
INSERT INTO public.journals VALUES (13208, 3790, 'Issue', 39, NULL, '2021-03-12 01:44:52+07', false);
INSERT INTO public.journals VALUES (13209, 3793, 'Issue', 39, NULL, '2021-03-12 01:44:52+07', false);
INSERT INTO public.journals VALUES (13210, 3741, 'Issue', 39, '', '2021-03-12 03:13:41+07', false);
INSERT INTO public.journals VALUES (13211, 3742, 'Issue', 39, '', '2021-03-12 03:13:41+07', false);
INSERT INTO public.journals VALUES (13212, 3743, 'Issue', 39, '', '2021-03-12 03:13:42+07', false);
INSERT INTO public.journals VALUES (13213, 3744, 'Issue', 39, '', '2021-03-12 03:13:42+07', false);
INSERT INTO public.journals VALUES (13214, 3741, 'Issue', 39, NULL, '2021-03-12 03:14:30+07', false);
INSERT INTO public.journals VALUES (13215, 3742, 'Issue', 39, NULL, '2021-03-12 03:14:30+07', false);
INSERT INTO public.journals VALUES (13216, 3743, 'Issue', 39, NULL, '2021-03-12 03:14:30+07', false);
INSERT INTO public.journals VALUES (13217, 3744, 'Issue', 39, NULL, '2021-03-12 03:14:31+07', false);
INSERT INTO public.journals VALUES (13218, 3798, 'Issue', 39, '', '2021-03-12 03:14:52+07', false);
INSERT INTO public.journals VALUES (13219, 3868, 'Issue', 15, NULL, '2021-03-15 01:15:26+07', false);
INSERT INTO public.journals VALUES (13220, 3868, 'Issue', 15, NULL, '2021-03-15 01:15:36+07', false);
INSERT INTO public.journals VALUES (13221, 3869, 'Issue', 8, NULL, '2021-03-15 01:23:15+07', false);
INSERT INTO public.journals VALUES (13222, 3870, 'Issue', 8, NULL, '2021-03-15 01:24:41+07', false);
INSERT INTO public.journals VALUES (13223, 3870, 'Issue', 8, NULL, '2021-03-15 01:24:46+07', false);
INSERT INTO public.journals VALUES (13224, 3872, 'Issue', 12, NULL, '2021-03-15 01:28:29+07', false);
INSERT INTO public.journals VALUES (13225, 3820, 'Issue', 37, NULL, '2021-03-15 01:38:16+07', false);
INSERT INTO public.journals VALUES (13226, 3820, 'Issue', 37, NULL, '2021-03-15 01:38:35+07', false);
INSERT INTO public.journals VALUES (13227, 3873, 'Issue', 40, '', '2021-03-15 02:16:13+07', false);
INSERT INTO public.journals VALUES (13228, 3776, 'Issue', 5, '', '2021-03-15 02:39:53+07', false);
INSERT INTO public.journals VALUES (13229, 3798, 'Issue', 5, '', '2021-03-15 02:39:53+07', false);
INSERT INTO public.journals VALUES (13230, 3862, 'Issue', 5, '', '2021-03-15 02:39:53+07', false);
INSERT INTO public.journals VALUES (13231, 3863, 'Issue', 5, '', '2021-03-15 02:39:54+07', false);
INSERT INTO public.journals VALUES (13232, 3864, 'Issue', 5, '', '2021-03-15 02:39:54+07', false);
INSERT INTO public.journals VALUES (13233, 3865, 'Issue', 5, '', '2021-03-15 02:39:54+07', false);
INSERT INTO public.journals VALUES (13234, 3866, 'Issue', 5, '', '2021-03-15 02:39:54+07', false);
INSERT INTO public.journals VALUES (13235, 3867, 'Issue', 5, '', '2021-03-15 02:39:54+07', false);
INSERT INTO public.journals VALUES (13236, 3798, 'Issue', 5, '', '2021-03-15 02:40:26+07', false);
INSERT INTO public.journals VALUES (13237, 3771, 'Issue', 5, NULL, '2021-03-15 02:40:38+07', false);
INSERT INTO public.journals VALUES (13238, 3773, 'Issue', 5, NULL, '2021-03-15 02:40:38+07', false);
INSERT INTO public.journals VALUES (13239, 3775, 'Issue', 5, NULL, '2021-03-15 02:40:38+07', false);
INSERT INTO public.journals VALUES (13240, 3777, 'Issue', 5, NULL, '2021-03-15 02:40:38+07', false);
INSERT INTO public.journals VALUES (13241, 3778, 'Issue', 5, NULL, '2021-03-15 02:40:38+07', false);
INSERT INTO public.journals VALUES (13242, 3779, 'Issue', 5, NULL, '2021-03-15 02:40:38+07', false);
INSERT INTO public.journals VALUES (13243, 3780, 'Issue', 5, NULL, '2021-03-15 02:40:39+07', false);
INSERT INTO public.journals VALUES (13244, 3781, 'Issue', 5, NULL, '2021-03-15 02:40:39+07', false);
INSERT INTO public.journals VALUES (13245, 3782, 'Issue', 5, NULL, '2021-03-15 02:40:39+07', false);
INSERT INTO public.journals VALUES (13246, 3783, 'Issue', 5, NULL, '2021-03-15 02:40:39+07', false);
INSERT INTO public.journals VALUES (13247, 3784, 'Issue', 5, NULL, '2021-03-15 02:40:39+07', false);
INSERT INTO public.journals VALUES (13248, 3785, 'Issue', 5, NULL, '2021-03-15 02:40:39+07', false);
INSERT INTO public.journals VALUES (13249, 3786, 'Issue', 5, NULL, '2021-03-15 02:40:39+07', false);
INSERT INTO public.journals VALUES (13250, 3787, 'Issue', 5, NULL, '2021-03-15 02:40:40+07', false);
INSERT INTO public.journals VALUES (13251, 3788, 'Issue', 5, NULL, '2021-03-15 02:40:40+07', false);
INSERT INTO public.journals VALUES (13252, 3789, 'Issue', 5, NULL, '2021-03-15 02:40:40+07', false);
INSERT INTO public.journals VALUES (13253, 3790, 'Issue', 5, NULL, '2021-03-15 02:40:40+07', false);
INSERT INTO public.journals VALUES (13254, 3792, 'Issue', 5, NULL, '2021-03-15 02:40:40+07', false);
INSERT INTO public.journals VALUES (13255, 3793, 'Issue', 5, NULL, '2021-03-15 02:40:40+07', false);
INSERT INTO public.journals VALUES (13256, 3794, 'Issue', 5, NULL, '2021-03-15 02:40:40+07', false);
INSERT INTO public.journals VALUES (13257, 3795, 'Issue', 5, NULL, '2021-03-15 02:40:41+07', false);
INSERT INTO public.journals VALUES (13258, 3796, 'Issue', 5, NULL, '2021-03-15 02:40:41+07', false);
INSERT INTO public.journals VALUES (13259, 3799, 'Issue', 5, NULL, '2021-03-15 02:40:41+07', false);
INSERT INTO public.journals VALUES (13260, 3800, 'Issue', 5, NULL, '2021-03-15 02:40:41+07', false);
INSERT INTO public.journals VALUES (13261, 3801, 'Issue', 5, NULL, '2021-03-15 02:40:41+07', false);
INSERT INTO public.journals VALUES (13262, 3802, 'Issue', 5, NULL, '2021-03-15 02:40:41+07', false);
INSERT INTO public.journals VALUES (13263, 3836, 'Issue', 10, '', '2021-03-15 02:43:20+07', false);
INSERT INTO public.journals VALUES (13264, 3818, 'Issue', 12, NULL, '2021-03-15 02:45:06+07', false);
INSERT INTO public.journals VALUES (13265, 3818, 'Issue', 12, NULL, '2021-03-15 02:45:12+07', false);
INSERT INTO public.journals VALUES (13266, 3874, 'Issue', 38, '', '2021-03-15 03:56:51+07', false);
INSERT INTO public.journals VALUES (13267, 3873, 'Issue', 38, '', '2021-03-15 03:57:11+07', false);
INSERT INTO public.journals VALUES (13268, 3883, 'Issue', 40, '', '2021-03-16 04:01:47+07', false);
INSERT INTO public.journals VALUES (13269, 3824, 'Issue', 5, NULL, '2021-03-16 04:05:43+07', false);
INSERT INTO public.journals VALUES (13270, 3825, 'Issue', 5, NULL, '2021-03-16 04:05:43+07', false);
INSERT INTO public.journals VALUES (13271, 3826, 'Issue', 5, NULL, '2021-03-16 04:05:43+07', false);
INSERT INTO public.journals VALUES (13272, 3827, 'Issue', 5, NULL, '2021-03-16 04:05:44+07', false);
INSERT INTO public.journals VALUES (13273, 3828, 'Issue', 5, NULL, '2021-03-16 04:05:44+07', false);
INSERT INTO public.journals VALUES (13274, 3829, 'Issue', 5, NULL, '2021-03-16 04:05:44+07', false);
INSERT INTO public.journals VALUES (13275, 3830, 'Issue', 5, NULL, '2021-03-16 04:05:44+07', false);
INSERT INTO public.journals VALUES (13276, 3831, 'Issue', 5, NULL, '2021-03-16 04:05:44+07', false);
INSERT INTO public.journals VALUES (13277, 3832, 'Issue', 5, NULL, '2021-03-16 04:05:44+07', false);
INSERT INTO public.journals VALUES (13278, 3833, 'Issue', 5, NULL, '2021-03-16 04:05:44+07', false);
INSERT INTO public.journals VALUES (13279, 3834, 'Issue', 5, NULL, '2021-03-16 04:05:44+07', false);
INSERT INTO public.journals VALUES (13280, 3835, 'Issue', 5, NULL, '2021-03-16 04:05:44+07', false);
INSERT INTO public.journals VALUES (13281, 3824, 'Issue', 5, '', '2021-03-16 04:06:05+07', false);
INSERT INTO public.journals VALUES (13282, 3825, 'Issue', 5, '', '2021-03-16 04:06:06+07', false);
INSERT INTO public.journals VALUES (13283, 3826, 'Issue', 5, '', '2021-03-16 04:06:06+07', false);
INSERT INTO public.journals VALUES (13284, 3827, 'Issue', 5, '', '2021-03-16 04:06:06+07', false);
INSERT INTO public.journals VALUES (13285, 3828, 'Issue', 5, '', '2021-03-16 04:06:06+07', false);
INSERT INTO public.journals VALUES (13286, 3829, 'Issue', 5, '', '2021-03-16 04:06:06+07', false);
INSERT INTO public.journals VALUES (13287, 3830, 'Issue', 5, '', '2021-03-16 04:06:06+07', false);
INSERT INTO public.journals VALUES (13288, 3831, 'Issue', 5, '', '2021-03-16 04:06:06+07', false);
INSERT INTO public.journals VALUES (13289, 3832, 'Issue', 5, '', '2021-03-16 04:06:07+07', false);
INSERT INTO public.journals VALUES (13290, 3833, 'Issue', 5, '', '2021-03-16 04:06:07+07', false);
INSERT INTO public.journals VALUES (13291, 3834, 'Issue', 5, '', '2021-03-16 04:06:07+07', false);
INSERT INTO public.journals VALUES (13292, 3835, 'Issue', 5, '', '2021-03-16 04:06:07+07', false);
INSERT INTO public.journals VALUES (13293, 3836, 'Issue', 5, NULL, '2021-03-16 04:06:30+07', false);
INSERT INTO public.journals VALUES (13294, 3836, 'Issue', 5, '', '2021-03-16 04:06:43+07', false);
INSERT INTO public.journals VALUES (13295, 3842, 'Issue', 39, NULL, '2021-03-16 04:31:39+07', false);
INSERT INTO public.journals VALUES (13296, 3844, 'Issue', 39, NULL, '2021-03-16 04:31:39+07', false);
INSERT INTO public.journals VALUES (13297, 3846, 'Issue', 39, NULL, '2021-03-16 04:31:40+07', false);
INSERT INTO public.journals VALUES (13298, 3848, 'Issue', 39, NULL, '2021-03-16 04:31:40+07', false);
INSERT INTO public.journals VALUES (13299, 3850, 'Issue', 39, NULL, '2021-03-16 04:31:40+07', false);
INSERT INTO public.journals VALUES (13300, 3852, 'Issue', 39, NULL, '2021-03-16 04:31:40+07', false);
INSERT INTO public.journals VALUES (13301, 3854, 'Issue', 39, NULL, '2021-03-16 04:31:40+07', false);
INSERT INTO public.journals VALUES (13302, 3856, 'Issue', 39, NULL, '2021-03-16 04:31:40+07', false);
INSERT INTO public.journals VALUES (13303, 3858, 'Issue', 39, NULL, '2021-03-16 04:31:41+07', false);
INSERT INTO public.journals VALUES (13304, 3860, 'Issue', 39, NULL, '2021-03-16 04:31:41+07', false);
INSERT INTO public.journals VALUES (13305, 3841, 'Issue', 39, NULL, '2021-03-16 04:32:08+07', false);
INSERT INTO public.journals VALUES (13306, 3843, 'Issue', 39, NULL, '2021-03-16 04:32:09+07', false);
INSERT INTO public.journals VALUES (13307, 3845, 'Issue', 39, NULL, '2021-03-16 04:32:09+07', false);
INSERT INTO public.journals VALUES (13308, 3847, 'Issue', 39, NULL, '2021-03-16 04:32:09+07', false);
INSERT INTO public.journals VALUES (13309, 3849, 'Issue', 39, NULL, '2021-03-16 04:32:09+07', false);
INSERT INTO public.journals VALUES (13310, 3851, 'Issue', 39, NULL, '2021-03-16 04:32:09+07', false);
INSERT INTO public.journals VALUES (13311, 3853, 'Issue', 39, NULL, '2021-03-16 04:32:09+07', false);
INSERT INTO public.journals VALUES (13312, 3855, 'Issue', 39, NULL, '2021-03-16 04:32:09+07', false);
INSERT INTO public.journals VALUES (13313, 3857, 'Issue', 39, NULL, '2021-03-16 04:32:09+07', false);
INSERT INTO public.journals VALUES (13314, 3859, 'Issue', 39, NULL, '2021-03-16 04:32:10+07', false);
INSERT INTO public.journals VALUES (13315, 3861, 'Issue', 39, NULL, '2021-03-16 04:32:10+07', false);
INSERT INTO public.journals VALUES (13316, 3884, 'Issue', 38, '', '2021-03-16 13:43:12+07', false);
INSERT INTO public.journals VALUES (13317, 3838, 'Issue', 10, NULL, '2021-03-16 15:18:27+07', false);
INSERT INTO public.journals VALUES (13318, 3838, 'Issue', 10, NULL, '2021-03-16 15:18:35+07', false);
INSERT INTO public.journals VALUES (13319, 3840, 'Issue', 40, NULL, '2021-03-16 15:25:44+07', false);
INSERT INTO public.journals VALUES (13320, 3814, 'Issue', 33, '', '2021-03-16 17:02:52+07', false);
INSERT INTO public.journals VALUES (13321, 3838, 'Issue', 40, '', '2021-03-17 02:08:30+07', false);
INSERT INTO public.journals VALUES (13322, 3874, 'Issue', 40, NULL, '2021-03-17 11:14:28+07', false);
INSERT INTO public.journals VALUES (13323, 3873, 'Issue', 40, NULL, '2021-03-17 11:14:47+07', false);
INSERT INTO public.journals VALUES (13324, 3884, 'Issue', 40, NULL, '2021-03-17 11:15:50+07', false);
INSERT INTO public.journals VALUES (13325, 3837, 'Issue', 5, '', '2021-03-17 11:24:28+07', false);
INSERT INTO public.journals VALUES (13326, 3839, 'Issue', 5, '', '2021-03-17 11:24:28+07', false);
INSERT INTO public.journals VALUES (13327, 3840, 'Issue', 5, '', '2021-03-17 11:24:28+07', false);
INSERT INTO public.journals VALUES (13328, 3841, 'Issue', 5, '', '2021-03-17 11:24:28+07', false);
INSERT INTO public.journals VALUES (13329, 3842, 'Issue', 5, '', '2021-03-17 11:24:28+07', false);
INSERT INTO public.journals VALUES (13330, 3843, 'Issue', 5, '', '2021-03-17 11:24:28+07', false);
INSERT INTO public.journals VALUES (13331, 3844, 'Issue', 5, '', '2021-03-17 11:24:29+07', false);
INSERT INTO public.journals VALUES (13332, 3845, 'Issue', 5, '', '2021-03-17 11:24:29+07', false);
INSERT INTO public.journals VALUES (13333, 3846, 'Issue', 5, '', '2021-03-17 11:24:29+07', false);
INSERT INTO public.journals VALUES (13334, 3847, 'Issue', 5, '', '2021-03-17 11:24:29+07', false);
INSERT INTO public.journals VALUES (13335, 3848, 'Issue', 5, '', '2021-03-17 11:24:29+07', false);
INSERT INTO public.journals VALUES (13336, 3849, 'Issue', 5, '', '2021-03-17 11:24:29+07', false);
INSERT INTO public.journals VALUES (13337, 3850, 'Issue', 5, '', '2021-03-17 11:24:29+07', false);
INSERT INTO public.journals VALUES (13338, 3851, 'Issue', 5, '', '2021-03-17 11:24:30+07', false);
INSERT INTO public.journals VALUES (13339, 3852, 'Issue', 5, '', '2021-03-17 11:24:30+07', false);
INSERT INTO public.journals VALUES (13340, 3853, 'Issue', 5, '', '2021-03-17 11:24:30+07', false);
INSERT INTO public.journals VALUES (13341, 3854, 'Issue', 5, '', '2021-03-17 11:24:30+07', false);
INSERT INTO public.journals VALUES (13342, 3855, 'Issue', 5, '', '2021-03-17 11:24:30+07', false);
INSERT INTO public.journals VALUES (13343, 3856, 'Issue', 5, '', '2021-03-17 11:24:30+07', false);
INSERT INTO public.journals VALUES (13344, 3857, 'Issue', 5, '', '2021-03-17 11:24:30+07', false);
INSERT INTO public.journals VALUES (13345, 3858, 'Issue', 5, '', '2021-03-17 11:24:30+07', false);
INSERT INTO public.journals VALUES (13346, 3859, 'Issue', 5, '', '2021-03-17 11:24:30+07', false);
INSERT INTO public.journals VALUES (13347, 3860, 'Issue', 5, '', '2021-03-17 11:24:31+07', false);
INSERT INTO public.journals VALUES (13348, 3861, 'Issue', 5, '', '2021-03-17 11:24:31+07', false);
INSERT INTO public.journals VALUES (13349, 3885, 'Issue', 5, '', '2021-03-17 11:24:31+07', false);
INSERT INTO public.journals VALUES (13350, 3886, 'Issue', 5, '', '2021-03-17 11:24:31+07', false);
INSERT INTO public.journals VALUES (13351, 3887, 'Issue', 5, '', '2021-03-17 11:24:31+07', false);
INSERT INTO public.journals VALUES (13352, 3888, 'Issue', 5, '', '2021-03-17 11:24:31+07', false);
INSERT INTO public.journals VALUES (13359, 3897, 'Issue', 5, '', '2021-03-17 11:24:32+07', false);
INSERT INTO public.journals VALUES (13360, 3898, 'Issue', 5, '', '2021-03-17 11:24:32+07', false);
INSERT INTO public.journals VALUES (13361, 3899, 'Issue', 5, '', '2021-03-17 11:24:32+07', false);
INSERT INTO public.journals VALUES (13362, 3900, 'Issue', 5, '', '2021-03-17 11:24:33+07', false);
INSERT INTO public.journals VALUES (13363, 3901, 'Issue', 5, '', '2021-03-17 11:24:33+07', false);
INSERT INTO public.journals VALUES (13364, 3902, 'Issue', 5, '', '2021-03-17 11:24:33+07', false);
INSERT INTO public.journals VALUES (13365, 3903, 'Issue', 5, '', '2021-03-17 11:24:33+07', false);
INSERT INTO public.journals VALUES (13366, 3904, 'Issue', 5, '', '2021-03-17 11:24:33+07', false);
INSERT INTO public.journals VALUES (13367, 3905, 'Issue', 5, '', '2021-03-17 11:24:33+07', false);
INSERT INTO public.journals VALUES (13368, 3906, 'Issue', 5, '', '2021-03-17 11:24:33+07', false);
INSERT INTO public.journals VALUES (13369, 3885, 'Issue', 40, '', '2021-03-17 11:26:39+07', false);
INSERT INTO public.journals VALUES (13370, 3886, 'Issue', 40, '', '2021-03-17 11:26:39+07', false);
INSERT INTO public.journals VALUES (13371, 3887, 'Issue', 40, '', '2021-03-17 11:26:40+07', false);
INSERT INTO public.journals VALUES (13372, 3888, 'Issue', 40, '', '2021-03-17 11:26:40+07', false);
INSERT INTO public.journals VALUES (13379, 3897, 'Issue', 40, '', '2021-03-17 11:26:41+07', false);
INSERT INTO public.journals VALUES (13380, 3898, 'Issue', 40, '', '2021-03-17 11:26:41+07', false);
INSERT INTO public.journals VALUES (13381, 3899, 'Issue', 40, '', '2021-03-17 11:26:41+07', false);
INSERT INTO public.journals VALUES (13382, 3900, 'Issue', 40, '', '2021-03-17 11:26:41+07', false);
INSERT INTO public.journals VALUES (13383, 3901, 'Issue', 40, '', '2021-03-17 11:26:41+07', false);
INSERT INTO public.journals VALUES (13384, 3902, 'Issue', 40, '', '2021-03-17 11:26:41+07', false);
INSERT INTO public.journals VALUES (13385, 3903, 'Issue', 40, '', '2021-03-17 11:26:42+07', false);
INSERT INTO public.journals VALUES (13386, 3904, 'Issue', 40, '', '2021-03-17 11:26:42+07', false);
INSERT INTO public.journals VALUES (13387, 3905, 'Issue', 40, '', '2021-03-17 11:26:42+07', false);
INSERT INTO public.journals VALUES (13388, 3906, 'Issue', 40, '', '2021-03-17 11:26:42+07', false);
INSERT INTO public.journals VALUES (13389, 3879, 'Issue', 39, NULL, '2021-03-17 13:30:34+07', false);
INSERT INTO public.journals VALUES (13390, 3879, 'Issue', 39, NULL, '2021-03-17 13:30:46+07', false);
INSERT INTO public.journals VALUES (13391, 3907, 'Issue', 40, '', '2021-03-17 13:45:35+07', false);
INSERT INTO public.journals VALUES (13392, 3912, 'Issue', 40, '', '2021-03-17 15:17:28+07', false);
INSERT INTO public.journals VALUES (13393, 3864, 'Issue', 40, NULL, '2021-03-17 15:20:29+07', false);
INSERT INTO public.journals VALUES (13394, 3864, 'Issue', 40, NULL, '2021-03-17 15:20:40+07', false);
INSERT INTO public.journals VALUES (13395, 3865, 'Issue', 40, '', '2021-03-17 15:21:26+07', false);
INSERT INTO public.journals VALUES (13396, 3840, 'Issue', 10, '', '2021-03-18 13:47:14+07', false);
INSERT INTO public.journals VALUES (13397, 3844, 'Issue', 10, '', '2021-03-18 13:47:14+07', false);
INSERT INTO public.journals VALUES (13398, 3854, 'Issue', 10, '', '2021-03-18 13:47:14+07', false);
INSERT INTO public.journals VALUES (13399, 3824, 'Issue', 8, NULL, '2021-03-18 14:50:50+07', false);
INSERT INTO public.journals VALUES (13400, 3826, 'Issue', 8, NULL, '2021-03-18 14:50:50+07', false);
INSERT INTO public.journals VALUES (13401, 3824, 'Issue', 8, NULL, '2021-03-18 14:50:59+07', false);
INSERT INTO public.journals VALUES (13402, 3826, 'Issue', 8, NULL, '2021-03-18 14:50:59+07', false);
INSERT INTO public.journals VALUES (13403, 3838, 'Issue', 5, '', '2021-03-18 15:39:41+07', false);
INSERT INTO public.journals VALUES (13404, 3856, 'Issue', 10, '', '2021-03-18 16:54:54+07', false);
INSERT INTO public.journals VALUES (13405, 3858, 'Issue', 10, '', '2021-03-18 16:54:54+07', false);
INSERT INTO public.journals VALUES (13406, 3860, 'Issue', 10, '', '2021-03-18 16:54:54+07', false);
INSERT INTO public.journals VALUES (13407, 3829, 'Issue', 40, NULL, '2021-03-19 00:54:14+07', false);
INSERT INTO public.journals VALUES (13408, 3831, 'Issue', 40, NULL, '2021-03-19 00:54:14+07', false);
INSERT INTO public.journals VALUES (13409, 3833, 'Issue', 40, NULL, '2021-03-19 00:54:14+07', false);
INSERT INTO public.journals VALUES (13410, 3835, 'Issue', 40, NULL, '2021-03-19 00:54:14+07', false);
INSERT INTO public.journals VALUES (13411, 3885, 'Issue', 17, '', '2021-03-19 09:52:22+07', false);
INSERT INTO public.journals VALUES (13412, 3887, 'Issue', 17, '', '2021-03-19 09:52:22+07', false);
INSERT INTO public.journals VALUES (13413, 3825, 'Issue', 17, '', '2021-03-19 09:53:22+07', false);
INSERT INTO public.journals VALUES (13414, 3827, 'Issue', 17, '', '2021-03-19 09:53:22+07', false);
INSERT INTO public.journals VALUES (13415, 3914, 'Issue', 40, '', '2021-03-19 10:36:39+07', false);
INSERT INTO public.journals VALUES (13416, 3915, 'Issue', 40, '', '2021-03-19 10:36:56+07', false);
INSERT INTO public.journals VALUES (13417, 3916, 'Issue', 40, '', '2021-03-19 10:37:10+07', false);
INSERT INTO public.journals VALUES (13418, 3917, 'Issue', 40, '', '2021-03-19 10:37:25+07', false);
INSERT INTO public.journals VALUES (13419, 3825, 'Issue', 40, NULL, '2021-03-19 15:53:48+07', false);
INSERT INTO public.journals VALUES (13420, 3827, 'Issue', 40, NULL, '2021-03-19 15:53:48+07', false);
INSERT INTO public.journals VALUES (13421, 3825, 'Issue', 40, NULL, '2021-03-19 15:53:58+07', false);
INSERT INTO public.journals VALUES (13422, 3827, 'Issue', 40, NULL, '2021-03-19 15:53:58+07', false);
INSERT INTO public.journals VALUES (13423, 3825, 'Issue', 40, NULL, '2021-03-19 15:54:08+07', false);
INSERT INTO public.journals VALUES (13424, 3827, 'Issue', 40, NULL, '2021-03-19 15:54:08+07', false);
INSERT INTO public.journals VALUES (13425, 3825, 'Issue', 40, '', '2021-03-19 15:54:23+07', false);
INSERT INTO public.journals VALUES (13426, 3827, 'Issue', 40, '', '2021-03-19 15:54:23+07', false);
INSERT INTO public.journals VALUES (13427, 3850, 'Issue', 10, '', '2021-03-19 16:27:48+07', false);
INSERT INTO public.journals VALUES (13428, 3852, 'Issue', 10, '', '2021-03-19 16:27:49+07', false);
INSERT INTO public.journals VALUES (13429, 3837, 'Issue', 40, NULL, '2021-03-20 14:18:07+07', false);
INSERT INTO public.journals VALUES (13430, 3882, 'Issue', 39, NULL, '2021-03-20 14:54:12+07', false);
INSERT INTO public.journals VALUES (13431, 3882, 'Issue', 39, NULL, '2021-03-20 14:54:24+07', false);
INSERT INTO public.journals VALUES (13432, 3863, 'Issue', 38, NULL, '2021-03-22 09:10:36+07', false);
INSERT INTO public.journals VALUES (13433, 3863, 'Issue', 38, NULL, '2021-03-22 09:10:46+07', false);
INSERT INTO public.journals VALUES (13434, 3875, 'Issue', 38, '', '2021-03-22 02:57:37+07', false);
INSERT INTO public.journals VALUES (13435, 3878, 'Issue', 38, NULL, '2021-03-22 10:21:16+07', false);
INSERT INTO public.journals VALUES (13436, 3878, 'Issue', 38, NULL, '2021-03-22 10:21:35+07', false);
INSERT INTO public.journals VALUES (13437, 3880, 'Issue', 38, NULL, '2021-03-22 10:39:59+07', false);
INSERT INTO public.journals VALUES (13438, 3880, 'Issue', 38, NULL, '2021-03-22 10:40:10+07', false);
INSERT INTO public.journals VALUES (13439, 3881, 'Issue', 38, '', '2021-03-22 10:47:07+07', false);
INSERT INTO public.journals VALUES (13440, 3883, 'Issue', 38, '', '2021-03-22 03:57:11+07', false);
INSERT INTO public.journals VALUES (13441, 3920, 'Issue', 23, '', '2021-03-22 13:44:28+07', false);
INSERT INTO public.journals VALUES (13442, 3907, 'Issue', 38, '', '2021-03-22 14:24:45+07', false);
INSERT INTO public.journals VALUES (13443, 3908, 'Issue', 38, '', '2021-03-22 14:30:11+07', false);
INSERT INTO public.journals VALUES (13444, 3848, 'Issue', 10, '', '2021-03-22 14:32:06+07', false);
INSERT INTO public.journals VALUES (13445, 3862, 'Issue', 38, NULL, '2021-03-22 14:33:27+07', false);
INSERT INTO public.journals VALUES (13446, 3866, 'Issue', 38, NULL, '2021-03-22 14:34:58+07', false);
INSERT INTO public.journals VALUES (13447, 3877, 'Issue', 38, '', '2021-03-22 14:35:37+07', false);
INSERT INTO public.journals VALUES (13448, 3825, 'Issue', 38, NULL, '2021-03-22 14:35:53+07', false);
INSERT INTO public.journals VALUES (13449, 3827, 'Issue', 38, NULL, '2021-03-22 14:35:53+07', false);
INSERT INTO public.journals VALUES (13450, 3837, 'Issue', 38, '', '2021-03-22 14:57:18+07', false);
INSERT INTO public.journals VALUES (13451, 3841, 'Issue', 38, '', '2021-03-22 15:14:58+07', false);
INSERT INTO public.journals VALUES (13452, 3843, 'Issue', 38, '', '2021-03-22 15:18:55+07', false);
INSERT INTO public.journals VALUES (13453, 3845, 'Issue', 38, '', '2021-03-22 15:27:45+07', false);
INSERT INTO public.journals VALUES (13454, 3851, 'Issue', 38, '', '2021-03-22 15:58:43+07', false);
INSERT INTO public.journals VALUES (13455, 3847, 'Issue', 38, '', '2021-03-22 16:26:18+07', false);
INSERT INTO public.journals VALUES (13456, 3853, 'Issue', 38, '', '2021-03-22 16:31:30+07', false);
INSERT INTO public.journals VALUES (13457, 3886, 'Issue', 38, '', '2021-03-22 09:58:34+07', false);
INSERT INTO public.journals VALUES (13458, 3888, 'Issue', 38, '', '2021-03-22 17:05:04+07', false);
INSERT INTO public.journals VALUES (13459, 3898, 'Issue', 38, '', '2021-03-23 02:04:24+07', false);
INSERT INTO public.journals VALUES (13460, 3899, 'Issue', 38, '', '2021-03-23 02:07:16+07', false);
INSERT INTO public.journals VALUES (13461, 3899, 'Issue', 38, '', '2021-03-23 02:07:59+07', false);
INSERT INTO public.journals VALUES (13462, 3900, 'Issue', 38, '', '2021-03-23 02:08:36+07', false);
INSERT INTO public.journals VALUES (13463, 3902, 'Issue', 38, '', '2021-03-23 02:15:00+07', false);
INSERT INTO public.journals VALUES (13464, 3904, 'Issue', 38, '', '2021-03-23 02:16:00+07', false);
INSERT INTO public.journals VALUES (13465, 3855, 'Issue', 38, '', '2021-03-23 02:21:59+07', false);
INSERT INTO public.journals VALUES (13466, 3813, 'Issue', 32, NULL, '2021-03-23 02:38:06+07', false);
INSERT INTO public.journals VALUES (13467, 3821, 'Issue', 32, NULL, '2021-03-23 02:38:18+07', false);
INSERT INTO public.journals VALUES (13468, 3923, 'Issue', 38, '', '2021-03-23 03:16:37+07', false);
INSERT INTO public.journals VALUES (13469, 3924, 'Issue', 40, NULL, '2021-03-23 15:39:59+07', false);
INSERT INTO public.journals VALUES (13470, 3925, 'Issue', 40, '', '2021-03-23 15:45:59+07', false);
INSERT INTO public.journals VALUES (13471, 3925, 'Issue', 40, NULL, '2021-03-23 15:47:54+07', false);
INSERT INTO public.journals VALUES (13472, 3925, 'Issue', 40, NULL, '2021-03-23 15:48:01+07', false);
INSERT INTO public.journals VALUES (13473, 3849, 'Issue', 38, '', '2021-03-23 16:35:04+07', false);
INSERT INTO public.journals VALUES (13474, 3842, 'Issue', 10, NULL, '2021-03-24 01:02:47+07', false);
INSERT INTO public.journals VALUES (13475, 3911, 'Issue', 41, '', '2021-03-24 01:57:24+07', false);
INSERT INTO public.journals VALUES (13476, 3865, 'Issue', 41, '', '2021-03-24 02:21:56+07', false);
INSERT INTO public.journals VALUES (13477, 3829, 'Issue', 41, '', '2021-03-24 02:23:14+07', false);
INSERT INTO public.journals VALUES (13478, 3835, 'Issue', 41, '', '2021-03-24 02:24:07+07', false);
INSERT INTO public.journals VALUES (13479, 3833, 'Issue', 41, '', '2021-03-24 02:24:26+07', false);
INSERT INTO public.journals VALUES (13480, 3846, 'Issue', 10, NULL, '2021-03-24 02:31:27+07', false);
INSERT INTO public.journals VALUES (13481, 3846, 'Issue', 10, NULL, '2021-03-24 02:31:36+07', false);
INSERT INTO public.journals VALUES (13482, 3809, 'Issue', 33, NULL, '2021-03-24 05:27:41+07', false);
INSERT INTO public.journals VALUES (13483, 3811, 'Issue', 33, NULL, '2021-03-24 05:28:39+07', false);
INSERT INTO public.journals VALUES (13484, 3812, 'Issue', 33, NULL, '2021-03-24 05:30:03+07', false);
INSERT INTO public.journals VALUES (13485, 3810, 'Issue', 33, NULL, '2021-03-24 05:31:52+07', false);
INSERT INTO public.journals VALUES (13486, 3815, 'Issue', 33, NULL, '2021-03-24 05:35:12+07', false);
INSERT INTO public.journals VALUES (13487, 3822, 'Issue', 33, NULL, '2021-03-24 05:35:18+07', false);
INSERT INTO public.journals VALUES (13488, 3823, 'Issue', 33, NULL, '2021-03-24 05:35:25+07', false);
INSERT INTO public.journals VALUES (13489, 3814, 'Issue', 33, NULL, '2021-03-24 05:35:31+07', false);
INSERT INTO public.journals VALUES (13490, 3751, 'Issue', 33, NULL, '2021-03-24 05:36:06+07', false);
INSERT INTO public.journals VALUES (13491, 3857, 'Issue', 38, NULL, '2021-03-24 06:31:03+07', false);
INSERT INTO public.journals VALUES (13492, 3859, 'Issue', 38, NULL, '2021-03-24 06:31:04+07', false);
INSERT INTO public.journals VALUES (13493, 3861, 'Issue', 38, NULL, '2021-03-24 06:31:04+07', false);
INSERT INTO public.journals VALUES (13494, 3857, 'Issue', 38, NULL, '2021-03-24 06:31:27+07', false);
INSERT INTO public.journals VALUES (13495, 3859, 'Issue', 38, NULL, '2021-03-24 06:31:27+07', false);
INSERT INTO public.journals VALUES (13496, 3861, 'Issue', 38, NULL, '2021-03-24 06:31:27+07', false);
INSERT INTO public.journals VALUES (13497, 3839, 'Issue', 38, '', '2021-03-24 14:43:14+07', false);
INSERT INTO public.journals VALUES (13498, 3866, 'Issue', 38, NULL, '2021-03-24 14:44:13+07', false);
INSERT INTO public.journals VALUES (13499, 3866, 'Issue', 38, NULL, '2021-03-24 14:44:19+07', false);
INSERT INTO public.journals VALUES (13500, 3876, 'Issue', 40, '', '2021-03-24 16:06:42+07', false);
INSERT INTO public.journals VALUES (13501, 3923, 'Issue', 38, NULL, '2021-03-24 16:35:38+07', false);
INSERT INTO public.journals VALUES (13502, 3923, 'Issue', 38, NULL, '2021-03-24 16:35:47+07', false);
INSERT INTO public.journals VALUES (13503, 3878, 'Issue', 40, NULL, '2021-03-25 01:12:04+07', false);
INSERT INTO public.journals VALUES (13504, 3879, 'Issue', 40, NULL, '2021-03-25 01:12:04+07', false);
INSERT INTO public.journals VALUES (13505, 3880, 'Issue', 40, NULL, '2021-03-25 01:12:05+07', false);
INSERT INTO public.journals VALUES (13506, 3881, 'Issue', 40, NULL, '2021-03-25 01:12:05+07', false);
INSERT INTO public.journals VALUES (13507, 3882, 'Issue', 40, NULL, '2021-03-25 01:12:05+07', false);
INSERT INTO public.journals VALUES (13508, 3883, 'Issue', 40, NULL, '2021-03-25 01:12:05+07', false);
INSERT INTO public.journals VALUES (13509, 3907, 'Issue', 40, NULL, '2021-03-25 01:12:05+07', false);
INSERT INTO public.journals VALUES (13510, 3908, 'Issue', 40, NULL, '2021-03-25 01:12:05+07', false);
INSERT INTO public.journals VALUES (13511, 3926, 'Issue', 40, NULL, '2021-03-25 01:12:05+07', false);
INSERT INTO public.journals VALUES (13512, 3876, 'Issue', 40, NULL, '2021-03-25 01:12:25+07', false);
INSERT INTO public.journals VALUES (13513, 3935, 'Issue', 39, NULL, '2021-03-25 01:22:01+07', false);
INSERT INTO public.journals VALUES (13514, 3939, 'Issue', 40, '', '2021-03-25 01:49:25+07', false);
INSERT INTO public.journals VALUES (13515, 3938, 'Issue', 40, NULL, '2021-03-25 01:52:19+07', false);
INSERT INTO public.journals VALUES (13516, 3940, 'Issue', 40, NULL, '2021-03-25 01:52:19+07', false);
INSERT INTO public.journals VALUES (13517, 3937, 'Issue', 38, '', '2021-03-25 01:56:27+07', false);
INSERT INTO public.journals VALUES (13518, 3776, 'Issue', 40, '', '2021-03-25 01:57:27+07', false);
INSERT INTO public.journals VALUES (13519, 3828, 'Issue', 40, '', '2021-03-25 01:57:27+07', false);
INSERT INTO public.journals VALUES (13520, 3830, 'Issue', 40, '', '2021-03-25 01:57:28+07', false);
INSERT INTO public.journals VALUES (13521, 3831, 'Issue', 40, '', '2021-03-25 01:57:28+07', false);
INSERT INTO public.journals VALUES (13522, 3832, 'Issue', 40, '', '2021-03-25 01:57:28+07', false);
INSERT INTO public.journals VALUES (13523, 3834, 'Issue', 40, '', '2021-03-25 01:57:28+07', false);
INSERT INTO public.journals VALUES (13524, 3862, 'Issue', 40, '', '2021-03-25 01:57:28+07', false);
INSERT INTO public.journals VALUES (13525, 3867, 'Issue', 40, '', '2021-03-25 01:57:28+07', false);
INSERT INTO public.journals VALUES (13526, 3909, 'Issue', 40, '', '2021-03-25 01:57:28+07', false);
INSERT INTO public.journals VALUES (13527, 3910, 'Issue', 40, '', '2021-03-25 01:57:29+07', false);
INSERT INTO public.journals VALUES (13528, 3912, 'Issue', 40, '', '2021-03-25 01:57:29+07', false);
INSERT INTO public.journals VALUES (13529, 3913, 'Issue', 40, '', '2021-03-25 01:57:29+07', false);
INSERT INTO public.journals VALUES (13530, 3914, 'Issue', 40, '', '2021-03-25 01:57:29+07', false);
INSERT INTO public.journals VALUES (13531, 3915, 'Issue', 40, '', '2021-03-25 01:57:29+07', false);
INSERT INTO public.journals VALUES (13532, 3916, 'Issue', 40, '', '2021-03-25 01:57:29+07', false);
INSERT INTO public.journals VALUES (13533, 3917, 'Issue', 40, '', '2021-03-25 01:57:29+07', false);
INSERT INTO public.journals VALUES (13534, 3918, 'Issue', 40, '', '2021-03-25 01:57:29+07', false);
INSERT INTO public.journals VALUES (13535, 3934, 'Issue', 40, NULL, '2021-03-25 01:58:19+07', false);
INSERT INTO public.journals VALUES (13536, 3939, 'Issue', 38, '', '2021-03-25 02:05:05+07', false);
INSERT INTO public.journals VALUES (13537, 3842, 'Issue', 10, NULL, '2021-03-25 03:50:10+07', false);
INSERT INTO public.journals VALUES (13538, 3952, 'Issue', 40, '', '2021-03-25 17:07:15+07', false);
INSERT INTO public.journals VALUES (13539, 3952, 'Issue', 40, '', '2021-03-26 00:33:49+07', false);
INSERT INTO public.journals VALUES (13540, 3798, 'Issue', 40, NULL, '2021-03-26 00:44:28+07', false);
INSERT INTO public.journals VALUES (13541, 3863, 'Issue', 40, NULL, '2021-03-26 00:44:28+07', false);
INSERT INTO public.journals VALUES (13542, 3864, 'Issue', 40, NULL, '2021-03-26 00:44:28+07', false);
INSERT INTO public.journals VALUES (13543, 3865, 'Issue', 40, NULL, '2021-03-26 00:44:28+07', false);
INSERT INTO public.journals VALUES (13544, 3911, 'Issue', 40, NULL, '2021-03-26 00:44:28+07', false);
INSERT INTO public.journals VALUES (13545, 3937, 'Issue', 40, NULL, '2021-03-26 00:44:29+07', false);
INSERT INTO public.journals VALUES (13546, 3939, 'Issue', 40, NULL, '2021-03-26 00:44:29+07', false);
INSERT INTO public.journals VALUES (13547, 3914, 'Issue', 39, NULL, '2021-03-26 01:22:32+07', false);
INSERT INTO public.journals VALUES (13548, 3915, 'Issue', 39, NULL, '2021-03-26 01:22:32+07', false);
INSERT INTO public.journals VALUES (13549, 3916, 'Issue', 39, NULL, '2021-03-26 01:22:32+07', false);
INSERT INTO public.journals VALUES (13550, 3918, 'Issue', 39, NULL, '2021-03-26 01:22:32+07', false);
INSERT INTO public.journals VALUES (13551, 3914, 'Issue', 39, '', '2021-03-26 01:23:00+07', false);
INSERT INTO public.journals VALUES (13552, 3915, 'Issue', 39, '', '2021-03-26 01:23:00+07', false);
INSERT INTO public.journals VALUES (13553, 3916, 'Issue', 39, '', '2021-03-26 01:23:00+07', false);
INSERT INTO public.journals VALUES (13554, 3918, 'Issue', 39, '', '2021-03-26 01:23:00+07', false);
INSERT INTO public.journals VALUES (13555, 3950, 'Issue', 40, NULL, '2021-03-26 01:23:22+07', false);
INSERT INTO public.journals VALUES (13556, 3867, 'Issue', 39, NULL, '2021-03-26 01:23:27+07', false);
INSERT INTO public.journals VALUES (13557, 3936, 'Issue', 39, NULL, '2021-03-26 01:35:01+07', false);
INSERT INTO public.journals VALUES (13558, 3936, 'Issue', 39, NULL, '2021-03-26 01:35:11+07', false);
INSERT INTO public.journals VALUES (13559, 3941, 'Issue', 39, NULL, '2021-03-26 01:42:37+07', false);
INSERT INTO public.journals VALUES (13560, 3941, 'Issue', 39, '', '2021-03-26 01:43:02+07', false);
INSERT INTO public.journals VALUES (13561, 3953, 'Issue', 38, '', '2021-03-26 02:06:29+07', false);
INSERT INTO public.journals VALUES (13562, 3825, 'Issue', 38, NULL, '2021-03-26 02:06:48+07', false);
INSERT INTO public.journals VALUES (13563, 3825, 'Issue', 38, NULL, '2021-03-26 02:06:55+07', false);
INSERT INTO public.journals VALUES (13564, 3867, 'Issue', 38, '', '2021-03-26 02:11:20+07', false);
INSERT INTO public.journals VALUES (13565, 3828, 'Issue', 13, '', '2021-03-26 02:38:08+07', false);
INSERT INTO public.journals VALUES (13566, 3830, 'Issue', 13, '', '2021-03-26 02:38:08+07', false);
INSERT INTO public.journals VALUES (13567, 3832, 'Issue', 13, '', '2021-03-26 02:38:08+07', false);
INSERT INTO public.journals VALUES (13568, 3909, 'Issue', 13, '', '2021-03-26 02:38:08+07', false);
INSERT INTO public.journals VALUES (13569, 3910, 'Issue', 13, '', '2021-03-26 02:38:08+07', false);
INSERT INTO public.journals VALUES (13570, 3913, 'Issue', 13, '', '2021-03-26 02:38:08+07', false);
INSERT INTO public.journals VALUES (13571, 3945, 'Issue', 13, '', '2021-03-26 02:38:09+07', false);
INSERT INTO public.journals VALUES (13572, 3949, 'Issue', 13, '', '2021-03-26 02:38:09+07', false);
INSERT INTO public.journals VALUES (13573, 3905, 'Issue', 39, NULL, '2021-03-26 03:49:48+07', false);
INSERT INTO public.journals VALUES (13574, 3905, 'Issue', 39, NULL, '2021-03-26 03:49:56+07', false);
INSERT INTO public.journals VALUES (13575, 3905, 'Issue', 39, NULL, '2021-03-26 03:50:07+07', false);
INSERT INTO public.journals VALUES (13576, 3958, 'Issue', 40, '', '2021-03-26 06:52:36+07', false);
INSERT INTO public.journals VALUES (13577, 3942, 'Issue', 39, NULL, '2021-03-26 06:57:11+07', false);
INSERT INTO public.journals VALUES (13578, 3942, 'Issue', 39, NULL, '2021-03-26 06:57:20+07', false);
INSERT INTO public.journals VALUES (13579, 3958, 'Issue', 40, '', '2021-03-26 07:54:35+07', false);
INSERT INTO public.journals VALUES (13580, 3929, 'Issue', 33, NULL, '2021-03-27 08:21:41+07', false);
INSERT INTO public.journals VALUES (13581, 3930, 'Issue', 33, NULL, '2021-03-27 08:21:46+07', false);
INSERT INTO public.journals VALUES (13582, 3969, 'Issue', 10, NULL, '2021-03-27 10:37:26+07', false);
INSERT INTO public.journals VALUES (13583, 3969, 'Issue', 10, NULL, '2021-03-27 10:37:34+07', false);
INSERT INTO public.journals VALUES (13584, 3970, 'Issue', 10, '', '2021-03-27 10:42:07+07', false);
INSERT INTO public.journals VALUES (13585, 3968, 'Issue', 10, '', '2021-03-27 10:51:08+07', false);
INSERT INTO public.journals VALUES (13586, 3978, 'Issue', 40, NULL, '2021-03-27 04:28:39+07', false);
INSERT INTO public.journals VALUES (13587, 3971, 'Issue', 10, '', '2021-03-27 04:33:01+07', false);
INSERT INTO public.journals VALUES (13588, 3977, 'Issue', 10, '', '2021-03-27 06:39:43+07', false);
INSERT INTO public.journals VALUES (13589, 3976, 'Issue', 40, NULL, '2021-03-27 07:01:08+07', false);
INSERT INTO public.journals VALUES (13590, 3980, 'Issue', 40, NULL, '2021-03-27 07:01:08+07', false);
INSERT INTO public.journals VALUES (13591, 3982, 'Issue', 40, NULL, '2021-03-27 07:01:09+07', false);
INSERT INTO public.journals VALUES (13592, 3979, 'Issue', 10, NULL, '2021-03-27 07:23:30+07', false);
INSERT INTO public.journals VALUES (13593, 3978, 'Issue', 10, NULL, '2021-03-27 07:24:37+07', false);
INSERT INTO public.journals VALUES (13594, 3836, 'Issue', 40, NULL, '2021-03-27 07:27:28+07', false);
INSERT INTO public.journals VALUES (13595, 3837, 'Issue', 40, NULL, '2021-03-27 07:27:29+07', false);
INSERT INTO public.journals VALUES (13596, 3838, 'Issue', 40, NULL, '2021-03-27 07:27:29+07', false);
INSERT INTO public.journals VALUES (13597, 3839, 'Issue', 40, NULL, '2021-03-27 07:27:29+07', false);
INSERT INTO public.journals VALUES (13598, 3840, 'Issue', 40, NULL, '2021-03-27 07:27:29+07', false);
INSERT INTO public.journals VALUES (13599, 3841, 'Issue', 40, NULL, '2021-03-27 07:27:29+07', false);
INSERT INTO public.journals VALUES (13600, 3842, 'Issue', 40, NULL, '2021-03-27 07:27:29+07', false);
INSERT INTO public.journals VALUES (13601, 3843, 'Issue', 40, NULL, '2021-03-27 07:27:29+07', false);
INSERT INTO public.journals VALUES (13602, 3844, 'Issue', 40, NULL, '2021-03-27 07:27:30+07', false);
INSERT INTO public.journals VALUES (13603, 3845, 'Issue', 40, NULL, '2021-03-27 07:27:30+07', false);
INSERT INTO public.journals VALUES (13604, 3846, 'Issue', 40, NULL, '2021-03-27 07:27:30+07', false);
INSERT INTO public.journals VALUES (13605, 3847, 'Issue', 40, NULL, '2021-03-27 07:27:30+07', false);
INSERT INTO public.journals VALUES (13606, 3848, 'Issue', 40, NULL, '2021-03-27 07:27:30+07', false);
INSERT INTO public.journals VALUES (13607, 3849, 'Issue', 40, NULL, '2021-03-27 07:27:30+07', false);
INSERT INTO public.journals VALUES (13608, 3850, 'Issue', 40, NULL, '2021-03-27 07:27:30+07', false);
INSERT INTO public.journals VALUES (13609, 3851, 'Issue', 40, NULL, '2021-03-27 07:27:30+07', false);
INSERT INTO public.journals VALUES (13610, 3852, 'Issue', 40, NULL, '2021-03-27 07:27:30+07', false);
INSERT INTO public.journals VALUES (13611, 3853, 'Issue', 40, NULL, '2021-03-27 07:27:30+07', false);
INSERT INTO public.journals VALUES (13612, 3866, 'Issue', 40, NULL, '2021-03-27 07:27:31+07', false);
INSERT INTO public.journals VALUES (13613, 3909, 'Issue', 40, NULL, '2021-03-27 07:27:31+07', false);
INSERT INTO public.journals VALUES (13614, 3910, 'Issue', 40, NULL, '2021-03-27 07:27:31+07', false);
INSERT INTO public.journals VALUES (13615, 3983, 'Issue', 10, NULL, '2021-03-27 15:34:32+07', false);
INSERT INTO public.journals VALUES (13616, 3981, 'Issue', 10, NULL, '2021-03-27 15:34:55+07', false);
INSERT INTO public.journals VALUES (13617, 3776, 'Issue', 40, '', '2021-03-27 16:53:24+07', false);
INSERT INTO public.journals VALUES (13618, 3827, 'Issue', 40, '', '2021-03-27 16:53:24+07', false);
INSERT INTO public.journals VALUES (13619, 3831, 'Issue', 40, '', '2021-03-27 16:53:25+07', false);
INSERT INTO public.journals VALUES (13620, 3834, 'Issue', 40, '', '2021-03-27 16:53:25+07', false);
INSERT INTO public.journals VALUES (13621, 3877, 'Issue', 40, '', '2021-03-27 16:53:25+07', false);
INSERT INTO public.journals VALUES (13628, 3897, 'Issue', 40, '', '2021-03-27 16:53:26+07', false);
INSERT INTO public.journals VALUES (13629, 3899, 'Issue', 40, '', '2021-03-27 16:53:26+07', false);
INSERT INTO public.journals VALUES (13630, 3901, 'Issue', 40, '', '2021-03-27 16:53:26+07', false);
INSERT INTO public.journals VALUES (13631, 3903, 'Issue', 40, '', '2021-03-27 16:53:26+07', false);
INSERT INTO public.journals VALUES (13632, 3906, 'Issue', 40, '', '2021-03-27 16:53:26+07', false);
INSERT INTO public.journals VALUES (13633, 3912, 'Issue', 40, '', '2021-03-27 16:53:26+07', false);
INSERT INTO public.journals VALUES (13634, 3917, 'Issue', 40, '', '2021-03-27 16:53:26+07', false);
INSERT INTO public.journals VALUES (13635, 3944, 'Issue', 40, '', '2021-03-27 16:53:26+07', false);
INSERT INTO public.journals VALUES (13636, 3946, 'Issue', 40, '', '2021-03-27 16:53:27+07', false);
INSERT INTO public.journals VALUES (13637, 3947, 'Issue', 40, '', '2021-03-27 16:53:27+07', false);
INSERT INTO public.journals VALUES (13638, 3948, 'Issue', 40, '', '2021-03-27 16:53:27+07', false);
INSERT INTO public.journals VALUES (13639, 3951, 'Issue', 40, '', '2021-03-27 16:53:27+07', false);
INSERT INTO public.journals VALUES (13640, 3952, 'Issue', 40, '', '2021-03-27 16:53:27+07', false);
INSERT INTO public.journals VALUES (13641, 3954, 'Issue', 40, '', '2021-03-27 16:53:27+07', false);
INSERT INTO public.journals VALUES (13642, 3958, 'Issue', 40, '', '2021-03-27 16:53:27+07', false);
INSERT INTO public.journals VALUES (13643, 3959, 'Issue', 40, '', '2021-03-27 16:53:27+07', false);
INSERT INTO public.journals VALUES (13644, 3960, 'Issue', 40, '', '2021-03-27 16:53:27+07', false);
INSERT INTO public.journals VALUES (13645, 3961, 'Issue', 40, '', '2021-03-27 16:53:27+07', false);
INSERT INTO public.journals VALUES (13646, 3967, 'Issue', 40, '', '2021-03-27 16:53:28+07', false);
INSERT INTO public.journals VALUES (13647, 3972, 'Issue', 40, '', '2021-03-27 16:53:28+07', false);
INSERT INTO public.journals VALUES (13648, 3973, 'Issue', 40, '', '2021-03-27 16:53:28+07', false);
INSERT INTO public.journals VALUES (13649, 3974, 'Issue', 40, '', '2021-03-27 16:53:28+07', false);
INSERT INTO public.journals VALUES (13650, 3975, 'Issue', 40, '', '2021-03-27 16:53:28+07', false);
INSERT INTO public.journals VALUES (13651, 3981, 'Issue', 40, '', '2021-03-27 16:53:28+07', false);
INSERT INTO public.journals VALUES (13652, 3984, 'Issue', 40, '', '2021-03-27 16:53:28+07', false);
INSERT INTO public.journals VALUES (13653, 3985, 'Issue', 40, '', '2021-03-27 16:53:28+07', false);
INSERT INTO public.journals VALUES (13654, 3986, 'Issue', 40, '', '2021-03-27 16:53:29+07', false);
INSERT INTO public.journals VALUES (13655, 3987, 'Issue', 40, '', '2021-03-27 16:53:29+07', false);
INSERT INTO public.journals VALUES (13656, 3988, 'Issue', 40, '', '2021-03-27 16:53:29+07', false);
INSERT INTO public.journals VALUES (13657, 3989, 'Issue', 40, '', '2021-03-27 16:53:29+07', false);
INSERT INTO public.journals VALUES (13658, 3998, 'Issue', 40, '', '2021-03-27 16:53:29+07', false);
INSERT INTO public.journals VALUES (13659, 3999, 'Issue', 40, '', '2021-03-27 16:53:29+07', false);
INSERT INTO public.journals VALUES (13660, 4000, 'Issue', 40, '', '2021-03-27 16:53:29+07', false);
INSERT INTO public.journals VALUES (13661, 4001, 'Issue', 40, '', '2021-03-27 16:53:29+07', false);
INSERT INTO public.journals VALUES (13662, 4011, 'Issue', 33, '', '2021-03-27 16:59:46+07', false);
INSERT INTO public.journals VALUES (13669, 3854, 'Issue', 40, NULL, '2021-03-27 17:06:26+07', false);
INSERT INTO public.journals VALUES (13670, 3855, 'Issue', 40, NULL, '2021-03-27 17:06:26+07', false);
INSERT INTO public.journals VALUES (13671, 3856, 'Issue', 40, NULL, '2021-03-27 17:06:26+07', false);
INSERT INTO public.journals VALUES (13672, 3857, 'Issue', 40, NULL, '2021-03-27 17:06:26+07', false);
INSERT INTO public.journals VALUES (13673, 3858, 'Issue', 40, NULL, '2021-03-27 17:06:27+07', false);
INSERT INTO public.journals VALUES (13674, 3859, 'Issue', 40, NULL, '2021-03-27 17:06:27+07', false);
INSERT INTO public.journals VALUES (13675, 3860, 'Issue', 40, NULL, '2021-03-27 17:06:27+07', false);
INSERT INTO public.journals VALUES (13676, 3861, 'Issue', 40, NULL, '2021-03-27 17:06:27+07', false);
INSERT INTO public.journals VALUES (13677, 3885, 'Issue', 40, NULL, '2021-03-27 17:06:27+07', false);
INSERT INTO public.journals VALUES (13678, 3886, 'Issue', 40, NULL, '2021-03-27 17:06:27+07', false);
INSERT INTO public.journals VALUES (13679, 3887, 'Issue', 40, NULL, '2021-03-27 17:06:27+07', false);
INSERT INTO public.journals VALUES (13680, 3888, 'Issue', 40, NULL, '2021-03-27 17:06:27+07', false);
INSERT INTO public.journals VALUES (13681, 4015, 'Issue', 38, '', '2021-03-28 13:47:12+07', false);
INSERT INTO public.journals VALUES (13682, 4017, 'Issue', 38, '', '2021-03-28 13:48:18+07', false);
INSERT INTO public.journals VALUES (13683, 3958, 'Issue', 38, '', '2021-03-28 13:48:51+07', false);
INSERT INTO public.journals VALUES (13684, 3961, 'Issue', 38, '', '2021-03-28 13:49:48+07', false);
INSERT INTO public.journals VALUES (13685, 3967, 'Issue', 38, '', '2021-03-28 13:51:16+07', false);
INSERT INTO public.journals VALUES (13686, 3974, 'Issue', 38, '', '2021-03-28 13:55:18+07', false);
INSERT INTO public.journals VALUES (13687, 3975, 'Issue', 38, '', '2021-03-28 13:55:42+07', false);
INSERT INTO public.journals VALUES (13688, 3981, 'Issue', 38, '', '2021-03-28 14:47:36+07', false);
INSERT INTO public.journals VALUES (13689, 3985, 'Issue', 38, '', '2021-03-28 15:10:28+07', false);
INSERT INTO public.journals VALUES (13690, 3986, 'Issue', 38, '', '2021-03-28 15:10:51+07', false);
INSERT INTO public.journals VALUES (13691, 3988, 'Issue', 38, '', '2021-03-28 15:12:55+07', false);
INSERT INTO public.journals VALUES (13692, 3989, 'Issue', 38, '', '2021-03-28 15:15:14+07', false);
INSERT INTO public.journals VALUES (13693, 3906, 'Issue', 38, '', '2021-03-29 08:18:36+07', false);
INSERT INTO public.journals VALUES (13694, 3997, 'Issue', 37, NULL, '2021-03-29 08:18:47+07', false);
INSERT INTO public.journals VALUES (13695, 3997, 'Issue', 37, NULL, '2021-03-29 08:19:00+07', false);
INSERT INTO public.journals VALUES (13696, 3984, 'Issue', 10, '', '2021-03-29 08:25:13+07', false);
INSERT INTO public.journals VALUES (13697, 3987, 'Issue', 10, '', '2021-03-29 08:25:13+07', false);
INSERT INTO public.journals VALUES (13698, 4002, 'Issue', 40, '', '2021-03-29 09:08:22+07', false);
INSERT INTO public.journals VALUES (13699, 4021, 'Issue', 40, '', '2021-03-29 09:20:44+07', false);
INSERT INTO public.journals VALUES (13700, 4020, 'Issue', 40, '', '2021-03-29 09:20:57+07', false);
INSERT INTO public.journals VALUES (13701, 3959, 'Issue', 38, '', '2021-03-29 10:00:04+07', false);
INSERT INTO public.journals VALUES (13702, 3960, 'Issue', 38, '', '2021-03-29 10:01:40+07', false);
INSERT INTO public.journals VALUES (13703, 3825, 'Issue', 40, NULL, '2021-03-29 10:05:55+07', false);
INSERT INTO public.journals VALUES (13704, 3827, 'Issue', 40, NULL, '2021-03-29 10:05:55+07', false);
INSERT INTO public.journals VALUES (13705, 4014, 'Issue', 12, NULL, '2021-03-29 10:06:27+07', false);
INSERT INTO public.journals VALUES (13706, 4014, 'Issue', 12, NULL, '2021-03-29 10:06:37+07', false);
INSERT INTO public.journals VALUES (13707, 4016, 'Issue', 12, NULL, '2021-03-29 10:15:26+07', false);
INSERT INTO public.journals VALUES (13708, 4016, 'Issue', 12, NULL, '2021-03-29 10:15:33+07', false);
INSERT INTO public.journals VALUES (13709, 3931, 'Issue', 33, NULL, '2021-03-29 04:04:39+07', false);
INSERT INTO public.journals VALUES (13710, 4028, 'Issue', 12, NULL, '2021-03-29 11:26:57+07', false);
INSERT INTO public.journals VALUES (13711, 4028, 'Issue', 12, NULL, '2021-03-29 11:27:05+07', false);
INSERT INTO public.journals VALUES (13712, 4005, 'Issue', 12, NULL, '2021-03-29 11:33:38+07', false);
INSERT INTO public.journals VALUES (13713, 4005, 'Issue', 12, NULL, '2021-03-29 11:33:48+07', false);
INSERT INTO public.journals VALUES (13714, 4029, 'Issue', 12, NULL, '2021-03-29 04:54:48+07', false);
INSERT INTO public.journals VALUES (13715, 4029, 'Issue', 12, NULL, '2021-03-29 04:54:56+07', false);
INSERT INTO public.journals VALUES (13716, 4030, 'Issue', 12, NULL, '2021-03-29 13:49:04+07', false);
INSERT INTO public.journals VALUES (13717, 4030, 'Issue', 12, NULL, '2021-03-29 13:49:11+07', false);
INSERT INTO public.journals VALUES (13718, 3990, 'Issue', 12, NULL, '2021-03-29 13:49:31+07', false);
INSERT INTO public.journals VALUES (13719, 4009, 'Issue', 10, '', '2021-03-29 14:16:19+07', false);
INSERT INTO public.journals VALUES (13720, 4020, 'Issue', 38, '', '2021-03-29 14:24:22+07', false);
INSERT INTO public.journals VALUES (13721, 3871, 'Issue', 8, NULL, '2021-03-29 14:26:48+07', false);
INSERT INTO public.journals VALUES (13722, 3994, 'Issue', 8, NULL, '2021-03-29 14:26:48+07', false);
INSERT INTO public.journals VALUES (13723, 3995, 'Issue', 8, NULL, '2021-03-29 14:26:48+07', false);
INSERT INTO public.journals VALUES (13724, 3996, 'Issue', 8, NULL, '2021-03-29 14:26:48+07', false);
INSERT INTO public.journals VALUES (13725, 3871, 'Issue', 8, NULL, '2021-03-29 14:27:01+07', false);
INSERT INTO public.journals VALUES (13726, 3994, 'Issue', 8, NULL, '2021-03-29 14:27:01+07', false);
INSERT INTO public.journals VALUES (13727, 3995, 'Issue', 8, NULL, '2021-03-29 14:27:01+07', false);
INSERT INTO public.journals VALUES (13728, 3996, 'Issue', 8, NULL, '2021-03-29 14:27:01+07', false);
INSERT INTO public.journals VALUES (13729, 3996, 'Issue', 8, NULL, '2021-03-29 14:28:35+07', false);
INSERT INTO public.journals VALUES (13730, 3996, 'Issue', 8, NULL, '2021-03-29 14:28:41+07', false);
INSERT INTO public.journals VALUES (13731, 4022, 'Issue', 38, '', '2021-03-29 14:39:05+07', false);
INSERT INTO public.journals VALUES (13732, 4031, 'Issue', 15, NULL, '2021-03-29 14:42:49+07', false);
INSERT INTO public.journals VALUES (13733, 4032, 'Issue', 15, '', '2021-03-29 14:44:36+07', false);
INSERT INTO public.journals VALUES (13734, 4003, 'Issue', 37, '', '2021-03-29 15:51:19+07', false);
INSERT INTO public.journals VALUES (13735, 3963, 'Issue', 33, NULL, '2021-03-29 15:57:32+07', false);
INSERT INTO public.journals VALUES (13736, 3928, 'Issue', 33, NULL, '2021-03-29 15:59:08+07', false);
INSERT INTO public.journals VALUES (13737, 4027, 'Issue', 33, NULL, '2021-03-29 16:04:10+07', false);
INSERT INTO public.journals VALUES (13738, 3996, 'Issue', 15, NULL, '2021-03-29 16:13:57+07', false);
INSERT INTO public.journals VALUES (13739, 3996, 'Issue', 15, NULL, '2021-03-29 16:14:10+07', false);
INSERT INTO public.journals VALUES (13740, 4036, 'Issue', 15, '', '2021-03-29 16:43:21+07', false);
INSERT INTO public.journals VALUES (13741, 4033, 'Issue', 15, '', '2021-03-30 01:23:46+07', false);
INSERT INTO public.journals VALUES (13742, 4034, 'Issue', 15, '', '2021-03-30 01:23:46+07', false);
INSERT INTO public.journals VALUES (13743, 4035, 'Issue', 15, '', '2021-03-30 01:23:46+07', false);
INSERT INTO public.journals VALUES (13744, 4036, 'Issue', 15, '', '2021-03-30 01:23:47+07', false);
INSERT INTO public.journals VALUES (13745, 4037, 'Issue', 15, '', '2021-03-30 01:23:47+07', false);
INSERT INTO public.journals VALUES (13747, 4039, 'Issue', 15, '', '2021-03-30 01:23:47+07', false);
INSERT INTO public.journals VALUES (13748, 4040, 'Issue', 15, '', '2021-03-30 01:23:47+07', false);
INSERT INTO public.journals VALUES (13749, 4025, 'Issue', 39, NULL, '2021-03-30 01:56:33+07', false);
INSERT INTO public.journals VALUES (13750, 4025, 'Issue', 39, NULL, '2021-03-30 01:56:41+07', false);
INSERT INTO public.journals VALUES (13751, 4021, 'Issue', 39, NULL, '2021-03-30 02:00:46+07', false);
INSERT INTO public.journals VALUES (13752, 4021, 'Issue', 39, NULL, '2021-03-30 02:00:51+07', false);
INSERT INTO public.journals VALUES (13753, 4024, 'Issue', 40, NULL, '2021-03-30 02:59:34+07', false);
INSERT INTO public.journals VALUES (13754, 4034, 'Issue', 8, NULL, '2021-03-30 08:09:32+07', false);
INSERT INTO public.journals VALUES (13755, 4034, 'Issue', 8, NULL, '2021-03-30 08:09:36+07', false);
INSERT INTO public.journals VALUES (13756, 4033, 'Issue', 8, NULL, '2021-03-30 08:09:52+07', false);
INSERT INTO public.journals VALUES (13757, 4040, 'Issue', 12, NULL, '2021-03-30 08:26:02+07', false);
INSERT INTO public.journals VALUES (13758, 4040, 'Issue', 12, NULL, '2021-03-30 08:26:16+07', false);
INSERT INTO public.journals VALUES (13759, 4013, 'Issue', 12, NULL, '2021-03-30 08:28:34+07', false);
INSERT INTO public.journals VALUES (13760, 4055, 'Issue', 40, NULL, '2021-03-30 09:36:10+07', false);
INSERT INTO public.journals VALUES (13761, 3954, 'Issue', 40, NULL, '2021-03-31 10:08:39+07', false);
INSERT INTO public.journals VALUES (13762, 4057, 'Issue', 17, '', '2021-03-31 10:45:25+07', false);
INSERT INTO public.journals VALUES (13763, 4008, 'Issue', 40, NULL, '2021-03-31 10:50:24+07', false);
INSERT INTO public.journals VALUES (13764, 4058, 'Issue', 40, NULL, '2021-03-31 10:53:11+07', false);
INSERT INTO public.journals VALUES (13765, 4054, 'Issue', 17, '', '2021-03-31 03:58:01+07', false);
INSERT INTO public.journals VALUES (13766, 4053, 'Issue', 17, '', '2021-03-31 11:09:45+07', false);
INSERT INTO public.journals VALUES (13767, 4004, 'Issue', 15, '', '2021-03-31 13:32:40+07', false);
INSERT INTO public.journals VALUES (13768, 4007, 'Issue', 15, NULL, '2021-03-31 13:32:53+07', false);
INSERT INTO public.journals VALUES (13769, 3993, 'Issue', 15, NULL, '2021-03-31 13:33:05+07', false);
INSERT INTO public.journals VALUES (13770, 3992, 'Issue', 15, '', '2021-03-31 13:35:43+07', false);
INSERT INTO public.journals VALUES (13771, 3993, 'Issue', 15, '', '2021-03-31 13:35:43+07', false);
INSERT INTO public.journals VALUES (13772, 4004, 'Issue', 15, '', '2021-03-31 13:35:43+07', false);
INSERT INTO public.journals VALUES (13773, 4007, 'Issue', 15, '', '2021-03-31 13:35:43+07', false);
INSERT INTO public.journals VALUES (13774, 4006, 'Issue', 15, NULL, '2021-03-31 14:18:30+07', false);
INSERT INTO public.journals VALUES (13775, 4007, 'Issue', 15, NULL, '2021-03-31 14:18:30+07', false);
INSERT INTO public.journals VALUES (13776, 4006, 'Issue', 15, NULL, '2021-03-31 14:20:43+07', false);
INSERT INTO public.journals VALUES (13777, 4007, 'Issue', 15, NULL, '2021-03-31 14:20:43+07', false);
INSERT INTO public.journals VALUES (13778, 3992, 'Issue', 37, '', '2021-03-31 14:21:47+07', false);
INSERT INTO public.journals VALUES (13779, 4004, 'Issue', 37, '', '2021-03-31 14:22:20+07', false);
INSERT INTO public.journals VALUES (13780, 3867, 'Issue', 40, NULL, '2021-03-31 14:23:22+07', false);
INSERT INTO public.journals VALUES (13781, 4035, 'Issue', 37, '', '2021-03-31 14:23:35+07', false);
INSERT INTO public.journals VALUES (13782, 3936, 'Issue', 40, NULL, '2021-03-31 14:23:56+07', false);
INSERT INTO public.journals VALUES (13783, 3941, 'Issue', 40, NULL, '2021-03-31 14:52:59+07', false);
INSERT INTO public.journals VALUES (13784, 3942, 'Issue', 40, NULL, '2021-03-31 14:52:59+07', false);
INSERT INTO public.journals VALUES (13785, 4042, 'Issue', 17, '', '2021-03-31 15:14:57+07', false);
INSERT INTO public.journals VALUES (13786, 4032, 'Issue', 15, '', '2021-03-31 15:16:56+07', false);
INSERT INTO public.journals VALUES (13787, 3824, 'Issue', 40, NULL, '2021-03-31 15:25:13+07', false);
INSERT INTO public.journals VALUES (13788, 3826, 'Issue', 40, NULL, '2021-03-31 15:25:13+07', false);
INSERT INTO public.journals VALUES (13789, 4010, 'Issue', 17, '', '2021-03-31 15:58:26+07', false);
INSERT INTO public.journals VALUES (13790, 3954, 'Issue', 17, '', '2021-03-31 15:59:31+07', false);
INSERT INTO public.journals VALUES (13791, 4063, 'Issue', 17, '', '2021-03-31 16:00:22+07', false);
INSERT INTO public.journals VALUES (13792, 4044, 'Issue', 41, '', '2021-03-31 16:10:48+07', false);
INSERT INTO public.journals VALUES (13793, 3829, 'Issue', 40, NULL, '2021-03-31 16:14:04+07', false);
INSERT INTO public.journals VALUES (13794, 3833, 'Issue', 40, NULL, '2021-03-31 16:14:04+07', false);
INSERT INTO public.journals VALUES (13795, 3835, 'Issue', 40, NULL, '2021-03-31 16:14:04+07', false);
INSERT INTO public.journals VALUES (13796, 3875, 'Issue', 40, NULL, '2021-03-31 16:14:04+07', false);
INSERT INTO public.journals VALUES (13797, 4048, 'Issue', 41, '', '2021-03-31 16:25:41+07', false);
INSERT INTO public.journals VALUES (13798, 3913, 'Issue', 40, NULL, '2021-03-31 16:42:24+07', false);
INSERT INTO public.journals VALUES (13799, 3897, 'Issue', 40, NULL, '2021-03-31 16:44:09+07', false);
INSERT INTO public.journals VALUES (13800, 3898, 'Issue', 40, NULL, '2021-03-31 16:44:09+07', false);
INSERT INTO public.journals VALUES (13801, 3899, 'Issue', 40, NULL, '2021-03-31 16:44:09+07', false);
INSERT INTO public.journals VALUES (13802, 3900, 'Issue', 40, NULL, '2021-03-31 16:44:09+07', false);
INSERT INTO public.journals VALUES (13803, 3901, 'Issue', 40, NULL, '2021-03-31 16:44:09+07', false);
INSERT INTO public.journals VALUES (13804, 3902, 'Issue', 40, NULL, '2021-03-31 16:44:10+07', false);
INSERT INTO public.journals VALUES (13805, 3903, 'Issue', 40, NULL, '2021-03-31 16:44:10+07', false);
INSERT INTO public.journals VALUES (13806, 3904, 'Issue', 40, NULL, '2021-03-31 16:44:10+07', false);
INSERT INTO public.journals VALUES (13807, 3905, 'Issue', 40, NULL, '2021-03-31 16:44:10+07', false);
INSERT INTO public.journals VALUES (13808, 4036, 'Issue', 37, '', '2021-03-31 16:58:46+07', false);
INSERT INTO public.journals VALUES (13809, 4059, 'Issue', 38, NULL, '2021-04-01 00:57:20+07', false);
INSERT INTO public.journals VALUES (13810, 4059, 'Issue', 38, NULL, '2021-04-01 00:57:27+07', false);
INSERT INTO public.journals VALUES (13811, 3953, 'Issue', 40, NULL, '2021-04-01 08:31:09+07', false);
INSERT INTO public.journals VALUES (13812, 4065, 'Issue', 5, NULL, '2021-04-01 09:11:05+07', false);
INSERT INTO public.journals VALUES (13813, 4066, 'Issue', 5, NULL, '2021-04-01 09:11:05+07', false);
INSERT INTO public.journals VALUES (13814, 4067, 'Issue', 5, NULL, '2021-04-01 09:13:15+07', false);
INSERT INTO public.journals VALUES (13815, 4067, 'Issue', 5, '', '2021-04-01 09:13:26+07', false);
INSERT INTO public.journals VALUES (13816, 4073, 'Issue', 38, '', '2021-04-01 09:46:47+07', false);
INSERT INTO public.journals VALUES (13817, 3961, 'Issue', 40, NULL, '2021-04-01 10:43:59+07', false);
INSERT INTO public.journals VALUES (13818, 4032, 'Issue', 15, NULL, '2021-04-01 10:52:28+07', false);
INSERT INTO public.journals VALUES (13819, 4032, 'Issue', 15, NULL, '2021-04-01 10:52:59+07', false);
INSERT INTO public.journals VALUES (13820, 4039, 'Issue', 15, NULL, '2021-04-01 10:53:58+07', false);
INSERT INTO public.journals VALUES (13821, 4039, 'Issue', 15, NULL, '2021-04-01 03:54:15+07', false);
INSERT INTO public.journals VALUES (13822, 4039, 'Issue', 15, NULL, '2021-04-01 03:54:26+07', false);
INSERT INTO public.journals VALUES (13823, 3967, 'Issue', 40, NULL, '2021-04-01 11:00:19+07', false);
INSERT INTO public.journals VALUES (13824, 4045, 'Issue', 15, NULL, '2021-04-01 11:08:49+07', false);
INSERT INTO public.journals VALUES (13825, 4046, 'Issue', 15, NULL, '2021-04-01 11:08:50+07', false);
INSERT INTO public.journals VALUES (13826, 4039, 'Issue', 15, NULL, '2021-04-01 11:09:22+07', false);
INSERT INTO public.journals VALUES (13827, 3968, 'Issue', 40, NULL, '2021-04-01 11:16:36+07', false);
INSERT INTO public.journals VALUES (13828, 3969, 'Issue', 40, NULL, '2021-04-01 11:16:36+07', false);
INSERT INTO public.journals VALUES (13831, 4074, 'Issue', 38, '', '2021-04-01 13:40:23+07', false);
INSERT INTO public.journals VALUES (13832, 4019, 'Issue', 40, NULL, '2021-04-01 14:00:12+07', false);
INSERT INTO public.journals VALUES (13833, 4019, 'Issue', 40, NULL, '2021-04-01 14:00:30+07', false);
INSERT INTO public.journals VALUES (13834, 3973, 'Issue', 40, NULL, '2021-04-01 14:11:35+07', false);
INSERT INTO public.journals VALUES (13835, 3971, 'Issue', 40, NULL, '2021-04-01 14:30:22+07', false);
INSERT INTO public.journals VALUES (13836, 3977, 'Issue', 40, NULL, '2021-04-01 14:30:22+07', false);
INSERT INTO public.journals VALUES (13837, 4066, 'Issue', 39, NULL, '2021-04-02 15:15:23+07', false);
INSERT INTO public.journals VALUES (13838, 4068, 'Issue', 39, NULL, '2021-04-02 15:15:47+07', false);
INSERT INTO public.journals VALUES (13839, 4069, 'Issue', 39, NULL, '2021-04-02 15:15:47+07', false);
INSERT INTO public.journals VALUES (13840, 4070, 'Issue', 39, NULL, '2021-04-02 15:15:47+07', false);
INSERT INTO public.journals VALUES (13841, 4071, 'Issue', 39, NULL, '2021-04-02 15:15:47+07', false);
INSERT INTO public.journals VALUES (13842, 4066, 'Issue', 39, NULL, '2021-04-02 15:15:53+07', false);
INSERT INTO public.journals VALUES (13843, 4068, 'Issue', 39, NULL, '2021-04-02 15:15:53+07', false);
INSERT INTO public.journals VALUES (13844, 4069, 'Issue', 39, NULL, '2021-04-02 15:15:53+07', false);
INSERT INTO public.journals VALUES (13845, 4070, 'Issue', 39, NULL, '2021-04-02 15:15:53+07', false);
INSERT INTO public.journals VALUES (13846, 4071, 'Issue', 39, NULL, '2021-04-02 15:15:53+07', false);
INSERT INTO public.journals VALUES (13847, 4066, 'Issue', 39, NULL, '2021-04-02 15:16:14+07', false);
INSERT INTO public.journals VALUES (13848, 4068, 'Issue', 39, NULL, '2021-04-02 15:16:14+07', false);
INSERT INTO public.journals VALUES (13849, 4069, 'Issue', 39, NULL, '2021-04-02 15:16:15+07', false);
INSERT INTO public.journals VALUES (13850, 4070, 'Issue', 39, NULL, '2021-04-02 15:16:15+07', false);
INSERT INTO public.journals VALUES (13851, 4071, 'Issue', 39, NULL, '2021-04-02 15:16:15+07', false);
INSERT INTO public.journals VALUES (13852, 4065, 'Issue', 39, NULL, '2021-04-02 15:17:36+07', false);
INSERT INTO public.journals VALUES (13853, 4065, 'Issue', 39, NULL, '2021-04-02 15:17:43+07', false);
INSERT INTO public.journals VALUES (13854, 4065, 'Issue', 39, NULL, '2021-04-02 15:17:49+07', false);
INSERT INTO public.journals VALUES (13856, 4064, 'Issue', 39, NULL, '2021-04-02 15:18:50+07', false);
INSERT INTO public.journals VALUES (13857, 4067, 'Issue', 39, NULL, '2021-04-02 15:18:50+07', false);
INSERT INTO public.journals VALUES (13858, 4076, 'Issue', 15, '', '2021-04-03 09:08:54+07', false);
INSERT INTO public.journals VALUES (13859, 4077, 'Issue', 15, NULL, '2021-04-03 15:13:19+07', false);
INSERT INTO public.journals VALUES (13860, 4076, 'Issue', 15, NULL, '2021-04-03 15:31:14+07', false);
INSERT INTO public.journals VALUES (13861, 4080, 'Issue', 15, NULL, '2021-04-03 15:31:39+07', false);
INSERT INTO public.journals VALUES (13862, 4080, 'Issue', 15, NULL, '2021-04-03 15:31:48+07', false);
INSERT INTO public.journals VALUES (13863, 3999, 'Issue', 8, NULL, '2021-04-05 01:01:11+07', false);
INSERT INTO public.journals VALUES (13864, 3999, 'Issue', 8, NULL, '2021-04-05 01:01:18+07', false);
INSERT INTO public.journals VALUES (13865, 4077, 'Issue', 15, NULL, '2021-04-05 01:16:48+07', false);
INSERT INTO public.journals VALUES (13866, 4082, 'Issue', 39, '', '2021-04-05 03:11:32+07', false);
INSERT INTO public.journals VALUES (13867, 4083, 'Issue', 39, '', '2021-04-05 03:11:47+07', false);
INSERT INTO public.journals VALUES (13868, 4081, 'Issue', 39, '', '2021-04-05 03:12:03+07', false);
INSERT INTO public.journals VALUES (13869, 4084, 'Issue', 39, '', '2021-04-05 03:12:03+07', false);
INSERT INTO public.journals VALUES (13870, 4085, 'Issue', 15, NULL, '2021-04-05 04:03:23+07', false);
INSERT INTO public.journals VALUES (13871, 4086, 'Issue', 15, NULL, '2021-04-05 04:03:23+07', false);
INSERT INTO public.journals VALUES (13872, 3993, 'Issue', 15, NULL, '2021-04-05 04:03:50+07', false);
INSERT INTO public.journals VALUES (13873, 3993, 'Issue', 15, NULL, '2021-04-05 04:04:01+07', false);
INSERT INTO public.journals VALUES (13874, 4087, 'Issue', 15, '', '2021-04-05 07:56:06+07', false);
INSERT INTO public.journals VALUES (13875, 4091, 'Issue', 15, '', '2021-04-05 15:04:36+07', false);
INSERT INTO public.journals VALUES (13876, 4092, 'Issue', 15, '', '2021-04-05 15:04:36+07', false);
INSERT INTO public.journals VALUES (13877, 4093, 'Issue', 15, '', '2021-04-05 15:04:36+07', false);
INSERT INTO public.journals VALUES (13878, 4094, 'Issue', 15, '', '2021-04-05 15:04:36+07', false);
INSERT INTO public.journals VALUES (13879, 4095, 'Issue', 15, '', '2021-04-05 15:04:36+07', false);
INSERT INTO public.journals VALUES (13880, 4093, 'Issue', 15, '', '2021-04-05 15:07:13+07', false);
INSERT INTO public.journals VALUES (13881, 4097, 'Issue', 15, '', '2021-04-05 15:08:21+07', false);
INSERT INTO public.journals VALUES (13882, 4098, 'Issue', 15, '', '2021-04-05 15:08:21+07', false);
INSERT INTO public.journals VALUES (13883, 3998, 'Issue', 8, NULL, '2021-04-05 15:53:47+07', false);
INSERT INTO public.journals VALUES (13884, 3998, 'Issue', 8, NULL, '2021-04-05 15:53:53+07', false);
INSERT INTO public.journals VALUES (13885, 4002, 'Issue', 8, NULL, '2021-04-05 16:45:11+07', false);
INSERT INTO public.journals VALUES (13886, 4002, 'Issue', 8, NULL, '2021-04-05 16:45:20+07', false);
INSERT INTO public.journals VALUES (13887, 4081, 'Issue', 40, NULL, '2021-04-05 16:48:25+07', false);
INSERT INTO public.journals VALUES (13888, 4082, 'Issue', 40, NULL, '2021-04-05 16:48:26+07', false);
INSERT INTO public.journals VALUES (13889, 4083, 'Issue', 40, NULL, '2021-04-05 16:48:26+07', false);
INSERT INTO public.journals VALUES (13890, 4084, 'Issue', 40, NULL, '2021-04-05 16:48:26+07', false);
INSERT INTO public.journals VALUES (13891, 4019, 'Issue', 40, NULL, '2021-04-06 08:48:43+07', false);
INSERT INTO public.journals VALUES (13892, 3925, 'Issue', 40, NULL, '2021-04-06 02:03:33+07', false);
INSERT INTO public.journals VALUES (13893, 4043, 'Issue', 41, '', '2021-04-06 09:45:39+07', false);
INSERT INTO public.journals VALUES (13894, 3958, 'Issue', 40, NULL, '2021-04-06 09:49:29+07', false);
INSERT INTO public.journals VALUES (13895, 4073, 'Issue', 40, NULL, '2021-04-06 09:49:29+07', false);
INSERT INTO public.journals VALUES (13896, 4051, 'Issue', 41, '', '2021-04-06 09:50:45+07', false);
INSERT INTO public.journals VALUES (13897, 3832, 'Issue', 40, NULL, '2021-04-06 10:19:22+07', false);
INSERT INTO public.journals VALUES (13898, 3949, 'Issue', 40, NULL, '2021-04-06 10:20:05+07', false);
INSERT INTO public.journals VALUES (13899, 4044, 'Issue', 40, NULL, '2021-04-06 10:41:33+07', false);
INSERT INTO public.journals VALUES (13900, 4049, 'Issue', 40, NULL, '2021-04-06 03:58:20+07', false);
INSERT INTO public.journals VALUES (13901, 4053, 'Issue', 40, NULL, '2021-04-06 11:13:55+07', false);
INSERT INTO public.journals VALUES (13902, 4054, 'Issue', 40, NULL, '2021-04-06 11:13:55+07', false);
INSERT INTO public.journals VALUES (13903, 3970, 'Issue', 40, NULL, '2021-04-06 14:29:39+07', false);
INSERT INTO public.journals VALUES (13904, 4050, 'Issue', 41, '', '2021-04-06 15:11:45+07', false);
INSERT INTO public.journals VALUES (13905, 4050, 'Issue', 41, '', '2021-04-06 15:12:03+07', false);
INSERT INTO public.journals VALUES (13906, 4056, 'Issue', 41, '', '2021-04-06 16:18:08+07', false);
INSERT INTO public.journals VALUES (13907, 4052, 'Issue', 41, '', '2021-04-07 09:30:04+07', false);
INSERT INTO public.journals VALUES (13908, 4064, 'Issue', 39, NULL, '2021-04-07 13:15:27+07', false);
INSERT INTO public.journals VALUES (13909, 4067, 'Issue', 39, NULL, '2021-04-07 13:15:27+07', false);
INSERT INTO public.journals VALUES (13910, 4078, 'Issue', 39, NULL, '2021-04-07 13:15:27+07', false);
INSERT INTO public.journals VALUES (13911, 4064, 'Issue', 39, NULL, '2021-04-07 13:15:35+07', false);
INSERT INTO public.journals VALUES (13912, 4067, 'Issue', 39, NULL, '2021-04-07 13:15:35+07', false);
INSERT INTO public.journals VALUES (13913, 4078, 'Issue', 39, NULL, '2021-04-07 13:15:35+07', false);
INSERT INTO public.journals VALUES (13914, 4107, 'Issue', 39, NULL, '2021-04-07 13:16:21+07', false);
INSERT INTO public.journals VALUES (13916, 4112, 'Issue', 8, NULL, '2021-04-08 04:30:52+07', false);
INSERT INTO public.journals VALUES (13919, 3828, 'Issue', 40, NULL, '2021-04-10 03:50:32+07', false);
INSERT INTO public.journals VALUES (13920, 3830, 'Issue', 40, NULL, '2021-04-10 03:50:33+07', false);
INSERT INTO public.journals VALUES (13921, 3831, 'Issue', 40, NULL, '2021-04-10 03:50:33+07', false);
INSERT INTO public.journals VALUES (13922, 3834, 'Issue', 40, NULL, '2021-04-10 03:50:33+07', false);
INSERT INTO public.journals VALUES (13923, 3906, 'Issue', 40, NULL, '2021-04-10 03:50:33+07', false);
INSERT INTO public.journals VALUES (13924, 3923, 'Issue', 40, NULL, '2021-04-10 03:50:33+07', false);
INSERT INTO public.journals VALUES (13925, 3935, 'Issue', 40, NULL, '2021-04-10 03:50:33+07', false);
INSERT INTO public.journals VALUES (13926, 3917, 'Issue', 40, NULL, '2021-04-10 07:19:45+07', false);
INSERT INTO public.journals VALUES (13927, 4041, 'Issue', 40, NULL, '2021-04-10 07:19:46+07', false);
INSERT INTO public.journals VALUES (13928, 4049, 'Issue', 40, NULL, '2021-04-10 07:19:46+07', false);
INSERT INTO public.journals VALUES (13929, 3948, 'Issue', 40, NULL, '2021-04-10 15:37:03+07', false);
INSERT INTO public.journals VALUES (13930, 3966, 'Issue', 33, NULL, '2021-04-12 08:28:48+07', false);
INSERT INTO public.journals VALUES (13931, 4012, 'Issue', 33, NULL, '2021-04-12 08:29:18+07', false);
INSERT INTO public.journals VALUES (13932, 4026, 'Issue', 33, NULL, '2021-04-12 08:29:29+07', false);
INSERT INTO public.journals VALUES (13933, 3933, 'Issue', 33, NULL, '2021-04-12 08:29:55+07', false);
INSERT INTO public.journals VALUES (13934, 4108, 'Issue', 5, NULL, '2021-04-12 08:41:29+07', false);
INSERT INTO public.journals VALUES (13935, 4109, 'Issue', 5, NULL, '2021-04-12 08:41:29+07', false);
INSERT INTO public.journals VALUES (13936, 4110, 'Issue', 5, NULL, '2021-04-12 08:41:29+07', false);
INSERT INTO public.journals VALUES (13937, 4111, 'Issue', 5, NULL, '2021-04-12 08:41:29+07', false);
INSERT INTO public.journals VALUES (13938, 4117, 'Issue', 33, '', '2021-04-12 08:42:05+07', false);
INSERT INTO public.journals VALUES (13939, 4118, 'Issue', 33, '', '2021-04-12 08:45:15+07', false);
INSERT INTO public.journals VALUES (13940, 4117, 'Issue', 33, '', '2021-04-12 08:45:34+07', false);
INSERT INTO public.journals VALUES (13941, 4109, 'Issue', 5, '', '2021-04-12 08:47:34+07', false);
INSERT INTO public.journals VALUES (13942, 4110, 'Issue', 5, '', '2021-04-12 08:47:34+07', false);
INSERT INTO public.journals VALUES (13943, 4111, 'Issue', 5, '', '2021-04-12 08:47:47+07', false);
INSERT INTO public.journals VALUES (13944, 3914, 'Issue', 40, '', '2021-04-12 08:54:59+07', false);
INSERT INTO public.journals VALUES (13945, 3914, 'Issue', 40, '', '2021-04-12 08:57:00+07', false);
INSERT INTO public.journals VALUES (13946, 3915, 'Issue', 40, NULL, '2021-04-12 08:57:47+07', false);
INSERT INTO public.journals VALUES (13947, 3916, 'Issue', 40, NULL, '2021-04-12 08:57:47+07', false);
INSERT INTO public.journals VALUES (13948, 3918, 'Issue', 40, NULL, '2021-04-12 08:57:47+07', false);
INSERT INTO public.journals VALUES (13949, 3945, 'Issue', 40, NULL, '2021-04-12 08:57:58+07', false);
INSERT INTO public.journals VALUES (13950, 4002, 'Issue', 40, NULL, '2021-04-12 08:59:12+07', false);
INSERT INTO public.journals VALUES (13951, 4087, 'Issue', 15, NULL, '2021-04-12 09:09:20+07', false);
INSERT INTO public.journals VALUES (13952, 4088, 'Issue', 15, NULL, '2021-04-12 09:10:07+07', false);
INSERT INTO public.journals VALUES (13953, 4089, 'Issue', 15, NULL, '2021-04-12 09:10:07+07', false);
INSERT INTO public.journals VALUES (13954, 4092, 'Issue', 15, NULL, '2021-04-12 09:10:07+07', false);
INSERT INTO public.journals VALUES (13955, 4095, 'Issue', 15, NULL, '2021-04-12 09:10:07+07', false);
INSERT INTO public.journals VALUES (13956, 4097, 'Issue', 15, NULL, '2021-04-12 09:10:07+07', false);
INSERT INTO public.journals VALUES (13957, 4098, 'Issue', 15, NULL, '2021-04-12 09:10:08+07', false);
INSERT INTO public.journals VALUES (13958, 4099, 'Issue', 15, NULL, '2021-04-12 09:10:08+07', false);
INSERT INTO public.journals VALUES (13959, 4100, 'Issue', 15, NULL, '2021-04-12 09:10:08+07', false);
INSERT INTO public.journals VALUES (13960, 4087, 'Issue', 15, NULL, '2021-04-12 09:10:23+07', false);
INSERT INTO public.journals VALUES (13961, 4088, 'Issue', 15, NULL, '2021-04-12 09:10:23+07', false);
INSERT INTO public.journals VALUES (13962, 4089, 'Issue', 15, NULL, '2021-04-12 09:10:23+07', false);
INSERT INTO public.journals VALUES (13963, 4092, 'Issue', 15, NULL, '2021-04-12 09:10:23+07', false);
INSERT INTO public.journals VALUES (13964, 4095, 'Issue', 15, NULL, '2021-04-12 09:10:23+07', false);
INSERT INTO public.journals VALUES (13965, 4097, 'Issue', 15, NULL, '2021-04-12 09:10:24+07', false);
INSERT INTO public.journals VALUES (13966, 4098, 'Issue', 15, NULL, '2021-04-12 09:10:24+07', false);
INSERT INTO public.journals VALUES (13967, 4099, 'Issue', 15, NULL, '2021-04-12 09:10:24+07', false);
INSERT INTO public.journals VALUES (13968, 4100, 'Issue', 15, NULL, '2021-04-12 09:10:24+07', false);
INSERT INTO public.journals VALUES (13969, 3998, 'Issue', 40, NULL, '2021-04-12 10:15:23+07', false);
INSERT INTO public.journals VALUES (13970, 3999, 'Issue', 40, NULL, '2021-04-12 10:15:23+07', false);
INSERT INTO public.journals VALUES (13971, 4123, 'Issue', 41, NULL, '2021-04-12 14:14:14+07', false);
INSERT INTO public.journals VALUES (13972, 4121, 'Issue', 41, NULL, '2021-04-12 14:14:37+07', false);
INSERT INTO public.journals VALUES (13973, 4122, 'Issue', 41, NULL, '2021-04-12 14:14:37+07', false);
INSERT INTO public.journals VALUES (13974, 4123, 'Issue', 41, NULL, '2021-04-12 14:14:37+07', false);
INSERT INTO public.journals VALUES (13975, 4125, 'Issue', 41, NULL, '2021-04-12 14:17:16+07', false);
INSERT INTO public.journals VALUES (13976, 3914, 'Issue', 40, NULL, '2021-04-12 14:52:33+07', false);
INSERT INTO public.journals VALUES (13977, 3919, 'Issue', 40, NULL, '2021-04-12 14:52:49+07', false);
INSERT INTO public.journals VALUES (13978, 3914, 'Issue', 40, NULL, '2021-04-12 14:53:05+07', false);
INSERT INTO public.journals VALUES (13979, 4009, 'Issue', 40, NULL, '2021-04-12 15:00:13+07', false);
INSERT INTO public.journals VALUES (13980, 3972, 'Issue', 40, NULL, '2021-04-12 15:19:27+07', false);
INSERT INTO public.journals VALUES (13981, 3974, 'Issue', 40, NULL, '2021-04-12 15:19:27+07', false);
INSERT INTO public.journals VALUES (13982, 3975, 'Issue', 40, NULL, '2021-04-12 15:19:27+07', false);
INSERT INTO public.journals VALUES (13983, 3981, 'Issue', 40, NULL, '2021-04-12 15:19:27+07', false);
INSERT INTO public.journals VALUES (13984, 3984, 'Issue', 40, NULL, '2021-04-12 15:19:28+07', false);
INSERT INTO public.journals VALUES (13985, 3985, 'Issue', 40, NULL, '2021-04-12 15:24:37+07', false);
INSERT INTO public.journals VALUES (13986, 3987, 'Issue', 40, NULL, '2021-04-12 15:24:38+07', false);
INSERT INTO public.journals VALUES (13987, 3988, 'Issue', 40, NULL, '2021-04-12 15:24:38+07', false);
INSERT INTO public.journals VALUES (13988, 4010, 'Issue', 40, NULL, '2021-04-12 15:34:06+07', false);
INSERT INTO public.journals VALUES (13989, 4017, 'Issue', 40, NULL, '2021-04-12 15:34:06+07', false);
INSERT INTO public.journals VALUES (13990, 3954, 'Issue', 40, NULL, '2021-04-12 15:40:40+07', false);
INSERT INTO public.journals VALUES (13991, 3959, 'Issue', 40, NULL, '2021-04-12 15:41:44+07', false);
INSERT INTO public.journals VALUES (13992, 3960, 'Issue', 40, NULL, '2021-04-12 15:41:44+07', false);
INSERT INTO public.journals VALUES (13993, 4021, 'Issue', 40, NULL, '2021-04-12 15:48:10+07', false);
INSERT INTO public.journals VALUES (13994, 4022, 'Issue', 40, NULL, '2021-04-12 15:48:10+07', false);
INSERT INTO public.journals VALUES (13995, 4023, 'Issue', 40, NULL, '2021-04-12 15:48:11+07', false);
INSERT INTO public.journals VALUES (13996, 4024, 'Issue', 40, NULL, '2021-04-12 15:48:11+07', false);
INSERT INTO public.journals VALUES (13997, 4025, 'Issue', 40, NULL, '2021-04-12 15:48:11+07', false);
INSERT INTO public.journals VALUES (13998, 4020, 'Issue', 40, '', '2021-04-12 15:48:36+07', false);
INSERT INTO public.journals VALUES (13999, 4131, 'Issue', 5, NULL, '2021-04-14 08:39:58+07', false);
INSERT INTO public.journals VALUES (14000, 4132, 'Issue', 5, NULL, '2021-04-14 08:39:58+07', false);
INSERT INTO public.journals VALUES (14001, 4133, 'Issue', 5, NULL, '2021-04-14 08:39:58+07', false);
INSERT INTO public.journals VALUES (14002, 4139, 'Issue', 5, NULL, '2021-04-14 08:39:58+07', false);
INSERT INTO public.journals VALUES (14003, 4136, 'Issue', 5, NULL, '2021-04-14 08:49:57+07', false);
INSERT INTO public.journals VALUES (14004, 4137, 'Issue', 5, NULL, '2021-04-14 08:49:57+07', false);
INSERT INTO public.journals VALUES (14006, 4136, 'Issue', 5, NULL, '2021-04-14 08:50:31+07', false);
INSERT INTO public.journals VALUES (14007, 4137, 'Issue', 5, NULL, '2021-04-14 08:50:31+07', false);
INSERT INTO public.journals VALUES (14009, 4131, 'Issue', 5, NULL, '2021-04-14 08:50:53+07', false);
INSERT INTO public.journals VALUES (14010, 4132, 'Issue', 5, NULL, '2021-04-14 08:50:53+07', false);
INSERT INTO public.journals VALUES (14011, 4133, 'Issue', 5, NULL, '2021-04-14 08:50:54+07', false);
INSERT INTO public.journals VALUES (14012, 4139, 'Issue', 5, NULL, '2021-04-14 08:50:54+07', false);
INSERT INTO public.journals VALUES (14013, 4134, 'Issue', 5, NULL, '2021-04-14 08:51:09+07', false);
INSERT INTO public.journals VALUES (14014, 4135, 'Issue', 5, NULL, '2021-04-14 08:51:09+07', false);
INSERT INTO public.journals VALUES (14015, 4134, 'Issue', 5, NULL, '2021-04-14 08:51:16+07', false);
INSERT INTO public.journals VALUES (14016, 4135, 'Issue', 5, NULL, '2021-04-14 08:51:16+07', false);
INSERT INTO public.journals VALUES (14017, 4138, 'Issue', 5, NULL, '2021-04-14 08:51:28+07', false);
INSERT INTO public.journals VALUES (14018, 4138, 'Issue', 5, NULL, '2021-04-14 08:51:34+07', false);
INSERT INTO public.journals VALUES (14019, 4111, 'Issue', 5, '', '2021-04-14 08:52:56+07', false);
INSERT INTO public.journals VALUES (14020, 4132, 'Issue', 5, '', '2021-04-14 01:54:19+07', false);
INSERT INTO public.journals VALUES (14021, 4131, 'Issue', 5, '', '2021-04-14 01:54:34+07', false);
INSERT INTO public.journals VALUES (14022, 4133, 'Issue', 5, '', '2021-04-14 01:55:19+07', false);
INSERT INTO public.journals VALUES (14023, 4134, 'Issue', 5, '', '2021-04-14 01:55:33+07', false);
INSERT INTO public.journals VALUES (14024, 4135, 'Issue', 5, '', '2021-04-14 01:55:54+07', false);
INSERT INTO public.journals VALUES (14025, 4136, 'Issue', 5, '', '2021-04-14 01:56:19+07', false);
INSERT INTO public.journals VALUES (14026, 4137, 'Issue', 5, '', '2021-04-14 01:56:19+07', false);
INSERT INTO public.journals VALUES (14027, 4138, 'Issue', 5, '', '2021-04-14 01:56:35+07', false);
INSERT INTO public.journals VALUES (14028, 4139, 'Issue', 5, '', '2021-04-14 01:56:45+07', false);
INSERT INTO public.journals VALUES (14029, 4134, 'Issue', 39, NULL, '2021-04-15 02:23:44+07', false);
INSERT INTO public.journals VALUES (14030, 4145, 'Issue', 39, NULL, '2021-04-15 02:23:45+07', false);
INSERT INTO public.journals VALUES (14031, 4134, 'Issue', 39, NULL, '2021-04-15 02:23:56+07', false);
INSERT INTO public.journals VALUES (14032, 4135, 'Issue', 39, NULL, '2021-04-15 02:24:15+07', false);
INSERT INTO public.journals VALUES (14033, 4135, 'Issue', 39, '', '2021-04-15 02:24:27+07', false);
INSERT INTO public.journals VALUES (14034, 4074, 'Issue', 40, NULL, '2021-04-15 04:18:23+07', false);
INSERT INTO public.journals VALUES (14035, 4087, 'Issue', 15, '', '2021-04-15 16:46:11+07', false);
INSERT INTO public.journals VALUES (14036, 4088, 'Issue', 15, '', '2021-04-15 16:46:11+07', false);
INSERT INTO public.journals VALUES (14037, 4089, 'Issue', 15, '', '2021-04-15 16:46:11+07', false);
INSERT INTO public.journals VALUES (14038, 4090, 'Issue', 15, '', '2021-04-15 16:46:11+07', false);
INSERT INTO public.journals VALUES (14039, 4091, 'Issue', 15, '', '2021-04-15 16:46:11+07', false);
INSERT INTO public.journals VALUES (14040, 4092, 'Issue', 15, '', '2021-04-15 16:46:11+07', false);
INSERT INTO public.journals VALUES (14041, 4093, 'Issue', 15, '', '2021-04-15 16:46:11+07', false);
INSERT INTO public.journals VALUES (14042, 4094, 'Issue', 15, '', '2021-04-15 16:46:12+07', false);
INSERT INTO public.journals VALUES (14043, 4095, 'Issue', 15, '', '2021-04-15 16:46:12+07', false);
INSERT INTO public.journals VALUES (14044, 4096, 'Issue', 15, '', '2021-04-15 16:46:12+07', false);
INSERT INTO public.journals VALUES (14047, 4125, 'Issue', 41, '', '2021-04-16 02:13:36+07', false);
INSERT INTO public.journals VALUES (14048, 4126, 'Issue', 41, NULL, '2021-04-16 02:14:06+07', false);
INSERT INTO public.journals VALUES (14049, 4126, 'Issue', 41, NULL, '2021-04-16 02:14:13+07', false);
INSERT INTO public.journals VALUES (14050, 4109, 'Issue', 8, NULL, '2021-04-16 02:28:06+07', false);
INSERT INTO public.journals VALUES (14051, 4110, 'Issue', 8, NULL, '2021-04-16 02:28:06+07', false);
INSERT INTO public.journals VALUES (14052, 4109, 'Issue', 8, NULL, '2021-04-16 02:28:15+07', false);
INSERT INTO public.journals VALUES (14053, 4110, 'Issue', 8, NULL, '2021-04-16 02:28:15+07', false);
INSERT INTO public.journals VALUES (14054, 4131, 'Issue', 8, NULL, '2021-04-16 02:28:31+07', false);
INSERT INTO public.journals VALUES (14055, 4131, 'Issue', 8, NULL, '2021-04-16 02:28:37+07', false);
INSERT INTO public.journals VALUES (14056, 4111, 'Issue', 39, '', '2021-04-17 16:00:24+07', false);
INSERT INTO public.journals VALUES (14057, 4152, 'Issue', 39, '', '2021-04-17 16:10:20+07', false);
INSERT INTO public.journals VALUES (14058, 4153, 'Issue', 39, '', '2021-04-17 16:10:21+07', false);
INSERT INTO public.journals VALUES (14059, 4154, 'Issue', 39, '', '2021-04-17 16:10:22+07', false);
INSERT INTO public.journals VALUES (14060, 4155, 'Issue', 39, '', '2021-04-17 16:10:22+07', false);
INSERT INTO public.journals VALUES (14061, 4152, 'Issue', 39, NULL, '2021-04-17 16:10:32+07', false);
INSERT INTO public.journals VALUES (14062, 4153, 'Issue', 39, NULL, '2021-04-17 16:10:32+07', false);
INSERT INTO public.journals VALUES (14063, 4154, 'Issue', 39, NULL, '2021-04-17 16:10:32+07', false);
INSERT INTO public.journals VALUES (14064, 4155, 'Issue', 39, NULL, '2021-04-17 16:10:32+07', false);
INSERT INTO public.journals VALUES (14065, 4090, 'Issue', 15, NULL, '2021-04-19 01:45:24+07', false);
INSERT INTO public.journals VALUES (14066, 4091, 'Issue', 15, NULL, '2021-04-19 01:45:24+07', false);
INSERT INTO public.journals VALUES (14067, 4093, 'Issue', 15, NULL, '2021-04-19 01:45:25+07', false);
INSERT INTO public.journals VALUES (14068, 4094, 'Issue', 15, NULL, '2021-04-19 01:45:25+07', false);
INSERT INTO public.journals VALUES (14069, 4090, 'Issue', 15, NULL, '2021-04-19 01:45:39+07', false);
INSERT INTO public.journals VALUES (14070, 4091, 'Issue', 15, NULL, '2021-04-19 01:45:39+07', false);
INSERT INTO public.journals VALUES (14071, 4093, 'Issue', 15, NULL, '2021-04-19 01:45:39+07', false);
INSERT INTO public.journals VALUES (14072, 4094, 'Issue', 15, NULL, '2021-04-19 01:45:39+07', false);
INSERT INTO public.journals VALUES (14073, 4096, 'Issue', 15, NULL, '2021-04-19 01:46:44+07', false);
INSERT INTO public.journals VALUES (14074, 4096, 'Issue', 15, NULL, '2021-04-19 01:46:59+07', false);
INSERT INTO public.journals VALUES (14075, 3943, 'Issue', 15, NULL, '2021-04-19 01:47:32+07', false);
INSERT INTO public.journals VALUES (14076, 4157, 'Issue', 15, '', '2021-04-19 01:54:04+07', false);
INSERT INTO public.journals VALUES (14077, 4158, 'Issue', 15, NULL, '2021-04-19 01:54:17+07', false);
INSERT INTO public.journals VALUES (14078, 4158, 'Issue', 15, NULL, '2021-04-19 01:54:22+07', false);
INSERT INTO public.journals VALUES (14079, 4156, 'Issue', 15, NULL, '2021-04-19 01:54:41+07', false);
INSERT INTO public.journals VALUES (14080, 4157, 'Issue', 15, NULL, '2021-04-19 01:55:46+07', false);
INSERT INTO public.journals VALUES (14081, 4156, 'Issue', 15, '', '2021-04-19 01:57:22+07', false);
INSERT INTO public.journals VALUES (14082, 4157, 'Issue', 15, '', '2021-04-19 01:57:22+07', false);
INSERT INTO public.journals VALUES (14083, 4158, 'Issue', 15, '', '2021-04-19 01:57:22+07', false);
INSERT INTO public.journals VALUES (14084, 4160, 'Issue', 15, '', '2021-04-19 02:01:00+07', false);
INSERT INTO public.journals VALUES (14085, 4160, 'Issue', 15, '', '2021-04-19 02:01:48+07', false);
INSERT INTO public.journals VALUES (14086, 4160, 'Issue', 15, '', '2021-04-19 02:02:20+07', false);
INSERT INTO public.journals VALUES (14087, 4162, 'Issue', 37, '', '2021-04-19 09:03:36+07', false);
INSERT INTO public.journals VALUES (14088, 4163, 'Issue', 37, '', '2021-04-19 09:04:12+07', false);
INSERT INTO public.journals VALUES (14089, 4162, 'Issue', 37, '', '2021-04-19 09:04:49+07', false);
INSERT INTO public.journals VALUES (14090, 4163, 'Issue', 37, '', '2021-04-19 09:05:15+07', false);
INSERT INTO public.journals VALUES (14091, 4164, 'Issue', 37, '', '2021-04-19 09:05:41+07', false);
INSERT INTO public.journals VALUES (14092, 4165, 'Issue', 37, '', '2021-04-19 09:05:41+07', false);
INSERT INTO public.journals VALUES (14093, 4162, 'Issue', 37, '', '2021-04-19 09:30:29+07', false);
INSERT INTO public.journals VALUES (14094, 4163, 'Issue', 37, '', '2021-04-19 09:30:29+07', false);
INSERT INTO public.journals VALUES (14095, 4164, 'Issue', 37, '', '2021-04-19 09:30:30+07', false);
INSERT INTO public.journals VALUES (14096, 4165, 'Issue', 37, '', '2021-04-19 09:30:30+07', false);
INSERT INTO public.journals VALUES (14097, 4166, 'Issue', 37, NULL, '2021-04-19 11:22:27+07', false);
INSERT INTO public.journals VALUES (14098, 4169, 'Issue', 40, '', '2021-04-20 01:40:57+07', false);
INSERT INTO public.journals VALUES (14099, 4170, 'Issue', 15, NULL, '2021-04-20 03:09:09+07', false);
INSERT INTO public.journals VALUES (14100, 4149, 'Issue', 40, '', '2021-04-20 08:43:12+07', false);
INSERT INTO public.journals VALUES (14101, 4167, 'Issue', 37, '', '2021-04-23 08:19:54+07', false);
INSERT INTO public.journals VALUES (14102, 4150, 'Issue', 40, '', '2021-04-23 08:35:51+07', false);
INSERT INTO public.journals VALUES (14103, 4160, 'Issue', 15, '', '2021-04-24 16:42:10+07', false);
INSERT INTO public.journals VALUES (14104, 4171, 'Issue', 15, '', '2021-04-24 16:42:10+07', false);
INSERT INTO public.journals VALUES (14105, 4172, 'Issue', 15, '', '2021-04-24 16:42:10+07', false);
INSERT INTO public.journals VALUES (14106, 4173, 'Issue', 15, '', '2021-04-24 16:42:10+07', false);
INSERT INTO public.journals VALUES (14107, 4173, 'Issue', 15, '', '2021-04-24 16:43:36+07', false);
INSERT INTO public.journals VALUES (14108, 4174, 'Issue', 15, NULL, '2021-04-24 16:43:55+07', false);
INSERT INTO public.journals VALUES (14109, 4127, 'Issue', 41, '', '2021-04-28 09:32:33+07', false);
INSERT INTO public.journals VALUES (14110, 4136, 'Issue', 41, NULL, '2021-04-28 09:32:50+07', false);
INSERT INTO public.journals VALUES (14111, 4137, 'Issue', 41, NULL, '2021-04-28 09:32:50+07', false);
INSERT INTO public.journals VALUES (14112, 4136, 'Issue', 41, NULL, '2021-04-28 09:32:59+07', false);
INSERT INTO public.journals VALUES (14113, 4137, 'Issue', 41, NULL, '2021-04-28 09:32:59+07', false);
INSERT INTO public.journals VALUES (14114, 4064, 'Issue', 40, NULL, '2021-04-28 09:36:04+07', false);
INSERT INTO public.journals VALUES (14115, 4065, 'Issue', 40, NULL, '2021-04-28 09:36:04+07', false);
INSERT INTO public.journals VALUES (14116, 4066, 'Issue', 40, NULL, '2021-04-28 09:36:04+07', false);
INSERT INTO public.journals VALUES (14117, 4067, 'Issue', 40, NULL, '2021-04-28 09:36:04+07', false);
INSERT INTO public.journals VALUES (14118, 4068, 'Issue', 40, NULL, '2021-04-28 09:36:04+07', false);
INSERT INTO public.journals VALUES (14119, 4069, 'Issue', 40, NULL, '2021-04-28 09:36:04+07', false);
INSERT INTO public.journals VALUES (14120, 4070, 'Issue', 40, NULL, '2021-04-28 09:36:04+07', false);
INSERT INTO public.journals VALUES (14121, 4071, 'Issue', 40, NULL, '2021-04-28 09:36:04+07', false);
INSERT INTO public.journals VALUES (14122, 4078, 'Issue', 40, NULL, '2021-04-28 09:36:04+07', false);
INSERT INTO public.journals VALUES (14123, 4107, 'Issue', 40, NULL, '2021-04-28 09:36:05+07', false);
INSERT INTO public.journals VALUES (14124, 4109, 'Issue', 40, NULL, '2021-04-28 09:36:05+07', false);
INSERT INTO public.journals VALUES (14125, 4110, 'Issue', 40, NULL, '2021-04-28 09:36:05+07', false);
INSERT INTO public.journals VALUES (14126, 4111, 'Issue', 40, NULL, '2021-04-28 09:36:05+07', false);
INSERT INTO public.journals VALUES (14127, 4112, 'Issue', 40, NULL, '2021-04-28 09:36:05+07', false);
INSERT INTO public.journals VALUES (14128, 4121, 'Issue', 40, NULL, '2021-04-28 09:36:05+07', false);
INSERT INTO public.journals VALUES (14129, 4122, 'Issue', 40, NULL, '2021-04-28 09:36:05+07', false);
INSERT INTO public.journals VALUES (14130, 4123, 'Issue', 40, NULL, '2021-04-28 09:36:05+07', false);
INSERT INTO public.journals VALUES (14131, 4124, 'Issue', 40, NULL, '2021-04-28 09:36:05+07', false);
INSERT INTO public.journals VALUES (14132, 4125, 'Issue', 40, NULL, '2021-04-28 09:36:06+07', false);
INSERT INTO public.journals VALUES (14133, 4126, 'Issue', 40, NULL, '2021-04-28 09:36:06+07', false);
INSERT INTO public.journals VALUES (14134, 4128, 'Issue', 40, NULL, '2021-04-28 09:36:06+07', false);
INSERT INTO public.journals VALUES (14135, 4131, 'Issue', 40, NULL, '2021-04-28 09:36:06+07', false);
INSERT INTO public.journals VALUES (14136, 4134, 'Issue', 40, NULL, '2021-04-28 09:36:06+07', false);
INSERT INTO public.journals VALUES (14137, 4135, 'Issue', 40, NULL, '2021-04-28 09:36:06+07', false);
INSERT INTO public.journals VALUES (14138, 4145, 'Issue', 40, NULL, '2021-04-28 09:36:06+07', false);
INSERT INTO public.journals VALUES (14139, 4148, 'Issue', 41, '', '2021-04-28 02:41:51+07', false);
INSERT INTO public.journals VALUES (14140, 4130, 'Issue', 33, '', '2021-04-28 13:43:45+07', false);
INSERT INTO public.journals VALUES (14141, 4120, 'Issue', 33, NULL, '2021-04-28 13:43:55+07', false);
INSERT INTO public.journals VALUES (14142, 4119, 'Issue', 33, NULL, '2021-04-28 13:44:01+07', false);
INSERT INTO public.journals VALUES (14143, 4118, 'Issue', 33, NULL, '2021-04-28 13:44:07+07', false);
INSERT INTO public.journals VALUES (14144, 4117, 'Issue', 33, NULL, '2021-04-28 13:44:14+07', false);
INSERT INTO public.journals VALUES (14145, 4116, 'Issue', 33, NULL, '2021-04-28 13:44:23+07', false);
INSERT INTO public.journals VALUES (14146, 4183, 'Issue', 33, '', '2021-04-28 13:48:15+07', false);
INSERT INTO public.journals VALUES (14147, 4182, 'Issue', 33, NULL, '2021-04-28 13:48:28+07', false);
INSERT INTO public.journals VALUES (14148, 4184, 'Issue', 33, NULL, '2021-04-28 13:48:35+07', false);
INSERT INTO public.journals VALUES (14149, 4185, 'Issue', 40, '', '2021-05-03 14:22:37+07', false);
INSERT INTO public.journals VALUES (14150, 4186, 'Issue', 40, '', '2021-05-03 14:22:37+07', false);
INSERT INTO public.journals VALUES (14151, 4187, 'Issue', 40, '', '2021-05-03 14:22:37+07', false);
INSERT INTO public.journals VALUES (14152, 4185, 'Issue', 40, NULL, '2021-05-03 14:22:52+07', false);
INSERT INTO public.journals VALUES (14153, 4185, 'Issue', 40, NULL, '2021-05-03 14:23:04+07', false);
INSERT INTO public.journals VALUES (14154, 4187, 'Issue', 40, '', '2021-05-05 08:42:48+07', false);
INSERT INTO public.journals VALUES (14155, 4151, 'Issue', 39, NULL, '2021-05-05 09:00:35+07', false);
INSERT INTO public.journals VALUES (14156, 4151, 'Issue', 39, '', '2021-05-05 09:00:50+07', false);
INSERT INTO public.journals VALUES (14157, 4193, 'Issue', 40, NULL, '2021-05-06 13:21:32+07', false);
INSERT INTO public.journals VALUES (14158, 4188, 'Issue', 40, '', '2021-05-07 01:12:28+07', false);
INSERT INTO public.journals VALUES (14159, 4186, 'Issue', 40, NULL, '2021-05-07 01:13:42+07', false);
INSERT INTO public.journals VALUES (14160, 4189, 'Issue', 40, NULL, '2021-05-07 01:13:42+07', false);
INSERT INTO public.journals VALUES (14161, 4191, 'Issue', 40, NULL, '2021-05-07 01:13:42+07', false);
INSERT INTO public.journals VALUES (14162, 4192, 'Issue', 40, NULL, '2021-05-07 01:13:42+07', false);
INSERT INTO public.journals VALUES (14163, 4186, 'Issue', 40, NULL, '2021-05-07 01:14:10+07', false);
INSERT INTO public.journals VALUES (14164, 4189, 'Issue', 40, NULL, '2021-05-07 01:14:11+07', false);
INSERT INTO public.journals VALUES (14165, 4191, 'Issue', 40, NULL, '2021-05-07 01:14:11+07', false);
INSERT INTO public.journals VALUES (14166, 4192, 'Issue', 40, NULL, '2021-05-07 01:14:11+07', false);
INSERT INTO public.journals VALUES (14167, 4200, 'Issue', 40, '', '2021-05-07 01:23:15+07', false);
INSERT INTO public.journals VALUES (14168, 4198, 'Issue', 39, NULL, '2021-05-07 09:04:31+07', false);
INSERT INTO public.journals VALUES (14169, 4198, 'Issue', 39, NULL, '2021-05-07 09:04:38+07', false);
INSERT INTO public.journals VALUES (14170, 4199, 'Issue', 39, NULL, '2021-05-07 10:18:06+07', false);
INSERT INTO public.journals VALUES (14171, 4199, 'Issue', 39, NULL, '2021-05-07 10:18:15+07', false);
INSERT INTO public.journals VALUES (14172, 4177, 'Issue', 12, '', '2021-05-07 10:34:05+07', false);
INSERT INTO public.journals VALUES (14173, 4202, 'Issue', 40, '', '2021-05-07 15:47:34+07', false);
INSERT INTO public.journals VALUES (14174, 4203, 'Issue', 40, '', '2021-05-07 15:47:34+07', false);
INSERT INTO public.journals VALUES (14175, 4204, 'Issue', 40, '', '2021-05-07 15:47:34+07', false);
INSERT INTO public.journals VALUES (14176, 4197, 'Issue', 40, '', '2021-05-07 15:48:23+07', false);
INSERT INTO public.journals VALUES (14177, 4200, 'Issue', 40, '', '2021-05-07 15:48:24+07', false);
INSERT INTO public.journals VALUES (14178, 4201, 'Issue', 40, '', '2021-05-07 15:48:24+07', false);
INSERT INTO public.journals VALUES (14179, 4205, 'Issue', 40, '', '2021-05-07 15:48:24+07', false);
INSERT INTO public.journals VALUES (14180, 4206, 'Issue', 40, NULL, '2021-05-10 08:31:53+07', false);
INSERT INTO public.journals VALUES (14181, 4203, 'Issue', 39, NULL, '2021-05-10 09:29:40+07', false);
INSERT INTO public.journals VALUES (14182, 4203, 'Issue', 39, NULL, '2021-05-10 09:29:52+07', false);
INSERT INTO public.journals VALUES (14183, 4202, 'Issue', 39, NULL, '2021-05-10 09:30:22+07', false);
INSERT INTO public.journals VALUES (14184, 4202, 'Issue', 39, NULL, '2021-05-10 09:30:36+07', false);
INSERT INTO public.journals VALUES (14185, 4207, 'Issue', 39, '', '2021-05-10 02:40:22+07', false);
INSERT INTO public.journals VALUES (14186, 4204, 'Issue', 39, NULL, '2021-05-10 02:41:42+07', false);
INSERT INTO public.journals VALUES (14187, 4204, 'Issue', 39, NULL, '2021-05-10 02:53:36+07', false);
INSERT INTO public.journals VALUES (14188, 4207, 'Issue', 39, NULL, '2021-05-10 02:53:36+07', false);
INSERT INTO public.journals VALUES (14189, 4208, 'Issue', 39, NULL, '2021-05-10 02:53:37+07', false);
INSERT INTO public.journals VALUES (14190, 4209, 'Issue', 39, NULL, '2021-05-10 02:53:37+07', false);
INSERT INTO public.journals VALUES (14191, 4210, 'Issue', 39, NULL, '2021-05-10 02:53:37+07', false);
INSERT INTO public.journals VALUES (14192, 4204, 'Issue', 39, '', '2021-05-10 02:54:03+07', false);
INSERT INTO public.journals VALUES (14193, 4187, 'Issue', 39, NULL, '2021-05-10 03:09:18+07', false);
INSERT INTO public.journals VALUES (14194, 4188, 'Issue', 39, NULL, '2021-05-10 03:09:19+07', false);
INSERT INTO public.journals VALUES (14195, 4190, 'Issue', 39, NULL, '2021-05-10 03:09:19+07', false);
INSERT INTO public.journals VALUES (14196, 4194, 'Issue', 39, NULL, '2021-05-10 03:09:19+07', false);
INSERT INTO public.journals VALUES (14197, 4195, 'Issue', 39, NULL, '2021-05-10 03:09:19+07', false);
INSERT INTO public.journals VALUES (14198, 4196, 'Issue', 39, NULL, '2021-05-10 03:09:19+07', false);
INSERT INTO public.journals VALUES (14199, 4197, 'Issue', 39, NULL, '2021-05-10 03:09:19+07', false);
INSERT INTO public.journals VALUES (14200, 4200, 'Issue', 39, NULL, '2021-05-10 03:09:19+07', false);
INSERT INTO public.journals VALUES (14201, 4201, 'Issue', 39, NULL, '2021-05-10 03:09:19+07', false);
INSERT INTO public.journals VALUES (14202, 4205, 'Issue', 39, NULL, '2021-05-10 03:09:19+07', false);
INSERT INTO public.journals VALUES (14203, 4187, 'Issue', 39, '', '2021-05-10 03:09:55+07', false);
INSERT INTO public.journals VALUES (14204, 4188, 'Issue', 39, '', '2021-05-10 03:09:55+07', false);
INSERT INTO public.journals VALUES (14205, 4190, 'Issue', 39, '', '2021-05-10 03:09:56+07', false);
INSERT INTO public.journals VALUES (14206, 4194, 'Issue', 39, '', '2021-05-10 03:09:56+07', false);
INSERT INTO public.journals VALUES (14207, 4195, 'Issue', 39, '', '2021-05-10 03:09:56+07', false);
INSERT INTO public.journals VALUES (14208, 4196, 'Issue', 39, '', '2021-05-10 03:09:56+07', false);
INSERT INTO public.journals VALUES (14209, 4197, 'Issue', 39, '', '2021-05-10 03:09:56+07', false);
INSERT INTO public.journals VALUES (14210, 4200, 'Issue', 39, '', '2021-05-10 03:09:56+07', false);
INSERT INTO public.journals VALUES (14211, 4201, 'Issue', 39, '', '2021-05-10 10:09:57+07', false);
INSERT INTO public.journals VALUES (14212, 4205, 'Issue', 39, '', '2021-05-10 10:09:57+07', false);
INSERT INTO public.journals VALUES (14213, 4188, 'Issue', 39, '', '2021-05-10 10:13:24+07', false);
INSERT INTO public.journals VALUES (14214, 4194, 'Issue', 39, NULL, '2021-05-10 10:15:38+07', false);
INSERT INTO public.journals VALUES (14215, 4194, 'Issue', 39, NULL, '2021-05-10 10:15:46+07', false);
INSERT INTO public.journals VALUES (14216, 4187, 'Issue', 39, NULL, '2021-05-10 10:17:00+07', false);
INSERT INTO public.journals VALUES (14217, 4188, 'Issue', 39, NULL, '2021-05-10 10:17:00+07', false);
INSERT INTO public.journals VALUES (14218, 4190, 'Issue', 39, NULL, '2021-05-10 10:17:00+07', false);
INSERT INTO public.journals VALUES (14219, 4195, 'Issue', 39, NULL, '2021-05-10 10:17:00+07', false);
INSERT INTO public.journals VALUES (14220, 4196, 'Issue', 39, NULL, '2021-05-10 10:17:00+07', false);
INSERT INTO public.journals VALUES (14221, 4197, 'Issue', 39, NULL, '2021-05-10 10:17:00+07', false);
INSERT INTO public.journals VALUES (14222, 4200, 'Issue', 39, NULL, '2021-05-10 10:17:00+07', false);
INSERT INTO public.journals VALUES (14223, 4201, 'Issue', 39, NULL, '2021-05-10 10:17:00+07', false);
INSERT INTO public.journals VALUES (14224, 4205, 'Issue', 39, NULL, '2021-05-10 10:17:01+07', false);
INSERT INTO public.journals VALUES (14225, 4206, 'Issue', 39, NULL, '2021-05-10 10:17:01+07', false);
INSERT INTO public.journals VALUES (14226, 4194, 'Issue', 39, NULL, '2021-05-10 10:17:20+07', false);
INSERT INTO public.journals VALUES (14227, 4187, 'Issue', 39, NULL, '2021-05-10 10:17:54+07', false);
INSERT INTO public.journals VALUES (14228, 4187, 'Issue', 39, NULL, '2021-05-10 10:18:04+07', false);
INSERT INTO public.journals VALUES (14229, 4187, 'Issue', 39, NULL, '2021-05-10 10:36:54+07', false);
INSERT INTO public.journals VALUES (14230, 4187, 'Issue', 39, NULL, '2021-05-10 10:36:59+07', false);
INSERT INTO public.journals VALUES (14231, 4204, 'Issue', 39, NULL, '2021-05-10 15:31:33+07', false);
INSERT INTO public.journals VALUES (14232, 4211, 'Issue', 39, NULL, '2021-05-10 15:31:40+07', false);
INSERT INTO public.journals VALUES (14233, 4211, 'Issue', 39, NULL, '2021-05-10 15:31:46+07', false);
INSERT INTO public.journals VALUES (14234, 4204, 'Issue', 41, '', '2021-05-10 15:47:12+07', false);
INSERT INTO public.journals VALUES (14235, 4207, 'Issue', 41, '', '2021-05-10 15:47:56+07', false);
INSERT INTO public.journals VALUES (14236, 4214, 'Issue', 41, NULL, '2021-05-10 15:49:33+07', false);
INSERT INTO public.journals VALUES (14237, 4212, 'Issue', 41, '', '2021-05-10 15:50:22+07', false);
INSERT INTO public.journals VALUES (14238, 4208, 'Issue', 41, '', '2021-05-10 16:54:54+07', false);
INSERT INTO public.journals VALUES (14239, 4132, 'Issue', 40, NULL, '2021-05-11 03:06:29+07', false);
INSERT INTO public.journals VALUES (14240, 4133, 'Issue', 40, NULL, '2021-05-11 03:06:29+07', false);
INSERT INTO public.journals VALUES (14241, 4138, 'Issue', 40, NULL, '2021-05-11 03:06:29+07', false);
INSERT INTO public.journals VALUES (14242, 4139, 'Issue', 40, NULL, '2021-05-11 03:06:29+07', false);
INSERT INTO public.journals VALUES (14243, 4149, 'Issue', 40, NULL, '2021-05-11 03:06:29+07', false);
INSERT INTO public.journals VALUES (14244, 4150, 'Issue', 40, NULL, '2021-05-11 03:06:29+07', false);
INSERT INTO public.journals VALUES (14245, 4168, 'Issue', 40, NULL, '2021-05-11 03:06:29+07', false);
INSERT INTO public.journals VALUES (14246, 4169, 'Issue', 40, NULL, '2021-05-11 03:06:30+07', false);
INSERT INTO public.journals VALUES (14247, 4215, 'Issue', 40, NULL, '2021-05-11 03:06:30+07', false);
INSERT INTO public.journals VALUES (14248, 4216, 'Issue', 40, NULL, '2021-05-11 03:06:30+07', false);
INSERT INTO public.journals VALUES (14249, 4149, 'Issue', 40, NULL, '2021-05-11 03:07:07+07', false);
INSERT INTO public.journals VALUES (14250, 4209, 'Issue', 41, NULL, '2021-05-12 15:59:23+07', false);
INSERT INTO public.journals VALUES (14251, 4213, 'Issue', 41, NULL, '2021-05-12 15:59:33+07', false);
INSERT INTO public.journals VALUES (14252, 4213, 'Issue', 41, NULL, '2021-05-12 15:59:44+07', false);
INSERT INTO public.journals VALUES (14253, 4209, 'Issue', 41, NULL, '2021-05-12 15:59:59+07', false);
INSERT INTO public.journals VALUES (14254, 4219, 'Issue', 40, NULL, '2021-05-13 11:10:15+07', false);
INSERT INTO public.journals VALUES (14255, 4220, 'Issue', 40, NULL, '2021-05-13 11:10:15+07', false);
INSERT INTO public.journals VALUES (14256, 4219, 'Issue', 40, NULL, '2021-05-13 11:10:26+07', false);
INSERT INTO public.journals VALUES (14257, 4220, 'Issue', 40, NULL, '2021-05-13 11:10:27+07', false);
INSERT INTO public.journals VALUES (14258, 4216, 'Issue', 41, '', '2021-05-13 14:34:29+07', false);
INSERT INTO public.journals VALUES (14259, 4133, 'Issue', 40, NULL, '2021-05-14 01:13:28+07', false);
INSERT INTO public.journals VALUES (14260, 4139, 'Issue', 40, NULL, '2021-05-14 01:13:28+07', false);
INSERT INTO public.journals VALUES (14261, 4150, 'Issue', 40, NULL, '2021-05-14 01:13:28+07', false);
INSERT INTO public.journals VALUES (14262, 4169, 'Issue', 40, NULL, '2021-05-14 01:13:29+07', false);
INSERT INTO public.journals VALUES (14263, 4133, 'Issue', 40, NULL, '2021-05-14 01:13:43+07', false);
INSERT INTO public.journals VALUES (14264, 4139, 'Issue', 40, NULL, '2021-05-14 01:13:43+07', false);
INSERT INTO public.journals VALUES (14265, 4150, 'Issue', 40, NULL, '2021-05-14 01:13:44+07', false);
INSERT INTO public.journals VALUES (14266, 4169, 'Issue', 40, NULL, '2021-05-14 01:13:44+07', false);
INSERT INTO public.journals VALUES (14267, 4226, 'Issue', 40, '', '2021-05-14 02:31:58+07', false);
INSERT INTO public.journals VALUES (14268, 4226, 'Issue', 40, '', '2021-05-14 02:33:30+07', false);
INSERT INTO public.journals VALUES (14269, 4209, 'Issue', 40, NULL, '2021-05-14 02:36:08+07', false);
INSERT INTO public.journals VALUES (14270, 4209, 'Issue', 40, NULL, '2021-05-14 02:36:27+07', false);
INSERT INTO public.journals VALUES (14271, 4230, 'Issue', 40, '', '2021-05-14 02:49:34+07', false);
INSERT INTO public.journals VALUES (14272, 4108, 'Issue', 40, NULL, '2021-05-14 03:11:05+07', false);
INSERT INTO public.journals VALUES (14273, 4127, 'Issue', 40, NULL, '2021-05-14 03:11:05+07', false);
INSERT INTO public.journals VALUES (14274, 4136, 'Issue', 40, NULL, '2021-05-14 03:11:05+07', false);
INSERT INTO public.journals VALUES (14275, 4137, 'Issue', 40, NULL, '2021-05-14 03:11:05+07', false);
INSERT INTO public.journals VALUES (14276, 4148, 'Issue', 40, NULL, '2021-05-14 03:11:05+07', false);
INSERT INTO public.journals VALUES (14277, 4151, 'Issue', 40, NULL, '2021-05-14 03:11:05+07', false);
INSERT INTO public.journals VALUES (14278, 4152, 'Issue', 40, NULL, '2021-05-14 03:11:05+07', false);
INSERT INTO public.journals VALUES (14279, 4153, 'Issue', 40, NULL, '2021-05-14 03:11:05+07', false);
INSERT INTO public.journals VALUES (14280, 4154, 'Issue', 40, NULL, '2021-05-14 03:11:05+07', false);
INSERT INTO public.journals VALUES (14281, 4155, 'Issue', 40, NULL, '2021-05-14 03:11:05+07', false);
INSERT INTO public.journals VALUES (14282, 4133, 'Issue', 40, NULL, '2021-05-14 03:11:39+07', false);
INSERT INTO public.journals VALUES (14283, 4139, 'Issue', 40, NULL, '2021-05-14 03:11:39+07', false);
INSERT INTO public.journals VALUES (14284, 4150, 'Issue', 40, NULL, '2021-05-14 03:11:39+07', false);
INSERT INTO public.journals VALUES (14285, 4169, 'Issue', 40, NULL, '2021-05-14 03:11:40+07', false);
INSERT INTO public.journals VALUES (14286, 4216, 'Issue', 40, NULL, '2021-05-14 03:11:40+07', false);
INSERT INTO public.journals VALUES (14287, 4219, 'Issue', 40, NULL, '2021-05-14 03:11:40+07', false);
INSERT INTO public.journals VALUES (14288, 4220, 'Issue', 40, NULL, '2021-05-14 03:11:40+07', false);
INSERT INTO public.journals VALUES (14289, 4188, 'Issue', 5, '', '2021-05-15 02:06:05+07', false);
INSERT INTO public.journals VALUES (14290, 4190, 'Issue', 5, '', '2021-05-15 02:06:05+07', false);
INSERT INTO public.journals VALUES (14291, 4195, 'Issue', 5, '', '2021-05-15 02:06:05+07', false);
INSERT INTO public.journals VALUES (14292, 4196, 'Issue', 5, '', '2021-05-15 02:06:06+07', false);
INSERT INTO public.journals VALUES (14293, 4197, 'Issue', 5, '', '2021-05-15 02:06:06+07', false);
INSERT INTO public.journals VALUES (14294, 4200, 'Issue', 5, '', '2021-05-15 02:06:06+07', false);
INSERT INTO public.journals VALUES (14295, 4201, 'Issue', 5, '', '2021-05-15 02:06:06+07', false);
INSERT INTO public.journals VALUES (14296, 4205, 'Issue', 5, '', '2021-05-15 02:06:06+07', false);
INSERT INTO public.journals VALUES (14297, 4206, 'Issue', 5, '', '2021-05-15 02:06:06+07', false);
INSERT INTO public.journals VALUES (14298, 4228, 'Issue', 41, '', '2021-05-15 02:11:11+07', false);
INSERT INTO public.journals VALUES (14299, 4237, 'Issue', 38, '', '2021-05-15 02:43:44+07', false);
INSERT INTO public.journals VALUES (14300, 4238, 'Issue', 38, '', '2021-05-15 02:44:01+07', false);
INSERT INTO public.journals VALUES (14301, 4240, 'Issue', 38, '', '2021-05-15 02:54:59+07', false);
INSERT INTO public.journals VALUES (14302, 4251, 'Issue', 38, '', '2021-05-15 02:57:58+07', false);
INSERT INTO public.journals VALUES (14304, 4257, 'Issue', 38, '', '2021-05-15 03:01:56+07', false);
INSERT INTO public.journals VALUES (14305, 4249, 'Issue', 38, '', '2021-05-15 03:02:22+07', false);
INSERT INTO public.journals VALUES (14306, 4255, 'Issue', 38, '', '2021-05-15 03:03:16+07', false);
INSERT INTO public.journals VALUES (14309, 4258, 'Issue', 38, '', '2021-05-15 03:05:07+07', false);
INSERT INTO public.journals VALUES (14310, 4257, 'Issue', 38, '', '2021-05-15 03:05:41+07', false);
INSERT INTO public.journals VALUES (14311, 4253, 'Issue', 38, '', '2021-05-15 03:06:14+07', false);
INSERT INTO public.journals VALUES (14313, 4259, 'Issue', 38, '', '2021-05-15 03:08:03+07', false);
INSERT INTO public.journals VALUES (14314, 4260, 'Issue', 38, '', '2021-05-15 03:09:37+07', false);
INSERT INTO public.journals VALUES (14316, 4251, 'Issue', 38, '', '2021-05-15 03:14:16+07', false);
INSERT INTO public.journals VALUES (14328, 4132, 'Issue', 39, '', '2021-05-15 03:57:37+07', false);
INSERT INTO public.journals VALUES (14329, 4138, 'Issue', 39, '', '2021-05-15 03:57:37+07', false);
INSERT INTO public.journals VALUES (14330, 4168, 'Issue', 39, '', '2021-05-15 03:57:38+07', false);
INSERT INTO public.journals VALUES (14331, 4132, 'Issue', 39, NULL, '2021-05-15 03:59:57+07', false);
INSERT INTO public.journals VALUES (14332, 4132, 'Issue', 39, NULL, '2021-05-15 04:00:02+07', false);
INSERT INTO public.journals VALUES (14333, 4138, 'Issue', 39, NULL, '2021-05-15 04:01:14+07', false);
INSERT INTO public.journals VALUES (14334, 4138, 'Issue', 39, NULL, '2021-05-15 04:01:19+07', false);
INSERT INTO public.journals VALUES (14335, 4138, 'Issue', 39, NULL, '2021-05-15 04:01:24+07', false);
INSERT INTO public.journals VALUES (14336, 4168, 'Issue', 39, NULL, '2021-05-15 04:02:07+07', false);
INSERT INTO public.journals VALUES (14337, 4215, 'Issue', 39, NULL, '2021-05-15 04:03:30+07', false);
INSERT INTO public.journals VALUES (14338, 4215, 'Issue', 39, NULL, '2021-05-15 04:03:36+07', false);
INSERT INTO public.journals VALUES (14339, 4217, 'Issue', 39, NULL, '2021-05-15 04:03:50+07', false);
INSERT INTO public.journals VALUES (14340, 4217, 'Issue', 39, NULL, '2021-05-15 04:03:56+07', false);
INSERT INTO public.journals VALUES (14341, 4222, 'Issue', 39, NULL, '2021-05-15 04:06:07+07', false);
INSERT INTO public.journals VALUES (14342, 4222, 'Issue', 39, NULL, '2021-05-15 04:06:13+07', false);
INSERT INTO public.journals VALUES (14343, 4223, 'Issue', 39, NULL, '2021-05-15 04:07:05+07', false);
INSERT INTO public.journals VALUES (14344, 4223, 'Issue', 39, NULL, '2021-05-15 04:07:09+07', false);
INSERT INTO public.journals VALUES (14345, 4221, 'Issue', 41, '', '2021-05-15 06:51:26+07', false);
INSERT INTO public.journals VALUES (14346, 3986, 'Issue', 40, NULL, '2021-05-17 10:06:15+07', false);
INSERT INTO public.journals VALUES (14347, 3989, 'Issue', 40, NULL, '2021-05-17 10:06:15+07', false);
INSERT INTO public.journals VALUES (14348, 4015, 'Issue', 40, NULL, '2021-05-17 10:06:15+07', false);
INSERT INTO public.journals VALUES (14349, 4043, 'Issue', 40, NULL, '2021-05-17 10:06:15+07', false);
INSERT INTO public.journals VALUES (14350, 4048, 'Issue', 40, NULL, '2021-05-17 10:06:16+07', false);
INSERT INTO public.journals VALUES (14351, 4050, 'Issue', 40, NULL, '2021-05-17 10:06:16+07', false);
INSERT INTO public.journals VALUES (14352, 4051, 'Issue', 40, NULL, '2021-05-17 10:06:16+07', false);
INSERT INTO public.journals VALUES (14353, 4052, 'Issue', 40, NULL, '2021-05-17 10:06:16+07', false);
INSERT INTO public.journals VALUES (14354, 4056, 'Issue', 40, NULL, '2021-05-17 10:06:16+07', false);
INSERT INTO public.journals VALUES (14355, 4057, 'Issue', 40, NULL, '2021-05-17 10:06:16+07', false);
INSERT INTO public.journals VALUES (14356, 4059, 'Issue', 40, NULL, '2021-05-17 10:06:16+07', false);
INSERT INTO public.journals VALUES (14357, 4063, 'Issue', 40, NULL, '2021-05-17 10:06:16+07', false);
INSERT INTO public.journals VALUES (14358, 4218, 'Issue', 5, '', '2021-05-18 08:34:00+07', false);
INSERT INTO public.journals VALUES (14359, 4283, 'Issue', 5, '', '2021-05-18 08:35:21+07', false);
INSERT INTO public.journals VALUES (14360, 4282, 'Issue', 5, '', '2021-05-18 08:35:42+07', false);
INSERT INTO public.journals VALUES (14361, 4224, 'Issue', 41, '', '2021-05-18 08:36:22+07', false);
INSERT INTO public.journals VALUES (14362, 4225, 'Issue', 41, '', '2021-05-18 08:36:51+07', false);
INSERT INTO public.journals VALUES (14363, 4230, 'Issue', 41, '', '2021-05-18 08:37:11+07', false);
INSERT INTO public.journals VALUES (14364, 4212, 'Issue', 41, '', '2021-05-18 08:53:23+07', false);
INSERT INTO public.journals VALUES (14365, 4233, 'Issue', 41, '', '2021-05-18 09:06:30+07', false);
INSERT INTO public.journals VALUES (14366, 4231, 'Issue', 41, '', '2021-05-18 10:00:43+07', false);
INSERT INTO public.journals VALUES (14367, 4241, 'Issue', 41, '', '2021-05-18 11:20:56+07', false);
INSERT INTO public.journals VALUES (14368, 3914, 'Issue', 40, NULL, '2021-05-19 08:57:29+07', false);
INSERT INTO public.journals VALUES (14369, 3914, 'Issue', 40, NULL, '2021-05-19 08:58:42+07', false);
INSERT INTO public.journals VALUES (14370, 3919, 'Issue', 40, NULL, '2021-05-19 08:58:58+07', false);
INSERT INTO public.journals VALUES (14371, 3862, 'Issue', 40, NULL, '2021-05-19 08:59:04+07', false);
INSERT INTO public.journals VALUES (14372, 3914, 'Issue', 40, NULL, '2021-05-19 08:59:11+07', false);
INSERT INTO public.journals VALUES (14373, 3776, 'Issue', 40, NULL, '2021-05-19 09:00:21+07', false);
INSERT INTO public.journals VALUES (14374, 3877, 'Issue', 40, NULL, '2021-05-19 09:00:22+07', false);
INSERT INTO public.journals VALUES (14375, 3912, 'Issue', 40, NULL, '2021-05-19 09:00:22+07', false);
INSERT INTO public.journals VALUES (14376, 3917, 'Issue', 40, NULL, '2021-05-19 09:00:22+07', false);
INSERT INTO public.journals VALUES (14377, 3944, 'Issue', 40, NULL, '2021-05-19 09:00:22+07', false);
INSERT INTO public.journals VALUES (14378, 3946, 'Issue', 40, NULL, '2021-05-19 09:00:22+07', false);
INSERT INTO public.journals VALUES (14379, 3947, 'Issue', 40, NULL, '2021-05-19 09:00:22+07', false);
INSERT INTO public.journals VALUES (14380, 3951, 'Issue', 40, NULL, '2021-05-19 09:00:22+07', false);
INSERT INTO public.journals VALUES (14381, 3952, 'Issue', 40, NULL, '2021-05-19 09:00:23+07', false);
INSERT INTO public.journals VALUES (14382, 4000, 'Issue', 40, NULL, '2021-05-19 09:00:23+07', false);
INSERT INTO public.journals VALUES (14383, 4001, 'Issue', 40, NULL, '2021-05-19 09:00:23+07', false);
INSERT INTO public.journals VALUES (14384, 4020, 'Issue', 40, NULL, '2021-05-19 09:00:23+07', false);
INSERT INTO public.journals VALUES (14385, 4041, 'Issue', 40, NULL, '2021-05-19 09:00:23+07', false);
INSERT INTO public.journals VALUES (14386, 4042, 'Issue', 40, NULL, '2021-05-19 09:00:23+07', false);
INSERT INTO public.journals VALUES (14387, 4049, 'Issue', 40, NULL, '2021-05-19 09:00:23+07', false);
INSERT INTO public.journals VALUES (14388, 4058, 'Issue', 40, NULL, '2021-05-19 09:00:23+07', false);
INSERT INTO public.journals VALUES (14389, 4060, 'Issue', 40, NULL, '2021-05-19 09:00:24+07', false);
INSERT INTO public.journals VALUES (14390, 4061, 'Issue', 40, NULL, '2021-05-19 09:00:24+07', false);
INSERT INTO public.journals VALUES (14391, 4062, 'Issue', 40, NULL, '2021-05-19 09:00:24+07', false);
INSERT INTO public.journals VALUES (14392, 4072, 'Issue', 40, NULL, '2021-05-19 09:00:24+07', false);
INSERT INTO public.journals VALUES (14393, 4101, 'Issue', 40, NULL, '2021-05-19 09:00:24+07', false);
INSERT INTO public.journals VALUES (14394, 4102, 'Issue', 40, NULL, '2021-05-19 09:00:24+07', false);
INSERT INTO public.journals VALUES (14395, 4103, 'Issue', 40, NULL, '2021-05-19 09:00:24+07', false);
INSERT INTO public.journals VALUES (14396, 4104, 'Issue', 40, NULL, '2021-05-19 09:00:24+07', false);
INSERT INTO public.journals VALUES (14397, 4105, 'Issue', 40, NULL, '2021-05-19 09:00:25+07', false);
INSERT INTO public.journals VALUES (14398, 4106, 'Issue', 40, NULL, '2021-05-19 09:00:25+07', false);
INSERT INTO public.journals VALUES (14399, 4113, 'Issue', 40, NULL, '2021-05-19 09:00:25+07', false);
INSERT INTO public.journals VALUES (14400, 4114, 'Issue', 40, NULL, '2021-05-19 09:00:25+07', false);
INSERT INTO public.journals VALUES (14401, 4115, 'Issue', 40, NULL, '2021-05-19 09:00:25+07', false);
INSERT INTO public.journals VALUES (14402, 4129, 'Issue', 40, NULL, '2021-05-19 09:00:25+07', false);
INSERT INTO public.journals VALUES (14403, 4284, 'Issue', 40, NULL, '2021-05-19 09:00:25+07', false);
INSERT INTO public.journals VALUES (14404, 4285, 'Issue', 40, NULL, '2021-05-19 09:00:26+07', false);
INSERT INTO public.journals VALUES (14405, 3776, 'Issue', 40, NULL, '2021-05-19 09:01:57+07', false);
INSERT INTO public.journals VALUES (14406, 3877, 'Issue', 40, NULL, '2021-05-19 09:01:57+07', false);
INSERT INTO public.journals VALUES (14407, 3776, 'Issue', 40, NULL, '2021-05-19 09:02:10+07', false);
INSERT INTO public.journals VALUES (14408, 3877, 'Issue', 40, NULL, '2021-05-19 09:02:10+07', false);
INSERT INTO public.journals VALUES (14409, 3776, 'Issue', 40, NULL, '2021-05-19 09:02:22+07', false);
INSERT INTO public.journals VALUES (14410, 3877, 'Issue', 40, NULL, '2021-05-19 09:02:22+07', false);
INSERT INTO public.journals VALUES (14411, 4105, 'Issue', 40, NULL, '2021-05-19 09:39:19+07', false);
INSERT INTO public.journals VALUES (14412, 4301, 'Issue', 39, NULL, '2021-05-19 09:52:49+07', false);
INSERT INTO public.journals VALUES (14413, 4302, 'Issue', 39, NULL, '2021-05-19 09:52:49+07', false);
INSERT INTO public.journals VALUES (14414, 4303, 'Issue', 39, NULL, '2021-05-19 09:52:49+07', false);
INSERT INTO public.journals VALUES (14415, 4301, 'Issue', 39, NULL, '2021-05-19 09:52:56+07', false);
INSERT INTO public.journals VALUES (14416, 4302, 'Issue', 39, NULL, '2021-05-19 09:52:56+07', false);
INSERT INTO public.journals VALUES (14417, 4303, 'Issue', 39, NULL, '2021-05-19 09:52:56+07', false);
INSERT INTO public.journals VALUES (14418, 4306, 'Issue', 40, '', '2021-05-19 15:48:13+07', false);
INSERT INTO public.journals VALUES (14419, 4304, 'Issue', 39, NULL, '2021-05-19 15:56:00+07', false);
INSERT INTO public.journals VALUES (14420, 4305, 'Issue', 39, NULL, '2021-05-19 15:56:00+07', false);
INSERT INTO public.journals VALUES (14421, 4304, 'Issue', 39, NULL, '2021-05-19 15:56:07+07', false);
INSERT INTO public.journals VALUES (14422, 4305, 'Issue', 39, NULL, '2021-05-19 15:56:07+07', false);
INSERT INTO public.journals VALUES (14423, 4000, 'Issue', 39, NULL, '2021-05-21 13:36:27+07', false);
INSERT INTO public.journals VALUES (14424, 4001, 'Issue', 39, NULL, '2021-05-21 13:36:28+07', false);
INSERT INTO public.journals VALUES (14425, 4105, 'Issue', 39, NULL, '2021-05-21 13:36:28+07', false);
INSERT INTO public.journals VALUES (14426, 4287, 'Issue', 39, NULL, '2021-05-21 13:36:28+07', false);
INSERT INTO public.journals VALUES (14427, 4289, 'Issue', 39, NULL, '2021-05-21 13:36:28+07', false);
INSERT INTO public.journals VALUES (14428, 4292, 'Issue', 39, NULL, '2021-05-21 13:36:28+07', false);
INSERT INTO public.journals VALUES (14429, 4294, 'Issue', 39, NULL, '2021-05-21 13:36:28+07', false);
INSERT INTO public.journals VALUES (14430, 4297, 'Issue', 39, NULL, '2021-05-21 13:36:28+07', false);
INSERT INTO public.journals VALUES (14431, 4299, 'Issue', 39, NULL, '2021-05-21 13:36:29+07', false);
INSERT INTO public.journals VALUES (14432, 4306, 'Issue', 39, NULL, '2021-05-21 13:36:29+07', false);
INSERT INTO public.journals VALUES (14433, 4308, 'Issue', 39, NULL, '2021-05-21 13:36:29+07', false);
INSERT INTO public.journals VALUES (14434, 4000, 'Issue', 39, NULL, '2021-05-21 06:43:08+07', false);
INSERT INTO public.journals VALUES (14435, 4000, 'Issue', 39, NULL, '2021-05-21 06:43:12+07', false);
INSERT INTO public.journals VALUES (14436, 4001, 'Issue', 39, '', '2021-05-21 13:46:33+07', false);
INSERT INTO public.journals VALUES (14437, 4058, 'Issue', 39, '', '2021-05-21 13:48:27+07', false);
INSERT INTO public.journals VALUES (14438, 4060, 'Issue', 39, NULL, '2021-05-21 14:00:19+07', false);
INSERT INTO public.journals VALUES (14439, 4060, 'Issue', 39, NULL, '2021-05-21 14:00:28+07', false);
INSERT INTO public.journals VALUES (14440, 4062, 'Issue', 39, NULL, '2021-05-21 14:07:40+07', false);
INSERT INTO public.journals VALUES (14441, 4062, 'Issue', 39, NULL, '2021-05-21 14:07:47+07', false);
INSERT INTO public.journals VALUES (14442, 4072, 'Issue', 39, '', '2021-05-21 14:16:49+07', false);
INSERT INTO public.journals VALUES (14443, 4287, 'Issue', 39, NULL, '2021-05-21 14:32:51+07', false);
INSERT INTO public.journals VALUES (14444, 4287, 'Issue', 39, NULL, '2021-05-21 14:33:02+07', false);
INSERT INTO public.journals VALUES (14445, 4292, 'Issue', 39, NULL, '2021-05-21 14:42:23+07', false);
INSERT INTO public.journals VALUES (14446, 4292, 'Issue', 39, '', '2021-05-21 14:43:18+07', false);
INSERT INTO public.journals VALUES (14447, 4312, 'Issue', 39, NULL, '2021-05-21 16:18:28+07', false);
INSERT INTO public.journals VALUES (14448, 4000, 'Issue', 39, '', '2021-05-21 16:18:42+07', false);
INSERT INTO public.journals VALUES (14449, 4060, 'Issue', 39, '', '2021-05-21 16:18:42+07', false);
INSERT INTO public.journals VALUES (14450, 4062, 'Issue', 39, '', '2021-05-21 16:18:42+07', false);
INSERT INTO public.journals VALUES (14451, 4072, 'Issue', 39, '', '2021-05-21 16:18:42+07', false);
INSERT INTO public.journals VALUES (14452, 4105, 'Issue', 39, '', '2021-05-21 16:18:43+07', false);
INSERT INTO public.journals VALUES (14453, 4311, 'Issue', 39, NULL, '2021-05-21 16:26:14+07', false);
INSERT INTO public.journals VALUES (14454, 4311, 'Issue', 39, NULL, '2021-05-21 16:26:20+07', false);
INSERT INTO public.journals VALUES (14455, 4289, 'Issue', 39, '', '2021-05-21 16:26:46+07', false);
INSERT INTO public.journals VALUES (14456, 4297, 'Issue', 39, NULL, '2021-05-21 16:30:26+07', false);
INSERT INTO public.journals VALUES (14457, 4297, 'Issue', 39, NULL, '2021-05-21 16:30:33+07', false);
INSERT INTO public.journals VALUES (14458, 4212, 'Issue', 41, '', '2021-05-21 16:40:01+07', false);
INSERT INTO public.journals VALUES (14459, 4234, 'Issue', 8, NULL, '2021-05-22 02:53:52+07', false);
INSERT INTO public.journals VALUES (14460, 4235, 'Issue', 8, NULL, '2021-05-22 02:53:52+07', false);
INSERT INTO public.journals VALUES (14461, 4236, 'Issue', 8, NULL, '2021-05-22 02:53:52+07', false);
INSERT INTO public.journals VALUES (14462, 4245, 'Issue', 8, NULL, '2021-05-22 02:53:53+07', false);
INSERT INTO public.journals VALUES (14463, 4234, 'Issue', 8, NULL, '2021-05-22 02:54:03+07', false);
INSERT INTO public.journals VALUES (14464, 4235, 'Issue', 8, NULL, '2021-05-22 02:54:03+07', false);
INSERT INTO public.journals VALUES (14465, 4236, 'Issue', 8, NULL, '2021-05-22 02:54:03+07', false);
INSERT INTO public.journals VALUES (14466, 4245, 'Issue', 8, NULL, '2021-05-22 02:54:04+07', false);
INSERT INTO public.journals VALUES (14467, 4229, 'Issue', 8, NULL, '2021-05-22 02:54:40+07', false);
INSERT INTO public.journals VALUES (14468, 4229, 'Issue', 8, NULL, '2021-05-22 02:54:48+07', false);
INSERT INTO public.journals VALUES (14469, 4226, 'Issue', 8, NULL, '2021-05-22 02:55:02+07', false);
INSERT INTO public.journals VALUES (14470, 4227, 'Issue', 8, NULL, '2021-05-22 02:55:02+07', false);
INSERT INTO public.journals VALUES (14471, 4226, 'Issue', 8, NULL, '2021-05-22 02:55:09+07', false);
INSERT INTO public.journals VALUES (14472, 4227, 'Issue', 8, NULL, '2021-05-22 02:55:10+07', false);
INSERT INTO public.journals VALUES (14473, 4314, 'Issue', 39, NULL, '2021-05-22 10:20:58+07', false);
INSERT INTO public.journals VALUES (14474, 4314, 'Issue', 39, NULL, '2021-05-22 10:21:05+07', false);
INSERT INTO public.journals VALUES (14475, 4001, 'Issue', 38, '', '2021-05-24 08:33:24+07', false);
INSERT INTO public.journals VALUES (14476, 4299, 'Issue', 39, NULL, '2021-05-24 02:41:33+07', false);
INSERT INTO public.journals VALUES (14477, 4299, 'Issue', 39, NULL, '2021-05-24 02:41:46+07', false);
INSERT INTO public.journals VALUES (14478, 4105, 'Issue', 39, NULL, '2021-05-24 02:42:34+07', false);
INSERT INTO public.journals VALUES (14479, 4289, 'Issue', 39, NULL, '2021-05-24 02:42:34+07', false);
INSERT INTO public.journals VALUES (14480, 4294, 'Issue', 39, NULL, '2021-05-24 02:42:34+07', false);
INSERT INTO public.journals VALUES (14481, 4306, 'Issue', 39, NULL, '2021-05-24 02:42:34+07', false);
INSERT INTO public.journals VALUES (14482, 4308, 'Issue', 39, NULL, '2021-05-24 02:42:35+07', false);
INSERT INTO public.journals VALUES (14483, 4313, 'Issue', 39, NULL, '2021-05-24 02:42:35+07', false);
INSERT INTO public.journals VALUES (14484, 4105, 'Issue', 39, '', '2021-05-24 02:43:09+07', false);
INSERT INTO public.journals VALUES (14485, 4289, 'Issue', 39, '', '2021-05-24 02:43:10+07', false);
INSERT INTO public.journals VALUES (14486, 4294, 'Issue', 39, '', '2021-05-24 02:43:10+07', false);
INSERT INTO public.journals VALUES (14487, 4306, 'Issue', 39, '', '2021-05-24 02:43:10+07', false);
INSERT INTO public.journals VALUES (14488, 4308, 'Issue', 39, '', '2021-05-24 02:43:10+07', false);
INSERT INTO public.journals VALUES (14489, 4313, 'Issue', 39, '', '2021-05-24 02:43:10+07', false);
INSERT INTO public.journals VALUES (14490, 3917, 'Issue', 39, NULL, '2021-05-24 02:45:42+07', false);
INSERT INTO public.journals VALUES (14491, 3944, 'Issue', 39, NULL, '2021-05-24 02:45:42+07', false);
INSERT INTO public.journals VALUES (14492, 4041, 'Issue', 39, NULL, '2021-05-24 02:45:42+07', false);
INSERT INTO public.journals VALUES (14493, 4042, 'Issue', 39, NULL, '2021-05-24 02:45:43+07', false);
INSERT INTO public.journals VALUES (14494, 4049, 'Issue', 39, NULL, '2021-05-24 02:45:43+07', false);
INSERT INTO public.journals VALUES (14495, 4101, 'Issue', 39, NULL, '2021-05-24 02:45:43+07', false);
INSERT INTO public.journals VALUES (14496, 4102, 'Issue', 39, NULL, '2021-05-24 02:45:43+07', false);
INSERT INTO public.journals VALUES (14497, 4106, 'Issue', 39, NULL, '2021-05-24 02:45:43+07', false);
INSERT INTO public.journals VALUES (14498, 4114, 'Issue', 39, NULL, '2021-05-24 02:45:43+07', false);
INSERT INTO public.journals VALUES (14499, 4115, 'Issue', 39, NULL, '2021-05-24 02:45:43+07', false);
INSERT INTO public.journals VALUES (14500, 4284, 'Issue', 39, NULL, '2021-05-24 02:45:43+07', false);
INSERT INTO public.journals VALUES (14501, 3917, 'Issue', 39, '', '2021-05-24 02:46:15+07', false);
INSERT INTO public.journals VALUES (14502, 3944, 'Issue', 39, '', '2021-05-24 02:46:15+07', false);
INSERT INTO public.journals VALUES (14503, 4041, 'Issue', 39, '', '2021-05-24 02:46:15+07', false);
INSERT INTO public.journals VALUES (14504, 4042, 'Issue', 39, '', '2021-05-24 02:46:15+07', false);
INSERT INTO public.journals VALUES (14505, 4049, 'Issue', 39, '', '2021-05-24 02:46:15+07', false);
INSERT INTO public.journals VALUES (14506, 4101, 'Issue', 39, '', '2021-05-24 02:46:15+07', false);
INSERT INTO public.journals VALUES (14507, 4102, 'Issue', 39, '', '2021-05-24 02:46:16+07', false);
INSERT INTO public.journals VALUES (14508, 4106, 'Issue', 39, '', '2021-05-24 02:46:16+07', false);
INSERT INTO public.journals VALUES (14509, 4114, 'Issue', 39, '', '2021-05-24 02:46:16+07', false);
INSERT INTO public.journals VALUES (14510, 4115, 'Issue', 39, '', '2021-05-24 02:46:16+07', false);
INSERT INTO public.journals VALUES (14511, 3912, 'Issue', 39, NULL, '2021-05-24 02:46:40+07', false);
INSERT INTO public.journals VALUES (14512, 3946, 'Issue', 39, NULL, '2021-05-24 02:46:41+07', false);
INSERT INTO public.journals VALUES (14513, 3947, 'Issue', 39, NULL, '2021-05-24 02:46:41+07', false);
INSERT INTO public.journals VALUES (14514, 3951, 'Issue', 39, NULL, '2021-05-24 02:46:41+07', false);
INSERT INTO public.journals VALUES (14515, 3952, 'Issue', 39, NULL, '2021-05-24 02:46:41+07', false);
INSERT INTO public.journals VALUES (14516, 4285, 'Issue', 39, NULL, '2021-05-24 02:46:41+07', false);
INSERT INTO public.journals VALUES (14517, 4061, 'Issue', 39, NULL, '2021-05-24 02:47:51+07', false);
INSERT INTO public.journals VALUES (14518, 4129, 'Issue', 39, NULL, '2021-05-24 02:48:24+07', false);
INSERT INTO public.journals VALUES (14519, 4129, 'Issue', 39, NULL, '2021-05-24 02:48:59+07', false);
INSERT INTO public.journals VALUES (14520, 4284, 'Issue', 39, NULL, '2021-05-24 02:48:59+07', false);
INSERT INTO public.journals VALUES (14521, 4129, 'Issue', 39, '', '2021-05-24 02:49:14+07', false);
INSERT INTO public.journals VALUES (14522, 4284, 'Issue', 39, '', '2021-05-24 02:49:14+07', false);
INSERT INTO public.journals VALUES (14523, 4306, 'Issue', 39, NULL, '2021-05-24 03:51:56+07', false);
INSERT INTO public.journals VALUES (14524, 4306, 'Issue', 39, NULL, '2021-05-24 03:52:05+07', false);
INSERT INTO public.journals VALUES (14525, 4308, 'Issue', 40, NULL, '2021-05-24 15:57:48+07', false);
INSERT INTO public.journals VALUES (14526, 4308, 'Issue', 40, NULL, '2021-05-24 15:57:57+07', false);
INSERT INTO public.journals VALUES (14527, 4103, 'Issue', 40, NULL, '2021-05-24 15:58:10+07', false);
INSERT INTO public.journals VALUES (14528, 4103, 'Issue', 40, NULL, '2021-05-24 15:58:21+07', false);
INSERT INTO public.journals VALUES (14529, 4113, 'Issue', 40, NULL, '2021-05-24 15:58:39+07', false);
INSERT INTO public.journals VALUES (14530, 4113, 'Issue', 40, NULL, '2021-05-24 15:58:49+07', false);
INSERT INTO public.journals VALUES (14531, 4313, 'Issue', 39, NULL, '2021-05-25 02:08:06+07', false);
INSERT INTO public.journals VALUES (14532, 4315, 'Issue', 39, NULL, '2021-05-25 02:08:14+07', false);
INSERT INTO public.journals VALUES (14533, 4313, 'Issue', 39, NULL, '2021-05-25 02:08:21+07', false);
INSERT INTO public.journals VALUES (14534, 4315, 'Issue', 39, NULL, '2021-05-25 02:08:21+07', false);
INSERT INTO public.journals VALUES (14535, 4294, 'Issue', 39, NULL, '2021-05-25 02:08:35+07', false);
INSERT INTO public.journals VALUES (14536, 4294, 'Issue', 39, NULL, '2021-05-25 02:08:45+07', false);
INSERT INTO public.journals VALUES (14537, 4294, 'Issue', 39, NULL, '2021-05-25 02:08:55+07', false);
INSERT INTO public.journals VALUES (14538, 4102, 'Issue', 39, NULL, '2021-05-25 02:10:54+07', false);
INSERT INTO public.journals VALUES (14539, 4102, 'Issue', 39, NULL, '2021-05-25 02:11:04+07', false);
INSERT INTO public.journals VALUES (14540, 4058, 'Issue', 38, '', '2021-05-25 06:25:55+07', false);
INSERT INTO public.journals VALUES (14541, 4316, 'Issue', 39, NULL, '2021-05-25 06:38:09+07', false);
INSERT INTO public.journals VALUES (14542, 4317, 'Issue', 39, NULL, '2021-05-25 06:38:09+07', false);
INSERT INTO public.journals VALUES (14543, 4316, 'Issue', 39, NULL, '2021-05-25 06:38:16+07', false);
INSERT INTO public.journals VALUES (14544, 4317, 'Issue', 39, NULL, '2021-05-25 06:38:16+07', false);
INSERT INTO public.journals VALUES (14545, 3917, 'Issue', 39, NULL, '2021-05-25 06:39:25+07', false);
INSERT INTO public.journals VALUES (14546, 4300, 'Issue', 38, '', '2021-05-25 07:18:19+07', false);
INSERT INTO public.journals VALUES (14547, 4309, 'Issue', 38, '', '2021-05-25 07:19:52+07', false);
INSERT INTO public.journals VALUES (14548, 4307, 'Issue', 38, '', '2021-05-25 07:27:48+07', false);
INSERT INTO public.journals VALUES (14549, 4295, 'Issue', 38, '', '2021-05-25 07:29:49+07', false);
INSERT INTO public.journals VALUES (14550, 4286, 'Issue', 38, '', '2021-05-25 07:30:18+07', false);
INSERT INTO public.journals VALUES (14551, 3912, 'Issue', 38, NULL, '2021-05-25 07:31:39+07', false);
INSERT INTO public.journals VALUES (14552, 3946, 'Issue', 38, NULL, '2021-05-25 07:31:40+07', false);
INSERT INTO public.journals VALUES (14553, 3947, 'Issue', 38, NULL, '2021-05-25 07:31:40+07', false);
INSERT INTO public.journals VALUES (14554, 3951, 'Issue', 38, NULL, '2021-05-25 07:31:40+07', false);
INSERT INTO public.journals VALUES (14555, 3952, 'Issue', 38, NULL, '2021-05-25 07:31:40+07', false);
INSERT INTO public.journals VALUES (14556, 4020, 'Issue', 38, NULL, '2021-05-25 07:31:40+07', false);
INSERT INTO public.journals VALUES (14557, 4104, 'Issue', 38, NULL, '2021-05-25 07:31:40+07', false);
INSERT INTO public.journals VALUES (14558, 4285, 'Issue', 38, NULL, '2021-05-25 07:31:40+07', false);
INSERT INTO public.journals VALUES (14559, 4288, 'Issue', 38, NULL, '2021-05-25 07:31:40+07', false);
INSERT INTO public.journals VALUES (14560, 4290, 'Issue', 38, NULL, '2021-05-25 07:31:41+07', false);
INSERT INTO public.journals VALUES (14561, 4291, 'Issue', 38, NULL, '2021-05-25 07:31:41+07', false);
INSERT INTO public.journals VALUES (14562, 4293, 'Issue', 38, NULL, '2021-05-25 07:31:41+07', false);
INSERT INTO public.journals VALUES (14563, 4296, 'Issue', 38, NULL, '2021-05-25 07:31:41+07', false);
INSERT INTO public.journals VALUES (14564, 4298, 'Issue', 38, NULL, '2021-05-25 07:31:41+07', false);
INSERT INTO public.journals VALUES (14565, 4310, 'Issue', 38, NULL, '2021-05-25 07:31:41+07', false);
INSERT INTO public.journals VALUES (14566, 3944, 'Issue', 39, NULL, '2021-05-25 07:58:31+07', false);
INSERT INTO public.journals VALUES (14567, 3944, 'Issue', 39, NULL, '2021-05-25 07:58:36+07', false);
INSERT INTO public.journals VALUES (14568, 4104, 'Issue', 38, '', '2021-05-25 08:05:09+07', false);
INSERT INTO public.journals VALUES (14569, 4104, 'Issue', 38, NULL, '2021-05-26 09:08:30+07', false);
INSERT INTO public.journals VALUES (14570, 4105, 'Issue', 39, NULL, '2021-05-26 02:57:45+07', false);
INSERT INTO public.journals VALUES (14571, 4105, 'Issue', 39, NULL, '2021-05-26 02:57:53+07', false);
INSERT INTO public.journals VALUES (14572, 4284, 'Issue', 39, '', '2021-05-26 03:56:59+07', false);
INSERT INTO public.journals VALUES (14573, 4101, 'Issue', 39, '', '2021-05-26 04:05:38+07', false);
INSERT INTO public.journals VALUES (14574, 4129, 'Issue', 39, '', '2021-05-26 04:11:34+07', false);
INSERT INTO public.journals VALUES (14575, 4000, 'Issue', 5, NULL, '2021-05-26 04:14:32+07', false);
INSERT INTO public.journals VALUES (14576, 4001, 'Issue', 5, NULL, '2021-05-26 04:14:33+07', false);
INSERT INTO public.journals VALUES (14577, 4058, 'Issue', 5, NULL, '2021-05-26 04:14:33+07', false);
INSERT INTO public.journals VALUES (14578, 4060, 'Issue', 5, NULL, '2021-05-26 04:14:33+07', false);
INSERT INTO public.journals VALUES (14579, 4062, 'Issue', 5, NULL, '2021-05-26 04:14:33+07', false);
INSERT INTO public.journals VALUES (14580, 4072, 'Issue', 5, NULL, '2021-05-26 04:14:33+07', false);
INSERT INTO public.journals VALUES (14581, 4103, 'Issue', 5, NULL, '2021-05-26 04:14:33+07', false);
INSERT INTO public.journals VALUES (14582, 4113, 'Issue', 5, NULL, '2021-05-26 04:14:33+07', false);
INSERT INTO public.journals VALUES (14583, 4286, 'Issue', 5, NULL, '2021-05-26 04:14:33+07', false);
INSERT INTO public.journals VALUES (14584, 4287, 'Issue', 5, NULL, '2021-05-26 04:14:33+07', false);
INSERT INTO public.journals VALUES (14585, 4292, 'Issue', 5, NULL, '2021-05-26 04:14:34+07', false);
INSERT INTO public.journals VALUES (14586, 4295, 'Issue', 5, NULL, '2021-05-26 04:14:34+07', false);
INSERT INTO public.journals VALUES (14587, 4297, 'Issue', 5, NULL, '2021-05-26 04:14:34+07', false);
INSERT INTO public.journals VALUES (14588, 4299, 'Issue', 5, NULL, '2021-05-26 04:14:34+07', false);
INSERT INTO public.journals VALUES (14589, 4300, 'Issue', 5, NULL, '2021-05-26 04:14:34+07', false);
INSERT INTO public.journals VALUES (14590, 4307, 'Issue', 5, NULL, '2021-05-26 04:14:34+07', false);
INSERT INTO public.journals VALUES (14591, 4309, 'Issue', 5, NULL, '2021-05-26 04:14:34+07', false);
INSERT INTO public.journals VALUES (14592, 4311, 'Issue', 5, NULL, '2021-05-26 04:14:34+07', false);
INSERT INTO public.journals VALUES (14593, 4312, 'Issue', 5, NULL, '2021-05-26 04:14:34+07', false);
INSERT INTO public.journals VALUES (14594, 4314, 'Issue', 5, NULL, '2021-05-26 04:14:35+07', false);
INSERT INTO public.journals VALUES (14595, 3912, 'Issue', 5, '', '2021-05-26 04:16:07+07', false);
INSERT INTO public.journals VALUES (14596, 3946, 'Issue', 5, '', '2021-05-26 04:16:07+07', false);
INSERT INTO public.journals VALUES (14597, 3947, 'Issue', 5, '', '2021-05-26 04:16:07+07', false);
INSERT INTO public.journals VALUES (14598, 3951, 'Issue', 5, '', '2021-05-26 04:16:07+07', false);
INSERT INTO public.journals VALUES (14599, 3952, 'Issue', 5, '', '2021-05-26 04:16:07+07', false);
INSERT INTO public.journals VALUES (14600, 4020, 'Issue', 5, '', '2021-05-26 04:16:08+07', false);
INSERT INTO public.journals VALUES (14601, 4104, 'Issue', 5, '', '2021-05-26 04:16:08+07', false);
INSERT INTO public.journals VALUES (14602, 4285, 'Issue', 5, '', '2021-05-26 04:16:33+07', false);
INSERT INTO public.journals VALUES (14603, 4288, 'Issue', 5, '', '2021-05-26 04:16:34+07', false);
INSERT INTO public.journals VALUES (14604, 4290, 'Issue', 5, '', '2021-05-26 04:16:34+07', false);
INSERT INTO public.journals VALUES (14605, 4291, 'Issue', 5, '', '2021-05-26 04:16:34+07', false);
INSERT INTO public.journals VALUES (14606, 4293, 'Issue', 5, '', '2021-05-26 04:16:34+07', false);
INSERT INTO public.journals VALUES (14607, 4296, 'Issue', 5, '', '2021-05-26 04:16:34+07', false);
INSERT INTO public.journals VALUES (14608, 4298, 'Issue', 5, '', '2021-05-26 04:16:34+07', false);
INSERT INTO public.journals VALUES (14609, 4310, 'Issue', 5, '', '2021-05-26 04:16:34+07', false);
INSERT INTO public.journals VALUES (14610, 4310, 'Issue', 38, '', '2021-05-26 04:24:25+07', false);
INSERT INTO public.journals VALUES (14611, 4020, 'Issue', 38, NULL, '2021-05-26 04:25:55+07', false);
INSERT INTO public.journals VALUES (14612, 4020, 'Issue', 38, NULL, '2021-05-26 04:26:06+07', false);
INSERT INTO public.journals VALUES (14613, 3917, 'Issue', 38, '', '2021-05-26 14:05:48+07', false);
INSERT INTO public.journals VALUES (14614, 4294, 'Issue', 39, NULL, '2021-05-26 14:09:35+07', false);
INSERT INTO public.journals VALUES (14615, 4294, 'Issue', 39, NULL, '2021-05-26 14:09:54+07', false);
INSERT INTO public.journals VALUES (14616, 4298, 'Issue', 38, '', '2021-05-26 14:10:17+07', false);
INSERT INTO public.journals VALUES (14617, 4296, 'Issue', 38, '', '2021-05-26 14:11:20+07', false);
INSERT INTO public.journals VALUES (14618, 3912, 'Issue', 38, NULL, '2021-05-26 16:06:02+07', false);
INSERT INTO public.journals VALUES (14619, 3946, 'Issue', 38, NULL, '2021-05-26 16:06:02+07', false);
INSERT INTO public.journals VALUES (14620, 3947, 'Issue', 38, NULL, '2021-05-26 16:06:02+07', false);
INSERT INTO public.journals VALUES (14621, 3951, 'Issue', 38, NULL, '2021-05-26 16:06:02+07', false);
INSERT INTO public.journals VALUES (14622, 3952, 'Issue', 38, NULL, '2021-05-26 16:06:02+07', false);
INSERT INTO public.journals VALUES (14623, 4319, 'Issue', 12, '', '2021-05-26 16:40:04+07', false);
INSERT INTO public.journals VALUES (14624, 4320, 'Issue', 12, '', '2021-05-26 16:46:42+07', false);
INSERT INTO public.journals VALUES (14625, 4318, 'Issue', 12, '', '2021-05-26 16:53:52+07', false);
INSERT INTO public.journals VALUES (14626, 4320, 'Issue', 12, '', '2021-05-26 16:54:35+07', false);
INSERT INTO public.journals VALUES (14627, 4321, 'Issue', 12, '', '2021-05-26 16:54:56+07', false);
INSERT INTO public.journals VALUES (14628, 4324, 'Issue', 12, '', '2021-05-26 16:55:37+07', false);
INSERT INTO public.journals VALUES (14629, 4326, 'Issue', 12, '', '2021-05-26 16:57:33+07', false);
INSERT INTO public.journals VALUES (14630, 4323, 'Issue', 12, '', '2021-05-26 16:58:01+07', false);
INSERT INTO public.journals VALUES (14631, 4326, 'Issue', 12, NULL, '2021-05-26 16:58:11+07', false);
INSERT INTO public.journals VALUES (14632, 4326, 'Issue', 12, '', '2021-05-26 16:58:33+07', false);
INSERT INTO public.journals VALUES (14633, 4325, 'Issue', 12, '', '2021-05-26 16:59:00+07', false);
INSERT INTO public.journals VALUES (14634, 4323, 'Issue', 12, NULL, '2021-05-26 16:59:21+07', false);
INSERT INTO public.journals VALUES (14635, 4290, 'Issue', 38, NULL, '2021-05-26 17:38:45+07', false);
INSERT INTO public.journals VALUES (14636, 4290, 'Issue', 38, NULL, '2021-05-26 17:38:57+07', false);
INSERT INTO public.journals VALUES (14637, 4330, 'Issue', 12, '', '2021-05-27 08:21:59+07', false);
INSERT INTO public.journals VALUES (14638, 4331, 'Issue', 12, '', '2021-05-27 08:26:55+07', false);
INSERT INTO public.journals VALUES (14639, 4041, 'Issue', 40, NULL, '2021-05-27 08:40:57+07', false);
INSERT INTO public.journals VALUES (14640, 4041, 'Issue', 40, NULL, '2021-05-27 08:41:10+07', false);
INSERT INTO public.journals VALUES (14641, 3951, 'Issue', 41, '', '2021-05-27 02:44:20+07', false);
INSERT INTO public.journals VALUES (14642, 4114, 'Issue', 40, NULL, '2021-05-27 14:17:26+07', false);
INSERT INTO public.journals VALUES (14643, 4114, 'Issue', 40, NULL, '2021-05-27 14:17:42+07', false);
INSERT INTO public.journals VALUES (14644, 3952, 'Issue', 41, '', '2021-05-27 14:47:41+07', false);
INSERT INTO public.journals VALUES (14645, 4042, 'Issue', 39, NULL, '2021-05-27 15:18:08+07', false);
INSERT INTO public.journals VALUES (14646, 4042, 'Issue', 39, NULL, '2021-05-27 15:18:14+07', false);
INSERT INTO public.journals VALUES (14647, 4049, 'Issue', 39, '', '2021-05-27 15:29:09+07', false);
INSERT INTO public.journals VALUES (14648, 4288, 'Issue', 38, '', '2021-05-27 08:44:22+07', false);
INSERT INTO public.journals VALUES (14649, 4289, 'Issue', 39, NULL, '2021-05-27 15:50:46+07', false);
INSERT INTO public.journals VALUES (14650, 4289, 'Issue', 39, NULL, '2021-05-27 15:50:51+07', false);
INSERT INTO public.journals VALUES (14651, 4106, 'Issue', 39, NULL, '2021-05-27 15:50:59+07', false);
INSERT INTO public.journals VALUES (14652, 4106, 'Issue', 39, NULL, '2021-05-27 15:51:05+07', false);
INSERT INTO public.journals VALUES (14653, 3912, 'Issue', 41, '', '2021-05-28 01:30:41+07', false);
INSERT INTO public.journals VALUES (14654, 3947, 'Issue', 41, '', '2021-05-28 04:07:58+07', false);
INSERT INTO public.journals VALUES (14655, 3946, 'Issue', 41, '', '2021-05-28 04:08:21+07', false);
INSERT INTO public.journals VALUES (14656, 4351, 'Issue', 39, NULL, '2021-05-28 07:20:39+07', false);
INSERT INTO public.journals VALUES (14657, 4351, 'Issue', 39, NULL, '2021-05-28 07:20:47+07', false);
INSERT INTO public.journals VALUES (14658, 4353, 'Issue', 39, NULL, '2021-05-29 01:35:51+07', false);
INSERT INTO public.journals VALUES (14659, 4353, 'Issue', 39, NULL, '2021-05-29 01:36:04+07', false);
INSERT INTO public.journals VALUES (14660, 4354, 'Issue', 38, NULL, '2021-05-29 02:32:49+07', false);
INSERT INTO public.journals VALUES (14661, 4115, 'Issue', 39, NULL, '2021-05-29 09:24:12+07', false);
INSERT INTO public.journals VALUES (14662, 4115, 'Issue', 39, NULL, '2021-05-29 09:24:19+07', false);
INSERT INTO public.journals VALUES (14663, 4354, 'Issue', 39, '', '2021-05-29 09:25:43+07', false);
INSERT INTO public.journals VALUES (14664, 4348, 'Issue', 12, NULL, '2021-05-31 08:26:53+07', false);
INSERT INTO public.journals VALUES (14665, 4349, 'Issue', 12, NULL, '2021-05-31 08:27:02+07', false);
INSERT INTO public.journals VALUES (14666, 4350, 'Issue', 12, NULL, '2021-05-31 08:27:02+07', false);
INSERT INTO public.journals VALUES (14667, 4348, 'Issue', 12, NULL, '2021-05-31 08:27:14+07', false);
INSERT INTO public.journals VALUES (14668, 4349, 'Issue', 12, NULL, '2021-05-31 08:27:14+07', false);
INSERT INTO public.journals VALUES (14669, 4350, 'Issue', 12, NULL, '2021-05-31 08:27:14+07', false);
INSERT INTO public.journals VALUES (14670, 4344, 'Issue', 12, NULL, '2021-05-31 08:27:54+07', false);
INSERT INTO public.journals VALUES (14671, 4344, 'Issue', 12, NULL, '2021-05-31 08:28:17+07', false);
INSERT INTO public.journals VALUES (14672, 4355, 'Issue', 5, '', '2021-05-31 15:02:17+07', false);
INSERT INTO public.journals VALUES (14673, 3912, 'Issue', 5, NULL, '2021-05-31 17:00:40+07', false);
INSERT INTO public.journals VALUES (14674, 3917, 'Issue', 5, NULL, '2021-05-31 17:00:40+07', false);
INSERT INTO public.journals VALUES (14675, 3944, 'Issue', 5, NULL, '2021-05-31 17:00:40+07', false);
INSERT INTO public.journals VALUES (14676, 3946, 'Issue', 5, NULL, '2021-05-31 17:00:40+07', false);
INSERT INTO public.journals VALUES (14677, 3947, 'Issue', 5, NULL, '2021-05-31 17:00:40+07', false);
INSERT INTO public.journals VALUES (14678, 3951, 'Issue', 5, NULL, '2021-05-31 17:00:41+07', false);
INSERT INTO public.journals VALUES (14679, 3952, 'Issue', 5, NULL, '2021-05-31 17:00:41+07', false);
INSERT INTO public.journals VALUES (14680, 4020, 'Issue', 5, NULL, '2021-05-31 17:00:41+07', false);
INSERT INTO public.journals VALUES (14681, 4041, 'Issue', 5, NULL, '2021-05-31 17:00:41+07', false);
INSERT INTO public.journals VALUES (14682, 4042, 'Issue', 5, NULL, '2021-05-31 17:00:41+07', false);
INSERT INTO public.journals VALUES (14683, 4049, 'Issue', 5, NULL, '2021-05-31 17:00:41+07', false);
INSERT INTO public.journals VALUES (14684, 4101, 'Issue', 5, NULL, '2021-05-31 17:00:41+07', false);
INSERT INTO public.journals VALUES (14685, 4102, 'Issue', 5, NULL, '2021-05-31 17:00:41+07', false);
INSERT INTO public.journals VALUES (14686, 4104, 'Issue', 5, NULL, '2021-05-31 17:00:41+07', false);
INSERT INTO public.journals VALUES (14687, 4105, 'Issue', 5, NULL, '2021-05-31 17:00:42+07', false);
INSERT INTO public.journals VALUES (14688, 4106, 'Issue', 5, NULL, '2021-05-31 17:00:42+07', false);
INSERT INTO public.journals VALUES (14689, 4114, 'Issue', 5, NULL, '2021-05-31 17:00:42+07', false);
INSERT INTO public.journals VALUES (14690, 4115, 'Issue', 5, NULL, '2021-05-31 17:00:42+07', false);
INSERT INTO public.journals VALUES (14691, 4129, 'Issue', 5, NULL, '2021-05-31 17:00:42+07', false);
INSERT INTO public.journals VALUES (14692, 4284, 'Issue', 5, NULL, '2021-05-31 17:00:42+07', false);
INSERT INTO public.journals VALUES (14693, 4288, 'Issue', 5, NULL, '2021-05-31 17:00:51+07', false);
INSERT INTO public.journals VALUES (14694, 4289, 'Issue', 5, NULL, '2021-05-31 17:00:52+07', false);
INSERT INTO public.journals VALUES (14695, 4290, 'Issue', 5, NULL, '2021-05-31 17:00:52+07', false);
INSERT INTO public.journals VALUES (14696, 4294, 'Issue', 5, NULL, '2021-05-31 17:01:03+07', false);
INSERT INTO public.journals VALUES (14697, 4296, 'Issue', 5, NULL, '2021-05-31 17:01:03+07', false);
INSERT INTO public.journals VALUES (14698, 4298, 'Issue', 5, NULL, '2021-05-31 17:01:03+07', false);
INSERT INTO public.journals VALUES (14699, 4306, 'Issue', 5, NULL, '2021-05-31 17:01:03+07', false);
INSERT INTO public.journals VALUES (14700, 4308, 'Issue', 5, NULL, '2021-05-31 17:01:03+07', false);
INSERT INTO public.journals VALUES (14701, 4310, 'Issue', 5, NULL, '2021-05-31 17:01:03+07', false);
INSERT INTO public.journals VALUES (14702, 4313, 'Issue', 5, NULL, '2021-05-31 17:01:03+07', false);
INSERT INTO public.journals VALUES (14703, 4315, 'Issue', 5, NULL, '2021-05-31 17:01:03+07', false);
INSERT INTO public.journals VALUES (14704, 4316, 'Issue', 5, NULL, '2021-05-31 17:01:04+07', false);
INSERT INTO public.journals VALUES (14705, 4317, 'Issue', 5, NULL, '2021-05-31 17:01:04+07', false);
INSERT INTO public.journals VALUES (14706, 4351, 'Issue', 5, NULL, '2021-05-31 17:01:04+07', false);
INSERT INTO public.journals VALUES (14707, 4353, 'Issue', 5, NULL, '2021-05-31 17:01:11+07', false);
INSERT INTO public.journals VALUES (14708, 4354, 'Issue', 5, NULL, '2021-05-31 17:01:11+07', false);
INSERT INTO public.journals VALUES (14709, 4285, 'Issue', 5, '', '2021-05-31 17:02:46+07', false);
INSERT INTO public.journals VALUES (14710, 4291, 'Issue', 5, '', '2021-05-31 17:02:46+07', false);
INSERT INTO public.journals VALUES (14711, 4293, 'Issue', 5, '', '2021-05-31 17:02:46+07', false);
INSERT INTO public.journals VALUES (14712, 4352, 'Issue', 5, '', '2021-05-31 17:02:46+07', false);
INSERT INTO public.journals VALUES (14713, 4285, 'Issue', 5, NULL, '2021-05-31 17:03:00+07', false);
INSERT INTO public.journals VALUES (14714, 4291, 'Issue', 5, NULL, '2021-05-31 17:03:01+07', false);
INSERT INTO public.journals VALUES (14715, 4293, 'Issue', 5, NULL, '2021-05-31 17:03:01+07', false);
INSERT INTO public.journals VALUES (14716, 4352, 'Issue', 5, NULL, '2021-05-31 17:03:01+07', false);
INSERT INTO public.journals VALUES (14717, 4355, 'Issue', 39, '', '2021-06-01 08:29:11+07', false);
INSERT INTO public.journals VALUES (14718, 4352, 'Issue', 38, NULL, '2021-06-01 09:30:25+07', false);
INSERT INTO public.journals VALUES (14719, 4352, 'Issue', 38, NULL, '2021-06-01 09:30:36+07', false);
INSERT INTO public.journals VALUES (14720, 4293, 'Issue', 38, NULL, '2021-06-01 09:30:50+07', false);
INSERT INTO public.journals VALUES (14721, 4293, 'Issue', 38, NULL, '2021-06-01 09:31:06+07', false);
INSERT INTO public.journals VALUES (14722, 4285, 'Issue', 38, '', '2021-06-01 03:04:21+07', false);
INSERT INTO public.journals VALUES (14723, 4341, 'Issue', 12, '', '2021-06-01 10:08:32+07', false);
INSERT INTO public.journals VALUES (14724, 4341, 'Issue', 12, NULL, '2021-06-01 10:08:55+07', false);
INSERT INTO public.journals VALUES (14725, 4341, 'Issue', 12, NULL, '2021-06-01 10:09:20+07', false);
INSERT INTO public.journals VALUES (14726, 4343, 'Issue', 12, '', '2021-06-01 10:10:30+07', false);
INSERT INTO public.journals VALUES (14727, 4197, 'Issue', 41, NULL, '2021-06-01 11:10:41+07', false);
INSERT INTO public.journals VALUES (14728, 4188, 'Issue', 41, NULL, '2021-06-01 11:12:01+07', false);
INSERT INTO public.journals VALUES (14729, 4190, 'Issue', 41, NULL, '2021-06-01 11:12:01+07', false);
INSERT INTO public.journals VALUES (14730, 4195, 'Issue', 41, NULL, '2021-06-01 11:12:01+07', false);
INSERT INTO public.journals VALUES (14731, 4196, 'Issue', 41, NULL, '2021-06-01 11:12:01+07', false);
INSERT INTO public.journals VALUES (14732, 4206, 'Issue', 41, NULL, '2021-06-01 11:12:01+07', false);
INSERT INTO public.journals VALUES (14733, 4188, 'Issue', 41, NULL, '2021-06-01 11:12:14+07', false);
INSERT INTO public.journals VALUES (14734, 4190, 'Issue', 41, NULL, '2021-06-01 11:12:14+07', false);
INSERT INTO public.journals VALUES (14735, 4195, 'Issue', 41, NULL, '2021-06-01 11:12:15+07', false);
INSERT INTO public.journals VALUES (14736, 4196, 'Issue', 41, NULL, '2021-06-01 11:12:15+07', false);
INSERT INTO public.journals VALUES (14737, 4206, 'Issue', 41, NULL, '2021-06-01 11:12:15+07', false);
INSERT INTO public.journals VALUES (14738, 4293, 'Issue', 5, NULL, '2021-06-02 08:22:41+07', false);
INSERT INTO public.journals VALUES (14739, 4352, 'Issue', 5, NULL, '2021-06-02 08:22:41+07', false);
INSERT INTO public.journals VALUES (14740, 4355, 'Issue', 5, NULL, '2021-06-02 08:22:42+07', false);
INSERT INTO public.journals VALUES (14741, 4285, 'Issue', 5, NULL, '2021-06-02 08:24:17+07', false);
INSERT INTO public.journals VALUES (14742, 4285, 'Issue', 5, '', '2021-06-02 08:25:37+07', false);
INSERT INTO public.journals VALUES (14743, 4291, 'Issue', 5, '', '2021-06-02 08:27:07+07', false);
INSERT INTO public.journals VALUES (14744, 4356, 'Issue', 12, NULL, '2021-06-02 09:15:07+07', false);
INSERT INTO public.journals VALUES (14745, 4356, 'Issue', 12, NULL, '2021-06-02 09:15:12+07', false);
INSERT INTO public.journals VALUES (14746, 4356, 'Issue', 12, NULL, '2021-06-02 09:15:24+07', false);
INSERT INTO public.journals VALUES (14747, 4343, 'Issue', 12, NULL, '2021-06-02 09:15:52+07', false);
INSERT INTO public.journals VALUES (14748, 4343, 'Issue', 12, NULL, '2021-06-02 09:16:02+07', false);
INSERT INTO public.journals VALUES (14749, 4342, 'Issue', 12, NULL, '2021-06-02 16:24:23+07', false);
INSERT INTO public.journals VALUES (14750, 4342, 'Issue', 12, NULL, '2021-06-02 16:24:56+07', false);
INSERT INTO public.journals VALUES (14751, 4358, 'Issue', 5, '', '2021-06-03 08:32:07+07', false);
INSERT INTO public.journals VALUES (14752, 4291, 'Issue', 38, NULL, '2021-06-03 09:19:47+07', false);
INSERT INTO public.journals VALUES (14753, 4291, 'Issue', 38, NULL, '2021-06-03 09:20:04+07', false);
INSERT INTO public.journals VALUES (14754, 4358, 'Issue', 5, NULL, '2021-06-04 14:38:31+07', false);
INSERT INTO public.journals VALUES (14755, 4358, 'Issue', 5, NULL, '2021-06-04 14:38:43+07', false);
INSERT INTO public.journals VALUES (14756, 4237, 'Issue', 38, NULL, '2021-06-07 03:30:33+07', false);
INSERT INTO public.journals VALUES (14757, 4238, 'Issue', 38, NULL, '2021-06-07 03:30:33+07', false);
INSERT INTO public.journals VALUES (14758, 4239, 'Issue', 38, NULL, '2021-06-07 03:30:33+07', false);
INSERT INTO public.journals VALUES (14759, 4240, 'Issue', 38, NULL, '2021-06-07 03:30:33+07', false);
INSERT INTO public.journals VALUES (14760, 4242, 'Issue', 38, NULL, '2021-06-07 03:30:33+07', false);
INSERT INTO public.journals VALUES (14761, 4243, 'Issue', 38, NULL, '2021-06-07 03:30:33+07', false);
INSERT INTO public.journals VALUES (14762, 4244, 'Issue', 38, NULL, '2021-06-07 03:30:33+07', false);
INSERT INTO public.journals VALUES (14763, 4246, 'Issue', 38, NULL, '2021-06-07 03:30:34+07', false);
INSERT INTO public.journals VALUES (14764, 4247, 'Issue', 38, NULL, '2021-06-07 03:30:34+07', false);
INSERT INTO public.journals VALUES (14765, 4248, 'Issue', 38, NULL, '2021-06-07 03:30:34+07', false);
INSERT INTO public.journals VALUES (14766, 4249, 'Issue', 38, NULL, '2021-06-07 03:30:34+07', false);
INSERT INTO public.journals VALUES (14767, 4250, 'Issue', 38, NULL, '2021-06-07 03:30:34+07', false);
INSERT INTO public.journals VALUES (14768, 4251, 'Issue', 38, NULL, '2021-06-07 03:30:34+07', false);
INSERT INTO public.journals VALUES (14770, 4253, 'Issue', 38, NULL, '2021-06-07 03:30:34+07', false);
INSERT INTO public.journals VALUES (14772, 4255, 'Issue', 38, NULL, '2021-06-07 03:30:34+07', false);
INSERT INTO public.journals VALUES (14774, 4257, 'Issue', 38, NULL, '2021-06-07 03:30:35+07', false);
INSERT INTO public.journals VALUES (14775, 4258, 'Issue', 38, NULL, '2021-06-07 03:30:35+07', false);
INSERT INTO public.journals VALUES (14776, 4259, 'Issue', 38, NULL, '2021-06-07 03:30:35+07', false);
INSERT INTO public.journals VALUES (14777, 4260, 'Issue', 38, NULL, '2021-06-07 03:30:35+07', false);
INSERT INTO public.journals VALUES (14778, 4261, 'Issue', 38, NULL, '2021-06-07 03:30:35+07', false);
INSERT INTO public.journals VALUES (14779, 4262, 'Issue', 38, NULL, '2021-06-07 03:30:35+07', false);
INSERT INTO public.journals VALUES (14780, 4263, 'Issue', 38, NULL, '2021-06-07 03:30:35+07', false);
INSERT INTO public.journals VALUES (14782, 4265, 'Issue', 38, NULL, '2021-06-07 03:30:35+07', false);
INSERT INTO public.journals VALUES (14783, 4266, 'Issue', 38, NULL, '2021-06-07 03:30:35+07', false);
INSERT INTO public.journals VALUES (14784, 4267, 'Issue', 38, NULL, '2021-06-07 03:30:36+07', false);
INSERT INTO public.journals VALUES (14785, 4268, 'Issue', 38, NULL, '2021-06-07 03:30:36+07', false);
INSERT INTO public.journals VALUES (14795, 4278, 'Issue', 38, NULL, '2021-06-07 03:30:37+07', false);
INSERT INTO public.journals VALUES (14797, 4280, 'Issue', 38, NULL, '2021-06-07 03:30:37+07', false);
INSERT INTO public.journals VALUES (14798, 4281, 'Issue', 38, NULL, '2021-06-07 03:30:37+07', false);
INSERT INTO public.journals VALUES (14799, 4237, 'Issue', 38, NULL, '2021-06-07 03:32:13+07', false);
INSERT INTO public.journals VALUES (14800, 4238, 'Issue', 38, NULL, '2021-06-07 03:32:13+07', false);
INSERT INTO public.journals VALUES (14801, 4239, 'Issue', 38, NULL, '2021-06-07 03:32:13+07', false);
INSERT INTO public.journals VALUES (14802, 4240, 'Issue', 38, NULL, '2021-06-07 03:32:13+07', false);
INSERT INTO public.journals VALUES (14803, 4242, 'Issue', 38, NULL, '2021-06-07 03:32:13+07', false);
INSERT INTO public.journals VALUES (14804, 4243, 'Issue', 38, NULL, '2021-06-07 03:32:14+07', false);
INSERT INTO public.journals VALUES (14805, 4244, 'Issue', 38, NULL, '2021-06-07 03:32:14+07', false);
INSERT INTO public.journals VALUES (14806, 4246, 'Issue', 38, NULL, '2021-06-07 03:32:14+07', false);
INSERT INTO public.journals VALUES (14807, 4247, 'Issue', 38, NULL, '2021-06-07 03:32:14+07', false);
INSERT INTO public.journals VALUES (14808, 4248, 'Issue', 38, NULL, '2021-06-07 03:32:14+07', false);
INSERT INTO public.journals VALUES (14809, 4249, 'Issue', 38, NULL, '2021-06-07 03:32:14+07', false);
INSERT INTO public.journals VALUES (14810, 4250, 'Issue', 38, NULL, '2021-06-07 03:32:14+07', false);
INSERT INTO public.journals VALUES (14811, 4251, 'Issue', 38, NULL, '2021-06-07 03:32:14+07', false);
INSERT INTO public.journals VALUES (14813, 4260, 'Issue', 38, NULL, '2021-06-07 03:32:14+07', false);
INSERT INTO public.journals VALUES (14814, 4261, 'Issue', 38, NULL, '2021-06-07 03:32:15+07', false);
INSERT INTO public.journals VALUES (14815, 4262, 'Issue', 38, NULL, '2021-06-07 03:32:15+07', false);
INSERT INTO public.journals VALUES (14816, 4263, 'Issue', 38, NULL, '2021-06-07 03:32:15+07', false);
INSERT INTO public.journals VALUES (14818, 4265, 'Issue', 38, NULL, '2021-06-07 03:32:15+07', false);
INSERT INTO public.journals VALUES (14819, 4266, 'Issue', 38, NULL, '2021-06-07 03:32:15+07', false);
INSERT INTO public.journals VALUES (14820, 4267, 'Issue', 38, NULL, '2021-06-07 03:32:15+07', false);
INSERT INTO public.journals VALUES (14821, 4268, 'Issue', 38, NULL, '2021-06-07 03:32:15+07', false);
INSERT INTO public.journals VALUES (14822, 4237, 'Issue', 38, '', '2021-06-07 03:33:33+07', false);
INSERT INTO public.journals VALUES (14823, 4238, 'Issue', 38, '', '2021-06-07 03:33:33+07', false);
INSERT INTO public.journals VALUES (14824, 4239, 'Issue', 38, '', '2021-06-07 03:33:33+07', false);
INSERT INTO public.journals VALUES (14825, 4240, 'Issue', 38, '', '2021-06-07 03:33:33+07', false);
INSERT INTO public.journals VALUES (14826, 4242, 'Issue', 38, '', '2021-06-07 03:33:34+07', false);
INSERT INTO public.journals VALUES (14827, 4243, 'Issue', 38, '', '2021-06-07 03:33:34+07', false);
INSERT INTO public.journals VALUES (14828, 4244, 'Issue', 38, '', '2021-06-07 03:33:34+07', false);
INSERT INTO public.journals VALUES (14829, 4246, 'Issue', 38, '', '2021-06-07 03:33:34+07', false);
INSERT INTO public.journals VALUES (14830, 4247, 'Issue', 38, '', '2021-06-07 03:33:34+07', false);
INSERT INTO public.journals VALUES (14831, 4248, 'Issue', 38, '', '2021-06-07 03:33:34+07', false);
INSERT INTO public.journals VALUES (14832, 4249, 'Issue', 38, '', '2021-06-07 03:33:34+07', false);
INSERT INTO public.journals VALUES (14833, 4250, 'Issue', 38, '', '2021-06-07 03:33:34+07', false);
INSERT INTO public.journals VALUES (14834, 4251, 'Issue', 38, '', '2021-06-07 03:33:34+07', false);
INSERT INTO public.journals VALUES (14836, 4260, 'Issue', 38, '', '2021-06-07 03:33:35+07', false);
INSERT INTO public.journals VALUES (14837, 4261, 'Issue', 38, '', '2021-06-07 03:33:35+07', false);
INSERT INTO public.journals VALUES (14838, 4262, 'Issue', 38, '', '2021-06-07 03:33:35+07', false);
INSERT INTO public.journals VALUES (14839, 4263, 'Issue', 38, '', '2021-06-07 03:33:35+07', false);
INSERT INTO public.journals VALUES (14841, 4265, 'Issue', 38, '', '2021-06-07 03:33:35+07', false);
INSERT INTO public.journals VALUES (14842, 4266, 'Issue', 38, '', '2021-06-07 03:33:35+07', false);
INSERT INTO public.journals VALUES (14843, 4267, 'Issue', 38, '', '2021-06-07 03:33:35+07', false);
INSERT INTO public.journals VALUES (14844, 4268, 'Issue', 38, '', '2021-06-07 03:33:36+07', false);
INSERT INTO public.journals VALUES (14845, 4253, 'Issue', 38, '', '2021-06-07 03:34:47+07', false);
INSERT INTO public.journals VALUES (14847, 4255, 'Issue', 38, '', '2021-06-07 03:34:48+07', false);
INSERT INTO public.journals VALUES (14849, 4257, 'Issue', 38, '', '2021-06-07 03:34:48+07', false);
INSERT INTO public.journals VALUES (14850, 4258, 'Issue', 38, '', '2021-06-07 03:34:48+07', false);
INSERT INTO public.journals VALUES (14851, 4259, 'Issue', 38, '', '2021-06-07 03:34:48+07', false);
INSERT INTO public.journals VALUES (14852, 4278, 'Issue', 38, '', '2021-06-07 03:34:48+07', false);
INSERT INTO public.journals VALUES (14854, 4280, 'Issue', 38, '', '2021-06-07 03:34:48+07', false);
INSERT INTO public.journals VALUES (14855, 4281, 'Issue', 38, '', '2021-06-07 03:34:48+07', false);
INSERT INTO public.journals VALUES (14863, 4237, 'Issue', 38, NULL, '2021-06-07 03:36:19+07', false);
INSERT INTO public.journals VALUES (14864, 4238, 'Issue', 38, NULL, '2021-06-07 03:36:19+07', false);
INSERT INTO public.journals VALUES (14865, 4237, 'Issue', 38, NULL, '2021-06-07 03:36:31+07', false);
INSERT INTO public.journals VALUES (14866, 4238, 'Issue', 38, NULL, '2021-06-07 03:36:32+07', false);
INSERT INTO public.journals VALUES (14867, 4260, 'Issue', 38, NULL, '2021-06-07 03:36:51+07', false);
INSERT INTO public.journals VALUES (14868, 4261, 'Issue', 38, NULL, '2021-06-07 03:36:51+07', false);
INSERT INTO public.journals VALUES (14869, 4262, 'Issue', 38, NULL, '2021-06-07 03:36:51+07', false);
INSERT INTO public.journals VALUES (14870, 4263, 'Issue', 38, NULL, '2021-06-07 03:36:52+07', false);
INSERT INTO public.journals VALUES (14872, 4265, 'Issue', 38, NULL, '2021-06-07 03:36:52+07', false);
INSERT INTO public.journals VALUES (14873, 4266, 'Issue', 38, NULL, '2021-06-07 03:36:52+07', false);
INSERT INTO public.journals VALUES (14874, 4267, 'Issue', 38, NULL, '2021-06-07 03:36:52+07', false);
INSERT INTO public.journals VALUES (14875, 4268, 'Issue', 38, NULL, '2021-06-07 03:36:52+07', false);
INSERT INTO public.journals VALUES (14876, 4239, 'Issue', 38, NULL, '2021-06-07 03:37:09+07', false);
INSERT INTO public.journals VALUES (14877, 4361, 'Issue', 40, '', '2021-06-09 00:57:31+07', false);
INSERT INTO public.journals VALUES (14878, 4240, 'Issue', 52, NULL, '2021-06-09 01:14:46+07', false);
INSERT INTO public.journals VALUES (14879, 4246, 'Issue', 5, NULL, '2021-06-10 01:36:10+07', false);
INSERT INTO public.journals VALUES (14880, 4247, 'Issue', 5, NULL, '2021-06-10 01:36:10+07', false);
INSERT INTO public.journals VALUES (14881, 4248, 'Issue', 5, NULL, '2021-06-10 01:36:10+07', false);
INSERT INTO public.journals VALUES (14882, 4249, 'Issue', 5, NULL, '2021-06-10 01:36:11+07', false);
INSERT INTO public.journals VALUES (14883, 4250, 'Issue', 5, NULL, '2021-06-10 01:36:12+07', false);
INSERT INTO public.journals VALUES (14884, 4251, 'Issue', 5, NULL, '2021-06-10 01:36:12+07', false);
INSERT INTO public.journals VALUES (14886, 4263, 'Issue', 5, NULL, '2021-06-10 01:36:38+07', false);
INSERT INTO public.journals VALUES (14888, 4265, 'Issue', 5, NULL, '2021-06-10 01:36:39+07', false);
INSERT INTO public.journals VALUES (14889, 4266, 'Issue', 5, NULL, '2021-06-10 01:36:39+07', false);
INSERT INTO public.journals VALUES (14890, 4267, 'Issue', 5, NULL, '2021-06-10 01:36:39+07', false);
INSERT INTO public.journals VALUES (14891, 4268, 'Issue', 5, NULL, '2021-06-10 01:36:39+07', false);
INSERT INTO public.journals VALUES (14892, 4246, 'Issue', 5, '', '2021-06-10 01:37:04+07', false);
INSERT INTO public.journals VALUES (14893, 4247, 'Issue', 5, '', '2021-06-10 01:37:04+07', false);
INSERT INTO public.journals VALUES (14894, 4248, 'Issue', 5, '', '2021-06-10 01:37:05+07', false);
INSERT INTO public.journals VALUES (14895, 4249, 'Issue', 5, '', '2021-06-10 01:37:05+07', false);
INSERT INTO public.journals VALUES (14896, 4250, 'Issue', 5, '', '2021-06-10 01:37:05+07', false);
INSERT INTO public.journals VALUES (14897, 4251, 'Issue', 5, '', '2021-06-10 01:37:05+07', false);
INSERT INTO public.journals VALUES (14899, 4263, 'Issue', 5, '', '2021-06-10 01:37:05+07', false);
INSERT INTO public.journals VALUES (14901, 4265, 'Issue', 5, '', '2021-06-10 01:37:05+07', false);
INSERT INTO public.journals VALUES (14902, 4266, 'Issue', 5, '', '2021-06-10 01:37:05+07', false);
INSERT INTO public.journals VALUES (14903, 4267, 'Issue', 5, '', '2021-06-10 01:37:05+07', false);
INSERT INTO public.journals VALUES (14904, 4268, 'Issue', 5, '', '2021-06-10 01:37:06+07', false);
INSERT INTO public.journals VALUES (14905, 4239, 'Issue', 5, NULL, '2021-06-10 01:37:39+07', false);
INSERT INTO public.journals VALUES (14906, 4239, 'Issue', 5, NULL, '2021-06-10 01:37:46+07', false);
INSERT INTO public.journals VALUES (14907, 4240, 'Issue', 5, '', '2021-06-10 02:02:15+07', false);
INSERT INTO public.journals VALUES (14908, 4244, 'Issue', 5, '', '2021-06-10 02:02:54+07', false);
INSERT INTO public.journals VALUES (14909, 4240, 'Issue', 52, NULL, '2021-06-10 02:36:05+07', false);
INSERT INTO public.journals VALUES (14910, 4240, 'Issue', 52, NULL, '2021-06-11 01:22:54+07', false);
INSERT INTO public.journals VALUES (14911, 4240, 'Issue', 52, NULL, '2021-06-11 14:15:52+07', false);
INSERT INTO public.journals VALUES (14912, 4240, 'Issue', 52, NULL, '2021-06-11 14:16:03+07', false);
INSERT INTO public.journals VALUES (14913, 4243, 'Issue', 38, NULL, '2021-06-12 01:02:46+07', false);
INSERT INTO public.journals VALUES (14914, 4260, 'Issue', 39, NULL, '2021-06-12 08:30:31+07', false);
INSERT INTO public.journals VALUES (14915, 4261, 'Issue', 39, NULL, '2021-06-12 08:30:43+07', false);
INSERT INTO public.journals VALUES (14916, 4260, 'Issue', 39, NULL, '2021-06-12 08:30:59+07', false);
INSERT INTO public.journals VALUES (14917, 4261, 'Issue', 39, NULL, '2021-06-12 08:30:59+07', false);
INSERT INTO public.journals VALUES (14919, 4242, 'Issue', 38, NULL, '2021-06-12 02:00:59+07', false);
INSERT INTO public.journals VALUES (14920, 4242, 'Issue', 38, NULL, '2021-06-12 02:01:14+07', false);
INSERT INTO public.journals VALUES (14921, 4240, 'Issue', 52, NULL, '2021-06-12 13:10:06+07', false);
INSERT INTO public.journals VALUES (14922, 4240, 'Issue', 52, NULL, '2021-06-12 13:11:15+07', false);
INSERT INTO public.journals VALUES (14923, 4362, 'Issue', 15, '', '2021-06-14 08:16:18+07', false);
INSERT INTO public.journals VALUES (14924, 4243, 'Issue', 39, '', '2021-06-14 08:18:17+07', false);
INSERT INTO public.journals VALUES (14925, 4244, 'Issue', 39, '', '2021-06-14 08:18:18+07', false);
INSERT INTO public.journals VALUES (14926, 4262, 'Issue', 39, '', '2021-06-14 08:18:18+07', false);
INSERT INTO public.journals VALUES (14927, 4243, 'Issue', 39, NULL, '2021-06-14 08:18:36+07', false);
INSERT INTO public.journals VALUES (14928, 4244, 'Issue', 39, NULL, '2021-06-14 08:18:36+07', false);
INSERT INTO public.journals VALUES (14929, 4262, 'Issue', 39, NULL, '2021-06-14 08:18:37+07', false);
INSERT INTO public.journals VALUES (14930, 4365, 'Issue', 8, NULL, '2021-06-14 08:21:02+07', false);
INSERT INTO public.journals VALUES (14931, 4366, 'Issue', 8, NULL, '2021-06-14 08:21:02+07', false);
INSERT INTO public.journals VALUES (14932, 4367, 'Issue', 8, NULL, '2021-06-14 08:21:02+07', false);
INSERT INTO public.journals VALUES (14933, 4368, 'Issue', 8, NULL, '2021-06-14 08:21:02+07', false);
INSERT INTO public.journals VALUES (14934, 4363, 'Issue', 8, NULL, '2021-06-14 08:21:11+07', false);
INSERT INTO public.journals VALUES (14935, 4364, 'Issue', 8, NULL, '2021-06-14 08:21:11+07', false);
INSERT INTO public.journals VALUES (14936, 4365, 'Issue', 8, NULL, '2021-06-14 08:21:11+07', false);
INSERT INTO public.journals VALUES (14937, 4366, 'Issue', 8, NULL, '2021-06-14 08:21:11+07', false);
INSERT INTO public.journals VALUES (14938, 4367, 'Issue', 8, NULL, '2021-06-14 08:21:11+07', false);
INSERT INTO public.journals VALUES (14939, 4368, 'Issue', 8, NULL, '2021-06-14 08:21:11+07', false);
INSERT INTO public.journals VALUES (14940, 4243, 'Issue', 5, '', '2021-06-14 08:42:06+07', false);
INSERT INTO public.journals VALUES (14941, 4243, 'Issue', 5, '', '2021-06-15 13:39:59+07', false);
INSERT INTO public.journals VALUES (14942, 4262, 'Issue', 37, '', '2021-06-15 06:52:25+07', false);
INSERT INTO public.journals VALUES (14943, 4263, 'Issue', 37, '', '2021-06-15 06:52:26+07', false);
INSERT INTO public.journals VALUES (14944, 4265, 'Issue', 37, '', '2021-06-15 06:52:26+07', false);
INSERT INTO public.journals VALUES (14945, 4265, 'Issue', 37, '', '2021-06-15 06:52:47+07', false);
INSERT INTO public.journals VALUES (14946, 4262, 'Issue', 37, '', '2021-06-15 06:53:54+07', false);
INSERT INTO public.journals VALUES (14947, 4263, 'Issue', 37, '', '2021-06-15 06:53:54+07', false);
INSERT INTO public.journals VALUES (14950, 4253, 'Issue', 5, '', '2021-06-15 13:56:52+07', false);
INSERT INTO public.journals VALUES (14951, 4262, 'Issue', 37, '', '2021-06-15 13:58:17+07', false);
INSERT INTO public.journals VALUES (14952, 4262, 'Issue', 37, '', '2021-06-15 13:58:50+07', false);
INSERT INTO public.journals VALUES (14953, 4263, 'Issue', 37, '', '2021-06-15 13:59:22+07', false);
INSERT INTO public.journals VALUES (14954, 4263, 'Issue', 37, '', '2021-06-15 14:12:38+07', false);
INSERT INTO public.journals VALUES (14955, 4263, 'Issue', 37, '', '2021-06-15 14:13:04+07', false);
INSERT INTO public.journals VALUES (14956, 4266, 'Issue', 37, '', '2021-06-15 14:17:48+07', false);
INSERT INTO public.journals VALUES (14957, 4267, 'Issue', 37, '', '2021-06-15 14:17:48+07', false);
INSERT INTO public.journals VALUES (14958, 4268, 'Issue', 37, '', '2021-06-15 14:17:48+07', false);
INSERT INTO public.journals VALUES (14959, 4268, 'Issue', 37, '', '2021-06-15 14:18:03+07', false);
INSERT INTO public.journals VALUES (14960, 4267, 'Issue', 37, '', '2021-06-15 14:18:18+07', false);
INSERT INTO public.journals VALUES (14961, 4266, 'Issue', 37, '', '2021-06-15 14:18:36+07', false);
INSERT INTO public.journals VALUES (14962, 4371, 'Issue', 40, '', '2021-06-16 03:32:19+07', false);
INSERT INTO public.journals VALUES (14963, 4361, 'Issue', 40, NULL, '2021-06-17 10:14:52+07', false);
INSERT INTO public.journals VALUES (14964, 4361, 'Issue', 40, NULL, '2021-06-17 10:15:05+07', false);
INSERT INTO public.journals VALUES (14965, 4357, 'Issue', 40, NULL, '2021-06-17 10:22:40+07', false);
INSERT INTO public.journals VALUES (14966, 4360, 'Issue', 40, NULL, '2021-06-17 10:22:40+07', false);
INSERT INTO public.journals VALUES (14967, 4369, 'Issue', 40, NULL, '2021-06-17 10:22:40+07', false);
INSERT INTO public.journals VALUES (14968, 4370, 'Issue', 40, NULL, '2021-06-17 10:22:40+07', false);
INSERT INTO public.journals VALUES (14969, 4371, 'Issue', 40, NULL, '2021-06-17 10:22:41+07', false);
INSERT INTO public.journals VALUES (14970, 4372, 'Issue', 40, NULL, '2021-06-17 10:22:41+07', false);
INSERT INTO public.journals VALUES (14971, 4373, 'Issue', 40, NULL, '2021-06-17 10:22:41+07', false);
INSERT INTO public.journals VALUES (14972, 4374, 'Issue', 40, NULL, '2021-06-17 10:22:41+07', false);
INSERT INTO public.journals VALUES (14973, 4357, 'Issue', 40, '', '2021-06-17 10:23:34+07', false);
INSERT INTO public.journals VALUES (14974, 4360, 'Issue', 40, '', '2021-06-17 10:23:34+07', false);
INSERT INTO public.journals VALUES (14975, 4369, 'Issue', 40, '', '2021-06-17 10:23:35+07', false);
INSERT INTO public.journals VALUES (14976, 4370, 'Issue', 40, '', '2021-06-17 10:23:35+07', false);
INSERT INTO public.journals VALUES (14977, 4371, 'Issue', 40, '', '2021-06-17 10:23:35+07', false);
INSERT INTO public.journals VALUES (14978, 4372, 'Issue', 40, '', '2021-06-17 10:23:35+07', false);
INSERT INTO public.journals VALUES (14979, 4373, 'Issue', 40, '', '2021-06-17 10:23:35+07', false);
INSERT INTO public.journals VALUES (14980, 4374, 'Issue', 40, '', '2021-06-17 10:23:35+07', false);
INSERT INTO public.journals VALUES (14981, 3702, 'Issue', 38, NULL, '2021-06-17 11:02:40+07', false);
INSERT INTO public.journals VALUES (14982, 3703, 'Issue', 38, NULL, '2021-06-17 11:02:40+07', false);
INSERT INTO public.journals VALUES (14983, 4285, 'Issue', 38, NULL, '2021-06-17 11:02:54+07', false);
INSERT INTO public.journals VALUES (14984, 4244, 'Issue', 5, NULL, '2021-06-18 10:33:46+07', false);
INSERT INTO public.journals VALUES (14985, 4246, 'Issue', 5, NULL, '2021-06-18 10:33:46+07', false);
INSERT INTO public.journals VALUES (14986, 4247, 'Issue', 5, NULL, '2021-06-18 10:33:46+07', false);
INSERT INTO public.journals VALUES (14987, 4248, 'Issue', 5, NULL, '2021-06-18 10:33:47+07', false);
INSERT INTO public.journals VALUES (14988, 4249, 'Issue', 5, NULL, '2021-06-18 10:33:47+07', false);
INSERT INTO public.journals VALUES (14989, 4250, 'Issue', 5, NULL, '2021-06-18 10:33:47+07', false);
INSERT INTO public.journals VALUES (14990, 4251, 'Issue', 5, NULL, '2021-06-18 10:33:47+07', false);
INSERT INTO public.journals VALUES (14991, 4253, 'Issue', 5, '', '2021-06-18 16:10:22+07', false);
INSERT INTO public.journals VALUES (14992, 4243, 'Issue', 52, NULL, '2021-06-19 01:50:42+07', false);
INSERT INTO public.journals VALUES (14993, 4266, 'Issue', 37, '', '2021-06-19 01:52:17+07', false);
INSERT INTO public.journals VALUES (14994, 4267, 'Issue', 37, '', '2021-06-19 01:52:17+07', false);
INSERT INTO public.journals VALUES (14995, 4268, 'Issue', 37, '', '2021-06-19 01:52:17+07', false);
INSERT INTO public.journals VALUES (14996, 4243, 'Issue', 52, NULL, '2021-06-19 01:54:43+07', false);
INSERT INTO public.journals VALUES (14997, 4265, 'Issue', 39, '', '2021-06-19 07:19:18+07', false);
INSERT INTO public.journals VALUES (14998, 4244, 'Issue', 41, '', '2021-06-19 07:20:51+07', false);
INSERT INTO public.journals VALUES (14999, 4246, 'Issue', 41, '', '2021-06-19 07:21:04+07', false);
INSERT INTO public.journals VALUES (15000, 4249, 'Issue', 41, NULL, '2021-06-19 07:21:25+07', false);
INSERT INTO public.journals VALUES (15001, 4250, 'Issue', 41, NULL, '2021-06-19 07:21:25+07', false);
INSERT INTO public.journals VALUES (15002, 4251, 'Issue', 41, NULL, '2021-06-19 07:21:25+07', false);
INSERT INTO public.journals VALUES (15003, 4249, 'Issue', 41, NULL, '2021-06-19 07:21:39+07', false);
INSERT INTO public.journals VALUES (15004, 4250, 'Issue', 41, NULL, '2021-06-19 07:21:39+07', false);
INSERT INTO public.journals VALUES (15005, 4251, 'Issue', 41, NULL, '2021-06-19 07:21:39+07', false);
INSERT INTO public.journals VALUES (15006, 4247, 'Issue', 41, NULL, '2021-06-19 08:53:46+07', false);
INSERT INTO public.journals VALUES (15007, 4247, 'Issue', 41, NULL, '2021-06-19 08:53:59+07', false);
INSERT INTO public.journals VALUES (15008, 4248, 'Issue', 41, NULL, '2021-06-19 08:54:12+07', false);
INSERT INTO public.journals VALUES (15009, 4248, 'Issue', 41, NULL, '2021-06-19 08:54:19+07', false);
INSERT INTO public.journals VALUES (15010, 4378, 'Issue', 15, '', '2021-06-21 01:26:15+07', false);
INSERT INTO public.journals VALUES (15011, 4380, 'Issue', 15, '', '2021-06-21 01:26:32+07', false);
INSERT INTO public.journals VALUES (15012, 4376, 'Issue', 15, NULL, '2021-06-21 01:26:43+07', false);
INSERT INTO public.journals VALUES (15013, 4377, 'Issue', 15, NULL, '2021-06-21 01:26:43+07', false);
INSERT INTO public.journals VALUES (15014, 4378, 'Issue', 15, NULL, '2021-06-21 01:26:44+07', false);
INSERT INTO public.journals VALUES (15015, 4379, 'Issue', 15, NULL, '2021-06-21 01:26:44+07', false);
INSERT INTO public.journals VALUES (15016, 4380, 'Issue', 15, NULL, '2021-06-21 01:26:44+07', false);
INSERT INTO public.journals VALUES (15017, 4362, 'Issue', 15, NULL, '2021-06-21 01:26:56+07', false);
INSERT INTO public.journals VALUES (15018, 4381, 'Issue', 15, '', '2021-06-21 08:29:33+07', false);
INSERT INTO public.journals VALUES (15028, 4257, 'Issue', 5, NULL, '2021-06-21 09:39:51+07', false);
INSERT INTO public.journals VALUES (15029, 4281, 'Issue', 5, NULL, '2021-06-21 09:39:51+07', false);
INSERT INTO public.journals VALUES (15030, 4383, 'Issue', 5, '', '2021-06-21 09:44:44+07', false);
INSERT INTO public.journals VALUES (15031, 4257, 'Issue', 5, NULL, '2021-06-21 09:45:38+07', false);
INSERT INTO public.journals VALUES (15032, 4281, 'Issue', 5, NULL, '2021-06-21 09:45:38+07', false);
INSERT INTO public.journals VALUES (15033, 4257, 'Issue', 5, '', '2021-06-21 09:45:51+07', false);
INSERT INTO public.journals VALUES (15034, 4281, 'Issue', 5, '', '2021-06-21 09:45:51+07', false);
INSERT INTO public.journals VALUES (15035, 4257, 'Issue', 37, '', '2021-06-22 08:39:45+07', false);
INSERT INTO public.journals VALUES (15036, 4281, 'Issue', 37, '', '2021-06-22 08:40:17+07', false);
INSERT INTO public.journals VALUES (15037, 4281, 'Issue', 37, '', '2021-06-22 08:40:27+07', false);
INSERT INTO public.journals VALUES (15038, 4385, 'Issue', 37, NULL, '2021-06-22 08:43:43+07', false);
INSERT INTO public.journals VALUES (15039, 4390, 'Issue', 37, '', '2021-06-22 09:17:21+07', false);
INSERT INTO public.journals VALUES (15040, 4386, 'Issue', 41, '', '2021-06-25 02:49:21+07', false);
INSERT INTO public.journals VALUES (15041, 4387, 'Issue', 41, '', '2021-06-25 03:37:54+07', false);
INSERT INTO public.journals VALUES (15042, 4387, 'Issue', 41, '', '2021-06-25 03:38:16+07', false);
INSERT INTO public.journals VALUES (15043, 4388, 'Issue', 41, '', '2021-06-25 03:39:23+07', false);
INSERT INTO public.journals VALUES (15044, 4388, 'Issue', 41, '', '2021-06-25 03:39:36+07', false);
INSERT INTO public.journals VALUES (15045, 4389, 'Issue', 41, '', '2021-06-25 03:39:56+07', false);
INSERT INTO public.journals VALUES (15046, 4257, 'Issue', 41, '', '2021-06-25 03:49:06+07', false);
INSERT INTO public.journals VALUES (15047, 4392, 'Issue', 41, '', '2021-06-25 03:49:28+07', false);
INSERT INTO public.journals VALUES (15048, 4393, 'Issue', 40, NULL, '2021-06-26 01:08:07+07', false);
INSERT INTO public.journals VALUES (15049, 4394, 'Issue', 40, NULL, '2021-06-26 01:08:07+07', false);
INSERT INTO public.journals VALUES (15050, 4395, 'Issue', 40, NULL, '2021-06-26 01:08:07+07', false);
INSERT INTO public.journals VALUES (15051, 4396, 'Issue', 40, NULL, '2021-06-26 01:08:08+07', false);
INSERT INTO public.journals VALUES (15052, 4397, 'Issue', 40, NULL, '2021-06-26 01:08:08+07', false);
INSERT INTO public.journals VALUES (15053, 4385, 'Issue', 37, NULL, '2021-06-26 06:41:36+07', false);
INSERT INTO public.journals VALUES (15054, 4385, 'Issue', 37, NULL, '2021-06-26 06:41:47+07', false);
INSERT INTO public.journals VALUES (15055, 4253, 'Issue', 37, NULL, '2021-06-26 06:42:02+07', false);
INSERT INTO public.journals VALUES (15056, 4253, 'Issue', 37, NULL, '2021-06-26 06:42:09+07', false);
INSERT INTO public.journals VALUES (15057, 4253, 'Issue', 37, '', '2021-06-26 06:42:44+07', false);
INSERT INTO public.journals VALUES (15058, 4281, 'Issue', 37, NULL, '2021-06-26 06:43:07+07', false);
INSERT INTO public.journals VALUES (15059, 4253, 'Issue', 37, '', '2021-06-26 06:43:27+07', false);
INSERT INTO public.journals VALUES (15060, 4281, 'Issue', 37, NULL, '2021-06-26 06:43:50+07', false);
INSERT INTO public.journals VALUES (15061, 4390, 'Issue', 37, NULL, '2021-06-26 06:44:01+07', false);
INSERT INTO public.journals VALUES (15062, 4390, 'Issue', 37, NULL, '2021-06-26 06:44:13+07', false);
INSERT INTO public.journals VALUES (15063, 4391, 'Issue', 37, '', '2021-06-26 06:44:36+07', false);
INSERT INTO public.journals VALUES (15064, 4390, 'Issue', 37, '', '2021-06-26 06:45:12+07', false);
INSERT INTO public.journals VALUES (15065, 4391, 'Issue', 37, '', '2021-06-26 06:45:35+07', false);
INSERT INTO public.journals VALUES (15066, 4385, 'Issue', 37, '', '2021-06-26 06:46:06+07', false);
INSERT INTO public.journals VALUES (15067, 4385, 'Issue', 37, '', '2021-06-26 06:47:56+07', false);
INSERT INTO public.journals VALUES (15068, 4375, 'Issue', 5, '', '2021-06-29 08:05:24+07', false);
INSERT INTO public.journals VALUES (15069, 4393, 'Issue', 5, '', '2021-06-29 08:05:24+07', false);
INSERT INTO public.journals VALUES (15070, 4394, 'Issue', 5, '', '2021-06-29 08:05:24+07', false);
INSERT INTO public.journals VALUES (15071, 4395, 'Issue', 5, '', '2021-06-29 08:05:25+07', false);
INSERT INTO public.journals VALUES (15072, 4396, 'Issue', 5, '', '2021-06-29 08:05:25+07', false);
INSERT INTO public.journals VALUES (15073, 4397, 'Issue', 5, '', '2021-06-29 08:05:25+07', false);
INSERT INTO public.journals VALUES (15074, 4398, 'Issue', 5, '', '2021-06-29 08:05:25+07', false);
INSERT INTO public.journals VALUES (15075, 4375, 'Issue', 5, NULL, '2021-06-29 08:05:44+07', false);
INSERT INTO public.journals VALUES (15076, 4400, 'Issue', 15, '', '2021-06-29 08:32:08+07', false);
INSERT INTO public.journals VALUES (15077, 4381, 'Issue', 15, NULL, '2021-06-29 08:39:31+07', false);
INSERT INTO public.journals VALUES (15078, 4399, 'Issue', 15, NULL, '2021-06-29 08:39:31+07', false);
INSERT INTO public.journals VALUES (15079, 4401, 'Issue', 15, NULL, '2021-06-29 08:39:31+07', false);
INSERT INTO public.journals VALUES (15080, 4402, 'Issue', 15, NULL, '2021-06-29 08:39:32+07', false);
INSERT INTO public.journals VALUES (15081, 4400, 'Issue', 15, NULL, '2021-06-29 08:39:32+07', false);
INSERT INTO public.journals VALUES (15082, 4403, 'Issue', 15, NULL, '2021-06-29 08:39:32+07', false);
INSERT INTO public.journals VALUES (15083, 4404, 'Issue', 15, NULL, '2021-06-29 08:39:32+07', false);
INSERT INTO public.journals VALUES (15084, 4405, 'Issue', 15, NULL, '2021-06-29 08:47:50+07', false);
INSERT INTO public.journals VALUES (15085, 4259, 'Issue', 39, '', '2021-06-30 14:55:27+07', false);
INSERT INTO public.journals VALUES (15086, 4280, 'Issue', 39, '', '2021-06-30 14:55:27+07', false);
INSERT INTO public.journals VALUES (15087, 4280, 'Issue', 39, '', '2021-06-30 14:56:36+07', false);
INSERT INTO public.journals VALUES (15088, 4406, 'Issue', 39, NULL, '2021-06-30 07:58:44+07', false);
INSERT INTO public.journals VALUES (15089, 4291, 'Issue', 5, NULL, '2021-07-01 08:18:41+07', false);
INSERT INTO public.journals VALUES (15090, 4358, 'Issue', 5, NULL, '2021-07-01 08:18:41+07', false);
INSERT INTO public.journals VALUES (15091, 4361, 'Issue', 5, NULL, '2021-07-01 08:18:41+07', false);
INSERT INTO public.journals VALUES (15092, 4360, 'Issue', 39, NULL, '2021-07-01 11:09:10+07', false);
INSERT INTO public.journals VALUES (15093, 4357, 'Issue', 39, NULL, '2021-07-01 11:09:17+07', false);
INSERT INTO public.journals VALUES (15094, 4357, 'Issue', 39, NULL, '2021-07-01 11:09:23+07', false);
INSERT INTO public.journals VALUES (15095, 4360, 'Issue', 39, NULL, '2021-07-01 11:09:23+07', false);
INSERT INTO public.journals VALUES (15096, 4265, 'Issue', 39, NULL, '2021-07-01 11:10:40+07', false);
INSERT INTO public.journals VALUES (15097, 4237, 'Issue', 5, NULL, '2021-07-01 14:29:59+07', false);
INSERT INTO public.journals VALUES (15098, 4238, 'Issue', 5, NULL, '2021-07-01 14:29:59+07', false);
INSERT INTO public.journals VALUES (15099, 4239, 'Issue', 5, NULL, '2021-07-01 14:29:59+07', false);
INSERT INTO public.journals VALUES (15100, 4240, 'Issue', 5, NULL, '2021-07-01 14:29:59+07', false);
INSERT INTO public.journals VALUES (15101, 4242, 'Issue', 5, NULL, '2021-07-01 14:29:59+07', false);
INSERT INTO public.journals VALUES (15102, 4260, 'Issue', 5, NULL, '2021-07-01 14:29:59+07', false);
INSERT INTO public.journals VALUES (15103, 4261, 'Issue', 5, NULL, '2021-07-01 14:29:59+07', false);
INSERT INTO public.journals VALUES (15104, 4244, 'Issue', 5, NULL, '2021-07-01 14:30:15+07', false);
INSERT INTO public.journals VALUES (15105, 4246, 'Issue', 5, NULL, '2021-07-01 14:30:15+07', false);
INSERT INTO public.journals VALUES (15106, 4243, 'Issue', 5, NULL, '2021-07-01 14:30:22+07', false);
INSERT INTO public.journals VALUES (15107, 4244, 'Issue', 5, NULL, '2021-07-01 14:30:22+07', false);
INSERT INTO public.journals VALUES (15108, 4246, 'Issue', 5, NULL, '2021-07-01 14:30:22+07', false);
INSERT INTO public.journals VALUES (15109, 4247, 'Issue', 5, NULL, '2021-07-01 14:30:22+07', false);
INSERT INTO public.journals VALUES (15110, 4248, 'Issue', 5, NULL, '2021-07-01 14:30:22+07', false);
INSERT INTO public.journals VALUES (15111, 4249, 'Issue', 5, NULL, '2021-07-01 14:30:22+07', false);
INSERT INTO public.journals VALUES (15112, 4250, 'Issue', 5, NULL, '2021-07-01 14:30:23+07', false);
INSERT INTO public.journals VALUES (15113, 4251, 'Issue', 5, NULL, '2021-07-01 14:30:23+07', false);
INSERT INTO public.journals VALUES (15114, 4262, 'Issue', 5, NULL, '2021-07-01 14:30:23+07', false);
INSERT INTO public.journals VALUES (15115, 4263, 'Issue', 5, NULL, '2021-07-01 14:30:23+07', false);
INSERT INTO public.journals VALUES (15116, 4265, 'Issue', 5, NULL, '2021-07-01 14:30:23+07', false);
INSERT INTO public.journals VALUES (15117, 4266, 'Issue', 5, NULL, '2021-07-01 14:30:23+07', false);
INSERT INTO public.journals VALUES (15118, 4267, 'Issue', 5, NULL, '2021-07-01 14:30:23+07', false);
INSERT INTO public.journals VALUES (15119, 4268, 'Issue', 5, NULL, '2021-07-01 14:30:23+07', false);
INSERT INTO public.journals VALUES (15120, 4384, 'Issue', 5, '', '2021-07-01 14:30:37+07', false);
INSERT INTO public.journals VALUES (15121, 4253, 'Issue', 5, NULL, '2021-07-01 14:30:53+07', false);
INSERT INTO public.journals VALUES (15122, 4253, 'Issue', 5, NULL, '2021-07-01 14:30:59+07', false);
INSERT INTO public.journals VALUES (15123, 4385, 'Issue', 5, '', '2021-07-01 14:31:23+07', false);
INSERT INTO public.journals VALUES (15124, 4253, 'Issue', 5, NULL, '2021-07-01 14:31:31+07', false);
INSERT INTO public.journals VALUES (15125, 4257, 'Issue', 5, NULL, '2021-07-01 14:31:31+07', false);
INSERT INTO public.journals VALUES (15126, 4281, 'Issue', 5, NULL, '2021-07-01 14:31:32+07', false);
INSERT INTO public.journals VALUES (15127, 4384, 'Issue', 5, NULL, '2021-07-01 14:31:32+07', false);
INSERT INTO public.journals VALUES (15128, 4385, 'Issue', 5, NULL, '2021-07-01 14:31:32+07', false);
INSERT INTO public.journals VALUES (15129, 4386, 'Issue', 5, NULL, '2021-07-01 14:31:32+07', false);
INSERT INTO public.journals VALUES (15130, 4387, 'Issue', 5, NULL, '2021-07-01 14:31:32+07', false);
INSERT INTO public.journals VALUES (15131, 4388, 'Issue', 5, NULL, '2021-07-01 14:31:32+07', false);
INSERT INTO public.journals VALUES (15132, 4389, 'Issue', 5, NULL, '2021-07-01 14:31:32+07', false);
INSERT INTO public.journals VALUES (15133, 4390, 'Issue', 5, NULL, '2021-07-01 14:31:32+07', false);
INSERT INTO public.journals VALUES (15134, 4391, 'Issue', 5, NULL, '2021-07-01 14:31:32+07', false);
INSERT INTO public.journals VALUES (15135, 4392, 'Issue', 5, NULL, '2021-07-01 14:31:32+07', false);
INSERT INTO public.journals VALUES (15136, 4383, 'Issue', 5, NULL, '2021-07-01 14:31:43+07', false);
INSERT INTO public.journals VALUES (15137, 4280, 'Issue', 5, NULL, '2021-07-01 14:31:55+07', false);
INSERT INTO public.journals VALUES (15138, 4406, 'Issue', 5, NULL, '2021-07-01 14:31:55+07', false);
INSERT INTO public.journals VALUES (15139, 4255, 'Issue', 5, NULL, '2021-07-01 14:32:38+07', false);
INSERT INTO public.journals VALUES (15140, 4258, 'Issue', 5, NULL, '2021-07-01 14:32:38+07', false);
INSERT INTO public.journals VALUES (15141, 4278, 'Issue', 5, NULL, '2021-07-01 14:32:38+07', false);
INSERT INTO public.journals VALUES (15142, 4255, 'Issue', 5, NULL, '2021-07-01 14:32:50+07', false);
INSERT INTO public.journals VALUES (15143, 4258, 'Issue', 5, NULL, '2021-07-01 14:32:50+07', false);
INSERT INTO public.journals VALUES (15144, 4278, 'Issue', 5, NULL, '2021-07-01 14:33:19+07', false);
INSERT INTO public.journals VALUES (15145, 4255, 'Issue', 5, '', '2021-07-01 14:34:00+07', false);
INSERT INTO public.journals VALUES (15146, 4258, 'Issue', 5, '', '2021-07-01 14:34:00+07', false);
INSERT INTO public.journals VALUES (15147, 4278, 'Issue', 5, '', '2021-07-01 14:34:00+07', false);
INSERT INTO public.journals VALUES (15148, 4407, 'Issue', 5, '', '2021-07-01 14:34:21+07', false);
INSERT INTO public.journals VALUES (15149, 4259, 'Issue', 5, '', '2021-07-01 14:35:07+07', false);
INSERT INTO public.journals VALUES (15150, 4407, 'Issue', 39, NULL, '2021-07-02 08:35:22+07', false);
INSERT INTO public.journals VALUES (15151, 4407, 'Issue', 39, NULL, '2021-07-02 08:35:29+07', false);
INSERT INTO public.journals VALUES (15152, 4408, 'Issue', 39, '', '2021-07-02 16:50:28+07', false);
INSERT INTO public.journals VALUES (15153, 4258, 'Issue', 41, '', '2021-07-03 09:02:43+07', false);
INSERT INTO public.journals VALUES (15154, 4255, 'Issue', 41, '', '2021-07-03 09:03:41+07', false);
INSERT INTO public.journals VALUES (15155, 4255, 'Issue', 41, NULL, '2021-07-03 09:04:13+07', false);
INSERT INTO public.journals VALUES (15156, 4255, 'Issue', 41, NULL, '2021-07-03 09:04:25+07', false);
INSERT INTO public.journals VALUES (15157, 4414, 'Issue', 41, '', '2021-07-03 09:05:31+07', false);
INSERT INTO public.journals VALUES (15158, 4415, 'Issue', 41, '', '2021-07-03 09:08:58+07', false);
INSERT INTO public.journals VALUES (15159, 4416, 'Issue', 41, '', '2021-07-03 09:09:12+07', false);
INSERT INTO public.journals VALUES (15160, 4414, 'Issue', 41, '', '2021-07-03 09:09:45+07', false);
INSERT INTO public.journals VALUES (15161, 4255, 'Issue', 41, '', '2021-07-03 09:10:28+07', false);
INSERT INTO public.journals VALUES (15162, 4410, 'Issue', 5, NULL, '2021-07-03 09:50:00+07', false);
INSERT INTO public.journals VALUES (15163, 4410, 'Issue', 5, NULL, '2021-07-03 09:50:13+07', false);
INSERT INTO public.journals VALUES (15164, 4410, 'Issue', 5, '', '2021-07-03 09:50:38+07', false);
INSERT INTO public.journals VALUES (15165, 4413, 'Issue', 5, NULL, '2021-07-03 09:54:32+07', false);
INSERT INTO public.journals VALUES (15166, 4413, 'Issue', 5, '', '2021-07-03 09:54:48+07', false);
INSERT INTO public.journals VALUES (15167, 4259, 'Issue', 5, '', '2021-07-03 03:06:03+07', false);
INSERT INTO public.journals VALUES (15168, 4409, 'Issue', 5, '', '2021-07-03 03:06:28+07', false);
INSERT INTO public.journals VALUES (15169, 4409, 'Issue', 5, NULL, '2021-07-03 03:06:47+07', false);
INSERT INTO public.journals VALUES (15170, 4410, 'Issue', 39, NULL, '2021-07-03 16:44:53+07', false);
INSERT INTO public.journals VALUES (15171, 4418, 'Issue', 39, NULL, '2021-07-03 16:44:53+07', false);
INSERT INTO public.journals VALUES (15172, 4410, 'Issue', 39, NULL, '2021-07-03 16:45:02+07', false);
INSERT INTO public.journals VALUES (15173, 4413, 'Issue', 39, NULL, '2021-07-03 16:45:45+07', false);
INSERT INTO public.journals VALUES (15174, 4413, 'Issue', 39, NULL, '2021-07-03 16:45:48+07', false);
INSERT INTO public.journals VALUES (15175, 4413, 'Issue', 39, '', '2021-07-03 16:46:03+07', false);
INSERT INTO public.journals VALUES (15176, 4357, 'Issue', 5, '', '2021-07-05 08:34:36+07', false);
INSERT INTO public.journals VALUES (15177, 4360, 'Issue', 5, '', '2021-07-05 08:34:36+07', false);
INSERT INTO public.journals VALUES (15178, 4375, 'Issue', 5, '', '2021-07-05 08:35:03+07', false);
INSERT INTO public.journals VALUES (15179, 4278, 'Issue', 37, '', '2021-07-05 08:43:11+07', false);
INSERT INTO public.journals VALUES (15180, 4419, 'Issue', 5, '', '2021-07-05 08:45:28+07', false);
INSERT INTO public.journals VALUES (15181, 4420, 'Issue', 37, '', '2021-07-05 08:47:45+07', false);
INSERT INTO public.journals VALUES (15182, 4421, 'Issue', 37, '', '2021-07-05 08:47:46+07', false);
INSERT INTO public.journals VALUES (15183, 4422, 'Issue', 37, '', '2021-07-05 08:47:46+07', false);
INSERT INTO public.journals VALUES (15184, 4375, 'Issue', 52, NULL, '2021-07-05 08:54:18+07', false);
INSERT INTO public.journals VALUES (15185, 4255, 'Issue', 5, NULL, '2021-07-05 02:02:49+07', false);
INSERT INTO public.journals VALUES (15186, 4258, 'Issue', 5, NULL, '2021-07-05 02:02:49+07', false);
INSERT INTO public.journals VALUES (15187, 4278, 'Issue', 5, NULL, '2021-07-05 02:02:49+07', false);
INSERT INTO public.journals VALUES (15188, 4407, 'Issue', 5, NULL, '2021-07-05 02:02:50+07', false);
INSERT INTO public.journals VALUES (15189, 4408, 'Issue', 5, NULL, '2021-07-05 02:02:50+07', false);
INSERT INTO public.journals VALUES (15190, 4410, 'Issue', 5, NULL, '2021-07-05 02:02:50+07', false);
INSERT INTO public.journals VALUES (15191, 4413, 'Issue', 5, NULL, '2021-07-05 02:02:50+07', false);
INSERT INTO public.journals VALUES (15192, 4414, 'Issue', 5, NULL, '2021-07-05 02:02:50+07', false);
INSERT INTO public.journals VALUES (15193, 4415, 'Issue', 5, NULL, '2021-07-05 02:02:50+07', false);
INSERT INTO public.journals VALUES (15194, 4416, 'Issue', 5, NULL, '2021-07-05 02:02:50+07', false);
INSERT INTO public.journals VALUES (15195, 4418, 'Issue', 5, NULL, '2021-07-05 02:02:50+07', false);
INSERT INTO public.journals VALUES (15196, 4420, 'Issue', 5, NULL, '2021-07-05 02:02:50+07', false);
INSERT INTO public.journals VALUES (15197, 4421, 'Issue', 5, NULL, '2021-07-05 02:02:50+07', false);
INSERT INTO public.journals VALUES (15198, 4422, 'Issue', 5, NULL, '2021-07-05 02:02:51+07', false);
INSERT INTO public.journals VALUES (15199, 4375, 'Issue', 52, NULL, '2021-07-05 02:02:55+07', false);
INSERT INTO public.journals VALUES (15200, 4259, 'Issue', 39, NULL, '2021-07-06 08:34:52+07', false);
INSERT INTO public.journals VALUES (15201, 4424, 'Issue', 39, NULL, '2021-07-06 08:35:00+07', false);
INSERT INTO public.journals VALUES (15202, 4259, 'Issue', 39, NULL, '2021-07-06 08:35:10+07', false);
INSERT INTO public.journals VALUES (15203, 4424, 'Issue', 39, NULL, '2021-07-06 08:35:11+07', false);
INSERT INTO public.journals VALUES (15204, 4423, 'Issue', 37, '', '2021-07-07 11:09:36+07', false);
INSERT INTO public.journals VALUES (15205, 4370, 'Issue', 39, NULL, '2021-07-08 16:51:23+07', false);
INSERT INTO public.journals VALUES (15206, 4370, 'Issue', 39, NULL, '2021-07-08 16:51:29+07', false);
INSERT INTO public.journals VALUES (15207, 4370, 'Issue', 39, '', '2021-07-08 16:51:44+07', false);
INSERT INTO public.journals VALUES (15208, 4425, 'Issue', 39, NULL, '2021-07-12 08:14:42+07', false);
INSERT INTO public.journals VALUES (15209, 4425, 'Issue', 39, NULL, '2021-07-12 08:14:48+07', false);
INSERT INTO public.journals VALUES (15210, 4394, 'Issue', 38, NULL, '2021-07-12 08:34:10+07', false);
INSERT INTO public.journals VALUES (15211, 4398, 'Issue', 38, NULL, '2021-07-12 08:37:50+07', false);
INSERT INTO public.journals VALUES (15212, 4369, 'Issue', 38, '', '2021-07-12 08:41:47+07', false);
INSERT INTO public.journals VALUES (15213, 4371, 'Issue', 38, '', '2021-07-12 08:43:11+07', false);
INSERT INTO public.journals VALUES (15214, 4372, 'Issue', 38, '', '2021-07-12 08:43:38+07', false);
INSERT INTO public.journals VALUES (15215, 4373, 'Issue', 38, '', '2021-07-12 08:44:45+07', false);
INSERT INTO public.journals VALUES (15216, 4374, 'Issue', 38, '', '2021-07-12 08:45:05+07', false);
INSERT INTO public.journals VALUES (15217, 4393, 'Issue', 38, '', '2021-07-12 08:46:00+07', false);
INSERT INTO public.journals VALUES (15218, 4393, 'Issue', 38, '', '2021-07-12 08:46:28+07', false);
INSERT INTO public.journals VALUES (15219, 4394, 'Issue', 38, NULL, '2021-07-12 08:46:43+07', false);
INSERT INTO public.journals VALUES (15220, 4394, 'Issue', 38, NULL, '2021-07-12 08:46:56+07', false);
INSERT INTO public.journals VALUES (15221, 4430, 'Issue', 38, '', '2021-07-12 08:54:41+07', false);
INSERT INTO public.journals VALUES (15222, 4431, 'Issue', 38, '', '2021-07-12 08:55:28+07', false);
INSERT INTO public.journals VALUES (15223, 4395, 'Issue', 38, '', '2021-07-12 08:56:54+07', false);
INSERT INTO public.journals VALUES (15224, 4396, 'Issue', 38, '', '2021-07-12 01:57:42+07', false);
INSERT INTO public.journals VALUES (15225, 4397, 'Issue', 38, NULL, '2021-07-12 01:57:58+07', false);
INSERT INTO public.journals VALUES (15226, 4397, 'Issue', 38, NULL, '2021-07-12 01:58:07+07', false);
INSERT INTO public.journals VALUES (15227, 4397, 'Issue', 38, NULL, '2021-07-12 01:58:13+07', false);
INSERT INTO public.journals VALUES (15228, 4398, 'Issue', 38, '', '2021-07-12 01:58:47+07', false);
INSERT INTO public.journals VALUES (15229, 4398, 'Issue', 38, NULL, '2021-07-12 01:58:55+07', false);
INSERT INTO public.journals VALUES (15230, 4357, 'Issue', 38, NULL, '2021-07-12 01:59:12+07', false);
INSERT INTO public.journals VALUES (15231, 4360, 'Issue', 38, NULL, '2021-07-12 01:59:13+07', false);
INSERT INTO public.journals VALUES (15232, 4370, 'Issue', 38, NULL, '2021-07-12 01:59:13+07', false);
INSERT INTO public.journals VALUES (15233, 4375, 'Issue', 38, '', '2021-07-12 01:59:56+07', false);
INSERT INTO public.journals VALUES (15234, 4426, 'Issue', 38, '', '2021-07-12 09:19:29+07', false);
INSERT INTO public.journals VALUES (15235, 4427, 'Issue', 38, '', '2021-07-12 09:19:29+07', false);
INSERT INTO public.journals VALUES (15236, 4428, 'Issue', 38, '', '2021-07-12 09:19:29+07', false);
INSERT INTO public.journals VALUES (15237, 4429, 'Issue', 38, '', '2021-07-12 09:19:29+07', false);
INSERT INTO public.journals VALUES (15238, 4373, 'Issue', 38, NULL, '2021-07-12 09:20:35+07', false);
INSERT INTO public.journals VALUES (15239, 4374, 'Issue', 38, NULL, '2021-07-12 09:20:35+07', false);
INSERT INTO public.journals VALUES (15240, 4395, 'Issue', 38, '', '2021-07-12 09:21:26+07', false);
INSERT INTO public.journals VALUES (15241, 4375, 'Issue', 38, NULL, '2021-07-12 09:22:07+07', false);
INSERT INTO public.journals VALUES (15242, 4431, 'Issue', 38, NULL, '2021-07-12 09:23:07+07', false);
INSERT INTO public.journals VALUES (15243, 4373, 'Issue', 38, NULL, '2021-07-12 09:23:48+07', false);
INSERT INTO public.journals VALUES (15244, 4374, 'Issue', 38, NULL, '2021-07-12 09:24:24+07', false);
INSERT INTO public.journals VALUES (15245, 4427, 'Issue', 38, NULL, '2021-07-12 09:26:54+07', false);
INSERT INTO public.journals VALUES (15246, 4429, 'Issue', 38, NULL, '2021-07-12 09:27:06+07', false);
INSERT INTO public.journals VALUES (15247, 4395, 'Issue', 38, NULL, '2021-07-12 09:28:11+07', false);
INSERT INTO public.journals VALUES (15248, 4259, 'Issue', 39, NULL, '2021-07-12 09:50:09+07', false);
INSERT INTO public.journals VALUES (15249, 4423, 'Issue', 39, NULL, '2021-07-12 09:50:09+07', false);
INSERT INTO public.journals VALUES (15250, 4424, 'Issue', 39, NULL, '2021-07-12 09:50:10+07', false);
INSERT INTO public.journals VALUES (15251, 4425, 'Issue', 39, NULL, '2021-07-12 09:50:10+07', false);
INSERT INTO public.journals VALUES (15252, 4409, 'Issue', 39, NULL, '2021-07-12 09:51:47+07', false);
INSERT INTO public.journals VALUES (15253, 4409, 'Issue', 39, '', '2021-07-12 09:52:07+07', false);
INSERT INTO public.journals VALUES (15254, 4409, 'Issue', 39, '', '2021-07-12 09:52:25+07', false);
INSERT INTO public.journals VALUES (15255, 4382, 'Issue', 39, '', '2021-07-12 09:53:14+07', false);
INSERT INTO public.journals VALUES (15256, 4382, 'Issue', 39, '', '2021-07-12 09:54:13+07', false);
INSERT INTO public.journals VALUES (15257, 4383, 'Issue', 39, '', '2021-07-12 09:54:13+07', false);
INSERT INTO public.journals VALUES (15258, 4372, 'Issue', 40, NULL, '2021-07-12 03:10:52+07', false);
INSERT INTO public.journals VALUES (15259, 4396, 'Issue', 40, NULL, '2021-07-12 03:10:52+07', false);
INSERT INTO public.journals VALUES (15260, 4426, 'Issue', 40, NULL, '2021-07-12 03:10:52+07', false);
INSERT INTO public.journals VALUES (15261, 4428, 'Issue', 40, NULL, '2021-07-12 03:10:52+07', false);
INSERT INTO public.journals VALUES (15262, 4369, 'Issue', 39, NULL, '2021-07-12 14:40:20+07', false);
INSERT INTO public.journals VALUES (15263, 4369, 'Issue', 39, NULL, '2021-07-12 14:40:28+07', false);
INSERT INTO public.journals VALUES (15264, 4371, 'Issue', 39, NULL, '2021-07-12 14:49:44+07', false);
INSERT INTO public.journals VALUES (15265, 4371, 'Issue', 39, NULL, '2021-07-12 14:49:53+07', false);
INSERT INTO public.journals VALUES (15266, 4427, 'Issue', 39, NULL, '2021-07-12 14:51:34+07', false);
INSERT INTO public.journals VALUES (15267, 4427, 'Issue', 39, NULL, '2021-07-12 14:52:26+07', false);
INSERT INTO public.journals VALUES (15268, 4434, 'Issue', 40, '', '2021-07-13 10:22:45+07', false);
INSERT INTO public.journals VALUES (15269, 4434, 'Issue', 39, NULL, '2021-07-13 10:40:44+07', false);
INSERT INTO public.journals VALUES (15270, 4434, 'Issue', 39, NULL, '2021-07-13 10:40:49+07', false);
INSERT INTO public.journals VALUES (15271, 4433, 'Issue', 39, NULL, '2021-07-13 10:42:52+07', false);
INSERT INTO public.journals VALUES (15272, 4433, 'Issue', 39, NULL, '2021-07-13 10:42:58+07', false);
INSERT INTO public.journals VALUES (15273, 4435, 'Issue', 39, NULL, '2021-07-13 10:57:01+07', false);
INSERT INTO public.journals VALUES (15274, 4435, 'Issue', 39, NULL, '2021-07-13 10:57:08+07', false);
INSERT INTO public.journals VALUES (15275, 4393, 'Issue', 38, NULL, '2021-07-13 17:47:10+07', false);
INSERT INTO public.journals VALUES (15276, 4393, 'Issue', 38, NULL, '2021-07-13 17:47:20+07', false);
INSERT INTO public.journals VALUES (15277, 4429, 'Issue', 38, NULL, '2021-07-13 17:47:46+07', false);
INSERT INTO public.journals VALUES (15278, 4429, 'Issue', 38, NULL, '2021-07-13 17:47:57+07', false);
INSERT INTO public.journals VALUES (15279, 4431, 'Issue', 38, NULL, '2021-07-13 17:56:20+07', false);
INSERT INTO public.journals VALUES (15280, 4431, 'Issue', 38, NULL, '2021-07-13 17:56:35+07', false);
INSERT INTO public.journals VALUES (15281, 4375, 'Issue', 38, NULL, '2021-07-15 14:42:31+07', false);
INSERT INTO public.journals VALUES (15282, 4375, 'Issue', 38, NULL, '2021-07-15 14:42:41+07', false);
INSERT INTO public.journals VALUES (15283, 4382, 'Issue', 5, NULL, '2021-07-16 09:41:04+07', false);
INSERT INTO public.journals VALUES (15284, 4383, 'Issue', 5, NULL, '2021-07-16 09:41:04+07', false);
INSERT INTO public.journals VALUES (15285, 4382, 'Issue', 5, '', '2021-07-16 09:44:47+07', false);
INSERT INTO public.journals VALUES (15286, 4395, 'Issue', 52, NULL, '2021-07-16 14:09:41+07', false);
INSERT INTO public.journals VALUES (15287, 4395, 'Issue', 52, NULL, '2021-07-16 14:09:52+07', false);
INSERT INTO public.journals VALUES (15288, 4373, 'Issue', 39, NULL, '2021-07-16 14:34:03+07', false);
INSERT INTO public.journals VALUES (15289, 4373, 'Issue', 39, NULL, '2021-07-16 14:34:11+07', false);
INSERT INTO public.journals VALUES (15290, 4439, 'Issue', 52, NULL, '2021-07-16 15:31:28+07', false);
INSERT INTO public.journals VALUES (15291, 4430, 'Issue', 37, '', '2021-07-17 08:18:26+07', false);
INSERT INTO public.journals VALUES (15292, 4436, 'Issue', 38, NULL, '2021-07-17 08:19:42+07', false);
INSERT INTO public.journals VALUES (15293, 4436, 'Issue', 38, NULL, '2021-07-17 08:19:56+07', false);
INSERT INTO public.journals VALUES (15294, 4437, 'Issue', 38, NULL, '2021-07-17 08:20:10+07', false);
INSERT INTO public.journals VALUES (15295, 4437, 'Issue', 38, NULL, '2021-07-17 08:20:19+07', false);
INSERT INTO public.journals VALUES (15296, 4374, 'Issue', 38, '', '2021-07-17 09:48:40+07', false);
INSERT INTO public.journals VALUES (15297, 4369, 'Issue', 38, NULL, '2021-07-17 09:59:57+07', false);
INSERT INTO public.journals VALUES (15298, 4371, 'Issue', 38, NULL, '2021-07-17 09:59:57+07', false);
INSERT INTO public.journals VALUES (15299, 4373, 'Issue', 38, NULL, '2021-07-17 09:59:57+07', false);
INSERT INTO public.journals VALUES (15300, 4432, 'Issue', 38, NULL, '2021-07-17 09:59:58+07', false);
INSERT INTO public.journals VALUES (15301, 4432, 'Issue', 5, NULL, '2021-07-17 10:01:32+07', false);
INSERT INTO public.journals VALUES (15302, 4375, 'Issue', 38, NULL, '2021-07-17 10:02:47+07', false);
INSERT INTO public.journals VALUES (15303, 4393, 'Issue', 38, NULL, '2021-07-17 10:02:47+07', false);
INSERT INTO public.journals VALUES (15304, 4427, 'Issue', 38, NULL, '2021-07-17 10:02:47+07', false);
INSERT INTO public.journals VALUES (15305, 4429, 'Issue', 38, NULL, '2021-07-17 10:02:48+07', false);
INSERT INTO public.journals VALUES (15306, 4430, 'Issue', 38, NULL, '2021-07-17 10:02:48+07', false);
INSERT INTO public.journals VALUES (15307, 4431, 'Issue', 38, NULL, '2021-07-17 10:02:48+07', false);
INSERT INTO public.journals VALUES (15308, 4395, 'Issue', 38, NULL, '2021-07-17 10:03:05+07', false);
INSERT INTO public.journals VALUES (15309, 4433, 'Issue', 38, NULL, '2021-07-17 10:03:05+07', false);
INSERT INTO public.journals VALUES (15310, 4434, 'Issue', 38, NULL, '2021-07-17 10:03:05+07', false);
INSERT INTO public.journals VALUES (15311, 4435, 'Issue', 38, NULL, '2021-07-17 10:03:06+07', false);
INSERT INTO public.journals VALUES (15312, 4436, 'Issue', 38, NULL, '2021-07-17 10:03:06+07', false);
INSERT INTO public.journals VALUES (15313, 4437, 'Issue', 38, NULL, '2021-07-17 10:03:06+07', false);
INSERT INTO public.journals VALUES (15314, 4432, 'Issue', 38, NULL, '2021-07-17 10:08:01+07', false);
INSERT INTO public.journals VALUES (15315, 4444, 'Issue', 38, NULL, '2021-07-17 10:16:46+07', false);
INSERT INTO public.journals VALUES (15316, 4444, 'Issue', 38, '', '2021-07-17 10:17:02+07', false);
INSERT INTO public.journals VALUES (15317, 4374, 'Issue', 39, NULL, '2021-07-17 15:52:44+07', false);
INSERT INTO public.journals VALUES (15318, 4374, 'Issue', 39, NULL, '2021-07-17 15:53:01+07', false);
INSERT INTO public.journals VALUES (15319, 4444, 'Issue', 39, '', '2021-07-17 15:53:26+07', false);
INSERT INTO public.journals VALUES (15320, 4438, 'Issue', 39, NULL, '2021-07-17 16:19:46+07', false);
INSERT INTO public.journals VALUES (15321, 4438, 'Issue', 39, NULL, '2021-07-17 16:19:51+07', false);
INSERT INTO public.journals VALUES (15322, 4445, 'Issue', 37, '', '2021-07-19 08:29:44+07', false);
INSERT INTO public.journals VALUES (15323, 4447, 'Issue', 52, NULL, '2021-07-19 08:34:46+07', false);
INSERT INTO public.journals VALUES (15324, 4447, 'Issue', 52, NULL, '2021-07-19 08:34:55+07', false);
INSERT INTO public.journals VALUES (15325, 4432, 'Issue', 37, '', '2021-07-19 08:46:00+07', false);
INSERT INTO public.journals VALUES (15326, 4444, 'Issue', 38, NULL, '2021-07-19 09:01:42+07', false);
INSERT INTO public.journals VALUES (15327, 4444, 'Issue', 38, NULL, '2021-07-19 09:01:47+07', false);
INSERT INTO public.journals VALUES (15328, 4383, 'Issue', 5, '', '2021-07-19 11:37:21+07', false);
INSERT INTO public.journals VALUES (15329, 4409, 'Issue', 5, '', '2021-07-19 11:37:21+07', false);
INSERT INTO public.journals VALUES (15330, 4440, 'Issue', 5, '', '2021-07-19 11:37:21+07', false);
INSERT INTO public.journals VALUES (15331, 4440, 'Issue', 5, '', '2021-07-19 11:38:05+07', false);
INSERT INTO public.journals VALUES (15332, 4383, 'Issue', 5, '', '2021-07-19 11:38:19+07', false);
INSERT INTO public.journals VALUES (15333, 4443, 'Issue', 5, '', '2021-07-19 11:39:01+07', false);
INSERT INTO public.journals VALUES (15334, 4409, 'Issue', 39, NULL, '2021-07-19 11:46:49+07', false);
INSERT INTO public.journals VALUES (15335, 4409, 'Issue', 39, NULL, '2021-07-19 11:46:55+07', false);
INSERT INTO public.journals VALUES (15336, 4417, 'Issue', 37, '', '2021-07-24 08:44:11+07', false);
INSERT INTO public.journals VALUES (15337, 4419, 'Issue', 37, '', '2021-07-24 08:44:11+07', false);
INSERT INTO public.journals VALUES (15338, 4383, 'Issue', 53, NULL, '2021-08-02 15:03:30+07', false);
INSERT INTO public.journals VALUES (15339, 4383, 'Issue', 53, NULL, '2021-08-02 15:03:59+07', false);
INSERT INTO public.journals VALUES (15340, 4440, 'Issue', 53, NULL, '2021-08-02 15:05:36+07', false);
INSERT INTO public.journals VALUES (15341, 4440, 'Issue', 53, NULL, '2021-08-02 15:05:47+07', false);
INSERT INTO public.journals VALUES (15342, 4374, 'Issue', 5, NULL, '2021-08-27 08:34:09+07', false);
INSERT INTO public.journals VALUES (15343, 4432, 'Issue', 5, NULL, '2021-08-27 08:34:10+07', false);
INSERT INTO public.journals VALUES (15344, 4438, 'Issue', 5, NULL, '2021-08-27 08:34:10+07', false);
INSERT INTO public.journals VALUES (15345, 4445, 'Issue', 5, NULL, '2021-08-27 08:34:10+07', false);
INSERT INTO public.journals VALUES (15346, 4447, 'Issue', 5, NULL, '2021-08-27 08:34:11+07', false);
INSERT INTO public.journals VALUES (15347, 4446, 'Issue', 5, NULL, '2021-08-27 08:34:22+07', false);
INSERT INTO public.journals VALUES (15348, 4448, 'Issue', 5, NULL, '2021-08-27 08:34:22+07', false);
INSERT INTO public.journals VALUES (15349, 4446, 'Issue', 5, NULL, '2021-08-27 08:34:32+07', false);
INSERT INTO public.journals VALUES (15350, 4448, 'Issue', 5, NULL, '2021-08-27 08:34:32+07', false);
INSERT INTO public.journals VALUES (15351, 4444, 'Issue', 5, NULL, '2021-08-27 08:34:45+07', false);
INSERT INTO public.journals VALUES (15352, 4446, 'Issue', 5, NULL, '2021-08-27 08:34:45+07', false);
INSERT INTO public.journals VALUES (15353, 4448, 'Issue', 5, NULL, '2021-08-27 08:34:46+07', false);
INSERT INTO public.journals VALUES (15354, 4449, 'Issue', 5, NULL, '2021-08-27 09:52:45+07', false);
INSERT INTO public.journals VALUES (15355, 4470, 'Issue', 5, '', '2021-08-27 14:16:28+07', false);
INSERT INTO public.journals VALUES (15356, 4471, 'Issue', 37, '', '2021-08-27 14:41:01+07', false);
INSERT INTO public.journals VALUES (15357, 4471, 'Issue', 37, NULL, '2021-08-27 14:44:57+07', false);
INSERT INTO public.journals VALUES (15358, 4475, 'Issue', 5, '', '2021-08-27 14:51:56+07', false);
INSERT INTO public.journals VALUES (15359, 4477, 'Issue', 5, '', '2021-08-27 15:22:39+07', false);
INSERT INTO public.journals VALUES (15360, 4449, 'Issue', 5, NULL, '2021-08-27 15:58:58+07', false);
INSERT INTO public.journals VALUES (15361, 4449, 'Issue', 5, NULL, '2021-08-27 15:59:14+07', false);
INSERT INTO public.journals VALUES (15364, 4478, 'Issue', 5, '', '2021-08-27 16:31:55+07', false);
INSERT INTO public.journals VALUES (15365, 4471, 'Issue', 37, '', '2021-08-28 08:51:04+07', false);
INSERT INTO public.journals VALUES (15366, 4472, 'Issue', 5, NULL, '2021-08-28 08:57:28+07', false);
INSERT INTO public.journals VALUES (15367, 4473, 'Issue', 5, NULL, '2021-08-28 08:57:28+07', false);
INSERT INTO public.journals VALUES (15368, 4474, 'Issue', 5, NULL, '2021-08-28 08:57:28+07', false);
INSERT INTO public.journals VALUES (15369, 4472, 'Issue', 5, '', '2021-08-28 08:57:53+07', false);
INSERT INTO public.journals VALUES (15370, 4473, 'Issue', 5, '', '2021-08-28 08:57:53+07', false);
INSERT INTO public.journals VALUES (15371, 4474, 'Issue', 5, '', '2021-08-28 08:57:53+07', false);
INSERT INTO public.journals VALUES (15372, 4449, 'Issue', 5, NULL, '2021-08-28 08:59:28+07', false);
INSERT INTO public.journals VALUES (15373, 4452, 'Issue', 5, '', '2021-08-28 09:07:18+07', false);
INSERT INTO public.journals VALUES (15374, 4461, 'Issue', 5, '', '2021-08-28 09:16:46+07', false);
INSERT INTO public.journals VALUES (15376, 4461, 'Issue', 5, '', '2021-08-28 09:20:05+07', false);
INSERT INTO public.journals VALUES (15377, 4461, 'Issue', 5, '', '2021-08-28 09:23:53+07', false);
INSERT INTO public.journals VALUES (15379, 4480, 'Issue', 5, '', '2021-08-28 09:30:47+07', false);
INSERT INTO public.journals VALUES (15380, 4480, 'Issue', 5, '', '2021-08-28 09:31:47+07', false);
INSERT INTO public.journals VALUES (15382, 4457, 'Issue', 5, '', '2021-08-28 09:39:14+07', false);
INSERT INTO public.journals VALUES (15383, 4483, 'Issue', 5, '', '2021-08-28 09:39:14+07', false);
INSERT INTO public.journals VALUES (15384, 4454, 'Issue', 5, '', '2021-08-28 09:40:12+07', false);
INSERT INTO public.journals VALUES (15385, 4455, 'Issue', 5, '', '2021-08-28 09:40:12+07', false);
INSERT INTO public.journals VALUES (15386, 4456, 'Issue', 5, '', '2021-08-28 09:40:12+07', false);
INSERT INTO public.journals VALUES (15387, 4457, 'Issue', 5, '', '2021-08-28 09:40:13+07', false);
INSERT INTO public.journals VALUES (15388, 4458, 'Issue', 5, NULL, '2021-08-28 09:46:28+07', false);
INSERT INTO public.journals VALUES (15389, 4469, 'Issue', 5, NULL, '2021-08-28 09:46:28+07', false);
INSERT INTO public.journals VALUES (15390, 4461, 'Issue', 5, '', '2021-08-28 09:46:56+07', false);
INSERT INTO public.journals VALUES (15391, 4478, 'Issue', 5, NULL, '2021-08-28 09:47:30+07', false);
INSERT INTO public.journals VALUES (15392, 4470, 'Issue', 5, NULL, '2021-08-28 09:48:16+07', false);
INSERT INTO public.journals VALUES (15393, 4477, 'Issue', 5, NULL, '2021-08-28 09:48:24+07', false);
INSERT INTO public.journals VALUES (15394, 4466, 'Issue', 5, NULL, '2021-08-28 09:53:36+07', false);
INSERT INTO public.journals VALUES (15395, 4465, 'Issue', 5, NULL, '2021-08-28 09:54:18+07', false);
INSERT INTO public.journals VALUES (15396, 4463, 'Issue', 5, NULL, '2021-08-28 09:55:13+07', false);
INSERT INTO public.journals VALUES (15397, 4464, 'Issue', 5, NULL, '2021-08-28 09:55:13+07', false);
INSERT INTO public.journals VALUES (15398, 4452, 'Issue', 5, '', '2021-08-28 10:00:16+07', false);
INSERT INTO public.journals VALUES (15399, 4480, 'Issue', 5, '', '2021-08-28 10:02:41+07', false);
INSERT INTO public.journals VALUES (15400, 4482, 'Issue', 5, '', '2021-08-28 10:02:41+07', false);
INSERT INTO public.journals VALUES (15401, 4461, 'Issue', 52, NULL, '2021-08-28 10:29:38+07', false);
INSERT INTO public.journals VALUES (15402, 4452, 'Issue', 5, '', '2021-08-28 10:30:30+07', false);
INSERT INTO public.journals VALUES (15403, 4461, 'Issue', 52, NULL, '2021-08-28 10:31:25+07', false);
INSERT INTO public.journals VALUES (15404, 4461, 'Issue', 52, NULL, '2021-08-28 10:31:53+07', false);
INSERT INTO public.journals VALUES (15405, 4461, 'Issue', 52, NULL, '2021-08-28 10:32:07+07', false);
INSERT INTO public.journals VALUES (15406, 4481, 'Issue', 53, NULL, '2021-08-28 10:33:34+07', false);
INSERT INTO public.journals VALUES (15407, 4481, 'Issue', 53, NULL, '2021-08-28 10:33:52+07', false);
INSERT INTO public.journals VALUES (15408, 4452, 'Issue', 5, '', '2021-08-28 10:34:44+07', false);
INSERT INTO public.journals VALUES (15409, 4452, 'Issue', 5, '', '2021-08-28 10:51:50+07', false);
INSERT INTO public.journals VALUES (15410, 4452, 'Issue', 37, '', '2021-08-28 17:03:14+07', false);
INSERT INTO public.journals VALUES (15411, 4472, 'Issue', 37, '', '2021-08-28 17:03:14+07', false);
INSERT INTO public.journals VALUES (15412, 4473, 'Issue', 37, '', '2021-08-28 17:03:14+07', false);
INSERT INTO public.journals VALUES (15413, 4474, 'Issue', 37, '', '2021-08-28 17:03:14+07', false);
INSERT INTO public.journals VALUES (15414, 4465, 'Issue', 5, '', '2021-08-30 11:21:23+07', false);
INSERT INTO public.journals VALUES (15415, 4466, 'Issue', 5, '', '2021-08-30 11:21:24+07', false);
INSERT INTO public.journals VALUES (15417, 4454, 'Issue', 5, '', '2021-08-30 11:28:19+07', false);
INSERT INTO public.journals VALUES (15418, 4455, 'Issue', 5, '', '2021-08-30 11:28:19+07', false);
INSERT INTO public.journals VALUES (15419, 4456, 'Issue', 5, '', '2021-08-30 11:28:20+07', false);
INSERT INTO public.journals VALUES (15420, 4457, 'Issue', 5, '', '2021-08-30 11:28:20+07', false);
INSERT INTO public.journals VALUES (15421, 4461, 'Issue', 5, '', '2021-08-30 11:28:20+07', false);
INSERT INTO public.journals VALUES (15422, 4483, 'Issue', 5, '', '2021-08-30 11:28:20+07', false);
INSERT INTO public.journals VALUES (15423, 4484, 'Issue', 37, '', '2021-08-30 15:35:07+07', false);
INSERT INTO public.journals VALUES (15424, 4476, 'Issue', 8, NULL, '2021-08-30 16:53:32+07', false);
INSERT INTO public.journals VALUES (15425, 4476, 'Issue', 8, NULL, '2021-08-30 16:53:49+07', false);
INSERT INTO public.journals VALUES (15426, 4458, 'Issue', 8, NULL, '2021-08-30 16:55:38+07', false);
INSERT INTO public.journals VALUES (15427, 4458, 'Issue', 8, NULL, '2021-08-30 16:55:58+07', false);
INSERT INTO public.journals VALUES (15428, 4454, 'Issue', 5, '', '2021-08-31 09:57:02+07', false);
INSERT INTO public.journals VALUES (15429, 4455, 'Issue', 5, '', '2021-08-31 09:57:02+07', false);
INSERT INTO public.journals VALUES (15430, 4456, 'Issue', 5, '', '2021-08-31 09:57:02+07', false);
INSERT INTO public.journals VALUES (15431, 4457, 'Issue', 5, '', '2021-08-31 09:57:02+07', false);
INSERT INTO public.journals VALUES (15432, 4458, 'Issue', 5, '', '2021-08-31 09:57:02+07', false);
INSERT INTO public.journals VALUES (15433, 4454, 'Issue', 8, NULL, '2021-08-31 10:02:53+07', false);
INSERT INTO public.journals VALUES (15434, 4454, 'Issue', 8, NULL, '2021-08-31 10:03:02+07', false);
INSERT INTO public.journals VALUES (15435, 4461, 'Issue', 5, '', '2021-08-31 10:26:03+07', false);
INSERT INTO public.journals VALUES (15436, 4483, 'Issue', 5, '', '2021-08-31 10:26:03+07', false);
INSERT INTO public.journals VALUES (15438, 4460, 'Issue', 5, '', '2021-08-31 10:55:11+07', false);
INSERT INTO public.journals VALUES (15439, 4479, 'Issue', 5, NULL, '2021-08-31 10:55:47+07', false);
INSERT INTO public.journals VALUES (15440, 4479, 'Issue', 5, NULL, '2021-08-31 10:55:54+07', false);
INSERT INTO public.journals VALUES (15441, 4469, 'Issue', 5, '', '2021-08-31 10:56:18+07', false);
INSERT INTO public.journals VALUES (15442, 4476, 'Issue', 5, '', '2021-08-31 10:56:18+07', false);
INSERT INTO public.journals VALUES (15443, 4478, 'Issue', 5, '', '2021-08-31 10:56:18+07', false);
INSERT INTO public.journals VALUES (15444, 4463, 'Issue', 8, NULL, '2021-08-31 15:36:31+07', false);
INSERT INTO public.journals VALUES (15445, 4477, 'Issue', 8, NULL, '2021-08-31 15:36:31+07', false);
INSERT INTO public.journals VALUES (15446, 4463, 'Issue', 8, NULL, '2021-08-31 15:36:52+07', false);
INSERT INTO public.journals VALUES (15447, 4477, 'Issue', 8, NULL, '2021-08-31 15:36:52+07', false);
INSERT INTO public.journals VALUES (15448, 4475, 'Issue', 5, '', '2021-09-01 08:41:49+07', false);
INSERT INTO public.journals VALUES (15449, 4449, 'Issue', 5, '', '2021-09-01 08:54:59+07', false);
INSERT INTO public.journals VALUES (15450, 4452, 'Issue', 5, NULL, '2021-09-01 08:55:14+07', false);
INSERT INTO public.journals VALUES (15451, 4471, 'Issue', 5, NULL, '2021-09-01 08:55:15+07', false);
INSERT INTO public.journals VALUES (15452, 4472, 'Issue', 5, NULL, '2021-09-01 08:55:15+07', false);
INSERT INTO public.journals VALUES (15453, 4473, 'Issue', 5, NULL, '2021-09-01 08:55:15+07', false);
INSERT INTO public.journals VALUES (15454, 4474, 'Issue', 5, NULL, '2021-09-01 08:55:15+07', false);
INSERT INTO public.journals VALUES (15455, 4475, 'Issue', 5, NULL, '2021-09-01 08:55:15+07', false);
INSERT INTO public.journals VALUES (15456, 4481, 'Issue', 5, NULL, '2021-09-01 08:55:15+07', false);
INSERT INTO public.journals VALUES (15457, 4484, 'Issue', 5, '', '2021-09-01 09:23:17+07', false);
INSERT INTO public.journals VALUES (15458, 4454, 'Issue', 5, NULL, '2021-09-01 13:33:55+07', false);
INSERT INTO public.journals VALUES (15459, 4458, 'Issue', 5, NULL, '2021-09-01 13:33:55+07', false);
INSERT INTO public.journals VALUES (15460, 4461, 'Issue', 5, NULL, '2021-09-01 13:33:55+07', false);
INSERT INTO public.journals VALUES (15461, 4463, 'Issue', 5, NULL, '2021-09-01 13:33:56+07', false);
INSERT INTO public.journals VALUES (15462, 4476, 'Issue', 5, NULL, '2021-09-01 13:33:56+07', false);
INSERT INTO public.journals VALUES (15463, 4477, 'Issue', 5, NULL, '2021-09-01 13:33:56+07', false);
INSERT INTO public.journals VALUES (15464, 4479, 'Issue', 5, NULL, '2021-09-01 13:33:56+07', false);
INSERT INTO public.journals VALUES (15465, 4464, 'Issue', 5, '', '2021-09-01 13:34:55+07', false);
INSERT INTO public.journals VALUES (15466, 4470, 'Issue', 5, '', '2021-09-01 13:34:55+07', false);
INSERT INTO public.journals VALUES (15467, 4484, 'Issue', 5, '', '2021-09-01 13:34:56+07', false);
INSERT INTO public.journals VALUES (15468, 4464, 'Issue', 8, NULL, '2021-09-01 14:39:13+07', false);
INSERT INTO public.journals VALUES (15469, 4464, 'Issue', 8, NULL, '2021-09-01 14:39:56+07', false);
INSERT INTO public.journals VALUES (15470, 4470, 'Issue', 8, NULL, '2021-09-01 14:40:15+07', false);
INSERT INTO public.journals VALUES (15471, 4464, 'Issue', 5, NULL, '2021-09-04 08:48:14+07', false);
INSERT INTO public.journals VALUES (15472, 4470, 'Issue', 5, NULL, '2021-09-04 08:49:08+07', false);
INSERT INTO public.journals VALUES (15473, 4470, 'Issue', 5, NULL, '2021-09-04 08:49:15+07', false);
INSERT INTO public.journals VALUES (15474, 4480, 'Issue', 5, NULL, '2021-09-04 08:59:15+07', false);
INSERT INTO public.journals VALUES (15475, 4457, 'Issue', 5, '', '2021-09-04 09:00:10+07', false);
INSERT INTO public.journals VALUES (15476, 4455, 'Issue', 5, '', '2021-09-04 10:18:22+07', false);
INSERT INTO public.journals VALUES (15477, 4456, 'Issue', 5, '', '2021-09-04 10:18:22+07', false);
INSERT INTO public.journals VALUES (15478, 4469, 'Issue', 5, '', '2021-09-04 10:18:23+07', false);
INSERT INTO public.journals VALUES (15479, 4478, 'Issue', 5, '', '2021-09-04 10:18:23+07', false);
INSERT INTO public.journals VALUES (15480, 4480, 'Issue', 5, '', '2021-09-04 10:18:23+07', false);
INSERT INTO public.journals VALUES (15481, 4482, 'Issue', 5, '', '2021-09-04 10:18:23+07', false);
INSERT INTO public.journals VALUES (15482, 4483, 'Issue', 5, '', '2021-09-04 10:18:23+07', false);
INSERT INTO public.journals VALUES (15483, 4484, 'Issue', 5, '', '2021-09-04 10:18:23+07', false);
INSERT INTO public.journals VALUES (15484, 4485, 'Issue', 5, '', '2021-09-04 10:18:23+07', false);
INSERT INTO public.journals VALUES (15486, 4460, 'Issue', 5, '', '2021-09-04 10:19:53+07', false);
INSERT INTO public.journals VALUES (15488, 4460, 'Issue', 5, NULL, '2021-09-04 10:20:20+07', false);
INSERT INTO public.journals VALUES (15489, 4485, 'Issue', 5, '', '2021-09-04 10:30:37+07', false);
INSERT INTO public.journals VALUES (15490, 4455, 'Issue', 5, NULL, '2021-09-04 10:35:17+07', false);
INSERT INTO public.journals VALUES (15491, 4456, 'Issue', 5, NULL, '2021-09-04 10:35:17+07', false);
INSERT INTO public.journals VALUES (15492, 4478, 'Issue', 37, '', '2021-09-04 11:25:11+07', false);
INSERT INTO public.journals VALUES (15493, 4484, 'Issue', 37, '', '2021-09-04 15:25:43+07', false);
INSERT INTO public.journals VALUES (15494, 4455, 'Issue', 37, '', '2021-09-06 08:44:41+07', false);
INSERT INTO public.journals VALUES (15495, 4449, 'Issue', 41, '', '2021-09-07 01:14:52+07', false);
INSERT INTO public.journals VALUES (15496, 4456, 'Issue', 37, NULL, '2021-09-07 09:28:19+07', false);
INSERT INTO public.journals VALUES (15497, 4456, 'Issue', 37, NULL, '2021-09-07 09:28:30+07', false);
INSERT INTO public.journals VALUES (15498, 4489, 'Issue', 5, NULL, '2021-09-07 10:43:26+07', false);
INSERT INTO public.journals VALUES (15499, 4482, 'Issue', 53, NULL, '2021-09-07 10:43:59+07', false);
INSERT INTO public.journals VALUES (15500, 4482, 'Issue', 53, NULL, '2021-09-07 10:44:11+07', false);
INSERT INTO public.journals VALUES (15501, 4480, 'Issue', 5, NULL, '2021-09-07 10:54:14+07', false);
INSERT INTO public.journals VALUES (15502, 4480, 'Issue', 5, '', '2021-09-07 10:54:27+07', false);
INSERT INTO public.journals VALUES (15503, 4480, 'Issue', 5, NULL, '2021-09-07 10:56:05+07', false);
INSERT INTO public.journals VALUES (15505, 4460, 'Issue', 5, '', '2021-09-07 10:56:43+07', false);
INSERT INTO public.journals VALUES (15506, 4469, 'Issue', 8, NULL, '2021-09-07 15:22:35+07', false);
INSERT INTO public.journals VALUES (15507, 4469, 'Issue', 8, NULL, '2021-09-07 15:22:51+07', false);
INSERT INTO public.journals VALUES (15508, 4457, 'Issue', 8, NULL, '2021-09-07 15:59:01+07', false);
INSERT INTO public.journals VALUES (15509, 4486, 'Issue', 8, NULL, '2021-09-07 15:59:02+07', false);
INSERT INTO public.journals VALUES (15510, 4487, 'Issue', 8, NULL, '2021-09-07 15:59:02+07', false);
INSERT INTO public.journals VALUES (15511, 4488, 'Issue', 8, NULL, '2021-09-07 15:59:02+07', false);
INSERT INTO public.journals VALUES (15512, 4457, 'Issue', 8, NULL, '2021-09-07 15:59:30+07', false);
INSERT INTO public.journals VALUES (15513, 4486, 'Issue', 8, NULL, '2021-09-07 15:59:30+07', false);
INSERT INTO public.journals VALUES (15514, 4487, 'Issue', 8, NULL, '2021-09-07 15:59:30+07', false);
INSERT INTO public.journals VALUES (15515, 4488, 'Issue', 8, NULL, '2021-09-07 15:59:30+07', false);
INSERT INTO public.journals VALUES (15516, 4485, 'Issue', 41, '', '2021-09-09 10:24:19+07', false);
INSERT INTO public.journals VALUES (15517, 4480, 'Issue', 41, '', '2021-09-09 11:10:38+07', false);
INSERT INTO public.journals VALUES (15518, 4491, 'Issue', 5, NULL, '2021-09-09 13:22:55+07', false);
INSERT INTO public.journals VALUES (15519, 4489, 'Issue', 53, NULL, '2021-09-10 08:37:16+07', false);
INSERT INTO public.journals VALUES (15520, 4489, 'Issue', 53, NULL, '2021-09-10 08:37:30+07', false);
INSERT INTO public.journals VALUES (15521, 4491, 'Issue', 5, NULL, '2021-09-10 09:26:11+07', false);
INSERT INTO public.journals VALUES (15522, 4491, 'Issue', 5, NULL, '2021-09-10 09:26:20+07', false);
INSERT INTO public.journals VALUES (15524, 4460, 'Issue', 5, '', '2021-09-10 09:32:03+07', false);
INSERT INTO public.journals VALUES (15525, 4490, 'Issue', 5, '', '2021-09-10 09:32:03+07', false);
INSERT INTO public.journals VALUES (15526, 4497, 'Issue', 52, NULL, '2021-09-11 08:33:40+07', false);
INSERT INTO public.journals VALUES (15527, 4497, 'Issue', 52, NULL, '2021-09-11 08:33:49+07', false);
INSERT INTO public.journals VALUES (15528, 4495, 'Issue', 52, NULL, '2021-09-11 08:34:12+07', false);
INSERT INTO public.journals VALUES (15529, 4495, 'Issue', 52, NULL, '2021-09-11 08:34:23+07', false);
INSERT INTO public.journals VALUES (15530, 4496, 'Issue', 37, '', '2021-09-11 08:35:37+07', false);
INSERT INTO public.journals VALUES (15531, 4483, 'Issue', 5, NULL, '2021-09-11 08:40:34+07', false);
INSERT INTO public.journals VALUES (15532, 4493, 'Issue', 5, NULL, '2021-09-11 08:53:38+07', false);
INSERT INTO public.journals VALUES (15533, 4494, 'Issue', 5, NULL, '2021-09-11 08:53:38+07', false);
INSERT INTO public.journals VALUES (15534, 4493, 'Issue', 5, NULL, '2021-09-11 08:53:55+07', false);
INSERT INTO public.journals VALUES (15535, 4494, 'Issue', 5, NULL, '2021-09-11 08:53:55+07', false);
INSERT INTO public.journals VALUES (15536, 4498, 'Issue', 5, NULL, '2021-09-11 08:55:32+07', false);
INSERT INTO public.journals VALUES (15537, 4483, 'Issue', 5, '', '2021-09-11 08:55:53+07', false);
INSERT INTO public.journals VALUES (15538, 4492, 'Issue', 5, NULL, '2021-09-11 08:56:17+07', false);
INSERT INTO public.journals VALUES (15539, 4499, 'Issue', 5, NULL, '2021-09-11 10:04:31+07', false);
INSERT INTO public.journals VALUES (15540, 4492, 'Issue', 5, NULL, '2021-09-11 11:31:49+07', false);
INSERT INTO public.journals VALUES (15541, 4492, 'Issue', 5, NULL, '2021-09-11 11:31:59+07', false);
INSERT INTO public.journals VALUES (15542, 4503, 'Issue', 5, '', '2021-09-11 11:34:17+07', false);
INSERT INTO public.journals VALUES (15543, 4498, 'Issue', 5, NULL, '2021-09-11 11:41:23+07', false);
INSERT INTO public.journals VALUES (15544, 4498, 'Issue', 5, NULL, '2021-09-11 11:41:29+07', false);
INSERT INTO public.journals VALUES (15545, 4499, 'Issue', 5, NULL, '2021-09-11 11:41:49+07', false);
INSERT INTO public.journals VALUES (15546, 4500, 'Issue', 5, NULL, '2021-09-11 11:41:49+07', false);
INSERT INTO public.journals VALUES (15547, 4503, 'Issue', 5, NULL, '2021-09-11 11:42:03+07', false);
INSERT INTO public.journals VALUES (15548, 4483, 'Issue', 5, NULL, '2021-09-11 11:42:17+07', false);
INSERT INTO public.journals VALUES (15549, 4483, 'Issue', 5, '', '2021-09-11 11:42:28+07', false);
INSERT INTO public.journals VALUES (15551, 4460, 'Issue', 5, NULL, '2021-09-11 11:43:25+07', false);
INSERT INTO public.journals VALUES (15552, 4490, 'Issue', 5, NULL, '2021-09-11 11:43:25+07', false);
INSERT INTO public.journals VALUES (15554, 4460, 'Issue', 5, '', '2021-09-11 11:43:48+07', false);
INSERT INTO public.journals VALUES (15555, 4490, 'Issue', 5, '', '2021-09-11 11:43:48+07', false);
INSERT INTO public.journals VALUES (15556, 4483, 'Issue', 52, NULL, '2021-09-11 14:10:58+07', false);
INSERT INTO public.journals VALUES (15557, 4483, 'Issue', 52, NULL, '2021-09-11 14:11:12+07', false);
INSERT INTO public.journals VALUES (15558, 4502, 'Issue', 8, NULL, '2021-09-11 15:59:28+07', false);
INSERT INTO public.journals VALUES (15559, 4503, 'Issue', 8, NULL, '2021-09-11 15:59:28+07', false);
INSERT INTO public.journals VALUES (15560, 4502, 'Issue', 8, NULL, '2021-09-11 15:59:43+07', false);
INSERT INTO public.journals VALUES (15561, 4503, 'Issue', 8, NULL, '2021-09-11 15:59:43+07', false);
INSERT INTO public.journals VALUES (15562, 4499, 'Issue', 41, NULL, '2021-09-11 16:43:52+07', false);
INSERT INTO public.journals VALUES (15563, 4500, 'Issue', 41, NULL, '2021-09-11 16:43:53+07', false);
INSERT INTO public.journals VALUES (15564, 4501, 'Issue', 41, NULL, '2021-09-11 16:43:53+07', false);
INSERT INTO public.journals VALUES (15565, 4499, 'Issue', 41, NULL, '2021-09-11 16:44:11+07', false);
INSERT INTO public.journals VALUES (15566, 4500, 'Issue', 41, NULL, '2021-09-11 16:44:11+07', false);
INSERT INTO public.journals VALUES (15567, 4501, 'Issue', 41, NULL, '2021-09-11 16:44:12+07', false);
INSERT INTO public.journals VALUES (15568, 4508, 'Issue', 5, '', '2021-09-13 09:22:21+07', false);
INSERT INTO public.journals VALUES (15569, 4490, 'Issue', 5, '', '2021-09-13 09:23:44+07', false);
INSERT INTO public.journals VALUES (15571, 4506, 'Issue', 37, '', '2021-09-14 09:49:16+07', false);
INSERT INTO public.journals VALUES (15572, 4507, 'Issue', 37, '', '2021-09-14 09:49:16+07', false);
INSERT INTO public.journals VALUES (15573, 4460, 'Issue', 37, '', '2021-09-14 13:52:32+07', false);
INSERT INTO public.journals VALUES (15574, 4490, 'Issue', 5, NULL, '2021-09-14 13:56:32+07', false);
INSERT INTO public.journals VALUES (15575, 4490, 'Issue', 8, NULL, '2021-09-16 10:29:36+07', false);
INSERT INTO public.journals VALUES (15576, 4511, 'Issue', 8, NULL, '2021-09-16 10:29:36+07', false);
INSERT INTO public.journals VALUES (15577, 4490, 'Issue', 8, NULL, '2021-09-16 10:29:50+07', false);
INSERT INTO public.journals VALUES (15578, 4511, 'Issue', 8, NULL, '2021-09-16 10:29:50+07', false);
INSERT INTO public.journals VALUES (15579, 4514, 'Issue', 37, NULL, '2021-09-17 14:55:02+07', false);
INSERT INTO public.journals VALUES (15580, 4514, 'Issue', 37, NULL, '2021-09-17 14:55:23+07', false);
INSERT INTO public.journals VALUES (15581, 4504, 'Issue', 5, '', '2021-09-20 10:23:23+07', false);
INSERT INTO public.journals VALUES (15582, 4508, 'Issue', 5, '', '2021-09-20 10:23:24+07', false);
INSERT INTO public.journals VALUES (15583, 4509, 'Issue', 5, '', '2021-09-20 10:23:24+07', false);
INSERT INTO public.journals VALUES (15584, 4510, 'Issue', 5, '', '2021-09-20 10:23:24+07', false);
INSERT INTO public.journals VALUES (15585, 4517, 'Issue', 5, '', '2021-09-20 10:23:24+07', false);
INSERT INTO public.journals VALUES (15586, 4518, 'Issue', 5, '', '2021-09-20 10:23:24+07', false);
INSERT INTO public.journals VALUES (15587, 4519, 'Issue', 5, '', '2021-09-20 10:23:24+07', false);
INSERT INTO public.journals VALUES (15588, 4509, 'Issue', 5, '', '2021-09-20 10:23:53+07', false);
INSERT INTO public.journals VALUES (15589, 4449, 'Issue', 5, NULL, '2021-09-20 10:24:04+07', false);
INSERT INTO public.journals VALUES (15590, 4455, 'Issue', 5, NULL, '2021-09-20 10:24:05+07', false);
INSERT INTO public.journals VALUES (15591, 4456, 'Issue', 5, NULL, '2021-09-20 10:24:05+07', false);
INSERT INTO public.journals VALUES (15592, 4457, 'Issue', 5, NULL, '2021-09-20 10:24:05+07', false);
INSERT INTO public.journals VALUES (15593, 4469, 'Issue', 5, NULL, '2021-09-20 10:24:05+07', false);
INSERT INTO public.journals VALUES (15594, 4478, 'Issue', 5, NULL, '2021-09-20 10:24:05+07', false);
INSERT INTO public.journals VALUES (15595, 4482, 'Issue', 5, NULL, '2021-09-20 10:24:05+07', false);
INSERT INTO public.journals VALUES (15596, 4484, 'Issue', 5, NULL, '2021-09-20 10:24:05+07', false);
INSERT INTO public.journals VALUES (15597, 4485, 'Issue', 5, NULL, '2021-09-20 10:24:05+07', false);
INSERT INTO public.journals VALUES (15598, 4480, 'Issue', 5, NULL, '2021-09-20 10:24:12+07', false);
INSERT INTO public.journals VALUES (15599, 4483, 'Issue', 5, NULL, '2021-09-20 10:24:12+07', false);
INSERT INTO public.journals VALUES (15600, 4486, 'Issue', 5, NULL, '2021-09-20 10:24:12+07', false);
INSERT INTO public.journals VALUES (15601, 4487, 'Issue', 5, NULL, '2021-09-20 10:24:12+07', false);
INSERT INTO public.journals VALUES (15602, 4488, 'Issue', 5, NULL, '2021-09-20 10:24:12+07', false);
INSERT INTO public.journals VALUES (15603, 4489, 'Issue', 5, NULL, '2021-09-20 10:24:13+07', false);
INSERT INTO public.journals VALUES (15604, 4491, 'Issue', 5, NULL, '2021-09-20 10:24:13+07', false);
INSERT INTO public.journals VALUES (15605, 4492, 'Issue', 5, NULL, '2021-09-20 10:24:13+07', false);
INSERT INTO public.journals VALUES (15606, 4493, 'Issue', 5, NULL, '2021-09-20 10:24:13+07', false);
INSERT INTO public.journals VALUES (15607, 4494, 'Issue', 5, NULL, '2021-09-20 10:24:13+07', false);
INSERT INTO public.journals VALUES (15608, 4496, 'Issue', 5, NULL, '2021-09-20 10:24:13+07', false);
INSERT INTO public.journals VALUES (15609, 4498, 'Issue', 5, NULL, '2021-09-20 10:24:13+07', false);
INSERT INTO public.journals VALUES (15610, 4499, 'Issue', 5, NULL, '2021-09-20 10:24:13+07', false);
INSERT INTO public.journals VALUES (15611, 4500, 'Issue', 5, NULL, '2021-09-20 10:24:13+07', false);
INSERT INTO public.journals VALUES (15612, 4501, 'Issue', 5, NULL, '2021-09-20 10:24:13+07', false);
INSERT INTO public.journals VALUES (15613, 4502, 'Issue', 5, NULL, '2021-09-20 10:24:13+07', false);
INSERT INTO public.journals VALUES (15614, 4503, 'Issue', 5, NULL, '2021-09-20 10:24:13+07', false);
INSERT INTO public.journals VALUES (15615, 4460, 'Issue', 5, NULL, '2021-09-20 10:24:30+07', false);
INSERT INTO public.journals VALUES (15616, 4490, 'Issue', 5, NULL, '2021-09-20 10:24:30+07', false);
INSERT INTO public.journals VALUES (15617, 4506, 'Issue', 5, NULL, '2021-09-20 10:24:30+07', false);
INSERT INTO public.journals VALUES (15618, 4507, 'Issue', 5, NULL, '2021-09-20 10:24:30+07', false);
INSERT INTO public.journals VALUES (15619, 4511, 'Issue', 5, NULL, '2021-09-20 10:24:30+07', false);
INSERT INTO public.journals VALUES (15620, 4514, 'Issue', 5, NULL, '2021-09-20 10:24:38+07', false);
INSERT INTO public.journals VALUES (15621, 4519, 'Issue', 52, NULL, '2021-09-20 16:08:54+07', false);
INSERT INTO public.journals VALUES (15622, 4519, 'Issue', 52, NULL, '2021-09-20 16:09:21+07', false);
INSERT INTO public.journals VALUES (15623, 4516, 'Issue', 41, '', '2021-09-21 08:20:22+07', false);
INSERT INTO public.journals VALUES (15624, 4513, 'Issue', 41, '', '2021-09-21 08:20:52+07', false);
INSERT INTO public.journals VALUES (15625, 4521, 'Issue', 5, '', '2021-09-23 11:31:46+07', false);
INSERT INTO public.journals VALUES (15626, 4517, 'Issue', 41, '', '2021-09-23 14:17:59+07', false);
INSERT INTO public.journals VALUES (15627, 4504, 'Issue', 41, '', '2021-09-23 14:54:13+07', false);
INSERT INTO public.journals VALUES (15628, 4518, 'Issue', 41, '', '2021-09-25 08:41:35+07', false);
INSERT INTO public.journals VALUES (15629, 4515, 'Issue', 5, '', '2021-09-25 08:59:26+07', false);
INSERT INTO public.journals VALUES (15630, 4515, 'Issue', 5, NULL, '2021-09-25 08:59:41+07', false);
INSERT INTO public.journals VALUES (15631, 4505, 'Issue', 5, NULL, '2021-09-25 08:59:50+07', false);
INSERT INTO public.journals VALUES (15632, 4505, 'Issue', 5, '', '2021-09-25 09:00:06+07', false);
INSERT INTO public.journals VALUES (15633, 4509, 'Issue', 5, NULL, '2021-09-25 09:02:30+07', false);
INSERT INTO public.journals VALUES (15634, 4510, 'Issue', 5, NULL, '2021-09-25 09:02:30+07', false);
INSERT INTO public.journals VALUES (15635, 4509, 'Issue', 5, '', '2021-09-25 09:02:56+07', false);
INSERT INTO public.journals VALUES (15636, 4510, 'Issue', 5, '', '2021-09-25 09:02:56+07', false);
INSERT INTO public.journals VALUES (15637, 4521, 'Issue', 52, NULL, '2021-09-25 09:18:55+07', false);
INSERT INTO public.journals VALUES (15638, 4521, 'Issue', 52, NULL, '2021-09-25 09:19:05+07', false);
INSERT INTO public.journals VALUES (15639, 4524, 'Issue', 5, NULL, '2021-09-25 09:20:25+07', false);
INSERT INTO public.journals VALUES (15640, 4520, 'Issue', 52, NULL, '2021-09-25 09:24:34+07', false);
INSERT INTO public.journals VALUES (15641, 4520, 'Issue', 52, NULL, '2021-09-25 09:24:44+07', false);
INSERT INTO public.journals VALUES (15642, 4523, 'Issue', 52, NULL, '2021-09-25 10:42:56+07', false);
INSERT INTO public.journals VALUES (15643, 4523, 'Issue', 52, NULL, '2021-09-25 10:43:02+07', false);
INSERT INTO public.journals VALUES (15644, 4522, 'Issue', 52, NULL, '2021-09-25 11:30:44+07', false);
INSERT INTO public.journals VALUES (15645, 4522, 'Issue', 52, NULL, '2021-09-25 11:30:51+07', false);
INSERT INTO public.journals VALUES (15646, 4504, 'Issue', 5, NULL, '2021-10-01 15:13:08+07', false);
INSERT INTO public.journals VALUES (15647, 4513, 'Issue', 5, NULL, '2021-10-01 15:13:08+07', false);
INSERT INTO public.journals VALUES (15648, 4515, 'Issue', 5, NULL, '2021-10-01 15:13:08+07', false);
INSERT INTO public.journals VALUES (15649, 4516, 'Issue', 5, NULL, '2021-10-01 15:13:08+07', false);
INSERT INTO public.journals VALUES (15650, 4517, 'Issue', 5, NULL, '2021-10-01 15:13:08+07', false);
INSERT INTO public.journals VALUES (15651, 4518, 'Issue', 5, NULL, '2021-10-01 15:13:08+07', false);
INSERT INTO public.journals VALUES (15652, 4519, 'Issue', 5, NULL, '2021-10-01 15:13:08+07', false);
INSERT INTO public.journals VALUES (15653, 4520, 'Issue', 5, NULL, '2021-10-01 15:13:09+07', false);
INSERT INTO public.journals VALUES (15654, 4521, 'Issue', 5, NULL, '2021-10-01 15:13:09+07', false);
INSERT INTO public.journals VALUES (15655, 4522, 'Issue', 5, NULL, '2021-10-01 15:13:09+07', false);
INSERT INTO public.journals VALUES (15656, 4523, 'Issue', 5, NULL, '2021-10-01 15:13:09+07', false);
INSERT INTO public.journals VALUES (15657, 4525, 'Issue', 5, NULL, '2021-10-01 15:14:01+07', false);
INSERT INTO public.journals VALUES (15658, 4526, 'Issue', 5, NULL, '2021-10-01 15:14:01+07', false);
INSERT INTO public.journals VALUES (15659, 4527, 'Issue', 5, NULL, '2021-10-01 15:14:02+07', false);
INSERT INTO public.journals VALUES (15660, 4509, 'Issue', 5, NULL, '2021-10-01 15:14:18+07', false);
INSERT INTO public.journals VALUES (15661, 4510, 'Issue', 5, NULL, '2021-10-01 15:14:25+07', false);
INSERT INTO public.journals VALUES (15662, 4531, 'Issue', 5, '', '2021-10-01 15:15:19+07', false);
INSERT INTO public.journals VALUES (15663, 4508, 'Issue', 8, NULL, '2021-10-01 15:44:03+07', false);
INSERT INTO public.journals VALUES (15664, 4508, 'Issue', 8, NULL, '2021-10-01 15:44:09+07', false);
INSERT INTO public.journals VALUES (15665, 4532, 'Issue', 53, NULL, '2021-10-04 08:17:42+07', false);
INSERT INTO public.journals VALUES (15666, 4532, 'Issue', 53, NULL, '2021-10-04 08:18:01+07', false);
INSERT INTO public.journals VALUES (15667, 4525, 'Issue', 52, NULL, '2021-10-04 14:58:09+07', false);
INSERT INTO public.journals VALUES (15668, 4525, 'Issue', 52, NULL, '2021-10-04 14:58:19+07', false);
INSERT INTO public.journals VALUES (15669, 4528, 'Issue', 52, NULL, '2021-10-04 15:00:08+07', false);
INSERT INTO public.journals VALUES (15670, 4528, 'Issue', 52, NULL, '2021-10-04 15:00:14+07', false);
INSERT INTO public.journals VALUES (15671, 4527, 'Issue', 52, NULL, '2021-10-04 15:39:00+07', false);
INSERT INTO public.journals VALUES (15672, 4526, 'Issue', 52, NULL, '2021-10-15 12:52:05+07', false);
INSERT INTO public.journals VALUES (15673, 4526, 'Issue', 52, NULL, '2021-10-15 12:52:13+07', false);
INSERT INTO public.journals VALUES (15674, 4527, 'Issue', 52, NULL, '2021-10-15 12:52:25+07', false);
INSERT INTO public.journals VALUES (15675, 4527, 'Issue', 52, NULL, '2021-10-15 12:52:35+07', false);
INSERT INTO public.journals VALUES (15676, 4510, 'Issue', 53, NULL, '2021-11-01 08:27:20+07', false);
INSERT INTO public.journals VALUES (15677, 4510, 'Issue', 53, NULL, '2021-11-01 08:27:31+07', false);
INSERT INTO public.journals VALUES (15678, 4505, 'Issue', 41, NULL, '2021-11-01 08:29:27+07', false);
INSERT INTO public.journals VALUES (15679, 4524, 'Issue', 41, NULL, '2021-11-01 08:29:27+07', false);
INSERT INTO public.journals VALUES (15680, 4505, 'Issue', 41, NULL, '2021-11-01 08:29:40+07', false);
INSERT INTO public.journals VALUES (15681, 4524, 'Issue', 41, NULL, '2021-11-01 08:29:40+07', false);
INSERT INTO public.journals VALUES (15682, 4527, 'Issue', 41, NULL, '2021-11-01 08:29:40+07', false);
INSERT INTO public.journals VALUES (15683, 4535, 'Issue', 5, '', '2021-11-01 16:22:11+07', false);
INSERT INTO public.journals VALUES (15684, 4534, 'Issue', 41, '', '2021-11-02 08:44:28+07', false);
INSERT INTO public.journals VALUES (15685, 4535, 'Issue', 5, NULL, '2021-11-03 10:38:36+07', false);
INSERT INTO public.journals VALUES (15686, 4535, 'Issue', 5, NULL, '2021-11-03 10:38:43+07', false);
INSERT INTO public.journals VALUES (15687, 4542, 'Issue', 5, '', '2021-11-11 16:11:26+07', false);
INSERT INTO public.journals VALUES (15688, 4543, 'Issue', 5, '', '2021-11-11 16:12:00+07', false);
INSERT INTO public.journals VALUES (15689, 4544, 'Issue', 5, '', '2021-11-11 16:19:10+07', false);
INSERT INTO public.journals VALUES (15690, 4542, 'Issue', 37, '', '2021-11-12 13:54:06+07', false);
INSERT INTO public.journals VALUES (15691, 4544, 'Issue', 5, '', '2021-11-18 10:36:35+07', false);
INSERT INTO public.journals VALUES (15692, 4553, 'Issue', 5, '', '2021-11-18 10:41:58+07', false);
INSERT INTO public.journals VALUES (15693, 4538, 'Issue', 8, NULL, '2021-11-18 14:37:20+07', false);
INSERT INTO public.journals VALUES (15694, 4539, 'Issue', 8, NULL, '2021-11-18 14:37:20+07', false);
INSERT INTO public.journals VALUES (15695, 4540, 'Issue', 8, NULL, '2021-11-18 14:37:21+07', false);
INSERT INTO public.journals VALUES (15696, 4541, 'Issue', 8, NULL, '2021-11-18 14:37:21+07', false);
INSERT INTO public.journals VALUES (15697, 4538, 'Issue', 8, NULL, '2021-11-18 14:37:52+07', false);
INSERT INTO public.journals VALUES (15698, 4539, 'Issue', 8, NULL, '2021-11-18 14:37:52+07', false);
INSERT INTO public.journals VALUES (15699, 4540, 'Issue', 8, NULL, '2021-11-18 14:37:52+07', false);
INSERT INTO public.journals VALUES (15700, 4541, 'Issue', 8, NULL, '2021-11-18 14:37:52+07', false);
INSERT INTO public.journals VALUES (15701, 4543, 'Issue', 53, NULL, '2021-11-23 10:19:54+07', false);
INSERT INTO public.journals VALUES (15702, 4543, 'Issue', 53, NULL, '2021-11-23 10:20:05+07', false);
INSERT INTO public.journals VALUES (15703, 4554, 'Issue', 41, '', '2021-11-23 15:09:52+07', false);
INSERT INTO public.journals VALUES (15704, 4557, 'Issue', 41, '', '2021-11-23 15:12:01+07', false);
INSERT INTO public.journals VALUES (15705, 4556, 'Issue', 41, '', '2021-11-23 15:12:46+07', false);
INSERT INTO public.journals VALUES (15706, 4560, 'Issue', 5, '', '2021-11-24 11:32:10+07', false);
INSERT INTO public.journals VALUES (15707, 4561, 'Issue', 5, '', '2021-11-24 11:32:10+07', false);
INSERT INTO public.journals VALUES (15708, 4560, 'Issue', 5, NULL, '2021-11-30 08:53:41+07', false);
INSERT INTO public.journals VALUES (15709, 4561, 'Issue', 5, NULL, '2021-11-30 08:53:41+07', false);
INSERT INTO public.journals VALUES (15710, 4559, 'Issue', 5, NULL, '2021-11-30 08:53:52+07', false);
INSERT INTO public.journals VALUES (15711, 4558, 'Issue', 5, NULL, '2021-11-30 08:54:12+07', false);
INSERT INTO public.journals VALUES (15712, 4560, 'Issue', 37, '', '2021-12-02 09:33:17+07', false);
INSERT INTO public.journals VALUES (15713, 4561, 'Issue', 37, '', '2021-12-02 09:33:17+07', false);
INSERT INTO public.journals VALUES (15714, 4560, 'Issue', 5, NULL, '2021-12-03 15:37:05+07', false);
INSERT INTO public.journals VALUES (15715, 4561, 'Issue', 5, NULL, '2021-12-03 15:37:05+07', false);
INSERT INTO public.journals VALUES (15716, 4544, 'Issue', 5, NULL, '2021-12-03 15:39:59+07', false);
INSERT INTO public.journals VALUES (15717, 4537, 'Issue', 5, NULL, '2021-12-03 15:40:18+07', false);
INSERT INTO public.journals VALUES (15718, 4537, 'Issue', 5, NULL, '2021-12-03 15:40:26+07', false);
INSERT INTO public.journals VALUES (15719, 4537, 'Issue', 5, NULL, '2021-12-03 15:40:36+07', false);
INSERT INTO public.journals VALUES (15720, 4538, 'Issue', 5, NULL, '2021-12-03 15:40:37+07', false);
INSERT INTO public.journals VALUES (15721, 4539, 'Issue', 5, NULL, '2021-12-03 15:40:37+07', false);
INSERT INTO public.journals VALUES (15722, 4540, 'Issue', 5, NULL, '2021-12-03 15:40:37+07', false);
INSERT INTO public.journals VALUES (15723, 4541, 'Issue', 5, NULL, '2021-12-03 15:40:37+07', false);
INSERT INTO public.journals VALUES (15724, 4542, 'Issue', 5, NULL, '2021-12-03 15:40:37+07', false);
INSERT INTO public.journals VALUES (15725, 4543, 'Issue', 5, NULL, '2021-12-03 15:40:37+07', false);
INSERT INTO public.journals VALUES (15726, 4534, 'Issue', 5, NULL, '2021-12-03 15:40:48+07', false);
INSERT INTO public.journals VALUES (15727, 4535, 'Issue', 5, NULL, '2021-12-03 15:40:48+07', false);
INSERT INTO public.journals VALUES (15728, 4558, 'Issue', 5, NULL, '2022-06-14 15:42:40+07', false);
INSERT INTO public.journals VALUES (15729, 4559, 'Issue', 5, NULL, '2022-06-14 15:42:41+07', false);
INSERT INTO public.journals VALUES (15730, 4564, 'Issue', 5, '', '2022-06-15 16:27:46+07', false);
INSERT INTO public.journals VALUES (15731, 4564, 'Issue', 5, '', '2022-06-15 16:31:04+07', false);
INSERT INTO public.journals VALUES (15732, 4565, 'Issue', 5, '', '2022-06-15 16:31:53+07', false);
INSERT INTO public.journals VALUES (15733, 4564, 'Issue', 5, '', '2022-06-15 16:32:06+07', false);
INSERT INTO public.journals VALUES (15734, 4566, 'Issue', 5, NULL, '2022-10-06 12:12:33+07', false);
INSERT INTO public.journals VALUES (15735, 4567, 'Issue', 5, NULL, '2022-10-06 12:12:33+07', false);
INSERT INTO public.journals VALUES (15736, 4566, 'Issue', 5, NULL, '2022-10-06 12:12:38+07', false);
INSERT INTO public.journals VALUES (15737, 4567, 'Issue', 5, NULL, '2022-10-06 12:12:39+07', false);
INSERT INTO public.journals VALUES (15738, 4568, 'Issue', 5, NULL, '2022-10-06 12:12:54+07', false);
INSERT INTO public.journals VALUES (15739, 4569, 'Issue', 5, NULL, '2022-10-06 12:12:54+07', false);
INSERT INTO public.journals VALUES (15740, 4570, 'Issue', 5, NULL, '2022-10-06 12:12:54+07', false);
INSERT INTO public.journals VALUES (15741, 4569, 'Issue', 5, NULL, '2022-10-28 11:00:28+07', false);
INSERT INTO public.journals VALUES (15742, 4569, 'Issue', 5, NULL, '2022-10-28 11:00:38+07', false);
INSERT INTO public.journals VALUES (15743, 4566, 'Issue', 5, NULL, '2022-10-28 11:03:00+07', false);
INSERT INTO public.journals VALUES (15744, 4567, 'Issue', 5, NULL, '2022-10-28 11:03:00+07', false);
INSERT INTO public.journals VALUES (15745, 4568, 'Issue', 5, NULL, '2022-10-28 11:03:01+07', false);
INSERT INTO public.journals VALUES (15746, 4569, 'Issue', 5, NULL, '2022-10-28 11:03:01+07', false);
INSERT INTO public.journals VALUES (15747, 4570, 'Issue', 5, NULL, '2022-10-28 11:03:01+07', false);
INSERT INTO public.journals VALUES (15748, 4571, 'Issue', 5, NULL, '2022-10-28 11:14:54+07', false);
INSERT INTO public.journals VALUES (15749, 4572, 'Issue', 5, '', '2022-10-28 11:21:46+07', false);
INSERT INTO public.journals VALUES (15750, 4572, 'Issue', 5, '', '2022-10-28 11:23:19+07', false);
INSERT INTO public.journals VALUES (15751, 4571, 'Issue', 56, NULL, '2022-10-31 08:53:43+07', false);
INSERT INTO public.journals VALUES (15752, 4572, 'Issue', 56, NULL, '2022-10-31 08:54:00+07', false);
INSERT INTO public.journals VALUES (15753, 4573, 'Issue', 56, NULL, '2022-10-31 08:54:12+07', false);
INSERT INTO public.journals VALUES (15754, 4573, 'Issue', 56, NULL, '2022-10-31 08:54:37+07', false);
INSERT INTO public.journals VALUES (15755, 4572, 'Issue', 56, NULL, '2022-10-31 08:54:47+07', false);
INSERT INTO public.journals VALUES (15756, 4571, 'Issue', 56, NULL, '2022-10-31 08:54:54+07', false);
INSERT INTO public.journals VALUES (15757, 4571, 'Issue', 56, NULL, '2022-10-31 09:02:34+07', false);
INSERT INTO public.journals VALUES (15758, 4572, 'Issue', 56, NULL, '2022-10-31 09:02:43+07', false);
INSERT INTO public.journals VALUES (15759, 4573, 'Issue', 56, NULL, '2022-10-31 09:02:48+07', false);
INSERT INTO public.journals VALUES (15760, 4572, 'Issue', 5, '', '2022-10-31 09:08:49+07', false);
INSERT INTO public.journals VALUES (15761, 4572, 'Issue', 5, '', '2022-10-31 09:09:34+07', false);
INSERT INTO public.journals VALUES (15762, 4572, 'Issue', 56, NULL, '2022-11-01 08:22:39+07', false);
INSERT INTO public.journals VALUES (15763, 4576, 'Issue', 5, '', '2022-11-01 10:32:20+07', false);
INSERT INTO public.journals VALUES (15764, 4576, 'Issue', 5, '', '2022-11-01 10:32:45+07', false);
INSERT INTO public.journals VALUES (15765, 4576, 'Issue', 56, NULL, '2022-11-01 13:13:16+07', false);
INSERT INTO public.journals VALUES (15766, 4578, 'Issue', 5, '', '2022-11-02 09:09:05+07', false);
INSERT INTO public.journals VALUES (15767, 4568, 'Issue', 5, NULL, '2022-11-02 09:11:32+07', false);
INSERT INTO public.journals VALUES (15768, 4570, 'Issue', 5, NULL, '2022-11-02 09:11:32+07', false);
INSERT INTO public.journals VALUES (15769, 4568, 'Issue', 5, NULL, '2022-11-02 09:11:41+07', false);
INSERT INTO public.journals VALUES (15770, 4570, 'Issue', 5, NULL, '2022-11-02 09:11:41+07', false);
INSERT INTO public.journals VALUES (15771, 4576, 'Issue', 56, NULL, '2022-11-02 09:11:57+07', false);
INSERT INTO public.journals VALUES (15772, 4575, 'Issue', 56, NULL, '2022-11-02 09:12:09+07', false);
INSERT INTO public.journals VALUES (15773, 4572, 'Issue', 5, NULL, '2022-11-02 09:12:11+07', false);
INSERT INTO public.journals VALUES (15774, 4575, 'Issue', 56, NULL, '2022-11-02 09:12:21+07', false);
INSERT INTO public.journals VALUES (15775, 4574, 'Issue', 56, NULL, '2022-11-02 09:12:27+07', false);
INSERT INTO public.journals VALUES (15776, 4574, 'Issue', 56, NULL, '2022-11-02 09:12:42+07', false);
INSERT INTO public.journals VALUES (15777, 4577, 'Issue', 56, NULL, '2022-11-02 09:14:05+07', false);
INSERT INTO public.journals VALUES (15778, 4585, 'Issue', 5, NULL, '2022-11-02 10:33:10+07', false);
INSERT INTO public.journals VALUES (15779, 4580, 'Issue', 56, NULL, '2022-11-02 15:43:32+07', false);
INSERT INTO public.journals VALUES (15780, 4580, 'Issue', 56, NULL, '2022-11-02 15:43:42+07', false);
INSERT INTO public.journals VALUES (15781, 4581, 'Issue', 56, NULL, '2022-11-02 15:43:50+07', false);
INSERT INTO public.journals VALUES (15782, 4582, 'Issue', 56, NULL, '2022-11-02 15:44:01+07', false);
INSERT INTO public.journals VALUES (15783, 4582, 'Issue', 56, NULL, '2022-11-02 15:44:07+07', false);
INSERT INTO public.journals VALUES (15784, 4581, 'Issue', 56, NULL, '2022-11-02 15:44:16+07', false);
INSERT INTO public.journals VALUES (15785, 4578, 'Issue', 56, NULL, '2022-11-03 11:11:25+07', false);
INSERT INTO public.journals VALUES (15786, 4579, 'Issue', 56, NULL, '2022-11-03 11:11:37+07', false);
INSERT INTO public.journals VALUES (15787, 4577, 'Issue', 56, NULL, '2022-11-03 11:11:53+07', false);
INSERT INTO public.journals VALUES (15788, 4579, 'Issue', 56, NULL, '2022-11-03 11:12:03+07', false);
INSERT INTO public.journals VALUES (15789, 4578, 'Issue', 56, NULL, '2022-11-03 11:12:10+07', false);
INSERT INTO public.journals VALUES (15790, 4583, 'Issue', 56, NULL, '2022-11-03 11:12:19+07', false);
INSERT INTO public.journals VALUES (15791, 4584, 'Issue', 56, NULL, '2022-11-03 11:12:27+07', false);
INSERT INTO public.journals VALUES (15792, 4583, 'Issue', 56, NULL, '2022-11-03 11:12:35+07', false);
INSERT INTO public.journals VALUES (15793, 4584, 'Issue', 56, NULL, '2022-11-03 11:12:45+07', false);
INSERT INTO public.journals VALUES (15794, 4585, 'Issue', 56, NULL, '2022-11-03 19:58:47+07', false);
INSERT INTO public.journals VALUES (15795, 4586, 'Issue', 56, NULL, '2022-11-03 19:58:56+07', false);
INSERT INTO public.journals VALUES (15796, 4587, 'Issue', 56, NULL, '2022-11-03 19:59:06+07', false);
INSERT INTO public.journals VALUES (15797, 4585, 'Issue', 56, NULL, '2022-11-03 19:59:19+07', false);
INSERT INTO public.journals VALUES (15798, 4586, 'Issue', 56, NULL, '2022-11-03 19:59:26+07', false);
INSERT INTO public.journals VALUES (15799, 4587, 'Issue', 56, NULL, '2022-11-03 19:59:38+07', false);


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



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

INSERT INTO public.member_roles VALUES (1, 1, 3, NULL);
INSERT INTO public.member_roles VALUES (2, 2, 4, NULL);
INSERT INTO public.member_roles VALUES (3, 3, 4, NULL);
INSERT INTO public.member_roles VALUES (6, 5, 4, NULL);
INSERT INTO public.member_roles VALUES (7, 6, 4, NULL);
INSERT INTO public.member_roles VALUES (8, 7, 4, NULL);
INSERT INTO public.member_roles VALUES (11, 10, 3, NULL);
INSERT INTO public.member_roles VALUES (12, 11, 3, NULL);
INSERT INTO public.member_roles VALUES (13, 12, 4, NULL);
INSERT INTO public.member_roles VALUES (14, 13, 4, NULL);
INSERT INTO public.member_roles VALUES (16, 15, 4, NULL);
INSERT INTO public.member_roles VALUES (27, 26, 4, NULL);
INSERT INTO public.member_roles VALUES (28, 27, 4, NULL);
INSERT INTO public.member_roles VALUES (29, 28, 4, NULL);
INSERT INTO public.member_roles VALUES (30, 29, 4, NULL);
INSERT INTO public.member_roles VALUES (32, 31, 4, NULL);
INSERT INTO public.member_roles VALUES (33, 32, 4, NULL);
INSERT INTO public.member_roles VALUES (34, 33, 4, NULL);
INSERT INTO public.member_roles VALUES (35, 32, 3, NULL);
INSERT INTO public.member_roles VALUES (36, 34, 4, NULL);
INSERT INTO public.member_roles VALUES (37, 35, 4, NULL);
INSERT INTO public.member_roles VALUES (38, 36, 4, NULL);
INSERT INTO public.member_roles VALUES (39, 37, 4, NULL);
INSERT INTO public.member_roles VALUES (41, 39, 4, NULL);
INSERT INTO public.member_roles VALUES (42, 40, 4, NULL);
INSERT INTO public.member_roles VALUES (43, 41, 4, NULL);
INSERT INTO public.member_roles VALUES (44, 41, 5, NULL);
INSERT INTO public.member_roles VALUES (45, 40, 5, NULL);
INSERT INTO public.member_roles VALUES (47, 43, 4, NULL);
INSERT INTO public.member_roles VALUES (48, 44, 4, NULL);
INSERT INTO public.member_roles VALUES (49, 45, 4, NULL);
INSERT INTO public.member_roles VALUES (51, 47, 4, NULL);
INSERT INTO public.member_roles VALUES (52, 48, 4, NULL);
INSERT INTO public.member_roles VALUES (55, 51, 4, NULL);
INSERT INTO public.member_roles VALUES (61, 57, 4, NULL);
INSERT INTO public.member_roles VALUES (63, 59, 4, NULL);
INSERT INTO public.member_roles VALUES (65, 61, 4, NULL);
INSERT INTO public.member_roles VALUES (67, 62, 3, NULL);
INSERT INTO public.member_roles VALUES (68, 62, 4, NULL);
INSERT INTO public.member_roles VALUES (71, 64, 3, NULL);
INSERT INTO public.member_roles VALUES (72, 64, 4, NULL);
INSERT INTO public.member_roles VALUES (74, 65, 4, NULL);
INSERT INTO public.member_roles VALUES (77, 67, 3, NULL);
INSERT INTO public.member_roles VALUES (78, 67, 4, NULL);
INSERT INTO public.member_roles VALUES (82, 70, 3, NULL);
INSERT INTO public.member_roles VALUES (83, 70, 4, NULL);
INSERT INTO public.member_roles VALUES (84, 71, 3, NULL);
INSERT INTO public.member_roles VALUES (85, 71, 4, NULL);
INSERT INTO public.member_roles VALUES (88, 73, 3, NULL);
INSERT INTO public.member_roles VALUES (89, 73, 4, NULL);
INSERT INTO public.member_roles VALUES (90, 68, 3, NULL);
INSERT INTO public.member_roles VALUES (91, 74, 4, NULL);
INSERT INTO public.member_roles VALUES (92, 75, 3, NULL);
INSERT INTO public.member_roles VALUES (94, 77, 3, NULL);
INSERT INTO public.member_roles VALUES (95, 78, 3, NULL);
INSERT INTO public.member_roles VALUES (97, 79, 4, NULL);
INSERT INTO public.member_roles VALUES (105, 85, 4, NULL);
INSERT INTO public.member_roles VALUES (108, 86, 4, NULL);
INSERT INTO public.member_roles VALUES (111, 87, 3, NULL);
INSERT INTO public.member_roles VALUES (112, 87, 4, NULL);
INSERT INTO public.member_roles VALUES (115, 88, 3, NULL);
INSERT INTO public.member_roles VALUES (116, 88, 4, NULL);
INSERT INTO public.member_roles VALUES (124, 96, 4, NULL);
INSERT INTO public.member_roles VALUES (125, 96, 5, NULL);
INSERT INTO public.member_roles VALUES (127, 98, 3, NULL);
INSERT INTO public.member_roles VALUES (128, 98, 4, NULL);
INSERT INTO public.member_roles VALUES (129, 99, 5, NULL);
INSERT INTO public.member_roles VALUES (130, 100, 5, NULL);
INSERT INTO public.member_roles VALUES (132, 102, 5, NULL);
INSERT INTO public.member_roles VALUES (133, 103, 5, NULL);
INSERT INTO public.member_roles VALUES (134, 104, 5, NULL);
INSERT INTO public.member_roles VALUES (136, 106, 5, NULL);
INSERT INTO public.member_roles VALUES (137, 107, 5, NULL);
INSERT INTO public.member_roles VALUES (138, 108, 5, NULL);
INSERT INTO public.member_roles VALUES (139, 109, 5, NULL);
INSERT INTO public.member_roles VALUES (140, 110, 5, NULL);
INSERT INTO public.member_roles VALUES (141, 111, 5, NULL);
INSERT INTO public.member_roles VALUES (143, 113, 5, NULL);
INSERT INTO public.member_roles VALUES (144, 114, 5, NULL);
INSERT INTO public.member_roles VALUES (145, 115, 5, NULL);
INSERT INTO public.member_roles VALUES (146, 116, 5, NULL);
INSERT INTO public.member_roles VALUES (147, 117, 5, NULL);
INSERT INTO public.member_roles VALUES (148, 118, 5, NULL);
INSERT INTO public.member_roles VALUES (149, 119, 5, NULL);
INSERT INTO public.member_roles VALUES (150, 120, 5, NULL);
INSERT INTO public.member_roles VALUES (151, 121, 5, NULL);
INSERT INTO public.member_roles VALUES (152, 122, 5, NULL);
INSERT INTO public.member_roles VALUES (153, 123, 5, NULL);
INSERT INTO public.member_roles VALUES (154, 124, 3, NULL);
INSERT INTO public.member_roles VALUES (155, 124, 4, NULL);
INSERT INTO public.member_roles VALUES (156, 125, 3, NULL);
INSERT INTO public.member_roles VALUES (157, 125, 4, NULL);
INSERT INTO public.member_roles VALUES (158, 126, 6, NULL);
INSERT INTO public.member_roles VALUES (159, 127, 3, NULL);
INSERT INTO public.member_roles VALUES (160, 128, 6, NULL);
INSERT INTO public.member_roles VALUES (164, 132, 3, NULL);
INSERT INTO public.member_roles VALUES (165, 133, 4, NULL);
INSERT INTO public.member_roles VALUES (166, 134, 4, NULL);
INSERT INTO public.member_roles VALUES (167, 135, 4, NULL);
INSERT INTO public.member_roles VALUES (169, 137, 4, NULL);
INSERT INTO public.member_roles VALUES (170, 138, 4, NULL);
INSERT INTO public.member_roles VALUES (171, 139, 4, NULL);
INSERT INTO public.member_roles VALUES (172, 140, 4, NULL);
INSERT INTO public.member_roles VALUES (173, 141, 4, NULL);
INSERT INTO public.member_roles VALUES (174, 142, 3, NULL);
INSERT INTO public.member_roles VALUES (175, 142, 4, NULL);
INSERT INTO public.member_roles VALUES (176, 143, 5, NULL);
INSERT INTO public.member_roles VALUES (181, 146, 4, NULL);
INSERT INTO public.member_roles VALUES (185, 148, 4, NULL);
INSERT INTO public.member_roles VALUES (189, 149, 3, NULL);
INSERT INTO public.member_roles VALUES (195, 153, 4, NULL);
INSERT INTO public.member_roles VALUES (196, 154, 3, NULL);
INSERT INTO public.member_roles VALUES (199, 156, 3, NULL);
INSERT INTO public.member_roles VALUES (200, 156, 3, 95);
INSERT INTO public.member_roles VALUES (202, 158, 3, 127);
INSERT INTO public.member_roles VALUES (203, 158, 4, 128);
INSERT INTO public.member_roles VALUES (205, 160, 4, NULL);
INSERT INTO public.member_roles VALUES (206, 161, 3, NULL);
INSERT INTO public.member_roles VALUES (207, 162, 4, NULL);
INSERT INTO public.member_roles VALUES (208, 163, 4, NULL);
INSERT INTO public.member_roles VALUES (209, 164, 4, NULL);
INSERT INTO public.member_roles VALUES (210, 165, 4, NULL);
INSERT INTO public.member_roles VALUES (211, 166, 4, NULL);
INSERT INTO public.member_roles VALUES (212, 167, 4, NULL);
INSERT INTO public.member_roles VALUES (213, 168, 4, NULL);
INSERT INTO public.member_roles VALUES (214, 169, 4, NULL);
INSERT INTO public.member_roles VALUES (215, 170, 3, NULL);
INSERT INTO public.member_roles VALUES (216, 170, 4, NULL);
INSERT INTO public.member_roles VALUES (218, 147, 3, NULL);
INSERT INTO public.member_roles VALUES (219, 171, 3, NULL);
INSERT INTO public.member_roles VALUES (220, 171, 4, NULL);
INSERT INTO public.member_roles VALUES (221, 171, 5, NULL);
INSERT INTO public.member_roles VALUES (222, 172, 3, NULL);
INSERT INTO public.member_roles VALUES (223, 172, 4, NULL);
INSERT INTO public.member_roles VALUES (224, 172, 5, NULL);
INSERT INTO public.member_roles VALUES (226, 173, 4, NULL);
INSERT INTO public.member_roles VALUES (229, 174, 4, NULL);
INSERT INTO public.member_roles VALUES (230, 175, 3, NULL);
INSERT INTO public.member_roles VALUES (231, 176, 4, NULL);
INSERT INTO public.member_roles VALUES (232, 177, 4, NULL);
INSERT INTO public.member_roles VALUES (235, 178, 5, NULL);
INSERT INTO public.member_roles VALUES (236, 179, 3, NULL);
INSERT INTO public.member_roles VALUES (237, 180, 4, NULL);
INSERT INTO public.member_roles VALUES (238, 181, 4, NULL);
INSERT INTO public.member_roles VALUES (240, 183, 3, NULL);
INSERT INTO public.member_roles VALUES (241, 184, 4, NULL);
INSERT INTO public.member_roles VALUES (242, 184, 5, NULL);
INSERT INTO public.member_roles VALUES (245, 187, 4, NULL);
INSERT INTO public.member_roles VALUES (247, 188, 3, NULL);
INSERT INTO public.member_roles VALUES (248, 189, 3, NULL);
INSERT INTO public.member_roles VALUES (249, 190, 4, NULL);
INSERT INTO public.member_roles VALUES (252, 192, 3, NULL);
INSERT INTO public.member_roles VALUES (254, 194, 4, NULL);
INSERT INTO public.member_roles VALUES (256, 173, 3, NULL);
INSERT INTO public.member_roles VALUES (257, 173, 5, NULL);
INSERT INTO public.member_roles VALUES (258, 173, 6, NULL);
INSERT INTO public.member_roles VALUES (259, 173, 7, NULL);
INSERT INTO public.member_roles VALUES (261, 195, 4, NULL);
INSERT INTO public.member_roles VALUES (262, 195, 5, NULL);
INSERT INTO public.member_roles VALUES (263, 174, 3, NULL);
INSERT INTO public.member_roles VALUES (264, 174, 5, NULL);
INSERT INTO public.member_roles VALUES (265, 174, 6, NULL);
INSERT INTO public.member_roles VALUES (266, 174, 7, NULL);
INSERT INTO public.member_roles VALUES (267, 171, 6, NULL);
INSERT INTO public.member_roles VALUES (268, 171, 7, NULL);
INSERT INTO public.member_roles VALUES (269, 172, 6, NULL);
INSERT INTO public.member_roles VALUES (270, 172, 7, NULL);
INSERT INTO public.member_roles VALUES (271, 196, 3, NULL);
INSERT INTO public.member_roles VALUES (272, 196, 4, NULL);
INSERT INTO public.member_roles VALUES (273, 196, 5, NULL);
INSERT INTO public.member_roles VALUES (274, 196, 6, NULL);
INSERT INTO public.member_roles VALUES (275, 196, 7, NULL);
INSERT INTO public.member_roles VALUES (276, 184, 3, NULL);
INSERT INTO public.member_roles VALUES (280, 200, 3, 230);
INSERT INTO public.member_roles VALUES (281, 201, 4, 231);
INSERT INTO public.member_roles VALUES (282, 202, 4, 232);
INSERT INTO public.member_roles VALUES (283, 203, 7, NULL);
INSERT INTO public.member_roles VALUES (284, 113, 7, 283);
INSERT INTO public.member_roles VALUES (285, 106, 7, 283);
INSERT INTO public.member_roles VALUES (287, 107, 7, 283);
INSERT INTO public.member_roles VALUES (288, 104, 7, 283);
INSERT INTO public.member_roles VALUES (289, 111, 7, 283);
INSERT INTO public.member_roles VALUES (291, 118, 7, 283);
INSERT INTO public.member_roles VALUES (292, 121, 7, 283);
INSERT INTO public.member_roles VALUES (293, 109, 7, 283);
INSERT INTO public.member_roles VALUES (294, 123, 7, 283);
INSERT INTO public.member_roles VALUES (295, 117, 7, 283);
INSERT INTO public.member_roles VALUES (296, 100, 7, 283);
INSERT INTO public.member_roles VALUES (297, 120, 7, 283);
INSERT INTO public.member_roles VALUES (298, 126, 7, 283);
INSERT INTO public.member_roles VALUES (299, 125, 7, 283);
INSERT INTO public.member_roles VALUES (300, 124, 7, 283);
INSERT INTO public.member_roles VALUES (301, 119, 7, 283);
INSERT INTO public.member_roles VALUES (302, 99, 7, 283);
INSERT INTO public.member_roles VALUES (304, 103, 7, 283);
INSERT INTO public.member_roles VALUES (305, 110, 7, 283);
INSERT INTO public.member_roles VALUES (306, 115, 7, 283);
INSERT INTO public.member_roles VALUES (307, 102, 7, 283);
INSERT INTO public.member_roles VALUES (308, 108, 7, 283);
INSERT INTO public.member_roles VALUES (309, 122, 7, 283);
INSERT INTO public.member_roles VALUES (310, 116, 7, 283);
INSERT INTO public.member_roles VALUES (311, 114, 7, 283);
INSERT INTO public.member_roles VALUES (312, 204, 7, 283);
INSERT INTO public.member_roles VALUES (313, 205, 7, 283);
INSERT INTO public.member_roles VALUES (316, 129, 4, NULL);
INSERT INTO public.member_roles VALUES (318, 13, 3, NULL);
INSERT INTO public.member_roles VALUES (319, 13, 5, NULL);
INSERT INTO public.member_roles VALUES (320, 13, 6, NULL);
INSERT INTO public.member_roles VALUES (321, 13, 7, NULL);
INSERT INTO public.member_roles VALUES (322, 206, 4, NULL);
INSERT INTO public.member_roles VALUES (323, 207, 3, NULL);
INSERT INTO public.member_roles VALUES (324, 208, 3, NULL);
INSERT INTO public.member_roles VALUES (325, 209, 3, NULL);
INSERT INTO public.member_roles VALUES (326, 210, 4, NULL);
INSERT INTO public.member_roles VALUES (327, 211, 4, NULL);
INSERT INTO public.member_roles VALUES (328, 212, 3, NULL);
INSERT INTO public.member_roles VALUES (329, 212, 4, NULL);
INSERT INTO public.member_roles VALUES (330, 212, 5, NULL);
INSERT INTO public.member_roles VALUES (331, 212, 6, NULL);
INSERT INTO public.member_roles VALUES (332, 212, 7, NULL);
INSERT INTO public.member_roles VALUES (333, 213, 4, NULL);
INSERT INTO public.member_roles VALUES (334, 214, 3, NULL);
INSERT INTO public.member_roles VALUES (335, 215, 3, NULL);
INSERT INTO public.member_roles VALUES (336, 216, 3, 335);
INSERT INTO public.member_roles VALUES (337, 217, 6, NULL);
INSERT INTO public.member_roles VALUES (338, 218, 3, NULL);
INSERT INTO public.member_roles VALUES (339, 219, 4, NULL);
INSERT INTO public.member_roles VALUES (340, 220, 4, NULL);
INSERT INTO public.member_roles VALUES (341, 221, 4, NULL);
INSERT INTO public.member_roles VALUES (342, 222, 6, NULL);
INSERT INTO public.member_roles VALUES (343, 223, 4, NULL);
INSERT INTO public.member_roles VALUES (344, 224, 4, NULL);
INSERT INTO public.member_roles VALUES (345, 225, 4, NULL);
INSERT INTO public.member_roles VALUES (346, 226, 4, NULL);
INSERT INTO public.member_roles VALUES (347, 226, 5, NULL);
INSERT INTO public.member_roles VALUES (348, 226, 7, NULL);
INSERT INTO public.member_roles VALUES (349, 227, 4, NULL);
INSERT INTO public.member_roles VALUES (350, 227, 5, NULL);
INSERT INTO public.member_roles VALUES (351, 227, 7, NULL);
INSERT INTO public.member_roles VALUES (352, 228, 4, NULL);
INSERT INTO public.member_roles VALUES (353, 228, 5, NULL);
INSERT INTO public.member_roles VALUES (354, 228, 7, NULL);
INSERT INTO public.member_roles VALUES (355, 229, 4, NULL);
INSERT INTO public.member_roles VALUES (356, 229, 5, NULL);
INSERT INTO public.member_roles VALUES (357, 229, 7, NULL);
INSERT INTO public.member_roles VALUES (358, 230, 4, NULL);
INSERT INTO public.member_roles VALUES (359, 230, 5, NULL);
INSERT INTO public.member_roles VALUES (360, 230, 7, NULL);
INSERT INTO public.member_roles VALUES (361, 231, 4, NULL);
INSERT INTO public.member_roles VALUES (362, 231, 5, NULL);
INSERT INTO public.member_roles VALUES (363, 231, 7, NULL);
INSERT INTO public.member_roles VALUES (364, 232, 4, NULL);
INSERT INTO public.member_roles VALUES (365, 232, 5, NULL);
INSERT INTO public.member_roles VALUES (366, 232, 7, NULL);
INSERT INTO public.member_roles VALUES (367, 233, 4, NULL);
INSERT INTO public.member_roles VALUES (368, 234, 4, NULL);
INSERT INTO public.member_roles VALUES (370, 236, 4, NULL);
INSERT INTO public.member_roles VALUES (371, 53, 4, NULL);
INSERT INTO public.member_roles VALUES (372, 58, 3, NULL);
INSERT INTO public.member_roles VALUES (373, 58, 4, NULL);
INSERT INTO public.member_roles VALUES (374, 237, 4, NULL);
INSERT INTO public.member_roles VALUES (375, 238, 4, NULL);
INSERT INTO public.member_roles VALUES (376, 239, 4, NULL);
INSERT INTO public.member_roles VALUES (377, 238, 7, NULL);
INSERT INTO public.member_roles VALUES (378, 240, 4, NULL);
INSERT INTO public.member_roles VALUES (379, 241, 4, NULL);
INSERT INTO public.member_roles VALUES (380, 242, 4, NULL);
INSERT INTO public.member_roles VALUES (381, 243, 4, 380);
INSERT INTO public.member_roles VALUES (382, 244, 4, NULL);
INSERT INTO public.member_roles VALUES (383, 244, 5, NULL);
INSERT INTO public.member_roles VALUES (384, 244, 6, NULL);
INSERT INTO public.member_roles VALUES (385, 244, 7, NULL);
INSERT INTO public.member_roles VALUES (386, 245, 4, NULL);
INSERT INTO public.member_roles VALUES (387, 246, 4, NULL);
INSERT INTO public.member_roles VALUES (388, 247, 4, NULL);
INSERT INTO public.member_roles VALUES (389, 248, 4, NULL);
INSERT INTO public.member_roles VALUES (390, 249, 4, NULL);
INSERT INTO public.member_roles VALUES (392, 251, 4, NULL);
INSERT INTO public.member_roles VALUES (393, 252, 4, NULL);
INSERT INTO public.member_roles VALUES (394, 253, 4, NULL);
INSERT INTO public.member_roles VALUES (395, 254, 4, NULL);
INSERT INTO public.member_roles VALUES (396, 255, 4, NULL);
INSERT INTO public.member_roles VALUES (397, 256, 4, NULL);
INSERT INTO public.member_roles VALUES (398, 185, 4, NULL);
INSERT INTO public.member_roles VALUES (399, 257, 4, NULL);
INSERT INTO public.member_roles VALUES (400, 258, 3, NULL);
INSERT INTO public.member_roles VALUES (401, 259, 3, NULL);
INSERT INTO public.member_roles VALUES (402, 260, 3, NULL);
INSERT INTO public.member_roles VALUES (403, 258, 4, NULL);
INSERT INTO public.member_roles VALUES (404, 260, 4, NULL);
INSERT INTO public.member_roles VALUES (405, 259, 4, NULL);
INSERT INTO public.member_roles VALUES (406, 223, 3, NULL);
INSERT INTO public.member_roles VALUES (411, 262, 4, NULL);
INSERT INTO public.member_roles VALUES (412, 261, 4, NULL);
INSERT INTO public.member_roles VALUES (413, 263, 4, NULL);
INSERT INTO public.member_roles VALUES (414, 264, 4, NULL);
INSERT INTO public.member_roles VALUES (415, 265, 4, NULL);
INSERT INTO public.member_roles VALUES (416, 266, 4, NULL);
INSERT INTO public.member_roles VALUES (417, 267, 4, NULL);
INSERT INTO public.member_roles VALUES (418, 268, 4, NULL);
INSERT INTO public.member_roles VALUES (419, 269, 4, 418);
INSERT INTO public.member_roles VALUES (420, 268, 7, NULL);
INSERT INTO public.member_roles VALUES (421, 269, 7, 420);
INSERT INTO public.member_roles VALUES (422, 270, 6, NULL);
INSERT INTO public.member_roles VALUES (423, 271, 5, NULL);
INSERT INTO public.member_roles VALUES (424, 272, 3, NULL);
INSERT INTO public.member_roles VALUES (426, 274, 6, NULL);
INSERT INTO public.member_roles VALUES (427, 275, 6, NULL);
INSERT INTO public.member_roles VALUES (430, 278, 6, NULL);
INSERT INTO public.member_roles VALUES (431, 279, 4, NULL);
INSERT INTO public.member_roles VALUES (432, 280, 3, NULL);
INSERT INTO public.member_roles VALUES (433, 281, 4, NULL);
INSERT INTO public.member_roles VALUES (435, 283, 4, NULL);
INSERT INTO public.member_roles VALUES (436, 284, 3, NULL);
INSERT INTO public.member_roles VALUES (437, 285, 3, NULL);
INSERT INTO public.member_roles VALUES (438, 286, 3, NULL);
INSERT INTO public.member_roles VALUES (439, 287, 3, NULL);
INSERT INTO public.member_roles VALUES (440, 288, 3, NULL);
INSERT INTO public.member_roles VALUES (441, 289, 4, NULL);
INSERT INTO public.member_roles VALUES (442, 290, 3, NULL);
INSERT INTO public.member_roles VALUES (443, 291, 4, NULL);
INSERT INTO public.member_roles VALUES (444, 292, 4, NULL);
INSERT INTO public.member_roles VALUES (457, 304, 3, 94);
INSERT INTO public.member_roles VALUES (465, 312, 4, 124);
INSERT INTO public.member_roles VALUES (466, 312, 5, 125);
INSERT INTO public.member_roles VALUES (469, 308, 4, NULL);
INSERT INTO public.member_roles VALUES (470, 309, 4, NULL);
INSERT INTO public.member_roles VALUES (471, 305, 4, NULL);
INSERT INTO public.member_roles VALUES (472, 307, 4, NULL);
INSERT INTO public.member_roles VALUES (473, 313, 4, NULL);
INSERT INTO public.member_roles VALUES (474, 311, 4, NULL);
INSERT INTO public.member_roles VALUES (475, 309, 3, NULL);
INSERT INTO public.member_roles VALUES (476, 315, 4, NULL);
INSERT INTO public.member_roles VALUES (477, 292, 3, NULL);
INSERT INTO public.member_roles VALUES (478, 291, 3, NULL);
INSERT INTO public.member_roles VALUES (481, 318, 3, NULL);
INSERT INTO public.member_roles VALUES (482, 319, 6, NULL);
INSERT INTO public.member_roles VALUES (483, 320, 6, NULL);
INSERT INTO public.member_roles VALUES (484, 321, 4, NULL);
INSERT INTO public.member_roles VALUES (489, 324, 4, NULL);
INSERT INTO public.member_roles VALUES (490, 325, 4, NULL);
INSERT INTO public.member_roles VALUES (492, 327, 4, NULL);
INSERT INTO public.member_roles VALUES (493, 328, 4, 492);
INSERT INTO public.member_roles VALUES (494, 329, 3, NULL);
INSERT INTO public.member_roles VALUES (495, 330, 4, NULL);
INSERT INTO public.member_roles VALUES (496, 331, 4, NULL);
INSERT INTO public.member_roles VALUES (497, 332, 3, NULL);
INSERT INTO public.member_roles VALUES (498, 333, 4, NULL);
INSERT INTO public.member_roles VALUES (499, 334, 4, NULL);
INSERT INTO public.member_roles VALUES (500, 335, 4, NULL);
INSERT INTO public.member_roles VALUES (501, 336, 4, NULL);
INSERT INTO public.member_roles VALUES (502, 337, 4, NULL);
INSERT INTO public.member_roles VALUES (503, 338, 4, NULL);
INSERT INTO public.member_roles VALUES (505, 340, 4, NULL);
INSERT INTO public.member_roles VALUES (506, 341, 4, NULL);
INSERT INTO public.member_roles VALUES (507, 342, 4, NULL);
INSERT INTO public.member_roles VALUES (508, 343, 4, NULL);
INSERT INTO public.member_roles VALUES (513, 347, 3, NULL);
INSERT INTO public.member_roles VALUES (514, 348, 4, NULL);
INSERT INTO public.member_roles VALUES (515, 349, 4, NULL);
INSERT INTO public.member_roles VALUES (518, 352, 5, NULL);
INSERT INTO public.member_roles VALUES (521, 328, 8, NULL);
INSERT INTO public.member_roles VALUES (523, 355, 8, NULL);
INSERT INTO public.member_roles VALUES (525, 314, 4, NULL);
INSERT INTO public.member_roles VALUES (526, 333, 3, NULL);
INSERT INTO public.member_roles VALUES (527, 357, 3, NULL);
INSERT INTO public.member_roles VALUES (528, 358, 4, NULL);
INSERT INTO public.member_roles VALUES (529, 359, 4, NULL);
INSERT INTO public.member_roles VALUES (530, 360, 4, NULL);
INSERT INTO public.member_roles VALUES (532, 362, 4, NULL);
INSERT INTO public.member_roles VALUES (533, 363, 4, NULL);
INSERT INTO public.member_roles VALUES (534, 364, 4, NULL);
INSERT INTO public.member_roles VALUES (535, 365, 8, NULL);
INSERT INTO public.member_roles VALUES (536, 366, 8, 535);
INSERT INTO public.member_roles VALUES (537, 367, 8, NULL);
INSERT INTO public.member_roles VALUES (538, 368, 8, NULL);
INSERT INTO public.member_roles VALUES (539, 369, 8, NULL);
INSERT INTO public.member_roles VALUES (540, 370, 8, NULL);
INSERT INTO public.member_roles VALUES (542, 372, 8, NULL);
INSERT INTO public.member_roles VALUES (543, 373, 4, NULL);
INSERT INTO public.member_roles VALUES (547, 375, 8, NULL);
INSERT INTO public.member_roles VALUES (548, 376, 8, NULL);
INSERT INTO public.member_roles VALUES (551, 379, 4, NULL);
INSERT INTO public.member_roles VALUES (552, 90, 4, NULL);
INSERT INTO public.member_roles VALUES (553, 306, 4, 552);
INSERT INTO public.member_roles VALUES (554, 92, 4, NULL);
INSERT INTO public.member_roles VALUES (555, 308, 4, 554);
INSERT INTO public.member_roles VALUES (556, 93, 4, NULL);
INSERT INTO public.member_roles VALUES (557, 309, 4, 556);
INSERT INTO public.member_roles VALUES (558, 94, 4, NULL);
INSERT INTO public.member_roles VALUES (559, 310, 4, 558);
INSERT INTO public.member_roles VALUES (560, 89, 4, NULL);
INSERT INTO public.member_roles VALUES (561, 305, 4, 560);
INSERT INTO public.member_roles VALUES (562, 91, 4, NULL);
INSERT INTO public.member_roles VALUES (563, 307, 4, 562);
INSERT INTO public.member_roles VALUES (564, 136, 4, NULL);
INSERT INTO public.member_roles VALUES (565, 313, 4, 564);
INSERT INTO public.member_roles VALUES (566, 95, 4, NULL);
INSERT INTO public.member_roles VALUES (567, 311, 4, 566);
INSERT INTO public.member_roles VALUES (568, 159, 4, NULL);
INSERT INTO public.member_roles VALUES (569, 314, 4, 568);
INSERT INTO public.member_roles VALUES (570, 353, 8, NULL);
INSERT INTO public.member_roles VALUES (572, 289, 3, NULL);
INSERT INTO public.member_roles VALUES (573, 250, 3, NULL);
INSERT INTO public.member_roles VALUES (574, 380, 4, NULL);
INSERT INTO public.member_roles VALUES (575, 381, 4, NULL);
INSERT INTO public.member_roles VALUES (581, 385, 8, NULL);
INSERT INTO public.member_roles VALUES (582, 386, 8, NULL);
INSERT INTO public.member_roles VALUES (583, 387, 8, NULL);
INSERT INTO public.member_roles VALUES (584, 388, 8, NULL);
INSERT INTO public.member_roles VALUES (585, 389, 4, NULL);
INSERT INTO public.member_roles VALUES (586, 390, 8, NULL);
INSERT INTO public.member_roles VALUES (587, 391, 4, NULL);
INSERT INTO public.member_roles VALUES (588, 392, 4, 587);
INSERT INTO public.member_roles VALUES (589, 393, 4, NULL);
INSERT INTO public.member_roles VALUES (590, 394, 8, NULL);
INSERT INTO public.member_roles VALUES (591, 395, 8, NULL);
INSERT INTO public.member_roles VALUES (592, 396, 8, NULL);
INSERT INTO public.member_roles VALUES (593, 397, 3, NULL);
INSERT INTO public.member_roles VALUES (594, 397, 4, NULL);
INSERT INTO public.member_roles VALUES (595, 276, 3, NULL);
INSERT INTO public.member_roles VALUES (596, 398, 4, NULL);
INSERT INTO public.member_roles VALUES (598, 400, 4, NULL);
INSERT INTO public.member_roles VALUES (599, 401, 4, NULL);
INSERT INTO public.member_roles VALUES (600, 402, 4, NULL);
INSERT INTO public.member_roles VALUES (601, 403, 4, NULL);
INSERT INTO public.member_roles VALUES (602, 404, 4, NULL);
INSERT INTO public.member_roles VALUES (603, 405, 4, NULL);
INSERT INTO public.member_roles VALUES (605, 407, 4, NULL);
INSERT INTO public.member_roles VALUES (606, 408, 4, NULL);
INSERT INTO public.member_roles VALUES (607, 406, 3, NULL);
INSERT INTO public.member_roles VALUES (608, 401, 3, NULL);
INSERT INTO public.member_roles VALUES (609, 409, 4, NULL);
INSERT INTO public.member_roles VALUES (640, 436, 3, NULL);
INSERT INTO public.member_roles VALUES (641, 437, 4, NULL);
INSERT INTO public.member_roles VALUES (642, 438, 4, NULL);
INSERT INTO public.member_roles VALUES (643, 439, 4, NULL);
INSERT INTO public.member_roles VALUES (644, 440, 4, NULL);
INSERT INTO public.member_roles VALUES (645, 441, 4, NULL);
INSERT INTO public.member_roles VALUES (648, 444, 4, NULL);
INSERT INTO public.member_roles VALUES (649, 445, 4, NULL);
INSERT INTO public.member_roles VALUES (650, 446, 4, NULL);
INSERT INTO public.member_roles VALUES (651, 447, 3, NULL);
INSERT INTO public.member_roles VALUES (652, 448, 3, NULL);
INSERT INTO public.member_roles VALUES (653, 449, 3, NULL);
INSERT INTO public.member_roles VALUES (654, 450, 3, NULL);
INSERT INTO public.member_roles VALUES (655, 451, 3, NULL);
INSERT INTO public.member_roles VALUES (670, 465, 3, 94);
INSERT INTO public.member_roles VALUES (671, 466, 4, 560);
INSERT INTO public.member_roles VALUES (672, 467, 4, 552);
INSERT INTO public.member_roles VALUES (673, 468, 4, 562);
INSERT INTO public.member_roles VALUES (674, 469, 4, 554);
INSERT INTO public.member_roles VALUES (675, 470, 4, 556);
INSERT INTO public.member_roles VALUES (676, 471, 4, 558);
INSERT INTO public.member_roles VALUES (677, 472, 4, 566);
INSERT INTO public.member_roles VALUES (678, 473, 4, 124);
INSERT INTO public.member_roles VALUES (679, 473, 5, 125);
INSERT INTO public.member_roles VALUES (680, 474, 4, 564);
INSERT INTO public.member_roles VALUES (681, 475, 4, 568);
INSERT INTO public.member_roles VALUES (682, 476, 4, 492);
INSERT INTO public.member_roles VALUES (683, 477, 8, 535);
INSERT INTO public.member_roles VALUES (684, 478, 4, NULL);
INSERT INTO public.member_roles VALUES (685, 478, 5, NULL);
INSERT INTO public.member_roles VALUES (686, 479, 3, NULL);
INSERT INTO public.member_roles VALUES (687, 479, 4, NULL);
INSERT INTO public.member_roles VALUES (688, 480, 3, NULL);
INSERT INTO public.member_roles VALUES (689, 480, 4, NULL);
INSERT INTO public.member_roles VALUES (690, 481, 4, NULL);
INSERT INTO public.member_roles VALUES (691, 482, 4, NULL);
INSERT INTO public.member_roles VALUES (692, 483, 4, NULL);
INSERT INTO public.member_roles VALUES (693, 484, 4, NULL);
INSERT INTO public.member_roles VALUES (694, 485, 3, NULL);
INSERT INTO public.member_roles VALUES (695, 486, 4, NULL);
INSERT INTO public.member_roles VALUES (696, 487, 4, NULL);
INSERT INTO public.member_roles VALUES (697, 488, 4, NULL);
INSERT INTO public.member_roles VALUES (698, 488, 3, NULL);
INSERT INTO public.member_roles VALUES (699, 485, 4, NULL);
INSERT INTO public.member_roles VALUES (700, 489, 4, NULL);
INSERT INTO public.member_roles VALUES (701, 490, 4, NULL);
INSERT INTO public.member_roles VALUES (702, 491, 4, NULL);
INSERT INTO public.member_roles VALUES (703, 492, 4, NULL);
INSERT INTO public.member_roles VALUES (704, 493, 4, NULL);
INSERT INTO public.member_roles VALUES (705, 494, 4, NULL);
INSERT INTO public.member_roles VALUES (708, 496, 4, NULL);
INSERT INTO public.member_roles VALUES (726, 512, 4, 388);
INSERT INTO public.member_roles VALUES (727, 513, 4, 389);
INSERT INTO public.member_roles VALUES (728, 514, 4, 390);
INSERT INTO public.member_roles VALUES (729, 515, 3, 573);
INSERT INTO public.member_roles VALUES (730, 516, 4, 392);
INSERT INTO public.member_roles VALUES (731, 517, 4, 393);
INSERT INTO public.member_roles VALUES (732, 518, 4, 394);
INSERT INTO public.member_roles VALUES (733, 519, 4, 395);
INSERT INTO public.member_roles VALUES (734, 520, 4, 396);
INSERT INTO public.member_roles VALUES (735, 521, 4, 415);
INSERT INTO public.member_roles VALUES (736, 522, 4, 431);
INSERT INTO public.member_roles VALUES (737, 523, 8, 539);
INSERT INTO public.member_roles VALUES (738, 524, 8, 548);
INSERT INTO public.member_roles VALUES (739, 525, 4, 574);
INSERT INTO public.member_roles VALUES (740, 526, 8, 591);
INSERT INTO public.member_roles VALUES (741, 527, 4, NULL);
INSERT INTO public.member_roles VALUES (742, 528, 4, NULL);
INSERT INTO public.member_roles VALUES (744, 530, 4, NULL);
INSERT INTO public.member_roles VALUES (745, 531, 4, NULL);
INSERT INTO public.member_roles VALUES (746, 532, 4, NULL);
INSERT INTO public.member_roles VALUES (747, 533, 3, NULL);
INSERT INTO public.member_roles VALUES (748, 534, 4, NULL);
INSERT INTO public.member_roles VALUES (749, 534, 5, NULL);
INSERT INTO public.member_roles VALUES (750, 534, 6, NULL);
INSERT INTO public.member_roles VALUES (751, 534, 7, NULL);
INSERT INTO public.member_roles VALUES (752, 534, 8, NULL);
INSERT INTO public.member_roles VALUES (753, 535, 4, NULL);
INSERT INTO public.member_roles VALUES (754, 535, 5, NULL);
INSERT INTO public.member_roles VALUES (755, 535, 6, NULL);
INSERT INTO public.member_roles VALUES (756, 535, 7, NULL);
INSERT INTO public.member_roles VALUES (757, 535, 8, NULL);
INSERT INTO public.member_roles VALUES (758, 536, 4, NULL);
INSERT INTO public.member_roles VALUES (759, 537, 4, NULL);
INSERT INTO public.member_roles VALUES (760, 538, 4, NULL);
INSERT INTO public.member_roles VALUES (761, 539, 4, NULL);
INSERT INTO public.member_roles VALUES (762, 540, 4, NULL);
INSERT INTO public.member_roles VALUES (763, 541, 4, NULL);
INSERT INTO public.member_roles VALUES (764, 542, 4, NULL);
INSERT INTO public.member_roles VALUES (765, 543, 4, NULL);
INSERT INTO public.member_roles VALUES (766, 544, 4, NULL);
INSERT INTO public.member_roles VALUES (767, 545, 4, NULL);
INSERT INTO public.member_roles VALUES (768, 546, 4, NULL);
INSERT INTO public.member_roles VALUES (769, 547, 8, NULL);
INSERT INTO public.member_roles VALUES (770, 548, 3, NULL);
INSERT INTO public.member_roles VALUES (776, 554, 4, NULL);
INSERT INTO public.member_roles VALUES (777, 555, 4, NULL);
INSERT INTO public.member_roles VALUES (778, 556, 4, NULL);
INSERT INTO public.member_roles VALUES (779, 557, 8, NULL);
INSERT INTO public.member_roles VALUES (780, 558, 4, NULL);
INSERT INTO public.member_roles VALUES (781, 559, 4, NULL);
INSERT INTO public.member_roles VALUES (782, 560, 4, NULL);


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

INSERT INTO public.members VALUES (1, 5, 1, '2020-02-14 08:56:36+07', false);
INSERT INTO public.members VALUES (2, 5, 2, '2020-02-14 08:58:04+07', false);
INSERT INTO public.members VALUES (5, 8, 1, '2020-02-21 17:36:07+07', false);
INSERT INTO public.members VALUES (6, 9, 1, '2020-02-24 08:36:04+07', false);
INSERT INTO public.members VALUES (7, 10, 1, '2020-02-24 08:36:04+07', false);
INSERT INTO public.members VALUES (10, 12, 3, '2020-03-17 17:00:22+07', false);
INSERT INTO public.members VALUES (11, 13, 4, '2020-03-18 14:19:19+07', false);
INSERT INTO public.members VALUES (13, 5, 4, '2020-03-18 14:19:29+07', false);
INSERT INTO public.members VALUES (15, 10, 4, '2020-03-23 08:32:30+07', false);
INSERT INTO public.members VALUES (26, 13, 8, '2020-04-06 13:20:06+07', false);
INSERT INTO public.members VALUES (27, 5, 8, '2020-04-06 13:20:06+07', false);
INSERT INTO public.members VALUES (28, 12, 8, '2020-04-06 13:20:06+07', false);
INSERT INTO public.members VALUES (29, 15, 9, '2020-04-06 13:51:47+07', false);
INSERT INTO public.members VALUES (32, 5, 10, '2020-04-10 15:23:22+07', false);
INSERT INTO public.members VALUES (33, 8, 10, '2020-04-10 15:23:22+07', false);
INSERT INTO public.members VALUES (34, 15, 10, '2020-04-10 15:25:04+07', false);
INSERT INTO public.members VALUES (35, 17, 10, '2020-04-10 15:28:02+07', false);
INSERT INTO public.members VALUES (36, 16, 10, '2020-04-10 15:28:02+07', false);
INSERT INTO public.members VALUES (37, 10, 3, '2020-04-21 16:03:12+07', false);
INSERT INTO public.members VALUES (39, 9, 10, '2020-04-23 08:11:53+07', false);
INSERT INTO public.members VALUES (40, 16, 3, '2020-05-13 02:29:07+07', false);
INSERT INTO public.members VALUES (43, 8, 8, '2020-05-16 08:58:05+07', false);
INSERT INTO public.members VALUES (44, 10, 8, '2020-05-16 09:00:01+07', false);
INSERT INTO public.members VALUES (45, 8, 4, '2020-06-15 08:52:03+07', false);
INSERT INTO public.members VALUES (47, 12, 4, '2020-06-15 08:52:03+07', false);
INSERT INTO public.members VALUES (48, 15, 4, '2020-06-15 08:52:03+07', false);
INSERT INTO public.members VALUES (51, 8, 11, '2020-06-25 09:29:19+07', false);
INSERT INTO public.members VALUES (53, 5, 11, '2020-06-25 09:29:19+07', false);
INSERT INTO public.members VALUES (57, 19, 8, '2020-06-25 16:35:22+07', false);
INSERT INTO public.members VALUES (58, 19, 11, '2020-07-10 09:02:33+07', false);
INSERT INTO public.members VALUES (59, 17, 12, '2020-07-13 09:11:58+07', false);
INSERT INTO public.members VALUES (61, 16, 12, '2020-07-13 09:11:58+07', false);
INSERT INTO public.members VALUES (62, 17, 14, '2020-07-13 09:16:42+07', false);
INSERT INTO public.members VALUES (64, 16, 13, '2020-07-13 09:17:39+07', false);
INSERT INTO public.members VALUES (65, 17, 15, '2020-07-13 09:18:29+07', false);
INSERT INTO public.members VALUES (67, 16, 15, '2020-07-13 09:18:29+07', false);
INSERT INTO public.members VALUES (68, 20, 4, '2020-07-13 09:20:04+07', false);
INSERT INTO public.members VALUES (71, 17, 16, '2020-07-13 09:27:50+07', false);
INSERT INTO public.members VALUES (73, 16, 16, '2020-07-13 09:27:51+07', false);
INSERT INTO public.members VALUES (75, 20, 12, '2020-07-13 04:11:25+07', false);
INSERT INTO public.members VALUES (77, 23, 18, '2020-07-13 13:50:16+07', false);
INSERT INTO public.members VALUES (78, 22, 19, '2020-07-13 13:51:37+07', false);
INSERT INTO public.members VALUES (79, 24, 11, '2020-07-13 16:20:19+07', false);
INSERT INTO public.members VALUES (85, 16, 20, '2020-07-14 11:32:10+07', false);
INSERT INTO public.members VALUES (86, 16, 23, '2020-07-14 11:32:36+07', false);
INSERT INTO public.members VALUES (87, 16, 22, '2020-07-14 11:33:11+07', false);
INSERT INTO public.members VALUES (88, 16, 24, '2020-07-14 11:33:38+07', false);
INSERT INTO public.members VALUES (89, 29, 18, '2020-07-15 09:19:32+07', false);
INSERT INTO public.members VALUES (90, 26, 18, '2020-07-15 09:19:32+07', false);
INSERT INTO public.members VALUES (91, 30, 18, '2020-07-15 09:19:32+07', false);
INSERT INTO public.members VALUES (92, 27, 18, '2020-07-15 09:19:32+07', false);
INSERT INTO public.members VALUES (93, 28, 18, '2020-07-15 09:19:32+07', false);
INSERT INTO public.members VALUES (94, 32, 18, '2020-07-15 09:19:32+07', false);
INSERT INTO public.members VALUES (95, 31, 18, '2020-07-15 09:19:32+07', false);
INSERT INTO public.members VALUES (96, 33, 18, '2020-07-15 09:22:09+07', false);
INSERT INTO public.members VALUES (98, 21, 19, '2020-07-15 09:22:52+07', false);
INSERT INTO public.members VALUES (99, 24, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (100, 17, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (102, 29, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (103, 26, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (104, 9, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (107, 8, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (108, 30, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (109, 14, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (110, 27, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (111, 10, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (113, 5, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (114, 33, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (115, 28, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (116, 32, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (117, 16, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (118, 12, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (119, 23, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (120, 19, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (121, 13, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (122, 31, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (123, 15, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (124, 22, 25, '2020-07-15 09:49:54+07', false);
INSERT INTO public.members VALUES (125, 21, 25, '2020-07-15 09:49:54+07', false);
INSERT INTO public.members VALUES (126, 20, 25, '2020-07-15 09:50:00+07', false);
INSERT INTO public.members VALUES (127, 21, 26, '2020-07-15 10:11:47+07', false);
INSERT INTO public.members VALUES (128, 20, 26, '2020-07-15 10:11:54+07', false);
INSERT INTO public.members VALUES (129, 22, 26, '2020-07-15 10:12:15+07', false);
INSERT INTO public.members VALUES (132, 23, 27, '2020-07-18 10:01:43+07', false);
INSERT INTO public.members VALUES (133, 32, 27, '2020-07-18 10:02:11+07', false);
INSERT INTO public.members VALUES (134, 29, 27, '2020-07-18 10:02:11+07', false);
INSERT INTO public.members VALUES (135, 30, 27, '2020-07-18 10:02:11+07', false);
INSERT INTO public.members VALUES (136, 34, 18, '2020-07-18 10:21:36+07', false);
INSERT INTO public.members VALUES (137, 31, 27, '2020-07-18 10:25:41+07', false);
INSERT INTO public.members VALUES (138, 26, 27, '2020-07-18 10:43:52+07', false);
INSERT INTO public.members VALUES (139, 27, 27, '2020-07-18 10:43:52+07', false);
INSERT INTO public.members VALUES (140, 28, 27, '2020-07-18 10:43:52+07', false);
INSERT INTO public.members VALUES (141, 34, 27, '2020-07-18 10:43:52+07', false);
INSERT INTO public.members VALUES (142, 16, 9, '2020-07-18 10:49:37+07', false);
INSERT INTO public.members VALUES (143, 32, 9, '2020-07-18 10:49:55+07', false);
INSERT INTO public.members VALUES (146, 15, 28, '2020-07-18 14:40:00+07', false);
INSERT INTO public.members VALUES (147, 16, 28, '2020-07-18 14:40:00+07', false);
INSERT INTO public.members VALUES (148, 17, 28, '2020-07-18 14:40:00+07', false);
INSERT INTO public.members VALUES (149, 21, 28, '2020-07-18 14:40:00+07', false);
INSERT INTO public.members VALUES (153, 14, 32, '2020-07-18 15:30:49+07', false);
INSERT INTO public.members VALUES (154, 21, 32, '2020-07-18 15:39:53+07', false);
INSERT INTO public.members VALUES (156, 22, 33, '2020-07-18 16:13:59+07', false);
INSERT INTO public.members VALUES (158, 21, 33, '2020-07-18 16:16:46+07', false);
INSERT INTO public.members VALUES (159, 35, 18, '2020-07-18 16:21:19+07', false);
INSERT INTO public.members VALUES (160, 35, 27, '2020-07-20 09:43:33+07', false);
INSERT INTO public.members VALUES (161, 23, 34, '2020-07-20 10:31:37+07', false);
INSERT INTO public.members VALUES (162, 26, 34, '2020-07-20 10:32:35+07', false);
INSERT INTO public.members VALUES (163, 35, 34, '2020-07-20 10:32:35+07', false);
INSERT INTO public.members VALUES (164, 27, 34, '2020-07-20 10:32:35+07', false);
INSERT INTO public.members VALUES (165, 28, 34, '2020-07-20 10:32:35+07', false);
INSERT INTO public.members VALUES (166, 29, 34, '2020-07-20 10:32:35+07', false);
INSERT INTO public.members VALUES (167, 30, 34, '2020-07-20 10:32:35+07', false);
INSERT INTO public.members VALUES (168, 34, 34, '2020-07-20 10:32:35+07', false);
INSERT INTO public.members VALUES (169, 31, 34, '2020-07-20 10:32:35+07', false);
INSERT INTO public.members VALUES (172, 16, 30, '2020-07-20 14:05:43+07', false);
INSERT INTO public.members VALUES (173, 15, 29, '2020-07-20 15:31:18+07', false);
INSERT INTO public.members VALUES (174, 17, 29, '2020-07-20 15:31:46+07', false);
INSERT INTO public.members VALUES (175, 33, 35, '2020-07-20 15:44:29+07', false);
INSERT INTO public.members VALUES (176, 32, 35, '2020-07-20 15:44:38+07', false);
INSERT INTO public.members VALUES (177, 23, 35, '2020-07-20 15:44:38+07', false);
INSERT INTO public.members VALUES (178, 9, 9, '2020-07-20 15:47:25+07', false);
INSERT INTO public.members VALUES (179, 21, 36, '2020-07-20 15:52:36+07', false);
INSERT INTO public.members VALUES (180, 22, 36, '2020-07-20 15:52:51+07', false);
INSERT INTO public.members VALUES (181, 9, 36, '2020-07-20 15:52:51+07', false);
INSERT INTO public.members VALUES (183, 33, 37, '2020-07-20 15:59:17+07', false);
INSERT INTO public.members VALUES (184, 10, 31, '2020-07-22 14:22:03+07', false);
INSERT INTO public.members VALUES (185, 9, 28, '2020-07-22 14:52:18+07', false);
INSERT INTO public.members VALUES (187, 10, 28, '2020-07-23 08:51:02+07', false);
INSERT INTO public.members VALUES (188, 22, 38, '2020-07-23 16:35:20+07', false);
INSERT INTO public.members VALUES (189, 13, 40, '2020-07-24 13:11:09+07', false);
INSERT INTO public.members VALUES (190, 12, 40, '2020-07-24 13:11:40+07', false);
INSERT INTO public.members VALUES (192, 13, 39, '2020-07-24 13:12:10+07', false);
INSERT INTO public.members VALUES (194, 12, 39, '2020-07-24 13:12:26+07', false);
INSERT INTO public.members VALUES (195, 10, 29, '2020-07-28 11:07:03+07', false);
INSERT INTO public.members VALUES (196, 17, 31, '2020-07-28 11:09:01+07', false);
INSERT INTO public.members VALUES (200, 33, 41, '2020-07-28 15:55:54+07', false);
INSERT INTO public.members VALUES (201, 32, 41, '2020-07-28 15:55:54+07', false);
INSERT INTO public.members VALUES (202, 23, 41, '2020-07-28 15:55:54+07', false);
INSERT INTO public.members VALUES (203, 36, 25, '2020-07-30 09:44:48+07', false);
INSERT INTO public.members VALUES (204, 34, 25, '2020-07-30 09:44:48+07', false);
INSERT INTO public.members VALUES (205, 35, 25, '2020-07-30 09:44:48+07', false);
INSERT INTO public.members VALUES (206, 9, 4, '2020-08-06 11:00:40+07', false);
INSERT INTO public.members VALUES (207, 5, 43, '2020-08-08 14:54:35+07', false);
INSERT INTO public.members VALUES (208, 20, 43, '2020-08-08 14:54:35+07', false);
INSERT INTO public.members VALUES (209, 21, 43, '2020-08-08 14:54:35+07', false);
INSERT INTO public.members VALUES (210, 14, 43, '2020-08-08 14:55:07+07', false);
INSERT INTO public.members VALUES (211, 24, 43, '2020-08-08 14:55:07+07', false);
INSERT INTO public.members VALUES (213, 24, 32, '2020-08-13 08:34:26+07', false);
INSERT INTO public.members VALUES (214, 20, 36, '2020-08-13 09:37:33+07', false);
INSERT INTO public.members VALUES (215, 20, 19, '2020-08-13 09:39:16+07', false);
INSERT INTO public.members VALUES (216, 20, 33, '2020-08-13 09:39:16+07', false);
INSERT INTO public.members VALUES (217, 20, 8, '2020-08-13 09:40:04+07', false);
INSERT INTO public.members VALUES (218, 5, 44, '2020-08-13 11:29:24+07', false);
INSERT INTO public.members VALUES (219, 9, 44, '2020-08-13 11:31:31+07', false);
INSERT INTO public.members VALUES (220, 12, 44, '2020-08-13 11:31:31+07', false);
INSERT INTO public.members VALUES (221, 8, 44, '2020-08-13 11:31:31+07', false);
INSERT INTO public.members VALUES (222, 20, 27, '2020-08-13 14:38:28+07', false);
INSERT INTO public.members VALUES (223, 33, 43, '2020-08-19 10:01:38+07', false);
INSERT INTO public.members VALUES (224, 37, 8, '2020-08-19 13:25:15+07', false);
INSERT INTO public.members VALUES (225, 37, 40, '2020-08-22 10:55:50+07', false);
INSERT INTO public.members VALUES (226, 38, 12, '2020-08-25 08:18:04+07', false);
INSERT INTO public.members VALUES (227, 38, 13, '2020-08-25 08:21:28+07', false);
INSERT INTO public.members VALUES (228, 38, 20, '2020-08-25 08:22:01+07', false);
INSERT INTO public.members VALUES (229, 38, 21, '2020-08-25 08:22:30+07', false);
INSERT INTO public.members VALUES (230, 38, 22, '2020-08-25 08:22:51+07', false);
INSERT INTO public.members VALUES (231, 38, 23, '2020-08-25 08:23:53+07', false);
INSERT INTO public.members VALUES (232, 38, 24, '2020-08-25 08:31:50+07', false);
INSERT INTO public.members VALUES (233, 37, 4, '2020-08-27 08:20:11+07', false);
INSERT INTO public.members VALUES (234, 19, 45, '2020-08-28 08:36:45+07', false);
INSERT INTO public.members VALUES (236, 12, 45, '2020-08-28 08:36:45+07', false);
INSERT INTO public.members VALUES (237, 38, 28, '2020-08-29 09:34:42+07', false);
INSERT INTO public.members VALUES (238, 38, 30, '2020-08-29 09:35:17+07', false);
INSERT INTO public.members VALUES (239, 39, 11, '2020-09-01 08:52:38+07', false);
INSERT INTO public.members VALUES (240, 40, 45, '2020-09-03 14:07:08+07', false);
INSERT INTO public.members VALUES (241, 41, 45, '2020-09-03 14:11:07+07', false);
INSERT INTO public.members VALUES (242, 29, 35, '2020-09-10 08:00:06+07', false);
INSERT INTO public.members VALUES (243, 29, 41, '2020-09-10 08:00:07+07', false);
INSERT INTO public.members VALUES (244, 19, 12, '2020-09-10 09:44:24+07', false);
INSERT INTO public.members VALUES (245, 8, 45, '2020-09-10 03:35:17+07', false);
INSERT INTO public.members VALUES (246, 39, 45, '2020-09-10 14:40:38+07', false);
INSERT INTO public.members VALUES (247, 19, 46, '2020-09-11 11:02:25+07', false);
INSERT INTO public.members VALUES (248, 10, 46, '2020-09-11 11:02:25+07', false);
INSERT INTO public.members VALUES (249, 40, 46, '2020-09-11 11:02:25+07', false);
INSERT INTO public.members VALUES (250, 5, 46, '2020-09-11 11:02:25+07', false);
INSERT INTO public.members VALUES (251, 12, 46, '2020-09-11 11:02:25+07', false);
INSERT INTO public.members VALUES (252, 8, 46, '2020-09-11 11:02:25+07', false);
INSERT INTO public.members VALUES (253, 39, 46, '2020-09-11 11:02:25+07', false);
INSERT INTO public.members VALUES (254, 41, 46, '2020-09-11 11:02:33+07', false);
INSERT INTO public.members VALUES (255, 38, 46, '2020-09-15 16:55:13+07', false);
INSERT INTO public.members VALUES (256, 40, 28, '2020-09-23 08:48:15+07', false);
INSERT INTO public.members VALUES (257, 40, 4, '2020-09-24 08:47:16+07', false);
INSERT INTO public.members VALUES (258, 15, 47, '2020-09-29 11:19:16+07', false);
INSERT INTO public.members VALUES (259, 5, 47, '2020-09-29 11:20:31+07', false);
INSERT INTO public.members VALUES (260, 16, 47, '2020-09-29 11:20:31+07', false);
INSERT INTO public.members VALUES (261, 27, 43, '2020-09-29 16:36:54+07', false);
INSERT INTO public.members VALUES (262, 32, 43, '2020-09-29 16:36:54+07', false);
INSERT INTO public.members VALUES (263, 23, 43, '2020-09-29 16:36:54+07', false);
INSERT INTO public.members VALUES (264, 29, 43, '2020-09-29 16:36:54+07', false);
INSERT INTO public.members VALUES (265, 17, 46, '2020-10-03 13:43:37+07', false);
INSERT INTO public.members VALUES (266, 12, 47, '2020-10-06 10:48:29+07', false);
INSERT INTO public.members VALUES (267, 19, 47, '2020-10-06 10:48:37+07', false);
INSERT INTO public.members VALUES (268, 24, 35, '2020-10-08 08:15:13+07', false);
INSERT INTO public.members VALUES (269, 24, 41, '2020-10-08 08:15:13+07', false);
INSERT INTO public.members VALUES (270, 21, 48, '2020-10-08 16:50:58+07', false);
INSERT INTO public.members VALUES (271, 5, 48, '2020-10-08 16:51:24+07', false);
INSERT INTO public.members VALUES (272, 16, 48, '2020-10-08 16:51:36+07', false);
INSERT INTO public.members VALUES (274, 20, 42, '2020-10-08 16:53:19+07', false);
INSERT INTO public.members VALUES (275, 21, 42, '2020-10-08 16:53:19+07', false);
INSERT INTO public.members VALUES (276, 5, 42, '2020-10-08 16:53:38+07', false);
INSERT INTO public.members VALUES (278, 20, 48, '2020-10-08 16:54:47+07', false);
INSERT INTO public.members VALUES (279, 37, 46, '2020-10-09 13:07:47+07', false);
INSERT INTO public.members VALUES (280, 21, 49, '2020-10-09 14:29:29+07', false);
INSERT INTO public.members VALUES (281, 15, 49, '2020-10-09 14:29:47+07', false);
INSERT INTO public.members VALUES (283, 9, 49, '2020-10-09 14:30:04+07', false);
INSERT INTO public.members VALUES (284, 19, 50, '2020-10-10 11:51:18+07', false);
INSERT INTO public.members VALUES (286, 5, 50, '2020-10-10 11:51:18+07', false);
INSERT INTO public.members VALUES (287, 16, 50, '2020-10-10 11:51:19+07', false);
INSERT INTO public.members VALUES (288, 13, 50, '2020-10-10 11:51:19+07', false);
INSERT INTO public.members VALUES (289, 15, 48, '2020-10-10 13:22:18+07', false);
INSERT INTO public.members VALUES (290, 21, 50, '2020-10-12 09:03:52+07', false);
INSERT INTO public.members VALUES (291, 12, 51, '2020-10-12 15:25:46+07', false);
INSERT INTO public.members VALUES (292, 19, 51, '2020-10-12 15:27:37+07', false);
INSERT INTO public.members VALUES (304, 23, 52, '2020-10-16 13:58:40+07', false);
INSERT INTO public.members VALUES (305, 29, 52, '2020-10-16 13:58:40+07', false);
INSERT INTO public.members VALUES (306, 26, 52, '2020-10-16 13:58:40+07', false);
INSERT INTO public.members VALUES (307, 30, 52, '2020-10-16 13:58:40+07', false);
INSERT INTO public.members VALUES (308, 27, 52, '2020-10-16 13:58:40+07', false);
INSERT INTO public.members VALUES (309, 28, 52, '2020-10-16 13:58:40+07', false);
INSERT INTO public.members VALUES (310, 32, 52, '2020-10-16 13:58:40+07', false);
INSERT INTO public.members VALUES (311, 31, 52, '2020-10-16 13:58:40+07', false);
INSERT INTO public.members VALUES (312, 33, 52, '2020-10-16 13:58:40+07', false);
INSERT INTO public.members VALUES (313, 34, 52, '2020-10-16 13:58:40+07', false);
INSERT INTO public.members VALUES (314, 35, 52, '2020-10-16 13:58:40+07', false);
INSERT INTO public.members VALUES (315, 22, 49, '2020-10-19 09:49:26+07', false);
INSERT INTO public.members VALUES (319, 20, 53, '2020-10-24 15:38:50+07', false);
INSERT INTO public.members VALUES (320, 21, 53, '2020-10-24 15:38:50+07', false);
INSERT INTO public.members VALUES (321, 14, 53, '2020-10-24 15:39:24+07', false);
INSERT INTO public.members VALUES (324, 37, 42, '2020-10-31 13:48:30+07', false);
INSERT INTO public.members VALUES (325, 8, 42, '2020-10-31 13:48:30+07', false);
INSERT INTO public.members VALUES (327, 22, 18, '2020-11-03 16:04:49+07', false);
INSERT INTO public.members VALUES (328, 22, 52, '2020-11-03 16:04:49+07', false);
INSERT INTO public.members VALUES (329, 27, 54, '2020-11-03 16:10:05+07', false);
INSERT INTO public.members VALUES (330, 29, 54, '2020-11-03 16:10:14+07', false);
INSERT INTO public.members VALUES (331, 30, 54, '2020-11-03 16:10:14+07', false);
INSERT INTO public.members VALUES (332, 12, 55, '2020-11-07 16:07:31+07', false);
INSERT INTO public.members VALUES (333, 19, 55, '2020-11-07 16:10:23+07', false);
INSERT INTO public.members VALUES (334, 37, 55, '2020-11-07 16:10:23+07', false);
INSERT INTO public.members VALUES (335, 38, 55, '2020-11-07 16:10:23+07', false);
INSERT INTO public.members VALUES (336, 8, 55, '2020-11-07 16:10:23+07', false);
INSERT INTO public.members VALUES (337, 13, 55, '2020-11-07 16:10:23+07', false);
INSERT INTO public.members VALUES (338, 37, 25, '2020-11-09 09:14:52+07', false);
INSERT INTO public.members VALUES (340, 41, 25, '2020-11-09 09:14:52+07', false);
INSERT INTO public.members VALUES (341, 38, 25, '2020-11-09 09:14:52+07', false);
INSERT INTO public.members VALUES (342, 40, 25, '2020-11-09 09:14:52+07', false);
INSERT INTO public.members VALUES (343, 39, 25, '2020-11-09 09:14:52+07', false);
INSERT INTO public.members VALUES (348, 20, 56, '2020-11-09 09:18:52+07', false);
INSERT INTO public.members VALUES (349, 21, 56, '2020-11-09 09:18:52+07', false);
INSERT INTO public.members VALUES (352, 22, 55, '2020-11-09 10:07:19+07', false);
INSERT INTO public.members VALUES (353, 22, 47, '2020-11-10 09:03:21+07', false);
INSERT INTO public.members VALUES (355, 22, 54, '2020-11-10 09:12:03+07', false);
INSERT INTO public.members VALUES (357, 33, 57, '2020-11-12 14:57:01+07', false);
INSERT INTO public.members VALUES (358, 24, 57, '2020-11-12 14:59:08+07', false);
INSERT INTO public.members VALUES (359, 32, 57, '2020-11-12 14:59:15+07', false);
INSERT INTO public.members VALUES (360, 23, 57, '2020-11-12 14:59:22+07', false);
INSERT INTO public.members VALUES (362, 43, 57, '2020-11-12 15:04:24+07', false);
INSERT INTO public.members VALUES (363, 44, 57, '2020-11-12 15:07:30+07', false);
INSERT INTO public.members VALUES (364, 29, 57, '2020-11-14 16:19:25+07', false);
INSERT INTO public.members VALUES (365, 20, 18, '2020-11-16 08:11:04+07', false);
INSERT INTO public.members VALUES (366, 20, 52, '2020-11-16 08:11:04+07', false);
INSERT INTO public.members VALUES (367, 20, 28, '2020-11-16 08:11:40+07', false);
INSERT INTO public.members VALUES (368, 20, 55, '2020-11-16 08:12:07+07', false);
INSERT INTO public.members VALUES (369, 20, 46, '2020-11-16 08:13:35+07', false);
INSERT INTO public.members VALUES (370, 20, 47, '2020-11-16 08:14:00+07', false);
INSERT INTO public.members VALUES (372, 20, 32, '2020-11-16 08:25:40+07', false);
INSERT INTO public.members VALUES (373, 45, 52, '2020-11-16 08:49:45+07', false);
INSERT INTO public.members VALUES (375, 20, 50, '2020-11-17 10:19:03+07', false);
INSERT INTO public.members VALUES (376, 22, 46, '2020-11-17 16:27:02+07', false);
INSERT INTO public.members VALUES (379, 17, 48, '2020-11-21 09:41:03+07', false);
INSERT INTO public.members VALUES (380, 9, 46, '2020-11-24 09:41:57+07', false);
INSERT INTO public.members VALUES (381, 9, 48, '2020-12-02 10:29:26+07', false);
INSERT INTO public.members VALUES (385, 47, 57, '2020-12-09 14:52:04+07', false);
INSERT INTO public.members VALUES (386, 47, 54, '2020-12-09 14:52:23+07', false);
INSERT INTO public.members VALUES (387, 47, 52, '2020-12-09 14:52:43+07', false);
INSERT INTO public.members VALUES (388, 47, 28, '2020-12-09 14:53:07+07', false);
INSERT INTO public.members VALUES (389, 47, 26, '2020-12-09 14:53:28+07', false);
INSERT INTO public.members VALUES (390, 47, 42, '2020-12-09 14:53:47+07', false);
INSERT INTO public.members VALUES (391, 47, 19, '2020-12-09 14:54:11+07', false);
INSERT INTO public.members VALUES (392, 47, 33, '2020-12-09 14:54:11+07', false);
INSERT INTO public.members VALUES (393, 47, 36, '2020-12-09 14:54:29+07', false);
INSERT INTO public.members VALUES (394, 47, 53, '2020-12-09 14:54:44+07', false);
INSERT INTO public.members VALUES (395, 47, 46, '2020-12-09 14:55:03+07', false);
INSERT INTO public.members VALUES (396, 47, 48, '2020-12-09 14:55:22+07', false);
INSERT INTO public.members VALUES (397, 17, 56, '2020-12-14 09:25:14+07', false);
INSERT INTO public.members VALUES (398, 9, 42, '2020-12-28 15:01:03+07', false);
INSERT INTO public.members VALUES (400, 37, 59, '2021-01-19 15:57:22+07', false);
INSERT INTO public.members VALUES (401, 15, 59, '2021-01-19 15:57:22+07', false);
INSERT INTO public.members VALUES (402, 9, 59, '2021-01-19 15:57:22+07', false);
INSERT INTO public.members VALUES (403, 41, 59, '2021-01-19 15:57:22+07', false);
INSERT INTO public.members VALUES (404, 38, 59, '2021-01-19 15:57:22+07', false);
INSERT INTO public.members VALUES (405, 40, 59, '2021-01-19 15:57:22+07', false);
INSERT INTO public.members VALUES (406, 16, 59, '2021-01-19 15:57:22+07', false);
INSERT INTO public.members VALUES (407, 8, 59, '2021-01-19 15:57:22+07', false);
INSERT INTO public.members VALUES (408, 39, 59, '2021-01-19 15:57:22+07', false);
INSERT INTO public.members VALUES (409, 10, 40, '2021-02-02 08:27:56+07', false);
INSERT INTO public.members VALUES (436, 33, 61, '2021-02-25 03:06:15+07', false);
INSERT INTO public.members VALUES (437, 44, 61, '2021-02-25 03:16:07+07', false);
INSERT INTO public.members VALUES (438, 32, 61, '2021-02-25 03:16:07+07', false);
INSERT INTO public.members VALUES (439, 23, 61, '2021-02-25 03:16:07+07', false);
INSERT INTO public.members VALUES (440, 29, 61, '2021-02-25 03:16:07+07', false);
INSERT INTO public.members VALUES (441, 43, 61, '2021-02-25 03:16:07+07', false);
INSERT INTO public.members VALUES (444, 41, 42, '2021-02-25 03:47:02+07', false);
INSERT INTO public.members VALUES (445, 12, 59, '2021-03-01 08:18:21+07', false);
INSERT INTO public.members VALUES (446, 24, 61, '2021-03-09 08:08:48+07', false);
INSERT INTO public.members VALUES (447, 23, 62, '2021-03-17 03:55:51+07', false);
INSERT INTO public.members VALUES (448, 23, 63, '2021-03-17 03:56:05+07', false);
INSERT INTO public.members VALUES (449, 23, 64, '2021-03-17 03:59:50+07', false);
INSERT INTO public.members VALUES (450, 23, 65, '2021-03-17 04:00:59+07', false);
INSERT INTO public.members VALUES (451, 23, 66, '2021-03-17 04:02:22+07', false);
INSERT INTO public.members VALUES (465, 23, 67, '2021-03-17 04:03:58+07', false);
INSERT INTO public.members VALUES (466, 29, 67, '2021-03-17 04:03:58+07', false);
INSERT INTO public.members VALUES (467, 26, 67, '2021-03-17 04:03:58+07', false);
INSERT INTO public.members VALUES (468, 30, 67, '2021-03-17 04:03:58+07', false);
INSERT INTO public.members VALUES (469, 27, 67, '2021-03-17 04:03:58+07', false);
INSERT INTO public.members VALUES (470, 28, 67, '2021-03-17 04:03:58+07', false);
INSERT INTO public.members VALUES (471, 32, 67, '2021-03-17 04:03:58+07', false);
INSERT INTO public.members VALUES (472, 31, 67, '2021-03-17 04:03:58+07', false);
INSERT INTO public.members VALUES (473, 33, 67, '2021-03-17 04:03:58+07', false);
INSERT INTO public.members VALUES (474, 34, 67, '2021-03-17 04:03:59+07', false);
INSERT INTO public.members VALUES (475, 35, 67, '2021-03-17 04:03:59+07', false);
INSERT INTO public.members VALUES (476, 22, 67, '2021-03-17 04:03:59+07', false);
INSERT INTO public.members VALUES (477, 20, 67, '2021-03-17 04:03:59+07', false);
INSERT INTO public.members VALUES (478, 19, 67, '2021-03-17 16:26:17+07', false);
INSERT INTO public.members VALUES (479, 19, 68, '2021-03-17 16:29:08+07', false);
INSERT INTO public.members VALUES (480, 27, 68, '2021-03-17 16:29:16+07', false);
INSERT INTO public.members VALUES (481, 48, 68, '2021-03-17 16:46:45+07', false);
INSERT INTO public.members VALUES (482, 49, 68, '2021-03-17 16:47:03+07', false);
INSERT INTO public.members VALUES (483, 50, 68, '2021-03-17 16:47:12+07', false);
INSERT INTO public.members VALUES (484, 51, 68, '2021-03-17 16:48:50+07', false);
INSERT INTO public.members VALUES (485, 15, 69, '2021-03-25 04:28:23+07', false);
INSERT INTO public.members VALUES (486, 37, 69, '2021-03-25 04:30:31+07', false);
INSERT INTO public.members VALUES (488, 16, 69, '2021-03-25 04:30:31+07', false);
INSERT INTO public.members VALUES (489, 41, 70, '2021-04-01 09:00:44+07', false);
INSERT INTO public.members VALUES (490, 38, 70, '2021-04-01 09:00:44+07', false);
INSERT INTO public.members VALUES (491, 40, 70, '2021-04-01 09:00:44+07', false);
INSERT INTO public.members VALUES (492, 8, 70, '2021-04-01 09:00:44+07', false);
INSERT INTO public.members VALUES (493, 39, 70, '2021-04-01 09:00:44+07', false);
INSERT INTO public.members VALUES (494, 10, 69, '2021-04-07 08:35:10+07', false);
INSERT INTO public.members VALUES (496, 12, 69, '2021-05-07 10:32:58+07', false);
INSERT INTO public.members VALUES (512, 19, 71, '2021-05-07 13:54:04+07', false);
INSERT INTO public.members VALUES (513, 10, 71, '2021-05-07 13:54:04+07', false);
INSERT INTO public.members VALUES (514, 40, 71, '2021-05-07 13:54:04+07', false);
INSERT INTO public.members VALUES (515, 5, 71, '2021-05-07 13:54:04+07', false);
INSERT INTO public.members VALUES (516, 12, 71, '2021-05-07 13:54:04+07', false);
INSERT INTO public.members VALUES (517, 8, 71, '2021-05-07 13:54:04+07', false);
INSERT INTO public.members VALUES (518, 39, 71, '2021-05-07 13:54:05+07', false);
INSERT INTO public.members VALUES (519, 41, 71, '2021-05-07 13:54:05+07', false);
INSERT INTO public.members VALUES (520, 38, 71, '2021-05-07 13:54:05+07', false);
INSERT INTO public.members VALUES (521, 17, 71, '2021-05-07 13:54:05+07', false);
INSERT INTO public.members VALUES (522, 37, 71, '2021-05-07 13:54:05+07', false);
INSERT INTO public.members VALUES (523, 20, 71, '2021-05-07 13:54:05+07', false);
INSERT INTO public.members VALUES (524, 22, 71, '2021-05-07 13:54:05+07', false);
INSERT INTO public.members VALUES (525, 9, 71, '2021-05-07 13:54:05+07', false);
INSERT INTO public.members VALUES (526, 47, 71, '2021-05-07 13:54:05+07', false);
INSERT INTO public.members VALUES (527, 38, 72, '2021-05-11 06:43:48+07', false);
INSERT INTO public.members VALUES (528, 13, 72, '2021-05-11 06:43:55+07', false);
INSERT INTO public.members VALUES (530, 40, 72, '2021-05-11 06:57:36+07', false);
INSERT INTO public.members VALUES (531, 41, 72, '2021-05-11 06:57:52+07', false);
INSERT INTO public.members VALUES (532, 39, 72, '2021-05-11 06:58:54+07', false);
INSERT INTO public.members VALUES (533, 12, 73, '2021-05-26 16:11:30+07', false);
INSERT INTO public.members VALUES (534, 10, 73, '2021-05-27 08:46:30+07', false);
INSERT INTO public.members VALUES (535, 17, 73, '2021-05-27 08:46:49+07', false);
INSERT INTO public.members VALUES (536, 52, 72, '2021-06-09 01:06:12+07', false);
INSERT INTO public.members VALUES (537, 37, 72, '2021-06-12 01:52:56+07', false);
INSERT INTO public.members VALUES (538, 8, 69, '2021-06-14 08:17:45+07', false);
INSERT INTO public.members VALUES (539, 52, 42, '2021-06-29 08:04:46+07', false);
INSERT INTO public.members VALUES (540, 53, 72, '2021-07-16 09:40:30+07', false);
INSERT INTO public.members VALUES (541, 53, 42, '2021-08-28 09:14:55+07', false);
INSERT INTO public.members VALUES (542, 41, 74, '2021-11-01 09:21:27+07', false);
INSERT INTO public.members VALUES (543, 37, 74, '2021-11-01 09:24:56+07', false);
INSERT INTO public.members VALUES (544, 8, 74, '2021-11-01 09:24:56+07', false);
INSERT INTO public.members VALUES (545, 53, 74, '2021-11-01 09:35:45+07', false);
INSERT INTO public.members VALUES (546, 52, 74, '2021-11-01 09:35:54+07', false);
INSERT INTO public.members VALUES (547, 21, 74, '2021-11-01 09:36:23+07', false);
INSERT INTO public.members VALUES (548, 5, 74, '2021-11-01 09:36:29+07', false);
INSERT INTO public.members VALUES (554, 54, 75, '2022-06-16 13:25:42+07', false);
INSERT INTO public.members VALUES (555, 15, 75, '2022-06-16 13:26:31+07', false);
INSERT INTO public.members VALUES (556, 55, 75, '2022-06-16 13:26:31+07', false);
INSERT INTO public.members VALUES (557, 21, 76, '2022-10-06 12:47:39+07', false);
INSERT INTO public.members VALUES (558, 54, 76, '2022-10-06 12:47:58+07', false);
INSERT INTO public.members VALUES (559, 56, 76, '2022-10-06 12:47:58+07', false);
INSERT INTO public.members VALUES (560, 57, 76, '2022-10-27 10:33:10+07', false);
INSERT INTO public.members VALUES (3, 6, 2, '2020-02-14 11:20:28+07', false);
INSERT INTO public.members VALUES (12, 6, 4, '2020-03-18 14:19:29+07', false);
INSERT INTO public.members VALUES (31, 6, 10, '2020-04-10 15:23:22+07', false);
INSERT INTO public.members VALUES (41, 6, 3, '2020-05-14 09:31:27+07', false);
INSERT INTO public.members VALUES (70, 6, 14, '2020-07-13 09:27:18+07', false);
INSERT INTO public.members VALUES (74, 6, 12, '2020-07-13 10:44:19+07', false);
INSERT INTO public.members VALUES (106, 6, 25, '2020-07-15 09:43:02+07', false);
INSERT INTO public.members VALUES (170, 6, 28, '2020-07-20 10:44:10+07', false);
INSERT INTO public.members VALUES (171, 6, 30, '2020-07-20 14:05:43+07', false);
INSERT INTO public.members VALUES (212, 6, 13, '2020-08-11 15:09:49+07', false);
INSERT INTO public.members VALUES (285, 6, 50, '2020-10-10 11:51:18+07', false);
INSERT INTO public.members VALUES (318, 6, 53, '2020-10-24 15:38:35+07', false);
INSERT INTO public.members VALUES (347, 6, 56, '2020-11-09 09:18:37+07', false);
INSERT INTO public.members VALUES (487, 6, 69, '2021-03-25 04:30:31+07', false);


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



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

INSERT INTO public.news VALUES (1, 12, 'https://www.liveauctioneers.com/', '', 'https://www.liveauctioneers.com/', 4, '2020-07-15 11:29:32+07', 0);
INSERT INTO public.news VALUES (2, 12, 'https://daugiaso5.vn', '', 'https://daugiaso5.vn', 4, '2020-07-15 11:29:54+07', 0);


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



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



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

INSERT INTO public.people_information VALUES (1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (8, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (9, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (10, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (12, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (13, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (14, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (15, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (16, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (17, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (19, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (20, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (21, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (22, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (23, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (26, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (27, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (28, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (29, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (30, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (31, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (32, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (33, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (34, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (35, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (37, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (38, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (39, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (41, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (43, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (44, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (45, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (47, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (48, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (49, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (50, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (51, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (52, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (53, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (54, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (55, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (56, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
INSERT INTO public.people_information VALUES (57, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);


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



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

INSERT INTO public.projects VALUES (1, 'QUẢN LÝ GIÁ', '', '', false, NULL, '2020-02-14 08:54:07+07', '2020-02-14 08:58:24+07', 'quan-ly-gia', 5, 115, 116, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (2, 'ĐẤU GIÁ TRỰC TUYẾN', '', '', false, NULL, '2020-02-14 08:54:15+07', '2020-02-14 09:51:30+07', 'dau-gia', 5, 67, 68, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (3, 'QUẢN LÝ HỌC VIÊN', '', '', false, NULL, '2020-03-12 08:02:38+07', '2020-03-12 08:02:38+07', 'quan-ly-hoc-vien', 1, 119, 120, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (4, 'Xúc tiến đầu tư - Bình Định', '', '', false, NULL, '2020-03-12 08:03:22+07', '2020-08-24 08:36:07+07', 'xuc-tien-dau-tu', 1, 143, 146, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (5, 'CHỈ SỐ TỔN THƯƠNG XÃ HỘI', '', '', false, NULL, '2020-03-12 08:04:03+07', '2020-03-12 08:04:03+07', 'chi-so-ton-thuong-xa-hoi', 5, 37, 38, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (6, 'GDT Project', '', '', false, NULL, '2020-03-23 18:38:49+07', '2020-03-23 18:38:49+07', 'gdt-project', 5, 71, 72, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (7, 'Trà Cazin', '', '', false, NULL, '2020-04-04 08:40:06+07', '2020-04-04 08:40:06+07', 'tra-cazin', 5, 137, 138, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (8, 'HẠ TẦNG BCVT KONTUM', '', '', false, NULL, '2020-04-06 13:19:46+07', '2020-05-16 08:57:48+07', 'ha-tang-bcvt-kontum', 5, 73, 74, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (9, 'QUẢN LÝ TIỀN LƯƠNG', '', '', false, NULL, '2020-04-06 13:51:28+07', '2020-04-06 13:51:28+07', 'quan-ly-tien-luong', 5, 125, 126, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (10, 'Trợ cấp ảnh hưởng Covid-19', 'Phần mềm hỗ trợ công tác trợ cấp cho người dân bị ảnh hưởng bởi đại dịch Covid-19', '', false, NULL, '2020-04-10 15:22:16+07', '2020-04-20 08:35:46+07', 'tro-cap-covid', 5, 139, 140, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (11, 'Quan trắc môi trường Quảng Nam', '', '', false, NULL, '2020-06-25 09:28:17+07', '2020-06-25 09:28:17+07', 'quan-trac-moi-truong-quang-nam', 1, 129, 130, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (12, 'Đấu giá - Viettel', 'Hệ thống phần mềm đấu giá của ông chú Viettel', 'https://daugia.gdtvietnam.com/', false, NULL, '2020-07-13 09:01:06+07', '2020-07-15 11:26:04+07', 'dau-gia-viettel', 5, 39, 60, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (13, 'Back End', '', '', false, 12, '2020-07-13 09:14:01+07', '2020-07-13 13:19:38+07', 'back-end', 5, 40, 51, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (14, 'Front-end-Client', 'Website dành cho khách hàng', 'https://daugia.gdtvietnam.com/', false, 12, '2020-07-13 09:14:41+07', '2020-07-29 08:17:37+07', 'front-end-client', 5, 54, 55, false, NULL, 17, NULL);
INSERT INTO public.projects VALUES (15, 'Front-end-Admin', 'Website dành cho hệ thống', 'http://103.74.116.95:8082', false, 12, '2020-07-13 09:14:51+07', '2020-07-15 11:01:51+07', 'front-end-admin', 5, 52, 53, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (16, 'Front-end-Partner', 'Website dành cho đối tác', 'http://103.74.116.95:8083', false, 12, '2020-07-13 09:15:05+07', '2020-07-15 11:02:42+07', 'front-end-partner', 5, 56, 57, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (17, 'Mobile', 'Dành cho thiết bị điện thoại', '', false, 12, '2020-07-13 13:48:17+07', '2020-07-29 08:17:45+07', 'mobile', 5, 58, 59, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (18, 'BPO', 'Thực hiện các dự án số hóa tài liệu và bản đồ', '', false, NULL, '2020-07-13 13:49:59+07', '2020-07-20 09:39:24+07', 'so-hoa', 1, 5, 36, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (19, 'KẾ TOÁN - NHÂN SỰ', '', '', false, NULL, '2020-07-13 13:51:23+07', '2020-07-13 13:51:23+07', 'ke-toan-nhan-su', 1, 81, 86, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (20, 'Server Account', '', 'http://103.74.116.95:8090/auctions-rest-api-account', false, 13, '2020-07-14 11:29:40+07', '2020-08-25 08:35:03+07', 'server-account-server-danh-cho-tai-khoan', 5, 41, 42, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (21, 'Server Catalog', '', 'http://103.74.116.95:8090/auctions-rest-api-category', false, 13, '2020-07-14 11:30:59+07', '2020-08-25 08:35:37+07', 'server-catalog', 5, 43, 44, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (22, 'Server Online', '', 'http://103.74.116.95:8090/auctions-rest-api-partner', false, 13, '2020-07-14 11:31:20+07', '2020-08-25 08:36:58+07', 'server-online', 5, 45, 46, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (23, 'Server Partner', '', '', false, 13, '2020-07-14 11:31:33+07', '2020-07-29 08:17:17+07', 'server-partner', 5, 47, 48, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (24, 'Server Upload', '', 'http://103.74.116.95:8090/auctions-upload-file', false, 13, '2020-07-14 11:31:43+07', '2020-08-25 08:37:15+07', 'server-upload', 5, 49, 50, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (25, 'Thông báo Công ty', 'Đăng tải thông báo chung về các hoạt động của Công ty', '', false, NULL, '2020-07-15 09:41:47+07', '2020-07-15 10:11:26+07', 'thong-bao-cong-ty', 1, 135, 136, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (26, 'Đấu thầu', 'Quản lý và thực hiện các thủ tục liên quan đấu thầu', '', false, NULL, '2020-07-15 10:10:46+07', '2020-07-15 10:10:46+07', 'dau-thau', 1, 69, 70, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (27, 'Trung tâm lưu trữ tỉnh', 'Số lượng dự án: 455.294
Đã nghiệm thu đợt 1: 290.751
Số lượng còn lại: 164.543', '', false, 18, '2020-07-18 10:01:18+07', '2020-07-20 09:42:45+07', 'du-an-so-hoa-1', 5, 28, 29, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (28, 'Đấu giá đất - Sở Tư Pháp', '', '', false, NULL, '2020-07-18 14:39:03+07', '2020-07-21 07:59:01+07', 'dau-gia-dat-so-tu-phap', 1, 61, 66, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (29, 'Front End', '', 'https://daugiadat.gdtvietnam.com', false, 28, '2020-07-18 14:50:12+07', '2020-07-29 08:18:04+07', 'front-end', 1, 64, 65, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (30, 'Back End', '', '', false, 28, '2020-07-18 14:50:52+07', '2020-09-04 08:13:42+07', 'back-end-12002231231', 1, 62, 63, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (31, 'Mobile đấu giá sở tư pháp', '', '', false, NULL, '2020-07-18 14:51:11+07', '2020-09-09 08:12:40+07', 'mobile-2q2131231231231', 5, 91, 92, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (32, 'Truyền thông Thương hiệu', 'Các dự án Thuộc lĩnh vực truyền thông, PR, Quản trị thương hiệu', '', false, NULL, '2020-07-18 15:30:31+07', '2020-07-18 15:30:31+07', 'truyen-thong-thuong-hieu', 1, 141, 142, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (33, 'Kon Tum ', '- Bổ sung  thêm thông tin 1 người đi tham gia tập huấn để hoàn thiện hồ sơ nghiệm thu (thứ 2 chị Nguyệt -Sở 4T đưa thông tin)
-Kiểm tra hồ sơ và gửi lên Kon Tum . Hồ sơ gồm:
 + 08 Biên bản nghiệm thu kỹ thuật 
 + 08 Biên bản nghiệm thu đào tạo 
 + 08 Biên bản nghiệm thu tổng thể
 + 01 Giấy đề nghị thanh toán
 + 03 Mẫu 08a đi kho bạc 
', '', false, 19, '2020-07-18 16:13:59+07', '2020-07-18 16:16:46+07', 'kon-tum', 5, 84, 85, true, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (34, 'Chỉnh lý tài liệu Thanh tra tỉnh', '', '', false, 18, '2020-07-20 10:31:14+07', '2020-07-20 10:31:14+07', 'chinh-ly-tai-lieu-thanh-tra-tinh', 5, 14, 15, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (35, 'Xử lý bản đồ Bình Phước', 'Số lượng thực hiện: 50 dự án', '', false, 18, '2020-07-20 15:44:21+07', '2020-07-20 15:44:21+07', 'xu-ly-ban-do-binh-phuoc', 5, 30, 35, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (36, 'Kinh doanh', '', '', false, NULL, '2020-07-20 15:52:25+07', '2020-07-20 15:52:25+07', 'kinh-doanh', 1, 89, 90, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (37, 'Nhập Liệu DA: 1 Công ty Timberland', '', '', true, 35, '2020-07-20 15:59:17+07', '2020-07-20 15:59:17+07', 'nhap-lieu-da-1-cong-ty-timberland', 5, 33, 34, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (38, 'Báo cáo thuế quý 2/2020', '', '', true, 19, '2020-07-23 16:35:19+07', '2020-07-23 16:35:19+07', 'bao-cao-thue-quy-2-2020', 5, 82, 83, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (39, 'Xúc tiến đầu tư - Đề tài', '', '', false, 4, '2020-07-24 13:10:26+07', '2020-07-24 13:10:26+07', 'xuc-tien-dau-tu-de-tai', 5, 144, 145, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (40, 'Xúc tiến đầu tư - Bình Phước', '', '', false, NULL, '2020-07-24 13:10:40+07', '2020-08-24 08:35:43+07', 'xuc-tien-dau-tu-binh-phuoc', 1, 147, 148, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (41, 'Nhà máy Công ty TNHH Moash Enterprise Việt Nam', 'Nhập liệu', '', true, 35, '2020-07-28 15:55:54+07', '2020-07-28 15:55:54+07', 'nha-may-cong-ty-tnhh-moash-enterprise-viet-nam', 5, 31, 32, true, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (42, 'Hệ thống báo cáo thống kê', '', '', false, NULL, '2020-07-31 08:17:18+07', '2020-10-16 13:54:33+07', 'bao-cao-dinh-ky-linh-vuc-tai-chinh', 1, 77, 78, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (43, 'AI in Convert from VN-document to  BANA KRIEM - broadcast', '', '', false, NULL, '2020-08-08 14:48:10+07', '2020-09-29 15:48:39+07', 'tri-tue-nhan-tao-tu-dong-chuyen-doi-van-ban-chu-viet-tieng-viet-sang-phat-thanh-tieng-bana-kriem', 1, 1, 4, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (44, 'Quản lý căn hộ chung cư', '', '', false, NULL, '2020-08-13 11:29:13+07', '2020-08-13 11:29:13+07', 'quan-ly-can-ho-chung-cu', 5, 109, 110, false, 21, NULL, NULL);
INSERT INTO public.projects VALUES (45, 'Quan trắc phóng xạ', '', '', false, NULL, '2020-08-28 08:35:15+07', '2020-08-28 08:35:15+07', 'quan-trac-phong-xa', 5, 131, 132, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (46, 'Quản lý bán hàng', '', '', true, NULL, '2020-09-11 11:00:24+07', '2020-09-11 11:00:24+07', 'quan-ly-ban-hang', 1, 101, 106, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (47, 'QUẢN LÝ CHUNG CƯ', '', '', false, NULL, '2020-09-29 11:19:16+07', '2020-09-29 11:19:16+07', 'quan-ly-chung-cu', 1, 111, 112, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (48, 'Quản lý Cán bộ - Nhân sự', '', '', false, NULL, '2020-10-06 08:37:23+07', '2020-10-06 08:37:23+07', 'quan-ly-can-bo-nhan-su', 1, 107, 108, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (49, 'PHẦN MỀM QUẢN LÝ TIỀN LƯƠNG - GDT SALARY', '', '', true, NULL, '2020-10-09 14:29:12+07', '2020-10-09 14:29:12+07', 'phan-mem-quan-ly-tien-luong-gdt-salary', 1, 99, 100, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (50, 'KẾ HOẠCH', '- Hàng tháng gửi kế hoạch thực hiện công việc của mỗi nhóm, của phòng.
- Mỗi ngày 24 hàng tháng họp leader mỗi nhóm báo cáo tiến độ thực hiện', '', false, NULL, '2020-10-10 10:45:19+07', '2020-11-21 09:48:38+07', 'ke-hoach', 1, 79, 80, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (51, 'Quản lý vận hành chung cư', '', '', false, NULL, '2020-10-12 15:25:31+07', '2020-10-12 15:25:31+07', 'quan-ly-van-hanh-chung-cu', 1, 127, 128, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (52, 'Chỉnh lý tài liệu phòng nội vụ Huyện Phù Cát', '', '', false, 18, '2020-10-16 13:58:40+07', '2020-10-16 13:58:40+07', 'chinh-ly-tai-lieu-phong-noi-vu-huyen-phu-cat', 1, 12, 13, true, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (53, 'Nâng cấp hệ thống lưu trữ điện tử sDoc', 'Nâng cấp hệ thống lưu trữ điện tử GDT-sDoc ver 1.0 lên ver 2.0
Mục tiêu: 
- Đáp ứng Nghị định 30/NĐ-CP về công tác văn thư ngày 3/5/2020
- Bổ sung tính năng bóc tách tự động các trường thông tin từ file pdf, word 
- Bổ sung tính năng biên mục phông, hồ sơ, tài liệu
- Nâng cấp giao diện
- Khả năng kết nối liên thông giữa các đơn vị', '', false, NULL, '2020-10-24 15:38:05+07', '2020-10-24 15:38:05+07', 'nang-cap-he-thong-luu-tru-dien-tu-sdoc', 1, 95, 96, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (54, 'Chỉnh lý Ngân hàng nhà nước', '', '', false, 18, '2020-11-03 16:09:48+07', '2020-11-03 16:09:48+07', 'chinh-ly-ngan-hang-nha-nuoc', 1, 10, 11, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (55, 'Hệ thống báo cáo định kỳ', 'Hệ thống quản lý định kỳ cho sở tài chính', '', true, NULL, '2020-11-07 16:07:31+07', '2020-11-07 16:22:06+07', 'he-thong-bao-cao-dinh-ky', 5, 75, 76, false, 59, NULL, NULL);
INSERT INTO public.projects VALUES (56, 'Convert to Bahnar - Hệ thống người dùng đầu cuối', '', '', false, 43, '2020-11-09 09:18:22+07', '2020-12-14 09:27:25+07', 'he-thong-convert-to-bana', 1, 2, 3, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (57, '50 dự án Bình Phước đợt 2', '', '', false, 18, '2020-11-12 14:56:28+07', '2020-11-12 14:56:28+07', 'du-an-binh-phuoc-dot-2', 1, 6, 7, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (59, 'QUẢN LÝ THẦU XÂY DỰNG', '**KHÁCH HÀNG:**

1. CÔNG TY XÂY DỰNG TÂN PHÁT

2. ANH ĐẠI

**THỜI GIAN DỰ KIẾN:**

3 SPRINT DEV

2 SPRINT TEST

**NHÂN SỰ:**

7 DEV', '', false, NULL, '2021-01-19 15:34:36+07', '2021-01-19 15:34:36+07', 'quan-ly-thau-xay-dung', 1, 123, 124, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (61, '50 dự án Cần Thơ', '', '', false, 18, '2021-02-25 03:05:55+07', '2021-02-25 03:05:55+07', 'du-an-can-tho', 1, 8, 9, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (62, 'Số hóa tài liệu Sở Công Thương', '', '', false, 18, '2021-03-17 03:55:51+07', '2021-03-17 03:55:51+07', 'so-hoa-tai-lieu-so-cong-thuong', 5, 20, 21, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (63, 'Số hóa Sở Công Thương', '', '', true, 18, '2021-03-17 03:56:05+07', '2021-03-17 03:56:05+07', 'so-hoa-so-cong-thuong', 5, 18, 19, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (64, 'Số hóa dữ liệu Sở Công Thương Bình Dương', '', '', true, NULL, '2021-03-17 03:59:50+07', '2021-03-17 03:59:50+07', 'so-hoa-du-lieu-so-cong-thuong-binh-duong', 5, 133, 134, true, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (65, 'Số hóa tài liệu Sở Công Thương_Bình Dương', '', '', true, 18, '2021-03-17 04:00:58+07', '2021-03-17 04:00:58+07', 'so-hoa-tai-lieu-so-cong-thuong_binh-duong', 5, 22, 23, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (66, 'Số hóa tài liệu_Sở Công Thương Bình Dương', '', '', true, 18, '2021-03-17 04:02:22+07', '2021-03-17 04:02:22+07', 'so-hoa-tai-lieu_so-cong-thuong-binh-duong', 5, 26, 27, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (67, 'Số hóa tài liệu Sở Công Thương-Bình Dương', '', '', true, 18, '2021-03-17 04:03:58+07', '2021-03-17 04:03:58+07', 'so-hoa-tai-lieu-so-cong-thuong-binh-duong', 1, 24, 25, true, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (68, 'Số hóa Phông UBND Tuy Phước - Chi cục VTLT', '- Số lượng trang văn bản: 282.000 trang
- Thời gian thực hiện: 45 ngày kể từ ngày 01/04/2021.
- Trưởng nhóm: Lương Thị Kim Qui
- Quản lý dự án, báo cáo tiến độ: Trần Quốc Tiến', '', false, 18, '2021-03-17 16:28:32+07', '2021-03-17 16:28:32+07', 'so-hoa-phong-ubnd-tuy-phuoc-chi-cuc-vtlt', 1, 16, 17, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (69, 'QUẢN LÝ CUỘC HỌP', '', '', true, NULL, '2021-03-25 04:28:23+07', '2021-03-25 04:28:56+07', 'quan-ly-cuoc-hop', 1, 113, 114, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (70, 'Phần mềm chấm công', '', '', false, NULL, '2021-04-01 08:59:52+07', '2021-04-01 08:59:52+07', 'phan-mem-cham-cong', 1, 97, 98, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (71, 'Kiến Đô', '', '', false, 46, '2021-05-07 13:54:04+07', '2021-05-07 13:54:04+07', 'kien-do', 1, 104, 105, true, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (72, 'Quản lý phương tiện đo', '', '', false, NULL, '2021-05-11 06:43:36+07', '2021-05-11 06:43:36+07', 'quan-ly-phuong-tien-do', 1, 121, 122, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (73, 'Mobile-eCabinet', 'App quản lý cuộc họp', '', true, NULL, '2021-05-26 16:11:30+07', '2021-05-26 16:13:04+07', 'mobile-ecabinet', 1, 93, 94, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (74, 'Kho Tân Phát', '', '', true, 46, '2021-11-01 08:59:42+07', '2021-11-01 08:59:42+07', 'kho-tan-phat', 1, 102, 103, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (75, 'Kết nối CSDL quốc gia về giá', '', '', false, NULL, '2021-11-24 11:16:52+07', '2021-11-24 11:16:52+07', 'ket-noi-csdl-quoc-gia-ve-gia', 5, 87, 88, false, NULL, NULL, NULL);
INSERT INTO public.projects VALUES (76, 'Quản lý giáo dục nghề nghiệp', '', '', false, NULL, '2022-10-03 11:00:22+07', '2022-10-03 11:00:22+07', 'quan-ly-giao-duc-nghe-nghiep', 1, 117, 118, false, NULL, NULL, NULL);


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

INSERT INTO public.projects_trackers VALUES (1, 1);
INSERT INTO public.projects_trackers VALUES (1, 2);
INSERT INTO public.projects_trackers VALUES (1, 3);
INSERT INTO public.projects_trackers VALUES (1, 4);
INSERT INTO public.projects_trackers VALUES (1, 6);
INSERT INTO public.projects_trackers VALUES (2, 1);
INSERT INTO public.projects_trackers VALUES (2, 2);
INSERT INTO public.projects_trackers VALUES (2, 3);
INSERT INTO public.projects_trackers VALUES (2, 6);
INSERT INTO public.projects_trackers VALUES (3, 1);
INSERT INTO public.projects_trackers VALUES (3, 2);
INSERT INTO public.projects_trackers VALUES (3, 3);
INSERT INTO public.projects_trackers VALUES (3, 6);
INSERT INTO public.projects_trackers VALUES (4, 1);
INSERT INTO public.projects_trackers VALUES (4, 2);
INSERT INTO public.projects_trackers VALUES (4, 3);
INSERT INTO public.projects_trackers VALUES (4, 6);
INSERT INTO public.projects_trackers VALUES (5, 1);
INSERT INTO public.projects_trackers VALUES (5, 2);
INSERT INTO public.projects_trackers VALUES (5, 3);
INSERT INTO public.projects_trackers VALUES (5, 6);
INSERT INTO public.projects_trackers VALUES (6, 1);
INSERT INTO public.projects_trackers VALUES (6, 2);
INSERT INTO public.projects_trackers VALUES (6, 3);
INSERT INTO public.projects_trackers VALUES (6, 6);
INSERT INTO public.projects_trackers VALUES (7, 1);
INSERT INTO public.projects_trackers VALUES (7, 2);
INSERT INTO public.projects_trackers VALUES (7, 3);
INSERT INTO public.projects_trackers VALUES (7, 6);
INSERT INTO public.projects_trackers VALUES (8, 1);
INSERT INTO public.projects_trackers VALUES (8, 2);
INSERT INTO public.projects_trackers VALUES (8, 3);
INSERT INTO public.projects_trackers VALUES (8, 6);
INSERT INTO public.projects_trackers VALUES (9, 1);
INSERT INTO public.projects_trackers VALUES (9, 2);
INSERT INTO public.projects_trackers VALUES (9, 3);
INSERT INTO public.projects_trackers VALUES (9, 6);
INSERT INTO public.projects_trackers VALUES (10, 1);
INSERT INTO public.projects_trackers VALUES (10, 2);
INSERT INTO public.projects_trackers VALUES (10, 3);
INSERT INTO public.projects_trackers VALUES (10, 6);
INSERT INTO public.projects_trackers VALUES (11, 1);
INSERT INTO public.projects_trackers VALUES (11, 2);
INSERT INTO public.projects_trackers VALUES (11, 3);
INSERT INTO public.projects_trackers VALUES (11, 6);
INSERT INTO public.projects_trackers VALUES (12, 1);
INSERT INTO public.projects_trackers VALUES (12, 2);
INSERT INTO public.projects_trackers VALUES (12, 3);
INSERT INTO public.projects_trackers VALUES (12, 6);
INSERT INTO public.projects_trackers VALUES (13, 1);
INSERT INTO public.projects_trackers VALUES (13, 2);
INSERT INTO public.projects_trackers VALUES (13, 3);
INSERT INTO public.projects_trackers VALUES (13, 6);
INSERT INTO public.projects_trackers VALUES (14, 1);
INSERT INTO public.projects_trackers VALUES (14, 2);
INSERT INTO public.projects_trackers VALUES (14, 3);
INSERT INTO public.projects_trackers VALUES (14, 6);
INSERT INTO public.projects_trackers VALUES (15, 1);
INSERT INTO public.projects_trackers VALUES (15, 2);
INSERT INTO public.projects_trackers VALUES (15, 3);
INSERT INTO public.projects_trackers VALUES (15, 6);
INSERT INTO public.projects_trackers VALUES (16, 1);
INSERT INTO public.projects_trackers VALUES (16, 2);
INSERT INTO public.projects_trackers VALUES (16, 3);
INSERT INTO public.projects_trackers VALUES (16, 6);
INSERT INTO public.projects_trackers VALUES (17, 6);
INSERT INTO public.projects_trackers VALUES (18, 4);
INSERT INTO public.projects_trackers VALUES (18, 6);
INSERT INTO public.projects_trackers VALUES (19, 4);
INSERT INTO public.projects_trackers VALUES (19, 6);
INSERT INTO public.projects_trackers VALUES (20, 1);
INSERT INTO public.projects_trackers VALUES (20, 2);
INSERT INTO public.projects_trackers VALUES (20, 3);
INSERT INTO public.projects_trackers VALUES (20, 6);
INSERT INTO public.projects_trackers VALUES (21, 6);
INSERT INTO public.projects_trackers VALUES (22, 1);
INSERT INTO public.projects_trackers VALUES (22, 2);
INSERT INTO public.projects_trackers VALUES (22, 3);
INSERT INTO public.projects_trackers VALUES (22, 6);
INSERT INTO public.projects_trackers VALUES (23, 1);
INSERT INTO public.projects_trackers VALUES (23, 2);
INSERT INTO public.projects_trackers VALUES (23, 3);
INSERT INTO public.projects_trackers VALUES (23, 6);
INSERT INTO public.projects_trackers VALUES (24, 1);
INSERT INTO public.projects_trackers VALUES (24, 2);
INSERT INTO public.projects_trackers VALUES (24, 3);
INSERT INTO public.projects_trackers VALUES (24, 6);
INSERT INTO public.projects_trackers VALUES (25, 5);
INSERT INTO public.projects_trackers VALUES (25, 6);
INSERT INTO public.projects_trackers VALUES (26, 4);
INSERT INTO public.projects_trackers VALUES (26, 6);
INSERT INTO public.projects_trackers VALUES (27, 3);
INSERT INTO public.projects_trackers VALUES (27, 4);
INSERT INTO public.projects_trackers VALUES (27, 5);
INSERT INTO public.projects_trackers VALUES (27, 6);
INSERT INTO public.projects_trackers VALUES (28, 1);
INSERT INTO public.projects_trackers VALUES (28, 2);
INSERT INTO public.projects_trackers VALUES (28, 3);
INSERT INTO public.projects_trackers VALUES (28, 4);
INSERT INTO public.projects_trackers VALUES (28, 5);
INSERT INTO public.projects_trackers VALUES (28, 6);
INSERT INTO public.projects_trackers VALUES (29, 1);
INSERT INTO public.projects_trackers VALUES (29, 2);
INSERT INTO public.projects_trackers VALUES (29, 3);
INSERT INTO public.projects_trackers VALUES (29, 4);
INSERT INTO public.projects_trackers VALUES (29, 5);
INSERT INTO public.projects_trackers VALUES (29, 6);
INSERT INTO public.projects_trackers VALUES (30, 1);
INSERT INTO public.projects_trackers VALUES (30, 2);
INSERT INTO public.projects_trackers VALUES (30, 3);
INSERT INTO public.projects_trackers VALUES (30, 4);
INSERT INTO public.projects_trackers VALUES (30, 5);
INSERT INTO public.projects_trackers VALUES (30, 6);
INSERT INTO public.projects_trackers VALUES (31, 1);
INSERT INTO public.projects_trackers VALUES (31, 2);
INSERT INTO public.projects_trackers VALUES (31, 3);
INSERT INTO public.projects_trackers VALUES (31, 4);
INSERT INTO public.projects_trackers VALUES (31, 5);
INSERT INTO public.projects_trackers VALUES (31, 6);
INSERT INTO public.projects_trackers VALUES (32, 3);
INSERT INTO public.projects_trackers VALUES (32, 4);
INSERT INTO public.projects_trackers VALUES (32, 5);
INSERT INTO public.projects_trackers VALUES (32, 6);
INSERT INTO public.projects_trackers VALUES (33, 6);
INSERT INTO public.projects_trackers VALUES (34, 3);
INSERT INTO public.projects_trackers VALUES (34, 4);
INSERT INTO public.projects_trackers VALUES (34, 5);
INSERT INTO public.projects_trackers VALUES (34, 6);
INSERT INTO public.projects_trackers VALUES (35, 1);
INSERT INTO public.projects_trackers VALUES (35, 4);
INSERT INTO public.projects_trackers VALUES (35, 5);
INSERT INTO public.projects_trackers VALUES (35, 6);
INSERT INTO public.projects_trackers VALUES (36, 2);
INSERT INTO public.projects_trackers VALUES (36, 3);
INSERT INTO public.projects_trackers VALUES (36, 4);
INSERT INTO public.projects_trackers VALUES (36, 5);
INSERT INTO public.projects_trackers VALUES (36, 6);
INSERT INTO public.projects_trackers VALUES (37, 6);
INSERT INTO public.projects_trackers VALUES (38, 6);
INSERT INTO public.projects_trackers VALUES (39, 1);
INSERT INTO public.projects_trackers VALUES (39, 2);
INSERT INTO public.projects_trackers VALUES (39, 3);
INSERT INTO public.projects_trackers VALUES (39, 6);
INSERT INTO public.projects_trackers VALUES (40, 1);
INSERT INTO public.projects_trackers VALUES (40, 2);
INSERT INTO public.projects_trackers VALUES (40, 3);
INSERT INTO public.projects_trackers VALUES (40, 6);
INSERT INTO public.projects_trackers VALUES (41, 6);
INSERT INTO public.projects_trackers VALUES (42, 1);
INSERT INTO public.projects_trackers VALUES (42, 2);
INSERT INTO public.projects_trackers VALUES (42, 3);
INSERT INTO public.projects_trackers VALUES (42, 6);
INSERT INTO public.projects_trackers VALUES (43, 1);
INSERT INTO public.projects_trackers VALUES (43, 2);
INSERT INTO public.projects_trackers VALUES (43, 3);
INSERT INTO public.projects_trackers VALUES (43, 6);
INSERT INTO public.projects_trackers VALUES (44, 1);
INSERT INTO public.projects_trackers VALUES (44, 2);
INSERT INTO public.projects_trackers VALUES (44, 3);
INSERT INTO public.projects_trackers VALUES (44, 6);
INSERT INTO public.projects_trackers VALUES (45, 1);
INSERT INTO public.projects_trackers VALUES (45, 2);
INSERT INTO public.projects_trackers VALUES (45, 3);
INSERT INTO public.projects_trackers VALUES (45, 6);
INSERT INTO public.projects_trackers VALUES (46, 1);
INSERT INTO public.projects_trackers VALUES (46, 2);
INSERT INTO public.projects_trackers VALUES (46, 3);
INSERT INTO public.projects_trackers VALUES (46, 6);
INSERT INTO public.projects_trackers VALUES (47, 1);
INSERT INTO public.projects_trackers VALUES (47, 2);
INSERT INTO public.projects_trackers VALUES (47, 3);
INSERT INTO public.projects_trackers VALUES (47, 4);
INSERT INTO public.projects_trackers VALUES (47, 5);
INSERT INTO public.projects_trackers VALUES (47, 6);
INSERT INTO public.projects_trackers VALUES (48, 1);
INSERT INTO public.projects_trackers VALUES (48, 2);
INSERT INTO public.projects_trackers VALUES (48, 3);
INSERT INTO public.projects_trackers VALUES (48, 6);
INSERT INTO public.projects_trackers VALUES (49, 1);
INSERT INTO public.projects_trackers VALUES (49, 2);
INSERT INTO public.projects_trackers VALUES (49, 3);
INSERT INTO public.projects_trackers VALUES (49, 5);
INSERT INTO public.projects_trackers VALUES (49, 6);
INSERT INTO public.projects_trackers VALUES (50, 2);
INSERT INTO public.projects_trackers VALUES (51, 1);
INSERT INTO public.projects_trackers VALUES (51, 2);
INSERT INTO public.projects_trackers VALUES (51, 3);
INSERT INTO public.projects_trackers VALUES (51, 6);
INSERT INTO public.projects_trackers VALUES (52, 5);
INSERT INTO public.projects_trackers VALUES (52, 6);
INSERT INTO public.projects_trackers VALUES (53, 1);
INSERT INTO public.projects_trackers VALUES (53, 2);
INSERT INTO public.projects_trackers VALUES (53, 3);
INSERT INTO public.projects_trackers VALUES (53, 6);
INSERT INTO public.projects_trackers VALUES (54, 6);
INSERT INTO public.projects_trackers VALUES (55, 1);
INSERT INTO public.projects_trackers VALUES (55, 2);
INSERT INTO public.projects_trackers VALUES (55, 3);
INSERT INTO public.projects_trackers VALUES (55, 4);
INSERT INTO public.projects_trackers VALUES (55, 5);
INSERT INTO public.projects_trackers VALUES (55, 6);
INSERT INTO public.projects_trackers VALUES (56, 1);
INSERT INTO public.projects_trackers VALUES (56, 2);
INSERT INTO public.projects_trackers VALUES (56, 3);
INSERT INTO public.projects_trackers VALUES (56, 4);
INSERT INTO public.projects_trackers VALUES (56, 5);
INSERT INTO public.projects_trackers VALUES (56, 6);
INSERT INTO public.projects_trackers VALUES (57, 5);
INSERT INTO public.projects_trackers VALUES (59, 1);
INSERT INTO public.projects_trackers VALUES (59, 2);
INSERT INTO public.projects_trackers VALUES (61, 5);
INSERT INTO public.projects_trackers VALUES (67, 5);
INSERT INTO public.projects_trackers VALUES (69, 1);
INSERT INTO public.projects_trackers VALUES (69, 2);
INSERT INTO public.projects_trackers VALUES (69, 3);
INSERT INTO public.projects_trackers VALUES (70, 1);
INSERT INTO public.projects_trackers VALUES (70, 2);
INSERT INTO public.projects_trackers VALUES (71, 1);
INSERT INTO public.projects_trackers VALUES (71, 2);
INSERT INTO public.projects_trackers VALUES (72, 1);
INSERT INTO public.projects_trackers VALUES (72, 2);
INSERT INTO public.projects_trackers VALUES (73, 1);
INSERT INTO public.projects_trackers VALUES (73, 2);
INSERT INTO public.projects_trackers VALUES (73, 3);
INSERT INTO public.projects_trackers VALUES (73, 5);
INSERT INTO public.projects_trackers VALUES (73, 6);
INSERT INTO public.projects_trackers VALUES (74, 1);
INSERT INTO public.projects_trackers VALUES (74, 2);
INSERT INTO public.projects_trackers VALUES (75, 2);
INSERT INTO public.projects_trackers VALUES (76, 1);
INSERT INTO public.projects_trackers VALUES (76, 2);


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

INSERT INTO public.queries VALUES (1, 2, 'Trang khách hàng', '---
status_id:
  :operator: o
  :values:
  - ''''
category_id:
  :operator: "="
  :values:
  - ''1''
', 5, NULL, '---
- - id
  - desc
', NULL, 'IssueQuery', 2, '---
:totalable_names: []
:draw_relations: 
:draw_progress_line: 
');
INSERT INTO public.queries VALUES (2, 2, 'Trang admin', '---
status_id:
  :operator: o
  :values:
  - ''''
category_id:
  :operator: "="
  :values:
  - ''2''
', 5, NULL, '---
- - id
  - desc
', NULL, 'IssueQuery', 2, '---
:totalable_names: []
:draw_relations: 
:draw_progress_line: 
');
INSERT INTO public.queries VALUES (3, 2, 'Trang đối tác', '---
status_id:
  :operator: o
  :values:
  - ''''
category_id:
  :operator: "="
  :values:
  - ''3''
', 5, NULL, '---
- - id
  - desc
', NULL, 'IssueQuery', 2, '---
:totalable_names: []
:draw_relations: 
:draw_progress_line: 
');
INSERT INTO public.queries VALUES (4, 1, 'Mobile', '---
status_id:
  :operator: o
  :values:
  - ''''
category_id:
  :operator: "="
  :values:
  - ''6''
', 5, NULL, '---
- - id
  - desc
', NULL, 'IssueQuery', 2, '---
:totalable_names: []
:draw_relations: 
:draw_progress_line: 
');
INSERT INTO public.queries VALUES (5, 1, 'Web', '---
status_id:
  :operator: o
  :values:
  - ''''
category_id:
  :operator: "="
  :values:
  - ''4''
', 5, NULL, '---
- - id
  - desc
', NULL, 'IssueQuery', 2, '---
:totalable_names: []
:draw_relations: 
:draw_progress_line: 
');
INSERT INTO public.queries VALUES (6, 1, 'Service ký số', '---
status_id:
  :operator: o
  :values:
  - ''''
category_id:
  :operator: "="
  :values:
  - ''5''
', 5, NULL, '---
- - id
  - desc
', NULL, 'IssueQuery', 2, '---
:totalable_names: []
:draw_relations: 
:draw_progress_line: 
');
INSERT INTO public.queries VALUES (7, 1, 'Đào tạo & Triển khai', '---
status_id:
  :operator: o
  :values:
  - ''''
category_id:
  :operator: "="
  :values:
  - ''9''
', 5, NULL, '---
- - id
  - desc
', NULL, 'IssueQuery', 2, '---
:totalable_names: []
:draw_relations: 
:draw_progress_line: 
');
INSERT INTO public.queries VALUES (10, 4, 'Đề tài', '---
status_id:
  :operator: o
  :values:
  - ''''
category_id:
  :operator: "="
  :values:
  - ''10''
', 5, NULL, '---
- - id
  - desc
', NULL, 'IssueQuery', 2, '---
:totalable_names: []
:draw_relations: 
:draw_progress_line: 
');
INSERT INTO public.queries VALUES (11, 4, 'Quản trị + CMS', '---
status_id:
  :operator: o
  :values:
  - ''''
category_id:
  :operator: "="
  :values:
  - ''11''
', 5, NULL, '---
- - id
  - desc
', NULL, 'IssueQuery', 2, '---
:totalable_names: []
:draw_relations: 
:draw_progress_line: 
');
INSERT INTO public.queries VALUES (12, 1, 'Cần làm rõ', '---
status_id:
  :operator: o
  :values:
  - ''''
category_id:
  :operator: "="
  :values:
  - ''12''
', 5, NULL, '---
- - id
  - desc
', NULL, 'IssueQuery', 2, '---
:totalable_names: []
:draw_relations: 
:draw_progress_line: 
');
INSERT INTO public.queries VALUES (13, 3, 'Nâng cấp', '---
status_id:
  :operator: o
  :values:
  - ''''
category_id:
  :operator: "="
  :values:
  - ''13''
', 5, NULL, '---
- - id
  - desc
', NULL, 'IssueQuery', 2, '---
:totalable_names: []
:draw_relations: 
:draw_progress_line: 
');
INSERT INTO public.queries VALUES (14, 3, 'Quản lý học viên', '---
status_id:
  :operator: o
  :values:
  - ''''
category_id:
  :operator: "="
  :values:
  - ''7''
', 5, NULL, '---
- - id
  - desc
', NULL, 'IssueQuery', 2, '---
:totalable_names: []
:draw_relations: 
:draw_progress_line: 
');
INSERT INTO public.queries VALUES (15, 3, 'Quản trị hệ thống', '---
status_id:
  :operator: o
  :values:
  - ''''
category_id:
  :operator: "="
  :values:
  - ''8''
', 5, NULL, '---
- - id
  - desc
', NULL, 'IssueQuery', 2, '---
:totalable_names: []
:draw_relations: 
:draw_progress_line: 
');


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



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



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



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

INSERT INTO public.roles VALUES (1, 'Non member', 0, true, 1, '---
- :view_issues
- :add_issues
- :add_issue_notes
- :save_queries
- :view_gantt
- :view_calendar
- :view_time_entries
- :view_news
- :comment_news
- :view_documents
- :view_wiki_pages
- :view_wiki_edits
- :view_messages
- :add_messages
- :view_files
- :browse_repository
- :view_changesets
', 'default', 'all', 'all', true, NULL);
INSERT INTO public.roles VALUES (2, 'Anonymous', 0, true, 2, '---
- :view_issues
- :view_gantt
- :view_calendar
- :view_time_entries
- :view_news
- :view_documents
- :view_wiki_pages
- :view_wiki_edits
- :view_messages
- :view_files
- :browse_repository
- :view_changesets
', 'default', 'all', 'all', true, NULL);
INSERT INTO public.roles VALUES (3, 'Điều hành ', 1, true, 0, '---
- :add_project
- :edit_project
- :close_project
- :select_project_modules
- :manage_members
- :manage_versions
- :add_subprojects
- :manage_public_queries
- :save_queries
- :view_issues
- :add_issues
- :edit_issues
- :copy_issues
- :manage_issue_relations
- :manage_subtasks
- :set_issues_private
- :set_own_issues_private
- :add_issue_notes
- :edit_issue_notes
- :edit_own_issue_notes
- :view_private_notes
- :set_notes_private
- :delete_issues
- :view_issue_watchers
- :add_issue_watchers
- :delete_issue_watchers
- :import_issues
- :manage_categories
- :view_time_entries
- :log_time
- :edit_time_entries
- :edit_own_time_entries
- :manage_project_activities
- :view_news
- :manage_news
- :comment_news
- :view_documents
- :add_documents
- :edit_documents
- :delete_documents
- :view_files
- :manage_files
- :view_wiki_pages
- :view_wiki_edits
- :export_wiki_pages
- :edit_wiki_pages
- :rename_wiki_pages
- :delete_wiki_pages
- :delete_wiki_pages_attachments
- :protect_wiki_pages
- :manage_wiki
- :view_changesets
- :browse_repository
- :commit_access
- :manage_related_issues
- :manage_repository
- :view_messages
- :add_messages
- :edit_messages
- :edit_own_messages
- :delete_messages
- :delete_own_messages
- :manage_boards
- :view_calendar
- :view_gantt
- :use_kanbantool
- :manage_public_agile_queries
- :manage_agile_verions
- :add_agile_queries
- :view_agile_queries
- :view_agile_charts
', 'all', 'all', 'all', true, NULL);
INSERT INTO public.roles VALUES (4, 'Phát triển ', 2, true, 0, '---
- :manage_versions
- :save_queries
- :view_messages
- :add_messages
- :edit_own_messages
- :view_calendar
- :view_documents
- :view_files
- :manage_files
- :view_gantt
- :view_issues
- :add_issues
- :edit_issues
- :manage_issue_relations
- :manage_subtasks
- :add_issue_notes
- :view_private_notes
- :set_notes_private
- :manage_categories
- :view_checklists
- :done_checklists
- :view_news
- :comment_news
- :view_changesets
- :browse_repository
- :commit_access
- :manage_related_issues
- :view_time_entries
- :log_time
- :view_wiki_pages
- :view_wiki_edits
- :edit_wiki_pages
- :delete_wiki_pages
', 'default', 'all', 'all', true, '--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess
permissions_all_trackers: !ruby/hash:ActiveSupport::HashWithIndifferentAccess
  view_issues: ''1''
  add_issues: ''1''
  edit_issues: ''1''
  add_issue_notes: ''1''
  delete_issues: ''1''
permissions_tracker_ids: !ruby/hash:ActiveSupport::HashWithIndifferentAccess
  view_issues: []
  add_issues: []
  edit_issues: []
  add_issue_notes: []
  delete_issues: []
');
INSERT INTO public.roles VALUES (5, 'Báo cáo', 3, true, 0, '---
- :add_subprojects
- :save_queries
- :view_messages
- :add_messages
- :edit_own_messages
- :view_calendar
- :view_documents
- :view_files
- :view_gantt
- :view_issues
- :add_issues
- :manage_subtasks
- :add_issue_notes
- :edit_own_issue_notes
- :view_issue_watchers
- :view_news
- :comment_news
- :view_changesets
- :browse_repository
- :view_time_entries
- :log_time
- :view_wiki_pages
- :view_wiki_edits
', 'own', 'all', 'all', true, '--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess
permissions_all_trackers: !ruby/hash:ActiveSupport::HashWithIndifferentAccess
  view_issues: ''1''
  add_issues: ''1''
  edit_issues: ''1''
  add_issue_notes: ''1''
  delete_issues: ''1''
permissions_tracker_ids: !ruby/hash:ActiveSupport::HashWithIndifferentAccess
  view_issues: []
  add_issues: []
  edit_issues: []
  add_issue_notes: []
  delete_issues: []
');
INSERT INTO public.roles VALUES (6, 'Phát ngôn', 4, true, 0, '---
- :add_project
- :edit_project
- :close_project
- :select_project_modules
- :manage_members
- :manage_versions
- :add_subprojects
- :manage_public_queries
- :save_queries
- :manage_public_agile_queries
- :manage_agile_verions
- :add_agile_queries
- :view_agile_queries
- :view_agile_charts
- :view_messages
- :add_messages
- :edit_messages
- :edit_own_messages
- :delete_messages
- :delete_own_messages
- :manage_boards
- :view_calendar
- :view_documents
- :add_documents
- :edit_documents
- :delete_documents
- :view_files
- :manage_files
- :view_gantt
- :view_issues
- :add_issues
- :edit_issues
- :edit_own_issues
- :copy_issues
- :manage_issue_relations
- :manage_subtasks
- :set_issues_private
- :set_own_issues_private
- :add_issue_notes
- :edit_issue_notes
- :edit_own_issue_notes
- :view_private_notes
- :set_notes_private
- :delete_issues
- :view_issue_watchers
- :add_issue_watchers
- :delete_issue_watchers
- :import_issues
- :manage_categories
- :view_checklists
- :done_checklists
- :edit_checklists
- :view_news
- :manage_news
- :comment_news
- :view_changesets
- :browse_repository
- :commit_access
- :manage_related_issues
- :manage_repository
- :view_time_entries
- :log_time
- :edit_time_entries
- :edit_own_time_entries
- :manage_project_activities
- :log_time_for_other_users
- :import_time_entries
- :view_wiki_pages
- :view_wiki_edits
- :export_wiki_pages
- :edit_wiki_pages
- :rename_wiki_pages
- :delete_wiki_pages
- :delete_wiki_pages_attachments
- :protect_wiki_pages
- :manage_wiki
', 'all', 'all', 'all', true, '--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess
permissions_all_trackers: !ruby/hash:ActiveSupport::HashWithIndifferentAccess
  view_issues: ''1''
  add_issues: ''1''
  edit_issues: ''1''
  add_issue_notes: ''1''
  delete_issues: ''1''
permissions_tracker_ids: !ruby/hash:ActiveSupport::HashWithIndifferentAccess
  view_issues: []
  add_issues: []
  edit_issues: []
  add_issue_notes: []
  delete_issues: []
');
INSERT INTO public.roles VALUES (7, 'Thực hiện', 5, true, 0, '---
- :add_subprojects
- :save_queries
- :view_messages
- :add_messages
- :edit_own_messages
- :view_calendar
- :view_documents
- :add_documents
- :view_files
- :view_gantt
- :view_issues
- :add_issues
- :add_issue_notes
- :edit_own_issue_notes
- :view_news
- :comment_news
- :view_changesets
- :browse_repository
- :view_time_entries
- :view_wiki_pages
- :view_wiki_edits
', 'own', 'members_of_visible_projects', 'own', true, '--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess
permissions_all_trackers: !ruby/hash:ActiveSupport::HashWithIndifferentAccess
  view_issues: ''0''
  add_issues: ''0''
  edit_issues: ''1''
  add_issue_notes: ''1''
  delete_issues: ''1''
permissions_tracker_ids: !ruby/hash:ActiveSupport::HashWithIndifferentAccess
  view_issues:
  - ''4''
  - ''5''
  add_issues:
  - ''5''
  edit_issues: []
  add_issue_notes: []
  delete_issues: []
');
INSERT INTO public.roles VALUES (8, 'Theo dõi', 6, true, 0, '---
- :save_queries
- :manage_public_agile_queries
- :add_agile_queries
- :view_agile_queries
- :view_agile_charts
- :view_messages
- :add_messages
- :edit_own_messages
- :view_calendar
- :view_documents
- :add_documents
- :edit_documents
- :delete_documents
- :view_files
- :view_gantt
- :view_issues
- :add_issues
- :add_issue_notes
- :edit_issue_notes
- :view_issue_watchers
- :add_issue_watchers
- :view_news
- :comment_news
- :view_changesets
- :browse_repository
- :view_time_entries
- :edit_time_entries
- :view_wiki_pages
- :view_wiki_edits
', 'default', 'all', 'all', true, '--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess
permissions_all_trackers: !ruby/hash:ActiveSupport::HashWithIndifferentAccess
  view_issues: ''1''
  add_issues: ''1''
  edit_issues: ''1''
  add_issue_notes: ''1''
  delete_issues: ''1''
permissions_tracker_ids: !ruby/hash:ActiveSupport::HashWithIndifferentAccess
  view_issues: []
  add_issues: []
  edit_issues: []
  add_issue_notes: []
  delete_issues: []
');


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



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

INSERT INTO public.schema_migrations VALUES ('1');
INSERT INTO public.schema_migrations VALUES ('1-redmine_agile');
INSERT INTO public.schema_migrations VALUES ('1-redmine_checklists');
INSERT INTO public.schema_migrations VALUES ('1-redmine_drive');
INSERT INTO public.schema_migrations VALUES ('1-redmine_theme_changer');
INSERT INTO public.schema_migrations VALUES ('10');
INSERT INTO public.schema_migrations VALUES ('100');
INSERT INTO public.schema_migrations VALUES ('101');
INSERT INTO public.schema_migrations VALUES ('102');
INSERT INTO public.schema_migrations VALUES ('103');
INSERT INTO public.schema_migrations VALUES ('104');
INSERT INTO public.schema_migrations VALUES ('105');
INSERT INTO public.schema_migrations VALUES ('106');
INSERT INTO public.schema_migrations VALUES ('107');
INSERT INTO public.schema_migrations VALUES ('108');
INSERT INTO public.schema_migrations VALUES ('11');
INSERT INTO public.schema_migrations VALUES ('12');
INSERT INTO public.schema_migrations VALUES ('13');
INSERT INTO public.schema_migrations VALUES ('14');
INSERT INTO public.schema_migrations VALUES ('15');
INSERT INTO public.schema_migrations VALUES ('16');
INSERT INTO public.schema_migrations VALUES ('17');
INSERT INTO public.schema_migrations VALUES ('18');
INSERT INTO public.schema_migrations VALUES ('19');
INSERT INTO public.schema_migrations VALUES ('2');
INSERT INTO public.schema_migrations VALUES ('2-redmine_agile');
INSERT INTO public.schema_migrations VALUES ('2-redmine_checklists');
INSERT INTO public.schema_migrations VALUES ('2-redmine_drive');
INSERT INTO public.schema_migrations VALUES ('20');
INSERT INTO public.schema_migrations VALUES ('20090214190337');
INSERT INTO public.schema_migrations VALUES ('20090312172426');
INSERT INTO public.schema_migrations VALUES ('20090312194159');
INSERT INTO public.schema_migrations VALUES ('20090318181151');
INSERT INTO public.schema_migrations VALUES ('20090323224724');
INSERT INTO public.schema_migrations VALUES ('20090401221305');
INSERT INTO public.schema_migrations VALUES ('20090401231134');
INSERT INTO public.schema_migrations VALUES ('20090403001910');
INSERT INTO public.schema_migrations VALUES ('20090406161854');
INSERT INTO public.schema_migrations VALUES ('20090425161243');
INSERT INTO public.schema_migrations VALUES ('20090503121501');
INSERT INTO public.schema_migrations VALUES ('20090503121505');
INSERT INTO public.schema_migrations VALUES ('20090503121510');
INSERT INTO public.schema_migrations VALUES ('20090614091200');
INSERT INTO public.schema_migrations VALUES ('20090704172350');
INSERT INTO public.schema_migrations VALUES ('20090704172355');
INSERT INTO public.schema_migrations VALUES ('20090704172358');
INSERT INTO public.schema_migrations VALUES ('20091010093521');
INSERT INTO public.schema_migrations VALUES ('20091017212227');
INSERT INTO public.schema_migrations VALUES ('20091017212457');
INSERT INTO public.schema_migrations VALUES ('20091017212644');
INSERT INTO public.schema_migrations VALUES ('20091017212938');
INSERT INTO public.schema_migrations VALUES ('20091017213027');
INSERT INTO public.schema_migrations VALUES ('20091017213113');
INSERT INTO public.schema_migrations VALUES ('20091017213151');
INSERT INTO public.schema_migrations VALUES ('20091017213228');
INSERT INTO public.schema_migrations VALUES ('20091017213257');
INSERT INTO public.schema_migrations VALUES ('20091017213332');
INSERT INTO public.schema_migrations VALUES ('20091017213444');
INSERT INTO public.schema_migrations VALUES ('20091017213536');
INSERT INTO public.schema_migrations VALUES ('20091017213642');
INSERT INTO public.schema_migrations VALUES ('20091017213716');
INSERT INTO public.schema_migrations VALUES ('20091017213757');
INSERT INTO public.schema_migrations VALUES ('20091017213835');
INSERT INTO public.schema_migrations VALUES ('20091017213910');
INSERT INTO public.schema_migrations VALUES ('20091017214015');
INSERT INTO public.schema_migrations VALUES ('20091017214107');
INSERT INTO public.schema_migrations VALUES ('20091017214136');
INSERT INTO public.schema_migrations VALUES ('20091017214236');
INSERT INTO public.schema_migrations VALUES ('20091017214308');
INSERT INTO public.schema_migrations VALUES ('20091017214336');
INSERT INTO public.schema_migrations VALUES ('20091017214406');
INSERT INTO public.schema_migrations VALUES ('20091017214440');
INSERT INTO public.schema_migrations VALUES ('20091017214519');
INSERT INTO public.schema_migrations VALUES ('20091017214611');
INSERT INTO public.schema_migrations VALUES ('20091017214644');
INSERT INTO public.schema_migrations VALUES ('20091017214720');
INSERT INTO public.schema_migrations VALUES ('20091017214750');
INSERT INTO public.schema_migrations VALUES ('20091025163651');
INSERT INTO public.schema_migrations VALUES ('20091108092559');
INSERT INTO public.schema_migrations VALUES ('20091114105931');
INSERT INTO public.schema_migrations VALUES ('20091123212029');
INSERT INTO public.schema_migrations VALUES ('20091205124427');
INSERT INTO public.schema_migrations VALUES ('20091220183509');
INSERT INTO public.schema_migrations VALUES ('20091220183727');
INSERT INTO public.schema_migrations VALUES ('20091220184736');
INSERT INTO public.schema_migrations VALUES ('20091225164732');
INSERT INTO public.schema_migrations VALUES ('20091227112908');
INSERT INTO public.schema_migrations VALUES ('20100129193402');
INSERT INTO public.schema_migrations VALUES ('20100129193813');
INSERT INTO public.schema_migrations VALUES ('20100221100219');
INSERT INTO public.schema_migrations VALUES ('20100313132032');
INSERT INTO public.schema_migrations VALUES ('20100313171051');
INSERT INTO public.schema_migrations VALUES ('20100705164950');
INSERT INTO public.schema_migrations VALUES ('20100819172912');
INSERT INTO public.schema_migrations VALUES ('20101104182107');
INSERT INTO public.schema_migrations VALUES ('20101107130441');
INSERT INTO public.schema_migrations VALUES ('20101114115114');
INSERT INTO public.schema_migrations VALUES ('20101114115359');
INSERT INTO public.schema_migrations VALUES ('20110220160626');
INSERT INTO public.schema_migrations VALUES ('20110223180944');
INSERT INTO public.schema_migrations VALUES ('20110223180953');
INSERT INTO public.schema_migrations VALUES ('20110224000000');
INSERT INTO public.schema_migrations VALUES ('20110226120112');
INSERT INTO public.schema_migrations VALUES ('20110226120132');
INSERT INTO public.schema_migrations VALUES ('20110227125750');
INSERT INTO public.schema_migrations VALUES ('20110228000000');
INSERT INTO public.schema_migrations VALUES ('20110228000100');
INSERT INTO public.schema_migrations VALUES ('20110401192910');
INSERT INTO public.schema_migrations VALUES ('20110408103312');
INSERT INTO public.schema_migrations VALUES ('20110412065600');
INSERT INTO public.schema_migrations VALUES ('20110511000000');
INSERT INTO public.schema_migrations VALUES ('20110902000000');
INSERT INTO public.schema_migrations VALUES ('20111201201315');
INSERT INTO public.schema_migrations VALUES ('20120115143024');
INSERT INTO public.schema_migrations VALUES ('20120115143100');
INSERT INTO public.schema_migrations VALUES ('20120115143126');
INSERT INTO public.schema_migrations VALUES ('20120127174243');
INSERT INTO public.schema_migrations VALUES ('20120205111326');
INSERT INTO public.schema_migrations VALUES ('20120223110929');
INSERT INTO public.schema_migrations VALUES ('20120301153455');
INSERT INTO public.schema_migrations VALUES ('20120422150750');
INSERT INTO public.schema_migrations VALUES ('20120705074331');
INSERT INTO public.schema_migrations VALUES ('20120707064544');
INSERT INTO public.schema_migrations VALUES ('20120714122000');
INSERT INTO public.schema_migrations VALUES ('20120714122100');
INSERT INTO public.schema_migrations VALUES ('20120714122200');
INSERT INTO public.schema_migrations VALUES ('20120731164049');
INSERT INTO public.schema_migrations VALUES ('20120930112914');
INSERT INTO public.schema_migrations VALUES ('20121026002032');
INSERT INTO public.schema_migrations VALUES ('20121026003537');
INSERT INTO public.schema_migrations VALUES ('20121209123234');
INSERT INTO public.schema_migrations VALUES ('20121209123358');
INSERT INTO public.schema_migrations VALUES ('20121213084931');
INSERT INTO public.schema_migrations VALUES ('20130110122628');
INSERT INTO public.schema_migrations VALUES ('20130201184705');
INSERT INTO public.schema_migrations VALUES ('20130202090625');
INSERT INTO public.schema_migrations VALUES ('20130207175206');
INSERT INTO public.schema_migrations VALUES ('20130207181455');
INSERT INTO public.schema_migrations VALUES ('20130215073721');
INSERT INTO public.schema_migrations VALUES ('20130215111127');
INSERT INTO public.schema_migrations VALUES ('20130215111141');
INSERT INTO public.schema_migrations VALUES ('20130217094251');
INSERT INTO public.schema_migrations VALUES ('20130418001207-redmine_ckeditor');
INSERT INTO public.schema_migrations VALUES ('20130418001208-redmine_ckeditor');
INSERT INTO public.schema_migrations VALUES ('20130418001209-redmine_ckeditor');
INSERT INTO public.schema_migrations VALUES ('20130602092539');
INSERT INTO public.schema_migrations VALUES ('20130710182539');
INSERT INTO public.schema_migrations VALUES ('20130713104233');
INSERT INTO public.schema_migrations VALUES ('20130713111657');
INSERT INTO public.schema_migrations VALUES ('20130729070143');
INSERT INTO public.schema_migrations VALUES ('20130911193200');
INSERT INTO public.schema_migrations VALUES ('20131004113137');
INSERT INTO public.schema_migrations VALUES ('20131005100610');
INSERT INTO public.schema_migrations VALUES ('20131124175346');
INSERT INTO public.schema_migrations VALUES ('20131210180802');
INSERT INTO public.schema_migrations VALUES ('20131214094309');
INSERT INTO public.schema_migrations VALUES ('20131215104612');
INSERT INTO public.schema_migrations VALUES ('20131218183023');
INSERT INTO public.schema_migrations VALUES ('20140228130325');
INSERT INTO public.schema_migrations VALUES ('20140903143914');
INSERT INTO public.schema_migrations VALUES ('20140920094058');
INSERT INTO public.schema_migrations VALUES ('20141029181752');
INSERT INTO public.schema_migrations VALUES ('20141029181824');
INSERT INTO public.schema_migrations VALUES ('20141109112308');
INSERT INTO public.schema_migrations VALUES ('20141122124142');
INSERT INTO public.schema_migrations VALUES ('20150113194759');
INSERT INTO public.schema_migrations VALUES ('20150113211532');
INSERT INTO public.schema_migrations VALUES ('20150113213922');
INSERT INTO public.schema_migrations VALUES ('20150113213955');
INSERT INTO public.schema_migrations VALUES ('20150208105930');
INSERT INTO public.schema_migrations VALUES ('20150510083747');
INSERT INTO public.schema_migrations VALUES ('20150525103953');
INSERT INTO public.schema_migrations VALUES ('20150526183158');
INSERT INTO public.schema_migrations VALUES ('20150528084820');
INSERT INTO public.schema_migrations VALUES ('20150528092912');
INSERT INTO public.schema_migrations VALUES ('20150528093249');
INSERT INTO public.schema_migrations VALUES ('20150725112753');
INSERT INTO public.schema_migrations VALUES ('20150730122707');
INSERT INTO public.schema_migrations VALUES ('20150730122735');
INSERT INTO public.schema_migrations VALUES ('20150921204850');
INSERT INTO public.schema_migrations VALUES ('20150921210243');
INSERT INTO public.schema_migrations VALUES ('20151020182334');
INSERT INTO public.schema_migrations VALUES ('20151020182731');
INSERT INTO public.schema_migrations VALUES ('20151021184614');
INSERT INTO public.schema_migrations VALUES ('20151021185456');
INSERT INTO public.schema_migrations VALUES ('20151021190616');
INSERT INTO public.schema_migrations VALUES ('20151024082034');
INSERT INTO public.schema_migrations VALUES ('20151025072118');
INSERT INTO public.schema_migrations VALUES ('20151031095005');
INSERT INTO public.schema_migrations VALUES ('20160404080304');
INSERT INTO public.schema_migrations VALUES ('20160416072926');
INSERT INTO public.schema_migrations VALUES ('20160529063352');
INSERT INTO public.schema_migrations VALUES ('20161001122012');
INSERT INTO public.schema_migrations VALUES ('20161002133421');
INSERT INTO public.schema_migrations VALUES ('20161010081301');
INSERT INTO public.schema_migrations VALUES ('20161010081528');
INSERT INTO public.schema_migrations VALUES ('20161010081600');
INSERT INTO public.schema_migrations VALUES ('20161126094932');
INSERT INTO public.schema_migrations VALUES ('20161220091118');
INSERT INTO public.schema_migrations VALUES ('20170207050700');
INSERT INTO public.schema_migrations VALUES ('20170302015225');
INSERT INTO public.schema_migrations VALUES ('20170309214320');
INSERT INTO public.schema_migrations VALUES ('20170320051650');
INSERT INTO public.schema_migrations VALUES ('20170418090031');
INSERT INTO public.schema_migrations VALUES ('20170419144536');
INSERT INTO public.schema_migrations VALUES ('20170723112801');
INSERT INTO public.schema_migrations VALUES ('20180501132547');
INSERT INTO public.schema_migrations VALUES ('20180913072918');
INSERT INTO public.schema_migrations VALUES ('20180923082945');
INSERT INTO public.schema_migrations VALUES ('20180923091603');
INSERT INTO public.schema_migrations VALUES ('20190315094151');
INSERT INTO public.schema_migrations VALUES ('20190315102101');
INSERT INTO public.schema_migrations VALUES ('20190510070108');
INSERT INTO public.schema_migrations VALUES ('20190620135549');
INSERT INTO public.schema_migrations VALUES ('20200826153401');
INSERT INTO public.schema_migrations VALUES ('20200826153402');
INSERT INTO public.schema_migrations VALUES ('21');
INSERT INTO public.schema_migrations VALUES ('22');
INSERT INTO public.schema_migrations VALUES ('23');
INSERT INTO public.schema_migrations VALUES ('24');
INSERT INTO public.schema_migrations VALUES ('25');
INSERT INTO public.schema_migrations VALUES ('26');
INSERT INTO public.schema_migrations VALUES ('27');
INSERT INTO public.schema_migrations VALUES ('28');
INSERT INTO public.schema_migrations VALUES ('29');
INSERT INTO public.schema_migrations VALUES ('3');
INSERT INTO public.schema_migrations VALUES ('3-redmine_agile');
INSERT INTO public.schema_migrations VALUES ('3-redmine_checklists');
INSERT INTO public.schema_migrations VALUES ('30');
INSERT INTO public.schema_migrations VALUES ('31');
INSERT INTO public.schema_migrations VALUES ('32');
INSERT INTO public.schema_migrations VALUES ('33');
INSERT INTO public.schema_migrations VALUES ('34');
INSERT INTO public.schema_migrations VALUES ('35');
INSERT INTO public.schema_migrations VALUES ('36');
INSERT INTO public.schema_migrations VALUES ('37');
INSERT INTO public.schema_migrations VALUES ('38');
INSERT INTO public.schema_migrations VALUES ('39');
INSERT INTO public.schema_migrations VALUES ('4');
INSERT INTO public.schema_migrations VALUES ('4-redmine_agile');
INSERT INTO public.schema_migrations VALUES ('4-redmine_checklists');
INSERT INTO public.schema_migrations VALUES ('4-redmine_drive');
INSERT INTO public.schema_migrations VALUES ('40');
INSERT INTO public.schema_migrations VALUES ('41');
INSERT INTO public.schema_migrations VALUES ('42');
INSERT INTO public.schema_migrations VALUES ('43');
INSERT INTO public.schema_migrations VALUES ('44');
INSERT INTO public.schema_migrations VALUES ('45');
INSERT INTO public.schema_migrations VALUES ('46');
INSERT INTO public.schema_migrations VALUES ('47');
INSERT INTO public.schema_migrations VALUES ('48');
INSERT INTO public.schema_migrations VALUES ('49');
INSERT INTO public.schema_migrations VALUES ('5');
INSERT INTO public.schema_migrations VALUES ('5-redmine_agile');
INSERT INTO public.schema_migrations VALUES ('5-redmine_checklists');
INSERT INTO public.schema_migrations VALUES ('5-redmine_drive');
INSERT INTO public.schema_migrations VALUES ('50');
INSERT INTO public.schema_migrations VALUES ('51');
INSERT INTO public.schema_migrations VALUES ('52');
INSERT INTO public.schema_migrations VALUES ('53');
INSERT INTO public.schema_migrations VALUES ('54');
INSERT INTO public.schema_migrations VALUES ('55');
INSERT INTO public.schema_migrations VALUES ('56');
INSERT INTO public.schema_migrations VALUES ('57');
INSERT INTO public.schema_migrations VALUES ('58');
INSERT INTO public.schema_migrations VALUES ('59');
INSERT INTO public.schema_migrations VALUES ('6');
INSERT INTO public.schema_migrations VALUES ('6-redmine_agile');
INSERT INTO public.schema_migrations VALUES ('6-redmine_checklists');
INSERT INTO public.schema_migrations VALUES ('6-redmine_drive');
INSERT INTO public.schema_migrations VALUES ('60');
INSERT INTO public.schema_migrations VALUES ('61');
INSERT INTO public.schema_migrations VALUES ('62');
INSERT INTO public.schema_migrations VALUES ('63');
INSERT INTO public.schema_migrations VALUES ('64');
INSERT INTO public.schema_migrations VALUES ('65');
INSERT INTO public.schema_migrations VALUES ('66');
INSERT INTO public.schema_migrations VALUES ('67');
INSERT INTO public.schema_migrations VALUES ('68');
INSERT INTO public.schema_migrations VALUES ('69');
INSERT INTO public.schema_migrations VALUES ('7');
INSERT INTO public.schema_migrations VALUES ('7-redmine_agile');
INSERT INTO public.schema_migrations VALUES ('7-redmine_checklists');
INSERT INTO public.schema_migrations VALUES ('70');
INSERT INTO public.schema_migrations VALUES ('71');
INSERT INTO public.schema_migrations VALUES ('72');
INSERT INTO public.schema_migrations VALUES ('73');
INSERT INTO public.schema_migrations VALUES ('74');
INSERT INTO public.schema_migrations VALUES ('75');
INSERT INTO public.schema_migrations VALUES ('76');
INSERT INTO public.schema_migrations VALUES ('77');
INSERT INTO public.schema_migrations VALUES ('78');
INSERT INTO public.schema_migrations VALUES ('79');
INSERT INTO public.schema_migrations VALUES ('8');
INSERT INTO public.schema_migrations VALUES ('8-redmine_agile');
INSERT INTO public.schema_migrations VALUES ('80');
INSERT INTO public.schema_migrations VALUES ('81');
INSERT INTO public.schema_migrations VALUES ('82');
INSERT INTO public.schema_migrations VALUES ('83');
INSERT INTO public.schema_migrations VALUES ('84');
INSERT INTO public.schema_migrations VALUES ('85');
INSERT INTO public.schema_migrations VALUES ('86');
INSERT INTO public.schema_migrations VALUES ('87');
INSERT INTO public.schema_migrations VALUES ('88');
INSERT INTO public.schema_migrations VALUES ('89');
INSERT INTO public.schema_migrations VALUES ('9');
INSERT INTO public.schema_migrations VALUES ('90');
INSERT INTO public.schema_migrations VALUES ('91');
INSERT INTO public.schema_migrations VALUES ('92');
INSERT INTO public.schema_migrations VALUES ('93');
INSERT INTO public.schema_migrations VALUES ('94');
INSERT INTO public.schema_migrations VALUES ('95');
INSERT INTO public.schema_migrations VALUES ('96');
INSERT INTO public.schema_migrations VALUES ('97');
INSERT INTO public.schema_migrations VALUES ('98');
INSERT INTO public.schema_migrations VALUES ('99');
INSERT INTO public.schema_migrations VALUES ('20210704125704');
INSERT INTO public.schema_migrations VALUES ('20210705111300');
INSERT INTO public.schema_migrations VALUES ('20210728131544');
INSERT INTO public.schema_migrations VALUES ('20210801145548');
INSERT INTO public.schema_migrations VALUES ('20210801211024');
INSERT INTO public.schema_migrations VALUES ('20211213122100');
INSERT INTO public.schema_migrations VALUES ('20211213122101');
INSERT INTO public.schema_migrations VALUES ('20211213122102');
INSERT INTO public.schema_migrations VALUES ('20220224194639');
INSERT INTO public.schema_migrations VALUES ('1-redmine_people');
INSERT INTO public.schema_migrations VALUES ('2-redmine_people');
INSERT INTO public.schema_migrations VALUES ('3-redmine_people');
INSERT INTO public.schema_migrations VALUES ('4-redmine_people');
INSERT INTO public.schema_migrations VALUES ('5-redmine_people');
INSERT INTO public.schema_migrations VALUES ('6-redmine_people');
INSERT INTO public.schema_migrations VALUES ('7-redmine_people');
INSERT INTO public.schema_migrations VALUES ('8-redmine_people');
INSERT INTO public.schema_migrations VALUES ('9-redmine_people');
INSERT INTO public.schema_migrations VALUES ('10-redmine_people');
INSERT INTO public.schema_migrations VALUES ('11-redmine_people');
INSERT INTO public.schema_migrations VALUES ('12-redmine_people');
INSERT INTO public.schema_migrations VALUES ('13-redmine_people');
INSERT INTO public.schema_migrations VALUES ('14-redmine_people');
INSERT INTO public.schema_migrations VALUES ('15-redmine_people');
INSERT INTO public.schema_migrations VALUES ('16-redmine_people');
INSERT INTO public.schema_migrations VALUES ('17-redmine_people');
INSERT INTO public.schema_migrations VALUES ('18-redmine_people');
INSERT INTO public.schema_migrations VALUES ('19-redmine_people');
INSERT INTO public.schema_migrations VALUES ('20-redmine_people');


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

INSERT INTO public.settings VALUES (1, 'app_title', 'GDT Redmine', '2020-06-12 08:39:34+07');
INSERT INTO public.settings VALUES (2, 'welcome_text', '~Quản lý dự án của GDT~', '2020-06-12 08:40:42+07');
INSERT INTO public.settings VALUES (3, 'per_page_options', '25,50,100', '2020-05-14 09:50:54+07');
INSERT INTO public.settings VALUES (4, 'search_results_per_page', '10', '2020-05-14 09:50:54+07');
INSERT INTO public.settings VALUES (5, 'activity_days_default', '30', '2020-05-14 09:50:54+07');
INSERT INTO public.settings VALUES (6, 'host_name', 'localhost:3000', '2020-05-14 09:50:54+07');
INSERT INTO public.settings VALUES (7, 'protocol', 'http', '2020-05-14 09:50:54+07');
INSERT INTO public.settings VALUES (8, 'text_formatting', 'markdown', '2020-06-12 08:39:42+07');
INSERT INTO public.settings VALUES (9, 'cache_formatted_text', '0', '2020-05-14 09:50:54+07');
INSERT INTO public.settings VALUES (10, 'wiki_compression', '', '2020-05-14 09:50:54+07');
INSERT INTO public.settings VALUES (11, 'feeds_limit', '15', '2020-05-14 09:50:54+07');
INSERT INTO public.settings VALUES (12, 'plugin_redmine_ckeditor', '--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess
skin: kama
ui_color: "#c8d9f1"
width: ''''
height: ''400''
enter_mode: ''1''
show_blocks: ''1''
toolbar_can_collapse: ''0''
toolbar_location: top
toolbar: Source,ShowBlocks,--,Undo,Redo,-,Find,Replace,--,Bold,Italic,Underline,Strike,-,Subscript,Superscript,-,NumberedList,BulletedList,-,Outdent,Indent,Blockquote,-,JustifyLeft,JustifyCenter,JustifyRight,JustifyBlock,-,Link,Unlink,-,richImage,Table,HorizontalRule,/,Styles,Format,Font,FontSize,-,TextColor,BGColor
', '2020-05-14 10:04:01+07');
INSERT INTO public.settings VALUES (14, 'default_language', 'vi', '2020-06-11 23:55:49+07');
INSERT INTO public.settings VALUES (15, 'force_default_language_for_anonymous', '1', '2020-07-29 08:11:47+07');
INSERT INTO public.settings VALUES (16, 'force_default_language_for_loggedin', '0', '2020-06-11 23:55:49+07');
INSERT INTO public.settings VALUES (17, 'start_of_week', '', '2020-06-11 23:55:49+07');
INSERT INTO public.settings VALUES (18, 'date_format', '', '2020-06-11 23:55:49+07');
INSERT INTO public.settings VALUES (19, 'time_format', '', '2020-06-11 23:55:49+07');
INSERT INTO public.settings VALUES (20, 'timespan_format', 'decimal', '2020-06-11 23:55:49+07');
INSERT INTO public.settings VALUES (21, 'user_format', 'lastname_firstname', '2020-06-12 08:41:03+07');
INSERT INTO public.settings VALUES (22, 'gravatar_enabled', '0', '2020-06-11 23:55:49+07');
INSERT INTO public.settings VALUES (23, 'thumbnails_enabled', '1', '2020-06-11 23:55:49+07');
INSERT INTO public.settings VALUES (24, 'thumbnails_size', '100', '2020-06-11 23:55:49+07');
INSERT INTO public.settings VALUES (25, 'new_item_menu_tab', '2', '2020-06-11 23:55:49+07');
INSERT INTO public.settings VALUES (26, 'default_projects_public', '0', '2022-10-28 11:49:31+07');
INSERT INTO public.settings VALUES (27, 'default_projects_modules', '---
- issue_tracking
- documents
- files
- wiki
- repository
- calendar
- gantt
- agile
', '2022-10-28 11:53:27+07');
INSERT INTO public.settings VALUES (28, 'default_projects_tracker_ids', '---
- ''1''
- ''2''
', '2022-10-28 11:49:31+07');
INSERT INTO public.settings VALUES (29, 'sequential_project_identifiers', '0', '2020-06-12 08:42:08+07');
INSERT INTO public.settings VALUES (30, 'project_list_defaults', '---
:column_names:
- name
- identifier
- short_description
', '2020-06-12 08:42:08+07');
INSERT INTO public.settings VALUES (31, 'plugin_redmine_checklists', '--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess
issue_done_ratio: ''1''
block_issue_closing: ''1''
', '2020-06-12 23:48:30+07');
INSERT INTO public.settings VALUES (32, 'max_additional_emails', '5', '2020-07-15 08:52:02+07');
INSERT INTO public.settings VALUES (33, 'unsubscribe', '1', '2020-07-15 08:52:02+07');
INSERT INTO public.settings VALUES (34, 'default_users_hide_mail', '1', '2020-07-15 08:52:02+07');
INSERT INTO public.settings VALUES (35, 'default_notification_option', 'only_my_events', '2020-07-15 08:52:02+07');
INSERT INTO public.settings VALUES (36, 'default_users_time_zone', 'Hanoi', '2020-07-15 08:52:02+07');
INSERT INTO public.settings VALUES (37, 'cross_project_issue_relations', '0', '2020-07-15 08:52:56+07');
INSERT INTO public.settings VALUES (38, 'link_copied_issue', 'ask', '2020-07-15 08:52:56+07');
INSERT INTO public.settings VALUES (39, 'cross_project_subtasks', 'tree', '2020-07-15 08:52:56+07');
INSERT INTO public.settings VALUES (40, 'close_duplicate_issues', '1', '2020-07-15 08:52:56+07');
INSERT INTO public.settings VALUES (41, 'issue_group_assignment', '0', '2020-07-15 08:52:56+07');
INSERT INTO public.settings VALUES (42, 'default_issue_start_date_to_creation_date', '1', '2020-07-15 08:52:56+07');
INSERT INTO public.settings VALUES (43, 'display_subprojects_issues', '1', '2020-07-15 08:52:56+07');
INSERT INTO public.settings VALUES (44, 'issue_done_ratio', 'issue_field', '2020-07-15 08:52:56+07');
INSERT INTO public.settings VALUES (45, 'non_working_week_days', '---
- ''6''
- ''7''
', '2022-10-28 11:49:50+07');
INSERT INTO public.settings VALUES (46, 'issues_export_limit', '1000', '2020-07-18 16:13:23+07');
INSERT INTO public.settings VALUES (47, 'gantt_items_limit', '500', '2020-07-26 11:29:01+07');
INSERT INTO public.settings VALUES (48, 'gantt_months_limit', '24', '2020-07-15 08:52:56+07');
INSERT INTO public.settings VALUES (49, 'parent_issue_dates', 'derived', '2020-07-15 08:52:56+07');
INSERT INTO public.settings VALUES (50, 'parent_issue_priority', 'derived', '2020-07-15 08:52:56+07');
INSERT INTO public.settings VALUES (51, 'parent_issue_done_ratio', 'derived', '2020-07-15 08:52:56+07');
INSERT INTO public.settings VALUES (52, 'issue_list_default_columns', '---
- tracker
- status
- priority
- subject
- assigned_to
- updated_on
', '2020-07-15 08:52:56+07');
INSERT INTO public.settings VALUES (53, 'issue_list_default_totals', '--- []
', '2020-07-15 08:52:56+07');
INSERT INTO public.settings VALUES (54, 'plugin_redmine_crm', '---
disable_taxes: ''0''
default_tax: ''0.0''
tax_type: ''1''
default_currency: VND
major_currencies: USD, EUR, GBP, RUB, CHF
thousands_delimiter: "."
decimal_separator: ","
', '2020-08-21 12:38:59+07');
INSERT INTO public.settings VALUES (55, 'plugin_redmine_agile', '--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess
board_items_limit: ''500''
default_columns:
- tracker
- assigned_to
story_points_on: ''1''
trackers_for_sp: ''''
default_chart: issues_burndown
exclude_weekends: ''0''
time_reports_items_limit: ''1000''
auto_assign_on_move: ''0''
allow_inline_comments: ''0''
', '2020-08-28 17:32:36+07');
INSERT INTO public.settings VALUES (56, 'plugin_redmine_drive', '--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess
storage_size: ''100''
', '2021-03-01 14:30:51+07');
INSERT INTO public.settings VALUES (57, 'login_required', '1', '2021-05-14 00:58:14+07');
INSERT INTO public.settings VALUES (58, 'autologin', '1', '2021-05-14 00:58:25+07');
INSERT INTO public.settings VALUES (59, 'self_registration', '2', '2021-05-14 00:58:14+07');
INSERT INTO public.settings VALUES (60, 'show_custom_fields_on_registration', '1', '2021-05-14 00:58:14+07');
INSERT INTO public.settings VALUES (61, 'password_min_length', '8', '2021-05-14 00:58:14+07');
INSERT INTO public.settings VALUES (62, 'password_required_char_classes', '--- []
', '2021-05-14 00:58:14+07');
INSERT INTO public.settings VALUES (63, 'password_max_age', '0', '2021-05-14 00:58:14+07');
INSERT INTO public.settings VALUES (64, 'lost_password', '1', '2021-05-14 00:58:14+07');
INSERT INTO public.settings VALUES (66, 'session_lifetime', '0', '2021-05-14 00:58:14+07');
INSERT INTO public.settings VALUES (67, 'session_timeout', '0', '2021-05-14 00:58:14+07');
INSERT INTO public.settings VALUES (68, 'rest_api_enabled', '1', '2022-10-28 11:47:03+07');
INSERT INTO public.settings VALUES (69, 'jsonp_enabled', '1', '2022-10-28 11:47:03+07');
INSERT INTO public.settings VALUES (70, 'attachment_max_size', '5120', '2023-03-13 09:56:10.338101+07');
INSERT INTO public.settings VALUES (71, 'bulk_download_max_size', '102400', '2023-03-13 09:56:10.353519+07');
INSERT INTO public.settings VALUES (72, 'attachment_extensions_allowed', '', '2023-03-13 09:56:10.364469+07');
INSERT INTO public.settings VALUES (73, 'attachment_extensions_denied', '', '2023-03-13 09:56:10.373969+07');
INSERT INTO public.settings VALUES (74, 'file_max_size_displayed', '512', '2023-03-13 09:56:10.382906+07');
INSERT INTO public.settings VALUES (75, 'diff_max_lines_displayed', '1500', '2023-03-13 09:56:10.393408+07');
INSERT INTO public.settings VALUES (76, 'repositories_encodings', '', '2023-03-13 09:56:10.404269+07');
INSERT INTO public.settings VALUES (77, 'enabled_scm', '---
- Git
', '2023-03-13 09:58:37.626312+07');
INSERT INTO public.settings VALUES (78, 'autofetch_changesets', '1', '2023-03-13 09:58:37.640082+07');
INSERT INTO public.settings VALUES (79, 'sys_api_enabled', '0', '2023-03-13 09:58:37.649161+07');
INSERT INTO public.settings VALUES (80, 'repository_log_display_limit', '100', '2023-03-13 09:58:37.658957+07');
INSERT INTO public.settings VALUES (81, 'commit_logs_formatting', '1', '2023-03-13 09:58:37.667259+07');
INSERT INTO public.settings VALUES (82, 'commit_ref_keywords', 'refs,references,IssueID', '2023-03-13 09:58:37.675416+07');
INSERT INTO public.settings VALUES (83, 'commit_cross_project_ref', '0', '2023-03-13 09:58:37.684686+07');
INSERT INTO public.settings VALUES (84, 'commit_logtime_enabled', '0', '2023-03-13 09:58:37.692833+07');
INSERT INTO public.settings VALUES (85, 'commit_update_keywords', '--- []
', '2023-03-13 09:58:37.701595+07');
INSERT INTO public.settings VALUES (13, 'ui_theme', '', '2023-03-17 10:18:24.526134+07');


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



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



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

INSERT INTO public.theme_changer_user_settings VALUES (2, 8, 'PurpleMine2', '2020-06-13 16:55:35+07');
INSERT INTO public.theme_changer_user_settings VALUES (3, 12, 'PurpleMine2', '2020-06-26 11:19:34+07');
INSERT INTO public.theme_changer_user_settings VALUES (4, 11, '__system_setting__', '2020-06-15 10:13:35+07');
INSERT INTO public.theme_changer_user_settings VALUES (5, 7, '__system_setting__', '2020-07-13 11:17:31+07');
INSERT INTO public.theme_changer_user_settings VALUES (6, 21, '__system_setting__', '2020-07-13 14:27:16+07');
INSERT INTO public.theme_changer_user_settings VALUES (7, 22, '__system_setting__', '2020-07-14 16:35:58+07');
INSERT INTO public.theme_changer_user_settings VALUES (8, 23, '__system_setting__', '2020-07-15 08:53:28+07');
INSERT INTO public.theme_changer_user_settings VALUES (9, 26, '__system_setting__', '2020-07-15 09:04:36+07');
INSERT INTO public.theme_changer_user_settings VALUES (10, 25, '__system_setting__', '2020-07-15 09:07:52+07');
INSERT INTO public.theme_changer_user_settings VALUES (11, 27, '__system_setting__', '2020-07-15 02:10:39+07');
INSERT INTO public.theme_changer_user_settings VALUES (12, 29, '__system_setting__', '2020-07-15 02:13:28+07');
INSERT INTO public.theme_changer_user_settings VALUES (13, 30, '__system_setting__', '2020-07-15 09:17:37+07');
INSERT INTO public.theme_changer_user_settings VALUES (14, 31, '__system_setting__', '2020-07-15 09:18:04+07');
INSERT INTO public.theme_changer_user_settings VALUES (15, 32, '__system_setting__', '2020-07-15 10:04:25+07');
INSERT INTO public.theme_changer_user_settings VALUES (16, 33, '__system_setting__', '2020-07-18 10:47:42+07');
INSERT INTO public.theme_changer_user_settings VALUES (17, 35, '__system_setting__', '2020-07-20 09:59:36+07');
INSERT INTO public.theme_changer_user_settings VALUES (18, 5, '__default_theme__', '2020-07-22 15:35:22+07');
INSERT INTO public.theme_changer_user_settings VALUES (19, 17, '__system_setting__', '2020-07-28 11:09:57+07');
INSERT INTO public.theme_changer_user_settings VALUES (20, 44, '__system_setting__', '2020-11-12 17:51:11+07');
INSERT INTO public.theme_changer_user_settings VALUES (21, 45, '__system_setting__', '2020-11-17 11:37:48+07');
INSERT INTO public.theme_changer_user_settings VALUES (22, 16, 'axiom', '2021-02-27 02:57:16+07');
INSERT INTO public.theme_changer_user_settings VALUES (1, 6, 'fluentmine', '2023-03-17 10:18:32.482051+07');


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

INSERT INTO public.time_entries VALUES (1, 4, 5, 5, 915, 8, '', 8, '2020-06-15', 2020, 6, 25, '2020-06-15 13:05:06+07', '2020-06-15 13:05:06+07');
INSERT INTO public.time_entries VALUES (2, 11, 19, 19, 1582, 48, '/QuanTrac/ChiSoChatLuongQuanTrac', 9, '2020-07-24', 2020, 7, 30, '2020-07-24 11:25:35+07', '2020-07-24 11:25:35+07');
INSERT INTO public.time_entries VALUES (3, 11, 19, 19, 1559, 24, 'Post API trước cho front end làm. Vẫn đang tiếp tục hiệu chỉnh dữ liệu dưới backend.', 9, '2020-07-25', 2020, 7, 30, '2020-07-25 15:37:50+07', '2020-07-25 15:37:50+07');
INSERT INTO public.time_entries VALUES (4, 11, 19, 19, 1559, 24, '', 9, '2020-07-25', 2020, 7, 30, '2020-07-25 16:53:53+07', '2020-07-25 16:53:53+07');
INSERT INTO public.time_entries VALUES (5, 11, 19, 19, 1582, 32, '', 9, '2020-07-27', 2020, 7, 31, '2020-07-27 08:07:58+07', '2020-07-27 08:07:58+07');
INSERT INTO public.time_entries VALUES (6, 11, 19, 19, 1612, 8, '', 9, '2020-07-27', 2020, 7, 31, '2020-07-27 08:15:51+07', '2020-07-27 08:15:51+07');
INSERT INTO public.time_entries VALUES (7, 11, 19, 19, 1621, 8, '', 9, '2020-07-27', 2020, 7, 31, '2020-07-27 13:52:48+07', '2020-07-27 13:52:48+07');
INSERT INTO public.time_entries VALUES (8, 11, 19, 19, 1621, 8, '', 9, '2020-07-27', 2020, 7, 31, '2020-07-27 13:53:13+07', '2020-07-27 13:53:13+07');
INSERT INTO public.time_entries VALUES (9, 11, 19, 19, 1190, 32, '', 9, '2020-07-29', 2020, 7, 31, '2020-07-29 10:42:58+07', '2020-07-29 10:42:58+07');
INSERT INTO public.time_entries VALUES (10, 11, 19, 19, 1402, 2, '', 9, '2020-07-29', 2020, 7, 31, '2020-07-29 11:03:07+07', '2020-07-29 11:03:07+07');
INSERT INTO public.time_entries VALUES (11, 19, 25, 4, 1284, 17, 'Hồ sơ đăng kí  Bản quyền vè lương và giá đã nộp nhưng Bên Cục bản quyền chưa duyệt xong, vẫn đang chờ phản hồi.', 9, '2020-07-30', 2020, 7, 31, '2020-07-30 16:57:39+07', '2020-07-30 16:57:39+07');
INSERT INTO public.time_entries VALUES (12, 19, 25, 4, 1286, 17, 'Cục bản quyền thông báo chấp nhận hồ sơ thì mình sẽ nộp phí đăng kí hai bản quyền Lương và giá.', 9, '2020-08-08', 2020, 8, 32, '2020-07-30 17:00:16+07', '2020-07-30 17:00:16+07');
INSERT INTO public.time_entries VALUES (13, 11, 19, 19, 1559, 24, '', 9, '2020-07-31', 2020, 7, 31, '2020-07-31 16:29:00+07', '2020-07-31 16:29:00+07');
INSERT INTO public.time_entries VALUES (14, 11, 19, 19, 1616, 16, '', 9, '2020-08-03', 2020, 8, 32, '2020-08-03 11:04:14+07', '2020-08-03 11:04:14+07');
INSERT INTO public.time_entries VALUES (15, 11, 19, 19, 1613, 8, '', 9, '2020-08-03', 2020, 8, 32, '2020-08-03 11:05:43+07', '2020-08-03 11:05:43+07');
INSERT INTO public.time_entries VALUES (16, 11, 19, 19, 1614, 16, '', 9, '2020-08-04', 2020, 8, 32, '2020-08-04 13:36:33+07', '2020-08-04 13:36:33+07');
INSERT INTO public.time_entries VALUES (17, 4, 9, 9, 1786, 17, '', 9, '2020-08-13', 2020, 8, 33, '2020-08-12 08:40:40+07', '2020-08-12 08:40:40+07');
INSERT INTO public.time_entries VALUES (18, 11, 19, 19, 1582, 40, '', 9, '2020-08-12', 2020, 8, 33, '2020-08-12 10:43:50+07', '2020-08-12 10:43:50+07');
INSERT INTO public.time_entries VALUES (19, 11, 19, 19, 1793, 0.5, '', 9, '2020-08-12', 2020, 8, 33, '2020-08-12 06:54:56+07', '2020-08-12 06:54:56+07');
INSERT INTO public.time_entries VALUES (20, 11, 19, 19, 1791, 0, '', 9, '2020-08-12', 2020, 8, 33, '2020-08-12 07:24:41+07', '2020-08-12 07:24:41+07');
INSERT INTO public.time_entries VALUES (21, 11, 19, 19, 1817, 18, '', 9, '2020-08-15', 2020, 8, 33, '2020-08-15 09:29:15+07', '2020-08-15 09:29:15+07');
INSERT INTO public.time_entries VALUES (22, 11, 19, 19, 1835, 8, '', 8, '2020-08-15', 2020, 8, 33, '2020-08-15 09:30:45+07', '2020-08-15 09:30:45+07');
INSERT INTO public.time_entries VALUES (23, 11, 19, 19, 1851, 1, '', 8, '2020-08-15', 2020, 8, 33, '2020-08-15 16:36:14+07', '2020-08-15 16:36:14+07');
INSERT INTO public.time_entries VALUES (24, 11, 19, 19, 1846, 4, '', 8, '2020-08-15', 2020, 8, 33, '2020-08-15 16:46:00+07', '2020-08-15 16:46:00+07');
INSERT INTO public.time_entries VALUES (25, 11, 19, 19, 1852, 8, '', 9, '2020-08-17', 2020, 8, 34, '2020-08-17 13:15:05+07', '2020-08-17 13:15:05+07');
INSERT INTO public.time_entries VALUES (26, 11, 19, 19, 1855, 10, '', 8, '2020-08-18', 2020, 8, 34, '2020-08-18 16:57:52+07', '2020-08-18 16:57:52+07');
INSERT INTO public.time_entries VALUES (27, 11, 19, 19, 1895, 4, '', 8, '2020-08-22', 2020, 8, 34, '2020-08-22 15:30:39+07', '2020-08-22 15:30:39+07');
INSERT INTO public.time_entries VALUES (28, 11, 19, 19, 1898, 16, '', 8, '2020-08-24', 2020, 8, 35, '2020-08-24 08:14:32+07', '2020-08-24 08:14:32+07');
INSERT INTO public.time_entries VALUES (29, 11, 19, 19, 1902, 4, '', 8, '2020-08-27', 2020, 8, 35, '2020-08-27 10:08:25+07', '2020-08-27 10:08:25+07');
INSERT INTO public.time_entries VALUES (30, 11, 19, 19, 1824, 16, '', 8, '2020-08-28', 2020, 8, 35, '2020-08-28 15:41:57+07', '2020-08-28 15:41:57+07');
INSERT INTO public.time_entries VALUES (31, 45, 19, 19, 1920, 4, '', 8, '2020-09-04', 2020, 9, 36, '2020-09-04 08:06:07+07', '2020-09-04 08:06:07+07');
INSERT INTO public.time_entries VALUES (32, 45, 41, 41, 1970, 8, '', 9, '2020-09-05', 2020, 9, 36, '2020-09-05 09:35:26+07', '2020-09-05 09:35:26+07');
INSERT INTO public.time_entries VALUES (33, 45, 41, 41, 1978, 12, '', 8, '2020-09-05', 2020, 9, 36, '2020-09-05 09:37:01+07', '2020-09-05 09:37:01+07');
INSERT INTO public.time_entries VALUES (34, 11, 19, 19, 1934, 8, '', 8, '2020-09-05', 2020, 9, 36, '2020-09-05 09:47:49+07', '2020-09-05 09:47:49+07');
INSERT INTO public.time_entries VALUES (35, 11, 19, 19, 1934, 4, '', 8, '2020-09-05', 2020, 9, 36, '2020-09-05 10:10:26+07', '2020-09-05 10:10:26+07');
INSERT INTO public.time_entries VALUES (36, 45, 41, 41, 1990, 8, '', 8, '2020-09-07', 2020, 9, 37, '2020-09-07 14:06:49+07', '2020-09-07 14:06:49+07');
INSERT INTO public.time_entries VALUES (37, 11, 19, 19, 1134, 24, '', 8, '2020-09-09', 2020, 9, 37, '2020-09-09 15:24:17+07', '2020-09-09 15:24:17+07');
INSERT INTO public.time_entries VALUES (38, 11, 19, 19, 2012, 8, '', 8, '2020-09-09', 2020, 9, 37, '2020-09-09 15:35:00+07', '2020-09-09 15:35:00+07');
INSERT INTO public.time_entries VALUES (39, 11, 19, 19, 2016, 2, '', 8, '2020-09-09', 2020, 9, 37, '2020-09-09 17:00:21+07', '2020-09-09 17:00:21+07');
INSERT INTO public.time_entries VALUES (40, 35, 33, 33, 2013, 240, '', 9, '2020-10-10', 2020, 10, 41, '2020-09-14 08:06:17+07', '2020-09-14 08:06:17+07');
INSERT INTO public.time_entries VALUES (41, 46, 19, 19, 2190, 16, '', 8, '2020-09-30', 2020, 9, 40, '2020-09-30 10:33:46+07', '2020-09-30 10:33:46+07');
INSERT INTO public.time_entries VALUES (42, 46, 19, 19, 2234, 16, '', 8, '2020-10-02', 2020, 10, 40, '2020-10-02 03:21:23+07', '2020-10-02 03:21:23+07');
INSERT INTO public.time_entries VALUES (43, 46, 19, 19, 2221, 8, '', 8, '2020-10-03', 2020, 10, 40, '2020-10-03 14:11:20+07', '2020-10-03 14:11:20+07');
INSERT INTO public.time_entries VALUES (44, 46, 19, 19, 2350, 0, '', 9, '2020-10-09', 2020, 10, 41, '2020-10-09 08:31:27+07', '2020-10-09 08:31:27+07');
INSERT INTO public.time_entries VALUES (45, 51, 19, 19, 2394, 24, '', 8, '2020-10-12', 2020, 10, 42, '2020-10-12 16:26:36+07', '2020-10-12 16:26:36+07');
INSERT INTO public.time_entries VALUES (46, 51, 19, 19, 2395, 2, '', 8, '2020-10-12', 2020, 10, 42, '2020-10-12 16:28:20+07', '2020-10-12 16:28:20+07');
INSERT INTO public.time_entries VALUES (47, 46, 9, 9, 2985, 17, '', 9, '2020-12-04', 2020, 12, 49, '2020-12-01 08:12:28+07', '2020-12-01 08:12:28+07');


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

INSERT INTO public.tokens VALUES (4, 5, 'feeds', '71927ea085a2980b8d88ec8bb49fb0149570f23c', '2020-02-14 08:51:19+07', '2020-02-14 08:51:19+07');
INSERT INTO public.tokens VALUES (5, 1, 'feeds', '91958d3a0ee985fc1b6b0470b59188fefdc321f6', '2020-02-14 09:40:17+07', '2020-02-14 09:40:17+07');
INSERT INTO public.tokens VALUES (7, 6, 'feeds', '8b2b8d4f37ca4540067f30da9044e1027e5a198e', '2020-02-14 09:42:06+07', '2020-02-14 09:42:06+07');
INSERT INTO public.tokens VALUES (40, 8, 'feeds', '6de10d4bca90be7b7034792e0e61755425914ef7', '2020-02-21 17:12:59+07', '2020-02-21 17:12:59+07');
INSERT INTO public.tokens VALUES (49, 10, 'feeds', 'e2f089fdbbaf8be08a69162cfc3cc0137f875110', '2020-02-24 08:36:25+07', '2020-02-24 08:36:25+07');
INSERT INTO public.tokens VALUES (148, 12, 'feeds', '605ca54ca83d26c939628281bd25a16091f175af', '2020-03-17 21:13:11+07', '2020-03-17 21:13:11+07');
INSERT INTO public.tokens VALUES (155, 13, 'feeds', 'a4a61d7cb754af32c9a95081c2e3e0664f7fddf7', '2020-03-18 14:19:04+07', '2020-03-18 14:19:04+07');
INSERT INTO public.tokens VALUES (180, 14, 'feeds', 'e2ce5170faafab51485d6d9fefb4baa17e6791d5', '2020-03-23 08:33:49+07', '2020-03-23 08:33:49+07');
INSERT INTO public.tokens VALUES (258, 15, 'feeds', '94f356f90964a7b8f2345e66f27eac0b97ed9415', '2020-04-06 13:51:08+07', '2020-04-06 13:51:08+07');
INSERT INTO public.tokens VALUES (284, 17, 'feeds', 'a6110e0b74fd083a6e5a020db64c514bc49f6b4e', '2020-04-10 15:27:56+07', '2020-04-10 15:27:56+07');
INSERT INTO public.tokens VALUES (285, 16, 'session', '5b0f67b5348f72ffdbe87a5e5c169e71fb068b50', '2020-04-10 15:27:57+07', '2020-05-19 20:17:40+07');
INSERT INTO public.tokens VALUES (286, 16, 'feeds', '3fe4fd2ce749003a500e91ee23f6c4322140628b', '2020-04-10 15:27:57+07', '2020-04-10 15:27:57+07');
INSERT INTO public.tokens VALUES (346, 9, 'feeds', '5859cc8ae89c4f24d7eba7fd962d099a7cb73919', '2020-04-22 13:55:42+07', '2020-04-22 13:55:42+07');
INSERT INTO public.tokens VALUES (677, 19, 'feeds', '27ce5ef4bbe5b482ab76cde99a89b01f61200d1b', '2020-06-25 16:35:31+07', '2020-06-25 16:35:31+07');
INSERT INTO public.tokens VALUES (775, 20, 'feeds', 'af3e707f2391bd46f3169fdefe4077302b36b2c3', '2020-07-13 10:08:09+07', '2020-07-13 10:08:09+07');
INSERT INTO public.tokens VALUES (785, 21, 'feeds', '15df4aedc527084c2937d2bb95eab3de9545ee6e', '2020-07-13 13:40:08+07', '2020-07-13 13:40:08+07');
INSERT INTO public.tokens VALUES (791, 23, 'feeds', 'e19a50a76e9846b9e9fabc83c6ed3cd2ee0bafa2', '2020-07-13 13:49:52+07', '2020-07-13 13:49:52+07');
INSERT INTO public.tokens VALUES (793, 22, 'feeds', 'f7105e476c03d4a262edf7da93deb9cbce94ab81', '2020-07-13 13:58:48+07', '2020-07-13 13:58:48+07');
INSERT INTO public.tokens VALUES (802, 24, 'feeds', '9d2782bb3201d48c6b5f95a126cc08362fa2bbd9', '2020-07-13 16:20:38+07', '2020-07-13 16:20:38+07');
INSERT INTO public.tokens VALUES (831, 26, 'feeds', 'aaeacdb624a57c47375b86f3f56bd923ffbdc27b', '2020-07-15 09:05:00+07', '2020-07-15 09:05:00+07');
INSERT INTO public.tokens VALUES (840, 27, 'session', '0a5a83033be1d32be253ad62f88b874c75c83f69', '2020-07-15 09:09:34+07', '2020-07-15 09:17:27+07');
INSERT INTO public.tokens VALUES (841, 28, 'feeds', '8a31d94a7a55fa639a297aca0f2fe7c737aaed1a', '2020-07-15 02:11:11+07', '2020-07-15 02:11:11+07');
INSERT INTO public.tokens VALUES (842, 27, 'feeds', '3dd47937cc6832740080206a69f054be19c66ba3', '2020-07-15 02:11:48+07', '2020-07-15 02:11:48+07');
INSERT INTO public.tokens VALUES (851, 30, 'feeds', '198c4a412ddea56420ce22e05b31ebe45c12cc44', '2020-07-15 09:17:57+07', '2020-07-15 09:17:57+07');
INSERT INTO public.tokens VALUES (852, 27, 'session', 'ae88665a76349d2625a3208550c4f488ca6bf1c7', '2020-07-15 09:20:21+07', '2020-07-15 09:20:21+07');
INSERT INTO public.tokens VALUES (854, 31, 'feeds', 'a213af1e055fdcc5c85617279f4786b547624f78', '2020-07-15 09:21:20+07', '2020-07-15 09:21:20+07');
INSERT INTO public.tokens VALUES (859, 29, 'feeds', '02b1cd4e175cf671e039f2eeb8b4a4a538d2b5b4', '2020-07-15 09:31:27+07', '2020-07-15 09:31:27+07');
INSERT INTO public.tokens VALUES (864, 32, 'feeds', 'd1e4c6e321775dbd57e858ea5871902fd2638ae9', '2020-07-15 10:04:44+07', '2020-07-15 10:04:44+07');
INSERT INTO public.tokens VALUES (901, 16, 'session', '965f4b6bb2515ac1d1d121b27fa6d48cce841551', '2020-07-18 10:07:56+07', '2021-02-27 15:26:06+07');
INSERT INTO public.tokens VALUES (918, 33, 'feeds', 'a07a486046eac482cbc3cb8db48f1863621e09ce', '2020-07-18 10:48:22+07', '2020-07-18 10:48:22+07');
INSERT INTO public.tokens VALUES (927, 34, 'feeds', 'eee6387dedc308db6db259541511b2df23c75115', '2020-07-18 11:06:00+07', '2020-07-18 11:06:00+07');
INSERT INTO public.tokens VALUES (932, 14, 'session', 'e281d6f8e0818641c3f419b8f816c68493b886c8', '2020-07-18 11:08:30+07', '2021-03-26 17:08:28+07');
INSERT INTO public.tokens VALUES (944, 21, 'session', '8467b46cccb77ad4d089da5532a4fba6dbe2535a', '2020-07-18 15:27:18+07', '2020-09-19 14:28:54+07');
INSERT INTO public.tokens VALUES (970, 35, 'feeds', 'b78cb56c5ea663c8b1299bd6c8c74f064144ff00', '2020-07-20 09:59:44+07', '2020-07-20 09:59:44+07');
INSERT INTO public.tokens VALUES (974, 27, 'session', 'd30188651393b724dd1433322fa6f2bbc6ae9581', '2020-07-20 10:29:12+07', '2020-07-20 10:47:45+07');
INSERT INTO public.tokens VALUES (1081, 27, 'session', '402918c11e24353e6ec8d9ca9a1dda50a3c6bb4c', '2020-07-24 15:22:34+07', '2020-07-24 15:36:13+07');
INSERT INTO public.tokens VALUES (1101, 24, 'session', 'a90d7f34ee6a368d7e1f3e4050f31fc845dcd5f6', '2020-07-25 08:31:53+07', '2020-07-25 08:36:46+07');
INSERT INTO public.tokens VALUES (1143, 31, 'session', '4de8dedb2836e2e2dec31fdc6a1a43aa8f4e19c4', '2020-07-28 07:54:35+07', '2020-07-28 09:09:58+07');
INSERT INTO public.tokens VALUES (1161, 24, 'session', '2789571253e8954cd85f4587e194bf5573fa06fe', '2020-07-28 14:48:38+07', '2020-07-28 14:48:46+07');
INSERT INTO public.tokens VALUES (1188, 23, 'session', '5845eefbb3ad7d3a2b4716fe7857fac00e445e86', '2020-07-29 13:38:04+07', '2020-07-29 16:27:22+07');
INSERT INTO public.tokens VALUES (1189, 30, 'session', 'c4b377f3d568e9f23662b40eac94f3bda3f727da', '2020-07-29 16:12:52+07', '2020-07-29 16:26:52+07');
INSERT INTO public.tokens VALUES (1196, 31, 'session', 'a56d92ff48f816fc3e1280f117305e681ebdf6f2', '2020-07-30 07:50:38+07', '2020-07-30 07:50:38+07');
INSERT INTO public.tokens VALUES (1203, 24, 'session', '90e71fa796b7985cfeb5b06a50a3b3fd27bdde76', '2020-07-30 08:53:58+07', '2020-07-30 10:42:15+07');
INSERT INTO public.tokens VALUES (1205, 30, 'session', '714d22642655dce162e5ab71ecd8e88372c2a1ee', '2020-07-30 09:29:01+07', '2020-07-30 09:32:40+07');
INSERT INTO public.tokens VALUES (1228, 31, 'session', 'be3bb0952c256088cdee6efd109f51b03ff20561', '2020-07-31 07:48:31+07', '2020-07-31 08:29:20+07');
INSERT INTO public.tokens VALUES (1233, 24, 'session', 'db7a538a0c223d1ab63e6de78a612ad5feabdf50', '2020-07-31 08:04:33+07', '2020-07-31 08:05:11+07');
INSERT INTO public.tokens VALUES (1256, 30, 'session', '815663d22fab5d20c167047c96250e4ba3c6451c', '2020-07-31 16:28:27+07', '2020-07-31 16:34:24+07');
INSERT INTO public.tokens VALUES (1263, 24, 'session', '281a9a2fc499fc13d6cec713e00f0ec79ad74e39', '2020-08-01 08:52:19+07', '2020-08-01 08:52:26+07');
INSERT INTO public.tokens VALUES (1271, 28, 'session', 'be46be0a370e02b99cefbb9ddc2a9e2964830655', '2020-08-01 21:50:21+07', '2020-08-01 21:55:20+07');
INSERT INTO public.tokens VALUES (1274, 28, 'session', '97da53e99485ae015fc0d08c775dbe9715c44954', '2020-08-03 07:39:05+07', '2020-08-03 07:53:19+07');
INSERT INTO public.tokens VALUES (1276, 31, 'session', '47c2fec3c267e82a72c416373e638e7e596a02b0', '2020-08-03 07:50:00+07', '2020-08-03 14:32:34+07');
INSERT INTO public.tokens VALUES (1286, 23, 'session', '2febe4a64f8c1f98edb816681c2c343c6a735f1a', '2020-08-03 09:26:33+07', '2020-08-03 10:03:30+07');
INSERT INTO public.tokens VALUES (1288, 30, 'session', 'a115455f2ebd82fa2761e38a93083390a766743f', '2020-08-03 09:39:09+07', '2020-08-03 15:54:36+07');
INSERT INTO public.tokens VALUES (1300, 31, 'session', '2d0e7fbd5f3016cb8e685d72668496126ccba8de', '2020-08-04 07:48:02+07', '2020-08-04 16:09:17+07');
INSERT INTO public.tokens VALUES (1310, 30, 'session', 'e32ca65a99f2a20dcc346ce661b9c327e2fdf55d', '2020-08-04 15:46:31+07', '2020-08-04 15:55:25+07');
INSERT INTO public.tokens VALUES (1314, 23, 'session', '38873f665c73abf37e4d5669ba7bed522005c1eb', '2020-08-04 16:33:52+07', '2020-08-04 16:34:59+07');
INSERT INTO public.tokens VALUES (1316, 31, 'session', 'fe4a78dd307150b7bf179879769f5d806491d005', '2020-08-05 07:42:55+07', '2020-08-05 07:44:25+07');
INSERT INTO public.tokens VALUES (1319, 26, 'session', '7781cdd5a94fdc1bc378eafa2d40ba86345629d1', '2020-08-05 07:55:07+07', '2020-08-05 08:50:05+07');
INSERT INTO public.tokens VALUES (1325, 24, 'session', 'bc1a3290936fb6cb86eb3cdc04db68a69abb82c5', '2020-08-05 08:26:23+07', '2020-08-05 08:26:33+07');
INSERT INTO public.tokens VALUES (1332, 26, 'session', '336af19fb25e433aa41fe2b5ec3f8be1789fbe69', '2020-08-05 14:04:47+07', '2020-08-06 07:43:39+07');
INSERT INTO public.tokens VALUES (1334, 21, 'session', 'bed1ebfaa97a10b2012228286db7129d1fcca8fa', '2020-08-05 14:46:11+07', '2020-08-05 14:46:45+07');
INSERT INTO public.tokens VALUES (1348, 26, 'session', 'd5d7f279c91a9f932b55193e748278567a0e6028', '2020-08-06 13:45:26+07', '2020-08-06 13:45:29+07');
INSERT INTO public.tokens VALUES (1353, 26, 'session', '92c459937f865f98c92de65ce9453e79fdbc3114', '2020-08-07 07:51:23+07', '2020-08-07 07:51:25+07');
INSERT INTO public.tokens VALUES (1356, 24, 'session', '0de9ce52fa0ea74496cfafb6840991275775bdfc', '2020-08-07 08:29:12+07', '2020-08-07 08:29:23+07');
INSERT INTO public.tokens VALUES (1361, 31, 'session', '1a8c0b2e3e387d50d8b2d995fa352e92349e7caa', '2020-08-07 14:44:44+07', '2020-08-07 14:52:49+07');
INSERT INTO public.tokens VALUES (1362, 28, 'session', '0c661bd9e6367f0e18205f9009c87332574509c4', '2020-08-07 15:36:53+07', '2020-08-07 16:42:50+07');
INSERT INTO public.tokens VALUES (1366, 26, 'session', '750239b6bfc32a3f7124a0c7e8613e9503969970', '2020-08-07 16:08:21+07', '2020-08-10 07:43:07+07');
INSERT INTO public.tokens VALUES (1380, 28, 'session', '60e42a957f39f3380c60165d1f1e89c540e4fc81', '2020-08-09 21:00:51+07', '2020-08-09 21:01:50+07');
INSERT INTO public.tokens VALUES (1383, 28, 'session', 'f29fa1d45aa8d32591fe62933c52be153d3d815e', '2020-08-10 07:39:18+07', '2020-08-10 07:47:52+07');
INSERT INTO public.tokens VALUES (1408, 30, 'session', '4c9a524ce6225502e33e9671eaf379a6b73e3b4a', '2020-08-11 09:18:02+07', '2020-08-11 09:29:41+07');
INSERT INTO public.tokens VALUES (1411, 31, 'session', 'e2ff35693deb4ba520b2316ce611487e8d73525b', '2020-08-11 13:39:34+07', '2020-08-12 16:11:28+07');
INSERT INTO public.tokens VALUES (1417, 26, 'session', 'ede51185e1742ffae5873aada4fe9ca79f33dcdd', '2020-08-11 16:25:19+07', '2020-08-11 16:41:09+07');
INSERT INTO public.tokens VALUES (1418, 30, 'session', 'b1a0cdd3656077252c61b8f9080b0cf977d60046', '2020-08-11 16:38:26+07', '2020-08-11 16:38:58+07');
INSERT INTO public.tokens VALUES (1419, 30, 'session', '3942bc07460e5f076352d770c252226f09aa4411', '2020-08-11 16:40:13+07', '2020-08-11 16:40:15+07');
INSERT INTO public.tokens VALUES (1420, 26, 'session', 'bc9a31b4b19da219ac619a78e47e8a98f86baa27', '2020-08-12 07:51:24+07', '2020-08-12 04:10:38+07');
INSERT INTO public.tokens VALUES (1438, 24, 'session', 'df154be5cd9f0e50c097fc1da0aa5836318f6a2e', '2020-08-13 09:15:53+07', '2020-08-13 10:09:19+07');
INSERT INTO public.tokens VALUES (1450, 30, 'session', '7ae281a9cc0246b141ab3d05155fad780400bd0d', '2020-08-14 09:17:09+07', '2020-08-14 09:21:56+07');
INSERT INTO public.tokens VALUES (1455, 30, 'session', '438ef9d318469faf1c84b98e499e44014689a845', '2020-08-14 15:52:24+07', '2020-08-14 15:53:21+07');
INSERT INTO public.tokens VALUES (1477, 28, 'session', '107ec443bd79f75ff6de4e4362bbd5ead4045fc8', '2020-08-17 07:41:14+07', '2020-08-17 07:52:00+07');
INSERT INTO public.tokens VALUES (1485, 23, 'session', '0f11ae3b2deb0be36fad49c4e2c8b1ae3a7d2866', '2020-08-17 09:29:06+07', '2020-08-17 09:30:10+07');
INSERT INTO public.tokens VALUES (1486, 34, 'session', '951e8dbd95e70aa00a91068d7aa29bd5dd50c9fe', '2020-08-17 09:36:08+07', '2020-08-17 09:36:23+07');
INSERT INTO public.tokens VALUES (1489, 31, 'session', 'bacedc3f7ac6d246771c15b8dc9c043e3a5045a7', '2020-08-17 13:43:35+07', '2020-08-17 13:43:35+07');
INSERT INTO public.tokens VALUES (1519, 37, 'feeds', 'd7f494225618e878f5e2ccc5a00fce11d33e506b', '2020-08-19 13:15:39+07', '2020-08-19 13:15:39+07');
INSERT INTO public.tokens VALUES (1522, 24, 'session', '97c7809311dc7c67bc1ebd71448b3a9773cc34a2', '2020-08-19 16:26:14+07', '2020-08-19 16:26:27+07');
INSERT INTO public.tokens VALUES (1527, 26, 'session', '4a2893fcd0d8215dfbae87a33ba7b53a86934967', '2020-08-20 07:42:39+07', '2020-08-20 07:43:11+07');
INSERT INTO public.tokens VALUES (1550, 37, 'recovery', 'b972fabcc29bd5624663820102e1a676164e3516', '2020-08-22 10:56:46+07', '2020-08-22 10:56:46+07');
INSERT INTO public.tokens VALUES (1557, 35, 'session', '8870e0fa8a719be348e922a43d163c749ae50c17', '2020-08-24 07:40:09+07', '2020-08-24 07:40:10+07');
INSERT INTO public.tokens VALUES (1558, 26, 'session', '496aecdfa5b23dd59ba63d2d16ac0af7367b70a8', '2020-08-24 07:41:18+07', '2020-08-24 07:41:29+07');
INSERT INTO public.tokens VALUES (1560, 28, 'session', '520de380c364b874eeee460a78ab1c8f70784a4e', '2020-08-24 07:47:35+07', '2020-08-24 07:56:16+07');
INSERT INTO public.tokens VALUES (1571, 35, 'session', 'c4bdbf0c35fa8f7fb98d1cea7c34ccd1b5bfafbc', '2020-08-24 13:59:18+07', '2020-08-24 16:41:22+07');
INSERT INTO public.tokens VALUES (1581, 38, 'feeds', '3cc08cf3f62833c6b930321a4781a0fe2a663202', '2020-08-25 08:17:19+07', '2020-08-25 08:17:19+07');
INSERT INTO public.tokens VALUES (1584, 28, 'session', '3313297052e1c0cf36ffb699448eb5817fbd9010', '2020-08-25 10:39:05+07', '2020-08-25 10:41:14+07');
INSERT INTO public.tokens VALUES (1585, 31, 'session', '0b776f4eff8b29e712d1a51e0a824e573b49f774', '2020-08-25 10:41:54+07', '2020-08-25 10:44:29+07');
INSERT INTO public.tokens VALUES (1586, 24, 'session', '65033016a79562b5485e3bb01be5a3c4dc8b8773', '2020-08-25 15:30:27+07', '2020-08-25 15:30:27+07');
INSERT INTO public.tokens VALUES (1589, 35, 'session', 'eb27727812b75174e435afb4601b3d3000874eb4', '2020-08-26 07:43:41+07', '2020-08-26 07:46:16+07');
INSERT INTO public.tokens VALUES (1599, 26, 'session', '77ed6c6fe93bea6a730ae03c8be74d0cf08a25ab', '2020-08-26 13:42:05+07', '2020-08-26 13:46:40+07');
INSERT INTO public.tokens VALUES (1621, 35, 'session', 'e2b3c2a9988cf546ba21ed535101d797fca050cd', '2020-08-28 10:40:13+07', '2020-08-28 10:42:43+07');
INSERT INTO public.tokens VALUES (1657, 39, 'feeds', 'aea746a71f753e0fd7fa57ea4e319a78002852d9', '2020-09-01 08:52:37+07', '2020-09-01 08:52:37+07');
INSERT INTO public.tokens VALUES (1673, 40, 'feeds', 'a69ca41430c621f2baf353ee08decc72c26bad11', '2020-09-03 09:59:05+07', '2020-09-03 09:59:05+07');
INSERT INTO public.tokens VALUES (1675, 41, 'feeds', 'f0c04aad5b16228ea1e589f7fb273d05e119c777', '2020-09-03 09:59:29+07', '2020-09-03 09:59:29+07');
INSERT INTO public.tokens VALUES (1709, 22, 'session', '8208f095205a611c08e4f1fcde6d2d343f7f78bf', '2020-09-05 10:07:40+07', '2020-09-05 10:07:40+07');
INSERT INTO public.tokens VALUES (1826, 35, 'session', 'c17ca94a9e657148ee01242cd4b905bc76ec76e8', '2020-09-15 09:10:35+07', '2020-09-15 09:11:33+07');
INSERT INTO public.tokens VALUES (1863, 34, 'session', '515e01634c1a9988aa2fffa94a5822f69cbbee60', '2020-09-18 04:20:28+07', '2020-09-18 05:24:48+07');
INSERT INTO public.tokens VALUES (1907, 34, 'session', 'e49f1c53e3b8f53de85cb83a697f517fe2edfcd7', '2020-09-22 20:32:52+07', '2020-09-22 21:00:31+07');
INSERT INTO public.tokens VALUES (1913, 21, 'session', '901131fb284f34c2866394bab024d8e9013f1fee', '2020-09-23 08:41:57+07', '2020-12-29 08:39:20+07');
INSERT INTO public.tokens VALUES (1987, 21, 'session', '2551421700671f2c1fc81146c333c14dc492459f', '2020-09-29 15:44:27+07', '2020-09-29 15:49:07+07');
INSERT INTO public.tokens VALUES (1988, 22, 'session', '30161b3ea65696e8d4176336083b25c328d700b9', '2020-09-29 15:50:35+07', '2020-09-29 15:51:33+07');
INSERT INTO public.tokens VALUES (2074, 34, 'session', 'd6747642b9fce25723250a391e8209b1ded45b77', '2020-10-07 09:01:47+07', '2020-10-07 09:02:15+07');
INSERT INTO public.tokens VALUES (2104, 34, 'session', 'cbab1c9f08c3b4cc37cb4b370f268a84b51f10d9', '2020-10-09 17:58:18+07', '2020-10-09 17:58:18+07');
INSERT INTO public.tokens VALUES (2204, 22, 'session', 'be6ef143e8ce144059a3686b54944746fa1c318b', '2020-10-20 11:16:12+07', '2020-10-20 11:17:12+07');
INSERT INTO public.tokens VALUES (2221, 22, 'session', '8d1f1a286bf512e74a674f60459562f802a940ff', '2020-10-22 08:19:57+07', '2020-10-22 08:50:04+07');
INSERT INTO public.tokens VALUES (2325, 22, 'session', 'c5d74fc53572c702184cf4ece297697c967ac951', '2020-11-04 09:15:11+07', '2020-11-04 09:15:44+07');
INSERT INTO public.tokens VALUES (2368, 22, 'session', '48230100c052f77d6388808d913e91216e87d8a2', '2020-11-09 09:15:07+07', '2020-11-09 09:15:31+07');
INSERT INTO public.tokens VALUES (2376, 35, 'session', '954cd09b801398194f03f0ece1684c9c3a9807cb', '2020-11-09 14:21:22+07', '2020-11-09 14:23:06+07');
INSERT INTO public.tokens VALUES (2377, 34, 'session', '87c96a719f6ae43cd8390cd9d75a46867a303c47', '2020-11-09 14:21:43+07', '2020-11-09 14:21:58+07');
INSERT INTO public.tokens VALUES (2413, 44, 'session', 'a0dfed00706b5d003e038dd9e6e5ed963c12952d', '2020-11-12 17:49:32+07', '2020-11-12 17:54:38+07');
INSERT INTO public.tokens VALUES (2414, 44, 'feeds', '8c8b8e226c9940058ea2449a93b9420707e710aa', '2020-11-12 17:51:36+07', '2020-11-12 17:51:36+07');
INSERT INTO public.tokens VALUES (2418, 43, 'session', 'cd48db516c261f3b28ae2d095d1e35afb5df86aa', '2020-11-13 07:56:38+07', '2020-11-13 08:26:05+07');
INSERT INTO public.tokens VALUES (2419, 43, 'feeds', 'fcbc08c7d413b085d53b30d1af84a12a9d8884e8', '2020-11-13 07:57:56+07', '2020-11-13 07:57:56+07');
INSERT INTO public.tokens VALUES (2421, 44, 'session', 'a0173152b1bd0fe2f0ebbc06d5c553de70e39f7c', '2020-11-13 08:03:02+07', '2020-11-13 08:03:19+07');
INSERT INTO public.tokens VALUES (2422, 44, 'session', 'c13def8576d270b753b5f637fb7eab76a1547d9f', '2020-11-13 08:08:18+07', '2020-11-13 08:08:26+07');
INSERT INTO public.tokens VALUES (2439, 35, 'session', '2bfd97a482bb543b58f9fdcca9237ddaccc9723d', '2020-11-14 09:30:08+07', '2020-11-14 09:31:00+07');
INSERT INTO public.tokens VALUES (2467, 35, 'session', '8fd87766703ff8ad99d527af59c73a8701848fd2', '2020-11-17 11:10:43+07', '2020-11-17 11:10:57+07');
INSERT INTO public.tokens VALUES (2468, 20, 'session', 'ceae898b765ed43c1ffd76b8dc97d541dc1295fc', '2020-11-17 11:17:18+07', '2020-11-17 11:23:46+07');
INSERT INTO public.tokens VALUES (2470, 45, 'session', 'ab49fb42be5503bf3c0129a18aa5b708f369f4fb', '2020-11-17 11:37:36+07', '2020-11-17 11:39:12+07');
INSERT INTO public.tokens VALUES (2471, 45, 'feeds', 'af33c34e337c10a97a603728da6463f9c2fec47d', '2020-11-17 11:38:06+07', '2020-11-17 11:38:06+07');
INSERT INTO public.tokens VALUES (2474, 34, 'session', 'fb482a25c1b886098fffe7b8d027ab3c327262cd', '2020-11-17 18:43:11+07', '2020-11-17 18:43:46+07');
INSERT INTO public.tokens VALUES (2481, 22, 'session', 'f077c874eea20afb74f0851fd9011f6aa2b87027', '2020-11-18 11:07:31+07', '2020-11-18 11:09:00+07');
INSERT INTO public.tokens VALUES (2485, 22, 'session', '294c91dd8d5d55f8c3a5bbd8ca00f633e0f4228b', '2020-11-18 13:57:37+07', '2020-11-18 14:06:52+07');
INSERT INTO public.tokens VALUES (2517, 22, 'session', '1108025c8a8afd3e6e361b06466e271615d464c7', '2020-11-20 10:43:39+07', '2020-11-20 11:04:17+07');
INSERT INTO public.tokens VALUES (2550, 22, 'session', '965edc83b24255bf1bcc7a276923aed00784324a', '2020-11-23 08:44:33+07', '2020-11-23 09:22:22+07');
INSERT INTO public.tokens VALUES (2555, 28, 'session', '12d9c1128d28526d3a256be566bbd56cc0df382e', '2020-11-23 11:09:18+07', '2020-11-23 11:28:35+07');
INSERT INTO public.tokens VALUES (2575, 34, 'session', '41f95c97555d4e8803f97262a13c9af9a2449be0', '2020-11-25 02:39:46+07', '2020-11-25 02:48:43+07');
INSERT INTO public.tokens VALUES (2579, 29, 'session', 'b96a76476f82af9e2c2df5e070fcb3042b32927e', '2020-11-25 07:55:56+07', '2020-11-25 07:57:10+07');
INSERT INTO public.tokens VALUES (2601, 41, 'recovery', '61008cc7cbe21a2b72eeacd8087b79887462534b', '2020-11-26 23:49:48+07', '2020-11-26 23:49:48+07');
INSERT INTO public.tokens VALUES (2624, 13, 'session', '40ea585f2ffe30bf7a20e10573887c9377395edc', '2020-11-28 10:02:36+07', '2020-11-28 10:03:26+07');
INSERT INTO public.tokens VALUES (2632, 35, 'session', 'e86c88f20da9f10cfa8af660a6cf13d6c76ab329', '2020-11-30 06:37:59+07', '2020-11-30 06:38:51+07');
INSERT INTO public.tokens VALUES (2633, 35, 'session', 'aec159d7195bbed4de7af26cd7639bc0f3f12178', '2020-11-30 06:39:36+07', '2020-11-30 06:39:36+07');
INSERT INTO public.tokens VALUES (2642, 9, 'session', '9f2415852824d497458a76884cf05b744b872acb', '2020-11-30 08:45:18+07', '2020-11-30 08:46:49+07');
INSERT INTO public.tokens VALUES (2643, 28, 'session', '14b120c4aeabece34616d35e0f59c9bab5637621', '2020-11-30 08:46:34+07', '2020-11-30 08:54:15+07');
INSERT INTO public.tokens VALUES (2657, 9, 'session', '624d3203e724306bc9c8d6c24e1c05075873a68e', '2020-12-01 08:11:15+07', '2020-12-01 08:50:44+07');
INSERT INTO public.tokens VALUES (2674, 9, 'session', '936d2e9de65ab8b217e23cf4d4824e379dd85ecf', '2020-12-02 10:29:43+07', '2020-12-02 10:35:30+07');
INSERT INTO public.tokens VALUES (2682, 9, 'session', 'ffbc355296f8b68dd40dd338ba0d778541830a15', '2020-12-03 08:36:55+07', '2020-12-03 08:37:20+07');
INSERT INTO public.tokens VALUES (2696, 9, 'session', '45c225b88fe02be876bc8f270eb19846362c7070', '2020-12-04 09:19:44+07', '2020-12-04 10:42:24+07');
INSERT INTO public.tokens VALUES (2702, 44, 'session', 'c445968a924ca2e52d56025d57980444a227da7d', '2020-12-04 16:10:55+07', '2020-12-04 16:17:30+07');
INSERT INTO public.tokens VALUES (2724, 9, 'session', '956de0b6097706996858958db6eaff8a0cf92192', '2020-12-07 08:39:07+07', '2020-12-07 08:40:26+07');
INSERT INTO public.tokens VALUES (2739, 29, 'session', '15d4686e2081e8f9c87057e9ac1b27fee4167cc7', '2020-12-08 08:16:42+07', '2020-12-08 10:00:36+07');
INSERT INTO public.tokens VALUES (2745, 13, 'session', 'bef73db3ac75ebb87acaa12b9a1b155a5cb24752', '2020-12-08 17:00:11+07', '2020-12-08 17:07:26+07');
INSERT INTO public.tokens VALUES (2777, 9, 'session', '39213bd1bb13c02a9ecd9e067c392b90ca2ca184', '2020-12-12 10:18:08+07', '2020-12-12 14:33:08+07');
INSERT INTO public.tokens VALUES (2844, 34, 'session', '0b5a54902295e6456f6243220be7da724c855bbe', '2020-12-19 17:07:24+07', '2020-12-19 17:08:10+07');
INSERT INTO public.tokens VALUES (2846, 34, 'session', 'cf266b99c8ce5f9dc8c40357c591ee8a89b59e58', '2020-12-20 11:25:14+07', '2020-12-20 11:26:22+07');
INSERT INTO public.tokens VALUES (2898, 9, 'session', '1431e0da71a01516a864e0e88293f91ed94ff372', '2020-12-26 15:18:09+07', '2020-12-26 15:18:40+07');
INSERT INTO public.tokens VALUES (2924, 9, 'session', 'c8e81897a9f4f08423196ed13fb2670274f42362', '2020-12-29 11:18:02+07', '2020-12-29 11:18:15+07');
INSERT INTO public.tokens VALUES (2990, 9, 'session', '1d542e3c59d7ceef7f89142140b5d07b42e97a2c', '2021-01-09 08:38:08+07', '2021-01-09 08:38:08+07');
INSERT INTO public.tokens VALUES (2991, 19, 'session', '8fbe21216057972a8ac30b8b9227ff103f5636e5', '2021-01-09 08:59:47+07', '2021-01-09 09:08:18+07');
INSERT INTO public.tokens VALUES (3006, 19, 'session', '6f64372f775c0af8956fbaf4c0affb6ad781557a', '2021-01-11 08:48:30+07', '2021-01-11 08:51:16+07');
INSERT INTO public.tokens VALUES (3010, 19, 'session', '3c8c00dd5accb0820a3c2b425502c0e37ac64a9d', '2021-01-11 16:20:06+07', '2021-01-11 16:25:46+07');
INSERT INTO public.tokens VALUES (3012, 17, 'session', '5976321793cf51b072eef1ce2dc9a1cb41da8253', '2021-01-12 08:16:51+07', '2021-01-12 10:08:57+07');
INSERT INTO public.tokens VALUES (3031, 19, 'session', '4694af1c8ebb296f858c0c9133d8b81178be615a', '2021-01-14 08:46:31+07', '2021-01-14 16:32:40+07');
INSERT INTO public.tokens VALUES (3037, 19, 'session', '9902db6beec523b1ead24a2974d2f7d0afa0bd17', '2021-01-15 08:00:19+07', '2021-01-15 14:35:38+07');
INSERT INTO public.tokens VALUES (3041, 29, 'session', '626d2635479f6a1a03d0474af9f563f64837b3db', '2021-01-15 15:40:19+07', '2021-01-15 15:42:49+07');
INSERT INTO public.tokens VALUES (3046, 19, 'session', '5f7f15e4b89bfd717e2911ea5ca99ad39cb5abf4', '2021-01-16 13:27:03+07', '2021-01-16 14:08:17+07');
INSERT INTO public.tokens VALUES (3057, 19, 'session', '89dcc26f0cd43a5961e0f474afe076fd1beb3841', '2021-01-19 11:12:15+07', '2021-01-19 15:25:42+07');
INSERT INTO public.tokens VALUES (3065, 19, 'session', 'e232126fb5a5adc36d36344caa3fc443c827373d', '2021-01-20 15:10:52+07', '2021-01-20 15:11:01+07');
INSERT INTO public.tokens VALUES (3070, 19, 'session', 'd1cf49fa6a0c59df7d12ca5e132b39a50fd8756f', '2021-01-21 10:23:46+07', '2021-01-21 16:55:29+07');
INSERT INTO public.tokens VALUES (3072, 17, 'session', 'e42e63abf16199e408a62193828a076b360d1ea5', '2021-01-21 10:46:53+07', '2021-01-21 10:46:54+07');
INSERT INTO public.tokens VALUES (3095, 32, 'session', '5d6406934905a3ac9d03920ce5f5ca75458ab618', '2021-01-27 13:27:39+07', '2021-02-02 17:01:20+07');
INSERT INTO public.tokens VALUES (3105, 13, 'session', '0e6d8105cb47cbef88ccfe0b5477b05231b225e4', '2021-01-30 08:17:26+07', '2021-01-30 13:38:27+07');
INSERT INTO public.tokens VALUES (3111, 13, 'session', '25ef84cdf11e99bafdc2ba2a91cbbb3a8da68296', '2021-02-01 08:58:32+07', '2021-02-02 11:08:49+07');
INSERT INTO public.tokens VALUES (3120, 13, 'session', '5e8fba4d8b917b3e400f6569a03d439bb47a98e5', '2021-02-04 08:36:28+07', '2021-02-04 09:05:34+07');
INSERT INTO public.tokens VALUES (3121, 19, 'session', 'd7360ad51126dd5ab3b4c59d5c683f29ff766803', '2021-02-04 08:56:24+07', '2021-02-04 13:38:25+07');
INSERT INTO public.tokens VALUES (3127, 17, 'session', 'a56c45d6cc524eb13f54a36ed31529942cfbb002', '2021-02-08 09:25:26+07', '2021-02-08 09:25:26+07');
INSERT INTO public.tokens VALUES (3145, 32, 'session', 'd8f0389f8d387e421f9e031dfdc98e366631d49f', '2021-02-23 14:44:59+07', '2021-02-25 14:59:09+07');
INSERT INTO public.tokens VALUES (3151, 29, 'session', 'cd770d8376b6896fa6984f450471f1f7f5cb3581', '2021-02-25 14:59:49+07', '2021-02-25 14:59:59+07');
INSERT INTO public.tokens VALUES (3152, 32, 'session', '07c3eed7cfb5c9ebfce4c109babdc8971fe09c53', '2021-02-26 08:17:26+07', '2021-03-10 06:14:01+07');
INSERT INTO public.tokens VALUES (3167, 29, 'session', 'c3dc2198868bf4687cfd4f3ee0d38e9e488715fa', '2021-03-01 16:10:34+07', '2021-03-01 16:10:52+07');
INSERT INTO public.tokens VALUES (3174, 29, 'session', 'c908a6d130ee5e89170b5a96054e91a180e9737f', '2021-03-05 03:02:41+07', '2021-03-05 03:03:21+07');
INSERT INTO public.tokens VALUES (3183, 33, 'session', '4953c2f290b758e6a8e2022ebea6663d94c9561f', '2021-03-09 08:05:09+07', '2021-03-09 08:13:17+07');
INSERT INTO public.tokens VALUES (3188, 13, 'session', 'f366ccc575a15147555e4d2cffc16f9388a6e029', '2021-03-09 03:33:31+07', '2021-03-09 03:34:04+07');
INSERT INTO public.tokens VALUES (3193, 33, 'session', '14f20c47f9baf6e65659971bf263d164e839dde8', '2021-03-11 06:11:38+07', '2021-03-11 06:17:09+07');
INSERT INTO public.tokens VALUES (3199, 32, 'session', '1caa9304db465aa0a9f7ac40b641a399d7acce46', '2021-03-13 14:24:13+07', '2021-03-13 14:24:13+07');
INSERT INTO public.tokens VALUES (3214, 33, 'session', '68df026157e9b70fc98dbec51edcf063d949aff4', '2021-03-16 17:01:53+07', '2021-03-16 17:03:03+07');
INSERT INTO public.tokens VALUES (3220, 13, 'session', 'bb7bf966f01be2d171113df69ee72c892e7c9d06', '2021-03-17 15:25:30+07', '2021-03-17 15:26:35+07');
INSERT INTO public.tokens VALUES (3222, 21, 'recovery', '5d200b0fdddfe7ca1334cd75ad7224bfc91e6257', '2021-03-17 16:52:53+07', '2021-03-17 16:52:53+07');
INSERT INTO public.tokens VALUES (3223, 21, 'session', '68634247e1158dbac44e6837311e804fe2235825', '2021-03-17 16:53:43+07', '2021-03-29 18:21:42+07');
INSERT INTO public.tokens VALUES (3226, 33, 'session', '171f809d496ea580148cad09ea1872651baba610', '2021-03-18 13:11:04+07', '2021-03-18 13:11:13+07');
INSERT INTO public.tokens VALUES (3232, 17, 'session', '2eee65c30e28fa7ed5af5bf736816e024e61f6ff', '2021-03-19 09:50:27+07', '2021-03-19 09:53:22+07');
INSERT INTO public.tokens VALUES (3233, 32, 'session', 'd3a583eda2a68ae761aec4a1bb41488329db4da3', '2021-03-19 13:18:45+07', '2021-03-23 06:23:26+07');
INSERT INTO public.tokens VALUES (3254, 48, 'session', '7be2dfe7af3870b283439ab4b4e9f4ab0e039ec4', '2021-03-24 01:46:59+07', '2021-03-24 07:32:21+07');
INSERT INTO public.tokens VALUES (3255, 48, 'feeds', 'c9ebf8f8170f274cbb2c719e16b78eabb867d666', '2021-03-24 01:46:59+07', '2021-03-24 01:46:59+07');
INSERT INTO public.tokens VALUES (3256, 33, 'session', '38fae00d5046425781e26edb3c643f1b892eb775', '2021-03-24 05:23:57+07', '2021-03-24 16:38:27+07');
INSERT INTO public.tokens VALUES (3271, 13, 'session', 'e60d0643ba553f1816dc0be7a56d5eabc39ac09f', '2021-03-26 01:26:55+07', '2021-03-26 02:38:25+07');
INSERT INTO public.tokens VALUES (3277, 33, 'session', '5b2bbaf17456215580a15ffeceabd0c9a56b812e', '2021-03-27 08:21:06+07', '2021-03-27 17:00:21+07');
INSERT INTO public.tokens VALUES (3290, 33, 'session', '4b4fb20d7dad19345aa3d3170a6d295833ee5cc6', '2021-03-29 04:03:57+07', '2021-03-29 16:04:10+07');
INSERT INTO public.tokens VALUES (3297, 16, 'session', '54d4020e9e394496c7ae47fc6a7eb12d99d28e06', '2021-03-30 01:10:34+07', '2021-04-02 03:17:09+07');
INSERT INTO public.tokens VALUES (3302, 12, 'session', 'd483ae0789cc7b998958d8351d4d3a08c3ce0646', '2021-03-30 07:55:08+07', '2021-03-30 08:28:34+07');
INSERT INTO public.tokens VALUES (3307, 17, 'recovery', 'e2fcd3f50a7df94b6c72eb597202cef4e6096055', '2021-03-31 09:53:53+07', '2021-03-31 09:53:53+07');
INSERT INTO public.tokens VALUES (3308, 17, 'session', 'd9d52965c5f7b298ef24df2f9c274863cf975959', '2021-03-31 02:54:31+07', '2021-03-31 02:54:41+07');
INSERT INTO public.tokens VALUES (3310, 17, 'session', 'cfb0b5442e5c32e62f850b155714d31825960648', '2021-03-31 10:33:35+07', '2021-03-31 11:09:47+07');
INSERT INTO public.tokens VALUES (3312, 17, 'session', 'f44f68222bf55d18a2e6baa9b30521a4a1974b34', '2021-03-31 15:13:29+07', '2021-03-31 16:00:52+07');
INSERT INTO public.tokens VALUES (3325, 13, 'session', 'b3d048be3d33e1f13ad6a1f1b46ce9a31fc2dc9a', '2021-04-02 14:17:36+07', '2021-04-02 14:17:36+07');
INSERT INTO public.tokens VALUES (3327, 12, 'session', '6fc39b766520a44a98883adc0cdf8f5b338a85c4', '2021-04-02 15:34:52+07', '2021-04-02 15:38:14+07');
INSERT INTO public.tokens VALUES (3338, 32, 'session', '33d30eccdda8c23e9b19d43749bb3b14e3a202cf', '2021-04-05 16:53:31+07', '2021-04-05 09:54:09+07');
INSERT INTO public.tokens VALUES (3347, 32, 'session', 'fb56cac7e50669cbd8bfafc94917bac116ab9ad2', '2021-04-07 09:25:23+07', '2021-04-09 13:12:36+07');
INSERT INTO public.tokens VALUES (3357, 33, 'session', 'ed55ab2592d221005b4b1430e761b5f8d7b8bc82', '2021-04-09 09:50:19+07', '2021-04-09 09:50:50+07');
INSERT INTO public.tokens VALUES (3364, 33, 'session', '4034a962d52278d469dab3a189077644271a8ae1', '2021-04-12 08:22:18+07', '2021-04-12 10:03:17+07');
INSERT INTO public.tokens VALUES (3368, 15, 'session', 'f5964236765b26e71def8a32fa287137a18603e6', '2021-04-12 09:09:03+07', '2021-04-12 10:21:18+07');
INSERT INTO public.tokens VALUES (3376, 32, 'session', 'a9e4ae4125b08a02a0ceee1139cc773f706a50ba', '2021-04-14 15:54:13+07', '2021-04-14 15:54:44+07');
INSERT INTO public.tokens VALUES (3380, 17, 'session', '35b1b1f7b574096deb42ceed9a0d77ccac713de3', '2021-04-15 02:14:42+07', '2021-04-15 02:24:56+07');
INSERT INTO public.tokens VALUES (3382, 12, 'session', 'de70120e0a9f5eb129001d616d6438949d9859b7', '2021-04-15 02:23:47+07', '2021-04-15 06:14:18+07');
INSERT INTO public.tokens VALUES (3383, 15, 'session', 'd45c1317709dab4759ad7732a80651d887f5fdd7', '2021-04-15 16:42:22+07', '2021-04-15 16:49:28+07');
INSERT INTO public.tokens VALUES (3389, 12, 'session', 'ca7b9e455e40b23f2f56221d9eea8f784547c257', '2021-04-16 02:13:00+07', '2021-04-16 02:13:24+07');
INSERT INTO public.tokens VALUES (3399, 10, 'session', '4ba35fdaf447e1e4ac20bdafa203846da2fe8a8b', '2021-04-19 01:15:42+07', '2021-04-19 01:16:18+07');
INSERT INTO public.tokens VALUES (3400, 15, 'session', '4e1e39a596b1efc6a9afd3035756f5f603dbee79', '2021-04-19 01:44:22+07', '2021-04-19 09:26:21+07');
INSERT INTO public.tokens VALUES (3405, 15, 'session', '65d9e80d50dd79ca51a0dd722ec54e6f91d1bfd3', '2021-04-20 03:07:43+07', '2021-04-20 03:09:11+07');
INSERT INTO public.tokens VALUES (3413, 15, 'session', '5c6dde700694c941783c436ece25a2d07bbc3772', '2021-04-24 16:37:57+07', '2021-04-24 16:44:31+07');
INSERT INTO public.tokens VALUES (3419, 10, 'session', 'b9360c569697cc76a28bb58c4f13a7c61c70a4f7', '2021-04-28 07:52:13+07', '2021-04-28 11:27:00+07');
INSERT INTO public.tokens VALUES (3422, 17, 'session', '6382674b5e88e46a2ff8288083f59c4b5d62e3de', '2021-04-28 02:39:48+07', '2021-04-28 09:55:02+07');
INSERT INTO public.tokens VALUES (3423, 16, 'session', 'a3b1d5e8a52da1df0503236b597433f3b973e1b8', '2021-04-28 11:23:43+07', '2021-05-10 08:00:20+07');
INSERT INTO public.tokens VALUES (3424, 33, 'session', '3249b5f1d438ec27ba88dff7d7909e7f389c9395', '2021-04-28 13:40:32+07', '2021-04-28 13:48:35+07');
INSERT INTO public.tokens VALUES (3427, 10, 'session', '27501fbb72031b9100ce4e0ebd7728353a6db12b', '2021-05-03 10:24:18+07', '2021-05-03 10:24:42+07');
INSERT INTO public.tokens VALUES (3442, 17, 'session', 'b6b5b22708b68515c8353f0de51f69b6e2fe0c5b', '2021-05-07 10:28:38+07', '2021-05-07 10:32:46+07');
INSERT INTO public.tokens VALUES (3443, 12, 'session', 'c0704ad3bc02ee78c05483287a4910ca8d14013a', '2021-05-07 10:31:58+07', '2021-05-07 10:34:17+07');
INSERT INTO public.tokens VALUES (3447, 32, 'session', '7e03ec0ebc8ebbbcfe17afa9c3903e7d89a5a85c', '2021-05-08 13:13:37+07', '2021-05-10 06:10:43+07');
INSERT INTO public.tokens VALUES (3461, 13, 'session', '825f9ec6148dc94e341d85ebd3a30a319f66beef', '2021-05-11 07:01:09+07', '2021-05-11 07:01:09+07');
INSERT INTO public.tokens VALUES (3475, 10, 'session', '79e34cbf033e27bd1249dd94d51632243d88dad9', '2021-05-14 01:44:43+07', '2021-05-14 01:45:03+07');
INSERT INTO public.tokens VALUES (3484, 15, 'session', '23c529765a45568e7caf7ddfdee135ecb889aa60', '2021-05-15 06:31:49+07', '2021-05-15 06:32:08+07');
INSERT INTO public.tokens VALUES (3491, 38, 'autologin', 'd898340e55dbd5f8bba7ffee64634c027ead2d7f', '2021-05-19 08:34:44+07', '2021-05-19 08:34:44+07');
INSERT INTO public.tokens VALUES (3498, 10, 'session', 'e24e0cc245f7cc7621c5aa02beb17d7cb8bdaaf6', '2021-05-20 08:03:20+07', '2021-05-20 08:03:21+07');
INSERT INTO public.tokens VALUES (3522, 12, 'session', 'abae97f4f742f1a33bd27edd9ba45bf6af03acc7', '2021-05-26 16:08:39+07', '2021-05-26 16:59:21+07');
INSERT INTO public.tokens VALUES (3523, 10, 'session', '71e5896146a3011a3ea71a24a409011c5b7f1c11', '2021-05-27 08:06:51+07', '2021-05-27 09:40:09+07');
INSERT INTO public.tokens VALUES (3524, 12, 'session', 'dfb0f5409630e7011dfeafaf1932dfdc649fce1f', '2021-05-27 08:10:37+07', '2021-05-27 08:46:54+07');
INSERT INTO public.tokens VALUES (3539, 10, 'session', '869e4fab75ad221901835238fb2f3b5662e21b16', '2021-05-29 06:45:31+07', '2021-05-29 06:45:50+07');
INSERT INTO public.tokens VALUES (3542, 12, 'session', '74954516a3e0b6ec035ce4be904a59c6c96c0ba8', '2021-05-31 08:26:43+07', '2021-05-31 08:28:17+07');
INSERT INTO public.tokens VALUES (3544, 6, 'autologin', '3d5b9a04c61f7bc433daf8dca755a4f9c243df83', '2021-05-31 09:39:38+07', '2021-05-31 09:39:38+07');
INSERT INTO public.tokens VALUES (3548, 10, 'session', 'd4862d0ba9f6ae70fabdc8466bb0d364734926f4', '2021-05-31 22:21:45+07', '2021-05-31 22:21:46+07');
INSERT INTO public.tokens VALUES (3550, 12, 'session', 'bf01c422ddb61697652ea4e2409ebdf67fc6dc90', '2021-06-01 08:12:27+07', '2021-06-01 03:43:43+07');
INSERT INTO public.tokens VALUES (3556, 6, 'autologin', '4026322888c4461068934613017ebe6226cce78f', '2021-06-02 08:15:45+07', '2021-06-02 08:15:45+07');
INSERT INTO public.tokens VALUES (3557, 52, 'session', '2e3a7b4075998093dd4ec175af56eddbee8b7681', '2021-06-02 08:18:31+07', '2021-07-20 07:45:22+07');
INSERT INTO public.tokens VALUES (3558, 52, 'feeds', 'e5a3904824fda4b89f2bec4ab880d407c88d7b7e', '2021-06-02 08:18:31+07', '2021-06-02 08:18:31+07');
INSERT INTO public.tokens VALUES (3560, 12, 'session', '9c36478db12e48d81dee4d8f91cca004001305a4', '2021-06-02 09:14:56+07', '2021-06-02 16:24:57+07');
INSERT INTO public.tokens VALUES (3561, 10, 'session', '67c8cfc0fd7d3c3acb2385b0db63df75cb669ef7', '2021-06-02 14:05:14+07', '2021-06-02 14:05:52+07');
INSERT INTO public.tokens VALUES (3568, 10, 'session', 'f9304c39a1929952942a19d5bc3af41e04c73dce', '2021-06-05 02:39:27+07', '2021-06-05 02:39:29+07');
INSERT INTO public.tokens VALUES (3592, 15, 'session', '31df69ebff1adde18d70d287243c6fcaf58d820d', '2021-06-14 08:11:58+07', '2021-06-14 08:17:45+07');
INSERT INTO public.tokens VALUES (3607, 40, 'session', '0e92da21f081a98ee3ddf9c74a57f0d2d5321ab8', '2021-06-18 16:39:01+07', '2021-06-18 16:45:31+07');
INSERT INTO public.tokens VALUES (3609, 32, 'session', '9af4977f28a3994cf21eee46bbcc8e702c9eef12', '2021-06-19 07:17:15+07', '2021-06-19 07:17:16+07');
INSERT INTO public.tokens VALUES (3612, 15, 'session', '69746a22106535d5e335e8114105d8425ace177c', '2021-06-21 08:12:35+07', '2021-06-21 08:39:10+07');
INSERT INTO public.tokens VALUES (3617, 6, 'autologin', 'b79b0c1f0a21e851d912028a91a9a9650f2d1165', '2021-06-23 21:23:23+07', '2021-06-23 21:23:23+07');
INSERT INTO public.tokens VALUES (3622, 40, 'session', '3100c45359e2413fa04d71cad87d6770f273e5af', '2021-06-26 01:00:26+07', '2021-06-26 01:11:27+07');
INSERT INTO public.tokens VALUES (3628, 15, 'session', '7bc11a67df45e56ba02cc23ff0f40508a4c8d872', '2021-06-29 08:27:36+07', '2021-06-29 14:06:32+07');
INSERT INTO public.tokens VALUES (3630, 40, 'session', 'f9e1dc6b1fe52b06c45f107042a7896e5f51b526', '2021-06-30 08:04:17+07', '2021-06-30 08:04:18+07');
INSERT INTO public.tokens VALUES (3632, 40, 'session', 'a008ea3cc2f72fd380ec6006ca23b908c4cf7cf5', '2021-06-30 10:23:14+07', '2021-06-30 10:23:54+07');
INSERT INTO public.tokens VALUES (3636, 40, 'session', '01cee6e5b5e7e15c56773a3cc00ea669f7b4c214', '2021-07-01 11:08:12+07', '2021-07-01 11:08:13+07');
INSERT INTO public.tokens VALUES (3649, 15, 'session', '63b49c88f7a69ea68a293a3d4b0c20165c5898a7', '2021-07-05 14:14:23+07', '2021-07-05 14:14:52+07');
INSERT INTO public.tokens VALUES (3660, 40, 'session', '310a0eecd3e786b7ca448f7cb52a12cdf90f3aa2', '2021-07-09 01:11:41+07', '2021-07-09 01:54:22+07');
INSERT INTO public.tokens VALUES (3663, 39, 'session', 'c06426baa42ce462129dccd27a5f7d0f9c2e3147', '2021-07-12 08:14:00+07', '2021-07-12 09:54:15+07');
INSERT INTO public.tokens VALUES (3664, 38, 'session', 'dec2eef702331288befe294bf430f1524cc5f255', '2021-07-12 08:32:07+07', '2021-07-12 16:43:45+07');
INSERT INTO public.tokens VALUES (3665, 40, 'session', 'b482462fbb4cc1c8589e6d35d67f1333370bba14', '2021-07-12 03:09:08+07', '2021-07-12 03:10:52+07');
INSERT INTO public.tokens VALUES (3666, 39, 'session', 'a3cfc4b6de8c1474b230ffa9e82b89ac01ab4224', '2021-07-12 03:17:47+07', '2021-07-12 03:49:48+07');
INSERT INTO public.tokens VALUES (3668, 53, 'session', '9bbf8b69c7cdd44dacebf303ca77d6aae1d90cf6', '2021-07-12 11:17:22+07', '2021-07-12 11:17:23+07');
INSERT INTO public.tokens VALUES (3669, 53, 'feeds', '11f7e9298bb6c447f1d38e810d433b0d723889c6', '2021-07-12 11:17:23+07', '2021-07-12 11:17:23+07');
INSERT INTO public.tokens VALUES (3670, 39, 'session', '057d30f74bdaf0518ec94bbf755c05f3e99c6e18', '2021-07-12 14:39:46+07', '2021-07-12 14:52:26+07');
INSERT INTO public.tokens VALUES (3671, 38, 'session', 'aacd287cabf9dbb5c241aaa68d98fa3f51a9c500', '2021-07-13 08:10:15+07', '2021-07-13 17:56:35+07');
INSERT INTO public.tokens VALUES (3672, 40, 'session', '257725d10aea5d1866b05596f5766bafaae0a69a', '2021-07-13 09:33:38+07', '2021-07-13 10:22:46+07');
INSERT INTO public.tokens VALUES (3673, 39, 'session', '2720285ee80a52eec6cf8db13dcea5b2cd0df548', '2021-07-13 10:39:40+07', '2021-07-13 10:57:09+07');
INSERT INTO public.tokens VALUES (3676, 38, 'session', '765edf2f562bc78188e7d69a4963fd36b5b2f93c', '2021-07-14 14:37:28+07', '2021-07-14 15:56:29+07');
INSERT INTO public.tokens VALUES (3677, 38, 'session', 'f5404d96b02e61b90c276a5baa8feb4d503a61c4', '2021-07-15 08:11:26+07', '2021-07-15 10:10:23+07');
INSERT INTO public.tokens VALUES (3678, 39, 'session', '02b2667af014003f3abd8b8ebda040775f6c144a', '2021-07-15 08:24:32+07', '2021-07-15 08:27:31+07');
INSERT INTO public.tokens VALUES (3679, 40, 'session', '654784812633b6ad3a57d8d895c407ad37b98168', '2021-07-15 10:10:59+07', '2021-07-15 10:13:14+07');
INSERT INTO public.tokens VALUES (3680, 38, 'session', 'c74e71c620e9e4b265adb26879fe461a93f20ec4', '2021-07-15 14:42:09+07', '2021-07-15 14:42:49+07');
INSERT INTO public.tokens VALUES (3682, 53, 'session', 'b043152fdb624bc13065586d743c9926d8c0613e', '2021-07-16 09:42:07+07', '2021-12-14 10:27:14+07');
INSERT INTO public.tokens VALUES (3683, 39, 'session', '1e5277486a946de6cef96dd44b06300ffd43e152', '2021-07-16 14:09:29+07', '2021-07-16 15:17:06+07');
INSERT INTO public.tokens VALUES (3685, 38, 'session', 'ec0274c59e9fca748250c0a18c9a2aad8c822286', '2021-07-16 16:31:39+07', '2021-07-16 16:32:19+07');
INSERT INTO public.tokens VALUES (3686, 54, 'session', '91ad6f75fa3c7dc0282957355277a5e8e11df89d', '2021-07-16 21:46:14+07', '2021-07-16 21:48:01+07');
INSERT INTO public.tokens VALUES (3687, 54, 'feeds', 'c40c8502e83e0f500b23af711b0b29994078d84f', '2021-07-16 21:46:15+07', '2021-07-16 21:46:15+07');
INSERT INTO public.tokens VALUES (3688, 38, 'session', '9b4ac495105cd7e3243fb076c3e209f2e26b0671', '2021-07-17 08:08:38+07', '2021-07-17 10:50:08+07');
INSERT INTO public.tokens VALUES (3689, 39, 'session', '84e6514679c701ff5879398ba0c8f21d06c397d0', '2021-07-17 08:16:49+07', '2021-07-17 10:54:31+07');
INSERT INTO public.tokens VALUES (3691, 39, 'session', '938c081abb1a664ac6d3bc14f87ec63f8f7b1f15', '2021-07-17 08:18:03+07', '2021-07-17 10:53:06+07');
INSERT INTO public.tokens VALUES (3692, 39, 'session', '58a86dcce507299fe324e53a7f55b1cf296e7ab2', '2021-07-17 15:52:24+07', '2021-07-17 16:19:51+07');
INSERT INTO public.tokens VALUES (3693, 53, 'session', '4715605751d3f1c4b040b1a8ab9cebf5c6e35bea', '2021-07-17 18:57:46+07', '2021-07-17 18:58:27+07');
INSERT INTO public.tokens VALUES (3694, 54, 'session', 'fd7f79df07c96a06371d7114f8248f0edcef6967', '2021-07-19 08:05:34+07', '2021-07-19 15:19:33+07');
INSERT INTO public.tokens VALUES (3697, 38, 'session', '1d8cc2a9006036a6851100c281abe33a5bae3cda', '2021-07-19 09:01:21+07', '2021-07-19 09:01:57+07');
INSERT INTO public.tokens VALUES (3698, 39, 'session', '3ac24fcc79e2133f0027d0847ba1c5bcd08d0c2a', '2021-07-19 09:03:50+07', '2021-07-19 11:46:56+07');
INSERT INTO public.tokens VALUES (3700, 52, 'session', 'bde09535a0df7d122c55bef90d74c67f08873ee9', '2021-07-20 14:44:03+07', '2021-12-13 22:46:56+07');
INSERT INTO public.tokens VALUES (3701, 52, 'autologin', '6fe60e773227781ed96fc1f6e35aff96415b83eb', '2021-07-20 14:44:03+07', '2021-07-20 14:44:03+07');
INSERT INTO public.tokens VALUES (3703, 38, 'session', '56fd85a03a895aecc839dc1fcb68c83cb77bb995', '2021-07-22 08:31:27+07', '2021-07-22 08:31:45+07');
INSERT INTO public.tokens VALUES (3704, 54, 'session', '54e1269b1dbe5fb590fdbd6678b990b84e90a0d6', '2021-07-23 14:29:13+07', '2021-07-23 14:30:04+07');
INSERT INTO public.tokens VALUES (3708, 54, 'session', 'f222b23c2f8bfb477dda9dd049194db673aed4d5', '2021-08-02 07:55:37+07', '2021-08-02 07:55:48+07');
INSERT INTO public.tokens VALUES (3757, 8, 'session', '83fa073efddeede5cf8a09448cc7e5c0d9549c8a', '2021-09-16 10:28:42+07', '2021-09-16 10:30:26+07');
INSERT INTO public.tokens VALUES (3762, 8, 'session', 'd37f2e1709bd6b731a26c866bac9aa5d97dc220e', '2021-09-17 14:44:15+07', '2021-09-17 14:55:30+07');
INSERT INTO public.tokens VALUES (3763, 8, 'session', 'da2c898cae77d69f471a545cd03bdd10ccdf8dba', '2021-09-18 08:53:02+07', '2021-09-18 08:53:10+07');
INSERT INTO public.tokens VALUES (3765, 41, 'session', 'd781fd039c122c90d7d0aa6c5b689adb01569d11', '2021-09-18 09:08:25+07', '2021-09-18 09:09:32+07');
INSERT INTO public.tokens VALUES (3769, 8, 'session', '487bf3db0db74f5e36c84ed82554a161bafd45a2', '2021-09-20 16:04:16+07', '2021-09-20 16:26:34+07');
INSERT INTO public.tokens VALUES (3770, 41, 'session', '7a7a2c9c7aaa488f5c9e5feed956866974f023ec', '2021-09-21 08:19:14+07', '2021-09-21 09:45:26+07');
INSERT INTO public.tokens VALUES (3771, 41, 'session', 'd42513616626d524e69164317985ea19404bf577', '2021-09-21 14:22:30+07', '2021-09-21 14:22:49+07');
INSERT INTO public.tokens VALUES (3774, 41, 'session', '322b1e04e347e917811e9e14c11bda573663b747', '2021-09-23 14:17:25+07', '2021-09-23 14:56:44+07');
INSERT INTO public.tokens VALUES (3779, 41, 'session', 'fdfc738a81857bbdabc3b99831d5e473cd62108d', '2021-09-25 08:40:33+07', '2021-09-25 09:02:21+07');
INSERT INTO public.tokens VALUES (3784, 8, 'session', '018c5d7bb5a514d57ed1b0909e1c4faa76f138f5', '2021-10-01 15:40:10+07', '2021-10-01 15:45:11+07');
INSERT INTO public.tokens VALUES (3785, 8, 'session', '3d79344fb0b703be5de3f36f6e85c235a2e638c0', '2021-10-02 08:59:58+07', '2021-10-02 09:31:58+07');
INSERT INTO public.tokens VALUES (3789, 8, 'session', '0573038b5e6d305f56dedf62cf7bf7aa00ce97c2', '2021-10-15 11:28:33+07', '2021-10-15 11:28:40+07');
INSERT INTO public.tokens VALUES (3790, 37, 'session', '69542d00a2aff7b4b2ee9156527c2ecac2b1624b', '2021-10-15 13:27:17+07', '2021-10-15 13:27:42+07');
INSERT INTO public.tokens VALUES (3791, 37, 'session', '171c4edd8c91793db56cad66e3d0fe42eb5a8865', '2021-10-18 10:54:05+07', '2021-10-18 10:54:58+07');
INSERT INTO public.tokens VALUES (3794, 37, 'session', 'ae4075671b0967d025b33e45108563a2700143d8', '2021-11-01 08:27:00+07', '2021-11-01 08:27:15+07');
INSERT INTO public.tokens VALUES (3795, 41, 'session', 'c32948239c3a4560bf502116e0229a66a2d46b37', '2021-11-01 08:28:50+07', '2021-11-01 08:29:40+07');
INSERT INTO public.tokens VALUES (3796, 41, 'session', '770fa3005228ac33e4da816745905f05bae62c96', '2021-11-02 08:43:52+07', '2021-11-02 08:44:45+07');
INSERT INTO public.tokens VALUES (3797, 37, 'session', '0f07c0043a94f5d7ccc91150ff9ca2c765d0efd1', '2021-11-02 14:30:52+07', '2021-11-02 14:47:22+07');
INSERT INTO public.tokens VALUES (3799, 37, 'session', '8a3adab09a05ab60c05270b4b8a7a9f098460fa6', '2021-11-08 13:30:51+07', '2021-11-08 13:31:04+07');
INSERT INTO public.tokens VALUES (3801, 37, 'session', 'afbc1f22885ed9b94bea71786b022154623e59a1', '2021-11-11 15:10:02+07', '2021-11-11 16:13:31+07');
INSERT INTO public.tokens VALUES (3802, 8, 'session', '57b136e94aaea181ca0c2d5bfd272f40f14f60d1', '2021-11-11 15:19:49+07', '2021-11-11 15:20:30+07');
INSERT INTO public.tokens VALUES (3803, 37, 'session', '8b9937d5d1905a83eaa5d915507dc900796e0c7b', '2021-11-12 08:52:26+07', '2021-11-12 13:54:44+07');
INSERT INTO public.tokens VALUES (3804, 37, 'session', '05eee3f0be90deb4396276c6ff8cb4df30772f4d', '2021-11-15 08:07:53+07', '2021-11-15 13:25:32+07');
INSERT INTO public.tokens VALUES (3806, 41, 'session', '4304226719f1bbe345e56d7552e328a41bcdcb65', '2021-11-18 13:35:11+07', '2021-11-18 13:38:23+07');
INSERT INTO public.tokens VALUES (3807, 41, 'autologin', 'a69c75e6410fcdc2fdc80d5e90e043eb8552d845', '2021-11-18 13:35:11+07', '2021-11-18 13:35:11+07');
INSERT INTO public.tokens VALUES (3808, 8, 'session', 'd2b7002d31cc2e9736f2d48b8980dde1b97f5672', '2021-11-18 14:36:27+07', '2021-11-18 14:37:54+07');
INSERT INTO public.tokens VALUES (3809, 37, 'session', '88283f653f579f07ffe98e457fdd1de1139f5d97', '2021-11-19 09:26:27+07', '2021-11-22 08:18:48+07');
INSERT INTO public.tokens VALUES (3810, 41, 'session', '6024290c83fc86c0b4a1104e13fb627c8e61a69f', '2021-11-23 15:08:56+07', '2021-11-23 15:12:46+07');
INSERT INTO public.tokens VALUES (3812, 8, 'session', '820e59bb84fef1f67a09507877111bfca0e45dee', '2021-11-24 14:21:38+07', '2021-11-24 14:21:52+07');
INSERT INTO public.tokens VALUES (3813, 41, 'session', '17a5b7f3306ac28aa80cdec49f0846bb6973fd1d', '2021-11-24 14:28:20+07', '2021-11-24 14:28:21+07');
INSERT INTO public.tokens VALUES (3815, 37, 'session', '4655055913e901ea268db8b46e16ebba1b2c7c45', '2021-12-02 08:03:22+07', '2021-12-02 09:33:26+07');
INSERT INTO public.tokens VALUES (3822, 5, 'session', '42712d060b8f6936c372a279fbc727f64b795260', '2022-06-16 12:33:57+07', '2022-06-16 14:36:46+07');
INSERT INTO public.tokens VALUES (3823, 55, 'session', 'cf77de4636c002169902a04230eb864be803698e', '2022-06-16 13:25:35+07', '2022-06-16 13:25:35+07');
INSERT INTO public.tokens VALUES (3824, 55, 'autologin', '9c2a17cf789d1351543d2a36cd0419848d8a74eb', '2022-06-16 13:25:35+07', '2022-06-16 13:25:35+07');
INSERT INTO public.tokens VALUES (3825, 55, 'feeds', '39c3053d98d658627eb382766f9d072a7bb09e5b', '2022-06-16 13:25:35+07', '2022-06-16 13:25:35+07');
INSERT INTO public.tokens VALUES (3827, 56, 'feeds', 'aba1facbdab1ec298532c5c4b113063363c78480', '2022-06-16 13:28:19+07', '2022-06-16 13:28:19+07');
INSERT INTO public.tokens VALUES (3828, 54, 'session', '218e4b29d9ff5a275b3b99d912e6f37c0eadb14e', '2022-06-17 08:30:55+07', '2022-06-17 13:28:10+07');
INSERT INTO public.tokens VALUES (3829, 55, 'session', '29083ef748077a86607cd957a40541646421eb85', '2022-06-17 13:04:22+07', '2022-06-17 13:04:22+07');
INSERT INTO public.tokens VALUES (3830, 54, 'session', 'b8fb5a164b2ea7b2c56348bf93b610e523f18f65', '2022-06-22 11:27:18+07', '2022-06-22 11:29:38+07');
INSERT INTO public.tokens VALUES (3831, 5, 'session', '2f54bcb6a1c46f5ce2c0391003bef276c49a44bc', '2022-07-08 14:28:57+07', '2022-07-08 14:29:03+07');
INSERT INTO public.tokens VALUES (3833, 5, 'session', '8964537829fd27c5aefda275fd6e508c10579c6d', '2022-10-03 10:59:03+07', '2022-10-03 15:23:37+07');
INSERT INTO public.tokens VALUES (3834, 5, 'session', 'e25b519674135e7adb36c94f8e13ec4204003605', '2022-10-06 12:06:37+07', '2022-10-06 14:24:38+07');
INSERT INTO public.tokens VALUES (3836, 5, 'session', 'ecd8c818af810926294dafcbbb63638e3d0711b4', '2022-10-27 10:26:03+07', '2022-10-28 13:17:30+07');
INSERT INTO public.tokens VALUES (3838, 57, 'feeds', '900d7d13d0531fc59ed6e310e589d1ab341964ee', '2022-10-27 10:30:31+07', '2022-10-27 10:30:31+07');
INSERT INTO public.tokens VALUES (3843, 56, 'session', '9ccb5443d0df98f3c40632cc8bfd17fc000487a6', '2022-10-28 11:26:21+07', '2022-10-28 13:11:11+07');
INSERT INTO public.tokens VALUES (3845, 54, 'session', 'a88e29dbc80e56244285b0b0be904f61a92d443f', '2022-10-28 15:18:32+07', '2022-10-28 16:12:02+07');
INSERT INTO public.tokens VALUES (3848, 57, 'session', '99ddf71be03737ce5deb11fa1ddfbd891f6f9b28', '2022-10-30 10:10:29+07', '2022-10-30 10:49:42+07');
INSERT INTO public.tokens VALUES (3849, 57, 'autologin', '622be0077480d03292a42e39196c640a13961453', '2022-10-30 10:10:30+07', '2022-10-30 10:10:30+07');
INSERT INTO public.tokens VALUES (3850, 57, 'session', '3b39472e7c31e310e8f9bba18689b641ea605169', '2022-10-30 16:45:08+07', '2022-10-30 16:45:08+07');
INSERT INTO public.tokens VALUES (3851, 57, 'session', 'ba56ddc5b0017bbed891e23ffda9a453ad519d73', '2022-10-30 16:45:42+07', '2022-10-30 16:46:00+07');
INSERT INTO public.tokens VALUES (3852, 57, 'autologin', '5dd4cef53f0c7b7f2cadd735286c69774c6d6e53', '2022-10-30 16:45:42+07', '2022-10-30 16:45:42+07');
INSERT INTO public.tokens VALUES (3853, 56, 'session', 'a752f991b1c81a1608f753b72ca69267771ebef6', '2022-10-31 07:49:44+07', '2022-10-31 16:24:21+07');
INSERT INTO public.tokens VALUES (3854, 57, 'session', '602a9e8919fd94984dd82c771076ad7bfad83924', '2022-10-31 08:07:45+07', '2022-10-31 08:46:53+07');
INSERT INTO public.tokens VALUES (3855, 57, 'session', 'a79953a48f1bd0cfcd6fb022e0c2d6bf2571c430', '2022-10-31 08:51:24+07', '2022-10-31 15:43:48+07');
INSERT INTO public.tokens VALUES (3856, 5, 'session', 'd4527c6d15f83eecd9bf07b82d928dfba5e4bb8e', '2022-10-31 08:51:39+07', '2022-11-03 10:07:34+07');
INSERT INTO public.tokens VALUES (3857, 57, 'session', 'aa0dcb418494efc93072abb832e936f2a0365e80', '2022-11-01 07:41:45+07', '2022-11-01 14:23:38+07');
INSERT INTO public.tokens VALUES (3858, 57, 'autologin', '4bb6364851ad4120b123445fb148d395d248b2ec', '2022-11-01 07:41:45+07', '2022-11-01 07:41:45+07');
INSERT INTO public.tokens VALUES (3859, 57, 'session', '68b9a17495d6d77f53cec861b21f6f0b36d06c11', '2022-11-01 07:43:01+07', '2022-11-01 14:01:12+07');
INSERT INTO public.tokens VALUES (3860, 57, 'autologin', '85ef96d0b451e3b5ef4d145e7ad9669ad0da6a06', '2022-11-01 07:43:01+07', '2022-11-01 07:43:01+07');
INSERT INTO public.tokens VALUES (3861, 56, 'session', 'fb1e9cb7e1131edd4cbdbd0dc96888832e763d89', '2022-11-01 08:22:05+07', '2022-11-01 14:43:14+07');
INSERT INTO public.tokens VALUES (3862, 56, 'session', 'd028559ff2fef817d88ce68b91ab0b8b2925e760', '2022-11-02 09:10:22+07', '2022-11-02 15:59:29+07');
INSERT INTO public.tokens VALUES (3863, 57, 'session', 'c3ee120075035f62f6770310c4038c7c424fcf16', '2022-11-02 10:39:43+07', '2022-11-02 10:39:43+07');
INSERT INTO public.tokens VALUES (3864, 56, 'session', '606a08f27b9519df95f628918fa8c79bd9bbb994', '2022-11-03 08:53:20+07', '2022-11-03 15:53:17+07');
INSERT INTO public.tokens VALUES (3865, 57, 'session', '1080a243745545d8168d2364d3f4557f6451dbce', '2022-11-03 08:58:59+07', '2022-11-03 11:31:01+07');
INSERT INTO public.tokens VALUES (3866, 57, 'autologin', 'd2dd9a6a2103788af97e54549e5bb657d2c48efe', '2022-11-03 08:58:59+07', '2022-11-03 08:58:59+07');
INSERT INTO public.tokens VALUES (3867, 56, 'session', 'd9b1e877f0049aec88140d6a4fd75820e3d0ba83', '2022-11-03 19:58:23+07', '2022-11-03 19:59:38+07');
INSERT INTO public.tokens VALUES (3868, 56, 'session', 'c0961606814489f166d5681caef6f8c41d013187', '2022-11-04 08:21:58+07', '2022-11-04 14:59:37+07');
INSERT INTO public.tokens VALUES (3869, 56, 'session', 'b9249b5ae5a1807b85b4d95c23e87726df06c2ff', '2022-11-07 13:17:20+07', '2022-11-07 13:17:34+07');
INSERT INTO public.tokens VALUES (3870, 56, 'session', '2689bccffef2a03414092625f595410c394ad499', '2022-11-09 11:05:33+07', '2022-11-09 11:05:57+07');
INSERT INTO public.tokens VALUES (3871, 5, 'session', '06b31a75f19fad60ac739cd1819f85d4cacbc710', '2022-11-16 10:26:58+07', '2022-11-16 10:37:23+07');
INSERT INTO public.tokens VALUES (3872, 57, 'session', '8aeec7d62d51ddeba98a5fdd4f2b31bf67bbb7b4', '2022-11-17 16:11:01+07', '2022-11-17 16:11:29+07');
INSERT INTO public.tokens VALUES (3873, 56, 'session', 'a974515b408eb336fd285e79c3161ef827e81c96', '2022-12-05 15:50:44+07', '2022-12-05 15:51:02+07');
INSERT INTO public.tokens VALUES (3874, 38, 'session', 'd46000bba5812c1862b96a72a99265ed508ef545', '2023-02-23 09:47:54+07', '2023-02-23 09:48:40+07');
INSERT INTO public.tokens VALUES (3875, 6, 'session', '1d40a8c4d571c1cbcac2975d4d777217c3245c4b', '2023-03-09 15:09:17+07', '2023-03-09 15:10:15+07');
INSERT INTO public.tokens VALUES (3876, 6, 'session', '2050a75ec2101791e6cc377a8ded0d28ea232b66', '2023-03-10 15:04:06.375515+07', '2023-03-10 15:04:06.375515+07');
INSERT INTO public.tokens VALUES (3880, 6, 'autologin', '2002432a577737b95aed90be93901a3860e3e81d', '2023-03-13 09:55:40.779359+07', '2023-03-13 09:55:40.779359+07');
INSERT INTO public.tokens VALUES (3879, 6, 'session', 'c74c2affe9504ec20883a270c4c8343838cfef5c', '2023-03-13 09:55:40.688858+07', '2023-03-13 10:22:48.197841+07');
INSERT INTO public.tokens VALUES (3881, 6, 'session', '0fbaa5cabfe81fd572f244a08587a9dd9221566f', '2023-03-13 13:23:39.237055+07', '2023-03-13 13:23:39.237055+07');
INSERT INTO public.tokens VALUES (3882, 6, 'session', 'f30b81c8637085f63fe6b19c5a9c32aaba022bdf', '2023-03-16 11:21:19.740725+07', '2023-03-16 11:22:21.592712+07');
INSERT INTO public.tokens VALUES (3885, 6, 'session', '774a0adcb3bd49f0896012211352a1740fc10ab1', '2023-03-17 10:18:37.979307+07', '2023-03-17 10:18:37.979307+07');
INSERT INTO public.tokens VALUES (3886, 6, 'autologin', '78e1dcb15d6ac673b51f8036cc0fabc049f4bdb0', '2023-03-17 10:18:38.017995+07', '2023-03-17 10:18:38.017995+07');
INSERT INTO public.tokens VALUES (3887, 6, 'session', '08bd1194dac673b7aa08537f782cc42726142792', '2023-03-23 11:15:33.517981+07', '2023-03-23 11:15:33.517981+07');
INSERT INTO public.tokens VALUES (3888, 6, 'autologin', '5108b51cea42ee62733cbdd3b88e04fad55df658', '2023-03-23 11:15:33.598844+07', '2023-03-23 11:15:33.598844+07');
INSERT INTO public.tokens VALUES (3890, 6, 'autologin', 'd2513ed23268c3ae06586640a0dcdbd2b1477c8c', '2023-07-26 08:32:03.410155+07', '2023-07-26 08:32:03.410155+07');
INSERT INTO public.tokens VALUES (3889, 6, 'session', 'c4779dec5737799957860e8bc2989b0c39ba8f4a', '2023-07-26 08:32:03.299004+07', '2023-07-26 08:54:01.975413+07');
INSERT INTO public.tokens VALUES (3891, 6, 'session', '9ba6bbb9da09c976a39eaf237499fe69f3dd5a59', '2023-09-12 08:33:53.584991+07', '2023-09-12 08:33:53.584991+07');
INSERT INTO public.tokens VALUES (3892, 6, 'autologin', 'eb8646d8b29602a39c490062f395ff1f73628a77', '2023-09-12 08:33:53.734285+07', '2023-09-12 08:33:53.734285+07');
INSERT INTO public.tokens VALUES (3893, 6, 'session', '2d8a4ffac284384ef7ffc3e6b71fae249c119491', '2023-11-24 13:50:42.55221+07', '2023-11-24 13:50:42.55221+07');
INSERT INTO public.tokens VALUES (3894, 6, 'autologin', '2d2e17272e79f9aab1cfdcb679e924bc1cbb1b30', '2023-11-24 13:50:42.640557+07', '2023-11-24 13:50:42.640557+07');


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

INSERT INTO public.trackers VALUES (1, 'Lỗi', NULL, 1, false, 0, 1);
INSERT INTO public.trackers VALUES (2, 'Task', '', 2, true, 0, 1);
INSERT INTO public.trackers VALUES (3, 'Hỗ trợ', NULL, 3, false, 0, 1);
INSERT INTO public.trackers VALUES (4, 'Tên nhiệm vụ', '', 4, true, 0, 1);
INSERT INTO public.trackers VALUES (5, 'Thực hiện ', '', 5, true, 0, 1);
INSERT INTO public.trackers VALUES (6, 'Theo dõi', '', 6, true, 0, 1);


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

INSERT INTO public.user_preferences VALUES (1, 1, '---
:no_self_notified: ''1''
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_project_ids: ''1,6,2''
:gantt_zoom: 2
:gantt_months: 6
', true, '');
INSERT INTO public.user_preferences VALUES (2, 5, '---
:no_self_notified: ''1''
:my_page_layout:
  left:
  - issuesassignedtome
  right: []
:my_page_settings: {}
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:gantt_zoom: 4
:gantt_months: 3
:recently_used_project_ids: ''76,1,56''
:recently_used_projects: 3
:history_default_tab: notes
', true, '');
INSERT INTO public.user_preferences VALUES (5, 8, '---
:no_self_notified: ''1''
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:gantt_zoom: 4
:gantt_months: 6
:recently_used_project_ids: ''75,1,74''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
', true, '');
INSERT INTO public.user_preferences VALUES (6, 9, '---
:no_self_notified: ''1''
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
  top:
  - issuequery
:my_page_settings: {}
:recently_used_project_ids: ''42,48,46''
:gantt_zoom: 4
:gantt_months: 6
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
', true, '');
INSERT INTO public.user_preferences VALUES (7, 10, '---
:no_self_notified: ''1''
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:gantt_zoom: 4
:gantt_months: 16
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_project_ids: ''3,73,69''
', true, '');
INSERT INTO public.user_preferences VALUES (9, 12, '---
:no_self_notified: ''1''
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:gantt_zoom: 4
:gantt_months: 5
:recently_used_project_ids: ''73,69,8''
:bookmarked_project_ids: ''''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
', true, '');
INSERT INTO public.user_preferences VALUES (10, 13, '---
:no_self_notified: ''1''
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:gantt_zoom: 4
:gantt_months: 6
:recently_used_project_ids: ''72,42,40''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
', true, '');
INSERT INTO public.user_preferences VALUES (11, 14, '---
:no_self_notified: ''1''
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:recently_used_project_ids: ''32,53,58''
:gantt_zoom: 2
:gantt_months: 6
:bookmarked_project_ids: ''25''
', true, '');
INSERT INTO public.user_preferences VALUES (12, 15, '---
:no_self_notified: ''1''
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings:
  issuesassignedtome:
    :sort: id,priority:desc,updated_on:desc
:gantt_zoom: 4
:gantt_months: 1
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_project_ids: ''69,59,48''
:recently_used_projects: 3
:history_default_tab: notes
', true, '');
INSERT INTO public.user_preferences VALUES (13, 16, '---
:no_self_notified: ''1''
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:recently_used_project_ids: ''69,59,50''
:gantt_zoom: 4
:gantt_months: 20
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
', true, '');
INSERT INTO public.user_preferences VALUES (14, 17, '---
:no_self_notified: ''1''
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings:
  issuesassignedtome:
    :sort: project,priority:desc,updated_on:desc
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:gantt_zoom: 4
:gantt_months: 3
:recently_used_project_ids: ''69,42,48''
', true, '');
INSERT INTO public.user_preferences VALUES (16, 19, '---
:no_self_notified: ''1''
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings:
  issuesassignedtome:
    :sort: project,priority:desc,updated_on:desc
:gantt_zoom: 4
:gantt_months: 6
:recently_used_project_ids: ''42,55,51''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
', true, '');
INSERT INTO public.user_preferences VALUES (17, 20, '---
:no_self_notified: ''1''
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:recently_used_project_ids: ''18,50,46''
:gantt_zoom: 4
:gantt_months: 6
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
', true, '');
INSERT INTO public.user_preferences VALUES (18, 21, '---
:no_self_notified: ''1''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:recently_used_project_ids: ''67,61,68''
:gantt_zoom: 4
:gantt_months: 2
', true, '');
INSERT INTO public.user_preferences VALUES (19, 22, '---
:no_self_notified: ''1''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
  top:
  - activity
:my_page_settings:
  issuesreportedbyme:
    :sort: subject,status,tracker
:recently_used_project_ids: ''25,52,36''
:gantt_zoom: 2
:gantt_months: 6
', true, '');
INSERT INTO public.user_preferences VALUES (20, 23, '---
:no_self_notified: ''1''
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
  top:
  - issuequery__2
  - issuequery__1
  - issuequery
  - news
  - timelog
  - activity
  - documents
  - issueswatched
  - issuesupdatedbyme
  - calendar
:my_page_settings: {}
:gantt_zoom: 4
:gantt_months: 6
:recently_used_project_ids: ''67,18,52''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (21, 24, '---
:no_self_notified: ''1''
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
  top:
  - issuequery
:my_page_settings: {}
:gantt_zoom: 4
:gantt_months: 6
:recently_used_project_ids: ''43,32,11''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
', true, '');
INSERT INTO public.user_preferences VALUES (23, 26, '---
:no_self_notified: ''1''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:my_page_layout:
  left:
  - issuesassignedtome
  right: []
:my_page_settings: {}
:recently_used_project_ids: ''27,18,25''
:gantt_zoom: 2
:gantt_months: 6
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (24, 27, '---
:no_self_notified: ''1''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:gantt_zoom: 2
:gantt_months: 6
:recently_used_project_ids: ''27''
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (25, 28, '---
:no_self_notified: ''1''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:gantt_zoom: 3
:gantt_months: 6
:recently_used_project_ids: ''52,27,25''
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (26, 29, '---
:no_self_notified: ''1''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:recently_used_project_ids: ''61,43,52''
:gantt_zoom: 4
:gantt_months: 6
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (27, 30, '---
:no_self_notified: ''1''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:recently_used_project_ids: ''27,34,18''
:gantt_zoom: 2
:gantt_months: 4
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (28, 31, '---
:no_self_notified: ''1''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:my_page_layout:
  left: []
  right:
  - issuesreportedbyme
  top:
  - issuequery
:my_page_settings:
  issuesreportedbyme:
    :columns:
    - project
    - tracker
    - status
    - subject
    :sort: tracker,updated_on:desc
:gantt_zoom: 2
:gantt_months: 6
:recently_used_project_ids: ''27,18,25''
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (29, 32, '---
:no_self_notified: ''1''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:recently_used_project_ids: ''61,57,25''
:gantt_zoom: 1
:gantt_months: 6
:bookmarked_project_ids: ''''
:activity_scope:
- issues
- changesets
- news
- documents
- files
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (30, 33, '---
:no_self_notified: ''1''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:recently_used_project_ids: ''61,57,43''
:gantt_zoom: 4
:gantt_months: 2
:bookmarked_project_ids: ''''
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (31, 34, '---
:no_self_notified: ''1''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:recently_used_project_ids: ''52,18,27''
:gantt_zoom: 4
:gantt_months: 6
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (32, 35, '---
:no_self_notified: ''1''
:comments_sorting: desc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:my_page_layout:
  left: []
  right:
  - issuesreportedbyme
  top:
  - issuequery
  - news
:my_page_settings: {}
:gantt_zoom: 2
:gantt_months: 6
:recently_used_project_ids: ''52,34,27''
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (33, 37, '---
:no_self_notified: true
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:recently_used_project_ids: ''75,74,46''
:gantt_zoom: 4
:gantt_months: 12
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (34, 38, '---
:no_self_notified: true
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:recently_used_project_ids: ''42,73,59''
:gantt_zoom: 4
:gantt_months: 1
:bookmarked_project_ids: ''72''
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (35, 39, '---
:no_self_notified: ''1''
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
  top: []
:my_page_settings: {}
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:recently_used_project_ids: ''72,42,67''
:gantt_zoom: 4
:gantt_months: 6
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (36, 40, '---
:no_self_notified: ''1''
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:gantt_zoom: 4
:gantt_months: 7
:recently_used_project_ids: ''42,71,72''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (37, 41, '---
:no_self_notified: true
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:recently_used_project_ids: ''74,42,72''
:gantt_zoom: 4
:gantt_months: 9
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (39, 43, '---
:no_self_notified: ''1''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:recently_used_project_ids: ''57''
:gantt_zoom: 2
:gantt_months: 6
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (40, 44, '---
:no_self_notified: ''1''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:recently_used_project_ids: ''57,46,49''
:gantt_zoom: 2
:gantt_months: 6
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (41, 45, '---
:no_self_notified: ''1''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:recently_used_project_ids: ''52''
:gantt_zoom: 2
:gantt_months: 6
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (43, 47, '---
:no_self_notified: ''1''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (44, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (45, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (46, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (47, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (48, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (49, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (50, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (51, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (52, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (53, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (54, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (55, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (56, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (57, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (58, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (59, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (60, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (61, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (62, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (63, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (64, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (65, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (66, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (67, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (68, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (69, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (70, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (71, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (72, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (73, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (74, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (75, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (76, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (77, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (78, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (79, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (80, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (81, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (82, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (83, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (84, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (85, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (86, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (87, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (88, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (89, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (90, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (91, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (92, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (93, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (94, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (95, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (96, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (97, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (98, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (99, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (100, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (101, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (102, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (103, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (104, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (105, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (106, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (107, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (108, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (109, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (110, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (111, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (112, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (113, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (114, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (115, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (116, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (117, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (118, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (119, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (120, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (121, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (122, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (123, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (124, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (125, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (126, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (127, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (128, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (129, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (130, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (131, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (132, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (133, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (134, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (135, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (136, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (137, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (138, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (139, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (140, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (141, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (142, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (143, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (144, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (145, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (146, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (147, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (148, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (149, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (150, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (151, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (152, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (153, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (154, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (155, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (156, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (157, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (158, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (159, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (160, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (161, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (162, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (163, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (164, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (165, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (166, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (167, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (168, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (169, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (170, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (171, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (172, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (173, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (174, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (175, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (176, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (177, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (178, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (179, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (180, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (181, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (182, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (183, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (184, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (185, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (186, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (187, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (188, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (189, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (190, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (191, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (192, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (193, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (194, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (195, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (196, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (197, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (198, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (199, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (200, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (201, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (202, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (203, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (204, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (205, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (206, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (207, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (208, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (209, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (210, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (211, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (212, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (213, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (214, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (215, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (216, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (217, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (218, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (219, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (220, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (221, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (222, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (223, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (224, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (225, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (226, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (227, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (228, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (229, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (230, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (231, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (232, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (233, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (234, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (235, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (236, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (237, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (238, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (239, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (240, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (241, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (242, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (243, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (244, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (245, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (246, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (247, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (248, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (249, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (250, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (251, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (252, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (253, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (254, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (255, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (256, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (257, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (258, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (259, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (260, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (261, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (262, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (263, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (264, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (265, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (266, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (267, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (268, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (269, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (270, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (271, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (272, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (273, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (274, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (275, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (276, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (277, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (278, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (279, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (280, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (281, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (282, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (283, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (284, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (285, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (286, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (287, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (288, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (289, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (290, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (291, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (292, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (293, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (294, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (295, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (296, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (297, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (298, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (299, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (300, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (301, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (302, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (303, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (304, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (305, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (306, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (307, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (308, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (309, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (310, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (311, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (312, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (313, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (314, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (315, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (316, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (317, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (318, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (319, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (320, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (321, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (322, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (323, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (324, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (325, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (326, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (327, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (328, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (329, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (330, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (331, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (332, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (333, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (334, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (335, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (336, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (337, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (338, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (339, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (340, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (341, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (342, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (343, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (344, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (345, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (346, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (347, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (348, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (349, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (350, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (351, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (352, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (353, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (354, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (355, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (356, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (357, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (358, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (359, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (360, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (361, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (362, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (363, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (364, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (365, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (366, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (367, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (368, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (369, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (370, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (371, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (372, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (373, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (374, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (375, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (376, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (377, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (378, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (379, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (380, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (381, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (382, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (383, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (384, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (385, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (386, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (387, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (388, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (389, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (390, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (391, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (392, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (393, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (394, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (395, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (396, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (397, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (398, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (399, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (400, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (401, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (402, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (403, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (404, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (405, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (406, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (407, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (408, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (409, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (410, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (411, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (412, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (413, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (414, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (415, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (416, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (417, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (418, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (419, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (420, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (421, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (422, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (423, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (424, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (425, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (426, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (427, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (428, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (429, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (430, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (431, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (432, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (433, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (434, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (435, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (436, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (437, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (438, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (439, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (440, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (441, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (442, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (443, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (444, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (445, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (446, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (447, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (448, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (449, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (450, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (451, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (452, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (453, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (454, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (455, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (456, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (457, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (458, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (459, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (460, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (461, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (462, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (463, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (464, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (465, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (466, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (467, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (468, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (469, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (470, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (471, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (472, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (473, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (474, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (475, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (476, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (477, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (478, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (479, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (480, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (481, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (482, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (483, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (484, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (485, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (486, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (487, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (488, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (489, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (490, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (491, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (492, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (493, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (494, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (495, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (496, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (497, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (498, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (499, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (500, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (501, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (502, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (503, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (504, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (505, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (506, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (507, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (508, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (509, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (510, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (511, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (512, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (513, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (514, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (515, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (516, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (517, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (518, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (519, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (520, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (521, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (522, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (523, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (524, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (525, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (526, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (527, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (528, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (529, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (530, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (531, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (532, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (533, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (534, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (535, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (536, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (537, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (538, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (539, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (540, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (541, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (542, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (543, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (544, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (545, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (546, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (547, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (548, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (549, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (550, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (551, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (552, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (553, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (554, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (555, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (556, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (557, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (558, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (559, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (560, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (561, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (562, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (563, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (564, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (565, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (566, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (567, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (568, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (569, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (570, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (571, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (572, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (573, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (574, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (575, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (576, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (577, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (578, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (579, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (580, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (581, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (582, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (583, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (584, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (585, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (586, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (587, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (588, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (589, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (590, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (591, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (592, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (593, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (594, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (595, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (596, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (597, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (598, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (599, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (600, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (601, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (602, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (603, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (604, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (605, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (606, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (607, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (608, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (609, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (610, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (611, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (612, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (613, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (614, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (615, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (616, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (617, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (618, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (619, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (620, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (621, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (622, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (623, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (624, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (625, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (626, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (627, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (628, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (629, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (630, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (631, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (632, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (633, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (634, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (635, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (636, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (637, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (638, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (639, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (640, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (641, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (642, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (643, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (644, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (645, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (646, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (647, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (648, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (649, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (650, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (651, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (652, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (653, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (654, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (655, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (656, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (657, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (658, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (659, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (660, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (661, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (662, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (663, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (664, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (665, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (666, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (667, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (668, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (669, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (670, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (671, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (672, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (673, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (674, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (675, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (676, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (677, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (678, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (679, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (680, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (681, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (682, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (683, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (684, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (685, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (686, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (687, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (688, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (689, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (690, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (691, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (692, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (693, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (694, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (695, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (696, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (697, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (698, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (699, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (700, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (701, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (702, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (703, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (704, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (705, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (706, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (707, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (708, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (709, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (710, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (711, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (712, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (713, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (714, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (715, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (716, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (717, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (718, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (719, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (720, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (721, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (722, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (723, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (724, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (725, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (726, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (727, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (728, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (729, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (730, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (731, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (732, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (733, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (734, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (735, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (736, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (737, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (738, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (739, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (740, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (741, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (742, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (743, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (744, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (745, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (746, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (747, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (748, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (749, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (750, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (751, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (752, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (753, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (754, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (755, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (756, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (757, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (758, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (759, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (760, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (761, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (762, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (763, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (764, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (765, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (766, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (767, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (768, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (769, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (770, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (771, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (772, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (773, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (774, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (775, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (776, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (777, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (778, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (779, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (780, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (781, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (782, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (783, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (784, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (785, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (786, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (787, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (788, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (789, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (790, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (791, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (792, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (793, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (794, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (795, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (796, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (797, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (798, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (799, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (800, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (801, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (802, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (803, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (804, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (805, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (806, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (807, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (808, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (809, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (810, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (811, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (812, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (813, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (814, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (815, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (816, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (817, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (818, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (819, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (820, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (821, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (822, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (823, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (824, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (825, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (826, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (827, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (828, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (829, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (830, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (831, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (832, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (833, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (834, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (835, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (836, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (837, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (838, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (839, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (840, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (841, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (842, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (843, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (844, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (845, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (846, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (847, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (848, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (849, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (850, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (851, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (852, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (853, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (854, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (855, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (856, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (857, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (858, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (859, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (860, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (861, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (862, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (863, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (864, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (865, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (866, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (867, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (868, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (869, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (870, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (871, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (872, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (873, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (874, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (875, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (876, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (877, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (878, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (879, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (880, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (881, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (882, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (883, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (884, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (885, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (886, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (887, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (888, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (889, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (890, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (891, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (892, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (893, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (894, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (895, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (896, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (897, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (898, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (899, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (900, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (901, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (902, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (903, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (904, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (905, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (906, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (907, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (908, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (909, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (910, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (911, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (912, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (913, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (914, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (915, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (916, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (917, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (918, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (919, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (920, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (921, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (922, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (923, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (924, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (925, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (926, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (927, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (928, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (929, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (930, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (931, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (932, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (933, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (934, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (935, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (936, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (937, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (938, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (939, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (940, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (941, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (942, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (943, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (944, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (945, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (946, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (947, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (948, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (949, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (950, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (951, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (952, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (953, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (954, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (955, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (956, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (957, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (958, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (959, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (960, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (961, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (962, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (963, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (964, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (965, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (966, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (967, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (968, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (969, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (970, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (971, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (972, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (973, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (974, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (975, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (976, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (977, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (978, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (979, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (980, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (981, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (982, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (983, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (984, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (985, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (986, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (987, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (988, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (989, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (990, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (991, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (992, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (993, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (994, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (995, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (996, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (997, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (998, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (999, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1000, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1001, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1002, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1003, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1004, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1005, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1006, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1007, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1008, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1009, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1010, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1011, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1012, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1013, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1014, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1015, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1016, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1017, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1018, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1019, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1020, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1021, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1022, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1023, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1024, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1025, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1026, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1027, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1028, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1029, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1030, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1031, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1032, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1033, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1034, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1035, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1036, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1037, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1038, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1039, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1040, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1041, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1042, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1043, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1044, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1045, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1046, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1047, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1048, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1049, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1050, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1051, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1052, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1053, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1054, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1055, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1056, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1057, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1058, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1059, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1060, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1061, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1062, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1063, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1064, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1065, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1066, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1067, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1068, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1069, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1070, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1071, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1072, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1073, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1074, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1075, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1076, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1077, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1078, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1079, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1080, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1081, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1082, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1083, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1084, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1085, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1086, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1087, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1088, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1089, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1090, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1091, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1092, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1093, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1094, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1095, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1096, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1097, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1098, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1099, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1100, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1101, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1102, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1103, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1104, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1105, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1106, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1107, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1108, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1109, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1110, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1111, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1112, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1113, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1114, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1115, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1116, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1117, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1118, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1119, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1120, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1121, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1122, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1123, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1124, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1125, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1126, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1127, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1128, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1129, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1130, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1131, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1132, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1133, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1134, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1135, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1136, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1137, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1138, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1139, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1140, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1141, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1142, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1143, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1144, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1145, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1146, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1147, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1148, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1149, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1150, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1151, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1152, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1153, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1154, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1155, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1156, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1157, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1158, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1159, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1160, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1161, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1162, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1163, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1164, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1165, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1166, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1167, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1168, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1169, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1170, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1171, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1172, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1173, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1174, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1175, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1176, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1177, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1178, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1179, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1180, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1181, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1182, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1183, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1184, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1185, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1186, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1187, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1188, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1189, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1190, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1191, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1192, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1193, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1194, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1195, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1196, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1197, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1198, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1199, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1200, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1201, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1202, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1203, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1204, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1205, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1206, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1207, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1208, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1209, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1210, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1211, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1212, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1213, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1214, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1215, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1216, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1217, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1218, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1219, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1220, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1221, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1222, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1223, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1224, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1225, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1226, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1227, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1228, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1229, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1230, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1231, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1232, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1233, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1234, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1235, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1236, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1237, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1238, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1239, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1240, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1241, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1242, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1243, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1244, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1245, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1246, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1247, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1248, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1249, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1250, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1251, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1252, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1253, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1254, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1255, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1256, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1257, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1258, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1259, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1260, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1261, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1262, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1263, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1264, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1265, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1266, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1267, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1268, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1269, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1270, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1271, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1272, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1273, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1274, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1275, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1276, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1277, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1278, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1279, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1280, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1281, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1282, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1283, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1284, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1285, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1286, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1287, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1288, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1289, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1290, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1291, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1292, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1293, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1294, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1295, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1296, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1297, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1298, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1299, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1300, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1301, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1302, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1303, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1304, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1305, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1306, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1307, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1308, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1309, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1310, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1311, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1312, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1313, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1314, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1315, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1316, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1317, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1318, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1319, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1320, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1321, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1322, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1323, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1324, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1325, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1326, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1327, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1328, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1329, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1330, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1331, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1332, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1333, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1334, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1335, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1336, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1337, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1338, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1339, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1340, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1341, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1342, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1343, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1344, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1345, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1346, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1347, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1348, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1349, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1350, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1351, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1352, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1353, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1354, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1355, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1356, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1357, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1358, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1359, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1360, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1361, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1362, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1363, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1364, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1365, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1366, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1367, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1368, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1369, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1370, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1371, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1372, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1373, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1374, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1375, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1376, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1377, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1378, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1379, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1380, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1381, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1382, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1383, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1384, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1385, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1386, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1387, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1388, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1389, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1390, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1391, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1392, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1393, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1394, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1395, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1396, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1397, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1398, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1399, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1400, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1401, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1402, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1403, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1404, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1405, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1406, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1407, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1408, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1409, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1410, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1411, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1412, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1413, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1414, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1415, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1416, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1417, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1418, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1419, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1420, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1421, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1422, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1423, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1424, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1425, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1426, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1427, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1428, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1429, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1430, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1431, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1432, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1433, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1434, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1435, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1436, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1437, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1438, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1439, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1440, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1441, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1442, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1443, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1444, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1445, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1446, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1447, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1448, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1449, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1450, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1451, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1452, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1453, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1454, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1455, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1456, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1457, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1458, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1459, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1460, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1461, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1462, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1463, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1464, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1465, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1466, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1467, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1468, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1469, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1470, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1471, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1472, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1473, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1474, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1475, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1476, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1477, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1478, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1479, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1480, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1481, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1482, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1483, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1484, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1485, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1486, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1487, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1488, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1489, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1490, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1491, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1492, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1493, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1494, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1495, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1496, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1497, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1498, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1499, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1500, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1501, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1502, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1503, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1504, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1505, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1506, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1507, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1508, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1509, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1510, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1511, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1512, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1513, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1514, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1515, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1516, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1517, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1518, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1519, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1520, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1521, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1522, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1523, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1524, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1525, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1526, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1527, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1528, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1529, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1530, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1531, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1532, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1533, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1534, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1535, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1536, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1537, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1538, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1539, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1540, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1541, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1542, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1543, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1544, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1545, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1546, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1547, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1548, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1549, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1550, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1551, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1552, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1553, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1554, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1555, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1556, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1557, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1558, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1559, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1560, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1561, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1562, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1563, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1564, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1565, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1566, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1567, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1568, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1569, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1570, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1571, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1572, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1573, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1574, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1575, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1576, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1577, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1578, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1579, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1580, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1581, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1582, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1583, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1584, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1585, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1586, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1587, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1588, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1589, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1590, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1591, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1592, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1593, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1594, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1595, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1596, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1597, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1598, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1599, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1600, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1601, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1602, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1603, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1604, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1605, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1606, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1607, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1608, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1609, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1610, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1611, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1612, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1613, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1614, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1615, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1616, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1617, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1618, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1619, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1620, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1621, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1622, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1623, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1624, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1625, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1626, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1627, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1628, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1629, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1630, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1631, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1632, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1633, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1634, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1635, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1636, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1637, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1638, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1639, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1640, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1641, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1642, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1643, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1644, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1645, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1646, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1647, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1648, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1649, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1650, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1651, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1652, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1653, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1654, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1655, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1656, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1657, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1658, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1659, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1660, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1661, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1662, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1663, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1664, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1665, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1666, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1667, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1668, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1669, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1670, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1671, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1672, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1673, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1674, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1675, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1676, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1677, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1678, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1679, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1680, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1681, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1682, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1683, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1684, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1685, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1686, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1687, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1688, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1689, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1690, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1691, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1692, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1693, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1694, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1695, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1696, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1697, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1698, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1699, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1700, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1701, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1702, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1703, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1704, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1705, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1706, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1707, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1708, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1709, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1710, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1711, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1712, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1713, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1714, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1715, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1716, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1717, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1718, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1719, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1720, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1721, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1722, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1723, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1724, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1725, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1726, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1727, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1728, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1729, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1730, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1731, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1732, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1733, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1734, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1735, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1736, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1737, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1738, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1739, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1740, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1741, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1742, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1743, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1744, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1745, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1746, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1747, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1748, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1749, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1750, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1751, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1752, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1753, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1754, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1755, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1756, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1757, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1758, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1759, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1760, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1761, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1762, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1763, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1764, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1765, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1766, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1767, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1768, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1769, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1770, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1771, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1772, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1773, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1774, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1775, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1776, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1777, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1778, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1779, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1780, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1781, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1782, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1783, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1784, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1785, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1786, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1787, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1788, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1789, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1790, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1791, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1792, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1793, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1794, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1795, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1796, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1797, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1798, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1799, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1800, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1801, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1802, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1803, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1804, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1805, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1806, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1807, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1808, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1809, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1810, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1811, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1812, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1813, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1814, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1815, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1816, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1817, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1818, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1819, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1820, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1821, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1822, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1823, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1824, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1825, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1826, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1827, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1828, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1829, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1830, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1831, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1832, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1833, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1834, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1835, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1836, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1837, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1838, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1839, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1840, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1841, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1842, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1843, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1844, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1845, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1846, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1847, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1848, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1849, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1850, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1851, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1852, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1853, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1854, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1855, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1856, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1857, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1858, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1859, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1860, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1861, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1862, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1863, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1864, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1865, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1866, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1867, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1868, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1869, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1870, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1871, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1872, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1873, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1874, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1875, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1876, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1877, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1878, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1879, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1880, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1881, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1882, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1883, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1884, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1885, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1886, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1887, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1888, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1889, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1890, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1891, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1892, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1893, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1894, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1895, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1896, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1897, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1898, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1899, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1900, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1901, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1902, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1903, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1904, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1905, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1906, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1907, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1908, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1909, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1910, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1911, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1912, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1913, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1914, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1915, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1916, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1917, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1918, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1919, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1920, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1921, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1922, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1923, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1924, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1925, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1926, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1927, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1928, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1929, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1930, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1931, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1932, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1933, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1934, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1935, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1936, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1937, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1938, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1939, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1940, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1941, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1942, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1943, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1944, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1945, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1946, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1947, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1948, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1949, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1950, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1951, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1952, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1953, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1954, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1955, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1956, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1957, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1958, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1959, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1960, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1961, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1962, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1963, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1964, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1965, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1966, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1967, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1968, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1969, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1970, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1971, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1972, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1973, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1974, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1975, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1976, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1977, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1978, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1979, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1980, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1981, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1982, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1983, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1984, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1985, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1986, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1987, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1988, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1989, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1990, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1991, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1992, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1993, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1994, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1995, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1996, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1997, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1998, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (1999, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2000, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2001, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2002, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2003, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2004, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2005, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2006, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2007, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2008, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2009, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2010, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2011, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2012, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2013, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2014, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2015, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2016, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2017, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2018, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2019, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2020, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2021, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2022, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2023, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2024, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2025, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2026, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2027, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2028, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2029, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2030, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2031, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2032, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2033, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2034, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2035, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2036, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2037, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2038, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2039, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2040, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2041, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2042, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2043, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2044, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2045, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2046, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2047, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2048, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2049, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2050, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2051, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2052, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2053, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2054, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2055, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2056, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2057, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2058, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2059, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2060, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2061, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2062, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2063, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2064, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2065, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2066, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2067, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2068, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2069, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2070, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2071, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2072, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2073, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2074, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2075, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2076, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2077, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2078, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2079, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2080, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2081, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2082, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2083, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2084, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2085, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2086, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2087, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2088, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2089, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2090, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2091, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2092, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2093, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2094, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2095, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2096, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2097, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2098, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2099, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2100, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2101, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2102, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2103, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2104, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2105, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2106, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2107, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2108, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2109, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2110, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2111, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2112, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2113, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2114, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2115, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2116, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2117, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2118, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2119, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2120, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2121, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2122, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2123, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2124, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2125, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2126, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2127, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2128, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2129, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2130, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2131, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2132, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2133, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2134, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2135, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2136, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2137, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2138, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2139, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2140, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2141, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2142, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2143, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2144, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2145, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2146, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2147, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2148, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2149, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2150, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2151, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2152, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2153, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2154, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2155, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2156, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2157, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2158, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2159, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2160, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2161, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2162, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2163, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2164, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2165, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2166, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2167, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2168, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2169, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2170, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2171, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2172, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2173, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2174, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2175, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2176, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2177, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2178, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2179, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2180, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2181, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2182, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2183, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2184, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2185, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2186, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2187, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2188, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2189, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2190, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2191, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2192, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2193, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2194, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2195, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2196, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2197, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2198, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2199, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2200, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2201, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2202, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2203, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2204, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2205, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2206, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2207, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2208, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2209, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2210, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2211, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2212, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2213, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2214, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2215, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2216, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2217, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2218, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2219, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2220, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2221, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2222, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2223, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2224, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2225, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2226, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2227, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2228, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2229, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2230, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2231, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2232, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2233, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2234, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2235, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2236, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2237, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2238, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2239, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2240, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2241, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2242, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2243, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2244, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2245, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2246, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2247, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2248, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2249, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2250, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2251, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2252, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2253, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2254, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2255, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2256, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2257, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2258, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2259, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2260, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2261, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2262, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2263, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2264, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2265, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2266, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2267, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2268, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2269, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2270, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2271, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2272, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2273, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2274, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2275, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2276, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2277, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2278, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2279, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2280, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2281, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2282, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2283, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2284, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2285, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2286, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2287, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2288, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2289, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2290, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2291, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2292, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2293, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2294, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2295, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2296, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2297, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2298, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2299, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2300, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2301, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2302, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2303, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2304, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2305, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2306, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2307, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2308, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2309, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2310, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2311, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2312, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2313, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2314, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2315, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2316, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2317, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2318, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2319, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2320, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2321, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2322, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2323, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2324, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2325, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2326, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2327, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2328, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2329, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2330, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2331, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2332, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2333, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2334, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2335, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2336, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2337, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2338, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2339, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2340, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2341, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2342, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2343, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2344, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2345, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2346, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2347, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2348, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2349, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2350, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2351, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2352, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2353, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2354, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2355, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2356, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2357, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2358, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2359, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2360, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2361, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2362, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2363, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2364, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2365, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2366, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2367, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2368, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2369, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2370, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2371, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2372, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2373, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2374, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2375, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2376, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2377, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2378, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2379, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2380, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2381, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2382, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2383, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2384, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2385, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2386, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2387, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2388, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2389, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2390, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2391, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2392, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2393, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2394, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2395, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2396, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2397, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2398, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2399, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2400, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2401, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2402, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2403, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2404, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2405, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2406, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2407, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2408, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2409, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2410, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2411, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2412, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2413, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2414, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2415, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2416, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2417, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2418, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2419, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2420, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2421, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2422, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2423, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2424, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2425, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2426, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2427, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2428, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2429, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2430, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2431, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2432, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2433, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2434, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2435, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2436, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2437, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2438, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2439, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2440, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2441, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2442, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2443, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2444, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2445, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2446, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2447, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2448, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2449, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2450, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2451, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2452, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2453, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2454, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2455, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2456, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2457, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2458, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2459, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2460, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2461, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2462, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2463, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2464, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2465, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2466, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2467, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2468, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2469, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2470, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2471, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2472, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2473, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2474, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2475, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2476, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2477, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2478, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2479, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2480, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2481, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2482, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2483, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2484, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2485, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2486, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2487, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2488, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2489, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2490, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2491, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2492, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2493, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2494, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2495, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2496, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2497, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2498, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2499, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2500, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2501, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2502, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2503, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2504, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2505, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2506, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2507, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2508, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2509, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2510, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2511, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2512, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2513, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2514, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2515, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2516, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2517, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2518, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2519, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2520, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2521, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2522, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2523, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2524, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2525, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2526, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2527, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2528, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2529, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2530, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2531, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2532, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2533, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2534, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2535, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2536, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2537, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2538, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2539, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2540, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2541, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2542, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2543, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2544, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2545, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2546, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2547, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2548, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2549, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2550, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2551, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2552, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2553, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2554, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2555, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2556, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2557, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2558, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2559, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2560, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2561, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2562, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2563, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2564, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2565, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2566, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2567, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2568, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2569, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2570, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2571, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2572, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2573, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2574, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2575, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2576, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2577, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2578, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2579, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2580, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2581, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2582, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2583, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2584, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2585, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2586, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2587, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2588, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2589, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2590, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2591, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2592, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2593, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2594, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2595, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2596, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2597, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2598, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2599, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2600, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2601, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2602, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2603, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2604, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2605, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2606, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2607, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2608, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2609, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2610, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2611, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2612, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2613, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2614, 4, '---
:no_self_notified: true
:activity_scope:
- issues
- changesets
- news
- documents
- files
- wiki_edits
- messages
- time_entries
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2615, 48, '---
:no_self_notified: ''1''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:recently_used_project_ids: ''68''
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2616, 49, '---
:no_self_notified: ''1''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2617, 50, '---
:no_self_notified: ''1''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2618, 51, '---
:no_self_notified: ''1''
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:recently_used_projects: 3
:history_default_tab: notes
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2619, 52, '---
:no_self_notified: true
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:recently_used_project_ids: ''72,75,74''
:gantt_zoom: 4
:gantt_months: 6
', false, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2620, 53, '---
:no_self_notified: true
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:recently_used_project_ids: ''74,42,75''
:gantt_zoom: 2
:gantt_months: 4
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2621, 54, '---
:no_self_notified: true
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:recently_used_project_ids: ''76,75,73''
:gantt_zoom: 2
:gantt_months: 6
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2622, 55, '---
:no_self_notified: true
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2623, 56, '---
:no_self_notified: true
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:recently_used_project_ids: ''76,49,67''
:gantt_zoom: 2
:gantt_months: 6
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (2624, 57, '---
:no_self_notified: true
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:recently_used_project_ids: ''76,46''
:gantt_zoom: 2
:gantt_months: 6
', true, 'Hanoi');
INSERT INTO public.user_preferences VALUES (3, 6, '---
:no_self_notified: ''1''
:my_page_layout:
  left:
  - issuesassignedtome
  right:
  - issuesreportedbyme
:my_page_settings: {}
:comments_sorting: asc
:warn_on_leaving_unsaved: ''1''
:textarea_font: ''''
:gantt_zoom: 4
:gantt_months: 2
:recently_used_project_ids: ''43,56,36''
:recently_used_projects: 3
:history_default_tab: notes
:bookmarked_project_ids: ''''
:notify_about_high_priority_issues: ''0''
:auto_watch_on:
- ''''
:toolbar_language_options: c,cpp,csharp,css,diff,go,groovy,html,java,javascript,objc,perl,php,python,r,ruby,sass,scala,shell,sql,swift,xml,yaml
:default_issue_query: ''''
:default_project_query: ''''
', false, '');


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

INSERT INTO public.users VALUES (1, 'admin', '6875559952668e88077720e023be8c9eaa65d127', 'Admin', 'Admin', true, 1, '2020-06-22 11:28:03+07', 'vi', NULL, '2020-02-14 08:20:34+07', '2020-02-14 08:22:08+07', 'User', 'all', '18ddf4db80ba4b8e7acf7a865f9b1d33', false, '2020-02-14 08:21:39+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (2, '', '', '', 'Anonymous users', false, 1, NULL, '', NULL, '2020-02-14 08:20:42+07', '2020-02-14 08:20:42+07', 'GroupAnonymous', '', NULL, false, NULL, NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (3, '', '', '', 'Non member users', false, 1, NULL, '', NULL, '2020-02-14 08:20:42+07', '2020-02-14 08:20:42+07', 'GroupNonMember', '', NULL, false, NULL, NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (4, '', '', '', 'Anonymous', false, 0, NULL, '', NULL, '2020-02-14 08:21:03+07', '2020-02-14 08:21:03+07', 'AnonymousUser', 'only_my_events', NULL, false, NULL, NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (5, 'nghiakhanh', '7f1d62aadbae33da8bb1fb424343132102dddfdd', 'Khánh Nghĩa', 'Nguyễn', true, 1, '2022-11-16 10:26:58+07', 'vi', NULL, '2020-02-14 08:50:52+07', '2022-06-16 12:33:57+07', 'User', 'only_my_events', '0bc16e3420beca2b2bd7edc17972f5c9', false, '2022-06-16 12:33:57+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (8, 'trantien12qn', 'a1ff643d8f184ae127d8dfa5b7c3633b215a2af8', 'Nhỏ', 'Tiến', false, 1, '2021-11-24 14:21:38+07', 'vi', NULL, '2020-02-21 16:51:03+07', '2020-07-17 17:01:29+07', 'User', 'only_my_events', 'ff1ceeafb026085730768039f7679cd5', false, '2020-02-21 16:51:03+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (9, 'thanhthao', 'c13e026dc1745edd97d1a93d29a9d8d83abc54f8', 'Thị Thanh Thảo', 'Huỳnh', false, 1, '2021-01-09 08:38:08+07', 'vi', NULL, '2020-02-21 16:56:40+07', '2020-07-15 10:06:50+07', 'User', 'only_my_events', '3497bea5821bfcd48fc4521c14e360ca', false, '2020-02-21 16:56:40+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (10, 'dungnguyn713', 'bb19104dbe60700e3f41bd15e24d4b28c705c259', 'Dung', 'Nguyễn', false, 1, '2021-06-05 02:39:27+07', 'vi', NULL, '2020-02-24 08:34:36+07', '2020-03-23 03:44:37+07', 'User', 'only_my_events', 'de8584b8404821cf2983f819d0c1afb9', false, '2020-03-23 03:39:05+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (12, 'pr.phamtinh@gmail.com', '787b7f911780edc23dd13b2fdcc8922cb722bd63', 'Vi Tính', 'Phạm', false, 1, '2021-06-02 09:14:56+07', 'en', NULL, '2020-03-17 16:12:27+07', '2020-06-26 11:11:12+07', 'User', 'only_my_events', '336324a34078d802d13cc9d602ee1654', false, '2020-03-17 16:12:26+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (13, 'dongtv', '1f583f9f0739aa989b3b56ea8a5d0929414336f2', 'Đồng', 'Trần', false, 1, '2021-05-11 07:01:09+07', 'vi', NULL, '2020-03-18 14:18:43+07', '2020-07-18 16:21:45+07', 'User', 'only_my_events', '0115236f49676bc4438fa4b58810f96b', false, '2020-03-18 14:18:43+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (14, 'trunggdt', '472a392ded7c6aca6077ff7b7c80ca123c51d14d', 'Thành Trung', 'Lê', false, 1, '2020-07-18 11:08:08+07', 'vi', NULL, '2020-03-21 15:38:23+07', '2020-07-18 11:07:18+07', 'User', 'only_my_events', '085960c7140441a982dd106f43dbd3c8', false, '2020-07-18 11:07:18+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (15, 'tuan1996qn', 'f4fd590a69400c7c621c2da4cc03c9c85cd3be55', 'Văn Tuấn', 'Hồ', false, 1, '2021-07-05 14:14:22+07', 'vi', NULL, '2020-04-06 13:50:32+07', '2020-11-19 15:25:42+07', 'User', 'only_my_events', 'a7c97c710621c0b11b316bdedd80af9a', false, '2020-11-19 15:25:42+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (16, 'nguyenvu', 'f3ee9e1a5ebee73803cd645cb6b634e283aaebd4', 'Trần Anh Vũ', 'Nguyễn', false, 1, '2021-04-28 11:23:43+07', 'vi', NULL, '2020-04-10 15:27:31+07', '2020-07-15 10:06:00+07', 'User', 'only_my_events', '6dd92efa250f5f124039befa8f6ae7ba', false, '2020-04-10 15:27:31+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (17, 'datgdt', 'fbef49f5002935c36ddd15f2311277644935518e', 'Đạt', 'Trần', false, 1, '2021-05-07 10:28:38+07', 'vi', NULL, '2020-04-10 15:27:37+07', '2020-07-15 10:00:44+07', 'User', 'only_my_events', 'd2b03ee9c95e25c8d4a370c3f8f7be83', false, '2020-07-13 15:42:53+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (19, 'tqtien27', 'cac4c988a3418dcfb3537d360b865ffbe7b73177', 'Tiến', 'Anh', false, 1, '2021-02-04 08:56:24+07', 'en', NULL, '2020-06-25 16:29:32+07', '2020-07-17 17:03:16+07', 'User', 'only_my_events', 'a46b230f2fb92844e7d682bad88ad022', false, '2020-06-25 16:29:32+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (20, 'vogianghia', '50525657f390200fa94f770417c1295d68969d16', 'Admin', 'Super', true, 1, '2020-11-17 11:17:18+07', 'vi', NULL, '2020-07-13 09:01:49+07', '2020-11-17 10:18:03+07', 'User', 'only_my_events', 'd69ebc8c540c33f38ae11159d8acd4f6', false, '2020-11-17 10:18:03+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (21, 'tranquanganh', 'caa4d4869e1a5389c49a47907540ed5a13bf9a06', 'Quang Ánh', 'Trần', true, 1, '2021-03-17 16:53:43+07', 'vi', NULL, '2020-07-13 13:34:18+07', '2020-07-13 14:21:33+07', 'User', 'only_my_events', '54c3279b3f92092d113534f33db92493', false, '2020-07-13 14:21:33+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (22, 'kieu', 'c52249e57f6fbc2ffbee4dfe057f5471293256ec', 'Lê Diễm Kiều', 'Hoàng', false, 1, '2020-11-23 08:44:33+07', 'vi', NULL, '2020-07-13 13:36:53+07', '2020-07-21 08:12:15+07', 'User', 'only_my_events', 'b3369adaed8e985ee46b6addf3aff92f', false, '2020-07-21 08:12:15+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (23, 'thanhdatmin', '7047eed8fb73fa5b5c19de431f88e469681607fb', 'Văn Thành', 'Nguyễn', false, 1, '2021-03-26 04:18:17+07', 'vi', NULL, '2020-07-13 13:44:03+07', '2020-07-15 10:06:26+07', 'User', 'only_my_events', '1ef7c4fca9c7a3a03fdf5e7186fae993', false, '2020-07-13 13:44:03+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (24, 'nguyencuong', '9b0d6b3b9993c4fedc369a20437a84cb6e57b9c9', 'Trung Cường', 'Nguyễn', false, 1, '2020-08-25 15:30:27+07', 'en', NULL, '2020-07-13 16:19:02+07', '2020-07-15 10:05:32+07', 'User', 'only_my_events', '486f796049b1e474de7a6b9c475c2748', false, '2020-07-13 16:19:02+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (26, 'hny91', '3a0007e1819a0c8b8876710c128ab7fbc2bdf1c2', 'Nam Yến', 'Huỳnh', false, 1, '2020-08-26 13:42:05+07', 'vi', NULL, '2020-07-15 09:02:00+07', '2020-07-15 09:25:24+07', 'User', 'only_my_events', 'b6c4e7b6dea9362c1004484277065589', false, '2020-07-15 09:25:24+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (27, 'kimqui88', '369f25fe3fe1775706c9eb8df734980d0e38e95f', 'Kim Qui', 'Lương', false, 1, '2020-07-24 15:22:34+07', 'vi', NULL, '2020-07-15 09:03:02+07', '2020-07-15 09:09:34+07', 'User', 'only_my_events', 'd7051da2e050ca4b2987d47507e2f9bc', false, '2020-07-15 09:09:34+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (28, 'QuyenSubi', '0976aceeb865432e5ee3d8cc0e50cc549129cf33', 'Thu Quyên', 'Nguyễn', false, 1, '2020-11-30 08:46:34+07', 'vi', NULL, '2020-07-15 09:04:58+07', '2020-07-15 09:09:22+07', 'User', 'only_my_events', 'b9cf3c7ebc8b4479c8e5f4129b091b42', false, '2020-07-15 09:09:22+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (29, 'hoangvuBPO', '2dd7876b673bccd6620e8528af007018e5c48ab7', 'Hoàng Vũ', 'Phan', false, 1, '2021-03-05 03:02:41+07', 'vi', NULL, '2020-07-15 09:07:13+07', '2020-11-14 15:24:01+07', 'User', 'only_my_events', '142cf1e6dfa116ce5ac54501417b3867', false, '2020-07-15 02:13:12+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (30, 'levubpo', '2ffcab1e8e985f10a87a850127be7753f45d4b19', 'Lê Vũ', 'Phan', false, 1, '2020-08-14 15:52:24+07', 'vi', NULL, '2020-07-15 09:08:54+07', '2020-07-15 10:04:29+07', 'User', 'only_my_events', '2d679242155b2d96fb94be11d26637fd', false, '2020-07-15 09:17:08+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (31, 'mynhonbpo', 'a8548808953503bb3b4478181b35d3ae5ba1317d', 'Mỹ Nhơn', 'Trần Lê', false, 1, '2020-08-25 10:41:54+07', 'vi', NULL, '2020-07-15 09:10:30+07', '2020-07-15 09:17:20+07', 'User', 'only_my_events', 'b2f8af77d536c61328100dc31da2034e', false, '2020-07-15 09:17:20+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (32, 'tiensy', '02e86ab2cf12504ed06bf7a051dc544c482ac7fc', 'Tiến Sỹ', 'Nguyễn', false, 1, '2021-06-19 07:17:15+07', 'vi', NULL, '2020-07-15 02:13:29+07', '2020-07-15 09:57:21+07', 'User', 'only_my_events', '644820152192124ed3a29588b616619d', false, '2020-07-15 09:57:21+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (33, 'quochuygis', '65508cfc33ffa81daeb33e8731eeed8d53464648', 'Quốc Huy', 'Nguyễn', false, 1, '2021-04-28 13:40:32+07', 'vi', NULL, '2020-07-15 09:21:15+07', '2020-07-18 10:47:42+07', 'User', 'all', '122c5209f0c23efc8e3a89150f11efd4', false, '2020-07-18 10:46:32+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (34, 'taismile', '665b81bafb54f068c1eeaa48ab1fd496fd83806e', 'Tuấn Tài', 'Phan', false, 1, '2020-12-20 11:25:14+07', 'vi', NULL, '2020-07-18 10:21:04+07', '2020-07-18 11:05:50+07', 'User', 'only_my_events', 'f52a994c6180912ca559feac067ed9da', false, '2020-07-18 11:05:50+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (35, 'yphuong', '5999465c48d2f401b5fdf345c420595fe424eba5', 'Ý Phương', 'Lê', false, 1, '2020-11-30 06:39:36+07', 'vi', NULL, '2020-07-18 16:20:49+07', '2020-07-20 09:59:27+07', 'User', 'only_my_events', '68acb71764cb0b521d8f4fca8aa1cd7f', false, '2020-07-20 09:59:27+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (36, '', '', '', 'Thông báo Công ty', false, 1, NULL, '', NULL, '2020-07-30 09:43:19+07', '2020-07-30 09:43:19+07', 'Group', '', NULL, false, NULL, NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (37, 'ngoctien', '5a20cbed9bca0b51217ab5ae31b6a89d5df8a15d', 'Ngọc Tiến', 'Đặng', false, 1, '2021-12-02 08:03:22+07', 'vi', NULL, '2020-08-19 13:13:50+07', '2020-08-19 13:14:59+07', 'User', 'only_my_events', '5e662e913ae1d22ba9dd22c5abfee919', false, '2020-08-19 13:13:50+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (38, 'ToanNC7', '725b0f966a9876a7f6e08d6bca7b0c52d48f935e', 'Công Toàn', 'Nguyễn', false, 1, '2023-02-23 09:47:54+07', 'vi', NULL, '2020-08-25 08:16:56+07', '2020-08-25 08:17:18+07', 'User', 'only_my_events', '123be29595f0c8c75289831ed4483715', false, '2020-08-25 08:16:56+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (39, 'vovanviettqt2016', 'f07dc00171cf1284867395dd13829d8f9fdd13a0', 'Van Viet', 'Vo', false, 1, '2021-07-19 09:03:50+07', 'vi', NULL, '2020-09-01 08:12:29+07', '2020-09-01 08:52:20+07', 'User', 'only_my_events', 'ae124d10b1f72e160b3ca3089ed37b8d', false, '2020-09-01 08:12:29+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (40, 'gamgdt', 'fb73bc547a4b799f68b03fa91e661bbbe08308ee', 'Hồng Gấm', 'Nguyễn', false, 1, '2021-07-31 17:44:46+07', 'vi', NULL, '2020-09-03 09:11:21+07', '2021-05-11 01:05:46+07', 'User', 'only_my_events', '7b52b39f5179b2c8057670a2a5ae92ee', false, '2021-05-11 01:05:46+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (41, 'lequy0205', 'ebf4ef700969be04b6640d5c098005638bd38e99', 'Văn Quý', 'Lê ', false, 1, '2021-11-24 14:28:20+07', 'vi', NULL, '2020-09-03 09:12:18+07', '2020-09-03 09:54:19+07', 'User', 'only_my_events', '27efd03806fa3f3077baeacfa0c66d26', false, '2020-09-03 09:12:18+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (43, 'quocdunggis', '99575dfa16c0b151a8c3ec1051d60f1df72babce', 'Dung', 'Quoc', false, 1, '2020-11-13 07:55:31+07', 'vi', NULL, '2020-11-12 15:01:35+07', '2020-11-13 07:56:38+07', 'User', 'only_my_events', '057d0611fcc7e98a6a472c708d849c17', false, '2020-11-13 07:56:38+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (44, 'hongphucgis', 'da4c470cbe5da239421fb8a5abc5b37b566c23df', 'Phúc', 'Hồng', false, 1, '2020-12-04 16:10:55+07', 'vi', NULL, '2020-11-12 15:06:36+07', '2020-11-12 17:49:32+07', 'User', 'only_my_events', '7dabef69eca02235406141f3234de43b', false, '2020-11-12 17:49:32+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (45, 'thuhuongbpo', '3ac3ff0733ad6ace45890eca8dda6571ce201db0', 'Hương', 'Thu', false, 1, '2020-11-17 11:35:30+07', 'vi', NULL, '2020-11-16 08:48:30+07', '2020-11-17 11:37:36+07', 'User', 'only_my_events', 'cf59451368eb56d851666aa59363177f', false, '2020-11-17 11:37:36+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (47, 'trangkt', '3e819dadacc45cae8674d14da0ca8a62a00dc315', 'Kiều Trang', 'Lê ', false, 1, NULL, 'vi', NULL, '2020-12-09 09:15:02+07', '2020-12-09 09:15:02+07', 'User', 'only_my_events', 'fb4200feeafabbeb54d0ad383f2d0152', true, '2020-12-09 09:15:02+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (48, 'hoanglygdt', 'c539bd2ee8a91fa85c5461e954244b9d3fc878e3', 'Hoang', 'Ly', false, 1, '2021-03-24 01:46:59+07', 'vi', NULL, '2021-03-17 16:42:16+07', '2021-03-17 16:42:16+07', 'User', 'only_my_events', '85dc3f87c159c742a25ae070527085e3', false, '2021-03-17 16:42:16+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (49, 'thanhngocgdt', '8d906bd6f4c06104628ad1d0e6ca945c1a165f55', 'Ngọc', 'Thanh', false, 1, NULL, 'vi', NULL, '2021-03-17 16:45:40+07', '2021-03-17 16:45:40+07', 'User', 'only_my_events', 'dc06f330f9dbea7a7a0adb8ad1d85d3b', false, '2021-03-17 16:45:40+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (50, 'hongdiemgdt', '21bbb8057e7b86899ae59d52133e684219a119dd', 'Diễm', 'Hồng', false, 1, NULL, 'vi', NULL, '2021-03-17 16:46:09+07', '2021-03-17 16:46:09+07', 'User', 'only_my_events', '2f696b7682a2c338d413141ccecb011d', false, '2021-03-17 16:46:09+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (51, 'hieuttlt', '4c9cd4d4d63f76d94592c3598dd2864ccd6a2e9b', 'Hiếu', 'TTLT', false, 1, NULL, 'vi', NULL, '2021-03-17 16:48:30+07', '2021-03-17 16:48:30+07', 'User', 'only_my_events', 'f8ba62758a0c018a1e4c902b6601a706', false, '2021-03-17 16:48:30+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (52, 'duynam89', '00924026740d694ac80174ccbdb164271a2bbac5', 'Duy Nam', 'Phạm', false, 1, '2021-07-20 14:44:03+07', 'vi', NULL, '2021-06-02 08:14:51+07', '2021-06-02 08:16:04+07', 'User', 'only_my_events', 'dc4e774c4f29c5783d84ff5a5473e32b', false, '2021-06-02 08:14:51+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (53, 'bienvanle204@gmail.com', '35ac578c72c6559529ec2a733c25aa13607f7dd2', 'Văn Biển', 'Lê ', false, 1, '2021-07-17 18:57:46+07', 'vi', NULL, '2021-07-12 03:17:35+07', '2021-07-12 11:01:43+07', 'User', 'only_my_events', '3c0272b00c71574770b79bebdf2aff12', false, '2021-07-12 03:17:35+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (54, 'lequocdat', '945c3765e76ab63d7c562a7aad6ba3db9445377d', 'Quốc Đạt', 'Lê', false, 1, '2022-10-28 15:18:32+07', 'vi', NULL, '2021-07-16 14:18:20+07', '2021-07-16 16:52:41+07', 'User', 'only_my_events', '1742025e24dd1988e6086b9b01d85b08', false, '2021-07-16 14:18:20+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (55, 'hieu', '9ac905d56ec01dc2ecdccca645837b8b2eec3d17', 'Thị Hiếu', 'Nguyễn ', false, 1, '2022-06-17 13:04:22+07', 'vi', NULL, '2022-06-16 13:24:07+07', '2022-06-16 13:25:08+07', 'User', 'only_my_events', '5b3f326e504a7ffca70fcb058588edb9', false, '2022-06-16 13:24:07+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (56, 'mathanhhoang', '97eb029af9a869174307189dcf45137f226fc1fc', 'Thanh Hoàng', 'Ma', false, 1, '2022-12-05 15:50:44+07', 'vi', NULL, '2022-06-16 13:25:22+07', '2022-06-16 13:28:15+07', 'User', 'only_my_events', '2858154b98077b8025c180faeddacdc8', false, '2022-06-16 13:25:22+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (57, 'hungthinh', '76443f3e4355de23261b2b412485d4a83aa64b5a', 'Lê', 'Thịnh', false, 1, '2022-11-17 16:11:01+07', 'vi', NULL, '2022-10-27 10:20:06+07', '2022-10-27 10:30:07+07', 'User', 'only_my_events', 'ad348a42952520388a4abb8cac866b4b', false, '2022-10-27 10:20:06+07', NULL, NULL, NULL, false);
INSERT INTO public.users VALUES (6, 'lhngoc', '5d81eda8fc31abb45a144dbdb3ae23e54d0e5e4e', 'Hồng Ngọc', 'Lê', true, 1, '2023-11-24 13:50:42.488892+07', 'vi', NULL, '2020-02-14 09:41:34+07', '2023-03-13 13:24:15.578115+07', 'User', 'only_my_events', '4db7021f6e6919f96331fe9199918f7a', false, '2020-02-15 09:41:46+07', NULL, '6AX2YSCPVASBH4B3TRIMWT47CS52HJF6', NULL, false);


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

INSERT INTO public.versions VALUES (1, 11, 'Sprint #1 (10/07 - 04/08)', '', '2020-08-04', '2020-07-28 16:48:06+07', '2020-07-29 13:43:15+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (2, 11, 'Sprint #2 (05/08 - 22/08)', '', '2020-08-22', '2020-07-28 17:00:19+07', '2020-07-29 13:43:22+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (3, 11, 'Sprint #3 (24/08 - 12/09)', '', '2020-09-12', '2020-07-28 17:00:29+07', '2020-09-05 09:48:58+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (4, 11, 'Sprint #4 (14/09 - 21/09)', '', '2020-09-19', '2020-07-29 08:14:30+07', '2020-09-05 10:05:57+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (5, 11, 'Backlog', '', NULL, '2020-07-29 09:10:14+07', '2020-07-29 13:28:06+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (6, 4, 'Sprint #1 (03/08 - 08/08)', '', '2020-08-08', '2020-08-03 08:12:44+07', '2020-08-03 08:12:44+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (7, 4, 'Sprint #2 (10/08 - 15/08)', '', '2020-08-15', '2020-08-03 08:13:07+07', '2020-08-03 08:21:34+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (8, 4, 'Sprint #3 (17/08 - 22/08)', '', '2020-08-22', '2020-08-03 08:13:27+07', '2020-08-03 08:21:38+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (9, 40, 'Sprint #1 (03/08 - 15/08)', '', '2020-08-15', '2020-08-06 10:21:44+07', '2020-08-06 10:21:44+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (10, 40, 'Sprint #2 (17/08 - 22/08)', '', '2020-08-22', '2020-08-11 09:32:22+07', '2020-08-11 09:32:22+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (11, 8, 'Sprint #1 (03/08 - 15/08)', '', '2020-08-15', '2020-08-14 09:50:50+07', '2020-08-14 09:50:50+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (12, 8, 'Sprint #2 (17/08 - 22/08)', '', '2020-08-22', '2020-08-14 09:51:39+07', '2020-08-14 09:51:39+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (13, 4, 'Sprint #4 (24/08 - 29/08)', 'Demo chức năng vào thứ 2, 31/08/2020', '2020-08-29', '2020-08-14 10:24:18+07', '2020-08-29 10:34:17+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (14, 44, 'Sprint #1 (17/08 - 22/08)', '', '2020-08-22', '2020-08-25 08:23:06+07', '2020-08-25 16:33:42+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (15, 44, 'Sprint #2 (24/08 - 29/08)', '', '2020-08-29', '2020-08-25 08:23:28+07', '2020-08-25 16:33:50+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (16, 44, 'Sprint #3 (31/09 - 05/09)', '', '2020-09-05', '2020-08-25 08:23:49+07', '2020-08-25 16:33:56+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (17, 44, 'Sprint #4 (07/09 - 12/09)', '', '2020-09-12', '2020-08-25 08:24:35+07', '2020-08-25 16:34:03+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (18, 4, 'Sprint #5 (31/08 - 05/09)', '', '2020-09-05', '2020-08-27 07:56:22+07', '2020-08-27 07:56:28+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (19, 45, 'Sprint #1 (31/08 - 05/09)', '', '2020-09-05', '2020-08-28 08:37:49+07', '2020-08-28 08:37:55+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (20, 45, 'Sprint #2 (07/09 - 12/09)', '', '2020-09-12', '2020-08-28 08:38:35+07', '2020-09-03 15:19:37+07', '', 'open', 'tree');
INSERT INTO public.versions VALUES (21, 44, 'Product backlog', '', NULL, '2020-08-31 13:54:16+07', '2020-08-31 13:54:16+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (23, 45, 'Sprint #3 (14/09 - 19/09)', '', '2020-09-19', '2020-09-03 13:45:27+07', '2020-09-03 15:19:58+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (24, 1, 'Sprint #1 (07/09 - 12/09)', '', '2020-09-12', '2020-09-03 14:27:39+07', '2020-09-03 14:27:39+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (25, 4, 'Sprint #6 (07/09-12/09)', '', '2020-09-12', '2020-09-08 10:09:23+07', '2020-09-08 10:10:48+07', '', 'open', 'descendants');
INSERT INTO public.versions VALUES (26, 28, 'Sprint #1 (07/09 - 12/09)', '', '2020-09-12', '2020-09-09 08:35:20+07', '2020-09-09 08:35:20+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (27, 28, 'Sprint #2 (14/09 - 19/09)', '', '2020-09-19', '2020-09-09 08:35:42+07', '2020-09-09 08:35:42+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (28, 28, 'Backlog', '', NULL, '2020-09-09 08:39:06+07', '2020-09-09 08:39:06+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (29, 46, 'Sprint #1 (14/09 - 19/09)', '', '2020-09-19', '2020-09-11 11:03:54+07', '2020-09-23 14:14:51+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (30, 46, 'Sprint #2 (21/09 - 26/09)', '', '2020-09-26', '2020-09-11 11:04:26+07', '2020-10-14 08:49:52+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (31, 46, 'Sprint #3 (28/09 - 03/10)', '', '2020-10-03', '2020-09-11 11:06:36+07', '2020-10-14 08:49:57+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (32, 46, 'Sprint #4 (05/10 - 10/10)', '', '2020-10-10', '2020-09-11 11:07:15+07', '2020-10-14 08:50:05+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (33, 46, 'Product backlog', '', NULL, '2020-09-11 15:48:58+07', '2020-09-11 15:48:58+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (34, 4, 'Spint #7 (12/09-19/09)', '', '2020-09-19', '2020-09-17 15:14:09+07', '2020-09-17 15:14:09+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (35, 4, 'Spint #8 (21/09-28/09)', '', '2020-09-28', '2020-09-25 08:43:09+07', '2020-09-25 08:43:09+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (36, 4, 'Sprint #9 (28/09-03/10)', '', '2020-10-03', '2020-09-28 08:16:00+07', '2020-09-28 08:16:00+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (37, 4, 'Sprint #10 (05/10-11/10)', '', '2020-10-10', '2020-10-05 11:24:26+07', '2020-10-19 08:28:13+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (38, 46, 'Sprint #5 (12/10 - 17/10)', '', '2020-10-17', '2020-10-06 08:46:00+07', '2020-10-27 10:03:36+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (39, 47, 'Sprint #1 (05/10 - 10/10)', '', '2020-10-10', '2020-10-06 10:48:15+07', '2020-10-06 10:48:15+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (40, 47, 'Sprint #2 (12/10 - 17/10)', '', '2020-10-17', '2020-10-06 11:06:49+07', '2020-10-06 11:06:49+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (41, 47, 'Sprint #3 (19/10 - 24/10)', '', '2020-10-24', '2020-10-06 11:07:40+07', '2020-10-06 11:07:40+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (42, 50, 'Tháng 10', '', '2020-10-24', '2020-10-10 10:50:23+07', '2020-10-10 10:50:23+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (43, 50, 'Tháng 11', '', '2020-11-21', '2020-10-10 10:50:56+07', '2020-10-10 10:50:56+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (44, 50, 'Tháng 12', '', '2020-12-24', '2020-10-10 10:51:15+07', '2020-12-15 07:25:05+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (45, 4, 'Sprint #11 (12/10-18/10)', '', '2020-10-18', '2020-10-12 08:18:16+07', '2020-10-19 08:28:32+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (46, 51, 'Quản lý vận hành', '', NULL, '2020-10-12 15:45:12+07', '2020-10-12 15:48:28+07', '', 'open', 'tree');
INSERT INTO public.versions VALUES (47, 51, 'Sprint #1 (12/10-17/10)', '', '2020-10-17', '2020-10-12 15:47:18+07', '2020-10-12 16:29:20+07', '', 'open', 'tree');
INSERT INTO public.versions VALUES (48, 46, 'Sprint #6 (19/10 - 24/10)', '', '2020-10-24', '2020-10-14 08:50:41+07', '2020-10-27 10:03:53+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (49, 4, 'Sprint #12 (19/10-25/10)', '', '2020-10-25', '2020-10-19 08:29:03+07', '2020-10-19 08:29:03+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (50, 51, 'Sprint #2: (19/10 - 24-10)', '(19/10 - 24/10)', '2020-10-24', '2020-10-19 14:22:18+07', '2020-10-20 16:26:23+07', '', 'open', 'tree');
INSERT INTO public.versions VALUES (51, 46, 'Sprint #7 (26/10 - 31/10)', '', '2020-10-31', '2020-10-20 08:32:17+07', '2020-11-02 08:18:46+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (52, 51, 'Sprint #3 (26/10 - 31/10)', '', '2020-10-31', '2020-10-20 16:25:09+07', '2020-10-20 16:26:48+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (53, 4, 'Sprint #13 (26/10-01/11)', '', NULL, '2020-10-26 08:20:31+07', '2020-10-26 08:20:31+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (54, 46, 'Sprint #8 (02/11 - 07/11)', '', '2020-11-07', '2020-10-31 14:02:36+07', '2020-11-09 15:08:38+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (55, 42, 'Sprint #1 (02/11-07/11)', 'Thiết kế Database, Dựng source project.', '2020-11-07', '2020-11-02 08:26:41+07', '2020-12-16 15:44:25+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (56, 4, 'Sprint #14 (02/11-08/11)', '', '2020-11-08', '2020-11-03 08:17:22+07', '2020-11-03 08:19:35+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (57, 42, 'Sprint #2 (9/11-14/11)', '', '2020-11-19', '2020-11-05 11:09:24+07', '2020-12-16 15:44:29+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (58, 46, 'Sprint #9 (09/11 - 14/11)', '', '2020-11-14', '2020-11-05 11:12:01+07', '2020-11-16 08:46:48+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (59, 55, 'Sprint #1: (2/11 - 7/11)', '', NULL, '2020-11-07 16:12:43+07', '2020-11-07 16:13:32+07', '', 'open', 'tree');
INSERT INTO public.versions VALUES (60, 46, 'Sprint #10 (16/11 - 21/11)', '', '2020-11-21', '2020-11-14 09:33:04+07', '2020-11-30 08:37:25+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (61, 42, 'Sprint #3 (16/11 - 21/11)', 'API tổng hợp dữ liệu', '2020-11-21', '2020-11-14 09:55:19+07', '2020-12-16 15:44:34+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (62, 46, 'Sprint #11 (23/11 - 28/11)', '', '2020-11-28', '2020-11-20 09:05:20+07', '2020-11-30 08:37:29+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (63, 42, 'Sprint #4 (23/11-28/11)', '', '2020-11-28', '2020-11-23 08:02:53+07', '2020-12-16 15:44:38+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (64, 42, 'Sprint #5 (30/11 - 05/12)', '', '2020-12-05', '2020-11-28 09:13:23+07', '2020-12-16 15:44:42+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (65, 46, 'Sprint #12 (30/11 - 05/12)', '', '2020-12-05', '2020-11-28 09:29:46+07', '2020-12-11 13:58:56+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (66, 42, 'Sprint #6 (07/12-12/12)', '', '2020-12-12', '2020-12-07 08:21:07+07', '2020-12-16 15:44:47+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (67, 46, 'Web Sprint #13 (07/12 - 12/12)', '', '2020-12-12', '2020-12-07 09:30:11+07', '2020-12-12 16:53:39+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (68, 46, 'Mobile Sprint #13 (07/12 - 12/12)', '', '2020-12-12', '2020-12-08 08:31:16+07', '2020-12-14 11:51:29+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (69, 46, 'Web Sprint #14 (14/12 - 19/12)', '', '2020-12-19', '2020-12-11 13:59:23+07', '2020-12-26 16:08:42+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (70, 46, 'Mobile Sprint #14 (14/12 - 19/12)', '', '2020-12-19', '2020-12-11 13:59:51+07', '2020-12-26 16:06:36+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (71, 42, 'Sprint #7 (14/12 - 19/12)', '', '2020-12-19', '2020-12-12 16:26:06+07', '2020-12-28 14:15:02+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (72, 46, 'Web Sprint #15 (21/12 - 26/12)', '', '2020-12-26', '2020-12-14 11:52:14+07', '2021-01-12 08:27:43+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (73, 46, 'Mobile Sprint #15 (21/12 - 26/12)', '', '2020-12-26', '2020-12-14 11:52:42+07', '2021-01-12 08:27:36+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (74, 42, 'Sprint #8 (21/12 - 26/12)', '', '2020-12-26', '2020-12-16 15:45:29+07', '2021-01-04 14:20:41+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (75, 42, 'Product backlog', '', NULL, '2020-12-16 15:47:09+07', '2020-12-16 15:47:09+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (76, 42, 'Sprint #9 (28/12 - 02/01)', '', '2021-01-02', '2020-12-19 14:15:13+07', '2021-01-04 14:20:12+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (77, 42, 'Sprint #10 (04/01 - 09/01)', '', '2021-01-09', '2020-12-19 14:15:50+07', '2021-01-13 08:54:38+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (78, 46, 'Mobile Sprint #16 (27/12 - 31/12)', '', '2020-12-31', '2020-12-26 16:26:48+07', '2021-01-12 08:27:48+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (79, 46, 'Web Sprint #16 (27/12 - 31/12)', '', '2020-12-31', '2020-12-26 16:29:21+07', '2021-01-12 08:27:53+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (80, 42, 'Cài đặt báo cáo', '', NULL, '2020-12-28 15:01:34+07', '2021-01-16 11:30:27+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (81, 46, 'Web Sprint #17 (04/01 - 09/01)', '', '2021-01-09', '2021-01-04 13:24:02+07', '2021-01-12 08:28:07+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (82, 46, 'Mobile Sprint #17 (04/01 - 09/01)', '', '2021-01-09', '2021-01-04 13:24:58+07', '2021-01-12 08:27:58+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (83, 42, 'Sprint #11 (11/01 - 16/01)', '', '2021-01-16', '2021-01-04 14:21:52+07', '2021-01-20 13:49:14+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (84, 42, 'Cài đặt nhóm đối tượng', '', NULL, '2021-01-05 15:11:29+07', '2021-01-05 15:11:29+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (85, 46, 'Web Sprint #18 (11/01 - 16/01)', '', '2021-01-16', '2021-01-12 08:28:37+07', '2021-05-07 10:25:13+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (86, 42, 'Sprint #12 (18/01 - 23/01)', '', '2021-01-23', '2021-01-16 11:30:53+07', '2021-07-05 08:32:26+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (87, 42, 'Sprint #13 (25/01 - 30/01)', '', '2021-01-30', '2021-01-16 11:31:23+07', '2021-07-05 08:32:34+07', '', 'locked', 'none');
INSERT INTO public.versions VALUES (88, 48, 'sprint #1 (19/1-23/1)', 'Cập nhật thêm một số tính năng( sau khi demo)', '2021-01-19', '2021-01-19 11:14:03+07', '2021-01-19 11:14:03+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (89, 59, 'Sprint #1 (25/01 - 30/01)', '', '2021-01-30', '2021-01-19 15:58:05+07', '2021-01-19 15:58:05+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (90, 59, 'Product backlog', '', NULL, '2021-01-23 08:44:16+07', '2021-01-23 08:44:16+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (91, 42, 'Sprint #14 (01/02 - 06/02)', '', '2021-02-06', '2021-01-26 09:09:44+07', '2021-07-05 08:32:40+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (92, 59, 'Sprint #2 (01/02-06/02)', 'Danh mục', '2021-02-06', '2021-01-26 14:22:47+07', '2021-01-29 08:37:43+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (93, 40, 'sprint #3', '', '2021-02-06', '2021-01-30 08:21:16+07', '2021-01-30 08:21:16+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (94, 59, 'BACKEND (Sprint #1 25/01 - 30-01)', '', NULL, '2021-01-30 09:58:49+07', '2021-01-30 10:17:28+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (95, 59, 'sprint #3 (17/2-20/2)', 'Cập nhật thêm tính năng', NULL, '2021-02-22 08:10:11+07', '2021-02-23 13:43:02+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (96, 59, 'sprint #4 (22/2-27/2)', '', NULL, '2021-02-23 13:44:50+07', '2021-02-23 13:44:50+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (97, 42, 'Sprint #15 (22/02 - 27/02)', '', '2021-02-27', '2021-02-25 03:24:08+07', '2021-07-05 08:32:45+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (98, 42, 'Sprint #16 (01/03 - 06/03)', '', '2021-03-06', '2021-02-25 03:24:32+07', '2021-07-05 08:32:50+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (99, 59, 'sprint #5 ( 1/3 - 6/3) Báo cáo Thu-Chi', '', '2021-03-06', '2021-03-06 14:20:25+07', '2021-03-09 09:07:10+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (100, 42, 'Sprint #17 (08/03 - 13/03)', '', '2021-03-13', '2021-03-08 10:16:50+07', '2021-07-05 08:32:55+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (101, 59, 'sprint #6 (08/3-13/3)', '', '2021-03-08', '2021-03-09 09:03:20+07', '2021-03-09 09:07:30+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (102, 42, 'Sprint #18 (15/03 - 20/03)', '', '2021-03-20', '2021-03-15 02:15:57+07', '2021-07-05 08:33:00+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (103, 42, 'Sprint #19 (22/03 - 27/03)', '', '2021-03-27', '2021-03-16 04:07:49+07', '2021-07-05 08:33:05+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (104, 59, 'sprint #7 (29/3-3/4)', '', '2021-03-29', '2021-03-27 15:41:43+07', '2021-03-27 15:41:43+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (105, 42, 'Sprint #20 (28/03 - 04/04)', '', '2021-04-04', '2021-03-27 16:48:28+07', '2021-07-05 08:33:09+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (106, 70, 'Sprint #1 (01/04 - 03/04)', '', '2021-04-03', '2021-04-01 09:01:24+07', '2021-04-01 09:01:24+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (107, 70, 'Sprint #2 (05/04 - 10/04)', '', '2021-04-10', '2021-04-01 09:01:48+07', '2021-04-01 09:01:48+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (108, 70, 'Product backlog', '', NULL, '2021-04-01 09:01:55+07', '2021-04-01 09:01:55+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (109, 59, 'sprint #8 (05/4-10/4)', '', '2021-04-05', '2021-04-05 04:02:28+07', '2021-04-05 04:02:28+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (110, 69, 'sprint #1 (05/04-10/04)', 'Dựng source - Phân quyền', '2021-04-05', '2021-04-05 14:50:14+07', '2021-04-05 14:50:14+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (111, 42, 'Sprint #21 (5/4 - 11/04)', '', '2021-04-11', '2021-04-05 15:34:45+07', '2021-07-05 08:33:14+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (113, 70, 'Sprint #3 (12/04 - 17/04)', '', '2021-04-17', '2021-04-12 08:40:39+07', '2021-04-12 08:40:39+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (114, 69, 'android', '', NULL, '2021-04-15 02:16:38+07', '2021-04-15 02:16:38+07', '', 'open', 'tree');
INSERT INTO public.versions VALUES (115, 69, 'sprint #2 (12/4-17/4)', '', '2021-04-12', '2021-04-19 01:50:21+07', '2021-04-19 01:50:21+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (116, 69, 'sprint #3 (19/4-24/4)', '', '2021-04-19', '2021-04-19 01:58:54+07', '2021-04-19 01:58:54+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (117, 70, 'Sprint #4 (19/4/2021 - 24/04/2021)', '', NULL, '2021-04-20 01:32:01+07', '2021-04-20 01:32:01+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (118, 46, 'Sprint #1 (03/05/2021 - 08/05/2021)', '', '2021-05-08', '2021-05-03 14:22:10+07', '2021-05-07 10:25:27+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (119, 71, 'Sprint #1 (03/05/2021 - 08/05/2021)', '', '2021-05-08', '2021-05-07 13:56:28+07', '2021-05-10 02:53:19+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (120, 46, 'Sprint #2 (10/05/2021 - 15/05/2021)', '', '2021-05-15', '2021-05-10 08:31:44+07', '2021-05-10 10:10:41+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (121, 71, 'Sprint #2 (10/05/2021 - 15/05/2021)', '', '2021-05-15', '2021-05-10 02:52:36+07', '2021-05-10 02:53:02+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (122, 46, 'Sprint #3 (17/05/2021 - 22/05/2021)', '', '2021-05-22', '2021-05-10 10:16:37+07', '2021-05-10 10:16:37+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (123, 70, 'sprint #5 (10/5/2021 - 15/5/2021)', '', '2021-05-15', '2021-05-11 03:05:50+07', '2021-05-11 03:05:50+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (128, 72, 'Sprint  #2 (07/06 - 12/06)', 'Dụng source mobile', '2021-06-12', '2021-05-15 03:18:51+07', '2021-07-05 02:03:04+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (129, 72, 'Sprint  #3 (14/06 - 19/06)', '', '2021-06-19', '2021-05-15 03:28:44+07', '2021-07-05 02:03:09+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (130, 72, 'Product backlog web', '', NULL, '2021-05-15 03:47:57+07', '2021-06-21 09:36:44+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (131, 70, 'Sprint #6 (17/05/2021 - 22/05/2021)', '', '2021-05-22', '2021-05-15 04:25:24+07', '2021-05-15 04:25:24+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (132, 42, 'sprint #22 (19/5/2021 - 22/5/2021)', '', '2021-05-22', '2021-05-19 08:12:42+07', '2021-07-05 08:33:19+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (133, 42, 'sprint #23 (24/5/2021 - 29/5/2021)', '', '2021-05-29', '2021-05-19 08:59:53+07', '2021-07-05 08:33:24+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (134, 73, 'Sprint #1: (17/05 - 22/05)', '', '2021-05-22', '2021-05-26 16:34:02+07', '2021-05-26 16:34:02+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (135, 73, 'Sprint #2: (24/5-29/5)', '', '2021-05-29', '2021-05-27 08:13:04+07', '2021-05-27 08:13:17+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (136, 73, '*CÔNG VIỆC PHÁT SINH*', '', NULL, '2021-05-27 08:13:54+07', '2021-05-27 08:13:54+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (137, 42, 'Sprint #24 (31/05 - 05/06)', '', '2021-06-05', '2021-05-31 15:02:07+07', '2021-07-05 08:33:31+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (138, 69, 'sprint #4 (14/6-19/6)', '', '2021-06-14', '2021-06-14 08:14:54+07', '2021-06-14 08:14:54+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (139, 42, 'Sprint #25 (05/07 - 10/07)', '', '2021-07-10', '2021-06-17 10:21:39+07', '2021-07-05 08:32:20+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (140, 72, 'Sprint #4 (21/06 - 26/06)', '', '2021-06-26', '2021-06-18 16:10:06+07', '2021-07-05 02:03:13+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (141, 69, '#sprint 5(21/06/2021 - 26/06/2021) ', 'PDF - MESSAGE', '2021-06-21', '2021-06-21 01:28:21+07', '2021-06-29 08:40:43+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (142, 72, 'Sprint #5 (28/06 - 03/07)', '', '2021-07-03', '2021-06-21 02:32:58+07', '2021-07-05 02:03:18+07', '', 'closed', 'none');
INSERT INTO public.versions VALUES (143, 72, 'Product backlog mobile', '', NULL, '2021-06-21 09:36:52+07', '2021-06-21 09:36:52+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (144, 69, '#sprint 6(28/06/2021 - 03/07/2021)', '', '2021-06-28', '2021-06-29 08:47:17+07', '2021-06-29 08:47:17+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (145, 72, 'Sprint #6 (05/07 - 10/07)', '', '2021-07-10', '2021-07-03 09:51:50+07', '2021-07-03 09:51:50+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (146, 42, 'Sprint #26 (12/07 - 17/07)', '', '2021-07-17', '2021-07-05 08:38:45+07', '2021-07-05 08:38:45+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (147, 72, 'Sprint #7 (12/07 - 17/07)', '', '2021-07-17', '2021-07-12 09:51:32+07', '2021-07-12 09:51:32+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (148, 42, 'Sprint #27 (19/07 - 24/07)', '', '2021-07-24', '2021-07-17 10:16:34+07', '2021-07-17 10:17:18+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (149, 72, 'Sprint #8 (19/07 - 24/07)', '', '2021-07-24', '2021-07-19 11:36:39+07', '2021-07-19 11:36:39+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (150, 42, 'Sprint #29 (30/08 - 04/09)', '', '2021-09-04', '2021-08-27 09:13:35+07', '2021-08-27 09:17:32+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (151, 42, 'Sprint #28 (27/08 - 28/08)', '', '2021-08-28', '2021-08-27 09:47:41+07', '2021-08-27 15:57:44+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (152, 42, 'Sprint #30 (06/09 - 11/09)', '', '2021-09-11', '2021-09-04 09:32:55+07', '2021-09-04 09:32:55+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (153, 42, 'Sprint #31 (13/09 - 18/09)', '', '2021-09-18', '2021-09-11 08:36:29+07', '2021-09-11 08:36:29+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (154, 42, 'Sprint #32 (20/09 - 25/09)', '', '2021-09-25', '2021-09-20 10:22:20+07', '2021-09-20 10:22:20+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (155, 42, 'Sprint #33 (27/09 - 02/10)', '', '2021-10-02', '2021-09-25 09:00:59+07', '2021-09-25 09:00:59+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (156, 74, 'Sprint #1 (01/11 - 05/11)', '', '2021-11-05', '2021-11-01 10:02:29+07', '2021-11-01 10:03:42+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (157, 74, 'Sprint #2 (08/11 - 12/11)', '', '2021-11-12', '2021-11-01 10:03:03+07', '2021-11-01 10:03:03+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (158, 74, 'Sprint #3 (15/11 - 19/11)', '', '2021-11-19', '2021-11-01 10:04:23+07', '2021-11-01 10:04:23+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (159, 74, 'Sprint #4 (22/11 - 26/11)', '', '2021-11-26', '2021-11-01 10:04:53+07', '2021-11-01 10:04:53+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (160, 74, 'Sprint #5 (29/11 - 03/12)', '', '2021-12-03', '2021-11-01 10:05:47+07', '2021-11-01 10:05:47+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (161, 75, 'Sprint #1 (29/11 - 03/12)', '', '2021-12-03', '2021-11-24 11:20:30+07', '2021-11-24 11:20:30+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (162, 75, 'Sprint  #3 (20/06 - 24/06)', '', '2022-06-24', '2022-06-15 16:03:30+07', '2022-06-15 16:04:35+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (163, 75, 'Sprint  #2 (13/06 - 17/06)', '', '2022-06-17', '2022-06-15 16:04:20+07', '2022-06-15 16:04:20+07', '', 'open', 'none');
INSERT INTO public.versions VALUES (164, 76, 'Sprint #0', '', '2022-10-31', '2022-10-28 11:02:04+07', '2022-10-28 11:02:04+07', NULL, 'open', 'none');
INSERT INTO public.versions VALUES (165, 76, 'Sprint #1 (31/10 - 04/11)', '', '2022-11-04', '2022-10-28 11:02:43+07', '2022-10-28 11:02:43+07', NULL, 'open', 'none');
INSERT INTO public.versions VALUES (166, 76, 'Sprint  #2 (07/11 - 11/11)', '', '2022-11-11', '2022-11-02 10:32:07+07', '2022-11-02 10:32:07+07', NULL, 'open', 'none');


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

INSERT INTO public.viewings VALUES (1, 5, 1, 'DriveEntry', '127.0.0.1', '2022-10-28 11:55:35+07');


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

INSERT INTO public.watchers VALUES (1, 'Issue', 46, 10);
INSERT INTO public.watchers VALUES (2, 'Issue', 71, 10);
INSERT INTO public.watchers VALUES (3, 'Issue', 132, 10);
INSERT INTO public.watchers VALUES (4, 'Issue', 246, 13);
INSERT INTO public.watchers VALUES (5, 'Issue', 247, 13);
INSERT INTO public.watchers VALUES (6, 'Issue', 248, 13);
INSERT INTO public.watchers VALUES (9, 'Issue', 320, 5);
INSERT INTO public.watchers VALUES (13, 'Issue', 896, 10);
INSERT INTO public.watchers VALUES (15, 'Issue', 1061, 6);
INSERT INTO public.watchers VALUES (17, 'Issue', 1064, 6);
INSERT INTO public.watchers VALUES (19, 'Issue', 1065, 6);
INSERT INTO public.watchers VALUES (25, 'Issue', 1070, 6);
INSERT INTO public.watchers VALUES (65, 'Issue', 1117, 16);
INSERT INTO public.watchers VALUES (85, 'Issue', 1198, 6);
INSERT INTO public.watchers VALUES (87, 'Issue', 1199, 17);
INSERT INTO public.watchers VALUES (88, 'Issue', 1199, 6);
INSERT INTO public.watchers VALUES (90, 'Issue', 1200, 6);
INSERT INTO public.watchers VALUES (94, 'Issue', 1203, 16);
INSERT INTO public.watchers VALUES (97, 'Issue', 1205, 16);
INSERT INTO public.watchers VALUES (100, 'Issue', 1207, 6);
INSERT INTO public.watchers VALUES (164, 'Issue', 1270, 21);
INSERT INTO public.watchers VALUES (165, 'Issue', 1270, 20);
INSERT INTO public.watchers VALUES (166, 'Issue', 1271, 21);
INSERT INTO public.watchers VALUES (167, 'Issue', 1271, 20);
INSERT INTO public.watchers VALUES (169, 'Issue', 1273, 21);
INSERT INTO public.watchers VALUES (170, 'Issue', 1273, 20);
INSERT INTO public.watchers VALUES (179, 'Issue', 1283, 21);
INSERT INTO public.watchers VALUES (180, 'Issue', 1284, 21);
INSERT INTO public.watchers VALUES (182, 'Issue', 1286, 22);
INSERT INTO public.watchers VALUES (183, 'Issue', 1286, 21);
INSERT INTO public.watchers VALUES (184, 'Issue', 1287, 17);
INSERT INTO public.watchers VALUES (190, 'Issue', 1294, 6);
INSERT INTO public.watchers VALUES (192, 'Issue', 1294, 17);
INSERT INTO public.watchers VALUES (199, 'Issue', 1300, 17);
INSERT INTO public.watchers VALUES (200, 'Issue', 1301, 21);
INSERT INTO public.watchers VALUES (201, 'Issue', 1302, 6);
INSERT INTO public.watchers VALUES (203, 'Issue', 1302, 17);
INSERT INTO public.watchers VALUES (204, 'Issue', 1303, 6);
INSERT INTO public.watchers VALUES (206, 'Issue', 1303, 17);
INSERT INTO public.watchers VALUES (207, 'Issue', 1304, 6);
INSERT INTO public.watchers VALUES (209, 'Issue', 1304, 17);
INSERT INTO public.watchers VALUES (211, 'Issue', 1305, 17);
INSERT INTO public.watchers VALUES (212, 'Issue', 1306, 6);
INSERT INTO public.watchers VALUES (214, 'Issue', 1306, 17);
INSERT INTO public.watchers VALUES (215, 'Issue', 1307, 6);
INSERT INTO public.watchers VALUES (217, 'Issue', 1307, 17);
INSERT INTO public.watchers VALUES (218, 'Issue', 1308, 6);
INSERT INTO public.watchers VALUES (220, 'Issue', 1308, 17);
INSERT INTO public.watchers VALUES (227, 'Issue', 1320, 16);
INSERT INTO public.watchers VALUES (232, 'Issue', 1324, 16);
INSERT INTO public.watchers VALUES (234, 'Issue', 1324, 17);
INSERT INTO public.watchers VALUES (266, 'Issue', 1359, 16);
INSERT INTO public.watchers VALUES (268, 'Issue', 1359, 17);
INSERT INTO public.watchers VALUES (269, 'Issue', 1360, 16);
INSERT INTO public.watchers VALUES (271, 'Issue', 1361, 16);
INSERT INTO public.watchers VALUES (273, 'Issue', 1362, 16);
INSERT INTO public.watchers VALUES (275, 'Issue', 1363, 16);
INSERT INTO public.watchers VALUES (288, 'Issue', 1379, 17);
INSERT INTO public.watchers VALUES (292, 'Issue', 1383, 6);
INSERT INTO public.watchers VALUES (294, 'Issue', 1383, 17);
INSERT INTO public.watchers VALUES (298, 'Issue', 1417, 22);
INSERT INTO public.watchers VALUES (299, 'Issue', 1418, 23);
INSERT INTO public.watchers VALUES (300, 'Issue', 1419, 23);
INSERT INTO public.watchers VALUES (301, 'Issue', 1420, 23);
INSERT INTO public.watchers VALUES (302, 'Issue', 1421, 23);
INSERT INTO public.watchers VALUES (303, 'Issue', 1422, 23);
INSERT INTO public.watchers VALUES (304, 'Issue', 1423, 23);
INSERT INTO public.watchers VALUES (305, 'Issue', 1424, 23);
INSERT INTO public.watchers VALUES (306, 'Issue', 1425, 23);
INSERT INTO public.watchers VALUES (312, 'Issue', 1431, 6);
INSERT INTO public.watchers VALUES (313, 'Issue', 1431, 16);
INSERT INTO public.watchers VALUES (315, 'Issue', 1432, 6);
INSERT INTO public.watchers VALUES (316, 'Issue', 1432, 16);
INSERT INTO public.watchers VALUES (318, 'Issue', 1433, 6);
INSERT INTO public.watchers VALUES (319, 'Issue', 1433, 16);
INSERT INTO public.watchers VALUES (448, 'Issue', 1485, 15);
INSERT INTO public.watchers VALUES (450, 'Issue', 1485, 17);
INSERT INTO public.watchers VALUES (451, 'Issue', 1486, 15);
INSERT INTO public.watchers VALUES (453, 'Issue', 1486, 17);
INSERT INTO public.watchers VALUES (454, 'Issue', 1487, 15);
INSERT INTO public.watchers VALUES (456, 'Issue', 1487, 17);
INSERT INTO public.watchers VALUES (457, 'Issue', 1488, 15);
INSERT INTO public.watchers VALUES (459, 'Issue', 1488, 17);
INSERT INTO public.watchers VALUES (460, 'Issue', 1489, 15);
INSERT INTO public.watchers VALUES (462, 'Issue', 1489, 17);
INSERT INTO public.watchers VALUES (463, 'Issue', 1490, 15);
INSERT INTO public.watchers VALUES (465, 'Issue', 1490, 17);
INSERT INTO public.watchers VALUES (466, 'Issue', 1491, 15);
INSERT INTO public.watchers VALUES (468, 'Issue', 1491, 17);
INSERT INTO public.watchers VALUES (469, 'Issue', 1492, 15);
INSERT INTO public.watchers VALUES (471, 'Issue', 1492, 17);
INSERT INTO public.watchers VALUES (472, 'Issue', 1493, 15);
INSERT INTO public.watchers VALUES (474, 'Issue', 1493, 17);
INSERT INTO public.watchers VALUES (475, 'Issue', 1494, 15);
INSERT INTO public.watchers VALUES (477, 'Issue', 1494, 17);
INSERT INTO public.watchers VALUES (478, 'Issue', 1495, 15);
INSERT INTO public.watchers VALUES (480, 'Issue', 1495, 17);
INSERT INTO public.watchers VALUES (481, 'Issue', 1496, 15);
INSERT INTO public.watchers VALUES (483, 'Issue', 1496, 17);
INSERT INTO public.watchers VALUES (484, 'Issue', 1498, 15);
INSERT INTO public.watchers VALUES (486, 'Issue', 1498, 17);
INSERT INTO public.watchers VALUES (487, 'Issue', 1499, 15);
INSERT INTO public.watchers VALUES (489, 'Issue', 1499, 17);
INSERT INTO public.watchers VALUES (490, 'Issue', 1500, 15);
INSERT INTO public.watchers VALUES (492, 'Issue', 1500, 17);
INSERT INTO public.watchers VALUES (493, 'Issue', 1501, 15);
INSERT INTO public.watchers VALUES (495, 'Issue', 1501, 17);
INSERT INTO public.watchers VALUES (497, 'Issue', 1503, 15);
INSERT INTO public.watchers VALUES (499, 'Issue', 1503, 17);
INSERT INTO public.watchers VALUES (500, 'Issue', 1504, 15);
INSERT INTO public.watchers VALUES (502, 'Issue', 1504, 17);
INSERT INTO public.watchers VALUES (503, 'Issue', 1505, 15);
INSERT INTO public.watchers VALUES (505, 'Issue', 1505, 17);
INSERT INTO public.watchers VALUES (506, 'Issue', 1506, 15);
INSERT INTO public.watchers VALUES (508, 'Issue', 1506, 17);
INSERT INTO public.watchers VALUES (509, 'Issue', 1507, 15);
INSERT INTO public.watchers VALUES (511, 'Issue', 1507, 17);
INSERT INTO public.watchers VALUES (512, 'Issue', 1508, 15);
INSERT INTO public.watchers VALUES (514, 'Issue', 1508, 17);
INSERT INTO public.watchers VALUES (515, 'Issue', 1509, 15);
INSERT INTO public.watchers VALUES (517, 'Issue', 1509, 17);
INSERT INTO public.watchers VALUES (518, 'Issue', 1510, 15);
INSERT INTO public.watchers VALUES (520, 'Issue', 1510, 17);
INSERT INTO public.watchers VALUES (560, 'Issue', 1525, 15);
INSERT INTO public.watchers VALUES (562, 'Issue', 1525, 17);
INSERT INTO public.watchers VALUES (563, 'Issue', 1526, 15);
INSERT INTO public.watchers VALUES (565, 'Issue', 1526, 17);
INSERT INTO public.watchers VALUES (569, 'Issue', 1528, 15);
INSERT INTO public.watchers VALUES (571, 'Issue', 1528, 17);
INSERT INTO public.watchers VALUES (572, 'Issue', 1529, 15);
INSERT INTO public.watchers VALUES (574, 'Issue', 1529, 17);
INSERT INTO public.watchers VALUES (605, 'Issue', 1562, 15);
INSERT INTO public.watchers VALUES (607, 'Issue', 1562, 17);
INSERT INTO public.watchers VALUES (611, 'Issue', 1564, 15);
INSERT INTO public.watchers VALUES (613, 'Issue', 1564, 17);
INSERT INTO public.watchers VALUES (614, 'Issue', 1565, 15);
INSERT INTO public.watchers VALUES (616, 'Issue', 1565, 17);
INSERT INTO public.watchers VALUES (617, 'Issue', 1566, 15);
INSERT INTO public.watchers VALUES (619, 'Issue', 1566, 17);
INSERT INTO public.watchers VALUES (620, 'Issue', 1567, 15);
INSERT INTO public.watchers VALUES (622, 'Issue', 1567, 17);
INSERT INTO public.watchers VALUES (623, 'Issue', 1568, 15);
INSERT INTO public.watchers VALUES (625, 'Issue', 1568, 17);
INSERT INTO public.watchers VALUES (626, 'Issue', 1569, 15);
INSERT INTO public.watchers VALUES (628, 'Issue', 1569, 17);
INSERT INTO public.watchers VALUES (629, 'Issue', 1570, 15);
INSERT INTO public.watchers VALUES (631, 'Issue', 1570, 17);
INSERT INTO public.watchers VALUES (632, 'Issue', 1571, 15);
INSERT INTO public.watchers VALUES (634, 'Issue', 1571, 17);
INSERT INTO public.watchers VALUES (635, 'Issue', 1572, 15);
INSERT INTO public.watchers VALUES (637, 'Issue', 1572, 17);
INSERT INTO public.watchers VALUES (638, 'Issue', 1573, 15);
INSERT INTO public.watchers VALUES (640, 'Issue', 1573, 17);
INSERT INTO public.watchers VALUES (641, 'Issue', 1574, 15);
INSERT INTO public.watchers VALUES (643, 'Issue', 1574, 17);
INSERT INTO public.watchers VALUES (653, 'Issue', 1578, 15);
INSERT INTO public.watchers VALUES (655, 'Issue', 1578, 17);
INSERT INTO public.watchers VALUES (656, 'Issue', 1579, 15);
INSERT INTO public.watchers VALUES (658, 'Issue', 1579, 17);
INSERT INTO public.watchers VALUES (662, 'Issue', 1585, 22);
INSERT INTO public.watchers VALUES (664, 'Issue', 1626, 21);
INSERT INTO public.watchers VALUES (665, 'Issue', 1627, 21);
INSERT INTO public.watchers VALUES (666, 'Issue', 1628, 23);
INSERT INTO public.watchers VALUES (667, 'Issue', 1634, 22);
INSERT INTO public.watchers VALUES (668, 'Issue', 1635, 22);
INSERT INTO public.watchers VALUES (669, 'Issue', 1649, 33);
INSERT INTO public.watchers VALUES (670, 'Issue', 1650, 33);
INSERT INTO public.watchers VALUES (671, 'Issue', 1651, 33);
INSERT INTO public.watchers VALUES (672, 'Issue', 1652, 33);
INSERT INTO public.watchers VALUES (673, 'Issue', 1653, 33);
INSERT INTO public.watchers VALUES (674, 'Issue', 1654, 33);
INSERT INTO public.watchers VALUES (675, 'Issue', 1655, 33);
INSERT INTO public.watchers VALUES (676, 'Issue', 1656, 33);
INSERT INTO public.watchers VALUES (677, 'Issue', 1657, 33);
INSERT INTO public.watchers VALUES (678, 'Issue', 1658, 33);
INSERT INTO public.watchers VALUES (679, 'Issue', 1671, 5);
INSERT INTO public.watchers VALUES (680, 'Issue', 1671, 6);
INSERT INTO public.watchers VALUES (682, 'Issue', 1671, 8);
INSERT INTO public.watchers VALUES (683, 'Issue', 1671, 9);
INSERT INTO public.watchers VALUES (686, 'Issue', 1671, 12);
INSERT INTO public.watchers VALUES (687, 'Issue', 1671, 13);
INSERT INTO public.watchers VALUES (688, 'Issue', 1671, 14);
INSERT INTO public.watchers VALUES (689, 'Issue', 1671, 15);
INSERT INTO public.watchers VALUES (690, 'Issue', 1671, 16);
INSERT INTO public.watchers VALUES (691, 'Issue', 1671, 17);
INSERT INTO public.watchers VALUES (692, 'Issue', 1671, 19);
INSERT INTO public.watchers VALUES (693, 'Issue', 1671, 20);
INSERT INTO public.watchers VALUES (694, 'Issue', 1671, 21);
INSERT INTO public.watchers VALUES (696, 'Issue', 1671, 23);
INSERT INTO public.watchers VALUES (697, 'Issue', 1671, 24);
INSERT INTO public.watchers VALUES (699, 'Issue', 1671, 26);
INSERT INTO public.watchers VALUES (700, 'Issue', 1671, 27);
INSERT INTO public.watchers VALUES (701, 'Issue', 1671, 28);
INSERT INTO public.watchers VALUES (702, 'Issue', 1671, 29);
INSERT INTO public.watchers VALUES (703, 'Issue', 1671, 30);
INSERT INTO public.watchers VALUES (704, 'Issue', 1671, 31);
INSERT INTO public.watchers VALUES (705, 'Issue', 1671, 32);
INSERT INTO public.watchers VALUES (706, 'Issue', 1671, 33);
INSERT INTO public.watchers VALUES (707, 'Issue', 1671, 34);
INSERT INTO public.watchers VALUES (708, 'Issue', 1671, 35);
INSERT INTO public.watchers VALUES (711, 'Issue', 1672, 5);
INSERT INTO public.watchers VALUES (712, 'Issue', 1672, 6);
INSERT INTO public.watchers VALUES (714, 'Issue', 1672, 8);
INSERT INTO public.watchers VALUES (715, 'Issue', 1672, 9);
INSERT INTO public.watchers VALUES (716, 'Issue', 1672, 10);
INSERT INTO public.watchers VALUES (718, 'Issue', 1672, 12);
INSERT INTO public.watchers VALUES (719, 'Issue', 1672, 13);
INSERT INTO public.watchers VALUES (720, 'Issue', 1672, 14);
INSERT INTO public.watchers VALUES (721, 'Issue', 1672, 15);
INSERT INTO public.watchers VALUES (722, 'Issue', 1672, 16);
INSERT INTO public.watchers VALUES (723, 'Issue', 1672, 17);
INSERT INTO public.watchers VALUES (724, 'Issue', 1672, 19);
INSERT INTO public.watchers VALUES (725, 'Issue', 1672, 20);
INSERT INTO public.watchers VALUES (726, 'Issue', 1672, 21);
INSERT INTO public.watchers VALUES (727, 'Issue', 1672, 22);
INSERT INTO public.watchers VALUES (728, 'Issue', 1672, 23);
INSERT INTO public.watchers VALUES (729, 'Issue', 1672, 24);
INSERT INTO public.watchers VALUES (731, 'Issue', 1672, 26);
INSERT INTO public.watchers VALUES (732, 'Issue', 1672, 27);
INSERT INTO public.watchers VALUES (733, 'Issue', 1672, 28);
INSERT INTO public.watchers VALUES (734, 'Issue', 1672, 29);
INSERT INTO public.watchers VALUES (735, 'Issue', 1672, 30);
INSERT INTO public.watchers VALUES (736, 'Issue', 1672, 31);
INSERT INTO public.watchers VALUES (737, 'Issue', 1672, 32);
INSERT INTO public.watchers VALUES (738, 'Issue', 1672, 33);
INSERT INTO public.watchers VALUES (739, 'Issue', 1672, 34);
INSERT INTO public.watchers VALUES (740, 'Issue', 1672, 35);
INSERT INTO public.watchers VALUES (741, 'Issue', 1685, 23);
INSERT INTO public.watchers VALUES (743, 'Issue', 1761, 5);
INSERT INTO public.watchers VALUES (744, 'Issue', 1762, 5);
INSERT INTO public.watchers VALUES (746, 'Issue', 1808, 22);
INSERT INTO public.watchers VALUES (747, 'Issue', 1809, 22);
INSERT INTO public.watchers VALUES (748, 'Issue', 1810, 22);
INSERT INTO public.watchers VALUES (749, 'Issue', 1818, 20);
INSERT INTO public.watchers VALUES (750, 'Issue', 1820, 22);
INSERT INTO public.watchers VALUES (751, 'Issue', 1832, 33);
INSERT INTO public.watchers VALUES (752, 'Issue', 1969, 38);
INSERT INTO public.watchers VALUES (753, 'Issue', 2013, 33);
INSERT INTO public.watchers VALUES (754, 'Issue', 2069, 33);
INSERT INTO public.watchers VALUES (755, 'Issue', 2070, 33);
INSERT INTO public.watchers VALUES (756, 'Issue', 2070, 32);
INSERT INTO public.watchers VALUES (757, 'Issue', 2095, 33);
INSERT INTO public.watchers VALUES (758, 'Issue', 2096, 33);
INSERT INTO public.watchers VALUES (759, 'Issue', 2096, 32);
INSERT INTO public.watchers VALUES (760, 'Issue', 2099, 32);
INSERT INTO public.watchers VALUES (761, 'Issue', 2116, 9);
INSERT INTO public.watchers VALUES (762, 'Issue', 2116, 8);
INSERT INTO public.watchers VALUES (763, 'Issue', 2118, 9);
INSERT INTO public.watchers VALUES (764, 'Issue', 2118, 6);
INSERT INTO public.watchers VALUES (765, 'Issue', 2118, 40);
INSERT INTO public.watchers VALUES (766, 'Issue', 2118, 17);
INSERT INTO public.watchers VALUES (767, 'Issue', 2143, 33);
INSERT INTO public.watchers VALUES (768, 'Issue', 2144, 33);
INSERT INTO public.watchers VALUES (769, 'Issue', 2146, 33);
INSERT INTO public.watchers VALUES (770, 'Issue', 2147, 33);
INSERT INTO public.watchers VALUES (771, 'Issue', 2148, 33);
INSERT INTO public.watchers VALUES (772, 'Issue', 2149, 33);
INSERT INTO public.watchers VALUES (773, 'Issue', 2202, 33);
INSERT INTO public.watchers VALUES (774, 'Issue', 2202, 21);
INSERT INTO public.watchers VALUES (775, 'Issue', 2203, 33);
INSERT INTO public.watchers VALUES (776, 'Issue', 2205, 33);
INSERT INTO public.watchers VALUES (777, 'Issue', 2206, 33);
INSERT INTO public.watchers VALUES (778, 'Issue', 2207, 33);
INSERT INTO public.watchers VALUES (779, 'Issue', 2342, 33);
INSERT INTO public.watchers VALUES (780, 'Issue', 2343, 33);
INSERT INTO public.watchers VALUES (781, 'Issue', 2344, 33);
INSERT INTO public.watchers VALUES (782, 'Issue', 2345, 33);
INSERT INTO public.watchers VALUES (783, 'Issue', 2345, 32);
INSERT INTO public.watchers VALUES (787, 'Issue', 2351, 33);
INSERT INTO public.watchers VALUES (788, 'Issue', 2351, 32);
INSERT INTO public.watchers VALUES (789, 'Issue', 2399, 33);
INSERT INTO public.watchers VALUES (790, 'Issue', 2432, 23);
INSERT INTO public.watchers VALUES (791, 'Issue', 2433, 23);
INSERT INTO public.watchers VALUES (792, 'Issue', 2354, 22);
INSERT INTO public.watchers VALUES (795, 'Issue', 2574, 14);
INSERT INTO public.watchers VALUES (797, 'Issue', 2698, 12);
INSERT INTO public.watchers VALUES (798, 'Issue', 2700, 33);
INSERT INTO public.watchers VALUES (799, 'Issue', 2701, 33);
INSERT INTO public.watchers VALUES (800, 'Issue', 2702, 33);
INSERT INTO public.watchers VALUES (801, 'Issue', 2703, 33);
INSERT INTO public.watchers VALUES (802, 'Issue', 2704, 33);
INSERT INTO public.watchers VALUES (803, 'Issue', 2704, 32);
INSERT INTO public.watchers VALUES (804, 'Issue', 2705, 33);
INSERT INTO public.watchers VALUES (805, 'Issue', 2706, 33);
INSERT INTO public.watchers VALUES (806, 'Issue', 2707, 33);
INSERT INTO public.watchers VALUES (807, 'Issue', 2708, 33);
INSERT INTO public.watchers VALUES (808, 'Issue', 2709, 33);
INSERT INTO public.watchers VALUES (809, 'Issue', 2710, 5);
INSERT INTO public.watchers VALUES (810, 'Issue', 2710, 6);
INSERT INTO public.watchers VALUES (811, 'Issue', 2710, 8);
INSERT INTO public.watchers VALUES (812, 'Issue', 2710, 9);
INSERT INTO public.watchers VALUES (813, 'Issue', 2710, 10);
INSERT INTO public.watchers VALUES (815, 'Issue', 2710, 12);
INSERT INTO public.watchers VALUES (816, 'Issue', 2710, 13);
INSERT INTO public.watchers VALUES (817, 'Issue', 2710, 14);
INSERT INTO public.watchers VALUES (818, 'Issue', 2710, 15);
INSERT INTO public.watchers VALUES (819, 'Issue', 2710, 16);
INSERT INTO public.watchers VALUES (820, 'Issue', 2710, 17);
INSERT INTO public.watchers VALUES (821, 'Issue', 2710, 19);
INSERT INTO public.watchers VALUES (822, 'Issue', 2710, 21);
INSERT INTO public.watchers VALUES (823, 'Issue', 2710, 22);
INSERT INTO public.watchers VALUES (824, 'Issue', 2710, 23);
INSERT INTO public.watchers VALUES (825, 'Issue', 2710, 24);
INSERT INTO public.watchers VALUES (826, 'Issue', 2710, 26);
INSERT INTO public.watchers VALUES (827, 'Issue', 2710, 27);
INSERT INTO public.watchers VALUES (828, 'Issue', 2710, 28);
INSERT INTO public.watchers VALUES (829, 'Issue', 2710, 29);
INSERT INTO public.watchers VALUES (830, 'Issue', 2710, 32);
INSERT INTO public.watchers VALUES (831, 'Issue', 2710, 33);
INSERT INTO public.watchers VALUES (832, 'Issue', 2710, 37);
INSERT INTO public.watchers VALUES (833, 'Issue', 2710, 38);
INSERT INTO public.watchers VALUES (834, 'Issue', 2710, 39);
INSERT INTO public.watchers VALUES (835, 'Issue', 2710, 40);
INSERT INTO public.watchers VALUES (836, 'Issue', 2710, 41);
INSERT INTO public.watchers VALUES (837, 'Issue', 2710, 20);
INSERT INTO public.watchers VALUES (840, 'Issue', 2759, 33);
INSERT INTO public.watchers VALUES (841, 'Issue', 2760, 33);
INSERT INTO public.watchers VALUES (842, 'Issue', 2760, 32);
INSERT INTO public.watchers VALUES (843, 'Issue', 2761, 33);
INSERT INTO public.watchers VALUES (844, 'Issue', 2764, 33);
INSERT INTO public.watchers VALUES (845, 'Issue', 2764, 32);
INSERT INTO public.watchers VALUES (846, 'Issue', 2765, 33);
INSERT INTO public.watchers VALUES (847, 'Issue', 2765, 32);
INSERT INTO public.watchers VALUES (848, 'Issue', 2768, 33);
INSERT INTO public.watchers VALUES (849, 'Issue', 2768, 32);
INSERT INTO public.watchers VALUES (850, 'Issue', 2769, 33);
INSERT INTO public.watchers VALUES (851, 'Issue', 2770, 33);
INSERT INTO public.watchers VALUES (852, 'Issue', 2771, 33);
INSERT INTO public.watchers VALUES (853, 'Issue', 2772, 33);
INSERT INTO public.watchers VALUES (854, 'Issue', 2773, 33);
INSERT INTO public.watchers VALUES (855, 'Issue', 2774, 33);
INSERT INTO public.watchers VALUES (856, 'Issue', 2775, 33);
INSERT INTO public.watchers VALUES (857, 'Issue', 2777, 33);
INSERT INTO public.watchers VALUES (858, 'Issue', 2777, 32);
INSERT INTO public.watchers VALUES (859, 'Issue', 2792, 33);
INSERT INTO public.watchers VALUES (860, 'Issue', 2792, 32);
INSERT INTO public.watchers VALUES (861, 'Issue', 2794, 33);
INSERT INTO public.watchers VALUES (862, 'Issue', 2795, 33);
INSERT INTO public.watchers VALUES (863, 'Issue', 2795, 32);
INSERT INTO public.watchers VALUES (864, 'Issue', 2796, 33);
INSERT INTO public.watchers VALUES (865, 'Issue', 2797, 33);
INSERT INTO public.watchers VALUES (866, 'Issue', 2798, 33);
INSERT INTO public.watchers VALUES (867, 'Issue', 2799, 22);
INSERT INTO public.watchers VALUES (868, 'Issue', 2800, 21);
INSERT INTO public.watchers VALUES (870, 'Issue', 2804, 21);
INSERT INTO public.watchers VALUES (871, 'Issue', 2808, 22);
INSERT INTO public.watchers VALUES (872, 'Issue', 1810, 21);
INSERT INTO public.watchers VALUES (873, 'Issue', 2810, 33);
INSERT INTO public.watchers VALUES (874, 'Issue', 2810, 32);
INSERT INTO public.watchers VALUES (875, 'Issue', 2819, 33);
INSERT INTO public.watchers VALUES (876, 'Issue', 2819, 32);
INSERT INTO public.watchers VALUES (877, 'Issue', 2820, 33);
INSERT INTO public.watchers VALUES (878, 'Issue', 2820, 32);
INSERT INTO public.watchers VALUES (879, 'Issue', 2821, 33);
INSERT INTO public.watchers VALUES (880, 'Issue', 2822, 33);
INSERT INTO public.watchers VALUES (881, 'Issue', 2823, 33);
INSERT INTO public.watchers VALUES (882, 'Issue', 2824, 33);
INSERT INTO public.watchers VALUES (883, 'Issue', 2825, 33);
INSERT INTO public.watchers VALUES (884, 'Issue', 2826, 33);
INSERT INTO public.watchers VALUES (885, 'Issue', 2827, 33);
INSERT INTO public.watchers VALUES (886, 'Issue', 2828, 33);
INSERT INTO public.watchers VALUES (887, 'Issue', 2832, 22);
INSERT INTO public.watchers VALUES (889, 'Issue', 2835, 33);
INSERT INTO public.watchers VALUES (890, 'Issue', 2835, 32);
INSERT INTO public.watchers VALUES (891, 'Issue', 2836, 33);
INSERT INTO public.watchers VALUES (892, 'Issue', 2836, 32);
INSERT INTO public.watchers VALUES (893, 'Issue', 2837, 33);
INSERT INTO public.watchers VALUES (894, 'Issue', 2837, 32);
INSERT INTO public.watchers VALUES (895, 'Issue', 2838, 33);
INSERT INTO public.watchers VALUES (896, 'Issue', 2838, 32);
INSERT INTO public.watchers VALUES (897, 'Issue', 2839, 33);
INSERT INTO public.watchers VALUES (898, 'Issue', 2861, 33);
INSERT INTO public.watchers VALUES (899, 'Issue', 2861, 32);
INSERT INTO public.watchers VALUES (900, 'Issue', 2862, 33);
INSERT INTO public.watchers VALUES (901, 'Issue', 2862, 32);
INSERT INTO public.watchers VALUES (902, 'Issue', 2863, 33);
INSERT INTO public.watchers VALUES (903, 'Issue', 2864, 33);
INSERT INTO public.watchers VALUES (904, 'Issue', 2864, 32);
INSERT INTO public.watchers VALUES (905, 'Issue', 1672, 37);
INSERT INTO public.watchers VALUES (906, 'Issue', 1672, 38);
INSERT INTO public.watchers VALUES (907, 'Issue', 1672, 39);
INSERT INTO public.watchers VALUES (908, 'Issue', 1672, 40);
INSERT INTO public.watchers VALUES (909, 'Issue', 1672, 41);
INSERT INTO public.watchers VALUES (911, 'Issue', 1671, 22);
INSERT INTO public.watchers VALUES (912, 'Issue', 1671, 10);
INSERT INTO public.watchers VALUES (914, 'Issue', 2832, 9);
INSERT INTO public.watchers VALUES (915, 'Issue', 2946, 33);
INSERT INTO public.watchers VALUES (916, 'Issue', 2946, 32);
INSERT INTO public.watchers VALUES (917, 'Issue', 2947, 33);
INSERT INTO public.watchers VALUES (918, 'Issue', 2947, 32);
INSERT INTO public.watchers VALUES (919, 'Issue', 2948, 33);
INSERT INTO public.watchers VALUES (920, 'Issue', 2948, 32);
INSERT INTO public.watchers VALUES (921, 'Issue', 2949, 33);
INSERT INTO public.watchers VALUES (922, 'Issue', 2949, 32);
INSERT INTO public.watchers VALUES (923, 'Issue', 2950, 33);
INSERT INTO public.watchers VALUES (924, 'Issue', 2950, 32);
INSERT INTO public.watchers VALUES (925, 'Issue', 2951, 33);
INSERT INTO public.watchers VALUES (926, 'Issue', 2951, 32);
INSERT INTO public.watchers VALUES (927, 'Issue', 2952, 33);
INSERT INTO public.watchers VALUES (928, 'Issue', 2985, 22);
INSERT INTO public.watchers VALUES (931, 'Issue', 3002, 32);
INSERT INTO public.watchers VALUES (932, 'Issue', 3003, 33);
INSERT INTO public.watchers VALUES (933, 'Issue', 3004, 33);
INSERT INTO public.watchers VALUES (934, 'Issue', 3004, 32);
INSERT INTO public.watchers VALUES (936, 'Issue', 3029, 33);
INSERT INTO public.watchers VALUES (937, 'Issue', 3029, 32);
INSERT INTO public.watchers VALUES (938, 'Issue', 3030, 33);
INSERT INTO public.watchers VALUES (939, 'Issue', 3030, 32);
INSERT INTO public.watchers VALUES (940, 'Issue', 3051, 33);
INSERT INTO public.watchers VALUES (941, 'Issue', 3052, 33);
INSERT INTO public.watchers VALUES (942, 'Issue', 3110, 33);
INSERT INTO public.watchers VALUES (943, 'Issue', 3215, 33);
INSERT INTO public.watchers VALUES (944, 'Issue', 3215, 32);
INSERT INTO public.watchers VALUES (945, 'Issue', 3215, 43);
INSERT INTO public.watchers VALUES (946, 'Issue', 3216, 33);
INSERT INTO public.watchers VALUES (948, 'Issue', 3289, 32);
INSERT INTO public.watchers VALUES (949, 'Issue', 3290, 33);
INSERT INTO public.watchers VALUES (950, 'Issue', 3291, 32);
INSERT INTO public.watchers VALUES (951, 'Issue', 3295, 17);
INSERT INTO public.watchers VALUES (952, 'Issue', 3299, 33);
INSERT INTO public.watchers VALUES (953, 'Issue', 3334, 15);
INSERT INTO public.watchers VALUES (954, 'Issue', 3346, 33);
INSERT INTO public.watchers VALUES (955, 'Issue', 3346, 32);
INSERT INTO public.watchers VALUES (956, 'Issue', 3347, 33);
INSERT INTO public.watchers VALUES (957, 'Issue', 3347, 32);
INSERT INTO public.watchers VALUES (958, 'Issue', 3348, 33);
INSERT INTO public.watchers VALUES (959, 'Issue', 3348, 32);
INSERT INTO public.watchers VALUES (960, 'Issue', 3415, 33);
INSERT INTO public.watchers VALUES (961, 'Issue', 3416, 33);
INSERT INTO public.watchers VALUES (962, 'Issue', 3460, 33);
INSERT INTO public.watchers VALUES (963, 'Issue', 3461, 33);
INSERT INTO public.watchers VALUES (964, 'Issue', 3462, 33);
INSERT INTO public.watchers VALUES (965, 'Issue', 3464, 33);
INSERT INTO public.watchers VALUES (966, 'Issue', 3465, 33);
INSERT INTO public.watchers VALUES (967, 'Issue', 3466, 33);
INSERT INTO public.watchers VALUES (968, 'Issue', 3488, 33);
INSERT INTO public.watchers VALUES (969, 'Issue', 3489, 32);
INSERT INTO public.watchers VALUES (970, 'Issue', 3539, 33);
INSERT INTO public.watchers VALUES (971, 'Issue', 3540, 33);
INSERT INTO public.watchers VALUES (972, 'Issue', 3540, 32);
INSERT INTO public.watchers VALUES (973, 'Issue', 3541, 33);
INSERT INTO public.watchers VALUES (974, 'Issue', 3541, 32);
INSERT INTO public.watchers VALUES (975, 'Issue', 3561, 33);
INSERT INTO public.watchers VALUES (976, 'Issue', 3584, 37);
INSERT INTO public.watchers VALUES (977, 'Issue', 3585, 13);
INSERT INTO public.watchers VALUES (978, 'Issue', 3588, 33);
INSERT INTO public.watchers VALUES (979, 'Issue', 3588, 32);
INSERT INTO public.watchers VALUES (980, 'Issue', 3608, 32);
INSERT INTO public.watchers VALUES (981, 'Issue', 3610, 33);
INSERT INTO public.watchers VALUES (984, 'Issue', 3613, 33);
INSERT INTO public.watchers VALUES (985, 'Issue', 3614, 32);
INSERT INTO public.watchers VALUES (986, 'Issue', 3632, 5);
INSERT INTO public.watchers VALUES (987, 'Issue', 3677, 33);
INSERT INTO public.watchers VALUES (988, 'Issue', 3678, 33);
INSERT INTO public.watchers VALUES (989, 'Issue', 3727, 16);
INSERT INTO public.watchers VALUES (990, 'Issue', 3747, 33);
INSERT INTO public.watchers VALUES (991, 'Issue', 3748, 33);
INSERT INTO public.watchers VALUES (992, 'Issue', 3749, 33);
INSERT INTO public.watchers VALUES (993, 'Issue', 3750, 33);
INSERT INTO public.watchers VALUES (994, 'Issue', 3751, 33);
INSERT INTO public.watchers VALUES (995, 'Issue', 3752, 33);
INSERT INTO public.watchers VALUES (996, 'Issue', 3753, 33);
INSERT INTO public.watchers VALUES (997, 'Issue', 3754, 33);
INSERT INTO public.watchers VALUES (998, 'Issue', 3755, 33);
INSERT INTO public.watchers VALUES (999, 'Issue', 3756, 33);
INSERT INTO public.watchers VALUES (1000, 'Issue', 3759, 40);
INSERT INTO public.watchers VALUES (1001, 'Issue', 3809, 33);
INSERT INTO public.watchers VALUES (1002, 'Issue', 3810, 32);
INSERT INTO public.watchers VALUES (1003, 'Issue', 3811, 33);
INSERT INTO public.watchers VALUES (1004, 'Issue', 3812, 33);
INSERT INTO public.watchers VALUES (1005, 'Issue', 3813, 33);
INSERT INTO public.watchers VALUES (1006, 'Issue', 3814, 33);
INSERT INTO public.watchers VALUES (1007, 'Issue', 3816, 40);
INSERT INTO public.watchers VALUES (1008, 'Issue', 3821, 33);
INSERT INTO public.watchers VALUES (1009, 'Issue', 3822, 33);
INSERT INTO public.watchers VALUES (1010, 'Issue', 3823, 33);
INSERT INTO public.watchers VALUES (1011, 'Issue', 3868, 15);
INSERT INTO public.watchers VALUES (1012, 'Issue', 3893, 35);
INSERT INTO public.watchers VALUES (1013, 'Issue', 3893, 28);
INSERT INTO public.watchers VALUES (1014, 'Issue', 3893, 31);
INSERT INTO public.watchers VALUES (1015, 'Issue', 3896, 23);
INSERT INTO public.watchers VALUES (1016, 'Issue', 3920, 23);
INSERT INTO public.watchers VALUES (1017, 'Issue', 3922, 35);
INSERT INTO public.watchers VALUES (1018, 'Issue', 3922, 28);
INSERT INTO public.watchers VALUES (1019, 'Issue', 3922, 31);
INSERT INTO public.watchers VALUES (1020, 'Issue', 3928, 33);
INSERT INTO public.watchers VALUES (1021, 'Issue', 3929, 33);
INSERT INTO public.watchers VALUES (1022, 'Issue', 3930, 33);
INSERT INTO public.watchers VALUES (1023, 'Issue', 3931, 33);
INSERT INTO public.watchers VALUES (1024, 'Issue', 3932, 33);
INSERT INTO public.watchers VALUES (1025, 'Issue', 3933, 33);
INSERT INTO public.watchers VALUES (1026, 'Issue', 3963, 33);
INSERT INTO public.watchers VALUES (1027, 'Issue', 3966, 33);
INSERT INTO public.watchers VALUES (1028, 'Issue', 4012, 33);
INSERT INTO public.watchers VALUES (1029, 'Issue', 4026, 33);
INSERT INTO public.watchers VALUES (1030, 'Issue', 4375, 52);


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

INSERT INTO public.wiki_content_versions VALUES (1, 1, 1, 5, '\x2370617373207075626c697368206261636b656e640d0a', '', '', '2020-03-23 13:37:18+07', 1);
INSERT INTO public.wiki_content_versions VALUES (2, 1, 1, 6, '\x2370617373207075626c697368206261636b656e640d0a2d202a2a49502a2a3a203137312e3234342e33382e37350d0a2d202a2a557365722f506173732a2a3a2067647470726963652f6373646c676961313233234021', '', '', '2020-03-23 13:37:40+07', 2);
INSERT INTO public.wiki_content_versions VALUES (3, 1, 1, 6, '\x68312e2070617373207075626c697368206261636b656e640d0a2d202a2a49502a2a3a203137312e3234342e33382e37350d0a2d202a2a557365722f506173732a2a3a2067647470726963652f6373646c676961313233234021', '', '', '2020-03-23 13:38:04+07', 3);
INSERT INTO public.wiki_content_versions VALUES (4, 1, 1, 6, '\x68312e2070617373207075626c697368206261636b656e640d0a0d0a2d202a2a49502a2a3a203137312e3234342e33382e37350d0a2d202a2a557365722f506173732a2a3a2067647470726963652f6373646c676961313233234021', '', '', '2020-03-23 13:38:15+07', 4);
INSERT INTO public.wiki_content_versions VALUES (5, 2, 2, 5, '\x4c494e4b204e47c6afe1bb9c492044c3824e3a2068747470733a2f2f616e73696e687861686f692e62696e6864696e682e676f762e766e0d0a4c494e4b205155e1baa24e205452e1bb8a3a2068747470733a2f2f686f74726f6e67756f6964616e2e62696e6864696e682e676f762e766e0d0a0d0a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d0d0a0d0a4150492044e1bbae204c49e1bb8655204348c38d4e483a206170692d636f7669642e676474766965746e616d2e636f6d0d0a4150492044e1bbae204c49e1bb865520544553543a206170692d636f7669642d746573742e676474766965746e616d2e636f6d', '', '', '2020-04-20 08:35:18+07', 1);
INSERT INTO public.wiki_content_versions VALUES (6, 3, 3, 6, '\x68312e204e68e1bbaf6e6720c49169e1bb81752063e1baa76e2068e1bb8f690d0a23204e69c3aa6e206b68c3b36120c491c6b0e1bba3632074e1bb95206368e1bba963206e68c6b0207468e1babf206ec3a06f2c2063c3b320c491e1bb936e672062e1bb992063686f2074e1baa5742063e1baa32063c3a163206ce1bb9b70206b68c3b46e673f20486179206de1bb9769206ce1bb9b702063c3b3206de1bb99742063c3a163682074c3ad6e68206e69c3aa6e206b68c3b361206b68c3a163206e6861753f0d0a23205669e1bb8763207175e1baa36e206cc3bd206769c3a16f207669c3aa6e2064e1baa1792062c3b92074726f6e67207472c6b0e1bb9d6e672068e1bba370206769c3a16f207669c3aa6e207068e1bba5207472c3a16368206368c3ad6e682062e1baad6e2063c3b46e67207669e1bb876320c491e1bb9974207875e1baa5742e', '', '', '2020-05-12 14:13:45+07', 1);
INSERT INTO public.wiki_content_versions VALUES (7, 3, 3, 6, '\x68312e204e68e1bbaf6e6720c49169e1bb81752063e1baa76e2068e1bb8f690d0a0d0a23204e69c3aa6e206b68c3b36120c491c6b0e1bba3632074e1bb95206368e1bba963206e68c6b0207468e1babf206ec3a06f2c2063c3b320c491e1bb936e672062e1bb992063686f2074e1baa5742063e1baa32063c3a163206ce1bb9b70206b68c3b46e673f20486179206de1bb9769206ce1bb9b702063c3b3206de1bb99742063c3a163682074c3ad6e68206e69c3aa6e206b68c3b361206b68c3a163206e6861753f0d0a23205669e1bb8763207175e1baa36e206cc3bd206769c3a16f207669c3aa6e2064e1baa1792062c3b92074726f6e67207472c6b0e1bb9d6e672068e1bba370206769c3a16f207669c3aa6e207068e1bba5207472c3a16368206368c3ad6e682062e1baad6e2063c3b46e67207669e1bb876320c491e1bb9974207875e1baa5742e', '', '', '2020-05-12 14:13:56+07', 2);
INSERT INTO public.wiki_content_versions VALUES (8, 3, 3, 16, '\x68312e204e68e1bbaf6e6720c49169e1bb81752063e1baa76e2068e1bb8f690d0a0d0a23204e69c3aa6e206b68c3b36120c491c6b0e1bba3632074e1bb95206368e1bba963206e68c6b0207468e1babf206ec3a06f2c2063c3b320c491e1bb936e672062e1bb992063686f2074e1baa5742063e1baa32063c3a163206ce1bb9b70206b68c3b46e673f20486179206de1bb9769206ce1bb9b702063c3b3206de1bb99742063c3a163682074c3ad6e68206e69c3aa6e206b68c3b361206b68c3a163206e6861753f0d0a23205669e1bb8763207175e1baa36e206cc3bd206769c3a16f207669c3aa6e2064e1baa1792062c3b92074726f6e67207472c6b0e1bb9d6e672068e1bba370206769c3a16f207669c3aa6e207068e1bba5207472c3a16368206368c3ad6e682062e1baad6e2063c3b46e67207669e1bb876320c491e1bb9974207875e1baa5742e0d0a0d0a4063c3a2752068e1bb8f692063e1bba7612056c5a92e0d0a232063c3a163682074c3ad6e6820c49169e1bb836d2078e1babf70206c6fe1baa1692068e1bb8d63207669c3aa6e2e0d0a2320c49069e1bb836d2074e1bb9174206e676869e1bb87702063c3b32064c3b96e6720c491e1bb832074c3ad6e6820c49169e1bb836d2078e1babf70206c6fe1baa16920284ee1babf752063c3b3207468c3ac2063c3b32074e1bb89206ce1bb8720c49169e1bb836d206861792063e1bb996e67206ce1baa169206368696120c491e1bb8175207472c3aa6e2073e1bb91206dc3b46e292e', '', '', '2020-05-13 02:32:15+07', 3);
INSERT INTO public.wiki_content_versions VALUES (9, 4, 4, 5, '\x3c7072653e3c636f646520636c6173733d226a617661736372697074223e0d0a617069206c6f67696e3a202f4c6f67696e2f41757468656e7469636174650d0a7b0d0a3e20557365726e616d653a2027787878272c0d0a3e2050617373776f72643a2027787878270d0a7d0d0a3c2f636f64653e3c2f7072653e0d0a', '', '', '2020-05-13 15:28:56+07', 1);
INSERT INTO public.wiki_content_versions VALUES (10, 4, 4, 5, '\x3c7072653e3c636f646520636c6173733d226a617661736372697074223e0d0a617069206c6f67696e20504f53543a202f4c6f67696e2f41757468656e7469636174650d0a7b0d0a20557365726e616d653a2027787878272c0d0a2050617373776f72643a2027787878270d0a7d0d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e3c636f646520636c6173733d226a617661736372697074223e0d0a61706920676574206d656e75204745543a202f4c6f67696e2f4765744d656e750d0a3c2f636f64653e3c2f7072653e0d0a', '', '', '2020-05-13 15:33:15+07', 2);
INSERT INTO public.wiki_content_versions VALUES (11, 3, 3, 6, '\x3c6832207374796c653d22666f6e742d7374796c653a6974616c69633b223e3c6269673e4e68e1bbaf6e6720c49169e1bb81752063e1baa76e2068e1bb8f693c2f6269673e3c2f68323e0d0a0d0a3c6f6c3e0d0a093c6c693e4e692665636972633b6e206b68266f61637574653b6120c491c6b0e1bba3632074e1bb95206368e1bba963206e68c6b0207468e1babf206e266167726176653b6f2c2063266f61637574653b20c491e1bb936e672062e1bb992063686f2074e1baa5742063e1baa32063266161637574653b63206ce1bb9b70206b68266f636972633b6e673f20486179206de1bb9769206ce1bb9b702063266f61637574653b206de1bb99742063266161637574653b63682074266961637574653b6e68206e692665636972633b6e206b68266f61637574653b61206b68266161637574653b63206e6861753f0d0a093c756c3e0d0a09093c6c693e43266f61637574653b206b68266f61637574653b612032206ec4836d2028424330343a206b68266f61637574653b6120383720323031392d32303230292c2063266f61637574653b206b68266f61637574653b612033206ec4836d2028424330323a206b68266f61637574653b6120313720323031392d32303231292e3c2f6c693e0d0a09093c6c693e43266f61637574653b2032206b68266f61637574653b612063267567726176653b6e67206ec4836d2028424330352d30363a206b68266f61637574653b61203835206ec4836d20323031382d323032302076266167726176653b20424330373a206b68266f61637574653b61203830206ec4836d20323031382d2032303230293c2f6c693e0d0a093c2f756c3e0d0a093c2f6c693e0d0a093c6c693e5669e1bb8763207175e1baa36e206c267961637574653b206769266161637574653b6f2076692665636972633b6e2064e1baa1792062267567726176653b2074726f6e67207472c6b0e1bb9d6e672068e1bba370206769266161637574653b6f2076692665636972633b6e207068e1bba5207472266161637574653b6368206368266961637574653b6e682062e1baad6e2063266f636972633b6e67207669e1bb876320c491e1bb9974207875e1baa5742e3c2f6c693e0d0a3c2f6f6c3e0d0a0d0a3c6832207374796c653d22666f6e742d7374796c653a6974616c69633b223e40632661636972633b752068e1bb8f692063e1bba7612056c5a92e3c2f68323e0d0a0d0a3c6f6c3e0d0a093c6c693e63266161637574653b63682074266961637574653b6e6820c49169e1bb836d2078e1babf70206c6fe1baa1692068e1bb8d632076692665636972633b6e2e3c2f6c693e0d0a093c6c693ec49069e1bb836d2074e1bb9174206e676869e1bb87702063266f61637574653b2064267567726176653b6e6720c491e1bb832074266961637574653b6e6820c49169e1bb836d2078e1babf70206c6fe1baa16920284ee1babf752063266f61637574653b207468266967726176653b2063266f61637574653b2074e1bb89206ce1bb8720c49169e1bb836d206861792063e1bb996e67206ce1baa169206368696120c491e1bb81752074722665636972633b6e2073e1bb91206d266f636972633b6e292e3c2f6c693e0d0a3c2f6f6c3e0d0a', '', '', '2020-05-14 09:54:19+07', 4);
INSERT INTO public.wiki_content_versions VALUES (12, 3, 3, 6, '\x3c6832207374796c653d22666f6e742d7374796c653a6974616c69633b223e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e3c6269673e4e68e1bbaf6e6720c49169e1bb81752063e1baa76e2068e1bb8f693c2f6269673e3c2f7370616e3e3c2f7370616e3e3c2f68323e0d0a0d0a3c6f6c3e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e4e692665636972633b6e206b68266f61637574653b6120c491c6b0e1bba3632074e1bb95206368e1bba963206e68c6b0207468e1babf206e266167726176653b6f2c2063266f61637574653b20c491e1bb936e672062e1bb992063686f2074e1baa5742063e1baa32063266161637574653b63206ce1bb9b70206b68266f636972633b6e673f20486179206de1bb9769206ce1bb9b702063266f61637574653b206de1bb99742063266161637574653b63682074266961637574653b6e68206e692665636972633b6e206b68266f61637574653b61206b68266161637574653b63206e6861753f3c2f7370616e3e3c2f7370616e3e0d0a0d0a093c756c3e0d0a09093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e43266f61637574653b206b68266f61637574653b612032206ec4836d2028424330343a206b68266f61637574653b6120383720323031392d32303230292c2063266f61637574653b206b68266f61637574653b612033206ec4836d2028424330323a206b68266f61637574653b6120313720323031392d32303231292e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a09093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e43266f61637574653b2032206b68266f61637574653b612063267567726176653b6e67206ec4836d2028424330352d30363a206b68266f61637574653b61203835206ec4836d20323031382d323032302076266167726176653b20424330373a206b68266f61637574653b61203830206ec4836d20323031382d2032303230293c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a093c2f756c3e0d0a093c2f6c693e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e5669e1bb8763207175e1baa36e206c267961637574653b206769266161637574653b6f2076692665636972633b6e2064e1baa1792062267567726176653b2074726f6e67207472c6b0e1bb9d6e672068e1bba370206769266161637574653b6f2076692665636972633b6e207068e1bba5207472266161637574653b6368206368266961637574653b6e682062e1baad6e2063266f636972633b6e67207669e1bb876320c491e1bb9974207875e1baa5742e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a3c2f6f6c3e0d0a0d0a3c6832207374796c653d22666f6e742d7374796c653a6974616c69633b223e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e3c6269673e40632661636972633b752068e1bb8f692063e1bba7612056c5a92e3c2f6269673e3c2f7370616e3e3c2f7370616e3e3c2f68323e0d0a0d0a3c6f6c3e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e63266161637574653b63682074266961637574653b6e6820c49169e1bb836d2078e1babf70206c6fe1baa1692068e1bb8d632076692665636972633b6e2e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223ec49069e1bb836d2074e1bb9174206e676869e1bb87702063266f61637574653b2064267567726176653b6e6720c491e1bb832074266961637574653b6e6820c49169e1bb836d2078e1babf70206c6fe1baa16920284ee1babf752063266f61637574653b207468266967726176653b2063266f61637574653b2074e1bb89206ce1bb8720c49169e1bb836d206861792063e1bb996e67206ce1baa169206368696120c491e1bb81752074722665636972633b6e2073e1bb91206d266f636972633b6e292e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a3c2f6f6c3e0d0a', '', '', '2020-05-14 10:05:02+07', 5);
INSERT INTO public.wiki_content_versions VALUES (13, 3, 3, 10, '\x3c6832207374796c653d22666f6e742d7374796c653a6974616c69633b223e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e3c6269673e4e68e1bbaf6e6720c49169e1bb81752063e1baa76e2068e1bb8f693c2f6269673e3c2f7370616e3e3c2f7370616e3e3c2f68323e0d0a0d0a3c6f6c3e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e4e692665636972633b6e206b68266f61637574653b6120c491c6b0e1bba3632074e1bb95206368e1bba963206e68c6b0207468e1babf206e266167726176653b6f2c2063266f61637574653b20c491e1bb936e672062e1bb992063686f2074e1baa5742063e1baa32063266161637574653b63206ce1bb9b70206b68266f636972633b6e673f20486179206de1bb9769206ce1bb9b702063266f61637574653b206de1bb99742063266161637574653b63682074266961637574653b6e68206e692665636972633b6e206b68266f61637574653b61206b68266161637574653b63206e6861753f3c2f7370616e3e3c2f7370616e3e0d0a0d0a093c756c3e0d0a09093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e43266f61637574653b206b68266f61637574653b612032206ec4836d2028424330343a206b68266f61637574653b6120383720323031392d32303230292c2063266f61637574653b206b68266f61637574653b612033206ec4836d2028424330323a206b68266f61637574653b6120313720323031392d32303231292e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a09093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e43266f61637574653b2032206b68266f61637574653b612063267567726176653b6e67206ec4836d2028424330352d30363a206b68266f61637574653b61203835206ec4836d20323031382d323032302076266167726176653b20424330373a206b68266f61637574653b61203830206ec4836d20323031382d2032303230293c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a093c2f756c3e0d0a093c2f6c693e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e5669e1bb8763207175e1baa36e206c267961637574653b206769266161637574653b6f2076692665636972633b6e2064e1baa1792062267567726176653b2074726f6e67207472c6b0e1bb9d6e672068e1bba370206769266161637574653b6f2076692665636972633b6e207068e1bba5207472266161637574653b6368206368266961637574653b6e682062e1baad6e2063266f636972633b6e67207669e1bb876320c491e1bb9974207875e1baa5742e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a3c2f6f6c3e0d0a0d0a3c6832207374796c653d22666f6e742d7374796c653a6974616c69633b223e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e3c6269673e40632661636972633b752068e1bb8f692063e1bba7612056c5a92e3c2f6269673e3c2f7370616e3e3c2f7370616e3e3c2f68323e0d0a0d0a3c6f6c3e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e63266161637574653b63682074266961637574653b6e6820c49169e1bb836d2078e1babf70206c6fe1baa1692068e1bb8d632076692665636972633b6e2e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223ec49069e1bb836d2074e1bb9174206e676869e1bb87702063266f61637574653b2064267567726176653b6e6720c491e1bb832074266961637574653b6e6820c49169e1bb836d2078e1babf70206c6fe1baa16920284ee1babf752063266f61637574653b207468266967726176653b2063266f61637574653b2074e1bb89206ce1bb8720c49169e1bb836d206861792063e1bb996e67206ce1baa169206368696120c491e1bb81752074722665636972633b6e2073e1bb91206d266f636972633b6e292e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a3c2f6f6c3e0d0a0d0a3c6832207374796c653d22666f6e742d7374796c653a6974616c69633b223e266e6273703b3c666f6e7420666163653d2254696d6573204e657720526f6d616e2c2054696d65732c207365726966223e3c7370616e207374796c653d22666f6e742d73697a653a2031362e3870783b223e54266167726176653b69206b686fe1baa36e3a3c2f7370616e3e3c2f666f6e743e3c2f68323e0d0a', '', '', '2020-05-14 10:42:21+07', 6);
INSERT INTO public.wiki_content_versions VALUES (14, 3, 3, 10, '\x3c6832207374796c653d22666f6e742d7374796c653a6974616c69633b223e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e3c6269673e4e68e1bbaf6e6720c49169e1bb81752063e1baa76e2068e1bb8f693c2f6269673e3c2f7370616e3e3c2f7370616e3e3c2f68323e0d0a0d0a3c6f6c3e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e4e692665636972633b6e206b68266f61637574653b6120c491c6b0e1bba3632074e1bb95206368e1bba963206e68c6b0207468e1babf206e266167726176653b6f2c2063266f61637574653b20c491e1bb936e672062e1bb992063686f2074e1baa5742063e1baa32063266161637574653b63206ce1bb9b70206b68266f636972633b6e673f20486179206de1bb9769206ce1bb9b702063266f61637574653b206de1bb99742063266161637574653b63682074266961637574653b6e68206e692665636972633b6e206b68266f61637574653b61206b68266161637574653b63206e6861753f3c2f7370616e3e3c2f7370616e3e0d0a0d0a093c756c3e0d0a09093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e43266f61637574653b206b68266f61637574653b612032206ec4836d2028424330343a206b68266f61637574653b6120383720323031392d32303230292c2063266f61637574653b206b68266f61637574653b612033206ec4836d2028424330323a206b68266f61637574653b6120313720323031392d32303231292e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a09093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e43266f61637574653b2032206b68266f61637574653b612063267567726176653b6e67206ec4836d2028424330352d30363a206b68266f61637574653b61203835206ec4836d20323031382d323032302076266167726176653b20424330373a206b68266f61637574653b61203830206ec4836d20323031382d2032303230293c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a093c2f756c3e0d0a093c2f6c693e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e5669e1bb8763207175e1baa36e206c267961637574653b206769266161637574653b6f2076692665636972633b6e2064e1baa1792062267567726176653b2074726f6e67207472c6b0e1bb9d6e672068e1bba370206769266161637574653b6f2076692665636972633b6e207068e1bba5207472266161637574653b6368206368266961637574653b6e682062e1baad6e2063266f636972633b6e67207669e1bb876320c491e1bb9974207875e1baa5742e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a3c2f6f6c3e0d0a0d0a3c6832207374796c653d22666f6e742d7374796c653a6974616c69633b223e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e3c6269673e40632661636972633b752068e1bb8f692063e1bba7612056c5a92e3c2f6269673e3c2f7370616e3e3c2f7370616e3e3c2f68323e0d0a0d0a3c6f6c3e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e63266161637574653b63682074266961637574653b6e6820c49169e1bb836d2078e1babf70206c6fe1baa1692068e1bb8d632076692665636972633b6e2e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223ec49069e1bb836d2074e1bb9174206e676869e1bb87702063266f61637574653b2064267567726176653b6e6720c491e1bb832074266961637574653b6e6820c49169e1bb836d2078e1babf70206c6fe1baa16920284ee1babf752063266f61637574653b207468266967726176653b2063266f61637574653b2074e1bb89206ce1bb8720c49169e1bb836d206861792063e1bb996e67206ce1baa169206368696120c491e1bb81752074722665636972633b6e2073e1bb91206d266f636972633b6e292e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a3c2f6f6c3e0d0a0d0a3c6832207374796c653d22666f6e742d7374796c653a206974616c69633b223e266e6273703b3c666f6e7420666163653d2254696d6573204e657720526f6d616e2c2054696d65732c207365726966223e3c7370616e207374796c653d22666f6e742d73697a653a2031362e3870783b223e54266167726176653b69206b686fe1baa36e3a3c2f7370616e3e3c2f666f6e743e3c2f68323e0d0a', '', '', '2020-05-14 10:44:49+07', 7);
INSERT INTO public.wiki_content_versions VALUES (15, 3, 3, 10, '\x3c6832207374796c653d22666f6e742d7374796c653a6974616c69633b223e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e3c6269673e4e68e1bbaf6e6720c49169e1bb81752063e1baa76e2068e1bb8f693c2f6269673e3c2f7370616e3e3c2f7370616e3e3c2f68323e0d0a0d0a3c6f6c3e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e4e692665636972633b6e206b68266f61637574653b6120c491c6b0e1bba3632074e1bb95206368e1bba963206e68c6b0207468e1babf206e266167726176653b6f2c2063266f61637574653b20c491e1bb936e672062e1bb992063686f2074e1baa5742063e1baa32063266161637574653b63206ce1bb9b70206b68266f636972633b6e673f20486179206de1bb9769206ce1bb9b702063266f61637574653b206de1bb99742063266161637574653b63682074266961637574653b6e68206e692665636972633b6e206b68266f61637574653b61206b68266161637574653b63206e6861753f3c2f7370616e3e3c2f7370616e3e0d0a0d0a093c756c3e0d0a09093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e43266f61637574653b206b68266f61637574653b612032206ec4836d2028424330343a206b68266f61637574653b6120383720323031392d32303230292c2063266f61637574653b206b68266f61637574653b612033206ec4836d2028424330323a206b68266f61637574653b6120313720323031392d32303231292e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a09093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e43266f61637574653b2032206b68266f61637574653b612063267567726176653b6e67206ec4836d2028424330352d30363a206b68266f61637574653b61203835206ec4836d20323031382d323032302076266167726176653b20424330373a206b68266f61637574653b61203830206ec4836d20323031382d2032303230293c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a093c2f756c3e0d0a093c2f6c693e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e5669e1bb8763207175e1baa36e206c267961637574653b206769266161637574653b6f2076692665636972633b6e2064e1baa1792062267567726176653b2074726f6e67207472c6b0e1bb9d6e672068e1bba370206769266161637574653b6f2076692665636972633b6e207068e1bba5207472266161637574653b6368206368266961637574653b6e682062e1baad6e2063266f636972633b6e67207669e1bb876320c491e1bb9974207875e1baa5742e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a3c2f6f6c3e0d0a0d0a3c6832207374796c653d22666f6e742d7374796c653a6974616c69633b223e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e3c6269673e40632661636972633b752068e1bb8f692063e1bba7612056c5a92e3c2f6269673e3c2f7370616e3e3c2f7370616e3e3c2f68323e0d0a0d0a3c6f6c3e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e63266161637574653b63682074266961637574653b6e6820c49169e1bb836d2078e1babf70206c6fe1baa1692068e1bb8d632076692665636972633b6e2e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223ec49069e1bb836d2074e1bb9174206e676869e1bb87702063266f61637574653b2064267567726176653b6e6720c491e1bb832074266961637574653b6e6820c49169e1bb836d2078e1babf70206c6fe1baa16920284ee1babf752063266f61637574653b207468266967726176653b2063266f61637574653b2074e1bb89206ce1bb8720c49169e1bb836d206861792063e1bb996e67206ce1baa169206368696120c491e1bb81752074722665636972633b6e2073e1bb91206d266f636972633b6e292e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a3c2f6f6c3e0d0a0d0a3c6832207374796c653d22666f6e742d7374796c653a206974616c69633b223e266e6273703b3c666f6e7420666163653d2254696d6573204e657720526f6d616e2c2054696d65732c207365726966223e3c7370616e207374796c653d22666f6e742d73697a653a2031362e3870783b223e54266167726176653b69206b686fe1baa36e3a3c2f7370616e3e3c2f666f6e743e3c2f68323e0d0a0d0a3c6f6c3e0d0a093c6c693e3c666f6e7420666163653d2254696d6573204e657720526f6d616e2c2054696d65732c207365726966223e3c7370616e207374796c653d22666f6e742d73697a653a2031362e3870783b223e41646d696e3a2061646d696e3c2f7370616e3e3c2f666f6e743e3c2f6c693e0d0a093c6c693e3c666f6e7420666163653d2254696d6573204e657720526f6d616e2c2054696d65732c207365726966223e3c7370616e207374796c653d22666f6e742d73697a653a2031362e3870783b223e4769e1baa36e672076692665636972633b6e3a206769616e677669656e3c2f7370616e3e3c2f666f6e743e3c2f6c693e0d0a093c6c693e3c666f6e7420666163653d2254696d6573204e657720526f6d616e2c2054696d65732c207365726966223e3c7370616e207374796c653d22666f6e742d73697a653a2031362e3870783b223e436875792665636972633b6e2076692665636972633b6e2074e1bb956e672068e1bba3703a2063687579656e7669656e746f6e67686f703c2f7370616e3e3c2f666f6e743e3c2f6c693e0d0a093c6c693e3c666f6e7420666163653d2254696d6573204e657720526f6d616e2c2054696d65732c207365726966223e3c7370616e207374796c653d22666f6e742d73697a653a2031362e3870783b223e436875792665636972633b6e2076692665636972633b6e206b68e1baa36f207468266961637574653b3a2063687579656e7669656e6b68616f7468693c2f7370616e3e3c2f666f6e743e3c2f6c693e0d0a093c6c693e3c666f6e7420666163653d2254696d6573204e657720526f6d616e2c2054696d65732c207365726966223e3c7370616e207374796c653d22666f6e742d73697a653a2031362e3870783b223e436875792665636972633b6e2076692665636972633b6e20747579e1bb836e2073696e683a2063687579656e7669656e747579656e73696e683c2f7370616e3e3c2f666f6e743e3c2f6c693e0d0a3c2f6f6c3e0d0a0d0a3c703e4de1baad74206b68e1baa9753a20676474403132332340213c2f703e0d0a', '', '', '2020-05-14 10:47:40+07', 8);
INSERT INTO public.wiki_content_versions VALUES (16, 3, 3, 10, '\x3c6832207374796c653d22666f6e742d7374796c653a6974616c69633b223e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e3c6269673e4e68e1bbaf6e6720c49169e1bb81752063e1baa76e2068e1bb8f693c2f6269673e3c2f7370616e3e3c2f7370616e3e3c2f68323e0d0a0d0a3c6f6c3e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e4e692665636972633b6e206b68266f61637574653b6120c491c6b0e1bba3632074e1bb95206368e1bba963206e68c6b0207468e1babf206e266167726176653b6f2c2063266f61637574653b20c491e1bb936e672062e1bb992063686f2074e1baa5742063e1baa32063266161637574653b63206ce1bb9b70206b68266f636972633b6e673f20486179206de1bb9769206ce1bb9b702063266f61637574653b206de1bb99742063266161637574653b63682074266961637574653b6e68206e692665636972633b6e206b68266f61637574653b61206b68266161637574653b63206e6861753f3c2f7370616e3e3c2f7370616e3e0d0a0d0a093c756c3e0d0a09093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e43266f61637574653b206b68266f61637574653b612032206ec4836d2028424330343a206b68266f61637574653b6120383720323031392d32303230292c2063266f61637574653b206b68266f61637574653b612033206ec4836d2028424330323a206b68266f61637574653b6120313720323031392d32303231292e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a09093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e43266f61637574653b2032206b68266f61637574653b612063267567726176653b6e67206ec4836d2028424330352d30363a206b68266f61637574653b61203835206ec4836d20323031382d323032302076266167726176653b20424330373a206b68266f61637574653b61203830206ec4836d20323031382d2032303230293c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a093c2f756c3e0d0a093c2f6c693e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e5669e1bb8763207175e1baa36e206c267961637574653b206769266161637574653b6f2076692665636972633b6e2064e1baa1792062267567726176653b2074726f6e67207472c6b0e1bb9d6e672068e1bba370206769266161637574653b6f2076692665636972633b6e207068e1bba5207472266161637574653b6368206368266961637574653b6e682062e1baad6e2063266f636972633b6e67207669e1bb876320c491e1bb9974207875e1baa5742e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a3c2f6f6c3e0d0a0d0a3c6832207374796c653d22666f6e742d7374796c653a6974616c69633b223e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e3c6269673e40632661636972633b752068e1bb8f692063e1bba7612056c5a92e3c2f6269673e3c2f7370616e3e3c2f7370616e3e3c2f68323e0d0a0d0a3c6f6c3e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e63266161637574653b63682074266961637574653b6e6820c49169e1bb836d2078e1babf70206c6fe1baa1692068e1bb8d632076692665636972633b6e2e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223ec49069e1bb836d2074e1bb9174206e676869e1bb87702063266f61637574653b2064267567726176653b6e6720c491e1bb832074266961637574653b6e6820c49169e1bb836d2078e1babf70206c6fe1baa16920284ee1babf752063266f61637574653b207468266967726176653b2063266f61637574653b2074e1bb89206ce1bb8720c49169e1bb836d206861792063e1bb996e67206ce1baa169206368696120c491e1bb81752074722665636972633b6e2073e1bb91206d266f636972633b6e292e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a3c2f6f6c3e0d0a0d0a3c6832207374796c653d22666f6e742d7374796c653a206974616c69633b223e266e6273703b3c666f6e7420666163653d2254696d6573204e657720526f6d616e2c2054696d65732c207365726966223e3c7370616e207374796c653d22666f6e742d73697a653a2031362e3870783b223e54266167726176653b69206b686fe1baa36e3a3c2f7370616e3e3c2f666f6e743e3c2f68323e0d0a0d0a3c6f6c3e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313270783b223e3c666f6e7420666163653d2254696d6573204e657720526f6d616e2c2054696d65732c207365726966223e41646d696e3a2061646d696e3c2f666f6e743e3c2f7370616e3e3c2f6c693e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313270783b223e3c666f6e7420666163653d2254696d6573204e657720526f6d616e2c2054696d65732c207365726966223e4769e1baa36e672076692665636972633b6e3a206769616e677669656e3c2f666f6e743e3c2f7370616e3e3c2f6c693e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313270783b223e3c666f6e7420666163653d2254696d6573204e657720526f6d616e2c2054696d65732c207365726966223e436875792665636972633b6e2076692665636972633b6e2074e1bb956e672068e1bba3703a2063687579656e7669656e746f6e67686f703c2f666f6e743e3c2f7370616e3e3c2f6c693e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313270783b223e3c666f6e7420666163653d2254696d6573204e657720526f6d616e2c2054696d65732c207365726966223e436875792665636972633b6e2076692665636972633b6e206b68e1baa36f207468266961637574653b3a2063687579656e7669656e6b68616f7468693c2f666f6e743e3c2f7370616e3e3c2f6c693e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313270783b223e3c666f6e7420666163653d2254696d6573204e657720526f6d616e2c2054696d65732c207365726966223e436875792665636972633b6e2076692665636972633b6e20747579e1bb836e2073696e683a2063687579656e7669656e747579656e73696e683c2f666f6e743e3c2f7370616e3e3c2f6c693e0d0a3c2f6f6c3e0d0a0d0a3c703e4de1baad74206b68e1baa9753a20676474403132332340213c2f703e0d0a', '', '', '2020-05-14 10:48:11+07', 9);
INSERT INTO public.wiki_content_versions VALUES (17, 4, 4, 5, '\x3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206c6f67696e20504f53543a202f4c6f67696e2f41757468656e7469636174650d0a7b0d0a20557365726e616d653a20262333393b787878262333393b2c0d0a2050617373776f72643a20262333393b787878262333393b0d0a7d0d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920676574206d656e75204745543a202f4c6f67696e2f4765744d656e750d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206ce1baa5792064616e682073c3a163682068e1bb932073c6a12063c3b3207365617263682c2066696c7465723a20486f536f65732f4765744c6973740d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069207472c3ac6e68206bc3bd2068e1bb932073c6a13a20486f536f65732f5472696e684b790d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206bc3bd2073e1bb912068e1bb932073c6a13a20486f536f65732f4b79536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692067e1bbad692068e1bb932073c6a13a20486f536f65732f477569486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920647579e1bb87742068e1bb932073c6a13a20486f536f65732f4475796574486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692074e1bbab206368e1bb91692068e1bb932073c6a13a20486f536f65732f547543686f69486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a3c703e0d0a6170692076c4836e2062e1baa36e20c491c3ad6e68206bc3a86d3a205175616e4c7956616e42616e2f4174746163686d656e740d0a3c2f703e0d0a3c703e0d0a5175616e4c7956616e42616e2f4174746163686d656e740d0a3c2f703e0d0a3c703e0d0a5175616e4c7956616e42616e2f4c757556616e42616e0d0a3c2f703e0d0a3c703e0d0a5175616e4c7956616e42616e2f446f776e6c6f61640d0a3c2f703e0d0a3c703e0d0a5175616e4c7956616e42616e2f44616e68536163680d0a3c2f703e0d0a3c2f636f64653e0d0a3c2f7072653e0d0a', '', '', '2020-05-15 20:24:18+07', 3);
INSERT INTO public.wiki_content_versions VALUES (18, 4, 4, 5, '\x3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206c6f67696e20504f53543a202f4c6f67696e2f41757468656e7469636174650d0a7b0d0a20557365726e616d653a20262333393b787878262333393b2c0d0a2050617373776f72643a20262333393b787878262333393b0d0a7d0d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920676574206d656e75204745543a202f4c6f67696e2f4765744d656e750d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920686f20736f207365617263682c2066696c7465723a20486f536f65732f4765744c6973740d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069207472696e68206b793a20486f536f65732f5472696e684b790d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206b7920736f3a20486f536f65732f4b79536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692067756920686f20736f3a20486f536f65732f477569486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920647579657420686f20736f3a20486f536f65732f4475796574486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692074752063686f6920686f20736f2c206e686170206c7920646f3a20486f536f65732f547543686f69486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e6170692076616e2062616e2064696e68206b656d3a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4174746163686d656e74203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4c757556616e42616e203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f446f776e6c6f6164203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f44616e6853616368203c2f636f64653e3c2f7072653e0d0a', '', '', '2020-05-15 20:30:36+07', 4);
INSERT INTO public.wiki_content_versions VALUES (19, 4, 4, 5, '\x3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206c6f67696e20504f53543a202f4c6f67696e2f41757468656e7469636174650d0a7b0d0a20557365726e616d653a202e2e2e2c0d0a2050617373776f72643a202e2e2e0d0a7d0d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920676574206d656e75204745543a202f4c6f67696e2f4765744d656e750d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920686f20736f207365617263682c2066696c7465723a20486f536f65732f4765744c6973740d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069207472696e68206b793a20486f536f65732f5472696e684b790d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206b7920736f3a20486f536f65732f4b79536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692067756920686f20736f3a20486f536f65732f477569486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920647579657420686f20736f3a20486f536f65732f4475796574486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692074752063686f6920686f20736f2c206e686170206c7920646f3a20486f536f65732f547543686f69486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e6170692076616e2062616e2064696e68206b656d3a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4174746163686d656e74203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4c757556616e42616e203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f446f776e6c6f6164203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f44616e6853616368203c2f636f64653e3c2f7072653e0d0a', '', '', '2020-05-15 20:30:58+07', 5);
INSERT INTO public.wiki_content_versions VALUES (20, 4, 4, 5, '\x3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206c6f67696e20504f53543a202f4c6f67696e2f41757468656e7469636174650d0a7b0d0a20557365726e616d653a202e2e2e2c0d0a2050617373776f72643a202e2e2e0d0a7d0d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920676574206d656e75204745543a202f4c6f67696e2f4765744d656e750d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920686f20736f207365617263682c2066696c7465723a20486f536f65732f4765744c6973740d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069207472696e68206b793a20486f536f65732f5472696e684b790d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206b7920736f3a20486f536f65732f4b79536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692067756920686f20736f3a20486f536f65732f477569486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920647579657420686f20736f3a20486f536f65732f4475796574486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692074752063686f6920686f20736f2c206e686170206c7920646f3a20486f536f65732f547543686f69486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e6170692076616e2062616e2064696e68206b656d3a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4174746163686d656e74203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4c757556616e42616e203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f446f776e6c6f6164203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f44616e6853616368203c2f636f64653e3c2f7072653e0d0a', '', '', '2020-05-15 20:31:22+07', 6);
INSERT INTO public.wiki_content_versions VALUES (22, 4, 4, 5, '\x3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206c6f67696e20504f53543a202f4c6f67696e2f41757468656e7469636174650d0a7b0d0a20557365726e616d653a202e2e2e2c0d0a2050617373776f72643a202e2e2e0d0a7d0d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920676574206d656e75204745543a202f4c6f67696e2f4765744d656e750d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920686f20736f207365617263682c2066696c7465723a20486f536f65732f4765744c6973740d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069207472696e68206b793a20486f536f65732f5472696e684b790d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206b7920736f3a20486f536f65732f4b79536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692067756920686f20736f3a20486f536f65732f477569486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920647579657420686f20736f3a20486f536f65732f4475796574486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692074752063686f6920686f20736f2c206e686170206c7920646f3a20486f536f65732f547543686f69486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e6170692076616e2062616e2064696e68206b656d3a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4174746163686d656e74203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4c757556616e42616e203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f446f776e6c6f6164203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f44616e6853616368203c2f636f64653e3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c68313e54264167726176653b49204b484fe1baa24e3c2f68313e0d0a0d0a3c703e3c7374726f6e673e444f414e48204e474849e1bb86503a3c2f7374726f6e673e3c2f703e0d0a0d0a3c703e7669657474656c2f676474403132332340213c2f703e0d0a0d0a3c703e6d6f62696c652f676474403132332340213c2f703e0d0a0d0a3c703e766e6d6f62696c652f676474403132332340213c2f703e0d0a0d0a3c703e766e70742f676474403132332340213c2f703e0d0a0d0a3c703e6774656c2f676474403132332340213c2f703e0d0a0d0a3c703e3c7374726f6e673e53e1bb9e20545454543a3c2f7374726f6e673e3c2f703e0d0a0d0a3c703e736f747474742f676474403132332340213c2f703e0d0a', '', '', '2020-05-16 16:25:24+07', 7);
INSERT INTO public.wiki_content_versions VALUES (23, 6, 6, 6, '\x3c68323e43e1baa76e2073e1bbad613c2f68323e0d0a', '', '', '2020-05-18 13:52:25+07', 1);
INSERT INTO public.wiki_content_versions VALUES (39, 8, 8, 19, '\x232323204769740d0a0d0a2a2020204261636b656e643ac2a02068747470733a2f2f6769746c61622e636f6d2f7175616e74726163716e2f6261636b656e642e676974203d3e206465760d0a2a20202046726f6e74656e643ac2a02068747470733a2f2f6769746c61622e636f6d2f7175616e74726163716e2f66726f6e74656e642e676974203d3e206465760d0a0d0a232323204150490d0a68747470733a2f2f6170692d7175616e747261632d716e2e676474766965746e616d2e636f6d0d0a2f6f646174612f435353584b440d0a2f6f646174612f444d4469656d5175616e547261630d0a2f6f646174612f446f745175616e54726163730d0a0d0a232323204e474849e1bb86502056e1bba42043c6a02042e1baa24e0d0a0d0a2a20202056c6b0e1bba374206e67c6b0e1bba16e673f0d0a0d0a2323232054c38049204b484fe1baa24e3a0d0a0d0a2a20202061646d696e2f676474403132332340210d0a2a202020736f746e6d742f676474403132332340210d0a2a202020636362766d742f676474403132332340210d0a2a20202063687579656e7669656e71742f676474403132332340210d0a2a202020646f616e686e6768696570312f67647440313233234021', '', '', '2020-07-13 17:09:26+07', 4);
INSERT INTO public.wiki_content_versions VALUES (24, 6, 6, 6, '\x3c68323e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e43e1baa76e2073e1bbad613c2f7370616e3e3c2f7370616e3e3c2f68323e0d0a0d0a3c6f6c3e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e4b267961637574653b2073e1bb912063e1baad70206e68e1baad74206ce1baa169207472e1baa16e67207468266161637574653b692062e1baa36e67206cc6b0c6a16e672c2074727579206cc4a96e682c2074266167726176653b69206b686fe1baa36e2e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e58266f61637574653b612062e1baa36e67206cc6b0c6a16e67206b69e1bb836d20747261207472e1baa16e67207468266161637574653b692062e1baa36e67206cc6b0c6a16e672c2074727579206cc4a96e682c2074266167726176653b69206b686fe1baa36e20286368c6b061206b267961637574653b2073e1bb912c2078266f61637574653b612062e1baa36e67206cc6b0c6a16e67207468266967726176653b2078266f61637574653b61206c75266f636972633b6e2062e1baa36e672074727579206cc4a96e68292e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e4cc6b0c6a16e67207875e1baa574207468656f206e6775e1bb936e2c2074727579206cc4a96e682063c5a96e67207875e1baa574207468656f206e6775e1bb936e2e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a3c2f6f6c3e0d0a', '', '', '2020-05-18 14:19:47+07', 2);
INSERT INTO public.wiki_content_versions VALUES (25, 6, 6, 6, '\x3c68323e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e43e1baa76e2073e1bbad613c2f7370616e3e3c2f7370616e3e3c2f68323e0d0a0d0a3c6f6c3e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e4b267961637574653b2073e1bb912063e1baad70206e68e1baad74206ce1baa169207472e1baa16e67207468266161637574653b692062e1baa36e67206cc6b0c6a16e672c2074727579206cc4a96e682c2074266167726176653b69206b686fe1baa36e2e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a093c6c693e3c7370616e207374796c653d22666f6e742d73697a653a313470783b223e3c7370616e207374796c653d22666f6e742d66616d696c793a54696d6573204e657720526f6d616e2c54696d65732c73657269663b223e58266f61637574653b612062e1baa36e67206cc6b0c6a16e67206b69e1bb836d20747261207472e1baa16e67207468266161637574653b692062e1baa36e67206cc6b0c6a16e672c2074727579206cc4a96e682c2074266167726176653b69206b686fe1baa36e20286368c6b061206b267961637574653b2073e1bb912c2078266f61637574653b612062e1baa36e67206cc6b0c6a16e67207468266967726176653b2078266f61637574653b61206c75266f636972633b6e2062e1baa36e672074727579206cc4a96e68292e3c2f7370616e3e3c2f7370616e3e3c2f6c693e0d0a3c2f6f6c3e0d0a', '', '', '2020-05-18 14:24:33+07', 3);
INSERT INTO public.wiki_content_versions VALUES (26, 4, 4, 5, '\x3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206c6f67696e20504f53543a202f4c6f67696e2f41757468656e7469636174650d0a7b0d0a20557365726e616d653a202e2e2e2c0d0a2050617373776f72643a202e2e2e0d0a7d0d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920676574206d656e75204745543a202f4c6f67696e2f4765744d656e750d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920686f20736f207365617263682c2066696c7465723a20486f536f65732f4765744c6973740d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069207472696e68206b793a20486f536f65732f5472696e684b790d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206b7920736f3a20486f536f65732f4b79536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692067756920686f20736f3a20486f536f65732f477569486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920647579657420686f20736f3a20486f536f65732f4475796574486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692074752063686f6920686f20736f2c206e686170206c7920646f3a20486f536f65732f547543686f69486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6c61792066696c65207064663a20486f536f65732f47656e65726174655044463f69643d7878780d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e6170692076616e2062616e2064696e68206b656d3a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4174746163686d656e74203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4c757556616e42616e203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f446f776e6c6f6164203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f44616e6853616368203c2f636f64653e3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c68313e54264167726176653b49204b484fe1baa24e3c2f68313e0d0a0d0a3c703e3c7374726f6e673e444f414e48204e474849e1bb86503a3c2f7374726f6e673e3c2f703e0d0a0d0a3c703e7669657474656c2f676474403132332340213c2f703e0d0a0d0a3c703e6d6f62696c652f676474403132332340213c2f703e0d0a0d0a3c703e766e6d6f62696c652f676474403132332340213c2f703e0d0a0d0a3c703e766e70742f676474403132332340213c2f703e0d0a0d0a3c703e6774656c2f676474403132332340213c2f703e0d0a0d0a3c703e3c7374726f6e673e53e1bb9e20545454543a3c2f7374726f6e673e3c2f703e0d0a0d0a3c703e736f747474742f676474403132332340213c2f703e0d0a', '', '', '2020-05-20 11:17:23+07', 8);
INSERT INTO public.wiki_content_versions VALUES (27, 4, 4, 5, '\x3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206c6f67696e20504f53543a202f4c6f67696e2f41757468656e7469636174650d0a7b0d0a20557365726e616d653a202e2e2e2c0d0a2050617373776f72643a202e2e2e0d0a7d0d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920676574206d656e75204745543a202f4c6f67696e2f4765744d656e750d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920686f20736f207365617263682c2066696c7465723a20486f536f65732f4765744c6973740d0a3c2f636f64653e0d0a3f54656e486f536f3d26616d703b4c6f6169486f536f3d26616d703b494444563d26616d703b5374617274446174653d26616d703b456e64446174653d26616d703b5472616e67546861690d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069207472696e68206b793a20486f536f65732f5472696e684b790d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206b7920736f3a20486f536f65732f4b79536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692067756920686f20736f3a20486f536f65732f477569486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920647579657420686f20736f3a20486f536f65732f4475796574486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692074752063686f6920686f20736f2c206e686170206c7920646f3a20486f536f65732f547543686f69486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6c61792066696c65207064663a20486f536f65732f47656e65726174655044463f69643d7878780d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e6170692076616e2062616e2064696e68206b656d3a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4174746163686d656e74203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4c757556616e42616e203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f446f776e6c6f6164203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f44616e6853616368203c2f636f64653e3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c68313e54264167726176653b49204b484fe1baa24e3c2f68313e0d0a0d0a3c703e3c7374726f6e673e444f414e48204e474849e1bb86503a3c2f7374726f6e673e3c2f703e0d0a0d0a3c703e7669657474656c2f676474403132332340213c2f703e0d0a0d0a3c703e6d6f62696c652f676474403132332340213c2f703e0d0a0d0a3c703e766e6d6f62696c652f676474403132332340213c2f703e0d0a0d0a3c703e766e70742f676474403132332340213c2f703e0d0a0d0a3c703e6774656c2f676474403132332340213c2f703e0d0a0d0a3c703e3c7374726f6e673e53e1bb9e20545454543a3c2f7374726f6e673e3c2f703e0d0a0d0a3c703e736f747474742f676474403132332340213c2f703e0d0a', '', '', '2020-05-23 10:10:19+07', 9);
INSERT INTO public.wiki_content_versions VALUES (28, 4, 4, 5, '\x3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206c6f67696e20504f53543a202f4c6f67696e2f41757468656e7469636174650d0a7b0d0a20557365726e616d653a202e2e2e2c0d0a2050617373776f72643a202e2e2e0d0a7d0d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920676574206d656e75204745543a202f4c6f67696e2f4765744d656e750d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920686f20736f207365617263682c2066696c7465723a20486f536f65732f4765744c6973743c2f636f64653e3f54656e486f536f3d26616d703b4c6f6169486f536f3d26616d703b494444563d26616d703b5374617274446174653d26616d703b456e64446174653d26616d703b5472616e67546861690d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069207472696e68206b793a20486f536f65732f5472696e684b790d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206b7920736f3a20486f536f65732f4b79536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692067756920686f20736f3a20486f536f65732f477569486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920647579657420686f20736f3a20486f536f65732f4475796574486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692074752063686f6920686f20736f2c206e686170206c7920646f3a20486f536f65732f547543686f69486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6c61792066696c65207064663a20486f536f65732f47656e65726174655044463f69643d7878780d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e6170692076616e2062616e2064696e68206b656d3a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4174746163686d656e74203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4c757556616e42616e203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f446f776e6c6f6164203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f44616e6853616368203c2f636f64653e3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c68313e54264167726176653b49204b484fe1baa24e3c2f68313e0d0a0d0a3c703e3c7374726f6e673e444f414e48204e474849e1bb86503a3c2f7374726f6e673e3c2f703e0d0a0d0a3c703e7669657474656c2f676474403132332340213c2f703e0d0a0d0a3c703e6d6f62696c652f676474403132332340213c2f703e0d0a0d0a3c703e766e6d6f62696c652f676474403132332340213c2f703e0d0a0d0a3c703e766e70742f676474403132332340213c2f703e0d0a0d0a3c703e6774656c2f676474403132332340213c2f703e0d0a0d0a3c703e3c7374726f6e673e53e1bb9e20545454543a3c2f7374726f6e673e3c2f703e0d0a0d0a3c703e736f747474742f676474403132332340213c2f703e0d0a', '', '', '2020-05-23 10:10:41+07', 10);
INSERT INTO public.wiki_content_versions VALUES (40, 8, 8, 19, '\x232323204769740d0a0d0a2a2020204261636b656e643ac2a02068747470733a2f2f6769746c61622e636f6d2f7175616e74726163716e2f6261636b656e642e676974203d3e206465760d0a2a20202046726f6e74656e643ac2a02068747470733a2f2f6769746c61622e636f6d2f7175616e74726163716e2f66726f6e74656e642e676974203d3e206465760d0a0d0a232323204150490d0a68747470733a2f2f6170692d7175616e747261632d716e2e676474766965746e616d2e636f6d0d0a2f6f646174612f435353584b440d0a2f6f646174612f444d4469656d5175616e547261630d0a2f6f646174612f446f745175616e54726163730d0a2f6f646174612f444d43756d436f6e674e67686965700d0a2f6f646174612f444d4c6f61694d6f695472756f6e67730d0a2f6f646174612f444d4c6f61695175616e547261630d0a2f6f646174612f444d54686f6e67536f446f0d0a2f6f646174612f446f6e566954696e680d0a2f6f646174612f4475416e0d0a2f6f646174612f4c6f6169436f536f4b440d0a2f6f646174612f4c6f61694475416e0d0a2f6f646174612f4c6f6169486f536f0d0a2f6f646174612f5175616e4c79486f536f4475416e0d0a2f6f646174612f43686954696574446f74446f44696e684b790d0a0d0a0d0a0d0a0d0a232323204e474849e1bb86502056e1bba42043c6a02042e1baa24e0d0a0d0a2a20202056c6b0e1bba374206e67c6b0e1bba16e673f0d0a0d0a2323232054c38049204b484fe1baa24e3a0d0a0d0a2a20202061646d696e2f676474403132332340210d0a2a202020736f746e6d742f676474403132332340210d0a2a202020636362766d742f676474403132332340210d0a2a20202063687579656e7669656e71742f676474403132332340210d0a2a202020646f616e686e6768696570312f67647440313233234021', '', '', '2020-07-14 09:11:51+07', 5);
INSERT INTO public.wiki_content_versions VALUES (29, 4, 4, 5, '\x3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206c6f67696e20504f53543a202f4c6f67696e2f41757468656e7469636174650d0a7b0d0a20557365726e616d653a202e2e2e2c0d0a2050617373776f72643a202e2e2e0d0a7d0d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920676574206d656e75204745543a202f4c6f67696e2f4765744d656e750d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920686f20736f207365617263682c2066696c7465723a20486f536f65732f4765744c6973743f54656e486f536f3d26616d703b4c6f6169486f536f3d26616d703b494444563d26616d703b5374617274446174653d26616d703b456e64446174653d26616d703b5472616e67546861693c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069207472696e68206b793a20486f536f65732f5472696e684b790d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206b7920736f3a20486f536f65732f4b79536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692067756920686f20736f3a20486f536f65732f477569486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920647579657420686f20736f3a20486f536f65732f4475796574486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692074752063686f6920686f20736f2c206e686170206c7920646f3a20486f536f65732f547543686f69486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6c61792066696c65207064663a20486f536f65732f47656e65726174655044463f69643d7878780d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e6170692076616e2062616e2064696e68206b656d3a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4174746163686d656e74203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4c757556616e42616e203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f446f776e6c6f6164203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f44616e6853616368203c2f636f64653e3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c68313e54264167726176653b49204b484fe1baa24e3c2f68313e0d0a0d0a3c703e3c7374726f6e673e444f414e48204e474849e1bb86503a3c2f7374726f6e673e3c2f703e0d0a0d0a3c703e7669657474656c2f676474403132332340213c2f703e0d0a0d0a3c703e6d6f62696c652f676474403132332340213c2f703e0d0a0d0a3c703e766e6d6f62696c652f676474403132332340213c2f703e0d0a0d0a3c703e766e70742f676474403132332340213c2f703e0d0a0d0a3c703e6774656c2f676474403132332340213c2f703e0d0a0d0a3c703e3c7374726f6e673e53e1bb9e20545454543a3c2f7374726f6e673e3c2f703e0d0a0d0a3c703e736f747474742f676474403132332340213c2f703e0d0a', '', '', '2020-05-23 10:11:32+07', 11);
INSERT INTO public.wiki_content_versions VALUES (30, 4, 4, 5, '\x3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206c6f67696e20504f53543a202f4c6f67696e2f41757468656e7469636174650d0a7b0d0a20557365726e616d653a202e2e2e2c0d0a2050617373776f72643a202e2e2e0d0a7d0d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920676574206d656e75204745543a202f4c6f67696e2f4765744d656e750d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920686f20736f207365617263682c2066696c7465723a20486f536f65732f4765744c6973743f54656e486f536f3d5f5f4c6f6169486f536f3d5f5f494444563d5f5f5374617274446174653d5f5f456e64446174653d5f5f5472616e67546861693c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069207472696e68206b793a20486f536f65732f5472696e684b790d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206b7920736f3a20486f536f65732f4b79536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692067756920686f20736f3a20486f536f65732f477569486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920647579657420686f20736f3a20486f536f65732f4475796574486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692074752063686f6920686f20736f2c206e686170206c7920646f3a20486f536f65732f547543686f69486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6c61792066696c65207064663a20486f536f65732f47656e65726174655044463f69643d7878780d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e6170692076616e2062616e2064696e68206b656d3a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4174746163686d656e74203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4c757556616e42616e203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f446f776e6c6f6164203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f44616e6853616368203c2f636f64653e3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c68313e54264167726176653b49204b484fe1baa24e3c2f68313e0d0a0d0a3c703e3c7374726f6e673e444f414e48204e474849e1bb86503a3c2f7374726f6e673e3c2f703e0d0a0d0a3c703e7669657474656c2f676474403132332340213c2f703e0d0a0d0a3c703e6d6f62696c652f676474403132332340213c2f703e0d0a0d0a3c703e766e6d6f62696c652f676474403132332340213c2f703e0d0a0d0a3c703e766e70742f676474403132332340213c2f703e0d0a0d0a3c703e6774656c2f676474403132332340213c2f703e0d0a0d0a3c703e3c7374726f6e673e53e1bb9e20545454543a3c2f7374726f6e673e3c2f703e0d0a0d0a3c703e736f747474742f676474403132332340213c2f703e0d0a', '', '', '2020-05-23 10:12:44+07', 12);
INSERT INTO public.wiki_content_versions VALUES (31, 4, 4, 5, '\x3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206c6f67696e20504f53543a202f4c6f67696e2f41757468656e7469636174650d0a7b0d0a20557365726e616d653a202e2e2e2c0d0a2050617373776f72643a202e2e2e0d0a7d0d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920676574206d656e75204745543a202f4c6f67696e2f4765744d656e750d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920686f20736f207365617263682c2066696c7465723a20486f536f65732f4765744c6973743f54656e486f536f3d5f5f4c6f6169486f536f3d5f5f494444563d5f5f5374617274446174653d5f5f456e64446174653d5f5f5472616e67546861693c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e61706920636869207469657420686f20736f3a206f646174612f486f536f5f5472616d4254533c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e61706920636869207469657420686f20736f3a206f646174612f486f536f5f547579656e4361704e67616d3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e61706920636869207469657420686f20736f3a206f646174612f486f536f5f547579656e4361704e6f693c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e61706920636869207469657420686f20736f3a206f646174612f486f536f5f4469656d4469636856753c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069207472696e68206b793a20486f536f65732f5472696e684b790d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206b7920736f3a20486f536f65732f4b79536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692067756920686f20736f3a20486f536f65732f477569486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920647579657420686f20736f3a20486f536f65732f4475796574486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692074752063686f6920686f20736f2c206e686170206c7920646f3a20486f536f65732f547543686f69486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6c61792066696c65207064663a20486f536f65732f47656e65726174655044463f69643d7878780d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e6170692076616e2062616e2064696e68206b656d3a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4174746163686d656e74203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4c757556616e42616e203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f446f776e6c6f6164203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f44616e6853616368203c2f636f64653e3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c68313e54264167726176653b49204b484fe1baa24e3c2f68313e0d0a0d0a3c703e3c7374726f6e673e444f414e48204e474849e1bb86503a3c2f7374726f6e673e3c2f703e0d0a0d0a3c703e7669657474656c2f676474403132332340213c2f703e0d0a0d0a3c703e6d6f62696c652f676474403132332340213c2f703e0d0a0d0a3c703e766e6d6f62696c652f676474403132332340213c2f703e0d0a0d0a3c703e766e70742f676474403132332340213c2f703e0d0a0d0a3c703e6774656c2f676474403132332340213c2f703e0d0a0d0a3c703e3c7374726f6e673e53e1bb9e20545454543a3c2f7374726f6e673e3c2f703e0d0a0d0a3c703e736f747474742f676474403132332340213c2f703e0d0a', '', '', '2020-05-23 10:32:43+07', 13);
INSERT INTO public.wiki_content_versions VALUES (32, 4, 4, 5, '\x3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206c6f67696e20504f53543a202f4c6f67696e2f41757468656e7469636174650d0a7b0d0a20557365726e616d653a202e2e2e2c0d0a2050617373776f72643a202e2e2e0d0a7d0d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920676574206d656e75204745543a202f4c6f67696e2f4765744d656e750d0a3c2f636f64653e3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920686f20736f207365617263682c2066696c7465723a20486f536f65732f4765744c6973743f54656e486f536f3d5f5f4c6f6169486f536f3d5f5f494444563d5f5f5374617274446174653d5f5f456e64446174653d5f5f5472616e67546861693c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e61706920636869207469657420686f20736f3a206f646174612f486f536f5f5472616d4254533c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e61706920636869207469657420686f20736f3a206f646174612f486f536f5f547579656e4361704e67616d3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e61706920636869207469657420686f20736f3a206f646174612f486f536f5f547579656e4361704e6f693c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e61706920636869207469657420686f20736f3a206f646174612f486f536f5f4469656d4469636856753c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069207472696e68206b793a20486f536f65732f5472696e684b790d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a617069206b7920736f3a20486f536f65732f4b79536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692067756920686f20736f3a20486f536f65732f477569486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a61706920647579657420686f20736f3a20486f536f65732f4475796574486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6170692074752063686f6920686f20736f2c206e686170206c7920646f3a20486f536f65732f547543686f69486f536f0d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e0d0a6c61792066696c65207064663a20486f536f65732f47656e65726174655044463f69643d7878780d0a3c2f636f64653e0d0a3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e6170692076616e2062616e2064696e68206b656d3a3c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4174746163686d656e74203c2f636f64653e3c2f7072653e0d0a0d0a3c703e7b207461726765745f69642c207461726765745f6d6f64756c65203d202671756f743b486f536f2671756f743b2c206d615f7461695f6b686f616e2c2066696c652c266e6273703b5375626a6563742c266e6273703b49737375656444617465207d3c2f703e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f4c757556616e42616e203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f446f776e6c6f6164203c2f636f64653e3c2f7072653e0d0a0d0a3c7072653e0d0a3c636f646520636c6173733d226a617661736372697074223e5175616e4c7956616e42616e2f44616e6853616368203c2f636f64653e3c2f7072653e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c703e266e6273703b3c2f703e0d0a0d0a3c68313e54264167726176653b49204b484fe1baa24e3c2f68313e0d0a0d0a3c703e3c7374726f6e673e444f414e48204e474849e1bb86503a3c2f7374726f6e673e3c2f703e0d0a0d0a3c703e7669657474656c2f676474403132332340213c2f703e0d0a0d0a3c703e6d6f62696c652f676474403132332340213c2f703e0d0a0d0a3c703e766e6d6f62696c652f676474403132332340213c2f703e0d0a0d0a3c703e766e70742f676474403132332340213c2f703e0d0a0d0a3c703e6774656c2f676474403132332340213c2f703e0d0a0d0a3c703e3c7374726f6e673e53e1bb9e20545454543a3c2f7374726f6e673e3c2f703e0d0a0d0a3c703e736f747474742f676474403132332340213c2f703e0d0a', '', '', '2020-05-28 14:48:03+07', 14);
INSERT INTO public.wiki_content_versions VALUES (33, 3, 3, 6, '\x4e68e1bbaf6e6720c49169e1bb81752063e1baa76e2068e1bb8f690d0a0d0a312e204e69c3aa6e206b68c3b36120c491c6b0e1bba3632074e1bb95206368e1bba963206e68c6b0207468e1babf206ec3a06f2c2063c3b320c491e1bb936e672062e1bb992063686f2074e1baa5742063e1baa32063c3a163206ce1bb9b70206b68c3b46e673f20486179206de1bb9769206ce1bb9b702063c3b3206de1bb99742063c3a163682074c3ad6e68206e69c3aa6e206b68c3b361206b68c3a163206e6861753f0d0a2020202a2043266f61637574653b206b68266f61637574653b612032206ec4836d2028424330343a206b68266f61637574653b6120383720323031392d32303230292c2063266f61637574653b206b68266f61637574653b612033206ec4836d2028424330323a206b68266f61637574653b6120313720323031392d32303231292e0d0a2020202a2043266f61637574653b2032206b68266f61637574653b612063267567726176653b6e67206ec4836d2028424330352d30363a206b68266f61637574653b61203835206ec4836d20323031382d323032302076266167726176653b20424330373a206b68266f61637574653b61203830206ec4836d20323031382d2032303230290d0a312e205669e1bb8763207175e1baa36e206c267961637574653b206769266161637574653b6f2076692665636972633b6e2064e1baa1792062267567726176653b2074726f6e67207472c6b0e1bb9d6e672068e1bba370206769266161637574653b6f2076692665636972633b6e207068e1bba5207472266161637574653b6368206368266961637574653b6e682062e1baad6e2063266f636972633b6e67207669e1bb876320c491e1bb9974207875e1baa5740d0a0d0a4063c3a2752068e1bb8f692063e1bba7612056c5a92e0d0a0d0a63c3a163682074c3ad6e6820c49169e1bb836d2078e1babf70206c6fe1baa1692068e1bb8d63207669c3aa6e2e0d0ac49069e1bb836d2074e1bb9174206e676869e1bb87702063c3b32064c3b96e6720c491e1bb832074c3ad6e6820c49169e1bb836d2078e1babf70206c6fe1baa16920284ee1babf752063c3b3207468c3ac2063c3b32074e1bb89206ce1bb8720c49169e1bb836d206861792063e1bb996e67206ce1baa169206368696120c491e1bb8175207472c3aa6e2073e1bb91206dc3b46e292e0d0a0d0ac2a054c3a069206b686fe1baa36e3a0d0a0d0a41646d696e3a2061646d696e0d0a4769e1baa36e67207669c3aa6e3a206769616e677669656e0d0a43687579c3aa6e207669c3aa6e2074e1bb956e672068e1bba3703a2063687579656e7669656e746f6e67686f700d0a43687579c3aa6e207669c3aa6e206b68e1baa36f207468c3ad3a2063687579656e7669656e6b68616f7468690d0a43687579c3aa6e207669c3aa6e20747579e1bb836e2073696e683a2063687579656e7669656e747579656e73696e680d0a0d0a4de1baad74206b68e1baa9753a2067647440313233234021', '', '', '2020-06-13 16:16:54+07', 10);
INSERT INTO public.wiki_content_versions VALUES (34, 7, 7, 6, '\x232057696b692078c3ba63207469e1babf6e20c491e1baa7752074c6b00d0a2323204769740d0a312e205b46726f6e742d656e645d2868747470733a2f2f6769746c61622e636f6d2f7875637469656e64617574752f7875637469656e5f66726f6e74656e64290d0a312e205b4261636b656e645d2868747470733a2f2f6769746c61622e636f6d2f7875637469656e64617574752f6e6573746a732d61706929', '', '', '2020-06-15 09:03:34+07', 1);
INSERT INTO public.wiki_content_versions VALUES (35, 7, 7, 5, '\x232057696b692078c3ba63207469e1babf6e20c491e1baa7752074c6b00d0a0d0a2323204769740d0a0d0a312e20205b46726f6e742d656e645d2868747470733a2f2f6769746c61622e636f6d2f7875637469656e64617574752f7875637469656e5f66726f6e74656e64290d0a322e20205b4261636b656e645d2868747470733a2f2f6769746c61622e636f6d2f7875637469656e64617574752f6e6573746a732d617069290d0a0d0a232323204769616f206469e1bb876e0d0a0d0a68747470733a2f2f646f63732e676f6f676c652e636f6d2f70726573656e746174696f6e2f642f3158477a493034374a5a30503771425a70305f7a344e79394e6c535442634833316d7131377a624846774f6b2f6564697423736c6964653d69642e67386263656666656363345f305f333038', '', '', '2020-07-08 16:56:31+07', 2);
INSERT INTO public.wiki_content_versions VALUES (36, 8, 8, 5, '\x23204368e1bb9d2074c3ad2e2e2e', '', '', '2020-07-09 14:51:04+07', 1);
INSERT INTO public.wiki_content_versions VALUES (37, 8, 8, 5, '\x232323204769740d0a0d0a2a2020204261636b656e643ac2a068747470733a2f2f6769746c61622e636f6d2f7175616e74726163716e2f6261636b656e642e676974203d3e206465760d0a2a20202046726f6e74656e643ac2a068747470733a2f2f6769746c61622e636f6d2f7175616e74726163716e2f66726f6e74656e642e676974203d3e206465760d0a0d0a232323204150490d0a0d0a232323204e474849e1bb86502056e1bba42043c6a02042e1baa24e0d0a0d0a2d2056c6b0e1bba374206e67c6b0e1bba16e673f', '', '', '2020-07-10 08:47:00+07', 2);
INSERT INTO public.wiki_content_versions VALUES (38, 8, 8, 5, '\x232323204769740d0a0d0a2a2020204261636b656e643ac2a02068747470733a2f2f6769746c61622e636f6d2f7175616e74726163716e2f6261636b656e642e676974203d3e206465760d0a2a20202046726f6e74656e643ac2a02068747470733a2f2f6769746c61622e636f6d2f7175616e74726163716e2f66726f6e74656e642e676974203d3e206465760d0a0d0a232323204150490d0a0d0a232323204e474849e1bb86502056e1bba42043c6a02042e1baa24e0d0a0d0a2a20202056c6b0e1bba374206e67c6b0e1bba16e673f0d0a0d0a2323232054c38049204b484fe1baa24e3a0d0a0d0a2a20202061646d696e2f676474403132332340210d0a2a202020736f746e6d742f676474403132332340210d0a2a202020636362766d742f676474403132332340210d0a2a20202063687579656e7669656e71742f676474403132332340210d0a2a202020646f616e686e6768696570312f67647440313233234021', '', '', '2020-07-10 08:58:44+07', 3);
INSERT INTO public.wiki_content_versions VALUES (72, 14, 14, 5, '\x4c696e6b207472616e67207765623a2068747470733a2f2f7175616e6c796368756e6763752e676474736f6c7574696f6e732e766e2f0d0a6170693a2068747470733a2f2f6170692d7175616e6c796368756e6763752e676474736f6c7574696f6e732e766e0d0a', '', '', '2020-09-11 16:43:39+07', 1);
INSERT INTO public.wiki_content_versions VALUES (41, 8, 8, 19, '\x232323204769740d0a0d0a2a2020204261636b656e643ac2a02068747470733a2f2f6769746c61622e636f6d2f7175616e74726163716e2f6261636b656e642e676974203d3e206465760d0a2a20202046726f6e74656e643ac2a02068747470733a2f2f6769746c61622e636f6d2f7175616e74726163716e2f66726f6e74656e642e676974203d3e206465760d0a0d0a232323204150490d0a68747470733a2f2f6170692d7175616e747261632d716e2e676474766965746e616d2e636f6d0d0a2f6f646174612f435353584b440d0a2f6f646174612f444d4469656d5175616e547261630d0a2f6f646174612f446f745175616e54726163730d0a2f6f646174612f444d43756d436f6e674e67686965700d0a2f6f646174612f444d4c6f61694d6f695472756f6e67730d0a2f6f646174612f444d4c6f61695175616e547261630d0a2f6f646174612f444d54686f6e67536f446f0d0a2f6f646174612f446f6e566954696e680d0a2f6f646174612f4475416e0d0a2f6f646174612f4c6f6169436f536f4b440d0a2f6f646174612f4c6f61694475416e0d0a2f6f646174612f4c6f6169486f536f0d0a2f6f646174612f5175616e4c79486f536f4475416e0d0a2f6f646174612f43686954696574446f74446f44696e684b790d0a2f6f646174612f444d5143564e0d0a2f6f646174612f436869546965745143564e0d0a2f6f646174612f43686954696574446f7454727579656e0d0a2f6f646174612f446f7454727579656e546f6e674375630d0a0d0a0d0a0d0a0d0a232323204e474849e1bb86502056e1bba42043c6a02042e1baa24e0d0a0d0a2a20202056c6b0e1bba374206e67c6b0e1bba16e673f0d0a0d0a2323232054c38049204b484fe1baa24e3a0d0a0d0a2a20202061646d696e2f676474403132332340210d0a2a202020736f746e6d742f676474403132332340210d0a2a202020636362766d742f676474403132332340210d0a2a20202063687579656e7669656e71742f676474403132332340210d0a2a202020646f616e686e6768696570312f67647440313233234021', '', '', '2020-07-22 14:54:36+07', 6);
INSERT INTO public.wiki_content_versions VALUES (42, 8, 8, 5, '\x232323204769740d0a0d0a2a2020204261636b656e643ac2a02068747470733a2f2f6769746c61622e636f6d2f7175616e74726163716e2f6261636b656e642e676974203d3e206465760d0a2a20202046726f6e74656e643ac2a02068747470733a2f2f6769746c61622e636f6d2f7175616e74726163716e2f66726f6e74656e642e676974203d3e206465760d0a0d0a232323204150490d0a0d0a68747470733a2f2f6170692d7175616e747261632d716e2e676474766965746e616d2e636f6d0d0a2f6f646174612f435353584b440d0a2f6f646174612f444d4469656d5175616e547261630d0a2f6f646174612f446f745175616e54726163730d0a2f6f646174612f444d43756d436f6e674e67686965700d0a2f6f646174612f444d4c6f61694d6f695472756f6e67730d0a2f6f646174612f444d4c6f61695175616e547261630d0a2f6f646174612f444d54686f6e67536f446f0d0a2f6f646174612f446f6e566954696e680d0a2f6f646174612f4475416e0d0a2f6f646174612f4c6f6169436f536f4b440d0a2f6f646174612f4c6f61694475416e0d0a2f6f646174612f4c6f6169486f536f0d0a2f6f646174612f5175616e4c79486f536f4475416e0d0a2f6f646174612f43686954696574446f74446f44696e684b790d0a2f6f646174612f444d5143564e0d0a2f6f646174612f436869546965745143564e0d0a2f6f646174612f43686954696574446f7454727579656e0d0a2f6f646174612f446f7454727579656e546f6e674375630d0a0d0a232323204e474849e1bb86502056e1bba42043c6a02042e1baa24e0d0a0d0a2a20202056c6b0e1bba374206e67c6b0e1bba16e672063e1bba7612074e1bbab6e67206c6fe1baa1692072612073616f3f0d0a2a202020564e5f415149206cc3a02067c3ac3f0d0a0d0a2323232054c38049204b484fe1baa24e3a0d0a0d0a2a20202061646d696e2f676474403132332340210d0a2a202020736f746e6d742f676474403132332340210d0a2a202020636362766d742f676474403132332340210d0a2a20202063687579656e7669656e71742f676474403132332340210d0a2a202020646f616e686e6768696570312f67647440313233234021', '', '', '2020-07-22 16:36:01+07', 7);
INSERT INTO public.wiki_content_versions VALUES (43, 8, 8, 19, '\x232323204769740d0a0d0a2a2020204261636b656e643ac2a02068747470733a2f2f6769746c61622e636f6d2f7175616e74726163716e2f6261636b656e642e676974203d3e206465760d0a2a20202046726f6e74656e643ac2a02068747470733a2f2f6769746c61622e636f6d2f7175616e74726163716e2f66726f6e74656e642e676974203d3e206465760d0a0d0a232323204150490d0a0d0a68747470733a2f2f6170692d7175616e747261632d716e2e676474766965746e616d2e636f6d0d0a2f6f646174612f435353584b440d0a2f6f646174612f444d4469656d5175616e547261630d0a2f6f646174612f446f745175616e54726163730d0a2f6f646174612f444d43756d436f6e674e67686965700d0a2f6f646174612f444d4c6f61694d6f695472756f6e67730d0a2f6f646174612f444d4c6f61695175616e547261630d0a2f6f646174612f444d54686f6e67536f446f0d0a2f6f646174612f446f6e566954696e680d0a2f6f646174612f4475416e0d0a2f6f646174612f4c6f6169436f536f4b440d0a2f6f646174612f4c6f61694475416e0d0a2f6f646174612f4c6f6169486f536f0d0a2f6f646174612f5175616e4c79486f536f4475416e0d0a2f6f646174612f43686954696574446f74446f44696e684b790d0a2f6f646174612f444d5143564e0d0a2f6f646174612f436869546965745143564e0d0a2f6f646174612f43686954696574446f7454727579656e0d0a2f6f646174612f446f7454727579656e546f6e674375630d0a0d0a2f5175616e547261632f436869536f436861744c756f6e675175616e547261630d0a0d0a232323204e474849e1bb86502056e1bba42043c6a02042e1baa24e0d0a0d0a2a20202056c6b0e1bba374206e67c6b0e1bba16e672063e1bba7612074e1bbab6e67206c6fe1baa1692072612073616f3f0d0a2a202020564e5f415149206cc3a02067c3ac3f0d0a0d0a2323232054c38049204b484fe1baa24e3a0d0a0d0a2a20202061646d696e2f676474403132332340210d0a2a202020736f746e6d742f676474403132332340210d0a2a202020636362766d742f676474403132332340210d0a2a20202063687579656e7669656e71742f676474403132332340210d0a2a202020646f616e686e6768696570312f67647440313233234021', '', '', '2020-07-24 11:19:09+07', 8);
INSERT INTO public.wiki_content_versions VALUES (44, 8, 8, 19, '\x232323204769740d0a0d0a2a2020204261636b656e643ac2a02068747470733a2f2f6769746c61622e636f6d2f7175616e74726163716e2f6261636b656e642e676974203d3e206465760d0a2a20202046726f6e74656e643ac2a02068747470733a2f2f6769746c61622e636f6d2f7175616e74726163716e2f66726f6e74656e642e676974203d3e206465760d0a0d0a232323204150490d0a0d0a68747470733a2f2f6170692d7175616e747261632d716e2e676474766965746e616d2e636f6d0d0a2f6f646174612f435353584b440d0a2f6f646174612f444d4469656d5175616e547261630d0a2f6f646174612f446f745175616e54726163730d0a2f6f646174612f444d43756d436f6e674e67686965700d0a2f6f646174612f444d4c6f61694d6f695472756f6e67730d0a2f6f646174612f444d4c6f61695175616e547261630d0a2f6f646174612f444d54686f6e67536f446f0d0a2f6f646174612f446f6e566954696e680d0a2f6f646174612f4475416e0d0a2f6f646174612f4c6f6169436f536f4b440d0a2f6f646174612f4c6f61694475416e0d0a2f6f646174612f4c6f6169486f536f0d0a2f6f646174612f5175616e4c79486f536f4475416e0d0a2f6f646174612f43686954696574446f74446f44696e684b790d0a2f6f646174612f444d5143564e0d0a2f6f646174612f436869546965745143564e0d0a2f6f646174612f43686954696574446f7454727579656e0d0a2f6f646174612f446f7454727579656e546f6e674375630d0a0d0a2f5175616e547261632f436869536f436861744c756f6e675175616e547261630d0a2f5175616e547261632f4151495f323447696f2f3f49643d3c6e756d6265723e0d0a0d0a232323204e474849e1bb86502056e1bba42043c6a02042e1baa24e0d0a0d0a2a20202056c6b0e1bba374206e67c6b0e1bba16e672063e1bba7612074e1bbab6e67206c6fe1baa1692072612073616f3f0d0a2a202020564e5f415149206cc3a02067c3ac3f0d0a0d0a2323232054c38049204b484fe1baa24e3a0d0a0d0a2a20202061646d696e2f676474403132332340210d0a2a202020736f746e6d742f676474403132332340210d0a2a202020636362766d742f676474403132332340210d0a2a20202063687579656e7669656e71742f676474403132332340210d0a2a202020646f616e686e6768696570312f67647440313233234021', '', '', '2020-07-27 08:16:12+07', 9);
INSERT INTO public.wiki_content_versions VALUES (45, 8, 8, 19, '\x232323204769740d0a0d0a2a2020204261636b656e643ac2a02068747470733a2f2f6769746c61622e636f6d2f7175616e74726163716e2f6261636b656e642e676974203d3e206465760d0a2a20202046726f6e74656e643ac2a02068747470733a2f2f6769746c61622e636f6d2f7175616e74726163716e2f66726f6e74656e642e676974203d3e206465760d0a0d0a232323204150490d0a0d0a68747470733a2f2f6170692d7175616e747261632d716e2e676474766965746e616d2e636f6d0d0a2f6f646174612f435353584b440d0a2f6f646174612f444d4469656d5175616e547261630d0a2f6f646174612f446f745175616e54726163730d0a2f6f646174612f444d43756d436f6e674e67686965700d0a2f6f646174612f444d4c6f61694d6f695472756f6e67730d0a2f6f646174612f444d4c6f61695175616e547261630d0a2f6f646174612f444d54686f6e67536f446f0d0a2f6f646174612f446f6e566954696e680d0a2f6f646174612f4475416e0d0a2f6f646174612f4c6f6169436f536f4b440d0a2f6f646174612f4c6f61694475416e0d0a2f6f646174612f4c6f6169486f536f0d0a2f6f646174612f5175616e4c79486f536f4475416e0d0a2f6f646174612f43686954696574446f74446f44696e684b790d0a2f6f646174612f444d5143564e0d0a2f6f646174612f436869546965745143564e0d0a2f6f646174612f43686954696574446f7454727579656e0d0a2f6f646174612f446f7454727579656e546f6e674375630d0a0d0a2f5175616e547261632f4151495f323447696f2f3f49643d3c6e756d6265723e0d0a0d0a232323204e474849e1bb86502056e1bba42043c6a02042e1baa24e0d0a0d0a2a20202056c6b0e1bba374206e67c6b0e1bba16e672063e1bba7612074e1bbab6e67206c6fe1baa1692072612073616f3f0d0a2a202020564e5f415149206cc3a02067c3ac3f0d0a0d0a2323232054c38049204b484fe1baa24e3a0d0a0d0a2a20202061646d696e2f676474403132332340210d0a2a202020736f746e6d742f676474403132332340210d0a2a202020636362766d742f676474403132332340210d0a2a20202063687579656e7669656e71742f676474403132332340210d0a2a202020646f616e686e6768696570312f67647440313233234021', '', '', '2020-07-27 08:18:57+07', 10);
INSERT INTO public.wiki_content_versions VALUES (46, 9, 9, 6, '\x23204c69c3aa6e206be1babf74207468616d206b68e1baa36f0d0a23232043c3b46e6720747920c491e1baa575206769c3a10d0a3c68747470733a2f2f646175676961736f352e766e2f3e0d0a3c68747470733a2f2f646175676961766965746e616d2e766e2f3e0d0a3c687474703a2f2f64617567696162746e2e636f6d2f67696f692d74686965752f3e0d0a3c68747470733a2f2f64617567696164616964756f6e676c6f6e672e636f6d2f3e0d0a3c68747470733a2f2f6461756769617875616e7472756f6e672e636f6d2f3e0d0a0d0a2323204e676869e1bb87702076e1bba520c491e1baa575206769c3a10d0a3c68747470733a2f2f62616f646175746861752e766e2f6e6761792d31352d382d323032302d6461752d6769612d717579656e2d73752d64756e672d6461742d7461692d7468616e682d70686f2d7175792d6e686f6e2d74696e682d62696e682d64696e682d706f737439333134322e68746d6c3e0d0a3c687474703a2f2f64617567696162746e2e636f6d2f74686f6e672d74752d34353230313774742d6274632d7175792d64696e682d6b68756e672d7468752d6c616f2d646963682d76752d6461752d6769612f3e0d0a3c68747470733a2f2f74616973616e636f6e672e766e2f7473632f66616365732f6c6e6b2f6c732f6c733331303e0d0a3c68747470733a2f2f62616f646175746861752e766e2f6c6963682d6461752d6769612f3e0d0a3c68747470733a2f2f62616f646175746861752e766e2f6e6761792d31352d382d323032302d6461752d6769612d717579656e2d73752d64756e672d6461742d7461692d7468616e682d70686f2d7175792d6e686f6e2d74696e682d62696e682d64696e682d706f737439333134322e68746d6c3e0d0a3c68747470733a2f2f76692e77696b6970656469612e6f72672f77696b692f254334253930254531254241254135755f67692543332541313e0d0a3c68747470733a2f2f7468757669656e706861706c7561742e766e2f76616e2d62616e2f7468756f6e672d6d61692f4e6768692d64696e682d35322d323031332d4e442d43502d7468756f6e672d6d61692d6469656e2d74752d3138373930312e617370783e0d0a3c68747470733a2f2f7374632e62696e6864696e682e676f762e766e2f706f7274616c2f506167652f74686f6e672d74696e2d6461752d6769612d717579656e2d73752d64756e672d6461743e0d0a3c68747470733a2f2f7374632e62696e6864696e682e676f762e766e2f4461746146696c65732f66696c65732f6461756769616461742f313537372e7064663e0d0a3c68747470733a2f2f6c756174746f616e71756f632e636f6d2f7175792d7472696e682d636875632d63756f632d62616e2d6461752d6769612d717579656e2d73752d64756e672d6461742f3e0d0a3c68747470733a2f2f6469702e766e2f7068616e2d6d656d2d7175616e2d6c792d73616e2d6769616f2d646963682d6261742d646f6e672d73616e2d6c616e64736f66742d737032382e68746d6c3e0d0a3c68747470733a2f2f6469702e766e2f7068616e2d6d656d2d7175616e2d6c792d6261742d646f6e672d73616e2d737032392e68746d6c3e0d0a3c68747470733a2f2f6b696e6874656368756e676b686f616e2e766e2f6461752d6769612d717579656e2d73752d64756e672d6461742d7461692d63616f2d62616e672d32343031362e68746d6c3e0d0a5b5468c3b46e672074696e20c491e1baa575206769c3a1202d2054616953616e436f6e672e766e5d2868747470733a2f2f74616973616e636f6e672e766e2f7473632f66616365732f6c6e6b2f6c732f6c733331303f5f6164662e6374726c2d73746174653d313630713633747467385f34265f6166724c6f6f703d3239383639313833343539373537383431265f61667257696e646f774d6f64653d30265f61667257696e646f7749643d6e756c6c232534302533465f61667257696e646f7749642533446e756c6c2532365f6166724c6f6f7025334432393836393138333435393735373834312532365f61667257696e646f774d6f6465253344302532365f6164662e6374726c2d737461746525334439676b3334353663375f3337290d0a5b43c3b46e6720747920c490e1baa575206769c3a12048e1bba3702064616e6820566963656e207468c3b46e672062c3a16f20c491e1baa575206769c3a12074c3a0692073e1baa36e5d2868747470733a2f2f74616973616e636f6e672e766e2f7473632f66616365732f6c6e6b2f64742f636869746965746461756769613f69643d54414953414e434f4e47564e3136303336313936265f6164662e6374726c2d73746174653d39676b3334353663375f34265f6166724c6f6f703d3330323938323438393331353037383431265f61667257696e646f774d6f64653d30265f61667257696e646f7749643d6e756c6c232534302533465f61667257696e646f7749642533446e756c6c2532365f6166724c6f6f702533443330323938323438393331353037383431253236696425334454414953414e434f4e47564e31363033363139362532365f61667257696e646f774d6f6465253344302532365f6164662e6374726c2d7374617465253344746a763762686174375f3235290d0a0d0a232320566964656f20c491e1baa575206769c3a10d0a3c68747470733a2f2f7777772e796f75747562652e636f6d2f77617463683f763d4e4437736c5274357157633e0d0a0d0a2323204be1bbb920746875e1baad742073e1bbad2064e1bba56e670d0a5b58e1bbad206cc3bd20457863656c5d2868747470733a2f2f6d766e7265706f7369746f72792e636f6d2f61727469666163742f6f72672e6170616368652e706f692f706f69290d0a5b58e1bbad206cc3bd205044465d2868747470733a2f2f6d766e7265706f7369746f72792e636f6d2f61727469666163742f636f6d2e69746578747064662f6974657874706466290d0a', '', '', '2020-08-05 09:11:31+07', 1);
INSERT INTO public.wiki_content_versions VALUES (47, 10, 10, 6, '\x23204c69c3aa6e206be1babf74207468616d206b68e1baa36f0d0a23232043c3b46e6720747920c491e1baa575206769c3a10d0a3c68747470733a2f2f646175676961736f352e766e2f3e0d0a3c68747470733a2f2f646175676961766965746e616d2e766e2f3e0d0a3c687474703a2f2f64617567696162746e2e636f6d2f67696f692d74686965752f3e0d0a3c68747470733a2f2f64617567696164616964756f6e676c6f6e672e636f6d2f3e0d0a3c68747470733a2f2f6461756769617875616e7472756f6e672e636f6d2f3e0d0a0d0a2323204e676869e1bb87702076e1bba520c491e1baa575206769c3a10d0a3c68747470733a2f2f62616f646175746861752e766e2f6e6761792d31352d382d323032302d6461752d6769612d717579656e2d73752d64756e672d6461742d7461692d7468616e682d70686f2d7175792d6e686f6e2d74696e682d62696e682d64696e682d706f737439333134322e68746d6c3e0d0a3c687474703a2f2f64617567696162746e2e636f6d2f74686f6e672d74752d34353230313774742d6274632d7175792d64696e682d6b68756e672d7468752d6c616f2d646963682d76752d6461752d6769612f3e0d0a3c68747470733a2f2f74616973616e636f6e672e766e2f7473632f66616365732f6c6e6b2f6c732f6c733331303e0d0a3c68747470733a2f2f62616f646175746861752e766e2f6c6963682d6461752d6769612f3e0d0a3c68747470733a2f2f62616f646175746861752e766e2f6e6761792d31352d382d323032302d6461752d6769612d717579656e2d73752d64756e672d6461742d7461692d7468616e682d70686f2d7175792d6e686f6e2d74696e682d62696e682d64696e682d706f737439333134322e68746d6c3e0d0a3c68747470733a2f2f76692e77696b6970656469612e6f72672f77696b692f254334253930254531254241254135755f67692543332541313e0d0a3c68747470733a2f2f7468757669656e706861706c7561742e766e2f76616e2d62616e2f7468756f6e672d6d61692f4e6768692d64696e682d35322d323031332d4e442d43502d7468756f6e672d6d61692d6469656e2d74752d3138373930312e617370783e0d0a3c68747470733a2f2f7374632e62696e6864696e682e676f762e766e2f706f7274616c2f506167652f74686f6e672d74696e2d6461752d6769612d717579656e2d73752d64756e672d6461743e0d0a3c68747470733a2f2f7374632e62696e6864696e682e676f762e766e2f4461746146696c65732f66696c65732f6461756769616461742f313537372e7064663e0d0a3c68747470733a2f2f6c756174746f616e71756f632e636f6d2f7175792d7472696e682d636875632d63756f632d62616e2d6461752d6769612d717579656e2d73752d64756e672d6461742f3e0d0a3c68747470733a2f2f6469702e766e2f7068616e2d6d656d2d7175616e2d6c792d73616e2d6769616f2d646963682d6261742d646f6e672d73616e2d6c616e64736f66742d737032382e68746d6c3e0d0a3c68747470733a2f2f6469702e766e2f7068616e2d6d656d2d7175616e2d6c792d6261742d646f6e672d73616e2d737032392e68746d6c3e0d0a3c68747470733a2f2f6b696e6874656368756e676b686f616e2e766e2f6461752d6769612d717579656e2d73752d64756e672d6461742d7461692d63616f2d62616e672d32343031362e68746d6c3e0d0a5b5468c3b46e672074696e20c491e1baa575206769c3a1202d2054616953616e436f6e672e766e5d2868747470733a2f2f74616973616e636f6e672e766e2f7473632f66616365732f6c6e6b2f6c732f6c733331303f5f6164662e6374726c2d73746174653d313630713633747467385f34265f6166724c6f6f703d3239383639313833343539373537383431265f61667257696e646f774d6f64653d30265f61667257696e646f7749643d6e756c6c232534302533465f61667257696e646f7749642533446e756c6c2532365f6166724c6f6f7025334432393836393138333435393735373834312532365f61667257696e646f774d6f6465253344302532365f6164662e6374726c2d737461746525334439676b3334353663375f3337290d0a5b43c3b46e6720747920c490e1baa575206769c3a12048e1bba3702064616e6820566963656e207468c3b46e672062c3a16f20c491e1baa575206769c3a12074c3a0692073e1baa36e5d2868747470733a2f2f74616973616e636f6e672e766e2f7473632f66616365732f6c6e6b2f64742f636869746965746461756769613f69643d54414953414e434f4e47564e3136303336313936265f6164662e6374726c2d73746174653d39676b3334353663375f34265f6166724c6f6f703d3330323938323438393331353037383431265f61667257696e646f774d6f64653d30265f61667257696e646f7749643d6e756c6c232534302533465f61667257696e646f7749642533446e756c6c2532365f6166724c6f6f702533443330323938323438393331353037383431253236696425334454414953414e434f4e47564e31363033363139362532365f61667257696e646f774d6f6465253344302532365f6164662e6374726c2d7374617465253344746a763762686174375f3235290d0a0d0a232320566964656f20c491e1baa575206769c3a10d0a3c68747470733a2f2f7777772e796f75747562652e636f6d2f77617463683f763d4e4437736c5274357157633e0d0a0d0a2323204be1bbb920746875e1baad742073e1bbad2064e1bba56e670d0a5b58e1bbad206cc3bd20457863656c5d2868747470733a2f2f6d766e7265706f7369746f72792e636f6d2f61727469666163742f6f72672e6170616368652e706f692f706f69290d0a5b58e1bbad206cc3bd205044465d2868747470733a2f2f6d766e7265706f7369746f72792e636f6d2f61727469666163742f636f6d2e69746578747064662f6974657874706466290d0a', '', '', '2020-08-05 09:12:23+07', 1);
INSERT INTO public.wiki_content_versions VALUES (48, 9, 9, 6, '\x5b4c69c3aa6e206be1babf74207468616d206b68e1baa36f5d282e2e2f4c69c3aa6e5f6be1babf745f7468616d5f6b68e1baa36f29', '', '', '2020-08-05 09:13:42+07', 2);
INSERT INTO public.wiki_content_versions VALUES (49, 9, 9, 6, '\x5b5b4c69c3aa6e206be1babf74207468616d206b68e1baa36f5d5d', '', '', '2020-08-05 09:15:26+07', 3);
INSERT INTO public.wiki_content_versions VALUES (50, 10, 10, 6, '\x23204c69c3aa6e206be1babf74207468616d206b68e1baa36f0d0a23232043c3b46e6720747920c491e1baa575206769c3a10d0a3c68747470733a2f2f646175676961736f352e766e2f3e0d0a3c68747470733a2f2f646175676961766965746e616d2e766e2f3e0d0a3c687474703a2f2f64617567696162746e2e636f6d2f67696f692d74686965752f3e0d0a3c68747470733a2f2f64617567696164616964756f6e676c6f6e672e636f6d2f3e0d0a3c68747470733a2f2f6461756769617875616e7472756f6e672e636f6d2f3e0a0a2323204e676869e1bb87702076e1bba520c491e1baa575206769c3a10d0a3c68747470733a2f2f62616f646175746861752e766e2f6e6761792d31352d382d323032302d6461752d6769612d717579656e2d73752d64756e672d6461742d7461692d7468616e682d70686f2d7175792d6e686f6e2d74696e682d62696e682d64696e682d706f737439333134322e68746d6c3e0d0a3c687474703a2f2f64617567696162746e2e636f6d2f74686f6e672d74752d34353230313774742d6274632d7175792d64696e682d6b68756e672d7468752d6c616f2d646963682d76752d6461752d6769612f3e0d0a3c68747470733a2f2f74616973616e636f6e672e766e2f7473632f66616365732f6c6e6b2f6c732f6c733331303e0d0a3c68747470733a2f2f62616f646175746861752e766e2f6c6963682d6461752d6769612f3e0d0a3c68747470733a2f2f62616f646175746861752e766e2f6e6761792d31352d382d323032302d6461752d6769612d717579656e2d73752d64756e672d6461742d7461692d7468616e682d70686f2d7175792d6e686f6e2d74696e682d62696e682d64696e682d706f737439333134322e68746d6c3e0d0a3c68747470733a2f2f76692e77696b6970656469612e6f72672f77696b692f254334253930254531254241254135755f67692543332541313e0d0a3c68747470733a2f2f7468757669656e706861706c7561742e766e2f76616e2d62616e2f7468756f6e672d6d61692f4e6768692d64696e682d35322d323031332d4e442d43502d7468756f6e672d6d61692d6469656e2d74752d3138373930312e617370783e0d0a3c68747470733a2f2f7374632e62696e6864696e682e676f762e766e2f706f7274616c2f506167652f74686f6e672d74696e2d6461752d6769612d717579656e2d73752d64756e672d6461743e0d0a3c68747470733a2f2f7374632e62696e6864696e682e676f762e766e2f4461746146696c65732f66696c65732f6461756769616461742f313537372e7064663e0d0a3c68747470733a2f2f6c756174746f616e71756f632e636f6d2f7175792d7472696e682d636875632d63756f632d62616e2d6461752d6769612d717579656e2d73752d64756e672d6461742f3e0d0a3c68747470733a2f2f6469702e766e2f7068616e2d6d656d2d7175616e2d6c792d73616e2d6769616f2d646963682d6261742d646f6e672d73616e2d6c616e64736f66742d737032382e68746d6c3e0d0a3c68747470733a2f2f6469702e766e2f7068616e2d6d656d2d7175616e2d6c792d6261742d646f6e672d73616e2d737032392e68746d6c3e0d0a3c68747470733a2f2f6b696e6874656368756e676b686f616e2e766e2f6461752d6769612d717579656e2d73752d64756e672d6461742d7461692d63616f2d62616e672d32343031362e68746d6c3e0d0a5b5468c3b46e672074696e20c491e1baa575206769c3a1202d2054616953616e436f6e672e766e5d2868747470733a2f2f74616973616e636f6e672e766e2f7473632f66616365732f6c6e6b2f6c732f6c733331303f5f6164662e6374726c2d73746174653d313630713633747467385f34265f6166724c6f6f703d3239383639313833343539373537383431265f61667257696e646f774d6f64653d30265f61667257696e646f7749643d6e756c6c232534302533465f61667257696e646f7749642533446e756c6c2532365f6166724c6f6f7025334432393836393138333435393735373834312532365f61667257696e646f774d6f6465253344302532365f6164662e6374726c2d737461746525334439676b3334353663375f3337290d0a5b43c3b46e6720747920c490e1baa575206769c3a12048e1bba3702064616e6820566963656e207468c3b46e672062c3a16f20c491e1baa575206769c3a12074c3a0692073e1baa36e5d2868747470733a2f2f74616973616e636f6e672e766e2f7473632f66616365732f6c6e6b2f64742f636869746965746461756769613f69643d54414953414e434f4e47564e3136303336313936265f6164662e6374726c2d73746174653d39676b3334353663375f34265f6166724c6f6f703d3330323938323438393331353037383431265f61667257696e646f774d6f64653d30265f61667257696e646f7749643d6e756c6c232534302533465f61667257696e646f7749642533446e756c6c2532365f6166724c6f6f702533443330323938323438393331353037383431253236696425334454414953414e434f4e47564e31363033363139362532365f61667257696e646f774d6f6465253344302532365f6164662e6374726c2d7374617465253344746a763762686174375f3235290d0a3c68747470733a2f2f7777772e66616365626f6f6b2e636f6d2f62616e64617567696162696e6864696e682f3e0a0a232320566964656f20c491e1baa575206769c3a10d0a3c68747470733a2f2f7777772e796f75747562652e636f6d2f77617463683f763d4e4437736c5274357157633e0d0a0d0a2323204be1bbb920746875e1baad742073e1bbad2064e1bba56e670d0a5b58e1bbad206cc3bd20457863656c5d2868747470733a2f2f6d766e7265706f7369746f72792e636f6d2f61727469666163742f6f72672e6170616368652e706f692f706f69290d0a5b58e1bbad206cc3bd205044465d2868747470733a2f2f6d766e7265706f7369746f72792e636f6d2f61727469666163742f636f6d2e69746578747064662f697465787470646629', '', '', '2020-08-05 11:29:08+07', 2);
INSERT INTO public.wiki_content_versions VALUES (51, 10, 10, 6, '\x23204c69c3aa6e206be1babf74207468616d206b68e1baa36f0d0a23232043c3b46e6720747920c491e1baa575206769c3a10d0a3c68747470733a2f2f646175676961736f352e766e2f3e0d0a3c68747470733a2f2f646175676961766965746e616d2e766e2f3e0d0a3c687474703a2f2f64617567696162746e2e636f6d2f67696f692d74686965752f3e0d0a3c68747470733a2f2f64617567696164616964756f6e676c6f6e672e636f6d2f3e0d0a3c68747470733a2f2f6461756769617875616e7472756f6e672e636f6d2f3e0a0a2323204e676869e1bb87702076e1bba520c491e1baa575206769c3a10d0a5b44414e482053c3814348204348e1bba843204ec4824e475d2868747470733a2f2f646f63732e676f6f676c652e636f6d2f7370726561647368656574732f642f315f7262625643665f7258454a71545f36436e74334d36574c58366f586a446670726b4454466c516e393063290d0a3c68747470733a2f2f62616f646175746861752e766e2f6e6761792d31352d382d323032302d6461752d6769612d717579656e2d73752d64756e672d6461742d7461692d7468616e682d70686f2d7175792d6e686f6e2d74696e682d62696e682d64696e682d706f737439333134322e68746d6c3e0d0a3c687474703a2f2f64617567696162746e2e636f6d2f74686f6e672d74752d34353230313774742d6274632d7175792d64696e682d6b68756e672d7468752d6c616f2d646963682d76752d6461752d6769612f3e0d0a3c68747470733a2f2f74616973616e636f6e672e766e2f7473632f66616365732f6c6e6b2f6c732f6c733331303e0d0a3c68747470733a2f2f62616f646175746861752e766e2f6c6963682d6461752d6769612f3e0d0a3c68747470733a2f2f62616f646175746861752e766e2f6e6761792d31352d382d323032302d6461752d6769612d717579656e2d73752d64756e672d6461742d7461692d7468616e682d70686f2d7175792d6e686f6e2d74696e682d62696e682d64696e682d706f737439333134322e68746d6c3e0d0a3c68747470733a2f2f76692e77696b6970656469612e6f72672f77696b692f254334253930254531254241254135755f67692543332541313e0d0a3c68747470733a2f2f7468757669656e706861706c7561742e766e2f76616e2d62616e2f7468756f6e672d6d61692f4e6768692d64696e682d35322d323031332d4e442d43502d7468756f6e672d6d61692d6469656e2d74752d3138373930312e617370783e0d0a3c68747470733a2f2f7374632e62696e6864696e682e676f762e766e2f706f7274616c2f506167652f74686f6e672d74696e2d6461752d6769612d717579656e2d73752d64756e672d6461743e0d0a3c68747470733a2f2f7374632e62696e6864696e682e676f762e766e2f4461746146696c65732f66696c65732f6461756769616461742f313537372e7064663e0d0a3c68747470733a2f2f6c756174746f616e71756f632e636f6d2f7175792d7472696e682d636875632d63756f632d62616e2d6461752d6769612d717579656e2d73752d64756e672d6461742f3e0d0a3c68747470733a2f2f6469702e766e2f7068616e2d6d656d2d7175616e2d6c792d73616e2d6769616f2d646963682d6261742d646f6e672d73616e2d6c616e64736f66742d737032382e68746d6c3e0d0a3c68747470733a2f2f6469702e766e2f7068616e2d6d656d2d7175616e2d6c792d6261742d646f6e672d73616e2d737032392e68746d6c3e0d0a3c68747470733a2f2f6b696e6874656368756e676b686f616e2e766e2f6461752d6769612d717579656e2d73752d64756e672d6461742d7461692d63616f2d62616e672d32343031362e68746d6c3e0d0a5b5468c3b46e672074696e20c491e1baa575206769c3a1202d2054616953616e436f6e672e766e5d2868747470733a2f2f74616973616e636f6e672e766e2f7473632f66616365732f6c6e6b2f6c732f6c733331303f5f6164662e6374726c2d73746174653d313630713633747467385f34265f6166724c6f6f703d3239383639313833343539373537383431265f61667257696e646f774d6f64653d30265f61667257696e646f7749643d6e756c6c232534302533465f61667257696e646f7749642533446e756c6c2532365f6166724c6f6f7025334432393836393138333435393735373834312532365f61667257696e646f774d6f6465253344302532365f6164662e6374726c2d737461746525334439676b3334353663375f3337290d0a5b43c3b46e6720747920c490e1baa575206769c3a12048e1bba3702064616e6820566963656e207468c3b46e672062c3a16f20c491e1baa575206769c3a12074c3a0692073e1baa36e5d2868747470733a2f2f74616973616e636f6e672e766e2f7473632f66616365732f6c6e6b2f64742f636869746965746461756769613f69643d54414953414e434f4e47564e3136303336313936265f6164662e6374726c2d73746174653d39676b3334353663375f34265f6166724c6f6f703d3330323938323438393331353037383431265f61667257696e646f774d6f64653d30265f61667257696e646f7749643d6e756c6c232534302533465f61667257696e646f7749642533446e756c6c2532365f6166724c6f6f702533443330323938323438393331353037383431253236696425334454414953414e434f4e47564e31363033363139362532365f61667257696e646f774d6f6465253344302532365f6164662e6374726c2d7374617465253344746a763762686174375f3235290d0a3c68747470733a2f2f7777772e66616365626f6f6b2e636f6d2f62616e64617567696162696e6864696e682f3e0a0a232320566964656f20c491e1baa575206769c3a10d0a3c68747470733a2f2f7777772e796f75747562652e636f6d2f77617463683f763d4e4437736c5274357157633e0d0a0d0a2323204be1bbb920746875e1baad742073e1bbad2064e1bba56e670d0a5b58e1bbad206cc3bd20457863656c5d2868747470733a2f2f6d766e7265706f7369746f72792e636f6d2f61727469666163742f6f72672e6170616368652e706f692f706f69290d0a5b58e1bbad206cc3bd205044465d2868747470733a2f2f6d766e7265706f7369746f72792e636f6d2f61727469666163742f636f6d2e69746578747064662f697465787470646629', '', '', '2020-08-05 13:19:31+07', 3);
INSERT INTO public.wiki_content_versions VALUES (52, 9, 9, 6, '\x312e205b5b4c69c3aa6e206be1babf74207468616d206b68e1baa36f5d5d', '', '', '2020-08-05 14:00:46+07', 4);
INSERT INTO public.wiki_content_versions VALUES (53, 10, 10, 6, '\x23204c69c3aa6e206be1babf74207468616d206b68e1baa36f0d0a23232043c3b46e6720747920c491e1baa575206769c3a10d0a3c68747470733a2f2f646175676961736f352e766e2f3e0d0a3c68747470733a2f2f646175676961766965746e616d2e766e2f3e0d0a3c687474703a2f2f64617567696162746e2e636f6d2f67696f692d74686965752f3e0d0a3c68747470733a2f2f64617567696164616964756f6e676c6f6e672e636f6d2f3e0d0a3c68747470733a2f2f6461756769617875616e7472756f6e672e636f6d2f3e0a0a2323204e676869e1bb87702076e1bba520c491e1baa575206769c3a10d0a5b44414e482053c3814348204348e1bba843204ec4824e475d2868747470733a2f2f646f63732e676f6f676c652e636f6d2f7370726561647368656574732f642f315f7262625643665f7258454a71545f36436e74334d36574c58366f586a446670726b4454466c516e393063290d0a3c68747470733a2f2f62616f646175746861752e766e2f6e6761792d31352d382d323032302d6461752d6769612d717579656e2d73752d64756e672d6461742d7461692d7468616e682d70686f2d7175792d6e686f6e2d74696e682d62696e682d64696e682d706f737439333134322e68746d6c3e0d0a3c687474703a2f2f64617567696162746e2e636f6d2f74686f6e672d74752d34353230313774742d6274632d7175792d64696e682d6b68756e672d7468752d6c616f2d646963682d76752d6461752d6769612f3e0d0a3c68747470733a2f2f74616973616e636f6e672e766e2f7473632f66616365732f6c6e6b2f6c732f6c733331303e0d0a3c68747470733a2f2f62616f646175746861752e766e2f6c6963682d6461752d6769612f3e0d0a3c68747470733a2f2f62616f646175746861752e766e2f6e6761792d31352d382d323032302d6461752d6769612d717579656e2d73752d64756e672d6461742d7461692d7468616e682d70686f2d7175792d6e686f6e2d74696e682d62696e682d64696e682d706f737439333134322e68746d6c3e0d0a3c68747470733a2f2f76692e77696b6970656469612e6f72672f77696b692f254334253930254531254241254135755f67692543332541313e0d0a3c68747470733a2f2f7468757669656e706861706c7561742e766e2f76616e2d62616e2f7468756f6e672d6d61692f4e6768692d64696e682d35322d323031332d4e442d43502d7468756f6e672d6d61692d6469656e2d74752d3138373930312e617370783e0d0a3c68747470733a2f2f7374632e62696e6864696e682e676f762e766e2f706f7274616c2f506167652f74686f6e672d74696e2d6461752d6769612d717579656e2d73752d64756e672d6461743e0d0a3c68747470733a2f2f7374632e62696e6864696e682e676f762e766e2f4461746146696c65732f66696c65732f6461756769616461742f313537372e7064663e0d0a3c68747470733a2f2f6c756174746f616e71756f632e636f6d2f7175792d7472696e682d636875632d63756f632d62616e2d6461752d6769612d717579656e2d73752d64756e672d6461742f3e0d0a3c68747470733a2f2f6469702e766e2f7068616e2d6d656d2d7175616e2d6c792d73616e2d6769616f2d646963682d6261742d646f6e672d73616e2d6c616e64736f66742d737032382e68746d6c3e0d0a3c68747470733a2f2f6469702e766e2f7068616e2d6d656d2d7175616e2d6c792d6261742d646f6e672d73616e2d737032392e68746d6c3e0d0a3c68747470733a2f2f6b696e6874656368756e676b686f616e2e766e2f6461752d6769612d717579656e2d73752d64756e672d6461742d7461692d63616f2d62616e672d32343031362e68746d6c3e0d0a5b5468c3b46e672074696e20c491e1baa575206769c3a1202d2054616953616e436f6e672e766e5d2868747470733a2f2f74616973616e636f6e672e766e2f7473632f66616365732f6c6e6b2f6c732f6c733331303f5f6164662e6374726c2d73746174653d313630713633747467385f34265f6166724c6f6f703d3239383639313833343539373537383431265f61667257696e646f774d6f64653d30265f61667257696e646f7749643d6e756c6c232534302533465f61667257696e646f7749642533446e756c6c2532365f6166724c6f6f7025334432393836393138333435393735373834312532365f61667257696e646f774d6f6465253344302532365f6164662e6374726c2d737461746525334439676b3334353663375f3337290d0a5b43c3b46e6720747920c490e1baa575206769c3a12048e1bba3702064616e6820566963656e207468c3b46e672062c3a16f20c491e1baa575206769c3a12074c3a0692073e1baa36e5d2868747470733a2f2f74616973616e636f6e672e766e2f7473632f66616365732f6c6e6b2f64742f636869746965746461756769613f69643d54414953414e434f4e47564e3136303336313936265f6164662e6374726c2d73746174653d39676b3334353663375f34265f6166724c6f6f703d3330323938323438393331353037383431265f61667257696e646f774d6f64653d30265f61667257696e646f7749643d6e756c6c232534302533465f61667257696e646f7749642533446e756c6c2532365f6166724c6f6f702533443330323938323438393331353037383431253236696425334454414953414e434f4e47564e31363033363139362532365f61667257696e646f774d6f6465253344302532365f6164662e6374726c2d7374617465253344746a763762686174375f3235290d0a5b51757920c491e1bb8b6e68207472e1baa3207469e1bb816e2063e1bb8d635d2868747470733a2f2f6c7561746d696e686b6875652e766e2f6b686f6e672d7472756e672d746861752d6461752d6769612d717579656e2d73752d64756e672d6461742d636f2d64756f632d7472612d6c61692d7469656e2d6461742d636f632d6b686f6e672d2d2e61737078290d0a3c68747470733a2f2f7777772e66616365626f6f6b2e636f6d2f62616e64617567696162696e6864696e682f3e0a0a232320566964656f20c491e1baa575206769c3a10d0a3c68747470733a2f2f7777772e796f75747562652e636f6d2f77617463683f763d4e4437736c5274357157633e0d0a0d0a2323204be1bbb920746875e1baad742073e1bbad2064e1bba56e670d0a5b58e1bbad206cc3bd20457863656c5d2868747470733a2f2f6d766e7265706f7369746f72792e636f6d2f61727469666163742f6f72672e6170616368652e706f692f706f69290d0a5b58e1bbad206cc3bd205044465d2868747470733a2f2f6d766e7265706f7369746f72792e636f6d2f61727469666163742f636f6d2e69746578747064662f697465787470646629', '', '', '2020-08-05 14:01:54+07', 4);
INSERT INTO public.wiki_content_versions VALUES (54, 9, 9, 6, '\x312e205b5b4c69c3aa6e206be1babf74207468616d206b68e1baa36f5d5d0d0a322e205b5b44656d6f2032302d30382d323032305d5d', '', '', '2020-08-21 08:10:42+07', 5);
INSERT INTO public.wiki_content_versions VALUES (55, 11, 11, 6, '\x232044656d6f2032302d30382d323032300d0a312e206b6f206261742062756f633a0d0a092a2068696e6820616e682c200d0a092a2074686f6e672074696e207468656d2c200d0a092a2074656e20686f20736f2c0d0a092a20636f6e67207479206b686f6e67206261742062756f63206e67756f6920646169206469656e0d0a312e20746f7020332062756f63206769612063616f206e68617420636875206b686f6e67207068616920350d0a312e2074696e68207468656f20736f2062756f632067696120636875206b686f6e6720706861692074696e68207468656f206e67756f692c20636f2074686520636f203130206e67756f692074726f6e6720746f7020332062756f63206769610d0a312e206e68617020736f207469656e2c2074696e6820736f2062756f63206769612c206869656e2033206769612063616f206e6861740d0a312e204ee1babf752063c3b32032206e67c6b0e1bb9d692063c3b96e67206769c3a1203d3e2062e1bb9163207468c4836d0d0a312e2064616e6820736163682063686965752c2064616e682073616368207472756e670d0a312e20736175206b68692064617520786f6e672074617420636120636163206c6f206869656e20746869206473207472756e67200d0a312e2042e1baa56d206ec3ba74206bc3a974207468c3ba6320c491e1baa575206769c3a1207468c3ac206869e1bb836e207468e1bb8b2064616e682073c3a163682068e1bb932073c6a120c491e1baa575206769c3a1206ee1bab16d2074726f6e20746f7020332062c6b0e1bb9b63206769c3a12063616f206e68e1baa5742063e1bba7612076c3b26e67206869e1bb876e2074e1baa1690d0a6d75e1bb916e2064e1bbab6e67206cc3ba63206ec3a06f207468c3ac2064e1bbab6e67', '', '', '2020-08-21 08:13:29+07', 1);
INSERT INTO public.wiki_content_versions VALUES (56, 9, 9, 6, '\x312e205b5b4dc3b42068c3ac6e682063c6a12062e1baa36e5d5d0d0a312e205b5b4c69c3aa6e206be1babf74207468616d206b68e1baa36f5d5d0d0a312e205b5b44656d6f2032302d30382d323032305d5d', '', '', '2020-08-29 15:29:44+07', 6);
INSERT INTO public.wiki_content_versions VALUES (57, 12, 12, 6, '\x23204dc3b42068c3ac6e682063c6a12062e1baa36e0d0a6060600d0a506869c3aa6e20c491e1baa575206769c3a1203d3e2054c3a0692073e1baa36e20c491e1baa575206769c3a1203d3e2048e1bb932073c6a1203d3e204ce1bb8b63682073e1bbad207472e1baa3206769c3a10d0a41756374696f6e734f6e6c696e65203d3e2041756374696f6e734f6e6c696e654173736574203d3e2041756374696f6e46696c65203d3e2041756374696f6e734f6e6c696e654173736574426964486973746f72790d0a606060', '', '', '2020-08-29 15:30:09+07', 1);
INSERT INTO public.wiki_content_versions VALUES (58, 13, 13, 41, '\x2320415049204f646174610d0a44616e68204de1bba563200d0a2d206f646174612f43686954696574446f7454727579656e203a20436869207469e1babf7420c491e1bba3742074727579e1bb816e0d0a2d206f646174612f436869546965745143564e203a20436869207469e1babf742071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d4469656d5175616e54726163203a2044616e68206de1bba56320c49169e1bb836d20207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f5468656d4469656d51543a205468c3aa6d20c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f4361704e6861744469656d51543a2063e1baad70206e68e1baad7420c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f547265653a20547265650d0a202b20444d4469656d5175616e547261632f44616e68536163685468656f5472616e67546861693a2044616e682073c3a16368207468656f2064c3b569207472e1baa16e67207468c3a1690d0a2d206f646174612f444d4c6f61694d6f695472756f6e673a2044616e68206de1bba563206c6fe1baa169206dc3b469207472c6b0e1bb9d6e670d0a2d206f646174612f444d4c6f61695175616e54726163203a2044616e68206de1bba563206c6fe1baa169207175616e207472e1baaf630d0a2d206f646174612f444d5143564e3a2044616e68206de1bba5632071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d54686f6e67536f446f3a2044616e68206de1bba563207468c3b46e672073e1bb9120c4916f0d0a2d206f646174612f446f6e566954696e683a20c490c6a16e2076e1bb8b2074c3ad6e680d0a2d206f646174612f446f7454727579656e546f6e67437563203a20c490e1bba3742074727579e1bb816e2074e1bb956e672063e1bba5630d0a2d206f646174612f4c6f61694475416e3a204c6fe1baa1692064e1bbb120c3a16e0d0a2d206f646174612f4c6f6169486f536f3a204c6fe1baa1692068e1bb932073c6a10d0a', '', '', '2020-09-04 10:33:29+07', 1);
INSERT INTO public.wiki_content_versions VALUES (59, 13, 13, 41, '\x2320415049204f646174610d0a44616e68204de1bba563200d0a2d206f646174612f43686954696574446f7454727579656e203a20436869207469e1babf7420c491e1bba3742074727579e1bb816e0d0a2d206f646174612f436869546965745143564e203a20436869207469e1babf742071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d4469656d5175616e54726163203a2044616e68206de1bba56320c49169e1bb836d20207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f5468656d4469656d51543a205468c3aa6d20c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f4361704e6861744469656d51543a2063e1baad70206e68e1baad7420c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f547265653a20547265650d0a202b20444d4469656d5175616e547261632f44616e68536163685468656f5472616e67546861693a2044616e682073c3a16368207468656f2064c3b569207472e1baa16e67207468c3a1690d0a2d206f646174612f444d4c6f61694d6f695472756f6e673a2044616e68206de1bba563206c6fe1baa169206dc3b469207472c6b0e1bb9d6e670d0a2d206f646174612f444d4c6f61695175616e54726163203a2044616e68206de1bba563206c6fe1baa169207175616e207472e1baaf630d0a2d206f646174612f444d5143564e3a2044616e68206de1bba5632071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d54686f6e67536f446f3a2044616e68206de1bba563207468c3b46e672073e1bb9120c4916f0d0a2d206f646174612f446f6e566954696e683a20c490c6a16e2076e1bb8b2074c3ad6e680d0a2d206f646174612f446f7454727579656e546f6e67437563203a20c490e1bba3742074727579e1bb816e2074e1bb956e672063e1bba5630d0a2d206f646174612f4c6f61694475416e3a204c6fe1baa1692064e1bbb120c3a16e0d0a2d206f646174612f4c6f6169486f536f3a204c6fe1baa1692068e1bb932073c6a10d0a2d206f646174612f48414e484348494e4858413a2068c3a06e68206368c3ad6e682058c3a30d0a2d206f646174612f48414e484348494e48485559454e3a2068c3a06e68206368c3ad6e6820487579e1bb876e', '', '', '2020-09-05 15:52:10+07', 2);
INSERT INTO public.wiki_content_versions VALUES (60, 13, 13, 41, '\x2320415049204f646174610d0a44616e68204de1bba563200d0a2d206f646174612f43686954696574446f7454727579656e203a20436869207469e1babf7420c491e1bba3742074727579e1bb816e0d0a2d206f646174612f436869546965745143564e203a20436869207469e1babf742071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d4469656d5175616e54726163203a2044616e68206de1bba56320c49169e1bb836d20207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f5468656d4469656d51543a205468c3aa6d20c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f4361704e6861744469656d51543a2063e1baad70206e68e1baad7420c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f547265653a20547265650d0a202b20444d4469656d5175616e547261632f44616e68536163685468656f5472616e67546861693a2044616e682073c3a16368207468656f2064c3b569207472e1baa16e67207468c3a1690d0a2d206f646174612f444d4c6f61694d6f695472756f6e673a2044616e68206de1bba563206c6fe1baa169206dc3b469207472c6b0e1bb9d6e670d0a2d206f646174612f444d4c6f61695175616e54726163203a2044616e68206de1bba563206c6fe1baa169207175616e207472e1baaf630d0a2d206f646174612f444d5143564e3a2044616e68206de1bba5632071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d54686f6e67536f446f3a2044616e68206de1bba563207468c3b46e672073e1bb9120c4916f0d0a2d206f646174612f446f6e566954696e683a20c490c6a16e2076e1bb8b2074c3ad6e680d0a2d206f646174612f446f7454727579656e546f6e67437563203a20c490e1bba3742074727579e1bb816e2074e1bb956e672063e1bba5630d0a2d206f646174612f4c6f61694475416e3a204c6fe1baa1692064e1bbb120c3a16e0d0a2d206f646174612f4c6f6169486f536f3a204c6fe1baa1692068e1bb932073c6a10d0a2d206f646174612f48414e484348494e4858413a2068c3a06e68206368c3ad6e682058c3a30d0a2d206f646174612f48414e484348494e48485559454e733a2068c3a06e68206368c3ad6e6820487579e1bb876e', '', '', '2020-09-05 15:53:44+07', 3);
INSERT INTO public.wiki_content_versions VALUES (61, 13, 13, 41, '\x2320415049204f646174610d0a44616e68204de1bba563200d0a2d206f646174612f43686954696574446f7454727579656e203a20436869207469e1babf7420c491e1bba3742074727579e1bb816e0d0a2d206f646174612f436869546965745143564e203a20436869207469e1babf742071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d4469656d5175616e54726163203a2044616e68206de1bba56320c49169e1bb836d20207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f5468656d4469656d51543a205468c3aa6d20c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f4361704e6861744469656d51543a2063e1baad70206e68e1baad7420c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f547265653a20547265650d0a202b20444d4469656d5175616e547261632f44616e68536163685468656f5472616e67546861693a2044616e682073c3a16368207468656f2064c3b569207472e1baa16e67207468c3a1690d0a2d206f646174612f444d4c6f61694d6f695472756f6e673a2044616e68206de1bba563206c6fe1baa169206dc3b469207472c6b0e1bb9d6e670d0a2d206f646174612f444d4c6f61695175616e54726163203a2044616e68206de1bba563206c6fe1baa169207175616e207472e1baaf630d0a2d206f646174612f444d5143564e3a2044616e68206de1bba5632071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d54686f6e67536f446f3a2044616e68206de1bba563207468c3b46e672073e1bb9120c4916f0d0a2d206f646174612f446f6e566954696e683a20c490c6a16e2076e1bb8b2074c3ad6e680d0a2d206f646174612f446f7454727579656e546f6e67437563203a20c490e1bba3742074727579e1bb816e2074e1bb956e672063e1bba5630d0a2d206f646174612f4c6f61694475416e3a204c6fe1baa1692064e1bbb120c3a16e0d0a2d206f646174612f4c6f6169486f536f3a204c6fe1baa1692068e1bb932073c6a10d0a2d206f646174612f48414e484348494e485841733a2068c3a06e68206368c3ad6e682058c3a30d0a2d206f646174612f48414e484348494e48485559454e733a2068c3a06e68206368c3ad6e6820487579e1bb876e', '', '', '2020-09-05 16:24:13+07', 4);
INSERT INTO public.wiki_content_versions VALUES (62, 13, 13, 41, '\x2320415049204f646174610d0a44616e68204de1bba563200d0a2d206f646174612f43686954696574446f7454727579656e203a20436869207469e1babf7420c491e1bba3742074727579e1bb816e0d0a2d206f646174612f436869546965745143564e203a20436869207469e1babf742071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d4469656d5175616e54726163203a2044616e68206de1bba56320c49169e1bb836d20207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f5468656d4469656d51543a205468c3aa6d20c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f4361704e6861744469656d51543a2063e1baad70206e68e1baad7420c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f547265653a20547265650d0a202b20444d4469656d5175616e547261632f44616e68536163685468656f5472616e67546861693a2044616e682073c3a16368207468656f2064c3b569207472e1baa16e67207468c3a1690d0a2d206f646174612f444d4c6f61694d6f695472756f6e673a2044616e68206de1bba563206c6fe1baa169206dc3b469207472c6b0e1bb9d6e670d0a2d206f646174612f444d4c6f61695175616e54726163203a2044616e68206de1bba563206c6fe1baa169207175616e207472e1baaf630d0a2d206f646174612f444d5143564e3a2044616e68206de1bba5632071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d54686f6e67536f446f3a2044616e68206de1bba563207468c3b46e672073e1bb9120c4916f0d0a2d206f646174612f446f6e566954696e683a20c490c6a16e2076e1bb8b2074c3ad6e680d0a2d206f646174612f446f7454727579656e546f6e67437563203a20c490e1bba3742074727579e1bb816e2074e1bb956e672063e1bba5630d0a2d206f646174612f4c6f61694475416e3a204c6fe1baa1692064e1bbb120c3a16e0d0a2d206f646174612f4c6f6169486f536f3a204c6fe1baa1692068e1bb932073c6a10d0a2d206f646174612f48414e484348494e4858413a2068c3a06e68206368c3ad6e682058c3a30d0a2d206f646174612f48414e484348494e48485559454e3a2068c3a06e68206368c3ad6e6820487579e1bb876e', '', '', '2020-09-07 08:52:54+07', 5);
INSERT INTO public.wiki_content_versions VALUES (63, 13, 13, 41, '\x2320415049204f646174610d0a44616e68204de1bba563200d0a2d206f646174612f436869546965745143564e203a20436869207469e1babf742071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d4469656d5175616e54726163203a2044616e68206de1bba56320c49169e1bb836d20207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f5468656d4469656d51543a205468c3aa6d20c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f4361704e6861744469656d51543a2063e1baad70206e68e1baad7420c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f547265653a20547265650d0a202b20444d4469656d5175616e547261632f44616e68536163685468656f5472616e67546861693a2044616e682073c3a16368207468656f2064c3b569207472e1baa16e67207468c3a1690d0a2d206f646174612f444d4c6f61694d6f695472756f6e673a2044616e68206de1bba563206c6fe1baa169206dc3b469207472c6b0e1bb9d6e670d0a2d206f646174612f444d4c6f61695175616e54726163203a2044616e68206de1bba563206c6fe1baa169207175616e207472e1baaf630d0a2d206f646174612f444d5143564e3a2044616e68206de1bba5632071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d54686f6e67536f446f3a2044616e68206de1bba563207468c3b46e672073e1bb9120c4916f0d0a2d206f646174612f446f6e566954696e683a20c490c6a16e2076e1bb8b2074c3ad6e680d0a2d206f646174612f4c6f61694475416e3a204c6fe1baa1692064e1bbb120c3a16e0d0a2d206f646174612f4c6f6169486f536f3a204c6fe1baa1692068e1bb932073c6a10d0a2d206f646174612f48414e484348494e4858413a2068c3a06e68206368c3ad6e682058c3a30d0a2d206f646174612f48414e484348494e48485559454e3a2068c3a06e68206368c3ad6e6820487579e1bb876e', '', '', '2020-09-07 14:05:40+07', 6);
INSERT INTO public.wiki_content_versions VALUES (64, 13, 13, 12, '\x2320415049204f646174610d0a44616e68204de1bba563200d0a2d206f646174612f436869546965745143564e203a20436869207469e1babf742071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d4469656d5175616e54726163203a2044616e68206de1bba56320c49169e1bb836d20207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f5468656d4469656d51543a205468c3aa6d20c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f4361704e6861744469656d51543a2063e1baad70206e68e1baad7420c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f547265653a20547265650d0a202b20444d4469656d5175616e547261632f44616e68536163685468656f5472616e67546861693a2044616e682073c3a16368207468656f2064c3b569207472e1baa16e67207468c3a1690d0a2d206f646174612f444d4c6f61694d6f695472756f6e673a2044616e68206de1bba563206c6fe1baa169206dc3b469207472c6b0e1bb9d6e670d0a2d206f646174612f444d4c6f61695175616e54726163203a2044616e68206de1bba563206c6fe1baa169207175616e207472e1baaf630d0a2d206f646174612f444d5143564e3a2044616e68206de1bba5632071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d54686f6e67536f446f3a2044616e68206de1bba563207468c3b46e672073e1bb9120c4916f0d0a2d206f646174612f446f6e566954696e683a20c490c6a16e2076e1bb8b2074c3ad6e680d0a2d206f646174612f4c6f61694475416e3a204c6fe1baa1692064e1bbb120c3a16e0d0a2d206f646174612f4c6f6169486f536f3a204c6fe1baa1692068e1bb932073c6a10d0a2d206f646174612f48414e484348494e4858413a2068c3a06e68206368c3ad6e682058c3a30d0a2d206f646174612f48414e484348494e48485559454e3a2068c3a06e68206368c3ad6e6820487579e1bb876e0d0a0d0a0d0a0d0a0d0a0d0a23204c696e6b20776562736964653a2068747470733a2f2f7175616e7472616370686f6e6778612e676474736f6c7574696f6e732e766e2f0d0a544b3a20746573740d0a4d4b3a203132333435360d0a', '', '', '2020-09-08 10:58:00+07', 7);
INSERT INTO public.wiki_content_versions VALUES (65, 13, 13, 41, '\x2320415049204f646174610d0a44616e68204de1bba563200d0a2d206f646174612f436869546965745143564e203a20436869207469e1babf742071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d4469656d5175616e54726163203a2044616e68206de1bba56320c49169e1bb836d20207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f5468656d4469656d51543a205468c3aa6d20c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f4361704e6861744469656d51543a2063e1baad70206e68e1baad7420c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f547265653a20547265650d0a202b20444d4469656d5175616e547261632f44616e68536163685468656f5472616e67546861693a2044616e682073c3a16368207468656f2064c3b569207472e1baa16e67207468c3a1690d0a2d206f646174612f444d4c6f61694d6f695472756f6e673a2044616e68206de1bba563206c6fe1baa169206dc3b469207472c6b0e1bb9d6e670d0a2d206f646174612f444d4c6f61695175616e54726163203a2044616e68206de1bba563206c6fe1baa169207175616e207472e1baaf630d0a2d206f646174612f444d5143564e3a2044616e68206de1bba5632071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d54686f6e67536f446f3a2044616e68206de1bba563207468c3b46e672073e1bb9120c4916f0d0a2d206f646174612f446f6e566954696e683a20c490c6a16e2076e1bb8b2074c3ad6e680d0a2d206f646174612f4c6f61694475416e3a204c6fe1baa1692064e1bbb120c3a16e0d0a2d206f646174612f4c6f6169486f536f3a204c6fe1baa1692068e1bb932073c6a10d0a2d206f646174612f48414e484348494e4858413a2068c3a06e68206368c3ad6e682058c3a30d0a2d206f646174612f48414e484348494e48485559454e3a2068c3a06e68206368c3ad6e6820487579e1bb876e0d0a202b2050686f6e6758612f54696d4469614469656d5468656f54686f6e67536f3f696454686f6e67536f3d3534203a2054c3ac6d2063c3a16320c49169e1bb836d207175616e207472e1baaf63207468656f207468c3b46e672073e1bb910d0a202b2050686f6e6758612f54696d4b69656d5468656f4b686f616e673f69643d35342674753d302e312664656e3d302e33203a54c3ac6d2063c3a16320c49169e1bb836d207175616e207472e1baaf63207468656f206b686fe1baa36e67206769c3a1207472e1bb8b2063e1bba761207468c3b46e672073e1bb910d0a202b2050686f6e6758612f43686954696574446f44696e684b793f69643d3536203a204ce1baa579207468c3b46e672074696e20c4916f20c491e1bb8b6e68206be1bbb32063e1bba76120c49169e1bb836d207175616e207472e1baaf630d0a202b2050686f6e6758612f54696d4469614469656d5468656f4e616d3f6e616d3d32303230203a204ce1baa579207468c3b46e672074696e20c49169e1bb836d207175616e207472e1baaf6320c4916f2074726f6e67206ec4836d0d0a202b2050686f6e6758612f47696154726943756f6954756e6754686f6e67536f3f69643d3536203a205468c3b46e672074696e2063e1bba76120c49169e1bb836d207175616e207472e1baaf632074e1baa16920c491e1bba37420c4916f2067e1baa76e206e68e1baa5742e20200d0a0d0a0d0a0d0a0d0a0d0a0d0a23204c696e6b20776562736964653a2068747470733a2f2f7175616e7472616370686f6e6778612e676474736f6c7574696f6e732e766e2f0d0a544b3a20746573740d0a4d4b3a203132333435360d0a', '', '', '2020-09-08 16:09:18+07', 8);
INSERT INTO public.wiki_content_versions VALUES (66, 13, 13, 41, '\x2320415049204f646174610d0a44616e68204de1bba563200d0a2d206f646174612f436869546965745143564e203a20436869207469e1babf742071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d4469656d5175616e54726163203a2044616e68206de1bba56320c49169e1bb836d20207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f5468656d4469656d51543a205468c3aa6d20c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f4361704e6861744469656d51543a2063e1baad70206e68e1baad7420c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f547265653a20547265650d0a202b20444d4469656d5175616e547261632f44616e68536163685468656f5472616e67546861693a2044616e682073c3a16368207468656f2064c3b569207472e1baa16e67207468c3a1690d0a2d206f646174612f444d4c6f61694d6f695472756f6e673a2044616e68206de1bba563206c6fe1baa169206dc3b469207472c6b0e1bb9d6e670d0a2d206f646174612f444d4c6f61695175616e54726163203a2044616e68206de1bba563206c6fe1baa169207175616e207472e1baaf630d0a2d206f646174612f444d5143564e3a2044616e68206de1bba5632071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d54686f6e67536f446f3a2044616e68206de1bba563207468c3b46e672073e1bb9120c4916f0d0a2d206f646174612f446f6e566954696e683a20c490c6a16e2076e1bb8b2074c3ad6e680d0a2d206f646174612f4c6f61694475416e3a204c6fe1baa1692064e1bbb120c3a16e0d0a2d206f646174612f4c6f6169486f536f3a204c6fe1baa1692068e1bb932073c6a10d0a2d206f646174612f48414e484348494e4858413a2068c3a06e68206368c3ad6e682058c3a30d0a2d206f646174612f48414e484348494e48485559454e3a2068c3a06e68206368c3ad6e6820487579e1bb876e0d0a202b2050686f6e6758612f54696d4469614469656d5468656f54686f6e67536f3f696454686f6e67536f3d3534203a2054c3ac6d2063c3a16320c49169e1bb836d207175616e207472e1baaf63207468656f207468c3b46e672073e1bb910d0a202b2050686f6e6758612f54696d4b69656d5468656f4b686f616e673f69643d35342674753d302e312664656e3d302e33203a54c3ac6d2063c3a16320c49169e1bb836d207175616e207472e1baaf63207468656f206b686fe1baa36e67206769c3a1207472e1bb8b2063e1bba761207468c3b46e672073e1bb910d0a202b2050686f6e6758612f43686954696574446f44696e684b793f69643d3536203a204ce1baa579207468c3b46e672074696e20c4916f20c491e1bb8b6e68206be1bbb32063e1bba76120c49169e1bb836d207175616e207472e1baaf630d0a202b2050686f6e6758612f54696d4469614469656d5468656f4e616d3f6e616d3d32303230203a204ce1baa579207468c3b46e672074696e20c49169e1bb836d207175616e207472e1baaf6320c4916f2074726f6e67206ec4836d0d0a202b2050686f6e6758612f47696154726943756f6954756e6754686f6e67536f3f69643d3536203a205468c3b46e672074696e2063e1bba76120c49169e1bb836d207175616e207472e1baaf632074e1baa16920c491e1bba37420c4916f2067e1baa76e206e68e1baa5742e20200d0a202b2050686f6e6758612f54696d54686f6e67536f5468656f4e616d3f696454686f6e67536f3d3534266e616d3d32303138203a205468c3b46e672074696e2063c3a16320c49169e1bb836d207175616e207472e1baaf632063c3b3207468c3b46e672073e1bb9120c4916f207468656f206ec4836d2e200d0a0d0a0d0a0d0a23204c696e6b20776562736964653a2068747470733a2f2f7175616e7472616370686f6e6778612e676474736f6c7574696f6e732e766e2f0d0a544b3a20746573740d0a4d4b3a203132333435360d0a', '', '', '2020-09-10 09:11:01+07', 9);
INSERT INTO public.wiki_content_versions VALUES (67, 13, 13, 41, '\x2320415049204f646174610d0a44616e68204de1bba563200d0a2d206f646174612f436869546965745143564e203a20436869207469e1babf742071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d4469656d5175616e54726163203a2044616e68206de1bba56320c49169e1bb836d20207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f5468656d4469656d51543a205468c3aa6d20c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f4361704e6861744469656d51543a2063e1baad70206e68e1baad7420c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f547265653a20547265650d0a202b20444d4469656d5175616e547261632f44616e68536163685468656f5472616e67546861693a2044616e682073c3a16368207468656f2064c3b569207472e1baa16e67207468c3a1690d0a2d206f646174612f444d4c6f61694d6f695472756f6e673a2044616e68206de1bba563206c6fe1baa169206dc3b469207472c6b0e1bb9d6e670d0a2d206f646174612f444d4c6f61695175616e54726163203a2044616e68206de1bba563206c6fe1baa169207175616e207472e1baaf630d0a2d206f646174612f444d5143564e3a2044616e68206de1bba5632071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d54686f6e67536f446f3a2044616e68206de1bba563207468c3b46e672073e1bb9120c4916f0d0a2d206f646174612f446f6e566954696e683a20c490c6a16e2076e1bb8b2074c3ad6e680d0a2d206f646174612f4c6f61694475416e3a204c6fe1baa1692064e1bbb120c3a16e0d0a2d206f646174612f4c6f6169486f536f3a204c6fe1baa1692068e1bb932073c6a10d0a2d206f646174612f48414e484348494e4858413a2068c3a06e68206368c3ad6e682058c3a30d0a2d206f646174612f48414e484348494e48485559454e3a2068c3a06e68206368c3ad6e6820487579e1bb876e0d0a202b2050686f6e6758612f54696d4469614469656d5468656f54686f6e67536f3f696454686f6e67536f3d3534203a2054c3ac6d2063c3a16320c49169e1bb836d207175616e207472e1baaf63207468656f207468c3b46e672073e1bb910d0a202b2050686f6e6758612f54696d4b69656d5468656f4b686f616e673f69643d35342674753d302e312664656e3d302e33203a54c3ac6d2063c3a16320c49169e1bb836d207175616e207472e1baaf63207468656f206b686fe1baa36e67206769c3a1207472e1bb8b2063e1bba761207468c3b46e672073e1bb910d0a202b2050686f6e6758612f43686954696574446f44696e684b793f69643d3536203a204ce1baa579207468c3b46e672074696e20c4916f20c491e1bb8b6e68206be1bbb32063e1bba76120c49169e1bb836d207175616e207472e1baaf630d0a202b2050686f6e6758612f54696d4469614469656d5468656f4e616d3f6e616d3d32303230203a204ce1baa579207468c3b46e672074696e20c49169e1bb836d207175616e207472e1baaf6320c4916f2074726f6e67206ec4836d0d0a202b2050686f6e6758612f47696154726943756f6954756e6754686f6e67536f3f69643d3536203a205468c3b46e672074696e2063e1bba76120c49169e1bb836d207175616e207472e1baaf632074e1baa16920c491e1bba37420c4916f2067e1baa76e206e68e1baa5742e20200d0a202b2050686f6e6758612f54696d54686f6e67536f5468656f4e616d3f696454686f6e67536f3d3534266e616d3d32303138203a205468c3b46e672074696e2063c3a16320c49169e1bb836d207175616e207472e1baaf632063c3b3207468c3b46e672073e1bb9120c4916f207468656f206ec4836d2e200d0a0d0a2d205175616e4c7956616e42616e2f4174746163686d656e740d0a2d205175616e4c7956616e42616e2f4c757556616e42616e0d0a2d205175616e4c7956616e42616e2f446f776e6c6f61640d0a23204c696e6b20776562736964653a2068747470733a2f2f7175616e7472616370686f6e6778612e676474736f6c7574696f6e732e766e2f0d0a544b3a20746573740d0a4d4b3a203132333435360d0a', '', '', '2020-09-10 10:06:07+07', 10);
INSERT INTO public.wiki_content_versions VALUES (68, 13, 13, 41, '\x2320415049204f646174610d0a44616e68204de1bba563200d0a2d206f646174612f436869546965745143564e203a20436869207469e1babf742071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d4469656d5175616e54726163203a2044616e68206de1bba56320c49169e1bb836d20207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f5468656d4469656d51543a205468c3aa6d20c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f4361704e6861744469656d51543a2063e1baad70206e68e1baad7420c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f547265653a20547265650d0a202b20444d4469656d5175616e547261632f44616e68536163685468656f5472616e67546861693a2044616e682073c3a16368207468656f2064c3b569207472e1baa16e67207468c3a1690d0a2d206f646174612f444d4c6f61694d6f695472756f6e673a2044616e68206de1bba563206c6fe1baa169206dc3b469207472c6b0e1bb9d6e670d0a2d206f646174612f444d4c6f61695175616e54726163203a2044616e68206de1bba563206c6fe1baa169207175616e207472e1baaf630d0a2d206f646174612f444d5143564e3a2044616e68206de1bba5632071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d54686f6e67536f446f3a2044616e68206de1bba563207468c3b46e672073e1bb9120c4916f0d0a2d206f646174612f446f6e566954696e683a20c490c6a16e2076e1bb8b2074c3ad6e680d0a2d206f646174612f4c6f61694475416e3a204c6fe1baa1692064e1bbb120c3a16e0d0a2d206f646174612f4c6f6169486f536f3a204c6fe1baa1692068e1bb932073c6a10d0a2d206f646174612f48414e484348494e4858413a2068c3a06e68206368c3ad6e682058c3a30d0a2d206f646174612f48414e484348494e48485559454e3a2068c3a06e68206368c3ad6e6820487579e1bb876e0d0a202b2050686f6e6758612f54696d4469614469656d5468656f54686f6e67536f3f696454686f6e67536f3d3534203a2054c3ac6d2063c3a16320c49169e1bb836d207175616e207472e1baaf63207468656f207468c3b46e672073e1bb910d0a202b2050686f6e6758612f54696d4b69656d5468656f4b686f616e673f69643d35342674753d302e312664656e3d302e33203a54c3ac6d2063c3a16320c49169e1bb836d207175616e207472e1baaf63207468656f206b686fe1baa36e67206769c3a1207472e1bb8b2063e1bba761207468c3b46e672073e1bb910d0a202b2050686f6e6758612f43686954696574446f44696e684b793f69643d3536203a204ce1baa579207468c3b46e672074696e20c4916f20c491e1bb8b6e68206be1bbb32063e1bba76120c49169e1bb836d207175616e207472e1baaf630d0a202b2050686f6e6758612f54696d4469614469656d5468656f4e616d3f6e616d3d32303230203a204ce1baa579207468c3b46e672074696e20c49169e1bb836d207175616e207472e1baaf6320c4916f2074726f6e67206ec4836d0d0a202b2050686f6e6758612f47696154726943756f6954756e6754686f6e67536f3f69643d3536203a205468c3b46e672074696e2063e1bba76120c49169e1bb836d207175616e207472e1baaf632074e1baa16920c491e1bba37420c4916f2067e1baa76e206e68e1baa5742e20200d0a202b2050686f6e6758612f54696d54686f6e67536f5468656f4e616d3f696454686f6e67536f3d3534266e616d3d32303138203a205468c3b46e672074696e2063c3a16320c49169e1bb836d207175616e207472e1baaf632063c3b3207468c3b46e672073e1bb9120c4916f207468656f206ec4836d2e200d0a0d0a2d205175616e4c7956616e42616e2f4174746163686d656e740d0a7b200d0a6d6f64656c2e7461726765745f6964203d2048747470436f6e746578742e43757272656e742e526571756573745b227461726765745f6964225d3b0d0a6d6f64656c2e7461726765745f6d6f64756c65203d2048747470436f6e746578742e43757272656e742e526571756573745b227461726765745f6d6f64756c65225d3b0d0a6d6f64656c2e6d615f7461695f6b686f616e203d2048747470436f6e746578742e43757272656e742e526571756573745b226d615f7461695f6b686f616e225d3b0d0a6d6f64656c2e66696c65203d2048747470436f6e746578742e43757272656e742e526571756573742e46696c65732e436f756e74203e2030203f2048747470436f6e746578742e43757272656e742e526571756573742e46696c65735b305d203a206e756c6c3b0d0a7d200d0a2d205175616e4c7956616e42616e2f4c757556616e42616e0d0a2d205175616e4c7956616e42616e2f446f776e6c6f61640d0a23204c696e6b20776562736964653a2068747470733a2f2f7175616e7472616370686f6e6778612e676474736f6c7574696f6e732e766e2f0d0a544b3a20746573740d0a4d4b3a203132333435360d0a', '', '', '2020-09-10 10:08:08+07', 11);
INSERT INTO public.wiki_content_versions VALUES (69, 13, 13, 41, '\x2320415049204f646174610d0a44616e68204de1bba563200d0a2d206f646174612f436869546965745143564e203a20436869207469e1babf742071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d4469656d5175616e54726163203a2044616e68206de1bba56320c49169e1bb836d20207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f5468656d4469656d51543a205468c3aa6d20c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f4361704e6861744469656d51543a2063e1baad70206e68e1baad7420c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f547265653a20547265650d0a202b20444d4469656d5175616e547261632f44616e68536163685468656f5472616e67546861693a2044616e682073c3a16368207468656f2064c3b569207472e1baa16e67207468c3a1690d0a2d206f646174612f444d4c6f61694d6f695472756f6e673a2044616e68206de1bba563206c6fe1baa169206dc3b469207472c6b0e1bb9d6e670d0a2d206f646174612f444d4c6f61695175616e54726163203a2044616e68206de1bba563206c6fe1baa169207175616e207472e1baaf630d0a2d206f646174612f444d5143564e3a2044616e68206de1bba5632071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d54686f6e67536f446f3a2044616e68206de1bba563207468c3b46e672073e1bb9120c4916f0d0a2d206f646174612f446f6e566954696e683a20c490c6a16e2076e1bb8b2074c3ad6e680d0a2d206f646174612f4c6f61694475416e3a204c6fe1baa1692064e1bbb120c3a16e0d0a2d206f646174612f4c6f6169486f536f3a204c6fe1baa1692068e1bb932073c6a10d0a2d206f646174612f48414e484348494e4858413a2068c3a06e68206368c3ad6e682058c3a30d0a2d206f646174612f48414e484348494e48485559454e3a2068c3a06e68206368c3ad6e6820487579e1bb876e0d0a202b2050686f6e6758612f54696d4469614469656d5468656f54686f6e67536f3f696454686f6e67536f3d3534203a2054c3ac6d2063c3a16320c49169e1bb836d207175616e207472e1baaf63207468656f207468c3b46e672073e1bb910d0a202b2050686f6e6758612f54696d4b69656d5468656f4b686f616e673f69643d35342674753d302e312664656e3d302e33203a54c3ac6d2063c3a16320c49169e1bb836d207175616e207472e1baaf63207468656f206b686fe1baa36e67206769c3a1207472e1bb8b2063e1bba761207468c3b46e672073e1bb910d0a202b2050686f6e6758612f43686954696574446f44696e684b793f69643d3536203a204ce1baa579207468c3b46e672074696e20c4916f20c491e1bb8b6e68206be1bbb32063e1bba76120c49169e1bb836d207175616e207472e1baaf630d0a202b2050686f6e6758612f54696d4469614469656d5468656f4e616d3f6e616d3d32303230203a204ce1baa579207468c3b46e672074696e20c49169e1bb836d207175616e207472e1baaf6320c4916f2074726f6e67206ec4836d0d0a202b2050686f6e6758612f47696154726943756f6954756e6754686f6e67536f3f69643d3536203a205468c3b46e672074696e2063e1bba76120c49169e1bb836d207175616e207472e1baaf632074e1baa16920c491e1bba37420c4916f2067e1baa76e206e68e1baa5742e20200d0a202b2050686f6e6758612f54696d54686f6e67536f5468656f4e616d3f696454686f6e67536f3d3534266e616d3d32303138203a205468c3b46e672074696e2063c3a16320c49169e1bb836d207175616e207472e1baaf632063c3b3207468c3b46e672073e1bb9120c4916f207468656f206ec4836d2e200d0a0d0a2d205175616e4c7956616e42616e2f4174746163686d656e740d0a7b200d0a4174746163686d656e744d6f64656c206d6f64656c203d206e6577204174746163686d656e744d6f64656c28293b0d0a6d6f64656c2e7461726765745f6964203d2048747470436f6e746578742e43757272656e742e526571756573745b227461726765745f6964225d3b0d0a6d6f64656c2e7461726765745f6d6f64756c65203d2048747470436f6e746578742e43757272656e742e526571756573745b227461726765745f6d6f64756c65225d3b0d0a6d6f64656c2e6d615f7461695f6b686f616e203d2048747470436f6e746578742e43757272656e742e526571756573745b226d615f7461695f6b686f616e225d3b0d0a6d6f64656c2e66696c65203d2048747470436f6e746578742e43757272656e742e526571756573742e46696c65732e436f756e74203e2030203f2048747470436f6e746578742e43757272656e742e526571756573742e46696c65735b305d203a206e756c6c3b0d0a7d200d0a2d205175616e4c7956616e42616e2f4c757556616e42616e0d0a2d205175616e4c7956616e42616e2f446f776e6c6f61640d0a23204c696e6b20776562736964653a2068747470733a2f2f7175616e7472616370686f6e6778612e676474736f6c7574696f6e732e766e2f0d0a544b3a20746573740d0a4d4b3a203132333435360d0a', '', '', '2020-09-10 10:08:35+07', 12);
INSERT INTO public.wiki_content_versions VALUES (70, 13, 13, 41, '\x2320415049204f646174610d0a44616e68204de1bba563200d0a2d206f646174612f436869546965745143564e203a20436869207469e1babf742071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d4469656d5175616e54726163203a2044616e68206de1bba56320c49169e1bb836d20207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f5468656d4469656d51543a205468c3aa6d20c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f4361704e6861744469656d51543a2063e1baad70206e68e1baad7420c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f547265653a20547265650d0a202b20444d4469656d5175616e547261632f44616e68536163685468656f5472616e67546861693a2044616e682073c3a16368207468656f2064c3b569207472e1baa16e67207468c3a1690d0a2d206f646174612f444d4c6f61694d6f695472756f6e673a2044616e68206de1bba563206c6fe1baa169206dc3b469207472c6b0e1bb9d6e670d0a2d206f646174612f444d4c6f61695175616e54726163203a2044616e68206de1bba563206c6fe1baa169207175616e207472e1baaf630d0a2d206f646174612f444d5143564e3a2044616e68206de1bba5632071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d54686f6e67536f446f3a2044616e68206de1bba563207468c3b46e672073e1bb9120c4916f0d0a2d206f646174612f446f6e566954696e683a20c490c6a16e2076e1bb8b2074c3ad6e680d0a2d206f646174612f4c6f61694475416e3a204c6fe1baa1692064e1bbb120c3a16e0d0a2d206f646174612f4c6f6169486f536f3a204c6fe1baa1692068e1bb932073c6a10d0a2d206f646174612f48414e484348494e4858413a2068c3a06e68206368c3ad6e682058c3a30d0a2d206f646174612f48414e484348494e48485559454e3a2068c3a06e68206368c3ad6e6820487579e1bb876e0d0a202b2050686f6e6758612f54696d4469614469656d5468656f54686f6e67536f3f696454686f6e67536f3d3534203a2054c3ac6d2063c3a16320c49169e1bb836d207175616e207472e1baaf63207468656f207468c3b46e672073e1bb910d0a202b2050686f6e6758612f54696d4b69656d5468656f4b686f616e673f69643d35342674753d302e312664656e3d302e33203a54c3ac6d2063c3a16320c49169e1bb836d207175616e207472e1baaf63207468656f206b686fe1baa36e67206769c3a1207472e1bb8b2063e1bba761207468c3b46e672073e1bb910d0a202b2050686f6e6758612f43686954696574446f44696e684b793f69643d3536203a204ce1baa579207468c3b46e672074696e20c4916f20c491e1bb8b6e68206be1bbb32063e1bba76120c49169e1bb836d207175616e207472e1baaf630d0a202b2050686f6e6758612f54696d4469614469656d5468656f4e616d3f6e616d3d32303230203a204ce1baa579207468c3b46e672074696e20c49169e1bb836d207175616e207472e1baaf6320c4916f2074726f6e67206ec4836d0d0a202b2050686f6e6758612f47696154726943756f6954756e6754686f6e67536f3f69643d3536203a205468c3b46e672074696e2063e1bba76120c49169e1bb836d207175616e207472e1baaf632074e1baa16920c491e1bba37420c4916f2067e1baa76e206e68e1baa5742e20200d0a202b2050686f6e6758612f54696d54686f6e67536f5468656f4e616d3f696454686f6e67536f3d3534266e616d3d32303138203a205468c3b46e672074696e2063c3a16320c49169e1bb836d207175616e207472e1baaf632063c3b3207468c3b46e672073e1bb9120c4916f207468656f206ec4836d2e200d0a202b2050686f6e6758612f547265653f6d614469656d2674656e4469656d266c6f6169515449643d31203a2043c3a2792064616e68206de1bba5630d0a2d205175616e4c7956616e42616e2f4174746163686d656e740d0a7b200d0a4174746163686d656e744d6f64656c206d6f64656c203d206e6577204174746163686d656e744d6f64656c28293b0d0a6d6f64656c2e7461726765745f6964203d2048747470436f6e746578742e43757272656e742e526571756573745b227461726765745f6964225d3b0d0a6d6f64656c2e7461726765745f6d6f64756c65203d2048747470436f6e746578742e43757272656e742e526571756573745b227461726765745f6d6f64756c65225d3b0d0a6d6f64656c2e6d615f7461695f6b686f616e203d2048747470436f6e746578742e43757272656e742e526571756573745b226d615f7461695f6b686f616e225d3b0d0a6d6f64656c2e66696c65203d2048747470436f6e746578742e43757272656e742e526571756573742e46696c65732e436f756e74203e2030203f2048747470436f6e746578742e43757272656e742e526571756573742e46696c65735b305d203a206e756c6c3b0d0a7d200d0a2d205175616e4c7956616e42616e2f4c757556616e42616e0d0a2d205175616e4c7956616e42616e2f446f776e6c6f61640d0a23204c696e6b20776562736964653a2068747470733a2f2f7175616e7472616370686f6e6778612e676474736f6c7574696f6e732e766e2f0d0a544b3a20746573740d0a4d4b3a203132333435360d0a', '', '', '2020-09-10 14:23:04+07', 13);
INSERT INTO public.wiki_content_versions VALUES (71, 13, 13, 12, '\x2320415049204f646174610d0a44616e68204de1bba563200d0a2d206f646174612f436869546965745143564e203a20436869207469e1babf742071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d4469656d5175616e54726163203a2044616e68206de1bba56320c49169e1bb836d20207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f5468656d4469656d51543a205468c3aa6d20c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f4361704e6861744469656d51543a2063e1baad70206e68e1baad7420c49169e1bb836d207175616e207472e1baaf630d0a202b20444d4469656d5175616e547261632f547265653a20547265650d0a202b20444d4469656d5175616e547261632f44616e68536163685468656f5472616e67546861693a2044616e682073c3a16368207468656f2064c3b569207472e1baa16e67207468c3a1690d0a2d206f646174612f444d4c6f61694d6f695472756f6e673a2044616e68206de1bba563206c6fe1baa169206dc3b469207472c6b0e1bb9d6e670d0a2d206f646174612f444d4c6f61695175616e54726163203a2044616e68206de1bba563206c6fe1baa169207175616e207472e1baaf630d0a2d206f646174612f444d5143564e3a2044616e68206de1bba5632071757920636875e1baa96e205669e1bb8774204e616d0d0a2d206f646174612f444d54686f6e67536f446f3a2044616e68206de1bba563207468c3b46e672073e1bb9120c4916f0d0a2d206f646174612f446f6e566954696e683a20c490c6a16e2076e1bb8b2074c3ad6e680d0a2d206f646174612f4c6f61694475416e3a204c6fe1baa1692064e1bbb120c3a16e0d0a2d206f646174612f4c6f6169486f536f3a204c6fe1baa1692068e1bb932073c6a10d0a2d206f646174612f48414e484348494e4858413a2068c3a06e68206368c3ad6e682058c3a30d0a2d206f646174612f48414e484348494e48485559454e3a2068c3a06e68206368c3ad6e6820487579e1bb876e0d0a202b2050686f6e6758612f54696d4469614469656d5468656f54686f6e67536f3f696454686f6e67536f3d3534203a2054c3ac6d2063c3a16320c49169e1bb836d207175616e207472e1baaf63207468656f207468c3b46e672073e1bb910d0a202b2050686f6e6758612f54696d4b69656d5468656f4b686f616e673f69643d35342674753d302e312664656e3d302e33203a54c3ac6d2063c3a16320c49169e1bb836d207175616e207472e1baaf63207468656f206b686fe1baa36e67206769c3a1207472e1bb8b2063e1bba761207468c3b46e672073e1bb910d0a202b2050686f6e6758612f43686954696574446f44696e684b793f69643d3536203a204ce1baa579207468c3b46e672074696e20c4916f20c491e1bb8b6e68206be1bbb32063e1bba76120c49169e1bb836d207175616e207472e1baaf630d0a202b2050686f6e6758612f54696d4469614469656d5468656f4e616d3f6e616d3d32303230203a204ce1baa579207468c3b46e672074696e20c49169e1bb836d207175616e207472e1baaf6320c4916f2074726f6e67206ec4836d0d0a202b2050686f6e6758612f47696154726943756f6954756e6754686f6e67536f3f69643d3536203a205468c3b46e672074696e2063e1bba76120c49169e1bb836d207175616e207472e1baaf632074e1baa16920c491e1bba37420c4916f2067e1baa76e206e68e1baa5742e20200d0a202b2050686f6e6758612f54696d54686f6e67536f5468656f4e616d3f696454686f6e67536f3d3534266e616d3d32303138203a205468c3b46e672074696e2063c3a16320c49169e1bb836d207175616e207472e1baaf632063c3b3207468c3b46e672073e1bb9120c4916f207468656f206ec4836d2e200d0a202b2050686f6e6758612f547265653f6d614469656d2674656e4469656d266c6f6169515449643d31203a2043c3a2792064616e68206de1bba5630d0a2d205175616e4c7956616e42616e2f4174746163686d656e740d0a7b200d0a4174746163686d656e744d6f64656c206d6f64656c203d206e6577204174746163686d656e744d6f64656c28293b0d0a6d6f64656c2e7461726765745f6964203d2048747470436f6e746578742e43757272656e742e526571756573745b227461726765745f6964225d3b0d0a6d6f64656c2e7461726765745f6d6f64756c65203d2048747470436f6e746578742e43757272656e742e526571756573745b227461726765745f6d6f64756c65225d3b0d0a6d6f64656c2e6d615f7461695f6b686f616e203d2048747470436f6e746578742e43757272656e742e526571756573745b226d615f7461695f6b686f616e225d3b0d0a6d6f64656c2e66696c65203d2048747470436f6e746578742e43757272656e742e526571756573742e46696c65732e436f756e74203e2030203f2048747470436f6e746578742e43757272656e742e526571756573742e46696c65735b305d203a206e756c6c3b0d0a7d200d0a2d205175616e4c7956616e42616e2f4c757556616e42616e0d0a2d205175616e4c7956616e42616e2f446f776e6c6f61640d0a0d0a0d0a0d0a23204c696e6b20776562736964653a2068747470733a2f2f7175616e7472616370686f6e6778612e676474736f6c7574696f6e732e766e2f0d0a544b3a20746573740d0a4d4b3a203132333435360d0a', '', '', '2020-09-11 09:06:26+07', 14);
INSERT INTO public.wiki_content_versions VALUES (73, 14, 14, 41, '\x4c696e6b207472616e67207765623a2068747470733a2f2f7175616e6c796368756e6763752e676474736f6c7574696f6e732e766e2f0d0a6170693a2068747470733a2f2f6170692d7175616e6c796368756e6763752e676474736f6c7574696f6e732e766e0d0a0d0a0d0a446f6e48616e672f54616f446f6e48616e673f506869657549643d203a20204150492074e1baa16f206de1bb9b6920c491c6a16e2068c3a06e672e0d0a53616e5068616d2f5468656d53616e5068616d203a2020415049207468c3aa6d2073e1baa36e207068e1baa96d2e0d0a53616e5068616d2f4361704e68617453616e5068616d203a204150492063e1baad70206e68e1baad742073e1baa36e207068e1baa96d0d0a53616e5068616d2f586f6153616e5068616d3f69643d203a204150492078c3b3612073e1baa36e207068e1baa96d0d0a5068696575732f54616f50686965753f6d61783d203a20204150492074e1baa16f20706869e1babf75207468656f2073e1bb91206cc6b0e1bba36e670d0a5068696575732f4b696368486f617450686965753f6d61783d203a20415049206bc3ad636820686fe1baa1742073e1bb91206cc6b0e1bba36e6720706869e1babf75207469e1babf70207468656f2e0d0a5068696575732f4e61705469656e203a20415049206ee1baa170207469e1bb816e2e0d0a5265706f72742f42616f43616f536f4475546865203a204150492062c3a16f2063c3a16f2073e1bb912064c6b0207468e1babb0d0a5265706f72742f424344545468656f446f6e48616e67203a204150492042c3a16f2063c3a16f2064616e6820746875207468656f20c491c6a16e2068c3a06e672020', '', '', '2020-09-18 01:26:46+07', 2);
INSERT INTO public.wiki_content_versions VALUES (74, 14, 14, 41, '\x4c696e6b207472616e67207765623a2068747470733a2f2f7175616e6c796368756e6763752e676474736f6c7574696f6e732e766e2f0d0a6170693a2068747470733a2f2f6170692d7175616e6c796368756e6763752e676474736f6c7574696f6e732e766e0d0a0d0a0d0a446f6e48616e672f54616f446f6e48616e673f506869657549643d203a20204150492074e1baa16f206de1bb9b6920c491c6a16e2068c3a06e672e0d0a53616e5068616d2f5468656d53616e5068616d203a2020415049207468c3aa6d2073e1baa36e207068e1baa96d2e0d0a53616e5068616d2f4361704e68617453616e5068616d203a204150492063e1baad70206e68e1baad742073e1baa36e207068e1baa96d0d0a53616e5068616d2f586f6153616e5068616d3f69643d203a204150492078c3b3612073e1baa36e207068e1baa96d0d0a5068696575732f54616f50686965753f6d61783d203a20204150492074e1baa16f20706869e1babf75207468656f2073e1bb91206cc6b0e1bba36e670d0a5068696575732f4b696368486f617450686965753f6d61783d203a20415049206bc3ad636820686fe1baa1742073e1bb91206cc6b0e1bba36e6720706869e1babf75207469e1babf70207468656f2e0d0a5068696575732f4e61705469656e203a20415049206ee1baa170207469e1bb816e2e0d0a5265706f72742f42616f43616f536f4475546865203a204150492062c3a16f2063c3a16f2073e1bb912064c6b0207468e1babb0d0a2f5265706f72742f424344545468656f446f6e48616e673f74754e6761793d323032302d30392d31352664656e4e6761793d323032302d30392d313720203a204150492042c3a16f2063c3a16f2064616e6820746875207468656f20c491c6a16e2068c3a06e672020', '', '', '2020-09-18 03:02:05+07', 3);
INSERT INTO public.wiki_content_versions VALUES (75, 15, 15, 19, '\x232057696b690d0a5175616e4c7956616e48616e680d0a6f646174612f4465706172746d656e74730d0a6f646174612f4c6973745072696f7269746965730d0a6f646174612f4c697374526174696e67730d0a6f646174612f4c6973745265717565737454797065730d0a6f646174612f4c6973745374616666730d0a6f646174612f4c6973745374617475730d0a6f646174612f5265717565737473', '', '', '2020-10-12 13:24:03+07', 1);
INSERT INTO public.wiki_content_versions VALUES (76, 15, 15, 19, '\x232057696b690d0a4f7065726174696f6e616c206d616e6167656d656e743a0d0a6f646174612f4465706172746d656e74730d0a6f646174612f4c6973745072696f7269746965730d0a6f646174612f4c697374526174696e67730d0a6f646174612f4c6973745265717565737454797065730d0a6f646174612f4c6973745374616666730d0a6f646174612f4c6973745374617475730d0a6f646174612f5265717565737473', '', '', '2020-10-12 13:27:24+07', 2);
INSERT INTO public.wiki_content_versions VALUES (77, 16, 16, 19, '\x232057696b690d0a4f7065726174696f6e616c206d616e6167656d656e743a0d0a6f646174612f4465706172746d656e74730d0a6f646174612f4c6973745072696f7269746965730d0a6f646174612f4c697374526174696e67730d0a6f646174612f4c6973745265717565737454797065730d0a6f646174612f4c6973745374616666730d0a6f646174612f4c6973745374617475730d0a6f646174612f52657175657374730d0a0d0a547970653a0d0a436f6d706c61696e0d0a5265706169720d0a0d0a537461747573204c6973743a0d0a4e65770d0a4d6f7265496e666f0d0a496e50726f636573730d0a426c6f636b0d0a436f6d706c6574650d0a436f6e6669726d4f726465720d0a57616974466f725061790d0a496e446562740d0a436c6f73650d0a0d0a5072696f726974793a0d0a4c6f770d0a4d656469756d0d0a486967680d0a437269746963616c', '', '', '2020-10-12 15:49:06+07', 1);
INSERT INTO public.wiki_content_versions VALUES (78, 17, 17, 12, '\x2320537761676765720d0a20202068747470733a2f2f61706962616f63616f2e676474736f6c7574696f6e732e766e2f737761676765722f75692f696e646578232f0d0a23204f646174610d0a2020202d206f646174612f52505f436f6c756d6e0d0a2020202d206f646174612f52505f5265706f72740d0a2020202d206f646174612f52505f526f770d0a2020202d206f646174612f52505f5265706f727454656d706c6174650d0a2020202d206f646174612f52505f526f7754656d706c6174650d0a2020202d206f646174612f52505f436f6c756d6e54656d706c6174650d0a202020', '', '', '2020-11-09 09:24:59+07', 1);
INSERT INTO public.wiki_content_versions VALUES (79, 17, 17, 12, '\x2320537761676765720d0a20202068747470733a2f2f61706962616f63616f2e676474736f6c7574696f6e732e766e2f737761676765722f75692f696e646578232f0d0a23204f646174610d0a2020202d206f646174612f52505f436f6c756d6e0d0a2020202d206f646174612f52505f5265706f72740d0a2020202d206f646174612f52505f526f770d0a2020202d206f646174612f52505f5265706f727454656d706c6174650d0a2020202d206f646174612f52505f526f7754656d706c6174650d0a2020202d206f646174612f52505f436f6c756d6e54656d706c6174650d0a2020202d206f646174612f444d5f48616e684368696e680d0a202020', '', '', '2020-11-09 09:51:09+07', 2);
INSERT INTO public.wiki_content_versions VALUES (80, 17, 17, 12, '\x2320537761676765720d0a20202068747470733a2f2f61706962616f63616f2e676474736f6c7574696f6e732e766e2f737761676765722f75692f696e646578232f0d0a23204f646174610d0a2020202d206f646174612f52505f436f6c756d6e0d0a2020202d206f646174612f52505f5265706f72740d0a2020202d206f646174612f52505f526f770d0a2020202d206f646174612f52505f5265706f727454656d706c6174650d0a2020202d206f646174612f52505f526f7754656d706c6174650d0a2020202d206f646174612f52505f436f6c756d6e54656d706c6174650d0a2020202d206f646174612f444d5f48616e684368696e680d0a2020202d206f646174612f52505f43656c6c202020', '', '', '2020-11-11 10:09:01+07', 3);
INSERT INTO public.wiki_content_versions VALUES (81, 17, 17, 12, '\x2320537761676765720d0a20202068747470733a2f2f61706962616f63616f2e676474736f6c7574696f6e732e766e2f737761676765722f75692f696e646578232f0d0a23204f646174610d0a2020202d206f646174612f52505f436f6c756d6e0d0a2020202d206f646174612f52505f5265706f72740d0a2020202d206f646174612f52505f526f770d0a2020202d206f646174612f52505f5265706f727454656d706c6174650d0a2020202d206f646174612f52505f526f7754656d706c6174650d0a2020202d206f646174612f52505f436f6c756d6e54656d706c6174650d0a2020202d206f646174612f444d5f48616e684368696e680d0a2020202d206f646174612f52505f43656c6c2020200d0a2020202d206f646174612f52505f4669656c64', '', '', '2020-11-11 13:59:37+07', 4);
INSERT INTO public.wiki_content_versions VALUES (82, 17, 17, 12, '\x2320537761676765720d0a20202068747470733a2f2f61706962616f63616f2e676474736f6c7574696f6e732e766e2f737761676765722f75692f696e646578232f0d0a23204f646174610d0a2020202d206f646174612f52505f436f6c756d6e0d0a2020202d206f646174612f52505f5265706f72740d0a2020202d206f646174612f52505f526f770d0a2020202d206f646174612f52505f5265706f727454656d706c6174650d0a2020202d206f646174612f52505f526f7754656d706c6174650d0a2020202d206f646174612f52505f436f6c756d6e54656d706c6174650d0a2020202d206f646174612f444d5f48616e684368696e680d0a2020202d206f646174612f52505f43656c6c2020200d0a2020202d206f646174612f52505f4669656c640d0a2020202d206f646174612f52505f5265706f727443617465676f7279', '', '', '2020-11-12 09:40:50+07', 5);
INSERT INTO public.wiki_content_versions VALUES (83, 18, 18, 12, '\x2320537761676765720d0a20202068747470733a2f2f61706962616f63616f2e676474736f6c7574696f6e732e766e2f737761676765722f75692f696e646578232f0d0a23204f646174610d0a2020202d206f646174612f52505f436f6c756d6e0d0a2020202d206f646174612f52505f5265706f72740d0a2020202d206f646174612f52505f526f770d0a2020202d206f646174612f52505f5265706f727454656d706c6174650d0a2020202d206f646174612f52505f526f7754656d706c6174650d0a2020202d206f646174612f52505f436f6c756d6e54656d706c6174650d0a2020202d206f646174612f444d5f48616e684368696e680d0a2020202d206f646174612f52505f43656c6c2020200d0a2020202d206f646174612f52505f4669656c640d0a2020202d206f646174612f52505f5265706f727443617465676f72790d0a2020202d206f646174612f52505f41737367696e5265706f72740d0a2020202d206f646174612f52505f4368695469657441737369676e5265706f7274', '', '', '2020-11-14 10:05:31+07', 1);
INSERT INTO public.wiki_content_versions VALUES (84, 18, 18, 12, '\x2320537761676765720d0a20202068747470733a2f2f61706962616f63616f2e676474736f6c7574696f6e732e766e2f737761676765722f75692f696e646578232f0d0a23204f646174610d0a2020202d206f646174612f52505f436f6c756d6e0d0a2020202d206f646174612f52505f5265706f72740d0a2020202d206f646174612f52505f526f770d0a2020202d206f646174612f52505f5265706f727454656d706c6174650d0a2020202d206f646174612f52505f526f7754656d706c6174650d0a2020202d206f646174612f52505f436f6c756d6e54656d706c6174650d0a2020202d206f646174612f444d5f48616e684368696e680d0a2020202d206f646174612f52505f43656c6c2020200d0a2020202d206f646174612f52505f4669656c640d0a2020202d206f646174612f52505f5265706f727443617465676f72790d0a2020202d206f646174612f52505f41737369676e5265706f72740d0a2020202d206f646174612f52505f4368695469657441737369676e5265706f7274', '', '', '2020-11-16 10:37:38+07', 2);
INSERT INTO public.wiki_content_versions VALUES (85, 18, 18, 38, '\x2320537761676765720d0a20202068747470733a2f2f61706962616f63616f2e676474736f6c7574696f6e732e766e2f737761676765722f75692f696e646578232f0a0a23204f646174610d0a2020202d206f646174612f52505f436f6c756d6e0d0a2020202d206f646174612f52505f5265706f72740d0a2020202d206f646174612f52505f526f770d0a2020202d206f646174612f52505f5265706f72745f54656d706c6174650d0a2020202d206f646174612f52505f526f775f54656d706c6174650d0a2020202d206f646174612f52505f436f6c756d6e5f54656d706c6174650d0a2020202d206f646174612f52505f5265706f72745f43656c6c0d0a2020202d206f646174612f444d5f48616e684368696e680d0a2020202d206f646174612f52505f43656c6c2020200d0a2020202d206f646174612f52505f4669656c640d0a2020202d206f646174612f52505f5265706f727443617465676f72790d0a2020202d206f646174612f52505f41737369676e5265706f72740d0a2020202d206f646174612f52505f4368695469657441737369676e5265706f72740d0a2020202d206f646174612f52505f54656d706c61746544657461696c0d0a2020202d206f646174612f52505f5265706f727443617465676f72790d0a2020202d200d0a0d0a', '', '', '2020-11-23 08:15:37+07', 3);
INSERT INTO public.wiki_content_versions VALUES (86, 18, 18, 5, '\x2320537761676765720d0a20202068747470733a2f2f61706962616f63616f2e676474736f6c7574696f6e732e766e2f737761676765722f75692f696e646578232f0d0a0d0a23204f646174610d0a2020202d206f646174612f52505f436f6c756d6e0d0a2020202d206f646174612f52505f5265706f72740d0a2020202d206f646174612f52505f526f770d0a2020202d206f646174612f52505f5265706f72745f54656d706c6174650d0a2020202d206f646174612f52505f526f775f54656d706c6174650d0a2020202d206f646174612f52505f436f6c756d6e5f54656d706c6174650d0a2020202d206f646174612f52505f5265706f72745f43656c6c0d0a2020202d206f646174612f444d5f48616e684368696e680d0a2020202d206f646174612f52505f43656c6c2020200d0a2020202d206f646174612f52505f4669656c640d0a2020202d206f646174612f52505f5265706f727443617465676f72790d0a2020202d206f646174612f52505f41737369676e5265706f72740d0a2020202d206f646174612f52505f4368695469657441737369676e5265706f72740d0a2020202d206f646174612f52505f54656d706c61746544657461696c0d0a2020202d206f646174612f52505f5265706f727443617465676f72790d0a2020202d200d0a0d0a23204c494e4b205745420d0a0d0a2d2068747470733a2f2f62616f63616f7374632e676474736f6c7574696f6e732e766e2f0d0a2d2068747470733a2f2f61706962616f63616f7374632e676474736f6c7574696f6e732e766e0d0a', '', '', '2020-12-21 08:32:37+07', 4);


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

INSERT INTO public.wiki_contents VALUES (1, 1, 6, 'h1. pass publish backend

- **IP**: 171.244.38.75
- **User/Pass**: gdtprice/csdlgia123#@!', '', '2020-03-23 13:38:15+07', 4);
INSERT INTO public.wiki_contents VALUES (2, 2, 5, 'LINK NGƯỜI DÂN: https://ansinhxahoi.binhdinh.gov.vn
LINK QUẢN TRỊ: https://hotronguoidan.binhdinh.gov.vn

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

API DỮ LIỆU CHÍNH: api-covid.gdtvietnam.com
API DỮ LIỆU TEST: api-covid-test.gdtvietnam.com', '', '2020-04-20 08:35:18+07', 1);
INSERT INTO public.wiki_contents VALUES (3, 3, 6, 'Những điều cần hỏi

1. Niên khóa được tổ chức như thế nào, có đồng bộ cho tất cả các lớp không? Hay mỗi lớp có một cách tính niên khóa khác nhau?
   * C&oacute; kh&oacute;a 2 năm (BC04: kh&oacute;a 87 2019-2020), c&oacute; kh&oacute;a 3 năm (BC02: kh&oacute;a 17 2019-2021).
   * C&oacute; 2 kh&oacute;a c&ugrave;ng năm (BC05-06: kh&oacute;a 85 năm 2018-2020 v&agrave; BC07: kh&oacute;a 80 năm 2018- 2020)
1. Việc quản l&yacute; gi&aacute;o vi&ecirc;n dạy b&ugrave; trong trường hợp gi&aacute;o vi&ecirc;n phụ tr&aacute;ch ch&iacute;nh bận c&ocirc;ng việc đột xuất

@câu hỏi của Vũ.

cách tính điểm xếp loại học viên.
Điểm tốt nghiệp có dùng để tính điểm xếp loại (Nếu có thì có tỉ lệ điểm hay cộng lại chia đều trên số môn).

 Tài khoản:

Admin: admin
Giảng viên: giangvien
Chuyên viên tổng hợp: chuyenvientonghop
Chuyên viên khảo thí: chuyenvienkhaothi
Chuyên viên tuyển sinh: chuyenvientuyensinh

Mật khẩu: gdt@123#@!', '', '2020-06-13 16:16:54+07', 10);
INSERT INTO public.wiki_contents VALUES (4, 4, 5, '<pre>
<code class="javascript">
api login POST: /Login/Authenticate
{
 Username: ...,
 Password: ...
}
</code></pre>

<pre>
<code class="javascript">
api get menu GET: /Login/GetMenu
</code></pre>

<p>&nbsp;</p>

<pre>
<code class="javascript">
api ho so search, filter: HoSoes/GetList?TenHoSo=__LoaiHoSo=__IDDV=__StartDate=__EndDate=__TrangThai</code>
</pre>

<pre>
<code class="javascript">api chi tiet ho so: odata/HoSo_TramBTS</code>
</pre>

<pre>
<code class="javascript">api chi tiet ho so: odata/HoSo_TuyenCapNgam</code>
</pre>

<pre>
<code class="javascript">api chi tiet ho so: odata/HoSo_TuyenCapNoi</code>
</pre>

<pre>
<code class="javascript">api chi tiet ho so: odata/HoSo_DiemDichVu</code>
</pre>

<pre>
<code class="javascript">
api trinh ky: HoSoes/TrinhKy
</code>
</pre>

<pre>
<code class="javascript">
api ky so: HoSoes/KySo
</code>
</pre>

<pre>
<code class="javascript">
api gui ho so: HoSoes/GuiHoSo
</code>
</pre>

<pre>
<code class="javascript">
api duyet ho so: HoSoes/DuyetHoSo
</code>
</pre>

<pre>
<code class="javascript">
api tu choi ho so, nhap ly do: HoSoes/TuChoiHoSo
</code>
</pre>

<pre>
<code class="javascript">
lay file pdf: HoSoes/GeneratePDF?id=xxx
</code>
</pre>

<p>&nbsp;</p>

<pre>
<code class="javascript">api van ban dinh kem:</code></pre>

<pre>
<code class="javascript">QuanLyVanBan/Attachment </code></pre>

<p>{ target_id, target_module = &quot;HoSo&quot;, ma_tai_khoan, file,&nbsp;Subject,&nbsp;IssuedDate }</p>

<pre>
<code class="javascript">QuanLyVanBan/LuuVanBan </code></pre>

<pre>
<code class="javascript">QuanLyVanBan/Download </code></pre>

<pre>
<code class="javascript">QuanLyVanBan/DanhSach </code></pre>

<p>&nbsp;</p>

<p>&nbsp;</p>

<h1>T&Agrave;I KHOẢN</h1>

<p><strong>DOANH NGHIỆP:</strong></p>

<p>viettel/gdt@123#@!</p>

<p>mobile/gdt@123#@!</p>

<p>vnmobile/gdt@123#@!</p>

<p>vnpt/gdt@123#@!</p>

<p>gtel/gdt@123#@!</p>

<p><strong>SỞ TTTT:</strong></p>

<p>sotttt/gdt@123#@!</p>
', '', '2020-05-28 14:48:03+07', 14);
INSERT INTO public.wiki_contents VALUES (6, 6, 6, '<h2><span style="font-size:14px;"><span style="font-family:Times New Roman,Times,serif;">Cần sửa</span></span></h2>

<ol>
	<li><span style="font-size:14px;"><span style="font-family:Times New Roman,Times,serif;">K&yacute; số cập nhật lại trạng th&aacute;i bảng lương, truy lĩnh, t&agrave;i khoản.</span></span></li>
	<li><span style="font-size:14px;"><span style="font-family:Times New Roman,Times,serif;">X&oacute;a bảng lương kiểm tra trạng th&aacute;i bảng lương, truy lĩnh, t&agrave;i khoản (chưa k&yacute; số, x&oacute;a bảng lương th&igrave; x&oacute;a lu&ocirc;n bảng truy lĩnh).</span></span></li>
</ol>
', '', '2020-05-18 14:24:33+07', 3);
INSERT INTO public.wiki_contents VALUES (7, 7, 5, '# Wiki xúc tiến đầu tư

## Git

1.  [Front-end](https://gitlab.com/xuctiendautu/xuctien_frontend)
2.  [Backend](https://gitlab.com/xuctiendautu/nestjs-api)

### Giao diện

https://docs.google.com/presentation/d/1XGzI047JZ0P7qBZp0_z4Ny9NlSTBcH31mq17zbHFwOk/edit#slide=id.g8bceffecc4_0_308', '', '2020-07-08 16:56:31+07', 2);
INSERT INTO public.wiki_contents VALUES (8, 8, 19, '### Git

*   Backend:  https://gitlab.com/quantracqn/backend.git => dev
*   Frontend:  https://gitlab.com/quantracqn/frontend.git => dev

### API

https://api-quantrac-qn.gdtvietnam.com
/odata/CSSXKD
/odata/DMDiemQuanTrac
/odata/DotQuanTracs
/odata/DMCumCongNghiep
/odata/DMLoaiMoiTruongs
/odata/DMLoaiQuanTrac
/odata/DMThongSoDo
/odata/DonViTinh
/odata/DuAn
/odata/LoaiCoSoKD
/odata/LoaiDuAn
/odata/LoaiHoSo
/odata/QuanLyHoSoDuAn
/odata/ChiTietDotDoDinhKy
/odata/DMQCVN
/odata/ChiTietQCVN
/odata/ChiTietDotTruyen
/odata/DotTruyenTongCuc

/QuanTrac/AQI_24Gio/?Id=<number>

### NGHIỆP VỤ CƠ BẢN

*   Vượt ngưỡng của từng loại ra sao?
*   VN_AQI là gì?

### TÀI KHOẢN:

*   admin/gdt@123#@!
*   sotnmt/gdt@123#@!
*   ccbvmt/gdt@123#@!
*   chuyenvienqt/gdt@123#@!
*   doanhnghiep1/gdt@123#@!', '', '2020-07-27 08:18:57+07', 10);
INSERT INTO public.wiki_contents VALUES (9, 9, 6, '1. [[Mô hình cơ bản]]
1. [[Liên kết tham khảo]]
1. [[Demo 20-08-2020]]', '', '2020-08-29 15:29:44+07', 6);
INSERT INTO public.wiki_contents VALUES (10, 10, 6, '# Liên kết tham khảo
## Công ty đấu giá
<https://daugiaso5.vn/>
<https://daugiavietnam.vn/>
<http://daugiabtn.com/gioi-thieu/>
<https://daugiadaiduonglong.com/>
<https://daugiaxuantruong.com/>

## Nghiệp vụ đấu giá
[DANH SÁCH CHỨC NĂNG](https://docs.google.com/spreadsheets/d/1_rbbVCf_rXEJqT_6Cnt3M6WLX6oXjDfprkDTFlQn90c)
<https://baodauthau.vn/ngay-15-8-2020-dau-gia-quyen-su-dung-dat-tai-thanh-pho-quy-nhon-tinh-binh-dinh-post93142.html>
<http://daugiabtn.com/thong-tu-452017tt-btc-quy-dinh-khung-thu-lao-dich-vu-dau-gia/>
<https://taisancong.vn/tsc/faces/lnk/ls/ls310>
<https://baodauthau.vn/lich-dau-gia/>
<https://baodauthau.vn/ngay-15-8-2020-dau-gia-quyen-su-dung-dat-tai-thanh-pho-quy-nhon-tinh-binh-dinh-post93142.html>
<https://vi.wikipedia.org/wiki/%C4%90%E1%BA%A5u_gi%C3%A1>
<https://thuvienphapluat.vn/van-ban/thuong-mai/Nghi-dinh-52-2013-ND-CP-thuong-mai-dien-tu-187901.aspx>
<https://stc.binhdinh.gov.vn/portal/Page/thong-tin-dau-gia-quyen-su-dung-dat>
<https://stc.binhdinh.gov.vn/DataFiles/files/daugiadat/1577.pdf>
<https://luattoanquoc.com/quy-trinh-chuc-cuoc-ban-dau-gia-quyen-su-dung-dat/>
<https://dip.vn/phan-mem-quan-ly-san-giao-dich-bat-dong-san-landsoft-sp28.html>
<https://dip.vn/phan-mem-quan-ly-bat-dong-san-sp29.html>
<https://kinhtechungkhoan.vn/dau-gia-quyen-su-dung-dat-tai-cao-bang-24016.html>
[Thông tin đấu giá - TaiSanCong.vn](https://taisancong.vn/tsc/faces/lnk/ls/ls310?_adf.ctrl-state=160q63ttg8_4&_afrLoop=29869183459757841&_afrWindowMode=0&_afrWindowId=null#%40%3F_afrWindowId%3Dnull%26_afrLoop%3D29869183459757841%26_afrWindowMode%3D0%26_adf.ctrl-state%3D9gk3456c7_37)
[Công ty Đấu giá Hợp danh Vicen thông báo đấu giá tài sản](https://taisancong.vn/tsc/faces/lnk/dt/chitietdaugia?id=TAISANCONGVN16036196&_adf.ctrl-state=9gk3456c7_4&_afrLoop=30298248931507841&_afrWindowMode=0&_afrWindowId=null#%40%3F_afrWindowId%3Dnull%26_afrLoop%3D30298248931507841%26id%3DTAISANCONGVN16036196%26_afrWindowMode%3D0%26_adf.ctrl-state%3Dtjv7bhat7_25)
[Quy định trả tiền cọc](https://luatminhkhue.vn/khong-trung-thau-dau-gia-quyen-su-dung-dat-co-duoc-tra-lai-tien-dat-coc-khong--.aspx)
<https://www.facebook.com/bandaugiabinhdinh/>

## Video đấu giá
<https://www.youtube.com/watch?v=ND7slRt5qWc>

## Kỹ thuật sử dụng
[Xử lý Excel](https://mvnrepository.com/artifact/org.apache.poi/poi)
[Xử lý PDF](https://mvnrepository.com/artifact/com.itextpdf/itextpdf)', '', '2020-08-05 14:01:54+07', 4);
INSERT INTO public.wiki_contents VALUES (11, 11, 6, '# Demo 20-08-2020
1. ko bat buoc:
	* hinh anh, 
	* thong tin them, 
	* ten ho so,
	* cong ty khong bat buoc nguoi dai dien
1. top 3 buoc gia cao nhat chu khong phai 5
1. tinh theo so buoc gia chu khong phai tinh theo nguoi, co the co 10 nguoi trong top 3 buoc gia
1. nhap so tien, tinh so buoc gia, hien 3 gia cao nhat
1. Nếu có 2 người cùng giá => bốc thăm
1. danh sach chieu, danh sach trung
1. sau khi dau xong tat ca cac lo hien thi ds trung 
1. Bấm nút két thúc đấu giá thì hiển thị danh sách hồ sơ đấu giá nằm tron top 3 bước giá cao nhất của vòng hiện tại
muốn dừng lúc nào thì dừng', '', '2020-08-21 08:13:29+07', 1);
INSERT INTO public.wiki_contents VALUES (12, 12, 6, '# Mô hình cơ bản
```
Phiên đấu giá => Tài sản đấu giá => Hồ sơ => Lịch sử trả giá
AuctionsOnline => AuctionsOnlineAsset => AuctionFile => AuctionsOnlineAssetBidHistory
```', '', '2020-08-29 15:30:09+07', 1);
INSERT INTO public.wiki_contents VALUES (13, 13, 12, '# API Odata
Danh Mục 
- odata/ChiTietQCVN : Chi tiết quy chuẩn Việt Nam
- odata/DMDiemQuanTrac : Danh mục điểm  quan trắc
 + DMDiemQuanTrac/ThemDiemQT: Thêm điểm quan trắc
 + DMDiemQuanTrac/CapNhatDiemQT: cập nhật điểm quan trắc
 + DMDiemQuanTrac/Tree: Tree
 + DMDiemQuanTrac/DanhSachTheoTrangThai: Danh sách theo dõi trạng thái
- odata/DMLoaiMoiTruong: Danh mục loại môi trường
- odata/DMLoaiQuanTrac : Danh mục loại quan trắc
- odata/DMQCVN: Danh mục quy chuẩn Việt Nam
- odata/DMThongSoDo: Danh mục thông số đo
- odata/DonViTinh: Đơn vị tính
- odata/LoaiDuAn: Loại dự án
- odata/LoaiHoSo: Loại hồ sơ
- odata/HANHCHINHXA: hành chính Xã
- odata/HANHCHINHHUYEN: hành chính Huyện
 + PhongXa/TimDiaDiemTheoThongSo?idThongSo=54 : Tìm các điểm quan trắc theo thông số
 + PhongXa/TimKiemTheoKhoang?id=54&tu=0.1&den=0.3 :Tìm các điểm quan trắc theo khoảng giá trị của thông số
 + PhongXa/ChiTietDoDinhKy?id=56 : Lấy thông tin đo định kỳ của điểm quan trắc
 + PhongXa/TimDiaDiemTheoNam?nam=2020 : Lấy thông tin điểm quan trắc đo trong năm
 + PhongXa/GiaTriCuoiTungThongSo?id=56 : Thông tin của điểm quan trắc tại đợt đo gần nhất.  
 + PhongXa/TimThongSoTheoNam?idThongSo=54&nam=2018 : Thông tin các điểm quan trắc có thông số đo theo năm. 
 + PhongXa/Tree?maDiem&tenDiem&loaiQTId=1 : Cây danh mục
- QuanLyVanBan/Attachment
{ 
AttachmentModel model = new AttachmentModel();
model.target_id = HttpContext.Current.Request["target_id"];
model.target_module = HttpContext.Current.Request["target_module"];
model.ma_tai_khoan = HttpContext.Current.Request["ma_tai_khoan"];
model.file = HttpContext.Current.Request.Files.Count > 0 ? HttpContext.Current.Request.Files[0] : null;
} 
- QuanLyVanBan/LuuVanBan
- QuanLyVanBan/Download



# Link webside: https://quantracphongxa.gdtsolutions.vn/
TK: test
MK: 123456
', '', '2020-09-11 09:06:26+07', 14);
INSERT INTO public.wiki_contents VALUES (14, 14, 41, 'Link trang web: https://quanlychungcu.gdtsolutions.vn/
api: https://api-quanlychungcu.gdtsolutions.vn


DonHang/TaoDonHang?PhieuId= :  API tạo mới đơn hàng.
SanPham/ThemSanPham :  API thêm sản phẩm.
SanPham/CapNhatSanPham : API cập nhật sản phẩm
SanPham/XoaSanPham?id= : API xóa sản phẩm
Phieus/TaoPhieu?max= :  API tạo phiếu theo số lượng
Phieus/KichHoatPhieu?max= : API kích hoạt số lượng phiếu tiếp theo.
Phieus/NapTien : API nạp tiền.
Report/BaoCaoSoDuThe : API báo cáo số dư thẻ
/Report/BCDTTheoDonHang?tuNgay=2020-09-15&denNgay=2020-09-17  : API Báo cáo danh thu theo đơn hàng  ', '', '2020-09-18 03:02:05+07', 3);
INSERT INTO public.wiki_contents VALUES (15, 15, 19, '# Wiki
Operational management:
odata/Departments
odata/ListPriorities
odata/ListRatings
odata/ListRequestTypes
odata/ListStaffs
odata/ListStatus
odata/Requests', '', '2020-10-12 13:27:24+07', 2);
INSERT INTO public.wiki_contents VALUES (16, 16, 19, '# Wiki
Operational management:
odata/Departments
odata/ListPriorities
odata/ListRatings
odata/ListRequestTypes
odata/ListStaffs
odata/ListStatus
odata/Requests

Type:
Complain
Repair

Status List:
New
MoreInfo
InProcess
Block
Complete
ConfirmOrder
WaitForPay
InDebt
Close

Priority:
Low
Medium
High
Critical', '', '2020-10-12 15:49:06+07', 1);
INSERT INTO public.wiki_contents VALUES (17, 17, 12, '# Swagger
   https://apibaocao.gdtsolutions.vn/swagger/ui/index#/
# Odata
   - odata/RP_Column
   - odata/RP_Report
   - odata/RP_Row
   - odata/RP_ReportTemplate
   - odata/RP_RowTemplate
   - odata/RP_ColumnTemplate
   - odata/DM_HanhChinh
   - odata/RP_Cell   
   - odata/RP_Field
   - odata/RP_ReportCategory', '', '2020-11-12 09:40:50+07', 5);
INSERT INTO public.wiki_contents VALUES (18, 18, 5, '# Swagger
   https://apibaocao.gdtsolutions.vn/swagger/ui/index#/

# Odata
   - odata/RP_Column
   - odata/RP_Report
   - odata/RP_Row
   - odata/RP_Report_Template
   - odata/RP_Row_Template
   - odata/RP_Column_Template
   - odata/RP_Report_Cell
   - odata/DM_HanhChinh
   - odata/RP_Cell   
   - odata/RP_Field
   - odata/RP_ReportCategory
   - odata/RP_AssignReport
   - odata/RP_ChiTietAssignReport
   - odata/RP_TemplateDetail
   - odata/RP_ReportCategory
   - 

# LINK WEB

- https://baocaostc.gdtsolutions.vn/
- https://apibaocaostc.gdtsolutions.vn
', '', '2020-12-21 08:32:37+07', 4);


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

INSERT INTO public.wiki_pages VALUES (1, 1, 'Wiki', '2020-03-23 13:37:18+07', false, NULL);
INSERT INTO public.wiki_pages VALUES (2, 10, 'Wiki', '2020-04-20 08:35:18+07', false, NULL);
INSERT INTO public.wiki_pages VALUES (3, 3, 'Wiki', '2020-05-12 14:13:45+07', false, NULL);
INSERT INTO public.wiki_pages VALUES (4, 8, 'Wiki', '2020-05-13 15:28:56+07', false, NULL);
INSERT INTO public.wiki_pages VALUES (6, 9, 'Wiki', '2020-05-18 13:52:25+07', false, NULL);
INSERT INTO public.wiki_pages VALUES (7, 4, 'Wiki', '2020-06-15 09:03:34+07', false, NULL);
INSERT INTO public.wiki_pages VALUES (8, 11, 'Wiki', '2020-07-09 14:51:04+07', false, NULL);
INSERT INTO public.wiki_pages VALUES (9, 28, 'Wiki', '2020-08-05 09:11:31+07', false, NULL);
INSERT INTO public.wiki_pages VALUES (10, 28, 'Liên_kết_tham_khảo', '2020-08-05 09:12:23+07', false, 9);
INSERT INTO public.wiki_pages VALUES (11, 28, 'Demo_20-08-2020', '2020-08-21 08:13:29+07', false, 9);
INSERT INTO public.wiki_pages VALUES (12, 28, 'Mô_hình_cơ_bản', '2020-08-29 15:30:09+07', false, 9);
INSERT INTO public.wiki_pages VALUES (13, 45, 'Wiki', '2020-09-04 10:33:29+07', false, NULL);
INSERT INTO public.wiki_pages VALUES (14, 46, 'Wiki', '2020-09-11 16:43:39+07', false, NULL);
INSERT INTO public.wiki_pages VALUES (15, 47, 'Wiki', '2020-10-12 13:24:03+07', false, NULL);
INSERT INTO public.wiki_pages VALUES (16, 51, 'Wiki', '2020-10-12 15:49:06+07', false, NULL);
INSERT INTO public.wiki_pages VALUES (17, 55, 'Wiki', '2020-11-09 09:24:59+07', false, NULL);
INSERT INTO public.wiki_pages VALUES (18, 42, 'Wiki', '2020-11-14 10:05:31+07', false, NULL);


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



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

INSERT INTO public.wikis VALUES (1, 1, 'Wiki', 1);
INSERT INTO public.wikis VALUES (2, 2, 'Wiki', 1);
INSERT INTO public.wikis VALUES (3, 3, 'Wiki', 1);
INSERT INTO public.wikis VALUES (4, 4, 'Wiki', 1);
INSERT INTO public.wikis VALUES (5, 5, 'Wiki', 1);
INSERT INTO public.wikis VALUES (6, 6, 'Wiki', 1);
INSERT INTO public.wikis VALUES (7, 7, 'Wiki', 1);
INSERT INTO public.wikis VALUES (8, 8, 'Wiki', 1);
INSERT INTO public.wikis VALUES (9, 9, 'Wiki', 1);
INSERT INTO public.wikis VALUES (10, 10, 'Wiki', 1);
INSERT INTO public.wikis VALUES (11, 11, 'Wiki', 1);
INSERT INTO public.wikis VALUES (12, 12, 'Wiki', 1);
INSERT INTO public.wikis VALUES (13, 13, 'Wiki', 1);
INSERT INTO public.wikis VALUES (14, 14, 'Wiki', 1);
INSERT INTO public.wikis VALUES (15, 15, 'Wiki', 1);
INSERT INTO public.wikis VALUES (16, 16, 'Wiki', 1);
INSERT INTO public.wikis VALUES (17, 17, 'Wiki', 1);
INSERT INTO public.wikis VALUES (18, 18, 'Wiki', 1);
INSERT INTO public.wikis VALUES (19, 19, 'Wiki', 1);
INSERT INTO public.wikis VALUES (20, 20, 'Wiki', 1);
INSERT INTO public.wikis VALUES (21, 21, 'Wiki', 1);
INSERT INTO public.wikis VALUES (22, 22, 'Wiki', 1);
INSERT INTO public.wikis VALUES (23, 23, 'Wiki', 1);
INSERT INTO public.wikis VALUES (24, 24, 'Wiki', 1);
INSERT INTO public.wikis VALUES (25, 25, 'Wiki', 1);
INSERT INTO public.wikis VALUES (26, 26, 'Wiki', 1);
INSERT INTO public.wikis VALUES (27, 27, 'Wiki', 1);
INSERT INTO public.wikis VALUES (28, 28, 'Wiki', 1);
INSERT INTO public.wikis VALUES (29, 29, 'Wiki', 1);
INSERT INTO public.wikis VALUES (30, 30, 'Wiki', 1);
INSERT INTO public.wikis VALUES (31, 31, 'Wiki', 1);
INSERT INTO public.wikis VALUES (32, 32, 'Wiki', 1);
INSERT INTO public.wikis VALUES (33, 33, 'Wiki', 1);
INSERT INTO public.wikis VALUES (34, 34, 'Wiki', 1);
INSERT INTO public.wikis VALUES (35, 35, 'Wiki', 1);
INSERT INTO public.wikis VALUES (36, 36, 'Wiki', 1);
INSERT INTO public.wikis VALUES (37, 37, 'Wiki', 1);
INSERT INTO public.wikis VALUES (38, 38, 'Wiki', 1);
INSERT INTO public.wikis VALUES (39, 39, 'Wiki', 1);
INSERT INTO public.wikis VALUES (40, 40, 'Wiki', 1);
INSERT INTO public.wikis VALUES (41, 41, 'Wiki', 1);
INSERT INTO public.wikis VALUES (42, 42, 'Wiki', 1);
INSERT INTO public.wikis VALUES (43, 43, 'Wiki', 1);
INSERT INTO public.wikis VALUES (44, 44, 'Wiki', 1);
INSERT INTO public.wikis VALUES (45, 45, 'Wiki', 1);
INSERT INTO public.wikis VALUES (46, 46, 'Wiki', 1);
INSERT INTO public.wikis VALUES (47, 47, 'Wiki', 1);
INSERT INTO public.wikis VALUES (48, 48, 'Wiki', 1);
INSERT INTO public.wikis VALUES (49, 49, 'Wiki', 1);
INSERT INTO public.wikis VALUES (50, 50, 'Wiki', 1);
INSERT INTO public.wikis VALUES (51, 51, 'Wiki', 1);
INSERT INTO public.wikis VALUES (52, 52, 'Wiki', 1);
INSERT INTO public.wikis VALUES (53, 53, 'Wiki', 1);
INSERT INTO public.wikis VALUES (54, 54, 'Wiki', 1);
INSERT INTO public.wikis VALUES (55, 55, 'Wiki', 1);
INSERT INTO public.wikis VALUES (56, 56, 'Wiki', 1);
INSERT INTO public.wikis VALUES (57, 57, 'Wiki', 1);
INSERT INTO public.wikis VALUES (59, 59, 'Wiki', 1);
INSERT INTO public.wikis VALUES (61, 61, 'Wiki', 1);
INSERT INTO public.wikis VALUES (62, 62, 'Wiki', 1);
INSERT INTO public.wikis VALUES (63, 63, 'Wiki', 1);
INSERT INTO public.wikis VALUES (64, 64, 'Wiki', 1);
INSERT INTO public.wikis VALUES (65, 65, 'Wiki', 1);
INSERT INTO public.wikis VALUES (66, 66, 'Wiki', 1);
INSERT INTO public.wikis VALUES (67, 67, 'Wiki', 1);
INSERT INTO public.wikis VALUES (68, 68, 'Wiki', 1);
INSERT INTO public.wikis VALUES (69, 69, 'Wiki', 1);
INSERT INTO public.wikis VALUES (70, 70, 'Wiki', 1);
INSERT INTO public.wikis VALUES (71, 71, 'Wiki', 1);
INSERT INTO public.wikis VALUES (72, 72, 'Wiki', 1);
INSERT INTO public.wikis VALUES (73, 73, 'Wiki', 1);
INSERT INTO public.wikis VALUES (74, 74, 'Wiki', 1);
INSERT INTO public.wikis VALUES (75, 75, 'Wiki', 1);


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

INSERT INTO public.workflows VALUES (1, 1, 1, 2, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (2, 1, 1, 3, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (3, 1, 1, 4, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (4, 1, 1, 5, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (5, 1, 1, 6, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (6, 1, 2, 1, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (7, 1, 2, 3, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (8, 1, 2, 4, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (9, 1, 2, 5, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (10, 1, 2, 6, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (11, 1, 3, 1, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (12, 1, 3, 2, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (13, 1, 3, 4, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (14, 1, 3, 5, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (15, 1, 3, 6, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (16, 1, 4, 1, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (17, 1, 4, 2, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (18, 1, 4, 3, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (19, 1, 4, 5, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (20, 1, 4, 6, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (21, 1, 5, 1, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (22, 1, 5, 2, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (23, 1, 5, 3, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (24, 1, 5, 4, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (25, 1, 5, 6, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (26, 1, 6, 1, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (27, 1, 6, 2, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (28, 1, 6, 3, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (29, 1, 6, 4, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (30, 1, 6, 5, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (31, 2, 1, 2, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (32, 2, 1, 3, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (33, 2, 1, 4, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (34, 2, 1, 5, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (35, 2, 1, 6, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (36, 2, 2, 1, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (37, 2, 2, 3, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (38, 2, 2, 4, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (39, 2, 2, 5, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (40, 2, 2, 6, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (41, 2, 3, 1, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (42, 2, 3, 2, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (43, 2, 3, 4, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (44, 2, 3, 5, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (45, 2, 3, 6, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (46, 2, 4, 1, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (47, 2, 4, 2, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (48, 2, 4, 3, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (49, 2, 4, 5, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (50, 2, 4, 6, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (51, 2, 5, 1, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (52, 2, 5, 2, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (53, 2, 5, 3, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (54, 2, 5, 4, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (55, 2, 5, 6, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (56, 2, 6, 1, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (57, 2, 6, 2, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (58, 2, 6, 3, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (59, 2, 6, 4, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (60, 2, 6, 5, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (61, 3, 1, 2, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (62, 3, 1, 3, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (63, 3, 1, 4, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (64, 3, 1, 5, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (65, 3, 1, 6, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (66, 3, 2, 1, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (67, 3, 2, 3, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (68, 3, 2, 4, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (69, 3, 2, 5, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (70, 3, 2, 6, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (71, 3, 3, 1, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (72, 3, 3, 2, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (73, 3, 3, 4, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (74, 3, 3, 5, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (75, 3, 3, 6, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (76, 3, 4, 1, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (77, 3, 4, 2, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (78, 3, 4, 3, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (79, 3, 4, 5, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (80, 3, 4, 6, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (81, 3, 5, 1, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (82, 3, 5, 2, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (83, 3, 5, 3, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (84, 3, 5, 4, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (85, 3, 5, 6, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (86, 3, 6, 1, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (87, 3, 6, 2, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (88, 3, 6, 3, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (89, 3, 6, 4, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (90, 3, 6, 5, 3, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (91, 1, 1, 2, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (92, 1, 1, 3, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (93, 1, 1, 4, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (94, 1, 1, 5, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (95, 1, 2, 3, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (96, 1, 2, 4, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (97, 1, 2, 5, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (98, 1, 3, 2, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (99, 1, 3, 4, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (100, 1, 3, 5, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (101, 1, 4, 2, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (102, 1, 4, 3, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (103, 1, 4, 5, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (104, 2, 1, 2, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (105, 2, 1, 3, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (106, 2, 1, 4, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (107, 2, 1, 5, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (108, 2, 2, 3, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (109, 2, 2, 4, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (110, 2, 2, 5, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (111, 2, 3, 2, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (112, 2, 3, 4, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (113, 2, 3, 5, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (114, 2, 4, 2, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (115, 2, 4, 3, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (116, 2, 4, 5, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (117, 3, 1, 2, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (118, 3, 1, 3, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (119, 3, 1, 4, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (120, 3, 1, 5, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (121, 3, 2, 3, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (122, 3, 2, 4, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (123, 3, 2, 5, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (124, 3, 3, 2, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (125, 3, 3, 4, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (126, 3, 3, 5, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (127, 3, 4, 2, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (128, 3, 4, 3, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (129, 3, 4, 5, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (130, 1, 1, 5, 5, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (131, 1, 2, 5, 5, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (132, 1, 3, 5, 5, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (133, 1, 4, 5, 5, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (134, 1, 3, 4, 5, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (135, 2, 1, 5, 5, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (136, 2, 2, 5, 5, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (137, 2, 3, 5, 5, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (138, 2, 4, 5, 5, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (139, 2, 3, 4, 5, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (140, 3, 1, 5, 5, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (141, 3, 2, 5, 5, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (142, 3, 3, 5, 5, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (143, 3, 4, 5, 5, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (144, 3, 3, 4, 5, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (145, 1, 1, 0, 6, false, false, 'WorkflowPermission', 'project_id', 'readonly');
INSERT INTO public.workflows VALUES (146, 2, 1, 0, 6, false, false, 'WorkflowPermission', 'project_id', 'readonly');
INSERT INTO public.workflows VALUES (147, 3, 1, 0, 6, false, false, 'WorkflowPermission', 'project_id', 'readonly');
INSERT INTO public.workflows VALUES (148, 1, 1, 0, 6, false, false, 'WorkflowPermission', 'tracker_id', 'readonly');
INSERT INTO public.workflows VALUES (149, 2, 1, 0, 6, false, false, 'WorkflowPermission', 'tracker_id', 'readonly');
INSERT INTO public.workflows VALUES (150, 3, 1, 0, 6, false, false, 'WorkflowPermission', 'tracker_id', 'readonly');
INSERT INTO public.workflows VALUES (151, 1, 1, 0, 6, false, false, 'WorkflowPermission', 'done_ratio', 'required');
INSERT INTO public.workflows VALUES (152, 2, 1, 0, 6, false, false, 'WorkflowPermission', 'done_ratio', 'required');
INSERT INTO public.workflows VALUES (153, 3, 1, 0, 6, false, false, 'WorkflowPermission', 'done_ratio', 'required');
INSERT INTO public.workflows VALUES (154, 1, 2, 0, 6, false, false, 'WorkflowPermission', 'project_id', 'readonly');
INSERT INTO public.workflows VALUES (155, 2, 2, 0, 6, false, false, 'WorkflowPermission', 'project_id', 'readonly');
INSERT INTO public.workflows VALUES (156, 3, 2, 0, 6, false, false, 'WorkflowPermission', 'project_id', 'readonly');
INSERT INTO public.workflows VALUES (157, 1, 2, 0, 6, false, false, 'WorkflowPermission', 'tracker_id', 'readonly');
INSERT INTO public.workflows VALUES (158, 2, 2, 0, 6, false, false, 'WorkflowPermission', 'tracker_id', 'readonly');
INSERT INTO public.workflows VALUES (159, 3, 2, 0, 6, false, false, 'WorkflowPermission', 'tracker_id', 'readonly');
INSERT INTO public.workflows VALUES (160, 1, 2, 0, 6, false, false, 'WorkflowPermission', 'done_ratio', 'required');
INSERT INTO public.workflows VALUES (161, 2, 2, 0, 6, false, false, 'WorkflowPermission', 'done_ratio', 'required');
INSERT INTO public.workflows VALUES (162, 3, 2, 0, 6, false, false, 'WorkflowPermission', 'done_ratio', 'required');
INSERT INTO public.workflows VALUES (163, 1, 3, 0, 6, false, false, 'WorkflowPermission', 'project_id', 'readonly');
INSERT INTO public.workflows VALUES (164, 2, 3, 0, 6, false, false, 'WorkflowPermission', 'project_id', 'readonly');
INSERT INTO public.workflows VALUES (165, 3, 3, 0, 6, false, false, 'WorkflowPermission', 'project_id', 'readonly');
INSERT INTO public.workflows VALUES (166, 1, 3, 0, 6, false, false, 'WorkflowPermission', 'tracker_id', 'readonly');
INSERT INTO public.workflows VALUES (167, 2, 3, 0, 6, false, false, 'WorkflowPermission', 'tracker_id', 'readonly');
INSERT INTO public.workflows VALUES (168, 3, 3, 0, 6, false, false, 'WorkflowPermission', 'tracker_id', 'readonly');
INSERT INTO public.workflows VALUES (169, 1, 3, 0, 6, false, false, 'WorkflowPermission', 'done_ratio', 'required');
INSERT INTO public.workflows VALUES (170, 2, 3, 0, 6, false, false, 'WorkflowPermission', 'done_ratio', 'required');
INSERT INTO public.workflows VALUES (171, 3, 3, 0, 6, false, false, 'WorkflowPermission', 'done_ratio', 'required');
INSERT INTO public.workflows VALUES (172, 1, 4, 0, 6, false, false, 'WorkflowPermission', 'tracker_id', 'readonly');
INSERT INTO public.workflows VALUES (173, 2, 4, 0, 6, false, false, 'WorkflowPermission', 'tracker_id', 'readonly');
INSERT INTO public.workflows VALUES (174, 3, 4, 0, 6, false, false, 'WorkflowPermission', 'tracker_id', 'readonly');
INSERT INTO public.workflows VALUES (175, 1, 4, 0, 6, false, false, 'WorkflowPermission', 'done_ratio', 'required');
INSERT INTO public.workflows VALUES (176, 2, 4, 0, 6, false, false, 'WorkflowPermission', 'done_ratio', 'required');
INSERT INTO public.workflows VALUES (177, 3, 4, 0, 6, false, false, 'WorkflowPermission', 'done_ratio', 'required');
INSERT INTO public.workflows VALUES (178, 1, 5, 0, 6, false, false, 'WorkflowPermission', 'project_id', 'readonly');
INSERT INTO public.workflows VALUES (179, 2, 5, 0, 6, false, false, 'WorkflowPermission', 'project_id', 'readonly');
INSERT INTO public.workflows VALUES (180, 3, 5, 0, 6, false, false, 'WorkflowPermission', 'project_id', 'readonly');
INSERT INTO public.workflows VALUES (181, 1, 5, 0, 6, false, false, 'WorkflowPermission', 'tracker_id', 'readonly');
INSERT INTO public.workflows VALUES (182, 2, 5, 0, 6, false, false, 'WorkflowPermission', 'tracker_id', 'readonly');
INSERT INTO public.workflows VALUES (183, 3, 5, 0, 6, false, false, 'WorkflowPermission', 'tracker_id', 'readonly');
INSERT INTO public.workflows VALUES (184, 1, 5, 0, 6, false, false, 'WorkflowPermission', 'done_ratio', 'required');
INSERT INTO public.workflows VALUES (185, 2, 5, 0, 6, false, false, 'WorkflowPermission', 'done_ratio', 'required');
INSERT INTO public.workflows VALUES (186, 3, 5, 0, 6, false, false, 'WorkflowPermission', 'done_ratio', 'required');
INSERT INTO public.workflows VALUES (187, 1, 6, 0, 6, false, false, 'WorkflowPermission', 'done_ratio', 'required');
INSERT INTO public.workflows VALUES (188, 2, 6, 0, 6, false, false, 'WorkflowPermission', 'done_ratio', 'required');
INSERT INTO public.workflows VALUES (189, 3, 6, 0, 6, false, false, 'WorkflowPermission', 'done_ratio', 'required');
INSERT INTO public.workflows VALUES (190, 4, 1, 2, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (191, 4, 1, 3, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (192, 4, 1, 4, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (193, 4, 1, 5, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (194, 4, 2, 3, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (195, 4, 2, 4, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (196, 4, 2, 5, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (197, 4, 3, 2, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (198, 4, 3, 4, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (199, 4, 3, 5, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (200, 4, 4, 2, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (201, 4, 4, 3, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (202, 4, 4, 5, 4, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (203, 1, 1, 5, 8, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (204, 1, 2, 5, 8, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (205, 1, 3, 5, 8, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (206, 1, 3, 4, 8, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (207, 1, 4, 5, 8, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (210, 2, 1, 5, 8, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (211, 2, 2, 5, 8, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (212, 2, 3, 5, 8, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (213, 2, 3, 4, 8, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (214, 2, 4, 5, 8, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (217, 3, 1, 5, 8, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (218, 3, 2, 5, 8, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (219, 3, 3, 5, 8, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (220, 3, 3, 4, 8, false, false, 'WorkflowTransition', NULL, NULL);
INSERT INTO public.workflows VALUES (221, 3, 4, 5, 8, false, false, 'WorkflowTransition', NULL, NULL);


--
-- Name: agile_colors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.agile_colors_id_seq', 1, true);


--
-- Name: agile_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.agile_data_id_seq', 3542, true);


--
-- Name: agile_sprints_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.agile_sprints_id_seq', 1, true);


--
-- Name: attachments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.attachments_id_seq', 225, true);


--
-- Name: auth_sources_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.auth_sources_id_seq', 1, true);


--
-- Name: boards_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.boards_id_seq', 1, true);


--
-- Name: changes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.changes_id_seq', 1, true);


--
-- Name: changesets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.changesets_id_seq', 1, true);


--
-- Name: checklist_template_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.checklist_template_categories_id_seq', 1, true);


--
-- Name: checklist_templates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.checklist_templates_id_seq', 1, true);


--
-- Name: checklists_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.checklists_id_seq', 76, true);


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

SELECT pg_catalog.setval('public.comments_id_seq', 1, true);


--
-- Name: custom_field_enumerations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.custom_field_enumerations_id_seq', 1, true);


--
-- Name: custom_fields_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.custom_fields_id_seq', 1, true);


--
-- Name: custom_values_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.custom_values_id_seq', 1, true);


--
-- Name: dayoffs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.dayoffs_id_seq', 1, false);


--
-- Name: departments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.departments_id_seq', 1, false);


--
-- Name: documents_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.documents_id_seq', 45, true);


--
-- Name: drive_entries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.drive_entries_id_seq', 1, true);


--
-- Name: email_addresses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.email_addresses_id_seq', 59, true);


--
-- Name: enabled_modules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.enabled_modules_id_seq', 828, true);


--
-- Name: enumerations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.enumerations_id_seq', 10, true);


--
-- Name: import_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.import_items_id_seq', 1, true);


--
-- Name: imports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.imports_id_seq', 1, true);


--
-- Name: issue_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.issue_categories_id_seq', 32, true);


--
-- Name: issue_drive_files_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.issue_drive_files_id_seq', 1, true);


--
-- Name: issue_relations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.issue_relations_id_seq', 11, true);


--
-- Name: issue_statuses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.issue_statuses_id_seq', 6, true);


--
-- Name: issues_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.issues_id_seq', 4587, true);


--
-- Name: journal_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.journal_details_id_seq', 21150, true);


--
-- Name: journals_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.journals_id_seq', 15799, true);


--
-- Name: leave_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.leave_types_id_seq', 1, false);


--
-- Name: member_roles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.member_roles_id_seq', 782, true);


--
-- Name: members_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.members_id_seq', 560, true);


--
-- Name: messages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.messages_id_seq', 1, true);


--
-- Name: news_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.news_id_seq', 2, true);


--
-- Name: people_announcements_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.people_announcements_id_seq', 1, false);


--
-- Name: people_holidays_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.people_holidays_id_seq', 1, false);


--
-- Name: people_information_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.people_information_user_id_seq', 1, false);


--
-- Name: people_work_experiences_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.people_work_experiences_id_seq', 1, false);


--
-- Name: projects_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.projects_id_seq', 76, true);


--
-- Name: queries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.queries_id_seq', 15, true);


--
-- Name: repositories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.repositories_id_seq', 1, true);


--
-- Name: rich_rich_files_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.rich_rich_files_id_seq', 1, true);


--
-- Name: roles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.roles_id_seq', 8, true);


--
-- Name: settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.settings_id_seq', 85, true);


--
-- Name: taggings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.taggings_id_seq', 1, true);


--
-- Name: tags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.tags_id_seq', 1, true);


--
-- Name: theme_changer_user_settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.theme_changer_user_settings_id_seq', 22, true);


--
-- Name: time_entries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.time_entries_id_seq', 47, true);


--
-- Name: tokens_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.tokens_id_seq', 3894, true);


--
-- Name: trackers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.trackers_id_seq', 6, true);


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

SELECT pg_catalog.setval('public.user_preferences_id_seq', 2624, true);


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

SELECT pg_catalog.setval('public.users_id_seq', 57, true);


--
-- Name: versions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.versions_id_seq', 166, true);


--
-- Name: viewings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.viewings_id_seq', 1, true);


--
-- Name: watchers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.watchers_id_seq', 1030, true);


--
-- Name: wiki_content_versions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.wiki_content_versions_id_seq', 86, true);


--
-- Name: wiki_contents_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.wiki_contents_id_seq', 18, true);


--
-- Name: wiki_pages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.wiki_pages_id_seq', 18, true);


--
-- Name: wiki_redirects_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.wiki_redirects_id_seq', 1, true);


--
-- Name: wikis_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.wikis_id_seq', 75, true);


--
-- Name: workflows_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.workflows_id_seq', 221, true);


--
-- Name: dayoffs dayoffs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.dayoffs
    ADD CONSTRAINT dayoffs_pkey PRIMARY KEY (id);


--
-- Name: departments departments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.departments
    ADD CONSTRAINT departments_pkey PRIMARY KEY (id);


--
-- Name: agile_colors idx_37704_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.agile_colors
    ADD CONSTRAINT idx_37704_primary PRIMARY KEY (id);


--
-- Name: agile_data idx_37713_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.agile_data
    ADD CONSTRAINT idx_37713_primary PRIMARY KEY (id);


--
-- Name: agile_sprints idx_37718_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.agile_sprints
    ADD CONSTRAINT idx_37718_primary PRIMARY KEY (id);


--
-- Name: ar_internal_metadata idx_37726_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ar_internal_metadata
    ADD CONSTRAINT idx_37726_primary PRIMARY KEY (key);


--
-- Name: attachments idx_37733_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.attachments
    ADD CONSTRAINT idx_37733_primary PRIMARY KEY (id);


--
-- Name: auth_sources idx_37750_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.auth_sources
    ADD CONSTRAINT idx_37750_primary PRIMARY KEY (id);


--
-- Name: boards idx_37770_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.boards
    ADD CONSTRAINT idx_37770_primary PRIMARY KEY (id);


--
-- Name: changes idx_37781_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.changes
    ADD CONSTRAINT idx_37781_primary PRIMARY KEY (id);


--
-- Name: changesets idx_37792_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.changesets
    ADD CONSTRAINT idx_37792_primary PRIMARY KEY (id);


--
-- Name: checklists idx_37807_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.checklists
    ADD CONSTRAINT idx_37807_primary PRIMARY KEY (id);


--
-- Name: checklist_templates idx_37818_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.checklist_templates
    ADD CONSTRAINT idx_37818_primary PRIMARY KEY (id);


--
-- Name: checklist_template_categories idx_37827_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.checklist_template_categories
    ADD CONSTRAINT idx_37827_primary PRIMARY KEY (id);


--
-- Name: comments idx_37834_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.comments
    ADD CONSTRAINT idx_37834_primary PRIMARY KEY (id);


--
-- Name: custom_fields idx_37844_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.custom_fields
    ADD CONSTRAINT idx_37844_primary PRIMARY KEY (id);


--
-- Name: custom_field_enumerations idx_37875_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.custom_field_enumerations
    ADD CONSTRAINT idx_37875_primary PRIMARY KEY (id);


--
-- Name: custom_values idx_37882_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.custom_values
    ADD CONSTRAINT idx_37882_primary PRIMARY KEY (id);


--
-- Name: documents idx_37892_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.documents
    ADD CONSTRAINT idx_37892_primary PRIMARY KEY (id);


--
-- Name: drive_entries idx_37902_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.drive_entries
    ADD CONSTRAINT idx_37902_primary PRIMARY KEY (id);


--
-- Name: email_addresses idx_37914_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.email_addresses
    ADD CONSTRAINT idx_37914_primary PRIMARY KEY (id);


--
-- Name: enabled_modules idx_37921_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.enabled_modules
    ADD CONSTRAINT idx_37921_primary PRIMARY KEY (id);


--
-- Name: enumerations idx_37926_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.enumerations
    ADD CONSTRAINT idx_37926_primary PRIMARY KEY (id);


--
-- Name: imports idx_37939_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.imports
    ADD CONSTRAINT idx_37939_primary PRIMARY KEY (id);


--
-- Name: import_items idx_37949_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.import_items
    ADD CONSTRAINT idx_37949_primary PRIMARY KEY (id);


--
-- Name: issues idx_37957_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.issues
    ADD CONSTRAINT idx_37957_primary PRIMARY KEY (id);


--
-- Name: issue_categories idx_37968_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.issue_categories
    ADD CONSTRAINT idx_37968_primary PRIMARY KEY (id);


--
-- Name: issue_drive_files idx_37975_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.issue_drive_files
    ADD CONSTRAINT idx_37975_primary PRIMARY KEY (id);


--
-- Name: issue_relations idx_37980_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.issue_relations
    ADD CONSTRAINT idx_37980_primary PRIMARY KEY (id);


--
-- Name: issue_statuses idx_37986_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.issue_statuses
    ADD CONSTRAINT idx_37986_primary PRIMARY KEY (id);


--
-- Name: journals idx_37993_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.journals
    ADD CONSTRAINT idx_37993_primary PRIMARY KEY (id);


--
-- Name: journal_details idx_38004_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.journal_details
    ADD CONSTRAINT idx_38004_primary PRIMARY KEY (id);


--
-- Name: members idx_38014_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.members
    ADD CONSTRAINT idx_38014_primary PRIMARY KEY (id);


--
-- Name: member_roles idx_38022_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.member_roles
    ADD CONSTRAINT idx_38022_primary PRIMARY KEY (id);


--
-- Name: messages idx_38027_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.messages
    ADD CONSTRAINT idx_38027_primary PRIMARY KEY (id);


--
-- Name: news idx_38038_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.news
    ADD CONSTRAINT idx_38038_primary PRIMARY KEY (id);


--
-- Name: projects idx_38066_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.projects
    ADD CONSTRAINT idx_38066_primary PRIMARY KEY (id);


--
-- Name: queries idx_38084_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.queries
    ADD CONSTRAINT idx_38084_primary PRIMARY KEY (id);


--
-- Name: repositories idx_38099_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.repositories
    ADD CONSTRAINT idx_38099_primary PRIMARY KEY (id);


--
-- Name: rich_rich_files idx_38116_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.rich_rich_files
    ADD CONSTRAINT idx_38116_primary PRIMARY KEY (id);


--
-- Name: roles idx_38127_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.roles
    ADD CONSTRAINT idx_38127_primary PRIMARY KEY (id);


--
-- Name: schema_migrations idx_38143_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.schema_migrations
    ADD CONSTRAINT idx_38143_primary PRIMARY KEY (version);


--
-- Name: settings idx_38147_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.settings
    ADD CONSTRAINT idx_38147_primary PRIMARY KEY (id);


--
-- Name: taggings idx_38155_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.taggings
    ADD CONSTRAINT idx_38155_primary PRIMARY KEY (id);


--
-- Name: tags idx_38161_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.tags
    ADD CONSTRAINT idx_38161_primary PRIMARY KEY (id);


--
-- Name: theme_changer_user_settings idx_38167_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.theme_changer_user_settings
    ADD CONSTRAINT idx_38167_primary PRIMARY KEY (id);


--
-- Name: time_entries idx_38173_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.time_entries
    ADD CONSTRAINT idx_38173_primary PRIMARY KEY (id);


--
-- Name: tokens idx_38181_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.tokens
    ADD CONSTRAINT idx_38181_primary PRIMARY KEY (id);


--
-- Name: trackers idx_38189_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.trackers
    ADD CONSTRAINT idx_38189_primary PRIMARY KEY (id);


--
-- Name: users idx_38199_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.users
    ADD CONSTRAINT idx_38199_primary PRIMARY KEY (id);


--
-- Name: user_preferences idx_38220_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_preferences
    ADD CONSTRAINT idx_38220_primary PRIMARY KEY (id);


--
-- Name: versions idx_38230_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.versions
    ADD CONSTRAINT idx_38230_primary PRIMARY KEY (id);


--
-- Name: viewings idx_38243_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.viewings
    ADD CONSTRAINT idx_38243_primary PRIMARY KEY (id);


--
-- Name: watchers idx_38250_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.watchers
    ADD CONSTRAINT idx_38250_primary PRIMARY KEY (id);


--
-- Name: wikis idx_38257_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.wikis
    ADD CONSTRAINT idx_38257_primary PRIMARY KEY (id);


--
-- Name: wiki_contents idx_38263_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.wiki_contents
    ADD CONSTRAINT idx_38263_primary PRIMARY KEY (id);


--
-- Name: wiki_content_versions idx_38271_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.wiki_content_versions
    ADD CONSTRAINT idx_38271_primary PRIMARY KEY (id);


--
-- Name: wiki_pages idx_38280_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.wiki_pages
    ADD CONSTRAINT idx_38280_primary PRIMARY KEY (id);


--
-- Name: wiki_redirects idx_38286_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.wiki_redirects
    ADD CONSTRAINT idx_38286_primary PRIMARY KEY (id);


--
-- Name: workflows idx_38295_primary; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.workflows
    ADD CONSTRAINT idx_38295_primary PRIMARY KEY (id);


--
-- Name: leave_types leave_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.leave_types
    ADD CONSTRAINT leave_types_pkey PRIMARY KEY (id);


--
-- Name: people_announcements people_announcements_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.people_announcements
    ADD CONSTRAINT people_announcements_pkey PRIMARY KEY (id);


--
-- Name: people_holidays people_holidays_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.people_holidays
    ADD CONSTRAINT people_holidays_pkey PRIMARY KEY (id);


--
-- Name: people_information people_information_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.people_information
    ADD CONSTRAINT people_information_pkey PRIMARY KEY (user_id);


--
-- Name: people_work_experiences people_work_experiences_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.people_work_experiences
    ADD CONSTRAINT people_work_experiences_pkey PRIMARY KEY (id);


--
-- Name: idx_37704_index_agile_colors_on_container_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37704_index_agile_colors_on_container_id ON public.agile_colors USING btree (container_id);


--
-- Name: idx_37704_index_agile_colors_on_container_type; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37704_index_agile_colors_on_container_type ON public.agile_colors USING btree (container_type);


--
-- Name: idx_37713_index_agile_data_on_issue_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37713_index_agile_data_on_issue_id ON public.agile_data USING btree (issue_id);


--
-- Name: idx_37713_index_agile_data_on_position; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37713_index_agile_data_on_position ON public.agile_data USING btree ("position");


--
-- Name: idx_37733_index_attachments_on_author_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37733_index_attachments_on_author_id ON public.attachments USING btree (author_id);


--
-- Name: idx_37733_index_attachments_on_container_id_and_container_type; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37733_index_attachments_on_container_id_and_container_type ON public.attachments USING btree (container_id, container_type);


--
-- Name: idx_37733_index_attachments_on_created_on; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37733_index_attachments_on_created_on ON public.attachments USING btree (created_on);


--
-- Name: idx_37733_index_attachments_on_disk_filename; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37733_index_attachments_on_disk_filename ON public.attachments USING btree (disk_filename);


--
-- Name: idx_37750_index_auth_sources_on_id_and_type; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37750_index_auth_sources_on_id_and_type ON public.auth_sources USING btree (id, type);


--
-- Name: idx_37770_boards_project_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37770_boards_project_id ON public.boards USING btree (project_id);


--
-- Name: idx_37770_index_boards_on_last_message_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37770_index_boards_on_last_message_id ON public.boards USING btree (last_message_id);


--
-- Name: idx_37781_changesets_changeset_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37781_changesets_changeset_id ON public.changes USING btree (changeset_id);


--
-- Name: idx_37792_changesets_repos_rev; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX idx_37792_changesets_repos_rev ON public.changesets USING btree (repository_id, revision);


--
-- Name: idx_37792_changesets_repos_scmid; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37792_changesets_repos_scmid ON public.changesets USING btree (repository_id, scmid);


--
-- Name: idx_37792_index_changesets_on_committed_on; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37792_index_changesets_on_committed_on ON public.changesets USING btree (committed_on);


--
-- Name: idx_37792_index_changesets_on_repository_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37792_index_changesets_on_repository_id ON public.changesets USING btree (repository_id);


--
-- Name: idx_37792_index_changesets_on_user_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37792_index_changesets_on_user_id ON public.changesets USING btree (user_id);


--
-- Name: idx_37800_changesets_issues_ids; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX idx_37800_changesets_issues_ids ON public.changesets_issues USING btree (changeset_id, issue_id);


--
-- Name: idx_37800_index_changesets_issues_on_issue_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37800_index_changesets_issues_on_issue_id ON public.changesets_issues USING btree (issue_id);


--
-- Name: idx_37803_changeset_parents_changeset_ids; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37803_changeset_parents_changeset_ids ON public.changeset_parents USING btree (changeset_id);


--
-- Name: idx_37803_changeset_parents_parent_ids; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37803_changeset_parents_parent_ids ON public.changeset_parents USING btree (parent_id);


--
-- Name: idx_37818_index_checklist_templates_on_tracker_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37818_index_checklist_templates_on_tracker_id ON public.checklist_templates USING btree (tracker_id);


--
-- Name: idx_37834_index_comments_on_author_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37834_index_comments_on_author_id ON public.comments USING btree (author_id);


--
-- Name: idx_37834_index_comments_on_commented_id_and_commented_type; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37834_index_comments_on_commented_id_and_commented_type ON public.comments USING btree (commented_id, commented_type);


--
-- Name: idx_37844_index_custom_fields_on_id_and_type; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37844_index_custom_fields_on_id_and_type ON public.custom_fields USING btree (id, type);


--
-- Name: idx_37861_index_custom_fields_projects_on_custom_field_id_and_p; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX idx_37861_index_custom_fields_projects_on_custom_field_id_and_p ON public.custom_fields_projects USING btree (custom_field_id, project_id);


--
-- Name: idx_37866_custom_fields_roles_ids; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX idx_37866_custom_fields_roles_ids ON public.custom_fields_roles USING btree (custom_field_id, role_id);


--
-- Name: idx_37869_index_custom_fields_trackers_on_custom_field_id_and_t; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX idx_37869_index_custom_fields_trackers_on_custom_field_id_and_t ON public.custom_fields_trackers USING btree (custom_field_id, tracker_id);


--
-- Name: idx_37882_custom_values_customized; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37882_custom_values_customized ON public.custom_values USING btree (customized_type, customized_id);


--
-- Name: idx_37882_index_custom_values_on_custom_field_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37882_index_custom_values_on_custom_field_id ON public.custom_values USING btree (custom_field_id);


--
-- Name: idx_37892_documents_project_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37892_documents_project_id ON public.documents USING btree (project_id);


--
-- Name: idx_37892_index_documents_on_category_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37892_index_documents_on_category_id ON public.documents USING btree (category_id);


--
-- Name: idx_37892_index_documents_on_created_on; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37892_index_documents_on_created_on ON public.documents USING btree (created_on);


--
-- Name: idx_37902_index_drive_entries_on_author_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37902_index_drive_entries_on_author_id ON public.drive_entries USING btree (author_id);


--
-- Name: idx_37902_index_drive_entries_on_parent_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37902_index_drive_entries_on_parent_id ON public.drive_entries USING btree (parent_id);


--
-- Name: idx_37902_index_drive_entries_on_project_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37902_index_drive_entries_on_project_id ON public.drive_entries USING btree (project_id);


--
-- Name: idx_37914_index_email_addresses_on_user_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37914_index_email_addresses_on_user_id ON public.email_addresses USING btree (user_id);


--
-- Name: idx_37921_enabled_modules_project_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37921_enabled_modules_project_id ON public.enabled_modules USING btree (project_id);


--
-- Name: idx_37926_index_enumerations_on_id_and_type; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37926_index_enumerations_on_id_and_type ON public.enumerations USING btree (id, type);


--
-- Name: idx_37926_index_enumerations_on_project_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37926_index_enumerations_on_project_id ON public.enumerations USING btree (project_id);


--
-- Name: idx_37935_groups_users_ids; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX idx_37935_groups_users_ids ON public.groups_users USING btree (group_id, user_id);


--
-- Name: idx_37949_index_import_items_on_import_id_and_unique_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37949_index_import_items_on_import_id_and_unique_id ON public.import_items USING btree (import_id, unique_id);


--
-- Name: idx_37957_index_issues_on_assigned_to_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37957_index_issues_on_assigned_to_id ON public.issues USING btree (assigned_to_id);


--
-- Name: idx_37957_index_issues_on_author_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37957_index_issues_on_author_id ON public.issues USING btree (author_id);


--
-- Name: idx_37957_index_issues_on_category_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37957_index_issues_on_category_id ON public.issues USING btree (category_id);


--
-- Name: idx_37957_index_issues_on_created_on; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37957_index_issues_on_created_on ON public.issues USING btree (created_on);


--
-- Name: idx_37957_index_issues_on_fixed_version_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37957_index_issues_on_fixed_version_id ON public.issues USING btree (fixed_version_id);


--
-- Name: idx_37957_index_issues_on_parent_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37957_index_issues_on_parent_id ON public.issues USING btree (parent_id);


--
-- Name: idx_37957_index_issues_on_priority_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37957_index_issues_on_priority_id ON public.issues USING btree (priority_id);


--
-- Name: idx_37957_index_issues_on_root_id_and_lft_and_rgt; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37957_index_issues_on_root_id_and_lft_and_rgt ON public.issues USING btree (root_id, lft, rgt);


--
-- Name: idx_37957_index_issues_on_status_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37957_index_issues_on_status_id ON public.issues USING btree (status_id);


--
-- Name: idx_37957_index_issues_on_tracker_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37957_index_issues_on_tracker_id ON public.issues USING btree (tracker_id);


--
-- Name: idx_37957_issues_project_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37957_issues_project_id ON public.issues USING btree (project_id);


--
-- Name: idx_37968_index_issue_categories_on_assigned_to_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37968_index_issue_categories_on_assigned_to_id ON public.issue_categories USING btree (assigned_to_id);


--
-- Name: idx_37968_issue_categories_project_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37968_issue_categories_project_id ON public.issue_categories USING btree (project_id);


--
-- Name: idx_37975_fk_rails_b84756815b; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37975_fk_rails_b84756815b ON public.issue_drive_files USING btree (issue_id);


--
-- Name: idx_37975_index_issue_drive_files_on_drive_entry_id_and_issue_i; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX idx_37975_index_issue_drive_files_on_drive_entry_id_and_issue_i ON public.issue_drive_files USING btree (drive_entry_id, issue_id);


--
-- Name: idx_37980_index_issue_relations_on_issue_from_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37980_index_issue_relations_on_issue_from_id ON public.issue_relations USING btree (issue_from_id);


--
-- Name: idx_37980_index_issue_relations_on_issue_from_id_and_issue_to_i; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX idx_37980_index_issue_relations_on_issue_from_id_and_issue_to_i ON public.issue_relations USING btree (issue_from_id, issue_to_id);


--
-- Name: idx_37980_index_issue_relations_on_issue_to_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37980_index_issue_relations_on_issue_to_id ON public.issue_relations USING btree (issue_to_id);


--
-- Name: idx_37986_index_issue_statuses_on_is_closed; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37986_index_issue_statuses_on_is_closed ON public.issue_statuses USING btree (is_closed);


--
-- Name: idx_37986_index_issue_statuses_on_position; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37986_index_issue_statuses_on_position ON public.issue_statuses USING btree ("position");


--
-- Name: idx_37993_index_journals_on_created_on; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37993_index_journals_on_created_on ON public.journals USING btree (created_on);


--
-- Name: idx_37993_index_journals_on_journalized_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37993_index_journals_on_journalized_id ON public.journals USING btree (journalized_id);


--
-- Name: idx_37993_index_journals_on_user_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37993_index_journals_on_user_id ON public.journals USING btree (user_id);


--
-- Name: idx_37993_journals_journalized_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_37993_journals_journalized_id ON public.journals USING btree (journalized_id, journalized_type);


--
-- Name: idx_38004_journal_details_journal_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38004_journal_details_journal_id ON public.journal_details USING btree (journal_id);


--
-- Name: idx_38014_index_members_on_project_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38014_index_members_on_project_id ON public.members USING btree (project_id);


--
-- Name: idx_38014_index_members_on_user_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38014_index_members_on_user_id ON public.members USING btree (user_id);


--
-- Name: idx_38014_index_members_on_user_id_and_project_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX idx_38014_index_members_on_user_id_and_project_id ON public.members USING btree (user_id, project_id);


--
-- Name: idx_38022_index_member_roles_on_inherited_from; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38022_index_member_roles_on_inherited_from ON public.member_roles USING btree (inherited_from);


--
-- Name: idx_38022_index_member_roles_on_member_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38022_index_member_roles_on_member_id ON public.member_roles USING btree (member_id);


--
-- Name: idx_38022_index_member_roles_on_role_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38022_index_member_roles_on_role_id ON public.member_roles USING btree (role_id);


--
-- Name: idx_38027_index_messages_on_author_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38027_index_messages_on_author_id ON public.messages USING btree (author_id);


--
-- Name: idx_38027_index_messages_on_created_on; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38027_index_messages_on_created_on ON public.messages USING btree (created_on);


--
-- Name: idx_38027_index_messages_on_last_reply_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38027_index_messages_on_last_reply_id ON public.messages USING btree (last_reply_id);


--
-- Name: idx_38027_messages_board_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38027_messages_board_id ON public.messages USING btree (board_id);


--
-- Name: idx_38027_messages_parent_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38027_messages_parent_id ON public.messages USING btree (parent_id);


--
-- Name: idx_38038_index_news_on_author_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38038_index_news_on_author_id ON public.news USING btree (author_id);


--
-- Name: idx_38038_index_news_on_created_on; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38038_index_news_on_created_on ON public.news USING btree (created_on);


--
-- Name: idx_38038_news_project_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38038_news_project_id ON public.news USING btree (project_id);


--
-- Name: idx_38066_index_projects_on_lft; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38066_index_projects_on_lft ON public.projects USING btree (lft);


--
-- Name: idx_38066_index_projects_on_rgt; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38066_index_projects_on_rgt ON public.projects USING btree (rgt);


--
-- Name: idx_38078_projects_trackers_project_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38078_projects_trackers_project_id ON public.projects_trackers USING btree (project_id);


--
-- Name: idx_38078_projects_trackers_unique; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX idx_38078_projects_trackers_unique ON public.projects_trackers USING btree (project_id, tracker_id);


--
-- Name: idx_38084_index_queries_on_project_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38084_index_queries_on_project_id ON public.queries USING btree (project_id);


--
-- Name: idx_38084_index_queries_on_user_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38084_index_queries_on_user_id ON public.queries USING btree (user_id);


--
-- Name: idx_38095_queries_roles_ids; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX idx_38095_queries_roles_ids ON public.queries_roles USING btree (query_id, role_id);


--
-- Name: idx_38099_index_repositories_on_project_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38099_index_repositories_on_project_id ON public.repositories USING btree (project_id);


--
-- Name: idx_38140_index_roles_managed_roles_on_role_id_and_managed_role; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX idx_38140_index_roles_managed_roles_on_role_id_and_managed_role ON public.roles_managed_roles USING btree (role_id, managed_role_id);


--
-- Name: idx_38147_index_settings_on_name; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38147_index_settings_on_name ON public.settings USING btree (name);


--
-- Name: idx_38155_index_taggings_on_tag_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38155_index_taggings_on_tag_id ON public.taggings USING btree (tag_id);


--
-- Name: idx_38155_index_taggings_on_taggable_id_and_taggable_type; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38155_index_taggings_on_taggable_id_and_taggable_type ON public.taggings USING btree (taggable_id, taggable_type);


--
-- Name: idx_38173_index_time_entries_on_activity_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38173_index_time_entries_on_activity_id ON public.time_entries USING btree (activity_id);


--
-- Name: idx_38173_index_time_entries_on_created_on; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38173_index_time_entries_on_created_on ON public.time_entries USING btree (created_on);


--
-- Name: idx_38173_index_time_entries_on_user_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38173_index_time_entries_on_user_id ON public.time_entries USING btree (user_id);


--
-- Name: idx_38173_time_entries_issue_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38173_time_entries_issue_id ON public.time_entries USING btree (issue_id);


--
-- Name: idx_38173_time_entries_project_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38173_time_entries_project_id ON public.time_entries USING btree (project_id);


--
-- Name: idx_38181_index_tokens_on_user_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38181_index_tokens_on_user_id ON public.tokens USING btree (user_id);


--
-- Name: idx_38181_tokens_value; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX idx_38181_tokens_value ON public.tokens USING btree (value);


--
-- Name: idx_38199_index_users_on_auth_source_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38199_index_users_on_auth_source_id ON public.users USING btree (auth_source_id);


--
-- Name: idx_38199_index_users_on_id_and_type; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38199_index_users_on_id_and_type ON public.users USING btree (id, type);


--
-- Name: idx_38199_index_users_on_type; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38199_index_users_on_type ON public.users USING btree (type);


--
-- Name: idx_38220_index_user_preferences_on_user_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38220_index_user_preferences_on_user_id ON public.user_preferences USING btree (user_id);


--
-- Name: idx_38230_index_versions_on_sharing; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38230_index_versions_on_sharing ON public.versions USING btree (sharing);


--
-- Name: idx_38230_versions_project_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38230_versions_project_id ON public.versions USING btree (project_id);


--
-- Name: idx_38243_index_viewings_on_viewed_type_and_viewed_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38243_index_viewings_on_viewed_type_and_viewed_id ON public.viewings USING btree (viewed_type, viewed_id);


--
-- Name: idx_38243_index_viewings_on_viewer_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38243_index_viewings_on_viewer_id ON public.viewings USING btree (viewer_id);


--
-- Name: idx_38250_index_watchers_on_user_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38250_index_watchers_on_user_id ON public.watchers USING btree (user_id);


--
-- Name: idx_38250_index_watchers_on_watchable_id_and_watchable_type; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38250_index_watchers_on_watchable_id_and_watchable_type ON public.watchers USING btree (watchable_id, watchable_type);


--
-- Name: idx_38250_watchers_user_id_type; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38250_watchers_user_id_type ON public.watchers USING btree (user_id, watchable_type);


--
-- Name: idx_38257_wikis_project_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38257_wikis_project_id ON public.wikis USING btree (project_id);


--
-- Name: idx_38263_index_wiki_contents_on_author_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38263_index_wiki_contents_on_author_id ON public.wiki_contents USING btree (author_id);


--
-- Name: idx_38263_wiki_contents_page_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38263_wiki_contents_page_id ON public.wiki_contents USING btree (page_id);


--
-- Name: idx_38271_index_wiki_content_versions_on_updated_on; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38271_index_wiki_content_versions_on_updated_on ON public.wiki_content_versions USING btree (updated_on);


--
-- Name: idx_38271_wiki_content_versions_wcid; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38271_wiki_content_versions_wcid ON public.wiki_content_versions USING btree (wiki_content_id);


--
-- Name: idx_38280_index_wiki_pages_on_parent_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38280_index_wiki_pages_on_parent_id ON public.wiki_pages USING btree (parent_id);


--
-- Name: idx_38280_index_wiki_pages_on_wiki_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38280_index_wiki_pages_on_wiki_id ON public.wiki_pages USING btree (wiki_id);


--
-- Name: idx_38280_wiki_pages_wiki_id_title; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38280_wiki_pages_wiki_id_title ON public.wiki_pages USING btree (wiki_id, title);


--
-- Name: idx_38286_index_wiki_redirects_on_wiki_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38286_index_wiki_redirects_on_wiki_id ON public.wiki_redirects USING btree (wiki_id);


--
-- Name: idx_38286_wiki_redirects_wiki_id_title; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38286_wiki_redirects_wiki_id_title ON public.wiki_redirects USING btree (wiki_id, title);


--
-- Name: idx_38295_index_workflows_on_new_status_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38295_index_workflows_on_new_status_id ON public.workflows USING btree (new_status_id);


--
-- Name: idx_38295_index_workflows_on_old_status_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38295_index_workflows_on_old_status_id ON public.workflows USING btree (old_status_id);


--
-- Name: idx_38295_index_workflows_on_role_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38295_index_workflows_on_role_id ON public.workflows USING btree (role_id);


--
-- Name: idx_38295_index_workflows_on_tracker_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38295_index_workflows_on_tracker_id ON public.workflows USING btree (tracker_id);


--
-- Name: idx_38295_wkfs_role_tracker_old_status; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_38295_wkfs_role_tracker_old_status ON public.workflows USING btree (role_id, tracker_id, old_status_id);


--
-- Name: index_dayoffs_on_leave_type_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX index_dayoffs_on_leave_type_id ON public.dayoffs USING btree (leave_type_id);


--
-- Name: index_dayoffs_on_user_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX index_dayoffs_on_user_id ON public.dayoffs USING btree (user_id);


--
-- Name: index_departments_on_head_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX index_departments_on_head_id ON public.departments USING btree (head_id);


--
-- Name: index_departments_on_parent_id_and_lft_and_rgt; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX index_departments_on_parent_id_and_lft_and_rgt ON public.departments USING btree (parent_id, lft, rgt);


--
-- Name: index_people_announcements_on_department_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX index_people_announcements_on_department_id ON public.people_announcements USING btree (department_id);


--
-- Name: index_people_information_on_workday_length; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX index_people_information_on_workday_length ON public.people_information USING btree (workday_length);


--
-- Name: index_people_work_experiences_on_user_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX index_people_work_experiences_on_user_id ON public.people_work_experiences USING btree (user_id);


--
-- Name: index_users_on_firstname_and_lastname; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX index_users_on_firstname_and_lastname ON public.users USING btree (firstname, lastname);


--
-- Name: index_users_on_lastname_and_firstname; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX index_users_on_lastname_and_firstname ON public.users USING btree (lastname, firstname);


--
-- Name: dayoffs fk_rails_155561b519; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.dayoffs
    ADD CONSTRAINT fk_rails_155561b519 FOREIGN KEY (user_id) REFERENCES public.users(id);


--
-- Name: drive_entries fk_rails_4abd7b747e; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.drive_entries
    ADD CONSTRAINT fk_rails_4abd7b747e FOREIGN KEY (project_id) REFERENCES public.projects(id) ON UPDATE RESTRICT ON DELETE RESTRICT;


--
-- Name: drive_entries fk_rails_92b20dfd2c; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.drive_entries
    ADD CONSTRAINT fk_rails_92b20dfd2c FOREIGN KEY (author_id) REFERENCES public.users(id) ON UPDATE RESTRICT ON DELETE RESTRICT;


--
-- Name: issue_drive_files fk_rails_a5093de69c; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.issue_drive_files
    ADD CONSTRAINT fk_rails_a5093de69c FOREIGN KEY (drive_entry_id) REFERENCES public.drive_entries(id) ON UPDATE RESTRICT ON DELETE RESTRICT;


--
-- Name: issue_drive_files fk_rails_b84756815b; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.issue_drive_files
    ADD CONSTRAINT fk_rails_b84756815b FOREIGN KEY (issue_id) REFERENCES public.issues(id) ON UPDATE RESTRICT ON DELETE RESTRICT;


--
-- Name: dayoffs fk_rails_d0fbd9c636; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.dayoffs
    ADD CONSTRAINT fk_rails_d0fbd9c636 FOREIGN KEY (leave_type_id) REFERENCES public.leave_types(id);


--
-- Name: SCHEMA public; Type: ACL; Schema: -; Owner: pg_database_owner
--

REVOKE USAGE ON SCHEMA public FROM PUBLIC;


--
-- PostgreSQL database dump complete
--

--
-- Database "sdoc" dump
--

--
-- PostgreSQL database dump
--

-- Dumped from database version 15.5
-- Dumped by pg_dump version 16.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: sdoc; Type: DATABASE; Schema: -; Owner: sdoc
--

CREATE DATABASE sdoc WITH TEMPLATE = template0 ENCODING = 'UTF8' LOCALE_PROVIDER = libc LC_COLLATE = 'vi-VN-x-icu' LC_CTYPE = 'English_United States.1252';


ALTER DATABASE sdoc OWNER TO sdoc;

\connect sdoc

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: category; Type: SCHEMA; Schema: -; Owner: sdoc
--

CREATE SCHEMA category;


ALTER SCHEMA category OWNER TO sdoc;

--
-- Name: identity; Type: SCHEMA; Schema: -; Owner: sdoc
--

CREATE SCHEMA identity;


ALTER SCHEMA identity OWNER TO sdoc;

--
-- Name: sdoc; Type: SCHEMA; Schema: -; Owner: sdoc
--

CREATE SCHEMA sdoc;


ALTER SCHEMA sdoc OWNER TO sdoc;

--
-- Name: unaccent; Type: EXTENSION; Schema: -; Owner: -
--

CREATE EXTENSION IF NOT EXISTS unaccent WITH SCHEMA public;


--
-- Name: EXTENSION unaccent; Type: COMMENT; Schema: -; Owner: 
--

COMMENT ON EXTENSION unaccent IS 'text search dictionary that removes accents';


--
-- Name: uuid-ossp; Type: EXTENSION; Schema: -; Owner: -
--

CREATE EXTENSION IF NOT EXISTS "uuid-ossp" WITH SCHEMA public;


--
-- Name: EXTENSION "uuid-ossp"; Type: COMMENT; Schema: -; Owner: 
--

COMMENT ON EXTENSION "uuid-ossp" IS 'generate universally unique identifiers (UUIDs)';


--
-- Name: vi; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: sdoc
--

CREATE TEXT SEARCH CONFIGURATION public.vi (
    PARSER = pg_catalog."default" );

ALTER TEXT SEARCH CONFIGURATION public.vi
    ADD MAPPING FOR asciiword WITH simple;

ALTER TEXT SEARCH CONFIGURATION public.vi
    ADD MAPPING FOR word WITH public.unaccent, simple;

ALTER TEXT SEARCH CONFIGURATION public.vi
    ADD MAPPING FOR numword WITH simple;

ALTER TEXT SEARCH CONFIGURATION public.vi
    ADD MAPPING FOR email WITH simple;

ALTER TEXT SEARCH CONFIGURATION public.vi
    ADD MAPPING FOR url WITH simple;

ALTER TEXT SEARCH CONFIGURATION public.vi
    ADD MAPPING FOR host WITH simple;

ALTER TEXT SEARCH CONFIGURATION public.vi
    ADD MAPPING FOR sfloat WITH simple;

ALTER TEXT SEARCH CONFIGURATION public.vi
    ADD MAPPING FOR version WITH simple;

ALTER TEXT SEARCH CONFIGURATION public.vi
    ADD MAPPING FOR hword_numpart WITH simple;

ALTER TEXT SEARCH CONFIGURATION public.vi
    ADD MAPPING FOR hword_part WITH public.unaccent, simple;

ALTER TEXT SEARCH CONFIGURATION public.vi
    ADD MAPPING FOR hword_asciipart WITH simple;

ALTER TEXT SEARCH CONFIGURATION public.vi
    ADD MAPPING FOR numhword WITH simple;

ALTER TEXT SEARCH CONFIGURATION public.vi
    ADD MAPPING FOR asciihword WITH simple;

ALTER TEXT SEARCH CONFIGURATION public.vi
    ADD MAPPING FOR hword WITH public.unaccent, simple;

ALTER TEXT SEARCH CONFIGURATION public.vi
    ADD MAPPING FOR url_path WITH simple;

ALTER TEXT SEARCH CONFIGURATION public.vi
    ADD MAPPING FOR file WITH simple;

ALTER TEXT SEARCH CONFIGURATION public.vi
    ADD MAPPING FOR "float" WITH simple;

ALTER TEXT SEARCH CONFIGURATION public.vi
    ADD MAPPING FOR "int" WITH simple;

ALTER TEXT SEARCH CONFIGURATION public.vi
    ADD MAPPING FOR uint WITH simple;


ALTER TEXT SEARCH CONFIGURATION public.vi OWNER TO sdoc;

SET default_tablespace = '';

SET default_table_access_method = heap;

--
-- Name: Countries; Type: TABLE; Schema: category; Owner: sdoc
--

CREATE TABLE category."Countries" (
    "Id" integer NOT NULL,
    "Name" character varying(100) NOT NULL,
    "NativeName" character varying(200),
    "IsoCode2" character varying(2),
    "IsoCode3" character varying(3),
    "Capital" character varying(100),
    "NumericCode" character varying(3),
    "PhoneCode" character varying(25),
    "Tld" text,
    "Emoji" character varying(10),
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone
);


ALTER TABLE category."Countries" OWNER TO sdoc;

--
-- Name: TABLE "Countries"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON TABLE category."Countries" IS 'Danh mục quốc gia';


--
-- Name: COLUMN "Countries"."Name"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Countries"."Name" IS 'Tên quốc gia';


--
-- Name: COLUMN "Countries"."NativeName"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Countries"."NativeName" IS 'Tên quốc gia viết bằng ngôn ngữ bản địa';


--
-- Name: COLUMN "Countries"."IsoCode2"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Countries"."IsoCode2" IS 'Mã quốc gia chuẩn iso2';


--
-- Name: COLUMN "Countries"."IsoCode3"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Countries"."IsoCode3" IS 'Mã quốc gia chuẩn iso3';


--
-- Name: COLUMN "Countries"."Capital"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Countries"."Capital" IS 'Tên thủ đô';


--
-- Name: COLUMN "Countries"."NumericCode"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Countries"."NumericCode" IS 'Mã số quốc gia';


--
-- Name: COLUMN "Countries"."PhoneCode"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Countries"."PhoneCode" IS 'Mã điện thoại quốc gia';


--
-- Name: COLUMN "Countries"."Emoji"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Countries"."Emoji" IS 'Emoji quốc kỳ của quốc gia';


--
-- Name: Districts; Type: TABLE; Schema: category; Owner: sdoc
--

CREATE TABLE category."Districts" (
    "Id" integer NOT NULL,
    "ProvinceId" integer NOT NULL,
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone,
    "Name" character varying(100) NOT NULL,
    "Code" character varying(10) NOT NULL,
    "Tier" character varying(50) NOT NULL
);


ALTER TABLE category."Districts" OWNER TO sdoc;

--
-- Name: TABLE "Districts"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON TABLE category."Districts" IS 'Danh mục quận, huyện';


--
-- Name: COLUMN "Districts"."ProvinceId"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Districts"."ProvinceId" IS 'Mã tỉnh, thành phố';


--
-- Name: COLUMN "Districts"."Name"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Districts"."Name" IS 'Tên đơn vị hành chính';


--
-- Name: COLUMN "Districts"."Code"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Districts"."Code" IS 'Mã đơn vị hành chính';


--
-- Name: COLUMN "Districts"."Tier"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Districts"."Tier" IS 'Cấp đơn vị hành chính';


--
-- Name: EntityFrameworkHiLoSequence; Type: SEQUENCE; Schema: category; Owner: sdoc
--

CREATE SEQUENCE category."EntityFrameworkHiLoSequence"
    START WITH 1
    INCREMENT BY 10
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE category."EntityFrameworkHiLoSequence" OWNER TO sdoc;

--
-- Name: Languages; Type: TABLE; Schema: category; Owner: sdoc
--

CREATE TABLE category."Languages" (
    "Id" integer NOT NULL,
    "Name" character varying(100) NOT NULL,
    "VietnameseName" character varying(200),
    "Code" character varying(10) NOT NULL,
    "NativeName" character varying(100),
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone
);


ALTER TABLE category."Languages" OWNER TO sdoc;

--
-- Name: TABLE "Languages"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON TABLE category."Languages" IS 'Danh mục ngôn ngữ';


--
-- Name: COLUMN "Languages"."Name"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Languages"."Name" IS 'Tên ngôn ngữ';


--
-- Name: COLUMN "Languages"."VietnameseName"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Languages"."VietnameseName" IS 'Tên ngôn ngữ viết bằng tiếng Việt';


--
-- Name: COLUMN "Languages"."Code"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Languages"."Code" IS 'Mã ngôn ngữ';


--
-- Name: COLUMN "Languages"."NativeName"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Languages"."NativeName" IS 'Tên ngôn ngữ viết bằng tiếng bản địa';


--
-- Name: Organizations; Type: TABLE; Schema: category; Owner: sdoc
--

CREATE TABLE category."Organizations" (
    "Id" uuid NOT NULL,
    "OrganId" character varying(13),
    "DigitalCode" character varying(13),
    "OrganName" character varying(200) NOT NULL,
    "OrganAdd" character varying(250) NOT NULL,
    "Email" character varying(100),
    "Telephone" character varying(30),
    "Fax" character varying(20),
    "Website" character varying(50),
    "IsInactive" boolean DEFAULT false NOT NULL,
    "SearchVector" tsvector GENERATED ALWAYS AS (to_tsvector('public.vi'::regconfig, ((("OrganName")::text || ' '::text) || ("OrganAdd")::text))) STORED,
    "WardId" integer,
    "DistrictId" integer,
    "ProvinceId" integer,
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone,
    "OrganizationInChargeId" uuid
);


ALTER TABLE category."Organizations" OWNER TO sdoc;

--
-- Name: TABLE "Organizations"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON TABLE category."Organizations" IS 'Danh mục cơ quan, tổ chức nhà nước';


--
-- Name: COLUMN "Organizations"."OrganId"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Organizations"."OrganId" IS 'Mã cơ quan, đơn vị theo quy định của nhà nước';


--
-- Name: COLUMN "Organizations"."DigitalCode"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Organizations"."DigitalCode" IS 'Mã định danh điện tử';


--
-- Name: COLUMN "Organizations"."OrganName"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Organizations"."OrganName" IS 'Tên đầy đủ của cơ quan, đơn vị';


--
-- Name: COLUMN "Organizations"."OrganAdd"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Organizations"."OrganAdd" IS 'Địa chỉ trụ sở của cơ quan, đơn vị';


--
-- Name: COLUMN "Organizations"."Email"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Organizations"."Email" IS 'Địa chỉ thư điện tử cơ quan, đơn vị';


--
-- Name: COLUMN "Organizations"."Telephone"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Organizations"."Telephone" IS 'Số điện thoại liên hệ của cơ quan, đơn vị';


--
-- Name: COLUMN "Organizations"."Fax"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Organizations"."Fax" IS 'Số máy fax của cơ quan, đơn vị';


--
-- Name: COLUMN "Organizations"."Website"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Organizations"."Website" IS 'Trang thông tin điện tử của cơ quan, đơn vị';


--
-- Name: COLUMN "Organizations"."IsInactive"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Organizations"."IsInactive" IS 'Cơ quan, đơn vị còn hoạt động hay ko';


--
-- Name: COLUMN "Organizations"."OrganizationInChargeId"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Organizations"."OrganizationInChargeId" IS 'Mã cơ quan, đơn vị chủ quản trực tiếp';


--
-- Name: Provinces; Type: TABLE; Schema: category; Owner: sdoc
--

CREATE TABLE category."Provinces" (
    "Id" integer NOT NULL,
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone,
    "Name" character varying(100) NOT NULL,
    "Code" character varying(10) NOT NULL,
    "Tier" character varying(50) NOT NULL
);


ALTER TABLE category."Provinces" OWNER TO sdoc;

--
-- Name: TABLE "Provinces"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON TABLE category."Provinces" IS 'Danh mục tỉnh, thành phố';


--
-- Name: COLUMN "Provinces"."Name"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Provinces"."Name" IS 'Tên đơn vị hành chính';


--
-- Name: COLUMN "Provinces"."Code"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Provinces"."Code" IS 'Mã đơn vị hành chính';


--
-- Name: COLUMN "Provinces"."Tier"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Provinces"."Tier" IS 'Cấp đơn vị hành chính';


--
-- Name: Wards; Type: TABLE; Schema: category; Owner: sdoc
--

CREATE TABLE category."Wards" (
    "Id" integer NOT NULL,
    "DistrictId" integer NOT NULL,
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone,
    "Name" character varying(100) NOT NULL,
    "Code" character varying(10) NOT NULL,
    "Tier" character varying(50) NOT NULL
);


ALTER TABLE category."Wards" OWNER TO sdoc;

--
-- Name: TABLE "Wards"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON TABLE category."Wards" IS 'Danh mục phường, xã';


--
-- Name: COLUMN "Wards"."DistrictId"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Wards"."DistrictId" IS 'Mã quận, huyện';


--
-- Name: COLUMN "Wards"."Name"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Wards"."Name" IS 'Tên đơn vị hành chính';


--
-- Name: COLUMN "Wards"."Code"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Wards"."Code" IS 'Mã đơn vị hành chính';


--
-- Name: COLUMN "Wards"."Tier"; Type: COMMENT; Schema: category; Owner: sdoc
--

COMMENT ON COLUMN category."Wards"."Tier" IS 'Cấp đơn vị hành chính';


--
-- Name: __CategoryMigrationsHistory; Type: TABLE; Schema: category; Owner: sdoc
--

CREATE TABLE category."__CategoryMigrationsHistory" (
    "MigrationId" character varying(150) NOT NULL,
    "ProductVersion" character varying(32) NOT NULL
);


ALTER TABLE category."__CategoryMigrationsHistory" OWNER TO sdoc;

--
-- Name: AccountDetails; Type: TABLE; Schema: identity; Owner: sdoc
--

CREATE TABLE identity."AccountDetails" (
    "AccountId" uuid NOT NULL,
    "FullName" character varying(255),
    "Birthday" timestamp with time zone,
    "Gender" boolean,
    "Address" character varying(300),
    "IdCard_IdNumber" character varying(12),
    "IdCard_DateOfIssue" timestamp with time zone,
    "IdCard_PlaceOfIssue" character varying(100)
);


ALTER TABLE identity."AccountDetails" OWNER TO sdoc;

--
-- Name: TABLE "AccountDetails"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON TABLE identity."AccountDetails" IS 'Chi tiết tài khoản';


--
-- Name: COLUMN "AccountDetails"."AccountId"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON COLUMN identity."AccountDetails"."AccountId" IS 'Id tài khoản người dùng';


--
-- Name: COLUMN "AccountDetails"."FullName"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON COLUMN identity."AccountDetails"."FullName" IS 'Họ và tên';


--
-- Name: COLUMN "AccountDetails"."Birthday"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON COLUMN identity."AccountDetails"."Birthday" IS 'Ngày sinh';


--
-- Name: COLUMN "AccountDetails"."Gender"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON COLUMN identity."AccountDetails"."Gender" IS 'Giới tính';


--
-- Name: COLUMN "AccountDetails"."Address"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON COLUMN identity."AccountDetails"."Address" IS 'Địa chỉ liên hệ';


--
-- Name: COLUMN "AccountDetails"."IdCard_IdNumber"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON COLUMN identity."AccountDetails"."IdCard_IdNumber" IS 'Số giấy tờ tùy thân như CMND, CCCD, hộ chiếu...';


--
-- Name: COLUMN "AccountDetails"."IdCard_DateOfIssue"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON COLUMN identity."AccountDetails"."IdCard_DateOfIssue" IS 'Ngày cấp';


--
-- Name: COLUMN "AccountDetails"."IdCard_PlaceOfIssue"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON COLUMN identity."AccountDetails"."IdCard_PlaceOfIssue" IS 'Nơi cấp';


--
-- Name: AspNetRoleClaims; Type: TABLE; Schema: identity; Owner: sdoc
--

CREATE TABLE identity."AspNetRoleClaims" (
    "Id" integer NOT NULL,
    "RoleId" uuid NOT NULL,
    "ClaimType" text,
    "ClaimValue" text
);


ALTER TABLE identity."AspNetRoleClaims" OWNER TO sdoc;

--
-- Name: AspNetRoles; Type: TABLE; Schema: identity; Owner: sdoc
--

CREATE TABLE identity."AspNetRoles" (
    "Id" uuid NOT NULL,
    "Description" character varying(255) NOT NULL,
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone,
    "Name" character varying(256),
    "NormalizedName" character varying(256),
    "ConcurrencyStamp" text
);


ALTER TABLE identity."AspNetRoles" OWNER TO sdoc;

--
-- Name: TABLE "AspNetRoles"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON TABLE identity."AspNetRoles" IS 'Quyền truy cập hệ thống';


--
-- Name: COLUMN "AspNetRoles"."Description"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON COLUMN identity."AspNetRoles"."Description" IS 'Mô tả quyền';


--
-- Name: AspNetUserClaims; Type: TABLE; Schema: identity; Owner: sdoc
--

CREATE TABLE identity."AspNetUserClaims" (
    "Id" integer NOT NULL,
    "UserId" uuid NOT NULL,
    "ClaimType" text,
    "ClaimValue" text
);


ALTER TABLE identity."AspNetUserClaims" OWNER TO sdoc;

--
-- Name: AspNetUserLogins; Type: TABLE; Schema: identity; Owner: sdoc
--

CREATE TABLE identity."AspNetUserLogins" (
    "LoginProvider" text NOT NULL,
    "ProviderKey" text NOT NULL,
    "ProviderDisplayName" text,
    "UserId" uuid NOT NULL
);


ALTER TABLE identity."AspNetUserLogins" OWNER TO sdoc;

--
-- Name: AspNetUserRoles; Type: TABLE; Schema: identity; Owner: sdoc
--

CREATE TABLE identity."AspNetUserRoles" (
    "UserId" uuid NOT NULL,
    "RoleId" uuid NOT NULL
);


ALTER TABLE identity."AspNetUserRoles" OWNER TO sdoc;

--
-- Name: AspNetUserTokens; Type: TABLE; Schema: identity; Owner: sdoc
--

CREATE TABLE identity."AspNetUserTokens" (
    "UserId" uuid NOT NULL,
    "LoginProvider" text NOT NULL,
    "Name" text NOT NULL,
    "Value" text
);


ALTER TABLE identity."AspNetUserTokens" OWNER TO sdoc;

--
-- Name: AspNetUsers; Type: TABLE; Schema: identity; Owner: sdoc
--

CREATE TABLE identity."AspNetUsers" (
    "Id" uuid NOT NULL,
    "DisplayName" character varying(255),
    "Website" character varying(100),
    "AvatarUrl" character varying(100),
    "Description" character varying(1000),
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone,
    "UserName" character varying(256),
    "NormalizedUserName" character varying(256),
    "Email" character varying(256),
    "NormalizedEmail" character varying(256),
    "EmailConfirmed" boolean NOT NULL,
    "PasswordHash" text,
    "SecurityStamp" text,
    "ConcurrencyStamp" text,
    "PhoneNumber" text,
    "PhoneNumberConfirmed" boolean NOT NULL,
    "TwoFactorEnabled" boolean NOT NULL,
    "LockoutEnd" timestamp with time zone,
    "LockoutEnabled" boolean NOT NULL,
    "AccessFailedCount" integer NOT NULL
);


ALTER TABLE identity."AspNetUsers" OWNER TO sdoc;

--
-- Name: TABLE "AspNetUsers"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON TABLE identity."AspNetUsers" IS 'Tài khoản người dùng';


--
-- Name: COLUMN "AspNetUsers"."DisplayName"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON COLUMN identity."AspNetUsers"."DisplayName" IS 'Tên hiển thị';


--
-- Name: COLUMN "AspNetUsers"."Website"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON COLUMN identity."AspNetUsers"."Website" IS 'Địa chỉ website cá nhân';


--
-- Name: COLUMN "AspNetUsers"."AvatarUrl"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON COLUMN identity."AspNetUsers"."AvatarUrl" IS 'Đường dẫn hình đại diện';


--
-- Name: COLUMN "AspNetUsers"."Description"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON COLUMN identity."AspNetUsers"."Description" IS 'Mô tả thêm về bản thân';


--
-- Name: EntityFrameworkHiLoSequence; Type: SEQUENCE; Schema: identity; Owner: sdoc
--

CREATE SEQUENCE identity."EntityFrameworkHiLoSequence"
    START WITH 1
    INCREMENT BY 10
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE identity."EntityFrameworkHiLoSequence" OWNER TO sdoc;

--
-- Name: MenuRoles; Type: TABLE; Schema: identity; Owner: sdoc
--

CREATE TABLE identity."MenuRoles" (
    "AuthorizedMenusId" uuid NOT NULL,
    "AuthorizedRolesId" uuid NOT NULL
);


ALTER TABLE identity."MenuRoles" OWNER TO sdoc;

--
-- Name: Menus; Type: TABLE; Schema: identity; Owner: sdoc
--

CREATE TABLE identity."Menus" (
    "Id" uuid NOT NULL,
    "Label" character varying(50) NOT NULL,
    "Link" character varying(200) NOT NULL,
    "Ordinal" integer NOT NULL,
    "Icon" text DEFAULT '[]'::text,
    "BasePath" text,
    "IsPublic" boolean NOT NULL,
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone,
    "ParentId" uuid
);


ALTER TABLE identity."Menus" OWNER TO sdoc;

--
-- Name: TABLE "Menus"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON TABLE identity."Menus" IS 'Menu ứng dụng';


--
-- Name: COLUMN "Menus"."Label"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON COLUMN identity."Menus"."Label" IS 'Tiêu đề hiển thị menu';


--
-- Name: COLUMN "Menus"."Link"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON COLUMN identity."Menus"."Link" IS 'Đường dẫn liên kết menu';


--
-- Name: COLUMN "Menus"."Ordinal"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON COLUMN identity."Menus"."Ordinal" IS 'Thứ tự menu trong danh sách';


--
-- Name: COLUMN "Menus"."Icon"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON COLUMN identity."Menus"."Icon" IS 'Icon hiển thị menu';


--
-- Name: COLUMN "Menus"."BasePath"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON COLUMN identity."Menus"."BasePath" IS 'Tiền tố liên kết';


--
-- Name: COLUMN "Menus"."IsPublic"; Type: COMMENT; Schema: identity; Owner: sdoc
--

COMMENT ON COLUMN identity."Menus"."IsPublic" IS 'Đường dẫn không yêu cầu đăng nhập';


--
-- Name: OpenIdApplications; Type: TABLE; Schema: identity; Owner: sdoc
--

CREATE TABLE identity."OpenIdApplications" (
    "Id" uuid NOT NULL,
    "ClientId" character varying(100),
    "ClientSecret" text,
    "ConcurrencyToken" character varying(50),
    "ConsentType" character varying(50),
    "DisplayName" text,
    "DisplayNames" text,
    "Permissions" text,
    "PostLogoutRedirectUris" text,
    "Properties" text,
    "RedirectUris" text,
    "Requirements" text,
    "Type" character varying(50)
);


ALTER TABLE identity."OpenIdApplications" OWNER TO sdoc;

--
-- Name: OpenIdAuthorizations; Type: TABLE; Schema: identity; Owner: sdoc
--

CREATE TABLE identity."OpenIdAuthorizations" (
    "Id" uuid NOT NULL,
    "ApplicationId" uuid,
    "ConcurrencyToken" character varying(50),
    "CreationDate" timestamp with time zone,
    "Properties" text,
    "Scopes" text,
    "Status" character varying(50),
    "Subject" character varying(400),
    "Type" character varying(50)
);


ALTER TABLE identity."OpenIdAuthorizations" OWNER TO sdoc;

--
-- Name: OpenIdScopes; Type: TABLE; Schema: identity; Owner: sdoc
--

CREATE TABLE identity."OpenIdScopes" (
    "Id" uuid NOT NULL,
    "ConcurrencyToken" character varying(50),
    "Description" text,
    "Descriptions" text,
    "DisplayName" text,
    "DisplayNames" text,
    "Name" character varying(200),
    "Properties" text,
    "Resources" text
);


ALTER TABLE identity."OpenIdScopes" OWNER TO sdoc;

--
-- Name: OpenIdTokens; Type: TABLE; Schema: identity; Owner: sdoc
--

CREATE TABLE identity."OpenIdTokens" (
    "Id" uuid NOT NULL,
    "ApplicationId" uuid,
    "AuthorizationId" uuid,
    "ConcurrencyToken" character varying(50),
    "CreationDate" timestamp with time zone,
    "ExpirationDate" timestamp with time zone,
    "Payload" text,
    "Properties" text,
    "RedemptionDate" timestamp with time zone,
    "ReferenceId" character varying(100),
    "Status" character varying(50),
    "Subject" character varying(400),
    "Type" character varying(50)
);


ALTER TABLE identity."OpenIdTokens" OWNER TO sdoc;

--
-- Name: __IdentityMigrationsHistory; Type: TABLE; Schema: identity; Owner: sdoc
--

CREATE TABLE identity."__IdentityMigrationsHistory" (
    "MigrationId" character varying(150) NOT NULL,
    "ProductVersion" character varying(32) NOT NULL
);


ALTER TABLE identity."__IdentityMigrationsHistory" OWNER TO sdoc;

--
-- Name: ArchivedDocuments; Type: TABLE; Schema: sdoc; Owner: sdoc
--

CREATE TABLE sdoc."ArchivedDocuments" (
    "Id" uuid NOT NULL,
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone,
    "FileId" uuid NOT NULL,
    "DocOrdinal" smallint NOT NULL,
    "DocTypeId" integer,
    "CodeNumber" character varying(11),
    "CodeNotation" character varying(30),
    "IssuedDate" timestamp with time zone NOT NULL,
    "OrganName" character varying(200),
    "Subject" character varying(500) NOT NULL,
    "Language" character varying(100),
    "PageAmount" smallint NOT NULL,
    "SheetAmount" smallint,
    "SheetIndex" character varying(10),
    "Description" character varying(500),
    "InforSign" character varying(30),
    "Keyword" character varying(100),
    "Mode" boolean NOT NULL,
    "ConfidenceLevel" character varying(64) NOT NULL,
    "Autograph" character varying(2000),
    "Format" character varying(50),
    "DocCode" character varying(30) NOT NULL,
    "IsSigned" boolean NOT NULL
);


ALTER TABLE sdoc."ArchivedDocuments" OWNER TO sdoc;

--
-- Name: TABLE "ArchivedDocuments"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON TABLE sdoc."ArchivedDocuments" IS 'Văn bản đã bị xóa';


--
-- Name: COLUMN "ArchivedDocuments"."FileId"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."FileId" IS 'Id hồ sơ';


--
-- Name: COLUMN "ArchivedDocuments"."DocOrdinal"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."DocOrdinal" IS 'Số thứ tự văn bản trong hồ sơ';


--
-- Name: COLUMN "ArchivedDocuments"."DocTypeId"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."DocTypeId" IS 'Id loại văn bản';


--
-- Name: COLUMN "ArchivedDocuments"."CodeNumber"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."CodeNumber" IS 'Số của văn bản';


--
-- Name: COLUMN "ArchivedDocuments"."CodeNotation"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."CodeNotation" IS 'Ký hiệu văn bản';


--
-- Name: COLUMN "ArchivedDocuments"."IssuedDate"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."IssuedDate" IS 'Ngày ban hành văn bản';


--
-- Name: COLUMN "ArchivedDocuments"."OrganName"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."OrganName" IS 'Tên cơ quan ban hành văn bản';


--
-- Name: COLUMN "ArchivedDocuments"."Subject"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."Subject" IS 'Trích yếu văn bản';


--
-- Name: COLUMN "ArchivedDocuments"."Language"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."Language" IS 'Ngôn ngữ văn bản';


--
-- Name: COLUMN "ArchivedDocuments"."PageAmount"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."PageAmount" IS 'Số trang văn bản';


--
-- Name: COLUMN "ArchivedDocuments"."SheetAmount"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."SheetAmount" IS 'Số lượng tờ giấy văn bản';


--
-- Name: COLUMN "ArchivedDocuments"."SheetIndex"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."SheetIndex" IS 'Tờ số của văn bản trong hồ sơ';


--
-- Name: COLUMN "ArchivedDocuments"."Description"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."Description" IS 'Ghi chú thêm về văn bản';


--
-- Name: COLUMN "ArchivedDocuments"."InforSign"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."InforSign" IS 'Ký hiệu thông tin văn bản';


--
-- Name: COLUMN "ArchivedDocuments"."Keyword"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."Keyword" IS 'Từ khóa văn bản hỗ trợ tìm kiếm';


--
-- Name: COLUMN "ArchivedDocuments"."Mode"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."Mode" IS 'Mức độ sử dụng văn bản (có hạn chế hay là không)';


--
-- Name: COLUMN "ArchivedDocuments"."ConfidenceLevel"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."ConfidenceLevel" IS 'Độ tin cậy văn bản (bản chính, bản sao...)';


--
-- Name: COLUMN "ArchivedDocuments"."Autograph"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."Autograph" IS 'Bút tích (chữ ký phê duyệt, góp ý, sửa chữa... trên văn bản)';


--
-- Name: COLUMN "ArchivedDocuments"."Format"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."Format" IS 'Tình trạng vật lý hiện tại của văn bản';


--
-- Name: COLUMN "ArchivedDocuments"."DocCode"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."DocCode" IS 'Mã quy định để đặt tên văn bản';


--
-- Name: COLUMN "ArchivedDocuments"."IsSigned"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedDocuments"."IsSigned" IS 'Trạng thái ký số văn bản';


--
-- Name: ArchivedFiles; Type: TABLE; Schema: sdoc; Owner: sdoc
--

CREATE TABLE sdoc."ArchivedFiles" (
    "Id" uuid NOT NULL,
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone,
    "CatalogueId" uuid NOT NULL,
    "FileGroupId" integer,
    "FileCode" character varying(30) NOT NULL,
    "RepositoryId" uuid,
    "Shelf" character varying(200),
    "Cabinet" character varying(200),
    "BoxNumber" smallint,
    "FileNumber" character varying(10) NOT NULL,
    "FileYear" smallint,
    "FileNotation" character varying(20),
    "Title" character varying(1000) NOT NULL,
    "Maintenance" integer NOT NULL,
    "Rights" boolean NOT NULL,
    "Description" character varying(2000),
    "InforSign" character varying(30),
    "Keyword" character varying(100),
    "SheetNumber" integer,
    "Format" character varying(50),
    "Status" character varying(64) NOT NULL,
    "AssignedTo" uuid
);


ALTER TABLE sdoc."ArchivedFiles" OWNER TO sdoc;

--
-- Name: TABLE "ArchivedFiles"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON TABLE sdoc."ArchivedFiles" IS 'Tập hồ sơ đã bị xóa';


--
-- Name: COLUMN "ArchivedFiles"."CatalogueId"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedFiles"."CatalogueId" IS 'Id mục lục hồ sơ';


--
-- Name: COLUMN "ArchivedFiles"."FileGroupId"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedFiles"."FileGroupId" IS 'Id nhóm tài liệu, loại hồ sơ';


--
-- Name: COLUMN "ArchivedFiles"."FileCode"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedFiles"."FileCode" IS 'Mã hồ sơ theo quy định của BNV';


--
-- Name: COLUMN "ArchivedFiles"."RepositoryId"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedFiles"."RepositoryId" IS 'Id kho lưu trữ vật lý';


--
-- Name: COLUMN "ArchivedFiles"."Shelf"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedFiles"."Shelf" IS 'Giá, kệ chứa hồ sơ';


--
-- Name: COLUMN "ArchivedFiles"."Cabinet"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedFiles"."Cabinet" IS 'Tủ đựng hồ sơ';


--
-- Name: COLUMN "ArchivedFiles"."BoxNumber"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedFiles"."BoxNumber" IS 'Hộp số';


--
-- Name: COLUMN "ArchivedFiles"."FileNumber"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedFiles"."FileNumber" IS 'Hồ sơ số';


--
-- Name: COLUMN "ArchivedFiles"."FileYear"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedFiles"."FileYear" IS 'Năm hình thành hồ sơ';


--
-- Name: COLUMN "ArchivedFiles"."FileNotation"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedFiles"."FileNotation" IS 'Số và ký hiệu hồ sơ';


--
-- Name: COLUMN "ArchivedFiles"."Title"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedFiles"."Title" IS 'Tiêu đề hồ sơ';


--
-- Name: COLUMN "ArchivedFiles"."Maintenance"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedFiles"."Maintenance" IS 'Thời hạn bảo quản hồ sơ';


--
-- Name: COLUMN "ArchivedFiles"."Rights"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedFiles"."Rights" IS 'Chế độ sử dụng hồ sơ có hạn chế hay là không';


--
-- Name: COLUMN "ArchivedFiles"."Description"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedFiles"."Description" IS 'Ghi chú thêm về hồ sơ';


--
-- Name: COLUMN "ArchivedFiles"."InforSign"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedFiles"."InforSign" IS 'Ký hiệu thông tin hồ sơ';


--
-- Name: COLUMN "ArchivedFiles"."Keyword"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedFiles"."Keyword" IS 'Từ khóa hỗ trợ tra cứu hồ sơ';


--
-- Name: COLUMN "ArchivedFiles"."SheetNumber"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedFiles"."SheetNumber" IS 'Số tờ tất cả văn bản trong hồ sơ';


--
-- Name: COLUMN "ArchivedFiles"."Format"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedFiles"."Format" IS 'Trạng thái vật lý của hồ sơ';


--
-- Name: COLUMN "ArchivedFiles"."Status"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedFiles"."Status" IS 'Trạng thái hồ sơ trong cơ sở dữ liệu';


--
-- Name: COLUMN "ArchivedFiles"."AssignedTo"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."ArchivedFiles"."AssignedTo" IS 'Cán bộ đang thực hiện số hóa hồ sơ';


--
-- Name: Catalogues; Type: TABLE; Schema: sdoc; Owner: sdoc
--

CREATE TABLE sdoc."Catalogues" (
    "Id" uuid NOT NULL,
    "CatalogueNumber" integer NOT NULL,
    "StartYear" integer,
    "EndYear" integer,
    "Description" character varying(1000),
    "FondId" uuid NOT NULL,
    "PageNumber" integer NOT NULL,
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone
);


ALTER TABLE sdoc."Catalogues" OWNER TO sdoc;

--
-- Name: TABLE "Catalogues"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON TABLE sdoc."Catalogues" IS 'Mục lục lưu trữ hồ sơ';


--
-- Name: COLUMN "Catalogues"."CatalogueNumber"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Catalogues"."CatalogueNumber" IS 'Mục lục số trong phông do cơ quan lưu trữ cấp';


--
-- Name: COLUMN "Catalogues"."StartYear"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Catalogues"."StartYear" IS 'Năm bắt đầu';


--
-- Name: COLUMN "Catalogues"."EndYear"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Catalogues"."EndYear" IS 'Năm kết thúc';


--
-- Name: COLUMN "Catalogues"."Description"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Catalogues"."Description" IS 'Ghi chú thêm những thông tin cần thiết khác';


--
-- Name: COLUMN "Catalogues"."FondId"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Catalogues"."FondId" IS 'Id phông lưu trữ';


--
-- Name: COLUMN "Catalogues"."PageNumber"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Catalogues"."PageNumber" IS 'Tổng số trang tài liệu trong mục lục đã số hóa';


--
-- Name: DocTypes; Type: TABLE; Schema: sdoc; Owner: sdoc
--

CREATE TABLE sdoc."DocTypes" (
    "Id" integer NOT NULL,
    "TypeName" character varying(100) NOT NULL,
    "TypeCode" character varying(10),
    "TypeGroup" character varying(64) NOT NULL,
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone
);


ALTER TABLE sdoc."DocTypes" OWNER TO sdoc;

--
-- Name: TABLE "DocTypes"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON TABLE sdoc."DocTypes" IS 'Loại văn bản';


--
-- Name: COLUMN "DocTypes"."TypeName"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."DocTypes"."TypeName" IS 'Tên loại văn bản';


--
-- Name: COLUMN "DocTypes"."TypeCode"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."DocTypes"."TypeCode" IS 'Mã loại văn bản';


--
-- Name: COLUMN "DocTypes"."TypeGroup"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."DocTypes"."TypeGroup" IS 'Loại văn bản quy phạm pháp luật hay hành chính';


--
-- Name: Documents; Type: TABLE; Schema: sdoc; Owner: sdoc
--

CREATE TABLE sdoc."Documents" (
    "Id" uuid NOT NULL,
    "SearchVector" tsvector GENERATED ALWAYS AS (to_tsvector('public.vi'::regconfig, ((((((((((((((("Subject")::text || ' '::text) || (COALESCE("Keyword", ''::character varying))::text) || ' '::text) || (COALESCE("CodeNotation", ''::character varying))::text) || ' '::text) || (COALESCE("CodeNumber", ''::character varying))::text) || ' '::text) || (COALESCE("Description", ''::character varying))::text) || ' '::text) || (COALESCE("Autograph", ''::character varying))::text) || ' '::text) || (COALESCE("InforSign", ''::character varying))::text) || ' '::text) || ("DocCode")::text))) STORED,
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone,
    "FileId" uuid NOT NULL,
    "DocOrdinal" smallint NOT NULL,
    "DocTypeId" integer,
    "CodeNumber" character varying(11),
    "CodeNotation" character varying(30),
    "IssuedDate" timestamp with time zone NOT NULL,
    "OrganName" character varying(200),
    "Subject" character varying(500) NOT NULL,
    "Language" character varying(100),
    "PageAmount" smallint NOT NULL,
    "SheetAmount" smallint,
    "SheetIndex" character varying(10),
    "Description" character varying(500),
    "InforSign" character varying(30),
    "Keyword" character varying(100),
    "Mode" boolean NOT NULL,
    "ConfidenceLevel" character varying(20) NOT NULL,
    "Autograph" character varying(2000),
    "Format" character varying(50),
    "DocCode" character varying(30) NOT NULL,
    "IsSigned" boolean NOT NULL
);


ALTER TABLE sdoc."Documents" OWNER TO sdoc;

--
-- Name: TABLE "Documents"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON TABLE sdoc."Documents" IS 'Văn bản';


--
-- Name: COLUMN "Documents"."FileId"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."FileId" IS 'Id hồ sơ';


--
-- Name: COLUMN "Documents"."DocOrdinal"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."DocOrdinal" IS 'Số thứ tự văn bản trong hồ sơ';


--
-- Name: COLUMN "Documents"."DocTypeId"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."DocTypeId" IS 'Id loại văn bản';


--
-- Name: COLUMN "Documents"."CodeNumber"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."CodeNumber" IS 'Số của văn bản';


--
-- Name: COLUMN "Documents"."CodeNotation"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."CodeNotation" IS 'Ký hiệu văn bản';


--
-- Name: COLUMN "Documents"."IssuedDate"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."IssuedDate" IS 'Ngày ban hành văn bản';


--
-- Name: COLUMN "Documents"."OrganName"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."OrganName" IS 'Tên cơ quan ban hành văn bản';


--
-- Name: COLUMN "Documents"."Subject"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."Subject" IS 'Trích yếu văn bản';


--
-- Name: COLUMN "Documents"."Language"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."Language" IS 'Ngôn ngữ văn bản';


--
-- Name: COLUMN "Documents"."PageAmount"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."PageAmount" IS 'Số trang văn bản';


--
-- Name: COLUMN "Documents"."SheetAmount"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."SheetAmount" IS 'Số lượng tờ giấy văn bản';


--
-- Name: COLUMN "Documents"."SheetIndex"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."SheetIndex" IS 'Tờ số của văn bản trong hồ sơ';


--
-- Name: COLUMN "Documents"."Description"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."Description" IS 'Ghi chú thêm về văn bản';


--
-- Name: COLUMN "Documents"."InforSign"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."InforSign" IS 'Ký hiệu thông tin văn bản';


--
-- Name: COLUMN "Documents"."Keyword"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."Keyword" IS 'Từ khóa văn bản hỗ trợ tìm kiếm';


--
-- Name: COLUMN "Documents"."Mode"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."Mode" IS 'Mức độ sử dụng văn bản (có hạn chế hay là không)';


--
-- Name: COLUMN "Documents"."ConfidenceLevel"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."ConfidenceLevel" IS 'Độ tin cậy văn bản (bản chính, bản sao...)';


--
-- Name: COLUMN "Documents"."Autograph"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."Autograph" IS 'Bút tích (chữ ký phê duyệt, góp ý, sửa chữa... trên văn bản)';


--
-- Name: COLUMN "Documents"."Format"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."Format" IS 'Tình trạng vật lý hiện tại của văn bản';


--
-- Name: COLUMN "Documents"."DocCode"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."DocCode" IS 'Mã quy định để đặt tên văn bản';


--
-- Name: COLUMN "Documents"."IsSigned"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Documents"."IsSigned" IS 'Trạng thái ký số văn bản';


--
-- Name: EntityFrameworkHiLoSequence; Type: SEQUENCE; Schema: sdoc; Owner: sdoc
--

CREATE SEQUENCE sdoc."EntityFrameworkHiLoSequence"
    START WITH 1
    INCREMENT BY 10
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE sdoc."EntityFrameworkHiLoSequence" OWNER TO sdoc;

--
-- Name: FileGroups; Type: TABLE; Schema: sdoc; Owner: sdoc
--

CREATE TABLE sdoc."FileGroups" (
    "Id" integer NOT NULL,
    "Name" character varying(200) NOT NULL,
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone
);


ALTER TABLE sdoc."FileGroups" OWNER TO sdoc;

--
-- Name: TABLE "FileGroups"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON TABLE sdoc."FileGroups" IS 'Loại hồ sơ, nhóm tài liệu';


--
-- Name: COLUMN "FileGroups"."Name"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."FileGroups"."Name" IS 'Tên loại hồ sơ theo nghiệp vụ, chức năng';


--
-- Name: FileHistories; Type: TABLE; Schema: sdoc; Owner: sdoc
--

CREATE TABLE sdoc."FileHistories" (
    "Id" bigint NOT NULL,
    "FileId" uuid NOT NULL,
    "Status" character varying(64) NOT NULL,
    "AssignTo" uuid,
    "Description" text NOT NULL,
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone
);


ALTER TABLE sdoc."FileHistories" OWNER TO sdoc;

--
-- Name: TABLE "FileHistories"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON TABLE sdoc."FileHistories" IS 'Lịch sử số hóa hồ sơ';


--
-- Name: COLUMN "FileHistories"."FileId"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."FileHistories"."FileId" IS 'Mã hồ sơ';


--
-- Name: COLUMN "FileHistories"."Status"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."FileHistories"."Status" IS 'Trạng thái hồ sơ';


--
-- Name: COLUMN "FileHistories"."AssignTo"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."FileHistories"."AssignTo" IS 'Mã cán bộ số hóa được phân công';


--
-- Name: COLUMN "FileHistories"."Description"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."FileHistories"."Description" IS 'Ghi chú';


--
-- Name: Files; Type: TABLE; Schema: sdoc; Owner: sdoc
--

CREATE TABLE sdoc."Files" (
    "Id" uuid NOT NULL,
    "PageNumber" integer NOT NULL,
    "SearchVector" tsvector GENERATED ALWAYS AS (to_tsvector('public.vi'::regconfig, ((((((((((((("FileNumber")::text || ' '::text) || (COALESCE("FileNotation", ''::character varying))::text) || ' '::text) || ("Title")::text) || ' '::text) || (COALESCE("Description", ''::character varying))::text) || ' '::text) || (COALESCE("Keyword", ''::character varying))::text) || ' '::text) || ("FileCode")::text) || ' '::text) || (COALESCE("InforSign", ''::character varying))::text))) STORED,
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone,
    "CatalogueId" uuid NOT NULL,
    "FileGroupId" integer,
    "FileCode" character varying(30) NOT NULL,
    "RepositoryId" uuid,
    "Shelf" character varying(200),
    "Cabinet" character varying(200),
    "BoxNumber" smallint,
    "FileNumber" character varying(10) NOT NULL,
    "FileYear" smallint,
    "FileNotation" character varying(20),
    "Title" character varying(1000) NOT NULL,
    "Maintenance" integer NOT NULL,
    "Rights" boolean NOT NULL,
    "Description" character varying(2000),
    "InforSign" character varying(30),
    "Keyword" character varying(100),
    "SheetNumber" integer,
    "Format" character varying(50),
    "Status" character varying(64) NOT NULL,
    "AssignedTo" uuid
);


ALTER TABLE sdoc."Files" OWNER TO sdoc;

--
-- Name: TABLE "Files"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON TABLE sdoc."Files" IS 'Tập hồ sơ lưu trữ';


--
-- Name: COLUMN "Files"."PageNumber"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."PageNumber" IS 'Tổng số trang trong hồ sơ';


--
-- Name: COLUMN "Files"."CatalogueId"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."CatalogueId" IS 'Id mục lục hồ sơ';


--
-- Name: COLUMN "Files"."FileGroupId"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."FileGroupId" IS 'Id nhóm tài liệu, loại hồ sơ';


--
-- Name: COLUMN "Files"."FileCode"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."FileCode" IS 'Mã hồ sơ theo quy định của BNV';


--
-- Name: COLUMN "Files"."RepositoryId"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."RepositoryId" IS 'Id kho lưu trữ vật lý';


--
-- Name: COLUMN "Files"."Shelf"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."Shelf" IS 'Giá, kệ chứa hồ sơ';


--
-- Name: COLUMN "Files"."Cabinet"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."Cabinet" IS 'Tủ đựng hồ sơ';


--
-- Name: COLUMN "Files"."BoxNumber"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."BoxNumber" IS 'Hộp số';


--
-- Name: COLUMN "Files"."FileNumber"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."FileNumber" IS 'Hồ sơ số';


--
-- Name: COLUMN "Files"."FileYear"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."FileYear" IS 'Năm hình thành hồ sơ';


--
-- Name: COLUMN "Files"."FileNotation"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."FileNotation" IS 'Số và ký hiệu hồ sơ';


--
-- Name: COLUMN "Files"."Title"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."Title" IS 'Tiêu đề hồ sơ';


--
-- Name: COLUMN "Files"."Maintenance"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."Maintenance" IS 'Thời hạn bảo quản hồ sơ';


--
-- Name: COLUMN "Files"."Rights"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."Rights" IS 'Chế độ sử dụng hồ sơ có hạn chế hay là không';


--
-- Name: COLUMN "Files"."Description"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."Description" IS 'Ghi chú thêm về hồ sơ';


--
-- Name: COLUMN "Files"."InforSign"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."InforSign" IS 'Ký hiệu thông tin hồ sơ';


--
-- Name: COLUMN "Files"."Keyword"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."Keyword" IS 'Từ khóa hỗ trợ tra cứu hồ sơ';


--
-- Name: COLUMN "Files"."SheetNumber"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."SheetNumber" IS 'Số tờ tất cả văn bản trong hồ sơ';


--
-- Name: COLUMN "Files"."Format"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."Format" IS 'Trạng thái vật lý của hồ sơ';


--
-- Name: COLUMN "Files"."Status"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."Status" IS 'Trạng thái hồ sơ trong cơ sở dữ liệu';


--
-- Name: COLUMN "Files"."AssignedTo"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Files"."AssignedTo" IS 'Cán bộ đang thực hiện số hóa hồ sơ';


--
-- Name: Fonds; Type: TABLE; Schema: sdoc; Owner: sdoc
--

CREATE TABLE sdoc."Fonds" (
    "Id" uuid NOT NULL,
    "OrganId" character varying(13),
    "OrganName" character varying(200),
    "FondNumber" integer NOT NULL,
    "FondCode" character varying(13) NOT NULL,
    "FondName" character varying(200) NOT NULL,
    "FondHistory" text,
    "PaperTotal" integer NOT NULL,
    "OtherTypes" character varying(300),
    "LookupTools" character varying(50),
    "CopyNumber" integer NOT NULL,
    "Description" character varying(1000),
    "IsOpen" boolean NOT NULL,
    "PaperDigital" integer NOT NULL,
    "SearchVector" tsvector GENERATED ALWAYS AS (to_tsvector('public.vi'::regconfig, ((((((("FondName")::text || ' '::text) || COALESCE("FondHistory", ''::text)) || ' '::text) || ("FondCode")::text) || ' '::text) || (COALESCE("Description", ''::character varying))::text))) STORED,
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone
);


ALTER TABLE sdoc."Fonds" OWNER TO sdoc;

--
-- Name: TABLE "Fonds"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON TABLE sdoc."Fonds" IS 'Phông lưu trữ';


--
-- Name: COLUMN "Fonds"."OrganId"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Fonds"."OrganId" IS 'Mã cơ quan đơn vị hình thành phông hoặc lưu trữ (phông kín)';


--
-- Name: COLUMN "Fonds"."OrganName"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Fonds"."OrganName" IS 'Tên cơ quan, đơn vị hình thành phông hoặc lưu trữ';


--
-- Name: COLUMN "Fonds"."FondNumber"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Fonds"."FondNumber" IS 'Phông số do cơ quan lưu trữ quy định.';


--
-- Name: COLUMN "Fonds"."FondCode"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Fonds"."FondCode" IS 'Mã phông theo quy định của BNV';


--
-- Name: COLUMN "Fonds"."FondName"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Fonds"."FondName" IS 'Tên phông do cơ quan lưu trữ quy định';


--
-- Name: COLUMN "Fonds"."FondHistory"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Fonds"."FondHistory" IS 'Lịch sử hình thành phông';


--
-- Name: COLUMN "Fonds"."PaperTotal"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Fonds"."PaperTotal" IS 'Tổng số mét giá tài liệu giấy';


--
-- Name: COLUMN "Fonds"."OtherTypes"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Fonds"."OtherTypes" IS 'Các loại hình tài liệu khác như: phim, ảnh, ghi âm...';


--
-- Name: COLUMN "Fonds"."LookupTools"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Fonds"."LookupTools" IS 'Các công cụ tra cứu tài liệu hiện có';


--
-- Name: COLUMN "Fonds"."CopyNumber"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Fonds"."CopyNumber" IS 'Số lượng trang tài liệu đã lập bản sao bảo hiểm';


--
-- Name: COLUMN "Fonds"."Description"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Fonds"."Description" IS 'Ghi chú thêm những thông tin cần thiết khác';


--
-- Name: COLUMN "Fonds"."IsOpen"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Fonds"."IsOpen" IS 'Phông đóng hay phông mở';


--
-- Name: COLUMN "Fonds"."PaperDigital"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Fonds"."PaperDigital" IS 'Số trang tài liệu giấy đã số hóa';


--
-- Name: Photos; Type: TABLE; Schema: sdoc; Owner: sdoc
--

CREATE TABLE sdoc."Photos" (
    "Id" uuid NOT NULL,
    "OrganId" character varying(13) NOT NULL,
    "ArchivesNumber" character varying(50) NOT NULL,
    "InforSign" character varying(30),
    "EventName" character varying(500) NOT NULL,
    "ImageTitle" character varying(500) NOT NULL,
    "Description" character varying(500),
    "Photographer" character varying(300) NOT NULL,
    "PhotoPlace" character varying(300) NOT NULL,
    "PhotoTime" timestamp with time zone NOT NULL,
    "Colour" character varying(50),
    "FilmSize" character varying(5),
    "DocAttached" character varying(300),
    "Mode" boolean NOT NULL,
    "Format" character varying(50),
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone
);


ALTER TABLE sdoc."Photos" OWNER TO sdoc;

--
-- Name: TABLE "Photos"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON TABLE sdoc."Photos" IS 'Tài liệu phim âm bản, ảnh';


--
-- Name: COLUMN "Photos"."OrganId"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Photos"."OrganId" IS 'Mã cơ quan lưu trữ';


--
-- Name: COLUMN "Photos"."ArchivesNumber"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Photos"."ArchivesNumber" IS 'Số lưu trữ';


--
-- Name: COLUMN "Photos"."InforSign"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Photos"."InforSign" IS 'Ký hiệu thông tin';


--
-- Name: COLUMN "Photos"."EventName"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Photos"."EventName" IS 'Tên sự kiện trong phim/ảnh';


--
-- Name: COLUMN "Photos"."ImageTitle"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Photos"."ImageTitle" IS 'Tiêu đề phim/ảnh';


--
-- Name: COLUMN "Photos"."Description"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Photos"."Description" IS 'Ghi chú thêm về phim/ảnh';


--
-- Name: COLUMN "Photos"."Photographer"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Photos"."Photographer" IS 'Tác giả chụp phim/ảnh';


--
-- Name: COLUMN "Photos"."PhotoPlace"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Photos"."PhotoPlace" IS 'Địa điểm chụp phim/ảnh';


--
-- Name: COLUMN "Photos"."PhotoTime"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Photos"."PhotoTime" IS 'Thời điểm chụp phim/ảnh';


--
-- Name: COLUMN "Photos"."Colour"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Photos"."Colour" IS 'Màu sắc phim/ảnh';


--
-- Name: COLUMN "Photos"."FilmSize"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Photos"."FilmSize" IS 'Kích cỡ phim/ảnh';


--
-- Name: COLUMN "Photos"."DocAttached"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Photos"."DocAttached" IS 'Tài liệu đi kèm theo phim/ảnh';


--
-- Name: COLUMN "Photos"."Mode"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Photos"."Mode" IS 'Chế độ sử dụng phim/ảnh có hạn chế hay là không';


--
-- Name: COLUMN "Photos"."Format"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Photos"."Format" IS 'Tình trạng vật lý phim/ảnh';


--
-- Name: Records; Type: TABLE; Schema: sdoc; Owner: sdoc
--

CREATE TABLE sdoc."Records" (
    "Id" uuid NOT NULL,
    "OrganId" character varying(13) NOT NULL,
    "ArchivesNumber" character varying(50) NOT NULL,
    "InforSign" character varying(30),
    "EventName" character varying(500) NOT NULL,
    "MovieTitle" character varying(500) NOT NULL,
    "Description" character varying(500),
    "Recorder" character varying(300) NOT NULL,
    "RecordPlace" character varying(300) NOT NULL,
    "RecordDate" timestamp with time zone NOT NULL,
    "Language" character varying(200),
    "PlayTime" character varying(8) NOT NULL,
    "DocAttached" character varying(300),
    "Mode" boolean NOT NULL,
    "Quality" character varying(50) NOT NULL,
    "Format" character varying(50),
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone
);


ALTER TABLE sdoc."Records" OWNER TO sdoc;

--
-- Name: TABLE "Records"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON TABLE sdoc."Records" IS 'Tài liệu ghi hình, ghi âm';


--
-- Name: COLUMN "Records"."OrganId"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Records"."OrganId" IS 'Mã cơ quan lưu trữ';


--
-- Name: COLUMN "Records"."ArchivesNumber"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Records"."ArchivesNumber" IS 'Số lưu trữ';


--
-- Name: COLUMN "Records"."InforSign"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Records"."InforSign" IS 'Ký hiệu thông tin';


--
-- Name: COLUMN "Records"."EventName"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Records"."EventName" IS 'Tên sự kiện trong phim/âm thanh';


--
-- Name: COLUMN "Records"."MovieTitle"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Records"."MovieTitle" IS 'Tiêu đề phim/âm thanh';


--
-- Name: COLUMN "Records"."Description"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Records"."Description" IS 'Ghi chú thêm về phim/âm thanh';


--
-- Name: COLUMN "Records"."Recorder"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Records"."Recorder" IS 'Tác giả ghi hình/âm';


--
-- Name: COLUMN "Records"."RecordPlace"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Records"."RecordPlace" IS 'Địa điểm ghi hình/âm';


--
-- Name: COLUMN "Records"."RecordDate"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Records"."RecordDate" IS 'Ngày ghi hình/âm';


--
-- Name: COLUMN "Records"."Language"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Records"."Language" IS 'Ngôn ngữ phim/âm thanh';


--
-- Name: COLUMN "Records"."PlayTime"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Records"."PlayTime" IS 'Thời lượng phim/âm thanh';


--
-- Name: COLUMN "Records"."DocAttached"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Records"."DocAttached" IS 'Tài liệu đi kèm theo phim/ảnh';


--
-- Name: COLUMN "Records"."Mode"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Records"."Mode" IS 'Chế độ sử dụng phim/ảnh có hạn chế hay là không';


--
-- Name: COLUMN "Records"."Quality"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Records"."Quality" IS 'Chất lượng phim/âm thanh';


--
-- Name: COLUMN "Records"."Format"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Records"."Format" IS 'Tình trạng vật lý phim/âm thanh';


--
-- Name: Repositories; Type: TABLE; Schema: sdoc; Owner: sdoc
--

CREATE TABLE sdoc."Repositories" (
    "Id" uuid NOT NULL,
    "Name" character varying(100) NOT NULL,
    "Location" character varying(100),
    "Address" character varying(200) NOT NULL,
    "Area" integer,
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone
);


ALTER TABLE sdoc."Repositories" OWNER TO sdoc;

--
-- Name: TABLE "Repositories"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON TABLE sdoc."Repositories" IS 'Kho lưu trữ vật lý';


--
-- Name: COLUMN "Repositories"."Name"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Repositories"."Name" IS 'Tên kho lưu trữ';


--
-- Name: COLUMN "Repositories"."Location"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Repositories"."Location" IS 'Vị trí cụ thể của kho (tầng, phòng,...)';


--
-- Name: COLUMN "Repositories"."Address"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Repositories"."Address" IS 'Địa chỉ kho lưu trữ';


--
-- Name: COLUMN "Repositories"."Area"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Repositories"."Area" IS 'Diện tích kho (m²)';


--
-- Name: Settings; Type: TABLE; Schema: sdoc; Owner: sdoc
--

CREATE TABLE sdoc."Settings" (
    "Id" integer NOT NULL,
    "SettingCode" character varying(10) NOT NULL,
    "SettingName" character varying(50) NOT NULL,
    "SettingValue" character varying(200) NOT NULL,
    "Description" character varying(200),
    "CreatedBy" character varying(50) DEFAULT 'system'::character varying,
    "CreatedOn" timestamp with time zone,
    "ModifiedBy" character varying(50) DEFAULT 'system'::character varying,
    "ModifiedOn" timestamp with time zone
);


ALTER TABLE sdoc."Settings" OWNER TO sdoc;

--
-- Name: COLUMN "Settings"."SettingCode"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Settings"."SettingCode" IS 'Mã thuộc tính thiết lập ứng dụng';


--
-- Name: COLUMN "Settings"."SettingName"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Settings"."SettingName" IS 'Tên thuộc tính thiết lập ứng dụng';


--
-- Name: COLUMN "Settings"."SettingValue"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Settings"."SettingValue" IS 'Giá trị thuộc tính thiết lập ứng dụng';


--
-- Name: COLUMN "Settings"."Description"; Type: COMMENT; Schema: sdoc; Owner: sdoc
--

COMMENT ON COLUMN sdoc."Settings"."Description" IS 'Mô tả thêm';


--
-- Name: __SDocMigrationsHistory; Type: TABLE; Schema: sdoc; Owner: sdoc
--

CREATE TABLE sdoc."__SDocMigrationsHistory" (
    "MigrationId" character varying(150) NOT NULL,
    "ProductVersion" character varying(32) NOT NULL
);


ALTER TABLE sdoc."__SDocMigrationsHistory" OWNER TO sdoc;

--
-- Data for Name: Countries; Type: TABLE DATA; Schema: category; Owner: sdoc
--

INSERT INTO category."Countries" VALUES (1, 'Afghanistan', NULL, NULL, NULL, 'Kabul', '004', '93', '.af', '🇦🇫', 'system', '2023-07-26 08:40:15.262235+07', 'system', '2023-07-26 08:40:15.262235+07');
INSERT INTO category."Countries" VALUES (2, 'Aland Islands', NULL, NULL, NULL, 'Mariehamn', '248', '358-18', '.ax', '🇦🇽', 'system', '2023-07-26 08:40:15.26361+07', 'system', '2023-07-26 08:40:15.263611+07');
INSERT INTO category."Countries" VALUES (3, 'Albania', NULL, NULL, NULL, 'Tirana', '008', '355', '.al', '🇦🇱', 'system', '2023-07-26 08:40:15.263623+07', 'system', '2023-07-26 08:40:15.263623+07');
INSERT INTO category."Countries" VALUES (4, 'Algeria', NULL, NULL, NULL, 'Algiers', '012', '213', '.dz', '🇩🇿', 'system', '2023-07-26 08:40:15.263629+07', 'system', '2023-07-26 08:40:15.263629+07');
INSERT INTO category."Countries" VALUES (5, 'American Samoa', NULL, NULL, NULL, 'Pago Pago', '016', '1-684', '.as', '🇦🇸', 'system', '2023-07-26 08:40:15.263634+07', 'system', '2023-07-26 08:40:15.263634+07');
INSERT INTO category."Countries" VALUES (6, 'Andorra', NULL, NULL, NULL, 'Andorra la Vella', '020', '376', '.ad', '🇦🇩', 'system', '2023-07-26 08:40:15.26364+07', 'system', '2023-07-26 08:40:15.26364+07');
INSERT INTO category."Countries" VALUES (7, 'Angola', NULL, NULL, NULL, 'Luanda', '024', '244', '.ao', '🇦🇴', 'system', '2023-07-26 08:40:15.263645+07', 'system', '2023-07-26 08:40:15.263645+07');
INSERT INTO category."Countries" VALUES (8, 'Anguilla', NULL, NULL, NULL, 'The Valley', '660', '1-264', '.ai', '🇦🇮', 'system', '2023-07-26 08:40:15.263649+07', 'system', '2023-07-26 08:40:15.263649+07');
INSERT INTO category."Countries" VALUES (9, 'Antarctica', NULL, NULL, NULL, '', '010', '672', '.aq', '🇦🇶', 'system', '2023-07-26 08:40:15.263654+07', 'system', '2023-07-26 08:40:15.263654+07');
INSERT INTO category."Countries" VALUES (10, 'Antigua And Barbuda', NULL, NULL, NULL, 'St. John''s', '028', '1-268', '.ag', '🇦🇬', 'system', '2023-07-26 08:40:15.26366+07', 'system', '2023-07-26 08:40:15.26366+07');
INSERT INTO category."Countries" VALUES (11, 'Argentina', NULL, NULL, NULL, 'Buenos Aires', '032', '54', '.ar', '🇦🇷', 'system', '2023-07-26 08:40:15.263666+07', 'system', '2023-07-26 08:40:15.263666+07');
INSERT INTO category."Countries" VALUES (12, 'Armenia', NULL, NULL, NULL, 'Yerevan', '051', '374', '.am', '🇦🇲', 'system', '2023-07-26 08:40:15.263671+07', 'system', '2023-07-26 08:40:15.263671+07');
INSERT INTO category."Countries" VALUES (13, 'Aruba', NULL, NULL, NULL, 'Oranjestad', '533', '297', '.aw', '🇦🇼', 'system', '2023-07-26 08:40:15.263676+07', 'system', '2023-07-26 08:40:15.263676+07');
INSERT INTO category."Countries" VALUES (14, 'Australia', NULL, NULL, NULL, 'Canberra', '036', '61', '.au', '🇦🇺', 'system', '2023-07-26 08:40:15.26368+07', 'system', '2023-07-26 08:40:15.26368+07');
INSERT INTO category."Countries" VALUES (15, 'Austria', NULL, NULL, NULL, 'Vienna', '040', '43', '.at', '🇦🇹', 'system', '2023-07-26 08:40:15.263685+07', 'system', '2023-07-26 08:40:15.263685+07');
INSERT INTO category."Countries" VALUES (16, 'Azerbaijan', NULL, NULL, NULL, 'Baku', '031', '994', '.az', '🇦🇿', 'system', '2023-07-26 08:40:15.26369+07', 'system', '2023-07-26 08:40:15.26369+07');
INSERT INTO category."Countries" VALUES (17, 'The Bahamas', NULL, NULL, NULL, 'Nassau', '044', '1-242', '.bs', '🇧🇸', 'system', '2023-07-26 08:40:15.264747+07', 'system', '2023-07-26 08:40:15.264747+07');
INSERT INTO category."Countries" VALUES (18, 'Bahrain', NULL, NULL, NULL, 'Manama', '048', '973', '.bh', '🇧🇭', 'system', '2023-07-26 08:40:15.263694+07', 'system', '2023-07-26 08:40:15.263694+07');
INSERT INTO category."Countries" VALUES (19, 'Bangladesh', NULL, NULL, NULL, 'Dhaka', '050', '880', '.bd', '🇧🇩', 'system', '2023-07-26 08:40:15.263699+07', 'system', '2023-07-26 08:40:15.263699+07');
INSERT INTO category."Countries" VALUES (20, 'Barbados', NULL, NULL, NULL, 'Bridgetown', '052', '1-246', '.bb', '🇧🇧', 'system', '2023-07-26 08:40:15.263704+07', 'system', '2023-07-26 08:40:15.263704+07');
INSERT INTO category."Countries" VALUES (21, 'Belarus', NULL, NULL, NULL, 'Minsk', '112', '375', '.by', '🇧🇾', 'system', '2023-07-26 08:40:15.263709+07', 'system', '2023-07-26 08:40:15.263709+07');
INSERT INTO category."Countries" VALUES (22, 'Belgium', NULL, NULL, NULL, 'Brussels', '056', '32', '.be', '🇧🇪', 'system', '2023-07-26 08:40:15.263713+07', 'system', '2023-07-26 08:40:15.263713+07');
INSERT INTO category."Countries" VALUES (23, 'Belize', NULL, NULL, NULL, 'Belmopan', '084', '501', '.bz', '🇧🇿', 'system', '2023-07-26 08:40:15.263717+07', 'system', '2023-07-26 08:40:15.263718+07');
INSERT INTO category."Countries" VALUES (24, 'Benin', NULL, NULL, NULL, 'Porto-Novo', '204', '229', '.bj', '🇧🇯', 'system', '2023-07-26 08:40:15.263722+07', 'system', '2023-07-26 08:40:15.263722+07');
INSERT INTO category."Countries" VALUES (25, 'Bermuda', NULL, NULL, NULL, 'Hamilton', '060', '1-441', '.bm', '🇧🇲', 'system', '2023-07-26 08:40:15.263727+07', 'system', '2023-07-26 08:40:15.263727+07');
INSERT INTO category."Countries" VALUES (26, 'Bhutan', NULL, NULL, NULL, 'Thimphu', '064', '975', '.bt', '🇧🇹', 'system', '2023-07-26 08:40:15.263732+07', 'system', '2023-07-26 08:40:15.263732+07');
INSERT INTO category."Countries" VALUES (27, 'Bolivia', NULL, NULL, NULL, 'Sucre', '068', '591', '.bo', '🇧🇴', 'system', '2023-07-26 08:40:15.263736+07', 'system', '2023-07-26 08:40:15.263736+07');
INSERT INTO category."Countries" VALUES (28, 'Bosnia and Herzegovina', NULL, NULL, NULL, 'Sarajevo', '070', '387', '.ba', '🇧🇦', 'system', '2023-07-26 08:40:15.263746+07', 'system', '2023-07-26 08:40:15.263746+07');
INSERT INTO category."Countries" VALUES (29, 'Botswana', NULL, NULL, NULL, 'Gaborone', '072', '267', '.bw', '🇧🇼', 'system', '2023-07-26 08:40:15.263751+07', 'system', '2023-07-26 08:40:15.263751+07');
INSERT INTO category."Countries" VALUES (30, 'Bouvet Island', NULL, NULL, NULL, '', '074', '0055', '.bv', '🇧🇻', 'system', '2023-07-26 08:40:15.263755+07', 'system', '2023-07-26 08:40:15.263755+07');
INSERT INTO category."Countries" VALUES (31, 'Brazil', NULL, NULL, NULL, 'Brasilia', '076', '55', '.br', '🇧🇷', 'system', '2023-07-26 08:40:15.26376+07', 'system', '2023-07-26 08:40:15.26376+07');
INSERT INTO category."Countries" VALUES (32, 'British Indian Ocean Territory', NULL, NULL, NULL, 'Diego Garcia', '086', '246', '.io', '🇮🇴', 'system', '2023-07-26 08:40:15.263764+07', 'system', '2023-07-26 08:40:15.263764+07');
INSERT INTO category."Countries" VALUES (33, 'Brunei', NULL, NULL, NULL, 'Bandar Seri Begawan', '096', '673', '.bn', '🇧🇳', 'system', '2023-07-26 08:40:15.26377+07', 'system', '2023-07-26 08:40:15.26377+07');
INSERT INTO category."Countries" VALUES (34, 'Bulgaria', NULL, NULL, NULL, 'Sofia', '100', '359', '.bg', '🇧🇬', 'system', '2023-07-26 08:40:15.263775+07', 'system', '2023-07-26 08:40:15.263775+07');
INSERT INTO category."Countries" VALUES (35, 'Burkina Faso', NULL, NULL, NULL, 'Ouagadougou', '854', '226', '.bf', '🇧🇫', 'system', '2023-07-26 08:40:15.263779+07', 'system', '2023-07-26 08:40:15.263779+07');
INSERT INTO category."Countries" VALUES (36, 'Burundi', NULL, NULL, NULL, 'Bujumbura', '108', '257', '.bi', '🇧🇮', 'system', '2023-07-26 08:40:15.263784+07', 'system', '2023-07-26 08:40:15.263784+07');
INSERT INTO category."Countries" VALUES (37, 'Cambodia', NULL, NULL, NULL, 'Phnom Penh', '116', '855', '.kh', '🇰🇭', 'system', '2023-07-26 08:40:15.263789+07', 'system', '2023-07-26 08:40:15.263789+07');
INSERT INTO category."Countries" VALUES (38, 'Cameroon', NULL, NULL, NULL, 'Yaounde', '120', '237', '.cm', '🇨🇲', 'system', '2023-07-26 08:40:15.263793+07', 'system', '2023-07-26 08:40:15.263794+07');
INSERT INTO category."Countries" VALUES (39, 'Canada', NULL, NULL, NULL, 'Ottawa', '124', '1', '.ca', '🇨🇦', 'system', '2023-07-26 08:40:15.263798+07', 'system', '2023-07-26 08:40:15.263798+07');
INSERT INTO category."Countries" VALUES (40, 'Cape Verde', NULL, NULL, NULL, 'Praia', '132', '238', '.cv', '🇨🇻', 'system', '2023-07-26 08:40:15.263803+07', 'system', '2023-07-26 08:40:15.263803+07');
INSERT INTO category."Countries" VALUES (41, 'Cayman Islands', NULL, NULL, NULL, 'George Town', '136', '1-345', '.ky', '🇰🇾', 'system', '2023-07-26 08:40:15.263807+07', 'system', '2023-07-26 08:40:15.263808+07');
INSERT INTO category."Countries" VALUES (42, 'Central African Republic', NULL, NULL, NULL, 'Bangui', '140', '236', '.cf', '🇨🇫', 'system', '2023-07-26 08:40:15.263812+07', 'system', '2023-07-26 08:40:15.263812+07');
INSERT INTO category."Countries" VALUES (43, 'Chad', NULL, NULL, NULL, 'N''Djamena', '148', '235', '.td', '🇹🇩', 'system', '2023-07-26 08:40:15.263817+07', 'system', '2023-07-26 08:40:15.263817+07');
INSERT INTO category."Countries" VALUES (44, 'Chile', NULL, NULL, NULL, 'Santiago', '152', '56', '.cl', '🇨🇱', 'system', '2023-07-26 08:40:15.263822+07', 'system', '2023-07-26 08:40:15.263822+07');
INSERT INTO category."Countries" VALUES (45, 'China', NULL, NULL, NULL, 'Beijing', '156', '86', '.cn', '🇨🇳', 'system', '2023-07-26 08:40:15.263826+07', 'system', '2023-07-26 08:40:15.263826+07');
INSERT INTO category."Countries" VALUES (46, 'Christmas Island', NULL, NULL, NULL, 'Flying Fish Cove', '162', '61', '.cx', '🇨🇽', 'system', '2023-07-26 08:40:15.263831+07', 'system', '2023-07-26 08:40:15.263831+07');
INSERT INTO category."Countries" VALUES (47, 'Cocos (Keeling) Islands', NULL, NULL, NULL, 'West Island', '166', '61', '.cc', '🇨🇨', 'system', '2023-07-26 08:40:15.263836+07', 'system', '2023-07-26 08:40:15.263836+07');
INSERT INTO category."Countries" VALUES (48, 'Colombia', NULL, NULL, NULL, 'Bogotá', '170', '57', '.co', '🇨🇴', 'system', '2023-07-26 08:40:15.26384+07', 'system', '2023-07-26 08:40:15.26384+07');
INSERT INTO category."Countries" VALUES (49, 'Comoros', NULL, NULL, NULL, 'Moroni', '174', '269', '.km', '🇰🇲', 'system', '2023-07-26 08:40:15.263845+07', 'system', '2023-07-26 08:40:15.263845+07');
INSERT INTO category."Countries" VALUES (50, 'Congo', NULL, NULL, NULL, 'Brazzaville', '178', '242', '.cg', '🇨🇬', 'system', '2023-07-26 08:40:15.263849+07', 'system', '2023-07-26 08:40:15.26385+07');
INSERT INTO category."Countries" VALUES (51, 'Democratic Republic of the Congo', NULL, NULL, NULL, 'Kinshasa', '180', '243', '.cd', '🇨🇩', 'system', '2023-07-26 08:40:15.263893+07', 'system', '2023-07-26 08:40:15.263893+07');
INSERT INTO category."Countries" VALUES (52, 'Cook Islands', NULL, NULL, NULL, 'Avarua', '184', '682', '.ck', '🇨🇰', 'system', '2023-07-26 08:40:15.263854+07', 'system', '2023-07-26 08:40:15.263854+07');
INSERT INTO category."Countries" VALUES (53, 'Costa Rica', NULL, NULL, NULL, 'San Jose', '188', '506', '.cr', '🇨🇷', 'system', '2023-07-26 08:40:15.263859+07', 'system', '2023-07-26 08:40:15.263859+07');
INSERT INTO category."Countries" VALUES (54, 'Cote D''Ivoire (Ivory Coast)', NULL, NULL, NULL, 'Yamoussoukro', '384', '225', '.ci', '🇨🇮', 'system', '2023-07-26 08:40:15.263863+07', 'system', '2023-07-26 08:40:15.263863+07');
INSERT INTO category."Countries" VALUES (55, 'Croatia', NULL, NULL, NULL, 'Zagreb', '191', '385', '.hr', '🇭🇷', 'system', '2023-07-26 08:40:15.263868+07', 'system', '2023-07-26 08:40:15.263869+07');
INSERT INTO category."Countries" VALUES (56, 'Cuba', NULL, NULL, NULL, 'Havana', '192', '53', '.cu', '🇨🇺', 'system', '2023-07-26 08:40:15.263874+07', 'system', '2023-07-26 08:40:15.263874+07');
INSERT INTO category."Countries" VALUES (57, 'Cyprus', NULL, NULL, NULL, 'Nicosia', '196', '357', '.cy', '🇨🇾', 'system', '2023-07-26 08:40:15.263884+07', 'system', '2023-07-26 08:40:15.263884+07');
INSERT INTO category."Countries" VALUES (58, 'Czech Republic', NULL, NULL, NULL, 'Prague', '203', '420', '.cz', '🇨🇿', 'system', '2023-07-26 08:40:15.263888+07', 'system', '2023-07-26 08:40:15.263888+07');
INSERT INTO category."Countries" VALUES (59, 'Denmark', NULL, NULL, NULL, 'Copenhagen', '208', '45', '.dk', '🇩🇰', 'system', '2023-07-26 08:40:15.263898+07', 'system', '2023-07-26 08:40:15.263898+07');
INSERT INTO category."Countries" VALUES (60, 'Djibouti', NULL, NULL, NULL, 'Djibouti', '262', '253', '.dj', '🇩🇯', 'system', '2023-07-26 08:40:15.263902+07', 'system', '2023-07-26 08:40:15.263902+07');
INSERT INTO category."Countries" VALUES (61, 'Dominica', NULL, NULL, NULL, 'Roseau', '212', '1-767', '.dm', '🇩🇲', 'system', '2023-07-26 08:40:15.263907+07', 'system', '2023-07-26 08:40:15.263907+07');
INSERT INTO category."Countries" VALUES (62, 'Dominican Republic', NULL, NULL, NULL, 'Santo Domingo', '214', '1-809,1-829,1-849', '.do', '🇩🇴', 'system', '2023-07-26 08:40:15.263911+07', 'system', '2023-07-26 08:40:15.263911+07');
INSERT INTO category."Countries" VALUES (63, 'East Timor', NULL, NULL, NULL, 'Dili', '626', '670', '.tl', '🇹🇱', 'system', '2023-07-26 08:40:15.263916+07', 'system', '2023-07-26 08:40:15.263916+07');
INSERT INTO category."Countries" VALUES (64, 'Ecuador', NULL, NULL, NULL, 'Quito', '218', '593', '.ec', '🇪🇨', 'system', '2023-07-26 08:40:15.263921+07', 'system', '2023-07-26 08:40:15.263921+07');
INSERT INTO category."Countries" VALUES (65, 'Egypt', NULL, NULL, NULL, 'Cairo', '818', '20', '.eg', '🇪🇬', 'system', '2023-07-26 08:40:15.263925+07', 'system', '2023-07-26 08:40:15.263925+07');
INSERT INTO category."Countries" VALUES (66, 'El Salvador', NULL, NULL, NULL, 'San Salvador', '222', '503', '.sv', '🇸🇻', 'system', '2023-07-26 08:40:15.26393+07', 'system', '2023-07-26 08:40:15.26393+07');
INSERT INTO category."Countries" VALUES (67, 'Equatorial Guinea', NULL, NULL, NULL, 'Malabo', '226', '240', '.gq', '🇬🇶', 'system', '2023-07-26 08:40:15.263935+07', 'system', '2023-07-26 08:40:15.263935+07');
INSERT INTO category."Countries" VALUES (68, 'Eritrea', NULL, NULL, NULL, 'Asmara', '232', '291', '.er', '🇪🇷', 'system', '2023-07-26 08:40:15.263939+07', 'system', '2023-07-26 08:40:15.263939+07');
INSERT INTO category."Countries" VALUES (69, 'Estonia', NULL, NULL, NULL, 'Tallinn', '233', '372', '.ee', '🇪🇪', 'system', '2023-07-26 08:40:15.263944+07', 'system', '2023-07-26 08:40:15.263944+07');
INSERT INTO category."Countries" VALUES (70, 'Ethiopia', NULL, NULL, NULL, 'Addis Ababa', '231', '251', '.et', '🇪🇹', 'system', '2023-07-26 08:40:15.263948+07', 'system', '2023-07-26 08:40:15.263948+07');
INSERT INTO category."Countries" VALUES (71, 'Falkland Islands', NULL, NULL, NULL, 'Stanley', '238', '500', '.fk', '🇫🇰', 'system', '2023-07-26 08:40:15.263953+07', 'system', '2023-07-26 08:40:15.263953+07');
INSERT INTO category."Countries" VALUES (72, 'Faroe Islands', NULL, NULL, NULL, 'Torshavn', '234', '298', '.fo', '🇫🇴', 'system', '2023-07-26 08:40:15.263958+07', 'system', '2023-07-26 08:40:15.263958+07');
INSERT INTO category."Countries" VALUES (73, 'Fiji Islands', NULL, NULL, NULL, 'Suva', '242', '679', '.fj', '🇫🇯', 'system', '2023-07-26 08:40:15.263973+07', 'system', '2023-07-26 08:40:15.263973+07');
INSERT INTO category."Countries" VALUES (74, 'Finland', NULL, NULL, NULL, 'Helsinki', '246', '358', '.fi', '🇫🇮', 'system', '2023-07-26 08:40:15.263978+07', 'system', '2023-07-26 08:40:15.263978+07');
INSERT INTO category."Countries" VALUES (75, 'France', NULL, NULL, NULL, 'Paris', '250', '33', '.fr', '🇫🇷', 'system', '2023-07-26 08:40:15.263982+07', 'system', '2023-07-26 08:40:15.263982+07');
INSERT INTO category."Countries" VALUES (76, 'French Guiana', NULL, NULL, NULL, 'Cayenne', '254', '594', '.gf', '🇬🇫', 'system', '2023-07-26 08:40:15.263986+07', 'system', '2023-07-26 08:40:15.263986+07');
INSERT INTO category."Countries" VALUES (77, 'French Polynesia', NULL, NULL, NULL, 'Papeete', '258', '689', '.pf', '🇵🇫', 'system', '2023-07-26 08:40:15.263991+07', 'system', '2023-07-26 08:40:15.263991+07');
INSERT INTO category."Countries" VALUES (78, 'French Southern Territories', NULL, NULL, NULL, 'Port-aux-Francais', '260', '262', '.tf', '🇹🇫', 'system', '2023-07-26 08:40:15.263996+07', 'system', '2023-07-26 08:40:15.263996+07');
INSERT INTO category."Countries" VALUES (79, 'Gabon', NULL, NULL, NULL, 'Libreville', '266', '241', '.ga', '🇬🇦', 'system', '2023-07-26 08:40:15.264001+07', 'system', '2023-07-26 08:40:15.264001+07');
INSERT INTO category."Countries" VALUES (80, 'Gambia The', NULL, NULL, NULL, 'Banjul', '270', '220', '.gm', '🇬🇲', 'system', '2023-07-26 08:40:15.264005+07', 'system', '2023-07-26 08:40:15.264005+07');
INSERT INTO category."Countries" VALUES (81, 'Georgia', NULL, NULL, NULL, 'Tbilisi', '268', '995', '.ge', '🇬🇪', 'system', '2023-07-26 08:40:15.26401+07', 'system', '2023-07-26 08:40:15.26401+07');
INSERT INTO category."Countries" VALUES (82, 'Germany', NULL, NULL, NULL, 'Berlin', '276', '49', '.de', '🇩🇪', 'system', '2023-07-26 08:40:15.264015+07', 'system', '2023-07-26 08:40:15.264015+07');
INSERT INTO category."Countries" VALUES (83, 'Ghana', NULL, NULL, NULL, 'Accra', '288', '233', '.gh', '🇬🇭', 'system', '2023-07-26 08:40:15.264019+07', 'system', '2023-07-26 08:40:15.264019+07');
INSERT INTO category."Countries" VALUES (84, 'Gibraltar', NULL, NULL, NULL, 'Gibraltar', '292', '350', '.gi', '🇬🇮', 'system', '2023-07-26 08:40:15.264023+07', 'system', '2023-07-26 08:40:15.264023+07');
INSERT INTO category."Countries" VALUES (85, 'Greece', NULL, NULL, NULL, 'Athens', '300', '30', '.gr', '🇬🇷', 'system', '2023-07-26 08:40:15.264028+07', 'system', '2023-07-26 08:40:15.264028+07');
INSERT INTO category."Countries" VALUES (86, 'Greenland', NULL, NULL, NULL, 'Nuuk', '304', '299', '.gl', '🇬🇱', 'system', '2023-07-26 08:40:15.264033+07', 'system', '2023-07-26 08:40:15.264033+07');
INSERT INTO category."Countries" VALUES (87, 'Grenada', NULL, NULL, NULL, 'St. George''s', '308', '1-473', '.gd', '🇬🇩', 'system', '2023-07-26 08:40:15.264037+07', 'system', '2023-07-26 08:40:15.264037+07');
INSERT INTO category."Countries" VALUES (88, 'Guadeloupe', NULL, NULL, NULL, 'Basse-Terre', '312', '590', '.gp', '🇬🇵', 'system', '2023-07-26 08:40:15.264042+07', 'system', '2023-07-26 08:40:15.264042+07');
INSERT INTO category."Countries" VALUES (89, 'Guam', NULL, NULL, NULL, 'Hagatna', '316', '1-671', '.gu', '🇬🇺', 'system', '2023-07-26 08:40:15.264047+07', 'system', '2023-07-26 08:40:15.264047+07');
INSERT INTO category."Countries" VALUES (90, 'Guatemala', NULL, NULL, NULL, 'Guatemala City', '320', '502', '.gt', '🇬🇹', 'system', '2023-07-26 08:40:15.264051+07', 'system', '2023-07-26 08:40:15.264051+07');
INSERT INTO category."Countries" VALUES (91, 'Guernsey and Alderney', NULL, NULL, NULL, 'St Peter Port', '831', '44-1481', '.gg', '🇬🇬', 'system', '2023-07-26 08:40:15.264056+07', 'system', '2023-07-26 08:40:15.264056+07');
INSERT INTO category."Countries" VALUES (92, 'Guinea', NULL, NULL, NULL, 'Conakry', '324', '224', '.gn', '🇬🇳', 'system', '2023-07-26 08:40:15.264061+07', 'system', '2023-07-26 08:40:15.264061+07');
INSERT INTO category."Countries" VALUES (93, 'Guinea-Bissau', NULL, NULL, NULL, 'Bissau', '624', '245', '.gw', '🇬🇼', 'system', '2023-07-26 08:40:15.264065+07', 'system', '2023-07-26 08:40:15.264065+07');
INSERT INTO category."Countries" VALUES (94, 'Guyana', NULL, NULL, NULL, 'Georgetown', '328', '592', '.gy', '🇬🇾', 'system', '2023-07-26 08:40:15.264114+07', 'system', '2023-07-26 08:40:15.264114+07');
INSERT INTO category."Countries" VALUES (95, 'Haiti', NULL, NULL, NULL, 'Port-au-Prince', '332', '509', '.ht', '🇭🇹', 'system', '2023-07-26 08:40:15.26412+07', 'system', '2023-07-26 08:40:15.26412+07');
INSERT INTO category."Countries" VALUES (96, 'Heard Island and McDonald Islands', NULL, NULL, NULL, '', '334', '672', '.hm', '🇭🇲', 'system', '2023-07-26 08:40:15.264126+07', 'system', '2023-07-26 08:40:15.264126+07');
INSERT INTO category."Countries" VALUES (97, 'Honduras', NULL, NULL, NULL, 'Tegucigalpa', '340', '504', '.hn', '🇭🇳', 'system', '2023-07-26 08:40:15.26413+07', 'system', '2023-07-26 08:40:15.264131+07');
INSERT INTO category."Countries" VALUES (98, 'Hong Kong S.A.R.', NULL, NULL, NULL, 'Hong Kong', '344', '852', '.hk', '🇭🇰', 'system', '2023-07-26 08:40:15.264135+07', 'system', '2023-07-26 08:40:15.264135+07');
INSERT INTO category."Countries" VALUES (99, 'Hungary', NULL, NULL, NULL, 'Budapest', '348', '36', '.hu', '🇭🇺', 'system', '2023-07-26 08:40:15.26414+07', 'system', '2023-07-26 08:40:15.26414+07');
INSERT INTO category."Countries" VALUES (100, 'Iceland', NULL, NULL, NULL, 'Reykjavik', '352', '354', '.is', '🇮🇸', 'system', '2023-07-26 08:40:15.264144+07', 'system', '2023-07-26 08:40:15.264144+07');
INSERT INTO category."Countries" VALUES (101, 'India', NULL, NULL, NULL, 'New Delhi', '356', '91', '.in', '🇮🇳', 'system', '2023-07-26 08:40:15.264149+07', 'system', '2023-07-26 08:40:15.264149+07');
INSERT INTO category."Countries" VALUES (102, 'Indonesia', NULL, NULL, NULL, 'Jakarta', '360', '62', '.id', '🇮🇩', 'system', '2023-07-26 08:40:15.264154+07', 'system', '2023-07-26 08:40:15.264154+07');
INSERT INTO category."Countries" VALUES (103, 'Iran', NULL, NULL, NULL, 'Tehran', '364', '98', '.ir', '🇮🇷', 'system', '2023-07-26 08:40:15.264158+07', 'system', '2023-07-26 08:40:15.264159+07');
INSERT INTO category."Countries" VALUES (104, 'Iraq', NULL, NULL, NULL, 'Baghdad', '368', '964', '.iq', '🇮🇶', 'system', '2023-07-26 08:40:15.264163+07', 'system', '2023-07-26 08:40:15.264163+07');
INSERT INTO category."Countries" VALUES (105, 'Ireland', NULL, NULL, NULL, 'Dublin', '372', '353', '.ie', '🇮🇪', 'system', '2023-07-26 08:40:15.264167+07', 'system', '2023-07-26 08:40:15.264168+07');
INSERT INTO category."Countries" VALUES (106, 'Israel', NULL, NULL, NULL, 'Jerusalem', '376', '972', '.il', '🇮🇱', 'system', '2023-07-26 08:40:15.264172+07', 'system', '2023-07-26 08:40:15.264172+07');
INSERT INTO category."Countries" VALUES (107, 'Italy', NULL, NULL, NULL, 'Rome', '380', '39', '.it', '🇮🇹', 'system', '2023-07-26 08:40:15.264176+07', 'system', '2023-07-26 08:40:15.264176+07');
INSERT INTO category."Countries" VALUES (108, 'Jamaica', NULL, NULL, NULL, 'Kingston', '388', '1-876', '.jm', '🇯🇲', 'system', '2023-07-26 08:40:15.264181+07', 'system', '2023-07-26 08:40:15.264181+07');
INSERT INTO category."Countries" VALUES (109, 'Japan', NULL, NULL, NULL, 'Tokyo', '392', '81', '.jp', '🇯🇵', 'system', '2023-07-26 08:40:15.264185+07', 'system', '2023-07-26 08:40:15.264185+07');
INSERT INTO category."Countries" VALUES (110, 'Jersey', NULL, NULL, NULL, 'Saint Helier', '832', '44-1534', '.je', '🇯🇪', 'system', '2023-07-26 08:40:15.26419+07', 'system', '2023-07-26 08:40:15.26419+07');
INSERT INTO category."Countries" VALUES (111, 'Jordan', NULL, NULL, NULL, 'Amman', '400', '962', '.jo', '🇯🇴', 'system', '2023-07-26 08:40:15.264194+07', 'system', '2023-07-26 08:40:15.264194+07');
INSERT INTO category."Countries" VALUES (112, 'Kazakhstan', NULL, NULL, NULL, 'Astana', '398', '7', '.kz', '🇰🇿', 'system', '2023-07-26 08:40:15.264199+07', 'system', '2023-07-26 08:40:15.264199+07');
INSERT INTO category."Countries" VALUES (113, 'Kenya', NULL, NULL, NULL, 'Nairobi', '404', '254', '.ke', '🇰🇪', 'system', '2023-07-26 08:40:15.264203+07', 'system', '2023-07-26 08:40:15.264203+07');
INSERT INTO category."Countries" VALUES (114, 'Kiribati', NULL, NULL, NULL, 'Tarawa', '296', '686', '.ki', '🇰🇮', 'system', '2023-07-26 08:40:15.264208+07', 'system', '2023-07-26 08:40:15.264208+07');
INSERT INTO category."Countries" VALUES (115, 'North Korea', NULL, NULL, NULL, 'Pyongyang', '408', '850', '.kp', '🇰🇵', 'system', '2023-07-26 08:40:15.264474+07', 'system', '2023-07-26 08:40:15.264474+07');
INSERT INTO category."Countries" VALUES (116, 'South Korea', NULL, NULL, NULL, 'Seoul', '410', '82', '.kr', '🇰🇷', 'system', '2023-07-26 08:40:15.264677+07', 'system', '2023-07-26 08:40:15.264677+07');
INSERT INTO category."Countries" VALUES (117, 'Kuwait', NULL, NULL, NULL, 'Kuwait City', '414', '965', '.kw', '🇰🇼', 'system', '2023-07-26 08:40:15.264217+07', 'system', '2023-07-26 08:40:15.264217+07');
INSERT INTO category."Countries" VALUES (118, 'Kyrgyzstan', NULL, NULL, NULL, 'Bishkek', '417', '996', '.kg', '🇰🇬', 'system', '2023-07-26 08:40:15.264221+07', 'system', '2023-07-26 08:40:15.264222+07');
INSERT INTO category."Countries" VALUES (119, 'Laos', NULL, NULL, NULL, 'Vientiane', '418', '856', '.la', '🇱🇦', 'system', '2023-07-26 08:40:15.264226+07', 'system', '2023-07-26 08:40:15.264226+07');
INSERT INTO category."Countries" VALUES (120, 'Latvia', NULL, NULL, NULL, 'Riga', '428', '371', '.lv', '🇱🇻', 'system', '2023-07-26 08:40:15.264231+07', 'system', '2023-07-26 08:40:15.264231+07');
INSERT INTO category."Countries" VALUES (121, 'Lebanon', NULL, NULL, NULL, 'Beirut', '422', '961', '.lb', '🇱🇧', 'system', '2023-07-26 08:40:15.264235+07', 'system', '2023-07-26 08:40:15.264236+07');
INSERT INTO category."Countries" VALUES (122, 'Lesotho', NULL, NULL, NULL, 'Maseru', '426', '266', '.ls', '🇱🇸', 'system', '2023-07-26 08:40:15.26424+07', 'system', '2023-07-26 08:40:15.26424+07');
INSERT INTO category."Countries" VALUES (123, 'Liberia', NULL, NULL, NULL, 'Monrovia', '430', '231', '.lr', '🇱🇷', 'system', '2023-07-26 08:40:15.264244+07', 'system', '2023-07-26 08:40:15.264244+07');
INSERT INTO category."Countries" VALUES (124, 'Libya', NULL, NULL, NULL, 'Tripolis', '434', '218', '.ly', '🇱🇾', 'system', '2023-07-26 08:40:15.264249+07', 'system', '2023-07-26 08:40:15.264249+07');
INSERT INTO category."Countries" VALUES (125, 'Liechtenstein', NULL, NULL, NULL, 'Vaduz', '438', '423', '.li', '🇱🇮', 'system', '2023-07-26 08:40:15.264254+07', 'system', '2023-07-26 08:40:15.264254+07');
INSERT INTO category."Countries" VALUES (126, 'Lithuania', NULL, NULL, NULL, 'Vilnius', '440', '370', '.lt', '🇱🇹', 'system', '2023-07-26 08:40:15.264258+07', 'system', '2023-07-26 08:40:15.264258+07');
INSERT INTO category."Countries" VALUES (127, 'Luxembourg', NULL, NULL, NULL, 'Luxembourg', '442', '352', '.lu', '🇱🇺', 'system', '2023-07-26 08:40:15.264263+07', 'system', '2023-07-26 08:40:15.264263+07');
INSERT INTO category."Countries" VALUES (128, 'Macau S.A.R.', NULL, NULL, NULL, 'Macao', '446', '853', '.mo', '🇲🇴', 'system', '2023-07-26 08:40:15.264267+07', 'system', '2023-07-26 08:40:15.264267+07');
INSERT INTO category."Countries" VALUES (129, 'Macedonia', NULL, NULL, NULL, 'Skopje', '807', '389', '.mk', '🇲🇰', 'system', '2023-07-26 08:40:15.264272+07', 'system', '2023-07-26 08:40:15.264272+07');
INSERT INTO category."Countries" VALUES (130, 'Madagascar', NULL, NULL, NULL, 'Antananarivo', '450', '261', '.mg', '🇲🇬', 'system', '2023-07-26 08:40:15.264277+07', 'system', '2023-07-26 08:40:15.264277+07');
INSERT INTO category."Countries" VALUES (131, 'Malawi', NULL, NULL, NULL, 'Lilongwe', '454', '265', '.mw', '🇲🇼', 'system', '2023-07-26 08:40:15.264282+07', 'system', '2023-07-26 08:40:15.264282+07');
INSERT INTO category."Countries" VALUES (132, 'Malaysia', NULL, NULL, NULL, 'Kuala Lumpur', '458', '60', '.my', '🇲🇾', 'system', '2023-07-26 08:40:15.264286+07', 'system', '2023-07-26 08:40:15.264286+07');
INSERT INTO category."Countries" VALUES (133, 'Maldives', NULL, NULL, NULL, 'Male', '462', '960', '.mv', '🇲🇻', 'system', '2023-07-26 08:40:15.264291+07', 'system', '2023-07-26 08:40:15.264291+07');
INSERT INTO category."Countries" VALUES (134, 'Mali', NULL, NULL, NULL, 'Bamako', '466', '223', '.ml', '🇲🇱', 'system', '2023-07-26 08:40:15.264295+07', 'system', '2023-07-26 08:40:15.264295+07');
INSERT INTO category."Countries" VALUES (135, 'Malta', NULL, NULL, NULL, 'Valletta', '470', '356', '.mt', '🇲🇹', 'system', '2023-07-26 08:40:15.2643+07', 'system', '2023-07-26 08:40:15.2643+07');
INSERT INTO category."Countries" VALUES (136, 'Man (Isle of)', NULL, NULL, NULL, 'Douglas, Isle of Man', '833', '44-1624', '.im', '🇮🇲', 'system', '2023-07-26 08:40:15.264304+07', 'system', '2023-07-26 08:40:15.264304+07');
INSERT INTO category."Countries" VALUES (137, 'Marshall Islands', NULL, NULL, NULL, 'Majuro', '584', '692', '.mh', '🇲🇭', 'system', '2023-07-26 08:40:15.264309+07', 'system', '2023-07-26 08:40:15.264309+07');
INSERT INTO category."Countries" VALUES (138, 'Martinique', NULL, NULL, NULL, 'Fort-de-France', '474', '596', '.mq', '🇲🇶', 'system', '2023-07-26 08:40:15.264314+07', 'system', '2023-07-26 08:40:15.264314+07');
INSERT INTO category."Countries" VALUES (139, 'Mauritania', NULL, NULL, NULL, 'Nouakchott', '478', '222', '.mr', '🇲🇷', 'system', '2023-07-26 08:40:15.26432+07', 'system', '2023-07-26 08:40:15.26432+07');
INSERT INTO category."Countries" VALUES (140, 'Mauritius', NULL, NULL, NULL, 'Port Louis', '480', '230', '.mu', '🇲🇺', 'system', '2023-07-26 08:40:15.264327+07', 'system', '2023-07-26 08:40:15.264328+07');
INSERT INTO category."Countries" VALUES (141, 'Mayotte', NULL, NULL, NULL, 'Mamoudzou', '175', '262', '.yt', '🇾🇹', 'system', '2023-07-26 08:40:15.264335+07', 'system', '2023-07-26 08:40:15.264335+07');
INSERT INTO category."Countries" VALUES (142, 'Mexico', NULL, NULL, NULL, 'Ciudad de México', '484', '52', '.mx', '🇲🇽', 'system', '2023-07-26 08:40:15.264342+07', 'system', '2023-07-26 08:40:15.264342+07');
INSERT INTO category."Countries" VALUES (143, 'Micronesia', NULL, NULL, NULL, 'Palikir', '583', '691', '.fm', '🇫🇲', 'system', '2023-07-26 08:40:15.26435+07', 'system', '2023-07-26 08:40:15.26435+07');
INSERT INTO category."Countries" VALUES (144, 'Moldova', NULL, NULL, NULL, 'Chisinau', '498', '373', '.md', '🇲🇩', 'system', '2023-07-26 08:40:15.264357+07', 'system', '2023-07-26 08:40:15.264358+07');
INSERT INTO category."Countries" VALUES (145, 'Monaco', NULL, NULL, NULL, 'Monaco', '492', '377', '.mc', '🇲🇨', 'system', '2023-07-26 08:40:15.264365+07', 'system', '2023-07-26 08:40:15.264365+07');
INSERT INTO category."Countries" VALUES (146, 'Mongolia', NULL, NULL, NULL, 'Ulan Bator', '496', '976', '.mn', '🇲🇳', 'system', '2023-07-26 08:40:15.264373+07', 'system', '2023-07-26 08:40:15.264373+07');
INSERT INTO category."Countries" VALUES (147, 'Montenegro', NULL, NULL, NULL, 'Podgorica', '499', '382', '.me', '🇲🇪', 'system', '2023-07-26 08:40:15.264381+07', 'system', '2023-07-26 08:40:15.264381+07');
INSERT INTO category."Countries" VALUES (148, 'Montserrat', NULL, NULL, NULL, 'Plymouth', '500', '1-664', '.ms', '🇲🇸', 'system', '2023-07-26 08:40:15.264386+07', 'system', '2023-07-26 08:40:15.264387+07');
INSERT INTO category."Countries" VALUES (149, 'Morocco', NULL, NULL, NULL, 'Rabat', '504', '212', '.ma', '🇲🇦', 'system', '2023-07-26 08:40:15.264391+07', 'system', '2023-07-26 08:40:15.264391+07');
INSERT INTO category."Countries" VALUES (150, 'Mozambique', NULL, NULL, NULL, 'Maputo', '508', '258', '.mz', '🇲🇿', 'system', '2023-07-26 08:40:15.264396+07', 'system', '2023-07-26 08:40:15.264396+07');
INSERT INTO category."Countries" VALUES (151, 'Myanmar', NULL, NULL, NULL, 'Nay Pyi Taw', '104', '95', '.mm', '🇲🇲', 'system', '2023-07-26 08:40:15.26441+07', 'system', '2023-07-26 08:40:15.26441+07');
INSERT INTO category."Countries" VALUES (152, 'Namibia', NULL, NULL, NULL, 'Windhoek', '516', '264', '.na', '🇳🇦', 'system', '2023-07-26 08:40:15.264415+07', 'system', '2023-07-26 08:40:15.264415+07');
INSERT INTO category."Countries" VALUES (153, 'Nauru', NULL, NULL, NULL, 'Yaren', '520', '674', '.nr', '🇳🇷', 'system', '2023-07-26 08:40:15.264419+07', 'system', '2023-07-26 08:40:15.26442+07');
INSERT INTO category."Countries" VALUES (154, 'Nepal', NULL, NULL, NULL, 'Kathmandu', '524', '977', '.np', '🇳🇵', 'system', '2023-07-26 08:40:15.264424+07', 'system', '2023-07-26 08:40:15.264424+07');
INSERT INTO category."Countries" VALUES (155, 'Bonaire, Sint Eustatius and Saba', NULL, NULL, NULL, 'Kralendijk', '535', '599', '.an', '🇧🇶', 'system', '2023-07-26 08:40:15.263741+07', 'system', '2023-07-26 08:40:15.263741+07');
INSERT INTO category."Countries" VALUES (156, 'Netherlands', NULL, NULL, NULL, 'Amsterdam', '528', '31', '.nl', '🇳🇱', 'system', '2023-07-26 08:40:15.264428+07', 'system', '2023-07-26 08:40:15.264428+07');
INSERT INTO category."Countries" VALUES (157, 'New Caledonia', NULL, NULL, NULL, 'Noumea', '540', '687', '.nc', '🇳🇨', 'system', '2023-07-26 08:40:15.264433+07', 'system', '2023-07-26 08:40:15.264433+07');
INSERT INTO category."Countries" VALUES (158, 'New Zealand', NULL, NULL, NULL, 'Wellington', '554', '64', '.nz', '🇳🇿', 'system', '2023-07-26 08:40:15.264437+07', 'system', '2023-07-26 08:40:15.264438+07');
INSERT INTO category."Countries" VALUES (159, 'Nicaragua', NULL, NULL, NULL, 'Managua', '558', '505', '.ni', '🇳🇮', 'system', '2023-07-26 08:40:15.264449+07', 'system', '2023-07-26 08:40:15.264449+07');
INSERT INTO category."Countries" VALUES (160, 'Niger', NULL, NULL, NULL, 'Niamey', '562', '227', '.ne', '🇳🇪', 'system', '2023-07-26 08:40:15.264453+07', 'system', '2023-07-26 08:40:15.264453+07');
INSERT INTO category."Countries" VALUES (161, 'Nigeria', NULL, NULL, NULL, 'Abuja', '566', '234', '.ng', '🇳🇬', 'system', '2023-07-26 08:40:15.26446+07', 'system', '2023-07-26 08:40:15.26446+07');
INSERT INTO category."Countries" VALUES (162, 'Niue', NULL, NULL, NULL, 'Alofi', '570', '683', '.nu', '🇳🇺', 'system', '2023-07-26 08:40:15.264464+07', 'system', '2023-07-26 08:40:15.264464+07');
INSERT INTO category."Countries" VALUES (163, 'Norfolk Island', NULL, NULL, NULL, 'Kingston', '574', '672', '.nf', '🇳🇫', 'system', '2023-07-26 08:40:15.264469+07', 'system', '2023-07-26 08:40:15.264469+07');
INSERT INTO category."Countries" VALUES (164, 'Northern Mariana Islands', NULL, NULL, NULL, 'Saipan', '580', '1-670', '.mp', '🇲🇵', 'system', '2023-07-26 08:40:15.264478+07', 'system', '2023-07-26 08:40:15.264478+07');
INSERT INTO category."Countries" VALUES (165, 'Norway', NULL, NULL, NULL, 'Oslo', '578', '47', '.no', '🇳🇴', 'system', '2023-07-26 08:40:15.264483+07', 'system', '2023-07-26 08:40:15.264483+07');
INSERT INTO category."Countries" VALUES (166, 'Oman', NULL, NULL, NULL, 'Muscat', '512', '968', '.om', '🇴🇲', 'system', '2023-07-26 08:40:15.264488+07', 'system', '2023-07-26 08:40:15.264488+07');
INSERT INTO category."Countries" VALUES (167, 'Pakistan', NULL, NULL, NULL, 'Islamabad', '586', '92', '.pk', '🇵🇰', 'system', '2023-07-26 08:40:15.264492+07', 'system', '2023-07-26 08:40:15.264493+07');
INSERT INTO category."Countries" VALUES (168, 'Palau', NULL, NULL, NULL, 'Melekeok', '585', '680', '.pw', '🇵🇼', 'system', '2023-07-26 08:40:15.264497+07', 'system', '2023-07-26 08:40:15.264497+07');
INSERT INTO category."Countries" VALUES (169, 'Palestinian Territory Occupied', NULL, NULL, NULL, 'East Jerusalem', '275', '970', '.ps', '🇵🇸', 'system', '2023-07-26 08:40:15.264501+07', 'system', '2023-07-26 08:40:15.264501+07');
INSERT INTO category."Countries" VALUES (170, 'Panama', NULL, NULL, NULL, 'Panama City', '591', '507', '.pa', '🇵🇦', 'system', '2023-07-26 08:40:15.264506+07', 'system', '2023-07-26 08:40:15.264506+07');
INSERT INTO category."Countries" VALUES (171, 'Papua new Guinea', NULL, NULL, NULL, 'Port Moresby', '598', '675', '.pg', '🇵🇬', 'system', '2023-07-26 08:40:15.264511+07', 'system', '2023-07-26 08:40:15.264511+07');
INSERT INTO category."Countries" VALUES (172, 'Paraguay', NULL, NULL, NULL, 'Asuncion', '600', '595', '.py', '🇵🇾', 'system', '2023-07-26 08:40:15.264516+07', 'system', '2023-07-26 08:40:15.264516+07');
INSERT INTO category."Countries" VALUES (173, 'Peru', NULL, NULL, NULL, 'Lima', '604', '51', '.pe', '🇵🇪', 'system', '2023-07-26 08:40:15.26452+07', 'system', '2023-07-26 08:40:15.26452+07');
INSERT INTO category."Countries" VALUES (174, 'Philippines', NULL, NULL, NULL, 'Manila', '608', '63', '.ph', '🇵🇭', 'system', '2023-07-26 08:40:15.264525+07', 'system', '2023-07-26 08:40:15.264525+07');
INSERT INTO category."Countries" VALUES (175, 'Pitcairn Island', NULL, NULL, NULL, 'Adamstown', '612', '870', '.pn', '🇵🇳', 'system', '2023-07-26 08:40:15.264529+07', 'system', '2023-07-26 08:40:15.264529+07');
INSERT INTO category."Countries" VALUES (176, 'Poland', NULL, NULL, NULL, 'Warsaw', '616', '48', '.pl', '🇵🇱', 'system', '2023-07-26 08:40:15.264534+07', 'system', '2023-07-26 08:40:15.264534+07');
INSERT INTO category."Countries" VALUES (177, 'Portugal', NULL, NULL, NULL, 'Lisbon', '620', '351', '.pt', '🇵🇹', 'system', '2023-07-26 08:40:15.264538+07', 'system', '2023-07-26 08:40:15.264538+07');
INSERT INTO category."Countries" VALUES (178, 'Puerto Rico', NULL, NULL, NULL, 'San Juan', '630', '1-787,1-939', '.pr', '🇵🇷', 'system', '2023-07-26 08:40:15.264543+07', 'system', '2023-07-26 08:40:15.264543+07');
INSERT INTO category."Countries" VALUES (179, 'Qatar', NULL, NULL, NULL, 'Doha', '634', '974', '.qa', '🇶🇦', 'system', '2023-07-26 08:40:15.264547+07', 'system', '2023-07-26 08:40:15.264547+07');
INSERT INTO category."Countries" VALUES (180, 'Reunion', NULL, NULL, NULL, 'Saint-Denis', '638', '262', '.re', '🇷🇪', 'system', '2023-07-26 08:40:15.264552+07', 'system', '2023-07-26 08:40:15.264552+07');
INSERT INTO category."Countries" VALUES (181, 'Romania', NULL, NULL, NULL, 'Bucharest', '642', '40', '.ro', '🇷🇴', 'system', '2023-07-26 08:40:15.264556+07', 'system', '2023-07-26 08:40:15.264556+07');
INSERT INTO category."Countries" VALUES (182, 'Russia', NULL, NULL, NULL, 'Moscow', '643', '7', '.ru', '🇷🇺', 'system', '2023-07-26 08:40:15.264561+07', 'system', '2023-07-26 08:40:15.264561+07');
INSERT INTO category."Countries" VALUES (183, 'Rwanda', NULL, NULL, NULL, 'Kigali', '646', '250', '.rw', '🇷🇼', 'system', '2023-07-26 08:40:15.264566+07', 'system', '2023-07-26 08:40:15.264566+07');
INSERT INTO category."Countries" VALUES (184, 'Saint Helena', NULL, NULL, NULL, 'Jamestown', '654', '290', '.sh', '🇸🇭', 'system', '2023-07-26 08:40:15.264571+07', 'system', '2023-07-26 08:40:15.264571+07');
INSERT INTO category."Countries" VALUES (185, 'Saint Kitts And Nevis', NULL, NULL, NULL, 'Basseterre', '659', '1-869', '.kn', '🇰🇳', 'system', '2023-07-26 08:40:15.264575+07', 'system', '2023-07-26 08:40:15.264575+07');
INSERT INTO category."Countries" VALUES (186, 'Saint Lucia', NULL, NULL, NULL, 'Castries', '662', '1-758', '.lc', '🇱🇨', 'system', '2023-07-26 08:40:15.26458+07', 'system', '2023-07-26 08:40:15.26458+07');
INSERT INTO category."Countries" VALUES (187, 'Saint Pierre and Miquelon', NULL, NULL, NULL, 'Saint-Pierre', '666', '508', '.pm', '🇵🇲', 'system', '2023-07-26 08:40:15.264585+07', 'system', '2023-07-26 08:40:15.264585+07');
INSERT INTO category."Countries" VALUES (188, 'Saint Vincent And The Grenadines', NULL, NULL, NULL, 'Kingstown', '670', '1-784', '.vc', '🇻🇨', 'system', '2023-07-26 08:40:15.26459+07', 'system', '2023-07-26 08:40:15.26459+07');
INSERT INTO category."Countries" VALUES (189, 'Saint-Barthelemy', NULL, NULL, NULL, 'Gustavia', '652', '590', '.bl', '🇧🇱', 'system', '2023-07-26 08:40:15.264594+07', 'system', '2023-07-26 08:40:15.264594+07');
INSERT INTO category."Countries" VALUES (190, 'Saint-Martin (French part)', NULL, NULL, NULL, 'Marigot', '663', '590', '.mf', '🇲🇫', 'system', '2023-07-26 08:40:15.264599+07', 'system', '2023-07-26 08:40:15.264599+07');
INSERT INTO category."Countries" VALUES (191, 'Samoa', NULL, NULL, NULL, 'Apia', '882', '685', '.ws', '🇼🇸', 'system', '2023-07-26 08:40:15.264603+07', 'system', '2023-07-26 08:40:15.264603+07');
INSERT INTO category."Countries" VALUES (192, 'San Marino', NULL, NULL, NULL, 'San Marino', '674', '378', '.sm', '🇸🇲', 'system', '2023-07-26 08:40:15.264608+07', 'system', '2023-07-26 08:40:15.264608+07');
INSERT INTO category."Countries" VALUES (193, 'Sao Tome and Principe', NULL, NULL, NULL, 'Sao Tome', '678', '239', '.st', '🇸🇹', 'system', '2023-07-26 08:40:15.264613+07', 'system', '2023-07-26 08:40:15.264613+07');
INSERT INTO category."Countries" VALUES (194, 'Saudi Arabia', NULL, NULL, NULL, 'Riyadh', '682', '966', '.sa', '🇸🇦', 'system', '2023-07-26 08:40:15.264617+07', 'system', '2023-07-26 08:40:15.264617+07');
INSERT INTO category."Countries" VALUES (195, 'Senegal', NULL, NULL, NULL, 'Dakar', '686', '221', '.sn', '🇸🇳', 'system', '2023-07-26 08:40:15.264622+07', 'system', '2023-07-26 08:40:15.264622+07');
INSERT INTO category."Countries" VALUES (196, 'Serbia', NULL, NULL, NULL, 'Belgrade', '688', '381', '.rs', '🇷🇸', 'system', '2023-07-26 08:40:15.264626+07', 'system', '2023-07-26 08:40:15.264627+07');
INSERT INTO category."Countries" VALUES (197, 'Seychelles', NULL, NULL, NULL, 'Victoria', '690', '248', '.sc', '🇸🇨', 'system', '2023-07-26 08:40:15.264631+07', 'system', '2023-07-26 08:40:15.264631+07');
INSERT INTO category."Countries" VALUES (198, 'Sierra Leone', NULL, NULL, NULL, 'Freetown', '694', '232', '.sl', '🇸🇱', 'system', '2023-07-26 08:40:15.264636+07', 'system', '2023-07-26 08:40:15.264636+07');
INSERT INTO category."Countries" VALUES (199, 'Singapore', NULL, NULL, NULL, 'Singapur', '702', '65', '.sg', '🇸🇬', 'system', '2023-07-26 08:40:15.264641+07', 'system', '2023-07-26 08:40:15.264641+07');
INSERT INTO category."Countries" VALUES (200, 'Slovakia', NULL, NULL, NULL, 'Bratislava', '703', '421', '.sk', '🇸🇰', 'system', '2023-07-26 08:40:15.26465+07', 'system', '2023-07-26 08:40:15.26465+07');
INSERT INTO category."Countries" VALUES (201, 'Slovenia', NULL, NULL, NULL, 'Ljubljana', '705', '386', '.si', '🇸🇮', 'system', '2023-07-26 08:40:15.264654+07', 'system', '2023-07-26 08:40:15.264654+07');
INSERT INTO category."Countries" VALUES (202, 'Solomon Islands', NULL, NULL, NULL, 'Honiara', '090', '677', '.sb', '🇸🇧', 'system', '2023-07-26 08:40:15.264659+07', 'system', '2023-07-26 08:40:15.264659+07');
INSERT INTO category."Countries" VALUES (203, 'Somalia', NULL, NULL, NULL, 'Mogadishu', '706', '252', '.so', '🇸🇴', 'system', '2023-07-26 08:40:15.264663+07', 'system', '2023-07-26 08:40:15.264663+07');
INSERT INTO category."Countries" VALUES (204, 'South Africa', NULL, NULL, NULL, 'Pretoria', '710', '27', '.za', '🇿🇦', 'system', '2023-07-26 08:40:15.264667+07', 'system', '2023-07-26 08:40:15.264667+07');
INSERT INTO category."Countries" VALUES (205, 'South Georgia', NULL, NULL, NULL, 'Grytviken', '239', '500', '.gs', '🇬🇸', 'system', '2023-07-26 08:40:15.264673+07', 'system', '2023-07-26 08:40:15.264673+07');
INSERT INTO category."Countries" VALUES (206, 'South Sudan', NULL, NULL, NULL, 'Juba', '728', '211', '.ss', '🇸🇸', 'system', '2023-07-26 08:40:15.264682+07', 'system', '2023-07-26 08:40:15.264682+07');
INSERT INTO category."Countries" VALUES (207, 'Spain', NULL, NULL, NULL, 'Madrid', '724', '34', '.es', '🇪🇸', 'system', '2023-07-26 08:40:15.264686+07', 'system', '2023-07-26 08:40:15.264686+07');
INSERT INTO category."Countries" VALUES (208, 'Sri Lanka', NULL, NULL, NULL, 'Colombo', '144', '94', '.lk', '🇱🇰', 'system', '2023-07-26 08:40:15.264691+07', 'system', '2023-07-26 08:40:15.264691+07');
INSERT INTO category."Countries" VALUES (209, 'Sudan', NULL, NULL, NULL, 'Khartoum', '729', '249', '.sd', '🇸🇩', 'system', '2023-07-26 08:40:15.264695+07', 'system', '2023-07-26 08:40:15.264696+07');
INSERT INTO category."Countries" VALUES (210, 'Suriname', NULL, NULL, NULL, 'Paramaribo', '740', '597', '.sr', '🇸🇷', 'system', '2023-07-26 08:40:15.2647+07', 'system', '2023-07-26 08:40:15.2647+07');
INSERT INTO category."Countries" VALUES (211, 'Svalbard And Jan Mayen Islands', NULL, NULL, NULL, 'Longyearbyen', '744', '47', '.sj', '🇸🇯', 'system', '2023-07-26 08:40:15.264705+07', 'system', '2023-07-26 08:40:15.264705+07');
INSERT INTO category."Countries" VALUES (212, 'Swaziland', NULL, NULL, NULL, 'Mbabane', '748', '268', '.sz', '🇸🇿', 'system', '2023-07-26 08:40:15.26471+07', 'system', '2023-07-26 08:40:15.26471+07');
INSERT INTO category."Countries" VALUES (213, 'Sweden', NULL, NULL, NULL, 'Stockholm', '752', '46', '.se', '🇸🇪', 'system', '2023-07-26 08:40:15.264714+07', 'system', '2023-07-26 08:40:15.264715+07');
INSERT INTO category."Countries" VALUES (214, 'Switzerland', NULL, NULL, NULL, 'Bern', '756', '41', '.ch', '🇨🇭', 'system', '2023-07-26 08:40:15.264719+07', 'system', '2023-07-26 08:40:15.264719+07');
INSERT INTO category."Countries" VALUES (215, 'Syria', NULL, NULL, NULL, 'Damascus', '760', '963', '.sy', '🇸🇾', 'system', '2023-07-26 08:40:15.264724+07', 'system', '2023-07-26 08:40:15.264724+07');
INSERT INTO category."Countries" VALUES (216, 'Taiwan', NULL, NULL, NULL, 'Taipei', '158', '886', '.tw', '🇹🇼', 'system', '2023-07-26 08:40:15.264728+07', 'system', '2023-07-26 08:40:15.264728+07');
INSERT INTO category."Countries" VALUES (217, 'Tajikistan', NULL, NULL, NULL, 'Dushanbe', '762', '992', '.tj', '🇹🇯', 'system', '2023-07-26 08:40:15.264733+07', 'system', '2023-07-26 08:40:15.264733+07');
INSERT INTO category."Countries" VALUES (218, 'Tanzania', NULL, NULL, NULL, 'Dodoma', '834', '255', '.tz', '🇹🇿', 'system', '2023-07-26 08:40:15.264737+07', 'system', '2023-07-26 08:40:15.264737+07');
INSERT INTO category."Countries" VALUES (219, 'Thailand', NULL, NULL, NULL, 'Bangkok', '764', '66', '.th', '🇹🇭', 'system', '2023-07-26 08:40:15.264742+07', 'system', '2023-07-26 08:40:15.264742+07');
INSERT INTO category."Countries" VALUES (220, 'Togo', NULL, NULL, NULL, 'Lome', '768', '228', '.tg', '🇹🇬', 'system', '2023-07-26 08:40:15.264751+07', 'system', '2023-07-26 08:40:15.264751+07');
INSERT INTO category."Countries" VALUES (221, 'Tokelau', NULL, NULL, NULL, '', '772', '690', '.tk', '🇹🇰', 'system', '2023-07-26 08:40:15.264756+07', 'system', '2023-07-26 08:40:15.264756+07');
INSERT INTO category."Countries" VALUES (222, 'Tonga', NULL, NULL, NULL, 'Nuku''alofa', '776', '676', '.to', '🇹🇴', 'system', '2023-07-26 08:40:15.264761+07', 'system', '2023-07-26 08:40:15.264761+07');
INSERT INTO category."Countries" VALUES (223, 'Trinidad And Tobago', NULL, NULL, NULL, 'Port of Spain', '780', '1-868', '.tt', '🇹🇹', 'system', '2023-07-26 08:40:15.264766+07', 'system', '2023-07-26 08:40:15.264766+07');
INSERT INTO category."Countries" VALUES (224, 'Tunisia', NULL, NULL, NULL, 'Tunis', '788', '216', '.tn', '🇹🇳', 'system', '2023-07-26 08:40:15.264771+07', 'system', '2023-07-26 08:40:15.264771+07');
INSERT INTO category."Countries" VALUES (225, 'Turkey', NULL, NULL, NULL, 'Ankara', '792', '90', '.tr', '🇹🇷', 'system', '2023-07-26 08:40:15.264776+07', 'system', '2023-07-26 08:40:15.264776+07');
INSERT INTO category."Countries" VALUES (226, 'Turkmenistan', NULL, NULL, NULL, 'Ashgabat', '795', '993', '.tm', '🇹🇲', 'system', '2023-07-26 08:40:15.264781+07', 'system', '2023-07-26 08:40:15.264781+07');
INSERT INTO category."Countries" VALUES (227, 'Turks And Caicos Islands', NULL, NULL, NULL, 'Cockburn Town', '796', '1-649', '.tc', '🇹🇨', 'system', '2023-07-26 08:40:15.264786+07', 'system', '2023-07-26 08:40:15.264786+07');
INSERT INTO category."Countries" VALUES (228, 'Tuvalu', NULL, NULL, NULL, 'Funafuti', '798', '688', '.tv', '🇹🇻', 'system', '2023-07-26 08:40:15.26479+07', 'system', '2023-07-26 08:40:15.26479+07');
INSERT INTO category."Countries" VALUES (229, 'Uganda', NULL, NULL, NULL, 'Kampala', '800', '256', '.ug', '🇺🇬', 'system', '2023-07-26 08:40:15.264795+07', 'system', '2023-07-26 08:40:15.264795+07');
INSERT INTO category."Countries" VALUES (230, 'Ukraine', NULL, NULL, NULL, 'Kiev', '804', '380', '.ua', '🇺🇦', 'system', '2023-07-26 08:40:15.2648+07', 'system', '2023-07-26 08:40:15.2648+07');
INSERT INTO category."Countries" VALUES (231, 'United Arab Emirates', NULL, NULL, NULL, 'Abu Dhabi', '784', '971', '.ae', '🇦🇪', 'system', '2023-07-26 08:40:15.264817+07', 'system', '2023-07-26 08:40:15.264817+07');
INSERT INTO category."Countries" VALUES (232, 'United Kingdom', NULL, NULL, NULL, 'London', '826', '44', '.uk', '🇬🇧', 'system', '2023-07-26 08:40:15.264826+07', 'system', '2023-07-26 08:40:15.264826+07');
INSERT INTO category."Countries" VALUES (233, 'United States', NULL, NULL, NULL, 'Washington', '840', '1', '.us', '🇺🇸', 'system', '2023-07-26 08:40:15.264834+07', 'system', '2023-07-26 08:40:15.264834+07');
INSERT INTO category."Countries" VALUES (234, 'United States Minor Outlying Islands', NULL, NULL, NULL, '', '581', '1', '.us', '🇺🇲', 'system', '2023-07-26 08:40:15.264842+07', 'system', '2023-07-26 08:40:15.264842+07');
INSERT INTO category."Countries" VALUES (235, 'Uruguay', NULL, NULL, NULL, 'Montevideo', '858', '598', '.uy', '🇺🇾', 'system', '2023-07-26 08:40:15.264847+07', 'system', '2023-07-26 08:40:15.264847+07');
INSERT INTO category."Countries" VALUES (236, 'Uzbekistan', NULL, NULL, NULL, 'Tashkent', '860', '998', '.uz', '🇺🇿', 'system', '2023-07-26 08:40:15.264852+07', 'system', '2023-07-26 08:40:15.264852+07');
INSERT INTO category."Countries" VALUES (237, 'Vanuatu', NULL, NULL, NULL, 'Port Vila', '548', '678', '.vu', '🇻🇺', 'system', '2023-07-26 08:40:15.264857+07', 'system', '2023-07-26 08:40:15.264857+07');
INSERT INTO category."Countries" VALUES (238, 'Vatican City State (Holy See)', NULL, NULL, NULL, 'Vatican City', '336', '379', '.va', '🇻🇦', 'system', '2023-07-26 08:40:15.264862+07', 'system', '2023-07-26 08:40:15.264862+07');
INSERT INTO category."Countries" VALUES (239, 'Venezuela', NULL, NULL, NULL, 'Caracas', '862', '58', '.ve', '🇻🇪', 'system', '2023-07-26 08:40:15.264867+07', 'system', '2023-07-26 08:40:15.264867+07');
INSERT INTO category."Countries" VALUES (240, 'Vietnam', NULL, NULL, NULL, 'Hanoi', '704', '84', '.vn', '🇻🇳', 'system', '2023-07-26 08:40:15.264872+07', 'system', '2023-07-26 08:40:15.264872+07');
INSERT INTO category."Countries" VALUES (241, 'Virgin Islands (British)', NULL, NULL, NULL, 'Road Town', '092', '1-284', '.vg', '🇻🇬', 'system', '2023-07-26 08:40:15.264876+07', 'system', '2023-07-26 08:40:15.264876+07');
INSERT INTO category."Countries" VALUES (242, 'Virgin Islands (US)', NULL, NULL, NULL, 'Charlotte Amalie', '850', '1-340', '.vi', '🇻🇮', 'system', '2023-07-26 08:40:15.264881+07', 'system', '2023-07-26 08:40:15.264881+07');
INSERT INTO category."Countries" VALUES (243, 'Wallis And Futuna Islands', NULL, NULL, NULL, 'Mata Utu', '876', '681', '.wf', '🇼🇫', 'system', '2023-07-26 08:40:15.264886+07', 'system', '2023-07-26 08:40:15.264886+07');
INSERT INTO category."Countries" VALUES (244, 'Western Sahara', NULL, NULL, NULL, 'El-Aaiun', '732', '212', '.eh', '🇪🇭', 'system', '2023-07-26 08:40:15.264891+07', 'system', '2023-07-26 08:40:15.264891+07');
INSERT INTO category."Countries" VALUES (245, 'Yemen', NULL, NULL, NULL, 'Sanaa', '887', '967', '.ye', '🇾🇪', 'system', '2023-07-26 08:40:15.264896+07', 'system', '2023-07-26 08:40:15.264896+07');
INSERT INTO category."Countries" VALUES (246, 'Zambia', NULL, NULL, NULL, 'Lusaka', '894', '260', '.zm', '🇿🇲', 'system', '2023-07-26 08:40:15.2649+07', 'system', '2023-07-26 08:40:15.2649+07');
INSERT INTO category."Countries" VALUES (247, 'Zimbabwe', NULL, NULL, NULL, 'Harare', '716', '263', '.zw', '🇿🇼', 'system', '2023-07-26 08:40:15.264905+07', 'system', '2023-07-26 08:40:15.264905+07');
INSERT INTO category."Countries" VALUES (248, 'Kosovo', NULL, NULL, NULL, 'Pristina', '926', '383', '.xk', '🇽🇰', 'system', '2023-07-26 08:40:15.264212+07', 'system', '2023-07-26 08:40:15.264212+07');
INSERT INTO category."Countries" VALUES (249, 'Curaçao', NULL, NULL, NULL, 'Willemstad', '531', '599', '.cw', '🇨🇼', 'system', '2023-07-26 08:40:15.263878+07', 'system', '2023-07-26 08:40:15.263879+07');
INSERT INTO category."Countries" VALUES (250, 'Sint Maarten (Dutch part)', NULL, NULL, NULL, 'Philipsburg', '534', '1721', '.sx', '🇸🇽', 'system', '2023-07-26 08:40:15.264645+07', 'system', '2023-07-26 08:40:15.264645+07');


--
-- Data for Name: Districts; Type: TABLE DATA; Schema: category; Owner: sdoc
--

INSERT INTO category."Districts" VALUES (1, 1, 'system', '2023-07-26 08:40:16.202115+07', 'system', '2023-07-26 08:40:16.202116+07', 'Quận Ba Đình', '001', 'Quận');
INSERT INTO category."Districts" VALUES (2, 1, 'system', '2023-07-26 08:40:16.202643+07', 'system', '2023-07-26 08:40:16.202644+07', 'Quận Hoàn Kiếm', '002', 'Quận');
INSERT INTO category."Districts" VALUES (3, 1, 'system', '2023-07-26 08:40:16.20266+07', 'system', '2023-07-26 08:40:16.20266+07', 'Quận Tây Hồ', '003', 'Quận');
INSERT INTO category."Districts" VALUES (4, 1, 'system', '2023-07-26 08:40:16.202664+07', 'system', '2023-07-26 08:40:16.202664+07', 'Quận Long Biên', '004', 'Quận');
INSERT INTO category."Districts" VALUES (5, 1, 'system', '2023-07-26 08:40:16.202668+07', 'system', '2023-07-26 08:40:16.202668+07', 'Quận Cầu Giấy', '005', 'Quận');
INSERT INTO category."Districts" VALUES (6, 1, 'system', '2023-07-26 08:40:16.202674+07', 'system', '2023-07-26 08:40:16.202674+07', 'Quận Đống Đa', '006', 'Quận');
INSERT INTO category."Districts" VALUES (7, 1, 'system', '2023-07-26 08:40:16.202678+07', 'system', '2023-07-26 08:40:16.202678+07', 'Quận Hai Bà Trưng', '007', 'Quận');
INSERT INTO category."Districts" VALUES (8, 1, 'system', '2023-07-26 08:40:16.202681+07', 'system', '2023-07-26 08:40:16.202681+07', 'Quận Hoàng Mai', '008', 'Quận');
INSERT INTO category."Districts" VALUES (9, 1, 'system', '2023-07-26 08:40:16.202684+07', 'system', '2023-07-26 08:40:16.202684+07', 'Quận Thanh Xuân', '009', 'Quận');
INSERT INTO category."Districts" VALUES (16, 1, 'system', '2023-07-26 08:40:16.202687+07', 'system', '2023-07-26 08:40:16.202687+07', 'Huyện Sóc Sơn', '016', 'Huyện');
INSERT INTO category."Districts" VALUES (17, 1, 'system', '2023-07-26 08:40:16.20269+07', 'system', '2023-07-26 08:40:16.20269+07', 'Huyện Đông Anh', '017', 'Huyện');
INSERT INTO category."Districts" VALUES (18, 1, 'system', '2023-07-26 08:40:16.202693+07', 'system', '2023-07-26 08:40:16.202693+07', 'Huyện Gia Lâm', '018', 'Huyện');
INSERT INTO category."Districts" VALUES (19, 1, 'system', '2023-07-26 08:40:16.202696+07', 'system', '2023-07-26 08:40:16.202696+07', 'Quận Nam Từ Liêm', '019', 'Quận');
INSERT INTO category."Districts" VALUES (20, 1, 'system', '2023-07-26 08:40:16.202699+07', 'system', '2023-07-26 08:40:16.202699+07', 'Huyện Thanh Trì', '020', 'Huyện');
INSERT INTO category."Districts" VALUES (21, 1, 'system', '2023-07-26 08:40:16.202702+07', 'system', '2023-07-26 08:40:16.202702+07', 'Quận Bắc Từ Liêm', '021', 'Quận');
INSERT INTO category."Districts" VALUES (24, 2, 'system', '2023-07-26 08:40:16.202772+07', 'system', '2023-07-26 08:40:16.202772+07', 'Thành phố Hà Giang', '024', 'Thành phố');
INSERT INTO category."Districts" VALUES (26, 2, 'system', '2023-07-26 08:40:16.202775+07', 'system', '2023-07-26 08:40:16.202776+07', 'Huyện Đồng Văn', '026', 'Huyện');
INSERT INTO category."Districts" VALUES (27, 2, 'system', '2023-07-26 08:40:16.202779+07', 'system', '2023-07-26 08:40:16.202779+07', 'Huyện Mèo Vạc', '027', 'Huyện');
INSERT INTO category."Districts" VALUES (28, 2, 'system', '2023-07-26 08:40:16.202782+07', 'system', '2023-07-26 08:40:16.202782+07', 'Huyện Yên Minh', '028', 'Huyện');
INSERT INTO category."Districts" VALUES (29, 2, 'system', '2023-07-26 08:40:16.202785+07', 'system', '2023-07-26 08:40:16.202785+07', 'Huyện Quản Bạ', '029', 'Huyện');
INSERT INTO category."Districts" VALUES (30, 2, 'system', '2023-07-26 08:40:16.202788+07', 'system', '2023-07-26 08:40:16.202788+07', 'Huyện Vị Xuyên', '030', 'Huyện');
INSERT INTO category."Districts" VALUES (31, 2, 'system', '2023-07-26 08:40:16.202791+07', 'system', '2023-07-26 08:40:16.202791+07', 'Huyện Bắc Mê', '031', 'Huyện');
INSERT INTO category."Districts" VALUES (32, 2, 'system', '2023-07-26 08:40:16.202793+07', 'system', '2023-07-26 08:40:16.202793+07', 'Huyện Hoàng Su Phì', '032', 'Huyện');
INSERT INTO category."Districts" VALUES (33, 2, 'system', '2023-07-26 08:40:16.202796+07', 'system', '2023-07-26 08:40:16.202796+07', 'Huyện Xín Mần', '033', 'Huyện');
INSERT INTO category."Districts" VALUES (34, 2, 'system', '2023-07-26 08:40:16.202799+07', 'system', '2023-07-26 08:40:16.202799+07', 'Huyện Bắc Quang', '034', 'Huyện');
INSERT INTO category."Districts" VALUES (35, 2, 'system', '2023-07-26 08:40:16.202802+07', 'system', '2023-07-26 08:40:16.202802+07', 'Huyện Quang Bình', '035', 'Huyện');
INSERT INTO category."Districts" VALUES (40, 4, 'system', '2023-07-26 08:40:16.202805+07', 'system', '2023-07-26 08:40:16.202805+07', 'Thành phố Cao Bằng', '040', 'Thành phố');
INSERT INTO category."Districts" VALUES (42, 4, 'system', '2023-07-26 08:40:16.202808+07', 'system', '2023-07-26 08:40:16.202808+07', 'Huyện Bảo Lâm', '042', 'Huyện');
INSERT INTO category."Districts" VALUES (43, 4, 'system', '2023-07-26 08:40:16.20281+07', 'system', '2023-07-26 08:40:16.202811+07', 'Huyện Bảo Lạc', '043', 'Huyện');
INSERT INTO category."Districts" VALUES (45, 4, 'system', '2023-07-26 08:40:16.202813+07', 'system', '2023-07-26 08:40:16.202813+07', 'Huyện Hà Quảng', '045', 'Huyện');
INSERT INTO category."Districts" VALUES (47, 4, 'system', '2023-07-26 08:40:16.202816+07', 'system', '2023-07-26 08:40:16.202816+07', 'Huyện Trùng Khánh', '047', 'Huyện');
INSERT INTO category."Districts" VALUES (48, 4, 'system', '2023-07-26 08:40:16.202819+07', 'system', '2023-07-26 08:40:16.202819+07', 'Huyện Hạ Lang', '048', 'Huyện');
INSERT INTO category."Districts" VALUES (49, 4, 'system', '2023-07-26 08:40:16.202822+07', 'system', '2023-07-26 08:40:16.202822+07', 'Huyện Quảng Hòa', '049', 'Huyện');
INSERT INTO category."Districts" VALUES (51, 4, 'system', '2023-07-26 08:40:16.202824+07', 'system', '2023-07-26 08:40:16.202824+07', 'Huyện Hoà An', '051', 'Huyện');
INSERT INTO category."Districts" VALUES (52, 4, 'system', '2023-07-26 08:40:16.202827+07', 'system', '2023-07-26 08:40:16.202827+07', 'Huyện Nguyên Bình', '052', 'Huyện');
INSERT INTO category."Districts" VALUES (53, 4, 'system', '2023-07-26 08:40:16.20283+07', 'system', '2023-07-26 08:40:16.20283+07', 'Huyện Thạch An', '053', 'Huyện');
INSERT INTO category."Districts" VALUES (58, 6, 'system', '2023-07-26 08:40:16.202833+07', 'system', '2023-07-26 08:40:16.202833+07', 'Thành Phố Bắc Kạn', '058', 'Thành phố');
INSERT INTO category."Districts" VALUES (60, 6, 'system', '2023-07-26 08:40:16.202836+07', 'system', '2023-07-26 08:40:16.202836+07', 'Huyện Pác Nặm', '060', 'Huyện');
INSERT INTO category."Districts" VALUES (61, 6, 'system', '2023-07-26 08:40:16.202839+07', 'system', '2023-07-26 08:40:16.202839+07', 'Huyện Ba Bể', '061', 'Huyện');
INSERT INTO category."Districts" VALUES (62, 6, 'system', '2023-07-26 08:40:16.202841+07', 'system', '2023-07-26 08:40:16.202841+07', 'Huyện Ngân Sơn', '062', 'Huyện');
INSERT INTO category."Districts" VALUES (63, 6, 'system', '2023-07-26 08:40:16.202845+07', 'system', '2023-07-26 08:40:16.202845+07', 'Huyện Bạch Thông', '063', 'Huyện');
INSERT INTO category."Districts" VALUES (64, 6, 'system', '2023-07-26 08:40:16.202848+07', 'system', '2023-07-26 08:40:16.202848+07', 'Huyện Chợ Đồn', '064', 'Huyện');
INSERT INTO category."Districts" VALUES (65, 6, 'system', '2023-07-26 08:40:16.202851+07', 'system', '2023-07-26 08:40:16.202851+07', 'Huyện Chợ Mới', '065', 'Huyện');
INSERT INTO category."Districts" VALUES (66, 6, 'system', '2023-07-26 08:40:16.202854+07', 'system', '2023-07-26 08:40:16.202854+07', 'Huyện Na Rì', '066', 'Huyện');
INSERT INTO category."Districts" VALUES (70, 8, 'system', '2023-07-26 08:40:16.202856+07', 'system', '2023-07-26 08:40:16.202856+07', 'Thành phố Tuyên Quang', '070', 'Thành phố');
INSERT INTO category."Districts" VALUES (71, 8, 'system', '2023-07-26 08:40:16.202859+07', 'system', '2023-07-26 08:40:16.20286+07', 'Huyện Lâm Bình', '071', 'Huyện');
INSERT INTO category."Districts" VALUES (72, 8, 'system', '2023-07-26 08:40:16.202862+07', 'system', '2023-07-26 08:40:16.202862+07', 'Huyện Na Hang', '072', 'Huyện');
INSERT INTO category."Districts" VALUES (73, 8, 'system', '2023-07-26 08:40:16.202865+07', 'system', '2023-07-26 08:40:16.202865+07', 'Huyện Chiêm Hóa', '073', 'Huyện');
INSERT INTO category."Districts" VALUES (74, 8, 'system', '2023-07-26 08:40:16.202868+07', 'system', '2023-07-26 08:40:16.202868+07', 'Huyện Hàm Yên', '074', 'Huyện');
INSERT INTO category."Districts" VALUES (75, 8, 'system', '2023-07-26 08:40:16.202871+07', 'system', '2023-07-26 08:40:16.202871+07', 'Huyện Yên Sơn', '075', 'Huyện');
INSERT INTO category."Districts" VALUES (76, 8, 'system', '2023-07-26 08:40:16.202874+07', 'system', '2023-07-26 08:40:16.202874+07', 'Huyện Sơn Dương', '076', 'Huyện');
INSERT INTO category."Districts" VALUES (80, 10, 'system', '2023-07-26 08:40:16.202877+07', 'system', '2023-07-26 08:40:16.202877+07', 'Thành phố Lào Cai', '080', 'Thành phố');
INSERT INTO category."Districts" VALUES (82, 10, 'system', '2023-07-26 08:40:16.20288+07', 'system', '2023-07-26 08:40:16.20288+07', 'Huyện Bát Xát', '082', 'Huyện');
INSERT INTO category."Districts" VALUES (83, 10, 'system', '2023-07-26 08:40:16.202883+07', 'system', '2023-07-26 08:40:16.202883+07', 'Huyện Mường Khương', '083', 'Huyện');
INSERT INTO category."Districts" VALUES (84, 10, 'system', '2023-07-26 08:40:16.202886+07', 'system', '2023-07-26 08:40:16.202886+07', 'Huyện Si Ma Cai', '084', 'Huyện');
INSERT INTO category."Districts" VALUES (85, 10, 'system', '2023-07-26 08:40:16.202888+07', 'system', '2023-07-26 08:40:16.202888+07', 'Huyện Bắc Hà', '085', 'Huyện');
INSERT INTO category."Districts" VALUES (86, 10, 'system', '2023-07-26 08:40:16.202891+07', 'system', '2023-07-26 08:40:16.202891+07', 'Huyện Bảo Thắng', '086', 'Huyện');
INSERT INTO category."Districts" VALUES (87, 10, 'system', '2023-07-26 08:40:16.202894+07', 'system', '2023-07-26 08:40:16.202894+07', 'Huyện Bảo Yên', '087', 'Huyện');
INSERT INTO category."Districts" VALUES (88, 10, 'system', '2023-07-26 08:40:16.202897+07', 'system', '2023-07-26 08:40:16.202897+07', 'Thị xã Sa Pa', '088', 'Thị xã');
INSERT INTO category."Districts" VALUES (89, 10, 'system', '2023-07-26 08:40:16.2029+07', 'system', '2023-07-26 08:40:16.2029+07', 'Huyện Văn Bàn', '089', 'Huyện');
INSERT INTO category."Districts" VALUES (94, 11, 'system', '2023-07-26 08:40:16.202903+07', 'system', '2023-07-26 08:40:16.202903+07', 'Thành phố Điện Biên Phủ', '094', 'Thành phố');
INSERT INTO category."Districts" VALUES (95, 11, 'system', '2023-07-26 08:40:16.202906+07', 'system', '2023-07-26 08:40:16.202906+07', 'Thị Xã Mường Lay', '095', 'Thị xã');
INSERT INTO category."Districts" VALUES (96, 11, 'system', '2023-07-26 08:40:16.202909+07', 'system', '2023-07-26 08:40:16.202909+07', 'Huyện Mường Nhé', '096', 'Huyện');
INSERT INTO category."Districts" VALUES (97, 11, 'system', '2023-07-26 08:40:16.202912+07', 'system', '2023-07-26 08:40:16.202912+07', 'Huyện Mường Chà', '097', 'Huyện');
INSERT INTO category."Districts" VALUES (98, 11, 'system', '2023-07-26 08:40:16.202916+07', 'system', '2023-07-26 08:40:16.202916+07', 'Huyện Tủa Chùa', '098', 'Huyện');
INSERT INTO category."Districts" VALUES (99, 11, 'system', '2023-07-26 08:40:16.202919+07', 'system', '2023-07-26 08:40:16.202919+07', 'Huyện Tuần Giáo', '099', 'Huyện');
INSERT INTO category."Districts" VALUES (100, 11, 'system', '2023-07-26 08:40:16.202922+07', 'system', '2023-07-26 08:40:16.202922+07', 'Huyện Điện Biên', '100', 'Huyện');
INSERT INTO category."Districts" VALUES (101, 11, 'system', '2023-07-26 08:40:16.202925+07', 'system', '2023-07-26 08:40:16.202925+07', 'Huyện Điện Biên Đông', '101', 'Huyện');
INSERT INTO category."Districts" VALUES (102, 11, 'system', '2023-07-26 08:40:16.202928+07', 'system', '2023-07-26 08:40:16.202928+07', 'Huyện Mường Ảng', '102', 'Huyện');
INSERT INTO category."Districts" VALUES (103, 11, 'system', '2023-07-26 08:40:16.202931+07', 'system', '2023-07-26 08:40:16.202931+07', 'Huyện Nậm Pồ', '103', 'Huyện');
INSERT INTO category."Districts" VALUES (105, 12, 'system', '2023-07-26 08:40:16.202934+07', 'system', '2023-07-26 08:40:16.202934+07', 'Thành phố Lai Châu', '105', 'Thành phố');
INSERT INTO category."Districts" VALUES (106, 12, 'system', '2023-07-26 08:40:16.202937+07', 'system', '2023-07-26 08:40:16.202937+07', 'Huyện Tam Đường', '106', 'Huyện');
INSERT INTO category."Districts" VALUES (107, 12, 'system', '2023-07-26 08:40:16.20294+07', 'system', '2023-07-26 08:40:16.20294+07', 'Huyện Mường Tè', '107', 'Huyện');
INSERT INTO category."Districts" VALUES (108, 12, 'system', '2023-07-26 08:40:16.202943+07', 'system', '2023-07-26 08:40:16.202943+07', 'Huyện Sìn Hồ', '108', 'Huyện');
INSERT INTO category."Districts" VALUES (109, 12, 'system', '2023-07-26 08:40:16.202946+07', 'system', '2023-07-26 08:40:16.202946+07', 'Huyện Phong Thổ', '109', 'Huyện');
INSERT INTO category."Districts" VALUES (110, 12, 'system', '2023-07-26 08:40:16.202949+07', 'system', '2023-07-26 08:40:16.202949+07', 'Huyện Than Uyên', '110', 'Huyện');
INSERT INTO category."Districts" VALUES (111, 12, 'system', '2023-07-26 08:40:16.202952+07', 'system', '2023-07-26 08:40:16.202952+07', 'Huyện Tân Uyên', '111', 'Huyện');
INSERT INTO category."Districts" VALUES (112, 12, 'system', '2023-07-26 08:40:16.202954+07', 'system', '2023-07-26 08:40:16.202954+07', 'Huyện Nậm Nhùn', '112', 'Huyện');
INSERT INTO category."Districts" VALUES (116, 14, 'system', '2023-07-26 08:40:16.202957+07', 'system', '2023-07-26 08:40:16.202957+07', 'Thành phố Sơn La', '116', 'Thành phố');
INSERT INTO category."Districts" VALUES (118, 14, 'system', '2023-07-26 08:40:16.20296+07', 'system', '2023-07-26 08:40:16.20296+07', 'Huyện Quỳnh Nhai', '118', 'Huyện');
INSERT INTO category."Districts" VALUES (119, 14, 'system', '2023-07-26 08:40:16.202963+07', 'system', '2023-07-26 08:40:16.202963+07', 'Huyện Thuận Châu', '119', 'Huyện');
INSERT INTO category."Districts" VALUES (120, 14, 'system', '2023-07-26 08:40:16.202966+07', 'system', '2023-07-26 08:40:16.202966+07', 'Huyện Mường La', '120', 'Huyện');
INSERT INTO category."Districts" VALUES (121, 14, 'system', '2023-07-26 08:40:16.202969+07', 'system', '2023-07-26 08:40:16.202969+07', 'Huyện Bắc Yên', '121', 'Huyện');
INSERT INTO category."Districts" VALUES (122, 14, 'system', '2023-07-26 08:40:16.202971+07', 'system', '2023-07-26 08:40:16.202971+07', 'Huyện Phù Yên', '122', 'Huyện');
INSERT INTO category."Districts" VALUES (123, 14, 'system', '2023-07-26 08:40:16.202974+07', 'system', '2023-07-26 08:40:16.202974+07', 'Huyện Mộc Châu', '123', 'Huyện');
INSERT INTO category."Districts" VALUES (124, 14, 'system', '2023-07-26 08:40:16.202977+07', 'system', '2023-07-26 08:40:16.202977+07', 'Huyện Yên Châu', '124', 'Huyện');
INSERT INTO category."Districts" VALUES (125, 14, 'system', '2023-07-26 08:40:16.202979+07', 'system', '2023-07-26 08:40:16.20298+07', 'Huyện Mai Sơn', '125', 'Huyện');
INSERT INTO category."Districts" VALUES (126, 14, 'system', '2023-07-26 08:40:16.202982+07', 'system', '2023-07-26 08:40:16.202982+07', 'Huyện Sông Mã', '126', 'Huyện');
INSERT INTO category."Districts" VALUES (127, 14, 'system', '2023-07-26 08:40:16.202985+07', 'system', '2023-07-26 08:40:16.202985+07', 'Huyện Sốp Cộp', '127', 'Huyện');
INSERT INTO category."Districts" VALUES (128, 14, 'system', '2023-07-26 08:40:16.202988+07', 'system', '2023-07-26 08:40:16.202988+07', 'Huyện Vân Hồ', '128', 'Huyện');
INSERT INTO category."Districts" VALUES (132, 15, 'system', '2023-07-26 08:40:16.202991+07', 'system', '2023-07-26 08:40:16.202991+07', 'Thành phố Yên Bái', '132', 'Thành phố');
INSERT INTO category."Districts" VALUES (133, 15, 'system', '2023-07-26 08:40:16.202995+07', 'system', '2023-07-26 08:40:16.202995+07', 'Thị xã Nghĩa Lộ', '133', 'Thị xã');
INSERT INTO category."Districts" VALUES (135, 15, 'system', '2023-07-26 08:40:16.202998+07', 'system', '2023-07-26 08:40:16.202998+07', 'Huyện Lục Yên', '135', 'Huyện');
INSERT INTO category."Districts" VALUES (136, 15, 'system', '2023-07-26 08:40:16.203001+07', 'system', '2023-07-26 08:40:16.203001+07', 'Huyện Văn Yên', '136', 'Huyện');
INSERT INTO category."Districts" VALUES (137, 15, 'system', '2023-07-26 08:40:16.203004+07', 'system', '2023-07-26 08:40:16.203004+07', 'Huyện Mù Căng Chải', '137', 'Huyện');
INSERT INTO category."Districts" VALUES (138, 15, 'system', '2023-07-26 08:40:16.203007+07', 'system', '2023-07-26 08:40:16.203007+07', 'Huyện Trấn Yên', '138', 'Huyện');
INSERT INTO category."Districts" VALUES (139, 15, 'system', '2023-07-26 08:40:16.203009+07', 'system', '2023-07-26 08:40:16.203009+07', 'Huyện Trạm Tấu', '139', 'Huyện');
INSERT INTO category."Districts" VALUES (140, 15, 'system', '2023-07-26 08:40:16.203012+07', 'system', '2023-07-26 08:40:16.203012+07', 'Huyện Văn Chấn', '140', 'Huyện');
INSERT INTO category."Districts" VALUES (141, 15, 'system', '2023-07-26 08:40:16.203015+07', 'system', '2023-07-26 08:40:16.203015+07', 'Huyện Yên Bình', '141', 'Huyện');
INSERT INTO category."Districts" VALUES (148, 17, 'system', '2023-07-26 08:40:16.203018+07', 'system', '2023-07-26 08:40:16.203018+07', 'Thành phố Hòa Bình', '148', 'Thành phố');
INSERT INTO category."Districts" VALUES (150, 17, 'system', '2023-07-26 08:40:16.203021+07', 'system', '2023-07-26 08:40:16.203021+07', 'Huyện Đà Bắc', '150', 'Huyện');
INSERT INTO category."Districts" VALUES (152, 17, 'system', '2023-07-26 08:40:16.203024+07', 'system', '2023-07-26 08:40:16.203024+07', 'Huyện Lương Sơn', '152', 'Huyện');
INSERT INTO category."Districts" VALUES (153, 17, 'system', '2023-07-26 08:40:16.203027+07', 'system', '2023-07-26 08:40:16.203027+07', 'Huyện Kim Bôi', '153', 'Huyện');
INSERT INTO category."Districts" VALUES (154, 17, 'system', '2023-07-26 08:40:16.20303+07', 'system', '2023-07-26 08:40:16.20303+07', 'Huyện Cao Phong', '154', 'Huyện');
INSERT INTO category."Districts" VALUES (155, 17, 'system', '2023-07-26 08:40:16.203033+07', 'system', '2023-07-26 08:40:16.203033+07', 'Huyện Tân Lạc', '155', 'Huyện');
INSERT INTO category."Districts" VALUES (156, 17, 'system', '2023-07-26 08:40:16.203035+07', 'system', '2023-07-26 08:40:16.203036+07', 'Huyện Mai Châu', '156', 'Huyện');
INSERT INTO category."Districts" VALUES (157, 17, 'system', '2023-07-26 08:40:16.203038+07', 'system', '2023-07-26 08:40:16.203038+07', 'Huyện Lạc Sơn', '157', 'Huyện');
INSERT INTO category."Districts" VALUES (158, 17, 'system', '2023-07-26 08:40:16.203041+07', 'system', '2023-07-26 08:40:16.203041+07', 'Huyện Yên Thủy', '158', 'Huyện');
INSERT INTO category."Districts" VALUES (159, 17, 'system', '2023-07-26 08:40:16.203044+07', 'system', '2023-07-26 08:40:16.203044+07', 'Huyện Lạc Thủy', '159', 'Huyện');
INSERT INTO category."Districts" VALUES (164, 19, 'system', '2023-07-26 08:40:16.203046+07', 'system', '2023-07-26 08:40:16.203047+07', 'Thành phố Thái Nguyên', '164', 'Thành phố');
INSERT INTO category."Districts" VALUES (165, 19, 'system', '2023-07-26 08:40:16.203049+07', 'system', '2023-07-26 08:40:16.203049+07', 'Thành phố Sông Công', '165', 'Thành phố');
INSERT INTO category."Districts" VALUES (167, 19, 'system', '2023-07-26 08:40:16.203052+07', 'system', '2023-07-26 08:40:16.203052+07', 'Huyện Định Hóa', '167', 'Huyện');
INSERT INTO category."Districts" VALUES (168, 19, 'system', '2023-07-26 08:40:16.203055+07', 'system', '2023-07-26 08:40:16.203055+07', 'Huyện Phú Lương', '168', 'Huyện');
INSERT INTO category."Districts" VALUES (169, 19, 'system', '2023-07-26 08:40:16.203058+07', 'system', '2023-07-26 08:40:16.203058+07', 'Huyện Đồng Hỷ', '169', 'Huyện');
INSERT INTO category."Districts" VALUES (170, 19, 'system', '2023-07-26 08:40:16.203062+07', 'system', '2023-07-26 08:40:16.203062+07', 'Huyện Võ Nhai', '170', 'Huyện');
INSERT INTO category."Districts" VALUES (171, 19, 'system', '2023-07-26 08:40:16.203065+07', 'system', '2023-07-26 08:40:16.203065+07', 'Huyện Đại Từ', '171', 'Huyện');
INSERT INTO category."Districts" VALUES (172, 19, 'system', '2023-07-26 08:40:16.203068+07', 'system', '2023-07-26 08:40:16.203068+07', 'Thành phố Phổ Yên', '172', 'Thành phố');
INSERT INTO category."Districts" VALUES (173, 19, 'system', '2023-07-26 08:40:16.203071+07', 'system', '2023-07-26 08:40:16.203071+07', 'Huyện Phú Bình', '173', 'Huyện');
INSERT INTO category."Districts" VALUES (178, 20, 'system', '2023-07-26 08:40:16.203074+07', 'system', '2023-07-26 08:40:16.203074+07', 'Thành phố Lạng Sơn', '178', 'Thành phố');
INSERT INTO category."Districts" VALUES (180, 20, 'system', '2023-07-26 08:40:16.203077+07', 'system', '2023-07-26 08:40:16.203077+07', 'Huyện Tràng Định', '180', 'Huyện');
INSERT INTO category."Districts" VALUES (181, 20, 'system', '2023-07-26 08:40:16.20308+07', 'system', '2023-07-26 08:40:16.20308+07', 'Huyện Bình Gia', '181', 'Huyện');
INSERT INTO category."Districts" VALUES (182, 20, 'system', '2023-07-26 08:40:16.203083+07', 'system', '2023-07-26 08:40:16.203083+07', 'Huyện Văn Lãng', '182', 'Huyện');
INSERT INTO category."Districts" VALUES (183, 20, 'system', '2023-07-26 08:40:16.203086+07', 'system', '2023-07-26 08:40:16.203086+07', 'Huyện Cao Lộc', '183', 'Huyện');
INSERT INTO category."Districts" VALUES (184, 20, 'system', '2023-07-26 08:40:16.203089+07', 'system', '2023-07-26 08:40:16.203089+07', 'Huyện Văn Quan', '184', 'Huyện');
INSERT INTO category."Districts" VALUES (185, 20, 'system', '2023-07-26 08:40:16.203091+07', 'system', '2023-07-26 08:40:16.203091+07', 'Huyện Bắc Sơn', '185', 'Huyện');
INSERT INTO category."Districts" VALUES (186, 20, 'system', '2023-07-26 08:40:16.203094+07', 'system', '2023-07-26 08:40:16.203094+07', 'Huyện Hữu Lũng', '186', 'Huyện');
INSERT INTO category."Districts" VALUES (187, 20, 'system', '2023-07-26 08:40:16.203097+07', 'system', '2023-07-26 08:40:16.203097+07', 'Huyện Chi Lăng', '187', 'Huyện');
INSERT INTO category."Districts" VALUES (188, 20, 'system', '2023-07-26 08:40:16.2031+07', 'system', '2023-07-26 08:40:16.2031+07', 'Huyện Lộc Bình', '188', 'Huyện');
INSERT INTO category."Districts" VALUES (189, 20, 'system', '2023-07-26 08:40:16.203103+07', 'system', '2023-07-26 08:40:16.203103+07', 'Huyện Đình Lập', '189', 'Huyện');
INSERT INTO category."Districts" VALUES (193, 22, 'system', '2023-07-26 08:40:16.203106+07', 'system', '2023-07-26 08:40:16.203106+07', 'Thành phố Hạ Long', '193', 'Thành phố');
INSERT INTO category."Districts" VALUES (194, 22, 'system', '2023-07-26 08:40:16.203108+07', 'system', '2023-07-26 08:40:16.203109+07', 'Thành phố Móng Cái', '194', 'Thành phố');
INSERT INTO category."Districts" VALUES (195, 22, 'system', '2023-07-26 08:40:16.203112+07', 'system', '2023-07-26 08:40:16.203112+07', 'Thành phố Cẩm Phả', '195', 'Thành phố');
INSERT INTO category."Districts" VALUES (196, 22, 'system', '2023-07-26 08:40:16.203115+07', 'system', '2023-07-26 08:40:16.203115+07', 'Thành phố Uông Bí', '196', 'Thành phố');
INSERT INTO category."Districts" VALUES (198, 22, 'system', '2023-07-26 08:40:16.203118+07', 'system', '2023-07-26 08:40:16.203118+07', 'Huyện Bình Liêu', '198', 'Huyện');
INSERT INTO category."Districts" VALUES (199, 22, 'system', '2023-07-26 08:40:16.203121+07', 'system', '2023-07-26 08:40:16.203121+07', 'Huyện Tiên Yên', '199', 'Huyện');
INSERT INTO category."Districts" VALUES (200, 22, 'system', '2023-07-26 08:40:16.203124+07', 'system', '2023-07-26 08:40:16.203124+07', 'Huyện Đầm Hà', '200', 'Huyện');
INSERT INTO category."Districts" VALUES (201, 22, 'system', '2023-07-26 08:40:16.203126+07', 'system', '2023-07-26 08:40:16.203126+07', 'Huyện Hải Hà', '201', 'Huyện');
INSERT INTO category."Districts" VALUES (202, 22, 'system', '2023-07-26 08:40:16.20313+07', 'system', '2023-07-26 08:40:16.20313+07', 'Huyện Ba Chẽ', '202', 'Huyện');
INSERT INTO category."Districts" VALUES (203, 22, 'system', '2023-07-26 08:40:16.203133+07', 'system', '2023-07-26 08:40:16.203133+07', 'Huyện Vân Đồn', '203', 'Huyện');
INSERT INTO category."Districts" VALUES (205, 22, 'system', '2023-07-26 08:40:16.203136+07', 'system', '2023-07-26 08:40:16.203136+07', 'Thị xã Đông Triều', '205', 'Thị xã');
INSERT INTO category."Districts" VALUES (206, 22, 'system', '2023-07-26 08:40:16.203139+07', 'system', '2023-07-26 08:40:16.203139+07', 'Thị xã Quảng Yên', '206', 'Thị xã');
INSERT INTO category."Districts" VALUES (207, 22, 'system', '2023-07-26 08:40:16.203142+07', 'system', '2023-07-26 08:40:16.203142+07', 'Huyện Cô Tô', '207', 'Huyện');
INSERT INTO category."Districts" VALUES (213, 24, 'system', '2023-07-26 08:40:16.203145+07', 'system', '2023-07-26 08:40:16.203145+07', 'Thành phố Bắc Giang', '213', 'Thành phố');
INSERT INTO category."Districts" VALUES (215, 24, 'system', '2023-07-26 08:40:16.203148+07', 'system', '2023-07-26 08:40:16.203148+07', 'Huyện Yên Thế', '215', 'Huyện');
INSERT INTO category."Districts" VALUES (216, 24, 'system', '2023-07-26 08:40:16.203151+07', 'system', '2023-07-26 08:40:16.203151+07', 'Huyện Tân Yên', '216', 'Huyện');
INSERT INTO category."Districts" VALUES (217, 24, 'system', '2023-07-26 08:40:16.203154+07', 'system', '2023-07-26 08:40:16.203154+07', 'Huyện Lạng Giang', '217', 'Huyện');
INSERT INTO category."Districts" VALUES (218, 24, 'system', '2023-07-26 08:40:16.203157+07', 'system', '2023-07-26 08:40:16.203157+07', 'Huyện Lục Nam', '218', 'Huyện');
INSERT INTO category."Districts" VALUES (219, 24, 'system', '2023-07-26 08:40:16.203159+07', 'system', '2023-07-26 08:40:16.20316+07', 'Huyện Lục Ngạn', '219', 'Huyện');
INSERT INTO category."Districts" VALUES (220, 24, 'system', '2023-07-26 08:40:16.203162+07', 'system', '2023-07-26 08:40:16.203162+07', 'Huyện Sơn Động', '220', 'Huyện');
INSERT INTO category."Districts" VALUES (221, 24, 'system', '2023-07-26 08:40:16.203165+07', 'system', '2023-07-26 08:40:16.203165+07', 'Huyện Yên Dũng', '221', 'Huyện');
INSERT INTO category."Districts" VALUES (222, 24, 'system', '2023-07-26 08:40:16.203168+07', 'system', '2023-07-26 08:40:16.203168+07', 'Huyện Việt Yên', '222', 'Huyện');
INSERT INTO category."Districts" VALUES (223, 24, 'system', '2023-07-26 08:40:16.20317+07', 'system', '2023-07-26 08:40:16.203171+07', 'Huyện Hiệp Hòa', '223', 'Huyện');
INSERT INTO category."Districts" VALUES (227, 25, 'system', '2023-07-26 08:40:16.203173+07', 'system', '2023-07-26 08:40:16.203173+07', 'Thành phố Việt Trì', '227', 'Thành phố');
INSERT INTO category."Districts" VALUES (228, 25, 'system', '2023-07-26 08:40:16.203176+07', 'system', '2023-07-26 08:40:16.203176+07', 'Thị xã Phú Thọ', '228', 'Thị xã');
INSERT INTO category."Districts" VALUES (230, 25, 'system', '2023-07-26 08:40:16.203179+07', 'system', '2023-07-26 08:40:16.20318+07', 'Huyện Đoan Hùng', '230', 'Huyện');
INSERT INTO category."Districts" VALUES (231, 25, 'system', '2023-07-26 08:40:16.203182+07', 'system', '2023-07-26 08:40:16.203182+07', 'Huyện Hạ Hoà', '231', 'Huyện');
INSERT INTO category."Districts" VALUES (232, 25, 'system', '2023-07-26 08:40:16.203185+07', 'system', '2023-07-26 08:40:16.203185+07', 'Huyện Thanh Ba', '232', 'Huyện');
INSERT INTO category."Districts" VALUES (233, 25, 'system', '2023-07-26 08:40:16.203188+07', 'system', '2023-07-26 08:40:16.203188+07', 'Huyện Phù Ninh', '233', 'Huyện');
INSERT INTO category."Districts" VALUES (234, 25, 'system', '2023-07-26 08:40:16.203191+07', 'system', '2023-07-26 08:40:16.203191+07', 'Huyện Yên Lập', '234', 'Huyện');
INSERT INTO category."Districts" VALUES (235, 25, 'system', '2023-07-26 08:40:16.203194+07', 'system', '2023-07-26 08:40:16.203194+07', 'Huyện Cẩm Khê', '235', 'Huyện');
INSERT INTO category."Districts" VALUES (236, 25, 'system', '2023-07-26 08:40:16.203196+07', 'system', '2023-07-26 08:40:16.203196+07', 'Huyện Tam Nông', '236', 'Huyện');
INSERT INTO category."Districts" VALUES (237, 25, 'system', '2023-07-26 08:40:16.203199+07', 'system', '2023-07-26 08:40:16.203199+07', 'Huyện Lâm Thao', '237', 'Huyện');
INSERT INTO category."Districts" VALUES (238, 25, 'system', '2023-07-26 08:40:16.203202+07', 'system', '2023-07-26 08:40:16.203202+07', 'Huyện Thanh Sơn', '238', 'Huyện');
INSERT INTO category."Districts" VALUES (239, 25, 'system', '2023-07-26 08:40:16.203205+07', 'system', '2023-07-26 08:40:16.203205+07', 'Huyện Thanh Thuỷ', '239', 'Huyện');
INSERT INTO category."Districts" VALUES (240, 25, 'system', '2023-07-26 08:40:16.203208+07', 'system', '2023-07-26 08:40:16.203208+07', 'Huyện Tân Sơn', '240', 'Huyện');
INSERT INTO category."Districts" VALUES (243, 26, 'system', '2023-07-26 08:40:16.203211+07', 'system', '2023-07-26 08:40:16.203211+07', 'Thành phố Vĩnh Yên', '243', 'Thành phố');
INSERT INTO category."Districts" VALUES (244, 26, 'system', '2023-07-26 08:40:16.203214+07', 'system', '2023-07-26 08:40:16.203214+07', 'Thành phố Phúc Yên', '244', 'Thành phố');
INSERT INTO category."Districts" VALUES (246, 26, 'system', '2023-07-26 08:40:16.203217+07', 'system', '2023-07-26 08:40:16.203217+07', 'Huyện Lập Thạch', '246', 'Huyện');
INSERT INTO category."Districts" VALUES (247, 26, 'system', '2023-07-26 08:40:16.20322+07', 'system', '2023-07-26 08:40:16.20322+07', 'Huyện Tam Dương', '247', 'Huyện');
INSERT INTO category."Districts" VALUES (248, 26, 'system', '2023-07-26 08:40:16.203223+07', 'system', '2023-07-26 08:40:16.203223+07', 'Huyện Tam Đảo', '248', 'Huyện');
INSERT INTO category."Districts" VALUES (249, 26, 'system', '2023-07-26 08:40:16.203226+07', 'system', '2023-07-26 08:40:16.203226+07', 'Huyện Bình Xuyên', '249', 'Huyện');
INSERT INTO category."Districts" VALUES (250, 1, 'system', '2023-07-26 08:40:16.202705+07', 'system', '2023-07-26 08:40:16.202705+07', 'Huyện Mê Linh', '250', 'Huyện');
INSERT INTO category."Districts" VALUES (251, 26, 'system', '2023-07-26 08:40:16.203229+07', 'system', '2023-07-26 08:40:16.203229+07', 'Huyện Yên Lạc', '251', 'Huyện');
INSERT INTO category."Districts" VALUES (252, 26, 'system', '2023-07-26 08:40:16.203231+07', 'system', '2023-07-26 08:40:16.203231+07', 'Huyện Vĩnh Tường', '252', 'Huyện');
INSERT INTO category."Districts" VALUES (253, 26, 'system', '2023-07-26 08:40:16.203234+07', 'system', '2023-07-26 08:40:16.203234+07', 'Huyện Sông Lô', '253', 'Huyện');
INSERT INTO category."Districts" VALUES (256, 27, 'system', '2023-07-26 08:40:16.203237+07', 'system', '2023-07-26 08:40:16.203237+07', 'Thành phố Bắc Ninh', '256', 'Thành phố');
INSERT INTO category."Districts" VALUES (258, 27, 'system', '2023-07-26 08:40:16.20324+07', 'system', '2023-07-26 08:40:16.20324+07', 'Huyện Yên Phong', '258', 'Huyện');
INSERT INTO category."Districts" VALUES (259, 27, 'system', '2023-07-26 08:40:16.203253+07', 'system', '2023-07-26 08:40:16.203254+07', 'Huyện Quế Võ', '259', 'Huyện');
INSERT INTO category."Districts" VALUES (260, 27, 'system', '2023-07-26 08:40:16.203257+07', 'system', '2023-07-26 08:40:16.203257+07', 'Huyện Tiên Du', '260', 'Huyện');
INSERT INTO category."Districts" VALUES (261, 27, 'system', '2023-07-26 08:40:16.203259+07', 'system', '2023-07-26 08:40:16.203259+07', 'Thành phố Từ Sơn', '261', 'Thành phố');
INSERT INTO category."Districts" VALUES (262, 27, 'system', '2023-07-26 08:40:16.203262+07', 'system', '2023-07-26 08:40:16.203262+07', 'Huyện Thuận Thành', '262', 'Huyện');
INSERT INTO category."Districts" VALUES (263, 27, 'system', '2023-07-26 08:40:16.203265+07', 'system', '2023-07-26 08:40:16.203265+07', 'Huyện Gia Bình', '263', 'Huyện');
INSERT INTO category."Districts" VALUES (264, 27, 'system', '2023-07-26 08:40:16.203268+07', 'system', '2023-07-26 08:40:16.203268+07', 'Huyện Lương Tài', '264', 'Huyện');
INSERT INTO category."Districts" VALUES (268, 1, 'system', '2023-07-26 08:40:16.202708+07', 'system', '2023-07-26 08:40:16.202708+07', 'Quận Hà Đông', '268', 'Quận');
INSERT INTO category."Districts" VALUES (269, 1, 'system', '2023-07-26 08:40:16.202711+07', 'system', '2023-07-26 08:40:16.202711+07', 'Thị xã Sơn Tây', '269', 'Thị xã');
INSERT INTO category."Districts" VALUES (271, 1, 'system', '2023-07-26 08:40:16.202715+07', 'system', '2023-07-26 08:40:16.202715+07', 'Huyện Ba Vì', '271', 'Huyện');
INSERT INTO category."Districts" VALUES (272, 1, 'system', '2023-07-26 08:40:16.202717+07', 'system', '2023-07-26 08:40:16.202717+07', 'Huyện Phúc Thọ', '272', 'Huyện');
INSERT INTO category."Districts" VALUES (273, 1, 'system', '2023-07-26 08:40:16.202721+07', 'system', '2023-07-26 08:40:16.202721+07', 'Huyện Đan Phượng', '273', 'Huyện');
INSERT INTO category."Districts" VALUES (274, 1, 'system', '2023-07-26 08:40:16.202743+07', 'system', '2023-07-26 08:40:16.202744+07', 'Huyện Hoài Đức', '274', 'Huyện');
INSERT INTO category."Districts" VALUES (275, 1, 'system', '2023-07-26 08:40:16.202747+07', 'system', '2023-07-26 08:40:16.202747+07', 'Huyện Quốc Oai', '275', 'Huyện');
INSERT INTO category."Districts" VALUES (276, 1, 'system', '2023-07-26 08:40:16.20275+07', 'system', '2023-07-26 08:40:16.20275+07', 'Huyện Thạch Thất', '276', 'Huyện');
INSERT INTO category."Districts" VALUES (277, 1, 'system', '2023-07-26 08:40:16.202753+07', 'system', '2023-07-26 08:40:16.202753+07', 'Huyện Chương Mỹ', '277', 'Huyện');
INSERT INTO category."Districts" VALUES (278, 1, 'system', '2023-07-26 08:40:16.202756+07', 'system', '2023-07-26 08:40:16.202756+07', 'Huyện Thanh Oai', '278', 'Huyện');
INSERT INTO category."Districts" VALUES (279, 1, 'system', '2023-07-26 08:40:16.202759+07', 'system', '2023-07-26 08:40:16.202759+07', 'Huyện Thường Tín', '279', 'Huyện');
INSERT INTO category."Districts" VALUES (280, 1, 'system', '2023-07-26 08:40:16.202761+07', 'system', '2023-07-26 08:40:16.202762+07', 'Huyện Phú Xuyên', '280', 'Huyện');
INSERT INTO category."Districts" VALUES (281, 1, 'system', '2023-07-26 08:40:16.202764+07', 'system', '2023-07-26 08:40:16.202764+07', 'Huyện Ứng Hòa', '281', 'Huyện');
INSERT INTO category."Districts" VALUES (282, 1, 'system', '2023-07-26 08:40:16.202767+07', 'system', '2023-07-26 08:40:16.202767+07', 'Huyện Mỹ Đức', '282', 'Huyện');
INSERT INTO category."Districts" VALUES (288, 30, 'system', '2023-07-26 08:40:16.203271+07', 'system', '2023-07-26 08:40:16.203271+07', 'Thành phố Hải Dương', '288', 'Thành phố');
INSERT INTO category."Districts" VALUES (290, 30, 'system', '2023-07-26 08:40:16.203274+07', 'system', '2023-07-26 08:40:16.203274+07', 'Thành phố Chí Linh', '290', 'Thành phố');
INSERT INTO category."Districts" VALUES (291, 30, 'system', '2023-07-26 08:40:16.203277+07', 'system', '2023-07-26 08:40:16.203277+07', 'Huyện Nam Sách', '291', 'Huyện');
INSERT INTO category."Districts" VALUES (292, 30, 'system', '2023-07-26 08:40:16.203279+07', 'system', '2023-07-26 08:40:16.203279+07', 'Thị xã Kinh Môn', '292', 'Thị xã');
INSERT INTO category."Districts" VALUES (293, 30, 'system', '2023-07-26 08:40:16.203283+07', 'system', '2023-07-26 08:40:16.203283+07', 'Huyện Kim Thành', '293', 'Huyện');
INSERT INTO category."Districts" VALUES (294, 30, 'system', '2023-07-26 08:40:16.203285+07', 'system', '2023-07-26 08:40:16.203285+07', 'Huyện Thanh Hà', '294', 'Huyện');
INSERT INTO category."Districts" VALUES (295, 30, 'system', '2023-07-26 08:40:16.203288+07', 'system', '2023-07-26 08:40:16.203288+07', 'Huyện Cẩm Giàng', '295', 'Huyện');
INSERT INTO category."Districts" VALUES (296, 30, 'system', '2023-07-26 08:40:16.203291+07', 'system', '2023-07-26 08:40:16.203291+07', 'Huyện Bình Giang', '296', 'Huyện');
INSERT INTO category."Districts" VALUES (297, 30, 'system', '2023-07-26 08:40:16.203294+07', 'system', '2023-07-26 08:40:16.203294+07', 'Huyện Gia Lộc', '297', 'Huyện');
INSERT INTO category."Districts" VALUES (298, 30, 'system', '2023-07-26 08:40:16.203297+07', 'system', '2023-07-26 08:40:16.203297+07', 'Huyện Tứ Kỳ', '298', 'Huyện');
INSERT INTO category."Districts" VALUES (299, 30, 'system', '2023-07-26 08:40:16.2033+07', 'system', '2023-07-26 08:40:16.2033+07', 'Huyện Ninh Giang', '299', 'Huyện');
INSERT INTO category."Districts" VALUES (300, 30, 'system', '2023-07-26 08:40:16.203303+07', 'system', '2023-07-26 08:40:16.203303+07', 'Huyện Thanh Miện', '300', 'Huyện');
INSERT INTO category."Districts" VALUES (303, 31, 'system', '2023-07-26 08:40:16.203306+07', 'system', '2023-07-26 08:40:16.203306+07', 'Quận Hồng Bàng', '303', 'Quận');
INSERT INTO category."Districts" VALUES (304, 31, 'system', '2023-07-26 08:40:16.203309+07', 'system', '2023-07-26 08:40:16.203309+07', 'Quận Ngô Quyền', '304', 'Quận');
INSERT INTO category."Districts" VALUES (305, 31, 'system', '2023-07-26 08:40:16.203312+07', 'system', '2023-07-26 08:40:16.203312+07', 'Quận Lê Chân', '305', 'Quận');
INSERT INTO category."Districts" VALUES (306, 31, 'system', '2023-07-26 08:40:16.203314+07', 'system', '2023-07-26 08:40:16.203315+07', 'Quận Hải An', '306', 'Quận');
INSERT INTO category."Districts" VALUES (307, 31, 'system', '2023-07-26 08:40:16.203317+07', 'system', '2023-07-26 08:40:16.203317+07', 'Quận Kiến An', '307', 'Quận');
INSERT INTO category."Districts" VALUES (308, 31, 'system', '2023-07-26 08:40:16.20332+07', 'system', '2023-07-26 08:40:16.20332+07', 'Quận Đồ Sơn', '308', 'Quận');
INSERT INTO category."Districts" VALUES (309, 31, 'system', '2023-07-26 08:40:16.203323+07', 'system', '2023-07-26 08:40:16.203323+07', 'Quận Dương Kinh', '309', 'Quận');
INSERT INTO category."Districts" VALUES (311, 31, 'system', '2023-07-26 08:40:16.203326+07', 'system', '2023-07-26 08:40:16.203326+07', 'Huyện Thuỷ Nguyên', '311', 'Huyện');
INSERT INTO category."Districts" VALUES (312, 31, 'system', '2023-07-26 08:40:16.203329+07', 'system', '2023-07-26 08:40:16.203329+07', 'Huyện An Dương', '312', 'Huyện');
INSERT INTO category."Districts" VALUES (313, 31, 'system', '2023-07-26 08:40:16.203332+07', 'system', '2023-07-26 08:40:16.203332+07', 'Huyện An Lão', '313', 'Huyện');
INSERT INTO category."Districts" VALUES (314, 31, 'system', '2023-07-26 08:40:16.203335+07', 'system', '2023-07-26 08:40:16.203335+07', 'Huyện Kiến Thuỵ', '314', 'Huyện');
INSERT INTO category."Districts" VALUES (315, 31, 'system', '2023-07-26 08:40:16.203338+07', 'system', '2023-07-26 08:40:16.203338+07', 'Huyện Tiên Lãng', '315', 'Huyện');
INSERT INTO category."Districts" VALUES (316, 31, 'system', '2023-07-26 08:40:16.203341+07', 'system', '2023-07-26 08:40:16.203341+07', 'Huyện Vĩnh Bảo', '316', 'Huyện');
INSERT INTO category."Districts" VALUES (317, 31, 'system', '2023-07-26 08:40:16.203344+07', 'system', '2023-07-26 08:40:16.203344+07', 'Huyện Cát Hải', '317', 'Huyện');
INSERT INTO category."Districts" VALUES (318, 31, 'system', '2023-07-26 08:40:16.203347+07', 'system', '2023-07-26 08:40:16.203347+07', 'Huyện Bạch Long Vĩ', '318', 'Huyện');
INSERT INTO category."Districts" VALUES (323, 33, 'system', '2023-07-26 08:40:16.203353+07', 'system', '2023-07-26 08:40:16.203353+07', 'Thành phố Hưng Yên', '323', 'Thành phố');
INSERT INTO category."Districts" VALUES (325, 33, 'system', '2023-07-26 08:40:16.203358+07', 'system', '2023-07-26 08:40:16.203358+07', 'Huyện Văn Lâm', '325', 'Huyện');
INSERT INTO category."Districts" VALUES (326, 33, 'system', '2023-07-26 08:40:16.203363+07', 'system', '2023-07-26 08:40:16.203363+07', 'Huyện Văn Giang', '326', 'Huyện');
INSERT INTO category."Districts" VALUES (327, 33, 'system', '2023-07-26 08:40:16.203368+07', 'system', '2023-07-26 08:40:16.203368+07', 'Huyện Yên Mỹ', '327', 'Huyện');
INSERT INTO category."Districts" VALUES (328, 33, 'system', '2023-07-26 08:40:16.203373+07', 'system', '2023-07-26 08:40:16.203373+07', 'Thị xã Mỹ Hào', '328', 'Thị xã');
INSERT INTO category."Districts" VALUES (329, 33, 'system', '2023-07-26 08:40:16.203378+07', 'system', '2023-07-26 08:40:16.203378+07', 'Huyện Ân Thi', '329', 'Huyện');
INSERT INTO category."Districts" VALUES (330, 33, 'system', '2023-07-26 08:40:16.203381+07', 'system', '2023-07-26 08:40:16.203381+07', 'Huyện Khoái Châu', '330', 'Huyện');
INSERT INTO category."Districts" VALUES (331, 33, 'system', '2023-07-26 08:40:16.203384+07', 'system', '2023-07-26 08:40:16.203384+07', 'Huyện Kim Động', '331', 'Huyện');
INSERT INTO category."Districts" VALUES (332, 33, 'system', '2023-07-26 08:40:16.203387+07', 'system', '2023-07-26 08:40:16.203387+07', 'Huyện Tiên Lữ', '332', 'Huyện');
INSERT INTO category."Districts" VALUES (333, 33, 'system', '2023-07-26 08:40:16.20339+07', 'system', '2023-07-26 08:40:16.20339+07', 'Huyện Phù Cừ', '333', 'Huyện');
INSERT INTO category."Districts" VALUES (646, 66, 'system', '2023-07-26 08:40:16.204161+07', 'system', '2023-07-26 08:40:16.204161+07', 'Huyện Ea Súp', '646', 'Huyện');
INSERT INTO category."Districts" VALUES (336, 34, 'system', '2023-07-26 08:40:16.203393+07', 'system', '2023-07-26 08:40:16.203393+07', 'Thành phố Thái Bình', '336', 'Thành phố');
INSERT INTO category."Districts" VALUES (338, 34, 'system', '2023-07-26 08:40:16.203396+07', 'system', '2023-07-26 08:40:16.203396+07', 'Huyện Quỳnh Phụ', '338', 'Huyện');
INSERT INTO category."Districts" VALUES (339, 34, 'system', '2023-07-26 08:40:16.203399+07', 'system', '2023-07-26 08:40:16.203399+07', 'Huyện Hưng Hà', '339', 'Huyện');
INSERT INTO category."Districts" VALUES (340, 34, 'system', '2023-07-26 08:40:16.203402+07', 'system', '2023-07-26 08:40:16.203402+07', 'Huyện Đông Hưng', '340', 'Huyện');
INSERT INTO category."Districts" VALUES (341, 34, 'system', '2023-07-26 08:40:16.203405+07', 'system', '2023-07-26 08:40:16.203405+07', 'Huyện Thái Thụy', '341', 'Huyện');
INSERT INTO category."Districts" VALUES (342, 34, 'system', '2023-07-26 08:40:16.203408+07', 'system', '2023-07-26 08:40:16.203408+07', 'Huyện Tiền Hải', '342', 'Huyện');
INSERT INTO category."Districts" VALUES (343, 34, 'system', '2023-07-26 08:40:16.203411+07', 'system', '2023-07-26 08:40:16.203411+07', 'Huyện Kiến Xương', '343', 'Huyện');
INSERT INTO category."Districts" VALUES (344, 34, 'system', '2023-07-26 08:40:16.203414+07', 'system', '2023-07-26 08:40:16.203414+07', 'Huyện Vũ Thư', '344', 'Huyện');
INSERT INTO category."Districts" VALUES (347, 35, 'system', '2023-07-26 08:40:16.203416+07', 'system', '2023-07-26 08:40:16.203417+07', 'Thành phố Phủ Lý', '347', 'Thành phố');
INSERT INTO category."Districts" VALUES (349, 35, 'system', '2023-07-26 08:40:16.203419+07', 'system', '2023-07-26 08:40:16.203419+07', 'Thị xã Duy Tiên', '349', 'Thị xã');
INSERT INTO category."Districts" VALUES (350, 35, 'system', '2023-07-26 08:40:16.203422+07', 'system', '2023-07-26 08:40:16.203422+07', 'Huyện Kim Bảng', '350', 'Huyện');
INSERT INTO category."Districts" VALUES (351, 35, 'system', '2023-07-26 08:40:16.203425+07', 'system', '2023-07-26 08:40:16.203425+07', 'Huyện Thanh Liêm', '351', 'Huyện');
INSERT INTO category."Districts" VALUES (352, 35, 'system', '2023-07-26 08:40:16.203428+07', 'system', '2023-07-26 08:40:16.203428+07', 'Huyện Bình Lục', '352', 'Huyện');
INSERT INTO category."Districts" VALUES (353, 35, 'system', '2023-07-26 08:40:16.203431+07', 'system', '2023-07-26 08:40:16.203431+07', 'Huyện Lý Nhân', '353', 'Huyện');
INSERT INTO category."Districts" VALUES (356, 36, 'system', '2023-07-26 08:40:16.203434+07', 'system', '2023-07-26 08:40:16.203434+07', 'Thành phố Nam Định', '356', 'Thành phố');
INSERT INTO category."Districts" VALUES (358, 36, 'system', '2023-07-26 08:40:16.203437+07', 'system', '2023-07-26 08:40:16.203437+07', 'Huyện Mỹ Lộc', '358', 'Huyện');
INSERT INTO category."Districts" VALUES (359, 36, 'system', '2023-07-26 08:40:16.20344+07', 'system', '2023-07-26 08:40:16.20344+07', 'Huyện Vụ Bản', '359', 'Huyện');
INSERT INTO category."Districts" VALUES (360, 36, 'system', '2023-07-26 08:40:16.203443+07', 'system', '2023-07-26 08:40:16.203443+07', 'Huyện Ý Yên', '360', 'Huyện');
INSERT INTO category."Districts" VALUES (361, 36, 'system', '2023-07-26 08:40:16.203445+07', 'system', '2023-07-26 08:40:16.203445+07', 'Huyện Nghĩa Hưng', '361', 'Huyện');
INSERT INTO category."Districts" VALUES (362, 36, 'system', '2023-07-26 08:40:16.203448+07', 'system', '2023-07-26 08:40:16.203448+07', 'Huyện Nam Trực', '362', 'Huyện');
INSERT INTO category."Districts" VALUES (363, 36, 'system', '2023-07-26 08:40:16.203451+07', 'system', '2023-07-26 08:40:16.203451+07', 'Huyện Trực Ninh', '363', 'Huyện');
INSERT INTO category."Districts" VALUES (364, 36, 'system', '2023-07-26 08:40:16.203454+07', 'system', '2023-07-26 08:40:16.203454+07', 'Huyện Xuân Trường', '364', 'Huyện');
INSERT INTO category."Districts" VALUES (365, 36, 'system', '2023-07-26 08:40:16.203457+07', 'system', '2023-07-26 08:40:16.203457+07', 'Huyện Giao Thủy', '365', 'Huyện');
INSERT INTO category."Districts" VALUES (366, 36, 'system', '2023-07-26 08:40:16.203462+07', 'system', '2023-07-26 08:40:16.203462+07', 'Huyện Hải Hậu', '366', 'Huyện');
INSERT INTO category."Districts" VALUES (369, 37, 'system', '2023-07-26 08:40:16.203465+07', 'system', '2023-07-26 08:40:16.203465+07', 'Thành phố Ninh Bình', '369', 'Thành phố');
INSERT INTO category."Districts" VALUES (370, 37, 'system', '2023-07-26 08:40:16.203468+07', 'system', '2023-07-26 08:40:16.203468+07', 'Thành phố Tam Điệp', '370', 'Thành phố');
INSERT INTO category."Districts" VALUES (372, 37, 'system', '2023-07-26 08:40:16.203471+07', 'system', '2023-07-26 08:40:16.203471+07', 'Huyện Nho Quan', '372', 'Huyện');
INSERT INTO category."Districts" VALUES (373, 37, 'system', '2023-07-26 08:40:16.203474+07', 'system', '2023-07-26 08:40:16.203474+07', 'Huyện Gia Viễn', '373', 'Huyện');
INSERT INTO category."Districts" VALUES (374, 37, 'system', '2023-07-26 08:40:16.203477+07', 'system', '2023-07-26 08:40:16.203477+07', 'Huyện Hoa Lư', '374', 'Huyện');
INSERT INTO category."Districts" VALUES (375, 37, 'system', '2023-07-26 08:40:16.203479+07', 'system', '2023-07-26 08:40:16.203479+07', 'Huyện Yên Khánh', '375', 'Huyện');
INSERT INTO category."Districts" VALUES (376, 37, 'system', '2023-07-26 08:40:16.203482+07', 'system', '2023-07-26 08:40:16.203482+07', 'Huyện Kim Sơn', '376', 'Huyện');
INSERT INTO category."Districts" VALUES (377, 37, 'system', '2023-07-26 08:40:16.203485+07', 'system', '2023-07-26 08:40:16.203485+07', 'Huyện Yên Mô', '377', 'Huyện');
INSERT INTO category."Districts" VALUES (380, 38, 'system', '2023-07-26 08:40:16.203488+07', 'system', '2023-07-26 08:40:16.203488+07', 'Thành phố Thanh Hóa', '380', 'Thành phố');
INSERT INTO category."Districts" VALUES (381, 38, 'system', '2023-07-26 08:40:16.203491+07', 'system', '2023-07-26 08:40:16.203491+07', 'Thị xã Bỉm Sơn', '381', 'Thị xã');
INSERT INTO category."Districts" VALUES (382, 38, 'system', '2023-07-26 08:40:16.203494+07', 'system', '2023-07-26 08:40:16.203494+07', 'Thành phố Sầm Sơn', '382', 'Thành phố');
INSERT INTO category."Districts" VALUES (384, 38, 'system', '2023-07-26 08:40:16.203497+07', 'system', '2023-07-26 08:40:16.203497+07', 'Huyện Mường Lát', '384', 'Huyện');
INSERT INTO category."Districts" VALUES (385, 38, 'system', '2023-07-26 08:40:16.2035+07', 'system', '2023-07-26 08:40:16.2035+07', 'Huyện Quan Hóa', '385', 'Huyện');
INSERT INTO category."Districts" VALUES (386, 38, 'system', '2023-07-26 08:40:16.203503+07', 'system', '2023-07-26 08:40:16.203503+07', 'Huyện Bá Thước', '386', 'Huyện');
INSERT INTO category."Districts" VALUES (387, 38, 'system', '2023-07-26 08:40:16.203506+07', 'system', '2023-07-26 08:40:16.203506+07', 'Huyện Quan Sơn', '387', 'Huyện');
INSERT INTO category."Districts" VALUES (388, 38, 'system', '2023-07-26 08:40:16.203509+07', 'system', '2023-07-26 08:40:16.203509+07', 'Huyện Lang Chánh', '388', 'Huyện');
INSERT INTO category."Districts" VALUES (389, 38, 'system', '2023-07-26 08:40:16.203512+07', 'system', '2023-07-26 08:40:16.203512+07', 'Huyện Ngọc Lặc', '389', 'Huyện');
INSERT INTO category."Districts" VALUES (390, 38, 'system', '2023-07-26 08:40:16.203515+07', 'system', '2023-07-26 08:40:16.203515+07', 'Huyện Cẩm Thủy', '390', 'Huyện');
INSERT INTO category."Districts" VALUES (391, 38, 'system', '2023-07-26 08:40:16.203518+07', 'system', '2023-07-26 08:40:16.203518+07', 'Huyện Thạch Thành', '391', 'Huyện');
INSERT INTO category."Districts" VALUES (392, 38, 'system', '2023-07-26 08:40:16.203521+07', 'system', '2023-07-26 08:40:16.203521+07', 'Huyện Hà Trung', '392', 'Huyện');
INSERT INTO category."Districts" VALUES (393, 38, 'system', '2023-07-26 08:40:16.203523+07', 'system', '2023-07-26 08:40:16.203523+07', 'Huyện Vĩnh Lộc', '393', 'Huyện');
INSERT INTO category."Districts" VALUES (394, 38, 'system', '2023-07-26 08:40:16.203526+07', 'system', '2023-07-26 08:40:16.203526+07', 'Huyện Yên Định', '394', 'Huyện');
INSERT INTO category."Districts" VALUES (395, 38, 'system', '2023-07-26 08:40:16.203529+07', 'system', '2023-07-26 08:40:16.203529+07', 'Huyện Thọ Xuân', '395', 'Huyện');
INSERT INTO category."Districts" VALUES (396, 38, 'system', '2023-07-26 08:40:16.203532+07', 'system', '2023-07-26 08:40:16.203532+07', 'Huyện Thường Xuân', '396', 'Huyện');
INSERT INTO category."Districts" VALUES (397, 38, 'system', '2023-07-26 08:40:16.203535+07', 'system', '2023-07-26 08:40:16.203535+07', 'Huyện Triệu Sơn', '397', 'Huyện');
INSERT INTO category."Districts" VALUES (398, 38, 'system', '2023-07-26 08:40:16.203537+07', 'system', '2023-07-26 08:40:16.203537+07', 'Huyện Thiệu Hóa', '398', 'Huyện');
INSERT INTO category."Districts" VALUES (399, 38, 'system', '2023-07-26 08:40:16.20354+07', 'system', '2023-07-26 08:40:16.20354+07', 'Huyện Hoằng Hóa', '399', 'Huyện');
INSERT INTO category."Districts" VALUES (400, 38, 'system', '2023-07-26 08:40:16.203543+07', 'system', '2023-07-26 08:40:16.203543+07', 'Huyện Hậu Lộc', '400', 'Huyện');
INSERT INTO category."Districts" VALUES (401, 38, 'system', '2023-07-26 08:40:16.203546+07', 'system', '2023-07-26 08:40:16.203546+07', 'Huyện Nga Sơn', '401', 'Huyện');
INSERT INTO category."Districts" VALUES (402, 38, 'system', '2023-07-26 08:40:16.203548+07', 'system', '2023-07-26 08:40:16.203549+07', 'Huyện Như Xuân', '402', 'Huyện');
INSERT INTO category."Districts" VALUES (403, 38, 'system', '2023-07-26 08:40:16.203551+07', 'system', '2023-07-26 08:40:16.203551+07', 'Huyện Như Thanh', '403', 'Huyện');
INSERT INTO category."Districts" VALUES (404, 38, 'system', '2023-07-26 08:40:16.203554+07', 'system', '2023-07-26 08:40:16.203554+07', 'Huyện Nông Cống', '404', 'Huyện');
INSERT INTO category."Districts" VALUES (405, 38, 'system', '2023-07-26 08:40:16.203557+07', 'system', '2023-07-26 08:40:16.203557+07', 'Huyện Đông Sơn', '405', 'Huyện');
INSERT INTO category."Districts" VALUES (406, 38, 'system', '2023-07-26 08:40:16.20356+07', 'system', '2023-07-26 08:40:16.20356+07', 'Huyện Quảng Xương', '406', 'Huyện');
INSERT INTO category."Districts" VALUES (407, 38, 'system', '2023-07-26 08:40:16.203563+07', 'system', '2023-07-26 08:40:16.203563+07', 'Thị xã Nghi Sơn', '407', 'Thị xã');
INSERT INTO category."Districts" VALUES (412, 40, 'system', '2023-07-26 08:40:16.203566+07', 'system', '2023-07-26 08:40:16.203566+07', 'Thành phố Vinh', '412', 'Thành phố');
INSERT INTO category."Districts" VALUES (413, 40, 'system', '2023-07-26 08:40:16.203569+07', 'system', '2023-07-26 08:40:16.203569+07', 'Thị xã Cửa Lò', '413', 'Thị xã');
INSERT INTO category."Districts" VALUES (414, 40, 'system', '2023-07-26 08:40:16.203571+07', 'system', '2023-07-26 08:40:16.203571+07', 'Thị xã Thái Hoà', '414', 'Thị xã');
INSERT INTO category."Districts" VALUES (415, 40, 'system', '2023-07-26 08:40:16.203574+07', 'system', '2023-07-26 08:40:16.203575+07', 'Huyện Quế Phong', '415', 'Huyện');
INSERT INTO category."Districts" VALUES (416, 40, 'system', '2023-07-26 08:40:16.203577+07', 'system', '2023-07-26 08:40:16.203577+07', 'Huyện Quỳ Châu', '416', 'Huyện');
INSERT INTO category."Districts" VALUES (417, 40, 'system', '2023-07-26 08:40:16.20358+07', 'system', '2023-07-26 08:40:16.20358+07', 'Huyện Kỳ Sơn', '417', 'Huyện');
INSERT INTO category."Districts" VALUES (418, 40, 'system', '2023-07-26 08:40:16.203583+07', 'system', '2023-07-26 08:40:16.203583+07', 'Huyện Tương Dương', '418', 'Huyện');
INSERT INTO category."Districts" VALUES (419, 40, 'system', '2023-07-26 08:40:16.203587+07', 'system', '2023-07-26 08:40:16.203587+07', 'Huyện Nghĩa Đàn', '419', 'Huyện');
INSERT INTO category."Districts" VALUES (420, 40, 'system', '2023-07-26 08:40:16.20359+07', 'system', '2023-07-26 08:40:16.20359+07', 'Huyện Quỳ Hợp', '420', 'Huyện');
INSERT INTO category."Districts" VALUES (421, 40, 'system', '2023-07-26 08:40:16.203592+07', 'system', '2023-07-26 08:40:16.203592+07', 'Huyện Quỳnh Lưu', '421', 'Huyện');
INSERT INTO category."Districts" VALUES (422, 40, 'system', '2023-07-26 08:40:16.203595+07', 'system', '2023-07-26 08:40:16.203595+07', 'Huyện Con Cuông', '422', 'Huyện');
INSERT INTO category."Districts" VALUES (423, 40, 'system', '2023-07-26 08:40:16.203598+07', 'system', '2023-07-26 08:40:16.203598+07', 'Huyện Tân Kỳ', '423', 'Huyện');
INSERT INTO category."Districts" VALUES (424, 40, 'system', '2023-07-26 08:40:16.203601+07', 'system', '2023-07-26 08:40:16.203601+07', 'Huyện Anh Sơn', '424', 'Huyện');
INSERT INTO category."Districts" VALUES (425, 40, 'system', '2023-07-26 08:40:16.203604+07', 'system', '2023-07-26 08:40:16.203604+07', 'Huyện Diễn Châu', '425', 'Huyện');
INSERT INTO category."Districts" VALUES (426, 40, 'system', '2023-07-26 08:40:16.203606+07', 'system', '2023-07-26 08:40:16.203606+07', 'Huyện Yên Thành', '426', 'Huyện');
INSERT INTO category."Districts" VALUES (427, 40, 'system', '2023-07-26 08:40:16.203609+07', 'system', '2023-07-26 08:40:16.203609+07', 'Huyện Đô Lương', '427', 'Huyện');
INSERT INTO category."Districts" VALUES (428, 40, 'system', '2023-07-26 08:40:16.203612+07', 'system', '2023-07-26 08:40:16.203612+07', 'Huyện Thanh Chương', '428', 'Huyện');
INSERT INTO category."Districts" VALUES (429, 40, 'system', '2023-07-26 08:40:16.203615+07', 'system', '2023-07-26 08:40:16.203615+07', 'Huyện Nghi Lộc', '429', 'Huyện');
INSERT INTO category."Districts" VALUES (430, 40, 'system', '2023-07-26 08:40:16.203618+07', 'system', '2023-07-26 08:40:16.203618+07', 'Huyện Nam Đàn', '430', 'Huyện');
INSERT INTO category."Districts" VALUES (431, 40, 'system', '2023-07-26 08:40:16.20362+07', 'system', '2023-07-26 08:40:16.203621+07', 'Huyện Hưng Nguyên', '431', 'Huyện');
INSERT INTO category."Districts" VALUES (432, 40, 'system', '2023-07-26 08:40:16.203623+07', 'system', '2023-07-26 08:40:16.203623+07', 'Thị xã Hoàng Mai', '432', 'Thị xã');
INSERT INTO category."Districts" VALUES (436, 42, 'system', '2023-07-26 08:40:16.203626+07', 'system', '2023-07-26 08:40:16.203626+07', 'Thành phố Hà Tĩnh', '436', 'Thành phố');
INSERT INTO category."Districts" VALUES (437, 42, 'system', '2023-07-26 08:40:16.203629+07', 'system', '2023-07-26 08:40:16.20363+07', 'Thị xã Hồng Lĩnh', '437', 'Thị xã');
INSERT INTO category."Districts" VALUES (439, 42, 'system', '2023-07-26 08:40:16.203632+07', 'system', '2023-07-26 08:40:16.203633+07', 'Huyện Hương Sơn', '439', 'Huyện');
INSERT INTO category."Districts" VALUES (440, 42, 'system', '2023-07-26 08:40:16.203635+07', 'system', '2023-07-26 08:40:16.203635+07', 'Huyện Đức Thọ', '440', 'Huyện');
INSERT INTO category."Districts" VALUES (441, 42, 'system', '2023-07-26 08:40:16.203638+07', 'system', '2023-07-26 08:40:16.203638+07', 'Huyện Vũ Quang', '441', 'Huyện');
INSERT INTO category."Districts" VALUES (442, 42, 'system', '2023-07-26 08:40:16.203641+07', 'system', '2023-07-26 08:40:16.203641+07', 'Huyện Nghi Xuân', '442', 'Huyện');
INSERT INTO category."Districts" VALUES (443, 42, 'system', '2023-07-26 08:40:16.203644+07', 'system', '2023-07-26 08:40:16.203644+07', 'Huyện Can Lộc', '443', 'Huyện');
INSERT INTO category."Districts" VALUES (444, 42, 'system', '2023-07-26 08:40:16.203646+07', 'system', '2023-07-26 08:40:16.203646+07', 'Huyện Hương Khê', '444', 'Huyện');
INSERT INTO category."Districts" VALUES (445, 42, 'system', '2023-07-26 08:40:16.203649+07', 'system', '2023-07-26 08:40:16.203649+07', 'Huyện Thạch Hà', '445', 'Huyện');
INSERT INTO category."Districts" VALUES (446, 42, 'system', '2023-07-26 08:40:16.203652+07', 'system', '2023-07-26 08:40:16.203652+07', 'Huyện Cẩm Xuyên', '446', 'Huyện');
INSERT INTO category."Districts" VALUES (447, 42, 'system', '2023-07-26 08:40:16.203655+07', 'system', '2023-07-26 08:40:16.203655+07', 'Huyện Kỳ Anh', '447', 'Huyện');
INSERT INTO category."Districts" VALUES (448, 42, 'system', '2023-07-26 08:40:16.203658+07', 'system', '2023-07-26 08:40:16.203658+07', 'Huyện Lộc Hà', '448', 'Huyện');
INSERT INTO category."Districts" VALUES (449, 42, 'system', '2023-07-26 08:40:16.20366+07', 'system', '2023-07-26 08:40:16.203661+07', 'Thị xã Kỳ Anh', '449', 'Thị xã');
INSERT INTO category."Districts" VALUES (450, 44, 'system', '2023-07-26 08:40:16.203664+07', 'system', '2023-07-26 08:40:16.203664+07', 'Thành Phố Đồng Hới', '450', 'Thành phố');
INSERT INTO category."Districts" VALUES (452, 44, 'system', '2023-07-26 08:40:16.203667+07', 'system', '2023-07-26 08:40:16.203667+07', 'Huyện Minh Hóa', '452', 'Huyện');
INSERT INTO category."Districts" VALUES (453, 44, 'system', '2023-07-26 08:40:16.20367+07', 'system', '2023-07-26 08:40:16.20367+07', 'Huyện Tuyên Hóa', '453', 'Huyện');
INSERT INTO category."Districts" VALUES (454, 44, 'system', '2023-07-26 08:40:16.203673+07', 'system', '2023-07-26 08:40:16.203673+07', 'Huyện Quảng Trạch', '454', 'Huyện');
INSERT INTO category."Districts" VALUES (455, 44, 'system', '2023-07-26 08:40:16.203676+07', 'system', '2023-07-26 08:40:16.203676+07', 'Huyện Bố Trạch', '455', 'Huyện');
INSERT INTO category."Districts" VALUES (456, 44, 'system', '2023-07-26 08:40:16.203679+07', 'system', '2023-07-26 08:40:16.203679+07', 'Huyện Quảng Ninh', '456', 'Huyện');
INSERT INTO category."Districts" VALUES (457, 44, 'system', '2023-07-26 08:40:16.203681+07', 'system', '2023-07-26 08:40:16.203681+07', 'Huyện Lệ Thủy', '457', 'Huyện');
INSERT INTO category."Districts" VALUES (458, 44, 'system', '2023-07-26 08:40:16.203684+07', 'system', '2023-07-26 08:40:16.203684+07', 'Thị xã Ba Đồn', '458', 'Thị xã');
INSERT INTO category."Districts" VALUES (461, 45, 'system', '2023-07-26 08:40:16.203687+07', 'system', '2023-07-26 08:40:16.203687+07', 'Thành phố Đông Hà', '461', 'Thành phố');
INSERT INTO category."Districts" VALUES (462, 45, 'system', '2023-07-26 08:40:16.20369+07', 'system', '2023-07-26 08:40:16.20369+07', 'Thị xã Quảng Trị', '462', 'Thị xã');
INSERT INTO category."Districts" VALUES (464, 45, 'system', '2023-07-26 08:40:16.203693+07', 'system', '2023-07-26 08:40:16.203693+07', 'Huyện Vĩnh Linh', '464', 'Huyện');
INSERT INTO category."Districts" VALUES (465, 45, 'system', '2023-07-26 08:40:16.203696+07', 'system', '2023-07-26 08:40:16.203696+07', 'Huyện Hướng Hóa', '465', 'Huyện');
INSERT INTO category."Districts" VALUES (466, 45, 'system', '2023-07-26 08:40:16.203699+07', 'system', '2023-07-26 08:40:16.203699+07', 'Huyện Gio Linh', '466', 'Huyện');
INSERT INTO category."Districts" VALUES (467, 45, 'system', '2023-07-26 08:40:16.203701+07', 'system', '2023-07-26 08:40:16.203701+07', 'Huyện Đa Krông', '467', 'Huyện');
INSERT INTO category."Districts" VALUES (468, 45, 'system', '2023-07-26 08:40:16.203704+07', 'system', '2023-07-26 08:40:16.203704+07', 'Huyện Cam Lộ', '468', 'Huyện');
INSERT INTO category."Districts" VALUES (469, 45, 'system', '2023-07-26 08:40:16.203707+07', 'system', '2023-07-26 08:40:16.203707+07', 'Huyện Triệu Phong', '469', 'Huyện');
INSERT INTO category."Districts" VALUES (470, 45, 'system', '2023-07-26 08:40:16.20371+07', 'system', '2023-07-26 08:40:16.20371+07', 'Huyện Hải Lăng', '470', 'Huyện');
INSERT INTO category."Districts" VALUES (471, 45, 'system', '2023-07-26 08:40:16.203713+07', 'system', '2023-07-26 08:40:16.203713+07', 'Huyện Cồn Cỏ', '471', 'Huyện');
INSERT INTO category."Districts" VALUES (474, 46, 'system', '2023-07-26 08:40:16.203716+07', 'system', '2023-07-26 08:40:16.203716+07', 'Thành phố Huế', '474', 'Thành phố');
INSERT INTO category."Districts" VALUES (476, 46, 'system', '2023-07-26 08:40:16.203719+07', 'system', '2023-07-26 08:40:16.203719+07', 'Huyện Phong Điền', '476', 'Huyện');
INSERT INTO category."Districts" VALUES (477, 46, 'system', '2023-07-26 08:40:16.203721+07', 'system', '2023-07-26 08:40:16.203721+07', 'Huyện Quảng Điền', '477', 'Huyện');
INSERT INTO category."Districts" VALUES (478, 46, 'system', '2023-07-26 08:40:16.203725+07', 'system', '2023-07-26 08:40:16.203725+07', 'Huyện Phú Vang', '478', 'Huyện');
INSERT INTO category."Districts" VALUES (479, 46, 'system', '2023-07-26 08:40:16.203727+07', 'system', '2023-07-26 08:40:16.203727+07', 'Thị xã Hương Thủy', '479', 'Thị xã');
INSERT INTO category."Districts" VALUES (480, 46, 'system', '2023-07-26 08:40:16.203731+07', 'system', '2023-07-26 08:40:16.203731+07', 'Thị xã Hương Trà', '480', 'Thị xã');
INSERT INTO category."Districts" VALUES (481, 46, 'system', '2023-07-26 08:40:16.203734+07', 'system', '2023-07-26 08:40:16.203734+07', 'Huyện A Lưới', '481', 'Huyện');
INSERT INTO category."Districts" VALUES (482, 46, 'system', '2023-07-26 08:40:16.203736+07', 'system', '2023-07-26 08:40:16.203736+07', 'Huyện Phú Lộc', '482', 'Huyện');
INSERT INTO category."Districts" VALUES (483, 46, 'system', '2023-07-26 08:40:16.203739+07', 'system', '2023-07-26 08:40:16.203739+07', 'Huyện Nam Đông', '483', 'Huyện');
INSERT INTO category."Districts" VALUES (490, 48, 'system', '2023-07-26 08:40:16.203743+07', 'system', '2023-07-26 08:40:16.203743+07', 'Quận Liên Chiểu', '490', 'Quận');
INSERT INTO category."Districts" VALUES (491, 48, 'system', '2023-07-26 08:40:16.203746+07', 'system', '2023-07-26 08:40:16.203746+07', 'Quận Thanh Khê', '491', 'Quận');
INSERT INTO category."Districts" VALUES (492, 48, 'system', '2023-07-26 08:40:16.203749+07', 'system', '2023-07-26 08:40:16.203749+07', 'Quận Hải Châu', '492', 'Quận');
INSERT INTO category."Districts" VALUES (493, 48, 'system', '2023-07-26 08:40:16.203762+07', 'system', '2023-07-26 08:40:16.203762+07', 'Quận Sơn Trà', '493', 'Quận');
INSERT INTO category."Districts" VALUES (494, 48, 'system', '2023-07-26 08:40:16.203766+07', 'system', '2023-07-26 08:40:16.203766+07', 'Quận Ngũ Hành Sơn', '494', 'Quận');
INSERT INTO category."Districts" VALUES (495, 48, 'system', '2023-07-26 08:40:16.203769+07', 'system', '2023-07-26 08:40:16.203769+07', 'Quận Cẩm Lệ', '495', 'Quận');
INSERT INTO category."Districts" VALUES (497, 48, 'system', '2023-07-26 08:40:16.203772+07', 'system', '2023-07-26 08:40:16.203772+07', 'Huyện Hòa Vang', '497', 'Huyện');
INSERT INTO category."Districts" VALUES (498, 48, 'system', '2023-07-26 08:40:16.203775+07', 'system', '2023-07-26 08:40:16.203775+07', 'Huyện Hoàng Sa', '498', 'Huyện');
INSERT INTO category."Districts" VALUES (502, 49, 'system', '2023-07-26 08:40:16.203778+07', 'system', '2023-07-26 08:40:16.203778+07', 'Thành phố Tam Kỳ', '502', 'Thành phố');
INSERT INTO category."Districts" VALUES (503, 49, 'system', '2023-07-26 08:40:16.203781+07', 'system', '2023-07-26 08:40:16.203781+07', 'Thành phố Hội An', '503', 'Thành phố');
INSERT INTO category."Districts" VALUES (504, 49, 'system', '2023-07-26 08:40:16.203784+07', 'system', '2023-07-26 08:40:16.203784+07', 'Huyện Tây Giang', '504', 'Huyện');
INSERT INTO category."Districts" VALUES (505, 49, 'system', '2023-07-26 08:40:16.203787+07', 'system', '2023-07-26 08:40:16.203787+07', 'Huyện Đông Giang', '505', 'Huyện');
INSERT INTO category."Districts" VALUES (506, 49, 'system', '2023-07-26 08:40:16.20379+07', 'system', '2023-07-26 08:40:16.20379+07', 'Huyện Đại Lộc', '506', 'Huyện');
INSERT INTO category."Districts" VALUES (507, 49, 'system', '2023-07-26 08:40:16.203793+07', 'system', '2023-07-26 08:40:16.203793+07', 'Thị xã Điện Bàn', '507', 'Thị xã');
INSERT INTO category."Districts" VALUES (508, 49, 'system', '2023-07-26 08:40:16.203796+07', 'system', '2023-07-26 08:40:16.203796+07', 'Huyện Duy Xuyên', '508', 'Huyện');
INSERT INTO category."Districts" VALUES (509, 49, 'system', '2023-07-26 08:40:16.203799+07', 'system', '2023-07-26 08:40:16.203799+07', 'Huyện Quế Sơn', '509', 'Huyện');
INSERT INTO category."Districts" VALUES (510, 49, 'system', '2023-07-26 08:40:16.203801+07', 'system', '2023-07-26 08:40:16.203802+07', 'Huyện Nam Giang', '510', 'Huyện');
INSERT INTO category."Districts" VALUES (511, 49, 'system', '2023-07-26 08:40:16.203805+07', 'system', '2023-07-26 08:40:16.203805+07', 'Huyện Phước Sơn', '511', 'Huyện');
INSERT INTO category."Districts" VALUES (512, 49, 'system', '2023-07-26 08:40:16.203809+07', 'system', '2023-07-26 08:40:16.203809+07', 'Huyện Hiệp Đức', '512', 'Huyện');
INSERT INTO category."Districts" VALUES (513, 49, 'system', '2023-07-26 08:40:16.203815+07', 'system', '2023-07-26 08:40:16.203815+07', 'Huyện Thăng Bình', '513', 'Huyện');
INSERT INTO category."Districts" VALUES (514, 49, 'system', '2023-07-26 08:40:16.20382+07', 'system', '2023-07-26 08:40:16.20382+07', 'Huyện Tiên Phước', '514', 'Huyện');
INSERT INTO category."Districts" VALUES (515, 49, 'system', '2023-07-26 08:40:16.203825+07', 'system', '2023-07-26 08:40:16.203825+07', 'Huyện Bắc Trà My', '515', 'Huyện');
INSERT INTO category."Districts" VALUES (516, 49, 'system', '2023-07-26 08:40:16.203832+07', 'system', '2023-07-26 08:40:16.203832+07', 'Huyện Nam Trà My', '516', 'Huyện');
INSERT INTO category."Districts" VALUES (517, 49, 'system', '2023-07-26 08:40:16.203837+07', 'system', '2023-07-26 08:40:16.203837+07', 'Huyện Núi Thành', '517', 'Huyện');
INSERT INTO category."Districts" VALUES (518, 49, 'system', '2023-07-26 08:40:16.203844+07', 'system', '2023-07-26 08:40:16.203844+07', 'Huyện Phú Ninh', '518', 'Huyện');
INSERT INTO category."Districts" VALUES (519, 49, 'system', '2023-07-26 08:40:16.203851+07', 'system', '2023-07-26 08:40:16.203851+07', 'Huyện Nông Sơn', '519', 'Huyện');
INSERT INTO category."Districts" VALUES (522, 51, 'system', '2023-07-26 08:40:16.203858+07', 'system', '2023-07-26 08:40:16.203858+07', 'Thành phố Quảng Ngãi', '522', 'Thành phố');
INSERT INTO category."Districts" VALUES (524, 51, 'system', '2023-07-26 08:40:16.203866+07', 'system', '2023-07-26 08:40:16.203866+07', 'Huyện Bình Sơn', '524', 'Huyện');
INSERT INTO category."Districts" VALUES (525, 51, 'system', '2023-07-26 08:40:16.203871+07', 'system', '2023-07-26 08:40:16.203871+07', 'Huyện Trà Bồng', '525', 'Huyện');
INSERT INTO category."Districts" VALUES (527, 51, 'system', '2023-07-26 08:40:16.203876+07', 'system', '2023-07-26 08:40:16.203876+07', 'Huyện Sơn Tịnh', '527', 'Huyện');
INSERT INTO category."Districts" VALUES (528, 51, 'system', '2023-07-26 08:40:16.203881+07', 'system', '2023-07-26 08:40:16.203881+07', 'Huyện Tư Nghĩa', '528', 'Huyện');
INSERT INTO category."Districts" VALUES (529, 51, 'system', '2023-07-26 08:40:16.203886+07', 'system', '2023-07-26 08:40:16.203886+07', 'Huyện Sơn Hà', '529', 'Huyện');
INSERT INTO category."Districts" VALUES (530, 51, 'system', '2023-07-26 08:40:16.203892+07', 'system', '2023-07-26 08:40:16.203892+07', 'Huyện Sơn Tây', '530', 'Huyện');
INSERT INTO category."Districts" VALUES (531, 51, 'system', '2023-07-26 08:40:16.203897+07', 'system', '2023-07-26 08:40:16.203897+07', 'Huyện Minh Long', '531', 'Huyện');
INSERT INTO category."Districts" VALUES (532, 51, 'system', '2023-07-26 08:40:16.203902+07', 'system', '2023-07-26 08:40:16.203902+07', 'Huyện Nghĩa Hành', '532', 'Huyện');
INSERT INTO category."Districts" VALUES (533, 51, 'system', '2023-07-26 08:40:16.203908+07', 'system', '2023-07-26 08:40:16.203908+07', 'Huyện Mộ Đức', '533', 'Huyện');
INSERT INTO category."Districts" VALUES (534, 51, 'system', '2023-07-26 08:40:16.203915+07', 'system', '2023-07-26 08:40:16.203915+07', 'Thị xã Đức Phổ', '534', 'Thị xã');
INSERT INTO category."Districts" VALUES (535, 51, 'system', '2023-07-26 08:40:16.203922+07', 'system', '2023-07-26 08:40:16.203922+07', 'Huyện Ba Tơ', '535', 'Huyện');
INSERT INTO category."Districts" VALUES (536, 51, 'system', '2023-07-26 08:40:16.203928+07', 'system', '2023-07-26 08:40:16.203928+07', 'Huyện Lý Sơn', '536', 'Huyện');
INSERT INTO category."Districts" VALUES (540, 52, 'system', '2023-07-26 08:40:16.203934+07', 'system', '2023-07-26 08:40:16.203934+07', 'Thành phố Quy Nhơn', '540', 'Thành phố');
INSERT INTO category."Districts" VALUES (542, 52, 'system', '2023-07-26 08:40:16.20394+07', 'system', '2023-07-26 08:40:16.20394+07', 'Huyện An Lão', '542', 'Huyện');
INSERT INTO category."Districts" VALUES (543, 52, 'system', '2023-07-26 08:40:16.203945+07', 'system', '2023-07-26 08:40:16.203945+07', 'Thị xã Hoài Nhơn', '543', 'Thị xã');
INSERT INTO category."Districts" VALUES (544, 52, 'system', '2023-07-26 08:40:16.20395+07', 'system', '2023-07-26 08:40:16.20395+07', 'Huyện Hoài Ân', '544', 'Huyện');
INSERT INTO category."Districts" VALUES (545, 52, 'system', '2023-07-26 08:40:16.203952+07', 'system', '2023-07-26 08:40:16.203952+07', 'Huyện Phù Mỹ', '545', 'Huyện');
INSERT INTO category."Districts" VALUES (546, 52, 'system', '2023-07-26 08:40:16.203955+07', 'system', '2023-07-26 08:40:16.203955+07', 'Huyện Vĩnh Thạnh', '546', 'Huyện');
INSERT INTO category."Districts" VALUES (547, 52, 'system', '2023-07-26 08:40:16.203958+07', 'system', '2023-07-26 08:40:16.203958+07', 'Huyện Tây Sơn', '547', 'Huyện');
INSERT INTO category."Districts" VALUES (548, 52, 'system', '2023-07-26 08:40:16.203961+07', 'system', '2023-07-26 08:40:16.203961+07', 'Huyện Phù Cát', '548', 'Huyện');
INSERT INTO category."Districts" VALUES (549, 52, 'system', '2023-07-26 08:40:16.203963+07', 'system', '2023-07-26 08:40:16.203963+07', 'Thị xã An Nhơn', '549', 'Thị xã');
INSERT INTO category."Districts" VALUES (550, 52, 'system', '2023-07-26 08:40:16.203966+07', 'system', '2023-07-26 08:40:16.203966+07', 'Huyện Tuy Phước', '550', 'Huyện');
INSERT INTO category."Districts" VALUES (551, 52, 'system', '2023-07-26 08:40:16.203969+07', 'system', '2023-07-26 08:40:16.203969+07', 'Huyện Vân Canh', '551', 'Huyện');
INSERT INTO category."Districts" VALUES (555, 54, 'system', '2023-07-26 08:40:16.203972+07', 'system', '2023-07-26 08:40:16.203972+07', 'Thành phố Tuy Hoà', '555', 'Thành phố');
INSERT INTO category."Districts" VALUES (557, 54, 'system', '2023-07-26 08:40:16.203975+07', 'system', '2023-07-26 08:40:16.203975+07', 'Thị xã Sông Cầu', '557', 'Thị xã');
INSERT INTO category."Districts" VALUES (558, 54, 'system', '2023-07-26 08:40:16.203978+07', 'system', '2023-07-26 08:40:16.203978+07', 'Huyện Đồng Xuân', '558', 'Huyện');
INSERT INTO category."Districts" VALUES (559, 54, 'system', '2023-07-26 08:40:16.203981+07', 'system', '2023-07-26 08:40:16.203981+07', 'Huyện Tuy An', '559', 'Huyện');
INSERT INTO category."Districts" VALUES (560, 54, 'system', '2023-07-26 08:40:16.203984+07', 'system', '2023-07-26 08:40:16.203985+07', 'Huyện Sơn Hòa', '560', 'Huyện');
INSERT INTO category."Districts" VALUES (561, 54, 'system', '2023-07-26 08:40:16.203987+07', 'system', '2023-07-26 08:40:16.203987+07', 'Huyện Sông Hinh', '561', 'Huyện');
INSERT INTO category."Districts" VALUES (562, 54, 'system', '2023-07-26 08:40:16.20399+07', 'system', '2023-07-26 08:40:16.20399+07', 'Huyện Tây Hoà', '562', 'Huyện');
INSERT INTO category."Districts" VALUES (563, 54, 'system', '2023-07-26 08:40:16.203993+07', 'system', '2023-07-26 08:40:16.203993+07', 'Huyện Phú Hoà', '563', 'Huyện');
INSERT INTO category."Districts" VALUES (564, 54, 'system', '2023-07-26 08:40:16.203996+07', 'system', '2023-07-26 08:40:16.203996+07', 'Thị xã Đông Hòa', '564', 'Thị xã');
INSERT INTO category."Districts" VALUES (568, 56, 'system', '2023-07-26 08:40:16.203999+07', 'system', '2023-07-26 08:40:16.203999+07', 'Thành phố Nha Trang', '568', 'Thành phố');
INSERT INTO category."Districts" VALUES (569, 56, 'system', '2023-07-26 08:40:16.204002+07', 'system', '2023-07-26 08:40:16.204002+07', 'Thành phố Cam Ranh', '569', 'Thành phố');
INSERT INTO category."Districts" VALUES (570, 56, 'system', '2023-07-26 08:40:16.204005+07', 'system', '2023-07-26 08:40:16.204005+07', 'Huyện Cam Lâm', '570', 'Huyện');
INSERT INTO category."Districts" VALUES (571, 56, 'system', '2023-07-26 08:40:16.204008+07', 'system', '2023-07-26 08:40:16.204008+07', 'Huyện Vạn Ninh', '571', 'Huyện');
INSERT INTO category."Districts" VALUES (572, 56, 'system', '2023-07-26 08:40:16.204011+07', 'system', '2023-07-26 08:40:16.204011+07', 'Thị xã Ninh Hòa', '572', 'Thị xã');
INSERT INTO category."Districts" VALUES (573, 56, 'system', '2023-07-26 08:40:16.204013+07', 'system', '2023-07-26 08:40:16.204013+07', 'Huyện Khánh Vĩnh', '573', 'Huyện');
INSERT INTO category."Districts" VALUES (574, 56, 'system', '2023-07-26 08:40:16.204016+07', 'system', '2023-07-26 08:40:16.204016+07', 'Huyện Diên Khánh', '574', 'Huyện');
INSERT INTO category."Districts" VALUES (575, 56, 'system', '2023-07-26 08:40:16.204019+07', 'system', '2023-07-26 08:40:16.204019+07', 'Huyện Khánh Sơn', '575', 'Huyện');
INSERT INTO category."Districts" VALUES (576, 56, 'system', '2023-07-26 08:40:16.204022+07', 'system', '2023-07-26 08:40:16.204022+07', 'Huyện Trường Sa', '576', 'Huyện');
INSERT INTO category."Districts" VALUES (582, 58, 'system', '2023-07-26 08:40:16.204025+07', 'system', '2023-07-26 08:40:16.204025+07', 'Thành phố Phan Rang-Tháp Chàm', '582', 'Thành phố');
INSERT INTO category."Districts" VALUES (584, 58, 'system', '2023-07-26 08:40:16.204028+07', 'system', '2023-07-26 08:40:16.204028+07', 'Huyện Bác Ái', '584', 'Huyện');
INSERT INTO category."Districts" VALUES (585, 58, 'system', '2023-07-26 08:40:16.20403+07', 'system', '2023-07-26 08:40:16.204031+07', 'Huyện Ninh Sơn', '585', 'Huyện');
INSERT INTO category."Districts" VALUES (586, 58, 'system', '2023-07-26 08:40:16.204033+07', 'system', '2023-07-26 08:40:16.204033+07', 'Huyện Ninh Hải', '586', 'Huyện');
INSERT INTO category."Districts" VALUES (587, 58, 'system', '2023-07-26 08:40:16.204036+07', 'system', '2023-07-26 08:40:16.204036+07', 'Huyện Ninh Phước', '587', 'Huyện');
INSERT INTO category."Districts" VALUES (588, 58, 'system', '2023-07-26 08:40:16.204039+07', 'system', '2023-07-26 08:40:16.204039+07', 'Huyện Thuận Bắc', '588', 'Huyện');
INSERT INTO category."Districts" VALUES (589, 58, 'system', '2023-07-26 08:40:16.204042+07', 'system', '2023-07-26 08:40:16.204042+07', 'Huyện Thuận Nam', '589', 'Huyện');
INSERT INTO category."Districts" VALUES (593, 60, 'system', '2023-07-26 08:40:16.204045+07', 'system', '2023-07-26 08:40:16.204045+07', 'Thành phố Phan Thiết', '593', 'Thành phố');
INSERT INTO category."Districts" VALUES (594, 60, 'system', '2023-07-26 08:40:16.204048+07', 'system', '2023-07-26 08:40:16.204048+07', 'Thị xã La Gi', '594', 'Thị xã');
INSERT INTO category."Districts" VALUES (595, 60, 'system', '2023-07-26 08:40:16.204051+07', 'system', '2023-07-26 08:40:16.204051+07', 'Huyện Tuy Phong', '595', 'Huyện');
INSERT INTO category."Districts" VALUES (596, 60, 'system', '2023-07-26 08:40:16.204054+07', 'system', '2023-07-26 08:40:16.204054+07', 'Huyện Bắc Bình', '596', 'Huyện');
INSERT INTO category."Districts" VALUES (597, 60, 'system', '2023-07-26 08:40:16.204056+07', 'system', '2023-07-26 08:40:16.204056+07', 'Huyện Hàm Thuận Bắc', '597', 'Huyện');
INSERT INTO category."Districts" VALUES (598, 60, 'system', '2023-07-26 08:40:16.204059+07', 'system', '2023-07-26 08:40:16.204059+07', 'Huyện Hàm Thuận Nam', '598', 'Huyện');
INSERT INTO category."Districts" VALUES (599, 60, 'system', '2023-07-26 08:40:16.204063+07', 'system', '2023-07-26 08:40:16.204063+07', 'Huyện Tánh Linh', '599', 'Huyện');
INSERT INTO category."Districts" VALUES (600, 60, 'system', '2023-07-26 08:40:16.204066+07', 'system', '2023-07-26 08:40:16.204066+07', 'Huyện Đức Linh', '600', 'Huyện');
INSERT INTO category."Districts" VALUES (601, 60, 'system', '2023-07-26 08:40:16.204069+07', 'system', '2023-07-26 08:40:16.204069+07', 'Huyện Hàm Tân', '601', 'Huyện');
INSERT INTO category."Districts" VALUES (602, 60, 'system', '2023-07-26 08:40:16.204071+07', 'system', '2023-07-26 08:40:16.204072+07', 'Huyện Phú Quí', '602', 'Huyện');
INSERT INTO category."Districts" VALUES (608, 62, 'system', '2023-07-26 08:40:16.204074+07', 'system', '2023-07-26 08:40:16.204074+07', 'Thành phố Kon Tum', '608', 'Thành phố');
INSERT INTO category."Districts" VALUES (610, 62, 'system', '2023-07-26 08:40:16.204077+07', 'system', '2023-07-26 08:40:16.204077+07', 'Huyện Đắk Glei', '610', 'Huyện');
INSERT INTO category."Districts" VALUES (611, 62, 'system', '2023-07-26 08:40:16.20408+07', 'system', '2023-07-26 08:40:16.20408+07', 'Huyện Ngọc Hồi', '611', 'Huyện');
INSERT INTO category."Districts" VALUES (612, 62, 'system', '2023-07-26 08:40:16.204083+07', 'system', '2023-07-26 08:40:16.204083+07', 'Huyện Đắk Tô', '612', 'Huyện');
INSERT INTO category."Districts" VALUES (613, 62, 'system', '2023-07-26 08:40:16.204086+07', 'system', '2023-07-26 08:40:16.204086+07', 'Huyện Kon Plông', '613', 'Huyện');
INSERT INTO category."Districts" VALUES (614, 62, 'system', '2023-07-26 08:40:16.204088+07', 'system', '2023-07-26 08:40:16.204088+07', 'Huyện Kon Rẫy', '614', 'Huyện');
INSERT INTO category."Districts" VALUES (615, 62, 'system', '2023-07-26 08:40:16.204091+07', 'system', '2023-07-26 08:40:16.204091+07', 'Huyện Đắk Hà', '615', 'Huyện');
INSERT INTO category."Districts" VALUES (616, 62, 'system', '2023-07-26 08:40:16.204094+07', 'system', '2023-07-26 08:40:16.204094+07', 'Huyện Sa Thầy', '616', 'Huyện');
INSERT INTO category."Districts" VALUES (617, 62, 'system', '2023-07-26 08:40:16.204097+07', 'system', '2023-07-26 08:40:16.204097+07', 'Huyện Tu Mơ Rông', '617', 'Huyện');
INSERT INTO category."Districts" VALUES (618, 62, 'system', '2023-07-26 08:40:16.204099+07', 'system', '2023-07-26 08:40:16.2041+07', 'Huyện Ia H'' Drai', '618', 'Huyện');
INSERT INTO category."Districts" VALUES (622, 64, 'system', '2023-07-26 08:40:16.204102+07', 'system', '2023-07-26 08:40:16.204102+07', 'Thành phố Pleiku', '622', 'Thành phố');
INSERT INTO category."Districts" VALUES (623, 64, 'system', '2023-07-26 08:40:16.204105+07', 'system', '2023-07-26 08:40:16.204105+07', 'Thị xã An Khê', '623', 'Thị xã');
INSERT INTO category."Districts" VALUES (624, 64, 'system', '2023-07-26 08:40:16.204108+07', 'system', '2023-07-26 08:40:16.204108+07', 'Thị xã Ayun Pa', '624', 'Thị xã');
INSERT INTO category."Districts" VALUES (625, 64, 'system', '2023-07-26 08:40:16.204111+07', 'system', '2023-07-26 08:40:16.204111+07', 'Huyện KBang', '625', 'Huyện');
INSERT INTO category."Districts" VALUES (626, 64, 'system', '2023-07-26 08:40:16.204114+07', 'system', '2023-07-26 08:40:16.204114+07', 'Huyện Đăk Đoa', '626', 'Huyện');
INSERT INTO category."Districts" VALUES (627, 64, 'system', '2023-07-26 08:40:16.204117+07', 'system', '2023-07-26 08:40:16.204117+07', 'Huyện Chư Păh', '627', 'Huyện');
INSERT INTO category."Districts" VALUES (628, 64, 'system', '2023-07-26 08:40:16.20412+07', 'system', '2023-07-26 08:40:16.20412+07', 'Huyện Ia Grai', '628', 'Huyện');
INSERT INTO category."Districts" VALUES (629, 64, 'system', '2023-07-26 08:40:16.204122+07', 'system', '2023-07-26 08:40:16.204122+07', 'Huyện Mang Yang', '629', 'Huyện');
INSERT INTO category."Districts" VALUES (630, 64, 'system', '2023-07-26 08:40:16.204125+07', 'system', '2023-07-26 08:40:16.204125+07', 'Huyện Kông Chro', '630', 'Huyện');
INSERT INTO category."Districts" VALUES (631, 64, 'system', '2023-07-26 08:40:16.204128+07', 'system', '2023-07-26 08:40:16.204128+07', 'Huyện Đức Cơ', '631', 'Huyện');
INSERT INTO category."Districts" VALUES (632, 64, 'system', '2023-07-26 08:40:16.204131+07', 'system', '2023-07-26 08:40:16.204131+07', 'Huyện Chư Prông', '632', 'Huyện');
INSERT INTO category."Districts" VALUES (633, 64, 'system', '2023-07-26 08:40:16.204134+07', 'system', '2023-07-26 08:40:16.204134+07', 'Huyện Chư Sê', '633', 'Huyện');
INSERT INTO category."Districts" VALUES (634, 64, 'system', '2023-07-26 08:40:16.204137+07', 'system', '2023-07-26 08:40:16.204137+07', 'Huyện Đăk Pơ', '634', 'Huyện');
INSERT INTO category."Districts" VALUES (635, 64, 'system', '2023-07-26 08:40:16.204141+07', 'system', '2023-07-26 08:40:16.204141+07', 'Huyện Ia Pa', '635', 'Huyện');
INSERT INTO category."Districts" VALUES (637, 64, 'system', '2023-07-26 08:40:16.204143+07', 'system', '2023-07-26 08:40:16.204143+07', 'Huyện Krông Pa', '637', 'Huyện');
INSERT INTO category."Districts" VALUES (638, 64, 'system', '2023-07-26 08:40:16.204146+07', 'system', '2023-07-26 08:40:16.204146+07', 'Huyện Phú Thiện', '638', 'Huyện');
INSERT INTO category."Districts" VALUES (639, 64, 'system', '2023-07-26 08:40:16.204149+07', 'system', '2023-07-26 08:40:16.204149+07', 'Huyện Chư Pưh', '639', 'Huyện');
INSERT INTO category."Districts" VALUES (643, 66, 'system', '2023-07-26 08:40:16.204152+07', 'system', '2023-07-26 08:40:16.204152+07', 'Thành phố Buôn Ma Thuột', '643', 'Thành phố');
INSERT INTO category."Districts" VALUES (644, 66, 'system', '2023-07-26 08:40:16.204156+07', 'system', '2023-07-26 08:40:16.204156+07', 'Thị Xã Buôn Hồ', '644', 'Thị xã');
INSERT INTO category."Districts" VALUES (645, 66, 'system', '2023-07-26 08:40:16.204158+07', 'system', '2023-07-26 08:40:16.204159+07', 'Huyện Ea H''leo', '645', 'Huyện');
INSERT INTO category."Districts" VALUES (647, 66, 'system', '2023-07-26 08:40:16.204164+07', 'system', '2023-07-26 08:40:16.204164+07', 'Huyện Buôn Đôn', '647', 'Huyện');
INSERT INTO category."Districts" VALUES (648, 66, 'system', '2023-07-26 08:40:16.204167+07', 'system', '2023-07-26 08:40:16.204167+07', 'Huyện Cư M''gar', '648', 'Huyện');
INSERT INTO category."Districts" VALUES (649, 66, 'system', '2023-07-26 08:40:16.20417+07', 'system', '2023-07-26 08:40:16.20417+07', 'Huyện Krông Búk', '649', 'Huyện');
INSERT INTO category."Districts" VALUES (650, 66, 'system', '2023-07-26 08:40:16.204173+07', 'system', '2023-07-26 08:40:16.204173+07', 'Huyện Krông Năng', '650', 'Huyện');
INSERT INTO category."Districts" VALUES (651, 66, 'system', '2023-07-26 08:40:16.204175+07', 'system', '2023-07-26 08:40:16.204175+07', 'Huyện Ea Kar', '651', 'Huyện');
INSERT INTO category."Districts" VALUES (652, 66, 'system', '2023-07-26 08:40:16.204178+07', 'system', '2023-07-26 08:40:16.204178+07', 'Huyện M''Đrắk', '652', 'Huyện');
INSERT INTO category."Districts" VALUES (653, 66, 'system', '2023-07-26 08:40:16.204181+07', 'system', '2023-07-26 08:40:16.204181+07', 'Huyện Krông Bông', '653', 'Huyện');
INSERT INTO category."Districts" VALUES (654, 66, 'system', '2023-07-26 08:40:16.204184+07', 'system', '2023-07-26 08:40:16.204184+07', 'Huyện Krông Pắc', '654', 'Huyện');
INSERT INTO category."Districts" VALUES (655, 66, 'system', '2023-07-26 08:40:16.204187+07', 'system', '2023-07-26 08:40:16.204187+07', 'Huyện Krông A Na', '655', 'Huyện');
INSERT INTO category."Districts" VALUES (656, 66, 'system', '2023-07-26 08:40:16.20419+07', 'system', '2023-07-26 08:40:16.20419+07', 'Huyện Lắk', '656', 'Huyện');
INSERT INTO category."Districts" VALUES (657, 66, 'system', '2023-07-26 08:40:16.204192+07', 'system', '2023-07-26 08:40:16.204192+07', 'Huyện Cư Kuin', '657', 'Huyện');
INSERT INTO category."Districts" VALUES (660, 67, 'system', '2023-07-26 08:40:16.204195+07', 'system', '2023-07-26 08:40:16.204195+07', 'Thành phố Gia Nghĩa', '660', 'Thành phố');
INSERT INTO category."Districts" VALUES (661, 67, 'system', '2023-07-26 08:40:16.204198+07', 'system', '2023-07-26 08:40:16.204198+07', 'Huyện Đăk Glong', '661', 'Huyện');
INSERT INTO category."Districts" VALUES (662, 67, 'system', '2023-07-26 08:40:16.204201+07', 'system', '2023-07-26 08:40:16.204201+07', 'Huyện Cư Jút', '662', 'Huyện');
INSERT INTO category."Districts" VALUES (663, 67, 'system', '2023-07-26 08:40:16.204204+07', 'system', '2023-07-26 08:40:16.204204+07', 'Huyện Đắk Mil', '663', 'Huyện');
INSERT INTO category."Districts" VALUES (664, 67, 'system', '2023-07-26 08:40:16.204207+07', 'system', '2023-07-26 08:40:16.204207+07', 'Huyện Krông Nô', '664', 'Huyện');
INSERT INTO category."Districts" VALUES (665, 67, 'system', '2023-07-26 08:40:16.20421+07', 'system', '2023-07-26 08:40:16.20421+07', 'Huyện Đắk Song', '665', 'Huyện');
INSERT INTO category."Districts" VALUES (666, 67, 'system', '2023-07-26 08:40:16.204212+07', 'system', '2023-07-26 08:40:16.204212+07', 'Huyện Đắk R''Lấp', '666', 'Huyện');
INSERT INTO category."Districts" VALUES (667, 67, 'system', '2023-07-26 08:40:16.204215+07', 'system', '2023-07-26 08:40:16.204215+07', 'Huyện Tuy Đức', '667', 'Huyện');
INSERT INTO category."Districts" VALUES (672, 68, 'system', '2023-07-26 08:40:16.204219+07', 'system', '2023-07-26 08:40:16.204219+07', 'Thành phố Đà Lạt', '672', 'Thành phố');
INSERT INTO category."Districts" VALUES (673, 68, 'system', '2023-07-26 08:40:16.204222+07', 'system', '2023-07-26 08:40:16.204222+07', 'Thành phố Bảo Lộc', '673', 'Thành phố');
INSERT INTO category."Districts" VALUES (674, 68, 'system', '2023-07-26 08:40:16.204225+07', 'system', '2023-07-26 08:40:16.204225+07', 'Huyện Đam Rông', '674', 'Huyện');
INSERT INTO category."Districts" VALUES (675, 68, 'system', '2023-07-26 08:40:16.204228+07', 'system', '2023-07-26 08:40:16.204228+07', 'Huyện Lạc Dương', '675', 'Huyện');
INSERT INTO category."Districts" VALUES (676, 68, 'system', '2023-07-26 08:40:16.20423+07', 'system', '2023-07-26 08:40:16.204231+07', 'Huyện Lâm Hà', '676', 'Huyện');
INSERT INTO category."Districts" VALUES (677, 68, 'system', '2023-07-26 08:40:16.204233+07', 'system', '2023-07-26 08:40:16.204233+07', 'Huyện Đơn Dương', '677', 'Huyện');
INSERT INTO category."Districts" VALUES (678, 68, 'system', '2023-07-26 08:40:16.204236+07', 'system', '2023-07-26 08:40:16.204236+07', 'Huyện Đức Trọng', '678', 'Huyện');
INSERT INTO category."Districts" VALUES (679, 68, 'system', '2023-07-26 08:40:16.204239+07', 'system', '2023-07-26 08:40:16.204239+07', 'Huyện Di Linh', '679', 'Huyện');
INSERT INTO category."Districts" VALUES (680, 68, 'system', '2023-07-26 08:40:16.204242+07', 'system', '2023-07-26 08:40:16.204242+07', 'Huyện Bảo Lâm', '680', 'Huyện');
INSERT INTO category."Districts" VALUES (681, 68, 'system', '2023-07-26 08:40:16.204245+07', 'system', '2023-07-26 08:40:16.204245+07', 'Huyện Đạ Huoai', '681', 'Huyện');
INSERT INTO category."Districts" VALUES (682, 68, 'system', '2023-07-26 08:40:16.204247+07', 'system', '2023-07-26 08:40:16.204247+07', 'Huyện Đạ Tẻh', '682', 'Huyện');
INSERT INTO category."Districts" VALUES (683, 68, 'system', '2023-07-26 08:40:16.20425+07', 'system', '2023-07-26 08:40:16.20425+07', 'Huyện Cát Tiên', '683', 'Huyện');
INSERT INTO category."Districts" VALUES (688, 70, 'system', '2023-07-26 08:40:16.204253+07', 'system', '2023-07-26 08:40:16.204253+07', 'Thị xã Phước Long', '688', 'Thị xã');
INSERT INTO category."Districts" VALUES (689, 70, 'system', '2023-07-26 08:40:16.204256+07', 'system', '2023-07-26 08:40:16.204256+07', 'Thành phố Đồng Xoài', '689', 'Thành phố');
INSERT INTO category."Districts" VALUES (690, 70, 'system', '2023-07-26 08:40:16.204259+07', 'system', '2023-07-26 08:40:16.204259+07', 'Thị xã Bình Long', '690', 'Thị xã');
INSERT INTO category."Districts" VALUES (691, 70, 'system', '2023-07-26 08:40:16.204262+07', 'system', '2023-07-26 08:40:16.204262+07', 'Huyện Bù Gia Mập', '691', 'Huyện');
INSERT INTO category."Districts" VALUES (692, 70, 'system', '2023-07-26 08:40:16.204277+07', 'system', '2023-07-26 08:40:16.204277+07', 'Huyện Lộc Ninh', '692', 'Huyện');
INSERT INTO category."Districts" VALUES (693, 70, 'system', '2023-07-26 08:40:16.20428+07', 'system', '2023-07-26 08:40:16.20428+07', 'Huyện Bù Đốp', '693', 'Huyện');
INSERT INTO category."Districts" VALUES (694, 70, 'system', '2023-07-26 08:40:16.204283+07', 'system', '2023-07-26 08:40:16.204283+07', 'Huyện Hớn Quản', '694', 'Huyện');
INSERT INTO category."Districts" VALUES (695, 70, 'system', '2023-07-26 08:40:16.204286+07', 'system', '2023-07-26 08:40:16.204287+07', 'Huyện Đồng Phú', '695', 'Huyện');
INSERT INTO category."Districts" VALUES (696, 70, 'system', '2023-07-26 08:40:16.204289+07', 'system', '2023-07-26 08:40:16.204289+07', 'Huyện Bù Đăng', '696', 'Huyện');
INSERT INTO category."Districts" VALUES (697, 70, 'system', '2023-07-26 08:40:16.204292+07', 'system', '2023-07-26 08:40:16.204292+07', 'Huyện Chơn Thành', '697', 'Huyện');
INSERT INTO category."Districts" VALUES (698, 70, 'system', '2023-07-26 08:40:16.204295+07', 'system', '2023-07-26 08:40:16.204295+07', 'Huyện Phú Riềng', '698', 'Huyện');
INSERT INTO category."Districts" VALUES (703, 72, 'system', '2023-07-26 08:40:16.204298+07', 'system', '2023-07-26 08:40:16.204298+07', 'Thành phố Tây Ninh', '703', 'Thành phố');
INSERT INTO category."Districts" VALUES (705, 72, 'system', '2023-07-26 08:40:16.204303+07', 'system', '2023-07-26 08:40:16.204303+07', 'Huyện Tân Biên', '705', 'Huyện');
INSERT INTO category."Districts" VALUES (706, 72, 'system', '2023-07-26 08:40:16.204306+07', 'system', '2023-07-26 08:40:16.204306+07', 'Huyện Tân Châu', '706', 'Huyện');
INSERT INTO category."Districts" VALUES (707, 72, 'system', '2023-07-26 08:40:16.204309+07', 'system', '2023-07-26 08:40:16.204309+07', 'Huyện Dương Minh Châu', '707', 'Huyện');
INSERT INTO category."Districts" VALUES (708, 72, 'system', '2023-07-26 08:40:16.204312+07', 'system', '2023-07-26 08:40:16.204312+07', 'Huyện Châu Thành', '708', 'Huyện');
INSERT INTO category."Districts" VALUES (709, 72, 'system', '2023-07-26 08:40:16.204315+07', 'system', '2023-07-26 08:40:16.204315+07', 'Thị xã Hòa Thành', '709', 'Thị xã');
INSERT INTO category."Districts" VALUES (710, 72, 'system', '2023-07-26 08:40:16.204318+07', 'system', '2023-07-26 08:40:16.204318+07', 'Huyện Gò Dầu', '710', 'Huyện');
INSERT INTO category."Districts" VALUES (711, 72, 'system', '2023-07-26 08:40:16.204321+07', 'system', '2023-07-26 08:40:16.204321+07', 'Huyện Bến Cầu', '711', 'Huyện');
INSERT INTO category."Districts" VALUES (712, 72, 'system', '2023-07-26 08:40:16.204324+07', 'system', '2023-07-26 08:40:16.204324+07', 'Thị xã Trảng Bàng', '712', 'Thị xã');
INSERT INTO category."Districts" VALUES (718, 74, 'system', '2023-07-26 08:40:16.204327+07', 'system', '2023-07-26 08:40:16.204327+07', 'Thành phố Thủ Dầu Một', '718', 'Thành phố');
INSERT INTO category."Districts" VALUES (719, 74, 'system', '2023-07-26 08:40:16.20433+07', 'system', '2023-07-26 08:40:16.20433+07', 'Huyện Bàu Bàng', '719', 'Huyện');
INSERT INTO category."Districts" VALUES (720, 74, 'system', '2023-07-26 08:40:16.204332+07', 'system', '2023-07-26 08:40:16.204332+07', 'Huyện Dầu Tiếng', '720', 'Huyện');
INSERT INTO category."Districts" VALUES (721, 74, 'system', '2023-07-26 08:40:16.204335+07', 'system', '2023-07-26 08:40:16.204336+07', 'Thị xã Bến Cát', '721', 'Thị xã');
INSERT INTO category."Districts" VALUES (722, 74, 'system', '2023-07-26 08:40:16.204339+07', 'system', '2023-07-26 08:40:16.204339+07', 'Huyện Phú Giáo', '722', 'Huyện');
INSERT INTO category."Districts" VALUES (723, 74, 'system', '2023-07-26 08:40:16.204341+07', 'system', '2023-07-26 08:40:16.204341+07', 'Thị xã Tân Uyên', '723', 'Thị xã');
INSERT INTO category."Districts" VALUES (724, 74, 'system', '2023-07-26 08:40:16.204344+07', 'system', '2023-07-26 08:40:16.204344+07', 'Thành phố Dĩ An', '724', 'Thành phố');
INSERT INTO category."Districts" VALUES (725, 74, 'system', '2023-07-26 08:40:16.204349+07', 'system', '2023-07-26 08:40:16.204349+07', 'Thành phố Thuận An', '725', 'Thành phố');
INSERT INTO category."Districts" VALUES (726, 74, 'system', '2023-07-26 08:40:16.204354+07', 'system', '2023-07-26 08:40:16.204354+07', 'Huyện Bắc Tân Uyên', '726', 'Huyện');
INSERT INTO category."Districts" VALUES (731, 75, 'system', '2023-07-26 08:40:16.204359+07', 'system', '2023-07-26 08:40:16.20436+07', 'Thành phố Biên Hòa', '731', 'Thành phố');
INSERT INTO category."Districts" VALUES (732, 75, 'system', '2023-07-26 08:40:16.204365+07', 'system', '2023-07-26 08:40:16.204365+07', 'Thành phố Long Khánh', '732', 'Thành phố');
INSERT INTO category."Districts" VALUES (734, 75, 'system', '2023-07-26 08:40:16.20437+07', 'system', '2023-07-26 08:40:16.20437+07', 'Huyện Tân Phú', '734', 'Huyện');
INSERT INTO category."Districts" VALUES (735, 75, 'system', '2023-07-26 08:40:16.204373+07', 'system', '2023-07-26 08:40:16.204373+07', 'Huyện Vĩnh Cửu', '735', 'Huyện');
INSERT INTO category."Districts" VALUES (736, 75, 'system', '2023-07-26 08:40:16.204376+07', 'system', '2023-07-26 08:40:16.204376+07', 'Huyện Định Quán', '736', 'Huyện');
INSERT INTO category."Districts" VALUES (737, 75, 'system', '2023-07-26 08:40:16.204379+07', 'system', '2023-07-26 08:40:16.204379+07', 'Huyện Trảng Bom', '737', 'Huyện');
INSERT INTO category."Districts" VALUES (738, 75, 'system', '2023-07-26 08:40:16.204382+07', 'system', '2023-07-26 08:40:16.204382+07', 'Huyện Thống Nhất', '738', 'Huyện');
INSERT INTO category."Districts" VALUES (739, 75, 'system', '2023-07-26 08:40:16.204385+07', 'system', '2023-07-26 08:40:16.204385+07', 'Huyện Cẩm Mỹ', '739', 'Huyện');
INSERT INTO category."Districts" VALUES (740, 75, 'system', '2023-07-26 08:40:16.204387+07', 'system', '2023-07-26 08:40:16.204388+07', 'Huyện Long Thành', '740', 'Huyện');
INSERT INTO category."Districts" VALUES (741, 75, 'system', '2023-07-26 08:40:16.20439+07', 'system', '2023-07-26 08:40:16.204391+07', 'Huyện Xuân Lộc', '741', 'Huyện');
INSERT INTO category."Districts" VALUES (742, 75, 'system', '2023-07-26 08:40:16.204393+07', 'system', '2023-07-26 08:40:16.204393+07', 'Huyện Nhơn Trạch', '742', 'Huyện');
INSERT INTO category."Districts" VALUES (747, 77, 'system', '2023-07-26 08:40:16.204396+07', 'system', '2023-07-26 08:40:16.204396+07', 'Thành phố Vũng Tàu', '747', 'Thành phố');
INSERT INTO category."Districts" VALUES (748, 77, 'system', '2023-07-26 08:40:16.2044+07', 'system', '2023-07-26 08:40:16.2044+07', 'Thành phố Bà Rịa', '748', 'Thành phố');
INSERT INTO category."Districts" VALUES (750, 77, 'system', '2023-07-26 08:40:16.204403+07', 'system', '2023-07-26 08:40:16.204403+07', 'Huyện Châu Đức', '750', 'Huyện');
INSERT INTO category."Districts" VALUES (751, 77, 'system', '2023-07-26 08:40:16.204406+07', 'system', '2023-07-26 08:40:16.204406+07', 'Huyện Xuyên Mộc', '751', 'Huyện');
INSERT INTO category."Districts" VALUES (752, 77, 'system', '2023-07-26 08:40:16.204409+07', 'system', '2023-07-26 08:40:16.204409+07', 'Huyện Long Điền', '752', 'Huyện');
INSERT INTO category."Districts" VALUES (753, 77, 'system', '2023-07-26 08:40:16.204411+07', 'system', '2023-07-26 08:40:16.204411+07', 'Huyện Đất Đỏ', '753', 'Huyện');
INSERT INTO category."Districts" VALUES (754, 77, 'system', '2023-07-26 08:40:16.204414+07', 'system', '2023-07-26 08:40:16.204414+07', 'Thị xã Phú Mỹ', '754', 'Thị xã');
INSERT INTO category."Districts" VALUES (755, 77, 'system', '2023-07-26 08:40:16.204417+07', 'system', '2023-07-26 08:40:16.204417+07', 'Huyện Côn Đảo', '755', 'Huyện');
INSERT INTO category."Districts" VALUES (760, 79, 'system', '2023-07-26 08:40:16.20442+07', 'system', '2023-07-26 08:40:16.20442+07', 'Quận 1', '760', 'Quận');
INSERT INTO category."Districts" VALUES (761, 79, 'system', '2023-07-26 08:40:16.204423+07', 'system', '2023-07-26 08:40:16.204423+07', 'Quận 12', '761', 'Quận');
INSERT INTO category."Districts" VALUES (764, 79, 'system', '2023-07-26 08:40:16.204426+07', 'system', '2023-07-26 08:40:16.204426+07', 'Quận Gò Vấp', '764', 'Quận');
INSERT INTO category."Districts" VALUES (765, 79, 'system', '2023-07-26 08:40:16.204429+07', 'system', '2023-07-26 08:40:16.204429+07', 'Quận Bình Thạnh', '765', 'Quận');
INSERT INTO category."Districts" VALUES (766, 79, 'system', '2023-07-26 08:40:16.204432+07', 'system', '2023-07-26 08:40:16.204432+07', 'Quận Tân Bình', '766', 'Quận');
INSERT INTO category."Districts" VALUES (767, 79, 'system', '2023-07-26 08:40:16.204435+07', 'system', '2023-07-26 08:40:16.204435+07', 'Quận Tân Phú', '767', 'Quận');
INSERT INTO category."Districts" VALUES (768, 79, 'system', '2023-07-26 08:40:16.204437+07', 'system', '2023-07-26 08:40:16.204437+07', 'Quận Phú Nhuận', '768', 'Quận');
INSERT INTO category."Districts" VALUES (769, 79, 'system', '2023-07-26 08:40:16.20444+07', 'system', '2023-07-26 08:40:16.20444+07', 'Thành phố Thủ Đức', '769', 'Thành phố');
INSERT INTO category."Districts" VALUES (770, 79, 'system', '2023-07-26 08:40:16.204443+07', 'system', '2023-07-26 08:40:16.204443+07', 'Quận 3', '770', 'Quận');
INSERT INTO category."Districts" VALUES (771, 79, 'system', '2023-07-26 08:40:16.204445+07', 'system', '2023-07-26 08:40:16.204446+07', 'Quận 10', '771', 'Quận');
INSERT INTO category."Districts" VALUES (772, 79, 'system', '2023-07-26 08:40:16.204448+07', 'system', '2023-07-26 08:40:16.204448+07', 'Quận 11', '772', 'Quận');
INSERT INTO category."Districts" VALUES (773, 79, 'system', '2023-07-26 08:40:16.204451+07', 'system', '2023-07-26 08:40:16.204451+07', 'Quận 4', '773', 'Quận');
INSERT INTO category."Districts" VALUES (774, 79, 'system', '2023-07-26 08:40:16.204453+07', 'system', '2023-07-26 08:40:16.204453+07', 'Quận 5', '774', 'Quận');
INSERT INTO category."Districts" VALUES (775, 79, 'system', '2023-07-26 08:40:16.204456+07', 'system', '2023-07-26 08:40:16.204456+07', 'Quận 6', '775', 'Quận');
INSERT INTO category."Districts" VALUES (776, 79, 'system', '2023-07-26 08:40:16.204459+07', 'system', '2023-07-26 08:40:16.204459+07', 'Quận 8', '776', 'Quận');
INSERT INTO category."Districts" VALUES (777, 79, 'system', '2023-07-26 08:40:16.204461+07', 'system', '2023-07-26 08:40:16.204461+07', 'Quận Bình Tân', '777', 'Quận');
INSERT INTO category."Districts" VALUES (778, 79, 'system', '2023-07-26 08:40:16.204464+07', 'system', '2023-07-26 08:40:16.204464+07', 'Quận 7', '778', 'Quận');
INSERT INTO category."Districts" VALUES (783, 79, 'system', '2023-07-26 08:40:16.204467+07', 'system', '2023-07-26 08:40:16.204467+07', 'Huyện Củ Chi', '783', 'Huyện');
INSERT INTO category."Districts" VALUES (784, 79, 'system', '2023-07-26 08:40:16.20447+07', 'system', '2023-07-26 08:40:16.20447+07', 'Huyện Hóc Môn', '784', 'Huyện');
INSERT INTO category."Districts" VALUES (785, 79, 'system', '2023-07-26 08:40:16.204472+07', 'system', '2023-07-26 08:40:16.204473+07', 'Huyện Bình Chánh', '785', 'Huyện');
INSERT INTO category."Districts" VALUES (786, 79, 'system', '2023-07-26 08:40:16.204475+07', 'system', '2023-07-26 08:40:16.204475+07', 'Huyện Nhà Bè', '786', 'Huyện');
INSERT INTO category."Districts" VALUES (787, 79, 'system', '2023-07-26 08:40:16.204479+07', 'system', '2023-07-26 08:40:16.204479+07', 'Huyện Cần Giờ', '787', 'Huyện');
INSERT INTO category."Districts" VALUES (794, 80, 'system', '2023-07-26 08:40:16.204482+07', 'system', '2023-07-26 08:40:16.204482+07', 'Thành phố Tân An', '794', 'Thành phố');
INSERT INTO category."Districts" VALUES (795, 80, 'system', '2023-07-26 08:40:16.204485+07', 'system', '2023-07-26 08:40:16.204485+07', 'Thị xã Kiến Tường', '795', 'Thị xã');
INSERT INTO category."Districts" VALUES (796, 80, 'system', '2023-07-26 08:40:16.204488+07', 'system', '2023-07-26 08:40:16.204488+07', 'Huyện Tân Hưng', '796', 'Huyện');
INSERT INTO category."Districts" VALUES (797, 80, 'system', '2023-07-26 08:40:16.204491+07', 'system', '2023-07-26 08:40:16.204491+07', 'Huyện Vĩnh Hưng', '797', 'Huyện');
INSERT INTO category."Districts" VALUES (798, 80, 'system', '2023-07-26 08:40:16.204494+07', 'system', '2023-07-26 08:40:16.204494+07', 'Huyện Mộc Hóa', '798', 'Huyện');
INSERT INTO category."Districts" VALUES (799, 80, 'system', '2023-07-26 08:40:16.204496+07', 'system', '2023-07-26 08:40:16.204497+07', 'Huyện Tân Thạnh', '799', 'Huyện');
INSERT INTO category."Districts" VALUES (800, 80, 'system', '2023-07-26 08:40:16.204499+07', 'system', '2023-07-26 08:40:16.204499+07', 'Huyện Thạnh Hóa', '800', 'Huyện');
INSERT INTO category."Districts" VALUES (801, 80, 'system', '2023-07-26 08:40:16.204502+07', 'system', '2023-07-26 08:40:16.204502+07', 'Huyện Đức Huệ', '801', 'Huyện');
INSERT INTO category."Districts" VALUES (802, 80, 'system', '2023-07-26 08:40:16.204505+07', 'system', '2023-07-26 08:40:16.204505+07', 'Huyện Đức Hòa', '802', 'Huyện');
INSERT INTO category."Districts" VALUES (803, 80, 'system', '2023-07-26 08:40:16.204508+07', 'system', '2023-07-26 08:40:16.204508+07', 'Huyện Bến Lức', '803', 'Huyện');
INSERT INTO category."Districts" VALUES (804, 80, 'system', '2023-07-26 08:40:16.204511+07', 'system', '2023-07-26 08:40:16.204511+07', 'Huyện Thủ Thừa', '804', 'Huyện');
INSERT INTO category."Districts" VALUES (805, 80, 'system', '2023-07-26 08:40:16.204514+07', 'system', '2023-07-26 08:40:16.204514+07', 'Huyện Tân Trụ', '805', 'Huyện');
INSERT INTO category."Districts" VALUES (806, 80, 'system', '2023-07-26 08:40:16.204516+07', 'system', '2023-07-26 08:40:16.204516+07', 'Huyện Cần Đước', '806', 'Huyện');
INSERT INTO category."Districts" VALUES (807, 80, 'system', '2023-07-26 08:40:16.204519+07', 'system', '2023-07-26 08:40:16.204519+07', 'Huyện Cần Giuộc', '807', 'Huyện');
INSERT INTO category."Districts" VALUES (808, 80, 'system', '2023-07-26 08:40:16.204522+07', 'system', '2023-07-26 08:40:16.204522+07', 'Huyện Châu Thành', '808', 'Huyện');
INSERT INTO category."Districts" VALUES (815, 82, 'system', '2023-07-26 08:40:16.204525+07', 'system', '2023-07-26 08:40:16.204525+07', 'Thành phố Mỹ Tho', '815', 'Thành phố');
INSERT INTO category."Districts" VALUES (816, 82, 'system', '2023-07-26 08:40:16.204528+07', 'system', '2023-07-26 08:40:16.204528+07', 'Thị xã Gò Công', '816', 'Thị xã');
INSERT INTO category."Districts" VALUES (817, 82, 'system', '2023-07-26 08:40:16.204531+07', 'system', '2023-07-26 08:40:16.204531+07', 'Thị xã Cai Lậy', '817', 'Thị xã');
INSERT INTO category."Districts" VALUES (818, 82, 'system', '2023-07-26 08:40:16.204534+07', 'system', '2023-07-26 08:40:16.204534+07', 'Huyện Tân Phước', '818', 'Huyện');
INSERT INTO category."Districts" VALUES (819, 82, 'system', '2023-07-26 08:40:16.204536+07', 'system', '2023-07-26 08:40:16.204536+07', 'Huyện Cái Bè', '819', 'Huyện');
INSERT INTO category."Districts" VALUES (820, 82, 'system', '2023-07-26 08:40:16.204539+07', 'system', '2023-07-26 08:40:16.204539+07', 'Huyện Cai Lậy', '820', 'Huyện');
INSERT INTO category."Districts" VALUES (821, 82, 'system', '2023-07-26 08:40:16.204542+07', 'system', '2023-07-26 08:40:16.204542+07', 'Huyện Châu Thành', '821', 'Huyện');
INSERT INTO category."Districts" VALUES (822, 82, 'system', '2023-07-26 08:40:16.204545+07', 'system', '2023-07-26 08:40:16.204545+07', 'Huyện Chợ Gạo', '822', 'Huyện');
INSERT INTO category."Districts" VALUES (823, 82, 'system', '2023-07-26 08:40:16.204547+07', 'system', '2023-07-26 08:40:16.204548+07', 'Huyện Gò Công Tây', '823', 'Huyện');
INSERT INTO category."Districts" VALUES (824, 82, 'system', '2023-07-26 08:40:16.20455+07', 'system', '2023-07-26 08:40:16.20455+07', 'Huyện Gò Công Đông', '824', 'Huyện');
INSERT INTO category."Districts" VALUES (825, 82, 'system', '2023-07-26 08:40:16.204554+07', 'system', '2023-07-26 08:40:16.204554+07', 'Huyện Tân Phú Đông', '825', 'Huyện');
INSERT INTO category."Districts" VALUES (829, 83, 'system', '2023-07-26 08:40:16.204557+07', 'system', '2023-07-26 08:40:16.204557+07', 'Thành phố Bến Tre', '829', 'Thành phố');
INSERT INTO category."Districts" VALUES (831, 83, 'system', '2023-07-26 08:40:16.20456+07', 'system', '2023-07-26 08:40:16.20456+07', 'Huyện Châu Thành', '831', 'Huyện');
INSERT INTO category."Districts" VALUES (832, 83, 'system', '2023-07-26 08:40:16.204563+07', 'system', '2023-07-26 08:40:16.204563+07', 'Huyện Chợ Lách', '832', 'Huyện');
INSERT INTO category."Districts" VALUES (833, 83, 'system', '2023-07-26 08:40:16.204566+07', 'system', '2023-07-26 08:40:16.204566+07', 'Huyện Mỏ Cày Nam', '833', 'Huyện');
INSERT INTO category."Districts" VALUES (834, 83, 'system', '2023-07-26 08:40:16.204569+07', 'system', '2023-07-26 08:40:16.204569+07', 'Huyện Giồng Trôm', '834', 'Huyện');
INSERT INTO category."Districts" VALUES (835, 83, 'system', '2023-07-26 08:40:16.204572+07', 'system', '2023-07-26 08:40:16.204572+07', 'Huyện Bình Đại', '835', 'Huyện');
INSERT INTO category."Districts" VALUES (836, 83, 'system', '2023-07-26 08:40:16.204575+07', 'system', '2023-07-26 08:40:16.204575+07', 'Huyện Ba Tri', '836', 'Huyện');
INSERT INTO category."Districts" VALUES (837, 83, 'system', '2023-07-26 08:40:16.204578+07', 'system', '2023-07-26 08:40:16.204578+07', 'Huyện Thạnh Phú', '837', 'Huyện');
INSERT INTO category."Districts" VALUES (838, 83, 'system', '2023-07-26 08:40:16.20458+07', 'system', '2023-07-26 08:40:16.20458+07', 'Huyện Mỏ Cày Bắc', '838', 'Huyện');
INSERT INTO category."Districts" VALUES (842, 84, 'system', '2023-07-26 08:40:16.204583+07', 'system', '2023-07-26 08:40:16.204583+07', 'Thành phố Trà Vinh', '842', 'Thành phố');
INSERT INTO category."Districts" VALUES (844, 84, 'system', '2023-07-26 08:40:16.204586+07', 'system', '2023-07-26 08:40:16.204586+07', 'Huyện Càng Long', '844', 'Huyện');
INSERT INTO category."Districts" VALUES (845, 84, 'system', '2023-07-26 08:40:16.204589+07', 'system', '2023-07-26 08:40:16.204589+07', 'Huyện Cầu Kè', '845', 'Huyện');
INSERT INTO category."Districts" VALUES (846, 84, 'system', '2023-07-26 08:40:16.204592+07', 'system', '2023-07-26 08:40:16.204592+07', 'Huyện Tiểu Cần', '846', 'Huyện');
INSERT INTO category."Districts" VALUES (847, 84, 'system', '2023-07-26 08:40:16.204595+07', 'system', '2023-07-26 08:40:16.204595+07', 'Huyện Châu Thành', '847', 'Huyện');
INSERT INTO category."Districts" VALUES (848, 84, 'system', '2023-07-26 08:40:16.204598+07', 'system', '2023-07-26 08:40:16.204598+07', 'Huyện Cầu Ngang', '848', 'Huyện');
INSERT INTO category."Districts" VALUES (849, 84, 'system', '2023-07-26 08:40:16.204601+07', 'system', '2023-07-26 08:40:16.204601+07', 'Huyện Trà Cú', '849', 'Huyện');
INSERT INTO category."Districts" VALUES (850, 84, 'system', '2023-07-26 08:40:16.204603+07', 'system', '2023-07-26 08:40:16.204603+07', 'Huyện Duyên Hải', '850', 'Huyện');
INSERT INTO category."Districts" VALUES (851, 84, 'system', '2023-07-26 08:40:16.204606+07', 'system', '2023-07-26 08:40:16.204606+07', 'Thị xã Duyên Hải', '851', 'Thị xã');
INSERT INTO category."Districts" VALUES (855, 86, 'system', '2023-07-26 08:40:16.204609+07', 'system', '2023-07-26 08:40:16.204609+07', 'Thành phố Vĩnh Long', '855', 'Thành phố');
INSERT INTO category."Districts" VALUES (857, 86, 'system', '2023-07-26 08:40:16.204612+07', 'system', '2023-07-26 08:40:16.204612+07', 'Huyện Long Hồ', '857', 'Huyện');
INSERT INTO category."Districts" VALUES (858, 86, 'system', '2023-07-26 08:40:16.204615+07', 'system', '2023-07-26 08:40:16.204615+07', 'Huyện Mang Thít', '858', 'Huyện');
INSERT INTO category."Districts" VALUES (859, 86, 'system', '2023-07-26 08:40:16.204618+07', 'system', '2023-07-26 08:40:16.204618+07', 'Huyện  Vũng Liêm', '859', 'Huyện');
INSERT INTO category."Districts" VALUES (860, 86, 'system', '2023-07-26 08:40:16.20462+07', 'system', '2023-07-26 08:40:16.20462+07', 'Huyện Tam Bình', '860', 'Huyện');
INSERT INTO category."Districts" VALUES (861, 86, 'system', '2023-07-26 08:40:16.204623+07', 'system', '2023-07-26 08:40:16.204623+07', 'Thị xã Bình Minh', '861', 'Thị xã');
INSERT INTO category."Districts" VALUES (862, 86, 'system', '2023-07-26 08:40:16.204626+07', 'system', '2023-07-26 08:40:16.204626+07', 'Huyện Trà Ôn', '862', 'Huyện');
INSERT INTO category."Districts" VALUES (863, 86, 'system', '2023-07-26 08:40:16.204629+07', 'system', '2023-07-26 08:40:16.204629+07', 'Huyện Bình Tân', '863', 'Huyện');
INSERT INTO category."Districts" VALUES (866, 87, 'system', '2023-07-26 08:40:16.204632+07', 'system', '2023-07-26 08:40:16.204632+07', 'Thành phố Cao Lãnh', '866', 'Thành phố');
INSERT INTO category."Districts" VALUES (867, 87, 'system', '2023-07-26 08:40:16.204635+07', 'system', '2023-07-26 08:40:16.204635+07', 'Thành phố Sa Đéc', '867', 'Thành phố');
INSERT INTO category."Districts" VALUES (868, 87, 'system', '2023-07-26 08:40:16.204638+07', 'system', '2023-07-26 08:40:16.204638+07', 'Thành phố Hồng Ngự', '868', 'Thành phố');
INSERT INTO category."Districts" VALUES (869, 87, 'system', '2023-07-26 08:40:16.204641+07', 'system', '2023-07-26 08:40:16.204641+07', 'Huyện Tân Hồng', '869', 'Huyện');
INSERT INTO category."Districts" VALUES (870, 87, 'system', '2023-07-26 08:40:16.204644+07', 'system', '2023-07-26 08:40:16.204644+07', 'Huyện Hồng Ngự', '870', 'Huyện');
INSERT INTO category."Districts" VALUES (871, 87, 'system', '2023-07-26 08:40:16.204647+07', 'system', '2023-07-26 08:40:16.204647+07', 'Huyện Tam Nông', '871', 'Huyện');
INSERT INTO category."Districts" VALUES (872, 87, 'system', '2023-07-26 08:40:16.20465+07', 'system', '2023-07-26 08:40:16.20465+07', 'Huyện Tháp Mười', '872', 'Huyện');
INSERT INTO category."Districts" VALUES (873, 87, 'system', '2023-07-26 08:40:16.204652+07', 'system', '2023-07-26 08:40:16.204652+07', 'Huyện Cao Lãnh', '873', 'Huyện');
INSERT INTO category."Districts" VALUES (874, 87, 'system', '2023-07-26 08:40:16.204655+07', 'system', '2023-07-26 08:40:16.204655+07', 'Huyện Thanh Bình', '874', 'Huyện');
INSERT INTO category."Districts" VALUES (875, 87, 'system', '2023-07-26 08:40:16.204658+07', 'system', '2023-07-26 08:40:16.204658+07', 'Huyện Lấp Vò', '875', 'Huyện');
INSERT INTO category."Districts" VALUES (876, 87, 'system', '2023-07-26 08:40:16.204661+07', 'system', '2023-07-26 08:40:16.204661+07', 'Huyện Lai Vung', '876', 'Huyện');
INSERT INTO category."Districts" VALUES (877, 87, 'system', '2023-07-26 08:40:16.204664+07', 'system', '2023-07-26 08:40:16.204664+07', 'Huyện Châu Thành', '877', 'Huyện');
INSERT INTO category."Districts" VALUES (883, 89, 'system', '2023-07-26 08:40:16.204666+07', 'system', '2023-07-26 08:40:16.204666+07', 'Thành phố Long Xuyên', '883', 'Thành phố');
INSERT INTO category."Districts" VALUES (884, 89, 'system', '2023-07-26 08:40:16.204669+07', 'system', '2023-07-26 08:40:16.204669+07', 'Thành phố Châu Đốc', '884', 'Thành phố');
INSERT INTO category."Districts" VALUES (886, 89, 'system', '2023-07-26 08:40:16.204672+07', 'system', '2023-07-26 08:40:16.204672+07', 'Huyện An Phú', '886', 'Huyện');
INSERT INTO category."Districts" VALUES (887, 89, 'system', '2023-07-26 08:40:16.204675+07', 'system', '2023-07-26 08:40:16.204675+07', 'Thị xã Tân Châu', '887', 'Thị xã');
INSERT INTO category."Districts" VALUES (888, 89, 'system', '2023-07-26 08:40:16.204678+07', 'system', '2023-07-26 08:40:16.204678+07', 'Huyện Phú Tân', '888', 'Huyện');
INSERT INTO category."Districts" VALUES (889, 89, 'system', '2023-07-26 08:40:16.20468+07', 'system', '2023-07-26 08:40:16.20468+07', 'Huyện Châu Phú', '889', 'Huyện');
INSERT INTO category."Districts" VALUES (890, 89, 'system', '2023-07-26 08:40:16.204683+07', 'system', '2023-07-26 08:40:16.204683+07', 'Huyện Tịnh Biên', '890', 'Huyện');
INSERT INTO category."Districts" VALUES (891, 89, 'system', '2023-07-26 08:40:16.204686+07', 'system', '2023-07-26 08:40:16.204686+07', 'Huyện Tri Tôn', '891', 'Huyện');
INSERT INTO category."Districts" VALUES (892, 89, 'system', '2023-07-26 08:40:16.204689+07', 'system', '2023-07-26 08:40:16.204689+07', 'Huyện Châu Thành', '892', 'Huyện');
INSERT INTO category."Districts" VALUES (893, 89, 'system', '2023-07-26 08:40:16.204692+07', 'system', '2023-07-26 08:40:16.204692+07', 'Huyện Chợ Mới', '893', 'Huyện');
INSERT INTO category."Districts" VALUES (894, 89, 'system', '2023-07-26 08:40:16.204694+07', 'system', '2023-07-26 08:40:16.204694+07', 'Huyện Thoại Sơn', '894', 'Huyện');
INSERT INTO category."Districts" VALUES (899, 91, 'system', '2023-07-26 08:40:16.204697+07', 'system', '2023-07-26 08:40:16.204697+07', 'Thành phố Rạch Giá', '899', 'Thành phố');
INSERT INTO category."Districts" VALUES (900, 91, 'system', '2023-07-26 08:40:16.2047+07', 'system', '2023-07-26 08:40:16.2047+07', 'Thành phố Hà Tiên', '900', 'Thành phố');
INSERT INTO category."Districts" VALUES (902, 91, 'system', '2023-07-26 08:40:16.204702+07', 'system', '2023-07-26 08:40:16.204703+07', 'Huyện Kiên Lương', '902', 'Huyện');
INSERT INTO category."Districts" VALUES (903, 91, 'system', '2023-07-26 08:40:16.204705+07', 'system', '2023-07-26 08:40:16.204705+07', 'Huyện Hòn Đất', '903', 'Huyện');
INSERT INTO category."Districts" VALUES (904, 91, 'system', '2023-07-26 08:40:16.204709+07', 'system', '2023-07-26 08:40:16.204709+07', 'Huyện Tân Hiệp', '904', 'Huyện');
INSERT INTO category."Districts" VALUES (905, 91, 'system', '2023-07-26 08:40:16.204712+07', 'system', '2023-07-26 08:40:16.204712+07', 'Huyện Châu Thành', '905', 'Huyện');
INSERT INTO category."Districts" VALUES (906, 91, 'system', '2023-07-26 08:40:16.204715+07', 'system', '2023-07-26 08:40:16.204715+07', 'Huyện Giồng Riềng', '906', 'Huyện');
INSERT INTO category."Districts" VALUES (907, 91, 'system', '2023-07-26 08:40:16.204718+07', 'system', '2023-07-26 08:40:16.204718+07', 'Huyện Gò Quao', '907', 'Huyện');
INSERT INTO category."Districts" VALUES (908, 91, 'system', '2023-07-26 08:40:16.204721+07', 'system', '2023-07-26 08:40:16.204721+07', 'Huyện An Biên', '908', 'Huyện');
INSERT INTO category."Districts" VALUES (909, 91, 'system', '2023-07-26 08:40:16.204723+07', 'system', '2023-07-26 08:40:16.204723+07', 'Huyện An Minh', '909', 'Huyện');
INSERT INTO category."Districts" VALUES (910, 91, 'system', '2023-07-26 08:40:16.204726+07', 'system', '2023-07-26 08:40:16.204726+07', 'Huyện Vĩnh Thuận', '910', 'Huyện');
INSERT INTO category."Districts" VALUES (911, 91, 'system', '2023-07-26 08:40:16.204729+07', 'system', '2023-07-26 08:40:16.204729+07', 'Thành phố Phú Quốc', '911', 'Thành phố');
INSERT INTO category."Districts" VALUES (912, 91, 'system', '2023-07-26 08:40:16.204732+07', 'system', '2023-07-26 08:40:16.204732+07', 'Huyện Kiên Hải', '912', 'Huyện');
INSERT INTO category."Districts" VALUES (913, 91, 'system', '2023-07-26 08:40:16.204735+07', 'system', '2023-07-26 08:40:16.204735+07', 'Huyện U Minh Thượng', '913', 'Huyện');
INSERT INTO category."Districts" VALUES (914, 91, 'system', '2023-07-26 08:40:16.204738+07', 'system', '2023-07-26 08:40:16.204738+07', 'Huyện Giang Thành', '914', 'Huyện');
INSERT INTO category."Districts" VALUES (916, 92, 'system', '2023-07-26 08:40:16.204741+07', 'system', '2023-07-26 08:40:16.204741+07', 'Quận Ninh Kiều', '916', 'Quận');
INSERT INTO category."Districts" VALUES (917, 92, 'system', '2023-07-26 08:40:16.204744+07', 'system', '2023-07-26 08:40:16.204744+07', 'Quận Ô Môn', '917', 'Quận');
INSERT INTO category."Districts" VALUES (918, 92, 'system', '2023-07-26 08:40:16.204746+07', 'system', '2023-07-26 08:40:16.204746+07', 'Quận Bình Thuỷ', '918', 'Quận');
INSERT INTO category."Districts" VALUES (919, 92, 'system', '2023-07-26 08:40:16.204749+07', 'system', '2023-07-26 08:40:16.204749+07', 'Quận Cái Răng', '919', 'Quận');
INSERT INTO category."Districts" VALUES (923, 92, 'system', '2023-07-26 08:40:16.204752+07', 'system', '2023-07-26 08:40:16.204752+07', 'Quận Thốt Nốt', '923', 'Quận');
INSERT INTO category."Districts" VALUES (924, 92, 'system', '2023-07-26 08:40:16.204755+07', 'system', '2023-07-26 08:40:16.204755+07', 'Huyện Vĩnh Thạnh', '924', 'Huyện');
INSERT INTO category."Districts" VALUES (925, 92, 'system', '2023-07-26 08:40:16.204758+07', 'system', '2023-07-26 08:40:16.204758+07', 'Huyện Cờ Đỏ', '925', 'Huyện');
INSERT INTO category."Districts" VALUES (926, 92, 'system', '2023-07-26 08:40:16.204761+07', 'system', '2023-07-26 08:40:16.204761+07', 'Huyện Phong Điền', '926', 'Huyện');
INSERT INTO category."Districts" VALUES (927, 92, 'system', '2023-07-26 08:40:16.204764+07', 'system', '2023-07-26 08:40:16.204764+07', 'Huyện Thới Lai', '927', 'Huyện');
INSERT INTO category."Districts" VALUES (930, 93, 'system', '2023-07-26 08:40:16.204767+07', 'system', '2023-07-26 08:40:16.204767+07', 'Thành phố Vị Thanh', '930', 'Thành phố');
INSERT INTO category."Districts" VALUES (931, 93, 'system', '2023-07-26 08:40:16.204769+07', 'system', '2023-07-26 08:40:16.204769+07', 'Thành phố Ngã Bảy', '931', 'Thành phố');
INSERT INTO category."Districts" VALUES (932, 93, 'system', '2023-07-26 08:40:16.204772+07', 'system', '2023-07-26 08:40:16.204772+07', 'Huyện Châu Thành A', '932', 'Huyện');
INSERT INTO category."Districts" VALUES (933, 93, 'system', '2023-07-26 08:40:16.204775+07', 'system', '2023-07-26 08:40:16.204775+07', 'Huyện Châu Thành', '933', 'Huyện');
INSERT INTO category."Districts" VALUES (934, 93, 'system', '2023-07-26 08:40:16.204789+07', 'system', '2023-07-26 08:40:16.204789+07', 'Huyện Phụng Hiệp', '934', 'Huyện');
INSERT INTO category."Districts" VALUES (935, 93, 'system', '2023-07-26 08:40:16.204792+07', 'system', '2023-07-26 08:40:16.204792+07', 'Huyện Vị Thuỷ', '935', 'Huyện');
INSERT INTO category."Districts" VALUES (936, 93, 'system', '2023-07-26 08:40:16.204794+07', 'system', '2023-07-26 08:40:16.204795+07', 'Huyện Long Mỹ', '936', 'Huyện');
INSERT INTO category."Districts" VALUES (937, 93, 'system', '2023-07-26 08:40:16.204798+07', 'system', '2023-07-26 08:40:16.204798+07', 'Thị xã Long Mỹ', '937', 'Thị xã');
INSERT INTO category."Districts" VALUES (941, 94, 'system', '2023-07-26 08:40:16.204801+07', 'system', '2023-07-26 08:40:16.204801+07', 'Thành phố Sóc Trăng', '941', 'Thành phố');
INSERT INTO category."Districts" VALUES (942, 94, 'system', '2023-07-26 08:40:16.204804+07', 'system', '2023-07-26 08:40:16.204804+07', 'Huyện Châu Thành', '942', 'Huyện');
INSERT INTO category."Districts" VALUES (943, 94, 'system', '2023-07-26 08:40:16.204807+07', 'system', '2023-07-26 08:40:16.204807+07', 'Huyện Kế Sách', '943', 'Huyện');
INSERT INTO category."Districts" VALUES (944, 94, 'system', '2023-07-26 08:40:16.20481+07', 'system', '2023-07-26 08:40:16.20481+07', 'Huyện Mỹ Tú', '944', 'Huyện');
INSERT INTO category."Districts" VALUES (945, 94, 'system', '2023-07-26 08:40:16.204813+07', 'system', '2023-07-26 08:40:16.204813+07', 'Huyện Cù Lao Dung', '945', 'Huyện');
INSERT INTO category."Districts" VALUES (946, 94, 'system', '2023-07-26 08:40:16.204816+07', 'system', '2023-07-26 08:40:16.204816+07', 'Huyện Long Phú', '946', 'Huyện');
INSERT INTO category."Districts" VALUES (947, 94, 'system', '2023-07-26 08:40:16.204819+07', 'system', '2023-07-26 08:40:16.204819+07', 'Huyện Mỹ Xuyên', '947', 'Huyện');
INSERT INTO category."Districts" VALUES (948, 94, 'system', '2023-07-26 08:40:16.204822+07', 'system', '2023-07-26 08:40:16.204822+07', 'Thị xã Ngã Năm', '948', 'Thị xã');
INSERT INTO category."Districts" VALUES (949, 94, 'system', '2023-07-26 08:40:16.204825+07', 'system', '2023-07-26 08:40:16.204825+07', 'Huyện Thạnh Trị', '949', 'Huyện');
INSERT INTO category."Districts" VALUES (950, 94, 'system', '2023-07-26 08:40:16.204827+07', 'system', '2023-07-26 08:40:16.204827+07', 'Thị xã Vĩnh Châu', '950', 'Thị xã');
INSERT INTO category."Districts" VALUES (951, 94, 'system', '2023-07-26 08:40:16.20483+07', 'system', '2023-07-26 08:40:16.20483+07', 'Huyện Trần Đề', '951', 'Huyện');
INSERT INTO category."Districts" VALUES (954, 95, 'system', '2023-07-26 08:40:16.204833+07', 'system', '2023-07-26 08:40:16.204833+07', 'Thành phố Bạc Liêu', '954', 'Thành phố');
INSERT INTO category."Districts" VALUES (956, 95, 'system', '2023-07-26 08:40:16.204836+07', 'system', '2023-07-26 08:40:16.204836+07', 'Huyện Hồng Dân', '956', 'Huyện');
INSERT INTO category."Districts" VALUES (957, 95, 'system', '2023-07-26 08:40:16.204839+07', 'system', '2023-07-26 08:40:16.204839+07', 'Huyện Phước Long', '957', 'Huyện');
INSERT INTO category."Districts" VALUES (958, 95, 'system', '2023-07-26 08:40:16.204842+07', 'system', '2023-07-26 08:40:16.204842+07', 'Huyện Vĩnh Lợi', '958', 'Huyện');
INSERT INTO category."Districts" VALUES (959, 95, 'system', '2023-07-26 08:40:16.204845+07', 'system', '2023-07-26 08:40:16.204845+07', 'Thị xã Giá Rai', '959', 'Thị xã');
INSERT INTO category."Districts" VALUES (960, 95, 'system', '2023-07-26 08:40:16.204848+07', 'system', '2023-07-26 08:40:16.204848+07', 'Huyện Đông Hải', '960', 'Huyện');
INSERT INTO category."Districts" VALUES (961, 95, 'system', '2023-07-26 08:40:16.204851+07', 'system', '2023-07-26 08:40:16.204851+07', 'Huyện Hoà Bình', '961', 'Huyện');
INSERT INTO category."Districts" VALUES (964, 96, 'system', '2023-07-26 08:40:16.204853+07', 'system', '2023-07-26 08:40:16.204854+07', 'Thành phố Cà Mau', '964', 'Thành phố');
INSERT INTO category."Districts" VALUES (966, 96, 'system', '2023-07-26 08:40:16.204856+07', 'system', '2023-07-26 08:40:16.204856+07', 'Huyện U Minh', '966', 'Huyện');
INSERT INTO category."Districts" VALUES (967, 96, 'system', '2023-07-26 08:40:16.204859+07', 'system', '2023-07-26 08:40:16.204859+07', 'Huyện Thới Bình', '967', 'Huyện');
INSERT INTO category."Districts" VALUES (968, 96, 'system', '2023-07-26 08:40:16.204862+07', 'system', '2023-07-26 08:40:16.204862+07', 'Huyện Trần Văn Thời', '968', 'Huyện');
INSERT INTO category."Districts" VALUES (969, 96, 'system', '2023-07-26 08:40:16.204865+07', 'system', '2023-07-26 08:40:16.204865+07', 'Huyện Cái Nước', '969', 'Huyện');
INSERT INTO category."Districts" VALUES (970, 96, 'system', '2023-07-26 08:40:16.204868+07', 'system', '2023-07-26 08:40:16.204868+07', 'Huyện Đầm Dơi', '970', 'Huyện');
INSERT INTO category."Districts" VALUES (971, 96, 'system', '2023-07-26 08:40:16.204871+07', 'system', '2023-07-26 08:40:16.204871+07', 'Huyện Năm Căn', '971', 'Huyện');
INSERT INTO category."Districts" VALUES (972, 96, 'system', '2023-07-26 08:40:16.204873+07', 'system', '2023-07-26 08:40:16.204873+07', 'Huyện Phú Tân', '972', 'Huyện');
INSERT INTO category."Districts" VALUES (973, 96, 'system', '2023-07-26 08:40:16.204877+07', 'system', '2023-07-26 08:40:16.204877+07', 'Huyện Ngọc Hiển', '973', 'Huyện');


--
-- Data for Name: Languages; Type: TABLE DATA; Schema: category; Owner: sdoc
--

INSERT INTO category."Languages" VALUES (1, 'Afar', NULL, 'aa', 'Afar', 'system', '2023-07-26 08:40:37.025886+07', 'system', '2023-07-26 08:40:37.025886+07');
INSERT INTO category."Languages" VALUES (2, 'Abkhazian', NULL, 'ab', 'Аҧсуа', 'system', '2023-07-26 08:40:37.027509+07', 'system', '2023-07-26 08:40:37.027509+07');
INSERT INTO category."Languages" VALUES (3, 'Afrikaans', NULL, 'af', 'Afrikaans', 'system', '2023-07-26 08:40:37.02752+07', 'system', '2023-07-26 08:40:37.02752+07');
INSERT INTO category."Languages" VALUES (4, 'Akan', NULL, 'ak', 'Akana', 'system', '2023-07-26 08:40:37.027522+07', 'system', '2023-07-26 08:40:37.027522+07');
INSERT INTO category."Languages" VALUES (5, 'Amharic', NULL, 'am', 'አማርኛ', 'system', '2023-07-26 08:40:37.027525+07', 'system', '2023-07-26 08:40:37.027525+07');
INSERT INTO category."Languages" VALUES (6, 'Aragonese', NULL, 'an', 'Aragonés', 'system', '2023-07-26 08:40:37.027528+07', 'system', '2023-07-26 08:40:37.027528+07');
INSERT INTO category."Languages" VALUES (7, 'Arabic', NULL, 'ar', 'العربية', 'system', '2023-07-26 08:40:37.02753+07', 'system', '2023-07-26 08:40:37.02753+07');
INSERT INTO category."Languages" VALUES (8, 'Assamese', NULL, 'as', 'অসমীয়া', 'system', '2023-07-26 08:40:37.027532+07', 'system', '2023-07-26 08:40:37.027532+07');
INSERT INTO category."Languages" VALUES (9, 'Avar', NULL, 'av', 'Авар', 'system', '2023-07-26 08:40:37.027535+07', 'system', '2023-07-26 08:40:37.027535+07');
INSERT INTO category."Languages" VALUES (10, 'Aymara', NULL, 'ay', 'Aymar', 'system', '2023-07-26 08:40:37.027537+07', 'system', '2023-07-26 08:40:37.027537+07');
INSERT INTO category."Languages" VALUES (11, 'Azerbaijani', NULL, 'az', 'Azərbaycanca / آذربايجان', 'system', '2023-07-26 08:40:37.027539+07', 'system', '2023-07-26 08:40:37.027539+07');
INSERT INTO category."Languages" VALUES (12, 'Bashkir', NULL, 'ba', 'Башҡорт', 'system', '2023-07-26 08:40:37.027542+07', 'system', '2023-07-26 08:40:37.027542+07');
INSERT INTO category."Languages" VALUES (13, 'Belarusian', NULL, 'be', 'Беларуская', 'system', '2023-07-26 08:40:37.027544+07', 'system', '2023-07-26 08:40:37.027544+07');
INSERT INTO category."Languages" VALUES (14, 'Bulgarian', NULL, 'bg', 'Български', 'system', '2023-07-26 08:40:37.027546+07', 'system', '2023-07-26 08:40:37.027546+07');
INSERT INTO category."Languages" VALUES (15, 'Bihari', NULL, 'bh', 'भोजपुरी', 'system', '2023-07-26 08:40:37.027548+07', 'system', '2023-07-26 08:40:37.027548+07');
INSERT INTO category."Languages" VALUES (16, 'Bislama', NULL, 'bi', 'Bislama', 'system', '2023-07-26 08:40:37.027551+07', 'system', '2023-07-26 08:40:37.027551+07');
INSERT INTO category."Languages" VALUES (17, 'Bambara', NULL, 'bm', 'Bamanankan', 'system', '2023-07-26 08:40:37.027553+07', 'system', '2023-07-26 08:40:37.027553+07');
INSERT INTO category."Languages" VALUES (18, 'Bengali', NULL, 'bn', 'বাংলা', 'system', '2023-07-26 08:40:37.027555+07', 'system', '2023-07-26 08:40:37.027555+07');
INSERT INTO category."Languages" VALUES (19, 'Tibetan', NULL, 'bo', 'བོད་ཡིག / Bod skad', 'system', '2023-07-26 08:40:37.027558+07', 'system', '2023-07-26 08:40:37.027558+07');
INSERT INTO category."Languages" VALUES (20, 'Breton', NULL, 'br', 'Brezhoneg', 'system', '2023-07-26 08:40:37.02756+07', 'system', '2023-07-26 08:40:37.02756+07');
INSERT INTO category."Languages" VALUES (21, 'Bosnian', NULL, 'bs', 'Bosanski', 'system', '2023-07-26 08:40:37.027562+07', 'system', '2023-07-26 08:40:37.027562+07');
INSERT INTO category."Languages" VALUES (22, 'Catalan', NULL, 'ca', 'Català', 'system', '2023-07-26 08:40:37.027564+07', 'system', '2023-07-26 08:40:37.027565+07');
INSERT INTO category."Languages" VALUES (23, 'Chechen', NULL, 'ce', 'Нохчийн', 'system', '2023-07-26 08:40:37.027567+07', 'system', '2023-07-26 08:40:37.027567+07');
INSERT INTO category."Languages" VALUES (24, 'Chamorro', NULL, 'ch', 'Chamoru', 'system', '2023-07-26 08:40:37.027569+07', 'system', '2023-07-26 08:40:37.027569+07');
INSERT INTO category."Languages" VALUES (25, 'Corsican', NULL, 'co', 'Corsu', 'system', '2023-07-26 08:40:37.02757+07', 'system', '2023-07-26 08:40:37.027571+07');
INSERT INTO category."Languages" VALUES (26, 'Cree', NULL, 'cr', 'Nehiyaw', 'system', '2023-07-26 08:40:37.027576+07', 'system', '2023-07-26 08:40:37.027576+07');
INSERT INTO category."Languages" VALUES (27, 'Czech', NULL, 'cs', 'Čeština', 'system', '2023-07-26 08:40:37.027578+07', 'system', '2023-07-26 08:40:37.027578+07');
INSERT INTO category."Languages" VALUES (28, 'Old Church Slavonic / Old Bulgarian', NULL, 'cu', 'словѣньскъ / slověnĭskŭ', 'system', '2023-07-26 08:40:37.027581+07', 'system', '2023-07-26 08:40:37.027581+07');
INSERT INTO category."Languages" VALUES (29, 'Chuvash', NULL, 'cv', 'Чăваш', 'system', '2023-07-26 08:40:37.027584+07', 'system', '2023-07-26 08:40:37.027584+07');
INSERT INTO category."Languages" VALUES (30, 'Welsh', NULL, 'cy', 'Cymraeg', 'system', '2023-07-26 08:40:37.027586+07', 'system', '2023-07-26 08:40:37.027586+07');
INSERT INTO category."Languages" VALUES (31, 'Danish', NULL, 'da', 'Dansk', 'system', '2023-07-26 08:40:37.027588+07', 'system', '2023-07-26 08:40:37.027588+07');
INSERT INTO category."Languages" VALUES (32, 'German', NULL, 'de', 'Deutsch', 'system', '2023-07-26 08:40:37.02759+07', 'system', '2023-07-26 08:40:37.02759+07');
INSERT INTO category."Languages" VALUES (33, 'Divehi', NULL, 'dv', 'ދިވެހިބަސް', 'system', '2023-07-26 08:40:37.027592+07', 'system', '2023-07-26 08:40:37.027592+07');
INSERT INTO category."Languages" VALUES (34, 'Dzongkha', NULL, 'dz', 'ཇོང་ཁ', 'system', '2023-07-26 08:40:37.027595+07', 'system', '2023-07-26 08:40:37.027595+07');
INSERT INTO category."Languages" VALUES (35, 'Ewe', NULL, 'ee', 'Ɛʋɛ', 'system', '2023-07-26 08:40:37.027597+07', 'system', '2023-07-26 08:40:37.027597+07');
INSERT INTO category."Languages" VALUES (36, 'Greek', NULL, 'el', 'Ελληνικά', 'system', '2023-07-26 08:40:37.027604+07', 'system', '2023-07-26 08:40:37.027604+07');
INSERT INTO category."Languages" VALUES (37, 'English', NULL, 'en', 'English', 'system', '2023-07-26 08:40:37.027608+07', 'system', '2023-07-26 08:40:37.027608+07');
INSERT INTO category."Languages" VALUES (38, 'Esperanto', NULL, 'eo', 'Esperanto', 'system', '2023-07-26 08:40:37.027613+07', 'system', '2023-07-26 08:40:37.027613+07');
INSERT INTO category."Languages" VALUES (39, 'Spanish', NULL, 'es', 'Español', 'system', '2023-07-26 08:40:37.027618+07', 'system', '2023-07-26 08:40:37.027618+07');
INSERT INTO category."Languages" VALUES (40, 'Estonian', NULL, 'et', 'Eesti', 'system', '2023-07-26 08:40:37.027623+07', 'system', '2023-07-26 08:40:37.027623+07');
INSERT INTO category."Languages" VALUES (41, 'Basque', NULL, 'eu', 'Euskara', 'system', '2023-07-26 08:40:37.027628+07', 'system', '2023-07-26 08:40:37.027628+07');
INSERT INTO category."Languages" VALUES (42, 'Persian', NULL, 'fa', 'فارسی', 'system', '2023-07-26 08:40:37.027633+07', 'system', '2023-07-26 08:40:37.027633+07');
INSERT INTO category."Languages" VALUES (43, 'Peul', NULL, 'ff', 'Fulfulde', 'system', '2023-07-26 08:40:37.027638+07', 'system', '2023-07-26 08:40:37.027638+07');
INSERT INTO category."Languages" VALUES (44, 'Finnish', NULL, 'fi', 'Suomi', 'system', '2023-07-26 08:40:37.027642+07', 'system', '2023-07-26 08:40:37.027643+07');
INSERT INTO category."Languages" VALUES (45, 'Fijian', NULL, 'fj', 'Na Vosa Vakaviti', 'system', '2023-07-26 08:40:37.027647+07', 'system', '2023-07-26 08:40:37.027647+07');
INSERT INTO category."Languages" VALUES (46, 'Faroese', NULL, 'fo', 'Føroyskt', 'system', '2023-07-26 08:40:37.027652+07', 'system', '2023-07-26 08:40:37.027652+07');
INSERT INTO category."Languages" VALUES (47, 'French', NULL, 'fr', 'Français', 'system', '2023-07-26 08:40:37.027657+07', 'system', '2023-07-26 08:40:37.027657+07');
INSERT INTO category."Languages" VALUES (48, 'West Frisian', NULL, 'fy', 'Frysk', 'system', '2023-07-26 08:40:37.027662+07', 'system', '2023-07-26 08:40:37.027662+07');
INSERT INTO category."Languages" VALUES (49, 'Irish', NULL, 'ga', 'Gaeilge', 'system', '2023-07-26 08:40:37.027667+07', 'system', '2023-07-26 08:40:37.027667+07');
INSERT INTO category."Languages" VALUES (50, 'Scottish Gaelic', NULL, 'gd', 'Gàidhlig', 'system', '2023-07-26 08:40:37.027671+07', 'system', '2023-07-26 08:40:37.027671+07');
INSERT INTO category."Languages" VALUES (51, 'Galician', NULL, 'gl', 'Galego', 'system', '2023-07-26 08:40:37.027676+07', 'system', '2023-07-26 08:40:37.027676+07');
INSERT INTO category."Languages" VALUES (52, 'Guarani', NULL, 'gn', 'Avañe''ẽ', 'system', '2023-07-26 08:40:37.027681+07', 'system', '2023-07-26 08:40:37.027681+07');
INSERT INTO category."Languages" VALUES (53, 'Gujarati', NULL, 'gu', 'ગુજરાતી', 'system', '2023-07-26 08:40:37.027686+07', 'system', '2023-07-26 08:40:37.027686+07');
INSERT INTO category."Languages" VALUES (54, 'Manx', NULL, 'gv', 'Gaelg', 'system', '2023-07-26 08:40:37.027691+07', 'system', '2023-07-26 08:40:37.027691+07');
INSERT INTO category."Languages" VALUES (55, 'Hausa', NULL, 'ha', 'هَوُسَ', 'system', '2023-07-26 08:40:37.027695+07', 'system', '2023-07-26 08:40:37.027695+07');
INSERT INTO category."Languages" VALUES (56, 'Hebrew', NULL, 'he', 'עברית', 'system', '2023-07-26 08:40:37.0277+07', 'system', '2023-07-26 08:40:37.0277+07');
INSERT INTO category."Languages" VALUES (57, 'Hindi', NULL, 'hi', 'हिन्दी', 'system', '2023-07-26 08:40:37.027705+07', 'system', '2023-07-26 08:40:37.027705+07');
INSERT INTO category."Languages" VALUES (58, 'Hiri Motu', NULL, 'ho', 'Hiri Motu', 'system', '2023-07-26 08:40:37.02771+07', 'system', '2023-07-26 08:40:37.02771+07');
INSERT INTO category."Languages" VALUES (59, 'Croatian', NULL, 'hr', 'Hrvatski', 'system', '2023-07-26 08:40:37.027715+07', 'system', '2023-07-26 08:40:37.027715+07');
INSERT INTO category."Languages" VALUES (60, 'Haitian', NULL, 'ht', 'Krèyol ayisyen', 'system', '2023-07-26 08:40:37.02772+07', 'system', '2023-07-26 08:40:37.02772+07');
INSERT INTO category."Languages" VALUES (61, 'Hungarian', NULL, 'hu', 'Magyar', 'system', '2023-07-26 08:40:37.027725+07', 'system', '2023-07-26 08:40:37.027725+07');
INSERT INTO category."Languages" VALUES (62, 'Armenian', NULL, 'hy', 'Հայերեն', 'system', '2023-07-26 08:40:37.027731+07', 'system', '2023-07-26 08:40:37.027732+07');
INSERT INTO category."Languages" VALUES (63, 'Herero', NULL, 'hz', 'Otsiherero', 'system', '2023-07-26 08:40:37.027736+07', 'system', '2023-07-26 08:40:37.027736+07');
INSERT INTO category."Languages" VALUES (64, 'Interlingua', NULL, 'ia', 'Interlingua', 'system', '2023-07-26 08:40:37.027743+07', 'system', '2023-07-26 08:40:37.027743+07');
INSERT INTO category."Languages" VALUES (65, 'Indonesian', NULL, 'id', 'Bahasa Indonesia', 'system', '2023-07-26 08:40:37.027748+07', 'system', '2023-07-26 08:40:37.027748+07');
INSERT INTO category."Languages" VALUES (66, 'Interlingue', NULL, 'ie', 'Interlingue', 'system', '2023-07-26 08:40:37.027753+07', 'system', '2023-07-26 08:40:37.027753+07');
INSERT INTO category."Languages" VALUES (67, 'Igbo', NULL, 'ig', 'Igbo', 'system', '2023-07-26 08:40:37.027758+07', 'system', '2023-07-26 08:40:37.027758+07');
INSERT INTO category."Languages" VALUES (68, 'Sichuan Yi', NULL, 'ii', 'ꆇꉙ / 四川彝语', 'system', '2023-07-26 08:40:37.027761+07', 'system', '2023-07-26 08:40:37.027762+07');
INSERT INTO category."Languages" VALUES (69, 'Inupiak', NULL, 'ik', 'Iñupiak', 'system', '2023-07-26 08:40:37.027764+07', 'system', '2023-07-26 08:40:37.027764+07');
INSERT INTO category."Languages" VALUES (70, 'Ido', NULL, 'io', 'Ido', 'system', '2023-07-26 08:40:37.027766+07', 'system', '2023-07-26 08:40:37.027766+07');
INSERT INTO category."Languages" VALUES (71, 'Icelandic', NULL, 'is', 'Íslenska', 'system', '2023-07-26 08:40:37.027769+07', 'system', '2023-07-26 08:40:37.027769+07');
INSERT INTO category."Languages" VALUES (72, 'Italian', NULL, 'it', 'Italiano', 'system', '2023-07-26 08:40:37.027774+07', 'system', '2023-07-26 08:40:37.027774+07');
INSERT INTO category."Languages" VALUES (73, 'Inuktitut', NULL, 'iu', 'ᐃᓄᒃᑎᑐᑦ', 'system', '2023-07-26 08:40:37.027778+07', 'system', '2023-07-26 08:40:37.027778+07');
INSERT INTO category."Languages" VALUES (74, 'Japanese', NULL, 'ja', '日本語', 'system', '2023-07-26 08:40:37.027782+07', 'system', '2023-07-26 08:40:37.027782+07');
INSERT INTO category."Languages" VALUES (75, 'Javanese', NULL, 'jv', 'Basa Jawa', 'system', '2023-07-26 08:40:37.027787+07', 'system', '2023-07-26 08:40:37.027787+07');
INSERT INTO category."Languages" VALUES (76, 'Georgian', NULL, 'ka', 'ქართული', 'system', '2023-07-26 08:40:37.027792+07', 'system', '2023-07-26 08:40:37.027792+07');
INSERT INTO category."Languages" VALUES (77, 'Kongo', NULL, 'kg', 'KiKongo', 'system', '2023-07-26 08:40:37.027797+07', 'system', '2023-07-26 08:40:37.027797+07');
INSERT INTO category."Languages" VALUES (78, 'Kikuyu', NULL, 'ki', 'Gĩkũyũ', 'system', '2023-07-26 08:40:37.027802+07', 'system', '2023-07-26 08:40:37.027802+07');
INSERT INTO category."Languages" VALUES (79, 'Kuanyama', NULL, 'kj', 'Kuanyama', 'system', '2023-07-26 08:40:37.027807+07', 'system', '2023-07-26 08:40:37.027807+07');
INSERT INTO category."Languages" VALUES (80, 'Kazakh', NULL, 'kk', 'Қазақша', 'system', '2023-07-26 08:40:37.027812+07', 'system', '2023-07-26 08:40:37.027812+07');
INSERT INTO category."Languages" VALUES (81, 'Greenlandic', NULL, 'kl', 'Kalaallisut', 'system', '2023-07-26 08:40:37.027817+07', 'system', '2023-07-26 08:40:37.027817+07');
INSERT INTO category."Languages" VALUES (82, 'Cambodian', NULL, 'km', 'ភាសាខ្មែរ', 'system', '2023-07-26 08:40:37.027822+07', 'system', '2023-07-26 08:40:37.027822+07');
INSERT INTO category."Languages" VALUES (83, 'Kannada', NULL, 'kn', 'ಕನ್ನಡ', 'system', '2023-07-26 08:40:37.027826+07', 'system', '2023-07-26 08:40:37.027826+07');
INSERT INTO category."Languages" VALUES (84, 'Korean', NULL, 'ko', '한국어', 'system', '2023-07-26 08:40:37.02783+07', 'system', '2023-07-26 08:40:37.02783+07');
INSERT INTO category."Languages" VALUES (85, 'Kanuri', NULL, 'kr', 'Kanuri', 'system', '2023-07-26 08:40:37.027835+07', 'system', '2023-07-26 08:40:37.027835+07');
INSERT INTO category."Languages" VALUES (86, 'Kashmiri', NULL, 'ks', 'कश्मीरी / كشميري', 'system', '2023-07-26 08:40:37.027838+07', 'system', '2023-07-26 08:40:37.027839+07');
INSERT INTO category."Languages" VALUES (87, 'Kurdish', NULL, 'ku', 'Kurdî / كوردی', 'system', '2023-07-26 08:40:37.027843+07', 'system', '2023-07-26 08:40:37.027843+07');
INSERT INTO category."Languages" VALUES (88, 'Komi', NULL, 'kv', 'Коми', 'system', '2023-07-26 08:40:37.027847+07', 'system', '2023-07-26 08:40:37.027847+07');
INSERT INTO category."Languages" VALUES (89, 'Cornish', NULL, 'kw', 'Kernewek', 'system', '2023-07-26 08:40:37.027851+07', 'system', '2023-07-26 08:40:37.027851+07');
INSERT INTO category."Languages" VALUES (90, 'Kyrgyz', NULL, 'ky', 'Кыргызча', 'system', '2023-07-26 08:40:37.027855+07', 'system', '2023-07-26 08:40:37.027855+07');
INSERT INTO category."Languages" VALUES (91, 'Latin', NULL, 'la', 'Latina', 'system', '2023-07-26 08:40:37.027859+07', 'system', '2023-07-26 08:40:37.027859+07');
INSERT INTO category."Languages" VALUES (92, 'Luxembourgish', NULL, 'lb', 'Lëtzebuergesch', 'system', '2023-07-26 08:40:37.027863+07', 'system', '2023-07-26 08:40:37.027863+07');
INSERT INTO category."Languages" VALUES (93, 'Ganda', NULL, 'lg', 'Luganda', 'system', '2023-07-26 08:40:37.027866+07', 'system', '2023-07-26 08:40:37.027866+07');
INSERT INTO category."Languages" VALUES (94, 'Limburgian', NULL, 'li', 'Limburgs', 'system', '2023-07-26 08:40:37.02787+07', 'system', '2023-07-26 08:40:37.02787+07');
INSERT INTO category."Languages" VALUES (95, 'Lingala', NULL, 'ln', 'Lingála', 'system', '2023-07-26 08:40:37.027876+07', 'system', '2023-07-26 08:40:37.027876+07');
INSERT INTO category."Languages" VALUES (96, 'Laotian', NULL, 'lo', 'ລາວ / Pha xa lao', 'system', '2023-07-26 08:40:37.02788+07', 'system', '2023-07-26 08:40:37.02788+07');
INSERT INTO category."Languages" VALUES (97, 'Lithuanian', NULL, 'lt', 'Lietuvių', 'system', '2023-07-26 08:40:37.027884+07', 'system', '2023-07-26 08:40:37.027884+07');
INSERT INTO category."Languages" VALUES (98, 'Luba-Katanga', NULL, 'lu', 'Tshiluba', 'system', '2023-07-26 08:40:37.027889+07', 'system', '2023-07-26 08:40:37.027889+07');
INSERT INTO category."Languages" VALUES (99, 'Latvian', NULL, 'lv', 'Latviešu', 'system', '2023-07-26 08:40:37.027892+07', 'system', '2023-07-26 08:40:37.027892+07');
INSERT INTO category."Languages" VALUES (100, 'Malagasy', NULL, 'mg', 'Malagasy', 'system', '2023-07-26 08:40:37.027897+07', 'system', '2023-07-26 08:40:37.027897+07');
INSERT INTO category."Languages" VALUES (101, 'Marshallese', NULL, 'mh', 'Kajin Majel / Ebon', 'system', '2023-07-26 08:40:37.0279+07', 'system', '2023-07-26 08:40:37.027901+07');
INSERT INTO category."Languages" VALUES (102, 'Maori', NULL, 'mi', 'Māori', 'system', '2023-07-26 08:40:37.027903+07', 'system', '2023-07-26 08:40:37.027903+07');
INSERT INTO category."Languages" VALUES (103, 'Macedonian', NULL, 'mk', 'Македонски', 'system', '2023-07-26 08:40:37.027908+07', 'system', '2023-07-26 08:40:37.027908+07');
INSERT INTO category."Languages" VALUES (104, 'Malayalam', NULL, 'ml', 'മലയാളം', 'system', '2023-07-26 08:40:37.027911+07', 'system', '2023-07-26 08:40:37.027912+07');
INSERT INTO category."Languages" VALUES (105, 'Mongolian', NULL, 'mn', 'Монгол', 'system', '2023-07-26 08:40:37.027916+07', 'system', '2023-07-26 08:40:37.027916+07');
INSERT INTO category."Languages" VALUES (106, 'Moldovan', NULL, 'mo', 'Moldovenească', 'system', '2023-07-26 08:40:37.02792+07', 'system', '2023-07-26 08:40:37.02792+07');
INSERT INTO category."Languages" VALUES (107, 'Marathi', NULL, 'mr', 'मराठी', 'system', '2023-07-26 08:40:37.027945+07', 'system', '2023-07-26 08:40:37.027945+07');
INSERT INTO category."Languages" VALUES (108, 'Malay', NULL, 'ms', 'Bahasa Melayu', 'system', '2023-07-26 08:40:37.027948+07', 'system', '2023-07-26 08:40:37.027948+07');
INSERT INTO category."Languages" VALUES (109, 'Maltese', NULL, 'mt', 'bil-Malti', 'system', '2023-07-26 08:40:37.02795+07', 'system', '2023-07-26 08:40:37.02795+07');
INSERT INTO category."Languages" VALUES (110, 'Burmese', NULL, 'my', 'မြန်မာစာ', 'system', '2023-07-26 08:40:37.027955+07', 'system', '2023-07-26 08:40:37.027955+07');
INSERT INTO category."Languages" VALUES (111, 'Nauruan', NULL, 'na', 'Dorerin Naoero', 'system', '2023-07-26 08:40:37.02796+07', 'system', '2023-07-26 08:40:37.02796+07');
INSERT INTO category."Languages" VALUES (112, 'Norwegian Bokmål', NULL, 'nb', 'Norsk bokmål', 'system', '2023-07-26 08:40:37.027965+07', 'system', '2023-07-26 08:40:37.027965+07');
INSERT INTO category."Languages" VALUES (113, 'North Ndebele', NULL, 'nd', 'Sindebele', 'system', '2023-07-26 08:40:37.02797+07', 'system', '2023-07-26 08:40:37.02797+07');
INSERT INTO category."Languages" VALUES (114, 'Nepali', NULL, 'ne', 'नेपाली', 'system', '2023-07-26 08:40:37.027975+07', 'system', '2023-07-26 08:40:37.027975+07');
INSERT INTO category."Languages" VALUES (115, 'Ndonga', NULL, 'ng', 'Oshiwambo', 'system', '2023-07-26 08:40:37.02798+07', 'system', '2023-07-26 08:40:37.02798+07');
INSERT INTO category."Languages" VALUES (116, 'Dutch', NULL, 'nl', 'Nederlands', 'system', '2023-07-26 08:40:37.027984+07', 'system', '2023-07-26 08:40:37.027985+07');
INSERT INTO category."Languages" VALUES (117, 'Norwegian Nynorsk', NULL, 'nn', 'Norsk nynorsk', 'system', '2023-07-26 08:40:37.027989+07', 'system', '2023-07-26 08:40:37.027989+07');
INSERT INTO category."Languages" VALUES (118, 'Norwegian', NULL, 'no', 'Norsk', 'system', '2023-07-26 08:40:37.027994+07', 'system', '2023-07-26 08:40:37.027994+07');
INSERT INTO category."Languages" VALUES (119, 'South Ndebele', NULL, 'nr', 'isiNdebele', 'system', '2023-07-26 08:40:37.027998+07', 'system', '2023-07-26 08:40:37.027998+07');
INSERT INTO category."Languages" VALUES (120, 'Navajo', NULL, 'nv', 'Diné bizaad', 'system', '2023-07-26 08:40:37.028002+07', 'system', '2023-07-26 08:40:37.028002+07');
INSERT INTO category."Languages" VALUES (121, 'Chichewa', NULL, 'ny', 'Chi-Chewa', 'system', '2023-07-26 08:40:37.028005+07', 'system', '2023-07-26 08:40:37.028006+07');
INSERT INTO category."Languages" VALUES (122, 'Occitan', NULL, 'oc', 'Occitan', 'system', '2023-07-26 08:40:37.028009+07', 'system', '2023-07-26 08:40:37.028009+07');
INSERT INTO category."Languages" VALUES (123, 'Ojibwa', NULL, 'oj', 'ᐊᓂᔑᓈᐯᒧᐎᓐ / Anishinaabemowin', 'system', '2023-07-26 08:40:37.028013+07', 'system', '2023-07-26 08:40:37.028013+07');
INSERT INTO category."Languages" VALUES (124, 'Oromo', NULL, 'om', 'Oromoo', 'system', '2023-07-26 08:40:37.028018+07', 'system', '2023-07-26 08:40:37.028018+07');
INSERT INTO category."Languages" VALUES (125, 'Oriya', NULL, 'or', 'ଓଡ଼ିଆ', 'system', '2023-07-26 08:40:37.028021+07', 'system', '2023-07-26 08:40:37.028021+07');
INSERT INTO category."Languages" VALUES (126, 'Ossetian / Ossetic', NULL, 'os', 'Иронау', 'system', '2023-07-26 08:40:37.028025+07', 'system', '2023-07-26 08:40:37.028025+07');
INSERT INTO category."Languages" VALUES (127, 'Panjabi / Punjabi', NULL, 'pa', 'ਪੰਜਾਬੀ / पंजाबी / پنجابي', 'system', '2023-07-26 08:40:37.028029+07', 'system', '2023-07-26 08:40:37.028029+07');
INSERT INTO category."Languages" VALUES (128, 'Pali', NULL, 'pi', 'Pāli / पाऴि', 'system', '2023-07-26 08:40:37.028034+07', 'system', '2023-07-26 08:40:37.028034+07');
INSERT INTO category."Languages" VALUES (129, 'Polish', NULL, 'pl', 'Polski', 'system', '2023-07-26 08:40:37.028037+07', 'system', '2023-07-26 08:40:37.028037+07');
INSERT INTO category."Languages" VALUES (130, 'Pashto', NULL, 'ps', 'پښتو', 'system', '2023-07-26 08:40:37.028044+07', 'system', '2023-07-26 08:40:37.028044+07');
INSERT INTO category."Languages" VALUES (131, 'Portuguese', NULL, 'pt', 'Português', 'system', '2023-07-26 08:40:37.028047+07', 'system', '2023-07-26 08:40:37.028047+07');
INSERT INTO category."Languages" VALUES (132, 'Quechua', NULL, 'qu', 'Runa Simi', 'system', '2023-07-26 08:40:37.028049+07', 'system', '2023-07-26 08:40:37.028049+07');
INSERT INTO category."Languages" VALUES (133, 'Raeto Romance', NULL, 'rm', 'Rumantsch', 'system', '2023-07-26 08:40:37.028052+07', 'system', '2023-07-26 08:40:37.028052+07');
INSERT INTO category."Languages" VALUES (134, 'Kirundi', NULL, 'rn', 'Kirundi', 'system', '2023-07-26 08:40:37.028056+07', 'system', '2023-07-26 08:40:37.028056+07');
INSERT INTO category."Languages" VALUES (135, 'Romanian', NULL, 'ro', 'Română', 'system', '2023-07-26 08:40:37.028061+07', 'system', '2023-07-26 08:40:37.028061+07');
INSERT INTO category."Languages" VALUES (136, 'Russian', NULL, 'ru', 'Русский', 'system', '2023-07-26 08:40:37.028065+07', 'system', '2023-07-26 08:40:37.028066+07');
INSERT INTO category."Languages" VALUES (137, 'Rwandi', NULL, 'rw', 'Kinyarwandi', 'system', '2023-07-26 08:40:37.02807+07', 'system', '2023-07-26 08:40:37.02807+07');
INSERT INTO category."Languages" VALUES (138, 'Sanskrit', NULL, 'sa', 'संस्कृतम्', 'system', '2023-07-26 08:40:37.028074+07', 'system', '2023-07-26 08:40:37.028074+07');
INSERT INTO category."Languages" VALUES (139, 'Sardinian', NULL, 'sc', 'Sardu', 'system', '2023-07-26 08:40:37.028079+07', 'system', '2023-07-26 08:40:37.028079+07');
INSERT INTO category."Languages" VALUES (140, 'Sindhi', NULL, 'sd', 'सिनधि', 'system', '2023-07-26 08:40:37.028083+07', 'system', '2023-07-26 08:40:37.028083+07');
INSERT INTO category."Languages" VALUES (141, 'Northern Sami', NULL, 'se', 'Sámegiella', 'system', '2023-07-26 08:40:37.028088+07', 'system', '2023-07-26 08:40:37.028088+07');
INSERT INTO category."Languages" VALUES (142, 'Sango', NULL, 'sg', 'Sängö', 'system', '2023-07-26 08:40:37.028092+07', 'system', '2023-07-26 08:40:37.028092+07');
INSERT INTO category."Languages" VALUES (143, 'Serbo-Croatian', NULL, 'sh', 'Srpskohrvatski / Српскохрватски', 'system', '2023-07-26 08:40:37.028097+07', 'system', '2023-07-26 08:40:37.028097+07');
INSERT INTO category."Languages" VALUES (144, 'Sinhalese', NULL, 'si', 'සිංහල', 'system', '2023-07-26 08:40:37.028102+07', 'system', '2023-07-26 08:40:37.028102+07');
INSERT INTO category."Languages" VALUES (145, 'Slovak', NULL, 'sk', 'Slovenčina', 'system', '2023-07-26 08:40:37.028106+07', 'system', '2023-07-26 08:40:37.028107+07');
INSERT INTO category."Languages" VALUES (146, 'Slovenian', NULL, 'sl', 'Slovenščina', 'system', '2023-07-26 08:40:37.028111+07', 'system', '2023-07-26 08:40:37.028112+07');
INSERT INTO category."Languages" VALUES (147, 'Samoan', NULL, 'sm', 'Gagana Samoa', 'system', '2023-07-26 08:40:37.028117+07', 'system', '2023-07-26 08:40:37.028117+07');
INSERT INTO category."Languages" VALUES (148, 'Shona', NULL, 'sn', 'chiShona', 'system', '2023-07-26 08:40:37.028121+07', 'system', '2023-07-26 08:40:37.028121+07');
INSERT INTO category."Languages" VALUES (149, 'Somalia', NULL, 'so', 'Soomaaliga', 'system', '2023-07-26 08:40:37.028126+07', 'system', '2023-07-26 08:40:37.028126+07');
INSERT INTO category."Languages" VALUES (150, 'Albanian', NULL, 'sq', 'Shqip', 'system', '2023-07-26 08:40:37.02813+07', 'system', '2023-07-26 08:40:37.02813+07');
INSERT INTO category."Languages" VALUES (151, 'Serbian', NULL, 'sr', 'Српски', 'system', '2023-07-26 08:40:37.028134+07', 'system', '2023-07-26 08:40:37.028134+07');
INSERT INTO category."Languages" VALUES (152, 'Swati', NULL, 'ss', 'SiSwati', 'system', '2023-07-26 08:40:37.028142+07', 'system', '2023-07-26 08:40:37.028142+07');
INSERT INTO category."Languages" VALUES (153, 'Southern Sotho', NULL, 'st', 'Sesotho', 'system', '2023-07-26 08:40:37.028144+07', 'system', '2023-07-26 08:40:37.028144+07');
INSERT INTO category."Languages" VALUES (154, 'Sundanese', NULL, 'su', 'Basa Sunda', 'system', '2023-07-26 08:40:37.028147+07', 'system', '2023-07-26 08:40:37.028147+07');
INSERT INTO category."Languages" VALUES (155, 'Swedish', NULL, 'sv', 'Svenska', 'system', '2023-07-26 08:40:37.028149+07', 'system', '2023-07-26 08:40:37.028149+07');
INSERT INTO category."Languages" VALUES (156, 'Swahili', NULL, 'sw', 'Kiswahili', 'system', '2023-07-26 08:40:37.028151+07', 'system', '2023-07-26 08:40:37.028151+07');
INSERT INTO category."Languages" VALUES (157, 'Tamil', NULL, 'ta', 'தமிழ்', 'system', '2023-07-26 08:40:37.028153+07', 'system', '2023-07-26 08:40:37.028153+07');
INSERT INTO category."Languages" VALUES (158, 'Telugu', NULL, 'te', 'తెలుగు', 'system', '2023-07-26 08:40:37.028156+07', 'system', '2023-07-26 08:40:37.028156+07');
INSERT INTO category."Languages" VALUES (159, 'Tajik', NULL, 'tg', 'Тоҷикӣ', 'system', '2023-07-26 08:40:37.02816+07', 'system', '2023-07-26 08:40:37.02816+07');
INSERT INTO category."Languages" VALUES (160, 'Thai', NULL, 'th', 'ไทย / Phasa Thai', 'system', '2023-07-26 08:40:37.028162+07', 'system', '2023-07-26 08:40:37.028162+07');
INSERT INTO category."Languages" VALUES (161, 'Tigrinya', NULL, 'ti', 'ትግርኛ', 'system', '2023-07-26 08:40:37.028165+07', 'system', '2023-07-26 08:40:37.028165+07');
INSERT INTO category."Languages" VALUES (162, 'Turkmen', NULL, 'tk', 'Туркмен / تركمن', 'system', '2023-07-26 08:40:37.028167+07', 'system', '2023-07-26 08:40:37.028167+07');
INSERT INTO category."Languages" VALUES (163, 'Tagalog / Filipino', NULL, 'tl', 'Tagalog', 'system', '2023-07-26 08:40:37.02817+07', 'system', '2023-07-26 08:40:37.02817+07');
INSERT INTO category."Languages" VALUES (164, 'Tswana', NULL, 'tn', 'Setswana', 'system', '2023-07-26 08:40:37.028172+07', 'system', '2023-07-26 08:40:37.028172+07');
INSERT INTO category."Languages" VALUES (165, 'Tonga', NULL, 'to', 'Lea Faka-Tonga', 'system', '2023-07-26 08:40:37.028174+07', 'system', '2023-07-26 08:40:37.028174+07');
INSERT INTO category."Languages" VALUES (166, 'Turkish', NULL, 'tr', 'Türkçe', 'system', '2023-07-26 08:40:37.02818+07', 'system', '2023-07-26 08:40:37.02818+07');
INSERT INTO category."Languages" VALUES (167, 'Tsonga', NULL, 'ts', 'Xitsonga', 'system', '2023-07-26 08:40:37.028184+07', 'system', '2023-07-26 08:40:37.028184+07');
INSERT INTO category."Languages" VALUES (168, 'Tatar', NULL, 'tt', 'Tatarça', 'system', '2023-07-26 08:40:37.028189+07', 'system', '2023-07-26 08:40:37.028189+07');
INSERT INTO category."Languages" VALUES (169, 'Twi', NULL, 'tw', 'Twi', 'system', '2023-07-26 08:40:37.028194+07', 'system', '2023-07-26 08:40:37.028194+07');
INSERT INTO category."Languages" VALUES (170, 'Tahitian', NULL, 'ty', 'Reo Mā`ohi', 'system', '2023-07-26 08:40:37.028199+07', 'system', '2023-07-26 08:40:37.028199+07');
INSERT INTO category."Languages" VALUES (171, 'Uyghur', NULL, 'ug', 'Uyƣurqə / ئۇيغۇرچە', 'system', '2023-07-26 08:40:37.028204+07', 'system', '2023-07-26 08:40:37.028204+07');
INSERT INTO category."Languages" VALUES (172, 'Ukrainian', NULL, 'uk', 'Українська', 'system', '2023-07-26 08:40:37.028209+07', 'system', '2023-07-26 08:40:37.028209+07');
INSERT INTO category."Languages" VALUES (173, 'Urdu', NULL, 'ur', 'اردو', 'system', '2023-07-26 08:40:37.028214+07', 'system', '2023-07-26 08:40:37.028214+07');
INSERT INTO category."Languages" VALUES (174, 'Uzbek', NULL, 'uz', 'Ўзбек', 'system', '2023-07-26 08:40:37.028218+07', 'system', '2023-07-26 08:40:37.028218+07');
INSERT INTO category."Languages" VALUES (175, 'Venda', NULL, 've', 'Tshivenḓa', 'system', '2023-07-26 08:40:37.028221+07', 'system', '2023-07-26 08:40:37.028221+07');
INSERT INTO category."Languages" VALUES (176, 'Vietnamese', NULL, 'vi', 'Tiếng Việt', 'system', '2023-07-26 08:40:37.028226+07', 'system', '2023-07-26 08:40:37.028226+07');
INSERT INTO category."Languages" VALUES (177, 'Volapük', NULL, 'vo', 'Volapük', 'system', '2023-07-26 08:40:37.028231+07', 'system', '2023-07-26 08:40:37.028231+07');
INSERT INTO category."Languages" VALUES (178, 'Walloon', NULL, 'wa', 'Walon', 'system', '2023-07-26 08:40:37.028236+07', 'system', '2023-07-26 08:40:37.028236+07');
INSERT INTO category."Languages" VALUES (179, 'Wolof', NULL, 'wo', 'Wollof', 'system', '2023-07-26 08:40:37.028241+07', 'system', '2023-07-26 08:40:37.028241+07');
INSERT INTO category."Languages" VALUES (180, 'Xhosa', NULL, 'xh', 'isiXhosa', 'system', '2023-07-26 08:40:37.028246+07', 'system', '2023-07-26 08:40:37.028246+07');
INSERT INTO category."Languages" VALUES (181, 'Yiddish', NULL, 'yi', 'ייִדיש', 'system', '2023-07-26 08:40:37.028249+07', 'system', '2023-07-26 08:40:37.028249+07');
INSERT INTO category."Languages" VALUES (182, 'Yoruba', NULL, 'yo', 'Yorùbá', 'system', '2023-07-26 08:40:37.028253+07', 'system', '2023-07-26 08:40:37.028253+07');
INSERT INTO category."Languages" VALUES (183, 'Zhuang', NULL, 'za', 'Cuengh / Tôô / 壮语', 'system', '2023-07-26 08:40:37.028258+07', 'system', '2023-07-26 08:40:37.028258+07');
INSERT INTO category."Languages" VALUES (184, 'Chinese', NULL, 'zh', '中文', 'system', '2023-07-26 08:40:37.028263+07', 'system', '2023-07-26 08:40:37.028263+07');
INSERT INTO category."Languages" VALUES (185, 'Zulu', NULL, 'zu', 'isiZulu', 'system', '2023-07-26 08:40:37.028268+07', 'system', '2023-07-26 08:40:37.028268+07');


--
-- Data for Name: Organizations; Type: TABLE DATA; Schema: category; Owner: sdoc
--

INSERT INTO category."Organizations" VALUES ('0085a8cc-eee5-4dac-5a25-08db8d794ea2', '000.45.10.H08', 'H08.10.45', 'Công ty Lâm nghiệp Quy Nhơn - Tỉnh Bình Định', '1134 Hùng Vương, p. Nhơn Phú, TP. Quy Nhơn, tỉnh Bình Định', 'lnqn@snnptnt.binhdinh.gov.vn', '(0256) 3848911', NULL, 'lamnghiepquynhon.com', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262336+07', 'system', '2023-07-26 08:40:35.262336+07', NULL);
INSERT INTO category."Organizations" VALUES ('00951923-9279-4753-5bd7-08db8d794ea2', '000.03.40.H08', 'H08.40.3', 'Phòng Tư Pháp - Huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'tp@vancanh.binhdinh.gov.vn', '(0256) 3888233', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268201+07', 'system', '2023-07-26 08:40:35.268201+07', NULL);
INSERT INTO category."Organizations" VALUES ('0097abec-fee4-4579-5a8c-08db8d794ea2', '000.79.31.H08', 'H08.31.79', 'UBND Xã An Dũng - Huyện An Lão - Tỉnh Bình Định', 'An Dũng - An Lão-BĐ', 'andung@anlao.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26288+07', 'system', '2023-07-26 08:40:35.26288+07', NULL);
INSERT INTO category."Organizations" VALUES ('029f71e7-4bda-4c77-5a8f-08db8d794ea2', NULL, NULL, 'Cơ quan chuyên môn thuộc UBND Thị xã An Nhơn', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262901+07', 'system', '2023-07-26 08:40:35.262901+07', NULL);
INSERT INTO category."Organizations" VALUES ('02dbc64b-10fb-48a5-5b91-08db8d794ea2', '000.10.38.H08', 'H08.38.10', 'Phòng Kinh tế - Hạ tầng - Huyện Tây Sơn - Tỉnh Bình Định', '59 Phan Đình Phùng, thị trấn Phú Phong, huyện Tây Sơn', 'phongktht@tayson.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267946+07', 'system', '2023-07-26 08:40:35.267946+07', NULL);
INSERT INTO category."Organizations" VALUES ('02f3a163-e51d-479a-5b99-08db8d794ea2', '000.25.38.H08', 'H08.38.25', 'Trung tâm Văn hóa Thông tin - Thể thao - Huyện Tây Sơn - Tỉnh Bình Định', 'Đường Đống Đa, thị trấn Phú Phong', 'ttvhtt@tayson.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267973+07', 'system', '2023-07-26 08:40:35.267973+07', NULL);
INSERT INTO category."Organizations" VALUES ('0337557b-d92d-4051-59c4-08db8d794ea2', '000.21.03.H08', 'H08.3.21', 'Trường Quốc Học Quy Nhơn - Tỉnh Bình Định', '09 Trần Phú, Quy Nhơn, Bình Định', 'thptquochoc@sgddt.binhdinh.gov.vn', '(0256) 3822919', NULL, 'quochocquynhon.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261779+07', 'system', '2023-07-26 08:40:35.261779+07', NULL);
INSERT INTO category."Organizations" VALUES ('036c0080-0049-466e-5ae4-08db8d794ea2', '000.10.34.H08', 'H08.34.10', 'Phòng Kinh tế - Thị xã Hoài Nhơn - Tỉnh Bình Định', 'Phường Bồng Sơn - TX Hoài Nhơn', 'phongkt@hoainho.binhdinh.gov.vn', '(0256) 3861792', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263329+07', 'system', '2023-07-26 08:40:35.26333+07', NULL);
INSERT INTO category."Organizations" VALUES ('0397df83-a109-4866-5a41-08db8d794ea2', '000.23.13.H08', 'H08.13.23', 'Phòng Công chứng số 02 - Tỉnh Bình Định', '170 Quang Trung, Bồng Sơn, Hoài Nhơn, Bình Định', 'cc2@stp.binhdinh.gov.vn', '(0256) 3761423', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262488+07', 'system', '2023-07-26 08:40:35.262488+07', NULL);
INSERT INTO category."Organizations" VALUES ('043201c6-dd4d-48db-5aa2-08db8d794ea2', '000.28.32.H08', 'H08.32.28', 'Trung tâm Bảo trợ xã hội - Thị xã An Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262988+07', 'system', '2023-07-26 08:40:35.262988+07', NULL);
INSERT INTO category."Organizations" VALUES ('04fff457-4d20-4a90-5a2f-08db8d794ea2', '000.21.12.H08', 'H08.12.21', 'Chi cục Quản lý đất đai - Tỉnh Bình Định', '08 Hai Bà Trưng, TP. Quy Nhơn', 'ccqldd@stnmt.binhdinh.gov.vn', '(0256) 3818 376', NULL, 'stnmt.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262391+07', 'system', '2023-07-26 08:40:35.262391+07', NULL);
INSERT INTO category."Organizations" VALUES ('0693c1bb-5b8a-4827-5a2e-08db8d794ea2', '000.20.12.H08', 'H08.12.20', 'Chi cục Bảo vệ môi trường - Tỉnh Bình Định', '387 Trần Hưng Đạo, TP. Quy Nhơn', 'ccbvmt@stnmt.binhdinh.gov.vn', '(0256) 3822 109', NULL, 'stnmt.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262386+07', 'system', '2023-07-26 08:40:35.262386+07', NULL);
INSERT INTO category."Organizations" VALUES ('082e47f4-e0a9-456c-5b2f-08db8d794ea2', '000.06.36.H08', 'H08.36.06', 'Phòng Lao động - Thương Binh và Xã hội - Huyện Phù Mỹ - Tỉnh Bình Định', 'TT Phù Mỹ - Phù Mỹ', 'ldtbxh@phumy.binhdinh.gov.vn', '(0256) 3655777', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267634+07', 'system', '2023-07-26 08:40:35.267634+07', NULL);
INSERT INTO category."Organizations" VALUES ('08aea42a-85d0-4b2e-5b7c-08db8d794ea2', '000.82.37.H08', 'H08.37.82', 'UBND Phường Thị Nại - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267883+07', 'system', '2023-07-26 08:40:35.267883+07', NULL);
INSERT INTO category."Organizations" VALUES ('08c9abc3-e923-46c3-5b2a-08db8d794ea2', '000.01.36.H08', 'H08.36.01', 'Văn Phòng HĐND và UBND - Huyện Phù Mỹ - Tỉnh Bình Định', 'TT Phù Mỹ - Phù Mỹ', 'vanphong@phumy.binhdinh.gov.vn', '(0256) 3655209', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267617+07', 'system', '2023-07-26 08:40:35.267617+07', NULL);
INSERT INTO category."Organizations" VALUES ('08fd1387-b202-47d2-5abe-08db8d794ea2', '000.09.33.H08', 'H08.33.9', 'Thanh tra huyện - Huyện Hoài Ân - Tỉnh Bình Định', 'TT. Tăng Bạt Hổ - Hoài Ân', 'thanhtra@hoaian.binhdinh.gov.vn', '(0256) 3870272', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263127+07', 'system', '2023-07-26 08:40:35.263127+07', NULL);
INSERT INTO category."Organizations" VALUES ('09726263-00de-4b12-5b19-08db8d794ea2', '000.74.35.H08', 'H08.35.74', 'UBND Xã Cát Nhơn - Huyện Phù Cát - Tỉnh Bình Định', '', 'catnhon@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263576+07', 'system', '2023-07-26 08:40:35.263576+07', NULL);
INSERT INTO category."Organizations" VALUES ('097dc457-27dd-4714-5bb0-08db8d794ea2', '000.01.39.H08', 'H08.39.1', 'Văn Phòng HĐND và UBND - Huyện Tuy Phước - Tỉnh Bình Định', '290 Nguyễn Huệ, thị trấn Tuy Phước, Tuy Phước, Bình Định', 'vanthu@tuyphuoc.binhdinh.gov.vn', '(0256) 3633366', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268062+07', 'system', '2023-07-26 08:40:35.268062+07', NULL);
INSERT INTO category."Organizations" VALUES ('09f49f61-b536-48bd-5aac-08db8d794ea2', '000.78.32.H08', 'H08.32.78', 'UBND Xã Nhơn Hạnh - Thị xã An Nhơn - Tỉnh Bình Định', 'Nhơn Hạnh, Thị xã An Nhơn', 'nhonhanh@annhon.binhdinh.gov.vn', '(0256) 3612038', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263037+07', 'system', '2023-07-26 08:40:35.263037+07', NULL);
INSERT INTO category."Organizations" VALUES ('0a06b611-e94d-4915-5a8b-08db8d794ea2', '000.78.31.H08', 'H08.31.78', 'UBND Xã An Vinh - Huyện An Lão - Tỉnh Bình Định', 'An Vinh - An Lão-BĐ', 'anvinh@anlao.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262876+07', 'system', '2023-07-26 08:40:35.262876+07', NULL);
INSERT INTO category."Organizations" VALUES ('0a55bc99-ac82-40e3-5bf9-08db8d794ea2', '000.05.41.H08', 'H08.41.5', 'Phòng Tài Nguyên và Môi Trường - Huyện Vĩnh Thạnh - Tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'tainguyen@vinhthanh.binhdinh.gov.vn', '(0256) 3886655', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268312+07', 'system', '2023-07-26 08:40:35.268312+07', NULL);
INSERT INTO category."Organizations" VALUES ('0ae3cdfc-72a1-48f9-5ac6-08db8d794ea2', '000.25.33.H08', 'H08.33.25', 'Trung tâm Văn hóa Thông tin - Thể thao - Huyện Hoài Ân - Tỉnh Bình Định', 'TT. Tăng Bạt Hổ - Hoài Ân', 'vtttvhtt@hoaian.binhdinh.gov.vn', '(0256) 3870271', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263168+07', 'system', '2023-07-26 08:40:35.263168+07', NULL);
INSERT INTO category."Organizations" VALUES ('0b4c7bce-efdc-445a-59ed-08db8d794ea2', '000.62.03.H08', 'H08.3.62', 'Trường THPT Trần Quang Diệu - Tỉnh Bình Định', 'Ân Tường Tây, Hoài Ân, Bình Định', 'thpttranquangdieu@sgddt.binhdinh.gov.vn', '(0256) 3572127', NULL, 'Chưa sử dụng', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262015+07', 'system', '2023-07-26 08:40:35.262016+07', NULL);
INSERT INTO category."Organizations" VALUES ('0c4c8e80-40d5-4fef-5a4a-08db8d794ea2', NULL, 'H08.15.25', 'Trung Tâm văn hóa - Điện ảnh', '01 Nguyễn Tất Thành - Tp. Quy Nhơn tỉnh Bình Định', 'ttvht@svhtt.binhdinh.gov.vn', '(0256) 3822798', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262527+07', 'system', '2023-07-26 08:40:35.262527+07', NULL);
INSERT INTO category."Organizations" VALUES ('0d5df3e0-1362-4e89-5a9e-08db8d794ea2', NULL, 'H08.32.34', 'Ban Quản lý các dịch vụ đô thị - Thị xã An Nhơn - Tỉnh Bình Định', 'Bình Định, Thị xã An Nhơn', 'bqldvdt@annhon.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262971+07', 'system', '2023-07-26 08:40:35.262971+07', NULL);
INSERT INTO category."Organizations" VALUES ('0e671dbd-8dc0-409e-5af2-08db8d794ea2', '000.75.34.H08', 'H08.34.75', 'UBND phường Hoài Tân thị xã Hoài Nhơn tỉnh Bình Định', 'Phường Hoài Tân - TX Hoài Nhơn', 'hoaitan@hoainhon.binhdinh.gov.vn', '(0256) 3861927', NULL, 'hoaitan-hoainhon.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263397+07', 'system', '2023-07-26 08:40:35.263397+07', NULL);
INSERT INTO category."Organizations" VALUES ('0f93c72c-5eae-4d4a-5a71-08db8d794ea2', '000.02.31.H08', 'H08.31.02', 'Phòng Nội Vụ - Huyện An Lão - Tỉnh Bình Định', 'Thôn 2 - Thị trấn An Lão - An Lão', 'noivu@anlao.binhdinh.gov.vn', NULL, NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262732+07', 'system', '2023-07-26 08:40:35.262732+07', NULL);
INSERT INTO category."Organizations" VALUES ('0fc89cca-de91-4d22-5ab8-08db8d794ea2', '000.03.33.H08', 'H08.33.3', 'Phòng Tư Pháp - Huyện Hoài Ân - Tỉnh Bình Định', 'TT. Tăng Bạt Hổ - Hoài Ân', 'tuphap@hoaian.binhdinh.gov.vn', '(0256) 3870219', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263093+07', 'system', '2023-07-26 08:40:35.263093+07', NULL);
INSERT INTO category."Organizations" VALUES ('0fcbb3b6-0ded-427f-5a00-08db8d794ea2', '000.00.05.H08', 'H08.5', 'Sở Kế hoạch và Đầu tư tỉnh Bình Định', '35 Lê Lợi, Phường Lê Lợi, TP.Quy Nhơn, tỉnh Bình Định', 'vp@skhdt.binhdinh.gov.vn', '(0256) 3822 628', NULL, 'skhdt.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262123+07', 'system', '2023-07-26 08:40:35.262123+07', NULL);
INSERT INTO category."Organizations" VALUES ('0fdea0ed-fb4e-4628-5b41-08db8d794ea2', '000.75.36.H08', 'H08.36.75', 'UBND Xã Mỹ An - Huyện Phù Mỹ - Tỉnh Bình Định', 'Mỹ An - Phù Mỹ', 'ubndmyan@phumy.binhdinh.gov.vn', '(0256) 3857207', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267694+07', 'system', '2023-07-26 08:40:35.267694+07', NULL);
INSERT INTO category."Organizations" VALUES ('106c3697-b23f-4e82-5b4e-08db8d794ea2', '000.88.36.H08', 'H08.36.88', 'UBND Xã Mỹ Tài - Huyện Phù Mỹ - Tỉnh Bình Định', 'Mỹ Tài - Phù Mỹ', 'ubndmytai@phumy.binhdinh.gov.vn', '(0256) 3556666', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267735+07', 'system', '2023-07-26 08:40:35.267735+07', NULL);
INSERT INTO category."Organizations" VALUES ('1079852f-f1be-4565-5c02-08db8d794ea2', NULL, NULL, 'Đơn vị sự nghiệp thuộc UBND Huyện Vĩnh Thạnh', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268341+07', 'system', '2023-07-26 08:40:35.268341+07', NULL);
INSERT INTO category."Organizations" VALUES ('10a2e628-8f27-4fcd-5ac3-08db8d794ea2', '000.20.33.H08', 'H08.33.20', 'Ban Quản lý dự án Đầu tư và Xây dựng - Huyện Hoài Ân - Tỉnh Bình Định', 'TT. Tăng Bạt Hổ - Hoài Ân', 'bqldadtxd_ptqd@hoaian.binhdinh.gov.vn', '(0256) 3870500', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263156+07', 'system', '2023-07-26 08:40:35.263156+07', NULL);
INSERT INTO category."Organizations" VALUES ('11bac266-0dd8-4d29-5a23-08db8d794ea2', '000.43.10.H08', 'H08.10.43', 'Quỹ bảo vệ và phát triển rừng Bình Định - Tỉnh Bình Định', '110 Trần Hưng Đạo, TP. Quy Nhơn, tỉnh Bình Định', 'qbvptr@snnptnt.binhdinh.gov.vn', '(0256) 6522503', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262313+07', 'system', '2023-07-26 08:40:35.262313+07', NULL);
INSERT INTO category."Organizations" VALUES ('12000d6d-2a61-45a7-5b67-08db8d794ea2', '000.32.37.H08', 'H08.37.32', 'Công ty Quản lý sửa chữa đường bộ - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'ctdbqn@quynhon.binhdinh.gov.vn', '(0256) 3521312', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267819+07', 'system', '2023-07-26 08:40:35.267819+07', NULL);
INSERT INTO category."Organizations" VALUES ('1212379c-6ee8-426f-5b18-08db8d794ea2', '000.73.35.H08', 'H08.35.73', 'UBND Xã Cát Tường - Huyện Phù Cát - Tỉnh Bình Định', '', 'cattuong@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263573+07', 'system', '2023-07-26 08:40:35.263573+07', NULL);
INSERT INTO category."Organizations" VALUES ('123976c7-0323-4dac-59e6-08db8d794ea2', '000.55.03.H08', 'H08.3.55', 'Trường THPT Nguyễn Trân - Tỉnh Bình Định', 'Khu phố 8,Tam Quan, Hoài Nhơn, Bình Định', 'thptnguyentran@sgddt.binhdinh.gov.vn', '(0256) 3865226', NULL, 'thptnguyentran.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261975+07', 'system', '2023-07-26 08:40:35.261975+07', NULL);
INSERT INTO category."Organizations" VALUES ('1308bfa0-a242-4587-5b8a-08db8d794ea2', '000.03.38.H08', 'H08.38.3', 'Phòng Tư Pháp - Huyện Tây Sơn - Tỉnh Bình Định', '59 Phan Đình Phùng, thị trấn Phú Phong, huyện Tây Sơn', 'phongtp@tayson.binhdinh.gov.vn', '(0256) 3880218', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267923+07', 'system', '2023-07-26 08:40:35.267923+07', NULL);
INSERT INTO category."Organizations" VALUES ('13110e2b-b35e-4ffb-5aa3-08db8d794ea2', NULL, 'H08.32.31', 'Ban Quản lý đầu tư xây dựng và phát triển quỹ đất - Thị xã An Nhơn - Tỉnh Bình Định', '75 Lê Hồng Phong, Thị xã An Nhơn', 'blqda@annhon.binhhdinh.gov.vn', '(0256) 3835881', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262991+07', 'system', '2023-07-26 08:40:35.262991+07', NULL);
INSERT INTO category."Organizations" VALUES ('131c9f68-2a65-43d5-5a8e-08db8d794ea2', '000.00.32.H08', 'H08.32', 'UBND Thị xã An Nhơn tỉnh Bình Định', '78 Lê Hồng Phong, Thị xã An Nhơn, tỉnh Bình Định', 'vanphong@annhon.binhdinh.gov.vn', '(0256) 3735.067', NULL, 'annhon.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262887+07', 'system', '2023-07-26 08:40:35.262887+07', NULL);
INSERT INTO category."Organizations" VALUES ('13833eb1-85c0-4000-5b70-08db8d794ea2', NULL, NULL, 'Các phường xã thuộc UBND Thành phố Quy Nhơn', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267849+07', 'system', '2023-07-26 08:40:35.267849+07', NULL);
INSERT INTO category."Organizations" VALUES ('13a86e33-6170-4069-5b58-08db8d794ea2', '000.07.37.H08', 'H08.37.7', 'Phòng Văn hóa - Thông tin - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'phongvhtt@quynhon.binhdinh.gov.vn', '(0256) 3501022', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267769+07', 'system', '2023-07-26 08:40:35.267769+07', NULL);
INSERT INTO category."Organizations" VALUES ('13d879af-c971-4686-5a32-08db8d794ea2', '000.27.12.H08', 'H08.12.27', 'Trung tâm Quan trắc Tài nguyên và Môi trường - Tỉnh Bình Định', '174 Trần Hưng Đạo, TP. Quy Nhơn', 'ttqtmt@stnmt.binhdinh.gov.vn', '(0256) 6544 468', NULL, 'stnmt.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262403+07', 'system', '2023-07-26 08:40:35.262403+07', NULL);
INSERT INTO category."Organizations" VALUES ('15144998-b2d0-4035-5b15-08db8d794ea2', NULL, NULL, 'Các xã thuộc UBND Huyện Phù Cát', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263563+07', 'system', '2023-07-26 08:40:35.263563+07', NULL);
INSERT INTO category."Organizations" VALUES ('15e04593-58bf-4d78-5a67-08db8d794ea2', '000.00.18.H08', 'H08.18', 'Ban Quản lý Khu kinh tế tỉnh Bình Định', '65 Tây Sơn, TP Quy Nhơn, tỉnh Bình Định', '@kkt.binhdinh.gov.vn', '(0256) 3846519', NULL, 'kkt.binhdinh.gov.vn/', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26268+07', 'system', '2023-07-26 08:40:35.26268+07', NULL);
INSERT INTO category."Organizations" VALUES ('16404fb2-bef4-4043-5b80-08db8d794ea2', '000.86.37.H08', 'H08.37.86', 'UBND Phường Trần Quang Diệu - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267893+07', 'system', '2023-07-26 08:40:35.267893+07', NULL);
INSERT INTO category."Organizations" VALUES ('170d1c96-f6f2-410b-5b8f-08db8d794ea2', '000.08.38.H08', 'H08.38.8', 'Phòng Giáo dục - Đào Tạo - Huyện Tây Sơn - Tỉnh Bình Định', 'Đường Võ Văn Dõng, thị trấn Phú Phong', 'phonggddt@tayson.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267939+07', 'system', '2023-07-26 08:40:35.267939+07', NULL);
INSERT INTO category."Organizations" VALUES ('178851e2-a54c-4518-59dc-08db8d794ea2', '000.45.03.H08', 'H08.3.45', 'Trường THPT Ngô Mây - Tỉnh Bình Định', 'Số 19, Đinh Bộ Lĩnh, Ngô Mây, Phù Cát, Bình Định', 'thptngomay@sgddt.binhdinh.gov.vn', '(0256) 3850091', NULL, 'Đã mất tên miền do lâu không đăng ký', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261919+07', 'system', '2023-07-26 08:40:35.261919+07', NULL);
INSERT INTO category."Organizations" VALUES ('1890c7fe-c353-4309-5a49-08db8d794ea2', '000.24.15.H08', 'H08.15.24', 'Thư viện Tỉnh - Tỉnh Bình Định', '188 Hai Bà Trưng - Tp. Quy Nhơn tỉnh Bình Định', 'tvt@svhtt.binhdinh.gov.vn', '(0256) 3829894', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262523+07', 'system', '2023-07-26 08:40:35.262523+07', NULL);
INSERT INTO category."Organizations" VALUES ('18cd70b9-90a9-4332-5bcf-08db8d794ea2', '000.80.39.H08', 'H08.39.80', 'UBND Xã Phước Hòa - Huyện Tuy Phước - Tỉnh Bình Định', 'Thôn Kim Tây, xã Phước Hòa, Tuy Phước, Bình Định', 'phuochoa@tuyphuoc.binhdinh.gov.vn', '(0256) 3831327', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268174+07', 'system', '2023-07-26 08:40:35.268174+07', NULL);
INSERT INTO category."Organizations" VALUES ('193a50e6-4cab-4a98-5acb-08db8d794ea2', '000.72.33.H08', 'H08.33.72', 'UBND Xã Ân Thạnh - Huyện Hoài Ân - Tỉnh Bình Định', 'Ân Thạnh- Hoài Ân', 'ubndanthanh@hoaian.binhdinh.gov.vn', '(0256) 3870975', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263188+07', 'system', '2023-07-26 08:40:35.263188+07', NULL);
INSERT INTO category."Organizations" VALUES ('193a55eb-a792-4e3b-5b10-08db8d794ea2', '000.25.35.H08', 'H08.35.25', 'Ban Quản lý rừng phòng hộ - Huyện Phù Cát - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263533+07', 'system', '2023-07-26 08:40:35.263533+07', NULL);
INSERT INTO category."Organizations" VALUES ('196ea297-d33a-4580-5a3b-08db8d794ea2', NULL, 'H08.12.37', 'Chi nhánh Văn phòng đăng ký đất đai - Huyện Tây Sơn - Tỉnh Bình Định', '59 Phan Đình Phùng, TT. Phú Phong', 'vpdkdd@stnmt.binhdinh.gov.vn', NULL, NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262453+07', 'system', '2023-07-26 08:40:35.262453+07', NULL);
INSERT INTO category."Organizations" VALUES ('19de4e89-6c41-4f3a-5a50-08db8d794ea2', '000.20.17.H08', 'H08.17.20', 'Bệnh viện Đa khoa tỉnh Bình Định - Tỉnh Bình Định', 'Số 106 Nguyễn Huệ,TP. Quy Nhơn', 'hant1@syt.binhdinh.gov.vn', '(0256) 3822184', NULL, 'binhdinhhospital.com.vn/', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262561+07', 'system', '2023-07-26 08:40:35.262562+07', NULL);
INSERT INTO category."Organizations" VALUES ('19ef900d-f7f5-4b3b-59d8-08db8d794ea2', '000.41.03.H08', 'H08.3.41', 'Trường THPT Số 1 Phù Cát - Tỉnh Bình Định', 'Số 10 Nguyễn Chí Thanh, Phù Cát, Bình Định', 'thptphucat1@sgddt.binhdinh.gov.vn', '(0256) 3850490', NULL, 'thptphucat1@sgddt.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261902+07', 'system', '2023-07-26 08:40:35.261902+07', NULL);
INSERT INTO category."Organizations" VALUES ('1a307be9-40ba-471f-5a24-08db8d794ea2', '000.44.10.H08', 'H08.10.44', 'Công ty lâm nghiệp Hà Thanh - Tỉnh Bình Định', 'khu phố thịnh văn 2, TT Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'lnht@snnptnt.binhdinh.gov.vn', '(0256) 3888526', NULL, 'hathanhforestry.com', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262331+07', 'system', '2023-07-26 08:40:35.262331+07', NULL);
INSERT INTO category."Organizations" VALUES ('1a4c3b75-616e-4323-5a6a-08db8d794ea2', '000.00.20.H08', 'H08.20', 'Ban Dân tộc tỉnh Bình Định', '06 Trần Phú, TP.Quy Nhơn, tỉnh Bình Định', 'lienhe@bdt.binhdinh.gov.vn', '(0256) 3821362', NULL, 'bdt.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262692+07', 'system', '2023-07-26 08:40:35.262693+07', NULL);
INSERT INTO category."Organizations" VALUES ('1a4c3d8a-27eb-4adc-5ac1-08db8d794ea2', '000.12.33.H08', 'H08.33.12', 'Phòng Y tế - Huyện Hoài Ân - Tỉnh Bình Định', 'TT. Tăng Bạt Hổ - Hoài Ân', 'yte@hoaian.binhdinh.gov.vn', '(0256) 3670481', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263139+07', 'system', '2023-07-26 08:40:35.263139+07', NULL);
INSERT INTO category."Organizations" VALUES ('1a53cb68-242f-45ed-5a16-08db8d794ea2', '000.21.10.H08', 'H08.10.21', 'Chi cục Chăn nuôi và Thú y - Tỉnh Bình Định', '01 Phạm Ngũ Lão, p. Ngô Mây, TP. Quy Nhơn, tỉnh Bình Định', 'cccnty@snnptnt.binhdinh.gov.vn', NULL, NULL, 'chicuccntybinhdinh.com.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262246+07', 'system', '2023-07-26 08:40:35.262246+07', NULL);
INSERT INTO category."Organizations" VALUES ('1b150b76-ec02-4b51-5a36-08db8d794ea2', NULL, 'H08.12.31', 'Chi nhánh Văn phòng đăng ký đất đai - Thị xã An Nhơn - Tỉnh Bình Định', '02 Nguyễn Thị Minh Khai, P. Bình Định', 'vpdkdd@stnmt.binhdinh.gov.vn', '(0256) 3736 377', NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262422+07', 'system', '2023-07-26 08:40:35.262422+07', NULL);
INSERT INTO category."Organizations" VALUES ('1bb498a6-4857-4f40-59ee-08db8d794ea2', '000.63.03.H08', 'H08.3.63', 'Trường THPT Nguyễn Bỉnh Khiêm - Tỉnh Bình Định', '192 Nguyễn Tất Thành, Tăng Bạt Hổ, Hoài Ân, Bình Định', 'thptnguyenbinhkhiem@sgddt.binhdinh.gov.vn', '(0256) 3870539', NULL, 'Chưa sử dụng', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26202+07', 'system', '2023-07-26 08:40:35.26202+07', NULL);
INSERT INTO category."Organizations" VALUES ('1bee4f5b-a6ce-45a1-5bde-08db8d794ea2', '000.10.40.H08', 'H08.40.10', 'Phòng Kinh tế - Hạ tầng - Huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'ktht@vancanh.binhdinh.gov.vn', '(0256) 3888778', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268224+07', 'system', '2023-07-26 08:40:35.268224+07', NULL);
INSERT INTO category."Organizations" VALUES ('1c70d59b-aa31-4569-5aa0-08db8d794ea2', '000.24.32.H08', 'H08.32.24', 'Hội Chữ thập đỏ - Thị xã An Nhơn - Tỉnh Bình Định', '', 'ctd@anhnhon.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262979+07', 'system', '2023-07-26 08:40:35.262979+07', NULL);
INSERT INTO category."Organizations" VALUES ('1cc1f07b-9aee-4836-59f8-08db8d794ea2', '000.73.03.H08', 'H08.3.73', 'Trường Chuyên biệt Hy vọng Quy Nhơn', 'Số 02 Tăng Bạt Hổ, Quy Nhơn, Bình Định', 'cbhyvong@sgddt.binhdinh.gov.vn', '(0256) 6252028', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262075+07', 'system', '2023-07-26 08:40:35.262075+07', NULL);
INSERT INTO category."Organizations" VALUES ('1d7d7876-be34-46cc-5a5e-08db8d794ea2', '000.42.17.H08', 'H08.17.42', 'Trung tâm Y tế huyện Phù Cát - Tỉnh Bình Định', 'Số 12 đường 3/2, thị trấn Ngô Mây, huyện Phù Cát', 'lentm1@syt.binhdinh.gov.vn', '(0256) 3750616', NULL, 'ttytephucat.com/', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262632+07', 'system', '2023-07-26 08:40:35.262632+07', NULL);
INSERT INTO category."Organizations" VALUES ('1df94d46-4b70-40bc-5a34-08db8d794ea2', NULL, 'H08.12.29', 'Chi nhánh Văn phòng đăng ký đất đai - Huyện Tuy Phước - Tỉnh Bình Định', '01 Đô Đốc Lộc, TT. Tuy Phước', 'vpdkdd@stnmt.binhdinh.gov.vn', '(0256) 3533 240', NULL, 'stnmt.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262412+07', 'system', '2023-07-26 08:40:35.262412+07', NULL);
INSERT INTO category."Organizations" VALUES ('1e7ef494-7ac2-4f7f-5a22-08db8d794ea2', '000.42.10.H08', 'H08.10.42', 'Văn phòng điều phối xây dựng nông thôn mới - Tỉnh Bình Định', '135 Lê Hồng Phong, TP. Quy Nhơn, tỉnh Bình Định', 'vpdpntm@snnptnt.binhdinh.gov.vn', '(0256) 3813536', NULL, 'ntm.snnptnt.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262308+07', 'system', '2023-07-26 08:40:35.262308+07', NULL);
INSERT INTO category."Organizations" VALUES ('1fa85a28-313f-45cb-5a74-08db8d794ea2', '000.05.31.H08', 'H08.31.05', 'Phòng Tài Nguyên và Môi Trường - Huyện An Lão - Tỉnh Bình Định', 'Thôn 2 - Thị trấn An Lão - An Lão', 'tainguyen@anlao.binhdinh.gov.vn', NULL, NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262744+07', 'system', '2023-07-26 08:40:35.262744+07', NULL);
INSERT INTO category."Organizations" VALUES ('1fc33f01-fae8-4c21-5bcc-08db8d794ea2', '000.77.39.H08', 'H08.39.77', 'UBND Xã Phước Hiệp - Huyện Tuy Phước - Tỉnh Bình Định', 'Thôn Giang Bắc, xã Phước Hiệp, Tuy Phước, Bình Định', 'phuochiep@tuyphuoc.binhdinh.gov.vn', '(0256) 3832482', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268163+07', 'system', '2023-07-26 08:40:35.268163+07', NULL);
INSERT INTO category."Organizations" VALUES ('1fef318d-f31e-4c37-5c0f-08db8d794ea2', '000.76.41.H08', 'H08.41.76', 'UBND Xã Vĩnh Thuận - Huyện Vĩnh Thạnh - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26838+07', 'system', '2023-07-26 08:40:35.26838+07', NULL);
INSERT INTO category."Organizations" VALUES ('1ffce9a8-5b02-4bff-5bee-08db8d794ea2', '000.73.40.H08', 'H08.40.73', 'UBND Xã Canh Thuận - Huyện Vân Canh - Tỉnh Bình Định', 'Canh Thuận - Huyện Vân Canh - Tỉnh Bình Định', 'canhthuan@vancanh.binhdinh.gov.vn', '(0256) 3888365', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268276+07', 'system', '2023-07-26 08:40:35.268276+07', NULL);
INSERT INTO category."Organizations" VALUES ('20803d53-d7c0-4b14-5b39-08db8d794ea2', NULL, NULL, 'Đơn vị sự nghiệp thuộc UBND Huyện Phù Mỹ', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267667+07', 'system', '2023-07-26 08:40:35.267667+07', NULL);
INSERT INTO category."Organizations" VALUES ('22c7070b-87ee-4072-5b71-08db8d794ea2', '000.71.37.H08', 'H08.37.71', 'UBND Phường Lê Lợi - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267852+07', 'system', '2023-07-26 08:40:35.267852+07', NULL);
INSERT INTO category."Organizations" VALUES ('22efe0e8-4882-4cae-5a42-08db8d794ea2', '000.24.13.H08', 'H08.13.24', 'Phòng Công chứng sô 03 - Tỉnh Bình Định', 'Tổ 3, Khu vực 1, phường Trần Quang Diệu, Tp. Quy Nhơn, Bình Định', 'cc3@stp.binhdinh.gov.vn', '(0256) 3541873', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262493+07', 'system', '2023-07-26 08:40:35.262493+07', NULL);
INSERT INTO category."Organizations" VALUES ('232a3362-6fd4-4672-59cf-08db8d794ea2', '000.32.03.H08', 'H08.3.32', 'Trường THPT Số 1 Tuy Phước - Tỉnh Bình Định', '194 Nguyễn Huệ, Tuy Phước, Bình Định', 'thpttuyphuoc1@sgddt.binhdinh.gov.vn', '(0256) 3633101', NULL, 'tthptso1tuyphuoc.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261843+07', 'system', '2023-07-26 08:40:35.261843+07', NULL);
INSERT INTO category."Organizations" VALUES ('233cd400-9284-4947-59bf-08db8d794ea2', NULL, 'H08.1.23', 'Nhà khách Thanh Bình', '06 Lý thường Kiệt, Quy Nhơn', 'nkthanhbinh@vpub.binhdinh.gov.vn', '(0256) 3829042', NULL, 'vpub.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261713+07', 'system', '2023-07-26 08:40:35.261713+07', NULL);
INSERT INTO category."Organizations" VALUES ('23bb848b-97a7-4270-59c5-08db8d794ea2', '000.22.03.H08', 'H08.3.22', 'Trường THPT Trưng Vương - Tỉnh Bình Định', '26 Nguyễn Huệ, Quy Nhơn, Bình Định', 'thpttrungvuong@sgddt.binhdinh.gov.vn', '(0256) 3822649', NULL, 'thpttrungvuongqn.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261784+07', 'system', '2023-07-26 08:40:35.261784+07', NULL);
INSERT INTO category."Organizations" VALUES ('23d9d97d-0db1-4170-5c0d-08db8d794ea2', '000.74.41.H08', 'H08.41.74', 'UBND Xã Vĩnh Hảo - Huyện Vĩnh Thạnh - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268375+07', 'system', '2023-07-26 08:40:35.268375+07', NULL);
INSERT INTO category."Organizations" VALUES ('24011d14-fc0d-4520-5b17-08db8d794ea2', '000.72.35.H08', 'H08.35.72', 'UBND Xã Cát Tân - Huyện Phù Cát - Tỉnh Bình Định', '', 'cattan@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263569+07', 'system', '2023-07-26 08:40:35.263569+07', NULL);
INSERT INTO category."Organizations" VALUES ('24ebc2de-036b-4883-5b36-08db8d794ea2', '000.13.36.H08', 'H08.36.13', 'Ban Quản lý rừng phòng hộ huyện Phù Mỹ - Tỉnh Bình Định', 'TT Phù Mỹ - Phù Mỹ', 'bqlrung@phumy.binhdinh.gov.vn', '(0256) 6272878', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267658+07', 'system', '2023-07-26 08:40:35.267658+07', NULL);
INSERT INTO category."Organizations" VALUES ('24ee0da2-c976-48a7-5b2e-08db8d794ea2', '000.05.36.H08', 'H08.36.05', 'Phòng Tài Nguyên và Môi Trường - Huyện Phù Mỹ - Tỉnh Bình Định', 'TT Phù Mỹ - Phù Mỹ', 'tnmt@phumy.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267631+07', 'system', '2023-07-26 08:40:35.267631+07', NULL);
INSERT INTO category."Organizations" VALUES ('257746ab-739e-471e-5a7f-08db8d794ea2', '000.22.31.H08', 'H08.31.22', 'Trung tâm Văn hóa Thông tin - Thể thao - Huyện An Lão - Tỉnh Bình Định', 'Thôn 2 - Thị trấn An Lão - An Lão', 'ttvh@anlao.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26282+07', 'system', '2023-07-26 08:40:35.26282+07', NULL);
INSERT INTO category."Organizations" VALUES ('25b90d83-3bbc-422c-5b9d-08db8d794ea2', NULL, NULL, 'Các xã thuộc UBND Huyện Tây Sơn', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267987+07', 'system', '2023-07-26 08:40:35.267987+07', NULL);
INSERT INTO category."Organizations" VALUES ('26c76ee6-4fd2-4d62-5a92-08db8d794ea2', '000.03.32.H08', 'H08.32.3', 'Phòng Tư Pháp - Thị xã An Nhơn - Tỉnh Bình Định', '78 Lê Hồng Phong, Thị xã An Nhơn', 'tuphap@anhnhon.binhdinh.gov.vn', '(0256) 3736098', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262914+07', 'system', '2023-07-26 08:40:35.262914+07', NULL);
INSERT INTO category."Organizations" VALUES ('27180fc8-4bb8-4cb2-5b5f-08db8d794ea2', '000.20.37.H08', 'H08.37.20', 'Ban Quản lý chợ Đầm - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'bqlcd@quynhon.binhdinh.gov.vn', '(0256) 3823793', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267791+07', 'system', '2023-07-26 08:40:35.267792+07', NULL);
INSERT INTO category."Organizations" VALUES ('283b82ee-5e84-483f-5b23-08db8d794ea2', '000.84.35.H08', 'H08.35.84', 'UBND Xã Cát Hanh - Huyện Phù Cát - Tỉnh Bình Định', '', 'cathanh@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263621+07', 'system', '2023-07-26 08:40:35.263621+07', NULL);
INSERT INTO category."Organizations" VALUES ('284eed13-11b5-4c02-5b31-08db8d794ea2', '000.08.36.H08', 'H08.36.08', 'Phòng Giáo dục - Đào Tạo - Huyện Phù Mỹ - Tỉnh Bình Định', 'TT Phù Mỹ - Phù Mỹ', 'gddt@phumy.binhdinh.gov.vn', '(0256) 3855300', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267641+07', 'system', '2023-07-26 08:40:35.267641+07', NULL);
INSERT INTO category."Organizations" VALUES ('28c85d8d-c543-4527-5ab7-08db8d794ea2', '000.02.33.H08', 'H08.33.2', 'Phòng Nội Vụ - Huyện Hoài Ân - Tỉnh Bình Định', 'TT. Tăng Bạt Hổ - Hoài Ân', 'noivu@hoaian.binhdinh.gov.vn', '(0256) 3570506', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263089+07', 'system', '2023-07-26 08:40:35.26309+07', NULL);
INSERT INTO category."Organizations" VALUES ('29fd760a-4912-49f5-59f1-08db8d794ea2', '000.66.03.H08', 'H08.3.66', 'Trường THPT An Lão - Tỉnh Bình Định', 'Thôn Xuân Phong Nam, An Lão, Bình Định', 'thptanlao1@sgddt.binhdinh.gov.vn', '(0256) 3709179', NULL, 'thptanlao.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262034+07', 'system', '2023-07-26 08:40:35.262034+07', NULL);
INSERT INTO category."Organizations" VALUES ('2a70a909-decb-4d57-5ad7-08db8d794ea2', '000.84.33.H08', 'H08.33.84', 'UBND Xã Đắk Mang - Huyện Hoài Ân - Tỉnh Bình Định', 'Ân Đak Mang- Hoài Ân', 'ubnddakmang@hoaian.binhdinh.gov.vn', '(0256) 3873118', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263258+07', 'system', '2023-07-26 08:40:35.263258+07', NULL);
INSERT INTO category."Organizations" VALUES ('2ae14c80-f6d9-4efe-59bb-08db8d794ea2', '000.00.01.H08', 'H08.1', 'Văn phòng UBND tỉnh Bình Định', '01 Trần Phú, TP.Quy Nhơn, tỉnh Bình Định', 'vpubbinhdinh@vpub.binhdinh.gov.vn', '(0256) 3822294', NULL, 'vpub.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.257576+07', 'system', '2023-07-26 08:40:35.257577+07', NULL);
INSERT INTO category."Organizations" VALUES ('2b1be257-f285-4284-5b76-08db8d794ea2', '000.76.37.H08', 'H08.37.76', 'UBND Phường Ngô Mây - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267865+07', 'system', '2023-07-26 08:40:35.267866+07', NULL);
INSERT INTO category."Organizations" VALUES ('2ba7994d-a748-4d6c-5b54-08db8d794ea2', '000.03.37.H08', 'H08.37.3', 'Phòng Tư Pháp - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'suongntt@quynhon.binhdinh.gov.vn', '(0256) 3821329', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267754+07', 'system', '2023-07-26 08:40:35.267754+07', NULL);
INSERT INTO category."Organizations" VALUES ('2bc31940-51ae-4fbc-5afd-08db8d794ea2', '000.86.34.H08', 'H08.86.34', 'UBND xã Hoài Châu thị xã Hoài Nhơn tỉnh Bình Định', 'Xã Hoài Châu - TX Hoài Nhơn', 'hoaichau@hoainhon.binhdinh.gov.vn', '(0256) 3771 134', NULL, 'hoaichau-hoainhon.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263452+07', 'system', '2023-07-26 08:40:35.263452+07', NULL);
INSERT INTO category."Organizations" VALUES ('2cfd26f0-4706-45f9-5a2a-08db8d794ea2', NULL, 'H08.10.50', 'Trung tâm Giống nông nghiệp - Tỉnh Bình Định', '91/1 Nguyễn Thái Học, p. Ngô Mây, TP. Quy Nhơn, tỉnh Bình Định', 'ttgnn@snnptnt.binhdinh.gov.vn', '(0256) 3520570', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262359+07', 'system', '2023-07-26 08:40:35.262359+07', NULL);
INSERT INTO category."Organizations" VALUES ('2d5bcd9a-2a85-4f9f-59db-08db8d794ea2', '000.43.03.H08', 'H08.3.44', 'Trường THPT Ngô Lê Tân - Tỉnh Bình Định', 'Phú Trung, Cát Thành, Phù Cát, Bình Định', 'thptngoletan@sgddt.binhdinh.gov.vn', '(0256) 3690129', NULL, 'thpt-ngoletanbinhdinh.violet.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261915+07', 'system', '2023-07-26 08:40:35.261915+07', NULL);
INSERT INTO category."Organizations" VALUES ('2d9d9959-7e9b-4a23-59fe-08db8d794ea2', '000.21.04.H08', 'H08.4.21', 'Trung tâm đào tạo nghiệp vụ Giao thông Vận tải - Tỉnh Bình Định', '361 Tây Sơn, Phường Quang Trung, TP.Quy Nhơn, tỉnh Bình Định', 'ttdtnvgtvt@sgtvt.binhdinh.gov.vn', '(0256) 646373', NULL, 'daotaogtvtbinhdinh.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262113+07', 'system', '2023-07-26 08:40:35.262113+07', NULL);
INSERT INTO category."Organizations" VALUES ('2daa25f9-ab7f-4bd0-5a95-08db8d794ea2', '000.06.32.H08', 'H08.32.6', 'Phòng Lao động - Thương Binh và Xã hội - Thị xã An Nhơn - Tỉnh Bình Định', '78 Lê Hồng Phong, Thị xã An Nhơn', 'ldtbxh@annhon.binhdinh.gov.vn', '(0256) 6268937', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262926+07', 'system', '2023-07-26 08:40:35.262926+07', NULL);
INSERT INTO category."Organizations" VALUES ('2e26a325-e3d1-4c43-5a54-08db8d794ea2', '000.25.17.H08', 'H08.17.25', 'Bệnh viện Lao & Bệnh phổi Bình Định - Tỉnh Bình Định', 'KV5, P. Nhơn Phú, TP. Quy Nhơn', 'duongnt1@syt.binhdinh.gov.vn', '(0256) 3848687', NULL, 'www.benhvienlaophoibinhdinh.org.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26258+07', 'system', '2023-07-26 08:40:35.26258+07', NULL);
INSERT INTO category."Organizations" VALUES ('2e351db5-5e89-4b1c-5a35-08db8d794ea2', NULL, 'H08.12.30', 'Chi nhánh Văn phòng đăng ký đất đai - Huyện Vân Canh - Tỉnh Bình Định', 'Khu phố Thịnh Văn 2, TT. Vân Canh', 'vpdkdd@stnmt.binhdinh.gov.vn', '(0256) 3888 886', NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262417+07', 'system', '2023-07-26 08:40:35.262417+07', NULL);
INSERT INTO category."Organizations" VALUES ('2e90c66d-22cb-4dc3-5a18-08db8d794ea2', '000.23.10.H08', 'H08.10.23', 'Chi cục Thủy sản - Tỉnh Bình Định', '110 Trần Hưng Đạo, P. Hải Cảng, TP. Quy Nhơn, tỉnh Bình Định', 'ccts@snnptnt.binhdinh.gov.vn', '(0256) 3891011', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262255+07', 'system', '2023-07-26 08:40:35.262255+07', NULL);
INSERT INTO category."Organizations" VALUES ('2ece69d0-5418-4dc5-5bfa-08db8d794ea2', '000.06.41.H08', 'H08.41.6', 'Phòng Lao động - Thương Binh và Xã hội - Huyện Vĩnh Thạnh - Tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'laodong@vinhthanh.binhdinh.gov.vn', '(0256) 3886366', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268315+07', 'system', '2023-07-26 08:40:35.268315+07', NULL);
INSERT INTO category."Organizations" VALUES ('2efe5c56-4852-497a-59ce-08db8d794ea2', '000.31.03.H08', 'H08.3.31', 'Trường THPT Nguyễn Trường Tộ - Tỉnh Bình Định', '30 Nguyễn Trường Tộ, An Nhơn, Bình Định', 'thptnguyentruongto@sgddt.binhdinh.gov.vn', '(0256) 3839430', NULL, 'thptnguyentruongto-binhdinh.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261838+07', 'system', '2023-07-26 08:40:35.261838+07', NULL);
INSERT INTO category."Organizations" VALUES ('301e6a44-35b4-4f99-5bc2-08db8d794ea2', NULL, 'H08.39.29', 'Trung tâm Dịch vụ Nông nghiệp Tuy Phước', '86 Đào Tấn, thị trấn Tuy Phước, Tuy Phước, Bình Định', 'ttdvnn@tuyphuoc.binhdinh.gov.vn', '(0256) 3633034', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268128+07', 'system', '2023-07-26 08:40:35.268128+07', NULL);
INSERT INTO category."Organizations" VALUES ('302a1218-85b9-404a-5a27-08db8d794ea2', '000.47.10.H08', 'H08.10.47', 'Công ty Khai thác công trình Thủy lợi - Tỉnh Bình Định', '228 Nguyễn Văn Linh, KV Huỳnh Kim, p. Nhơn Hòa, TX. An Nhơn, tỉnh Bình Định', 'ktcttl@snnptnt.binhdinh.gov.vn', '(0256) 3835 274', NULL, 'khaithacthuyloibinhdinh.com.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262346+07', 'system', '2023-07-26 08:40:35.262346+07', NULL);
INSERT INTO category."Organizations" VALUES ('30486fdf-360b-4ba7-5a9f-08db8d794ea2', '000.23.32.H08', 'H08.32.23', 'Trung tâm Văn hóa Thông tin - Thể thao - Thị xã An Nhơn - Tỉnh Bình Định', '47 Lê Hồng Phong, Thị xã An Nhơn', 'ttvhtttt@anhnhon.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262975+07', 'system', '2023-07-26 08:40:35.262975+07', NULL);
INSERT INTO category."Organizations" VALUES ('30754921-59ed-4c35-5b64-08db8d794ea2', '000.28.37.H08', 'H08.37.28', 'Công an thành phố - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'catp@quynhon.binhdinh.gov.vn', '(0256) 3546109', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267809+07', 'system', '2023-07-26 08:40:35.267809+07', NULL);
INSERT INTO category."Organizations" VALUES ('31082a3d-d41f-40f2-5b72-08db8d794ea2', '000.72.37.H08', 'H08.37.72', 'UBND Phường Hải Cảng - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267854+07', 'system', '2023-07-26 08:40:35.267855+07', NULL);
INSERT INTO category."Organizations" VALUES ('31100625-6b0a-4344-5bb8-08db8d794ea2', '000.09.39.H08', 'H08.39.9', 'Thanh tra huyện - Huyện Tuy Phước - Tỉnh Bình Định', '34 Xuân Diệu, thị trấn Tuy Phước, Tuy Phước, Bình Định', 'thanhtra@tuyphuoc.binhdinh.gov.vn', '(0256) 3633360', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268091+07', 'system', '2023-07-26 08:40:35.268091+07', NULL);
INSERT INTO category."Organizations" VALUES ('3192ef84-ec8c-4fd5-5b8d-08db8d794ea2', '000.06.38.H08', 'H08.38.6', 'Phòng Lao động - Thương Binh và Xã hội - Huyện Tây Sơn - Tỉnh Bình Định', '59 Phan Đình Phùng, thị trấn Phú Phong, huyện Tây Sơn', 'phongldtbxh@tayson.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267933+07', 'system', '2023-07-26 08:40:35.267933+07', NULL);
INSERT INTO category."Organizations" VALUES ('31c064d2-7a5a-4406-5be1-08db8d794ea2', '000.13.40.H08', 'H08.40.13', 'Phòng Dân tộc - Huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'dt@vancanh.binhdinh.gov.vn', '(0256) 3888144', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268234+07', 'system', '2023-07-26 08:40:35.268234+07', NULL);
INSERT INTO category."Organizations" VALUES ('325f8b84-e224-4327-5b16-08db8d794ea2', '000.71.35.H08', 'H08.35.71', 'UBND Thị trấn Ngô Mây - Huyện Phù Cát - Tỉnh Bình Định', '', 'ngomay@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263566+07', 'system', '2023-07-26 08:40:35.263566+07', NULL);
INSERT INTO category."Organizations" VALUES ('32669634-ed6f-4a8f-5a48-08db8d794ea2', NULL, 'H08.15.23', 'Bảo Tàng Tỉnh Bình Định', '26 Nguyễn Huệ - Tp.Quy Nhơn tỉnh Bình Định', 'btth@svhtt.binhdinh.gov.vn', '(0256) 3822452', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262519+07', 'system', '2023-07-26 08:40:35.262519+07', NULL);
INSERT INTO category."Organizations" VALUES ('32d16f9e-5ad1-499a-5bd5-08db8d794ea2', '000.01.40.H08', 'H08.40.1', 'Văn Phòng HĐND và UBND - Huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'vanphong@vancanh.binhdinh.gov.vn', '(0256) 3888209', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268194+07', 'system', '2023-07-26 08:40:35.268194+07', NULL);
INSERT INTO category."Organizations" VALUES ('334c1c25-73f0-44e8-5ae2-08db8d794ea2', '000.08.34.H08', 'H08.34.8', 'Phòng Giáo dục và Đào tạo- Thị xã Hoài Nhơn - Tỉnh Bình Định', 'Phường Bồng Sơn - TX Hoài Nhơn', 'phonggddt@hoainhon.binhdinh.gov.vn', '(0256) 3861950', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263312+07', 'system', '2023-07-26 08:40:35.263313+07', NULL);
INSERT INTO category."Organizations" VALUES ('33a9ce57-a843-4792-5b93-08db8d794ea2', '000.12.38.H08', 'H08.38.12', 'Phòng Y tế - Huyện Tây Sơn - Tỉnh Bình Định', '59 Phan Đình Phùng, thị trấn Phú Phong, huyện Tây Sơn', 'phongyt@tayson.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267953+07', 'system', '2023-07-26 08:40:35.267953+07', NULL);
INSERT INTO category."Organizations" VALUES ('33ba7125-390d-4f89-5b24-08db8d794ea2', '000.85.35.H08', 'H08.35.85', 'UBND Xã Cát Sơn - Huyện Phù Cát - Tỉnh Bình Định', '', 'catson@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263624+07', 'system', '2023-07-26 08:40:35.263624+07', NULL);
INSERT INTO category."Organizations" VALUES ('342f4443-6050-42b6-5ade-08db8d794ea2', '000.04.34.H08', 'H08.34.4', 'Phòng Tài Chính - Kế Hoạch - Thị xã Hoài Nhơn - Tỉnh Bình Định', 'Phường Bồng Sơn - TX Hoài Nhơn', 'phongtckh@hoainhon.binhdinh.gov.vn', '(0256) 3861802', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263296+07', 'system', '2023-07-26 08:40:35.263296+07', NULL);
INSERT INTO category."Organizations" VALUES ('34f65eda-0f96-4f84-5ab1-08db8d794ea2', '000.83.32.H08', 'H08.32.83', 'UBND Xã Nhơn Tân - Thị xã An Nhơn - Tỉnh Bình Định', 'Nhơn Tân, Thị xã An Nhơn', 'nhontan@annhon.binhdinh.gov.vn', '(0256) 3837019', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263056+07', 'system', '2023-07-26 08:40:35.263056+07', NULL);
INSERT INTO category."Organizations" VALUES ('350ee335-8095-4385-5a21-08db8d794ea2', '000.39.10.H08', 'H08.10.39', 'Dự án JICA2 - Tỉnh Bình Định', '110 Trần Hưng Đạo - TP. Quy Nhơn, tỉnh Bình Định', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262304+07', 'system', '2023-07-26 08:40:35.262304+07', NULL);
INSERT INTO category."Organizations" VALUES ('3512fae6-3fc1-4a62-5a5a-08db8d794ea2', '000.38.17.H08', 'H08.17.38', 'Trung tâm Pháp y - Tỉnh Bình Định', 'Số 106 Nguyễn Huệ, TP. Quy Nhơn', 'hienltt@syt.binhdinh.gov.vn', '(0256) 3824232', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262615+07', 'system', '2023-07-26 08:40:35.262615+07', NULL);
INSERT INTO category."Organizations" VALUES ('3615633a-7cd7-4486-5b92-08db8d794ea2', '000.11.38.H08', 'H08.38.11', 'Phòng Nông nghiệp - Phát triển nông thôn - Huyện Tây Sơn - Tỉnh Bình Định', '59 Phan Đình Phùng, thị trấn Phú Phong, huyện Tây Sơn', 'phongnnptnt@tayson.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26795+07', 'system', '2023-07-26 08:40:35.26795+07', NULL);
INSERT INTO category."Organizations" VALUES ('3621b0b1-7024-45a0-59cc-08db8d794ea2', '000.29.03.H08', 'H08.3.29', 'Trường THPT Hòa Bình - Tỉnh Bình Định', 'Thôn Trung Lý, xã Nhơn Phong, An Nhơn, Bình Định', 'thpthoabinh@sgddt.binhdinh.gov.vn', '(0256) 3612312', NULL, 'edu.viettel.vn/binhdinh-thpthoabinh', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261829+07', 'system', '2023-07-26 08:40:35.261829+07', NULL);
INSERT INTO category."Organizations" VALUES ('36227ef9-43ce-4d85-5af0-08db8d794ea2', '000.73.34.H08', 'H08.34.73', 'UBND phường Tam Quan Bắc thị xã Hoài Nhơn tỉnh Bình Định', 'Phường Tam Quan Bắc - TX Hoài nhơn', 'tamquanbac@hoainhon.binhdinh.gov.vn', '(0256) 3865 290', NULL, 'tamquanbac-hoainhon.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263388+07', 'system', '2023-07-26 08:40:35.263388+07', NULL);
INSERT INTO category."Organizations" VALUES ('36791f56-ee01-4176-5b49-08db8d794ea2', '000.83.36.H08', 'H08.36.83', 'UBND Xã Mỹ Thọ - Huyện Phù Mỹ -Tỉnh Bình Định', 'Mỹ Thọ - Phù Mỹ', 'ubndmytho@phumy.binhdinh.gov.vn', '(0256) 3659 608', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267719+07', 'system', '2023-07-26 08:40:35.267719+07', NULL);
INSERT INTO category."Organizations" VALUES ('369c42d2-891e-430c-59f9-08db8d794ea2', NULL, 'H08.3.74', 'Trường THPT FPT Quy Nhơn', 'Khu đô thị mới An Phú Thịnh, P. Nhơn Bình & P. Đống Đa, Tp. Quy Nhơn, Bình Định', 'thpt.fptqn@fe.edu.vn', '(0256) 625 9989', NULL, 'thptquynhon.fpt.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262079+07', 'system', '2023-07-26 08:40:35.26208+07', NULL);
INSERT INTO category."Organizations" VALUES ('37549880-1f42-44e8-5a15-08db8d794ea2', '000.20.10.H08', 'H08.10.20', 'Chi cục Trồng trọt và Bảo vệ thực vật - Tỉnh Bình Định', '817 Hùng Vương, p. Quang Trung, TP. Quy Nhơn, tỉnh Bình Định', 'cbvtvtt@snnpt.binhdinh.gov.vn', '(0256) 3848381', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262241+07', 'system', '2023-07-26 08:40:35.262241+07', NULL);
INSERT INTO category."Organizations" VALUES ('381b3c20-cd0e-4148-5af8-08db8d794ea2', '000.81.34.H08', 'H08.34.81', 'UBND phường Hoài Hảo thị xã Hoài Nhơn tỉnh Bình Định', 'Phường Hoài Hảo - TX Hoài Nhơn', 'hoaihao@hoainhon.binhdinh.gov.vn', '(0256) 3863 280', NULL, 'hoaihao-hoainhon.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263422+07', 'system', '2023-07-26 08:40:35.263422+07', NULL);
INSERT INTO category."Organizations" VALUES ('38356b18-d9fe-46c2-59c8-08db8d794ea2', '000.25.03.H08', 'H08.3.25', 'Trường THPT Nguyễn Thái Học - Tỉnh Bình Định', '127 Nguyễn Thái Học, Quy Nhơn, Bình Định', 'thptnguyenthaihoc@sgddt.binhdinh.gov.vn', '(0256) 3522374', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261797+07', 'system', '2023-07-26 08:40:35.261797+07', NULL);
INSERT INTO category."Organizations" VALUES ('386c83fb-9258-44e6-5ae7-08db8d794ea2', '000.13.34.H08', 'H08.34.13', 'Ban Quản lý rừng phòng hộ thị xã Hoài Nhơn tỉnh Bình Định', 'Phường Hoài Tân - TX Hoài Nhơn', 'banqlrph@hoainhon.binhdinh.gov.vn', '(0256) 3 861782', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263342+07', 'system', '2023-07-26 08:40:35.263342+07', NULL);
INSERT INTO category."Organizations" VALUES ('38e76efc-c28c-49a2-5b66-08db8d794ea2', '000.31.37.H08', 'H08.37.31', 'Công ty Môi trường đô thị - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'mtdt@quynhon.binhdinh.gov.vn', '(0256) 3827305', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267816+07', 'system', '2023-07-26 08:40:35.267816+07', NULL);
INSERT INTO category."Organizations" VALUES ('391936e4-ece3-4e33-5b09-08db8d794ea2', '000.10.35.H08', 'H08.35.10', 'Phòng Kinh tế - Hạ tầng - Huyện Phù Cát - Tỉnh Bình Định', '', 'ktht@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263508+07', 'system', '2023-07-26 08:40:35.263508+07', NULL);
INSERT INTO category."Organizations" VALUES ('39553385-9387-48e3-59e9-08db8d794ea2', '000.58.03.H08', 'H08.3.58', 'Trường THPT Phan Bội Châu - Tỉnh Bình Định', '02 Tăng Bạt Hổ, Bồng Sơn, Hoài Nhơn, Bình Định', 'thptphanboichau@sgddt.binhdinh.gov.vn', '(0256) 3861449', NULL, 'phanboichau.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261998+07', 'system', '2023-07-26 08:40:35.261998+07', NULL);
INSERT INTO category."Organizations" VALUES ('3960e35e-9148-49ae-5b4a-08db8d794ea2', '000.84.36.H08', 'H08.36.84', 'UBND Xã Mỹ Thành - Huyện Phù Mỹ -Tỉnh Bình Định', 'Mỹ Thành - Phù Mỹ', 'ubndmythanh@phumy.binhdinh.gov.vn', '(0256) 3659319', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267723+07', 'system', '2023-07-26 08:40:35.267723+07', NULL);
INSERT INTO category."Organizations" VALUES ('39a79ed8-ee98-4971-5ab4-08db8d794ea2', '000.00.33.H08', 'H08.33', 'UBND Huyện Hoài Ân tỉnh Bình Định', 'Thị trấn Tăng Bạt Hổ, huyện Hoài Ân, tỉnh Bình Định', 'vanphong@hoaian.binhdinh.gov.vn', '(0256) 3870713', NULL, 'hoaian.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263077+07', 'system', '2023-07-26 08:40:35.263077+07', NULL);
INSERT INTO category."Organizations" VALUES ('39abddf1-240f-45bb-59d7-08db8d794ea2', '000.40.03.H08', 'H08.3.40', 'Trường THPT Võ Lai - Tỉnh Bình Định', 'Thượng Giang 1, Tây Sơn, Bình Định', 'thptvolai@sgddt.binhdinh.gov.vn', '(0256) 3884090', NULL, 'thpt-volai.blogspot.com', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261898+07', 'system', '2023-07-26 08:40:35.261898+07', NULL);
INSERT INTO category."Organizations" VALUES ('39ba7e0b-20d0-46cb-5bf0-08db8d794ea2', '000.75.40.H08', 'H08.40.75', 'UBND Xã Canh Hiệp - Huyện Vân Canh - Tỉnh Bình Định', 'Canh Hiệp - Huyện Vân Canh - Tỉnh Bình Định', 'canhhiep@vancanh.binhdinh.gov.vn', '(0256) 3888376', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268282+07', 'system', '2023-07-26 08:40:35.268282+07', NULL);
INSERT INTO category."Organizations" VALUES ('39e31435-5018-4114-5ac8-08db8d794ea2', '000.28.33.H08', 'H08.33.28', 'Trung tâm Giáo dục nghề nghiệp - Giáo dục thường xuyên - Huyện Hoài Ân - Tỉnh Bình Định', 'TT. Tăng Bạt Hổ - Hoài Ân', 'ttgdnngdtx@hoaian.binhdinh.gov.vn', '(0256) 3870207', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263176+07', 'system', '2023-07-26 08:40:35.263176+07', NULL);
INSERT INTO category."Organizations" VALUES ('3a2e5f54-2b39-4669-5b8e-08db8d794ea2', '000.07.38.H08', 'H08.38.7', 'Phòng Văn hóa - Thông tin - Huyện Tây Sơn - Tỉnh Bình Định', '59 Phan Đình Phùng, thị trấn Phú Phong, huyện Tây Sơn', 'phongvhtt@tayson.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267936+07', 'system', '2023-07-26 08:40:35.267936+07', NULL);
INSERT INTO category."Organizations" VALUES ('3a567a44-6584-417b-59dd-08db8d794ea2', '000.46.03.H08', 'H08.3.46', 'Trường THPT Nguyễn Hữu Quang - Tỉnh Bình Định', 'Thôn Hưng Mỹ 1, xã Cát Hưng, Phù Cát, Bình Định', 'thptnguyenhuuquang@sgddt.binhdinh.gov.vn', '(0256) 3853324', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261925+07', 'system', '2023-07-26 08:40:35.261925+07', NULL);
INSERT INTO category."Organizations" VALUES ('3b58a6b7-e9ba-4685-5b77-08db8d794ea2', '000.77.37.H08', 'H08.37.77', 'UBND Phường Đống Đa - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267869+07', 'system', '2023-07-26 08:40:35.267869+07', NULL);
INSERT INTO category."Organizations" VALUES ('3bde91dc-ea96-486f-5b06-08db8d794ea2', '000.07.35.H08', 'H08.35.7', 'Phòng Văn hóa - Thông tin - Huyện Phù Cát - Tỉnh Bình Định', '', 'vhtt@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263497+07', 'system', '2023-07-26 08:40:35.263497+07', NULL);
INSERT INTO category."Organizations" VALUES ('3dd83c8c-c5e7-4815-5a7d-08db8d794ea2', NULL, NULL, 'Đơn vị sự nghiệp thuộc UBND Huyện An Lão', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262812+07', 'system', '2023-07-26 08:40:35.262812+07', NULL);
INSERT INTO category."Organizations" VALUES ('3ea27d49-e567-4c27-5b0c-08db8d794ea2', NULL, NULL, 'Đơn vị sự nghiệp thuộc UBND Huyện Phù Cát', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263519+07', 'system', '2023-07-26 08:40:35.263519+07', NULL);
INSERT INTO category."Organizations" VALUES ('3f9a688b-88bf-4f22-5b11-08db8d794ea2', '000.27.35.H08', 'H08.35.27', 'Hội chữ thập đỏ - Huyện Phù Cát - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263537+07', 'system', '2023-07-26 08:40:35.263537+07', NULL);
INSERT INTO category."Organizations" VALUES ('4068317d-dca3-45ea-5ad6-08db8d794ea2', '000.83.33.H08', 'H08.33.83', 'UBND Xã Bok Tới - Huyện Hoài Ân - Tỉnh Bình Định', 'Bok Tới- Hoài Ân', 'ubndboktoi@hoaian.binhdinh.gov.vn', '(0256) 3873103', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263254+07', 'system', '2023-07-26 08:40:35.263254+07', NULL);
INSERT INTO category."Organizations" VALUES ('4118e531-4452-4265-59c6-08db8d794ea2', '000.23.03.H08', 'H08.3.23', 'Trường THPT Hùng Vương - Tỉnh Bình Định', '1233 Hùng Vương, Quy Nhơn, Bình Định', 'thpthungvuong@sgddt.binhdinh.gov.vn', '(0256) 3841131', NULL, 'thpt-hungvuongbinhdinh.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261788+07', 'system', '2023-07-26 08:40:35.261788+07', NULL);
INSERT INTO category."Organizations" VALUES ('418f0206-0a19-4229-5a4d-08db8d794ea2', '000.00.16.H08', 'H08.16', 'Sở Xây dựng tỉnh Bình Định', '32 Lý Thường Kiệt, TP.Quy Nhơn, tỉnh Bình Định', 'vanthusxd@sxd.binhdinh.gov.vn', '(0256) 3822882', NULL, 'sxd.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262549+07', 'system', '2023-07-26 08:40:35.262549+07', NULL);
INSERT INTO category."Organizations" VALUES ('423c0517-2902-4340-5ad8-08db8d794ea2', '000.85.33.H08', 'H08.33.85', 'UBND Xã Ân Hữu - Huyện Hoài Ân - Tỉnh Bình Định', 'Ân Hữu- Hoài Ân', 'ubndanhuu@hoaian.binhdinh.gov.vn', '(0256) 3873576', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263261+07', 'system', '2023-07-26 08:40:35.263262+07', NULL);
INSERT INTO category."Organizations" VALUES ('424562e7-4de8-42fb-5b6c-08db8d794ea2', '000.37.37.H08', 'H08.37', 'Hội khuyến học - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'hkhtp@quynhon.binhdinh.gov.vn', '(0256) 3829558', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267836+07', 'system', '2023-07-26 08:40:35.267836+07', NULL);
INSERT INTO category."Organizations" VALUES ('42d76840-2c6d-4036-5be9-08db8d794ea2', NULL, 'H08.40.28', 'Công an huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'ca@vancanh.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268261+07', 'system', '2023-07-26 08:40:35.268261+07', NULL);
INSERT INTO category."Organizations" VALUES ('445ce113-eb39-4aa6-5bbd-08db8d794ea2', NULL, 'H08.39.26', 'Đơn vị sự nghiệp thuộc UBND Huyện Tuy Phước', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268111+07', 'system', '2023-07-26 08:40:35.268111+07', NULL);
INSERT INTO category."Organizations" VALUES ('44bd592e-fb4e-4a79-5a01-08db8d794ea2', '000.20.05.H08', 'H08.5.20', 'Trung tâm xúc tiến đầu tư - Tỉnh Bình Định', '35 Lê Lợi, Phường Lê Lợi, TP.Quy Nhơn, tỉnh Bình Định', 'ttxtdt@skhdt.binhdinh.gov.vn', '(0256) 3818 888', NULL, 'binhdinhinvest.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262129+07', 'system', '2023-07-26 08:40:35.262129+07', NULL);
INSERT INTO category."Organizations" VALUES ('4500b5d6-f875-44a1-5a75-08db8d794ea2', '000.06.31.H08', 'H08.31.06', 'Phòng Lao động - Thương Binh và Xã hội - Huyện An Lão - Tỉnh Bình Định', 'Thôn 2 - Thị trấn An Lão - An Lão', 'laodong@anlao.binhdinh.gov.vn', NULL, NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262748+07', 'system', '2023-07-26 08:40:35.262748+07', NULL);
INSERT INTO category."Organizations" VALUES ('45e03f2f-8e76-4a39-5a7b-08db8d794ea2', '000.12.31.H08', 'H08.31.12', 'Phòng Y tế - Huyện An Lão - Tỉnh Bình Định', 'Thôn 2 - Thị trấn An Lão - An Lão', 'yte@anlao.binhdinh.gov.vn', NULL, NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262805+07', 'system', '2023-07-26 08:40:35.262805+07', NULL);
INSERT INTO category."Organizations" VALUES ('45eda29b-0451-4391-5b6d-08db8d794ea2', '000.38.37.H08', 'H08.37.38', 'Hội Luật gia - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'hlgtp@quynhon.binhdinh.gov.vn', '(0256) 903512539', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26784+07', 'system', '2023-07-26 08:40:35.26784+07', NULL);
INSERT INTO category."Organizations" VALUES ('460c89d2-1167-4f25-5b78-08db8d794ea2', '000.78.37.H08', 'H08.37.78', 'UBND Phường Quang Trung - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267872+07', 'system', '2023-07-26 08:40:35.267872+07', NULL);
INSERT INTO category."Organizations" VALUES ('46179512-10fd-495f-5afb-08db8d794ea2', '000.84.34.H08', 'H08.34.84', 'UBND xã Hoài Hải thị xã Hoài Nhơn tỉnh Bình Định', 'Xã Hoài Hải - TX Hoài Nhơn', 'hoaihai@hoainhon.binhdinh.gov.vn', '(0256) 3567 715', NULL, 'hoaihai-hoainhon.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263444+07', 'system', '2023-07-26 08:40:35.263444+07', NULL);
INSERT INTO category."Organizations" VALUES ('464bf96c-65f9-4fa3-5b0b-08db8d794ea2', '000.12.35.H08', 'H08.35.12', 'Phòng Y tế - Huyện Phù Cát - Tỉnh Bình Định', '', 'yte@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263515+07', 'system', '2023-07-26 08:40:35.263515+07', NULL);
INSERT INTO category."Organizations" VALUES ('471c3282-262a-4317-5a0a-08db8d794ea2', '000.22.07.H08', 'H08.7.22', 'Trung tâm Công tác xã hội và bảo trợ xã hội Bình Định - Tỉnh Bình Định', '78 đường Ngô Đức Đệ, phường Bình Định, thị xã An Nhơn, tỉnh Bình Định.', NULL, '(0256) 3835355', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26218+07', 'system', '2023-07-26 08:40:35.26218+07', NULL);
INSERT INTO category."Organizations" VALUES ('4799e2bb-64f7-4851-5a11-08db8d794ea2', '000.20.09.H08', 'H08.9.20', 'Ban Thi đua - Khen thưởng - Tỉnh Bình Định', '254 Lê Hồng Phong, Thành phố Quy Nhơn, tỉnh Bình Định', 'bantdkt@snv.binhdinh.gov.vn', '(0256) 3822296', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262223+07', 'system', '2023-07-26 08:40:35.262223+07', NULL);
INSERT INTO category."Organizations" VALUES ('47ae2a85-b12b-487a-5b63-08db8d794ea2', '000.26.37.H08', 'H08.37.26', 'Chi cục thống kê - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'chicucthongke@quynhon.binhdinh.gov.vn', '(0256) 3821597', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267806+07', 'system', '2023-07-26 08:40:35.267806+07', NULL);
INSERT INTO category."Organizations" VALUES ('47cd01dc-27f4-40b5-5b40-08db8d794ea2', '000.74.36.H08', 'H08.36.74', 'UBND Xã Mỹ Thắng - Huyện Phù Mỹ -Tỉnh Bình Định', 'Mỹ Thắng - Phù Mỹ', 'ubndmythang@phumy.binhdinh.gov.vn', '(0256) 3557337', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267691+07', 'system', '2023-07-26 08:40:35.267691+07', NULL);
INSERT INTO category."Organizations" VALUES ('4823de7d-baa1-45e2-5a29-08db8d794ea2', '000.49.10.H08', 'H08.10.49', 'Ban Quản lý rừng đặc dụng An Toàn - Tỉnh Bình Định', 'Thôn 2, An Toàn, An Lão, Bình Định', 'bqlrddat@snnptnt.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262355+07', 'system', '2023-07-26 08:40:35.262355+07', NULL);
INSERT INTO category."Organizations" VALUES ('4ea8fa8d-d5df-4784-5a2d-08db8d794ea2', '000.00.12.H08', 'H08.12', 'Sở Tài nguyên và Môi trường tỉnh Bình Định', '08 Hai Bà Trưng, TP.Quy Nhơn, tỉnh Bình Định', 'vanphong@stnmt.binhdinh.gov.vn', '(0256) 3813 275', NULL, 'stnmt.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262372+07', 'system', '2023-07-26 08:40:35.262372+07', NULL);
INSERT INTO category."Organizations" VALUES ('48aa0335-98c2-4708-5a06-08db8d794ea2', '000.24.06.H08', 'H08.6.24', 'Trung tâm khám phá khoa học - Tỉnh Bình Định', 'Số 10 Đại lộ Khoa học, thành phố Quy Nhơn, tỉnh Bình Định', NULL, '(0256) 2478999', NULL, 'explorascience.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262161+07', 'system', '2023-07-26 08:40:35.262161+07', NULL);
INSERT INTO category."Organizations" VALUES ('48cd3ca6-efcb-49fc-5a64-08db8d794ea2', '000.48.17.H08', 'H08.17.48', 'Trung tâm Y tế huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh', 'thinhdt@syt.binhdinh.gov.v', '(0256) 3888608', NULL, 'vancanhbd.health.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262667+07', 'system', '2023-07-26 08:40:35.262667+07', NULL);
INSERT INTO category."Organizations" VALUES ('48db3db3-e99f-4528-5aa8-08db8d794ea2', '000.74.32.H08', 'H08.32.74', 'UBND Phường Nhơn Thành - Thị xã An Nhơn - Tỉnh Bình Định', 'Nhơn Thành, Thị xã An Nhơn', 'nhonthanh@annhon.binhdinh.gov.vn', '(0256) 3537256', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263021+07', 'system', '2023-07-26 08:40:35.263021+07', NULL);
INSERT INTO category."Organizations" VALUES ('49057705-02bd-4a83-5ad2-08db8d794ea2', '000.79.33.H08', 'H08.33.79', 'UBND Xã Ân Phong - Huyện Hoài Ân - Tỉnh Bình Định', 'Ân Phong- Hoài Ân', 'ubndanphong@hoaian.binhdinh.gov.vn', '(0256) 3870472', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263238+07', 'system', '2023-07-26 08:40:35.263238+07', NULL);
INSERT INTO category."Organizations" VALUES ('49675c07-f5da-4fd1-5a9b-08db8d794ea2', '000.12.32.H08', 'H08.32.12', 'Phòng Y tế - Thị xã An Nhơn - Tỉnh Bình Định', '02 Nguyễn Thị Minh Khai, Bình Định, An Nhơn', 'yte@annhon.binhdinh.gov.vn', '(0256) 3635146', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262958+07', 'system', '2023-07-26 08:40:35.262958+07', NULL);
INSERT INTO category."Organizations" VALUES ('49977dc4-d663-4115-5a40-08db8d794ea2', '000.22.13.H08', 'H08.13.22', 'Phòng Công chứng số 01 - Tỉnh Bình Định', '137 Lê Hồng Phong, Tp. Quy Nhơn, Bình Định', 'cc1@stp.binhdinh.gov.vn', '(0256) 3827145', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262475+07', 'system', '2023-07-26 08:40:35.262475+07', NULL);
INSERT INTO category."Organizations" VALUES ('4a8ea7e4-d62a-463b-5be2-08db8d794ea2', NULL, NULL, 'Đơn vị sự nghiệp thuộc UBND Huyện Vân Canh', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268237+07', 'system', '2023-07-26 08:40:35.268237+07', NULL);
INSERT INTO category."Organizations" VALUES ('4b54bcac-7016-4275-5a33-08db8d794ea2', NULL, 'H08.12.28', 'Chi nhánh Văn phòng đăng ký đất đai - Thành phố Quy Nhơn - Tỉnh Bình Định', '20 Đào Duy Từ, TP. Quy Nhơn', 'vpdkdd@stnmt.binhdinh.gov.vn', '(0256) 3816 573', NULL, 'stnmt.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262407+07', 'system', '2023-07-26 08:40:35.262407+07', NULL);
INSERT INTO category."Organizations" VALUES ('4c756b24-04bd-4930-5b82-08db8d794ea2', '000.88.37.H08', 'H08.37.88', 'UBND Xã Nhơn Hải - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267898+07', 'system', '2023-07-26 08:40:35.267898+07', NULL);
INSERT INTO category."Organizations" VALUES ('4cd6b8ba-3b1b-40b6-5b3f-08db8d794ea2', '000.73.36.H08', 'H08.36.73', 'UBND Xã Mỹ Cát - Huyện Phù Mỹ - Tỉnh Bình Định', 'Mỹ Cát - Phù Mỹ', 'ubndmycat@phumy.binhdinh.gov.vn', '(0256) 3657183', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267688+07', 'system', '2023-07-26 08:40:35.267688+07', NULL);
INSERT INTO category."Organizations" VALUES ('4ceb38c1-df64-4939-5bb6-08db8d794ea2', '000.07.39.H08', 'H08.39.7', 'Phòng Văn hóa - Thông tin - Huyện Tuy Phước - Tỉnh Bình Định', '17 Xuân Diệu, thị trấn Tuy Phước, Tuy Phước, Bình Định', 'vanhoathongtin@tuyphuoc.binhdinh.gov.vn', '(0256) 3633106', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268084+07', 'system', '2023-07-26 08:40:35.268085+07', NULL);
INSERT INTO category."Organizations" VALUES ('4d814e7b-5498-479b-5aec-08db8d794ea2', '000.30.34.H08', 'H08.34.30', 'Ban quản lý cảng cá và Dịch vụ đô thị thị xã Hoài Nhơn tỉnh Bình Định', 'Phường Tam Quan Bắc - TX Hoài Nhơn', 'bqlcangcatamquan@hoainhon.binhdinh.gov.vn', '(0256) 3861609', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263362+07', 'system', '2023-07-26 08:40:35.263362+07', NULL);
INSERT INTO category."Organizations" VALUES ('4d82d5f6-bb75-4ffd-5a46-08db8d794ea2', NULL, 'H08.15.20', 'Nhà Hát nghệ thuật truyền thống', '590 Nguyễn Thái Học- Tp. Quy Nhơn tỉnh Bình Định', 'nhtdt@svhtt.binhdinh.gov.vn', '(0256) 3374715', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26251+07', 'system', '2023-07-26 08:40:35.26251+07', NULL);
INSERT INTO category."Organizations" VALUES ('4d9784f2-180d-4755-5bd3-08db8d794ea2', '000.00.40.H08', 'H08.40', 'UBND Huyện Vân Canh tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'ubndhuyenvancanh.@vancanh.binhdinh.gov.vn', '(0256) 3888361', NULL, 'vancanh.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268187+07', 'system', '2023-07-26 08:40:35.268187+07', NULL);
INSERT INTO category."Organizations" VALUES ('4dc3f624-41be-4875-5a87-08db8d794ea2', '000.74.31.H08', 'H08.31.74', 'UBND Xã An Toàn - Huyện An Lão - Tỉnh Bình Định', 'An Toàn - An Lão -BĐ', 'antoan@anlao.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262861+07', 'system', '2023-07-26 08:40:35.262861+07', NULL);
INSERT INTO category."Organizations" VALUES ('4df97b8b-5eeb-4676-5a45-08db8d794ea2', '000.00.15.H08', 'H08.15', 'Sở Văn hóa và Thể thao tỉnh Bình Định', '183 Lê Hồng Phong, phường Lê Hồng Phong, TP.Quy Nhơn, tỉnh Bình Định', 'vps@svhtt.binhdinh.gov.vn', '(0256) 3822231', NULL, 'svhtt.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262506+07', 'system', '2023-07-26 08:40:35.262506+07', NULL);
INSERT INTO category."Organizations" VALUES ('4e1d1fdb-9836-4b86-5b28-08db8d794ea2', '000.00.36.H08', 'H08.36', 'UBND Huyện Phù Mỹ tỉnh Bình Định', 'Thị trấn Phù Mỹ, huyện Phù Mỹ, tỉnh Bình Định', 'vanphong@phumy.binhdinh.gov.vn', '(0256) 3655209', NULL, 'phumy.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267609+07', 'system', '2023-07-26 08:40:35.267609+07', NULL);
INSERT INTO category."Organizations" VALUES ('4e5dacd1-224c-4276-5ae3-08db8d794ea2', '000.09.34.H08', 'H08.34.9', 'Thanh tra Thị xã- Thị xã Hoài Nhơn - Tỉnh Bình Định', 'Phường Bồng Sơn - TX Hoài Nhơn', 'thanhtra@hoainhon.binhdinh.gov.vn', '(0256) 3861740', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263317+07', 'system', '2023-07-26 08:40:35.263317+07', NULL);
INSERT INTO category."Organizations" VALUES ('4f212a78-b007-4b5a-5a60-08db8d794ea2', '000.44.17.H08', 'H08.17.44', 'Trung tâm Y tế huyện Hoài Nhơn - Tỉnh Bình Định', 'QL1A, Phường Tam Quan, thị xã Hoài Nhơn', 'thaobtth@syt.binhdinh.gov.vn', '(0256) 3765892', NULL, 'ttythoainhon.com.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262641+07', 'system', '2023-07-26 08:40:35.262641+07', NULL);
INSERT INTO category."Organizations" VALUES ('4faaa4b6-093a-426d-5bdc-08db8d794ea2', '000.08.40.H08', 'H08.40.8', 'Phòng Giáo dục - Đào Tạo - Huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'gddt@vancanh.binhdinh.gov.vn', '(0256) 3888341', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268217+07', 'system', '2023-07-26 08:40:35.268217+07', NULL);
INSERT INTO category."Organizations" VALUES ('4fddc688-8c8d-46da-5ab9-08db8d794ea2', '000.04.33.H08', 'H08.33.4', 'Phòng Tài Chính - Kế Hoạch - Huyện Hoài Ân - Tỉnh Bình Định', 'TT. Tăng Bạt Hổ - Hoài Ân', 'tckh@hoaian.binhdinh.gov.vn', '(0256) 3870252', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263097+07', 'system', '2023-07-26 08:40:35.263097+07', NULL);
INSERT INTO category."Organizations" VALUES ('504dd3fa-97df-4172-5a53-08db8d794ea2', '000.24.17.H08', 'H08.17.24', 'Bệnh viện Y học cổ truyền và Phục hồi chức năng - Tỉnh Bình Định', 'KV5 P.Nhơn Phú, TP.Quy Nhơn', 'hoavt1@syt.binhdinh.gov.vn', '(0256) 3548002', NULL, 'yhct.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262575+07', 'system', '2023-07-26 08:40:35.262575+07', NULL);
INSERT INTO category."Organizations" VALUES ('50ea1137-a8fb-480e-5c08-08db8d794ea2', '000.29.41.H08', 'H08.41.29', 'Công ty Cổ phần tổng hợp Vĩnh Thạnh - Huyện Vĩnh Thạnh - Tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'ctythvinhthanh@vinhthanh.binhdinh.gov.vn', '(0256) 866965157', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268361+07', 'system', '2023-07-26 08:40:35.268361+07', NULL);
INSERT INTO category."Organizations" VALUES ('5132dd52-f8ea-417c-5bea-08db8d794ea2', NULL, 'H08.40.29', 'Ban Chỉ huy Quân sự huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'bchqs@vancanh.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268264+07', 'system', '2023-07-26 08:40:35.268264+07', NULL);
INSERT INTO category."Organizations" VALUES ('5172a891-55a5-4f5b-5bd8-08db8d794ea2', '000.04.40.H08', 'H08.40.4', 'Phòng Tài Chính - Kế Hoạch - Huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'tckh@vancanh.binhdinh.gov.vn', '(0256) 3888604', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268204+07', 'system', '2023-07-26 08:40:35.268204+07', NULL);
INSERT INTO category."Organizations" VALUES ('51d4272b-12cf-4fb6-5a68-08db8d794ea2', '000.20.18.H08', 'H08.18.22', 'Ban quản lý dự án và giải phóng mặt bằng khu kinh tế tỉnh Bình Định', '83 Lê Hồng Phong, TP Quy Nhơn, tỉnh Bình Định', '@.kkt.binhdinh.gov.vn', '(0256) 3820965', NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262684+07', 'system', '2023-07-26 08:40:35.262684+07', NULL);
INSERT INTO category."Organizations" VALUES ('51e871e5-7f08-414b-5b13-08db8d794ea2', NULL, 'H08.35.30', 'Trung tâm Văn hóa - Thông tin Thể thao - Huyện Phù Cát - Tỉnh Bình Định', 'Thị trấn Ngô Mây - huyện Phù Cát - tỉnh Bình Định', 'ttvhtt@phucat.binhdinh.gov.vn', '(0256) H08.35.30', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263554+07', 'system', '2023-07-26 08:40:35.263554+07', NULL);
INSERT INTO category."Organizations" VALUES ('530f8310-822f-49f9-5a73-08db8d794ea2', '000.04.31.H08', 'H08.31.04', 'Phòng Tài Chính - Kế Hoạch - Huyện An Lão - Tỉnh Bình Định', 'Thôn 2 - Thị trấn An Lão - An Lão', 'taichinh@anlao.binhdinh.gov.vn', NULL, NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26274+07', 'system', '2023-07-26 08:40:35.26274+07', NULL);
INSERT INTO category."Organizations" VALUES ('53b36232-e5e7-43e2-5b5a-08db8d794ea2', '000.09.37.H08', 'H08.37.9', 'Thanh tra thành phố - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'tttp@quynhon.binhdinh.gov.vn', '(0256) 3 828 477', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267775+07', 'system', '2023-07-26 08:40:35.267775+07', NULL);
INSERT INTO category."Organizations" VALUES ('53bd7b74-01a1-4cca-5aa7-08db8d794ea2', '000.73.32.H08', 'H08.32.73', 'UBND Phường Đập Đá - Thị xã An Nhơn - Tỉnh Bình Định', 'Đập Đá, Thị xã An Nhơn', 'dapda@annhon.binhdinh.gov.vn', '(0256) 3839799', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263017+07', 'system', '2023-07-26 08:40:35.263017+07', NULL);
INSERT INTO category."Organizations" VALUES ('543a020c-6623-4a2c-5a51-08db8d794ea2', '000.22.17.H08', 'H08.17.22', 'Bệnh viện Đa khoa Khu vực Bồng Sơn - Tỉnh Bình Định', 'Số 202 Quang Trung,thị trấn Bồng Sơn,huyện Hoài Nhơn', 'huynhnth@syt.binhdinh.gov.vn', '(0256) 914036009', NULL, 'bvbs150798.com', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262566+07', 'system', '2023-07-26 08:40:35.262566+07', NULL);
INSERT INTO category."Organizations" VALUES ('55537dfb-79cf-49ad-5b85-08db8d794ea2', '000.91.37.H08', 'H08.37.91', 'UBND Xã Phước Mỹ - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267906+07', 'system', '2023-07-26 08:40:35.267906+07', NULL);
INSERT INTO category."Organizations" VALUES ('570bcb6f-4763-4443-5b1d-08db8d794ea2', '000.78.35.H08', 'H08.35.78', 'UBND Xã Cát Tiến - Huyện Phù Cát - Tỉnh Bình Định', '', 'cattien@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26359+07', 'system', '2023-07-26 08:40:35.26359+07', NULL);
INSERT INTO category."Organizations" VALUES ('577cef0d-5ba6-4fc6-5a56-08db8d794ea2', '000.31.17.H08', 'H08.17.31', 'Trung tâm Kiểm nghiệm Dược phẩm - Mỹ phẩm - Tỉnh Bình Định', 'Số 427 Trần Hưng Đạo, TP. Quy Nhơn', 'khanhtm@syt.binhdinh.gov.vn', '(0256) 3822609', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262597+07', 'system', '2023-07-26 08:40:35.262597+07', NULL);
INSERT INTO category."Organizations" VALUES ('580ba855-b09c-4400-5bc0-08db8d794ea2', '000.24.39.H08', 'H08.39.24', 'Hội Chữ thập đỏ huyện Tuy Phước', '69 Đào Tấn, thị trấn Tuy Phước, Tuy Phước, Bình Định', 'hoichuthapdo@tuyphuoc.binhdinh.gov.vn', '(0256) 3834205', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268121+07', 'system', '2023-07-26 08:40:35.268121+07', NULL);
INSERT INTO category."Organizations" VALUES ('5891685b-7235-41ab-5af7-08db8d794ea2', '000.80.34.H08', 'H08.34.80', 'UBND xã Hoài Phú thị xã Hoài Nhơn tỉnh Bình Định', 'Xã Hoài Phú - TX Hoài Nhơn', 'hoaiphu@hoainhon.binhdinh.gov.vn', '(0256) 3871 216', NULL, 'hoaiphu-hoainhon.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263418+07', 'system', '2023-07-26 08:40:35.263418+07', NULL);
INSERT INTO category."Organizations" VALUES ('58aa6056-f6b4-4879-5a5c-08db8d794ea2', '000.40.17.H08', 'H08.17.40', 'Trung tâm Y tế huyện Tuy Phước - Tỉnh Bình Định', 'Thị trấn Tuy Phước, huyện Tuy Phước', 'phongnt@syt.binhdinh.gov.vn', '(0256) 3833393', NULL, 'ttyttuyphuoc.com.vn/', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262623+07', 'system', '2023-07-26 08:40:35.262623+07', NULL);
INSERT INTO category."Organizations" VALUES ('58f16fbe-9578-47f6-5bfe-08db8d794ea2', '000.10.41.H08', 'H08.41.10', 'Phòng Kinh tế - Hạ tầng - Huyện Vĩnh Thạnh - Tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'kinhte@vinhthanh.binhdinh.gov.vn', '(0256) 3786789', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268327+07', 'system', '2023-07-26 08:40:35.268327+07', NULL);
INSERT INTO category."Organizations" VALUES ('58f2c40a-c38a-47f9-5bdb-08db8d794ea2', '000.07.40.H08', 'H08.40.7', 'Phòng Văn hóa - Thông tin - Huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'vhtt@vancanh.binhdinh.gov.vn', '(0256) 3888601', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268214+07', 'system', '2023-07-26 08:40:35.268214+07', NULL);
INSERT INTO category."Organizations" VALUES ('5946dbf2-375f-4e37-59fa-08db8d794ea2', NULL, 'H08.3.75', 'Trường TH, THCS và THPT iSchool', 'KV5, phường Nhơn Phú, Quy Nhơn, Bình Định', 'ischool@sgddt.binhdinh.gov.vn', '(0256) 33748255', NULL, 'ischool.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262085+07', 'system', '2023-07-26 08:40:35.262085+07', NULL);
INSERT INTO category."Organizations" VALUES ('59b3cdc3-9abd-47e9-59cb-08db8d794ea2', '000.28.03.H08', 'H08.3.28', 'Trường THPT Số 3 An Nhơn - Tỉnh Bình Định', 'Thôn Thọ Lộc I, Nhơn Thọ, An Nhơn, Bình Định', 'thptannhon3@sgddt.binhdinh.gov.vn', '(0256) 3837100', NULL, 'thpt-so3annhonbinhdinh.edu.vn/', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261813+07', 'system', '2023-07-26 08:40:35.261813+07', NULL);
INSERT INTO category."Organizations" VALUES ('59b3fa25-9e33-4c90-5b8c-08db8d794ea2', '000.05.38.H08', 'H08.38.5', 'Phòng Tài Nguyên và Môi Trường - Huyện Tây Sơn - Tỉnh Bình Định', '59 Phan Đình Phùng, thị trấn Phú Phong, huyện Tây Sơn', 'phongtnmt@tayson.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267929+07', 'system', '2023-07-26 08:40:35.267929+07', NULL);
INSERT INTO category."Organizations" VALUES ('5a715160-64a0-4f78-5ba2-08db8d794ea2', '000.75.38.H08', 'H08.38.75', 'UBND Xã Tây Phú - Huyện Tây Sơn - Tỉnh Bình Định', 'Thôn Phú Thịnh, xã Tây Phú', 'xatayphu@tayson.binhdinh.gov.vn', '(0256) 3880211', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268017+07', 'system', '2023-07-26 08:40:35.268017+07', NULL);
INSERT INTO category."Organizations" VALUES ('5a72ad4f-2fd7-4f0a-5bef-08db8d794ea2', '000.74.40.H08', 'H08.40.74', 'UBND Thị trấn Vân Canh - Huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh - Huyện Vân Canh - Tỉnh Bình Định', 'vancanh@vancanh.binhdinh.gov.vn', '(0256) 3888557', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268279+07', 'system', '2023-07-26 08:40:35.268279+07', NULL);
INSERT INTO category."Organizations" VALUES ('5ae9c7f9-3d50-43d0-5a19-08db8d794ea2', NULL, 'H08.10.24', 'Chi cục Thủy lợi - Tỉnh Bình Định', '15 Lý Thái Tổ, TP. Quy Nhơn, tỉnh Bình Định', 'cctl@snnptnt.binhdinh.gov.vn', '(0256) 3629981', NULL, 'pcttbinhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262259+07', 'system', '2023-07-26 08:40:35.262259+07', NULL);
INSERT INTO category."Organizations" VALUES ('5b1d4736-1512-4142-5b03-08db8d794ea2', '000.04.35.H08', 'H08.35.4', 'Phòng Tài Chính - Kế Hoạch - Huyện Phù Cát - Tỉnh Bình Định', '', 'tckh@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263476+07', 'system', '2023-07-26 08:40:35.263477+07', NULL);
INSERT INTO category."Organizations" VALUES ('5c14a0ae-9069-43ee-5ac5-08db8d794ea2', '000.23.33.H08', 'H08.33.23', 'Ban Quản lý Rừng phòng hộ - Huyện Hoài Ân - Tỉnh Bình Định', 'TT. Tăng Bạt Hổ - Hoài Ân', 'vtbqlrph@hoaian.binhdinh.gov.vn', '(0256) 3870283', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263164+07', 'system', '2023-07-26 08:40:35.263165+07', NULL);
INSERT INTO category."Organizations" VALUES ('5d2a0fba-f88e-4370-5a4b-08db8d794ea2', '000.29.15.H08', 'H08.15.29', 'Trung tâm huấn luyện và thi đấu thể thao - Tỉnh Bình Định', '236B Lê Hồng Phong - Tp. Quy Nhơn tỉnh Bình Định', 'tthltdtt@svhtt.binhdinh.gov.vn', '(0256) 3818773', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262531+07', 'system', '2023-07-26 08:40:35.262531+07', NULL);
INSERT INTO category."Organizations" VALUES ('5da96579-03c1-4af1-5bff-08db8d794ea2', '000.11.41.H08', 'H08.41.11', 'Phòng Nông nghiệp - Phát triển nông thôn - Huyện Vĩnh Thạnh - Tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'nongnghiep@vinhthanh.binhdinh.gov.vn', '(0256) 3886496', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268331+07', 'system', '2023-07-26 08:40:35.268331+07', NULL);
INSERT INTO category."Organizations" VALUES ('5e292b0a-cd17-4bdc-5a04-08db8d794ea2', '000.22.06.H08', 'H08.6.22', 'Trung tâm Thông tin - Ứng dụng KH&CN Bình Định', '386 Trần Hưng Đạo, thành phố Quy Nhơn, tỉnh Bình Định', NULL, '(0256) 3814667', NULL, 'biast.binhdinh.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262142+07', 'system', '2023-07-26 08:40:35.262142+07', NULL);
INSERT INTO category."Organizations" VALUES ('5eefa258-74a3-47e3-5b7e-08db8d794ea2', '000.84.37.H08', 'H08.37.84', 'UBND Phường Nhơn Phú - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267888+07', 'system', '2023-07-26 08:40:35.267888+07', NULL);
INSERT INTO category."Organizations" VALUES ('5f4b554b-bff4-410c-5bd6-08db8d794ea2', '000.02.40.H08', 'H08.40.2', 'Phòng Nội Vụ - Huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'nv@vancanh.binhdinh.gov.vn', '(0256) 3888699', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268197+07', 'system', '2023-07-26 08:40:35.268198+07', NULL);
INSERT INTO category."Organizations" VALUES ('5f9b48ef-ce96-4737-5b04-08db8d794ea2', '000.05.35.H08', 'H08.35.5', 'Phòng Tài Nguyên và Môi Trường - Huyện Phù Cát - Tỉnh Bình Định', '', 'tnmt@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263489+07', 'system', '2023-07-26 08:40:35.263489+07', NULL);
INSERT INTO category."Organizations" VALUES ('600a7ed6-749d-4c80-59e4-08db8d794ea2', '000.53.03.H08', 'H08.3.53', 'Trường THPT Mỹ Thọ - Tỉnh Bình Định', 'Thôn Chánh Trạch 3, xã Mỹ Thọ, Phù Mỹ, Bình Định', 'thptmytho@sgddt.binhdinh.gov.vn', '(0256) 3659228', NULL, 'truongthptmytho.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261966+07', 'system', '2023-07-26 08:40:35.261966+07', NULL);
INSERT INTO category."Organizations" VALUES ('600f4209-c78d-4b44-5bb7-08db8d794ea2', '000.08.39.H08', 'H08.39.8', 'Phòng Giáo dục - Đào Tạo - Huyện Tuy Phước - Tỉnh Bình Định', '84 Đào Tấn, thị trấn Tuy Phước, Tuy Phước, Bình Định', 'phonggiaoduc@tuyphuoc.binhdinh.gov.vn', '(0256) 3633112', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268088+07', 'system', '2023-07-26 08:40:35.268088+07', NULL);
INSERT INTO category."Organizations" VALUES ('6011b71b-f822-42dd-5a72-08db8d794ea2', '000.03.31.H08', 'H08.31.03', 'Phòng Tư Pháp - Huyện An Lão - Tỉnh Bình Định', 'Thôn 2 - Thị trấn An Lão - An Lão', 'tuphap@anlao.binhdinh.gov.vn', NULL, NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262736+07', 'system', '2023-07-26 08:40:35.262736+07', NULL);
INSERT INTO category."Organizations" VALUES ('601313c3-a69d-46b0-5b9a-08db8d794ea2', '000.26.38.H08', 'H08.38.26', 'Trung tâm phát triển quỹ đất - Huyện Tây Sơn - Tỉnh Bình Định', 'Trung tâm phát triển quỹ đất - Huyện Tây Sơn - Tỉnh Bình Định', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267976+07', 'system', '2023-07-26 08:40:35.267976+07', NULL);
INSERT INTO category."Organizations" VALUES ('604fd22e-2709-4212-5afe-08db8d794ea2', '000.87.34.H08', 'H08.87.34', 'UBND xã Hoài Sơn thị xã Hoài Nhơn tỉnh Bình Định', 'Xã Hoài Sơn - TX Hoài Nhơn', 'hoaison@hoainhon.binhdinh.gov.vn', '(0256) 3566 103', NULL, 'hoaison-hoainhon.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263456+07', 'system', '2023-07-26 08:40:35.263456+07', NULL);
INSERT INTO category."Organizations" VALUES ('60698f50-24b2-4e9b-5aad-08db8d794ea2', '000.79.32.H08', 'H08.32.79', 'UBND Xã Nhơn Mỹ - Thị xã An Nhơn - Tỉnh Bình Định', 'Nhơn Mỹ, Thị xã An Nhơn', 'nhonmy@annhon.binhdinh.gov.vn', '(0256) 3615219', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263041+07', 'system', '2023-07-26 08:40:35.263041+07', NULL);
INSERT INTO category."Organizations" VALUES ('608b78d5-abad-4036-5a0e-08db8d794ea2', NULL, 'H08.7.28', 'Trung tâm Giáo dục nghề nghiệp Bình Định - Tỉnh Bình Định', 'Tổ 6, khu vực 5, phường Nhơn Phú, thành phố Quy Nhơn, tỉnh Bình Định', 'ttgdnn@sldtbxh.binhdinh.gov.vn', '(0256) 2229239', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.2622+07', 'system', '2023-07-26 08:40:35.2622+07', NULL);
INSERT INTO category."Organizations" VALUES ('60bbf750-54dc-4b87-5b2b-08db8d794ea2', '000.02.36.H08', 'H08.36.02', 'Phòng Nội Vụ - Huyện Phù Mỹ - Tỉnh Bình Định', 'TT Phù Mỹ - Phù Mỹ', 'noivu@phumy.binhdinh.gov.vn', '(0256) 3855268', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267621+07', 'system', '2023-07-26 08:40:35.267621+07', NULL);
INSERT INTO category."Organizations" VALUES ('60e3e7c8-d335-442a-5b08-08db8d794ea2', '000.09.35.H08', 'H08.35.9', 'Thanh tra huyện - Huyện Phù Cát - Tỉnh Bình Định', '', 'thanhtra@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263504+07', 'system', '2023-07-26 08:40:35.263504+07', NULL);
INSERT INTO category."Organizations" VALUES ('616e6ce0-671e-479f-5a99-08db8d794ea2', '000.10.32.H08', 'H08.32.10', 'Phòng Kinh tế - Thị xã An Nhơn - Tỉnh Bình Định', '79 Lê Hồng Phong, Thị xã An Nhơn', 'kinhte@annhon.binhdinh.gov.vn', '(0256) 3735550', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262942+07', 'system', '2023-07-26 08:40:35.262942+07', NULL);
INSERT INTO category."Organizations" VALUES ('619a94a5-36ca-4665-5b0e-08db8d794ea2', '000.22.35.H08', 'H08.35.22', 'Văn phòng đăng ký quyền sử dụng đất - Huyện Phù Cát - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263526+07', 'system', '2023-07-26 08:40:35.263526+07', NULL);
INSERT INTO category."Organizations" VALUES ('621bc518-046e-4c3e-5bca-08db8d794ea2', '000.75.39.H08', 'H08.39.75', 'UBND Xã Phước Lộc - Huyện Tuy Phước - Tỉnh Bình Định', 'Thôn Hanh Quang, xã Phước Lộc, Tuy Phước, Bình Định', 'phuocloc@tuyphuoc.binhdinh.gov.vn', '(0256) 3832155', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268156+07', 'system', '2023-07-26 08:40:35.268156+07', NULL);
INSERT INTO category."Organizations" VALUES ('62ba4080-8f61-4714-5bc1-08db8d794ea2', NULL, 'H08.39.28', 'Ban Quản lý nước sạch và Vệ sinh môi trường huyện Tuy Phước', '459 Nguyễn Huệ, thị trấn Tuy Phước, Tuy Phước, Bình Định', 'vanthubqlns-vsmt@tuyphuoc.binhdinh.gov.vn', '(0256) 3634011', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268124+07', 'system', '2023-07-26 08:40:35.268124+07', NULL);
INSERT INTO category."Organizations" VALUES ('62fa1838-5c25-49eb-5b6e-08db8d794ea2', '000.41.37.H08', 'H08.37.41', 'Trung tâm bồi dưỡng chính trị - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'ttbdct@quynhon.binhdinh.gov.vn', '(0256) 3827232', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267843+07', 'system', '2023-07-26 08:40:35.267843+07', NULL);
INSERT INTO category."Organizations" VALUES ('63641f36-c42e-43b6-5bd1-08db8d794ea2', '000.82.39.H08', 'H08.39.82', 'UBND Xã Phước Quang - Huyện Tuy Phước - Tỉnh Bình Định', 'Thôn Định Thiện Tây, xã Phước Quang, Tuy Phước, Bình Định', 'phuocquang@tuyphuoc.binhdinh.gov.vn', '(0256) 3835251', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26818+07', 'system', '2023-07-26 08:40:35.26818+07', NULL);
INSERT INTO category."Organizations" VALUES ('63c3022e-541c-4f98-5ae8-08db8d794ea2', NULL, NULL, 'Đơn vị sự nghiệp thuộc UBND Thị xã Hoài Nhơn', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263346+07', 'system', '2023-07-26 08:40:35.263346+07', NULL);
INSERT INTO category."Organizations" VALUES ('648c2491-811f-4d09-5b84-08db8d794ea2', '000.90.37.H08', 'H08.37.90', 'UBND Xã Nhơn Châu - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267903+07', 'system', '2023-07-26 08:40:35.267904+07', NULL);
INSERT INTO category."Organizations" VALUES ('64a9eac1-7944-4925-5b01-08db8d794ea2', '000.02.35.H08', 'H08.35.2', 'Phòng Nội Vụ - Huyện Phù Cát - Tỉnh Bình Định', '', 'noivu@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263469+07', 'system', '2023-07-26 08:40:35.263469+07', NULL);
INSERT INTO category."Organizations" VALUES ('650e78c7-c0ab-438e-5b4f-08db8d794ea2', '000.89.36.H08', 'H08.36.89', 'UBND Xã Mỹ Hiệp - Huyện Phù Mỹ -Tỉnh Bình Định', 'Mỹ Hiệp - Phù Mỹ', 'ubndmyhiep@phumy.binhdinh.gov.vn', '(0256) 3856997', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267738+07', 'system', '2023-07-26 08:40:35.267738+07', NULL);
INSERT INTO category."Organizations" VALUES ('652ad2a5-5c52-4b37-5a0d-08db8d794ea2', '000.21.07.H08', 'H08.7.27', 'Cơ sở cai nghiện ma túy - Tỉnh Bình Định', 'Khu phố 7, phường Bùi Thị Xuân, thành phố Quy Nhơn, tỉnh Bình Định', 'ttgdldxh@sldtbxh.binhdinh.gov.vn', '(0256) 3510406', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262195+07', 'system', '2023-07-26 08:40:35.262195+07', NULL);
INSERT INTO category."Organizations" VALUES ('659d3e24-864e-4976-5bfc-08db8d794ea2', '000.08.41.H08', 'H08.41.8', 'Phòng Giáo dục - Đào Tạo - Huyện Vĩnh Thạnh - Tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'giaoduc@vinhthanh.binhdinh.gov.vn', '(0256) 6275275', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268321+07', 'system', '2023-07-26 08:40:35.268321+07', NULL);
INSERT INTO category."Organizations" VALUES ('666f165a-ca6a-48d5-59e2-08db8d794ea2', '000.51.03.H08', 'H08.3.51', 'Trường THPT Bình Dương - Tỉnh Bình Định', '02 Bùi Điền, Bình Dương, Phù Mỹ, Bình Định', 'thptbinhduong@sgddt.binhdinh.gov.vn', '(0256) 3858468', NULL, 'thptbinhduong-binhdinh.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261957+07', 'system', '2023-07-26 08:40:35.261957+07', NULL);
INSERT INTO category."Organizations" VALUES ('66a9da62-9f00-4e36-5bda-08db8d794ea2', '000.06.40.H08', 'H08.40.6', 'Phòng Lao động - Thương Binh và Xã hội - Huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'ldtbxh@vancanh.binhdinh.gov.vn', '(0256) 3888305', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26821+07', 'system', '2023-07-26 08:40:35.26821+07', NULL);
INSERT INTO category."Organizations" VALUES ('66fa74c0-5134-41a5-5ac2-08db8d794ea2', NULL, NULL, 'Đơn vị sự nghiệp thuộc UBND Huyện Hoài Ân', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263152+07', 'system', '2023-07-26 08:40:35.263152+07', NULL);
INSERT INTO category."Organizations" VALUES ('66ff8312-45a3-489d-5b7f-08db8d794ea2', '000.85.37.H08', 'H08.37.85', 'UBND Phường Bùi Thị Xuân - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26789+07', 'system', '2023-07-26 08:40:35.26789+07', NULL);
INSERT INTO category."Organizations" VALUES ('672c4a8e-cc79-41ea-5bdd-08db8d794ea2', '000.09.40.H08', 'H08.40.9', 'Thanh tra huyện - Huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'thanhtra@vancanh.binhdinh.gov.vn', '(0256) 842477930', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26822+07', 'system', '2023-07-26 08:40:35.26822+07', NULL);
INSERT INTO category."Organizations" VALUES ('6768bcf3-29a9-4fb4-5b75-08db8d794ea2', '000.75.37.H08', 'H08.37.75', 'UBND Phường Trần Phú - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267863+07', 'system', '2023-07-26 08:40:35.267863+07', NULL);
INSERT INTO category."Organizations" VALUES ('67b18270-34fd-4b74-5aa1-08db8d794ea2', '000.27.32.H08', 'H08.32.27', 'Trung tâm Giáo dục nghề nghiệp - Giáo dục thường xuyên - Thị xã An Nhơn - Tỉnh Bình Định', 'Bình Định, Thị xã An Nhơn', 'ttgdnn-gdtx@annhon.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262983+07', 'system', '2023-07-26 08:40:35.262983+07', NULL);
INSERT INTO category."Organizations" VALUES ('67b8552b-d0b8-4dd4-59d9-08db8d794ea2', '000.42.03.H08', 'H08.3.42', 'Trường THPT Số 2 Phù Cát - Tỉnh Bình Định', 'Xuân an, Cát Minh, Phù Cát, Bình Định', 'thptphucat2@sgddt.binhdinh.gov.vn', '(0256) 3854116', NULL, 'thptphucat2-binhdinh.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261906+07', 'system', '2023-07-26 08:40:35.261906+07', NULL);
INSERT INTO category."Organizations" VALUES ('67d586a1-985b-49b7-5acf-08db8d794ea2', '000.76.33.H08', 'H08.33.76', 'UBND Xã Ân Tường Đông - Huyện Hoài Ân - Tỉnh Bình Định', 'Ân Tường Đông- Hoài Ân', 'ubndantuongdong@hoaian.binhdinh.gov.vn', '(0256) 3573093', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263225+07', 'system', '2023-07-26 08:40:35.263226+07', NULL);
INSERT INTO category."Organizations" VALUES ('6805de43-b4e4-4855-5bb3-08db8d794ea2', '000.04.39.H08', 'H08.39.4', 'Phòng Tài Chính - Kế Hoạch - Huyện Tuy Phước - Tỉnh Bình Định', '290 Nguyễn Huệ, thị trấn Tuy Phước, Tuy Phước, Bình Định', 'phongtaichinh@tuyphuoc.binhdinh.gov.vn', '(0256) 3633364', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268073+07', 'system', '2023-07-26 08:40:35.268073+07', NULL);
INSERT INTO category."Organizations" VALUES ('683a90fa-4ba5-4230-5a47-08db8d794ea2', '000.22.15.H08', 'H08.15.22', 'Bảo tàng Quang Trung - Tỉnh Bình Định', 'Thị trấn Phú Phong - Huyện Tây Sơn - tỉnh Bình Định', 'btqt@svhtt.binhdinh.gov.vn', '(0256) 3780320', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262515+07', 'system', '2023-07-26 08:40:35.262515+07', NULL);
INSERT INTO category."Organizations" VALUES ('6844bf3d-57fc-459f-5b12-08db8d794ea2', '000.28.35.H08', 'H08.35.28', 'Trung tâm Giáo dục nghề nghiệp - Giáo dục thường xuyên - Huyện Phù Cát - Tỉnh Bình Định', '', 'gdtx@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263549+07', 'system', '2023-07-26 08:40:35.263549+07', NULL);
INSERT INTO category."Organizations" VALUES ('688d36fc-846c-46af-5bc8-08db8d794ea2', '000.73.39.H08', 'H08.39.73', 'UBND Xã Phước An - Huyện Tuy Phước - Tỉnh Bình Định', 'Thôn An Sơn 1, xã Phước An, Tuy Phước, Bình Định', 'phuocan@tuyphuoc.binhdinh.gov.vn', '(0256) 3777160', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268148+07', 'system', '2023-07-26 08:40:35.268148+07', NULL);
INSERT INTO category."Organizations" VALUES ('68ddb2b5-a4d4-443b-5ac7-08db8d794ea2', '000.27.33.H08', 'H08.33.27', 'Hội Chữ thập đỏ - Huyện Hoài Ân - Tỉnh Bình Định', 'TT. Tăng Bạt Hổ - Hoài Ân', 'vthctd@hoaian.binhdinh.gov.vn', '(0256) 3870280', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263172+07', 'system', '2023-07-26 08:40:35.263172+07', NULL);
INSERT INTO category."Organizations" VALUES ('68fc2af2-ad3b-4876-5b0d-08db8d794ea2', '000.21.35.H08', 'H08.35.21', 'Ban Quản lý Dự án Đầu tư và Xây dựng - Huyện Phù Cát - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263522+07', 'system', '2023-07-26 08:40:35.263522+07', NULL);
INSERT INTO category."Organizations" VALUES ('6949465e-c9e5-42fe-5add-08db8d794ea2', '000.03.34.H08', 'H08.34.3', 'Phòng Tư pháp- Thị xã Hoài Nhơn - Tỉnh Bình Định', 'Phường Bồng Sơn - TX Hoài Nhơn', 'phongtp@hoainhon.binhdinh.gov.vn', '(0256) 3861809', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263292+07', 'system', '2023-07-26 08:40:35.263292+07', NULL);
INSERT INTO category."Organizations" VALUES ('6a292bcf-1dfa-4425-5bf3-08db8d794ea2', '000.00.41.H08', 'H08.41', 'UBND Huyện Vĩnh Thạnh tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'vanphong@vinhthanh.binhdinh.gov.vn', '(0256) 3886887', NULL, 'vinhthanh.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268291+07', 'system', '2023-07-26 08:40:35.268291+07', NULL);
INSERT INTO category."Organizations" VALUES ('6a7daaca-21c4-42c5-5adc-08db8d794ea2', '000.02.34.H08', 'H08.34.2', 'Phòng Nội Vụ - Thị xã Hoài Nhơn - Tỉnh Bình Định', 'Phường Bồng Sơn - TX Hoài Nhơn', 'phongnv@hoainhon.binhdinh.gov.vn', '(0256) 3861643', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263287+07', 'system', '2023-07-26 08:40:35.263288+07', NULL);
INSERT INTO category."Organizations" VALUES ('6ad5dc84-f531-4bbe-5a6e-08db8d794ea2', '000.00.31.H08', 'H08.31', 'UBND Huyện An Lão tỉnh Bình Định', 'Thôn 2, Thị trấn An Lão, An Lão', 'vanphong@anlao.binhdinh.gov.vn', '(0256) 3875.291', NULL, 'anlao.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262718+07', 'system', '2023-07-26 08:40:35.262719+07', NULL);
INSERT INTO category."Organizations" VALUES ('6b662526-fa8d-4850-5b95-08db8d794ea2', '000.20.38.H08', 'H08.38.20', 'Ban Quản lý Dự án Đầu tư và Xây dựng - Huyện Tây Sơn - Tỉnh Bình Định', 'Đường Đống Đa, thị trấn Phú Phong', 'bqldadtxd@tayson.binhdinh.gov.vn', '(0256) 3880450', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267959+07', 'system', '2023-07-26 08:40:35.267959+07', NULL);
INSERT INTO category."Organizations" VALUES ('6b79c939-656f-47d4-5a38-08db8d794ea2', NULL, 'H08.12.34', 'Chi nhánh Văn phòng đăng ký đất đai - Thị xã Hoài Nhơn - Tỉnh Bình Định', '04 Đường 28-3, P. Bồng Sơn', 'vpdkdd@stnmt.binhdinh.gov.vn', '(0256) 3861 596', NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262431+07', 'system', '2023-07-26 08:40:35.262431+07', NULL);
INSERT INTO category."Organizations" VALUES ('6b9b5aa9-a06f-4eb4-5bd0-08db8d794ea2', '000.81.39.H08', 'H08.39.81', 'UBND Xã Phước Thắng - Huyện Tuy Phước - Tỉnh Bình Định', 'Thôn Tư Cung, xã Phước Thắng, Tuy Phước, Bình Định', 'phuocthang@tuyphuoc.binhdinh.gov.vn', '(0256) 3831324', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268177+07', 'system', '2023-07-26 08:40:35.268177+07', NULL);
INSERT INTO category."Organizations" VALUES ('6bd35c9f-8299-44c8-5c04-08db8d794ea2', NULL, 'H08.41.21', 'Ban Quản lý Dự án Đầu tư Xây dựng - Huyện Vĩnh Thạnh - Tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'bqlda@vinhthanh.binhdinh.gov.vn', '(0256) 3886325', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268347+07', 'system', '2023-07-26 08:40:35.268347+07', NULL);
INSERT INTO category."Organizations" VALUES ('6c837a7c-d653-4f94-59d2-08db8d794ea2', '000.35.03.H08', 'H08.3.35', 'Trường THPT Nguyễn Diêu - Tỉnh Bình Định', 'Thôn Phụng Sơn, xã Phước Sơn, Tuy Phước, Bình Định', 'thptnguyendieu@sgddt.binhdinh.gov.vn', '(0256) 3830145', NULL, 'thptnguyendieu_binhdinh.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261857+07', 'system', '2023-07-26 08:40:35.261857+07', NULL);
INSERT INTO category."Organizations" VALUES ('6cdcbfbe-ba35-42a3-5a0b-08db8d794ea2', '000.23.07.H08', 'H08.7.23', 'Trung tâm Nuôi dưỡng người tâm thần Hoài Nhơn - Tỉnh Bình Định', 'Thôn Phụng Du 1, xã Hoài Hảo, huyện Hoài Nhơn, tỉnh Bình Định', NULL, '(0256) 3863504', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262186+07', 'system', '2023-07-26 08:40:35.262186+07', NULL);
INSERT INTO category."Organizations" VALUES ('6e34d8d6-7fc6-4a7e-59df-08db8d794ea2', '000.48.03.H08', 'H08.3.48', 'Trường THPT Số 1 Phù Mỹ - Tỉnh Bình Định', '700 Quang Trung, Phù Mỹ, Bình Định.', 'thptphumy1@sgddt.binhdinh.gov.vn', '(0256) 3855292', NULL, 'www.thptso1phumy-binhdinh.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261944+07', 'system', '2023-07-26 08:40:35.261944+07', NULL);
INSERT INTO category."Organizations" VALUES ('6e8e2e64-4cb9-46cb-5b14-08db8d794ea2', NULL, 'H08.35.31', 'Trung tâm Dịch vụ Nông nghiệp - Huyện Phù Cát - Tỉnh Bình Định', 'Thị trấn Ngô Mây - huyện Phù Cát - tỉnh Bình Định', 'ttdvnn@phucat.binhdinh.gov.vn', '(0256) H08.35.31', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263558+07', 'system', '2023-07-26 08:40:35.263558+07', NULL);
INSERT INTO category."Organizations" VALUES ('6e9e8a2c-b9ea-4f92-5ad4-08db8d794ea2', '000.81.33.H08', 'H08.33.81', 'UBND Xã Ân Đức - Huyện Hoài Ân - Tỉnh Bình Định', 'Ân Đức- Hoài Ân', 'ubndanduc@hoaian.binhdinh.gov.vn', '(0256) 3670459', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263246+07', 'system', '2023-07-26 08:40:35.263246+07', NULL);
INSERT INTO category."Organizations" VALUES ('6e9fba21-beaf-49ad-5b98-08db8d794ea2', '000.23.38.H08', 'H08.38.23', 'Ban Quản lý cấp và thoát nước - Huyện Tây Sơn - Tỉnh Bình Định', 'Khối Phú Văn, thị trấn Phú Phong', 'bqlctn@tayson.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267969+07', 'system', '2023-07-26 08:40:35.267969+07', NULL);
INSERT INTO category."Organizations" VALUES ('6ee139ff-1adf-4ab9-5a20-08db8d794ea2', '000.36.10.H08', 'H08.10.36', 'Ban Quản lý Cảng cá Bình Định - Tỉnh Bình Định', '26 Hàm Tử, p. Hải Cảng, TP. Quy Nhơn, tỉnh Bình Định', 'bqlccbd@snnptnt.binhdinh.gov.vn', '(0256) 3891810', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262299+07', 'system', '2023-07-26 08:40:35.262299+07', NULL);
INSERT INTO category."Organizations" VALUES ('6f1d4316-53ed-466c-5aa6-08db8d794ea2', '000.72.32.H08', 'H08.32.72', 'UBND Phường Nhơn Hưng - Thị xã An Nhơn - Tỉnh Bình Định', 'Nhơn Hưng, Thị xã An Nhơn', 'nhonhung@annhon.binhdinh.gov.vn', '(0256) 3835520', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263012+07', 'system', '2023-07-26 08:40:35.263012+07', NULL);
INSERT INTO category."Organizations" VALUES ('6f563a5a-037f-41ec-5a3f-08db8d794ea2', '000.21.13.H08', 'H08.13.21', 'Trung tâm Dịch vụ đấu giá tài sản Bình Định', '37 Phan Đình Phùng, Tp. Quy Nhơn, Bình Định', 'ttdvdgts@stp.binhdinh.gov.vn', '(0256) 3812837', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262471+07', 'system', '2023-07-26 08:40:35.262471+07', NULL);
INSERT INTO category."Organizations" VALUES ('6f8e080f-224a-4216-5a98-08db8d794ea2', '000.09.32.H08', 'H08.32.9', 'Thanh tra thị xã - Thị xã An Nhơn - Tỉnh Bình Định', '79 Lê Hồng Phong, Thị xã An Nhơn', 'thanhtra@annhon.binhdinh.gov.vn', '(0256) 3736741', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262938+07', 'system', '2023-07-26 08:40:35.262938+07', NULL);
INSERT INTO category."Organizations" VALUES ('7046df31-66e6-4f2f-5b86-08db8d794ea2', '000.00.38.H08', 'H08.38', 'UBND Huyện Tây Sơn tỉnh Bình Định', '59 Phan Đình Phùng, thị trấn Phú Phong, huyện Tây Sơn, tỉnh Bình Định', 'vanphong@tayson.binhdinh.gov.vn', '(0256) 3880993', NULL, 'tayson.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267909+07', 'system', '2023-07-26 08:40:35.267909+07', NULL);
INSERT INTO category."Organizations" VALUES ('70d1aef6-c8c9-4e84-5a0c-08db8d794ea2', '000.24.07.H08', 'H08.7.24', 'Trung tâm Dịch vụ việc làm Bình Định - Tỉnh Bình Định', '215 đường Trần Hưng Đạo, TP. Quy Nhơn, tỉnh Bình Định.', NULL, '(0256) 3846540', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262191+07', 'system', '2023-07-26 08:40:35.262191+07', NULL);
INSERT INTO category."Organizations" VALUES ('71705999-f9b3-4df2-5a1e-08db8d794ea2', '000.29.10.H08', 'H08.10.29', 'Trung tâm Giống cây trồng - Tỉnh Bình Định', '520 Hùng Vương, TP. Quy Nhơn, tỉnh Bình Định', 'ttgct@snnptnt.binhdinh.gov.vn', '(0256) 3848101', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262291+07', 'system', '2023-07-26 08:40:35.262291+07', NULL);
INSERT INTO category."Organizations" VALUES ('721c78f4-9a18-4b62-5b29-08db8d794ea2', NULL, NULL, 'Cơ quan chuyên môn thuộc UBND Huyện Phù Mỹ', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267614+07', 'system', '2023-07-26 08:40:35.267614+07', NULL);
INSERT INTO category."Organizations" VALUES ('73d68daa-33bd-424a-5a5b-08db8d794ea2', '000.39.17.H08', 'H08.17.39', 'Trung tâm Y tế thành phố Quy Nhơn - Tỉnh Bình Định', 'Số 114 Trần Hưng Đạo, TP. Quy Nhơn', 'phuongntt@syt.binhdinh.gov.vn', '(0256) 3893499', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262619+07', 'system', '2023-07-26 08:40:35.262619+07', NULL);
INSERT INTO category."Organizations" VALUES ('74483f79-c3c8-4156-5a57-08db8d794ea2', '000.35.17.H08', 'H08.17.35', 'Chi cục Dân số - Kế hoạch hóa gia đình - Tỉnh Bình Định', 'Số 86 Phạm Hùng, TP. Quy Nhơn', 'lentm@syt.binhdinh.gov.vn', '(0256) 3824841', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262602+07', 'system', '2023-07-26 08:40:35.262602+07', NULL);
INSERT INTO category."Organizations" VALUES ('745d16d8-6107-4542-5a10-08db8d794ea2', '000.00.09.H08', 'H08.9', 'Sở Nội vụ tỉnh Bình Định', '180 Tăng Bạt Hổ, TP.Quy Nhơn, tỉnh Bình Định', 'vp@snv.binhdinh.gov.vn', '(0256) 3822603', NULL, 'snv.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262219+07', 'system', '2023-07-26 08:40:35.262219+07', NULL);
INSERT INTO category."Organizations" VALUES ('75ac621b-5dc6-47b2-5a39-08db8d794ea2', NULL, 'H08.12.35', 'Chi nhánh Văn phòng đăng ký đất đai - Huyện Hoài Ân - Tỉnh Bình Định', '01 Nguyễn Tất Thành, TT. Tăng Bạc Hổ', 'vpdkdd@stnmt.binhdinh.gov.vn', '(0256) 3870 137', NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262445+07', 'system', '2023-07-26 08:40:35.262445+07', NULL);
INSERT INTO category."Organizations" VALUES ('75d79013-057e-4dbf-59da-08db8d794ea2', '000.44.03.H08', 'H08.3.43', 'Trường THPT Số 3 Phù Cát - Tỉnh Bình Định', 'Thôn Hưng Mỹ 1, xã Cát Hưng, Phù Cát, Bình Định', 'thptphucat3@sgddt.binhdinh.gov.vn', '(0256) 3853123, (0256) 3853503', NULL, 'sites.google.com/view/thptphucat3', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26191+07', 'system', '2023-07-26 08:40:35.26191+07', NULL);
INSERT INTO category."Organizations" VALUES ('76dfbcaf-2913-4a6b-5bb9-08db8d794ea2', '000.10.39.H08', 'H08.39.10', 'Phòng Kinh tế - Hạ tầng - Huyện Tuy Phước - Tỉnh Bình Định', '03 Đô Đốc Lộc, thị trấn tuy Phước, Tuy Phước, Bình Định', 'phongkinhtehatang@tuyphuoc.binhdinh.gov.vn', '(0256) 3633713', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268095+07', 'system', '2023-07-26 08:40:35.268095+07', NULL);
INSERT INTO category."Organizations" VALUES ('77594a22-0125-4ea7-5c01-08db8d794ea2', '000.13.41.H08', 'H08.41.13', 'Phòng Dân tộc - Huyện Vĩnh Thạnh - Tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'dantoc@vinhthanh.binhdinh.gov.vn', '(0256) 3786663', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268338+07', 'system', '2023-07-26 08:40:35.268338+07', NULL);
INSERT INTO category."Organizations" VALUES ('77c42bf6-c102-4e25-5b4b-08db8d794ea2', '000.85.36.H08', 'H08.36.85', 'UBND Xã Mỹ Chánh - Huyện Phù Mỹ -Tỉnh Bình Định', 'Mỹ Chánh - Phù Mỹ', 'ubndmychanh@phumy.binhdinh.gov.vn', '(0256) 3859440', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267726+07', 'system', '2023-07-26 08:40:35.267726+07', NULL);
INSERT INTO category."Organizations" VALUES ('78033f0c-8a2f-4f16-59d0-08db8d794ea2', '000.33.03.H08', 'H08.3.33', 'Trường THPT Số 2 Tuy Phước - Tỉnh Bình Định', 'Thôn Lương Quang, xã Phước Quang, Tuy Phước, Bình Định', 'thpttuyphuoc2@sgddt.binhdinh.gov.vn', '(0256) 3831365', NULL, 'thptso2tuyphuoc.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261848+07', 'system', '2023-07-26 08:40:35.261848+07', NULL);
INSERT INTO category."Organizations" VALUES ('79b5535d-b1e2-4bf6-5b62-08db8d794ea2', '000.23.37.H08', 'H08.37.23', 'Ban Quản lý dự án Đầu tư xây dựng và phát triển quỹ đất - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'thuctt@quynhon.binhdinh.gov.vn', '(0256) 3818588', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267802+07', 'system', '2023-07-26 08:40:35.267802+07', NULL);
INSERT INTO category."Organizations" VALUES ('7a40dbdd-f4fb-4eb1-5b26-08db8d794ea2', '000.87.35.H08', 'H08.35.87', 'UBND Xã Cát Hiệp - Huyện Phù Cát - Tỉnh Bình Định', '', 'cathiep@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263631+07', 'system', '2023-07-26 08:40:35.263631+07', NULL);
INSERT INTO category."Organizations" VALUES ('7a559716-cce5-40e3-5a7e-08db8d794ea2', '000.20.31.H08', 'H08.31.20', 'Ban Quản lý rừng phòng hộ - Huyện An Lão - Tỉnh Bình Định', 'Thôn 2 - Thị trấn An Lão - An Lão', 'phongho@anlao.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262816+07', 'system', '2023-07-26 08:40:35.262816+07', NULL);
INSERT INTO category."Organizations" VALUES ('7b63f11f-51a6-4f2c-59f3-08db8d794ea2', '000.68.03.H08', 'H08.3.68', 'Trường THPT Chuyên Chu Văn An - Tỉnh Bình Định', 'Khu phố 5, Bồng Sơn, Hoài Nhơn, Bình Định', 'thptchuyenchuvanan@sgddt.binhdinh.gov.vn', '(0256) 3676268', NULL, 'thptchuyenchuvanan-binhdinh.edu.vn/', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262052+07', 'system', '2023-07-26 08:40:35.262052+07', NULL);
INSERT INTO category."Organizations" VALUES ('7b7eba64-dc5d-4ab8-5b20-08db8d794ea2', '000.81.35.H08', 'H08.35.81', 'UBND Xã Cát Khánh - Huyện Phù Cát - Tỉnh Bình Định', '', 'catkhanh@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263611+07', 'system', '2023-07-26 08:40:35.263611+07', NULL);
INSERT INTO category."Organizations" VALUES ('7bc42b1c-c262-40ee-5aeb-08db8d794ea2', NULL, 'H08.34.33', 'Trung tâm Văn hóa - Thông tin - Thể thao thị xã Hoài Nhơn tỉnh Bình Định', 'Phường Bồng Sơn - TX Hoài Nhơn', 'ttvhtt@hoainhon.binhdinh.gov.vn', '(0256) 3861146', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263358+07', 'system', '2023-07-26 08:40:35.263358+07', NULL);
INSERT INTO category."Organizations" VALUES ('7c4028c8-69d0-44d4-5a4e-08db8d794ea2', '000.21.16.H08', 'H08.16.21', 'Trung tâm Quy hoạch và Kiểm định xây dựng - Tỉnh Bình Định', '505 Lê Hồng Phong- Tp. Quy Nhơn tỉnh Bình Định', 'ttqhkdxd@sxd.binhdinh.gov.vn', '(0256) 3811330', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262553+07', 'system', '2023-07-26 08:40:35.262553+07', NULL);
INSERT INTO category."Organizations" VALUES ('7cf301f1-c4d8-4f55-5b2c-08db8d794ea2', '000.03.36.H08', 'H08.36.03', 'Phòng Tư Pháp - Huyện Phù Mỹ - Tỉnh Bình Định', 'TT Phù Mỹ - Phù Mỹ', 'tuphap@phumy.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267624+07', 'system', '2023-07-26 08:40:35.267625+07', NULL);
INSERT INTO category."Organizations" VALUES ('7d383e83-7633-4238-5ab2-08db8d794ea2', '000.84.32.H08', 'H08.32.84', 'UBND Xã Nhơn Hậu - Thị xã An Nhơn - Tỉnh Bình Định', 'Nhơn Hậu, Thị xã An Nhơn', 'nhonhau@annhon.binhdinh.gov.vn', '(0256) 2213204', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263069+07', 'system', '2023-07-26 08:40:35.26307+07', NULL);
INSERT INTO category."Organizations" VALUES ('7e162f3c-1d64-4c0b-5b30-08db8d794ea2', '000.07.36.H08', 'H08.36.07', 'Phòng Văn hóa - Thông tin - Huyện Phù Mỹ - Tỉnh Bình Định', 'TT Phù Mỹ - Phù Mỹ', 'vhtt@phumy.binhdinh.gov.vn', '(0256) 3655315', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267638+07', 'system', '2023-07-26 08:40:35.267638+07', NULL);
INSERT INTO category."Organizations" VALUES ('7e4130b5-a66e-476f-5aea-08db8d794ea2', NULL, 'H08.34.32', 'Trung tâm Dịch vụ nông nghiệp thị xã Hoài Nhơn tỉnh Bình Định', 'Phường Hoài Tân - TX Hoài Nhơn', 'ttdvnn@hoainhon.binhdinh.gov.vn', '(0256) 3861 626', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263354+07', 'system', '2023-07-26 08:40:35.263354+07', NULL);
INSERT INTO category."Organizations" VALUES ('7f0d1b2d-26a6-4a25-5ba7-08db8d794ea2', '000.80.38.H08', 'H08.38.80', 'UBND Xã Bình Tường - Huyện Tây Sơn - Tỉnh Bình Định', 'Thôn Hòa Trung, xã Bình Tường', 'xabinhtuong@tayson.binhdinh.gov.vn', '(0256) 3880232', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268033+07', 'system', '2023-07-26 08:40:35.268033+07', NULL);
INSERT INTO category."Organizations" VALUES ('7f5ab234-3fd5-4905-5ba0-08db8d794ea2', '000.73.38.H08', 'H08.38.73', 'UBND Xã Tây Giang - Huyện Tây Sơn - Tỉnh Bình Định', 'Thôn Tả Giang 2, xã Tây Giang', 'xataygiang@tayson.binhdinh.gov.vn', '(0256) 3884317', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26801+07', 'system', '2023-07-26 08:40:35.26801+07', NULL);
INSERT INTO category."Organizations" VALUES ('7fc1f824-23a8-4ef6-5b2d-08db8d794ea2', '000.04.36.H08', 'H08.36.04', 'Phòng Tài Chính - Kế Hoạch - Huyện Phù Mỹ - Tỉnh Bình Định', 'TT Phù Mỹ - Phù Mỹ', 'tckh@phumy.binhdinh.gov.vn', '(0256) 3505099', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267628+07', 'system', '2023-07-26 08:40:35.267628+07', NULL);
INSERT INTO category."Organizations" VALUES ('81143aa7-0e55-4243-5bc6-08db8d794ea2', '000.71.39.H08', 'H08.39.71', 'UBND Thị trấn Tuy Phước - Huyện Tuy Phước - Tỉnh Bình Định', '371 Nguyễn Huệ, thị trấn Tuy Phước, Tuy Phước, Bình Định', 'tuyphuoc@tuyphuoc.binhdinh.gov.vn', '(0256) 3633307', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268141+07', 'system', '2023-07-26 08:40:35.268141+07', NULL);
INSERT INTO category."Organizations" VALUES ('812e9514-7447-4346-5ba3-08db8d794ea2', '000.76.38.H08', 'H08.38.76', 'UBND Xã Tây Xuân - Huyện Tây Sơn - Tỉnh Bình Định', 'Thôn Phú An, xã Tây Phú', 'xatayxuan@tayson.binhdinh.gov.vn', '(0256) 3880237', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26802+07', 'system', '2023-07-26 08:40:35.26802+07', NULL);
INSERT INTO category."Organizations" VALUES ('8188f999-b9be-4e0f-5b9f-08db8d794ea2', '000.72.38.H08', 'H08.38.72', 'UBND Xã Tây Thuận - Huyện Tây Sơn - Tỉnh Bình Định', 'Thôn Tiên Thuận, xã Tây Thuận', 'xataythuan@tayson.binhdinh.gov.vn', '(0256) 3584352', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268007+07', 'system', '2023-07-26 08:40:35.268007+07', NULL);
INSERT INTO category."Organizations" VALUES ('81fae295-9f7c-4e3a-5b00-08db8d794ea2', '000.01.35.H08', 'H08.35.1', 'Văn Phòng HĐND và UBND - Huyện Phù Cát - Tỉnh Bình Định', '141 đường Quang Trung, Thị Trấn Ngô Mây, huyện Phù Cát , tỉnh Bình Định', 'vp@phucat.binhdinh.gov.vn', '(0256) 3850214', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263465+07', 'system', '2023-07-26 08:40:35.263465+07', NULL);
INSERT INTO category."Organizations" VALUES ('8209dbf8-dd58-4a98-5bab-08db8d794ea2', '000.84.38.H08', 'H08.38.84', 'UBND Xã Tây An - Huyện Tây Sơn - Tỉnh Bình Định', 'Thôn Trà Sơn, xã Tây An', 'xatayan@tayson.binhdinh.gov.vn', '(0256) 3883356', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268046+07', 'system', '2023-07-26 08:40:35.268046+07', NULL);
INSERT INTO category."Organizations" VALUES ('82cb8501-fc5f-42d6-5c00-08db8d794ea2', '000.12.41.H08', 'H08.41.12', 'Phòng Y tế - Huyện Vĩnh Thạnh - Tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'yte@vinhthanh.binhdinh.gov.vn', '(0256) 3786149', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268335+07', 'system', '2023-07-26 08:40:35.268335+07', NULL);
INSERT INTO category."Organizations" VALUES ('832ece80-7d0c-4ba5-5b90-08db8d794ea2', '000.09.38.H08', 'H08.38.9', 'Thanh tra huyện - Huyện Tây Sơn - Tỉnh Bình Định', 'Đường Bùi Thị Xuân, thị trấn Phú Phong', 'thanhtra@tayson.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267942+07', 'system', '2023-07-26 08:40:35.267943+07', NULL);
INSERT INTO category."Organizations" VALUES ('834211c0-fd45-48c5-5a90-08db8d794ea2', '000.01.32.H08', 'H08.32.1', 'Văn Phòng HĐND và UBND - Thị xã An Nhơn - Tỉnh Bình Định', '78 Lê Hồng Phong, Thị xã An Nhơn', 'vanphong@annhon.binhdinh.gov.vn', '(0256) 3735067', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262904+07', 'system', '2023-07-26 08:40:35.262904+07', NULL);
INSERT INTO category."Organizations" VALUES ('836a8a8c-1258-4e96-5b1c-08db8d794ea2', '000.77.35.H08', 'H08.35.77', 'UBND Xã Cát Chánh - Huyện Phù Cát - Tỉnh Bình Định', '', 'catchanh@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263586+07', 'system', '2023-07-26 08:40:35.263586+07', NULL);
INSERT INTO category."Organizations" VALUES ('83770221-2112-4d06-59fc-08db8d794ea2', '000.00.04.H08', 'H08.4', 'Sở Giao thông vận tải tỉnh Bình Định', '08 Lê Thánh Tôn, phường Lê Lợi, TP.Quy Nhơn, tỉnh Bình Định', 'vpsgtvtbd@sgtvt.binhdinh.gov.vn', '(0256) 3892172', NULL, 'sgtvt.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262103+07', 'system', '2023-07-26 08:40:35.262103+07', NULL);
INSERT INTO category."Organizations" VALUES ('83aced3b-570b-49d4-5a86-08db8d794ea2', '000.73.31.H08', 'H08.31.73', 'UBND Xã An Quang - Huyện An Lão - Tỉnh Bình Định', 'An Quang - An Lão-BĐ', 'anquang@anlao.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262857+07', 'system', '2023-07-26 08:40:35.262857+07', NULL);
INSERT INTO category."Organizations" VALUES ('83b04a2c-9b42-4adc-5abb-08db8d794ea2', '000.06.33.H08', 'H08.33.6', 'Phòng Lao động - Thương Binh và Xã hội - Huyện Hoài Ân - Tỉnh Bình Định', 'TT. Tăng Bạt Hổ - Hoài Ân', 'ldtbxh@hoaian.binhdinh.gov.vn', '(0256) 3770554', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263105+07', 'system', '2023-07-26 08:40:35.263105+07', NULL);
INSERT INTO category."Organizations" VALUES ('84d82170-781e-426a-59fb-08db8d794ea2', NULL, 'H08.3.76', 'Trường THPT Quy Nhơn', '325 Nguyễn Thị Minh Khai, Quy Nhơn, Bình Định', 'thptquynhon@sgddt.binhdinh.gov.vn', '(0256) 3646179', NULL, 'quynhon.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262089+07', 'system', '2023-07-26 08:40:35.262089+07', NULL);
INSERT INTO category."Organizations" VALUES ('85bfb4ca-19a8-422b-5bc3-08db8d794ea2', NULL, 'H08.39.30', 'Ban Quản lý Dự án Đầu tư xây dựng và Phát triển Quỹ đất huyện Tuy Phước', '381 Nguyễn Huệ, thị trấn Tuy Phước, Tuy Phước, Bình Định', 'banquanlyduan@tuyphuoc.binhdinh.gov.vn', '(0256) 3633361', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268131+07', 'system', '2023-07-26 08:40:35.268131+07', NULL);
INSERT INTO category."Organizations" VALUES ('8608883c-6466-4691-5b5c-08db8d794ea2', '000.11.37.H08', 'H08.37.11', 'Phòng Quản lý đô thị - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'yenntn@quynhon.binhdinh.gov.vn', '(0256) 3605968', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267782+07', 'system', '2023-07-26 08:40:35.267782+07', NULL);
INSERT INTO category."Organizations" VALUES ('8622e244-09cf-4a1d-5b7b-08db8d794ea2', '000.81.37.H08', 'H08.37.81', 'UBND Phường Lý Thường Kiệt - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26788+07', 'system', '2023-07-26 08:40:35.26788+07', NULL);
INSERT INTO category."Organizations" VALUES ('86abce31-0e9b-400d-5ab3-08db8d794ea2', '000.85.32.H08', 'H08.32.85', 'UBND Xã Nhơn Khánh - Thị xã An Nhơn - Tỉnh Bình Định', 'Nhơn Khánh, Thị xã An Nhơn', 'nhonkhanh@annhon.binhdinh.gov.vn', '(0256) 3626639', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263073+07', 'system', '2023-07-26 08:40:35.263073+07', NULL);
INSERT INTO category."Organizations" VALUES ('86c8199b-d2ef-4c05-5a82-08db8d794ea2', NULL, 'H08.31.27', 'Ban Quản lý Dự án Đầu tư và Xây dựng -TTPTQĐ - Huyện An Lão - Tỉnh Bình Định', 'Thôn 2 - Thị trấn An Lão - An Lão', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262842+07', 'system', '2023-07-26 08:40:35.262842+07', NULL);
INSERT INTO category."Organizations" VALUES ('8717561c-33b2-46d4-5afc-08db8d794ea2', '000.85.34.H08', 'H08.34.85', 'UBND xã Hoài Châu Bắc thị xã Hoài Nhơn tỉnh Bình Định', 'Xã Hoài Châu Bắc - TX Hoài Nhơn', 'hoaichaubac@hoainhon.binhdinh.gov.vn', '(0256) 3864505', NULL, 'hoaichaubac-hoainhon.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263448+07', 'system', '2023-07-26 08:40:35.263448+07', NULL);
INSERT INTO category."Organizations" VALUES ('8744659f-04cf-4648-5a4f-08db8d794ea2', '000.00.17.H08', 'H08.17', 'Sở Y tế tỉnh Bình Định', '756 Trần Hưng Đạo , TP.Quy Nhơn, tỉnh Bình Định', 'vanphong@syt.binhdinh.gov.vn', '(0256) 3792549', NULL, 'syt.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262557+07', 'system', '2023-07-26 08:40:35.262557+07', NULL);
INSERT INTO category."Organizations" VALUES ('877aef77-4a46-4577-5bf1-08db8d794ea2', '000.76.40.H08', 'H08.40.76', 'UBND Xã Canh Hiển - Huyện Vân Canh - Tỉnh Bình Định', 'Canh Hiển - Huyện Vân Canh - Tỉnh Bình Định', 'canhhien@vancanh.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268285+07', 'system', '2023-07-26 08:40:35.268285+07', NULL);
INSERT INTO category."Organizations" VALUES ('87838ec7-e6fa-4aaf-5a69-08db8d794ea2', '000.00.19.H08', 'H08.19', 'Thanh tra tỉnh Bình Định', '62A Diên Hồng, TP.Quy Nhơn, tỉnh Bình Định', 'ttt@ttt.binhdinh.gov.vn', '(0256) 3522585', NULL, 'ttt.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262689+07', 'system', '2023-07-26 08:40:35.262689+07', NULL);
INSERT INTO category."Organizations" VALUES ('89075674-057c-4dcf-5aca-08db8d794ea2', '000.71.33.H08', 'H08.33.71', 'UBND Thị trấn Tăng Bạt Hổ - Huyện Hoài Ân - Tỉnh Bình Định', 'TT. Tăng Bạt Hổ - Hoài Ân', 'ubndtttbh@hoaian.binhdinh.gov.vn', '(0256) 3770119', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263184+07', 'system', '2023-07-26 08:40:35.263184+07', NULL);
INSERT INTO category."Organizations" VALUES ('89091c07-3b16-4585-5aaf-08db8d794ea2', '000.81.32.H08', 'H08.32.81', 'UBND Xã Nhơn Lộc - Thị xã An Nhơn - Tỉnh Bình Định', 'Nhơn Lộc, Thị xã An Nhơn', 'nhonloc@annhon.binhdinh.gov.vn', '(0256) 3837144', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263048+07', 'system', '2023-07-26 08:40:35.263048+07', NULL);
INSERT INTO category."Organizations" VALUES ('895c995a-aaa4-418f-5a1c-08db8d794ea2', '000.27.10.H08', 'H08.10.27', 'Trung tâm Khuyến nông - Tỉnh Bình Định', '127 Lê Hồng Phong, TP. Quy Nhơn, tỉnh Bình Định', 'ttkn@snnptnt.binhdinh.gov.vn', '(0256) 3812520', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262282+07', 'system', '2023-07-26 08:40:35.262282+07', NULL);
INSERT INTO category."Organizations" VALUES ('898c0070-6327-480b-5acc-08db8d794ea2', '000.73.33.H08', 'H08.33.73', 'UBND Xã Ân Tín - Huyện Hoài Ân - Tỉnh Bình Định', 'Ân Tin- Hoài Ân', 'ubndantin@hoaian.binhdinh.gov.vn', '(0256) 3874411', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263192+07', 'system', '2023-07-26 08:40:35.263192+07', NULL);
INSERT INTO category."Organizations" VALUES ('8e40dcfc-efa1-4694-5c0a-08db8d794ea2', '000.71.41.H08', 'H08.41.71', 'UBND Thị trấn Vĩnh Thạnh - Huyện Vĩnh Thạnh - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268367+07', 'system', '2023-07-26 08:40:35.268367+07', NULL);
INSERT INTO category."Organizations" VALUES ('899f7aa0-15f1-4b1a-5c03-08db8d794ea2', '000.20.41.H08', 'H08.41.20', 'Ban Quản lý rừng phòng hộ huyện Vĩnh Thạnh tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'bqlrph@vinhthanh.binhdinh.gov.vn', '(0256) 3786710', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268344+07', 'system', '2023-07-26 08:40:35.268344+07', NULL);
INSERT INTO category."Organizations" VALUES ('89a1cc5f-2280-4e17-5a83-08db8d794ea2', NULL, NULL, 'Các xã thuộc UBND Huyện An Lão', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262846+07', 'system', '2023-07-26 08:40:35.262846+07', NULL);
INSERT INTO category."Organizations" VALUES ('89a77631-60af-4678-5a84-08db8d794ea2', '000.71.31.H08', 'H08.31.71', 'UBND Xã An Hòa - Huyện An Lão - Tỉnh Bình Định', 'An Hòa - An Lão -BĐ', 'anhoa@anlao.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26285+07', 'system', '2023-07-26 08:40:35.26285+07', NULL);
INSERT INTO category."Organizations" VALUES ('89c23823-71bb-4c5d-5b5b-08db8d794ea2', '000.10.37.H08', 'H08.37.10', 'Phòng Kinh tế - Hạ tầng - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'vanthupkt@quynhon.binhdinh.gov.vn', '(0256) 3826866', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267779+07', 'system', '2023-07-26 08:40:35.267779+07', NULL);
INSERT INTO category."Organizations" VALUES ('89de387b-578b-4a2b-5bb4-08db8d794ea2', '000.05.39.H08', 'H08.39.5', 'Phòng Tài Nguyên và Môi Trường - Huyện Tuy Phước - Tỉnh Bình Định', '290 Nguyễn Huệ, thị trấn Tuy Phước, Tuy Phước, Bình Định', 'phongtainguyen@tuyphuoc.binhdinh.gov.vn', '(0256) 3633202', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268077+07', 'system', '2023-07-26 08:40:35.268077+07', NULL);
INSERT INTO category."Organizations" VALUES ('8a107405-da11-48b5-5bbf-08db8d794ea2', '000.23.39.H08', 'H08.39.23', 'Trung tâm Văn hóa Thông tin - Thể thao - Huyện Tuy Phước - Tỉnh Bình Định', '17 Xuân Diệu, thị trấn Tuy Phước, Tuy Phước, Bình Định', 'trungtamvanhoa@tuyphuoc.binhdinh.gov.vn', '(0256) 3633607', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268117+07', 'system', '2023-07-26 08:40:35.268117+07', NULL);
INSERT INTO category."Organizations" VALUES ('8a284ebe-ad62-4cac-59e3-08db8d794ea2', '000.52.03.H08', 'H08.3.52', 'Trường THPT An Lương', 'Thôn Chánh Thiện, xã Mỹ Chánh, Phù Mỹ, BĐ', 'thptanluong@sgddt.binhdinh.gov.vn', '(0256) 3759560', NULL, 'Chưa sử dụng', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261961+07', 'system', '2023-07-26 08:40:35.261961+07', NULL);
INSERT INTO category."Organizations" VALUES ('8a428d95-ec84-4a3d-5a12-08db8d794ea2', '000.21.09.H08', 'H08.9.21', 'Ban Tôn giáo - Tỉnh Bình Định', '82 Lê Hồng Phong, Thành phố Quy Nhơn, tỉnh Bình Định', 'bantg@snv.binhdinh.gov.vn', '(0256) 3811022', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262227+07', 'system', '2023-07-26 08:40:35.262227+07', NULL);
INSERT INTO category."Organizations" VALUES ('8aed1e43-7b1e-4257-59cd-08db8d794ea2', '000.30.03.H08', 'H08.3.30', 'Trường THPT Nguyễn Đình Chiểu - Tỉnh Bình Định', '108 Nguyễn Đình Chiểu, An Nhơn, Bình Định', 'thptnguyendinhchieu@sgddt.binhdinh.gov.vn', '(0256) 3835345', NULL, 'Thptnguyendinhchieu-binhdinh.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261834+07', 'system', '2023-07-26 08:40:35.261834+07', NULL);
INSERT INTO category."Organizations" VALUES ('8af205cf-0b9c-4675-5b05-08db8d794ea2', '000.06.35.H08', 'H08.35.6', 'Phòng Lao động - Thương Binh và Xã hội - Huyện Phù Cát - Tỉnh Bình Định', '', 'ldtbxh@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263493+07', 'system', '2023-07-26 08:40:35.263493+07', NULL);
INSERT INTO category."Organizations" VALUES ('8b4551b6-da48-4698-5bc5-08db8d794ea2', NULL, NULL, 'Các xã thuộc UBND Huyện Tuy Phước', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268139+07', 'system', '2023-07-26 08:40:35.268139+07', NULL);
INSERT INTO category."Organizations" VALUES ('8b5e03cc-4b54-46bb-5b3a-08db8d794ea2', '000.20.36.H08', 'H08.36.20', 'Trung tâm Văn hoá Thông tin - Thể Thao - Huyện Phù Mỹ - Tỉnh Bình Định', 'TT Phù Mỹ - Phù Mỹ', 'ttvhtt@phumy.binhdinh.gov.vn', '(0256) 3855668', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26767+07', 'system', '2023-07-26 08:40:35.26767+07', NULL);
INSERT INTO category."Organizations" VALUES ('8b6cb3ce-d65c-41b6-5bed-08db8d794ea2', '000.72.40.H08', 'H08.40.72', 'UBND Xã Canh Hòa - Huyện Vân Canh - Tỉnh Bình Định', 'Canh Hòa - Huyện Vân Canh - Tỉnh Bình Định', 'canhhoa@vancanh.binhdinh.gov.vn', '(0256) 3888216', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268273+07', 'system', '2023-07-26 08:40:35.268273+07', NULL);
INSERT INTO category."Organizations" VALUES ('8b9c8efb-2819-4146-5be4-08db8d794ea2', '000.22.40.H08', 'H08.40.22', 'Trung tâm Văn hóa Thông tin - Thể thao - Huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'ttvhtttt@vancanh.binhdinh.gov.vn', '(0256) 914571377', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268243+07', 'system', '2023-07-26 08:40:35.268243+07', NULL);
INSERT INTO category."Organizations" VALUES ('8c04e2f1-bbe3-4893-5b32-08db8d794ea2', '000.09.36.H08', 'H08.36.09', 'Thanh tra huyện - Huyện Phù Mỹ - Tỉnh Bình Định', 'TT Phù Mỹ - Phù Mỹ', 'thanhtra@phumy.binhdinh.gov.vn', '(0256) 3855263', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267644+07', 'system', '2023-07-26 08:40:35.267644+07', NULL);
INSERT INTO category."Organizations" VALUES ('8c950757-9d20-4b1b-5bb1-08db8d794ea2', '000.02.39.H08', 'H08.39.2', 'Phòng Nội Vụ - Huyện Tuy Phước - Tỉnh Bình Định', '290 Nguyễn Huệ, thị trấn Tuy Phước, Tuy Phước, Bình Định', 'phongnoivu@tuyphuoc.binhdinh.gov.vn', '(0256) 3634098', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268066+07', 'system', '2023-07-26 08:40:35.268066+07', NULL);
INSERT INTO category."Organizations" VALUES ('8d2bf23b-5f64-4759-5b94-08db8d794ea2', NULL, NULL, 'Đơn vị sự nghiệp thuộc UBND Huyện Tây Sơn', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267956+07', 'system', '2023-07-26 08:40:35.267956+07', NULL);
INSERT INTO category."Organizations" VALUES ('8d87a1dc-e7d5-45c5-5a13-08db8d794ea2', '000.23.09.H08', 'H08.9.23', 'Trung tâm Lưu trữ lịch sử tỉnh Bình Định', '01 Trần Phú, Thành phố Quy Nhơn, tỉnh Bình Định', 'ccvtlt@snv.binhdinh.gov.vn', '(0256) 3823758', NULL, 'ccvtlt.snv.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262231+07', 'system', '2023-07-26 08:40:35.262231+07', NULL);
INSERT INTO category."Organizations" VALUES ('8e3e17c8-da93-4a1d-5a93-08db8d794ea2', '000.04.32.H08', 'H08.32.4', 'Phòng Tài Chính - Kế Hoạch - Thị xã An Nhơn - Tỉnh Bình Định', '78 Lê Hồng Phong, Thị xã An Nhơn', 'tckh@anhnhon.binhdinh.gov.vn', '(0256) 3835100', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262918+07', 'system', '2023-07-26 08:40:35.262918+07', NULL);
INSERT INTO category."Organizations" VALUES ('8e419ffb-60d0-419e-5bf7-08db8d794ea2', '000.03.41.H08', 'H08.41.3', 'Phòng Tư Pháp - Huyện Vĩnh Thạnh - Tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'tuphap@vinhthanh.binhdinh.gov.vn', '(0256) 3886211', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268305+07', 'system', '2023-07-26 08:40:35.268305+07', NULL);
INSERT INTO category."Organizations" VALUES ('8e4bf2ab-e078-4fe4-5a61-08db8d794ea2', '000.45.17.H08', 'H08.17.45', 'Trung tâm Y tế huyện Hoài Ân - Tỉnh Bình Định', 'Ân Thường 2, Ân Thạnh, xã Ân Thạnh, huyện Hoài Ân', 'nganttt@syt.binhdinh.gov.vn', '(0256) 3870039', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262654+07', 'system', '2023-07-26 08:40:35.262655+07', NULL);
INSERT INTO category."Organizations" VALUES ('8ed8237a-4a3a-41b9-5b7a-08db8d794ea2', '000.80.37.H08', 'H08.37.80', 'UBND Phường Nguyễn Văn Cừ - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267877+07', 'system', '2023-07-26 08:40:35.267877+07', NULL);
INSERT INTO category."Organizations" VALUES ('8f52106d-af7e-4fa9-5bec-08db8d794ea2', '000.71.40.H08', 'H08.40.71', 'UBND Xã Canh Liên - Huyện Vân Canh - Tỉnh Bình Định', 'Canh Liên - Huyện Vân Canh - Tỉnh Bình Định', 'canhlien@vancanh.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26827+07', 'system', '2023-07-26 08:40:35.26827+07', NULL);
INSERT INTO category."Organizations" VALUES ('8f5e705f-c56c-4b97-5b47-08db8d794ea2', '000.81.36.H08', 'H08.36.81', 'UBND Xã Mỹ Trinh - Huyện Phù Mỹ -Tỉnh Bình Định', 'Mỹ Trinh - Phù Mỹ', 'ubndmytrinh@phumy.binhdinh.gov.vn', '(0256) 3776392', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267713+07', 'system', '2023-07-26 08:40:35.267713+07', NULL);
INSERT INTO category."Organizations" VALUES ('8fb28a3b-f8aa-412c-5a1d-08db8d794ea2', '000.28.10.H08', 'H08.10.28', 'Trung tâm Nước sạch và Vệ sinh môi trường nông thôn - Tỉnh Bình Định', '118 Nguyễn Huệ, TP. Quy Nhơn, tỉnh Bình Định', 'ttnsvsmtnt@snnptnt.binhdinh.gov.vn', '(0256) 3814839', NULL, 'nuocnongthon.binhdinh.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262286+07', 'system', '2023-07-26 08:40:35.262286+07', NULL);
INSERT INTO category."Organizations" VALUES ('8fea811f-88fd-495b-5a96-08db8d794ea2', '000.07.32.H08', 'H08.32.7', 'Phòng Văn hóa - Thông tin - Thị xã An Nhơn - Tỉnh Bình Định', '79 Lê Hồng Phong, Thị xã An Nhơn', 'vhtt@annhon.binhdinh.gov.vn', '(0256) 3836098', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26293+07', 'system', '2023-07-26 08:40:35.26293+07', NULL);
INSERT INTO category."Organizations" VALUES ('90060127-31de-4af4-5be7-08db8d794ea2', '000.26.40.H08', 'H08.40.26', 'Ban Quản lý Dự án Đầu tư và Xây dựng - Huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'bqldadtxd@vancanh.binhdinh.gov.vn', '(0256) 3888553', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268253+07', 'system', '2023-07-26 08:40:35.268253+07', NULL);
INSERT INTO category."Organizations" VALUES ('903ef997-cdb4-40a8-5bdf-08db8d794ea2', '000.11.40.H08', 'H08.40.11', 'Phòng Nông nghiệp - Phát triển nông thôn - Huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'nnptnt@vancanh.binhdinh.gov.vn', '(0256) 3888116', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268227+07', 'system', '2023-07-26 08:40:35.268227+07', NULL);
INSERT INTO category."Organizations" VALUES ('91464d15-1688-4487-5be6-08db8d794ea2', '000.25.40.H08', 'H08.40.25', 'Trung tâm Giáo dục nghề nghiệp - Giáo dục thường xuyên - Huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'ttgdnngdtx@vancanh.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26825+07', 'system', '2023-07-26 08:40:35.26825+07', NULL);
INSERT INTO category."Organizations" VALUES ('916785d8-45b7-4cb1-5bb2-08db8d794ea2', '000.03.39.H08', 'H08.39.3', 'Phòng Tư Pháp - Huyện Tuy Phước - Tỉnh Bình Định', '427 Nguyễn Huệ, thị trấn Tuy Phước, Tuy Phước, Bình Định', 'phongtuphap@tuyphuoc.binhdinh.gov.vn', '(0256) 3633373', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268069+07', 'system', '2023-07-26 08:40:35.268069+07', NULL);
INSERT INTO category."Organizations" VALUES ('918ebd35-0f3e-4e23-5c11-08db8d794ea2', '000.78.41.H08', 'H08.41.78', 'UBND Xã Vĩnh Kim - Huyện Vĩnh Thạnh - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268385+07', 'system', '2023-07-26 08:40:35.268385+07', NULL);
INSERT INTO category."Organizations" VALUES ('936af713-7533-45db-5bd2-08db8d794ea2', '000.83.39.H08', 'H08.39.83', 'UBND Xã Phước Hưng - Huyện Tuy Phước - Tỉnh Bình Định', 'Thôn An Cửu, xã Phước Hưng, Tuy Phước, Bình Định', 'phuochung@tuyphuoc.binhdinh.gov.vn', '(0256) 3620370', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268184+07', 'system', '2023-07-26 08:40:35.268184+07', NULL);
INSERT INTO category."Organizations" VALUES ('93781bf1-2b4c-4abd-5b42-08db8d794ea2', '000.76.36.H08', 'H08.36.76', 'UBND Xã Mỹ Đức - Huyện Phù Mỹ -Tỉnh Bình Định', 'Mỹ Đức - Phù Mỹ', 'ubndmyduc@phumy.binhdinh.gov.vn', '(0256) 3558342', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267697+07', 'system', '2023-07-26 08:40:35.267697+07', NULL);
INSERT INTO category."Organizations" VALUES ('937c871e-9021-423a-5abc-08db8d794ea2', '000.07.33.H08', 'H08.33.7', 'Phòng Văn hóa - Thông tin - Huyện Hoài Ân - Tỉnh Bình Định', 'TT. Tăng Bạt Hổ - Hoài Ân', 'vhtt@hoaian.binhdinh.gov.vn', '(0256) 3870009', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263119+07', 'system', '2023-07-26 08:40:35.263119+07', NULL);
INSERT INTO category."Organizations" VALUES ('953ab72a-bc13-4a69-59e5-08db8d794ea2', '000.54.03.H08', 'H08.3.54', 'Trường THPT Tăng Bạt Hổ - Tỉnh Bình Định', '94 Trần Phú, Bồng Sơn, Hoài Nhơn, Bình Định', 'thpttangbatho@sgddt.binhdinh.gov.vn', '(0256) 3861847', NULL, 'tangbathohoainhon.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261971+07', 'system', '2023-07-26 08:40:35.261971+07', NULL);
INSERT INTO category."Organizations" VALUES ('95ed74ed-4427-4b40-5aa9-08db8d794ea2', '000.75.32.H08', 'H08.32.75', 'UBND Phường Nhơn Hòa - Thị xã An Nhơn - Tỉnh Bình Định', 'Nhơn Hòa, Thị xã An Nhơn', 'nhonhoa@annhon.binhdinh.gov.vn', '(0256) 3838554', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263025+07', 'system', '2023-07-26 08:40:35.263025+07', NULL);
INSERT INTO category."Organizations" VALUES ('9d25fa49-b5c1-4544-5b43-08db8d794ea2', '000.77.36.H08', 'H08.36.77', 'UBND Xã Mỹ Châu - Huyện Phù Mỹ -Tỉnh Bình Định', 'Mỹ Châu - Phù Mỹ', 'ubndmychau@phumy.binhdinh.gov.vn', '(0256) 3858223', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267701+07', 'system', '2023-07-26 08:40:35.267701+07', NULL);
INSERT INTO category."Organizations" VALUES ('96519c7f-9022-4232-59ff-08db8d794ea2', '000.22.04.H08', 'H08.4.22', 'Trung tâm đăng kiểm phương tiện thủy, bộ - Tỉnh Bình Định', '357A Tây Sơn, phường Quang Trung, Thành phố Qui Nhơn, Bình Định', 'ttdkpttb@sgtvt.binhdinh.gov.vn', '(0256) 3846761', NULL, 'dangkiembinhdinh.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262118+07', 'system', '2023-07-26 08:40:35.262118+07', NULL);
INSERT INTO category."Organizations" VALUES ('965cb883-69b5-434b-5b1f-08db8d794ea2', '000.80.35.H08', 'H08.35.80', 'UBND Xã Cát Thành - Huyện Phù Cát - Tỉnh Bình Định', '', 'catthanh@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263597+07', 'system', '2023-07-26 08:40:35.263597+07', NULL);
INSERT INTO category."Organizations" VALUES ('96d4182e-e478-4839-5b3e-08db8d794ea2', '000.72.36.H08', 'H08.36.72', 'UBND Thị trấn Bình Dương - Huyện Phù Mỹ - Tỉnh Bình Định', 'TT Bình Dương - Phù Mỹ', 'ubndttbinhduong@phumy.binhdinh.gov.vn', '(0256) 3858122', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267683+07', 'system', '2023-07-26 08:40:35.267683+07', NULL);
INSERT INTO category."Organizations" VALUES ('970ad91b-44ea-4ed9-5c0c-08db8d794ea2', '000.73.41.H08', 'H08.41.73', 'UBND Xã Vĩnh Thịnh - Huyện Vĩnh Thạnh - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268373+07', 'system', '2023-07-26 08:40:35.268373+07', NULL);
INSERT INTO category."Organizations" VALUES ('987eae38-fcf3-4dba-5bf8-08db8d794ea2', '000.04.41.H08', 'H08.41.4', 'Phòng Tài Chính - Kế Hoạch - Huyện Vĩnh Thạnh - Tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'taichinh@vinhthanh.binhdinh.gov.vn', '(0256) 3886353', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268308+07', 'system', '2023-07-26 08:40:35.268308+07', NULL);
INSERT INTO category."Organizations" VALUES ('98bea1ae-2c0f-40ea-5b87-08db8d794ea2', NULL, NULL, 'Cơ quan chuyên môn thuộc UBND Huyện Tây Sơn', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267913+07', 'system', '2023-07-26 08:40:35.267913+07', NULL);
INSERT INTO category."Organizations" VALUES ('99150f22-7f5c-4a80-5b6b-08db8d794ea2', '000.36.37.H08', 'H08.37.36', 'Hội chữ thập đỏ - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'hctdtp@quynhon.binhdinh.gov.vn', '(0256) 3820708', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267833+07', 'system', '2023-07-26 08:40:35.267833+07', NULL);
INSERT INTO category."Organizations" VALUES ('99d6af57-adf8-4003-59d4-08db8d794ea2', '000.37.03.H08', 'H08.3.37', 'Trường THPT Quang Trung - Tỉnh Bình Định', '55 Võ Văn Dõng, Phú Phong, Tây Sơn, Bình Định', 'thptquangtrung@sgddt.binhdinh.gov.vn', '(0256) 3880194', NULL, 'thptquangtrungtayson.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261866+07', 'system', '2023-07-26 08:40:35.261866+07', NULL);
INSERT INTO category."Organizations" VALUES ('99eda18d-8499-44c9-5ba5-08db8d794ea2', '000.78.38.H08', 'H08.38.78', 'UBND Xã Bình Tân - Huyện Tây Sơn - Tỉnh Bình Định', 'Thôn An Hội, xã Bình Tân', 'xabinhtan@tayson.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268026+07', 'system', '2023-07-26 08:40:35.268026+07', NULL);
INSERT INTO category."Organizations" VALUES ('9a5284a5-1e37-4f52-5ab0-08db8d794ea2', '000.82.32.H08', 'H08.32.82', 'UBND Xã Nhơn Thọ - Thị xã An Nhơn - Tỉnh Bình Định', 'Nhơn Thọ, Thị xã An Nhơn', 'nhontho@annhon.binhdinh.gov.vn', '(0256) 3837127', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263052+07', 'system', '2023-07-26 08:40:35.263052+07', NULL);
INSERT INTO category."Organizations" VALUES ('9a56ec02-1752-4d8c-5a1a-08db8d794ea2', '000.25.10.H08', 'H08.10.25', 'Chi cục Phát triển nông thôn - Tỉnh Bình Định', '135 Lê Hồng Phong, TP. Quy Nhơn, tỉnh Bình', 'ccptnt@snnptnt.binhdinh.gov.vn', '(0256) 3823883', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262273+07', 'system', '2023-07-26 08:40:35.262273+07', NULL);
INSERT INTO category."Organizations" VALUES ('9a5bc520-eda5-4979-5b60-08db8d794ea2', '000.21.37.H08', 'H08.37.21', 'Ban Quản lý chợ khu 6 - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'bqlck6@quynhon.binhdinh.gov.vn', '(0256) 3525474', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267796+07', 'system', '2023-07-26 08:40:35.267796+07', NULL);
INSERT INTO category."Organizations" VALUES ('9a9c7b98-24e4-4181-5b9e-08db8d794ea2', '000.71.38.H08', 'H08.38.71', 'UBND Thị trấn Phú Phong - Huyện Tây Sơn - Tỉnh Bình Định', 'Khối 3, thị trấn Phú Phong', 'phuphong@tayson.binhdinh.gov.vn', '(0256) 3880175', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267989+07', 'system', '2023-07-26 08:40:35.26799+07', NULL);
INSERT INTO category."Organizations" VALUES ('9b3e71ac-9bee-4b5c-5ba4-08db8d794ea2', '000.77.38.H08', 'H08.38.77', 'UBND Xã Bình Hòa - Huyện Tây Sơn - Tỉnh Bình Định', 'Thôn Trường Định 1, xã Bình Hòa', 'xabinhnhoa@tayson.binhdinh.gov.vn', '(0256) 3583497', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268023+07', 'system', '2023-07-26 08:40:35.268023+07', NULL);
INSERT INTO category."Organizations" VALUES ('9b46f020-eb83-4f1a-5bce-08db8d794ea2', '000.79.39.H08', 'H08.39.79', 'UBND Xã Phước Sơn - Huyện Tuy Phước - Tỉnh Bình Định', 'Thôn Phụng Sơn, xã Phước Sơn, Tuy Phước, Bình Định', 'phuocson@tuyphuoc.binhdinh.gov.vn', '(0256) 3830118', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26817+07', 'system', '2023-07-26 08:40:35.26817+07', NULL);
INSERT INTO category."Organizations" VALUES ('9bd7045c-c8c2-42fb-5aaa-08db8d794ea2', '000.76.32.H08', 'H08.32.76', 'UBND Xã Nhơn An - Thị xã An Nhơn - Tỉnh Bình Định', 'Nhơn An, Thị xã An Nhơn', 'nhonan@annhon.binhdinh.gov.vn', '(0256) 3736356', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263029+07', 'system', '2023-07-26 08:40:35.263029+07', NULL);
INSERT INTO category."Organizations" VALUES ('9c265fa6-6993-43ca-5a43-08db8d794ea2', '000.00.14.H08', 'H08.14', 'Sở Thông tin và Truyền thông tỉnh Bình Định', '38 Trường Chinh, TP.Quy Nhơn, tỉnh Bình Định', NULL, '(0256) 3815519', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262497+07', 'system', '2023-07-26 08:40:35.262497+07', NULL);
INSERT INTO category."Organizations" VALUES ('9c4f41f1-f24f-4bbe-5ba1-08db8d794ea2', '000.74.38.H08', 'H08.38.74', 'UBND Xã Vĩnh An - Huyện Tây Sơn - Tỉnh Bình Định', 'Làng Giọt 1, xã Vĩnh An', 'xavinhan@tayson.binhdinh.gov.vn', '(0256) 6290690', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268014+07', 'system', '2023-07-26 08:40:35.268014+07', NULL);
INSERT INTO category."Organizations" VALUES ('9d043d6f-6e4a-49c5-5b34-08db8d794ea2', '000.11.36.H08', 'H08.36.11', 'Phòng Nông nghiệp - Phát triển nông thôn - Huyện Phù Mỹ - Tỉnh Bình Định', 'TT Phù Mỹ - Phù Mỹ', 'nnptnt@phumy.binhdinh.gov.vn', '(0256) 3855 272', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267652+07', 'system', '2023-07-26 08:40:35.267652+07', NULL);
INSERT INTO category."Organizations" VALUES ('9e26374d-30dc-471d-5af6-08db8d794ea2', '000.79.34.H08', 'H08.34.79', 'UBND phường Hoài Thanh Tây thị xã Hoài Nhơn tỉnh Bình Định', 'Phường Hoài Thanh Tây - TX Hoài Nhơn', 'hoaithanhtay@hoainhon.binhdinh.gov.vn', '(0256) 3864 506', NULL, 'hoaithanhtay-hoainhon.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263413+07', 'system', '2023-07-26 08:40:35.263414+07', NULL);
INSERT INTO category."Organizations" VALUES ('9e40ae28-a7a7-4ea7-59ea-08db8d794ea2', '000.59.03.H08', 'H08.3.59', 'Trường THPT Tam Quan - Tỉnh Bình Định', 'Khu phố 7, Tam Quan, Hoài Nhơn, Bình Định', 'thpttamquan@sgddt.binhdinh.gov.vn', '(0256) 3865454', NULL, 'thpttamquan.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262003+07', 'system', '2023-07-26 08:40:35.262003+07', NULL);
INSERT INTO category."Organizations" VALUES ('9e4c0ebd-814c-4b57-5be0-08db8d794ea2', '000.12.40.H08', 'H08.40.12', 'Phòng Y tế - Huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'yt@vancanh.binhdinh.gov.vn', '(0256) 3888648', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268231+07', 'system', '2023-07-26 08:40:35.268231+07', NULL);
INSERT INTO category."Organizations" VALUES ('9e958721-ef4c-4b56-59ef-08db8d794ea2', '000.64.03.H08', 'H08.3.64', 'Trường THPT Vân Canh - Tỉnh Bình Định', 'An Long 2, Canh Vinh, Vân Canh, Bình Định', 'thptvancanh@sgddt.binhdinh.gov.vn', '(0256) 3889438', NULL, 'thptvancanh.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262025+07', 'system', '2023-07-26 08:40:35.262025+07', NULL);
INSERT INTO category."Organizations" VALUES ('9f9623f7-3029-4a60-5a65-08db8d794ea2', NULL, 'H08.17.50', 'Trung tâm kiểm soát bệnh tật - Tỉnh Bình Định', 'Khu C3, Điện Biên Phủ, TP. Quy Nhơn', 'napv@syt.binhdinh.gov.vn', '(0256) 3848932', NULL, 'kiemsoatbenhtat.syt.binhdinh.gov.vn/', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262672+07', 'system', '2023-07-26 08:40:35.262672+07', NULL);
INSERT INTO category."Organizations" VALUES ('9ffc4b0e-48e0-4013-59f0-08db8d794ea2', '000.65.03.H08', 'H08.3.65', 'Trường THPT Vĩnh Thạnh - Tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, Vĩnh Thạnh, Bình Định', 'thptvinhthanh@sgddt.binhdinh.gov.vn', '(0256) 3886162', NULL, 'edu.viettel.vn/binhdinh-thptvinhthanh', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262029+07', 'system', '2023-07-26 08:40:35.262029+07', NULL);
INSERT INTO category."Organizations" VALUES ('a0c5cbc3-5a17-4400-5b8b-08db8d794ea2', '000.04.38.H08', 'H08.38.4', 'Phòng Tài Chính - Kế Hoạch - Huyện Tây Sơn - Tỉnh Bình Định', '59 Phan Đình Phùng, thị trấn Phú Phong, huyện Tây Sơn', 'phongtckh@tayson.binhdinh.gov.vn', '(0256) 3880164', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267926+07', 'system', '2023-07-26 08:40:35.267926+07', NULL);
INSERT INTO category."Organizations" VALUES ('a3063b67-4a99-424b-5aef-08db8d794ea2', '000.72.34.H08', 'H08.34.72', 'UBND phường Tam Quan thị xã Hoài Nhơn tỉnh Bình Định', 'Phường Tam Quan - TX Hoài Nhơn', 'tamquan@hoainhon.binhdinh.gov.vn', '(0256) 3865 206', NULL, 'tamquan-hoainhon.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263374+07', 'system', '2023-07-26 08:40:35.263374+07', NULL);
INSERT INTO category."Organizations" VALUES ('a3911f5a-f271-494b-5ac0-08db8d794ea2', '000.11.33.H08', 'H08.33.11', 'Phòng Nông nghiệp - Phát triển nông thôn - Huyện Hoài Ân - Tỉnh Bình Định', 'TT. Tăng Bạt Hổ - Hoài Ân', 'nnptnt@hoaian.binhdinh.gov.vn', '(0256) 3870280', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263135+07', 'system', '2023-07-26 08:40:35.263135+07', NULL);
INSERT INTO category."Organizations" VALUES ('a4071be4-62fd-4cb3-5aae-08db8d794ea2', '000.80.32.H08', 'H08.32.80', 'UBND Xã Nhơn Phúc - Thị xã An Nhơn - Tỉnh Bình Định', 'Nhơn Phúc, Thị xã An Nhơn', 'nhonphuc@annhon.binhdinh.gov.vn', '(0256) 3610660', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263044+07', 'system', '2023-07-26 08:40:35.263045+07', NULL);
INSERT INTO category."Organizations" VALUES ('a58f8dfb-7d6c-4152-5b0f-08db8d794ea2', '000.24.35.H08', 'H08.35.24', 'Hạt Giao thông công chính - Huyện Phù Cát - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26353+07', 'system', '2023-07-26 08:40:35.26353+07', NULL);
INSERT INTO category."Organizations" VALUES ('a5a1870b-1252-45fe-5a3e-08db8d794ea2', '000.20.13.H08', 'H08.13.20', 'Trung tâm trợ giúp pháp lý nhà nước tỉnh Bình Định - Tỉnh Bình Định', '715 Trần Hưng Đạo, Tp. Quy Nhơn, Bình Định', 'tgpl@stp.binhdinh.gov.vn', '(0256) 3816816', NULL, 'trogiupphaplybinhdinh.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262466+07', 'system', '2023-07-26 08:40:35.262466+07', NULL);
INSERT INTO category."Organizations" VALUES ('a5a6e064-bc37-478a-5ac9-08db8d794ea2', NULL, NULL, 'Các xã thuộc UBND Huyện Hoài Ân', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263181+07', 'system', '2023-07-26 08:40:35.263181+07', NULL);
INSERT INTO category."Organizations" VALUES ('a5b1cde7-e9fd-41e5-5bf2-08db8d794ea2', '000.77.40.H08', 'H08.40.77', 'UBND Xã Canh Vinh - Huyện Vân Canh - Tỉnh Bình Định', 'Canh Vinh - Huyện Vân Canh - Tỉnh Bình Định', 'canhvinh@vancanh.binhdinh.gov.vn', '(0256) 3889513', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268288+07', 'system', '2023-07-26 08:40:35.268288+07', NULL);
INSERT INTO category."Organizations" VALUES ('a6b82114-4f21-4682-5a6d-08db8d794ea2', '000.00.22.H08', 'H08.22', 'Cục Thống kê tỉnh Bình Định', '70A Tôn Đức Thắng, TP.Quy Nhơn, tỉnh Bình Định', 'binhdinh@gso.gov.vn', '(0256) 3821206', NULL, 'cucthongke.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262714+07', 'system', '2023-07-26 08:40:35.262714+07', NULL);
INSERT INTO category."Organizations" VALUES ('a74bab9f-cb05-4668-5acd-08db8d794ea2', '000.74.33.H08', 'H08.33.74', 'UBND Xã Ân Hảo Đông - Huyện Hoài Ân - Tỉnh Bình Định', 'Ân Hảo Đông- Hoài Ân', 'ubndanhaodong@hoaian.binhdinh.gov.vn', '(0256) 3872297', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263195+07', 'system', '2023-07-26 08:40:35.263196+07', NULL);
INSERT INTO category."Organizations" VALUES ('a7852f4a-9834-462e-5ba6-08db8d794ea2', '000.79.38.H08', 'H08.38.79', 'UBND Xã Bình Thuận - Huyện Tây Sơn - Tỉnh Bình Định', 'Thôn Thuận Nhứt, xã Bình Thuận', 'xabinhthuan@tayson.binhdinh.gov.vn', '(0256) 3883360', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268029+07', 'system', '2023-07-26 08:40:35.268029+07', NULL);
INSERT INTO category."Organizations" VALUES ('a78f8f5a-7ae5-4824-59d1-08db8d794ea2', '000.34.03.H08', 'H08.3.34', 'Trường THPT Số 3 Tuy Phước - Tỉnh Bình Định', 'Thôn Kim Tây,xã Phước Hoà, Tuy Phước, Bình Định', 'thpttuyphuoc3@sgddt.binhdinh.gov.vn', '(0256) 3831679', NULL, 'thptso3tuyphuoc.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261852+07', 'system', '2023-07-26 08:40:35.261852+07', NULL);
INSERT INTO category."Organizations" VALUES ('a7f9722d-82c8-4d6f-5b48-08db8d794ea2', '000.82.36.H08', 'H08.36.82', 'UBND Xã Mỹ Hòa - Huyện Phù Mỹ -Tỉnh Bình Định', 'Mỹ Hòa - Phù Mỹ', 'ubndmyhoa@phumy.binhdinh.gov.vn', '(0256) 3776326', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267716+07', 'system', '2023-07-26 08:40:35.267716+07', NULL);
INSERT INTO category."Organizations" VALUES ('a86efeb2-a552-4c31-5bad-08db8d794ea2', '000.92.38.H08', 'H08.38.92', 'Hội đồng nhân dân - Huyện Tây Sơn - Tỉnh Bình Định', '59 Phan Đình Phùng, thị trấn Phú Phong, huyện Tây Sơn', 'hdnd@tayson.binhdinh.gov.vn', '(0256) 3880761', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268052+07', 'system', '2023-07-26 08:40:35.268052+07', NULL);
INSERT INTO category."Organizations" VALUES ('a8d2c7b0-3b79-4db7-5af9-08db8d794ea2', '000.82.34.H08', 'H08.34.82', 'UBND phường Hoài Hương thị xã Hoài Nhơn tỉnh Bình Định', 'Phường Hoài Hương - TX Hoài Nhơn', 'hoaihuong@hoainhon.binhdinh.gov.vn', '(0256) 3768 368', NULL, 'hoaihuong-hoainhon.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263426+07', 'system', '2023-07-26 08:40:35.263426+07', NULL);
INSERT INTO category."Organizations" VALUES ('a9138977-6e94-4f44-5a5f-08db8d794ea2', '000.43.17.H08', 'H08.17.43', 'Trung tâm Y tế huyện Phù Mỹ - Tỉnh Bình Định', 'Đường Quang Trung, thị trấn Phù Mỹ, huyện Phù Mỹ', 'suongnt@syt.binhdinh.gov.vn', '(0256) 3855219', NULL, 'ttytphumy.com/', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262637+07', 'system', '2023-07-26 08:40:35.262637+07', NULL);
INSERT INTO category."Organizations" VALUES ('a92b9fc7-29f3-4b70-5b7d-08db8d794ea2', '000.83.37.H08', 'H08.37.83', 'UBND Phường Nhơn Bình - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267885+07', 'system', '2023-07-26 08:40:35.267885+07', NULL);
INSERT INTO category."Organizations" VALUES ('aa03f477-b581-4e04-5ba9-08db8d794ea2', '000.82.38.H08', 'H08.38.82', 'UBND Xã Bình Thành - Huyện Tây Sơn - Tỉnh Bình Định', 'Thôn Kiên Long, xã Bình Thành', 'xabinhthanh@tayson.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26804+07', 'system', '2023-07-26 08:40:35.26804+07', NULL);
INSERT INTO category."Organizations" VALUES ('aac392f0-cbd2-4e93-5b81-08db8d794ea2', '000.87.37.H08', 'H08.37.87', 'UBND Xã Nhơn Hội - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267896+07', 'system', '2023-07-26 08:40:35.267896+07', NULL);
INSERT INTO category."Organizations" VALUES ('ab781846-8471-488f-5b5e-08db8d794ea2', NULL, NULL, 'Đơn vị sự nghiệp thuộc UBND Thành phố Quy Nhơn', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267789+07', 'system', '2023-07-26 08:40:35.267789+07', NULL);
INSERT INTO category."Organizations" VALUES ('abebce92-3c71-4d96-5aee-08db8d794ea2', '000.71.34.H08', 'H08.34.71', 'UBND phường Bồg Sơn Thị thị xã Hoài Nhơn tỉnh Bình Định', 'Phường Bồng Sơn - TX Hoài Nhơn', 'bongson@hoainhon.binhdinh.gov.vn', '(0256) 3661 865', NULL, 'bongson-hoainhon.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26337+07', 'system', '2023-07-26 08:40:35.26337+07', NULL);
INSERT INTO category."Organizations" VALUES ('ac617583-7169-4295-5a70-08db8d794ea2', '000.01.31.H08', 'H08.31.01', 'Văn Phòng HĐND và UBND - Huyện An Lão - Tỉnh Bình Định', 'Thôn 2 - Thị trấn An Lão - An Lão', 'vanphong@anlao.binhdinh.gov.vn', '(0256) 3875291', NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262727+07', 'system', '2023-07-26 08:40:35.262727+07', NULL);
INSERT INTO category."Organizations" VALUES ('ac8e634c-cfdd-46f0-5c06-08db8d794ea2', NULL, 'H08.41.25', 'Chi cục Thống kê - Huyện Vĩnh Thạnh - Tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'chicucthongke@vinhthanh.binhdinh.gov.vn', '(0256) 3886387', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268354+07', 'system', '2023-07-26 08:40:35.268354+07', NULL);
INSERT INTO category."Organizations" VALUES ('ad321e5d-5002-4907-5b4d-08db8d794ea2', '000.87.36.H08', 'H08.36.87', 'UBND Xã Mỹ Quang - Huyện Phù Mỹ -Tỉnh Bình Định', 'Mỹ Quang - Phù Mỹ', 'ubndmyquang@phumy.binhdinh.gov.vn', '(0256) 3855273', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267732+07', 'system', '2023-07-26 08:40:35.267732+07', NULL);
INSERT INTO category."Organizations" VALUES ('ad3b8717-3b69-42fa-59be-08db8d794ea2', NULL, 'H08.1.22', 'Ban tiếp công dân tỉnh', '28 Nguyễn Trãi, Quy Nhơn', 'bantiepdan@vpub.binhdinh.gov.vn', '(0256) 3823311', NULL, 'vpub.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261708+07', 'system', '2023-07-26 08:40:35.261708+07', NULL);
INSERT INTO category."Organizations" VALUES ('ad75103d-fd91-4037-5a0f-08db8d794ea2', '000.00.08.H08', 'H08.8', 'Sở Ngoại vụ tỉnh Bình Định', '59-61 Lê Hồng Phong, TP Quy Nhơn, tỉnh Bình Định', 'vp@songoaivu.binhdinh.gov.vn', '(0256) 3820202', NULL, 'songoaivu.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262205+07', 'system', '2023-07-26 08:40:35.262205+07', NULL);
INSERT INTO category."Organizations" VALUES ('ae6d7d8a-adad-4557-5b38-08db8d794ea2', '000.18.36.H08', 'H08.36.18', 'Ban Chỉ huy Quân sự huyện Phù Mỹ - Tỉnh Bình Định', 'TT Phù Mỹ - Phù Mỹ', 'banchqs@phumy.binhdinh.gov.vn', '(0256) 3855082', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267664+07', 'system', '2023-07-26 08:40:35.267664+07', NULL);
INSERT INTO category."Organizations" VALUES ('af21924d-cb4f-494b-5ad1-08db8d794ea2', '000.78.33.H08', 'H08.33.78', 'UBND Xã Ân Mỹ - Huyện Hoài Ân - Tỉnh Bình Định', 'Ân Mỹ- Hoài Ân', 'ubndanmy@hoaian.binhdinh.gov.vn', '(0256) 3874152', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263234+07', 'system', '2023-07-26 08:40:35.263235+07', NULL);
INSERT INTO category."Organizations" VALUES ('af7e6b03-991e-4319-5a26-08db8d794ea2', '000.46.10.H08', 'H08.10.46', 'Công ty Lâm nghiệp Sông Kôn - Tỉnh Bình Định', 'Khu phố Định An, thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'lnsk@snnptnt.binhdinh.gov.vn', '(0256) 3886606', NULL, 'lamnghiepsongkon.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262341+07', 'system', '2023-07-26 08:40:35.262341+07', NULL);
INSERT INTO category."Organizations" VALUES ('af8c6c0f-532a-4ff3-5b89-08db8d794ea2', '000.02.38.H08', 'H08.38.2', 'Phòng Nội Vụ - Huyện Tây Sơn - Tỉnh Bình Định', '59 Phan Đình Phùng, thị trấn Phú Phong, huyện Tây Sơn', 'phongnoivu@tayson.binhdinh.gov.vn', '(0256) 3580921', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26792+07', 'system', '2023-07-26 08:40:35.26792+07', NULL);
INSERT INTO category."Organizations" VALUES ('b0336c99-1962-4c4a-5c07-08db8d794ea2', '000.28.41.H08', 'H08.41.28', 'Trung tâm Văn hóa Thông tin - Thể thao - Huyện Vĩnh Thạnh - Tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'trungtamvhtt@vinhthanh.binhdinh.gov.vn', '(0256) 3786759', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268357+07', 'system', '2023-07-26 08:40:35.268357+07', NULL);
INSERT INTO category."Organizations" VALUES ('b0e84225-609f-4bc7-5ab6-08db8d794ea2', '000.01.33.H08', 'H08.33.1', 'Văn Phòng HĐND và UBND - Huyện Hoài Ân - Tỉnh Bình Định', 'TT. Tăng Bạt Hổ - Hoài Ân', 'vanphong@hoaian.binhdinh.gov.vn', '(0256) 3870274', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263085+07', 'system', '2023-07-26 08:40:35.263085+07', NULL);
INSERT INTO category."Organizations" VALUES ('b1710d1e-6e4e-47cf-5bf6-08db8d794ea2', '000.02.41.H08', 'H08.41.2', 'Phòng Nội Vụ - Huyện Vĩnh Thạnh - Tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'noivu@vinhthanh.binhdinh.gov.vn', '(0256) 3886245', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268302+07', 'system', '2023-07-26 08:40:35.268302+07', NULL);
INSERT INTO category."Organizations" VALUES ('b1c4535a-d978-4ba2-5b6a-08db8d794ea2', '000.35.37.H08', 'H08.37.35', 'Hạt kiểm lâm - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'hatkl@quynhon.binhdinh.gov.vn', '(0256) 3833217', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26783+07', 'system', '2023-07-26 08:40:35.26783+07', NULL);
INSERT INTO category."Organizations" VALUES ('b2101747-a065-457e-59de-08db8d794ea2', '000.47.03.H08', 'H08.3.47', 'Trường THPT Nguyễn Hồng Đạo - Tỉnh Bình Định', 'Tân Hóa Nam, Cát Hanh, Phù Cát, Bình Định', 'thptnguyenhongdao@sgddt.binhdinh.gov.vn', '(0256) 3752932', NULL, 'thpt.nguyenhongdao.binhdinh.vnedu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261939+07', 'system', '2023-07-26 08:40:35.261939+07', NULL);
INSERT INTO category."Organizations" VALUES ('b27b883f-a427-4d29-5bd4-08db8d794ea2', NULL, NULL, 'Cơ quan chuyên môn thuộc UBND Huyện Vân Canh', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268192+07', 'system', '2023-07-26 08:40:35.268192+07', NULL);
INSERT INTO category."Organizations" VALUES ('b28cd359-aabf-4813-59e1-08db8d794ea2', '000.50.03.H08', 'H08.3.50', 'Trường THPT Nguyễn Trung Trực - Tỉnh Bình Định', '28 Nguyễn Văn Trỗi, Phù Mỹ, Bình Định', 'thptnguyentrungtruc@sgddt.binhdinh.gov.vn', '(0256) 3855 604', NULL, 'thpt-ntt-binhdinh.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261952+07', 'system', '2023-07-26 08:40:35.261952+07', NULL);
INSERT INTO category."Organizations" VALUES ('b2dd8bfc-f3b2-430e-5ba8-08db8d794ea2', '000.81.38.H08', 'H08.38.81', 'UBND Xã Bình Nghi - Huyện Tây Sơn - Tỉnh Bình Định', 'Thôn 2, xã Bình Nghi', 'xabinhnghi@tayson.binhdinh.gov.vn', '(0256) 3882138', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268036+07', 'system', '2023-07-26 08:40:35.268036+07', NULL);
INSERT INTO category."Organizations" VALUES ('b2fc72b9-5131-47d0-5a28-08db8d794ea2', '000.48.10.H08', 'H08.10.48', 'Văn phòng thực hiện Dự án Rau an toàn - Tỉnh Bình Định', '77 Lê Hồng Phong, P. Trần Phú, TP. Quy Nhơn, tỉnh Bình Định', NULL, NULL, NULL, 'rauantoan.snnptnt.binhdinh.gov.vn/', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26235+07', 'system', '2023-07-26 08:40:35.262351+07', NULL);
INSERT INTO category."Organizations" VALUES ('b3419bdc-fc76-479e-59c0-08db8d794ea2', '000.00.02.H08', 'H08.2', 'Sở Công Thương tỉnh Bình Định', '198 Phan Bội Châu, TP.Quy Nhơn, tỉnh Bình Định', 'vp@sct.binhdinh.gov.vn', '(0256) 3811035', NULL, 'sct@binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261719+07', 'system', '2023-07-26 08:40:35.261719+07', NULL);
INSERT INTO category."Organizations" VALUES ('b349608c-8dc3-496c-59bc-08db8d794ea2', '000.20.01.H08', 'H08.1.20', 'Trung tâm Tin học - Công báo', '01 Trần Phú, Quy Nhơn', 'ttthcb@vpub.binhdinh.gov.vn', '(0256) 3829042', NULL, 'vpub.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261688+07', 'system', '2023-07-26 08:40:35.261688+07', NULL);
INSERT INTO category."Organizations" VALUES ('b3a88b07-c8a9-42e1-5bae-08db8d794ea2', '000.00.39.H08', 'H08.39', 'UBND Huyện Tuy Phước tỉnh Bình Định', '290 Nguyễn Huệ, thị trấn Tuy Phước, huyện Tuy Phước, Bình Định', 'vanphong@tuyphuoc.binhdinh.gov.vn', '(0256) 3633366', NULL, 'tuyphuoc.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268056+07', 'system', '2023-07-26 08:40:35.268056+07', NULL);
INSERT INTO category."Organizations" VALUES ('b3b1c344-fdfd-400f-5b97-08db8d794ea2', '000.22.38.H08', 'H08.38.22', 'Ban Quản lý Rừng phòng hộ Tây Sơn - Huyện Tây Sơn - Tỉnh Bình Định', 'Khối Phú Xuân, thị trấn Phú Phong', 'bqlrph@tayson.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267966+07', 'system', '2023-07-26 08:40:35.267966+07', NULL);
INSERT INTO category."Organizations" VALUES ('b51b04b1-bdc4-40a2-5af1-08db8d794ea2', '000.74.34.H08', 'H08.34.74', 'UBND phường Tam Quan Nam thị xã Hoài Nhơn tỉnh Bình Định', 'Phường Tam Quan Nam - TX Hoài Nhơn', 'tamquannam@hoainhon.binhdinh.gov.vn', '(0256) 3560 217', NULL, 'tamquannam-hoainhon.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263392+07', 'system', '2023-07-26 08:40:35.263392+07', NULL);
INSERT INTO category."Organizations" VALUES ('b625de06-54ed-4ef8-5ab5-08db8d794ea2', NULL, NULL, 'Cơ quan chuyên môn thuộc UBND Huyện Hoài Ân', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263082+07', 'system', '2023-07-26 08:40:35.263082+07', NULL);
INSERT INTO category."Organizations" VALUES ('b6b3e151-6332-4b65-5b22-08db8d794ea2', '000.83.35.H08', 'H08.35.83', 'UBND Xã Cát Tài - Huyện Phù Cát - Tỉnh Bình Định', '', 'cattai@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263617+07', 'system', '2023-07-26 08:40:35.263618+07', NULL);
INSERT INTO category."Organizations" VALUES ('b84a135a-5ae6-4abc-5ae0-08db8d794ea2', '000.06.34.H08', 'H08.34.6', 'Phòng Lao động - Thương Binh và Xã hội - Thị xã Hoài Nhơn - Tỉnh Bình Định', 'Phường Bồng Sơn - TX Hoài Nhơn', 'phongldtbxh@hoainhon.binhdinh.gov.vn', '(0256) 3861872', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263304+07', 'system', '2023-07-26 08:40:35.263304+07', NULL);
INSERT INTO category."Organizations" VALUES ('b9471e70-9052-4791-5af5-08db8d794ea2', '000.78.34.H08', 'H08.34.78', 'UBND phường Hoài Thanh thị xã Hoài Nhơn tỉnh Bình Định', 'Phường Hoài Thanh - TX Hoài Nhơn', 'hoaithanh@hoainhon.binhdinh.gov.vn', '(0256) 3864 505', NULL, 'hoaithanh-hoainhon.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26341+07', 'system', '2023-07-26 08:40:35.26341+07', NULL);
INSERT INTO category."Organizations" VALUES ('b9a1f096-f19a-415c-5a52-08db8d794ea2', '000.23.17.H08', 'H08.17.23', 'Bệnh viện Mắt Bình Định - Tỉnh Bình Định', 'Số 78 Trần Hưng Đạo, Quy Nhơn', 'tranghl@syt.binhdinh.gov.vn', '(0256) 3893606', NULL, 'bvmatbinhdinh.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262571+07', 'system', '2023-07-26 08:40:35.262571+07', NULL);
INSERT INTO category."Organizations" VALUES ('b9a4456d-c7af-4ddb-5a88-08db8d794ea2', '000.75.31.H08', 'H08.31.75', 'UBND Xã An Nghĩa - Huyện An Lão - Tỉnh Bình Định', 'An Nghĩa- An Lão - BĐ', 'annghia@anlao.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262865+07', 'system', '2023-07-26 08:40:35.262865+07', NULL);
INSERT INTO category."Organizations" VALUES ('ba46c8a7-3a6b-443b-5a31-08db8d794ea2', '000.24.12.H08', 'H08.12.24', 'Trung tâm Phát triển quỹ đất - Tỉnh Bình Định', '45 Lê Lợi TP. Quy Nhơn', 'ttptqd@stnmt.binhdinh.gov.vn', '(0256) 3828 488', NULL, 'stnmt.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262399+07', 'system', '2023-07-26 08:40:35.262399+07', NULL);
INSERT INTO category."Organizations" VALUES ('ba7bd9e8-f7db-4020-5b9c-08db8d794ea2', '000.30.38.H08', 'H08.38.30', 'Trung tâm Giáo dục nghề nghiệp - Giáo dục Thường xuyên - Huyện Tây Sơn - Tỉnh Bình Định', 'Thôn Phú An, xã Tây Xuân', 'ttgdnngdtx@tayson.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267982+07', 'system', '2023-07-26 08:40:35.267982+07', NULL);
INSERT INTO category."Organizations" VALUES ('bafacf73-ca27-43d8-5a08-08db8d794ea2', '000.00.07.H08', 'H08.7', 'Sở Lao động - Thương binh và Xã hội tỉnh Bình Định', '210 Diên Hồng, TP.Quy Nhơn, tỉnh Bình Định', 'vp@sldtbxh.binhdinh.gov.vn', '(0256) 3824629', NULL, 'sldtbxh.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26217+07', 'system', '2023-07-26 08:40:35.262171+07', NULL);
INSERT INTO category."Organizations" VALUES ('bb9b5d14-2857-471f-5bf5-08db8d794ea2', '000.01.41.H08', 'H08.41.1', 'Văn Phòng HĐND và UBND - Huyện Vĩnh Thạnh - Tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'vanphong@vinhthanh.binhdinh.gov.vn', '(0256) 3886887', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268299+07', 'system', '2023-07-26 08:40:35.268299+07', NULL);
INSERT INTO category."Organizations" VALUES ('bbc2ae7b-e4fc-458f-5ae1-08db8d794ea2', '000.07.34.H08', 'H08.34.7', 'Phòng Văn hóa - Thông tin - Thị xã Hoài Nhơn - Tỉnh Bình Định', 'Phường Bồng Sơn - TX Hoài Nhơn', 'phongvhtt@hoainhon.binhdinh.gov.vn', '(0256) 3961766', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263308+07', 'system', '2023-07-26 08:40:35.263309+07', NULL);
INSERT INTO category."Organizations" VALUES ('bc7114eb-43a0-4ef0-5b74-08db8d794ea2', '000.74.37.H08', 'H08.37.74', 'UBND Phường Lê Hồng Phong - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26786+07', 'system', '2023-07-26 08:40:35.26786+07', NULL);
INSERT INTO category."Organizations" VALUES ('bc89bf39-ed49-4980-59eb-08db8d794ea2', '000.60.03.H08', 'H08.3.60', 'Trường THPT Hoài Ân - Tỉnh Bình Định', 'Số 12 Chàng Lía, Tăng Bạt Hổ, Hoài Ân, Bình Định.', 'thpthoaian@sgddt.binhdinh.gov.vn', '(0256) 3870266', NULL, 'thpthoaian.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262007+07', 'system', '2023-07-26 08:40:35.262007+07', NULL);
INSERT INTO category."Organizations" VALUES ('bcfe12f2-8c22-4528-5ad5-08db8d794ea2', '000.82.33.H08', 'H08.33.82', 'UBND Xã Ân Sơn - Huyện Hoài Ân - Tỉnh Bình Định', 'Ân Sơn - Hoài Ân', 'ubndanson@hoaian.binhdinh.gov.vn', '(0256) 3874140', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26325+07', 'system', '2023-07-26 08:40:35.26325+07', NULL);
INSERT INTO category."Organizations" VALUES ('bd053406-cf3a-433c-5ae5-08db8d794ea2', '000.11.34.H08', 'H08.34.11', 'Phòng Quản lý đô thị Thị xã Hoài Nhơn - Tỉnh Bình Định', 'Phường Bồng Sơn - TX Hoài Nhơn', 'phongqldt@hoainhon.binhdinh.gov.vn', '(0256) 3606099', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263334+07', 'system', '2023-07-26 08:40:35.263334+07', NULL);
INSERT INTO category."Organizations" VALUES ('bd357c0b-a266-42b0-5a59-08db8d794ea2', '000.37.17.H08', 'H08.17.37', 'Trung tâm Giám định Y khoa - Tỉnh Bình Định', 'Số 106 Nguyễn Huệ, TP. Quy Nhơn', 'phaivtt@syt.binhdinh.gov.vn', '(0256) 3822795', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262611+07', 'system', '2023-07-26 08:40:35.262611+07', NULL);
INSERT INTO category."Organizations" VALUES ('bd508038-1ad8-4b42-5bd9-08db8d794ea2', '000.05.40.H08', 'H08.40.5', 'Phòng Tài Nguyên và Môi Trường - Huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'tnmt@vancanh.binhdinh.gov.vn', '(0256) 3888469', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268207+07', 'system', '2023-07-26 08:40:35.268207+07', NULL);
INSERT INTO category."Organizations" VALUES ('bdb56fe6-fe49-427b-59ec-08db8d794ea2', '000.61.03.H08', 'H08.3.61', 'Trường THPT Võ Giữ - Tỉnh Bình Định', 'Thôn Mỹ Thành, Hoài Ân, Bình Định', 'thptvogiu@sgddt.binhdinh.gov.vn', '(0256) 3874469', NULL, 'thpt-vogiubinhdinh.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262011+07', 'system', '2023-07-26 08:40:35.262011+07', NULL);
INSERT INTO category."Organizations" VALUES ('bde80b60-97e0-486f-59c3-08db8d794ea2', '000.20.03.H08', 'H08.3.20', 'Trung tâm Giáo dục thường xuyên - Tỉnh Bình Định', '107A Thanh Niên, Quy Nhơn, Bình Định', 'ttgdtxtinhbinhdinh@sgddt.binhdinh.gov.vn', '(0256) 3892053', NULL, 'gdtxbinhdinh.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261774+07', 'system', '2023-07-26 08:40:35.261774+07', NULL);
INSERT INTO category."Organizations" VALUES ('bedc8c59-c574-431a-5b21-08db8d794ea2', '000.82.35.H08', 'H08.35.82', 'UBND Xã Cát Minh - Huyện Phù Cát - Tỉnh Bình Định', '', 'catminh@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263614+07', 'system', '2023-07-26 08:40:35.263614+07', NULL);
INSERT INTO category."Organizations" VALUES ('bf605049-e8b9-4480-5b3c-08db8d794ea2', NULL, NULL, 'Các xã thuộc UBND Huyện Phù Mỹ', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267677+07', 'system', '2023-07-26 08:40:35.267677+07', NULL);
INSERT INTO category."Organizations" VALUES ('bf61bddf-4cd1-409e-59c7-08db8d794ea2', '000.24.03.H08', 'H08.3.24', 'Trường THPT Trần Cao Vân - Tỉnh Bình Định', '72A Trần Cao Vân, Quy Nhơn, Bình Định', 'thpttrancaovan@sgddt.binhdinh.gov.vn', '(0256) 3822367', NULL, 'thpttrancaovanbd.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261792+07', 'system', '2023-07-26 08:40:35.261793+07', NULL);
INSERT INTO category."Organizations" VALUES ('bfded75a-6181-4bc2-59d3-08db8d794ea2', '000.36.03.H08', 'H08.3.36', 'Trường THPT Xuân Diệu - Tỉnh Bình Định', '416 Nguyễn Huệ, Tuy Phước, Bình Định', 'thptxuandieu@sgddt.binhdinh.gov.vn', '(0256) 3634633', NULL, 'thptxuandieubinhdinh.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261862+07', 'system', '2023-07-26 08:40:35.261862+07', NULL);
INSERT INTO category."Organizations" VALUES ('bfe4fb6a-96f8-4e9f-5b5d-08db8d794ea2', '000.12.37.H08', 'H08.37.12', 'Phòng Y tế - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'trangntt@quynhon.binhdinh.gov.vn', '(0256) 3946490', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267785+07', 'system', '2023-07-26 08:40:35.267785+07', NULL);
INSERT INTO category."Organizations" VALUES ('c0150502-e70d-441a-59e8-08db8d794ea2', '000.57.03.H08', 'H08.3.57', 'Trường THPT Nguyễn Du - Tỉnh Bình Định', 'KP Thiện Đức, Hoài Hương, Hoài Nhơn, Bình Định', 'thptnguyendu@sgddt.binhdinh.gov.vn', '(0256) 3868801', NULL, 'thptnguyendubd.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261993+07', 'system', '2023-07-26 08:40:35.261994+07', NULL);
INSERT INTO category."Organizations" VALUES ('c0289cd6-6014-443c-5b57-08db8d794ea2', '000.06.37.H08', 'H08.37.6', 'Phòng Lao động - Thương Binh và Xã hội - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'tructtm@quynhon.binhdinh.gov.vn', '(0256) 3548439', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267765+07', 'system', '2023-07-26 08:40:35.267765+07', NULL);
INSERT INTO category."Organizations" VALUES ('c111cd36-7bff-43c5-5a6f-08db8d794ea2', NULL, NULL, 'Cơ quan chuyên môn thuộc UBND Huyện An Lão', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262723+07', 'system', '2023-07-26 08:40:35.262723+07', NULL);
INSERT INTO category."Organizations" VALUES ('c17ee4fc-a5b8-4acd-5b02-08db8d794ea2', '000.03.35.H08', 'H08.35.3', 'Phòng Tư Pháp - Huyện Phù Cát - Tỉnh Bình Định', '', 'tuphap@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263473+07', 'system', '2023-07-26 08:40:35.263473+07', NULL);
INSERT INTO category."Organizations" VALUES ('c2ac6685-7280-422e-59e7-08db8d794ea2', '000.56.03.H08', 'H08.3.56', 'Trường THPT Lý Tự Trọng - Tỉnh Bình Định', 'Gia An, Hoài Châu Bắc, Hoài Nhơn, Bình Định', 'thptlytutrong@sgddt.binhdinh.gov.vn', '(0256) 3866559', NULL, 'thptlytutrongbinhdinh.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26198+07', 'system', '2023-07-26 08:40:35.26198+07', NULL);
INSERT INTO category."Organizations" VALUES ('c331f36a-9ced-4217-5bbb-08db8d794ea2', '000.12.39.H08', 'H08.39.12', 'Phòng Y tế - Huyện Tuy Phước - Tỉnh Bình Định', '427 Nguyễn Huệ, thị trấn Tuy Phước, Tuy Phước, Bình Định', 'yte@tuyphuoc.binhdinh.gov.vn', '(0256) 3533204', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268102+07', 'system', '2023-07-26 08:40:35.268102+07', NULL);
INSERT INTO category."Organizations" VALUES ('c399c417-ee0e-463c-5a3a-08db8d794ea2', NULL, 'H08.12.36', 'Chi nhánh Văn phòng đăng ký đất đai - Huyện An Lão - Tỉnh Bình Định', 'Thôn 2, Thị trấn An Lão', 'vpdkdd@stnmt.binhdinh.gov.vn', '(0256) 3875423', NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262449+07', 'system', '2023-07-26 08:40:35.262449+07', NULL);
INSERT INTO category."Organizations" VALUES ('c3fa23cf-06dd-4087-5af3-08db8d794ea2', '000.76.34.H08', 'H08.34.76', 'UBND phường Hoài Đức thị xã Hoài Nhơn tỉnh Bình Định', 'Phường Hoài Đức - TX Hoài Nhơn', 'hoaiduc@hoainhon.binhdinh.gov.vn', '(0256) 3562 412', NULL, 'hoaiduc-hoainhon.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263401+07', 'system', '2023-07-26 08:40:35.263401+07', NULL);
INSERT INTO category."Organizations" VALUES ('c4552453-b905-4a9e-59f2-08db8d794ea2', '000.67.03.H08', 'H08.3.67', 'Trường THPT chuyên Lê Quý Đôn', '02 Nguyễn Huệ, Quy Nhơn, Bình Định', 'thptlequydon@sgddt.binhdinh.gov.vn', '(0256) 3893398', NULL, 'lequydonbinhdinh.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262047+07', 'system', '2023-07-26 08:40:35.262047+07', NULL);
INSERT INTO category."Organizations" VALUES ('c4564061-b6e9-4e6b-5b3d-08db8d794ea2', '000.71.36.H08', 'H08.36.71', 'UBND Thị trấn Phù Mỹ - Huyện Phù Mỹ -Tỉnh Bình Định', 'TT Phù Mỹ - Phù Mỹ', 'ubndttphumy@phumy.binhdinh.gov.vn', '(0256) 3855319', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267679+07', 'system', '2023-07-26 08:40:35.26768+07', NULL);
INSERT INTO category."Organizations" VALUES ('c589ef20-1fad-431c-5a37-08db8d794ea2', NULL, 'H08.12.32', 'Chi nhánh Văn phòng đăng ký đất đai - Huyện Phù Cát - Tỉnh Bình Định', '141 Quang Trung, TT. Ngô Mây', 'vpdkdd@stnmt.binhdinh.gov.vn', '(0256) 3850 997', NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262427+07', 'system', '2023-07-26 08:40:35.262427+07', NULL);
INSERT INTO category."Organizations" VALUES ('c5a7b86d-f5a3-46b6-59f5-08db8d794ea2', '000.70.03.H08', 'H08.3.70', 'Trường PTDTNT THCS&THPT Vân Canh tỉnh Bình Định', 'Thị trấn Vân Canh, Vân Canh, Bình Định', 'ptdtntvancanh@sgddt.binhdinh.gov.vn', '(0256) 3888307', NULL, 'ptdtntvancanh-binhdinh.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262061+07', 'system', '2023-07-26 08:40:35.262061+07', NULL);
INSERT INTO category."Organizations" VALUES ('c5c78fea-b967-47bd-5a97-08db8d794ea2', '000.08.32.H08', 'H08.32.8', 'Phòng Giáo dục - Đào Tạo - Thị xã An Nhơn - Tỉnh Bình Định', '85 Lê Hồng Phong, Thị xã An Nhơn', 'gddt@annhon.binhdinh.gov.vn', '(0256) 3835123', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262934+07', 'system', '2023-07-26 08:40:35.262934+07', NULL);
INSERT INTO category."Organizations" VALUES ('c5e757e1-1aba-47de-5a4c-08db8d794ea2', '000.30.15.H08', 'H08.15.30', 'Trung tâm võ thuật cổ truyền Bình Định - Tỉnh Bình Định', '236B Lê Hồng Phong - Tp. Quy Nhơn tỉnh Bình Định', 'ttvtct@svhtt.binhdinh.gov.vn', '(0256) 3811100', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262545+07', 'system', '2023-07-26 08:40:35.262545+07', NULL);
INSERT INTO category."Organizations" VALUES ('c624d751-d8ff-4d89-5b37-08db8d794ea2', '000.17.36.H08', 'H08.36.17', 'Công an huyện Phù Mỹ - Tỉnh Bình Định', 'TT Phù Mỹ - Phù Mỹ', 'congan@phumy.binhdinh.gov.vn', '(0256) 3755529', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267661+07', 'system', '2023-07-26 08:40:35.267661+07', NULL);
INSERT INTO category."Organizations" VALUES ('c62a92c9-c87c-472e-5a77-08db8d794ea2', '000.08.31.H08', 'H08.31.08', 'Phòng Giáo dục - Đào Tạo - Huyện An Lão - Tỉnh Bình Định', 'Thôn 2 - Thị trấn An Lão - An Lão', 'giaoduc@anlao.binhdinh.gov.vn', NULL, NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262789+07', 'system', '2023-07-26 08:40:35.262789+07', NULL);
INSERT INTO category."Organizations" VALUES ('c6dbf371-bc07-437a-5ace-08db8d794ea2', '000.75.33.H08', 'H08.33.75', 'UBND Xã Ân Hảo Tây - Huyện Hoài Ân - Tỉnh Bình Định', 'Ân Hảo Tây- Hoài Ân', 'ubndanhaotay@hoaian.binhdinh.gov.vn', '(0256) 3872098', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263221+07', 'system', '2023-07-26 08:40:35.263221+07', NULL);
INSERT INTO category."Organizations" VALUES ('c6fa4ee3-db6a-47fe-5b69-08db8d794ea2', '000.34.37.H08', 'H08.37.34', 'Đội trật tự thành phố - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'dkttt@quynhon.binhdinh.gov.vn', '(0256) 3792173', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267826+07', 'system', '2023-07-26 08:40:35.267826+07', NULL);
INSERT INTO category."Organizations" VALUES ('c724a136-7e7a-4520-59bd-08db8d794ea2', NULL, 'H08.1.21', 'Trung tâm Phục vụ hành chính công', '127 Hai Bà Trưng, Quy Nhơn', 'ttpvhcc@binhdinh.gov.vn', '(0256) 3702899', NULL, 'vpub.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261699+07', 'system', '2023-07-26 08:40:35.2617+07', NULL);
INSERT INTO category."Organizations" VALUES ('c75bc06d-ab49-4f21-5b27-08db8d794ea2', '000.88.35.H08', 'H08.35.88', 'UBND Xã Cát Trinh - Huyện Phù Cát - Tỉnh Bình Định', '', 'cattrinh@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267604+07', 'system', '2023-07-26 08:40:35.267604+07', NULL);
INSERT INTO category."Organizations" VALUES ('c78fde16-19a4-4b47-59f6-08db8d794ea2', '000.71.03.H08', 'H08.3.71', 'Trường PTDTNT THCS&THPT Vĩnh Thạnh tỉnh Bình Định', 'Thôn Định Nhất, xã Vĩnh Hảo, Vĩnh Thạnh, Bình Định.', 'ptdtntvinhthanh@sgddt.binhdinh.gov.vn', '(0256) 3996335', NULL, 'truongptdtntvinhthanh.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262065+07', 'system', '2023-07-26 08:40:35.262065+07', NULL);
INSERT INTO category."Organizations" VALUES ('c828a893-0147-407a-5a3d-08db8d794ea2', '000.00.13.H08', 'H08.13', 'Sở Tư pháp tỉnh Bình Định', '139 Lê Lợi, TP.Quy Nhơn, tỉnh Bình Định', 'sotuphap@stp.binhdinh.gov.vn', '(0256) 3813905', NULL, 'stp.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262462+07', 'system', '2023-07-26 08:40:35.262462+07', NULL);
INSERT INTO category."Organizations" VALUES ('c891d746-44dd-4bc9-5a62-08db8d794ea2', '000.46.17.H08', 'H08.17.46', 'Trung tâm Y tế huyện An Lão - Tỉnh Bình Định', 'Thị trấn An Lão, huyện An Lão', 'kientx@syt.binhdinh.gov.vn', '(0256) 3875205', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262659+07', 'system', '2023-07-26 08:40:35.262659+07', NULL);
INSERT INTO category."Organizations" VALUES ('c97051f7-0d08-4a64-5ae6-08db8d794ea2', '000.12.34.H08', 'H08.34.12', 'Phòng Y tế- Thị xã Hoài Nhơn - Tỉnh Bình Định', 'Phường Bồng Sơn - TX Hoài Nhơn', 'phongyt@hoainhon.binhdinh.gov.vn', '(0256) 3961188', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263338+07', 'system', '2023-07-26 08:40:35.263338+07', NULL);
INSERT INTO category."Organizations" VALUES ('c9e2ec8b-f39e-4f1c-59c9-08db8d794ea2', '000.26.03.H08', 'H08.3.26', 'Trường THPT Số 1 An Nhơn - Tỉnh Bình Định', 'P. Bình Định, An Nhơn, Bình Định', 'thptannhon1@sgddt.binhdinh.gov.vn', '(0256) 836818, (0256) 835341', NULL, 'thptso1annhon.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261802+07', 'system', '2023-07-26 08:40:35.261802+07', NULL);
INSERT INTO category."Organizations" VALUES ('ca01591e-6e72-471e-5b45-08db8d794ea2', '000.79.36.H08', 'H08.36.79', 'UBND Xã Mỹ Lợi - Huyện Phù Mỹ - Tỉnh Bình Định', 'Mỹ Lợi - Phù Mỹ', 'ubndmyloi@phumy.binhdinh.gov.vn', '(0256) 3858240', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267707+07', 'system', '2023-07-26 08:40:35.267707+07', NULL);
INSERT INTO category."Organizations" VALUES ('cac935a9-98b5-4e5a-5aab-08db8d794ea2', '000.77.32.H08', 'H08.32.77', 'UBND Xã Nhơn Phong - Thị xã An Nhơn - Tỉnh Bình Định', 'Nhơn Phong, Thị xã An Nhơn', 'nhonphong@annhon.binhdinh.gov.vn', '(0256) 3612317', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263033+07', 'system', '2023-07-26 08:40:35.263033+07', NULL);
INSERT INTO category."Organizations" VALUES ('cb489869-1cc2-41de-5b59-08db8d794ea2', '000.08.37.H08', 'H08.37.8', 'Phòng Giáo dục - Đào Tạo - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'pgd@quynhon.binhdinh.gov.vn', '(0256) 3829308', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267772+07', 'system', '2023-07-26 08:40:35.267772+07', NULL);
INSERT INTO category."Organizations" VALUES ('cb921170-9a13-4c66-5a5d-08db8d794ea2', '000.41.17.H08', 'H08.17.41', 'Trung tâm Y tế thị xã An Nhơn - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh', 'thinhdt@syt.binhdinh.gov.v', '(0256) 3888608', NULL, 'vancanhbd.health.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262628+07', 'system', '2023-07-26 08:40:35.262628+07', NULL);
INSERT INTO category."Organizations" VALUES ('cb943cec-f9a0-4479-5aed-08db8d794ea2', NULL, NULL, 'Các xã thuộc UBND Thị xã Hoài Nhơn', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263367+07', 'system', '2023-07-26 08:40:35.263367+07', NULL);
INSERT INTO category."Organizations" VALUES ('cc4973ca-43c7-45f0-5a17-08db8d794ea2', '000.22.10.H08', 'H08.10.22', 'Chi cục Kiểm Lâm - Tỉnh Bình Định', 'Số 24 Lê Hồng Phong, TP. Quy Nhơn, tỉnh Bình Định', 'cckl@snnptnt.binhdinh.gov.vn', '(0256) 3826722', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26225+07', 'system', '2023-07-26 08:40:35.262251+07', NULL);
INSERT INTO category."Organizations" VALUES ('ced1e1e3-19dd-44bb-5bbe-08db8d794ea2', '000.20.39.H08', 'H08.39.20', 'Trung tâm phát triển quỹ đất - Huyện Tuy Phước - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268114+07', 'system', '2023-07-26 08:40:35.268115+07', NULL);
INSERT INTO category."Organizations" VALUES ('ced747b7-c40f-4670-5ada-08db8d794ea2', NULL, NULL, 'Cơ quan chuyên môn thuộc UBND Thị xã Hoài Nhơn', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263279+07', 'system', '2023-07-26 08:40:35.263279+07', NULL);
INSERT INTO category."Organizations" VALUES ('cee221b0-1f41-4ada-59fd-08db8d794ea2', '000.20.04.H08', 'H08.4.20', 'Ban Quản lý bảo trì đường bộ - Tỉnh Bình Định', '08 Lê Thánh Tôn, phường Lê Lợi, thành phố Quy Nhơn, tỉnh Bình Định', 'nhanttt@sgtvt.binhdinh.gov.vn', '(0256) 3893979', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262108+07', 'system', '2023-07-26 08:40:35.262108+07', NULL);
INSERT INTO category."Organizations" VALUES ('cf751da2-f44e-4163-5b9b-08db8d794ea2', '000.29.38.H08', 'H08.38.29', 'Trung tâm Dịch vụ nông nghiệp - Huyện Tây Sơn - Tỉnh Bình Định', 'Khối Phú Xuân, thị trấn Phú Phong', 'ttdvnn@tayson.binhdinh.gov.vn', '(0256) 3880022', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267979+07', 'system', '2023-07-26 08:40:35.267979+07', NULL);
INSERT INTO category."Organizations" VALUES ('cfeb23e1-ddb9-43a7-5b68-08db8d794ea2', '000.33.37.H08', 'H08.37.33', 'Trung tâm Văn hóa-Thông tin - Thể thao thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', NULL, '(0256) 3828234', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267823+07', 'system', '2023-07-26 08:40:35.267823+07', NULL);
INSERT INTO category."Organizations" VALUES ('d0e37568-9b8b-49f3-5a02-08db8d794ea2', '000.00.06.H08', 'H08.6', 'Sở Khoa học và Công nghệ tỉnh Bình Định', '208 Diên Hồng, thành phố Quy Nhơn, tỉnh Bình Định', 'skhcn@skhcn.binhdinh.gov.vn', '(0256) 3522075', NULL, 'skhcn.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262133+07', 'system', '2023-07-26 08:40:35.262133+07', NULL);
INSERT INTO category."Organizations" VALUES ('d1b275c8-49ac-4190-5a7a-08db8d794ea2', '000.11.31.H08', 'H08.31.11', 'Phòng Nông nghiệp - Phát triển nông thôn - Huyện An Lão - Tỉnh Bình Định', 'Thôn 2 - Thị trấn An Lão - An Lão', 'nongnghiep@anlao.binhdinh.gov.vn', NULL, NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262801+07', 'system', '2023-07-26 08:40:35.262801+07', NULL);
INSERT INTO category."Organizations" VALUES ('d28eab9f-fe8a-4fb9-5bb5-08db8d794ea2', '000.06.39.H08', 'H08.39.6', 'Phòng Lao động - Thương Binh và Xã hội - Huyện Tuy Phước - Tỉnh Bình Định', '03 Đô Đốc Lộc, thị trấn tuy Phước, Tuy Phước, Bình Định', 'phonglaodong@tuyphuoc.binhdinh.gov.vn', '(0256) 3633370', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268081+07', 'system', '2023-07-26 08:40:35.268081+07', NULL);
INSERT INTO category."Organizations" VALUES ('d2b79b11-011a-4407-5a76-08db8d794ea2', '000.07.31.H08', 'H08.31.07', 'Phòng Văn hóa - Thông tin - Huyện An Lão - Tỉnh Bình Định', 'Thôn 2 - Thị trấn An Lão - An Lão', 'vanhoa@anlao.binhdinh.gov.vn', NULL, NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262784+07', 'system', '2023-07-26 08:40:35.262784+07', NULL);
INSERT INTO category."Organizations" VALUES ('d3227a66-9cab-43aa-5a79-08db8d794ea2', '000.10.31.H08', 'H08.31.10', 'Phòng Kinh tế - Hạ tầng - Huyện An Lão - Tỉnh Bình Định', 'Thôn 2 - Thị trấn An Lão - An Lão', 'kinhte@anlao.binhdinh.gov.vn', NULL, NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262797+07', 'system', '2023-07-26 08:40:35.262797+07', NULL);
INSERT INTO category."Organizations" VALUES ('d346d517-1553-47d9-5a9c-08db8d794ea2', NULL, NULL, 'Đơn vị sự nghiệp thuộc UBND Thị xã An Nhơn', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262963+07', 'system', '2023-07-26 08:40:35.262963+07', NULL);
INSERT INTO category."Organizations" VALUES ('d39adc51-0e22-423c-5a09-08db8d794ea2', '000.20.07.H08', 'H08.7.20', 'Trung tâm Chăm sóc và điều dưỡng người có công - Tỉnh Bình Định', '07/14 đường Bế Văn Đàn, phường Ghềnh Ráng, TP. Quy Nhơn, tỉnh Bình Định', NULL, '(0256) 3746821', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262175+07', 'system', '2023-07-26 08:40:35.262175+07', NULL);
INSERT INTO category."Organizations" VALUES ('d47c5a64-2ec2-48c7-5afa-08db8d794ea2', '000.83.34.H08', 'H08.34.83', 'UBND xã Hoài Mỹ thị xã Hoài Nhơn tỉnh Bình Định', 'Xã Hoài Mỹ - TX Hoài Nhơn', 'hoaimy@hoainhon.binhdinh.gov.vn', '(0256) 3867 232', NULL, 'hoaimy-hoainhon.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26344+07', 'system', '2023-07-26 08:40:35.26344+07', NULL);
INSERT INTO category."Organizations" VALUES ('d536c93b-1e63-44d2-5baf-08db8d794ea2', NULL, NULL, 'Cơ quan chuyên môn thuộc UBND Huyện Tuy Phước', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268059+07', 'system', '2023-07-26 08:40:35.26806+07', NULL);
INSERT INTO category."Organizations" VALUES ('d62daf2d-54c5-4443-5a03-08db8d794ea2', '000.20.06.H08', 'H08.6.20', 'Chi cục tiêu chuẩn đo lường chất lượng - Tỉnh Bình Định', '01 Bà Triệu, thành phố Quy Nhơn, tỉnh Bình Định', NULL, '(0256) 3822747', NULL, 'tdcbinhdinh.org.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262138+07', 'system', '2023-07-26 08:40:35.262138+07', NULL);
INSERT INTO category."Organizations" VALUES ('d6fecba4-e39f-4252-5a85-08db8d794ea2', '000.72.31.H08', 'H08.31.72', 'UBND Xã An Tân - Huyện An Lão - Tỉnh Bình Định', 'An Tân - An Lão - BĐ', 'antan@anlao.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262853+07', 'system', '2023-07-26 08:40:35.262854+07', NULL);
INSERT INTO category."Organizations" VALUES ('d720645c-3cbd-4c85-5a66-08db8d794ea2', '000.49.17.H08', 'H08.17.49', 'Trung tâm Y tế huyện Vĩnh Thạnh - Tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh', 'sonlth@syt.binhdinh.gov.vn', '(0256) 3886318', NULL, 'trungtamytevinhthanh.vn/', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262676+07', 'system', '2023-07-26 08:40:35.262676+07', NULL);
INSERT INTO category."Organizations" VALUES ('d72f6aa2-41c0-464a-5b1e-08db8d794ea2', '000.79.35.H08', 'H08.35.79', 'UBND Xã Cát Hải - Huyện Phù Cát - Tỉnh Bình Định', '', 'cathai@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263593+07', 'system', '2023-07-26 08:40:35.263593+07', NULL);
INSERT INTO category."Organizations" VALUES ('d807512c-80b7-49f6-5b44-08db8d794ea2', '000.78.36.H08', 'H08.36.78', 'UBND Xã Mỹ Lộc - Huyện Phù Mỹ -Tỉnh Bình Định', 'Mỹ Lộc - Phù Mỹ', 'ubndmyloc@phumy.binhdinh.gov.vn', '(0256) 3858245', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267704+07', 'system', '2023-07-26 08:40:35.267704+07', NULL);
INSERT INTO category."Organizations" VALUES ('d85a5ad8-5c4d-4ba0-5b61-08db8d794ea2', '000.22.37.H08', 'H08.37.22', 'Ban Quản lý công ích thành phố - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'phuongltt@quynhon.binhdinh.gov.vn', '(0256) 3818989', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267799+07', 'system', '2023-07-26 08:40:35.267799+07', NULL);
INSERT INTO category."Organizations" VALUES ('d9a0b2fb-5bad-497e-5a81-08db8d794ea2', '000.25.31.H08', 'H08.31.25', 'Trung tâm Giáo dục nghề nghiệp - Giáo dục thường xuyên - Huyện An Lão - Tỉnh Bình Định', 'Thôn 2 - Thị trấn An Lão - An Lão', 'ttgdtx@anlao.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262828+07', 'system', '2023-07-26 08:40:35.262828+07', NULL);
INSERT INTO category."Organizations" VALUES ('da2861cf-d70d-4d40-5a6c-08db8d794ea2', '000.20.21.H08', 'H08.21.20', 'Trung tâm thông tin xúc tiến du lịch Bình Định - Tỉnh Bình Định', '187 Phan Bội Châu, thành phố Quy Nhơn, tỉnh Bình Định', 'ttttxtdl@sodulich.binhdinh.gov.vn', '(0256) 3818109', NULL, 'dulichbinhdinh.com.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26271+07', 'system', '2023-07-26 08:40:35.26271+07', NULL);
INSERT INTO category."Organizations" VALUES ('db2812dd-c6e6-44e2-5a89-08db8d794ea2', '000.76.31.H08', 'H08.31.76', 'UBND Thị trấn An Lão - Huyện An Lão - Tỉnh Bình Định', 'Thị trấn An Lão - An Lão -BĐ', 'thitran@anlao.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262869+07', 'system', '2023-07-26 08:40:35.262869+07', NULL);
INSERT INTO category."Organizations" VALUES ('dc51b592-cfbb-4857-5a8d-08db8d794ea2', '000.80.31.H08', 'H08.31.80', 'UBND Xã An Trung - Huyện An Lão - Tỉnh Bình Định', 'An Trung - An Lão -BĐ', 'antrung@anlao.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262883+07', 'system', '2023-07-26 08:40:35.262884+07', NULL);
INSERT INTO category."Organizations" VALUES ('dc91a160-6075-45a0-5aba-08db8d794ea2', '000.05.33.H08', 'H08.33.5', 'Phòng Tài Nguyên và Môi Trường - Huyện Hoài Ân - Tỉnh Bình Định', 'TT. Tăng Bạt Hổ - Hoài Ân', 'tnmt@hoaian.binhdinh.gov.vn', '(0256) 3770354', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263101+07', 'system', '2023-07-26 08:40:35.263101+07', NULL);
INSERT INTO category."Organizations" VALUES ('dcb2b50f-d947-4714-5b55-08db8d794ea2', '000.04.37.H08', 'H08.37.4', 'Phòng Tài Chính - Kế Hoạch - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'dungtth@quynhon.binhdinh.gov.vn', '(0256) 3811589', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267758+07', 'system', '2023-07-26 08:40:35.267758+07', NULL);
INSERT INTO category."Organizations" VALUES ('dcd7aaff-49ce-45be-59f4-08db8d794ea2', '000.69.03.H08', 'H08.3.69', 'Trường PTDTNT THPT Bình Định tỉnh Bình Định', '227 Nguyễn Thị Minh Khai, Quy Nhơn', 'ptdtnttinhbinhdinh@sgddt.binhdinh.gov.vn', '(0256) 3846929', NULL, 'dtntbinhdinh.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262056+07', 'system', '2023-07-26 08:40:35.262056+07', NULL);
INSERT INTO category."Organizations" VALUES ('dce4427d-c1ec-4983-5be3-08db8d794ea2', '000.20.40.H08', 'H08.40.20', 'Ban quản lý rừng phòng hộ - Huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'bqlrung@vancanh.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26824+07', 'system', '2023-07-26 08:40:35.26824+07', NULL);
INSERT INTO category."Organizations" VALUES ('dd0585ec-1b1a-41bc-5a8a-08db8d794ea2', '000.77.31.H08', 'H08.31.77', 'UBND Xã An Hưng - Huyện An Lão - Tỉnh Bình Định', 'An Hưng - An Lão - BĐ', 'anhung@anlao.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262873+07', 'system', '2023-07-26 08:40:35.262873+07', NULL);
INSERT INTO category."Organizations" VALUES ('dd0e0d6b-240b-43f8-59c1-08db8d794ea2', '000.21.02.H08', 'H08.2.22', 'Trung tâm Khuyến công và Xúc tiến Thương mại Bình Định', '93 Phan Bội Châu, TP Quy Nhơn, tỉnh Bình Định', 'ttkcxttmbd@sct.binhdinh.gov.vn', '(0256) 3811035', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261724+07', 'system', '2023-07-26 08:40:35.261724+07', NULL);
INSERT INTO category."Organizations" VALUES ('dd3b69ce-4330-45a9-5a63-08db8d794ea2', '000.47.17.H08', 'H08.17.47', 'Trung tâm Y tế huyện Tây Sơn - Tỉnh Bình Định', 'Số 51 Võ Văn Dõng, thị trấn Phú Phong, huyện Tây Sơn', 'dunghtt@syt.binhdinh.gov.vn', '(0256) 3780282', NULL, 'ttytetayson.vhv.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262663+07', 'system', '2023-07-26 08:40:35.262663+07', NULL);
INSERT INTO category."Organizations" VALUES ('dd894aad-3f5d-457f-5b35-08db8d794ea2', '000.12.36.H08', 'H08.36.12', 'Phòng Y tế - Huyện Phù Mỹ - Tỉnh Bình Định', 'TT Phù Mỹ - Phù Mỹ', 'yte@phumy.binhdinh.gov.vn', '(0256) 3855 471', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267655+07', 'system', '2023-07-26 08:40:35.267655+07', NULL);
INSERT INTO category."Organizations" VALUES ('dde639bc-ab8d-4990-5c10-08db8d794ea2', '000.77.41.H08', 'H08.41.77', 'UBND Xã Vĩnh Sơn - Huyện Vĩnh Thạnh - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268383+07', 'system', '2023-07-26 08:40:35.268383+07', NULL);
INSERT INTO category."Organizations" VALUES ('de27571b-c40a-4d03-5a30-08db8d794ea2', '000.23.12.H08', 'H08.12.23', 'Văn phòng Đăng ký đất đai - Tỉnh Bình Định', '518 Trần Hưng Đạo, TP. Quy Nhơn', 'vpdkdd@stnmt.binhdinh.gov.vn', '(0256) 3823 496', NULL, 'stnmt.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262395+07', 'system', '2023-07-26 08:40:35.262395+07', NULL);
INSERT INTO category."Organizations" VALUES ('dfd85db9-7614-4b38-5b25-08db8d794ea2', '000.86.35.H08', 'H08.35.86', 'UBND Xã Cát Lâm - Huyện Phù Cát - Tỉnh Bình Định', '', 'catlam@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263628+07', 'system', '2023-07-26 08:40:35.263628+07', NULL);
INSERT INTO category."Organizations" VALUES ('e03729a6-48ba-47c3-5b53-08db8d794ea2', '000.02.37.H08', 'H08.37.2', 'Phòng Nội Vụ - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'vanthunv@quynhon.binhdinh.gov.vn', '(0256) 3821776', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267751+07', 'system', '2023-07-26 08:40:35.267751+07', NULL);
INSERT INTO category."Organizations" VALUES ('e06c19fe-33b9-42c5-5adb-08db8d794ea2', '000.01.34.H08', 'H08.34.1', 'Văn phòng HĐND và UBND - Thị xã Hoài Nhơn - Tỉnh Bình Định', 'Phường Bồng Sơn - TX Hoài Nhơn', 'ubndthixahoainhon@hoainhon.binhdinh.gov.vn', '(0256) 3671265', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263283+07', 'system', '2023-07-26 08:40:35.263283+07', NULL);
INSERT INTO category."Organizations" VALUES ('e0a001b1-2dc5-4bee-5bc4-08db8d794ea2', NULL, 'H08.39.31', 'Trung tâm Giáo dục Nghề nghiệp - Giáo dục Thường xuyên Tuy Phước', '418 Nguyễn Huệ, thị trấn Tuy Phước, Tuy Phước, Bình Định', 'ttgdnn-gdtt@tuyphuoc.binhdinh.gov.vn', '(0256) 3633455', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268135+07', 'system', '2023-07-26 08:40:35.268135+07', NULL);
INSERT INTO category."Organizations" VALUES ('e0b8a351-41c7-40b5-5bc7-08db8d794ea2', '000.72.39.H08', 'H08.39.72', 'UBND Thị trấn Diêu Trì - Huyện Tuy Phước - Tỉnh Bình Định', '01 Tăng Bạt Hổ, thị trấn Diêu trì, Tuy Phước, Bình Định', 'dieutri@tuyphuoc.binhdinh.gov.vn', '(0256) 3833245', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268144+07', 'system', '2023-07-26 08:40:35.268144+07', NULL);
INSERT INTO category."Organizations" VALUES ('e0f0f09c-7307-473d-5ad0-08db8d794ea2', '000.77.33.H08', 'H08.33.77', 'UBND Xã Ân Tường Tây - Huyện Hoài Ân - Tỉnh Bình Định', 'Ân Tường Tây- Hoài Ân', 'ubndantuongtay@hoaian.binhdinh.gov.vn', '(0256) 3572395', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26323+07', 'system', '2023-07-26 08:40:35.26323+07', NULL);
INSERT INTO category."Organizations" VALUES ('e187f3c5-c945-46b6-5a7c-08db8d794ea2', '000.13.31.H08', 'H08.31.13', 'Phòng Dân tộc - Huyện An Lão - Tỉnh Bình Định', 'Thôn 2 - Thị trấn An Lão - An Lão', 'dantoc@anlao.binhdinh.gov.vn', NULL, NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262808+07', 'system', '2023-07-26 08:40:35.262808+07', NULL);
INSERT INTO category."Organizations" VALUES ('e1cc2c71-fb49-445b-5abd-08db8d794ea2', '000.08.33.H08', 'H08.33.8', 'Phòng Giáo dục - Đào Tạo - Huyện Hoài Ân - Tỉnh Bình Định', 'TT. Tăng Bạt Hổ - Hoài Ân', 'gddt@hoaian.binhdinh.gov.vn', '(0256) 3870244', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263123+07', 'system', '2023-07-26 08:40:35.263123+07', NULL);
INSERT INTO category."Organizations" VALUES ('e272e7e4-b7c9-4285-5c05-08db8d794ea2', NULL, 'H08.41.23', 'Trung tâm dịch vụ nông nghiệp huyện Vĩnh Thạnh tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'ttdvnn@vinhthanh.binhdinh.gov.vn', '(0256) 3886224', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268351+07', 'system', '2023-07-26 08:40:35.268351+07', NULL);
INSERT INTO category."Organizations" VALUES ('e2d9d67f-36dc-4e22-5a55-08db8d794ea2', '000.26.17.H08', 'H08.17.26', 'Bệnh viện Tâm thần Bình Định - Tỉnh Bình Định', 'KV5, P. Nhơn Phú, TP. Quy Nhơn', 'phudt@syt.biinhdinh.gov.vn', '(0256) 3848660', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262584+07', 'system', '2023-07-26 08:40:35.262584+07', NULL);
INSERT INTO category."Organizations" VALUES ('e324921e-1524-4a8d-59d6-08db8d794ea2', '000.39.03.H08', 'H08.3.39', 'Trường THPT Tây Sơn - Tỉnh Bình Định', 'Mỹ An, xã Tây Bình, Tây Sơn, Bình Định', 'thpttayson@sgddt.binhdinh.gov.vn', '(0256) 3883366', NULL, 'truongtaysonbinhdinh.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261893+07', 'system', '2023-07-26 08:40:35.261893+07', NULL);
INSERT INTO category."Organizations" VALUES ('e32beb4f-0758-49a1-5aff-08db8d794ea2', '000.00.35.H08', 'H08.35', 'UBND Huyện Phù Cát tỉnh Bình Định', '141 đường Quang Trung, Thị Trấn Ngô Mây, huyện Phù Cát , tỉnh Bình Định', 'vp@phucat.binhdinh.gov.vn', '(0256) 3850214', NULL, 'phucat.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26346+07', 'system', '2023-07-26 08:40:35.26346+07', NULL);
INSERT INTO category."Organizations" VALUES ('e3cdf135-00bf-40c1-5bba-08db8d794ea2', '000.11.39.H08', 'H08.39.11', 'Phòng Nông nghiệp - Phát triển nông thôn - Huyện Tuy Phước - Tỉnh Bình Định', '03 Đô Đốc Lộc, thị trấn tuy Phước, Tuy Phước, Bình Định', 'phongnongnghiep@tuyphuoc.binhdinh.gov.vn', '(0256) 3633371', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268098+07', 'system', '2023-07-26 08:40:35.268098+07', NULL);
INSERT INTO category."Organizations" VALUES ('e3f813c1-541b-4a3c-5bbc-08db8d794ea2', NULL, 'H08.39.25', 'Ban Chỉ huy quân sự huyện Tuy Phước', 'Thôn Phổ Trạch, xã Phước Thuận, huyện Tuy Phước', 'vanthubchqs@tuyphuoc.binhdinh.gov.vn', '(0256) 3621368', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268107+07', 'system', '2023-07-26 08:40:35.268107+07', NULL);
INSERT INTO category."Organizations" VALUES ('e58aa2ab-3e02-4bc6-5abf-08db8d794ea2', '000.10.33.H08', 'H08.33.10', 'Phòng Kinh tế - Hạ tầng - Huyện Hoài Ân - Tỉnh Bình Định', 'TT. Tăng Bạt Hổ - Hoài Ân', 'ktht@hoaian.binhdinh.gov.vn', '(0256) 3870501', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26313+07', 'system', '2023-07-26 08:40:35.263131+07', NULL);
INSERT INTO category."Organizations" VALUES ('e58bc1c7-04b5-4720-5a07-08db8d794ea2', '000.25.06.H08', 'H08.6.25', 'Quỹ phát triển Khoa học và Công nghệ - Tỉnh Bình Định', '208 Diên Hồng, thành phố Quy Nhơn, tỉnh Bình Định', NULL, '(0256) 3521761', NULL, 'bidifosted.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262166+07', 'system', '2023-07-26 08:40:35.262166+07', NULL);
INSERT INTO category."Organizations" VALUES ('e5944211-d3eb-401d-5a1f-08db8d794ea2', '000.32.10.H08', 'H08.10.32', 'Trung tâm Quy hoạch nông nghiệp, nông thôn - Tỉnh Bình Định', '450 Nguyễn Thị Minh Khai, TP. Quy Nhơn, tỉnh Bình Định', 'ttqhnnnt@snnptnt.binhdinh.gov.vn', '(0256) 6250076', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262295+07', 'system', '2023-07-26 08:40:35.262295+07', NULL);
INSERT INTO category."Organizations" VALUES ('e5e350c0-3a38-4c56-5b83-08db8d794ea2', '000.89.37.H08', 'H08.37.89', 'UBND Xã Nhơn Lý - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267901+07', 'system', '2023-07-26 08:40:35.267901+07', NULL);
INSERT INTO category."Organizations" VALUES ('e725d328-0695-478d-5ac4-08db8d794ea2', '000.21.33.H08', 'H08.33.21', 'Trung tâm Phát triển quỹ đất - Huyện Hoài Ân - Tỉnh Bình Định', 'TT. Tăng Bạt Hổ - Hoài Ân', 'tt_dichvunongnghiep@hoaian.binhdinh.gov.vn', '(0256) 3870305', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26316+07', 'system', '2023-07-26 08:40:35.26316+07', NULL);
INSERT INTO category."Organizations" VALUES ('e7d4d491-8382-4c62-5a91-08db8d794ea2', '000.02.32.H08', 'H08.32.2', 'Phòng Nội Vụ - Thị xã An Nhơn - Tỉnh Bình Định', '78 Lê Hồng Phong, Thị xã An Nhơn', 'noivu@anhnhon.binhdinh.gov.vn', '(0256) 3736126', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262909+07', 'system', '2023-07-26 08:40:35.262909+07', NULL);
INSERT INTO category."Organizations" VALUES ('e7e6c3df-725f-4956-5a9d-08db8d794ea2', '000.20.32.H08', 'H08.32.20', 'Văn phòng đăng ký quyền sử dụng đất - Thị xã An Nhơn - Tỉnh Bình Định', '02 Nguyễn Thị Minh Khai, Bình Định, An Nhơn', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262966+07', 'system', '2023-07-26 08:40:35.262966+07', NULL);
INSERT INTO category."Organizations" VALUES ('e913b221-2c3a-4751-5a2b-08db8d794ea2', '000.19.10.H08', 'H08.19.10', 'Thanh tra Sở Nông nghiệp và PTNT - Tỉnh Bình Định', '77 Lê Hồng Phong, P. Trần Phú, TP. Quy Nhơn, tỉnh Bình Định', 'thanhtrasnn@snnptnt.binhdinh.gov.vn', '(0256) 3820877', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262364+07', 'system', '2023-07-26 08:40:35.262364+07', NULL);
INSERT INTO category."Organizations" VALUES ('eb0d5453-0b82-4ab0-5c09-08db8d794ea2', NULL, NULL, 'Các xã thuộc UBND Huyện Vĩnh Thạnh', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268364+07', 'system', '2023-07-26 08:40:35.268364+07', NULL);
INSERT INTO category."Organizations" VALUES ('eb4f2584-8c2e-49b1-5aa5-08db8d794ea2', '000.71.32.H08', 'H08.32.71', 'UBND Phường Bình Định - Thị xã An Nhơn - Tỉnh Bình Định', 'Bình Định, Thị xã An Nhơn', 'binhdinh@annhon.binhdinh.gov.vn', '(0256) 3835268', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262999+07', 'system', '2023-07-26 08:40:35.262999+07', NULL);
INSERT INTO category."Organizations" VALUES ('eb5dde7b-68c0-4ceb-5b46-08db8d794ea2', '000.80.36.H08', 'H08.36.80', 'UBND Xã Mỹ Phong - Huyện Phù Mỹ -Tỉnh Bình Định', 'Mỹ Phong - Phù Mỹ', 'ubndmyphong@phumy.binhdinh.gov.vn', '(0256) 3858231', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26771+07', 'system', '2023-07-26 08:40:35.26771+07', NULL);
INSERT INTO category."Organizations" VALUES ('ebe2f0f2-672e-4e29-5bfb-08db8d794ea2', '000.07.41.H08', 'H08.41.7', 'Phòng Văn hóa - Thông tin - Huyện Vĩnh Thạnh - Tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'vanhoathongtin@vinhthanh.binhdinh.gov.vn', '(0256) 3886385', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268318+07', 'system', '2023-07-26 08:40:35.268318+07', NULL);
INSERT INTO category."Organizations" VALUES ('ec14898f-f0bb-4ab1-5a2c-08db8d794ea2', '000.00.11.H08', 'H08.11', 'Sở Tài chính tỉnh Bình Định', '181 Lê Hồng Phong, TP.Quy Nhơn, tỉnh Bình Định', 'vanphong@stc.binhdinh.gov.vn', '(0256) 3828861', NULL, 'stc.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262368+07', 'system', '2023-07-26 08:40:35.262368+07', NULL);
INSERT INTO category."Organizations" VALUES ('eca20339-5f5d-4d95-5b96-08db8d794ea2', '000.21.38.H08', 'H08.38.21', 'Ban Quản lý Cụm công nghiệp - Huyện Tây Sơn - Tỉnh Bình Định', 'Ban Quản lý Cụm công nghiệp - Huyện Tây Sơn - Tỉnh Bình Định', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267963+07', 'system', '2023-07-26 08:40:35.267963+07', NULL);
INSERT INTO category."Organizations" VALUES ('ecf8151d-fe21-43c1-5be8-08db8d794ea2', NULL, 'H08.40.27', 'Trung tâm dịch vụ nông nghiệp - Huyện Vân Canh- Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'ttdvnn@vancanh.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268257+07', 'system', '2023-07-26 08:40:35.268257+07', NULL);
INSERT INTO category."Organizations" VALUES ('ed400033-5161-43de-5a44-08db8d794ea2', '000.20.14.H08', 'H08.14.20', 'Trung tâm Công nghệ thông tin và Truyền thông - Tỉnh Bình Định', 'Tầng 4, 5 Số 38 trường Chinh, TP Quy Nhơn, tỉnh Bình Định', NULL, '(0256) 6286969', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262501+07', 'system', '2023-07-26 08:40:35.262501+07', NULL);
INSERT INTO category."Organizations" VALUES ('edcf46b4-3a13-4a3f-5a6b-08db8d794ea2', '000.00.21.H08', 'H08.21', 'Sở Du lịch tỉnh Bình Định', '185 Phan Bội Châu, TP.Quy Nhơn, tỉnh Bình Định', 'sodulich@binhdinh.gov.vn', '(0256) 3814148', NULL, 'sodulich.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262706+07', 'system', '2023-07-26 08:40:35.262706+07', NULL);
INSERT INTO category."Organizations" VALUES ('ee2849f7-98ce-49c9-5bcd-08db8d794ea2', '000.78.39.H08', 'H08.39.78', 'UBND Xã Phước Thuận - Huyện Tuy Phước - Tỉnh Bình Định', 'Thôn Tân Thuận, xã Phước Thuận, Tuy Phước, Bình Định', 'phuocthuan@tuyphuoc.binhdinh.gov.vn', '(0256) 3621375', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268167+07', 'system', '2023-07-26 08:40:35.268167+07', NULL);
INSERT INTO category."Organizations" VALUES ('eee3b370-0940-4210-5b73-08db8d794ea2', '000.73.37.H08', 'H08.37.73', 'UBND Phường Trần Hưng Đạo - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267857+07', 'system', '2023-07-26 08:40:35.267857+07', NULL);
INSERT INTO category."Organizations" VALUES ('ef3db685-9193-46ff-5a94-08db8d794ea2', '000.05.32.H08', 'H08.32.5', 'Phòng Tài Nguyên và Môi Trường - Thị xã An Nhơn - Tỉnh Bình Định', '79 Lê Hồng Phong, Thị xã An Nhơn', 'tnmt@annhon.binhdinh.gov.vn', '(0256) 3736071', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262922+07', 'system', '2023-07-26 08:40:35.262922+07', NULL);
INSERT INTO category."Organizations" VALUES ('ef6e6a27-8e76-479a-5b0a-08db8d794ea2', '000.11.35.H08', 'H08.35.11', 'Phòng Nông nghiệp - Phát triển nông thôn - Huyện Phù Cát - Tỉnh Bình Định', '', 'nnptnt@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263511+07', 'system', '2023-07-26 08:40:35.263511+07', NULL);
INSERT INTO category."Organizations" VALUES ('f009d1ef-8bbc-4bd6-5adf-08db8d794ea2', '000.05.34.H08', 'H08.34.5', 'Phòng Tài Nguyên và Môi Trường - Thị xã Hoài Nhơn - Tỉnh Bình Định', 'Phường Bồng Sơn - TX Hoài Nhơn', 'phongtnmt@hoainhon.binhdinh.gov.vn', '(0256) 3861771', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.2633+07', 'system', '2023-07-26 08:40:35.2633+07', NULL);
INSERT INTO category."Organizations" VALUES ('f094d05e-190c-4cbb-5b52-08db8d794ea2', '000.01.37.H08', 'H08.37.1', 'Văn Phòng HĐND và UBND - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'ubndtpquynhon@quynhon.binhdinh.gov.vn', '(0256) 3822176', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267747+07', 'system', '2023-07-26 08:40:35.267747+07', NULL);
INSERT INTO category."Organizations" VALUES ('f101eb7f-bcce-4b86-5ad3-08db8d794ea2', '000.80.33.H08', 'H08.33.80', 'UBND Xã Ân Nghĩa - Huyện Hoài Ân - Tỉnh Bình Định', 'Ân Nghĩa- Hoài Ân', 'ubndannghai@hoaian.binhdinh.gov.vn', '(0256) 3873106', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263242+07', 'system', '2023-07-26 08:40:35.263242+07', NULL);
INSERT INTO category."Organizations" VALUES ('f1117ed8-0ace-4cf0-59e0-08db8d794ea2', '000.49.03.H08', 'H08.3.49', 'Trường THPT Số 2 Phù Mỹ - Tỉnh Bình Định', '150 Võ Văn Dũng,TT Bình Dương,Phù Mỹ, Bình Định', 'thptphumy2@sgddt.binhdinh.gov.vn', '(0256) 3858232', NULL, 'phumy2.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261948+07', 'system', '2023-07-26 08:40:35.261948+07', NULL);
INSERT INTO category."Organizations" VALUES ('f1a741c2-ed71-44a0-59f7-08db8d794ea2', '000.72.03.H08', 'H08.3.72', 'Trường Phổ thông DTNT THCS&THPT An Lão - Tỉnh Bình Định', 'Thôn 2, Thị trấn An Lão huyện An Lão, Bình Định', 'ptdtntanlao@sgddt.binhdinh.gov.vn', '(0256) 3875279', NULL, 'ptdtntanlao.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26207+07', 'system', '2023-07-26 08:40:35.26207+07', NULL);
INSERT INTO category."Organizations" VALUES ('f21bbb40-e861-4685-5af4-08db8d794ea2', '000.77.34.H08', 'H08.34.77', 'UBND phường Hoài Xuân thị xã Hoài Nhơn tỉnh Bình Định', 'Phường Hoài Xuân - TX Hoài Nhơn', 'hoaixuan@hoainhon.binhdinh.gov.vn', '(0256) 3563 555', NULL, 'hoaixuan-hoainhon.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263405+07', 'system', '2023-07-26 08:40:35.263405+07', NULL);
INSERT INTO category."Organizations" VALUES ('f23d8512-bf56-4dcb-5bfd-08db8d794ea2', '000.09.41.H08', 'H08.41.9', 'Thanh tra huyện - Huyện Vĩnh Thạnh - Tỉnh Bình Định', 'Thị trấn Vĩnh Thạnh, huyện Vĩnh Thạnh, tỉnh Bình Định', 'thanhtra@vinhthanh.binhdinh.gov.vn', '(0256) 3886392', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268324+07', 'system', '2023-07-26 08:40:35.268324+07', NULL);
INSERT INTO category."Organizations" VALUES ('f2e0ef98-d678-49dc-5b79-08db8d794ea2', '000.79.37.H08', 'H08.37.79', 'UBND Phường Ghềnh Ráng - Thành phố Quy Nhơn - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267874+07', 'system', '2023-07-26 08:40:35.267874+07', NULL);
INSERT INTO category."Organizations" VALUES ('f3180a15-e8ca-4b1b-5aa4-08db8d794ea2', NULL, NULL, 'Các phường xã thuộc UBND Thị xã An Nhơn', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262996+07', 'system', '2023-07-26 08:40:35.262996+07', NULL);
INSERT INTO category."Organizations" VALUES ('f33bc6d6-bc26-4dc4-5b56-08db8d794ea2', '000.05.37.H08', 'H08.37.5', 'Phòng Tài Nguyên và Môi Trường - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'vanthutnmt@quynhon.binhdinh.gov.vn', '(0256) 3813704', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267762+07', 'system', '2023-07-26 08:40:35.267762+07', NULL);
INSERT INTO category."Organizations" VALUES ('f422db41-b1c4-44b9-5b50-08db8d794ea2', '000.00.37.H08', 'H08.37', 'UBND Thành phố Quy Nhơn tỉnh Bình Định', '30 Nguyễn Huệ, TP. Quy Nhơn, tỉnh Bình Định', 'ubndtpquynhon@quynhon.binhdinh.gov.vn', '(0256) 3822176', NULL, 'quynhon.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267741+07', 'system', '2023-07-26 08:40:35.267741+07', NULL);
INSERT INTO category."Organizations" VALUES ('f48168ef-ac99-4c59-59c2-08db8d794ea2', '000.00.03.H08', 'H08.3', 'Sở Giáo dục và Đào tạo tỉnh Bình Định', '08 Trần Phú, TP.Quy Nhơn, tỉnh Bình Định', 'vanphong.sobinhdinh@.moet.edu.vn', '(0256) 3822128', NULL, 'sgddt.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261769+07', 'system', '2023-07-26 08:40:35.261769+07', NULL);
INSERT INTO category."Organizations" VALUES ('f582fe98-1aa6-40d7-5b51-08db8d794ea2', NULL, NULL, 'Cơ quan chuyên môn thuộc UBND Thành phố Quy Nhơn', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267744+07', 'system', '2023-07-26 08:40:35.267744+07', NULL);
INSERT INTO category."Organizations" VALUES ('f5ba1514-9656-44a5-5b4c-08db8d794ea2', '000.86.36.H08', 'H08.36.86', 'UBDN Xã Mỹ Chánh Tây - Huyện Phù Mỹ - Tỉnh Bình Định', 'Mỹ Chánh Tây - Phù Mỹ', 'ubndmychanhtay@phumy.binhdinh.gov.vn', '(0256) 3859085', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267729+07', 'system', '2023-07-26 08:40:35.267729+07', NULL);
INSERT INTO category."Organizations" VALUES ('f5efdacc-7dda-4e48-5c0e-08db8d794ea2', '000.75.41.H08', 'H08.41.75', 'UBND Xã Vĩnh Hòa - Huyện Vĩnh Thạnh - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268378+07', 'system', '2023-07-26 08:40:35.268378+07', NULL);
INSERT INTO category."Organizations" VALUES ('f630e89a-0a0e-4acd-5c0b-08db8d794ea2', '000.72.41.H08', 'H08.41.72', 'UBND Xã Vĩnh Quang - Huyện Vĩnh Thạnh - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26837+07', 'system', '2023-07-26 08:40:35.26837+07', NULL);
INSERT INTO category."Organizations" VALUES ('f6575a79-f783-4924-5a14-08db8d794ea2', '000.00.10.H08', 'H08.10', 'Sở Nông nghiệp và Phát triển nông thôn tỉnh Bình Định', 'Số 77 Lê Hồng Phong, phường Trần Phú, TP.Quy Nhơn, tỉnh Bình Định', 'vanphong@snnptnt.binhdinh.gov.vn', '(0256) 3812332', NULL, 'snnptnt.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262236+07', 'system', '2023-07-26 08:40:35.262236+07', NULL);
INSERT INTO category."Organizations" VALUES ('f67aa340-a1ff-4255-59d5-08db8d794ea2', '000.38.03.H08', 'H08.3.38', 'Trường THPT Nguyễn Huệ - Tỉnh Bình Định', '87 Phan Đình Phùng, Phú Phong, Tây Sơn, Bình Định', 'thptnguyenhue@sgddt.binhdinh.gov.vn', '(0256) 3880581', NULL, 'thptnguyenhuebinhdinh.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261888+07', 'system', '2023-07-26 08:40:35.261888+07', NULL);
INSERT INTO category."Organizations" VALUES ('f6a5e090-a19f-4809-59ca-08db8d794ea2', '000.27.03.H08', 'H08.3.27', 'Trường THPT Số 2 An Nhơn - Tỉnh Bình Định', '02 Trần Quang Diệu, An Nhơn, Bình Định', 'thptannhon2@sgddt.binhdinh.gov.vn', '(0256) 3839292', NULL, 'thpt-annhon2binhdinh.edu.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.261809+07', 'system', '2023-07-26 08:40:35.261809+07', NULL);
INSERT INTO category."Organizations" VALUES ('f6f1debe-8c90-4e09-5a80-08db8d794ea2', '000.23.31.H08', 'H08.31.23', 'Hội Chữ thập đỏ - Huyện An Lão - Tỉnh Bình Định', 'Thôn 2 - Thị trấn An Lão - An Lão', 'chuthapdo@anlao.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262824+07', 'system', '2023-07-26 08:40:35.262824+07', NULL);
INSERT INTO category."Organizations" VALUES ('f7001057-5ee3-4920-5baa-08db8d794ea2', '000.83.38.H08', 'H08.38.83', 'UBND Xã Tây Bình - Huyện Tây Sơn - Tỉnh Bình Định', 'Thôn Mỹ An, xã Tây Bình', 'xataybinh@tayson.binhdinh.gov.vn', '(0256) 3883367', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268043+07', 'system', '2023-07-26 08:40:35.268043+07', NULL);
INSERT INTO category."Organizations" VALUES ('f78f9842-8b25-4f72-5ae9-08db8d794ea2', '000.28.34.H08', 'H08.34.28', 'Đội quản lý trật tự đô thị thị xã Hoài Nhơn tỉnh Bình Định', 'Phường Bồng Sơn - TX Hoài Nhơn', 'qlttdt@hoainhon.binhdinh.gov.vn', '(0256) 3861 609', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263349+07', 'system', '2023-07-26 08:40:35.26335+07', NULL);
INSERT INTO category."Organizations" VALUES ('f7be7cc4-95ac-47d5-5b88-08db8d794ea2', '000.01.38.H08', 'H08.38.1', 'Văn Phòng HĐND và UBND - Huyện Tây Sơn - Tỉnh Bình Định', '59 Phan Đình Phùng, thị trấn Phú Phong, huyện Tây Sơn', 'vanphong@tayson.binhdinh.gov.vn', '(0256) 3880761', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267916+07', 'system', '2023-07-26 08:40:35.267916+07', NULL);
INSERT INTO category."Organizations" VALUES ('f7d08d0d-e746-4e4e-5bc9-08db8d794ea2', '000.74.39.H08', 'H08.39.74', 'UBND Xã Phước Thành - Huyện Tuy Phước - Tỉnh Bình Định', 'Thôn Cảnh An 1, xã Phước Thành, Tuy Phước, Bình Định', 'phuocthanh@tuyphuoc.binhdinh.gov.vn', '(0256) 3577367', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268153+07', 'system', '2023-07-26 08:40:35.268153+07', NULL);
INSERT INTO category."Organizations" VALUES ('f7eeb3fc-42bd-4cf8-5b65-08db8d794ea2', '000.30.37.H08', 'H08.37.30', 'Công ty Công viên cây xanh và chiếu sáng đô thị - Thành phố Quy Nhơn - Tỉnh Bình Định', '30 Nguyễn Huệ, thành phố Quy Nhơn, tỉnh Bình Định', 'ctcv@quynhon.binhdinh.gov.vn', '(0256) 3820623', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267812+07', 'system', '2023-07-26 08:40:35.267812+07', NULL);
INSERT INTO category."Organizations" VALUES ('f8996612-6013-4134-5a05-08db8d794ea2', '000.23.06.H08', 'H08.6.23', 'Trung tâm Phân tích và Đo lường Chất lượng tỉnh Bình Định', '173-175 Phan Bội Châu và 01 Bà Triệu, thành phố Quy Nhơn, Bình Định', NULL, '(0256) 3822322', NULL, 'amq.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262156+07', 'system', '2023-07-26 08:40:35.262156+07', NULL);
INSERT INTO category."Organizations" VALUES ('f8a23d72-8e29-4aa5-5bac-08db8d794ea2', '000.85.38.H08', 'H08.38.85', 'UBND Xã Tây Vinh - Huyện Tây Sơn - Tỉnh Bình Định', 'Thôn Nhơn Thuận, xã Tây Vinh', 'xatayvinh@tayson.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268049+07', 'system', '2023-07-26 08:40:35.268049+07', NULL);
INSERT INTO category."Organizations" VALUES ('f8fa545f-d277-4764-5a9a-08db8d794ea2', '000.11.32.H08', 'H08.32.11', 'Phòng Quản lý đô thị - Thị xã An Nhơn - Tỉnh Bình Định', '79 Lê Hồng Phong, Thị xã An Nhơn', 'qldt@annhon.binhdinh.gov.vn', '(0256) 3836207', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262954+07', 'system', '2023-07-26 08:40:35.262954+07', NULL);
INSERT INTO category."Organizations" VALUES ('f9504ec3-ff40-43c3-5bcb-08db8d794ea2', '000.76.39.H08', 'H08.39.76', 'UBND Xã Phước Nghĩa - Huyện Tuy Phước - Tỉnh Bình Định', 'Thôn Hưng Nghĩa, xã Phước Nghĩa, Tuy Phước, Bình Định', 'phuocnghia@tuyphuoc.binhdinh.gov.vn', '(0256) 3633346', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26816+07', 'system', '2023-07-26 08:40:35.26816+07', NULL);
INSERT INTO category."Organizations" VALUES ('fab77a56-a39b-4bc7-5b1b-08db8d794ea2', '000.76.35.H08', 'H08.35.76', 'UBND Xã Cát Thắng - Huyện Phù Cát - Tỉnh Bình Định', '', 'catthang@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263583+07', 'system', '2023-07-26 08:40:35.263583+07', NULL);
INSERT INTO category."Organizations" VALUES ('fb01c1f7-172c-4b32-5b1a-08db8d794ea2', '000.75.35.H08', 'H08.35.75', 'UBND Xã Cát Hưng - Huyện Phù Cát - Tỉnh Bình Định', '', 'cathung@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.26358+07', 'system', '2023-07-26 08:40:35.26358+07', NULL);
INSERT INTO category."Organizations" VALUES ('fb6152cd-495f-4c9b-5a58-08db8d794ea2', '000.36.17.H08', 'H08.17.36', 'Chi cục An toàn Vệ sinh Thực phẩm - Tỉnh Bình Định', 'Số 424 Nguyễn Thái Học, P. Quang trung, TP. Quy Nhơn', 'hienptk@syt.binhdinh.gov.vn', '(0256) 3946795', NULL, 'atvstpbinhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262606+07', 'system', '2023-07-26 08:40:35.262607+07', NULL);
INSERT INTO category."Organizations" VALUES ('fb78eb10-cc67-4c9a-5b33-08db8d794ea2', '000.10.36.H08', 'H08.36.10', 'Phòng Kinh tế - Hạ tầng - Huyện Phù Mỹ - Tỉnh Bình Định', 'TT Phù Mỹ - Phù Mỹ', 'ktht@phumy.binhdinh.gov.vn', '(0256) 3655223', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267649+07', 'system', '2023-07-26 08:40:35.267649+07', NULL);
INSERT INTO category."Organizations" VALUES ('fba0fc6c-a03e-4a1b-5b07-08db8d794ea2', '000.08.35.H08', 'H08.35.8', 'Phòng Giáo dục - Đào Tạo - Huyện Phù Cát - Tỉnh Bình Định', '', 'gddt@phucat.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263501+07', 'system', '2023-07-26 08:40:35.263501+07', NULL);
INSERT INTO category."Organizations" VALUES ('fbf15f5e-0f85-43df-5a78-08db8d794ea2', '000.09.31.H08', 'H08.31.09', 'Thanh tra huyện - Huyện An Lão - Tỉnh Bình Định', 'Thôn 2 - Thị trấn An Lão - An Lão', 'thanhtra@anlao.binhdinh.gov.vn', NULL, NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262793+07', 'system', '2023-07-26 08:40:35.262793+07', NULL);
INSERT INTO category."Organizations" VALUES ('fc0e9ffd-fb78-4753-5a1b-08db8d794ea2', '000.26.10.H08', 'H08.10.26', 'Chi cục Quản lý chất lượng Nông lâm sản và Thủy sản - Tỉnh Bình Định', '15 Lý Thái Tổ, TP. Quy Nhơn, tỉnh Bình Định', 'ccqlcl@snnptnt.binhdinh.gov.vn', '(0256) 3894474', NULL, 'qlclbinhdinh.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262277+07', 'system', '2023-07-26 08:40:35.262277+07', NULL);
INSERT INTO category."Organizations" VALUES ('fc787228-d37c-4ee6-5c12-08db8d794ea2', '000.79.41.H08', 'H08.41.79', 'UBND Xã Vĩnh Hiệp - Huyện Vĩnh Thạnh - Tỉnh Bình Định', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268388+07', 'system', '2023-07-26 08:40:35.268388+07', NULL);
INSERT INTO category."Organizations" VALUES ('fc7ce092-c849-4fb4-5b6f-08db8d794ea2', '000.47.37.H08', 'H08.37.47', 'Trung tâm Dịch vụ nông nghiệp thành phố Quy Nhơn - Tỉnh Bình Định', '', 'vanthuttdvnn@quynhon.binhdinh.gov.vn', '(0256) 3822316', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267846+07', 'system', '2023-07-26 08:40:35.267846+07', NULL);
INSERT INTO category."Organizations" VALUES ('fdeaf725-b4d9-45d9-5ad9-08db8d794ea2', '000.00.34.H08', 'H08.34', 'UBND Thị xã Hoài Nhơn tỉnh Bình Định', 'Phường Bồng Sơn, Thị xã Hoài Nhơn, tỉnh Bình Định', 'ubndthixahoainhon@hoainhon.binhdinh.gov.vn', '(0256) 3671265', NULL, 'hoainhon.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.263274+07', 'system', '2023-07-26 08:40:35.263274+07', NULL);
INSERT INTO category."Organizations" VALUES ('fe106cd0-8e0d-44b0-5bf4-08db8d794ea2', NULL, NULL, 'Cơ quan chuyên môn thuộc UBND Huyện Vĩnh Thạnh', '', NULL, NULL, NULL, 'vinhthanh.binhdinh.gov.vn', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268295+07', 'system', '2023-07-26 08:40:35.268295+07', NULL);
INSERT INTO category."Organizations" VALUES ('fe65abe7-0ae7-4e6e-5be5-08db8d794ea2', '000.23.40.H08', 'H08.40.23', 'Hội Chữ thập đỏ - Huyện Vân Canh - Tỉnh Bình Định', 'Thị trấn Vân Canh, huyện Vân Canh, tỉnh Bình Định', 'hctd@vancanh.binhdinh.gov.vn', NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268246+07', 'system', '2023-07-26 08:40:35.268246+07', NULL);
INSERT INTO category."Organizations" VALUES ('fed4ff8d-2e2b-402a-5beb-08db8d794ea2', NULL, NULL, 'Các xã thuộc UBND Huyện Vân Canh', '', NULL, NULL, NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.268267+07', 'system', '2023-07-26 08:40:35.268267+07', NULL);
INSERT INTO category."Organizations" VALUES ('ff164aea-9ec6-43b4-5b3b-08db8d794ea2', '000.24.36.H08', 'H08.36.24', 'Ban Quản lý dự án Đầu tư xây dựng và Phát triển quỹ đất', 'TT Phù Mỹ - Phù Mỹ', 'bqlda@phumy.binhdinh.gov.vn', '(0256) 3755620', NULL, NULL, false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.267673+07', 'system', '2023-07-26 08:40:35.267673+07', NULL);
INSERT INTO category."Organizations" VALUES ('ff7c10e9-c3f7-4866-5a3c-08db8d794ea2', NULL, 'H08.12.38', 'Chi nhánh Văn phòng đăng ký đất đai - Huyện Vĩnh Thạnh - Tỉnh Bình Định', 'Khu Phố Trà Quang, TT. Phù Mỹ', 'vpdkdd@stnmt.binhdinh.gov.vn', '(0256) 3879 300', NULL, 'nt', false, DEFAULT, NULL, NULL, NULL, 'system', '2023-07-26 08:40:35.262458+07', 'system', '2023-07-26 08:40:35.262458+07', NULL);


--
-- Data for Name: Provinces; Type: TABLE DATA; Schema: category; Owner: sdoc
--

INSERT INTO category."Provinces" VALUES (1, 'system', '2023-07-26 08:40:15.95212+07', 'system', '2023-07-26 08:40:15.952121+07', 'Thành phố Hà Nội', '01', 'Thành phố Trung ương');
INSERT INTO category."Provinces" VALUES (2, 'system', '2023-07-26 08:40:15.953109+07', 'system', '2023-07-26 08:40:15.953109+07', 'Tỉnh Hà Giang', '02', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (4, 'system', '2023-07-26 08:40:15.953123+07', 'system', '2023-07-26 08:40:15.953124+07', 'Tỉnh Cao Bằng', '04', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (6, 'system', '2023-07-26 08:40:15.953127+07', 'system', '2023-07-26 08:40:15.953127+07', 'Tỉnh Bắc Kạn', '06', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (8, 'system', '2023-07-26 08:40:15.953129+07', 'system', '2023-07-26 08:40:15.953129+07', 'Tỉnh Tuyên Quang', '08', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (10, 'system', '2023-07-26 08:40:15.953133+07', 'system', '2023-07-26 08:40:15.953133+07', 'Tỉnh Lào Cai', '10', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (11, 'system', '2023-07-26 08:40:15.953136+07', 'system', '2023-07-26 08:40:15.953136+07', 'Tỉnh Điện Biên', '11', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (12, 'system', '2023-07-26 08:40:15.953139+07', 'system', '2023-07-26 08:40:15.953139+07', 'Tỉnh Lai Châu', '12', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (14, 'system', '2023-07-26 08:40:15.953142+07', 'system', '2023-07-26 08:40:15.953142+07', 'Tỉnh Sơn La', '14', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (15, 'system', '2023-07-26 08:40:15.953146+07', 'system', '2023-07-26 08:40:15.953146+07', 'Tỉnh Yên Bái', '15', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (17, 'system', '2023-07-26 08:40:15.953151+07', 'system', '2023-07-26 08:40:15.953151+07', 'Tỉnh Hoà Bình', '17', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (19, 'system', '2023-07-26 08:40:15.953154+07', 'system', '2023-07-26 08:40:15.953154+07', 'Tỉnh Thái Nguyên', '19', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (20, 'system', '2023-07-26 08:40:15.953157+07', 'system', '2023-07-26 08:40:15.953157+07', 'Tỉnh Lạng Sơn', '20', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (22, 'system', '2023-07-26 08:40:15.953175+07', 'system', '2023-07-26 08:40:15.953175+07', 'Tỉnh Quảng Ninh', '22', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (24, 'system', '2023-07-26 08:40:15.953178+07', 'system', '2023-07-26 08:40:15.953178+07', 'Tỉnh Bắc Giang', '24', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (25, 'system', '2023-07-26 08:40:15.953182+07', 'system', '2023-07-26 08:40:15.953182+07', 'Tỉnh Phú Thọ', '25', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (26, 'system', '2023-07-26 08:40:15.953184+07', 'system', '2023-07-26 08:40:15.953184+07', 'Tỉnh Vĩnh Phúc', '26', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (27, 'system', '2023-07-26 08:40:15.953187+07', 'system', '2023-07-26 08:40:15.953187+07', 'Tỉnh Bắc Ninh', '27', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (30, 'system', '2023-07-26 08:40:15.95319+07', 'system', '2023-07-26 08:40:15.95319+07', 'Tỉnh Hải Dương', '30', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (31, 'system', '2023-07-26 08:40:15.953192+07', 'system', '2023-07-26 08:40:15.953192+07', 'Thành phố Hải Phòng', '31', 'Thành phố Trung ương');
INSERT INTO category."Provinces" VALUES (33, 'system', '2023-07-26 08:40:15.953195+07', 'system', '2023-07-26 08:40:15.953195+07', 'Tỉnh Hưng Yên', '33', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (34, 'system', '2023-07-26 08:40:15.953198+07', 'system', '2023-07-26 08:40:15.953198+07', 'Tỉnh Thái Bình', '34', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (35, 'system', '2023-07-26 08:40:15.953202+07', 'system', '2023-07-26 08:40:15.953202+07', 'Tỉnh Hà Nam', '35', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (36, 'system', '2023-07-26 08:40:15.953204+07', 'system', '2023-07-26 08:40:15.953204+07', 'Tỉnh Nam Định', '36', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (37, 'system', '2023-07-26 08:40:15.953207+07', 'system', '2023-07-26 08:40:15.953207+07', 'Tỉnh Ninh Bình', '37', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (38, 'system', '2023-07-26 08:40:15.95321+07', 'system', '2023-07-26 08:40:15.95321+07', 'Tỉnh Thanh Hóa', '38', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (40, 'system', '2023-07-26 08:40:15.953213+07', 'system', '2023-07-26 08:40:15.953213+07', 'Tỉnh Nghệ An', '40', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (42, 'system', '2023-07-26 08:40:15.953215+07', 'system', '2023-07-26 08:40:15.953215+07', 'Tỉnh Hà Tĩnh', '42', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (44, 'system', '2023-07-26 08:40:15.953219+07', 'system', '2023-07-26 08:40:15.953219+07', 'Tỉnh Quảng Bình', '44', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (45, 'system', '2023-07-26 08:40:15.953225+07', 'system', '2023-07-26 08:40:15.953225+07', 'Tỉnh Quảng Trị', '45', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (46, 'system', '2023-07-26 08:40:15.953234+07', 'system', '2023-07-26 08:40:15.953234+07', 'Tỉnh Thừa Thiên Huế', '46', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (48, 'system', '2023-07-26 08:40:15.953237+07', 'system', '2023-07-26 08:40:15.953237+07', 'Thành phố Đà Nẵng', '48', 'Thành phố Trung ương');
INSERT INTO category."Provinces" VALUES (49, 'system', '2023-07-26 08:40:15.95324+07', 'system', '2023-07-26 08:40:15.95324+07', 'Tỉnh Quảng Nam', '49', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (51, 'system', '2023-07-26 08:40:15.953243+07', 'system', '2023-07-26 08:40:15.953243+07', 'Tỉnh Quảng Ngãi', '51', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (52, 'system', '2023-07-26 08:40:15.953245+07', 'system', '2023-07-26 08:40:15.953245+07', 'Tỉnh Bình Định', '52', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (54, 'system', '2023-07-26 08:40:15.953247+07', 'system', '2023-07-26 08:40:15.953248+07', 'Tỉnh Phú Yên', '54', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (56, 'system', '2023-07-26 08:40:15.95325+07', 'system', '2023-07-26 08:40:15.95325+07', 'Tỉnh Khánh Hòa', '56', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (58, 'system', '2023-07-26 08:40:15.953252+07', 'system', '2023-07-26 08:40:15.953252+07', 'Tỉnh Ninh Thuận', '58', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (60, 'system', '2023-07-26 08:40:15.953254+07', 'system', '2023-07-26 08:40:15.953254+07', 'Tỉnh Bình Thuận', '60', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (62, 'system', '2023-07-26 08:40:15.953256+07', 'system', '2023-07-26 08:40:15.953256+07', 'Tỉnh Kon Tum', '62', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (64, 'system', '2023-07-26 08:40:15.953259+07', 'system', '2023-07-26 08:40:15.953259+07', 'Tỉnh Gia Lai', '64', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (66, 'system', '2023-07-26 08:40:15.953261+07', 'system', '2023-07-26 08:40:15.953261+07', 'Tỉnh Đắk Lắk', '66', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (67, 'system', '2023-07-26 08:40:15.953263+07', 'system', '2023-07-26 08:40:15.953263+07', 'Tỉnh Đắk Nông', '67', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (68, 'system', '2023-07-26 08:40:15.953266+07', 'system', '2023-07-26 08:40:15.953266+07', 'Tỉnh Lâm Đồng', '68', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (70, 'system', '2023-07-26 08:40:15.953268+07', 'system', '2023-07-26 08:40:15.953268+07', 'Tỉnh Bình Phước', '70', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (72, 'system', '2023-07-26 08:40:15.95327+07', 'system', '2023-07-26 08:40:15.953271+07', 'Tỉnh Tây Ninh', '72', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (74, 'system', '2023-07-26 08:40:15.953273+07', 'system', '2023-07-26 08:40:15.953273+07', 'Tỉnh Bình Dương', '74', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (75, 'system', '2023-07-26 08:40:15.953275+07', 'system', '2023-07-26 08:40:15.953275+07', 'Tỉnh Đồng Nai', '75', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (77, 'system', '2023-07-26 08:40:15.953277+07', 'system', '2023-07-26 08:40:15.953277+07', 'Tỉnh Bà Rịa - Vũng Tàu', '77', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (79, 'system', '2023-07-26 08:40:15.953281+07', 'system', '2023-07-26 08:40:15.953281+07', 'Thành phố Hồ Chí Minh', '79', 'Thành phố Trung ương');
INSERT INTO category."Provinces" VALUES (80, 'system', '2023-07-26 08:40:15.953284+07', 'system', '2023-07-26 08:40:15.953284+07', 'Tỉnh Long An', '80', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (82, 'system', '2023-07-26 08:40:15.953286+07', 'system', '2023-07-26 08:40:15.953286+07', 'Tỉnh Tiền Giang', '82', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (83, 'system', '2023-07-26 08:40:15.953288+07', 'system', '2023-07-26 08:40:15.953288+07', 'Tỉnh Bến Tre', '83', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (84, 'system', '2023-07-26 08:40:15.953291+07', 'system', '2023-07-26 08:40:15.953291+07', 'Tỉnh Trà Vinh', '84', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (86, 'system', '2023-07-26 08:40:15.953293+07', 'system', '2023-07-26 08:40:15.953293+07', 'Tỉnh Vĩnh Long', '86', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (87, 'system', '2023-07-26 08:40:15.953295+07', 'system', '2023-07-26 08:40:15.953295+07', 'Tỉnh Đồng Tháp', '87', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (89, 'system', '2023-07-26 08:40:15.953297+07', 'system', '2023-07-26 08:40:15.953297+07', 'Tỉnh An Giang', '89', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (91, 'system', '2023-07-26 08:40:15.9533+07', 'system', '2023-07-26 08:40:15.9533+07', 'Tỉnh Kiên Giang', '91', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (92, 'system', '2023-07-26 08:40:15.953302+07', 'system', '2023-07-26 08:40:15.953302+07', 'Thành phố Cần Thơ', '92', 'Thành phố Trung ương');
INSERT INTO category."Provinces" VALUES (93, 'system', '2023-07-26 08:40:15.953305+07', 'system', '2023-07-26 08:40:15.953305+07', 'Tỉnh Hậu Giang', '93', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (94, 'system', '2023-07-26 08:40:15.953307+07', 'system', '2023-07-26 08:40:15.953307+07', 'Tỉnh Sóc Trăng', '94', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (95, 'system', '2023-07-26 08:40:15.953309+07', 'system', '2023-07-26 08:40:15.953309+07', 'Tỉnh Bạc Liêu', '95', 'Tỉnh');
INSERT INTO category."Provinces" VALUES (96, 'system', '2023-07-26 08:40:15.953311+07', 'system', '2023-07-26 08:40:15.953311+07', 'Tỉnh Cà Mau', '96', 'Tỉnh');


--
-- Data for Name: Wards; Type: TABLE DATA; Schema: category; Owner: sdoc
--

INSERT INTO category."Wards" VALUES (1, 1, 'system', '2023-07-26 08:40:17.658539+07', 'system', '2023-07-26 08:40:17.658539+07', 'Phường Phúc Xá', '00001', 'Phường');
INSERT INTO category."Wards" VALUES (4, 1, 'system', '2023-07-26 08:40:17.659887+07', 'system', '2023-07-26 08:40:17.659887+07', 'Phường Trúc Bạch', '00004', 'Phường');
INSERT INTO category."Wards" VALUES (6, 1, 'system', '2023-07-26 08:40:17.659906+07', 'system', '2023-07-26 08:40:17.659906+07', 'Phường Vĩnh Phúc', '00006', 'Phường');
INSERT INTO category."Wards" VALUES (7, 1, 'system', '2023-07-26 08:40:17.659912+07', 'system', '2023-07-26 08:40:17.659912+07', 'Phường Cống Vị', '00007', 'Phường');
INSERT INTO category."Wards" VALUES (8, 1, 'system', '2023-07-26 08:40:17.659916+07', 'system', '2023-07-26 08:40:17.659917+07', 'Phường Liễu Giai', '00008', 'Phường');
INSERT INTO category."Wards" VALUES (10, 1, 'system', '2023-07-26 08:40:17.659931+07', 'system', '2023-07-26 08:40:17.659931+07', 'Phường Nguyễn Trung Trực', '00010', 'Phường');
INSERT INTO category."Wards" VALUES (13, 1, 'system', '2023-07-26 08:40:17.659943+07', 'system', '2023-07-26 08:40:17.659943+07', 'Phường Quán Thánh', '00013', 'Phường');
INSERT INTO category."Wards" VALUES (16, 1, 'system', '2023-07-26 08:40:17.659948+07', 'system', '2023-07-26 08:40:17.659948+07', 'Phường Ngọc Hà', '00016', 'Phường');
INSERT INTO category."Wards" VALUES (19, 1, 'system', '2023-07-26 08:40:17.659954+07', 'system', '2023-07-26 08:40:17.659954+07', 'Phường Điện Biên', '00019', 'Phường');
INSERT INTO category."Wards" VALUES (22, 1, 'system', '2023-07-26 08:40:17.65996+07', 'system', '2023-07-26 08:40:17.65996+07', 'Phường Đội Cấn', '00022', 'Phường');
INSERT INTO category."Wards" VALUES (25, 1, 'system', '2023-07-26 08:40:17.659969+07', 'system', '2023-07-26 08:40:17.659969+07', 'Phường Ngọc Khánh', '00025', 'Phường');
INSERT INTO category."Wards" VALUES (28, 1, 'system', '2023-07-26 08:40:17.659973+07', 'system', '2023-07-26 08:40:17.659974+07', 'Phường Kim Mã', '00028', 'Phường');
INSERT INTO category."Wards" VALUES (31, 1, 'system', '2023-07-26 08:40:17.659978+07', 'system', '2023-07-26 08:40:17.659978+07', 'Phường Giảng Võ', '00031', 'Phường');
INSERT INTO category."Wards" VALUES (34, 1, 'system', '2023-07-26 08:40:17.659983+07', 'system', '2023-07-26 08:40:17.659983+07', 'Phường Thành Công', '00034', 'Phường');
INSERT INTO category."Wards" VALUES (37, 2, 'system', '2023-07-26 08:40:17.659987+07', 'system', '2023-07-26 08:40:17.659987+07', 'Phường Phúc Tân', '00037', 'Phường');
INSERT INTO category."Wards" VALUES (40, 2, 'system', '2023-07-26 08:40:17.659992+07', 'system', '2023-07-26 08:40:17.659992+07', 'Phường Đồng Xuân', '00040', 'Phường');
INSERT INTO category."Wards" VALUES (43, 2, 'system', '2023-07-26 08:40:17.659997+07', 'system', '2023-07-26 08:40:17.659997+07', 'Phường Hàng Mã', '00043', 'Phường');
INSERT INTO category."Wards" VALUES (46, 2, 'system', '2023-07-26 08:40:17.660003+07', 'system', '2023-07-26 08:40:17.660003+07', 'Phường Hàng Buồm', '00046', 'Phường');
INSERT INTO category."Wards" VALUES (49, 2, 'system', '2023-07-26 08:40:17.660008+07', 'system', '2023-07-26 08:40:17.660008+07', 'Phường Hàng Đào', '00049', 'Phường');
INSERT INTO category."Wards" VALUES (52, 2, 'system', '2023-07-26 08:40:17.660013+07', 'system', '2023-07-26 08:40:17.660013+07', 'Phường Hàng Bồ', '00052', 'Phường');
INSERT INTO category."Wards" VALUES (55, 2, 'system', '2023-07-26 08:40:17.660019+07', 'system', '2023-07-26 08:40:17.660019+07', 'Phường Cửa Đông', '00055', 'Phường');
INSERT INTO category."Wards" VALUES (58, 2, 'system', '2023-07-26 08:40:17.660022+07', 'system', '2023-07-26 08:40:17.660022+07', 'Phường Lý Thái Tổ', '00058', 'Phường');
INSERT INTO category."Wards" VALUES (61, 2, 'system', '2023-07-26 08:40:17.660026+07', 'system', '2023-07-26 08:40:17.660026+07', 'Phường Hàng Bạc', '00061', 'Phường');
INSERT INTO category."Wards" VALUES (64, 2, 'system', '2023-07-26 08:40:17.660029+07', 'system', '2023-07-26 08:40:17.660029+07', 'Phường Hàng Gai', '00064', 'Phường');
INSERT INTO category."Wards" VALUES (67, 2, 'system', '2023-07-26 08:40:17.660032+07', 'system', '2023-07-26 08:40:17.660032+07', 'Phường Chương Dương', '00067', 'Phường');
INSERT INTO category."Wards" VALUES (70, 2, 'system', '2023-07-26 08:40:17.660036+07', 'system', '2023-07-26 08:40:17.660036+07', 'Phường Hàng Trống', '00070', 'Phường');
INSERT INTO category."Wards" VALUES (73, 2, 'system', '2023-07-26 08:40:17.660039+07', 'system', '2023-07-26 08:40:17.660039+07', 'Phường Cửa Nam', '00073', 'Phường');
INSERT INTO category."Wards" VALUES (76, 2, 'system', '2023-07-26 08:40:17.660042+07', 'system', '2023-07-26 08:40:17.660042+07', 'Phường Hàng Bông', '00076', 'Phường');
INSERT INTO category."Wards" VALUES (79, 2, 'system', '2023-07-26 08:40:17.660045+07', 'system', '2023-07-26 08:40:17.660045+07', 'Phường Tràng Tiền', '00079', 'Phường');
INSERT INTO category."Wards" VALUES (82, 2, 'system', '2023-07-26 08:40:17.660048+07', 'system', '2023-07-26 08:40:17.660048+07', 'Phường Trần Hưng Đạo', '00082', 'Phường');
INSERT INTO category."Wards" VALUES (85, 2, 'system', '2023-07-26 08:40:17.660052+07', 'system', '2023-07-26 08:40:17.660052+07', 'Phường Phan Chu Trinh', '00085', 'Phường');
INSERT INTO category."Wards" VALUES (88, 2, 'system', '2023-07-26 08:40:17.660055+07', 'system', '2023-07-26 08:40:17.660055+07', 'Phường Hàng Bài', '00088', 'Phường');
INSERT INTO category."Wards" VALUES (91, 3, 'system', '2023-07-26 08:40:17.660058+07', 'system', '2023-07-26 08:40:17.660058+07', 'Phường Phú Thượng', '00091', 'Phường');
INSERT INTO category."Wards" VALUES (94, 3, 'system', '2023-07-26 08:40:17.660061+07', 'system', '2023-07-26 08:40:17.660061+07', 'Phường Nhật Tân', '00094', 'Phường');
INSERT INTO category."Wards" VALUES (97, 3, 'system', '2023-07-26 08:40:17.660065+07', 'system', '2023-07-26 08:40:17.660065+07', 'Phường Tứ Liên', '00097', 'Phường');
INSERT INTO category."Wards" VALUES (100, 3, 'system', '2023-07-26 08:40:17.660068+07', 'system', '2023-07-26 08:40:17.660068+07', 'Phường Quảng An', '00100', 'Phường');
INSERT INTO category."Wards" VALUES (103, 3, 'system', '2023-07-26 08:40:17.660071+07', 'system', '2023-07-26 08:40:17.660071+07', 'Phường Xuân La', '00103', 'Phường');
INSERT INTO category."Wards" VALUES (106, 3, 'system', '2023-07-26 08:40:17.660074+07', 'system', '2023-07-26 08:40:17.660074+07', 'Phường Yên Phụ', '00106', 'Phường');
INSERT INTO category."Wards" VALUES (109, 3, 'system', '2023-07-26 08:40:17.660077+07', 'system', '2023-07-26 08:40:17.660077+07', 'Phường Bưởi', '00109', 'Phường');
INSERT INTO category."Wards" VALUES (112, 3, 'system', '2023-07-26 08:40:17.66008+07', 'system', '2023-07-26 08:40:17.66008+07', 'Phường Thụy Khuê', '00112', 'Phường');
INSERT INTO category."Wards" VALUES (115, 4, 'system', '2023-07-26 08:40:17.660084+07', 'system', '2023-07-26 08:40:17.660084+07', 'Phường Thượng Thanh', '00115', 'Phường');
INSERT INTO category."Wards" VALUES (118, 4, 'system', '2023-07-26 08:40:17.660087+07', 'system', '2023-07-26 08:40:17.660087+07', 'Phường Ngọc Thụy', '00118', 'Phường');
INSERT INTO category."Wards" VALUES (121, 4, 'system', '2023-07-26 08:40:17.660091+07', 'system', '2023-07-26 08:40:17.660091+07', 'Phường Giang Biên', '00121', 'Phường');
INSERT INTO category."Wards" VALUES (124, 4, 'system', '2023-07-26 08:40:17.660094+07', 'system', '2023-07-26 08:40:17.660094+07', 'Phường Đức Giang', '00124', 'Phường');
INSERT INTO category."Wards" VALUES (127, 4, 'system', '2023-07-26 08:40:17.660097+07', 'system', '2023-07-26 08:40:17.660097+07', 'Phường Việt Hưng', '00127', 'Phường');
INSERT INTO category."Wards" VALUES (130, 4, 'system', '2023-07-26 08:40:17.6601+07', 'system', '2023-07-26 08:40:17.6601+07', 'Phường Gia Thụy', '00130', 'Phường');
INSERT INTO category."Wards" VALUES (133, 4, 'system', '2023-07-26 08:40:17.660102+07', 'system', '2023-07-26 08:40:17.660103+07', 'Phường Ngọc Lâm', '00133', 'Phường');
INSERT INTO category."Wards" VALUES (136, 4, 'system', '2023-07-26 08:40:17.660106+07', 'system', '2023-07-26 08:40:17.660106+07', 'Phường Phúc Lợi', '00136', 'Phường');
INSERT INTO category."Wards" VALUES (139, 4, 'system', '2023-07-26 08:40:17.660129+07', 'system', '2023-07-26 08:40:17.660129+07', 'Phường Bồ Đề', '00139', 'Phường');
INSERT INTO category."Wards" VALUES (142, 4, 'system', '2023-07-26 08:40:17.660132+07', 'system', '2023-07-26 08:40:17.660132+07', 'Phường Sài Đồng', '00142', 'Phường');
INSERT INTO category."Wards" VALUES (145, 4, 'system', '2023-07-26 08:40:17.660135+07', 'system', '2023-07-26 08:40:17.660135+07', 'Phường Long Biên', '00145', 'Phường');
INSERT INTO category."Wards" VALUES (148, 4, 'system', '2023-07-26 08:40:17.660138+07', 'system', '2023-07-26 08:40:17.660138+07', 'Phường Thạch Bàn', '00148', 'Phường');
INSERT INTO category."Wards" VALUES (151, 4, 'system', '2023-07-26 08:40:17.66014+07', 'system', '2023-07-26 08:40:17.66014+07', 'Phường Phúc Đồng', '00151', 'Phường');
INSERT INTO category."Wards" VALUES (154, 4, 'system', '2023-07-26 08:40:17.660143+07', 'system', '2023-07-26 08:40:17.660143+07', 'Phường Cự Khối', '00154', 'Phường');
INSERT INTO category."Wards" VALUES (157, 5, 'system', '2023-07-26 08:40:17.660146+07', 'system', '2023-07-26 08:40:17.660146+07', 'Phường Nghĩa Đô', '00157', 'Phường');
INSERT INTO category."Wards" VALUES (160, 5, 'system', '2023-07-26 08:40:17.660149+07', 'system', '2023-07-26 08:40:17.660149+07', 'Phường Nghĩa Tân', '00160', 'Phường');
INSERT INTO category."Wards" VALUES (163, 5, 'system', '2023-07-26 08:40:17.660151+07', 'system', '2023-07-26 08:40:17.660152+07', 'Phường Mai Dịch', '00163', 'Phường');
INSERT INTO category."Wards" VALUES (166, 5, 'system', '2023-07-26 08:40:17.660154+07', 'system', '2023-07-26 08:40:17.660154+07', 'Phường Dịch Vọng', '00166', 'Phường');
INSERT INTO category."Wards" VALUES (167, 5, 'system', '2023-07-26 08:40:17.660157+07', 'system', '2023-07-26 08:40:17.660157+07', 'Phường Dịch Vọng Hậu', '00167', 'Phường');
INSERT INTO category."Wards" VALUES (169, 5, 'system', '2023-07-26 08:40:17.66016+07', 'system', '2023-07-26 08:40:17.66016+07', 'Phường Quan Hoa', '00169', 'Phường');
INSERT INTO category."Wards" VALUES (172, 5, 'system', '2023-07-26 08:40:17.660162+07', 'system', '2023-07-26 08:40:17.660163+07', 'Phường Yên Hoà', '00172', 'Phường');
INSERT INTO category."Wards" VALUES (175, 5, 'system', '2023-07-26 08:40:17.660165+07', 'system', '2023-07-26 08:40:17.660165+07', 'Phường Trung Hoà', '00175', 'Phường');
INSERT INTO category."Wards" VALUES (178, 6, 'system', '2023-07-26 08:40:17.660168+07', 'system', '2023-07-26 08:40:17.660168+07', 'Phường Cát Linh', '00178', 'Phường');
INSERT INTO category."Wards" VALUES (181, 6, 'system', '2023-07-26 08:40:17.660171+07', 'system', '2023-07-26 08:40:17.660171+07', 'Phường Văn Miếu', '00181', 'Phường');
INSERT INTO category."Wards" VALUES (184, 6, 'system', '2023-07-26 08:40:17.660174+07', 'system', '2023-07-26 08:40:17.660174+07', 'Phường Quốc Tử Giám', '00184', 'Phường');
INSERT INTO category."Wards" VALUES (187, 6, 'system', '2023-07-26 08:40:17.660177+07', 'system', '2023-07-26 08:40:17.660177+07', 'Phường Láng Thượng', '00187', 'Phường');
INSERT INTO category."Wards" VALUES (190, 6, 'system', '2023-07-26 08:40:17.66018+07', 'system', '2023-07-26 08:40:17.66018+07', 'Phường Ô Chợ Dừa', '00190', 'Phường');
INSERT INTO category."Wards" VALUES (193, 6, 'system', '2023-07-26 08:40:17.660183+07', 'system', '2023-07-26 08:40:17.660183+07', 'Phường Văn Chương', '00193', 'Phường');
INSERT INTO category."Wards" VALUES (196, 6, 'system', '2023-07-26 08:40:17.660185+07', 'system', '2023-07-26 08:40:17.660185+07', 'Phường Hàng Bột', '00196', 'Phường');
INSERT INTO category."Wards" VALUES (199, 6, 'system', '2023-07-26 08:40:17.660188+07', 'system', '2023-07-26 08:40:17.660188+07', 'Phường Láng Hạ', '00199', 'Phường');
INSERT INTO category."Wards" VALUES (202, 6, 'system', '2023-07-26 08:40:17.660192+07', 'system', '2023-07-26 08:40:17.660192+07', 'Phường Khâm Thiên', '00202', 'Phường');
INSERT INTO category."Wards" VALUES (205, 6, 'system', '2023-07-26 08:40:17.660195+07', 'system', '2023-07-26 08:40:17.660195+07', 'Phường Thổ Quan', '00205', 'Phường');
INSERT INTO category."Wards" VALUES (208, 6, 'system', '2023-07-26 08:40:17.660198+07', 'system', '2023-07-26 08:40:17.660198+07', 'Phường Nam Đồng', '00208', 'Phường');
INSERT INTO category."Wards" VALUES (211, 6, 'system', '2023-07-26 08:40:17.660201+07', 'system', '2023-07-26 08:40:17.660201+07', 'Phường Trung Phụng', '00211', 'Phường');
INSERT INTO category."Wards" VALUES (214, 6, 'system', '2023-07-26 08:40:17.660203+07', 'system', '2023-07-26 08:40:17.660204+07', 'Phường Quang Trung', '00214', 'Phường');
INSERT INTO category."Wards" VALUES (217, 6, 'system', '2023-07-26 08:40:17.660206+07', 'system', '2023-07-26 08:40:17.660206+07', 'Phường Trung Liệt', '00217', 'Phường');
INSERT INTO category."Wards" VALUES (220, 6, 'system', '2023-07-26 08:40:17.660209+07', 'system', '2023-07-26 08:40:17.660209+07', 'Phường Phương Liên', '00220', 'Phường');
INSERT INTO category."Wards" VALUES (223, 6, 'system', '2023-07-26 08:40:17.660212+07', 'system', '2023-07-26 08:40:17.660212+07', 'Phường Thịnh Quang', '00223', 'Phường');
INSERT INTO category."Wards" VALUES (226, 6, 'system', '2023-07-26 08:40:17.660215+07', 'system', '2023-07-26 08:40:17.660215+07', 'Phường Trung Tự', '00226', 'Phường');
INSERT INTO category."Wards" VALUES (229, 6, 'system', '2023-07-26 08:40:17.660218+07', 'system', '2023-07-26 08:40:17.660218+07', 'Phường Kim Liên', '00229', 'Phường');
INSERT INTO category."Wards" VALUES (232, 6, 'system', '2023-07-26 08:40:17.660221+07', 'system', '2023-07-26 08:40:17.660221+07', 'Phường Phương Mai', '00232', 'Phường');
INSERT INTO category."Wards" VALUES (235, 6, 'system', '2023-07-26 08:40:17.660223+07', 'system', '2023-07-26 08:40:17.660223+07', 'Phường Ngã Tư Sở', '00235', 'Phường');
INSERT INTO category."Wards" VALUES (238, 6, 'system', '2023-07-26 08:40:17.660226+07', 'system', '2023-07-26 08:40:17.660226+07', 'Phường Khương Thượng', '00238', 'Phường');
INSERT INTO category."Wards" VALUES (241, 7, 'system', '2023-07-26 08:40:17.660229+07', 'system', '2023-07-26 08:40:17.660229+07', 'Phường Nguyễn Du', '00241', 'Phường');
INSERT INTO category."Wards" VALUES (244, 7, 'system', '2023-07-26 08:40:17.660232+07', 'system', '2023-07-26 08:40:17.660232+07', 'Phường Bạch Đằng', '00244', 'Phường');
INSERT INTO category."Wards" VALUES (247, 7, 'system', '2023-07-26 08:40:17.660234+07', 'system', '2023-07-26 08:40:17.660234+07', 'Phường Phạm Đình Hổ', '00247', 'Phường');
INSERT INTO category."Wards" VALUES (256, 7, 'system', '2023-07-26 08:40:17.660237+07', 'system', '2023-07-26 08:40:17.660237+07', 'Phường Lê Đại Hành', '00256', 'Phường');
INSERT INTO category."Wards" VALUES (259, 7, 'system', '2023-07-26 08:40:17.66024+07', 'system', '2023-07-26 08:40:17.66024+07', 'Phường Đồng Nhân', '00259', 'Phường');
INSERT INTO category."Wards" VALUES (262, 7, 'system', '2023-07-26 08:40:17.660243+07', 'system', '2023-07-26 08:40:17.660243+07', 'Phường Phố Huế', '00262', 'Phường');
INSERT INTO category."Wards" VALUES (265, 7, 'system', '2023-07-26 08:40:17.660245+07', 'system', '2023-07-26 08:40:17.660245+07', 'Phường Đống Mác', '00265', 'Phường');
INSERT INTO category."Wards" VALUES (268, 7, 'system', '2023-07-26 08:40:17.660248+07', 'system', '2023-07-26 08:40:17.660248+07', 'Phường Thanh Lương', '00268', 'Phường');
INSERT INTO category."Wards" VALUES (271, 7, 'system', '2023-07-26 08:40:17.660251+07', 'system', '2023-07-26 08:40:17.660251+07', 'Phường Thanh Nhàn', '00271', 'Phường');
INSERT INTO category."Wards" VALUES (274, 7, 'system', '2023-07-26 08:40:17.660254+07', 'system', '2023-07-26 08:40:17.660254+07', 'Phường Cầu Dền', '00274', 'Phường');
INSERT INTO category."Wards" VALUES (277, 7, 'system', '2023-07-26 08:40:17.660257+07', 'system', '2023-07-26 08:40:17.660257+07', 'Phường Bách Khoa', '00277', 'Phường');
INSERT INTO category."Wards" VALUES (280, 7, 'system', '2023-07-26 08:40:17.660259+07', 'system', '2023-07-26 08:40:17.660259+07', 'Phường Đồng Tâm', '00280', 'Phường');
INSERT INTO category."Wards" VALUES (283, 7, 'system', '2023-07-26 08:40:17.660262+07', 'system', '2023-07-26 08:40:17.660262+07', 'Phường Vĩnh Tuy', '00283', 'Phường');
INSERT INTO category."Wards" VALUES (286, 7, 'system', '2023-07-26 08:40:17.660265+07', 'system', '2023-07-26 08:40:17.660265+07', 'Phường Bạch Mai', '00286', 'Phường');
INSERT INTO category."Wards" VALUES (289, 7, 'system', '2023-07-26 08:40:17.660268+07', 'system', '2023-07-26 08:40:17.660268+07', 'Phường Quỳnh Mai', '00289', 'Phường');
INSERT INTO category."Wards" VALUES (292, 7, 'system', '2023-07-26 08:40:17.660271+07', 'system', '2023-07-26 08:40:17.660271+07', 'Phường Quỳnh Lôi', '00292', 'Phường');
INSERT INTO category."Wards" VALUES (295, 7, 'system', '2023-07-26 08:40:17.660273+07', 'system', '2023-07-26 08:40:17.660273+07', 'Phường Minh Khai', '00295', 'Phường');
INSERT INTO category."Wards" VALUES (298, 7, 'system', '2023-07-26 08:40:17.660276+07', 'system', '2023-07-26 08:40:17.660276+07', 'Phường Trương Định', '00298', 'Phường');
INSERT INTO category."Wards" VALUES (301, 8, 'system', '2023-07-26 08:40:17.660279+07', 'system', '2023-07-26 08:40:17.660279+07', 'Phường Thanh Trì', '00301', 'Phường');
INSERT INTO category."Wards" VALUES (304, 8, 'system', '2023-07-26 08:40:17.660281+07', 'system', '2023-07-26 08:40:17.660281+07', 'Phường Vĩnh Hưng', '00304', 'Phường');
INSERT INTO category."Wards" VALUES (307, 8, 'system', '2023-07-26 08:40:17.660284+07', 'system', '2023-07-26 08:40:17.660284+07', 'Phường Định Công', '00307', 'Phường');
INSERT INTO category."Wards" VALUES (310, 8, 'system', '2023-07-26 08:40:17.660288+07', 'system', '2023-07-26 08:40:17.660288+07', 'Phường Mai Động', '00310', 'Phường');
INSERT INTO category."Wards" VALUES (313, 8, 'system', '2023-07-26 08:40:17.660291+07', 'system', '2023-07-26 08:40:17.660291+07', 'Phường Tương Mai', '00313', 'Phường');
INSERT INTO category."Wards" VALUES (316, 8, 'system', '2023-07-26 08:40:17.660293+07', 'system', '2023-07-26 08:40:17.660293+07', 'Phường Đại Kim', '00316', 'Phường');
INSERT INTO category."Wards" VALUES (319, 8, 'system', '2023-07-26 08:40:17.660296+07', 'system', '2023-07-26 08:40:17.660296+07', 'Phường Tân Mai', '00319', 'Phường');
INSERT INTO category."Wards" VALUES (322, 8, 'system', '2023-07-26 08:40:17.660299+07', 'system', '2023-07-26 08:40:17.660299+07', 'Phường Hoàng Văn Thụ', '00322', 'Phường');
INSERT INTO category."Wards" VALUES (325, 8, 'system', '2023-07-26 08:40:17.660302+07', 'system', '2023-07-26 08:40:17.660302+07', 'Phường Giáp Bát', '00325', 'Phường');
INSERT INTO category."Wards" VALUES (328, 8, 'system', '2023-07-26 08:40:17.660305+07', 'system', '2023-07-26 08:40:17.660305+07', 'Phường Lĩnh Nam', '00328', 'Phường');
INSERT INTO category."Wards" VALUES (331, 8, 'system', '2023-07-26 08:40:17.660307+07', 'system', '2023-07-26 08:40:17.660307+07', 'Phường Thịnh Liệt', '00331', 'Phường');
INSERT INTO category."Wards" VALUES (334, 8, 'system', '2023-07-26 08:40:17.66031+07', 'system', '2023-07-26 08:40:17.66031+07', 'Phường Trần Phú', '00334', 'Phường');
INSERT INTO category."Wards" VALUES (337, 8, 'system', '2023-07-26 08:40:17.660313+07', 'system', '2023-07-26 08:40:17.660313+07', 'Phường Hoàng Liệt', '00337', 'Phường');
INSERT INTO category."Wards" VALUES (340, 8, 'system', '2023-07-26 08:40:17.660316+07', 'system', '2023-07-26 08:40:17.660316+07', 'Phường Yên Sở', '00340', 'Phường');
INSERT INTO category."Wards" VALUES (343, 9, 'system', '2023-07-26 08:40:17.660318+07', 'system', '2023-07-26 08:40:17.660318+07', 'Phường Nhân Chính', '00343', 'Phường');
INSERT INTO category."Wards" VALUES (346, 9, 'system', '2023-07-26 08:40:17.660321+07', 'system', '2023-07-26 08:40:17.660321+07', 'Phường Thượng Đình', '00346', 'Phường');
INSERT INTO category."Wards" VALUES (349, 9, 'system', '2023-07-26 08:40:17.660324+07', 'system', '2023-07-26 08:40:17.660324+07', 'Phường Khương Trung', '00349', 'Phường');
INSERT INTO category."Wards" VALUES (352, 9, 'system', '2023-07-26 08:40:17.660327+07', 'system', '2023-07-26 08:40:17.660327+07', 'Phường Khương Mai', '00352', 'Phường');
INSERT INTO category."Wards" VALUES (355, 9, 'system', '2023-07-26 08:40:17.660329+07', 'system', '2023-07-26 08:40:17.660329+07', 'Phường Thanh Xuân Trung', '00355', 'Phường');
INSERT INTO category."Wards" VALUES (358, 9, 'system', '2023-07-26 08:40:17.660332+07', 'system', '2023-07-26 08:40:17.660332+07', 'Phường Phương Liệt', '00358', 'Phường');
INSERT INTO category."Wards" VALUES (361, 9, 'system', '2023-07-26 08:40:17.660335+07', 'system', '2023-07-26 08:40:17.660335+07', 'Phường Hạ Đình', '00361', 'Phường');
INSERT INTO category."Wards" VALUES (364, 9, 'system', '2023-07-26 08:40:17.660338+07', 'system', '2023-07-26 08:40:17.660338+07', 'Phường Khương Đình', '00364', 'Phường');
INSERT INTO category."Wards" VALUES (367, 9, 'system', '2023-07-26 08:40:17.660341+07', 'system', '2023-07-26 08:40:17.660341+07', 'Phường Thanh Xuân Bắc', '00367', 'Phường');
INSERT INTO category."Wards" VALUES (370, 9, 'system', '2023-07-26 08:40:17.660344+07', 'system', '2023-07-26 08:40:17.660344+07', 'Phường Thanh Xuân Nam', '00370', 'Phường');
INSERT INTO category."Wards" VALUES (373, 9, 'system', '2023-07-26 08:40:17.660346+07', 'system', '2023-07-26 08:40:17.660346+07', 'Phường Kim Giang', '00373', 'Phường');
INSERT INTO category."Wards" VALUES (376, 16, 'system', '2023-07-26 08:40:17.660349+07', 'system', '2023-07-26 08:40:17.660349+07', 'Thị trấn Sóc Sơn', '00376', 'Thị trấn');
INSERT INTO category."Wards" VALUES (379, 16, 'system', '2023-07-26 08:40:17.660352+07', 'system', '2023-07-26 08:40:17.660352+07', 'Xã Bắc Sơn', '00379', 'Xã');
INSERT INTO category."Wards" VALUES (382, 16, 'system', '2023-07-26 08:40:17.660355+07', 'system', '2023-07-26 08:40:17.660355+07', 'Xã Minh Trí', '00382', 'Xã');
INSERT INTO category."Wards" VALUES (385, 16, 'system', '2023-07-26 08:40:17.660359+07', 'system', '2023-07-26 08:40:17.660359+07', 'Xã Hồng Kỳ', '00385', 'Xã');
INSERT INTO category."Wards" VALUES (388, 16, 'system', '2023-07-26 08:40:17.660362+07', 'system', '2023-07-26 08:40:17.660362+07', 'Xã Nam Sơn', '00388', 'Xã');
INSERT INTO category."Wards" VALUES (391, 16, 'system', '2023-07-26 08:40:17.660365+07', 'system', '2023-07-26 08:40:17.660365+07', 'Xã Trung Giã', '00391', 'Xã');
INSERT INTO category."Wards" VALUES (394, 16, 'system', '2023-07-26 08:40:17.660368+07', 'system', '2023-07-26 08:40:17.660368+07', 'Xã Tân Hưng', '00394', 'Xã');
INSERT INTO category."Wards" VALUES (397, 16, 'system', '2023-07-26 08:40:17.66037+07', 'system', '2023-07-26 08:40:17.66037+07', 'Xã Minh Phú', '00397', 'Xã');
INSERT INTO category."Wards" VALUES (400, 16, 'system', '2023-07-26 08:40:17.660373+07', 'system', '2023-07-26 08:40:17.660373+07', 'Xã Phù Linh', '00400', 'Xã');
INSERT INTO category."Wards" VALUES (403, 16, 'system', '2023-07-26 08:40:17.660376+07', 'system', '2023-07-26 08:40:17.660376+07', 'Xã Bắc Phú', '00403', 'Xã');
INSERT INTO category."Wards" VALUES (406, 16, 'system', '2023-07-26 08:40:17.660378+07', 'system', '2023-07-26 08:40:17.660378+07', 'Xã Tân Minh', '00406', 'Xã');
INSERT INTO category."Wards" VALUES (409, 16, 'system', '2023-07-26 08:40:17.660381+07', 'system', '2023-07-26 08:40:17.660381+07', 'Xã Quang Tiến', '00409', 'Xã');
INSERT INTO category."Wards" VALUES (412, 16, 'system', '2023-07-26 08:40:17.660384+07', 'system', '2023-07-26 08:40:17.660384+07', 'Xã Hiền Ninh', '00412', 'Xã');
INSERT INTO category."Wards" VALUES (415, 16, 'system', '2023-07-26 08:40:17.660386+07', 'system', '2023-07-26 08:40:17.660386+07', 'Xã Tân Dân', '00415', 'Xã');
INSERT INTO category."Wards" VALUES (418, 16, 'system', '2023-07-26 08:40:17.660389+07', 'system', '2023-07-26 08:40:17.660389+07', 'Xã Tiên Dược', '00418', 'Xã');
INSERT INTO category."Wards" VALUES (421, 16, 'system', '2023-07-26 08:40:17.660392+07', 'system', '2023-07-26 08:40:17.660392+07', 'Xã Việt Long', '00421', 'Xã');
INSERT INTO category."Wards" VALUES (424, 16, 'system', '2023-07-26 08:40:17.660394+07', 'system', '2023-07-26 08:40:17.660394+07', 'Xã Xuân Giang', '00424', 'Xã');
INSERT INTO category."Wards" VALUES (427, 16, 'system', '2023-07-26 08:40:17.660397+07', 'system', '2023-07-26 08:40:17.660397+07', 'Xã Mai Đình', '00427', 'Xã');
INSERT INTO category."Wards" VALUES (430, 16, 'system', '2023-07-26 08:40:17.660399+07', 'system', '2023-07-26 08:40:17.660399+07', 'Xã Đức Hoà', '00430', 'Xã');
INSERT INTO category."Wards" VALUES (433, 16, 'system', '2023-07-26 08:40:17.660402+07', 'system', '2023-07-26 08:40:17.660402+07', 'Xã Thanh Xuân', '00433', 'Xã');
INSERT INTO category."Wards" VALUES (436, 16, 'system', '2023-07-26 08:40:17.660405+07', 'system', '2023-07-26 08:40:17.660405+07', 'Xã Đông Xuân', '00436', 'Xã');
INSERT INTO category."Wards" VALUES (439, 16, 'system', '2023-07-26 08:40:17.660407+07', 'system', '2023-07-26 08:40:17.660407+07', 'Xã Kim Lũ', '00439', 'Xã');
INSERT INTO category."Wards" VALUES (442, 16, 'system', '2023-07-26 08:40:17.66041+07', 'system', '2023-07-26 08:40:17.66041+07', 'Xã Phú Cường', '00442', 'Xã');
INSERT INTO category."Wards" VALUES (445, 16, 'system', '2023-07-26 08:40:17.660412+07', 'system', '2023-07-26 08:40:17.660412+07', 'Xã Phú Minh', '00445', 'Xã');
INSERT INTO category."Wards" VALUES (448, 16, 'system', '2023-07-26 08:40:17.660415+07', 'system', '2023-07-26 08:40:17.660415+07', 'Xã Phù Lỗ', '00448', 'Xã');
INSERT INTO category."Wards" VALUES (451, 16, 'system', '2023-07-26 08:40:17.660417+07', 'system', '2023-07-26 08:40:17.660417+07', 'Xã Xuân Thu', '00451', 'Xã');
INSERT INTO category."Wards" VALUES (454, 17, 'system', '2023-07-26 08:40:17.66042+07', 'system', '2023-07-26 08:40:17.66042+07', 'Thị trấn Đông Anh', '00454', 'Thị trấn');
INSERT INTO category."Wards" VALUES (457, 17, 'system', '2023-07-26 08:40:17.660423+07', 'system', '2023-07-26 08:40:17.660423+07', 'Xã Xuân Nộn', '00457', 'Xã');
INSERT INTO category."Wards" VALUES (460, 17, 'system', '2023-07-26 08:40:17.660426+07', 'system', '2023-07-26 08:40:17.660426+07', 'Xã Thuỵ Lâm', '00460', 'Xã');
INSERT INTO category."Wards" VALUES (463, 17, 'system', '2023-07-26 08:40:17.660428+07', 'system', '2023-07-26 08:40:17.660428+07', 'Xã Bắc Hồng', '00463', 'Xã');
INSERT INTO category."Wards" VALUES (466, 17, 'system', '2023-07-26 08:40:17.660431+07', 'system', '2023-07-26 08:40:17.660431+07', 'Xã Nguyên Khê', '00466', 'Xã');
INSERT INTO category."Wards" VALUES (469, 17, 'system', '2023-07-26 08:40:17.660434+07', 'system', '2023-07-26 08:40:17.660434+07', 'Xã Nam Hồng', '00469', 'Xã');
INSERT INTO category."Wards" VALUES (472, 17, 'system', '2023-07-26 08:40:17.660436+07', 'system', '2023-07-26 08:40:17.660436+07', 'Xã Tiên Dương', '00472', 'Xã');
INSERT INTO category."Wards" VALUES (475, 17, 'system', '2023-07-26 08:40:17.660439+07', 'system', '2023-07-26 08:40:17.660439+07', 'Xã Vân Hà', '00475', 'Xã');
INSERT INTO category."Wards" VALUES (478, 17, 'system', '2023-07-26 08:40:17.660442+07', 'system', '2023-07-26 08:40:17.660442+07', 'Xã Uy Nỗ', '00478', 'Xã');
INSERT INTO category."Wards" VALUES (481, 17, 'system', '2023-07-26 08:40:17.660444+07', 'system', '2023-07-26 08:40:17.660444+07', 'Xã Vân Nội', '00481', 'Xã');
INSERT INTO category."Wards" VALUES (484, 17, 'system', '2023-07-26 08:40:17.660447+07', 'system', '2023-07-26 08:40:17.660447+07', 'Xã Liên Hà', '00484', 'Xã');
INSERT INTO category."Wards" VALUES (487, 17, 'system', '2023-07-26 08:40:17.66045+07', 'system', '2023-07-26 08:40:17.66045+07', 'Xã Việt Hùng', '00487', 'Xã');
INSERT INTO category."Wards" VALUES (490, 17, 'system', '2023-07-26 08:40:17.660452+07', 'system', '2023-07-26 08:40:17.660453+07', 'Xã Kim Nỗ', '00490', 'Xã');
INSERT INTO category."Wards" VALUES (493, 17, 'system', '2023-07-26 08:40:17.660456+07', 'system', '2023-07-26 08:40:17.660456+07', 'Xã Kim Chung', '00493', 'Xã');
INSERT INTO category."Wards" VALUES (496, 17, 'system', '2023-07-26 08:40:17.660459+07', 'system', '2023-07-26 08:40:17.660459+07', 'Xã Dục Tú', '00496', 'Xã');
INSERT INTO category."Wards" VALUES (499, 17, 'system', '2023-07-26 08:40:17.660462+07', 'system', '2023-07-26 08:40:17.660462+07', 'Xã Đại Mạch', '00499', 'Xã');
INSERT INTO category."Wards" VALUES (502, 17, 'system', '2023-07-26 08:40:17.660467+07', 'system', '2023-07-26 08:40:17.660467+07', 'Xã Vĩnh Ngọc', '00502', 'Xã');
INSERT INTO category."Wards" VALUES (505, 17, 'system', '2023-07-26 08:40:17.660471+07', 'system', '2023-07-26 08:40:17.660471+07', 'Xã Cổ Loa', '00505', 'Xã');
INSERT INTO category."Wards" VALUES (508, 17, 'system', '2023-07-26 08:40:17.660475+07', 'system', '2023-07-26 08:40:17.660475+07', 'Xã Hải Bối', '00508', 'Xã');
INSERT INTO category."Wards" VALUES (511, 17, 'system', '2023-07-26 08:40:17.66048+07', 'system', '2023-07-26 08:40:17.66048+07', 'Xã Xuân Canh', '00511', 'Xã');
INSERT INTO category."Wards" VALUES (514, 17, 'system', '2023-07-26 08:40:17.660484+07', 'system', '2023-07-26 08:40:17.660484+07', 'Xã Võng La', '00514', 'Xã');
INSERT INTO category."Wards" VALUES (517, 17, 'system', '2023-07-26 08:40:17.660489+07', 'system', '2023-07-26 08:40:17.660489+07', 'Xã Tàm Xá', '00517', 'Xã');
INSERT INTO category."Wards" VALUES (520, 17, 'system', '2023-07-26 08:40:17.660493+07', 'system', '2023-07-26 08:40:17.660493+07', 'Xã Mai Lâm', '00520', 'Xã');
INSERT INTO category."Wards" VALUES (523, 17, 'system', '2023-07-26 08:40:17.660498+07', 'system', '2023-07-26 08:40:17.660498+07', 'Xã Đông Hội', '00523', 'Xã');
INSERT INTO category."Wards" VALUES (526, 18, 'system', '2023-07-26 08:40:17.660501+07', 'system', '2023-07-26 08:40:17.660501+07', 'Thị trấn Yên Viên', '00526', 'Thị trấn');
INSERT INTO category."Wards" VALUES (529, 18, 'system', '2023-07-26 08:40:17.660504+07', 'system', '2023-07-26 08:40:17.660504+07', 'Xã Yên Thường', '00529', 'Xã');
INSERT INTO category."Wards" VALUES (532, 18, 'system', '2023-07-26 08:40:17.660506+07', 'system', '2023-07-26 08:40:17.660507+07', 'Xã Yên Viên', '00532', 'Xã');
INSERT INTO category."Wards" VALUES (535, 18, 'system', '2023-07-26 08:40:17.660509+07', 'system', '2023-07-26 08:40:17.660509+07', 'Xã Ninh Hiệp', '00535', 'Xã');
INSERT INTO category."Wards" VALUES (538, 18, 'system', '2023-07-26 08:40:17.660512+07', 'system', '2023-07-26 08:40:17.660512+07', 'Xã Đình Xuyên', '00538', 'Xã');
INSERT INTO category."Wards" VALUES (541, 18, 'system', '2023-07-26 08:40:17.660514+07', 'system', '2023-07-26 08:40:17.660515+07', 'Xã Dương Hà', '00541', 'Xã');
INSERT INTO category."Wards" VALUES (544, 18, 'system', '2023-07-26 08:40:17.660517+07', 'system', '2023-07-26 08:40:17.660517+07', 'Xã Phù Đổng', '00544', 'Xã');
INSERT INTO category."Wards" VALUES (547, 18, 'system', '2023-07-26 08:40:17.66052+07', 'system', '2023-07-26 08:40:17.66052+07', 'Xã Trung Mầu', '00547', 'Xã');
INSERT INTO category."Wards" VALUES (550, 18, 'system', '2023-07-26 08:40:17.660523+07', 'system', '2023-07-26 08:40:17.660523+07', 'Xã Lệ Chi', '00550', 'Xã');
INSERT INTO category."Wards" VALUES (553, 18, 'system', '2023-07-26 08:40:17.660525+07', 'system', '2023-07-26 08:40:17.660525+07', 'Xã Cổ Bi', '00553', 'Xã');
INSERT INTO category."Wards" VALUES (556, 18, 'system', '2023-07-26 08:40:17.660528+07', 'system', '2023-07-26 08:40:17.660528+07', 'Xã Đặng Xá', '00556', 'Xã');
INSERT INTO category."Wards" VALUES (559, 18, 'system', '2023-07-26 08:40:17.66053+07', 'system', '2023-07-26 08:40:17.660531+07', 'Xã Phú Thị', '00559', 'Xã');
INSERT INTO category."Wards" VALUES (562, 18, 'system', '2023-07-26 08:40:17.660533+07', 'system', '2023-07-26 08:40:17.660533+07', 'Xã Kim Sơn', '00562', 'Xã');
INSERT INTO category."Wards" VALUES (565, 18, 'system', '2023-07-26 08:40:17.660536+07', 'system', '2023-07-26 08:40:17.660536+07', 'Thị trấn Trâu Quỳ', '00565', 'Thị trấn');
INSERT INTO category."Wards" VALUES (568, 18, 'system', '2023-07-26 08:40:17.660539+07', 'system', '2023-07-26 08:40:17.660539+07', 'Xã Dương Quang', '00568', 'Xã');
INSERT INTO category."Wards" VALUES (571, 18, 'system', '2023-07-26 08:40:17.660542+07', 'system', '2023-07-26 08:40:17.660542+07', 'Xã Dương Xá', '00571', 'Xã');
INSERT INTO category."Wards" VALUES (574, 18, 'system', '2023-07-26 08:40:17.660544+07', 'system', '2023-07-26 08:40:17.660544+07', 'Xã Đông Dư', '00574', 'Xã');
INSERT INTO category."Wards" VALUES (577, 18, 'system', '2023-07-26 08:40:17.660547+07', 'system', '2023-07-26 08:40:17.660547+07', 'Xã Đa Tốn', '00577', 'Xã');
INSERT INTO category."Wards" VALUES (580, 18, 'system', '2023-07-26 08:40:17.660549+07', 'system', '2023-07-26 08:40:17.66055+07', 'Xã Kiêu Kỵ', '00580', 'Xã');
INSERT INTO category."Wards" VALUES (583, 18, 'system', '2023-07-26 08:40:17.660552+07', 'system', '2023-07-26 08:40:17.660552+07', 'Xã Bát Tràng', '00583', 'Xã');
INSERT INTO category."Wards" VALUES (586, 18, 'system', '2023-07-26 08:40:17.660554+07', 'system', '2023-07-26 08:40:17.660555+07', 'Xã Kim Lan', '00586', 'Xã');
INSERT INTO category."Wards" VALUES (589, 18, 'system', '2023-07-26 08:40:17.660557+07', 'system', '2023-07-26 08:40:17.660557+07', 'Xã Văn Đức', '00589', 'Xã');
INSERT INTO category."Wards" VALUES (592, 19, 'system', '2023-07-26 08:40:17.66056+07', 'system', '2023-07-26 08:40:17.66056+07', 'Phường Cầu Diễn', '00592', 'Phường');
INSERT INTO category."Wards" VALUES (595, 21, 'system', '2023-07-26 08:40:17.660633+07', 'system', '2023-07-26 08:40:17.660633+07', 'Phường Thượng Cát', '00595', 'Phường');
INSERT INTO category."Wards" VALUES (598, 21, 'system', '2023-07-26 08:40:17.660636+07', 'system', '2023-07-26 08:40:17.660636+07', 'Phường Liên Mạc', '00598', 'Phường');
INSERT INTO category."Wards" VALUES (601, 21, 'system', '2023-07-26 08:40:17.660639+07', 'system', '2023-07-26 08:40:17.660639+07', 'Phường Đông Ngạc', '00601', 'Phường');
INSERT INTO category."Wards" VALUES (602, 21, 'system', '2023-07-26 08:40:17.660642+07', 'system', '2023-07-26 08:40:17.660642+07', 'Phường Đức Thắng', '00602', 'Phường');
INSERT INTO category."Wards" VALUES (604, 21, 'system', '2023-07-26 08:40:17.660644+07', 'system', '2023-07-26 08:40:17.660645+07', 'Phường Thụy Phương', '00604', 'Phường');
INSERT INTO category."Wards" VALUES (607, 21, 'system', '2023-07-26 08:40:17.660648+07', 'system', '2023-07-26 08:40:17.660648+07', 'Phường Tây Tựu', '00607', 'Phường');
INSERT INTO category."Wards" VALUES (610, 21, 'system', '2023-07-26 08:40:17.66065+07', 'system', '2023-07-26 08:40:17.66065+07', 'Phường Xuân Đỉnh', '00610', 'Phường');
INSERT INTO category."Wards" VALUES (611, 21, 'system', '2023-07-26 08:40:17.660653+07', 'system', '2023-07-26 08:40:17.660653+07', 'Phường Xuân Tảo', '00611', 'Phường');
INSERT INTO category."Wards" VALUES (613, 21, 'system', '2023-07-26 08:40:17.660656+07', 'system', '2023-07-26 08:40:17.660656+07', 'Phường Minh Khai', '00613', 'Phường');
INSERT INTO category."Wards" VALUES (616, 21, 'system', '2023-07-26 08:40:17.660658+07', 'system', '2023-07-26 08:40:17.660658+07', 'Phường Cổ Nhuế 1', '00616', 'Phường');
INSERT INTO category."Wards" VALUES (617, 21, 'system', '2023-07-26 08:40:17.660661+07', 'system', '2023-07-26 08:40:17.660661+07', 'Phường Cổ Nhuế 2', '00617', 'Phường');
INSERT INTO category."Wards" VALUES (619, 21, 'system', '2023-07-26 08:40:17.660664+07', 'system', '2023-07-26 08:40:17.660664+07', 'Phường Phú Diễn', '00619', 'Phường');
INSERT INTO category."Wards" VALUES (620, 21, 'system', '2023-07-26 08:40:17.660667+07', 'system', '2023-07-26 08:40:17.660667+07', 'Phường Phúc Diễn', '00620', 'Phường');
INSERT INTO category."Wards" VALUES (622, 19, 'system', '2023-07-26 08:40:17.660563+07', 'system', '2023-07-26 08:40:17.660563+07', 'Phường Xuân Phương', '00622', 'Phường');
INSERT INTO category."Wards" VALUES (623, 19, 'system', '2023-07-26 08:40:17.660566+07', 'system', '2023-07-26 08:40:17.660566+07', 'Phường Phương Canh', '00623', 'Phường');
INSERT INTO category."Wards" VALUES (625, 19, 'system', '2023-07-26 08:40:17.660569+07', 'system', '2023-07-26 08:40:17.660569+07', 'Phường Mỹ Đình 1', '00625', 'Phường');
INSERT INTO category."Wards" VALUES (626, 19, 'system', '2023-07-26 08:40:17.660573+07', 'system', '2023-07-26 08:40:17.660573+07', 'Phường Mỹ Đình 2', '00626', 'Phường');
INSERT INTO category."Wards" VALUES (628, 19, 'system', '2023-07-26 08:40:17.660576+07', 'system', '2023-07-26 08:40:17.660576+07', 'Phường Tây Mỗ', '00628', 'Phường');
INSERT INTO category."Wards" VALUES (631, 19, 'system', '2023-07-26 08:40:17.660579+07', 'system', '2023-07-26 08:40:17.660579+07', 'Phường Mễ Trì', '00631', 'Phường');
INSERT INTO category."Wards" VALUES (632, 19, 'system', '2023-07-26 08:40:17.660581+07', 'system', '2023-07-26 08:40:17.660582+07', 'Phường Phú Đô', '00632', 'Phường');
INSERT INTO category."Wards" VALUES (634, 19, 'system', '2023-07-26 08:40:17.660584+07', 'system', '2023-07-26 08:40:17.660584+07', 'Phường Đại Mỗ', '00634', 'Phường');
INSERT INTO category."Wards" VALUES (637, 19, 'system', '2023-07-26 08:40:17.660587+07', 'system', '2023-07-26 08:40:17.660587+07', 'Phường Trung Văn', '00637', 'Phường');
INSERT INTO category."Wards" VALUES (640, 20, 'system', '2023-07-26 08:40:17.66059+07', 'system', '2023-07-26 08:40:17.66059+07', 'Thị trấn Văn Điển', '00640', 'Thị trấn');
INSERT INTO category."Wards" VALUES (643, 20, 'system', '2023-07-26 08:40:17.660593+07', 'system', '2023-07-26 08:40:17.660593+07', 'Xã Tân Triều', '00643', 'Xã');
INSERT INTO category."Wards" VALUES (646, 20, 'system', '2023-07-26 08:40:17.660596+07', 'system', '2023-07-26 08:40:17.660596+07', 'Xã Thanh Liệt', '00646', 'Xã');
INSERT INTO category."Wards" VALUES (649, 20, 'system', '2023-07-26 08:40:17.660599+07', 'system', '2023-07-26 08:40:17.660599+07', 'Xã Tả Thanh Oai', '00649', 'Xã');
INSERT INTO category."Wards" VALUES (652, 20, 'system', '2023-07-26 08:40:17.660601+07', 'system', '2023-07-26 08:40:17.660601+07', 'Xã Hữu Hoà', '00652', 'Xã');
INSERT INTO category."Wards" VALUES (655, 20, 'system', '2023-07-26 08:40:17.660604+07', 'system', '2023-07-26 08:40:17.660604+07', 'Xã Tam Hiệp', '00655', 'Xã');
INSERT INTO category."Wards" VALUES (658, 20, 'system', '2023-07-26 08:40:17.660606+07', 'system', '2023-07-26 08:40:17.660606+07', 'Xã Tứ Hiệp', '00658', 'Xã');
INSERT INTO category."Wards" VALUES (661, 20, 'system', '2023-07-26 08:40:17.660609+07', 'system', '2023-07-26 08:40:17.660609+07', 'Xã Yên Mỹ', '00661', 'Xã');
INSERT INTO category."Wards" VALUES (664, 20, 'system', '2023-07-26 08:40:17.660612+07', 'system', '2023-07-26 08:40:17.660612+07', 'Xã Vĩnh Quỳnh', '00664', 'Xã');
INSERT INTO category."Wards" VALUES (667, 20, 'system', '2023-07-26 08:40:17.660615+07', 'system', '2023-07-26 08:40:17.660615+07', 'Xã Ngũ Hiệp', '00667', 'Xã');
INSERT INTO category."Wards" VALUES (670, 20, 'system', '2023-07-26 08:40:17.660617+07', 'system', '2023-07-26 08:40:17.660617+07', 'Xã Duyên Hà', '00670', 'Xã');
INSERT INTO category."Wards" VALUES (673, 20, 'system', '2023-07-26 08:40:17.66062+07', 'system', '2023-07-26 08:40:17.66062+07', 'Xã Ngọc Hồi', '00673', 'Xã');
INSERT INTO category."Wards" VALUES (676, 20, 'system', '2023-07-26 08:40:17.660623+07', 'system', '2023-07-26 08:40:17.660623+07', 'Xã Vạn Phúc', '00676', 'Xã');
INSERT INTO category."Wards" VALUES (679, 20, 'system', '2023-07-26 08:40:17.660625+07', 'system', '2023-07-26 08:40:17.660625+07', 'Xã Đại áng', '00679', 'Xã');
INSERT INTO category."Wards" VALUES (682, 20, 'system', '2023-07-26 08:40:17.660628+07', 'system', '2023-07-26 08:40:17.660628+07', 'Xã Liên Ninh', '00682', 'Xã');
INSERT INTO category."Wards" VALUES (685, 20, 'system', '2023-07-26 08:40:17.66063+07', 'system', '2023-07-26 08:40:17.660631+07', 'Xã Đông Mỹ', '00685', 'Xã');
INSERT INTO category."Wards" VALUES (688, 24, 'system', '2023-07-26 08:40:17.661706+07', 'system', '2023-07-26 08:40:17.661706+07', 'Phường Quang Trung', '00688', 'Phường');
INSERT INTO category."Wards" VALUES (691, 24, 'system', '2023-07-26 08:40:17.66171+07', 'system', '2023-07-26 08:40:17.66171+07', 'Phường Trần Phú', '00691', 'Phường');
INSERT INTO category."Wards" VALUES (692, 24, 'system', '2023-07-26 08:40:17.661713+07', 'system', '2023-07-26 08:40:17.661713+07', 'Phường Ngọc Hà', '00692', 'Phường');
INSERT INTO category."Wards" VALUES (694, 24, 'system', '2023-07-26 08:40:17.661715+07', 'system', '2023-07-26 08:40:17.661715+07', 'Phường Nguyễn Trãi', '00694', 'Phường');
INSERT INTO category."Wards" VALUES (697, 24, 'system', '2023-07-26 08:40:17.661718+07', 'system', '2023-07-26 08:40:17.661718+07', 'Phường Minh Khai', '00697', 'Phường');
INSERT INTO category."Wards" VALUES (700, 24, 'system', '2023-07-26 08:40:17.661721+07', 'system', '2023-07-26 08:40:17.661721+07', 'Xã Ngọc Đường', '00700', 'Xã');
INSERT INTO category."Wards" VALUES (703, 30, 'system', '2023-07-26 08:40:17.661908+07', 'system', '2023-07-26 08:40:17.661908+07', 'Xã Kim Thạch', '00703', 'Xã');
INSERT INTO category."Wards" VALUES (706, 30, 'system', '2023-07-26 08:40:17.661911+07', 'system', '2023-07-26 08:40:17.661911+07', 'Xã Phú Linh', '00706', 'Xã');
INSERT INTO category."Wards" VALUES (709, 30, 'system', '2023-07-26 08:40:17.661913+07', 'system', '2023-07-26 08:40:17.661914+07', 'Xã Kim Linh', '00709', 'Xã');
INSERT INTO category."Wards" VALUES (712, 26, 'system', '2023-07-26 08:40:17.661729+07', 'system', '2023-07-26 08:40:17.661729+07', 'Thị trấn Phó Bảng', '00712', 'Thị trấn');
INSERT INTO category."Wards" VALUES (715, 26, 'system', '2023-07-26 08:40:17.661732+07', 'system', '2023-07-26 08:40:17.661732+07', 'Xã Lũng Cú', '00715', 'Xã');
INSERT INTO category."Wards" VALUES (718, 26, 'system', '2023-07-26 08:40:17.661735+07', 'system', '2023-07-26 08:40:17.661735+07', 'Xã Má Lé', '00718', 'Xã');
INSERT INTO category."Wards" VALUES (721, 26, 'system', '2023-07-26 08:40:17.661737+07', 'system', '2023-07-26 08:40:17.661737+07', 'Thị trấn Đồng Văn', '00721', 'Thị trấn');
INSERT INTO category."Wards" VALUES (724, 26, 'system', '2023-07-26 08:40:17.66174+07', 'system', '2023-07-26 08:40:17.66174+07', 'Xã Lũng Táo', '00724', 'Xã');
INSERT INTO category."Wards" VALUES (727, 26, 'system', '2023-07-26 08:40:17.661743+07', 'system', '2023-07-26 08:40:17.661743+07', 'Xã Phố Là', '00727', 'Xã');
INSERT INTO category."Wards" VALUES (730, 26, 'system', '2023-07-26 08:40:17.661745+07', 'system', '2023-07-26 08:40:17.661745+07', 'Xã Thài Phìn Tủng', '00730', 'Xã');
INSERT INTO category."Wards" VALUES (733, 26, 'system', '2023-07-26 08:40:17.661748+07', 'system', '2023-07-26 08:40:17.661748+07', 'Xã Sủng Là', '00733', 'Xã');
INSERT INTO category."Wards" VALUES (736, 26, 'system', '2023-07-26 08:40:17.66175+07', 'system', '2023-07-26 08:40:17.66175+07', 'Xã Xà Phìn', '00736', 'Xã');
INSERT INTO category."Wards" VALUES (739, 26, 'system', '2023-07-26 08:40:17.661753+07', 'system', '2023-07-26 08:40:17.661753+07', 'Xã Tả Phìn', '00739', 'Xã');
INSERT INTO category."Wards" VALUES (742, 26, 'system', '2023-07-26 08:40:17.661755+07', 'system', '2023-07-26 08:40:17.661756+07', 'Xã Tả Lủng', '00742', 'Xã');
INSERT INTO category."Wards" VALUES (745, 26, 'system', '2023-07-26 08:40:17.661758+07', 'system', '2023-07-26 08:40:17.661758+07', 'Xã Phố Cáo', '00745', 'Xã');
INSERT INTO category."Wards" VALUES (748, 26, 'system', '2023-07-26 08:40:17.661761+07', 'system', '2023-07-26 08:40:17.661761+07', 'Xã Sính Lủng', '00748', 'Xã');
INSERT INTO category."Wards" VALUES (751, 26, 'system', '2023-07-26 08:40:17.661763+07', 'system', '2023-07-26 08:40:17.661763+07', 'Xã Sảng Tủng', '00751', 'Xã');
INSERT INTO category."Wards" VALUES (754, 26, 'system', '2023-07-26 08:40:17.661766+07', 'system', '2023-07-26 08:40:17.661766+07', 'Xã Lũng Thầu', '00754', 'Xã');
INSERT INTO category."Wards" VALUES (757, 26, 'system', '2023-07-26 08:40:17.661768+07', 'system', '2023-07-26 08:40:17.661769+07', 'Xã Hố Quáng Phìn', '00757', 'Xã');
INSERT INTO category."Wards" VALUES (760, 26, 'system', '2023-07-26 08:40:17.661771+07', 'system', '2023-07-26 08:40:17.661771+07', 'Xã Vần Chải', '00760', 'Xã');
INSERT INTO category."Wards" VALUES (763, 26, 'system', '2023-07-26 08:40:17.661774+07', 'system', '2023-07-26 08:40:17.661774+07', 'Xã Lũng Phìn', '00763', 'Xã');
INSERT INTO category."Wards" VALUES (766, 26, 'system', '2023-07-26 08:40:17.661776+07', 'system', '2023-07-26 08:40:17.661776+07', 'Xã Sủng Trái', '00766', 'Xã');
INSERT INTO category."Wards" VALUES (769, 27, 'system', '2023-07-26 08:40:17.661779+07', 'system', '2023-07-26 08:40:17.661779+07', 'Thị trấn Mèo Vạc', '00769', 'Thị trấn');
INSERT INTO category."Wards" VALUES (772, 27, 'system', '2023-07-26 08:40:17.661782+07', 'system', '2023-07-26 08:40:17.661782+07', 'Xã Thượng Phùng', '00772', 'Xã');
INSERT INTO category."Wards" VALUES (775, 27, 'system', '2023-07-26 08:40:17.661784+07', 'system', '2023-07-26 08:40:17.661784+07', 'Xã Pải Lủng', '00775', 'Xã');
INSERT INTO category."Wards" VALUES (778, 27, 'system', '2023-07-26 08:40:17.661787+07', 'system', '2023-07-26 08:40:17.661787+07', 'Xã Xín Cái', '00778', 'Xã');
INSERT INTO category."Wards" VALUES (781, 27, 'system', '2023-07-26 08:40:17.661789+07', 'system', '2023-07-26 08:40:17.66179+07', 'Xã Pả Vi', '00781', 'Xã');
INSERT INTO category."Wards" VALUES (784, 27, 'system', '2023-07-26 08:40:17.661792+07', 'system', '2023-07-26 08:40:17.661792+07', 'Xã Giàng Chu Phìn', '00784', 'Xã');
INSERT INTO category."Wards" VALUES (787, 27, 'system', '2023-07-26 08:40:17.661794+07', 'system', '2023-07-26 08:40:17.661795+07', 'Xã Sủng Trà', '00787', 'Xã');
INSERT INTO category."Wards" VALUES (790, 27, 'system', '2023-07-26 08:40:17.661797+07', 'system', '2023-07-26 08:40:17.661797+07', 'Xã Sủng Máng', '00790', 'Xã');
INSERT INTO category."Wards" VALUES (793, 27, 'system', '2023-07-26 08:40:17.6618+07', 'system', '2023-07-26 08:40:17.6618+07', 'Xã Sơn Vĩ', '00793', 'Xã');
INSERT INTO category."Wards" VALUES (796, 27, 'system', '2023-07-26 08:40:17.661803+07', 'system', '2023-07-26 08:40:17.661803+07', 'Xã Tả Lủng', '00796', 'Xã');
INSERT INTO category."Wards" VALUES (799, 27, 'system', '2023-07-26 08:40:17.661806+07', 'system', '2023-07-26 08:40:17.661806+07', 'Xã Cán Chu Phìn', '00799', 'Xã');
INSERT INTO category."Wards" VALUES (802, 27, 'system', '2023-07-26 08:40:17.661808+07', 'system', '2023-07-26 08:40:17.661808+07', 'Xã Lũng Pù', '00802', 'Xã');
INSERT INTO category."Wards" VALUES (805, 27, 'system', '2023-07-26 08:40:17.661811+07', 'system', '2023-07-26 08:40:17.661811+07', 'Xã Lũng Chinh', '00805', 'Xã');
INSERT INTO category."Wards" VALUES (808, 27, 'system', '2023-07-26 08:40:17.661813+07', 'system', '2023-07-26 08:40:17.661813+07', 'Xã Tát Ngà', '00808', 'Xã');
INSERT INTO category."Wards" VALUES (811, 27, 'system', '2023-07-26 08:40:17.661816+07', 'system', '2023-07-26 08:40:17.661816+07', 'Xã Nậm Ban', '00811', 'Xã');
INSERT INTO category."Wards" VALUES (814, 27, 'system', '2023-07-26 08:40:17.661818+07', 'system', '2023-07-26 08:40:17.661819+07', 'Xã Khâu Vai', '00814', 'Xã');
INSERT INTO category."Wards" VALUES (815, 27, 'system', '2023-07-26 08:40:17.661821+07', 'system', '2023-07-26 08:40:17.661821+07', 'Xã Niêm Tòng', '00815', 'Xã');
INSERT INTO category."Wards" VALUES (817, 27, 'system', '2023-07-26 08:40:17.661824+07', 'system', '2023-07-26 08:40:17.661824+07', 'Xã Niêm Sơn', '00817', 'Xã');
INSERT INTO category."Wards" VALUES (820, 28, 'system', '2023-07-26 08:40:17.661826+07', 'system', '2023-07-26 08:40:17.661826+07', 'Thị trấn Yên Minh', '00820', 'Thị trấn');
INSERT INTO category."Wards" VALUES (823, 28, 'system', '2023-07-26 08:40:17.661829+07', 'system', '2023-07-26 08:40:17.661829+07', 'Xã Thắng Mố', '00823', 'Xã');
INSERT INTO category."Wards" VALUES (826, 28, 'system', '2023-07-26 08:40:17.661831+07', 'system', '2023-07-26 08:40:17.661831+07', 'Xã Phú Lũng', '00826', 'Xã');
INSERT INTO category."Wards" VALUES (829, 28, 'system', '2023-07-26 08:40:17.661834+07', 'system', '2023-07-26 08:40:17.661834+07', 'Xã Sủng Tráng', '00829', 'Xã');
INSERT INTO category."Wards" VALUES (832, 28, 'system', '2023-07-26 08:40:17.661836+07', 'system', '2023-07-26 08:40:17.661836+07', 'Xã Bạch Đích', '00832', 'Xã');
INSERT INTO category."Wards" VALUES (835, 28, 'system', '2023-07-26 08:40:17.661839+07', 'system', '2023-07-26 08:40:17.661839+07', 'Xã Na Khê', '00835', 'Xã');
INSERT INTO category."Wards" VALUES (838, 28, 'system', '2023-07-26 08:40:17.661842+07', 'system', '2023-07-26 08:40:17.661842+07', 'Xã Sủng Thài', '00838', 'Xã');
INSERT INTO category."Wards" VALUES (841, 28, 'system', '2023-07-26 08:40:17.661844+07', 'system', '2023-07-26 08:40:17.661844+07', 'Xã Hữu Vinh', '00841', 'Xã');
INSERT INTO category."Wards" VALUES (844, 28, 'system', '2023-07-26 08:40:17.661846+07', 'system', '2023-07-26 08:40:17.661847+07', 'Xã Lao Và Chải', '00844', 'Xã');
INSERT INTO category."Wards" VALUES (847, 28, 'system', '2023-07-26 08:40:17.661849+07', 'system', '2023-07-26 08:40:17.661849+07', 'Xã Mậu Duệ', '00847', 'Xã');
INSERT INTO category."Wards" VALUES (850, 28, 'system', '2023-07-26 08:40:17.661852+07', 'system', '2023-07-26 08:40:17.661852+07', 'Xã Đông Minh', '00850', 'Xã');
INSERT INTO category."Wards" VALUES (853, 28, 'system', '2023-07-26 08:40:17.661854+07', 'system', '2023-07-26 08:40:17.661854+07', 'Xã Mậu Long', '00853', 'Xã');
INSERT INTO category."Wards" VALUES (856, 28, 'system', '2023-07-26 08:40:17.661857+07', 'system', '2023-07-26 08:40:17.661857+07', 'Xã Ngam La', '00856', 'Xã');
INSERT INTO category."Wards" VALUES (859, 28, 'system', '2023-07-26 08:40:17.661859+07', 'system', '2023-07-26 08:40:17.661859+07', 'Xã Ngọc Long', '00859', 'Xã');
INSERT INTO category."Wards" VALUES (862, 28, 'system', '2023-07-26 08:40:17.661862+07', 'system', '2023-07-26 08:40:17.661862+07', 'Xã Đường Thượng', '00862', 'Xã');
INSERT INTO category."Wards" VALUES (865, 28, 'system', '2023-07-26 08:40:17.661865+07', 'system', '2023-07-26 08:40:17.661865+07', 'Xã Lũng Hồ', '00865', 'Xã');
INSERT INTO category."Wards" VALUES (868, 28, 'system', '2023-07-26 08:40:17.661867+07', 'system', '2023-07-26 08:40:17.661867+07', 'Xã Du Tiến', '00868', 'Xã');
INSERT INTO category."Wards" VALUES (871, 28, 'system', '2023-07-26 08:40:17.66187+07', 'system', '2023-07-26 08:40:17.66187+07', 'Xã Du Già', '00871', 'Xã');
INSERT INTO category."Wards" VALUES (874, 29, 'system', '2023-07-26 08:40:17.661872+07', 'system', '2023-07-26 08:40:17.661872+07', 'Thị trấn Tam Sơn', '00874', 'Thị trấn');
INSERT INTO category."Wards" VALUES (877, 29, 'system', '2023-07-26 08:40:17.661875+07', 'system', '2023-07-26 08:40:17.661875+07', 'Xã Bát Đại Sơn', '00877', 'Xã');
INSERT INTO category."Wards" VALUES (880, 29, 'system', '2023-07-26 08:40:17.661878+07', 'system', '2023-07-26 08:40:17.661878+07', 'Xã Nghĩa Thuận', '00880', 'Xã');
INSERT INTO category."Wards" VALUES (883, 29, 'system', '2023-07-26 08:40:17.661881+07', 'system', '2023-07-26 08:40:17.661881+07', 'Xã Cán Tỷ', '00883', 'Xã');
INSERT INTO category."Wards" VALUES (886, 29, 'system', '2023-07-26 08:40:17.661883+07', 'system', '2023-07-26 08:40:17.661883+07', 'Xã Cao Mã Pờ', '00886', 'Xã');
INSERT INTO category."Wards" VALUES (889, 29, 'system', '2023-07-26 08:40:17.661886+07', 'system', '2023-07-26 08:40:17.661886+07', 'Xã Thanh Vân', '00889', 'Xã');
INSERT INTO category."Wards" VALUES (892, 29, 'system', '2023-07-26 08:40:17.661888+07', 'system', '2023-07-26 08:40:17.661888+07', 'Xã Tùng Vài', '00892', 'Xã');
INSERT INTO category."Wards" VALUES (895, 29, 'system', '2023-07-26 08:40:17.661891+07', 'system', '2023-07-26 08:40:17.661891+07', 'Xã Đông Hà', '00895', 'Xã');
INSERT INTO category."Wards" VALUES (898, 29, 'system', '2023-07-26 08:40:17.661894+07', 'system', '2023-07-26 08:40:17.661894+07', 'Xã Quản Bạ', '00898', 'Xã');
INSERT INTO category."Wards" VALUES (901, 29, 'system', '2023-07-26 08:40:17.661896+07', 'system', '2023-07-26 08:40:17.661896+07', 'Xã Lùng Tám', '00901', 'Xã');
INSERT INTO category."Wards" VALUES (904, 29, 'system', '2023-07-26 08:40:17.661901+07', 'system', '2023-07-26 08:40:17.661901+07', 'Xã Quyết Tiến', '00904', 'Xã');
INSERT INTO category."Wards" VALUES (907, 29, 'system', '2023-07-26 08:40:17.661903+07', 'system', '2023-07-26 08:40:17.661904+07', 'Xã Tả Ván', '00907', 'Xã');
INSERT INTO category."Wards" VALUES (910, 29, 'system', '2023-07-26 08:40:17.661906+07', 'system', '2023-07-26 08:40:17.661906+07', 'Xã Thái An', '00910', 'Xã');
INSERT INTO category."Wards" VALUES (913, 30, 'system', '2023-07-26 08:40:17.661916+07', 'system', '2023-07-26 08:40:17.661916+07', 'Thị trấn Vị Xuyên', '00913', 'Thị trấn');
INSERT INTO category."Wards" VALUES (916, 30, 'system', '2023-07-26 08:40:17.661919+07', 'system', '2023-07-26 08:40:17.661919+07', 'Thị trấn Nông Trường Việt Lâm', '00916', 'Thị trấn');
INSERT INTO category."Wards" VALUES (919, 30, 'system', '2023-07-26 08:40:17.661922+07', 'system', '2023-07-26 08:40:17.661922+07', 'Xã Minh Tân', '00919', 'Xã');
INSERT INTO category."Wards" VALUES (922, 30, 'system', '2023-07-26 08:40:17.661925+07', 'system', '2023-07-26 08:40:17.661925+07', 'Xã Thuận Hoà', '00922', 'Xã');
INSERT INTO category."Wards" VALUES (925, 30, 'system', '2023-07-26 08:40:17.661927+07', 'system', '2023-07-26 08:40:17.661928+07', 'Xã Tùng Bá', '00925', 'Xã');
INSERT INTO category."Wards" VALUES (928, 30, 'system', '2023-07-26 08:40:17.66193+07', 'system', '2023-07-26 08:40:17.66193+07', 'Xã Thanh Thủy', '00928', 'Xã');
INSERT INTO category."Wards" VALUES (931, 30, 'system', '2023-07-26 08:40:17.661933+07', 'system', '2023-07-26 08:40:17.661933+07', 'Xã Thanh Đức', '00931', 'Xã');
INSERT INTO category."Wards" VALUES (934, 30, 'system', '2023-07-26 08:40:17.661936+07', 'system', '2023-07-26 08:40:17.661936+07', 'Xã Phong Quang', '00934', 'Xã');
INSERT INTO category."Wards" VALUES (937, 30, 'system', '2023-07-26 08:40:17.661938+07', 'system', '2023-07-26 08:40:17.661938+07', 'Xã Xín Chải', '00937', 'Xã');
INSERT INTO category."Wards" VALUES (940, 30, 'system', '2023-07-26 08:40:17.661941+07', 'system', '2023-07-26 08:40:17.661941+07', 'Xã Phương Tiến', '00940', 'Xã');
INSERT INTO category."Wards" VALUES (943, 30, 'system', '2023-07-26 08:40:17.661944+07', 'system', '2023-07-26 08:40:17.661944+07', 'Xã Lao Chải', '00943', 'Xã');
INSERT INTO category."Wards" VALUES (946, 24, 'system', '2023-07-26 08:40:17.661724+07', 'system', '2023-07-26 08:40:17.661724+07', 'Xã Phương Độ', '00946', 'Xã');
INSERT INTO category."Wards" VALUES (949, 24, 'system', '2023-07-26 08:40:17.661727+07', 'system', '2023-07-26 08:40:17.661727+07', 'Xã Phương Thiện', '00949', 'Xã');
INSERT INTO category."Wards" VALUES (952, 30, 'system', '2023-07-26 08:40:17.661946+07', 'system', '2023-07-26 08:40:17.661946+07', 'Xã Cao Bồ', '00952', 'Xã');
INSERT INTO category."Wards" VALUES (955, 30, 'system', '2023-07-26 08:40:17.661949+07', 'system', '2023-07-26 08:40:17.661949+07', 'Xã Đạo Đức', '00955', 'Xã');
INSERT INTO category."Wards" VALUES (958, 30, 'system', '2023-07-26 08:40:17.661951+07', 'system', '2023-07-26 08:40:17.661951+07', 'Xã Thượng Sơn', '00958', 'Xã');
INSERT INTO category."Wards" VALUES (961, 30, 'system', '2023-07-26 08:40:17.661954+07', 'system', '2023-07-26 08:40:17.661954+07', 'Xã Linh Hồ', '00961', 'Xã');
INSERT INTO category."Wards" VALUES (964, 30, 'system', '2023-07-26 08:40:17.661956+07', 'system', '2023-07-26 08:40:17.661956+07', 'Xã Quảng Ngần', '00964', 'Xã');
INSERT INTO category."Wards" VALUES (967, 30, 'system', '2023-07-26 08:40:17.661959+07', 'system', '2023-07-26 08:40:17.661959+07', 'Xã Việt Lâm', '00967', 'Xã');
INSERT INTO category."Wards" VALUES (970, 30, 'system', '2023-07-26 08:40:17.661961+07', 'system', '2023-07-26 08:40:17.661961+07', 'Xã Ngọc Linh', '00970', 'Xã');
INSERT INTO category."Wards" VALUES (973, 30, 'system', '2023-07-26 08:40:17.661964+07', 'system', '2023-07-26 08:40:17.661964+07', 'Xã Ngọc Minh', '00973', 'Xã');
INSERT INTO category."Wards" VALUES (976, 30, 'system', '2023-07-26 08:40:17.661967+07', 'system', '2023-07-26 08:40:17.661967+07', 'Xã Bạch Ngọc', '00976', 'Xã');
INSERT INTO category."Wards" VALUES (979, 30, 'system', '2023-07-26 08:40:17.661971+07', 'system', '2023-07-26 08:40:17.661971+07', 'Xã Trung Thành', '00979', 'Xã');
INSERT INTO category."Wards" VALUES (982, 31, 'system', '2023-07-26 08:40:17.661976+07', 'system', '2023-07-26 08:40:17.661976+07', 'Xã Minh Sơn', '00982', 'Xã');
INSERT INTO category."Wards" VALUES (985, 31, 'system', '2023-07-26 08:40:17.661981+07', 'system', '2023-07-26 08:40:17.661981+07', 'Xã Giáp Trung', '00985', 'Xã');
INSERT INTO category."Wards" VALUES (988, 31, 'system', '2023-07-26 08:40:17.661986+07', 'system', '2023-07-26 08:40:17.661986+07', 'Xã Yên Định', '00988', 'Xã');
INSERT INTO category."Wards" VALUES (991, 31, 'system', '2023-07-26 08:40:17.66199+07', 'system', '2023-07-26 08:40:17.661991+07', 'Thị trấn Yên Phú', '00991', 'Thị trấn');
INSERT INTO category."Wards" VALUES (994, 31, 'system', '2023-07-26 08:40:17.661995+07', 'system', '2023-07-26 08:40:17.661995+07', 'Xã Minh Ngọc', '00994', 'Xã');
INSERT INTO category."Wards" VALUES (997, 31, 'system', '2023-07-26 08:40:17.662+07', 'system', '2023-07-26 08:40:17.662+07', 'Xã Yên Phong', '00997', 'Xã');
INSERT INTO category."Wards" VALUES (1000, 31, 'system', '2023-07-26 08:40:17.662005+07', 'system', '2023-07-26 08:40:17.662005+07', 'Xã Lạc Nông', '01000', 'Xã');
INSERT INTO category."Wards" VALUES (1003, 31, 'system', '2023-07-26 08:40:17.662011+07', 'system', '2023-07-26 08:40:17.662011+07', 'Xã Phú Nam', '01003', 'Xã');
INSERT INTO category."Wards" VALUES (1006, 31, 'system', '2023-07-26 08:40:17.662013+07', 'system', '2023-07-26 08:40:17.662013+07', 'Xã Yên Cường', '01006', 'Xã');
INSERT INTO category."Wards" VALUES (1009, 31, 'system', '2023-07-26 08:40:17.662018+07', 'system', '2023-07-26 08:40:17.662019+07', 'Xã Thượng Tân', '01009', 'Xã');
INSERT INTO category."Wards" VALUES (1012, 31, 'system', '2023-07-26 08:40:17.662021+07', 'system', '2023-07-26 08:40:17.662021+07', 'Xã Đường Âm', '01012', 'Xã');
INSERT INTO category."Wards" VALUES (1015, 31, 'system', '2023-07-26 08:40:17.662024+07', 'system', '2023-07-26 08:40:17.662024+07', 'Xã Đường Hồng', '01015', 'Xã');
INSERT INTO category."Wards" VALUES (1018, 31, 'system', '2023-07-26 08:40:17.662027+07', 'system', '2023-07-26 08:40:17.662027+07', 'Xã Phiêng Luông', '01018', 'Xã');
INSERT INTO category."Wards" VALUES (1021, 32, 'system', '2023-07-26 08:40:17.662029+07', 'system', '2023-07-26 08:40:17.662029+07', 'Thị trấn Vinh Quang', '01021', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1024, 32, 'system', '2023-07-26 08:40:17.662032+07', 'system', '2023-07-26 08:40:17.662032+07', 'Xã Bản Máy', '01024', 'Xã');
INSERT INTO category."Wards" VALUES (1027, 32, 'system', '2023-07-26 08:40:17.662035+07', 'system', '2023-07-26 08:40:17.662035+07', 'Xã Thàng Tín', '01027', 'Xã');
INSERT INTO category."Wards" VALUES (1030, 32, 'system', '2023-07-26 08:40:17.662038+07', 'system', '2023-07-26 08:40:17.662038+07', 'Xã Thèn Chu Phìn', '01030', 'Xã');
INSERT INTO category."Wards" VALUES (1033, 32, 'system', '2023-07-26 08:40:17.66204+07', 'system', '2023-07-26 08:40:17.66204+07', 'Xã Pố Lồ', '01033', 'Xã');
INSERT INTO category."Wards" VALUES (1036, 32, 'system', '2023-07-26 08:40:17.662043+07', 'system', '2023-07-26 08:40:17.662043+07', 'Xã Bản Phùng', '01036', 'Xã');
INSERT INTO category."Wards" VALUES (1039, 32, 'system', '2023-07-26 08:40:17.662045+07', 'system', '2023-07-26 08:40:17.662045+07', 'Xã Túng Sán', '01039', 'Xã');
INSERT INTO category."Wards" VALUES (1042, 32, 'system', '2023-07-26 08:40:17.662048+07', 'system', '2023-07-26 08:40:17.662048+07', 'Xã Chiến Phố', '01042', 'Xã');
INSERT INTO category."Wards" VALUES (1045, 32, 'system', '2023-07-26 08:40:17.662051+07', 'system', '2023-07-26 08:40:17.662051+07', 'Xã Đản Ván', '01045', 'Xã');
INSERT INTO category."Wards" VALUES (1048, 32, 'system', '2023-07-26 08:40:17.662053+07', 'system', '2023-07-26 08:40:17.662053+07', 'Xã Tụ Nhân', '01048', 'Xã');
INSERT INTO category."Wards" VALUES (1051, 32, 'system', '2023-07-26 08:40:17.662056+07', 'system', '2023-07-26 08:40:17.662056+07', 'Xã Tân Tiến', '01051', 'Xã');
INSERT INTO category."Wards" VALUES (1054, 32, 'system', '2023-07-26 08:40:17.662058+07', 'system', '2023-07-26 08:40:17.662058+07', 'Xã Nàng Đôn', '01054', 'Xã');
INSERT INTO category."Wards" VALUES (1057, 32, 'system', '2023-07-26 08:40:17.662061+07', 'system', '2023-07-26 08:40:17.662061+07', 'Xã Pờ Ly Ngài', '01057', 'Xã');
INSERT INTO category."Wards" VALUES (1060, 32, 'system', '2023-07-26 08:40:17.662077+07', 'system', '2023-07-26 08:40:17.662077+07', 'Xã Sán Xả Hồ', '01060', 'Xã');
INSERT INTO category."Wards" VALUES (1063, 32, 'system', '2023-07-26 08:40:17.66208+07', 'system', '2023-07-26 08:40:17.66208+07', 'Xã Bản Luốc', '01063', 'Xã');
INSERT INTO category."Wards" VALUES (1066, 32, 'system', '2023-07-26 08:40:17.662083+07', 'system', '2023-07-26 08:40:17.662083+07', 'Xã Ngàm Đăng Vài', '01066', 'Xã');
INSERT INTO category."Wards" VALUES (1069, 32, 'system', '2023-07-26 08:40:17.662086+07', 'system', '2023-07-26 08:40:17.662086+07', 'Xã Bản Nhùng', '01069', 'Xã');
INSERT INTO category."Wards" VALUES (1072, 32, 'system', '2023-07-26 08:40:17.662088+07', 'system', '2023-07-26 08:40:17.662088+07', 'Xã Tả Sử Choóng', '01072', 'Xã');
INSERT INTO category."Wards" VALUES (1075, 32, 'system', '2023-07-26 08:40:17.662093+07', 'system', '2023-07-26 08:40:17.662093+07', 'Xã Nậm Dịch', '01075', 'Xã');
INSERT INTO category."Wards" VALUES (1081, 32, 'system', '2023-07-26 08:40:17.662097+07', 'system', '2023-07-26 08:40:17.662097+07', 'Xã Hồ Thầu', '01081', 'Xã');
INSERT INTO category."Wards" VALUES (1084, 32, 'system', '2023-07-26 08:40:17.662102+07', 'system', '2023-07-26 08:40:17.662102+07', 'Xã Nam Sơn', '01084', 'Xã');
INSERT INTO category."Wards" VALUES (1087, 32, 'system', '2023-07-26 08:40:17.662106+07', 'system', '2023-07-26 08:40:17.662106+07', 'Xã Nậm Tỵ', '01087', 'Xã');
INSERT INTO category."Wards" VALUES (1090, 32, 'system', '2023-07-26 08:40:17.66211+07', 'system', '2023-07-26 08:40:17.66211+07', 'Xã Thông Nguyên', '01090', 'Xã');
INSERT INTO category."Wards" VALUES (1093, 32, 'system', '2023-07-26 08:40:17.662114+07', 'system', '2023-07-26 08:40:17.662114+07', 'Xã Nậm Khòa', '01093', 'Xã');
INSERT INTO category."Wards" VALUES (1096, 33, 'system', '2023-07-26 08:40:17.662118+07', 'system', '2023-07-26 08:40:17.662118+07', 'Thị trấn Cốc Pài', '01096', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1099, 33, 'system', '2023-07-26 08:40:17.662122+07', 'system', '2023-07-26 08:40:17.662122+07', 'Xã Nàn Xỉn', '01099', 'Xã');
INSERT INTO category."Wards" VALUES (1102, 33, 'system', '2023-07-26 08:40:17.662126+07', 'system', '2023-07-26 08:40:17.662126+07', 'Xã Bản Díu', '01102', 'Xã');
INSERT INTO category."Wards" VALUES (1105, 33, 'system', '2023-07-26 08:40:17.66213+07', 'system', '2023-07-26 08:40:17.66213+07', 'Xã Chí Cà', '01105', 'Xã');
INSERT INTO category."Wards" VALUES (1108, 33, 'system', '2023-07-26 08:40:17.662134+07', 'system', '2023-07-26 08:40:17.662134+07', 'Xã Xín Mần', '01108', 'Xã');
INSERT INTO category."Wards" VALUES (1114, 33, 'system', '2023-07-26 08:40:17.662138+07', 'system', '2023-07-26 08:40:17.662138+07', 'Xã Thèn Phàng', '01114', 'Xã');
INSERT INTO category."Wards" VALUES (1117, 33, 'system', '2023-07-26 08:40:17.662143+07', 'system', '2023-07-26 08:40:17.662143+07', 'Xã Trung Thịnh', '01117', 'Xã');
INSERT INTO category."Wards" VALUES (1120, 33, 'system', '2023-07-26 08:40:17.662147+07', 'system', '2023-07-26 08:40:17.662147+07', 'Xã Pà Vầy Sủ', '01120', 'Xã');
INSERT INTO category."Wards" VALUES (1123, 33, 'system', '2023-07-26 08:40:17.662153+07', 'system', '2023-07-26 08:40:17.662153+07', 'Xã Cốc Rế', '01123', 'Xã');
INSERT INTO category."Wards" VALUES (1126, 33, 'system', '2023-07-26 08:40:17.662158+07', 'system', '2023-07-26 08:40:17.662158+07', 'Xã Thu Tà', '01126', 'Xã');
INSERT INTO category."Wards" VALUES (1129, 33, 'system', '2023-07-26 08:40:17.662163+07', 'system', '2023-07-26 08:40:17.662163+07', 'Xã Nàn Ma', '01129', 'Xã');
INSERT INTO category."Wards" VALUES (1132, 33, 'system', '2023-07-26 08:40:17.662168+07', 'system', '2023-07-26 08:40:17.662168+07', 'Xã Tả Nhìu', '01132', 'Xã');
INSERT INTO category."Wards" VALUES (1135, 33, 'system', '2023-07-26 08:40:17.662172+07', 'system', '2023-07-26 08:40:17.662172+07', 'Xã Bản Ngò', '01135', 'Xã');
INSERT INTO category."Wards" VALUES (1138, 33, 'system', '2023-07-26 08:40:17.662177+07', 'system', '2023-07-26 08:40:17.662177+07', 'Xã Chế Là', '01138', 'Xã');
INSERT INTO category."Wards" VALUES (1141, 33, 'system', '2023-07-26 08:40:17.662182+07', 'system', '2023-07-26 08:40:17.662182+07', 'Xã Nấm Dẩn', '01141', 'Xã');
INSERT INTO category."Wards" VALUES (1144, 33, 'system', '2023-07-26 08:40:17.662187+07', 'system', '2023-07-26 08:40:17.662187+07', 'Xã Quảng Nguyên', '01144', 'Xã');
INSERT INTO category."Wards" VALUES (1147, 33, 'system', '2023-07-26 08:40:17.662192+07', 'system', '2023-07-26 08:40:17.662192+07', 'Xã Nà Chì', '01147', 'Xã');
INSERT INTO category."Wards" VALUES (1150, 33, 'system', '2023-07-26 08:40:17.662197+07', 'system', '2023-07-26 08:40:17.662197+07', 'Xã Khuôn Lùng', '01150', 'Xã');
INSERT INTO category."Wards" VALUES (1153, 34, 'system', '2023-07-26 08:40:17.662202+07', 'system', '2023-07-26 08:40:17.662202+07', 'Thị trấn Việt Quang', '01153', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1156, 34, 'system', '2023-07-26 08:40:17.662207+07', 'system', '2023-07-26 08:40:17.662207+07', 'Thị trấn Vĩnh Tuy', '01156', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1159, 34, 'system', '2023-07-26 08:40:17.662212+07', 'system', '2023-07-26 08:40:17.662212+07', 'Xã Tân Lập', '01159', 'Xã');
INSERT INTO category."Wards" VALUES (1162, 34, 'system', '2023-07-26 08:40:17.662216+07', 'system', '2023-07-26 08:40:17.662217+07', 'Xã Tân Thành', '01162', 'Xã');
INSERT INTO category."Wards" VALUES (1165, 34, 'system', '2023-07-26 08:40:17.662221+07', 'system', '2023-07-26 08:40:17.662221+07', 'Xã Đồng Tiến', '01165', 'Xã');
INSERT INTO category."Wards" VALUES (1168, 34, 'system', '2023-07-26 08:40:17.662224+07', 'system', '2023-07-26 08:40:17.662224+07', 'Xã Đồng Tâm', '01168', 'Xã');
INSERT INTO category."Wards" VALUES (1171, 34, 'system', '2023-07-26 08:40:17.662227+07', 'system', '2023-07-26 08:40:17.662227+07', 'Xã Tân Quang', '01171', 'Xã');
INSERT INTO category."Wards" VALUES (1174, 34, 'system', '2023-07-26 08:40:17.662229+07', 'system', '2023-07-26 08:40:17.662229+07', 'Xã Thượng Bình', '01174', 'Xã');
INSERT INTO category."Wards" VALUES (1177, 34, 'system', '2023-07-26 08:40:17.662232+07', 'system', '2023-07-26 08:40:17.662232+07', 'Xã Hữu Sản', '01177', 'Xã');
INSERT INTO category."Wards" VALUES (1180, 34, 'system', '2023-07-26 08:40:17.662234+07', 'system', '2023-07-26 08:40:17.662234+07', 'Xã Kim Ngọc', '01180', 'Xã');
INSERT INTO category."Wards" VALUES (1183, 34, 'system', '2023-07-26 08:40:17.662237+07', 'system', '2023-07-26 08:40:17.662237+07', 'Xã Việt Vinh', '01183', 'Xã');
INSERT INTO category."Wards" VALUES (1186, 34, 'system', '2023-07-26 08:40:17.662239+07', 'system', '2023-07-26 08:40:17.662239+07', 'Xã Bằng Hành', '01186', 'Xã');
INSERT INTO category."Wards" VALUES (1189, 34, 'system', '2023-07-26 08:40:17.662242+07', 'system', '2023-07-26 08:40:17.662242+07', 'Xã Quang Minh', '01189', 'Xã');
INSERT INTO category."Wards" VALUES (1192, 34, 'system', '2023-07-26 08:40:17.662244+07', 'system', '2023-07-26 08:40:17.662244+07', 'Xã Liên Hiệp', '01192', 'Xã');
INSERT INTO category."Wards" VALUES (1195, 34, 'system', '2023-07-26 08:40:17.662247+07', 'system', '2023-07-26 08:40:17.662247+07', 'Xã Vô Điếm', '01195', 'Xã');
INSERT INTO category."Wards" VALUES (1198, 34, 'system', '2023-07-26 08:40:17.66225+07', 'system', '2023-07-26 08:40:17.66225+07', 'Xã Việt Hồng', '01198', 'Xã');
INSERT INTO category."Wards" VALUES (1201, 34, 'system', '2023-07-26 08:40:17.662252+07', 'system', '2023-07-26 08:40:17.662252+07', 'Xã Hùng An', '01201', 'Xã');
INSERT INTO category."Wards" VALUES (1204, 34, 'system', '2023-07-26 08:40:17.662255+07', 'system', '2023-07-26 08:40:17.662255+07', 'Xã Đức Xuân', '01204', 'Xã');
INSERT INTO category."Wards" VALUES (1207, 34, 'system', '2023-07-26 08:40:17.662257+07', 'system', '2023-07-26 08:40:17.662257+07', 'Xã Tiên Kiều', '01207', 'Xã');
INSERT INTO category."Wards" VALUES (1210, 34, 'system', '2023-07-26 08:40:17.66226+07', 'system', '2023-07-26 08:40:17.66226+07', 'Xã Vĩnh Hảo', '01210', 'Xã');
INSERT INTO category."Wards" VALUES (1213, 34, 'system', '2023-07-26 08:40:17.662263+07', 'system', '2023-07-26 08:40:17.662263+07', 'Xã Vĩnh Phúc', '01213', 'Xã');
INSERT INTO category."Wards" VALUES (1216, 34, 'system', '2023-07-26 08:40:17.662265+07', 'system', '2023-07-26 08:40:17.662265+07', 'Xã Đồng Yên', '01216', 'Xã');
INSERT INTO category."Wards" VALUES (1219, 34, 'system', '2023-07-26 08:40:17.662268+07', 'system', '2023-07-26 08:40:17.662268+07', 'Xã Đông Thành', '01219', 'Xã');
INSERT INTO category."Wards" VALUES (1222, 35, 'system', '2023-07-26 08:40:17.662271+07', 'system', '2023-07-26 08:40:17.662271+07', 'Xã Xuân Minh', '01222', 'Xã');
INSERT INTO category."Wards" VALUES (1225, 35, 'system', '2023-07-26 08:40:17.662274+07', 'system', '2023-07-26 08:40:17.662274+07', 'Xã Tiên Nguyên', '01225', 'Xã');
INSERT INTO category."Wards" VALUES (1228, 35, 'system', '2023-07-26 08:40:17.662279+07', 'system', '2023-07-26 08:40:17.662279+07', 'Xã Tân Nam', '01228', 'Xã');
INSERT INTO category."Wards" VALUES (1231, 35, 'system', '2023-07-26 08:40:17.662285+07', 'system', '2023-07-26 08:40:17.662285+07', 'Xã Bản Rịa', '01231', 'Xã');
INSERT INTO category."Wards" VALUES (1234, 35, 'system', '2023-07-26 08:40:17.66229+07', 'system', '2023-07-26 08:40:17.66229+07', 'Xã Yên Thành', '01234', 'Xã');
INSERT INTO category."Wards" VALUES (1237, 35, 'system', '2023-07-26 08:40:17.662295+07', 'system', '2023-07-26 08:40:17.662295+07', 'Thị trấn Yên Bình', '01237', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1240, 35, 'system', '2023-07-26 08:40:17.662301+07', 'system', '2023-07-26 08:40:17.662301+07', 'Xã Tân Trịnh', '01240', 'Xã');
INSERT INTO category."Wards" VALUES (1243, 35, 'system', '2023-07-26 08:40:17.662303+07', 'system', '2023-07-26 08:40:17.662303+07', 'Xã Tân Bắc', '01243', 'Xã');
INSERT INTO category."Wards" VALUES (1246, 35, 'system', '2023-07-26 08:40:17.662306+07', 'system', '2023-07-26 08:40:17.662306+07', 'Xã Bằng Lang', '01246', 'Xã');
INSERT INTO category."Wards" VALUES (1249, 35, 'system', '2023-07-26 08:40:17.662308+07', 'system', '2023-07-26 08:40:17.662308+07', 'Xã Yên Hà', '01249', 'Xã');
INSERT INTO category."Wards" VALUES (1252, 35, 'system', '2023-07-26 08:40:17.662311+07', 'system', '2023-07-26 08:40:17.662311+07', 'Xã Hương Sơn', '01252', 'Xã');
INSERT INTO category."Wards" VALUES (1255, 35, 'system', '2023-07-26 08:40:17.662313+07', 'system', '2023-07-26 08:40:17.662314+07', 'Xã Xuân Giang', '01255', 'Xã');
INSERT INTO category."Wards" VALUES (1258, 35, 'system', '2023-07-26 08:40:17.662316+07', 'system', '2023-07-26 08:40:17.662316+07', 'Xã Nà Khương', '01258', 'Xã');
INSERT INTO category."Wards" VALUES (1261, 35, 'system', '2023-07-26 08:40:17.662319+07', 'system', '2023-07-26 08:40:17.662319+07', 'Xã Tiên Yên', '01261', 'Xã');
INSERT INTO category."Wards" VALUES (1264, 35, 'system', '2023-07-26 08:40:17.662321+07', 'system', '2023-07-26 08:40:17.662321+07', 'Xã Vĩ Thượng', '01264', 'Xã');
INSERT INTO category."Wards" VALUES (1267, 40, 'system', '2023-07-26 08:40:17.662324+07', 'system', '2023-07-26 08:40:17.662324+07', 'Phường Sông Hiến', '01267', 'Phường');
INSERT INTO category."Wards" VALUES (1270, 40, 'system', '2023-07-26 08:40:17.662327+07', 'system', '2023-07-26 08:40:17.662327+07', 'Phường Sông Bằng', '01270', 'Phường');
INSERT INTO category."Wards" VALUES (1273, 40, 'system', '2023-07-26 08:40:17.66233+07', 'system', '2023-07-26 08:40:17.66233+07', 'Phường Hợp Giang', '01273', 'Phường');
INSERT INTO category."Wards" VALUES (1276, 40, 'system', '2023-07-26 08:40:17.662333+07', 'system', '2023-07-26 08:40:17.662333+07', 'Phường Tân Giang', '01276', 'Phường');
INSERT INTO category."Wards" VALUES (1279, 40, 'system', '2023-07-26 08:40:17.662335+07', 'system', '2023-07-26 08:40:17.662335+07', 'Phường Ngọc Xuân', '01279', 'Phường');
INSERT INTO category."Wards" VALUES (1282, 40, 'system', '2023-07-26 08:40:17.662338+07', 'system', '2023-07-26 08:40:17.662338+07', 'Phường Đề Thám', '01282', 'Phường');
INSERT INTO category."Wards" VALUES (1285, 40, 'system', '2023-07-26 08:40:17.662341+07', 'system', '2023-07-26 08:40:17.662341+07', 'Phường Hoà Chung', '01285', 'Phường');
INSERT INTO category."Wards" VALUES (1288, 40, 'system', '2023-07-26 08:40:17.662344+07', 'system', '2023-07-26 08:40:17.662344+07', 'Phường Duyệt Trung', '01288', 'Phường');
INSERT INTO category."Wards" VALUES (1290, 42, 'system', '2023-07-26 08:40:17.662355+07', 'system', '2023-07-26 08:40:17.662355+07', 'Thị trấn Pác Miầu', '01290', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1291, 42, 'system', '2023-07-26 08:40:17.662358+07', 'system', '2023-07-26 08:40:17.662358+07', 'Xã Đức Hạnh', '01291', 'Xã');
INSERT INTO category."Wards" VALUES (1294, 42, 'system', '2023-07-26 08:40:17.662361+07', 'system', '2023-07-26 08:40:17.662361+07', 'Xã Lý Bôn', '01294', 'Xã');
INSERT INTO category."Wards" VALUES (1296, 42, 'system', '2023-07-26 08:40:17.662363+07', 'system', '2023-07-26 08:40:17.662363+07', 'Xã Nam Cao', '01296', 'Xã');
INSERT INTO category."Wards" VALUES (1297, 42, 'system', '2023-07-26 08:40:17.662366+07', 'system', '2023-07-26 08:40:17.662366+07', 'Xã Nam Quang', '01297', 'Xã');
INSERT INTO category."Wards" VALUES (1300, 42, 'system', '2023-07-26 08:40:17.662368+07', 'system', '2023-07-26 08:40:17.662368+07', 'Xã Vĩnh Quang', '01300', 'Xã');
INSERT INTO category."Wards" VALUES (1303, 42, 'system', '2023-07-26 08:40:17.662371+07', 'system', '2023-07-26 08:40:17.662371+07', 'Xã Quảng Lâm', '01303', 'Xã');
INSERT INTO category."Wards" VALUES (1304, 42, 'system', '2023-07-26 08:40:17.662373+07', 'system', '2023-07-26 08:40:17.662373+07', 'Xã Thạch Lâm', '01304', 'Xã');
INSERT INTO category."Wards" VALUES (1309, 42, 'system', '2023-07-26 08:40:17.662376+07', 'system', '2023-07-26 08:40:17.662376+07', 'Xã Vĩnh Phong', '01309', 'Xã');
INSERT INTO category."Wards" VALUES (1312, 42, 'system', '2023-07-26 08:40:17.662378+07', 'system', '2023-07-26 08:40:17.662378+07', 'Xã Mông Ân', '01312', 'Xã');
INSERT INTO category."Wards" VALUES (1315, 42, 'system', '2023-07-26 08:40:17.662381+07', 'system', '2023-07-26 08:40:17.662381+07', 'Xã Thái Học', '01315', 'Xã');
INSERT INTO category."Wards" VALUES (1316, 42, 'system', '2023-07-26 08:40:17.662384+07', 'system', '2023-07-26 08:40:17.662384+07', 'Xã Thái Sơn', '01316', 'Xã');
INSERT INTO category."Wards" VALUES (1318, 42, 'system', '2023-07-26 08:40:17.662386+07', 'system', '2023-07-26 08:40:17.662386+07', 'Xã Yên Thổ', '01318', 'Xã');
INSERT INTO category."Wards" VALUES (1321, 43, 'system', '2023-07-26 08:40:17.66239+07', 'system', '2023-07-26 08:40:17.66239+07', 'Thị trấn Bảo Lạc', '01321', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1324, 43, 'system', '2023-07-26 08:40:17.662393+07', 'system', '2023-07-26 08:40:17.662393+07', 'Xã Cốc Pàng', '01324', 'Xã');
INSERT INTO category."Wards" VALUES (1327, 43, 'system', '2023-07-26 08:40:17.662396+07', 'system', '2023-07-26 08:40:17.662396+07', 'Xã Thượng Hà', '01327', 'Xã');
INSERT INTO category."Wards" VALUES (1330, 43, 'system', '2023-07-26 08:40:17.662398+07', 'system', '2023-07-26 08:40:17.662398+07', 'Xã Cô Ba', '01330', 'Xã');
INSERT INTO category."Wards" VALUES (1333, 43, 'system', '2023-07-26 08:40:17.662401+07', 'system', '2023-07-26 08:40:17.662401+07', 'Xã Bảo Toàn', '01333', 'Xã');
INSERT INTO category."Wards" VALUES (1336, 43, 'system', '2023-07-26 08:40:17.662403+07', 'system', '2023-07-26 08:40:17.662403+07', 'Xã Khánh Xuân', '01336', 'Xã');
INSERT INTO category."Wards" VALUES (1339, 43, 'system', '2023-07-26 08:40:17.662406+07', 'system', '2023-07-26 08:40:17.662406+07', 'Xã Xuân Trường', '01339', 'Xã');
INSERT INTO category."Wards" VALUES (1342, 43, 'system', '2023-07-26 08:40:17.662408+07', 'system', '2023-07-26 08:40:17.662408+07', 'Xã Hồng Trị', '01342', 'Xã');
INSERT INTO category."Wards" VALUES (1343, 43, 'system', '2023-07-26 08:40:17.662411+07', 'system', '2023-07-26 08:40:17.662411+07', 'Xã Kim Cúc', '01343', 'Xã');
INSERT INTO category."Wards" VALUES (1345, 43, 'system', '2023-07-26 08:40:17.662413+07', 'system', '2023-07-26 08:40:17.662413+07', 'Xã Phan Thanh', '01345', 'Xã');
INSERT INTO category."Wards" VALUES (1348, 43, 'system', '2023-07-26 08:40:17.662416+07', 'system', '2023-07-26 08:40:17.662416+07', 'Xã Hồng An', '01348', 'Xã');
INSERT INTO category."Wards" VALUES (1351, 43, 'system', '2023-07-26 08:40:17.662419+07', 'system', '2023-07-26 08:40:17.662419+07', 'Xã Hưng Đạo', '01351', 'Xã');
INSERT INTO category."Wards" VALUES (1352, 43, 'system', '2023-07-26 08:40:17.662421+07', 'system', '2023-07-26 08:40:17.662421+07', 'Xã Hưng Thịnh', '01352', 'Xã');
INSERT INTO category."Wards" VALUES (1354, 43, 'system', '2023-07-26 08:40:17.662424+07', 'system', '2023-07-26 08:40:17.662424+07', 'Xã Huy Giáp', '01354', 'Xã');
INSERT INTO category."Wards" VALUES (1357, 43, 'system', '2023-07-26 08:40:17.662426+07', 'system', '2023-07-26 08:40:17.662426+07', 'Xã Đình Phùng', '01357', 'Xã');
INSERT INTO category."Wards" VALUES (1359, 43, 'system', '2023-07-26 08:40:17.662429+07', 'system', '2023-07-26 08:40:17.662429+07', 'Xã Sơn Lập', '01359', 'Xã');
INSERT INTO category."Wards" VALUES (1360, 43, 'system', '2023-07-26 08:40:17.662432+07', 'system', '2023-07-26 08:40:17.662432+07', 'Xã Sơn Lộ', '01360', 'Xã');
INSERT INTO category."Wards" VALUES (1363, 45, 'system', '2023-07-26 08:40:17.662434+07', 'system', '2023-07-26 08:40:17.662434+07', 'Thị trấn Thông Nông', '01363', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1366, 45, 'system', '2023-07-26 08:40:17.662437+07', 'system', '2023-07-26 08:40:17.662437+07', 'Xã Cần Yên', '01366', 'Xã');
INSERT INTO category."Wards" VALUES (1367, 45, 'system', '2023-07-26 08:40:17.66244+07', 'system', '2023-07-26 08:40:17.66244+07', 'Xã Cần Nông', '01367', 'Xã');
INSERT INTO category."Wards" VALUES (1372, 45, 'system', '2023-07-26 08:40:17.662442+07', 'system', '2023-07-26 08:40:17.662442+07', 'Xã Lương Thông', '01372', 'Xã');
INSERT INTO category."Wards" VALUES (1375, 45, 'system', '2023-07-26 08:40:17.662445+07', 'system', '2023-07-26 08:40:17.662445+07', 'Xã Đa Thông', '01375', 'Xã');
INSERT INTO category."Wards" VALUES (1378, 45, 'system', '2023-07-26 08:40:17.662447+07', 'system', '2023-07-26 08:40:17.662448+07', 'Xã Ngọc Động', '01378', 'Xã');
INSERT INTO category."Wards" VALUES (1381, 45, 'system', '2023-07-26 08:40:17.66245+07', 'system', '2023-07-26 08:40:17.66245+07', 'Xã Yên Sơn', '01381', 'Xã');
INSERT INTO category."Wards" VALUES (1384, 45, 'system', '2023-07-26 08:40:17.662453+07', 'system', '2023-07-26 08:40:17.662453+07', 'Xã Lương Can', '01384', 'Xã');
INSERT INTO category."Wards" VALUES (1387, 45, 'system', '2023-07-26 08:40:17.662455+07', 'system', '2023-07-26 08:40:17.662455+07', 'Xã Thanh Long', '01387', 'Xã');
INSERT INTO category."Wards" VALUES (1392, 45, 'system', '2023-07-26 08:40:17.662458+07', 'system', '2023-07-26 08:40:17.662458+07', 'Thị trấn Xuân Hòa', '01392', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1393, 45, 'system', '2023-07-26 08:40:17.66246+07', 'system', '2023-07-26 08:40:17.66246+07', 'Xã Lũng Nặm', '01393', 'Xã');
INSERT INTO category."Wards" VALUES (1399, 45, 'system', '2023-07-26 08:40:17.662463+07', 'system', '2023-07-26 08:40:17.662463+07', 'Xã Trường Hà', '01399', 'Xã');
INSERT INTO category."Wards" VALUES (1402, 45, 'system', '2023-07-26 08:40:17.662465+07', 'system', '2023-07-26 08:40:17.662466+07', 'Xã Cải Viên', '01402', 'Xã');
INSERT INTO category."Wards" VALUES (1411, 45, 'system', '2023-07-26 08:40:17.662468+07', 'system', '2023-07-26 08:40:17.662468+07', 'Xã Nội Thôn', '01411', 'Xã');
INSERT INTO category."Wards" VALUES (1414, 45, 'system', '2023-07-26 08:40:17.662471+07', 'system', '2023-07-26 08:40:17.662471+07', 'Xã Tổng Cọt', '01414', 'Xã');
INSERT INTO category."Wards" VALUES (1417, 45, 'system', '2023-07-26 08:40:17.662473+07', 'system', '2023-07-26 08:40:17.662473+07', 'Xã Sóc Hà', '01417', 'Xã');
INSERT INTO category."Wards" VALUES (1420, 45, 'system', '2023-07-26 08:40:17.662476+07', 'system', '2023-07-26 08:40:17.662476+07', 'Xã Thượng Thôn', '01420', 'Xã');
INSERT INTO category."Wards" VALUES (1429, 45, 'system', '2023-07-26 08:40:17.662479+07', 'system', '2023-07-26 08:40:17.662479+07', 'Xã Hồng Sỹ', '01429', 'Xã');
INSERT INTO category."Wards" VALUES (1432, 45, 'system', '2023-07-26 08:40:17.662481+07', 'system', '2023-07-26 08:40:17.662481+07', 'Xã Quý Quân', '01432', 'Xã');
INSERT INTO category."Wards" VALUES (1435, 45, 'system', '2023-07-26 08:40:17.662485+07', 'system', '2023-07-26 08:40:17.662485+07', 'Xã Mã Ba', '01435', 'Xã');
INSERT INTO category."Wards" VALUES (1438, 45, 'system', '2023-07-26 08:40:17.662487+07', 'system', '2023-07-26 08:40:17.662487+07', 'Xã Ngọc Đào', '01438', 'Xã');
INSERT INTO category."Wards" VALUES (1447, 47, 'system', '2023-07-26 08:40:17.66249+07', 'system', '2023-07-26 08:40:17.66249+07', 'Thị trấn Trà Lĩnh', '01447', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1453, 47, 'system', '2023-07-26 08:40:17.662494+07', 'system', '2023-07-26 08:40:17.662495+07', 'Xã Tri Phương', '01453', 'Xã');
INSERT INTO category."Wards" VALUES (1456, 47, 'system', '2023-07-26 08:40:17.662499+07', 'system', '2023-07-26 08:40:17.6625+07', 'Xã Quang Hán', '01456', 'Xã');
INSERT INTO category."Wards" VALUES (1462, 47, 'system', '2023-07-26 08:40:17.662504+07', 'system', '2023-07-26 08:40:17.662504+07', 'Xã Xuân Nội', '01462', 'Xã');
INSERT INTO category."Wards" VALUES (1465, 47, 'system', '2023-07-26 08:40:17.662509+07', 'system', '2023-07-26 08:40:17.662509+07', 'Xã Quang Trung', '01465', 'Xã');
INSERT INTO category."Wards" VALUES (1468, 47, 'system', '2023-07-26 08:40:17.662513+07', 'system', '2023-07-26 08:40:17.662514+07', 'Xã Quang Vinh', '01468', 'Xã');
INSERT INTO category."Wards" VALUES (1471, 47, 'system', '2023-07-26 08:40:17.662518+07', 'system', '2023-07-26 08:40:17.662518+07', 'Xã Cao Chương', '01471', 'Xã');
INSERT INTO category."Wards" VALUES (1474, 49, 'system', '2023-07-26 08:40:17.662594+07', 'system', '2023-07-26 08:40:17.662594+07', 'Xã Quốc Toản', '01474', 'Xã');
INSERT INTO category."Wards" VALUES (1477, 47, 'system', '2023-07-26 08:40:17.662523+07', 'system', '2023-07-26 08:40:17.662523+07', 'Thị trấn Trùng Khánh', '01477', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1480, 47, 'system', '2023-07-26 08:40:17.662526+07', 'system', '2023-07-26 08:40:17.662526+07', 'Xã Ngọc Khê', '01480', 'Xã');
INSERT INTO category."Wards" VALUES (1481, 47, 'system', '2023-07-26 08:40:17.662529+07', 'system', '2023-07-26 08:40:17.662529+07', 'Xã Ngọc Côn', '01481', 'Xã');
INSERT INTO category."Wards" VALUES (1483, 47, 'system', '2023-07-26 08:40:17.662532+07', 'system', '2023-07-26 08:40:17.662532+07', 'Xã Phong Nậm', '01483', 'Xã');
INSERT INTO category."Wards" VALUES (1489, 47, 'system', '2023-07-26 08:40:17.662534+07', 'system', '2023-07-26 08:40:17.662534+07', 'Xã Đình Phong', '01489', 'Xã');
INSERT INTO category."Wards" VALUES (1495, 47, 'system', '2023-07-26 08:40:17.662537+07', 'system', '2023-07-26 08:40:17.662537+07', 'Xã Đàm Thuỷ', '01495', 'Xã');
INSERT INTO category."Wards" VALUES (1498, 47, 'system', '2023-07-26 08:40:17.66254+07', 'system', '2023-07-26 08:40:17.66254+07', 'Xã Khâm Thành', '01498', 'Xã');
INSERT INTO category."Wards" VALUES (1501, 47, 'system', '2023-07-26 08:40:17.662542+07', 'system', '2023-07-26 08:40:17.662542+07', 'Xã Chí Viễn', '01501', 'Xã');
INSERT INTO category."Wards" VALUES (1504, 47, 'system', '2023-07-26 08:40:17.662545+07', 'system', '2023-07-26 08:40:17.662545+07', 'Xã Lăng Hiếu', '01504', 'Xã');
INSERT INTO category."Wards" VALUES (1507, 47, 'system', '2023-07-26 08:40:17.662547+07', 'system', '2023-07-26 08:40:17.662547+07', 'Xã Phong Châu', '01507', 'Xã');
INSERT INTO category."Wards" VALUES (1516, 47, 'system', '2023-07-26 08:40:17.66255+07', 'system', '2023-07-26 08:40:17.66255+07', 'Xã Trung Phúc', '01516', 'Xã');
INSERT INTO category."Wards" VALUES (1519, 47, 'system', '2023-07-26 08:40:17.662552+07', 'system', '2023-07-26 08:40:17.662553+07', 'Xã Cao Thăng', '01519', 'Xã');
INSERT INTO category."Wards" VALUES (1522, 47, 'system', '2023-07-26 08:40:17.662555+07', 'system', '2023-07-26 08:40:17.662555+07', 'Xã Đức Hồng', '01522', 'Xã');
INSERT INTO category."Wards" VALUES (1525, 47, 'system', '2023-07-26 08:40:17.662558+07', 'system', '2023-07-26 08:40:17.662558+07', 'Xã Đoài Dương', '01525', 'Xã');
INSERT INTO category."Wards" VALUES (1534, 48, 'system', '2023-07-26 08:40:17.66256+07', 'system', '2023-07-26 08:40:17.66256+07', 'Xã Minh Long', '01534', 'Xã');
INSERT INTO category."Wards" VALUES (1537, 48, 'system', '2023-07-26 08:40:17.662563+07', 'system', '2023-07-26 08:40:17.662563+07', 'Xã Lý Quốc', '01537', 'Xã');
INSERT INTO category."Wards" VALUES (1540, 48, 'system', '2023-07-26 08:40:17.662566+07', 'system', '2023-07-26 08:40:17.662566+07', 'Xã Thắng Lợi', '01540', 'Xã');
INSERT INTO category."Wards" VALUES (1543, 48, 'system', '2023-07-26 08:40:17.662568+07', 'system', '2023-07-26 08:40:17.662568+07', 'Xã Đồng Loan', '01543', 'Xã');
INSERT INTO category."Wards" VALUES (1546, 48, 'system', '2023-07-26 08:40:17.662571+07', 'system', '2023-07-26 08:40:17.662571+07', 'Xã Đức Quang', '01546', 'Xã');
INSERT INTO category."Wards" VALUES (1549, 48, 'system', '2023-07-26 08:40:17.662573+07', 'system', '2023-07-26 08:40:17.662573+07', 'Xã Kim Loan', '01549', 'Xã');
INSERT INTO category."Wards" VALUES (1552, 48, 'system', '2023-07-26 08:40:17.662576+07', 'system', '2023-07-26 08:40:17.662576+07', 'Xã Quang Long', '01552', 'Xã');
INSERT INTO category."Wards" VALUES (1555, 48, 'system', '2023-07-26 08:40:17.662578+07', 'system', '2023-07-26 08:40:17.662578+07', 'Xã An Lạc', '01555', 'Xã');
INSERT INTO category."Wards" VALUES (1558, 48, 'system', '2023-07-26 08:40:17.662581+07', 'system', '2023-07-26 08:40:17.662581+07', 'Thị trấn Thanh Nhật', '01558', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1561, 48, 'system', '2023-07-26 08:40:17.662584+07', 'system', '2023-07-26 08:40:17.662584+07', 'Xã Vinh Quý', '01561', 'Xã');
INSERT INTO category."Wards" VALUES (1564, 48, 'system', '2023-07-26 08:40:17.662586+07', 'system', '2023-07-26 08:40:17.662586+07', 'Xã Thống Nhất', '01564', 'Xã');
INSERT INTO category."Wards" VALUES (1567, 48, 'system', '2023-07-26 08:40:17.662589+07', 'system', '2023-07-26 08:40:17.662589+07', 'Xã Cô Ngân', '01567', 'Xã');
INSERT INTO category."Wards" VALUES (1573, 48, 'system', '2023-07-26 08:40:17.662592+07', 'system', '2023-07-26 08:40:17.662592+07', 'Xã Thị Hoa', '01573', 'Xã');
INSERT INTO category."Wards" VALUES (1576, 49, 'system', '2023-07-26 08:40:17.662599+07', 'system', '2023-07-26 08:40:17.662599+07', 'Thị trấn Quảng Uyên', '01576', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1579, 49, 'system', '2023-07-26 08:40:17.662602+07', 'system', '2023-07-26 08:40:17.662602+07', 'Xã Phi Hải', '01579', 'Xã');
INSERT INTO category."Wards" VALUES (1582, 49, 'system', '2023-07-26 08:40:17.662604+07', 'system', '2023-07-26 08:40:17.662604+07', 'Xã Quảng Hưng', '01582', 'Xã');
INSERT INTO category."Wards" VALUES (1594, 49, 'system', '2023-07-26 08:40:17.662607+07', 'system', '2023-07-26 08:40:17.662607+07', 'Xã Độc Lập', '01594', 'Xã');
INSERT INTO category."Wards" VALUES (1597, 49, 'system', '2023-07-26 08:40:17.662609+07', 'system', '2023-07-26 08:40:17.662609+07', 'Xã Cai Bộ', '01597', 'Xã');
INSERT INTO category."Wards" VALUES (1603, 49, 'system', '2023-07-26 08:40:17.662612+07', 'system', '2023-07-26 08:40:17.662612+07', 'Xã Phúc Sen', '01603', 'Xã');
INSERT INTO category."Wards" VALUES (1606, 49, 'system', '2023-07-26 08:40:17.662615+07', 'system', '2023-07-26 08:40:17.662615+07', 'Xã Chí Thảo', '01606', 'Xã');
INSERT INTO category."Wards" VALUES (1609, 49, 'system', '2023-07-26 08:40:17.662617+07', 'system', '2023-07-26 08:40:17.662617+07', 'Xã Tự Do', '01609', 'Xã');
INSERT INTO category."Wards" VALUES (1615, 49, 'system', '2023-07-26 08:40:17.66262+07', 'system', '2023-07-26 08:40:17.66262+07', 'Xã Hồng Quang', '01615', 'Xã');
INSERT INTO category."Wards" VALUES (1618, 49, 'system', '2023-07-26 08:40:17.662622+07', 'system', '2023-07-26 08:40:17.662622+07', 'Xã Ngọc Động', '01618', 'Xã');
INSERT INTO category."Wards" VALUES (1624, 49, 'system', '2023-07-26 08:40:17.662625+07', 'system', '2023-07-26 08:40:17.662625+07', 'Xã Hạnh Phúc', '01624', 'Xã');
INSERT INTO category."Wards" VALUES (1627, 49, 'system', '2023-07-26 08:40:17.662628+07', 'system', '2023-07-26 08:40:17.662628+07', 'Thị trấn Tà Lùng', '01627', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1630, 49, 'system', '2023-07-26 08:40:17.662631+07', 'system', '2023-07-26 08:40:17.662631+07', 'Xã Bế Văn Đàn', '01630', 'Xã');
INSERT INTO category."Wards" VALUES (1636, 49, 'system', '2023-07-26 08:40:17.662633+07', 'system', '2023-07-26 08:40:17.662633+07', 'Xã Cách Linh', '01636', 'Xã');
INSERT INTO category."Wards" VALUES (1639, 49, 'system', '2023-07-26 08:40:17.662636+07', 'system', '2023-07-26 08:40:17.662636+07', 'Xã Đại Sơn', '01639', 'Xã');
INSERT INTO category."Wards" VALUES (1645, 49, 'system', '2023-07-26 08:40:17.662639+07', 'system', '2023-07-26 08:40:17.662639+07', 'Xã Tiên Thành', '01645', 'Xã');
INSERT INTO category."Wards" VALUES (1648, 49, 'system', '2023-07-26 08:40:17.662641+07', 'system', '2023-07-26 08:40:17.662641+07', 'Thị trấn Hoà Thuận', '01648', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1651, 49, 'system', '2023-07-26 08:40:17.662644+07', 'system', '2023-07-26 08:40:17.662644+07', 'Xã Mỹ Hưng', '01651', 'Xã');
INSERT INTO category."Wards" VALUES (1654, 51, 'system', '2023-07-26 08:40:17.662646+07', 'system', '2023-07-26 08:40:17.662647+07', 'Thị trấn Nước Hai', '01654', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1657, 51, 'system', '2023-07-26 08:40:17.662649+07', 'system', '2023-07-26 08:40:17.662649+07', 'Xã Dân Chủ', '01657', 'Xã');
INSERT INTO category."Wards" VALUES (1660, 51, 'system', '2023-07-26 08:40:17.662652+07', 'system', '2023-07-26 08:40:17.662652+07', 'Xã Nam Tuấn', '01660', 'Xã');
INSERT INTO category."Wards" VALUES (1666, 51, 'system', '2023-07-26 08:40:17.662655+07', 'system', '2023-07-26 08:40:17.662655+07', 'Xã Đại Tiến', '01666', 'Xã');
INSERT INTO category."Wards" VALUES (1669, 51, 'system', '2023-07-26 08:40:17.662657+07', 'system', '2023-07-26 08:40:17.662657+07', 'Xã Đức Long', '01669', 'Xã');
INSERT INTO category."Wards" VALUES (1672, 51, 'system', '2023-07-26 08:40:17.66266+07', 'system', '2023-07-26 08:40:17.66266+07', 'Xã Ngũ Lão', '01672', 'Xã');
INSERT INTO category."Wards" VALUES (1675, 51, 'system', '2023-07-26 08:40:17.662663+07', 'system', '2023-07-26 08:40:17.662663+07', 'Xã Trương Lương', '01675', 'Xã');
INSERT INTO category."Wards" VALUES (1687, 51, 'system', '2023-07-26 08:40:17.662665+07', 'system', '2023-07-26 08:40:17.662665+07', 'Xã Hồng Việt', '01687', 'Xã');
INSERT INTO category."Wards" VALUES (1693, 40, 'system', '2023-07-26 08:40:17.662347+07', 'system', '2023-07-26 08:40:17.662347+07', 'Xã Vĩnh Quang', '01693', 'Xã');
INSERT INTO category."Wards" VALUES (1696, 51, 'system', '2023-07-26 08:40:17.662668+07', 'system', '2023-07-26 08:40:17.662668+07', 'Xã Hoàng Tung', '01696', 'Xã');
INSERT INTO category."Wards" VALUES (1699, 51, 'system', '2023-07-26 08:40:17.66267+07', 'system', '2023-07-26 08:40:17.66267+07', 'Xã Nguyễn Huệ', '01699', 'Xã');
INSERT INTO category."Wards" VALUES (1702, 51, 'system', '2023-07-26 08:40:17.662673+07', 'system', '2023-07-26 08:40:17.662673+07', 'Xã Quang Trung', '01702', 'Xã');
INSERT INTO category."Wards" VALUES (1705, 40, 'system', '2023-07-26 08:40:17.66235+07', 'system', '2023-07-26 08:40:17.66235+07', 'Xã Hưng Đạo', '01705', 'Xã');
INSERT INTO category."Wards" VALUES (1708, 51, 'system', '2023-07-26 08:40:17.662676+07', 'system', '2023-07-26 08:40:17.662676+07', 'Xã Bạch Đằng', '01708', 'Xã');
INSERT INTO category."Wards" VALUES (1711, 51, 'system', '2023-07-26 08:40:17.662678+07', 'system', '2023-07-26 08:40:17.662678+07', 'Xã Bình Dương', '01711', 'Xã');
INSERT INTO category."Wards" VALUES (1714, 51, 'system', '2023-07-26 08:40:17.662681+07', 'system', '2023-07-26 08:40:17.662681+07', 'Xã Lê Chung', '01714', 'Xã');
INSERT INTO category."Wards" VALUES (1720, 40, 'system', '2023-07-26 08:40:17.662352+07', 'system', '2023-07-26 08:40:17.662353+07', 'Xã Chu Trinh', '01720', 'Xã');
INSERT INTO category."Wards" VALUES (1723, 51, 'system', '2023-07-26 08:40:17.662684+07', 'system', '2023-07-26 08:40:17.662684+07', 'Xã Hồng Nam', '01723', 'Xã');
INSERT INTO category."Wards" VALUES (1726, 52, 'system', '2023-07-26 08:40:17.662686+07', 'system', '2023-07-26 08:40:17.662686+07', 'Thị trấn Nguyên Bình', '01726', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1729, 52, 'system', '2023-07-26 08:40:17.662689+07', 'system', '2023-07-26 08:40:17.662689+07', 'Thị trấn Tĩnh Túc', '01729', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1732, 52, 'system', '2023-07-26 08:40:17.662693+07', 'system', '2023-07-26 08:40:17.662693+07', 'Xã Yên Lạc', '01732', 'Xã');
INSERT INTO category."Wards" VALUES (1735, 52, 'system', '2023-07-26 08:40:17.662696+07', 'system', '2023-07-26 08:40:17.662696+07', 'Xã Triệu Nguyên', '01735', 'Xã');
INSERT INTO category."Wards" VALUES (1738, 52, 'system', '2023-07-26 08:40:17.662699+07', 'system', '2023-07-26 08:40:17.662699+07', 'Xã Ca Thành', '01738', 'Xã');
INSERT INTO category."Wards" VALUES (1744, 52, 'system', '2023-07-26 08:40:17.662701+07', 'system', '2023-07-26 08:40:17.662701+07', 'Xã Vũ Nông', '01744', 'Xã');
INSERT INTO category."Wards" VALUES (1747, 52, 'system', '2023-07-26 08:40:17.662704+07', 'system', '2023-07-26 08:40:17.662704+07', 'Xã Minh Tâm', '01747', 'Xã');
INSERT INTO category."Wards" VALUES (1750, 52, 'system', '2023-07-26 08:40:17.662706+07', 'system', '2023-07-26 08:40:17.662706+07', 'Xã Thể Dục', '01750', 'Xã');
INSERT INTO category."Wards" VALUES (1756, 52, 'system', '2023-07-26 08:40:17.662723+07', 'system', '2023-07-26 08:40:17.662723+07', 'Xã Mai Long', '01756', 'Xã');
INSERT INTO category."Wards" VALUES (1762, 52, 'system', '2023-07-26 08:40:17.662726+07', 'system', '2023-07-26 08:40:17.662726+07', 'Xã Vũ Minh', '01762', 'Xã');
INSERT INTO category."Wards" VALUES (1765, 52, 'system', '2023-07-26 08:40:17.662728+07', 'system', '2023-07-26 08:40:17.662728+07', 'Xã Hoa Thám', '01765', 'Xã');
INSERT INTO category."Wards" VALUES (1768, 52, 'system', '2023-07-26 08:40:17.662731+07', 'system', '2023-07-26 08:40:17.662731+07', 'Xã Phan Thanh', '01768', 'Xã');
INSERT INTO category."Wards" VALUES (1771, 52, 'system', '2023-07-26 08:40:17.662733+07', 'system', '2023-07-26 08:40:17.662733+07', 'Xã Quang Thành', '01771', 'Xã');
INSERT INTO category."Wards" VALUES (1774, 52, 'system', '2023-07-26 08:40:17.662736+07', 'system', '2023-07-26 08:40:17.662736+07', 'Xã Tam Kim', '01774', 'Xã');
INSERT INTO category."Wards" VALUES (1777, 52, 'system', '2023-07-26 08:40:17.662738+07', 'system', '2023-07-26 08:40:17.662739+07', 'Xã Thành Công', '01777', 'Xã');
INSERT INTO category."Wards" VALUES (1780, 52, 'system', '2023-07-26 08:40:17.662741+07', 'system', '2023-07-26 08:40:17.662741+07', 'Xã Thịnh Vượng', '01780', 'Xã');
INSERT INTO category."Wards" VALUES (1783, 52, 'system', '2023-07-26 08:40:17.662744+07', 'system', '2023-07-26 08:40:17.662744+07', 'Xã Hưng Đạo', '01783', 'Xã');
INSERT INTO category."Wards" VALUES (1786, 53, 'system', '2023-07-26 08:40:17.662746+07', 'system', '2023-07-26 08:40:17.662746+07', 'Thị trấn Đông Khê', '01786', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1789, 53, 'system', '2023-07-26 08:40:17.662749+07', 'system', '2023-07-26 08:40:17.66275+07', 'Xã Canh Tân', '01789', 'Xã');
INSERT INTO category."Wards" VALUES (1792, 53, 'system', '2023-07-26 08:40:17.662752+07', 'system', '2023-07-26 08:40:17.662752+07', 'Xã Kim Đồng', '01792', 'Xã');
INSERT INTO category."Wards" VALUES (1795, 53, 'system', '2023-07-26 08:40:17.662755+07', 'system', '2023-07-26 08:40:17.662755+07', 'Xã Minh Khai', '01795', 'Xã');
INSERT INTO category."Wards" VALUES (1801, 53, 'system', '2023-07-26 08:40:17.662757+07', 'system', '2023-07-26 08:40:17.662757+07', 'Xã Đức Thông', '01801', 'Xã');
INSERT INTO category."Wards" VALUES (1804, 53, 'system', '2023-07-26 08:40:17.66276+07', 'system', '2023-07-26 08:40:17.66276+07', 'Xã Thái Cường', '01804', 'Xã');
INSERT INTO category."Wards" VALUES (1807, 53, 'system', '2023-07-26 08:40:17.662763+07', 'system', '2023-07-26 08:40:17.662763+07', 'Xã Vân Trình', '01807', 'Xã');
INSERT INTO category."Wards" VALUES (1810, 53, 'system', '2023-07-26 08:40:17.662765+07', 'system', '2023-07-26 08:40:17.662765+07', 'Xã Thụy Hùng', '01810', 'Xã');
INSERT INTO category."Wards" VALUES (1813, 53, 'system', '2023-07-26 08:40:17.662768+07', 'system', '2023-07-26 08:40:17.662768+07', 'Xã Quang Trọng', '01813', 'Xã');
INSERT INTO category."Wards" VALUES (1816, 53, 'system', '2023-07-26 08:40:17.66277+07', 'system', '2023-07-26 08:40:17.66277+07', 'Xã Trọng Con', '01816', 'Xã');
INSERT INTO category."Wards" VALUES (1819, 53, 'system', '2023-07-26 08:40:17.662773+07', 'system', '2023-07-26 08:40:17.662773+07', 'Xã Lê Lai', '01819', 'Xã');
INSERT INTO category."Wards" VALUES (1822, 53, 'system', '2023-07-26 08:40:17.662776+07', 'system', '2023-07-26 08:40:17.662776+07', 'Xã Đức Long', '01822', 'Xã');
INSERT INTO category."Wards" VALUES (1828, 53, 'system', '2023-07-26 08:40:17.662778+07', 'system', '2023-07-26 08:40:17.662778+07', 'Xã Lê Lợi', '01828', 'Xã');
INSERT INTO category."Wards" VALUES (1831, 53, 'system', '2023-07-26 08:40:17.662781+07', 'system', '2023-07-26 08:40:17.662781+07', 'Xã Đức Xuân', '01831', 'Xã');
INSERT INTO category."Wards" VALUES (1834, 58, 'system', '2023-07-26 08:40:17.662783+07', 'system', '2023-07-26 08:40:17.662783+07', 'Phường Nguyễn Thị Minh Khai', '01834', 'Phường');
INSERT INTO category."Wards" VALUES (1837, 58, 'system', '2023-07-26 08:40:17.662786+07', 'system', '2023-07-26 08:40:17.662786+07', 'Phường Sông Cầu', '01837', 'Phường');
INSERT INTO category."Wards" VALUES (1840, 58, 'system', '2023-07-26 08:40:17.662789+07', 'system', '2023-07-26 08:40:17.662789+07', 'Phường Đức Xuân', '01840', 'Phường');
INSERT INTO category."Wards" VALUES (1843, 58, 'system', '2023-07-26 08:40:17.662792+07', 'system', '2023-07-26 08:40:17.662792+07', 'Phường Phùng Chí Kiên', '01843', 'Phường');
INSERT INTO category."Wards" VALUES (1846, 58, 'system', '2023-07-26 08:40:17.662795+07', 'system', '2023-07-26 08:40:17.662795+07', 'Phường Huyền Tụng', '01846', 'Phường');
INSERT INTO category."Wards" VALUES (1849, 58, 'system', '2023-07-26 08:40:17.662798+07', 'system', '2023-07-26 08:40:17.662798+07', 'Xã Dương Quang', '01849', 'Xã');
INSERT INTO category."Wards" VALUES (1852, 58, 'system', '2023-07-26 08:40:17.662801+07', 'system', '2023-07-26 08:40:17.662801+07', 'Xã Nông Thượng', '01852', 'Xã');
INSERT INTO category."Wards" VALUES (1855, 58, 'system', '2023-07-26 08:40:17.662804+07', 'system', '2023-07-26 08:40:17.662804+07', 'Phường Xuất Hóa', '01855', 'Phường');
INSERT INTO category."Wards" VALUES (1858, 60, 'system', '2023-07-26 08:40:17.662807+07', 'system', '2023-07-26 08:40:17.662807+07', 'Xã Bằng Thành', '01858', 'Xã');
INSERT INTO category."Wards" VALUES (1861, 60, 'system', '2023-07-26 08:40:17.66281+07', 'system', '2023-07-26 08:40:17.66281+07', 'Xã Nhạn Môn', '01861', 'Xã');
INSERT INTO category."Wards" VALUES (1864, 60, 'system', '2023-07-26 08:40:17.662813+07', 'system', '2023-07-26 08:40:17.662813+07', 'Xã Bộc Bố', '01864', 'Xã');
INSERT INTO category."Wards" VALUES (1867, 60, 'system', '2023-07-26 08:40:17.662815+07', 'system', '2023-07-26 08:40:17.662815+07', 'Xã Công Bằng', '01867', 'Xã');
INSERT INTO category."Wards" VALUES (1870, 60, 'system', '2023-07-26 08:40:17.662818+07', 'system', '2023-07-26 08:40:17.662818+07', 'Xã Giáo Hiệu', '01870', 'Xã');
INSERT INTO category."Wards" VALUES (1873, 60, 'system', '2023-07-26 08:40:17.662821+07', 'system', '2023-07-26 08:40:17.662821+07', 'Xã Xuân La', '01873', 'Xã');
INSERT INTO category."Wards" VALUES (1876, 60, 'system', '2023-07-26 08:40:17.662823+07', 'system', '2023-07-26 08:40:17.662823+07', 'Xã An Thắng', '01876', 'Xã');
INSERT INTO category."Wards" VALUES (1879, 60, 'system', '2023-07-26 08:40:17.662826+07', 'system', '2023-07-26 08:40:17.662826+07', 'Xã Cổ Linh', '01879', 'Xã');
INSERT INTO category."Wards" VALUES (1882, 60, 'system', '2023-07-26 08:40:17.662829+07', 'system', '2023-07-26 08:40:17.662829+07', 'Xã Nghiên Loan', '01882', 'Xã');
INSERT INTO category."Wards" VALUES (1885, 60, 'system', '2023-07-26 08:40:17.662831+07', 'system', '2023-07-26 08:40:17.662831+07', 'Xã Cao Tân', '01885', 'Xã');
INSERT INTO category."Wards" VALUES (1888, 61, 'system', '2023-07-26 08:40:17.662834+07', 'system', '2023-07-26 08:40:17.662834+07', 'Thị trấn Chợ Rã', '01888', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1891, 61, 'system', '2023-07-26 08:40:17.662837+07', 'system', '2023-07-26 08:40:17.662837+07', 'Xã Bành Trạch', '01891', 'Xã');
INSERT INTO category."Wards" VALUES (1894, 61, 'system', '2023-07-26 08:40:17.662839+07', 'system', '2023-07-26 08:40:17.662839+07', 'Xã Phúc Lộc', '01894', 'Xã');
INSERT INTO category."Wards" VALUES (1897, 61, 'system', '2023-07-26 08:40:17.662842+07', 'system', '2023-07-26 08:40:17.662842+07', 'Xã Hà Hiệu', '01897', 'Xã');
INSERT INTO category."Wards" VALUES (1900, 61, 'system', '2023-07-26 08:40:17.662844+07', 'system', '2023-07-26 08:40:17.662844+07', 'Xã Cao Thượng', '01900', 'Xã');
INSERT INTO category."Wards" VALUES (1906, 61, 'system', '2023-07-26 08:40:17.662847+07', 'system', '2023-07-26 08:40:17.662847+07', 'Xã Khang Ninh', '01906', 'Xã');
INSERT INTO category."Wards" VALUES (1909, 61, 'system', '2023-07-26 08:40:17.662849+07', 'system', '2023-07-26 08:40:17.662849+07', 'Xã Nam Mẫu', '01909', 'Xã');
INSERT INTO category."Wards" VALUES (1912, 61, 'system', '2023-07-26 08:40:17.662852+07', 'system', '2023-07-26 08:40:17.662852+07', 'Xã Thượng Giáo', '01912', 'Xã');
INSERT INTO category."Wards" VALUES (1915, 61, 'system', '2023-07-26 08:40:17.662854+07', 'system', '2023-07-26 08:40:17.662854+07', 'Xã Địa Linh', '01915', 'Xã');
INSERT INTO category."Wards" VALUES (1918, 61, 'system', '2023-07-26 08:40:17.662857+07', 'system', '2023-07-26 08:40:17.662857+07', 'Xã Yến Dương', '01918', 'Xã');
INSERT INTO category."Wards" VALUES (1921, 61, 'system', '2023-07-26 08:40:17.66286+07', 'system', '2023-07-26 08:40:17.66286+07', 'Xã Chu Hương', '01921', 'Xã');
INSERT INTO category."Wards" VALUES (1924, 61, 'system', '2023-07-26 08:40:17.662862+07', 'system', '2023-07-26 08:40:17.662862+07', 'Xã Quảng Khê', '01924', 'Xã');
INSERT INTO category."Wards" VALUES (1927, 61, 'system', '2023-07-26 08:40:17.662865+07', 'system', '2023-07-26 08:40:17.662865+07', 'Xã Mỹ Phương', '01927', 'Xã');
INSERT INTO category."Wards" VALUES (1930, 61, 'system', '2023-07-26 08:40:17.662868+07', 'system', '2023-07-26 08:40:17.662868+07', 'Xã Hoàng Trĩ', '01930', 'Xã');
INSERT INTO category."Wards" VALUES (1933, 61, 'system', '2023-07-26 08:40:17.66287+07', 'system', '2023-07-26 08:40:17.66287+07', 'Xã Đồng Phúc', '01933', 'Xã');
INSERT INTO category."Wards" VALUES (1936, 62, 'system', '2023-07-26 08:40:17.662873+07', 'system', '2023-07-26 08:40:17.662873+07', 'Thị trấn Nà Phặc', '01936', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1939, 62, 'system', '2023-07-26 08:40:17.662876+07', 'system', '2023-07-26 08:40:17.662876+07', 'Xã Thượng Ân', '01939', 'Xã');
INSERT INTO category."Wards" VALUES (1942, 62, 'system', '2023-07-26 08:40:17.662879+07', 'system', '2023-07-26 08:40:17.662879+07', 'Xã Bằng Vân', '01942', 'Xã');
INSERT INTO category."Wards" VALUES (1945, 62, 'system', '2023-07-26 08:40:17.662881+07', 'system', '2023-07-26 08:40:17.662881+07', 'Xã Cốc Đán', '01945', 'Xã');
INSERT INTO category."Wards" VALUES (1948, 62, 'system', '2023-07-26 08:40:17.662884+07', 'system', '2023-07-26 08:40:17.662884+07', 'Xã Trung Hoà', '01948', 'Xã');
INSERT INTO category."Wards" VALUES (1951, 62, 'system', '2023-07-26 08:40:17.662886+07', 'system', '2023-07-26 08:40:17.662886+07', 'Xã Đức Vân', '01951', 'Xã');
INSERT INTO category."Wards" VALUES (1954, 62, 'system', '2023-07-26 08:40:17.662889+07', 'system', '2023-07-26 08:40:17.662889+07', 'Xã Vân Tùng', '01954', 'Xã');
INSERT INTO category."Wards" VALUES (1957, 62, 'system', '2023-07-26 08:40:17.662891+07', 'system', '2023-07-26 08:40:17.662892+07', 'Xã Thượng Quan', '01957', 'Xã');
INSERT INTO category."Wards" VALUES (1960, 62, 'system', '2023-07-26 08:40:17.662894+07', 'system', '2023-07-26 08:40:17.662894+07', 'Xã Hiệp Lực', '01960', 'Xã');
INSERT INTO category."Wards" VALUES (1963, 62, 'system', '2023-07-26 08:40:17.662897+07', 'system', '2023-07-26 08:40:17.662897+07', 'Xã Thuần Mang', '01963', 'Xã');
INSERT INTO category."Wards" VALUES (1969, 63, 'system', '2023-07-26 08:40:17.6629+07', 'system', '2023-07-26 08:40:17.6629+07', 'Thị trấn Phủ Thông', '01969', 'Thị trấn');
INSERT INTO category."Wards" VALUES (1975, 63, 'system', '2023-07-26 08:40:17.662903+07', 'system', '2023-07-26 08:40:17.662903+07', 'Xã Vi Hương', '01975', 'Xã');
INSERT INTO category."Wards" VALUES (1978, 63, 'system', '2023-07-26 08:40:17.662906+07', 'system', '2023-07-26 08:40:17.662906+07', 'Xã Sĩ Bình', '01978', 'Xã');
INSERT INTO category."Wards" VALUES (1981, 63, 'system', '2023-07-26 08:40:17.662909+07', 'system', '2023-07-26 08:40:17.662909+07', 'Xã Vũ Muộn', '01981', 'Xã');
INSERT INTO category."Wards" VALUES (1984, 63, 'system', '2023-07-26 08:40:17.662911+07', 'system', '2023-07-26 08:40:17.662911+07', 'Xã Đôn Phong', '01984', 'Xã');
INSERT INTO category."Wards" VALUES (1990, 63, 'system', '2023-07-26 08:40:17.662914+07', 'system', '2023-07-26 08:40:17.662914+07', 'Xã Lục Bình', '01990', 'Xã');
INSERT INTO category."Wards" VALUES (1993, 63, 'system', '2023-07-26 08:40:17.662916+07', 'system', '2023-07-26 08:40:17.662916+07', 'Xã Tân Tú', '01993', 'Xã');
INSERT INTO category."Wards" VALUES (1999, 63, 'system', '2023-07-26 08:40:17.662919+07', 'system', '2023-07-26 08:40:17.662919+07', 'Xã Nguyên Phúc', '01999', 'Xã');
INSERT INTO category."Wards" VALUES (2002, 63, 'system', '2023-07-26 08:40:17.662921+07', 'system', '2023-07-26 08:40:17.662921+07', 'Xã Cao Sơn', '02002', 'Xã');
INSERT INTO category."Wards" VALUES (2005, 63, 'system', '2023-07-26 08:40:17.662924+07', 'system', '2023-07-26 08:40:17.662924+07', 'Xã Quân Hà', '02005', 'Xã');
INSERT INTO category."Wards" VALUES (2008, 63, 'system', '2023-07-26 08:40:17.662926+07', 'system', '2023-07-26 08:40:17.662926+07', 'Xã Cẩm Giàng', '02008', 'Xã');
INSERT INTO category."Wards" VALUES (2011, 63, 'system', '2023-07-26 08:40:17.662929+07', 'system', '2023-07-26 08:40:17.662929+07', 'Xã Mỹ Thanh', '02011', 'Xã');
INSERT INTO category."Wards" VALUES (2014, 63, 'system', '2023-07-26 08:40:17.662931+07', 'system', '2023-07-26 08:40:17.662931+07', 'Xã Dương Phong', '02014', 'Xã');
INSERT INTO category."Wards" VALUES (2017, 63, 'system', '2023-07-26 08:40:17.662934+07', 'system', '2023-07-26 08:40:17.662934+07', 'Xã Quang Thuận', '02017', 'Xã');
INSERT INTO category."Wards" VALUES (2020, 64, 'system', '2023-07-26 08:40:17.662937+07', 'system', '2023-07-26 08:40:17.662937+07', 'Thị trấn Bằng Lũng', '02020', 'Thị trấn');
INSERT INTO category."Wards" VALUES (2023, 64, 'system', '2023-07-26 08:40:17.662939+07', 'system', '2023-07-26 08:40:17.66294+07', 'Xã Xuân Lạc', '02023', 'Xã');
INSERT INTO category."Wards" VALUES (2026, 64, 'system', '2023-07-26 08:40:17.662942+07', 'system', '2023-07-26 08:40:17.662942+07', 'Xã Nam Cường', '02026', 'Xã');
INSERT INTO category."Wards" VALUES (2029, 64, 'system', '2023-07-26 08:40:17.662945+07', 'system', '2023-07-26 08:40:17.662945+07', 'Xã Đồng Lạc', '02029', 'Xã');
INSERT INTO category."Wards" VALUES (2032, 64, 'system', '2023-07-26 08:40:17.662947+07', 'system', '2023-07-26 08:40:17.662947+07', 'Xã Tân Lập', '02032', 'Xã');
INSERT INTO category."Wards" VALUES (2035, 64, 'system', '2023-07-26 08:40:17.66295+07', 'system', '2023-07-26 08:40:17.66295+07', 'Xã Bản Thi', '02035', 'Xã');
INSERT INTO category."Wards" VALUES (2038, 64, 'system', '2023-07-26 08:40:17.662953+07', 'system', '2023-07-26 08:40:17.662953+07', 'Xã Quảng Bạch', '02038', 'Xã');
INSERT INTO category."Wards" VALUES (2041, 64, 'system', '2023-07-26 08:40:17.662955+07', 'system', '2023-07-26 08:40:17.662955+07', 'Xã Bằng Phúc', '02041', 'Xã');
INSERT INTO category."Wards" VALUES (2044, 64, 'system', '2023-07-26 08:40:17.662958+07', 'system', '2023-07-26 08:40:17.662958+07', 'Xã Yên Thịnh', '02044', 'Xã');
INSERT INTO category."Wards" VALUES (2047, 64, 'system', '2023-07-26 08:40:17.662961+07', 'system', '2023-07-26 08:40:17.662961+07', 'Xã Yên Thượng', '02047', 'Xã');
INSERT INTO category."Wards" VALUES (2050, 64, 'system', '2023-07-26 08:40:17.662963+07', 'system', '2023-07-26 08:40:17.662963+07', 'Xã Phương Viên', '02050', 'Xã');
INSERT INTO category."Wards" VALUES (2053, 64, 'system', '2023-07-26 08:40:17.662966+07', 'system', '2023-07-26 08:40:17.662966+07', 'Xã Ngọc Phái', '02053', 'Xã');
INSERT INTO category."Wards" VALUES (2059, 64, 'system', '2023-07-26 08:40:17.662969+07', 'system', '2023-07-26 08:40:17.662969+07', 'Xã Đồng Thắng', '02059', 'Xã');
INSERT INTO category."Wards" VALUES (2062, 64, 'system', '2023-07-26 08:40:17.662971+07', 'system', '2023-07-26 08:40:17.662971+07', 'Xã Lương Bằng', '02062', 'Xã');
INSERT INTO category."Wards" VALUES (2065, 64, 'system', '2023-07-26 08:40:17.662974+07', 'system', '2023-07-26 08:40:17.662974+07', 'Xã Bằng Lãng', '02065', 'Xã');
INSERT INTO category."Wards" VALUES (2068, 64, 'system', '2023-07-26 08:40:17.662977+07', 'system', '2023-07-26 08:40:17.662977+07', 'Xã Đại Sảo', '02068', 'Xã');
INSERT INTO category."Wards" VALUES (2071, 64, 'system', '2023-07-26 08:40:17.662979+07', 'system', '2023-07-26 08:40:17.662979+07', 'Xã Nghĩa Tá', '02071', 'Xã');
INSERT INTO category."Wards" VALUES (2077, 64, 'system', '2023-07-26 08:40:17.662982+07', 'system', '2023-07-26 08:40:17.662982+07', 'Xã Yên Mỹ', '02077', 'Xã');
INSERT INTO category."Wards" VALUES (2080, 64, 'system', '2023-07-26 08:40:17.662984+07', 'system', '2023-07-26 08:40:17.662984+07', 'Xã Bình Trung', '02080', 'Xã');
INSERT INTO category."Wards" VALUES (2083, 64, 'system', '2023-07-26 08:40:17.662987+07', 'system', '2023-07-26 08:40:17.662987+07', 'Xã Yên Phong', '02083', 'Xã');
INSERT INTO category."Wards" VALUES (2086, 65, 'system', '2023-07-26 08:40:17.662989+07', 'system', '2023-07-26 08:40:17.662989+07', 'Thị trấn Đồng Tâm', '02086', 'Thị trấn');
INSERT INTO category."Wards" VALUES (2089, 65, 'system', '2023-07-26 08:40:17.662992+07', 'system', '2023-07-26 08:40:17.662992+07', 'Xã Tân Sơn', '02089', 'Xã');
INSERT INTO category."Wards" VALUES (2092, 65, 'system', '2023-07-26 08:40:17.662995+07', 'system', '2023-07-26 08:40:17.662995+07', 'Xã Thanh Vận', '02092', 'Xã');
INSERT INTO category."Wards" VALUES (2095, 65, 'system', '2023-07-26 08:40:17.662998+07', 'system', '2023-07-26 08:40:17.662998+07', 'Xã Mai Lạp', '02095', 'Xã');
INSERT INTO category."Wards" VALUES (2098, 65, 'system', '2023-07-26 08:40:17.663001+07', 'system', '2023-07-26 08:40:17.663001+07', 'Xã Hoà Mục', '02098', 'Xã');
INSERT INTO category."Wards" VALUES (2101, 65, 'system', '2023-07-26 08:40:17.663003+07', 'system', '2023-07-26 08:40:17.663003+07', 'Xã Thanh Mai', '02101', 'Xã');
INSERT INTO category."Wards" VALUES (2104, 65, 'system', '2023-07-26 08:40:17.663006+07', 'system', '2023-07-26 08:40:17.663006+07', 'Xã Cao Kỳ', '02104', 'Xã');
INSERT INTO category."Wards" VALUES (2107, 65, 'system', '2023-07-26 08:40:17.663008+07', 'system', '2023-07-26 08:40:17.663008+07', 'Xã Nông Hạ', '02107', 'Xã');
INSERT INTO category."Wards" VALUES (2110, 65, 'system', '2023-07-26 08:40:17.663011+07', 'system', '2023-07-26 08:40:17.663011+07', 'Xã Yên Cư', '02110', 'Xã');
INSERT INTO category."Wards" VALUES (2113, 65, 'system', '2023-07-26 08:40:17.663013+07', 'system', '2023-07-26 08:40:17.663013+07', 'Xã Thanh Thịnh', '02113', 'Xã');
INSERT INTO category."Wards" VALUES (2116, 65, 'system', '2023-07-26 08:40:17.663016+07', 'system', '2023-07-26 08:40:17.663016+07', 'Xã Yên Hân', '02116', 'Xã');
INSERT INTO category."Wards" VALUES (2122, 65, 'system', '2023-07-26 08:40:17.663018+07', 'system', '2023-07-26 08:40:17.663018+07', 'Xã Như Cố', '02122', 'Xã');
INSERT INTO category."Wards" VALUES (2125, 65, 'system', '2023-07-26 08:40:17.663021+07', 'system', '2023-07-26 08:40:17.663021+07', 'Xã Bình Văn', '02125', 'Xã');
INSERT INTO category."Wards" VALUES (2131, 65, 'system', '2023-07-26 08:40:17.663023+07', 'system', '2023-07-26 08:40:17.663023+07', 'Xã Quảng Chu', '02131', 'Xã');
INSERT INTO category."Wards" VALUES (2137, 66, 'system', '2023-07-26 08:40:17.663026+07', 'system', '2023-07-26 08:40:17.663026+07', 'Xã Văn Vũ', '02137', 'Xã');
INSERT INTO category."Wards" VALUES (2140, 66, 'system', '2023-07-26 08:40:17.663031+07', 'system', '2023-07-26 08:40:17.663031+07', 'Xã Văn Lang', '02140', 'Xã');
INSERT INTO category."Wards" VALUES (2143, 66, 'system', '2023-07-26 08:40:17.663034+07', 'system', '2023-07-26 08:40:17.663034+07', 'Xã Lương Thượng', '02143', 'Xã');
INSERT INTO category."Wards" VALUES (2146, 66, 'system', '2023-07-26 08:40:17.663037+07', 'system', '2023-07-26 08:40:17.663037+07', 'Xã Kim Hỷ', '02146', 'Xã');
INSERT INTO category."Wards" VALUES (2152, 66, 'system', '2023-07-26 08:40:17.66304+07', 'system', '2023-07-26 08:40:17.66304+07', 'Xã Cường Lợi', '02152', 'Xã');
INSERT INTO category."Wards" VALUES (2155, 66, 'system', '2023-07-26 08:40:17.663042+07', 'system', '2023-07-26 08:40:17.663042+07', 'Thị trấn Yến Lạc', '02155', 'Thị trấn');
INSERT INTO category."Wards" VALUES (2158, 66, 'system', '2023-07-26 08:40:17.663045+07', 'system', '2023-07-26 08:40:17.663045+07', 'Xã Kim Lư', '02158', 'Xã');
INSERT INTO category."Wards" VALUES (2161, 66, 'system', '2023-07-26 08:40:17.663048+07', 'system', '2023-07-26 08:40:17.663048+07', 'Xã Sơn Thành', '02161', 'Xã');
INSERT INTO category."Wards" VALUES (2170, 66, 'system', '2023-07-26 08:40:17.663051+07', 'system', '2023-07-26 08:40:17.663051+07', 'Xã Văn Minh', '02170', 'Xã');
INSERT INTO category."Wards" VALUES (2173, 66, 'system', '2023-07-26 08:40:17.663053+07', 'system', '2023-07-26 08:40:17.663053+07', 'Xã Côn Minh', '02173', 'Xã');
INSERT INTO category."Wards" VALUES (2176, 66, 'system', '2023-07-26 08:40:17.663056+07', 'system', '2023-07-26 08:40:17.663056+07', 'Xã Cư Lễ', '02176', 'Xã');
INSERT INTO category."Wards" VALUES (2179, 66, 'system', '2023-07-26 08:40:17.663058+07', 'system', '2023-07-26 08:40:17.663058+07', 'Xã Trần Phú', '02179', 'Xã');
INSERT INTO category."Wards" VALUES (2185, 66, 'system', '2023-07-26 08:40:17.663061+07', 'system', '2023-07-26 08:40:17.663061+07', 'Xã Quang Phong', '02185', 'Xã');
INSERT INTO category."Wards" VALUES (2188, 66, 'system', '2023-07-26 08:40:17.663063+07', 'system', '2023-07-26 08:40:17.663064+07', 'Xã Dương Sơn', '02188', 'Xã');
INSERT INTO category."Wards" VALUES (2191, 66, 'system', '2023-07-26 08:40:17.663067+07', 'system', '2023-07-26 08:40:17.663067+07', 'Xã Xuân Dương', '02191', 'Xã');
INSERT INTO category."Wards" VALUES (2194, 66, 'system', '2023-07-26 08:40:17.663069+07', 'system', '2023-07-26 08:40:17.663069+07', 'Xã Đổng Xá', '02194', 'Xã');
INSERT INTO category."Wards" VALUES (2197, 66, 'system', '2023-07-26 08:40:17.663072+07', 'system', '2023-07-26 08:40:17.663072+07', 'Xã Liêm Thuỷ', '02197', 'Xã');
INSERT INTO category."Wards" VALUES (2200, 70, 'system', '2023-07-26 08:40:17.663074+07', 'system', '2023-07-26 08:40:17.663075+07', 'Phường Phan Thiết', '02200', 'Phường');
INSERT INTO category."Wards" VALUES (2203, 70, 'system', '2023-07-26 08:40:17.663077+07', 'system', '2023-07-26 08:40:17.663077+07', 'Phường Minh Xuân', '02203', 'Phường');
INSERT INTO category."Wards" VALUES (2206, 70, 'system', '2023-07-26 08:40:17.66308+07', 'system', '2023-07-26 08:40:17.66308+07', 'Phường Tân Quang', '02206', 'Phường');
INSERT INTO category."Wards" VALUES (2209, 70, 'system', '2023-07-26 08:40:17.663083+07', 'system', '2023-07-26 08:40:17.663083+07', 'Xã Tràng Đà', '02209', 'Xã');
INSERT INTO category."Wards" VALUES (2212, 70, 'system', '2023-07-26 08:40:17.663086+07', 'system', '2023-07-26 08:40:17.663086+07', 'Phường Nông Tiến', '02212', 'Phường');
INSERT INTO category."Wards" VALUES (2215, 70, 'system', '2023-07-26 08:40:17.663089+07', 'system', '2023-07-26 08:40:17.663089+07', 'Phường Ỷ La', '02215', 'Phường');
INSERT INTO category."Wards" VALUES (2216, 70, 'system', '2023-07-26 08:40:17.663092+07', 'system', '2023-07-26 08:40:17.663092+07', 'Phường Tân Hà', '02216', 'Phường');
INSERT INTO category."Wards" VALUES (2218, 70, 'system', '2023-07-26 08:40:17.663094+07', 'system', '2023-07-26 08:40:17.663094+07', 'Phường Hưng Thành', '02218', 'Phường');
INSERT INTO category."Wards" VALUES (2221, 72, 'system', '2023-07-26 08:40:17.663143+07', 'system', '2023-07-26 08:40:17.663143+07', 'Thị trấn Na Hang', '02221', 'Thị trấn');
INSERT INTO category."Wards" VALUES (2227, 72, 'system', '2023-07-26 08:40:17.663146+07', 'system', '2023-07-26 08:40:17.663146+07', 'Xã Sinh Long', '02227', 'Xã');
INSERT INTO category."Wards" VALUES (2230, 72, 'system', '2023-07-26 08:40:17.663149+07', 'system', '2023-07-26 08:40:17.663149+07', 'Xã Thượng Giáp', '02230', 'Xã');
INSERT INTO category."Wards" VALUES (2233, 71, 'system', '2023-07-26 08:40:17.663117+07', 'system', '2023-07-26 08:40:17.663117+07', 'Xã Phúc Yên', '02233', 'Xã');
INSERT INTO category."Wards" VALUES (2239, 72, 'system', '2023-07-26 08:40:17.663151+07', 'system', '2023-07-26 08:40:17.663151+07', 'Xã Thượng Nông', '02239', 'Xã');
INSERT INTO category."Wards" VALUES (2242, 71, 'system', '2023-07-26 08:40:17.66312+07', 'system', '2023-07-26 08:40:17.66312+07', 'Xã Xuân Lập', '02242', 'Xã');
INSERT INTO category."Wards" VALUES (2245, 72, 'system', '2023-07-26 08:40:17.663154+07', 'system', '2023-07-26 08:40:17.663154+07', 'Xã Côn Lôn', '02245', 'Xã');
INSERT INTO category."Wards" VALUES (2248, 72, 'system', '2023-07-26 08:40:17.663157+07', 'system', '2023-07-26 08:40:17.663157+07', 'Xã Yên Hoa', '02248', 'Xã');
INSERT INTO category."Wards" VALUES (2251, 71, 'system', '2023-07-26 08:40:17.663122+07', 'system', '2023-07-26 08:40:17.663122+07', 'Xã Khuôn Hà', '02251', 'Xã');
INSERT INTO category."Wards" VALUES (2254, 72, 'system', '2023-07-26 08:40:17.663159+07', 'system', '2023-07-26 08:40:17.663159+07', 'Xã Hồng Thái', '02254', 'Xã');
INSERT INTO category."Wards" VALUES (2260, 72, 'system', '2023-07-26 08:40:17.663162+07', 'system', '2023-07-26 08:40:17.663162+07', 'Xã Đà Vị', '02260', 'Xã');
INSERT INTO category."Wards" VALUES (2263, 72, 'system', '2023-07-26 08:40:17.663165+07', 'system', '2023-07-26 08:40:17.663165+07', 'Xã Khau Tinh', '02263', 'Xã');
INSERT INTO category."Wards" VALUES (2266, 71, 'system', '2023-07-26 08:40:17.663125+07', 'system', '2023-07-26 08:40:17.663125+07', 'Thị trấn Lăng Can', '02266', 'Thị trấn');
INSERT INTO category."Wards" VALUES (2269, 71, 'system', '2023-07-26 08:40:17.663128+07', 'system', '2023-07-26 08:40:17.663128+07', 'Xã Thượng Lâm', '02269', 'Xã');
INSERT INTO category."Wards" VALUES (2275, 72, 'system', '2023-07-26 08:40:17.663167+07', 'system', '2023-07-26 08:40:17.663167+07', 'Xã Sơn Phú', '02275', 'Xã');
INSERT INTO category."Wards" VALUES (2281, 72, 'system', '2023-07-26 08:40:17.66317+07', 'system', '2023-07-26 08:40:17.66317+07', 'Xã Năng Khả', '02281', 'Xã');
INSERT INTO category."Wards" VALUES (2284, 72, 'system', '2023-07-26 08:40:17.663172+07', 'system', '2023-07-26 08:40:17.663172+07', 'Xã Thanh Tương', '02284', 'Xã');
INSERT INTO category."Wards" VALUES (2287, 73, 'system', '2023-07-26 08:40:17.663175+07', 'system', '2023-07-26 08:40:17.663175+07', 'Thị trấn Vĩnh Lộc', '02287', 'Thị trấn');
INSERT INTO category."Wards" VALUES (2290, 71, 'system', '2023-07-26 08:40:17.66313+07', 'system', '2023-07-26 08:40:17.66313+07', 'Xã Bình An', '02290', 'Xã');
INSERT INTO category."Wards" VALUES (2293, 71, 'system', '2023-07-26 08:40:17.663133+07', 'system', '2023-07-26 08:40:17.663133+07', 'Xã Hồng Quang', '02293', 'Xã');
INSERT INTO category."Wards" VALUES (2296, 71, 'system', '2023-07-26 08:40:17.663136+07', 'system', '2023-07-26 08:40:17.663136+07', 'Xã Thổ Bình', '02296', 'Xã');
INSERT INTO category."Wards" VALUES (2299, 71, 'system', '2023-07-26 08:40:17.663138+07', 'system', '2023-07-26 08:40:17.663138+07', 'Xã Phúc Sơn', '02299', 'Xã');
INSERT INTO category."Wards" VALUES (2302, 71, 'system', '2023-07-26 08:40:17.663141+07', 'system', '2023-07-26 08:40:17.663141+07', 'Xã Minh Quang', '02302', 'Xã');
INSERT INTO category."Wards" VALUES (2305, 73, 'system', '2023-07-26 08:40:17.663178+07', 'system', '2023-07-26 08:40:17.663178+07', 'Xã Trung Hà', '02305', 'Xã');
INSERT INTO category."Wards" VALUES (2308, 73, 'system', '2023-07-26 08:40:17.66318+07', 'system', '2023-07-26 08:40:17.66318+07', 'Xã Tân Mỹ', '02308', 'Xã');
INSERT INTO category."Wards" VALUES (2311, 73, 'system', '2023-07-26 08:40:17.663183+07', 'system', '2023-07-26 08:40:17.663183+07', 'Xã Hà Lang', '02311', 'Xã');
INSERT INTO category."Wards" VALUES (2314, 73, 'system', '2023-07-26 08:40:17.663185+07', 'system', '2023-07-26 08:40:17.663185+07', 'Xã Hùng Mỹ', '02314', 'Xã');
INSERT INTO category."Wards" VALUES (2317, 73, 'system', '2023-07-26 08:40:17.663188+07', 'system', '2023-07-26 08:40:17.663188+07', 'Xã Yên Lập', '02317', 'Xã');
INSERT INTO category."Wards" VALUES (2320, 73, 'system', '2023-07-26 08:40:17.66319+07', 'system', '2023-07-26 08:40:17.66319+07', 'Xã Tân An', '02320', 'Xã');
INSERT INTO category."Wards" VALUES (2323, 73, 'system', '2023-07-26 08:40:17.663194+07', 'system', '2023-07-26 08:40:17.663194+07', 'Xã Bình Phú', '02323', 'Xã');
INSERT INTO category."Wards" VALUES (2326, 73, 'system', '2023-07-26 08:40:17.663197+07', 'system', '2023-07-26 08:40:17.663197+07', 'Xã Xuân Quang', '02326', 'Xã');
INSERT INTO category."Wards" VALUES (2329, 73, 'system', '2023-07-26 08:40:17.663199+07', 'system', '2023-07-26 08:40:17.663199+07', 'Xã Ngọc Hội', '02329', 'Xã');
INSERT INTO category."Wards" VALUES (2332, 73, 'system', '2023-07-26 08:40:17.663202+07', 'system', '2023-07-26 08:40:17.663202+07', 'Xã Phú Bình', '02332', 'Xã');
INSERT INTO category."Wards" VALUES (2335, 73, 'system', '2023-07-26 08:40:17.663204+07', 'system', '2023-07-26 08:40:17.663204+07', 'Xã Hòa Phú', '02335', 'Xã');
INSERT INTO category."Wards" VALUES (2338, 73, 'system', '2023-07-26 08:40:17.663207+07', 'system', '2023-07-26 08:40:17.663207+07', 'Xã Phúc Thịnh', '02338', 'Xã');
INSERT INTO category."Wards" VALUES (2341, 73, 'system', '2023-07-26 08:40:17.663209+07', 'system', '2023-07-26 08:40:17.663209+07', 'Xã Kiên Đài', '02341', 'Xã');
INSERT INTO category."Wards" VALUES (2344, 73, 'system', '2023-07-26 08:40:17.663212+07', 'system', '2023-07-26 08:40:17.663212+07', 'Xã Tân Thịnh', '02344', 'Xã');
INSERT INTO category."Wards" VALUES (2347, 73, 'system', '2023-07-26 08:40:17.663215+07', 'system', '2023-07-26 08:40:17.663215+07', 'Xã Trung Hòa', '02347', 'Xã');
INSERT INTO category."Wards" VALUES (2350, 73, 'system', '2023-07-26 08:40:17.663217+07', 'system', '2023-07-26 08:40:17.663217+07', 'Xã Kim Bình', '02350', 'Xã');
INSERT INTO category."Wards" VALUES (2353, 73, 'system', '2023-07-26 08:40:17.66322+07', 'system', '2023-07-26 08:40:17.66322+07', 'Xã Hòa An', '02353', 'Xã');
INSERT INTO category."Wards" VALUES (2356, 73, 'system', '2023-07-26 08:40:17.663222+07', 'system', '2023-07-26 08:40:17.663222+07', 'Xã Vinh Quang', '02356', 'Xã');
INSERT INTO category."Wards" VALUES (2359, 73, 'system', '2023-07-26 08:40:17.663225+07', 'system', '2023-07-26 08:40:17.663225+07', 'Xã Tri Phú', '02359', 'Xã');
INSERT INTO category."Wards" VALUES (2362, 73, 'system', '2023-07-26 08:40:17.663227+07', 'system', '2023-07-26 08:40:17.663227+07', 'Xã Nhân Lý', '02362', 'Xã');
INSERT INTO category."Wards" VALUES (2365, 73, 'system', '2023-07-26 08:40:17.66323+07', 'system', '2023-07-26 08:40:17.66323+07', 'Xã Yên Nguyên', '02365', 'Xã');
INSERT INTO category."Wards" VALUES (2368, 73, 'system', '2023-07-26 08:40:17.663232+07', 'system', '2023-07-26 08:40:17.663232+07', 'Xã Linh Phú', '02368', 'Xã');
INSERT INTO category."Wards" VALUES (2371, 73, 'system', '2023-07-26 08:40:17.663235+07', 'system', '2023-07-26 08:40:17.663235+07', 'Xã Bình Nhân', '02371', 'Xã');
INSERT INTO category."Wards" VALUES (2374, 74, 'system', '2023-07-26 08:40:17.663237+07', 'system', '2023-07-26 08:40:17.663237+07', 'Thị trấn Tân Yên', '02374', 'Thị trấn');
INSERT INTO category."Wards" VALUES (2377, 74, 'system', '2023-07-26 08:40:17.66324+07', 'system', '2023-07-26 08:40:17.66324+07', 'Xã Yên Thuận', '02377', 'Xã');
INSERT INTO category."Wards" VALUES (2380, 74, 'system', '2023-07-26 08:40:17.663243+07', 'system', '2023-07-26 08:40:17.663243+07', 'Xã Bạch Xa', '02380', 'Xã');
INSERT INTO category."Wards" VALUES (2383, 74, 'system', '2023-07-26 08:40:17.663245+07', 'system', '2023-07-26 08:40:17.663245+07', 'Xã Minh Khương', '02383', 'Xã');
INSERT INTO category."Wards" VALUES (2386, 74, 'system', '2023-07-26 08:40:17.663248+07', 'system', '2023-07-26 08:40:17.663248+07', 'Xã Yên Lâm', '02386', 'Xã');
INSERT INTO category."Wards" VALUES (2389, 74, 'system', '2023-07-26 08:40:17.66325+07', 'system', '2023-07-26 08:40:17.66325+07', 'Xã Minh Dân', '02389', 'Xã');
INSERT INTO category."Wards" VALUES (2392, 74, 'system', '2023-07-26 08:40:17.663253+07', 'system', '2023-07-26 08:40:17.663253+07', 'Xã Phù Lưu', '02392', 'Xã');
INSERT INTO category."Wards" VALUES (2395, 74, 'system', '2023-07-26 08:40:17.663255+07', 'system', '2023-07-26 08:40:17.663255+07', 'Xã Minh Hương', '02395', 'Xã');
INSERT INTO category."Wards" VALUES (2398, 74, 'system', '2023-07-26 08:40:17.663258+07', 'system', '2023-07-26 08:40:17.663258+07', 'Xã Yên Phú', '02398', 'Xã');
INSERT INTO category."Wards" VALUES (2401, 74, 'system', '2023-07-26 08:40:17.66326+07', 'system', '2023-07-26 08:40:17.66326+07', 'Xã Tân Thành', '02401', 'Xã');
INSERT INTO category."Wards" VALUES (2404, 74, 'system', '2023-07-26 08:40:17.663263+07', 'system', '2023-07-26 08:40:17.663263+07', 'Xã Bình Xa', '02404', 'Xã');
INSERT INTO category."Wards" VALUES (2407, 74, 'system', '2023-07-26 08:40:17.663265+07', 'system', '2023-07-26 08:40:17.663265+07', 'Xã Thái Sơn', '02407', 'Xã');
INSERT INTO category."Wards" VALUES (2410, 74, 'system', '2023-07-26 08:40:17.663268+07', 'system', '2023-07-26 08:40:17.663268+07', 'Xã Nhân Mục', '02410', 'Xã');
INSERT INTO category."Wards" VALUES (2413, 74, 'system', '2023-07-26 08:40:17.663271+07', 'system', '2023-07-26 08:40:17.663271+07', 'Xã Thành Long', '02413', 'Xã');
INSERT INTO category."Wards" VALUES (2416, 74, 'system', '2023-07-26 08:40:17.663273+07', 'system', '2023-07-26 08:40:17.663273+07', 'Xã Bằng Cốc', '02416', 'Xã');
INSERT INTO category."Wards" VALUES (2419, 74, 'system', '2023-07-26 08:40:17.663276+07', 'system', '2023-07-26 08:40:17.663276+07', 'Xã Thái Hòa', '02419', 'Xã');
INSERT INTO category."Wards" VALUES (2422, 74, 'system', '2023-07-26 08:40:17.663278+07', 'system', '2023-07-26 08:40:17.663278+07', 'Xã Đức Ninh', '02422', 'Xã');
INSERT INTO category."Wards" VALUES (2425, 74, 'system', '2023-07-26 08:40:17.663281+07', 'system', '2023-07-26 08:40:17.663281+07', 'Xã Hùng Đức', '02425', 'Xã');
INSERT INTO category."Wards" VALUES (2431, 75, 'system', '2023-07-26 08:40:17.663283+07', 'system', '2023-07-26 08:40:17.663283+07', 'Xã Quí Quân', '02431', 'Xã');
INSERT INTO category."Wards" VALUES (2434, 75, 'system', '2023-07-26 08:40:17.663287+07', 'system', '2023-07-26 08:40:17.663287+07', 'Xã Lực Hành', '02434', 'Xã');
INSERT INTO category."Wards" VALUES (2437, 75, 'system', '2023-07-26 08:40:17.66329+07', 'system', '2023-07-26 08:40:17.66329+07', 'Xã Kiến Thiết', '02437', 'Xã');
INSERT INTO category."Wards" VALUES (2440, 75, 'system', '2023-07-26 08:40:17.663292+07', 'system', '2023-07-26 08:40:17.663292+07', 'Xã Trung Minh', '02440', 'Xã');
INSERT INTO category."Wards" VALUES (2443, 75, 'system', '2023-07-26 08:40:17.663295+07', 'system', '2023-07-26 08:40:17.663295+07', 'Xã Chiêu Yên', '02443', 'Xã');
INSERT INTO category."Wards" VALUES (2446, 75, 'system', '2023-07-26 08:40:17.663297+07', 'system', '2023-07-26 08:40:17.663297+07', 'Xã Trung Trực', '02446', 'Xã');
INSERT INTO category."Wards" VALUES (2449, 75, 'system', '2023-07-26 08:40:17.6633+07', 'system', '2023-07-26 08:40:17.6633+07', 'Xã Xuân Vân', '02449', 'Xã');
INSERT INTO category."Wards" VALUES (2452, 75, 'system', '2023-07-26 08:40:17.663302+07', 'system', '2023-07-26 08:40:17.663302+07', 'Xã Phúc Ninh', '02452', 'Xã');
INSERT INTO category."Wards" VALUES (2455, 75, 'system', '2023-07-26 08:40:17.663305+07', 'system', '2023-07-26 08:40:17.663305+07', 'Xã Hùng Lợi', '02455', 'Xã');
INSERT INTO category."Wards" VALUES (2458, 75, 'system', '2023-07-26 08:40:17.663307+07', 'system', '2023-07-26 08:40:17.663307+07', 'Xã Trung Sơn', '02458', 'Xã');
INSERT INTO category."Wards" VALUES (2461, 75, 'system', '2023-07-26 08:40:17.66331+07', 'system', '2023-07-26 08:40:17.66331+07', 'Xã Tân Tiến', '02461', 'Xã');
INSERT INTO category."Wards" VALUES (2464, 75, 'system', '2023-07-26 08:40:17.663312+07', 'system', '2023-07-26 08:40:17.663312+07', 'Xã Tứ Quận', '02464', 'Xã');
INSERT INTO category."Wards" VALUES (2467, 75, 'system', '2023-07-26 08:40:17.663315+07', 'system', '2023-07-26 08:40:17.663315+07', 'Xã Đạo Viện', '02467', 'Xã');
INSERT INTO category."Wards" VALUES (2470, 75, 'system', '2023-07-26 08:40:17.663318+07', 'system', '2023-07-26 08:40:17.663318+07', 'Xã Tân Long', '02470', 'Xã');
INSERT INTO category."Wards" VALUES (2473, 75, 'system', '2023-07-26 08:40:17.66332+07', 'system', '2023-07-26 08:40:17.66332+07', 'Thị trấn Yên Sơn', '02473', 'Thị trấn');
INSERT INTO category."Wards" VALUES (2476, 75, 'system', '2023-07-26 08:40:17.663323+07', 'system', '2023-07-26 08:40:17.663323+07', 'Xã Kim Quan', '02476', 'Xã');
INSERT INTO category."Wards" VALUES (2479, 75, 'system', '2023-07-26 08:40:17.663325+07', 'system', '2023-07-26 08:40:17.663325+07', 'Xã Lang Quán', '02479', 'Xã');
INSERT INTO category."Wards" VALUES (2482, 75, 'system', '2023-07-26 08:40:17.663328+07', 'system', '2023-07-26 08:40:17.663328+07', 'Xã Phú Thịnh', '02482', 'Xã');
INSERT INTO category."Wards" VALUES (2485, 75, 'system', '2023-07-26 08:40:17.66333+07', 'system', '2023-07-26 08:40:17.66333+07', 'Xã Công Đa', '02485', 'Xã');
INSERT INTO category."Wards" VALUES (2488, 75, 'system', '2023-07-26 08:40:17.663333+07', 'system', '2023-07-26 08:40:17.663333+07', 'Xã Trung Môn', '02488', 'Xã');
INSERT INTO category."Wards" VALUES (2491, 75, 'system', '2023-07-26 08:40:17.663335+07', 'system', '2023-07-26 08:40:17.663335+07', 'Xã Chân Sơn', '02491', 'Xã');
INSERT INTO category."Wards" VALUES (2494, 75, 'system', '2023-07-26 08:40:17.663338+07', 'system', '2023-07-26 08:40:17.663338+07', 'Xã Thái Bình', '02494', 'Xã');
INSERT INTO category."Wards" VALUES (2497, 70, 'system', '2023-07-26 08:40:17.663098+07', 'system', '2023-07-26 08:40:17.663098+07', 'Xã Kim Phú', '02497', 'Xã');
INSERT INTO category."Wards" VALUES (2500, 75, 'system', '2023-07-26 08:40:17.66334+07', 'system', '2023-07-26 08:40:17.66334+07', 'Xã Tiến Bộ', '02500', 'Xã');
INSERT INTO category."Wards" VALUES (2503, 70, 'system', '2023-07-26 08:40:17.6631+07', 'system', '2023-07-26 08:40:17.6631+07', 'Xã An Khang', '02503', 'Xã');
INSERT INTO category."Wards" VALUES (2506, 75, 'system', '2023-07-26 08:40:17.663343+07', 'system', '2023-07-26 08:40:17.663343+07', 'Xã Mỹ Bằng', '02506', 'Xã');
INSERT INTO category."Wards" VALUES (2509, 70, 'system', '2023-07-26 08:40:17.663103+07', 'system', '2023-07-26 08:40:17.663103+07', 'Phường Mỹ Lâm', '02509', 'Phường');
INSERT INTO category."Wards" VALUES (2512, 70, 'system', '2023-07-26 08:40:17.663106+07', 'system', '2023-07-26 08:40:17.663106+07', 'Phường An Tường', '02512', 'Phường');
INSERT INTO category."Wards" VALUES (2515, 70, 'system', '2023-07-26 08:40:17.663109+07', 'system', '2023-07-26 08:40:17.663109+07', 'Xã Lưỡng Vượng', '02515', 'Xã');
INSERT INTO category."Wards" VALUES (2518, 75, 'system', '2023-07-26 08:40:17.663345+07', 'system', '2023-07-26 08:40:17.663346+07', 'Xã Hoàng Khai', '02518', 'Xã');
INSERT INTO category."Wards" VALUES (2521, 70, 'system', '2023-07-26 08:40:17.663112+07', 'system', '2023-07-26 08:40:17.663112+07', 'Xã Thái Long', '02521', 'Xã');
INSERT INTO category."Wards" VALUES (2524, 70, 'system', '2023-07-26 08:40:17.663114+07', 'system', '2023-07-26 08:40:17.663114+07', 'Phường Đội Cấn', '02524', 'Phường');
INSERT INTO category."Wards" VALUES (2527, 75, 'system', '2023-07-26 08:40:17.663348+07', 'system', '2023-07-26 08:40:17.663348+07', 'Xã Nhữ Hán', '02527', 'Xã');
INSERT INTO category."Wards" VALUES (2530, 75, 'system', '2023-07-26 08:40:17.663351+07', 'system', '2023-07-26 08:40:17.663351+07', 'Xã Nhữ Khê', '02530', 'Xã');
INSERT INTO category."Wards" VALUES (2533, 75, 'system', '2023-07-26 08:40:17.663353+07', 'system', '2023-07-26 08:40:17.663353+07', 'Xã Đội Bình', '02533', 'Xã');
INSERT INTO category."Wards" VALUES (2536, 76, 'system', '2023-07-26 08:40:17.663367+07', 'system', '2023-07-26 08:40:17.663367+07', 'Thị trấn Sơn Dương', '02536', 'Thị trấn');
INSERT INTO category."Wards" VALUES (2539, 76, 'system', '2023-07-26 08:40:17.66337+07', 'system', '2023-07-26 08:40:17.66337+07', 'Xã Trung Yên', '02539', 'Xã');
INSERT INTO category."Wards" VALUES (2542, 76, 'system', '2023-07-26 08:40:17.663373+07', 'system', '2023-07-26 08:40:17.663373+07', 'Xã Minh Thanh', '02542', 'Xã');
INSERT INTO category."Wards" VALUES (2545, 76, 'system', '2023-07-26 08:40:17.663375+07', 'system', '2023-07-26 08:40:17.663375+07', 'Xã Tân Trào', '02545', 'Xã');
INSERT INTO category."Wards" VALUES (2548, 76, 'system', '2023-07-26 08:40:17.663378+07', 'system', '2023-07-26 08:40:17.663378+07', 'Xã Vĩnh Lợi', '02548', 'Xã');
INSERT INTO category."Wards" VALUES (2551, 76, 'system', '2023-07-26 08:40:17.66338+07', 'system', '2023-07-26 08:40:17.66338+07', 'Xã Thượng Ấm', '02551', 'Xã');
INSERT INTO category."Wards" VALUES (2554, 76, 'system', '2023-07-26 08:40:17.663383+07', 'system', '2023-07-26 08:40:17.663383+07', 'Xã Bình Yên', '02554', 'Xã');
INSERT INTO category."Wards" VALUES (2557, 76, 'system', '2023-07-26 08:40:17.663385+07', 'system', '2023-07-26 08:40:17.663385+07', 'Xã Lương Thiện', '02557', 'Xã');
INSERT INTO category."Wards" VALUES (2560, 76, 'system', '2023-07-26 08:40:17.663388+07', 'system', '2023-07-26 08:40:17.663388+07', 'Xã Tú Thịnh', '02560', 'Xã');
INSERT INTO category."Wards" VALUES (2563, 76, 'system', '2023-07-26 08:40:17.663391+07', 'system', '2023-07-26 08:40:17.663391+07', 'Xã Cấp Tiến', '02563', 'Xã');
INSERT INTO category."Wards" VALUES (2566, 76, 'system', '2023-07-26 08:40:17.663394+07', 'system', '2023-07-26 08:40:17.663394+07', 'Xã Hợp Thành', '02566', 'Xã');
INSERT INTO category."Wards" VALUES (2569, 76, 'system', '2023-07-26 08:40:17.663397+07', 'system', '2023-07-26 08:40:17.663397+07', 'Xã Phúc Ứng', '02569', 'Xã');
INSERT INTO category."Wards" VALUES (2572, 76, 'system', '2023-07-26 08:40:17.663399+07', 'system', '2023-07-26 08:40:17.663399+07', 'Xã Đông Thọ', '02572', 'Xã');
INSERT INTO category."Wards" VALUES (2575, 76, 'system', '2023-07-26 08:40:17.663402+07', 'system', '2023-07-26 08:40:17.663402+07', 'Xã Kháng Nhật', '02575', 'Xã');
INSERT INTO category."Wards" VALUES (2578, 76, 'system', '2023-07-26 08:40:17.663404+07', 'system', '2023-07-26 08:40:17.663404+07', 'Xã Hợp Hòa', '02578', 'Xã');
INSERT INTO category."Wards" VALUES (2584, 76, 'system', '2023-07-26 08:40:17.663407+07', 'system', '2023-07-26 08:40:17.663407+07', 'Xã Quyết Thắng', '02584', 'Xã');
INSERT INTO category."Wards" VALUES (2587, 76, 'system', '2023-07-26 08:40:17.663409+07', 'system', '2023-07-26 08:40:17.663409+07', 'Xã Đồng Quý', '02587', 'Xã');
INSERT INTO category."Wards" VALUES (2590, 76, 'system', '2023-07-26 08:40:17.663412+07', 'system', '2023-07-26 08:40:17.663412+07', 'Xã Tân Thanh', '02590', 'Xã');
INSERT INTO category."Wards" VALUES (2593, 76, 'system', '2023-07-26 08:40:17.663415+07', 'system', '2023-07-26 08:40:17.663415+07', 'Xã Vân Sơn', '02593', 'Xã');
INSERT INTO category."Wards" VALUES (2596, 76, 'system', '2023-07-26 08:40:17.663417+07', 'system', '2023-07-26 08:40:17.663418+07', 'Xã Văn Phú', '02596', 'Xã');
INSERT INTO category."Wards" VALUES (2599, 76, 'system', '2023-07-26 08:40:17.66342+07', 'system', '2023-07-26 08:40:17.66342+07', 'Xã Chi Thiết', '02599', 'Xã');
INSERT INTO category."Wards" VALUES (2602, 76, 'system', '2023-07-26 08:40:17.663423+07', 'system', '2023-07-26 08:40:17.663423+07', 'Xã Đông Lợi', '02602', 'Xã');
INSERT INTO category."Wards" VALUES (2605, 76, 'system', '2023-07-26 08:40:17.663425+07', 'system', '2023-07-26 08:40:17.663426+07', 'Xã Thiện Kế', '02605', 'Xã');
INSERT INTO category."Wards" VALUES (2608, 76, 'system', '2023-07-26 08:40:17.663428+07', 'system', '2023-07-26 08:40:17.663428+07', 'Xã Hồng Lạc', '02608', 'Xã');
INSERT INTO category."Wards" VALUES (2611, 76, 'system', '2023-07-26 08:40:17.663431+07', 'system', '2023-07-26 08:40:17.663431+07', 'Xã Phú Lương', '02611', 'Xã');
INSERT INTO category."Wards" VALUES (2614, 76, 'system', '2023-07-26 08:40:17.663433+07', 'system', '2023-07-26 08:40:17.663433+07', 'Xã Ninh Lai', '02614', 'Xã');
INSERT INTO category."Wards" VALUES (2617, 76, 'system', '2023-07-26 08:40:17.663436+07', 'system', '2023-07-26 08:40:17.663436+07', 'Xã Đại Phú', '02617', 'Xã');
INSERT INTO category."Wards" VALUES (2620, 76, 'system', '2023-07-26 08:40:17.663438+07', 'system', '2023-07-26 08:40:17.663439+07', 'Xã Sơn Nam', '02620', 'Xã');
INSERT INTO category."Wards" VALUES (2623, 76, 'system', '2023-07-26 08:40:17.663441+07', 'system', '2023-07-26 08:40:17.663441+07', 'Xã Hào Phú', '02623', 'Xã');
INSERT INTO category."Wards" VALUES (2626, 76, 'system', '2023-07-26 08:40:17.663443+07', 'system', '2023-07-26 08:40:17.663443+07', 'Xã Tam Đa', '02626', 'Xã');
INSERT INTO category."Wards" VALUES (2632, 76, 'system', '2023-07-26 08:40:17.663446+07', 'system', '2023-07-26 08:40:17.663446+07', 'Xã Trường Sinh', '02632', 'Xã');
INSERT INTO category."Wards" VALUES (2635, 80, 'system', '2023-07-26 08:40:17.663449+07', 'system', '2023-07-26 08:40:17.663449+07', 'Phường Duyên Hải', '02635', 'Phường');
INSERT INTO category."Wards" VALUES (2641, 80, 'system', '2023-07-26 08:40:17.663452+07', 'system', '2023-07-26 08:40:17.663452+07', 'Phường Lào Cai', '02641', 'Phường');
INSERT INTO category."Wards" VALUES (2644, 80, 'system', '2023-07-26 08:40:17.663455+07', 'system', '2023-07-26 08:40:17.663455+07', 'Phường Cốc Lếu', '02644', 'Phường');
INSERT INTO category."Wards" VALUES (2647, 80, 'system', '2023-07-26 08:40:17.669859+07', 'system', '2023-07-26 08:40:17.66986+07', 'Phường Kim Tân', '02647', 'Phường');
INSERT INTO category."Wards" VALUES (2650, 80, 'system', '2023-07-26 08:40:17.669869+07', 'system', '2023-07-26 08:40:17.669869+07', 'Phường Bắc Lệnh', '02650', 'Phường');
INSERT INTO category."Wards" VALUES (2653, 80, 'system', '2023-07-26 08:40:17.669872+07', 'system', '2023-07-26 08:40:17.669872+07', 'Phường Pom Hán', '02653', 'Phường');
INSERT INTO category."Wards" VALUES (2656, 80, 'system', '2023-07-26 08:40:17.669876+07', 'system', '2023-07-26 08:40:17.669876+07', 'Phường Xuân Tăng', '02656', 'Phường');
INSERT INTO category."Wards" VALUES (2658, 80, 'system', '2023-07-26 08:40:17.669879+07', 'system', '2023-07-26 08:40:17.669879+07', 'Phường Bình Minh', '02658', 'Phường');
INSERT INTO category."Wards" VALUES (2659, 80, 'system', '2023-07-26 08:40:17.669882+07', 'system', '2023-07-26 08:40:17.669882+07', 'Xã Thống Nhất', '02659', 'Xã');
INSERT INTO category."Wards" VALUES (2662, 80, 'system', '2023-07-26 08:40:17.669885+07', 'system', '2023-07-26 08:40:17.669885+07', 'Xã Đồng Tuyển', '02662', 'Xã');
INSERT INTO category."Wards" VALUES (2665, 80, 'system', '2023-07-26 08:40:17.669888+07', 'system', '2023-07-26 08:40:17.669888+07', 'Xã Vạn Hoà', '02665', 'Xã');
INSERT INTO category."Wards" VALUES (2668, 80, 'system', '2023-07-26 08:40:17.669891+07', 'system', '2023-07-26 08:40:17.669891+07', 'Phường Bắc Cường', '02668', 'Phường');
INSERT INTO category."Wards" VALUES (2671, 80, 'system', '2023-07-26 08:40:17.669894+07', 'system', '2023-07-26 08:40:17.669894+07', 'Phường Nam Cường', '02671', 'Phường');
INSERT INTO category."Wards" VALUES (2674, 80, 'system', '2023-07-26 08:40:17.669897+07', 'system', '2023-07-26 08:40:17.669897+07', 'Xã Cam Đường', '02674', 'Xã');
INSERT INTO category."Wards" VALUES (2677, 80, 'system', '2023-07-26 08:40:17.6699+07', 'system', '2023-07-26 08:40:17.6699+07', 'Xã Tả Phời', '02677', 'Xã');
INSERT INTO category."Wards" VALUES (2680, 80, 'system', '2023-07-26 08:40:17.669902+07', 'system', '2023-07-26 08:40:17.669902+07', 'Xã Hợp Thành', '02680', 'Xã');
INSERT INTO category."Wards" VALUES (2683, 82, 'system', '2023-07-26 08:40:17.669922+07', 'system', '2023-07-26 08:40:17.669922+07', 'Thị trấn Bát Xát', '02683', 'Thị trấn');
INSERT INTO category."Wards" VALUES (2686, 82, 'system', '2023-07-26 08:40:17.669925+07', 'system', '2023-07-26 08:40:17.669926+07', 'Xã A Mú Sung', '02686', 'Xã');
INSERT INTO category."Wards" VALUES (2689, 82, 'system', '2023-07-26 08:40:17.669928+07', 'system', '2023-07-26 08:40:17.669928+07', 'Xã Nậm Chạc', '02689', 'Xã');
INSERT INTO category."Wards" VALUES (2692, 82, 'system', '2023-07-26 08:40:17.669931+07', 'system', '2023-07-26 08:40:17.669931+07', 'Xã A Lù', '02692', 'Xã');
INSERT INTO category."Wards" VALUES (2695, 82, 'system', '2023-07-26 08:40:17.669934+07', 'system', '2023-07-26 08:40:17.669934+07', 'Xã Trịnh Tường', '02695', 'Xã');
INSERT INTO category."Wards" VALUES (2701, 82, 'system', '2023-07-26 08:40:17.669937+07', 'system', '2023-07-26 08:40:17.669937+07', 'Xã Y Tý', '02701', 'Xã');
INSERT INTO category."Wards" VALUES (2704, 82, 'system', '2023-07-26 08:40:17.669939+07', 'system', '2023-07-26 08:40:17.669939+07', 'Xã Cốc Mỳ', '02704', 'Xã');
INSERT INTO category."Wards" VALUES (2707, 82, 'system', '2023-07-26 08:40:17.669942+07', 'system', '2023-07-26 08:40:17.669942+07', 'Xã Dền Sáng', '02707', 'Xã');
INSERT INTO category."Wards" VALUES (2710, 82, 'system', '2023-07-26 08:40:17.669945+07', 'system', '2023-07-26 08:40:17.669945+07', 'Xã Bản Vược', '02710', 'Xã');
INSERT INTO category."Wards" VALUES (2713, 82, 'system', '2023-07-26 08:40:17.669948+07', 'system', '2023-07-26 08:40:17.669948+07', 'Xã Sàng Ma Sáo', '02713', 'Xã');
INSERT INTO category."Wards" VALUES (2716, 82, 'system', '2023-07-26 08:40:17.669951+07', 'system', '2023-07-26 08:40:17.669951+07', 'Xã Bản Qua', '02716', 'Xã');
INSERT INTO category."Wards" VALUES (2719, 82, 'system', '2023-07-26 08:40:17.669953+07', 'system', '2023-07-26 08:40:17.669953+07', 'Xã Mường Vi', '02719', 'Xã');
INSERT INTO category."Wards" VALUES (2722, 82, 'system', '2023-07-26 08:40:17.669956+07', 'system', '2023-07-26 08:40:17.669956+07', 'Xã Dền Thàng', '02722', 'Xã');
INSERT INTO category."Wards" VALUES (2725, 82, 'system', '2023-07-26 08:40:17.669959+07', 'system', '2023-07-26 08:40:17.669959+07', 'Xã Bản Xèo', '02725', 'Xã');
INSERT INTO category."Wards" VALUES (2728, 82, 'system', '2023-07-26 08:40:17.669961+07', 'system', '2023-07-26 08:40:17.669961+07', 'Xã Mường Hum', '02728', 'Xã');
INSERT INTO category."Wards" VALUES (2731, 82, 'system', '2023-07-26 08:40:17.669964+07', 'system', '2023-07-26 08:40:17.669964+07', 'Xã Trung Lèng Hồ', '02731', 'Xã');
INSERT INTO category."Wards" VALUES (2734, 82, 'system', '2023-07-26 08:40:17.669967+07', 'system', '2023-07-26 08:40:17.669967+07', 'Xã Quang Kim', '02734', 'Xã');
INSERT INTO category."Wards" VALUES (2737, 82, 'system', '2023-07-26 08:40:17.669969+07', 'system', '2023-07-26 08:40:17.66997+07', 'Xã Pa Cheo', '02737', 'Xã');
INSERT INTO category."Wards" VALUES (2740, 82, 'system', '2023-07-26 08:40:17.669972+07', 'system', '2023-07-26 08:40:17.669972+07', 'Xã Nậm Pung', '02740', 'Xã');
INSERT INTO category."Wards" VALUES (2743, 82, 'system', '2023-07-26 08:40:17.669975+07', 'system', '2023-07-26 08:40:17.669975+07', 'Xã Phìn Ngan', '02743', 'Xã');
INSERT INTO category."Wards" VALUES (2746, 80, 'system', '2023-07-26 08:40:17.669919+07', 'system', '2023-07-26 08:40:17.66992+07', 'Xã Cốc San', '02746', 'Xã');
INSERT INTO category."Wards" VALUES (2749, 82, 'system', '2023-07-26 08:40:17.669978+07', 'system', '2023-07-26 08:40:17.669978+07', 'Xã Tòng Sành', '02749', 'Xã');
INSERT INTO category."Wards" VALUES (2752, 83, 'system', '2023-07-26 08:40:17.66998+07', 'system', '2023-07-26 08:40:17.66998+07', 'Xã Pha Long', '02752', 'Xã');
INSERT INTO category."Wards" VALUES (2755, 83, 'system', '2023-07-26 08:40:17.669984+07', 'system', '2023-07-26 08:40:17.669984+07', 'Xã Tả Ngải Chồ', '02755', 'Xã');
INSERT INTO category."Wards" VALUES (2758, 83, 'system', '2023-07-26 08:40:17.669987+07', 'system', '2023-07-26 08:40:17.669987+07', 'Xã Tung Chung Phố', '02758', 'Xã');
INSERT INTO category."Wards" VALUES (2761, 83, 'system', '2023-07-26 08:40:17.66999+07', 'system', '2023-07-26 08:40:17.66999+07', 'Thị trấn Mường Khương', '02761', 'Thị trấn');
INSERT INTO category."Wards" VALUES (2764, 83, 'system', '2023-07-26 08:40:17.669993+07', 'system', '2023-07-26 08:40:17.669993+07', 'Xã Dìn Chin', '02764', 'Xã');
INSERT INTO category."Wards" VALUES (2767, 83, 'system', '2023-07-26 08:40:17.669996+07', 'system', '2023-07-26 08:40:17.669996+07', 'Xã Tả Gia Khâu', '02767', 'Xã');
INSERT INTO category."Wards" VALUES (2770, 83, 'system', '2023-07-26 08:40:17.669999+07', 'system', '2023-07-26 08:40:17.669999+07', 'Xã Nậm Chảy', '02770', 'Xã');
INSERT INTO category."Wards" VALUES (2773, 83, 'system', '2023-07-26 08:40:17.670001+07', 'system', '2023-07-26 08:40:17.670001+07', 'Xã Nấm Lư', '02773', 'Xã');
INSERT INTO category."Wards" VALUES (2776, 83, 'system', '2023-07-26 08:40:17.670004+07', 'system', '2023-07-26 08:40:17.670004+07', 'Xã Lùng Khấu Nhin', '02776', 'Xã');
INSERT INTO category."Wards" VALUES (2779, 83, 'system', '2023-07-26 08:40:17.670006+07', 'system', '2023-07-26 08:40:17.670007+07', 'Xã Thanh Bình', '02779', 'Xã');
INSERT INTO category."Wards" VALUES (2782, 83, 'system', '2023-07-26 08:40:17.670009+07', 'system', '2023-07-26 08:40:17.670009+07', 'Xã Cao Sơn', '02782', 'Xã');
INSERT INTO category."Wards" VALUES (2785, 83, 'system', '2023-07-26 08:40:17.670012+07', 'system', '2023-07-26 08:40:17.670012+07', 'Xã Lùng Vai', '02785', 'Xã');
INSERT INTO category."Wards" VALUES (2788, 83, 'system', '2023-07-26 08:40:17.670014+07', 'system', '2023-07-26 08:40:17.670015+07', 'Xã Bản Lầu', '02788', 'Xã');
INSERT INTO category."Wards" VALUES (2791, 83, 'system', '2023-07-26 08:40:17.670017+07', 'system', '2023-07-26 08:40:17.670017+07', 'Xã La Pan Tẩn', '02791', 'Xã');
INSERT INTO category."Wards" VALUES (2794, 83, 'system', '2023-07-26 08:40:17.67002+07', 'system', '2023-07-26 08:40:17.67002+07', 'Xã Tả Thàng', '02794', 'Xã');
INSERT INTO category."Wards" VALUES (2797, 83, 'system', '2023-07-26 08:40:17.670022+07', 'system', '2023-07-26 08:40:17.670022+07', 'Xã Bản Sen', '02797', 'Xã');
INSERT INTO category."Wards" VALUES (2800, 84, 'system', '2023-07-26 08:40:17.670025+07', 'system', '2023-07-26 08:40:17.670025+07', 'Xã Nàn Sán', '02800', 'Xã');
INSERT INTO category."Wards" VALUES (2803, 84, 'system', '2023-07-26 08:40:17.670027+07', 'system', '2023-07-26 08:40:17.670027+07', 'Xã Thào Chư Phìn', '02803', 'Xã');
INSERT INTO category."Wards" VALUES (2806, 84, 'system', '2023-07-26 08:40:17.67003+07', 'system', '2023-07-26 08:40:17.67003+07', 'Xã Bản Mế', '02806', 'Xã');
INSERT INTO category."Wards" VALUES (2809, 84, 'system', '2023-07-26 08:40:17.670032+07', 'system', '2023-07-26 08:40:17.670032+07', 'Thị trấn Si Ma Cai', '02809', 'Thị trấn');
INSERT INTO category."Wards" VALUES (2812, 84, 'system', '2023-07-26 08:40:17.670035+07', 'system', '2023-07-26 08:40:17.670036+07', 'Xã Sán Chải', '02812', 'Xã');
INSERT INTO category."Wards" VALUES (2818, 84, 'system', '2023-07-26 08:40:17.670038+07', 'system', '2023-07-26 08:40:17.670038+07', 'Xã Lùng Thẩn', '02818', 'Xã');
INSERT INTO category."Wards" VALUES (2821, 84, 'system', '2023-07-26 08:40:17.670041+07', 'system', '2023-07-26 08:40:17.670041+07', 'Xã Cán Cấu', '02821', 'Xã');
INSERT INTO category."Wards" VALUES (2824, 84, 'system', '2023-07-26 08:40:17.670043+07', 'system', '2023-07-26 08:40:17.670044+07', 'Xã Sín Chéng', '02824', 'Xã');
INSERT INTO category."Wards" VALUES (2827, 84, 'system', '2023-07-26 08:40:17.670046+07', 'system', '2023-07-26 08:40:17.670046+07', 'Xã Quan Hồ Thẩn', '02827', 'Xã');
INSERT INTO category."Wards" VALUES (2836, 84, 'system', '2023-07-26 08:40:17.670049+07', 'system', '2023-07-26 08:40:17.670049+07', 'Xã Nàn Xín', '02836', 'Xã');
INSERT INTO category."Wards" VALUES (2839, 85, 'system', '2023-07-26 08:40:17.670052+07', 'system', '2023-07-26 08:40:17.670052+07', 'Thị trấn Bắc Hà', '02839', 'Thị trấn');
INSERT INTO category."Wards" VALUES (2842, 85, 'system', '2023-07-26 08:40:17.670055+07', 'system', '2023-07-26 08:40:17.670055+07', 'Xã Lùng Cải', '02842', 'Xã');
INSERT INTO category."Wards" VALUES (2848, 85, 'system', '2023-07-26 08:40:17.670057+07', 'system', '2023-07-26 08:40:17.670057+07', 'Xã Lùng Phình', '02848', 'Xã');
INSERT INTO category."Wards" VALUES (2851, 85, 'system', '2023-07-26 08:40:17.67006+07', 'system', '2023-07-26 08:40:17.67006+07', 'Xã Tả Van Chư', '02851', 'Xã');
INSERT INTO category."Wards" VALUES (2854, 85, 'system', '2023-07-26 08:40:17.670063+07', 'system', '2023-07-26 08:40:17.670063+07', 'Xã Tả Củ Tỷ', '02854', 'Xã');
INSERT INTO category."Wards" VALUES (2857, 85, 'system', '2023-07-26 08:40:17.670065+07', 'system', '2023-07-26 08:40:17.670065+07', 'Xã Thải Giàng Phố', '02857', 'Xã');
INSERT INTO category."Wards" VALUES (2863, 85, 'system', '2023-07-26 08:40:17.670068+07', 'system', '2023-07-26 08:40:17.670068+07', 'Xã Hoàng Thu Phố', '02863', 'Xã');
INSERT INTO category."Wards" VALUES (2866, 85, 'system', '2023-07-26 08:40:17.670071+07', 'system', '2023-07-26 08:40:17.670071+07', 'Xã Bản Phố', '02866', 'Xã');
INSERT INTO category."Wards" VALUES (2869, 85, 'system', '2023-07-26 08:40:17.670074+07', 'system', '2023-07-26 08:40:17.670074+07', 'Xã Bản Liền', '02869', 'Xã');
INSERT INTO category."Wards" VALUES (2872, 85, 'system', '2023-07-26 08:40:17.670076+07', 'system', '2023-07-26 08:40:17.670076+07', 'Xã Tà Chải', '02872', 'Xã');
INSERT INTO category."Wards" VALUES (2875, 85, 'system', '2023-07-26 08:40:17.670079+07', 'system', '2023-07-26 08:40:17.670079+07', 'Xã Na Hối', '02875', 'Xã');
INSERT INTO category."Wards" VALUES (2878, 85, 'system', '2023-07-26 08:40:17.670082+07', 'system', '2023-07-26 08:40:17.670082+07', 'Xã Cốc Ly', '02878', 'Xã');
INSERT INTO category."Wards" VALUES (2881, 85, 'system', '2023-07-26 08:40:17.670085+07', 'system', '2023-07-26 08:40:17.670085+07', 'Xã Nậm Mòn', '02881', 'Xã');
INSERT INTO category."Wards" VALUES (2884, 85, 'system', '2023-07-26 08:40:17.670088+07', 'system', '2023-07-26 08:40:17.670088+07', 'Xã Nậm Đét', '02884', 'Xã');
INSERT INTO category."Wards" VALUES (2887, 85, 'system', '2023-07-26 08:40:17.67009+07', 'system', '2023-07-26 08:40:17.67009+07', 'Xã Nậm Khánh', '02887', 'Xã');
INSERT INTO category."Wards" VALUES (2890, 85, 'system', '2023-07-26 08:40:17.670093+07', 'system', '2023-07-26 08:40:17.670093+07', 'Xã Bảo Nhai', '02890', 'Xã');
INSERT INTO category."Wards" VALUES (2893, 85, 'system', '2023-07-26 08:40:17.670095+07', 'system', '2023-07-26 08:40:17.670095+07', 'Xã Nậm Lúc', '02893', 'Xã');
INSERT INTO category."Wards" VALUES (2896, 85, 'system', '2023-07-26 08:40:17.670098+07', 'system', '2023-07-26 08:40:17.670098+07', 'Xã Cốc Lầu', '02896', 'Xã');
INSERT INTO category."Wards" VALUES (2899, 85, 'system', '2023-07-26 08:40:17.6701+07', 'system', '2023-07-26 08:40:17.6701+07', 'Xã Bản Cái', '02899', 'Xã');
INSERT INTO category."Wards" VALUES (2902, 86, 'system', '2023-07-26 08:40:17.670103+07', 'system', '2023-07-26 08:40:17.670103+07', 'Thị trấn N.T Phong Hải', '02902', 'Thị trấn');
INSERT INTO category."Wards" VALUES (2905, 86, 'system', '2023-07-26 08:40:17.670106+07', 'system', '2023-07-26 08:40:17.670106+07', 'Thị trấn Phố Lu', '02905', 'Thị trấn');
INSERT INTO category."Wards" VALUES (2908, 86, 'system', '2023-07-26 08:40:17.670109+07', 'system', '2023-07-26 08:40:17.670109+07', 'Thị trấn Tằng Loỏng', '02908', 'Thị trấn');
INSERT INTO category."Wards" VALUES (2911, 86, 'system', '2023-07-26 08:40:17.670112+07', 'system', '2023-07-26 08:40:17.670112+07', 'Xã Bản Phiệt', '02911', 'Xã');
INSERT INTO category."Wards" VALUES (2914, 86, 'system', '2023-07-26 08:40:17.670114+07', 'system', '2023-07-26 08:40:17.670114+07', 'Xã Bản Cầm', '02914', 'Xã');
INSERT INTO category."Wards" VALUES (2917, 86, 'system', '2023-07-26 08:40:17.670117+07', 'system', '2023-07-26 08:40:17.670117+07', 'Xã Thái Niên', '02917', 'Xã');
INSERT INTO category."Wards" VALUES (2920, 86, 'system', '2023-07-26 08:40:17.670119+07', 'system', '2023-07-26 08:40:17.670119+07', 'Xã Phong Niên', '02920', 'Xã');
INSERT INTO category."Wards" VALUES (2923, 86, 'system', '2023-07-26 08:40:17.670122+07', 'system', '2023-07-26 08:40:17.670122+07', 'Xã Gia Phú', '02923', 'Xã');
INSERT INTO category."Wards" VALUES (2926, 86, 'system', '2023-07-26 08:40:17.670125+07', 'system', '2023-07-26 08:40:17.670125+07', 'Xã Xuân Quang', '02926', 'Xã');
INSERT INTO category."Wards" VALUES (2929, 86, 'system', '2023-07-26 08:40:17.670127+07', 'system', '2023-07-26 08:40:17.670127+07', 'Xã Sơn Hải', '02929', 'Xã');
INSERT INTO category."Wards" VALUES (2932, 86, 'system', '2023-07-26 08:40:17.67013+07', 'system', '2023-07-26 08:40:17.67013+07', 'Xã Xuân Giao', '02932', 'Xã');
INSERT INTO category."Wards" VALUES (2935, 86, 'system', '2023-07-26 08:40:17.670132+07', 'system', '2023-07-26 08:40:17.670132+07', 'Xã Trì Quang', '02935', 'Xã');
INSERT INTO category."Wards" VALUES (2938, 86, 'system', '2023-07-26 08:40:17.670134+07', 'system', '2023-07-26 08:40:17.670135+07', 'Xã Sơn Hà', '02938', 'Xã');
INSERT INTO category."Wards" VALUES (2944, 86, 'system', '2023-07-26 08:40:17.670137+07', 'system', '2023-07-26 08:40:17.670137+07', 'Xã Phú Nhuận', '02944', 'Xã');
INSERT INTO category."Wards" VALUES (2947, 87, 'system', '2023-07-26 08:40:17.67014+07', 'system', '2023-07-26 08:40:17.67014+07', 'Thị trấn Phố Ràng', '02947', 'Thị trấn');
INSERT INTO category."Wards" VALUES (2950, 87, 'system', '2023-07-26 08:40:17.670143+07', 'system', '2023-07-26 08:40:17.670143+07', 'Xã Tân Tiến', '02950', 'Xã');
INSERT INTO category."Wards" VALUES (2953, 87, 'system', '2023-07-26 08:40:17.670145+07', 'system', '2023-07-26 08:40:17.670145+07', 'Xã Nghĩa Đô', '02953', 'Xã');
INSERT INTO category."Wards" VALUES (2956, 87, 'system', '2023-07-26 08:40:17.670148+07', 'system', '2023-07-26 08:40:17.670148+07', 'Xã Vĩnh Yên', '02956', 'Xã');
INSERT INTO category."Wards" VALUES (2959, 87, 'system', '2023-07-26 08:40:17.670151+07', 'system', '2023-07-26 08:40:17.670151+07', 'Xã Điện Quan', '02959', 'Xã');
INSERT INTO category."Wards" VALUES (2962, 87, 'system', '2023-07-26 08:40:17.670153+07', 'system', '2023-07-26 08:40:17.670154+07', 'Xã Xuân Hoà', '02962', 'Xã');
INSERT INTO category."Wards" VALUES (2965, 87, 'system', '2023-07-26 08:40:17.670156+07', 'system', '2023-07-26 08:40:17.670156+07', 'Xã Tân Dương', '02965', 'Xã');
INSERT INTO category."Wards" VALUES (2968, 87, 'system', '2023-07-26 08:40:17.670159+07', 'system', '2023-07-26 08:40:17.670159+07', 'Xã Thượng Hà', '02968', 'Xã');
INSERT INTO category."Wards" VALUES (2971, 87, 'system', '2023-07-26 08:40:17.670162+07', 'system', '2023-07-26 08:40:17.670162+07', 'Xã Kim Sơn', '02971', 'Xã');
INSERT INTO category."Wards" VALUES (2974, 87, 'system', '2023-07-26 08:40:17.670164+07', 'system', '2023-07-26 08:40:17.670164+07', 'Xã Cam Cọn', '02974', 'Xã');
INSERT INTO category."Wards" VALUES (2977, 87, 'system', '2023-07-26 08:40:17.670167+07', 'system', '2023-07-26 08:40:17.670167+07', 'Xã Minh Tân', '02977', 'Xã');
INSERT INTO category."Wards" VALUES (2980, 87, 'system', '2023-07-26 08:40:17.670169+07', 'system', '2023-07-26 08:40:17.670169+07', 'Xã Xuân Thượng', '02980', 'Xã');
INSERT INTO category."Wards" VALUES (2983, 87, 'system', '2023-07-26 08:40:17.670172+07', 'system', '2023-07-26 08:40:17.670172+07', 'Xã Việt Tiến', '02983', 'Xã');
INSERT INTO category."Wards" VALUES (2986, 87, 'system', '2023-07-26 08:40:17.670175+07', 'system', '2023-07-26 08:40:17.670175+07', 'Xã Yên Sơn', '02986', 'Xã');
INSERT INTO category."Wards" VALUES (2989, 87, 'system', '2023-07-26 08:40:17.670178+07', 'system', '2023-07-26 08:40:17.670178+07', 'Xã Bảo Hà', '02989', 'Xã');
INSERT INTO category."Wards" VALUES (2992, 87, 'system', '2023-07-26 08:40:17.67018+07', 'system', '2023-07-26 08:40:17.670181+07', 'Xã Lương Sơn', '02992', 'Xã');
INSERT INTO category."Wards" VALUES (2998, 87, 'system', '2023-07-26 08:40:17.670183+07', 'system', '2023-07-26 08:40:17.670183+07', 'Xã Phúc Khánh', '02998', 'Xã');
INSERT INTO category."Wards" VALUES (3001, 88, 'system', '2023-07-26 08:40:17.670186+07', 'system', '2023-07-26 08:40:17.670186+07', 'Phường Sa Pa', '03001', 'Phường');
INSERT INTO category."Wards" VALUES (3002, 88, 'system', '2023-07-26 08:40:17.670189+07', 'system', '2023-07-26 08:40:17.670189+07', 'Phường Sa Pả', '03002', 'Phường');
INSERT INTO category."Wards" VALUES (3003, 88, 'system', '2023-07-26 08:40:17.670192+07', 'system', '2023-07-26 08:40:17.670192+07', 'Phường Ô Quý Hồ', '03003', 'Phường');
INSERT INTO category."Wards" VALUES (3004, 88, 'system', '2023-07-26 08:40:17.670195+07', 'system', '2023-07-26 08:40:17.670195+07', 'Xã Ngũ Chỉ Sơn', '03004', 'Xã');
INSERT INTO category."Wards" VALUES (3006, 88, 'system', '2023-07-26 08:40:17.670197+07', 'system', '2023-07-26 08:40:17.670197+07', 'Phường Phan Si Păng', '03006', 'Phường');
INSERT INTO category."Wards" VALUES (3010, 88, 'system', '2023-07-26 08:40:17.6702+07', 'system', '2023-07-26 08:40:17.6702+07', 'Xã Trung Chải', '03010', 'Xã');
INSERT INTO category."Wards" VALUES (3013, 88, 'system', '2023-07-26 08:40:17.670203+07', 'system', '2023-07-26 08:40:17.670203+07', 'Xã Tả Phìn', '03013', 'Xã');
INSERT INTO category."Wards" VALUES (3016, 88, 'system', '2023-07-26 08:40:17.670206+07', 'system', '2023-07-26 08:40:17.670206+07', 'Phường Hàm Rồng', '03016', 'Phường');
INSERT INTO category."Wards" VALUES (3019, 88, 'system', '2023-07-26 08:40:17.670209+07', 'system', '2023-07-26 08:40:17.670209+07', 'Xã Hoàng Liên', '03019', 'Xã');
INSERT INTO category."Wards" VALUES (3022, 88, 'system', '2023-07-26 08:40:17.670211+07', 'system', '2023-07-26 08:40:17.670211+07', 'Xã Thanh Bình', '03022', 'Xã');
INSERT INTO category."Wards" VALUES (3028, 88, 'system', '2023-07-26 08:40:17.670214+07', 'system', '2023-07-26 08:40:17.670214+07', 'Phường Cầu Mây', '03028', 'Phường');
INSERT INTO category."Wards" VALUES (3037, 88, 'system', '2023-07-26 08:40:17.670217+07', 'system', '2023-07-26 08:40:17.670217+07', 'Xã Mường Hoa', '03037', 'Xã');
INSERT INTO category."Wards" VALUES (3040, 88, 'system', '2023-07-26 08:40:17.67022+07', 'system', '2023-07-26 08:40:17.67022+07', 'Xã Tả Van', '03040', 'Xã');
INSERT INTO category."Wards" VALUES (3043, 88, 'system', '2023-07-26 08:40:17.670222+07', 'system', '2023-07-26 08:40:17.670222+07', 'Xã Mường Bo', '03043', 'Xã');
INSERT INTO category."Wards" VALUES (3046, 88, 'system', '2023-07-26 08:40:17.670225+07', 'system', '2023-07-26 08:40:17.670225+07', 'Xã Bản Hồ', '03046', 'Xã');
INSERT INTO category."Wards" VALUES (3052, 88, 'system', '2023-07-26 08:40:17.670228+07', 'system', '2023-07-26 08:40:17.670228+07', 'Xã Liên Minh', '03052', 'Xã');
INSERT INTO category."Wards" VALUES (3055, 89, 'system', '2023-07-26 08:40:17.67023+07', 'system', '2023-07-26 08:40:17.67023+07', 'Thị trấn Khánh Yên', '03055', 'Thị trấn');
INSERT INTO category."Wards" VALUES (3061, 89, 'system', '2023-07-26 08:40:17.670233+07', 'system', '2023-07-26 08:40:17.670233+07', 'Xã Võ Lao', '03061', 'Xã');
INSERT INTO category."Wards" VALUES (3064, 89, 'system', '2023-07-26 08:40:17.670236+07', 'system', '2023-07-26 08:40:17.670236+07', 'Xã Sơn Thuỷ', '03064', 'Xã');
INSERT INTO category."Wards" VALUES (3067, 89, 'system', '2023-07-26 08:40:17.670238+07', 'system', '2023-07-26 08:40:17.670238+07', 'Xã Nậm Mả', '03067', 'Xã');
INSERT INTO category."Wards" VALUES (3070, 89, 'system', '2023-07-26 08:40:17.670241+07', 'system', '2023-07-26 08:40:17.670241+07', 'Xã Tân Thượng', '03070', 'Xã');
INSERT INTO category."Wards" VALUES (3073, 89, 'system', '2023-07-26 08:40:17.670244+07', 'system', '2023-07-26 08:40:17.670244+07', 'Xã Nậm Rạng', '03073', 'Xã');
INSERT INTO category."Wards" VALUES (3076, 89, 'system', '2023-07-26 08:40:17.670246+07', 'system', '2023-07-26 08:40:17.670246+07', 'Xã Nậm Chầy', '03076', 'Xã');
INSERT INTO category."Wards" VALUES (3079, 89, 'system', '2023-07-26 08:40:17.670249+07', 'system', '2023-07-26 08:40:17.670249+07', 'Xã Tân An', '03079', 'Xã');
INSERT INTO category."Wards" VALUES (3082, 89, 'system', '2023-07-26 08:40:17.670252+07', 'system', '2023-07-26 08:40:17.670252+07', 'Xã Khánh Yên Thượng', '03082', 'Xã');
INSERT INTO category."Wards" VALUES (3085, 89, 'system', '2023-07-26 08:40:17.670254+07', 'system', '2023-07-26 08:40:17.670254+07', 'Xã Nậm Xé', '03085', 'Xã');
INSERT INTO category."Wards" VALUES (3088, 89, 'system', '2023-07-26 08:40:17.670257+07', 'system', '2023-07-26 08:40:17.670257+07', 'Xã Dần Thàng', '03088', 'Xã');
INSERT INTO category."Wards" VALUES (3091, 89, 'system', '2023-07-26 08:40:17.670259+07', 'system', '2023-07-26 08:40:17.67026+07', 'Xã Chiềng Ken', '03091', 'Xã');
INSERT INTO category."Wards" VALUES (3094, 89, 'system', '2023-07-26 08:40:17.670262+07', 'system', '2023-07-26 08:40:17.670262+07', 'Xã Làng Giàng', '03094', 'Xã');
INSERT INTO category."Wards" VALUES (3097, 89, 'system', '2023-07-26 08:40:17.670265+07', 'system', '2023-07-26 08:40:17.670265+07', 'Xã Hoà Mạc', '03097', 'Xã');
INSERT INTO category."Wards" VALUES (3100, 89, 'system', '2023-07-26 08:40:17.670267+07', 'system', '2023-07-26 08:40:17.670267+07', 'Xã Khánh Yên Trung', '03100', 'Xã');
INSERT INTO category."Wards" VALUES (3103, 89, 'system', '2023-07-26 08:40:17.67027+07', 'system', '2023-07-26 08:40:17.67027+07', 'Xã Khánh Yên Hạ', '03103', 'Xã');
INSERT INTO category."Wards" VALUES (3106, 89, 'system', '2023-07-26 08:40:17.670273+07', 'system', '2023-07-26 08:40:17.670273+07', 'Xã Dương Quỳ', '03106', 'Xã');
INSERT INTO category."Wards" VALUES (3109, 89, 'system', '2023-07-26 08:40:17.670276+07', 'system', '2023-07-26 08:40:17.670276+07', 'Xã Nậm Tha', '03109', 'Xã');
INSERT INTO category."Wards" VALUES (3112, 89, 'system', '2023-07-26 08:40:17.670279+07', 'system', '2023-07-26 08:40:17.670279+07', 'Xã Minh Lương', '03112', 'Xã');
INSERT INTO category."Wards" VALUES (3115, 89, 'system', '2023-07-26 08:40:17.670281+07', 'system', '2023-07-26 08:40:17.670281+07', 'Xã Thẩm Dương', '03115', 'Xã');
INSERT INTO category."Wards" VALUES (3118, 89, 'system', '2023-07-26 08:40:17.670284+07', 'system', '2023-07-26 08:40:17.670284+07', 'Xã Liêm Phú', '03118', 'Xã');
INSERT INTO category."Wards" VALUES (3121, 89, 'system', '2023-07-26 08:40:17.670287+07', 'system', '2023-07-26 08:40:17.670287+07', 'Xã Nậm Xây', '03121', 'Xã');
INSERT INTO category."Wards" VALUES (3124, 94, 'system', '2023-07-26 08:40:17.670289+07', 'system', '2023-07-26 08:40:17.670289+07', 'Phường Noong Bua', '03124', 'Phường');
INSERT INTO category."Wards" VALUES (3127, 94, 'system', '2023-07-26 08:40:17.670292+07', 'system', '2023-07-26 08:40:17.670292+07', 'Phường Him Lam', '03127', 'Phường');
INSERT INTO category."Wards" VALUES (3130, 94, 'system', '2023-07-26 08:40:17.670295+07', 'system', '2023-07-26 08:40:17.670295+07', 'Phường Thanh Bình', '03130', 'Phường');
INSERT INTO category."Wards" VALUES (3133, 94, 'system', '2023-07-26 08:40:17.670298+07', 'system', '2023-07-26 08:40:17.670298+07', 'Phường Tân Thanh', '03133', 'Phường');
INSERT INTO category."Wards" VALUES (3136, 94, 'system', '2023-07-26 08:40:17.6703+07', 'system', '2023-07-26 08:40:17.6703+07', 'Phường Mường Thanh', '03136', 'Phường');
INSERT INTO category."Wards" VALUES (3139, 94, 'system', '2023-07-26 08:40:17.670303+07', 'system', '2023-07-26 08:40:17.670303+07', 'Phường Nam Thanh', '03139', 'Phường');
INSERT INTO category."Wards" VALUES (3142, 94, 'system', '2023-07-26 08:40:17.670306+07', 'system', '2023-07-26 08:40:17.670306+07', 'Phường Thanh Trường', '03142', 'Phường');
INSERT INTO category."Wards" VALUES (3145, 94, 'system', '2023-07-26 08:40:17.670309+07', 'system', '2023-07-26 08:40:17.670309+07', 'Xã Thanh Minh', '03145', 'Xã');
INSERT INTO category."Wards" VALUES (3148, 95, 'system', '2023-07-26 08:40:17.670322+07', 'system', '2023-07-26 08:40:17.670322+07', 'Phường Sông Đà', '03148', 'Phường');
INSERT INTO category."Wards" VALUES (3151, 95, 'system', '2023-07-26 08:40:17.670325+07', 'system', '2023-07-26 08:40:17.670325+07', 'Phường Na Lay', '03151', 'Phường');
INSERT INTO category."Wards" VALUES (3154, 96, 'system', '2023-07-26 08:40:17.67033+07', 'system', '2023-07-26 08:40:17.67033+07', 'Xã Sín Thầu', '03154', 'Xã');
INSERT INTO category."Wards" VALUES (3155, 96, 'system', '2023-07-26 08:40:17.670333+07', 'system', '2023-07-26 08:40:17.670333+07', 'Xã Sen Thượng', '03155', 'Xã');
INSERT INTO category."Wards" VALUES (3156, 103, 'system', '2023-07-26 08:40:17.670624+07', 'system', '2023-07-26 08:40:17.670624+07', 'Xã Nậm Tin', '03156', 'Xã');
INSERT INTO category."Wards" VALUES (3157, 96, 'system', '2023-07-26 08:40:17.670336+07', 'system', '2023-07-26 08:40:17.670336+07', 'Xã Chung Chải', '03157', 'Xã');
INSERT INTO category."Wards" VALUES (3158, 96, 'system', '2023-07-26 08:40:17.670338+07', 'system', '2023-07-26 08:40:17.670338+07', 'Xã Leng Su Sìn', '03158', 'Xã');
INSERT INTO category."Wards" VALUES (3159, 96, 'system', '2023-07-26 08:40:17.670341+07', 'system', '2023-07-26 08:40:17.670341+07', 'Xã Pá Mỳ', '03159', 'Xã');
INSERT INTO category."Wards" VALUES (3160, 96, 'system', '2023-07-26 08:40:17.670344+07', 'system', '2023-07-26 08:40:17.670344+07', 'Xã Mường Nhé', '03160', 'Xã');
INSERT INTO category."Wards" VALUES (3161, 96, 'system', '2023-07-26 08:40:17.670346+07', 'system', '2023-07-26 08:40:17.670346+07', 'Xã Nậm Vì', '03161', 'Xã');
INSERT INTO category."Wards" VALUES (3162, 96, 'system', '2023-07-26 08:40:17.670349+07', 'system', '2023-07-26 08:40:17.670349+07', 'Xã Nậm Kè', '03162', 'Xã');
INSERT INTO category."Wards" VALUES (3163, 96, 'system', '2023-07-26 08:40:17.670352+07', 'system', '2023-07-26 08:40:17.670352+07', 'Xã Mường Toong', '03163', 'Xã');
INSERT INTO category."Wards" VALUES (3164, 96, 'system', '2023-07-26 08:40:17.670354+07', 'system', '2023-07-26 08:40:17.670354+07', 'Xã Quảng Lâm', '03164', 'Xã');
INSERT INTO category."Wards" VALUES (3165, 103, 'system', '2023-07-26 08:40:17.670626+07', 'system', '2023-07-26 08:40:17.670626+07', 'Xã Pa Tần', '03165', 'Xã');
INSERT INTO category."Wards" VALUES (3166, 103, 'system', '2023-07-26 08:40:17.670629+07', 'system', '2023-07-26 08:40:17.670629+07', 'Xã Chà Cang', '03166', 'Xã');
INSERT INTO category."Wards" VALUES (3167, 103, 'system', '2023-07-26 08:40:17.670631+07', 'system', '2023-07-26 08:40:17.670631+07', 'Xã Na Cô Sa', '03167', 'Xã');
INSERT INTO category."Wards" VALUES (3168, 103, 'system', '2023-07-26 08:40:17.670634+07', 'system', '2023-07-26 08:40:17.670634+07', 'Xã Nà Khoa', '03168', 'Xã');
INSERT INTO category."Wards" VALUES (3169, 103, 'system', '2023-07-26 08:40:17.670636+07', 'system', '2023-07-26 08:40:17.670637+07', 'Xã Nà Hỳ', '03169', 'Xã');
INSERT INTO category."Wards" VALUES (3170, 103, 'system', '2023-07-26 08:40:17.670639+07', 'system', '2023-07-26 08:40:17.670639+07', 'Xã Nà Bủng', '03170', 'Xã');
INSERT INTO category."Wards" VALUES (3171, 103, 'system', '2023-07-26 08:40:17.670642+07', 'system', '2023-07-26 08:40:17.670642+07', 'Xã Nậm Nhừ', '03171', 'Xã');
INSERT INTO category."Wards" VALUES (3172, 97, 'system', '2023-07-26 08:40:17.670359+07', 'system', '2023-07-26 08:40:17.67036+07', 'Thị Trấn Mường Chà', '03172', 'Thị trấn');
INSERT INTO category."Wards" VALUES (3173, 103, 'system', '2023-07-26 08:40:17.670644+07', 'system', '2023-07-26 08:40:17.670644+07', 'Xã Nậm Chua', '03173', 'Xã');
INSERT INTO category."Wards" VALUES (3174, 103, 'system', '2023-07-26 08:40:17.670647+07', 'system', '2023-07-26 08:40:17.670647+07', 'Xã Nậm Khăn', '03174', 'Xã');
INSERT INTO category."Wards" VALUES (3175, 103, 'system', '2023-07-26 08:40:17.670649+07', 'system', '2023-07-26 08:40:17.670649+07', 'Xã Chà Tở', '03175', 'Xã');
INSERT INTO category."Wards" VALUES (3176, 103, 'system', '2023-07-26 08:40:17.670652+07', 'system', '2023-07-26 08:40:17.670652+07', 'Xã Vàng Đán', '03176', 'Xã');
INSERT INTO category."Wards" VALUES (3177, 96, 'system', '2023-07-26 08:40:17.670357+07', 'system', '2023-07-26 08:40:17.670357+07', 'Xã Huổi Lếnh', '03177', 'Xã');
INSERT INTO category."Wards" VALUES (3178, 97, 'system', '2023-07-26 08:40:17.670363+07', 'system', '2023-07-26 08:40:17.670363+07', 'Xã Xá Tổng', '03178', 'Xã');
INSERT INTO category."Wards" VALUES (3181, 97, 'system', '2023-07-26 08:40:17.670365+07', 'system', '2023-07-26 08:40:17.670365+07', 'Xã Mường Tùng', '03181', 'Xã');
INSERT INTO category."Wards" VALUES (3184, 95, 'system', '2023-07-26 08:40:17.670328+07', 'system', '2023-07-26 08:40:17.670328+07', 'Xã Lay Nưa', '03184', 'Xã');
INSERT INTO category."Wards" VALUES (3187, 103, 'system', '2023-07-26 08:40:17.670655+07', 'system', '2023-07-26 08:40:17.670655+07', 'Xã Chà Nưa', '03187', 'Xã');
INSERT INTO category."Wards" VALUES (3190, 97, 'system', '2023-07-26 08:40:17.670368+07', 'system', '2023-07-26 08:40:17.670368+07', 'Xã Hừa Ngài', '03190', 'Xã');
INSERT INTO category."Wards" VALUES (3191, 97, 'system', '2023-07-26 08:40:17.670371+07', 'system', '2023-07-26 08:40:17.670371+07', 'Xã Huổi Mí', '03191', 'Xã');
INSERT INTO category."Wards" VALUES (3193, 97, 'system', '2023-07-26 08:40:17.670374+07', 'system', '2023-07-26 08:40:17.670374+07', 'Xã Pa Ham', '03193', 'Xã');
INSERT INTO category."Wards" VALUES (3194, 97, 'system', '2023-07-26 08:40:17.670377+07', 'system', '2023-07-26 08:40:17.670377+07', 'Xã Nậm Nèn', '03194', 'Xã');
INSERT INTO category."Wards" VALUES (3196, 97, 'system', '2023-07-26 08:40:17.670379+07', 'system', '2023-07-26 08:40:17.670379+07', 'Xã Huổi Lèng', '03196', 'Xã');
INSERT INTO category."Wards" VALUES (3197, 97, 'system', '2023-07-26 08:40:17.670382+07', 'system', '2023-07-26 08:40:17.670382+07', 'Xã Sa Lông', '03197', 'Xã');
INSERT INTO category."Wards" VALUES (3198, 103, 'system', '2023-07-26 08:40:17.670657+07', 'system', '2023-07-26 08:40:17.670657+07', 'Xã Phìn Hồ', '03198', 'Xã');
INSERT INTO category."Wards" VALUES (3199, 103, 'system', '2023-07-26 08:40:17.67066+07', 'system', '2023-07-26 08:40:17.67066+07', 'Xã Si Pa Phìn', '03199', 'Xã');
INSERT INTO category."Wards" VALUES (3200, 97, 'system', '2023-07-26 08:40:17.670384+07', 'system', '2023-07-26 08:40:17.670384+07', 'Xã Ma Thì Hồ', '03200', 'Xã');
INSERT INTO category."Wards" VALUES (3201, 97, 'system', '2023-07-26 08:40:17.670387+07', 'system', '2023-07-26 08:40:17.670387+07', 'Xã Na Sang', '03201', 'Xã');
INSERT INTO category."Wards" VALUES (3202, 97, 'system', '2023-07-26 08:40:17.67039+07', 'system', '2023-07-26 08:40:17.67039+07', 'Xã Mường Mươn', '03202', 'Xã');
INSERT INTO category."Wards" VALUES (3203, 101, 'system', '2023-07-26 08:40:17.670546+07', 'system', '2023-07-26 08:40:17.670546+07', 'Thị trấn Điện Biên Đông', '03203', 'Thị trấn');
INSERT INTO category."Wards" VALUES (3205, 101, 'system', '2023-07-26 08:40:17.670561+07', 'system', '2023-07-26 08:40:17.670561+07', 'Xã Na Son', '03205', 'Xã');
INSERT INTO category."Wards" VALUES (3208, 101, 'system', '2023-07-26 08:40:17.670564+07', 'system', '2023-07-26 08:40:17.670564+07', 'Xã Phì Nhừ', '03208', 'Xã');
INSERT INTO category."Wards" VALUES (3211, 101, 'system', '2023-07-26 08:40:17.670567+07', 'system', '2023-07-26 08:40:17.670567+07', 'Xã Chiềng Sơ', '03211', 'Xã');
INSERT INTO category."Wards" VALUES (3214, 101, 'system', '2023-07-26 08:40:17.670569+07', 'system', '2023-07-26 08:40:17.67057+07', 'Xã Mường Luân', '03214', 'Xã');
INSERT INTO category."Wards" VALUES (3217, 98, 'system', '2023-07-26 08:40:17.670392+07', 'system', '2023-07-26 08:40:17.670392+07', 'Thị trấn Tủa Chùa', '03217', 'Thị trấn');
INSERT INTO category."Wards" VALUES (3220, 98, 'system', '2023-07-26 08:40:17.670395+07', 'system', '2023-07-26 08:40:17.670395+07', 'Xã Huổi Só', '03220', 'Xã');
INSERT INTO category."Wards" VALUES (3223, 98, 'system', '2023-07-26 08:40:17.670398+07', 'system', '2023-07-26 08:40:17.670398+07', 'Xã Xín Chải', '03223', 'Xã');
INSERT INTO category."Wards" VALUES (3226, 98, 'system', '2023-07-26 08:40:17.670401+07', 'system', '2023-07-26 08:40:17.670401+07', 'Xã Tả Sìn Thàng', '03226', 'Xã');
INSERT INTO category."Wards" VALUES (3229, 98, 'system', '2023-07-26 08:40:17.670403+07', 'system', '2023-07-26 08:40:17.670403+07', 'Xã Lao Xả Phình', '03229', 'Xã');
INSERT INTO category."Wards" VALUES (3232, 98, 'system', '2023-07-26 08:40:17.670406+07', 'system', '2023-07-26 08:40:17.670406+07', 'Xã Tả Phìn', '03232', 'Xã');
INSERT INTO category."Wards" VALUES (3235, 98, 'system', '2023-07-26 08:40:17.670409+07', 'system', '2023-07-26 08:40:17.670409+07', 'Xã Tủa Thàng', '03235', 'Xã');
INSERT INTO category."Wards" VALUES (3238, 98, 'system', '2023-07-26 08:40:17.670411+07', 'system', '2023-07-26 08:40:17.670411+07', 'Xã Trung Thu', '03238', 'Xã');
INSERT INTO category."Wards" VALUES (3241, 98, 'system', '2023-07-26 08:40:17.670414+07', 'system', '2023-07-26 08:40:17.670414+07', 'Xã Sính Phình', '03241', 'Xã');
INSERT INTO category."Wards" VALUES (3244, 98, 'system', '2023-07-26 08:40:17.670416+07', 'system', '2023-07-26 08:40:17.670417+07', 'Xã Sáng Nhè', '03244', 'Xã');
INSERT INTO category."Wards" VALUES (3247, 98, 'system', '2023-07-26 08:40:17.670419+07', 'system', '2023-07-26 08:40:17.670419+07', 'Xã Mường Đun', '03247', 'Xã');
INSERT INTO category."Wards" VALUES (3250, 98, 'system', '2023-07-26 08:40:17.670422+07', 'system', '2023-07-26 08:40:17.670422+07', 'Xã Mường Báng', '03250', 'Xã');
INSERT INTO category."Wards" VALUES (3253, 99, 'system', '2023-07-26 08:40:17.670425+07', 'system', '2023-07-26 08:40:17.670425+07', 'Thị trấn Tuần Giáo', '03253', 'Thị trấn');
INSERT INTO category."Wards" VALUES (3256, 102, 'system', '2023-07-26 08:40:17.670597+07', 'system', '2023-07-26 08:40:17.670597+07', 'Thị trấn Mường Ảng', '03256', 'Thị trấn');
INSERT INTO category."Wards" VALUES (3259, 99, 'system', '2023-07-26 08:40:17.670427+07', 'system', '2023-07-26 08:40:17.670427+07', 'Xã Phình Sáng', '03259', 'Xã');
INSERT INTO category."Wards" VALUES (3260, 99, 'system', '2023-07-26 08:40:17.67043+07', 'system', '2023-07-26 08:40:17.67043+07', 'Xã Rạng Đông', '03260', 'Xã');
INSERT INTO category."Wards" VALUES (3262, 99, 'system', '2023-07-26 08:40:17.670433+07', 'system', '2023-07-26 08:40:17.670433+07', 'Xã Mùn Chung', '03262', 'Xã');
INSERT INTO category."Wards" VALUES (3263, 99, 'system', '2023-07-26 08:40:17.670435+07', 'system', '2023-07-26 08:40:17.670435+07', 'Xã Nà Tòng', '03263', 'Xã');
INSERT INTO category."Wards" VALUES (3265, 99, 'system', '2023-07-26 08:40:17.670438+07', 'system', '2023-07-26 08:40:17.670438+07', 'Xã Ta Ma', '03265', 'Xã');
INSERT INTO category."Wards" VALUES (3268, 99, 'system', '2023-07-26 08:40:17.67044+07', 'system', '2023-07-26 08:40:17.670441+07', 'Xã Mường Mùn', '03268', 'Xã');
INSERT INTO category."Wards" VALUES (3269, 99, 'system', '2023-07-26 08:40:17.670443+07', 'system', '2023-07-26 08:40:17.670443+07', 'Xã Pú Xi', '03269', 'Xã');
INSERT INTO category."Wards" VALUES (3271, 99, 'system', '2023-07-26 08:40:17.670446+07', 'system', '2023-07-26 08:40:17.670446+07', 'Xã Pú Nhung', '03271', 'Xã');
INSERT INTO category."Wards" VALUES (3274, 99, 'system', '2023-07-26 08:40:17.670448+07', 'system', '2023-07-26 08:40:17.670448+07', 'Xã Quài Nưa', '03274', 'Xã');
INSERT INTO category."Wards" VALUES (3277, 99, 'system', '2023-07-26 08:40:17.670451+07', 'system', '2023-07-26 08:40:17.670451+07', 'Xã Mường Thín', '03277', 'Xã');
INSERT INTO category."Wards" VALUES (3280, 99, 'system', '2023-07-26 08:40:17.670454+07', 'system', '2023-07-26 08:40:17.670454+07', 'Xã Tỏa Tình', '03280', 'Xã');
INSERT INTO category."Wards" VALUES (3283, 99, 'system', '2023-07-26 08:40:17.670456+07', 'system', '2023-07-26 08:40:17.670456+07', 'Xã Nà Sáy', '03283', 'Xã');
INSERT INTO category."Wards" VALUES (3284, 99, 'system', '2023-07-26 08:40:17.670459+07', 'system', '2023-07-26 08:40:17.670459+07', 'Xã Mường Khong', '03284', 'Xã');
INSERT INTO category."Wards" VALUES (3286, 102, 'system', '2023-07-26 08:40:17.6706+07', 'system', '2023-07-26 08:40:17.6706+07', 'Xã Mường Đăng', '03286', 'Xã');
INSERT INTO category."Wards" VALUES (3287, 102, 'system', '2023-07-26 08:40:17.670602+07', 'system', '2023-07-26 08:40:17.670602+07', 'Xã Ngối Cáy', '03287', 'Xã');
INSERT INTO category."Wards" VALUES (3289, 99, 'system', '2023-07-26 08:40:17.670462+07', 'system', '2023-07-26 08:40:17.670462+07', 'Xã Quài Cang', '03289', 'Xã');
INSERT INTO category."Wards" VALUES (3292, 102, 'system', '2023-07-26 08:40:17.670605+07', 'system', '2023-07-26 08:40:17.670605+07', 'Xã Ẳng Tở', '03292', 'Xã');
INSERT INTO category."Wards" VALUES (3295, 99, 'system', '2023-07-26 08:40:17.670464+07', 'system', '2023-07-26 08:40:17.670464+07', 'Xã Quài Tở', '03295', 'Xã');
INSERT INTO category."Wards" VALUES (3298, 99, 'system', '2023-07-26 08:40:17.670467+07', 'system', '2023-07-26 08:40:17.670467+07', 'Xã Chiềng Sinh', '03298', 'Xã');
INSERT INTO category."Wards" VALUES (3299, 99, 'system', '2023-07-26 08:40:17.67047+07', 'system', '2023-07-26 08:40:17.67047+07', 'Xã Chiềng Đông', '03299', 'Xã');
INSERT INTO category."Wards" VALUES (3301, 102, 'system', '2023-07-26 08:40:17.670608+07', 'system', '2023-07-26 08:40:17.670608+07', 'Xã Búng Lao', '03301', 'Xã');
INSERT INTO category."Wards" VALUES (3302, 102, 'system', '2023-07-26 08:40:17.67061+07', 'system', '2023-07-26 08:40:17.67061+07', 'Xã Xuân Lao', '03302', 'Xã');
INSERT INTO category."Wards" VALUES (3304, 99, 'system', '2023-07-26 08:40:17.670473+07', 'system', '2023-07-26 08:40:17.670473+07', 'Xã Tênh Phông', '03304', 'Xã');
INSERT INTO category."Wards" VALUES (3307, 102, 'system', '2023-07-26 08:40:17.670613+07', 'system', '2023-07-26 08:40:17.670613+07', 'Xã Ẳng Nưa', '03307', 'Xã');
INSERT INTO category."Wards" VALUES (3310, 102, 'system', '2023-07-26 08:40:17.670616+07', 'system', '2023-07-26 08:40:17.670616+07', 'Xã Ẳng Cang', '03310', 'Xã');
INSERT INTO category."Wards" VALUES (3312, 102, 'system', '2023-07-26 08:40:17.670619+07', 'system', '2023-07-26 08:40:17.670619+07', 'Xã Nặm Lịch', '03312', 'Xã');
INSERT INTO category."Wards" VALUES (3313, 102, 'system', '2023-07-26 08:40:17.670621+07', 'system', '2023-07-26 08:40:17.670621+07', 'Xã Mường Lạn', '03313', 'Xã');
INSERT INTO category."Wards" VALUES (3316, 94, 'system', '2023-07-26 08:40:17.670311+07', 'system', '2023-07-26 08:40:17.670311+07', 'Xã Nà Tấu', '03316', 'Xã');
INSERT INTO category."Wards" VALUES (3317, 94, 'system', '2023-07-26 08:40:17.670314+07', 'system', '2023-07-26 08:40:17.670314+07', 'Xã Nà Nhạn', '03317', 'Xã');
INSERT INTO category."Wards" VALUES (3319, 100, 'system', '2023-07-26 08:40:17.670475+07', 'system', '2023-07-26 08:40:17.670475+07', 'Xã Mường Pồn', '03319', 'Xã');
INSERT INTO category."Wards" VALUES (3322, 100, 'system', '2023-07-26 08:40:17.670478+07', 'system', '2023-07-26 08:40:17.670478+07', 'Xã Thanh Nưa', '03322', 'Xã');
INSERT INTO category."Wards" VALUES (3323, 100, 'system', '2023-07-26 08:40:17.67048+07', 'system', '2023-07-26 08:40:17.67048+07', 'Xã Hua Thanh', '03323', 'Xã');
INSERT INTO category."Wards" VALUES (3325, 94, 'system', '2023-07-26 08:40:17.670317+07', 'system', '2023-07-26 08:40:17.670317+07', 'Xã Mường Phăng', '03325', 'Xã');
INSERT INTO category."Wards" VALUES (3326, 94, 'system', '2023-07-26 08:40:17.67032+07', 'system', '2023-07-26 08:40:17.67032+07', 'Xã Pá Khoang', '03326', 'Xã');
INSERT INTO category."Wards" VALUES (3328, 100, 'system', '2023-07-26 08:40:17.670483+07', 'system', '2023-07-26 08:40:17.670483+07', 'Xã Thanh Luông', '03328', 'Xã');
INSERT INTO category."Wards" VALUES (3331, 100, 'system', '2023-07-26 08:40:17.670486+07', 'system', '2023-07-26 08:40:17.670486+07', 'Xã Thanh Hưng', '03331', 'Xã');
INSERT INTO category."Wards" VALUES (3334, 100, 'system', '2023-07-26 08:40:17.670488+07', 'system', '2023-07-26 08:40:17.670489+07', 'Xã Thanh Xương', '03334', 'Xã');
INSERT INTO category."Wards" VALUES (3337, 100, 'system', '2023-07-26 08:40:17.670491+07', 'system', '2023-07-26 08:40:17.670491+07', 'Xã Thanh Chăn', '03337', 'Xã');
INSERT INTO category."Wards" VALUES (3340, 100, 'system', '2023-07-26 08:40:17.670494+07', 'system', '2023-07-26 08:40:17.670494+07', 'Xã Pa Thơm', '03340', 'Xã');
INSERT INTO category."Wards" VALUES (3343, 100, 'system', '2023-07-26 08:40:17.670496+07', 'system', '2023-07-26 08:40:17.670497+07', 'Xã Thanh An', '03343', 'Xã');
INSERT INTO category."Wards" VALUES (3346, 100, 'system', '2023-07-26 08:40:17.670499+07', 'system', '2023-07-26 08:40:17.670499+07', 'Xã Thanh Yên', '03346', 'Xã');
INSERT INTO category."Wards" VALUES (3349, 100, 'system', '2023-07-26 08:40:17.670502+07', 'system', '2023-07-26 08:40:17.670502+07', 'Xã Noong Luống', '03349', 'Xã');
INSERT INTO category."Wards" VALUES (3352, 100, 'system', '2023-07-26 08:40:17.670504+07', 'system', '2023-07-26 08:40:17.670504+07', 'Xã Noọng Hẹt', '03352', 'Xã');
INSERT INTO category."Wards" VALUES (3355, 100, 'system', '2023-07-26 08:40:17.670507+07', 'system', '2023-07-26 08:40:17.670507+07', 'Xã Sam Mứn', '03355', 'Xã');
INSERT INTO category."Wards" VALUES (3356, 100, 'system', '2023-07-26 08:40:17.67051+07', 'system', '2023-07-26 08:40:17.67051+07', 'Xã Pom Lót', '03356', 'Xã');
INSERT INTO category."Wards" VALUES (3358, 100, 'system', '2023-07-26 08:40:17.670514+07', 'system', '2023-07-26 08:40:17.670514+07', 'Xã Núa Ngam', '03358', 'Xã');
INSERT INTO category."Wards" VALUES (3359, 100, 'system', '2023-07-26 08:40:17.670519+07', 'system', '2023-07-26 08:40:17.670519+07', 'Xã Hẹ Muông', '03359', 'Xã');
INSERT INTO category."Wards" VALUES (3361, 100, 'system', '2023-07-26 08:40:17.670523+07', 'system', '2023-07-26 08:40:17.670523+07', 'Xã Na Ư', '03361', 'Xã');
INSERT INTO category."Wards" VALUES (3364, 100, 'system', '2023-07-26 08:40:17.670528+07', 'system', '2023-07-26 08:40:17.670528+07', 'Xã Mường Nhà', '03364', 'Xã');
INSERT INTO category."Wards" VALUES (3365, 100, 'system', '2023-07-26 08:40:17.670533+07', 'system', '2023-07-26 08:40:17.670533+07', 'Xã Na Tông', '03365', 'Xã');
INSERT INTO category."Wards" VALUES (3367, 100, 'system', '2023-07-26 08:40:17.670538+07', 'system', '2023-07-26 08:40:17.670538+07', 'Xã Mường Lói', '03367', 'Xã');
INSERT INTO category."Wards" VALUES (3368, 100, 'system', '2023-07-26 08:40:17.670543+07', 'system', '2023-07-26 08:40:17.670543+07', 'Xã Phu Luông', '03368', 'Xã');
INSERT INTO category."Wards" VALUES (3370, 101, 'system', '2023-07-26 08:40:17.670572+07', 'system', '2023-07-26 08:40:17.670572+07', 'Xã Pú Nhi', '03370', 'Xã');
INSERT INTO category."Wards" VALUES (3371, 101, 'system', '2023-07-26 08:40:17.670575+07', 'system', '2023-07-26 08:40:17.670575+07', 'Xã Nong U', '03371', 'Xã');
INSERT INTO category."Wards" VALUES (3373, 101, 'system', '2023-07-26 08:40:17.670577+07', 'system', '2023-07-26 08:40:17.670577+07', 'Xã Xa Dung', '03373', 'Xã');
INSERT INTO category."Wards" VALUES (3376, 101, 'system', '2023-07-26 08:40:17.67058+07', 'system', '2023-07-26 08:40:17.67058+07', 'Xã Keo Lôm', '03376', 'Xã');
INSERT INTO category."Wards" VALUES (3379, 101, 'system', '2023-07-26 08:40:17.670582+07', 'system', '2023-07-26 08:40:17.670582+07', 'Xã Luân Giới', '03379', 'Xã');
INSERT INTO category."Wards" VALUES (3382, 101, 'system', '2023-07-26 08:40:17.670585+07', 'system', '2023-07-26 08:40:17.670585+07', 'Xã Phình Giàng', '03382', 'Xã');
INSERT INTO category."Wards" VALUES (3383, 101, 'system', '2023-07-26 08:40:17.670587+07', 'system', '2023-07-26 08:40:17.670587+07', 'Xã Pú Hồng', '03383', 'Xã');
INSERT INTO category."Wards" VALUES (3384, 101, 'system', '2023-07-26 08:40:17.67059+07', 'system', '2023-07-26 08:40:17.67059+07', 'Xã Tìa Dình', '03384', 'Xã');
INSERT INTO category."Wards" VALUES (3385, 101, 'system', '2023-07-26 08:40:17.670594+07', 'system', '2023-07-26 08:40:17.670594+07', 'Xã Háng Lìa', '03385', 'Xã');
INSERT INTO category."Wards" VALUES (3386, 105, 'system', '2023-07-26 08:40:17.670663+07', 'system', '2023-07-26 08:40:17.670663+07', 'Phường Quyết Thắng', '03386', 'Phường');
INSERT INTO category."Wards" VALUES (3387, 105, 'system', '2023-07-26 08:40:17.670666+07', 'system', '2023-07-26 08:40:17.670666+07', 'Phường Tân Phong', '03387', 'Phường');
INSERT INTO category."Wards" VALUES (3388, 105, 'system', '2023-07-26 08:40:17.670668+07', 'system', '2023-07-26 08:40:17.670669+07', 'Phường Quyết Tiến', '03388', 'Phường');
INSERT INTO category."Wards" VALUES (3389, 105, 'system', '2023-07-26 08:40:17.670671+07', 'system', '2023-07-26 08:40:17.670671+07', 'Phường Đoàn Kết', '03389', 'Phường');
INSERT INTO category."Wards" VALUES (3390, 106, 'system', '2023-07-26 08:40:17.670683+07', 'system', '2023-07-26 08:40:17.670683+07', 'Thị trấn Tam Đường', '03390', 'Thị trấn');
INSERT INTO category."Wards" VALUES (3391, 109, 'system', '2023-07-26 08:40:17.670813+07', 'system', '2023-07-26 08:40:17.670813+07', 'Xã Lả Nhì Thàng', '03391', 'Xã');
INSERT INTO category."Wards" VALUES (3394, 106, 'system', '2023-07-26 08:40:17.670686+07', 'system', '2023-07-26 08:40:17.670686+07', 'Xã Thèn Sin', '03394', 'Xã');
INSERT INTO category."Wards" VALUES (3400, 106, 'system', '2023-07-26 08:40:17.670688+07', 'system', '2023-07-26 08:40:17.670688+07', 'Xã Tả Lèng', '03400', 'Xã');
INSERT INTO category."Wards" VALUES (3403, 105, 'system', '2023-07-26 08:40:17.670674+07', 'system', '2023-07-26 08:40:17.670674+07', 'Xã Sùng Phài', '03403', 'Xã');
INSERT INTO category."Wards" VALUES (3405, 106, 'system', '2023-07-26 08:40:17.670692+07', 'system', '2023-07-26 08:40:17.670692+07', 'Xã Giang Ma', '03405', 'Xã');
INSERT INTO category."Wards" VALUES (3406, 106, 'system', '2023-07-26 08:40:17.670694+07', 'system', '2023-07-26 08:40:17.670694+07', 'Xã Hồ Thầu', '03406', 'Xã');
INSERT INTO category."Wards" VALUES (3408, 105, 'system', '2023-07-26 08:40:17.670677+07', 'system', '2023-07-26 08:40:17.670677+07', 'Phường Đông Phong', '03408', 'Phường');
INSERT INTO category."Wards" VALUES (3409, 105, 'system', '2023-07-26 08:40:17.67068+07', 'system', '2023-07-26 08:40:17.67068+07', 'Xã San Thàng', '03409', 'Xã');
INSERT INTO category."Wards" VALUES (3412, 106, 'system', '2023-07-26 08:40:17.670697+07', 'system', '2023-07-26 08:40:17.670697+07', 'Xã Bình Lư', '03412', 'Xã');
INSERT INTO category."Wards" VALUES (3413, 106, 'system', '2023-07-26 08:40:17.6707+07', 'system', '2023-07-26 08:40:17.6707+07', 'Xã Sơn Bình', '03413', 'Xã');
INSERT INTO category."Wards" VALUES (3415, 106, 'system', '2023-07-26 08:40:17.670702+07', 'system', '2023-07-26 08:40:17.670702+07', 'Xã Nùng Nàng', '03415', 'Xã');
INSERT INTO category."Wards" VALUES (3418, 106, 'system', '2023-07-26 08:40:17.670705+07', 'system', '2023-07-26 08:40:17.670705+07', 'Xã Bản Giang', '03418', 'Xã');
INSERT INTO category."Wards" VALUES (3421, 106, 'system', '2023-07-26 08:40:17.670707+07', 'system', '2023-07-26 08:40:17.670707+07', 'Xã Bản Hon', '03421', 'Xã');
INSERT INTO category."Wards" VALUES (3424, 106, 'system', '2023-07-26 08:40:17.67071+07', 'system', '2023-07-26 08:40:17.67071+07', 'Xã Bản Bo', '03424', 'Xã');
INSERT INTO category."Wards" VALUES (3427, 106, 'system', '2023-07-26 08:40:17.670713+07', 'system', '2023-07-26 08:40:17.670713+07', 'Xã Nà Tăm', '03427', 'Xã');
INSERT INTO category."Wards" VALUES (3430, 106, 'system', '2023-07-26 08:40:17.670715+07', 'system', '2023-07-26 08:40:17.670715+07', 'Xã Khun Há', '03430', 'Xã');
INSERT INTO category."Wards" VALUES (3433, 107, 'system', '2023-07-26 08:40:17.670718+07', 'system', '2023-07-26 08:40:17.670718+07', 'Thị trấn Mường Tè', '03433', 'Thị trấn');
INSERT INTO category."Wards" VALUES (3434, 112, 'system', '2023-07-26 08:40:17.670917+07', 'system', '2023-07-26 08:40:17.670917+07', 'Thị trấn Nậm Nhùn', '03434', 'Thị trấn');
INSERT INTO category."Wards" VALUES (3436, 107, 'system', '2023-07-26 08:40:17.670721+07', 'system', '2023-07-26 08:40:17.670721+07', 'Xã Thu Lũm', '03436', 'Xã');
INSERT INTO category."Wards" VALUES (3439, 107, 'system', '2023-07-26 08:40:17.670723+07', 'system', '2023-07-26 08:40:17.670724+07', 'Xã Ka Lăng', '03439', 'Xã');
INSERT INTO category."Wards" VALUES (3440, 107, 'system', '2023-07-26 08:40:17.670726+07', 'system', '2023-07-26 08:40:17.670726+07', 'Xã Tá Bạ', '03440', 'Xã');
INSERT INTO category."Wards" VALUES (3442, 107, 'system', '2023-07-26 08:40:17.670729+07', 'system', '2023-07-26 08:40:17.670729+07', 'Xã Pa ủ', '03442', 'Xã');
INSERT INTO category."Wards" VALUES (3445, 107, 'system', '2023-07-26 08:40:17.670731+07', 'system', '2023-07-26 08:40:17.670731+07', 'Xã Mường Tè', '03445', 'Xã');
INSERT INTO category."Wards" VALUES (3448, 107, 'system', '2023-07-26 08:40:17.670734+07', 'system', '2023-07-26 08:40:17.670734+07', 'Xã Pa Vệ Sử', '03448', 'Xã');
INSERT INTO category."Wards" VALUES (3451, 107, 'system', '2023-07-26 08:40:17.670737+07', 'system', '2023-07-26 08:40:17.670737+07', 'Xã Mù Cả', '03451', 'Xã');
INSERT INTO category."Wards" VALUES (3454, 107, 'system', '2023-07-26 08:40:17.670739+07', 'system', '2023-07-26 08:40:17.67074+07', 'Xã Bum Tở', '03454', 'Xã');
INSERT INTO category."Wards" VALUES (3457, 107, 'system', '2023-07-26 08:40:17.670742+07', 'system', '2023-07-26 08:40:17.670742+07', 'Xã Nậm Khao', '03457', 'Xã');
INSERT INTO category."Wards" VALUES (3460, 112, 'system', '2023-07-26 08:40:17.67092+07', 'system', '2023-07-26 08:40:17.67092+07', 'Xã Hua Bun', '03460', 'Xã');
INSERT INTO category."Wards" VALUES (3463, 107, 'system', '2023-07-26 08:40:17.670745+07', 'system', '2023-07-26 08:40:17.670745+07', 'Xã Tà Tổng', '03463', 'Xã');
INSERT INTO category."Wards" VALUES (3466, 107, 'system', '2023-07-26 08:40:17.670747+07', 'system', '2023-07-26 08:40:17.670747+07', 'Xã Bum Nưa', '03466', 'Xã');
INSERT INTO category."Wards" VALUES (3467, 107, 'system', '2023-07-26 08:40:17.67075+07', 'system', '2023-07-26 08:40:17.67075+07', 'Xã Vàng San', '03467', 'Xã');
INSERT INTO category."Wards" VALUES (3469, 107, 'system', '2023-07-26 08:40:17.670753+07', 'system', '2023-07-26 08:40:17.670753+07', 'Xã Kan Hồ', '03469', 'Xã');
INSERT INTO category."Wards" VALUES (3472, 112, 'system', '2023-07-26 08:40:17.670922+07', 'system', '2023-07-26 08:40:17.670922+07', 'Xã Mường Mô', '03472', 'Xã');
INSERT INTO category."Wards" VALUES (3473, 112, 'system', '2023-07-26 08:40:17.670925+07', 'system', '2023-07-26 08:40:17.670925+07', 'Xã Nậm Chà', '03473', 'Xã');
INSERT INTO category."Wards" VALUES (3474, 112, 'system', '2023-07-26 08:40:17.670928+07', 'system', '2023-07-26 08:40:17.670928+07', 'Xã Nậm Manh', '03474', 'Xã');
INSERT INTO category."Wards" VALUES (3475, 112, 'system', '2023-07-26 08:40:17.67093+07', 'system', '2023-07-26 08:40:17.67093+07', 'Xã Nậm Hàng', '03475', 'Xã');
INSERT INTO category."Wards" VALUES (3478, 108, 'system', '2023-07-26 08:40:17.670755+07', 'system', '2023-07-26 08:40:17.670755+07', 'Thị trấn Sìn Hồ', '03478', 'Thị trấn');
INSERT INTO category."Wards" VALUES (3481, 112, 'system', '2023-07-26 08:40:17.670933+07', 'system', '2023-07-26 08:40:17.670933+07', 'Xã Lê Lợi', '03481', 'Xã');
INSERT INTO category."Wards" VALUES (3484, 112, 'system', '2023-07-26 08:40:17.670935+07', 'system', '2023-07-26 08:40:17.670935+07', 'Xã Pú Đao', '03484', 'Xã');
INSERT INTO category."Wards" VALUES (3487, 108, 'system', '2023-07-26 08:40:17.670758+07', 'system', '2023-07-26 08:40:17.670758+07', 'Xã Chăn Nưa', '03487', 'Xã');
INSERT INTO category."Wards" VALUES (3488, 112, 'system', '2023-07-26 08:40:17.670938+07', 'system', '2023-07-26 08:40:17.670938+07', 'Xã Nậm Pì', '03488', 'Xã');
INSERT INTO category."Wards" VALUES (3490, 109, 'system', '2023-07-26 08:40:17.670816+07', 'system', '2023-07-26 08:40:17.670816+07', 'Xã Huổi Luông', '03490', 'Xã');
INSERT INTO category."Wards" VALUES (3493, 108, 'system', '2023-07-26 08:40:17.670761+07', 'system', '2023-07-26 08:40:17.670761+07', 'Xã Pa Tần', '03493', 'Xã');
INSERT INTO category."Wards" VALUES (3496, 108, 'system', '2023-07-26 08:40:17.670764+07', 'system', '2023-07-26 08:40:17.670764+07', 'Xã Phìn Hồ', '03496', 'Xã');
INSERT INTO category."Wards" VALUES (3499, 108, 'system', '2023-07-26 08:40:17.670766+07', 'system', '2023-07-26 08:40:17.670766+07', 'Xã Hồng Thu', '03499', 'Xã');
INSERT INTO category."Wards" VALUES (3502, 112, 'system', '2023-07-26 08:40:17.67094+07', 'system', '2023-07-26 08:40:17.67094+07', 'Xã Nậm Ban', '03502', 'Xã');
INSERT INTO category."Wards" VALUES (3503, 112, 'system', '2023-07-26 08:40:17.670943+07', 'system', '2023-07-26 08:40:17.670943+07', 'Xã Trung Chải', '03503', 'Xã');
INSERT INTO category."Wards" VALUES (3505, 108, 'system', '2023-07-26 08:40:17.670769+07', 'system', '2023-07-26 08:40:17.670769+07', 'Xã Phăng Sô Lin', '03505', 'Xã');
INSERT INTO category."Wards" VALUES (3508, 108, 'system', '2023-07-26 08:40:17.670771+07', 'system', '2023-07-26 08:40:17.670771+07', 'Xã Ma Quai', '03508', 'Xã');
INSERT INTO category."Wards" VALUES (3509, 108, 'system', '2023-07-26 08:40:17.670774+07', 'system', '2023-07-26 08:40:17.670774+07', 'Xã Lùng Thàng', '03509', 'Xã');
INSERT INTO category."Wards" VALUES (3511, 108, 'system', '2023-07-26 08:40:17.670777+07', 'system', '2023-07-26 08:40:17.670777+07', 'Xã Tả Phìn', '03511', 'Xã');
INSERT INTO category."Wards" VALUES (3514, 108, 'system', '2023-07-26 08:40:17.670779+07', 'system', '2023-07-26 08:40:17.670779+07', 'Xã Sà Dề Phìn', '03514', 'Xã');
INSERT INTO category."Wards" VALUES (3517, 108, 'system', '2023-07-26 08:40:17.670782+07', 'system', '2023-07-26 08:40:17.670782+07', 'Xã Nậm Tăm', '03517', 'Xã');
INSERT INTO category."Wards" VALUES (3520, 108, 'system', '2023-07-26 08:40:17.670784+07', 'system', '2023-07-26 08:40:17.670785+07', 'Xã Tả Ngảo', '03520', 'Xã');
INSERT INTO category."Wards" VALUES (3523, 108, 'system', '2023-07-26 08:40:17.670787+07', 'system', '2023-07-26 08:40:17.670787+07', 'Xã Pu Sam Cáp', '03523', 'Xã');
INSERT INTO category."Wards" VALUES (3526, 108, 'system', '2023-07-26 08:40:17.67079+07', 'system', '2023-07-26 08:40:17.67079+07', 'Xã Nậm Cha', '03526', 'Xã');
INSERT INTO category."Wards" VALUES (3527, 108, 'system', '2023-07-26 08:40:17.670793+07', 'system', '2023-07-26 08:40:17.670793+07', 'Xã Pa Khoá', '03527', 'Xã');
INSERT INTO category."Wards" VALUES (3529, 108, 'system', '2023-07-26 08:40:17.670796+07', 'system', '2023-07-26 08:40:17.670796+07', 'Xã Làng Mô', '03529', 'Xã');
INSERT INTO category."Wards" VALUES (3532, 108, 'system', '2023-07-26 08:40:17.670798+07', 'system', '2023-07-26 08:40:17.670798+07', 'Xã Noong Hẻo', '03532', 'Xã');
INSERT INTO category."Wards" VALUES (3535, 108, 'system', '2023-07-26 08:40:17.670801+07', 'system', '2023-07-26 08:40:17.670801+07', 'Xã Nậm Mạ', '03535', 'Xã');
INSERT INTO category."Wards" VALUES (3538, 108, 'system', '2023-07-26 08:40:17.670803+07', 'system', '2023-07-26 08:40:17.670803+07', 'Xã Căn Co', '03538', 'Xã');
INSERT INTO category."Wards" VALUES (3541, 108, 'system', '2023-07-26 08:40:17.670806+07', 'system', '2023-07-26 08:40:17.670806+07', 'Xã Tủa Sín Chải', '03541', 'Xã');
INSERT INTO category."Wards" VALUES (3544, 108, 'system', '2023-07-26 08:40:17.670808+07', 'system', '2023-07-26 08:40:17.670808+07', 'Xã Nậm Cuổi', '03544', 'Xã');
INSERT INTO category."Wards" VALUES (3547, 108, 'system', '2023-07-26 08:40:17.670811+07', 'system', '2023-07-26 08:40:17.670811+07', 'Xã Nậm Hăn', '03547', 'Xã');
INSERT INTO category."Wards" VALUES (3549, 109, 'system', '2023-07-26 08:40:17.670819+07', 'system', '2023-07-26 08:40:17.670819+07', 'Thị trấn Phong Thổ', '03549', 'Thị trấn');
INSERT INTO category."Wards" VALUES (3550, 109, 'system', '2023-07-26 08:40:17.670822+07', 'system', '2023-07-26 08:40:17.670822+07', 'Xã Sì Lở Lầu', '03550', 'Xã');
INSERT INTO category."Wards" VALUES (3553, 109, 'system', '2023-07-26 08:40:17.670825+07', 'system', '2023-07-26 08:40:17.670825+07', 'Xã Mồ Sì San', '03553', 'Xã');
INSERT INTO category."Wards" VALUES (3559, 109, 'system', '2023-07-26 08:40:17.670827+07', 'system', '2023-07-26 08:40:17.670827+07', 'Xã Pa Vây Sử', '03559', 'Xã');
INSERT INTO category."Wards" VALUES (3562, 109, 'system', '2023-07-26 08:40:17.67083+07', 'system', '2023-07-26 08:40:17.67083+07', 'Xã Vàng Ma Chải', '03562', 'Xã');
INSERT INTO category."Wards" VALUES (3565, 109, 'system', '2023-07-26 08:40:17.670832+07', 'system', '2023-07-26 08:40:17.670832+07', 'Xã Tông Qua Lìn', '03565', 'Xã');
INSERT INTO category."Wards" VALUES (3568, 109, 'system', '2023-07-26 08:40:17.670835+07', 'system', '2023-07-26 08:40:17.670835+07', 'Xã Mù Sang', '03568', 'Xã');
INSERT INTO category."Wards" VALUES (3571, 109, 'system', '2023-07-26 08:40:17.670838+07', 'system', '2023-07-26 08:40:17.670838+07', 'Xã Dào San', '03571', 'Xã');
INSERT INTO category."Wards" VALUES (3574, 109, 'system', '2023-07-26 08:40:17.67084+07', 'system', '2023-07-26 08:40:17.67084+07', 'Xã Ma Ly Pho', '03574', 'Xã');
INSERT INTO category."Wards" VALUES (3577, 109, 'system', '2023-07-26 08:40:17.670843+07', 'system', '2023-07-26 08:40:17.670843+07', 'Xã Bản Lang', '03577', 'Xã');
INSERT INTO category."Wards" VALUES (3580, 109, 'system', '2023-07-26 08:40:17.670845+07', 'system', '2023-07-26 08:40:17.670845+07', 'Xã Hoang Thèn', '03580', 'Xã');
INSERT INTO category."Wards" VALUES (3583, 109, 'system', '2023-07-26 08:40:17.670848+07', 'system', '2023-07-26 08:40:17.670848+07', 'Xã Khổng Lào', '03583', 'Xã');
INSERT INTO category."Wards" VALUES (3586, 109, 'system', '2023-07-26 08:40:17.67085+07', 'system', '2023-07-26 08:40:17.67085+07', 'Xã Nậm Xe', '03586', 'Xã');
INSERT INTO category."Wards" VALUES (3589, 109, 'system', '2023-07-26 08:40:17.670853+07', 'system', '2023-07-26 08:40:17.670853+07', 'Xã Mường So', '03589', 'Xã');
INSERT INTO category."Wards" VALUES (3592, 109, 'system', '2023-07-26 08:40:17.670856+07', 'system', '2023-07-26 08:40:17.670856+07', 'Xã Sin Suối Hồ', '03592', 'Xã');
INSERT INTO category."Wards" VALUES (3595, 110, 'system', '2023-07-26 08:40:17.670858+07', 'system', '2023-07-26 08:40:17.670858+07', 'Thị trấn Than Uyên', '03595', 'Thị trấn');
INSERT INTO category."Wards" VALUES (3598, 111, 'system', '2023-07-26 08:40:17.670891+07', 'system', '2023-07-26 08:40:17.670891+07', 'Thị trấn Tân Uyên', '03598', 'Thị trấn');
INSERT INTO category."Wards" VALUES (3601, 111, 'system', '2023-07-26 08:40:17.670894+07', 'system', '2023-07-26 08:40:17.670894+07', 'Xã Mường Khoa', '03601', 'Xã');
INSERT INTO category."Wards" VALUES (3602, 111, 'system', '2023-07-26 08:40:17.670896+07', 'system', '2023-07-26 08:40:17.670896+07', 'Xã Phúc Khoa', '03602', 'Xã');
INSERT INTO category."Wards" VALUES (3604, 111, 'system', '2023-07-26 08:40:17.670899+07', 'system', '2023-07-26 08:40:17.670899+07', 'Xã Thân Thuộc', '03604', 'Xã');
INSERT INTO category."Wards" VALUES (3605, 111, 'system', '2023-07-26 08:40:17.670902+07', 'system', '2023-07-26 08:40:17.670902+07', 'Xã Trung Đồng', '03605', 'Xã');
INSERT INTO category."Wards" VALUES (3607, 111, 'system', '2023-07-26 08:40:17.670904+07', 'system', '2023-07-26 08:40:17.670904+07', 'Xã Hố Mít', '03607', 'Xã');
INSERT INTO category."Wards" VALUES (3610, 111, 'system', '2023-07-26 08:40:17.670907+07', 'system', '2023-07-26 08:40:17.670907+07', 'Xã Nậm Cần', '03610', 'Xã');
INSERT INTO category."Wards" VALUES (3613, 111, 'system', '2023-07-26 08:40:17.670909+07', 'system', '2023-07-26 08:40:17.670909+07', 'Xã Nậm Sỏ', '03613', 'Xã');
INSERT INTO category."Wards" VALUES (3616, 111, 'system', '2023-07-26 08:40:17.670912+07', 'system', '2023-07-26 08:40:17.670912+07', 'Xã Pắc Ta', '03616', 'Xã');
INSERT INTO category."Wards" VALUES (3618, 110, 'system', '2023-07-26 08:40:17.670861+07', 'system', '2023-07-26 08:40:17.670861+07', 'Xã Phúc Than', '03618', 'Xã');
INSERT INTO category."Wards" VALUES (3619, 110, 'system', '2023-07-26 08:40:17.670864+07', 'system', '2023-07-26 08:40:17.670864+07', 'Xã Mường Than', '03619', 'Xã');
INSERT INTO category."Wards" VALUES (3622, 111, 'system', '2023-07-26 08:40:17.670914+07', 'system', '2023-07-26 08:40:17.670914+07', 'Xã Tà Mít', '03622', 'Xã');
INSERT INTO category."Wards" VALUES (3625, 110, 'system', '2023-07-26 08:40:17.670866+07', 'system', '2023-07-26 08:40:17.670866+07', 'Xã Mường Mít', '03625', 'Xã');
INSERT INTO category."Wards" VALUES (3628, 110, 'system', '2023-07-26 08:40:17.670869+07', 'system', '2023-07-26 08:40:17.670869+07', 'Xã Pha Mu', '03628', 'Xã');
INSERT INTO category."Wards" VALUES (3631, 110, 'system', '2023-07-26 08:40:17.670872+07', 'system', '2023-07-26 08:40:17.670872+07', 'Xã Mường Cang', '03631', 'Xã');
INSERT INTO category."Wards" VALUES (3632, 110, 'system', '2023-07-26 08:40:17.670874+07', 'system', '2023-07-26 08:40:17.670875+07', 'Xã Hua Nà', '03632', 'Xã');
INSERT INTO category."Wards" VALUES (3634, 110, 'system', '2023-07-26 08:40:17.670877+07', 'system', '2023-07-26 08:40:17.670877+07', 'Xã Tà Hừa', '03634', 'Xã');
INSERT INTO category."Wards" VALUES (3637, 110, 'system', '2023-07-26 08:40:17.67088+07', 'system', '2023-07-26 08:40:17.67088+07', 'Xã Mường Kim', '03637', 'Xã');
INSERT INTO category."Wards" VALUES (3638, 110, 'system', '2023-07-26 08:40:17.670882+07', 'system', '2023-07-26 08:40:17.670882+07', 'Xã Tà Mung', '03638', 'Xã');
INSERT INTO category."Wards" VALUES (3640, 110, 'system', '2023-07-26 08:40:17.670886+07', 'system', '2023-07-26 08:40:17.670886+07', 'Xã Tà Gia', '03640', 'Xã');
INSERT INTO category."Wards" VALUES (3643, 110, 'system', '2023-07-26 08:40:17.670888+07', 'system', '2023-07-26 08:40:17.670888+07', 'Xã Khoen On', '03643', 'Xã');
INSERT INTO category."Wards" VALUES (3646, 116, 'system', '2023-07-26 08:40:17.670945+07', 'system', '2023-07-26 08:40:17.670945+07', 'Phường Chiềng Lề', '03646', 'Phường');
INSERT INTO category."Wards" VALUES (3649, 116, 'system', '2023-07-26 08:40:17.670948+07', 'system', '2023-07-26 08:40:17.670948+07', 'Phường Tô Hiệu', '03649', 'Phường');
INSERT INTO category."Wards" VALUES (3652, 116, 'system', '2023-07-26 08:40:17.670951+07', 'system', '2023-07-26 08:40:17.670951+07', 'Phường Quyết Thắng', '03652', 'Phường');
INSERT INTO category."Wards" VALUES (3655, 116, 'system', '2023-07-26 08:40:17.670954+07', 'system', '2023-07-26 08:40:17.670954+07', 'Phường Quyết Tâm', '03655', 'Phường');
INSERT INTO category."Wards" VALUES (3658, 116, 'system', '2023-07-26 08:40:17.670956+07', 'system', '2023-07-26 08:40:17.670957+07', 'Xã Chiềng Cọ', '03658', 'Xã');
INSERT INTO category."Wards" VALUES (3661, 116, 'system', '2023-07-26 08:40:17.670959+07', 'system', '2023-07-26 08:40:17.670959+07', 'Xã Chiềng Đen', '03661', 'Xã');
INSERT INTO category."Wards" VALUES (3664, 116, 'system', '2023-07-26 08:40:17.670962+07', 'system', '2023-07-26 08:40:17.670962+07', 'Xã Chiềng Xôm', '03664', 'Xã');
INSERT INTO category."Wards" VALUES (3667, 116, 'system', '2023-07-26 08:40:17.670964+07', 'system', '2023-07-26 08:40:17.670965+07', 'Phường Chiềng An', '03667', 'Phường');
INSERT INTO category."Wards" VALUES (3670, 116, 'system', '2023-07-26 08:40:17.670967+07', 'system', '2023-07-26 08:40:17.670967+07', 'Phường Chiềng Cơi', '03670', 'Phường');
INSERT INTO category."Wards" VALUES (3673, 116, 'system', '2023-07-26 08:40:17.67097+07', 'system', '2023-07-26 08:40:17.67097+07', 'Xã Chiềng Ngần', '03673', 'Xã');
INSERT INTO category."Wards" VALUES (3676, 116, 'system', '2023-07-26 08:40:17.670973+07', 'system', '2023-07-26 08:40:17.670973+07', 'Xã Hua La', '03676', 'Xã');
INSERT INTO category."Wards" VALUES (3679, 116, 'system', '2023-07-26 08:40:17.670975+07', 'system', '2023-07-26 08:40:17.670975+07', 'Phường Chiềng Sinh', '03679', 'Phường');
INSERT INTO category."Wards" VALUES (3682, 118, 'system', '2023-07-26 08:40:17.670978+07', 'system', '2023-07-26 08:40:17.670978+07', 'Xã Mường Chiên', '03682', 'Xã');
INSERT INTO category."Wards" VALUES (3685, 118, 'system', '2023-07-26 08:40:17.670982+07', 'system', '2023-07-26 08:40:17.670982+07', 'Xã Cà Nàng', '03685', 'Xã');
INSERT INTO category."Wards" VALUES (3688, 118, 'system', '2023-07-26 08:40:17.670984+07', 'system', '2023-07-26 08:40:17.670984+07', 'Xã Chiềng Khay', '03688', 'Xã');
INSERT INTO category."Wards" VALUES (3694, 118, 'system', '2023-07-26 08:40:17.670987+07', 'system', '2023-07-26 08:40:17.670987+07', 'Xã Mường Giôn', '03694', 'Xã');
INSERT INTO category."Wards" VALUES (3697, 118, 'system', '2023-07-26 08:40:17.67099+07', 'system', '2023-07-26 08:40:17.67099+07', 'Xã Pá Ma Pha Khinh', '03697', 'Xã');
INSERT INTO category."Wards" VALUES (3700, 118, 'system', '2023-07-26 08:40:17.670992+07', 'system', '2023-07-26 08:40:17.670992+07', 'Xã Chiềng Ơn', '03700', 'Xã');
INSERT INTO category."Wards" VALUES (3703, 118, 'system', '2023-07-26 08:40:17.670995+07', 'system', '2023-07-26 08:40:17.670995+07', 'Xã Mường Giàng', '03703', 'Xã');
INSERT INTO category."Wards" VALUES (3706, 118, 'system', '2023-07-26 08:40:17.670998+07', 'system', '2023-07-26 08:40:17.670998+07', 'Xã Chiềng Bằng', '03706', 'Xã');
INSERT INTO category."Wards" VALUES (3709, 118, 'system', '2023-07-26 08:40:17.671+07', 'system', '2023-07-26 08:40:17.671+07', 'Xã Mường Sại', '03709', 'Xã');
INSERT INTO category."Wards" VALUES (3712, 118, 'system', '2023-07-26 08:40:17.671003+07', 'system', '2023-07-26 08:40:17.671003+07', 'Xã Nậm ét', '03712', 'Xã');
INSERT INTO category."Wards" VALUES (3718, 118, 'system', '2023-07-26 08:40:17.671006+07', 'system', '2023-07-26 08:40:17.671006+07', 'Xã Chiềng Khoang', '03718', 'Xã');
INSERT INTO category."Wards" VALUES (3721, 119, 'system', '2023-07-26 08:40:17.671008+07', 'system', '2023-07-26 08:40:17.671009+07', 'Thị trấn Thuận Châu', '03721', 'Thị trấn');
INSERT INTO category."Wards" VALUES (3724, 119, 'system', '2023-07-26 08:40:17.671011+07', 'system', '2023-07-26 08:40:17.671011+07', 'Xã Phổng Lái', '03724', 'Xã');
INSERT INTO category."Wards" VALUES (3727, 119, 'system', '2023-07-26 08:40:17.671014+07', 'system', '2023-07-26 08:40:17.671014+07', 'Xã Mường é', '03727', 'Xã');
INSERT INTO category."Wards" VALUES (3730, 119, 'system', '2023-07-26 08:40:17.671016+07', 'system', '2023-07-26 08:40:17.671017+07', 'Xã Chiềng Pha', '03730', 'Xã');
INSERT INTO category."Wards" VALUES (3733, 119, 'system', '2023-07-26 08:40:17.671019+07', 'system', '2023-07-26 08:40:17.671019+07', 'Xã Chiềng La', '03733', 'Xã');
INSERT INTO category."Wards" VALUES (3736, 119, 'system', '2023-07-26 08:40:17.671022+07', 'system', '2023-07-26 08:40:17.671022+07', 'Xã Chiềng Ngàm', '03736', 'Xã');
INSERT INTO category."Wards" VALUES (3739, 119, 'system', '2023-07-26 08:40:17.671024+07', 'system', '2023-07-26 08:40:17.671024+07', 'Xã Liệp Tè', '03739', 'Xã');
INSERT INTO category."Wards" VALUES (3742, 119, 'system', '2023-07-26 08:40:17.671027+07', 'system', '2023-07-26 08:40:17.671027+07', 'Xã é Tòng', '03742', 'Xã');
INSERT INTO category."Wards" VALUES (3745, 119, 'system', '2023-07-26 08:40:17.671029+07', 'system', '2023-07-26 08:40:17.67103+07', 'Xã Phổng Lập', '03745', 'Xã');
INSERT INTO category."Wards" VALUES (3748, 119, 'system', '2023-07-26 08:40:17.671032+07', 'system', '2023-07-26 08:40:17.671032+07', 'Xã Phổng Lăng', '03748', 'Xã');
INSERT INTO category."Wards" VALUES (3751, 119, 'system', '2023-07-26 08:40:17.671035+07', 'system', '2023-07-26 08:40:17.671035+07', 'Xã Chiềng Ly', '03751', 'Xã');
INSERT INTO category."Wards" VALUES (3754, 119, 'system', '2023-07-26 08:40:17.671037+07', 'system', '2023-07-26 08:40:17.671037+07', 'Xã Noong Lay', '03754', 'Xã');
INSERT INTO category."Wards" VALUES (3757, 119, 'system', '2023-07-26 08:40:17.67104+07', 'system', '2023-07-26 08:40:17.67104+07', 'Xã Mường Khiêng', '03757', 'Xã');
INSERT INTO category."Wards" VALUES (3760, 119, 'system', '2023-07-26 08:40:17.671043+07', 'system', '2023-07-26 08:40:17.671043+07', 'Xã Mường Bám', '03760', 'Xã');
INSERT INTO category."Wards" VALUES (3763, 119, 'system', '2023-07-26 08:40:17.671045+07', 'system', '2023-07-26 08:40:17.671045+07', 'Xã Long Hẹ', '03763', 'Xã');
INSERT INTO category."Wards" VALUES (3766, 119, 'system', '2023-07-26 08:40:17.671048+07', 'system', '2023-07-26 08:40:17.671048+07', 'Xã Chiềng Bôm', '03766', 'Xã');
INSERT INTO category."Wards" VALUES (3769, 119, 'system', '2023-07-26 08:40:17.671051+07', 'system', '2023-07-26 08:40:17.671051+07', 'Xã Thôm Mòn', '03769', 'Xã');
INSERT INTO category."Wards" VALUES (3772, 119, 'system', '2023-07-26 08:40:17.671053+07', 'system', '2023-07-26 08:40:17.671053+07', 'Xã Tông Lạnh', '03772', 'Xã');
INSERT INTO category."Wards" VALUES (3775, 119, 'system', '2023-07-26 08:40:17.671056+07', 'system', '2023-07-26 08:40:17.671056+07', 'Xã Tông Cọ', '03775', 'Xã');
INSERT INTO category."Wards" VALUES (3778, 119, 'system', '2023-07-26 08:40:17.671058+07', 'system', '2023-07-26 08:40:17.671058+07', 'Xã Bó Mười', '03778', 'Xã');
INSERT INTO category."Wards" VALUES (3781, 119, 'system', '2023-07-26 08:40:17.671061+07', 'system', '2023-07-26 08:40:17.671061+07', 'Xã Co Mạ', '03781', 'Xã');
INSERT INTO category."Wards" VALUES (3784, 119, 'system', '2023-07-26 08:40:17.671063+07', 'system', '2023-07-26 08:40:17.671063+07', 'Xã Púng Tra', '03784', 'Xã');
INSERT INTO category."Wards" VALUES (3787, 119, 'system', '2023-07-26 08:40:17.671066+07', 'system', '2023-07-26 08:40:17.671066+07', 'Xã Chiềng Pấc', '03787', 'Xã');
INSERT INTO category."Wards" VALUES (3790, 119, 'system', '2023-07-26 08:40:17.671069+07', 'system', '2023-07-26 08:40:17.671069+07', 'Xã Nậm Lầu', '03790', 'Xã');
INSERT INTO category."Wards" VALUES (3793, 119, 'system', '2023-07-26 08:40:17.671071+07', 'system', '2023-07-26 08:40:17.671071+07', 'Xã Bon Phặng', '03793', 'Xã');
INSERT INTO category."Wards" VALUES (3796, 119, 'system', '2023-07-26 08:40:17.671074+07', 'system', '2023-07-26 08:40:17.671074+07', 'Xã Co Tòng', '03796', 'Xã');
INSERT INTO category."Wards" VALUES (3799, 119, 'system', '2023-07-26 08:40:17.671077+07', 'system', '2023-07-26 08:40:17.671077+07', 'Xã Muổi Nọi', '03799', 'Xã');
INSERT INTO category."Wards" VALUES (3802, 119, 'system', '2023-07-26 08:40:17.67108+07', 'system', '2023-07-26 08:40:17.67108+07', 'Xã Pá Lông', '03802', 'Xã');
INSERT INTO category."Wards" VALUES (3805, 119, 'system', '2023-07-26 08:40:17.671082+07', 'system', '2023-07-26 08:40:17.671082+07', 'Xã Bản Lầm', '03805', 'Xã');
INSERT INTO category."Wards" VALUES (3808, 120, 'system', '2023-07-26 08:40:17.671085+07', 'system', '2023-07-26 08:40:17.671085+07', 'Thị trấn Ít Ong', '03808', 'Thị trấn');
INSERT INTO category."Wards" VALUES (3811, 120, 'system', '2023-07-26 08:40:17.671088+07', 'system', '2023-07-26 08:40:17.671088+07', 'Xã Nậm Giôn', '03811', 'Xã');
INSERT INTO category."Wards" VALUES (3814, 120, 'system', '2023-07-26 08:40:17.67109+07', 'system', '2023-07-26 08:40:17.67109+07', 'Xã Chiềng Lao', '03814', 'Xã');
INSERT INTO category."Wards" VALUES (3817, 120, 'system', '2023-07-26 08:40:17.671093+07', 'system', '2023-07-26 08:40:17.671093+07', 'Xã Hua Trai', '03817', 'Xã');
INSERT INTO category."Wards" VALUES (3820, 120, 'system', '2023-07-26 08:40:17.671095+07', 'system', '2023-07-26 08:40:17.671095+07', 'Xã Ngọc Chiến', '03820', 'Xã');
INSERT INTO category."Wards" VALUES (3823, 120, 'system', '2023-07-26 08:40:17.671098+07', 'system', '2023-07-26 08:40:17.671098+07', 'Xã Mường Trai', '03823', 'Xã');
INSERT INTO category."Wards" VALUES (3826, 120, 'system', '2023-07-26 08:40:17.671101+07', 'system', '2023-07-26 08:40:17.671101+07', 'Xã Nậm Păm', '03826', 'Xã');
INSERT INTO category."Wards" VALUES (3829, 120, 'system', '2023-07-26 08:40:17.671103+07', 'system', '2023-07-26 08:40:17.671103+07', 'Xã Chiềng Muôn', '03829', 'Xã');
INSERT INTO category."Wards" VALUES (3832, 120, 'system', '2023-07-26 08:40:17.671106+07', 'system', '2023-07-26 08:40:17.671106+07', 'Xã Chiềng Ân', '03832', 'Xã');
INSERT INTO category."Wards" VALUES (3835, 120, 'system', '2023-07-26 08:40:17.671109+07', 'system', '2023-07-26 08:40:17.671109+07', 'Xã Pi Toong', '03835', 'Xã');
INSERT INTO category."Wards" VALUES (3838, 120, 'system', '2023-07-26 08:40:17.671111+07', 'system', '2023-07-26 08:40:17.671111+07', 'Xã Chiềng Công', '03838', 'Xã');
INSERT INTO category."Wards" VALUES (3841, 120, 'system', '2023-07-26 08:40:17.671114+07', 'system', '2023-07-26 08:40:17.671114+07', 'Xã Tạ Bú', '03841', 'Xã');
INSERT INTO category."Wards" VALUES (3844, 120, 'system', '2023-07-26 08:40:17.671116+07', 'system', '2023-07-26 08:40:17.671116+07', 'Xã Chiềng San', '03844', 'Xã');
INSERT INTO category."Wards" VALUES (3847, 120, 'system', '2023-07-26 08:40:17.671119+07', 'system', '2023-07-26 08:40:17.671119+07', 'Xã Mường Bú', '03847', 'Xã');
INSERT INTO category."Wards" VALUES (3850, 120, 'system', '2023-07-26 08:40:17.671122+07', 'system', '2023-07-26 08:40:17.671122+07', 'Xã Chiềng Hoa', '03850', 'Xã');
INSERT INTO category."Wards" VALUES (3853, 120, 'system', '2023-07-26 08:40:17.671124+07', 'system', '2023-07-26 08:40:17.671124+07', 'Xã Mường Chùm', '03853', 'Xã');
INSERT INTO category."Wards" VALUES (3856, 121, 'system', '2023-07-26 08:40:17.671127+07', 'system', '2023-07-26 08:40:17.671127+07', 'Thị trấn Bắc Yên', '03856', 'Thị trấn');
INSERT INTO category."Wards" VALUES (3859, 121, 'system', '2023-07-26 08:40:17.67113+07', 'system', '2023-07-26 08:40:17.67113+07', 'Xã Phiêng Ban', '03859', 'Xã');
INSERT INTO category."Wards" VALUES (3862, 121, 'system', '2023-07-26 08:40:17.671132+07', 'system', '2023-07-26 08:40:17.671132+07', 'Xã Hang Chú', '03862', 'Xã');
INSERT INTO category."Wards" VALUES (3865, 121, 'system', '2023-07-26 08:40:17.671135+07', 'system', '2023-07-26 08:40:17.671135+07', 'Xã Xím Vàng', '03865', 'Xã');
INSERT INTO category."Wards" VALUES (3868, 121, 'system', '2023-07-26 08:40:17.671138+07', 'system', '2023-07-26 08:40:17.671138+07', 'Xã Tà Xùa', '03868', 'Xã');
INSERT INTO category."Wards" VALUES (3869, 121, 'system', '2023-07-26 08:40:17.67114+07', 'system', '2023-07-26 08:40:17.67114+07', 'Xã Háng Đồng', '03869', 'Xã');
INSERT INTO category."Wards" VALUES (3871, 121, 'system', '2023-07-26 08:40:17.671143+07', 'system', '2023-07-26 08:40:17.671143+07', 'Xã Pắc Ngà', '03871', 'Xã');
INSERT INTO category."Wards" VALUES (3874, 121, 'system', '2023-07-26 08:40:17.671146+07', 'system', '2023-07-26 08:40:17.671146+07', 'Xã Làng Chếu', '03874', 'Xã');
INSERT INTO category."Wards" VALUES (3877, 121, 'system', '2023-07-26 08:40:17.671148+07', 'system', '2023-07-26 08:40:17.671148+07', 'Xã Chim Vàn', '03877', 'Xã');
INSERT INTO category."Wards" VALUES (3880, 121, 'system', '2023-07-26 08:40:17.671151+07', 'system', '2023-07-26 08:40:17.671151+07', 'Xã Mường Khoa', '03880', 'Xã');
INSERT INTO category."Wards" VALUES (3883, 121, 'system', '2023-07-26 08:40:17.671153+07', 'system', '2023-07-26 08:40:17.671153+07', 'Xã Song Pe', '03883', 'Xã');
INSERT INTO category."Wards" VALUES (3886, 121, 'system', '2023-07-26 08:40:17.671156+07', 'system', '2023-07-26 08:40:17.671156+07', 'Xã Hồng Ngài', '03886', 'Xã');
INSERT INTO category."Wards" VALUES (3889, 121, 'system', '2023-07-26 08:40:17.671158+07', 'system', '2023-07-26 08:40:17.671159+07', 'Xã Tạ Khoa', '03889', 'Xã');
INSERT INTO category."Wards" VALUES (3890, 121, 'system', '2023-07-26 08:40:17.671161+07', 'system', '2023-07-26 08:40:17.671161+07', 'Xã Hua Nhàn', '03890', 'Xã');
INSERT INTO category."Wards" VALUES (3892, 121, 'system', '2023-07-26 08:40:17.671164+07', 'system', '2023-07-26 08:40:17.671164+07', 'Xã Phiêng Côn', '03892', 'Xã');
INSERT INTO category."Wards" VALUES (3895, 121, 'system', '2023-07-26 08:40:17.671166+07', 'system', '2023-07-26 08:40:17.671166+07', 'Xã Chiềng Sại', '03895', 'Xã');
INSERT INTO category."Wards" VALUES (3898, 122, 'system', '2023-07-26 08:40:17.671169+07', 'system', '2023-07-26 08:40:17.671169+07', 'Thị trấn Phù Yên', '03898', 'Thị trấn');
INSERT INTO category."Wards" VALUES (3901, 122, 'system', '2023-07-26 08:40:17.671172+07', 'system', '2023-07-26 08:40:17.671172+07', 'Xã Suối Tọ', '03901', 'Xã');
INSERT INTO category."Wards" VALUES (3904, 122, 'system', '2023-07-26 08:40:17.671175+07', 'system', '2023-07-26 08:40:17.671175+07', 'Xã Mường Thải', '03904', 'Xã');
INSERT INTO category."Wards" VALUES (3907, 122, 'system', '2023-07-26 08:40:17.671178+07', 'system', '2023-07-26 08:40:17.671178+07', 'Xã Mường Cơi', '03907', 'Xã');
INSERT INTO category."Wards" VALUES (3910, 122, 'system', '2023-07-26 08:40:17.67118+07', 'system', '2023-07-26 08:40:17.67118+07', 'Xã Quang Huy', '03910', 'Xã');
INSERT INTO category."Wards" VALUES (3913, 122, 'system', '2023-07-26 08:40:17.671183+07', 'system', '2023-07-26 08:40:17.671183+07', 'Xã Huy Bắc', '03913', 'Xã');
INSERT INTO category."Wards" VALUES (3916, 122, 'system', '2023-07-26 08:40:17.671186+07', 'system', '2023-07-26 08:40:17.671186+07', 'Xã Huy Thượng', '03916', 'Xã');
INSERT INTO category."Wards" VALUES (3919, 122, 'system', '2023-07-26 08:40:17.671188+07', 'system', '2023-07-26 08:40:17.671188+07', 'Xã Tân Lang', '03919', 'Xã');
INSERT INTO category."Wards" VALUES (3922, 122, 'system', '2023-07-26 08:40:17.671191+07', 'system', '2023-07-26 08:40:17.671191+07', 'Xã Gia Phù', '03922', 'Xã');
INSERT INTO category."Wards" VALUES (3925, 122, 'system', '2023-07-26 08:40:17.671193+07', 'system', '2023-07-26 08:40:17.671193+07', 'Xã Tường Phù', '03925', 'Xã');
INSERT INTO category."Wards" VALUES (3928, 122, 'system', '2023-07-26 08:40:17.671208+07', 'system', '2023-07-26 08:40:17.671209+07', 'Xã Huy Hạ', '03928', 'Xã');
INSERT INTO category."Wards" VALUES (3931, 122, 'system', '2023-07-26 08:40:17.671211+07', 'system', '2023-07-26 08:40:17.671211+07', 'Xã Huy Tân', '03931', 'Xã');
INSERT INTO category."Wards" VALUES (3934, 122, 'system', '2023-07-26 08:40:17.671214+07', 'system', '2023-07-26 08:40:17.671214+07', 'Xã Mường Lang', '03934', 'Xã');
INSERT INTO category."Wards" VALUES (3937, 122, 'system', '2023-07-26 08:40:17.671217+07', 'system', '2023-07-26 08:40:17.671217+07', 'Xã Suối Bau', '03937', 'Xã');
INSERT INTO category."Wards" VALUES (3940, 122, 'system', '2023-07-26 08:40:17.671219+07', 'system', '2023-07-26 08:40:17.671219+07', 'Xã Huy Tường', '03940', 'Xã');
INSERT INTO category."Wards" VALUES (3943, 122, 'system', '2023-07-26 08:40:17.671222+07', 'system', '2023-07-26 08:40:17.671222+07', 'Xã Mường Do', '03943', 'Xã');
INSERT INTO category."Wards" VALUES (3946, 122, 'system', '2023-07-26 08:40:17.671224+07', 'system', '2023-07-26 08:40:17.671224+07', 'Xã Sập Xa', '03946', 'Xã');
INSERT INTO category."Wards" VALUES (3949, 122, 'system', '2023-07-26 08:40:17.671227+07', 'system', '2023-07-26 08:40:17.671227+07', 'Xã Tường Thượng', '03949', 'Xã');
INSERT INTO category."Wards" VALUES (3952, 122, 'system', '2023-07-26 08:40:17.67123+07', 'system', '2023-07-26 08:40:17.67123+07', 'Xã Tường Tiến', '03952', 'Xã');
INSERT INTO category."Wards" VALUES (3955, 122, 'system', '2023-07-26 08:40:17.671233+07', 'system', '2023-07-26 08:40:17.671233+07', 'Xã Tường Phong', '03955', 'Xã');
INSERT INTO category."Wards" VALUES (3958, 122, 'system', '2023-07-26 08:40:17.671235+07', 'system', '2023-07-26 08:40:17.671235+07', 'Xã Tường Hạ', '03958', 'Xã');
INSERT INTO category."Wards" VALUES (3961, 122, 'system', '2023-07-26 08:40:17.671238+07', 'system', '2023-07-26 08:40:17.671238+07', 'Xã Kim Bon', '03961', 'Xã');
INSERT INTO category."Wards" VALUES (3964, 122, 'system', '2023-07-26 08:40:17.67124+07', 'system', '2023-07-26 08:40:17.67124+07', 'Xã Mường Bang', '03964', 'Xã');
INSERT INTO category."Wards" VALUES (3967, 122, 'system', '2023-07-26 08:40:17.671243+07', 'system', '2023-07-26 08:40:17.671243+07', 'Xã Đá Đỏ', '03967', 'Xã');
INSERT INTO category."Wards" VALUES (3970, 122, 'system', '2023-07-26 08:40:17.671246+07', 'system', '2023-07-26 08:40:17.671246+07', 'Xã Tân Phong', '03970', 'Xã');
INSERT INTO category."Wards" VALUES (3973, 122, 'system', '2023-07-26 08:40:17.671248+07', 'system', '2023-07-26 08:40:17.671248+07', 'Xã Nam Phong', '03973', 'Xã');
INSERT INTO category."Wards" VALUES (3976, 122, 'system', '2023-07-26 08:40:17.671251+07', 'system', '2023-07-26 08:40:17.671251+07', 'Xã Bắc Phong', '03976', 'Xã');
INSERT INTO category."Wards" VALUES (3979, 123, 'system', '2023-07-26 08:40:17.671253+07', 'system', '2023-07-26 08:40:17.671254+07', 'Thị trấn Mộc Châu', '03979', 'Thị trấn');
INSERT INTO category."Wards" VALUES (3982, 123, 'system', '2023-07-26 08:40:17.671256+07', 'system', '2023-07-26 08:40:17.671256+07', 'Thị trấn NT Mộc Châu', '03982', 'Thị trấn');
INSERT INTO category."Wards" VALUES (3985, 123, 'system', '2023-07-26 08:40:17.671259+07', 'system', '2023-07-26 08:40:17.671259+07', 'Xã Chiềng Sơn', '03985', 'Xã');
INSERT INTO category."Wards" VALUES (3988, 123, 'system', '2023-07-26 08:40:17.671262+07', 'system', '2023-07-26 08:40:17.671262+07', 'Xã Tân Hợp', '03988', 'Xã');
INSERT INTO category."Wards" VALUES (3991, 123, 'system', '2023-07-26 08:40:17.671264+07', 'system', '2023-07-26 08:40:17.671264+07', 'Xã Qui Hướng', '03991', 'Xã');
INSERT INTO category."Wards" VALUES (3994, 128, 'system', '2023-07-26 08:40:17.671464+07', 'system', '2023-07-26 08:40:17.671464+07', 'Xã Suối Bàng', '03994', 'Xã');
INSERT INTO category."Wards" VALUES (3997, 123, 'system', '2023-07-26 08:40:17.671267+07', 'system', '2023-07-26 08:40:17.671267+07', 'Xã Tân Lập', '03997', 'Xã');
INSERT INTO category."Wards" VALUES (4000, 123, 'system', '2023-07-26 08:40:17.67127+07', 'system', '2023-07-26 08:40:17.67127+07', 'Xã Nà Mường', '04000', 'Xã');
INSERT INTO category."Wards" VALUES (4003, 123, 'system', '2023-07-26 08:40:17.671272+07', 'system', '2023-07-26 08:40:17.671273+07', 'Xã Tà Lai', '04003', 'Xã');
INSERT INTO category."Wards" VALUES (4006, 128, 'system', '2023-07-26 08:40:17.671466+07', 'system', '2023-07-26 08:40:17.671466+07', 'Xã Song Khủa', '04006', 'Xã');
INSERT INTO category."Wards" VALUES (4009, 128, 'system', '2023-07-26 08:40:17.671469+07', 'system', '2023-07-26 08:40:17.671469+07', 'Xã Liên Hoà', '04009', 'Xã');
INSERT INTO category."Wards" VALUES (4012, 123, 'system', '2023-07-26 08:40:17.671275+07', 'system', '2023-07-26 08:40:17.671275+07', 'Xã Chiềng Hắc', '04012', 'Xã');
INSERT INTO category."Wards" VALUES (4015, 123, 'system', '2023-07-26 08:40:17.671278+07', 'system', '2023-07-26 08:40:17.671278+07', 'Xã Hua Păng', '04015', 'Xã');
INSERT INTO category."Wards" VALUES (4018, 128, 'system', '2023-07-26 08:40:17.671472+07', 'system', '2023-07-26 08:40:17.671472+07', 'Xã Tô Múa', '04018', 'Xã');
INSERT INTO category."Wards" VALUES (4021, 128, 'system', '2023-07-26 08:40:17.671475+07', 'system', '2023-07-26 08:40:17.671475+07', 'Xã Mường Tè', '04021', 'Xã');
INSERT INTO category."Wards" VALUES (4024, 123, 'system', '2023-07-26 08:40:17.67128+07', 'system', '2023-07-26 08:40:17.671281+07', 'Xã Chiềng Khừa', '04024', 'Xã');
INSERT INTO category."Wards" VALUES (4027, 123, 'system', '2023-07-26 08:40:17.671284+07', 'system', '2023-07-26 08:40:17.671284+07', 'Xã Mường Sang', '04027', 'Xã');
INSERT INTO category."Wards" VALUES (4030, 123, 'system', '2023-07-26 08:40:17.671287+07', 'system', '2023-07-26 08:40:17.671287+07', 'Xã Đông Sang', '04030', 'Xã');
INSERT INTO category."Wards" VALUES (4033, 123, 'system', '2023-07-26 08:40:17.671289+07', 'system', '2023-07-26 08:40:17.671289+07', 'Xã Phiêng Luông', '04033', 'Xã');
INSERT INTO category."Wards" VALUES (4036, 128, 'system', '2023-07-26 08:40:17.671477+07', 'system', '2023-07-26 08:40:17.671478+07', 'Xã Chiềng Khoa', '04036', 'Xã');
INSERT INTO category."Wards" VALUES (4039, 128, 'system', '2023-07-26 08:40:17.67148+07', 'system', '2023-07-26 08:40:17.67148+07', 'Xã Mường Men', '04039', 'Xã');
INSERT INTO category."Wards" VALUES (4042, 128, 'system', '2023-07-26 08:40:17.671483+07', 'system', '2023-07-26 08:40:17.671483+07', 'Xã Quang Minh', '04042', 'Xã');
INSERT INTO category."Wards" VALUES (4045, 123, 'system', '2023-07-26 08:40:17.671292+07', 'system', '2023-07-26 08:40:17.671292+07', 'Xã Lóng Sập', '04045', 'Xã');
INSERT INTO category."Wards" VALUES (4048, 128, 'system', '2023-07-26 08:40:17.671485+07', 'system', '2023-07-26 08:40:17.671485+07', 'Xã Vân Hồ', '04048', 'Xã');
INSERT INTO category."Wards" VALUES (4051, 128, 'system', '2023-07-26 08:40:17.671488+07', 'system', '2023-07-26 08:40:17.671488+07', 'Xã Lóng Luông', '04051', 'Xã');
INSERT INTO category."Wards" VALUES (4054, 128, 'system', '2023-07-26 08:40:17.671491+07', 'system', '2023-07-26 08:40:17.671491+07', 'Xã Chiềng Yên', '04054', 'Xã');
INSERT INTO category."Wards" VALUES (4056, 128, 'system', '2023-07-26 08:40:17.671493+07', 'system', '2023-07-26 08:40:17.671493+07', 'Xã Chiềng Xuân', '04056', 'Xã');
INSERT INTO category."Wards" VALUES (4057, 128, 'system', '2023-07-26 08:40:17.671496+07', 'system', '2023-07-26 08:40:17.671496+07', 'Xã Xuân Nha', '04057', 'Xã');
INSERT INTO category."Wards" VALUES (4058, 128, 'system', '2023-07-26 08:40:17.671498+07', 'system', '2023-07-26 08:40:17.671498+07', 'Xã Tân Xuân', '04058', 'Xã');
INSERT INTO category."Wards" VALUES (4060, 124, 'system', '2023-07-26 08:40:17.671295+07', 'system', '2023-07-26 08:40:17.671295+07', 'Thị trấn Yên Châu', '04060', 'Thị trấn');
INSERT INTO category."Wards" VALUES (4063, 124, 'system', '2023-07-26 08:40:17.671297+07', 'system', '2023-07-26 08:40:17.671297+07', 'Xã Chiềng Đông', '04063', 'Xã');
INSERT INTO category."Wards" VALUES (4066, 124, 'system', '2023-07-26 08:40:17.6713+07', 'system', '2023-07-26 08:40:17.6713+07', 'Xã Sập Vạt', '04066', 'Xã');
INSERT INTO category."Wards" VALUES (4069, 124, 'system', '2023-07-26 08:40:17.671303+07', 'system', '2023-07-26 08:40:17.671303+07', 'Xã Chiềng Sàng', '04069', 'Xã');
INSERT INTO category."Wards" VALUES (4072, 124, 'system', '2023-07-26 08:40:17.671306+07', 'system', '2023-07-26 08:40:17.671306+07', 'Xã Chiềng Pằn', '04072', 'Xã');
INSERT INTO category."Wards" VALUES (4075, 124, 'system', '2023-07-26 08:40:17.671308+07', 'system', '2023-07-26 08:40:17.671308+07', 'Xã Viêng Lán', '04075', 'Xã');
INSERT INTO category."Wards" VALUES (4078, 124, 'system', '2023-07-26 08:40:17.671311+07', 'system', '2023-07-26 08:40:17.671311+07', 'Xã Chiềng Hặc', '04078', 'Xã');
INSERT INTO category."Wards" VALUES (4081, 124, 'system', '2023-07-26 08:40:17.671313+07', 'system', '2023-07-26 08:40:17.671313+07', 'Xã Mường Lựm', '04081', 'Xã');
INSERT INTO category."Wards" VALUES (4084, 124, 'system', '2023-07-26 08:40:17.671316+07', 'system', '2023-07-26 08:40:17.671316+07', 'Xã Chiềng On', '04084', 'Xã');
INSERT INTO category."Wards" VALUES (4087, 124, 'system', '2023-07-26 08:40:17.671319+07', 'system', '2023-07-26 08:40:17.671319+07', 'Xã Yên Sơn', '04087', 'Xã');
INSERT INTO category."Wards" VALUES (4090, 124, 'system', '2023-07-26 08:40:17.671321+07', 'system', '2023-07-26 08:40:17.671321+07', 'Xã Chiềng Khoi', '04090', 'Xã');
INSERT INTO category."Wards" VALUES (4093, 124, 'system', '2023-07-26 08:40:17.671324+07', 'system', '2023-07-26 08:40:17.671324+07', 'Xã Tú Nang', '04093', 'Xã');
INSERT INTO category."Wards" VALUES (4096, 124, 'system', '2023-07-26 08:40:17.671326+07', 'system', '2023-07-26 08:40:17.671326+07', 'Xã Lóng Phiêng', '04096', 'Xã');
INSERT INTO category."Wards" VALUES (4099, 124, 'system', '2023-07-26 08:40:17.671329+07', 'system', '2023-07-26 08:40:17.671329+07', 'Xã Phiêng Khoài', '04099', 'Xã');
INSERT INTO category."Wards" VALUES (4102, 124, 'system', '2023-07-26 08:40:17.671332+07', 'system', '2023-07-26 08:40:17.671332+07', 'Xã Chiềng Tương', '04102', 'Xã');
INSERT INTO category."Wards" VALUES (4105, 125, 'system', '2023-07-26 08:40:17.671334+07', 'system', '2023-07-26 08:40:17.671334+07', 'Thị trấn Hát Lót', '04105', 'Thị trấn');
INSERT INTO category."Wards" VALUES (4108, 125, 'system', '2023-07-26 08:40:17.671337+07', 'system', '2023-07-26 08:40:17.671337+07', 'Xã Chiềng Sung', '04108', 'Xã');
INSERT INTO category."Wards" VALUES (4111, 125, 'system', '2023-07-26 08:40:17.67134+07', 'system', '2023-07-26 08:40:17.67134+07', 'Xã Mường Bằng', '04111', 'Xã');
INSERT INTO category."Wards" VALUES (4114, 125, 'system', '2023-07-26 08:40:17.671343+07', 'system', '2023-07-26 08:40:17.671343+07', 'Xã Chiềng Chăn', '04114', 'Xã');
INSERT INTO category."Wards" VALUES (4117, 125, 'system', '2023-07-26 08:40:17.671345+07', 'system', '2023-07-26 08:40:17.671345+07', 'Xã Mương Chanh', '04117', 'Xã');
INSERT INTO category."Wards" VALUES (4120, 125, 'system', '2023-07-26 08:40:17.671348+07', 'system', '2023-07-26 08:40:17.671348+07', 'Xã Chiềng Ban', '04120', 'Xã');
INSERT INTO category."Wards" VALUES (4123, 125, 'system', '2023-07-26 08:40:17.671351+07', 'system', '2023-07-26 08:40:17.671351+07', 'Xã Chiềng Mung', '04123', 'Xã');
INSERT INTO category."Wards" VALUES (4126, 125, 'system', '2023-07-26 08:40:17.671353+07', 'system', '2023-07-26 08:40:17.671353+07', 'Xã Mường Bon', '04126', 'Xã');
INSERT INTO category."Wards" VALUES (4129, 125, 'system', '2023-07-26 08:40:17.671356+07', 'system', '2023-07-26 08:40:17.671356+07', 'Xã Chiềng Chung', '04129', 'Xã');
INSERT INTO category."Wards" VALUES (4132, 125, 'system', '2023-07-26 08:40:17.671359+07', 'system', '2023-07-26 08:40:17.671359+07', 'Xã Chiềng Mai', '04132', 'Xã');
INSERT INTO category."Wards" VALUES (4135, 125, 'system', '2023-07-26 08:40:17.671361+07', 'system', '2023-07-26 08:40:17.671361+07', 'Xã Hát Lót', '04135', 'Xã');
INSERT INTO category."Wards" VALUES (4136, 125, 'system', '2023-07-26 08:40:17.671364+07', 'system', '2023-07-26 08:40:17.671364+07', 'Xã Nà Pó', '04136', 'Xã');
INSERT INTO category."Wards" VALUES (4138, 125, 'system', '2023-07-26 08:40:17.671366+07', 'system', '2023-07-26 08:40:17.671366+07', 'Xã Cò  Nòi', '04138', 'Xã');
INSERT INTO category."Wards" VALUES (4141, 125, 'system', '2023-07-26 08:40:17.671369+07', 'system', '2023-07-26 08:40:17.671369+07', 'Xã Chiềng Nơi', '04141', 'Xã');
INSERT INTO category."Wards" VALUES (4144, 125, 'system', '2023-07-26 08:40:17.671371+07', 'system', '2023-07-26 08:40:17.671371+07', 'Xã Phiêng Cằm', '04144', 'Xã');
INSERT INTO category."Wards" VALUES (4147, 125, 'system', '2023-07-26 08:40:17.671374+07', 'system', '2023-07-26 08:40:17.671374+07', 'Xã Chiềng Dong', '04147', 'Xã');
INSERT INTO category."Wards" VALUES (4150, 125, 'system', '2023-07-26 08:40:17.671377+07', 'system', '2023-07-26 08:40:17.671377+07', 'Xã Chiềng Kheo', '04150', 'Xã');
INSERT INTO category."Wards" VALUES (4153, 125, 'system', '2023-07-26 08:40:17.67138+07', 'system', '2023-07-26 08:40:17.67138+07', 'Xã Chiềng Ve', '04153', 'Xã');
INSERT INTO category."Wards" VALUES (4156, 125, 'system', '2023-07-26 08:40:17.671383+07', 'system', '2023-07-26 08:40:17.671383+07', 'Xã Chiềng Lương', '04156', 'Xã');
INSERT INTO category."Wards" VALUES (4159, 125, 'system', '2023-07-26 08:40:17.671385+07', 'system', '2023-07-26 08:40:17.671385+07', 'Xã Phiêng Pằn', '04159', 'Xã');
INSERT INTO category."Wards" VALUES (4162, 125, 'system', '2023-07-26 08:40:17.671388+07', 'system', '2023-07-26 08:40:17.671388+07', 'Xã Nà Ơt', '04162', 'Xã');
INSERT INTO category."Wards" VALUES (4165, 125, 'system', '2023-07-26 08:40:17.671391+07', 'system', '2023-07-26 08:40:17.671391+07', 'Xã Tà Hộc', '04165', 'Xã');
INSERT INTO category."Wards" VALUES (4168, 126, 'system', '2023-07-26 08:40:17.671393+07', 'system', '2023-07-26 08:40:17.671393+07', 'Thị trấn Sông Mã', '04168', 'Thị trấn');
INSERT INTO category."Wards" VALUES (4171, 126, 'system', '2023-07-26 08:40:17.671396+07', 'system', '2023-07-26 08:40:17.671396+07', 'Xã Bó Sinh', '04171', 'Xã');
INSERT INTO category."Wards" VALUES (4174, 126, 'system', '2023-07-26 08:40:17.671399+07', 'system', '2023-07-26 08:40:17.671399+07', 'Xã Pú Pẩu', '04174', 'Xã');
INSERT INTO category."Wards" VALUES (4177, 126, 'system', '2023-07-26 08:40:17.671401+07', 'system', '2023-07-26 08:40:17.671401+07', 'Xã Chiềng Phung', '04177', 'Xã');
INSERT INTO category."Wards" VALUES (4180, 126, 'system', '2023-07-26 08:40:17.671404+07', 'system', '2023-07-26 08:40:17.671404+07', 'Xã Chiềng En', '04180', 'Xã');
INSERT INTO category."Wards" VALUES (4183, 126, 'system', '2023-07-26 08:40:17.671406+07', 'system', '2023-07-26 08:40:17.671406+07', 'Xã Mường Lầm', '04183', 'Xã');
INSERT INTO category."Wards" VALUES (4186, 126, 'system', '2023-07-26 08:40:17.671409+07', 'system', '2023-07-26 08:40:17.671409+07', 'Xã Nậm Ty', '04186', 'Xã');
INSERT INTO category."Wards" VALUES (4189, 126, 'system', '2023-07-26 08:40:17.671412+07', 'system', '2023-07-26 08:40:17.671412+07', 'Xã Đứa Mòn', '04189', 'Xã');
INSERT INTO category."Wards" VALUES (4192, 126, 'system', '2023-07-26 08:40:17.671415+07', 'system', '2023-07-26 08:40:17.671415+07', 'Xã Yên Hưng', '04192', 'Xã');
INSERT INTO category."Wards" VALUES (4195, 126, 'system', '2023-07-26 08:40:17.671417+07', 'system', '2023-07-26 08:40:17.671417+07', 'Xã Chiềng Sơ', '04195', 'Xã');
INSERT INTO category."Wards" VALUES (4198, 126, 'system', '2023-07-26 08:40:17.67142+07', 'system', '2023-07-26 08:40:17.67142+07', 'Xã Nà Nghịu', '04198', 'Xã');
INSERT INTO category."Wards" VALUES (4201, 126, 'system', '2023-07-26 08:40:17.671422+07', 'system', '2023-07-26 08:40:17.671422+07', 'Xã Nậm Mằn', '04201', 'Xã');
INSERT INTO category."Wards" VALUES (4204, 126, 'system', '2023-07-26 08:40:17.671425+07', 'system', '2023-07-26 08:40:17.671425+07', 'Xã Chiềng Khoong', '04204', 'Xã');
INSERT INTO category."Wards" VALUES (4207, 126, 'system', '2023-07-26 08:40:17.671428+07', 'system', '2023-07-26 08:40:17.671428+07', 'Xã Chiềng Cang', '04207', 'Xã');
INSERT INTO category."Wards" VALUES (4210, 126, 'system', '2023-07-26 08:40:17.67143+07', 'system', '2023-07-26 08:40:17.67143+07', 'Xã Huổi Một', '04210', 'Xã');
INSERT INTO category."Wards" VALUES (4213, 126, 'system', '2023-07-26 08:40:17.671433+07', 'system', '2023-07-26 08:40:17.671433+07', 'Xã Mường Sai', '04213', 'Xã');
INSERT INTO category."Wards" VALUES (4216, 126, 'system', '2023-07-26 08:40:17.671435+07', 'system', '2023-07-26 08:40:17.671435+07', 'Xã Mường Cai', '04216', 'Xã');
INSERT INTO category."Wards" VALUES (4219, 126, 'system', '2023-07-26 08:40:17.671438+07', 'system', '2023-07-26 08:40:17.671438+07', 'Xã Mường Hung', '04219', 'Xã');
INSERT INTO category."Wards" VALUES (4222, 126, 'system', '2023-07-26 08:40:17.671441+07', 'system', '2023-07-26 08:40:17.671441+07', 'Xã Chiềng Khương', '04222', 'Xã');
INSERT INTO category."Wards" VALUES (4225, 127, 'system', '2023-07-26 08:40:17.671443+07', 'system', '2023-07-26 08:40:17.671443+07', 'Xã Sam Kha', '04225', 'Xã');
INSERT INTO category."Wards" VALUES (4228, 127, 'system', '2023-07-26 08:40:17.671446+07', 'system', '2023-07-26 08:40:17.671446+07', 'Xã Púng Bánh', '04228', 'Xã');
INSERT INTO category."Wards" VALUES (4231, 127, 'system', '2023-07-26 08:40:17.671448+07', 'system', '2023-07-26 08:40:17.671448+07', 'Xã Sốp Cộp', '04231', 'Xã');
INSERT INTO category."Wards" VALUES (4234, 127, 'system', '2023-07-26 08:40:17.67145+07', 'system', '2023-07-26 08:40:17.671451+07', 'Xã Dồm Cang', '04234', 'Xã');
INSERT INTO category."Wards" VALUES (4237, 127, 'system', '2023-07-26 08:40:17.671453+07', 'system', '2023-07-26 08:40:17.671453+07', 'Xã Nậm Lạnh', '04237', 'Xã');
INSERT INTO category."Wards" VALUES (4240, 127, 'system', '2023-07-26 08:40:17.671456+07', 'system', '2023-07-26 08:40:17.671456+07', 'Xã Mường Lèo', '04240', 'Xã');
INSERT INTO category."Wards" VALUES (4243, 127, 'system', '2023-07-26 08:40:17.671458+07', 'system', '2023-07-26 08:40:17.671458+07', 'Xã Mường Và', '04243', 'Xã');
INSERT INTO category."Wards" VALUES (4246, 127, 'system', '2023-07-26 08:40:17.671461+07', 'system', '2023-07-26 08:40:17.671461+07', 'Xã Mường Lạn', '04246', 'Xã');
INSERT INTO category."Wards" VALUES (4249, 132, 'system', '2023-07-26 08:40:17.671501+07', 'system', '2023-07-26 08:40:17.671501+07', 'Phường Yên Thịnh', '04249', 'Phường');
INSERT INTO category."Wards" VALUES (4252, 132, 'system', '2023-07-26 08:40:17.671504+07', 'system', '2023-07-26 08:40:17.671504+07', 'Phường Yên Ninh', '04252', 'Phường');
INSERT INTO category."Wards" VALUES (4255, 132, 'system', '2023-07-26 08:40:17.671507+07', 'system', '2023-07-26 08:40:17.671507+07', 'Phường Minh Tân', '04255', 'Phường');
INSERT INTO category."Wards" VALUES (4258, 132, 'system', '2023-07-26 08:40:17.67151+07', 'system', '2023-07-26 08:40:17.67151+07', 'Phường Nguyễn Thái Học', '04258', 'Phường');
INSERT INTO category."Wards" VALUES (4261, 132, 'system', '2023-07-26 08:40:17.671515+07', 'system', '2023-07-26 08:40:17.671515+07', 'Phường Đồng Tâm', '04261', 'Phường');
INSERT INTO category."Wards" VALUES (4264, 132, 'system', '2023-07-26 08:40:17.67152+07', 'system', '2023-07-26 08:40:17.67152+07', 'Phường Nguyễn Phúc', '04264', 'Phường');
INSERT INTO category."Wards" VALUES (4267, 132, 'system', '2023-07-26 08:40:17.671525+07', 'system', '2023-07-26 08:40:17.671525+07', 'Phường Hồng Hà', '04267', 'Phường');
INSERT INTO category."Wards" VALUES (4270, 132, 'system', '2023-07-26 08:40:17.67153+07', 'system', '2023-07-26 08:40:17.67153+07', 'Xã Minh Bảo', '04270', 'Xã');
INSERT INTO category."Wards" VALUES (4273, 132, 'system', '2023-07-26 08:40:17.671534+07', 'system', '2023-07-26 08:40:17.671535+07', 'Phường Nam Cường', '04273', 'Phường');
INSERT INTO category."Wards" VALUES (4276, 132, 'system', '2023-07-26 08:40:17.67154+07', 'system', '2023-07-26 08:40:17.67154+07', 'Xã Tuy Lộc', '04276', 'Xã');
INSERT INTO category."Wards" VALUES (4279, 132, 'system', '2023-07-26 08:40:17.671543+07', 'system', '2023-07-26 08:40:17.671543+07', 'Xã Tân Thịnh', '04279', 'Xã');
INSERT INTO category."Wards" VALUES (4282, 133, 'system', '2023-07-26 08:40:17.671557+07', 'system', '2023-07-26 08:40:17.671557+07', 'Phường Pú Trạng', '04282', 'Phường');
INSERT INTO category."Wards" VALUES (4285, 133, 'system', '2023-07-26 08:40:17.67156+07', 'system', '2023-07-26 08:40:17.67156+07', 'Phường Trung Tâm', '04285', 'Phường');
INSERT INTO category."Wards" VALUES (4288, 133, 'system', '2023-07-26 08:40:17.671563+07', 'system', '2023-07-26 08:40:17.671563+07', 'Phường Tân An', '04288', 'Phường');
INSERT INTO category."Wards" VALUES (4291, 133, 'system', '2023-07-26 08:40:17.671566+07', 'system', '2023-07-26 08:40:17.671566+07', 'Phường Cầu Thia', '04291', 'Phường');
INSERT INTO category."Wards" VALUES (4294, 133, 'system', '2023-07-26 08:40:17.671568+07', 'system', '2023-07-26 08:40:17.671568+07', 'Xã Nghĩa Lợi', '04294', 'Xã');
INSERT INTO category."Wards" VALUES (4297, 133, 'system', '2023-07-26 08:40:17.671571+07', 'system', '2023-07-26 08:40:17.671571+07', 'Xã Nghĩa Phúc', '04297', 'Xã');
INSERT INTO category."Wards" VALUES (4300, 133, 'system', '2023-07-26 08:40:17.671573+07', 'system', '2023-07-26 08:40:17.671574+07', 'Xã Nghĩa An', '04300', 'Xã');
INSERT INTO category."Wards" VALUES (4303, 135, 'system', '2023-07-26 08:40:17.671596+07', 'system', '2023-07-26 08:40:17.671596+07', 'Thị trấn Yên Thế', '04303', 'Thị trấn');
INSERT INTO category."Wards" VALUES (4306, 135, 'system', '2023-07-26 08:40:17.671599+07', 'system', '2023-07-26 08:40:17.671599+07', 'Xã Tân Phượng', '04306', 'Xã');
INSERT INTO category."Wards" VALUES (4309, 135, 'system', '2023-07-26 08:40:17.671602+07', 'system', '2023-07-26 08:40:17.671602+07', 'Xã Lâm Thượng', '04309', 'Xã');
INSERT INTO category."Wards" VALUES (4312, 135, 'system', '2023-07-26 08:40:17.671604+07', 'system', '2023-07-26 08:40:17.671604+07', 'Xã Khánh Thiện', '04312', 'Xã');
INSERT INTO category."Wards" VALUES (4315, 135, 'system', '2023-07-26 08:40:17.671607+07', 'system', '2023-07-26 08:40:17.671607+07', 'Xã Minh Chuẩn', '04315', 'Xã');
INSERT INTO category."Wards" VALUES (4318, 135, 'system', '2023-07-26 08:40:17.67161+07', 'system', '2023-07-26 08:40:17.67161+07', 'Xã Mai Sơn', '04318', 'Xã');
INSERT INTO category."Wards" VALUES (4321, 135, 'system', '2023-07-26 08:40:17.671612+07', 'system', '2023-07-26 08:40:17.671612+07', 'Xã Khai Trung', '04321', 'Xã');
INSERT INTO category."Wards" VALUES (4324, 135, 'system', '2023-07-26 08:40:17.671615+07', 'system', '2023-07-26 08:40:17.671615+07', 'Xã Mường Lai', '04324', 'Xã');
INSERT INTO category."Wards" VALUES (4327, 135, 'system', '2023-07-26 08:40:17.671617+07', 'system', '2023-07-26 08:40:17.671617+07', 'Xã An Lạc', '04327', 'Xã');
INSERT INTO category."Wards" VALUES (4330, 135, 'system', '2023-07-26 08:40:17.67162+07', 'system', '2023-07-26 08:40:17.67162+07', 'Xã Minh Xuân', '04330', 'Xã');
INSERT INTO category."Wards" VALUES (4333, 135, 'system', '2023-07-26 08:40:17.671622+07', 'system', '2023-07-26 08:40:17.671622+07', 'Xã Tô Mậu', '04333', 'Xã');
INSERT INTO category."Wards" VALUES (4336, 135, 'system', '2023-07-26 08:40:17.671625+07', 'system', '2023-07-26 08:40:17.671625+07', 'Xã Tân Lĩnh', '04336', 'Xã');
INSERT INTO category."Wards" VALUES (4339, 135, 'system', '2023-07-26 08:40:17.671628+07', 'system', '2023-07-26 08:40:17.671628+07', 'Xã Yên Thắng', '04339', 'Xã');
INSERT INTO category."Wards" VALUES (4342, 135, 'system', '2023-07-26 08:40:17.67163+07', 'system', '2023-07-26 08:40:17.67163+07', 'Xã Khánh Hoà', '04342', 'Xã');
INSERT INTO category."Wards" VALUES (4345, 135, 'system', '2023-07-26 08:40:17.671633+07', 'system', '2023-07-26 08:40:17.671633+07', 'Xã Vĩnh Lạc', '04345', 'Xã');
INSERT INTO category."Wards" VALUES (4348, 135, 'system', '2023-07-26 08:40:17.671635+07', 'system', '2023-07-26 08:40:17.671635+07', 'Xã Liễu Đô', '04348', 'Xã');
INSERT INTO category."Wards" VALUES (4351, 135, 'system', '2023-07-26 08:40:17.671638+07', 'system', '2023-07-26 08:40:17.671638+07', 'Xã Động Quan', '04351', 'Xã');
INSERT INTO category."Wards" VALUES (4354, 135, 'system', '2023-07-26 08:40:17.671641+07', 'system', '2023-07-26 08:40:17.671641+07', 'Xã Tân Lập', '04354', 'Xã');
INSERT INTO category."Wards" VALUES (4357, 135, 'system', '2023-07-26 08:40:17.671643+07', 'system', '2023-07-26 08:40:17.671643+07', 'Xã Minh Tiến', '04357', 'Xã');
INSERT INTO category."Wards" VALUES (4360, 135, 'system', '2023-07-26 08:40:17.671646+07', 'system', '2023-07-26 08:40:17.671646+07', 'Xã Trúc Lâu', '04360', 'Xã');
INSERT INTO category."Wards" VALUES (4363, 135, 'system', '2023-07-26 08:40:17.671648+07', 'system', '2023-07-26 08:40:17.671648+07', 'Xã Phúc Lợi', '04363', 'Xã');
INSERT INTO category."Wards" VALUES (4366, 135, 'system', '2023-07-26 08:40:17.671651+07', 'system', '2023-07-26 08:40:17.671651+07', 'Xã Phan Thanh', '04366', 'Xã');
INSERT INTO category."Wards" VALUES (4369, 135, 'system', '2023-07-26 08:40:17.671654+07', 'system', '2023-07-26 08:40:17.671654+07', 'Xã An Phú', '04369', 'Xã');
INSERT INTO category."Wards" VALUES (4372, 135, 'system', '2023-07-26 08:40:17.671656+07', 'system', '2023-07-26 08:40:17.671656+07', 'Xã Trung Tâm', '04372', 'Xã');
INSERT INTO category."Wards" VALUES (4375, 136, 'system', '2023-07-26 08:40:17.671659+07', 'system', '2023-07-26 08:40:17.671659+07', 'Thị trấn Mậu A', '04375', 'Thị trấn');
INSERT INTO category."Wards" VALUES (4378, 136, 'system', '2023-07-26 08:40:17.671662+07', 'system', '2023-07-26 08:40:17.671662+07', 'Xã Lang Thíp', '04378', 'Xã');
INSERT INTO category."Wards" VALUES (4381, 136, 'system', '2023-07-26 08:40:17.671664+07', 'system', '2023-07-26 08:40:17.671665+07', 'Xã Lâm Giang', '04381', 'Xã');
INSERT INTO category."Wards" VALUES (4384, 136, 'system', '2023-07-26 08:40:17.671667+07', 'system', '2023-07-26 08:40:17.671667+07', 'Xã Châu Quế Thượng', '04384', 'Xã');
INSERT INTO category."Wards" VALUES (4387, 136, 'system', '2023-07-26 08:40:17.67167+07', 'system', '2023-07-26 08:40:17.67167+07', 'Xã Châu Quế Hạ', '04387', 'Xã');
INSERT INTO category."Wards" VALUES (4390, 136, 'system', '2023-07-26 08:40:17.671673+07', 'system', '2023-07-26 08:40:17.671673+07', 'Xã An Bình', '04390', 'Xã');
INSERT INTO category."Wards" VALUES (4393, 136, 'system', '2023-07-26 08:40:17.671675+07', 'system', '2023-07-26 08:40:17.671676+07', 'Xã Quang Minh', '04393', 'Xã');
INSERT INTO category."Wards" VALUES (4396, 136, 'system', '2023-07-26 08:40:17.671678+07', 'system', '2023-07-26 08:40:17.671678+07', 'Xã Đông An', '04396', 'Xã');
INSERT INTO category."Wards" VALUES (4399, 136, 'system', '2023-07-26 08:40:17.671681+07', 'system', '2023-07-26 08:40:17.671681+07', 'Xã Đông Cuông', '04399', 'Xã');
INSERT INTO category."Wards" VALUES (4402, 136, 'system', '2023-07-26 08:40:17.671684+07', 'system', '2023-07-26 08:40:17.671684+07', 'Xã Phong Dụ Hạ', '04402', 'Xã');
INSERT INTO category."Wards" VALUES (4405, 136, 'system', '2023-07-26 08:40:17.671687+07', 'system', '2023-07-26 08:40:17.671687+07', 'Xã Mậu Đông', '04405', 'Xã');
INSERT INTO category."Wards" VALUES (4408, 136, 'system', '2023-07-26 08:40:17.67169+07', 'system', '2023-07-26 08:40:17.67169+07', 'Xã Ngòi A', '04408', 'Xã');
INSERT INTO category."Wards" VALUES (4411, 136, 'system', '2023-07-26 08:40:17.671692+07', 'system', '2023-07-26 08:40:17.671692+07', 'Xã Xuân Tầm', '04411', 'Xã');
INSERT INTO category."Wards" VALUES (4414, 136, 'system', '2023-07-26 08:40:17.671695+07', 'system', '2023-07-26 08:40:17.671695+07', 'Xã Tân Hợp', '04414', 'Xã');
INSERT INTO category."Wards" VALUES (4417, 136, 'system', '2023-07-26 08:40:17.671697+07', 'system', '2023-07-26 08:40:17.671697+07', 'Xã An Thịnh', '04417', 'Xã');
INSERT INTO category."Wards" VALUES (4420, 136, 'system', '2023-07-26 08:40:17.6717+07', 'system', '2023-07-26 08:40:17.6717+07', 'Xã Yên Thái', '04420', 'Xã');
INSERT INTO category."Wards" VALUES (4423, 136, 'system', '2023-07-26 08:40:17.671703+07', 'system', '2023-07-26 08:40:17.671703+07', 'Xã Phong Dụ Thượng', '04423', 'Xã');
INSERT INTO category."Wards" VALUES (4426, 136, 'system', '2023-07-26 08:40:17.671705+07', 'system', '2023-07-26 08:40:17.671705+07', 'Xã Yên Hợp', '04426', 'Xã');
INSERT INTO category."Wards" VALUES (4429, 136, 'system', '2023-07-26 08:40:17.671708+07', 'system', '2023-07-26 08:40:17.671708+07', 'Xã Đại Sơn', '04429', 'Xã');
INSERT INTO category."Wards" VALUES (4435, 136, 'system', '2023-07-26 08:40:17.671711+07', 'system', '2023-07-26 08:40:17.671711+07', 'Xã Đại Phác', '04435', 'Xã');
INSERT INTO category."Wards" VALUES (4438, 136, 'system', '2023-07-26 08:40:17.671713+07', 'system', '2023-07-26 08:40:17.671713+07', 'Xã Yên Phú', '04438', 'Xã');
INSERT INTO category."Wards" VALUES (4441, 136, 'system', '2023-07-26 08:40:17.671716+07', 'system', '2023-07-26 08:40:17.671716+07', 'Xã Xuân Ái', '04441', 'Xã');
INSERT INTO category."Wards" VALUES (4447, 136, 'system', '2023-07-26 08:40:17.671719+07', 'system', '2023-07-26 08:40:17.671719+07', 'Xã Viễn Sơn', '04447', 'Xã');
INSERT INTO category."Wards" VALUES (4450, 136, 'system', '2023-07-26 08:40:17.671721+07', 'system', '2023-07-26 08:40:17.671721+07', 'Xã Mỏ Vàng', '04450', 'Xã');
INSERT INTO category."Wards" VALUES (4453, 136, 'system', '2023-07-26 08:40:17.671724+07', 'system', '2023-07-26 08:40:17.671724+07', 'Xã Nà Hẩu', '04453', 'Xã');
INSERT INTO category."Wards" VALUES (4456, 137, 'system', '2023-07-26 08:40:17.671726+07', 'system', '2023-07-26 08:40:17.671726+07', 'Thị trấn Mù Căng Chải', '04456', 'Thị trấn');
INSERT INTO category."Wards" VALUES (4459, 137, 'system', '2023-07-26 08:40:17.671729+07', 'system', '2023-07-26 08:40:17.671729+07', 'Xã Hồ Bốn', '04459', 'Xã');
INSERT INTO category."Wards" VALUES (4462, 137, 'system', '2023-07-26 08:40:17.671732+07', 'system', '2023-07-26 08:40:17.671732+07', 'Xã Nậm Có', '04462', 'Xã');
INSERT INTO category."Wards" VALUES (4465, 137, 'system', '2023-07-26 08:40:17.671734+07', 'system', '2023-07-26 08:40:17.671735+07', 'Xã Khao Mang', '04465', 'Xã');
INSERT INTO category."Wards" VALUES (4468, 137, 'system', '2023-07-26 08:40:17.671737+07', 'system', '2023-07-26 08:40:17.671737+07', 'Xã Mồ Dề', '04468', 'Xã');
INSERT INTO category."Wards" VALUES (4471, 137, 'system', '2023-07-26 08:40:17.67174+07', 'system', '2023-07-26 08:40:17.67174+07', 'Xã Chế Cu Nha', '04471', 'Xã');
INSERT INTO category."Wards" VALUES (4474, 137, 'system', '2023-07-26 08:40:17.671742+07', 'system', '2023-07-26 08:40:17.671742+07', 'Xã Lao Chải', '04474', 'Xã');
INSERT INTO category."Wards" VALUES (4477, 137, 'system', '2023-07-26 08:40:17.671745+07', 'system', '2023-07-26 08:40:17.671745+07', 'Xã Kim Nọi', '04477', 'Xã');
INSERT INTO category."Wards" VALUES (4480, 137, 'system', '2023-07-26 08:40:17.671747+07', 'system', '2023-07-26 08:40:17.671747+07', 'Xã Cao Phạ', '04480', 'Xã');
INSERT INTO category."Wards" VALUES (4483, 137, 'system', '2023-07-26 08:40:17.67175+07', 'system', '2023-07-26 08:40:17.67175+07', 'Xã La Pán Tẩn', '04483', 'Xã');
INSERT INTO category."Wards" VALUES (4486, 137, 'system', '2023-07-26 08:40:17.671753+07', 'system', '2023-07-26 08:40:17.671753+07', 'Xã Dế Su Phình', '04486', 'Xã');
INSERT INTO category."Wards" VALUES (4489, 137, 'system', '2023-07-26 08:40:17.671755+07', 'system', '2023-07-26 08:40:17.671755+07', 'Xã Chế Tạo', '04489', 'Xã');
INSERT INTO category."Wards" VALUES (4492, 137, 'system', '2023-07-26 08:40:17.671758+07', 'system', '2023-07-26 08:40:17.671758+07', 'Xã Púng Luông', '04492', 'Xã');
INSERT INTO category."Wards" VALUES (4495, 137, 'system', '2023-07-26 08:40:17.671761+07', 'system', '2023-07-26 08:40:17.671761+07', 'Xã Nậm Khắt', '04495', 'Xã');
INSERT INTO category."Wards" VALUES (4498, 138, 'system', '2023-07-26 08:40:17.671763+07', 'system', '2023-07-26 08:40:17.671763+07', 'Thị trấn Cổ Phúc', '04498', 'Thị trấn');
INSERT INTO category."Wards" VALUES (4501, 138, 'system', '2023-07-26 08:40:17.671766+07', 'system', '2023-07-26 08:40:17.671766+07', 'Xã Tân Đồng', '04501', 'Xã');
INSERT INTO category."Wards" VALUES (4504, 138, 'system', '2023-07-26 08:40:17.671769+07', 'system', '2023-07-26 08:40:17.671769+07', 'Xã Báo Đáp', '04504', 'Xã');
INSERT INTO category."Wards" VALUES (4507, 138, 'system', '2023-07-26 08:40:17.671772+07', 'system', '2023-07-26 08:40:17.671772+07', 'Xã Đào Thịnh', '04507', 'Xã');
INSERT INTO category."Wards" VALUES (4510, 138, 'system', '2023-07-26 08:40:17.671774+07', 'system', '2023-07-26 08:40:17.671775+07', 'Xã Việt Thành', '04510', 'Xã');
INSERT INTO category."Wards" VALUES (4513, 138, 'system', '2023-07-26 08:40:17.671777+07', 'system', '2023-07-26 08:40:17.671777+07', 'Xã Hòa Cuông', '04513', 'Xã');
INSERT INTO category."Wards" VALUES (4516, 138, 'system', '2023-07-26 08:40:17.67178+07', 'system', '2023-07-26 08:40:17.67178+07', 'Xã Minh Quán', '04516', 'Xã');
INSERT INTO category."Wards" VALUES (4519, 138, 'system', '2023-07-26 08:40:17.671783+07', 'system', '2023-07-26 08:40:17.671783+07', 'Xã Quy Mông', '04519', 'Xã');
INSERT INTO category."Wards" VALUES (4522, 138, 'system', '2023-07-26 08:40:17.671785+07', 'system', '2023-07-26 08:40:17.671786+07', 'Xã Cường Thịnh', '04522', 'Xã');
INSERT INTO category."Wards" VALUES (4525, 138, 'system', '2023-07-26 08:40:17.671788+07', 'system', '2023-07-26 08:40:17.671788+07', 'Xã Kiên Thành', '04525', 'Xã');
INSERT INTO category."Wards" VALUES (4528, 138, 'system', '2023-07-26 08:40:17.671791+07', 'system', '2023-07-26 08:40:17.671791+07', 'Xã Nga Quán', '04528', 'Xã');
INSERT INTO category."Wards" VALUES (4531, 138, 'system', '2023-07-26 08:40:17.671793+07', 'system', '2023-07-26 08:40:17.671793+07', 'Xã Y Can', '04531', 'Xã');
INSERT INTO category."Wards" VALUES (4537, 138, 'system', '2023-07-26 08:40:17.671796+07', 'system', '2023-07-26 08:40:17.671796+07', 'Xã Lương Thịnh', '04537', 'Xã');
INSERT INTO category."Wards" VALUES (4540, 132, 'system', '2023-07-26 08:40:17.671546+07', 'system', '2023-07-26 08:40:17.671546+07', 'Xã Âu Lâu', '04540', 'Xã');
INSERT INTO category."Wards" VALUES (4543, 132, 'system', '2023-07-26 08:40:17.671549+07', 'system', '2023-07-26 08:40:17.671549+07', 'Xã Giới Phiên', '04543', 'Xã');
INSERT INTO category."Wards" VALUES (4546, 132, 'system', '2023-07-26 08:40:17.671551+07', 'system', '2023-07-26 08:40:17.671551+07', 'Phường Hợp Minh', '04546', 'Phường');
INSERT INTO category."Wards" VALUES (4558, 132, 'system', '2023-07-26 08:40:17.671554+07', 'system', '2023-07-26 08:40:17.671554+07', 'Xã Văn Phú', '04558', 'Xã');
INSERT INTO category."Wards" VALUES (4561, 138, 'system', '2023-07-26 08:40:17.671799+07', 'system', '2023-07-26 08:40:17.671799+07', 'Xã Bảo Hưng', '04561', 'Xã');
INSERT INTO category."Wards" VALUES (4564, 138, 'system', '2023-07-26 08:40:17.671801+07', 'system', '2023-07-26 08:40:17.671801+07', 'Xã Việt Cường', '04564', 'Xã');
INSERT INTO category."Wards" VALUES (4567, 138, 'system', '2023-07-26 08:40:17.671804+07', 'system', '2023-07-26 08:40:17.671804+07', 'Xã Minh Quân', '04567', 'Xã');
INSERT INTO category."Wards" VALUES (4570, 138, 'system', '2023-07-26 08:40:17.671807+07', 'system', '2023-07-26 08:40:17.671807+07', 'Xã Hồng Ca', '04570', 'Xã');
INSERT INTO category."Wards" VALUES (4573, 138, 'system', '2023-07-26 08:40:17.671809+07', 'system', '2023-07-26 08:40:17.671809+07', 'Xã Hưng Thịnh', '04573', 'Xã');
INSERT INTO category."Wards" VALUES (4576, 138, 'system', '2023-07-26 08:40:17.671812+07', 'system', '2023-07-26 08:40:17.671812+07', 'Xã Hưng Khánh', '04576', 'Xã');
INSERT INTO category."Wards" VALUES (4579, 138, 'system', '2023-07-26 08:40:17.671815+07', 'system', '2023-07-26 08:40:17.671815+07', 'Xã Việt Hồng', '04579', 'Xã');
INSERT INTO category."Wards" VALUES (4582, 138, 'system', '2023-07-26 08:40:17.671817+07', 'system', '2023-07-26 08:40:17.671817+07', 'Xã Vân Hội', '04582', 'Xã');
INSERT INTO category."Wards" VALUES (4585, 139, 'system', '2023-07-26 08:40:17.67182+07', 'system', '2023-07-26 08:40:17.67182+07', 'Thị trấn Trạm Tấu', '04585', 'Thị trấn');
INSERT INTO category."Wards" VALUES (4588, 139, 'system', '2023-07-26 08:40:17.671823+07', 'system', '2023-07-26 08:40:17.671823+07', 'Xã Túc Đán', '04588', 'Xã');
INSERT INTO category."Wards" VALUES (4591, 139, 'system', '2023-07-26 08:40:17.671826+07', 'system', '2023-07-26 08:40:17.671826+07', 'Xã Pá Lau', '04591', 'Xã');
INSERT INTO category."Wards" VALUES (4594, 139, 'system', '2023-07-26 08:40:17.671828+07', 'system', '2023-07-26 08:40:17.671828+07', 'Xã Xà Hồ', '04594', 'Xã');
INSERT INTO category."Wards" VALUES (4597, 139, 'system', '2023-07-26 08:40:17.671831+07', 'system', '2023-07-26 08:40:17.671831+07', 'Xã Phình Hồ', '04597', 'Xã');
INSERT INTO category."Wards" VALUES (4600, 139, 'system', '2023-07-26 08:40:17.671834+07', 'system', '2023-07-26 08:40:17.671834+07', 'Xã Trạm Tấu', '04600', 'Xã');
INSERT INTO category."Wards" VALUES (4603, 139, 'system', '2023-07-26 08:40:17.671836+07', 'system', '2023-07-26 08:40:17.671836+07', 'Xã Tà Si Láng', '04603', 'Xã');
INSERT INTO category."Wards" VALUES (4606, 139, 'system', '2023-07-26 08:40:17.671851+07', 'system', '2023-07-26 08:40:17.671851+07', 'Xã Pá Hu', '04606', 'Xã');
INSERT INTO category."Wards" VALUES (4609, 139, 'system', '2023-07-26 08:40:17.671853+07', 'system', '2023-07-26 08:40:17.671853+07', 'Xã Làng Nhì', '04609', 'Xã');
INSERT INTO category."Wards" VALUES (4612, 139, 'system', '2023-07-26 08:40:17.671856+07', 'system', '2023-07-26 08:40:17.671856+07', 'Xã Bản Công', '04612', 'Xã');
INSERT INTO category."Wards" VALUES (4615, 139, 'system', '2023-07-26 08:40:17.671859+07', 'system', '2023-07-26 08:40:17.671859+07', 'Xã Bản Mù', '04615', 'Xã');
INSERT INTO category."Wards" VALUES (4618, 139, 'system', '2023-07-26 08:40:17.671861+07', 'system', '2023-07-26 08:40:17.671861+07', 'Xã Hát Lìu', '04618', 'Xã');
INSERT INTO category."Wards" VALUES (4621, 140, 'system', '2023-07-26 08:40:17.671864+07', 'system', '2023-07-26 08:40:17.671864+07', 'Thị trấn NT Liên Sơn', '04621', 'Thị trấn');
INSERT INTO category."Wards" VALUES (4624, 133, 'system', '2023-07-26 08:40:17.671576+07', 'system', '2023-07-26 08:40:17.671576+07', 'Xã Nghĩa Lộ', '04624', 'Xã');
INSERT INTO category."Wards" VALUES (4627, 140, 'system', '2023-07-26 08:40:17.671867+07', 'system', '2023-07-26 08:40:17.671867+07', 'Thị trấn NT Trần Phú', '04627', 'Thị trấn');
INSERT INTO category."Wards" VALUES (4630, 140, 'system', '2023-07-26 08:40:17.67187+07', 'system', '2023-07-26 08:40:17.67187+07', 'Xã Tú Lệ', '04630', 'Xã');
INSERT INTO category."Wards" VALUES (4633, 140, 'system', '2023-07-26 08:40:17.671872+07', 'system', '2023-07-26 08:40:17.671873+07', 'Xã Nậm Búng', '04633', 'Xã');
INSERT INTO category."Wards" VALUES (4636, 140, 'system', '2023-07-26 08:40:17.671875+07', 'system', '2023-07-26 08:40:17.671875+07', 'Xã Gia Hội', '04636', 'Xã');
INSERT INTO category."Wards" VALUES (4639, 140, 'system', '2023-07-26 08:40:17.671878+07', 'system', '2023-07-26 08:40:17.671878+07', 'Xã Sùng Đô', '04639', 'Xã');
INSERT INTO category."Wards" VALUES (4642, 140, 'system', '2023-07-26 08:40:17.67188+07', 'system', '2023-07-26 08:40:17.67188+07', 'Xã Nậm Mười', '04642', 'Xã');
INSERT INTO category."Wards" VALUES (4645, 140, 'system', '2023-07-26 08:40:17.671883+07', 'system', '2023-07-26 08:40:17.671883+07', 'Xã An Lương', '04645', 'Xã');
INSERT INTO category."Wards" VALUES (4648, 140, 'system', '2023-07-26 08:40:17.671886+07', 'system', '2023-07-26 08:40:17.671886+07', 'Xã Nậm Lành', '04648', 'Xã');
INSERT INTO category."Wards" VALUES (4651, 140, 'system', '2023-07-26 08:40:17.671889+07', 'system', '2023-07-26 08:40:17.671889+07', 'Xã Sơn Lương', '04651', 'Xã');
INSERT INTO category."Wards" VALUES (4654, 140, 'system', '2023-07-26 08:40:17.671892+07', 'system', '2023-07-26 08:40:17.671892+07', 'Xã Suối Quyền', '04654', 'Xã');
INSERT INTO category."Wards" VALUES (4657, 140, 'system', '2023-07-26 08:40:17.671895+07', 'system', '2023-07-26 08:40:17.671895+07', 'Xã Suối Giàng', '04657', 'Xã');
INSERT INTO category."Wards" VALUES (4660, 133, 'system', '2023-07-26 08:40:17.671579+07', 'system', '2023-07-26 08:40:17.671579+07', 'Xã Sơn A', '04660', 'Xã');
INSERT INTO category."Wards" VALUES (4663, 133, 'system', '2023-07-26 08:40:17.671581+07', 'system', '2023-07-26 08:40:17.671581+07', 'Xã Phù Nham', '04663', 'Xã');
INSERT INTO category."Wards" VALUES (4666, 140, 'system', '2023-07-26 08:40:17.671897+07', 'system', '2023-07-26 08:40:17.671897+07', 'Xã Nghĩa Sơn', '04666', 'Xã');
INSERT INTO category."Wards" VALUES (4669, 140, 'system', '2023-07-26 08:40:17.6719+07', 'system', '2023-07-26 08:40:17.6719+07', 'Xã Suối Bu', '04669', 'Xã');
INSERT INTO category."Wards" VALUES (4672, 140, 'system', '2023-07-26 08:40:17.671902+07', 'system', '2023-07-26 08:40:17.671902+07', 'Thị trấn Sơn Thịnh', '04672', 'Thị trấn');
INSERT INTO category."Wards" VALUES (4675, 133, 'system', '2023-07-26 08:40:17.671585+07', 'system', '2023-07-26 08:40:17.671585+07', 'Xã Thanh Lương', '04675', 'Xã');
INSERT INTO category."Wards" VALUES (4678, 133, 'system', '2023-07-26 08:40:17.671588+07', 'system', '2023-07-26 08:40:17.671588+07', 'Xã Hạnh Sơn', '04678', 'Xã');
INSERT INTO category."Wards" VALUES (4681, 133, 'system', '2023-07-26 08:40:17.67159+07', 'system', '2023-07-26 08:40:17.67159+07', 'Xã Phúc Sơn', '04681', 'Xã');
INSERT INTO category."Wards" VALUES (4684, 133, 'system', '2023-07-26 08:40:17.671593+07', 'system', '2023-07-26 08:40:17.671593+07', 'Xã Thạch Lương', '04684', 'Xã');
INSERT INTO category."Wards" VALUES (4687, 140, 'system', '2023-07-26 08:40:17.671905+07', 'system', '2023-07-26 08:40:17.671905+07', 'Xã Đại Lịch', '04687', 'Xã');
INSERT INTO category."Wards" VALUES (4690, 140, 'system', '2023-07-26 08:40:17.671908+07', 'system', '2023-07-26 08:40:17.671908+07', 'Xã Đồng Khê', '04690', 'Xã');
INSERT INTO category."Wards" VALUES (4693, 140, 'system', '2023-07-26 08:40:17.67191+07', 'system', '2023-07-26 08:40:17.671911+07', 'Xã Cát Thịnh', '04693', 'Xã');
INSERT INTO category."Wards" VALUES (4696, 140, 'system', '2023-07-26 08:40:17.671913+07', 'system', '2023-07-26 08:40:17.671913+07', 'Xã Tân Thịnh', '04696', 'Xã');
INSERT INTO category."Wards" VALUES (4699, 140, 'system', '2023-07-26 08:40:17.671916+07', 'system', '2023-07-26 08:40:17.671916+07', 'Xã Chấn Thịnh', '04699', 'Xã');
INSERT INTO category."Wards" VALUES (4702, 140, 'system', '2023-07-26 08:40:17.671918+07', 'system', '2023-07-26 08:40:17.671918+07', 'Xã Bình Thuận', '04702', 'Xã');
INSERT INTO category."Wards" VALUES (4705, 140, 'system', '2023-07-26 08:40:17.671921+07', 'system', '2023-07-26 08:40:17.671921+07', 'Xã Thượng Bằng La', '04705', 'Xã');
INSERT INTO category."Wards" VALUES (4708, 140, 'system', '2023-07-26 08:40:17.671924+07', 'system', '2023-07-26 08:40:17.671924+07', 'Xã Minh An', '04708', 'Xã');
INSERT INTO category."Wards" VALUES (4711, 140, 'system', '2023-07-26 08:40:17.671927+07', 'system', '2023-07-26 08:40:17.671927+07', 'Xã Nghĩa Tâm', '04711', 'Xã');
INSERT INTO category."Wards" VALUES (4714, 141, 'system', '2023-07-26 08:40:17.671929+07', 'system', '2023-07-26 08:40:17.671929+07', 'Thị trấn Yên Bình', '04714', 'Thị trấn');
INSERT INTO category."Wards" VALUES (4717, 141, 'system', '2023-07-26 08:40:17.671932+07', 'system', '2023-07-26 08:40:17.671932+07', 'Thị trấn Thác Bà', '04717', 'Thị trấn');
INSERT INTO category."Wards" VALUES (4720, 141, 'system', '2023-07-26 08:40:17.671935+07', 'system', '2023-07-26 08:40:17.671935+07', 'Xã Xuân Long', '04720', 'Xã');
INSERT INTO category."Wards" VALUES (4726, 141, 'system', '2023-07-26 08:40:17.671938+07', 'system', '2023-07-26 08:40:17.671938+07', 'Xã Cảm Nhân', '04726', 'Xã');
INSERT INTO category."Wards" VALUES (4729, 141, 'system', '2023-07-26 08:40:17.67194+07', 'system', '2023-07-26 08:40:17.67194+07', 'Xã Ngọc Chấn', '04729', 'Xã');
INSERT INTO category."Wards" VALUES (4732, 141, 'system', '2023-07-26 08:40:17.671943+07', 'system', '2023-07-26 08:40:17.671943+07', 'Xã Tân Nguyên', '04732', 'Xã');
INSERT INTO category."Wards" VALUES (4735, 141, 'system', '2023-07-26 08:40:17.671946+07', 'system', '2023-07-26 08:40:17.671946+07', 'Xã Phúc Ninh', '04735', 'Xã');
INSERT INTO category."Wards" VALUES (4738, 141, 'system', '2023-07-26 08:40:17.671948+07', 'system', '2023-07-26 08:40:17.671948+07', 'Xã Bảo Ái', '04738', 'Xã');
INSERT INTO category."Wards" VALUES (4741, 141, 'system', '2023-07-26 08:40:17.671951+07', 'system', '2023-07-26 08:40:17.671951+07', 'Xã Mỹ Gia', '04741', 'Xã');
INSERT INTO category."Wards" VALUES (4744, 141, 'system', '2023-07-26 08:40:17.671954+07', 'system', '2023-07-26 08:40:17.671954+07', 'Xã Xuân Lai', '04744', 'Xã');
INSERT INTO category."Wards" VALUES (4747, 141, 'system', '2023-07-26 08:40:17.671956+07', 'system', '2023-07-26 08:40:17.671956+07', 'Xã Mông Sơn', '04747', 'Xã');
INSERT INTO category."Wards" VALUES (4750, 141, 'system', '2023-07-26 08:40:17.671959+07', 'system', '2023-07-26 08:40:17.671959+07', 'Xã Cảm Ân', '04750', 'Xã');
INSERT INTO category."Wards" VALUES (4753, 141, 'system', '2023-07-26 08:40:17.671962+07', 'system', '2023-07-26 08:40:17.671962+07', 'Xã Yên Thành', '04753', 'Xã');
INSERT INTO category."Wards" VALUES (4756, 141, 'system', '2023-07-26 08:40:17.671964+07', 'system', '2023-07-26 08:40:17.671965+07', 'Xã Tân Hương', '04756', 'Xã');
INSERT INTO category."Wards" VALUES (4759, 141, 'system', '2023-07-26 08:40:17.671967+07', 'system', '2023-07-26 08:40:17.671967+07', 'Xã Phúc An', '04759', 'Xã');
INSERT INTO category."Wards" VALUES (4762, 141, 'system', '2023-07-26 08:40:17.67197+07', 'system', '2023-07-26 08:40:17.67197+07', 'Xã Bạch Hà', '04762', 'Xã');
INSERT INTO category."Wards" VALUES (4765, 141, 'system', '2023-07-26 08:40:17.671972+07', 'system', '2023-07-26 08:40:17.671972+07', 'Xã Vũ Linh', '04765', 'Xã');
INSERT INTO category."Wards" VALUES (4768, 141, 'system', '2023-07-26 08:40:17.671975+07', 'system', '2023-07-26 08:40:17.671975+07', 'Xã Đại Đồng', '04768', 'Xã');
INSERT INTO category."Wards" VALUES (4771, 141, 'system', '2023-07-26 08:40:17.671978+07', 'system', '2023-07-26 08:40:17.671978+07', 'Xã Vĩnh Kiên', '04771', 'Xã');
INSERT INTO category."Wards" VALUES (4774, 141, 'system', '2023-07-26 08:40:17.67198+07', 'system', '2023-07-26 08:40:17.67198+07', 'Xã Yên Bình', '04774', 'Xã');
INSERT INTO category."Wards" VALUES (4777, 141, 'system', '2023-07-26 08:40:17.671983+07', 'system', '2023-07-26 08:40:17.671983+07', 'Xã Thịnh Hưng', '04777', 'Xã');
INSERT INTO category."Wards" VALUES (4780, 141, 'system', '2023-07-26 08:40:17.671986+07', 'system', '2023-07-26 08:40:17.671986+07', 'Xã Hán Đà', '04780', 'Xã');
INSERT INTO category."Wards" VALUES (4783, 141, 'system', '2023-07-26 08:40:17.671989+07', 'system', '2023-07-26 08:40:17.671989+07', 'Xã Phú Thịnh', '04783', 'Xã');
INSERT INTO category."Wards" VALUES (4786, 141, 'system', '2023-07-26 08:40:17.671992+07', 'system', '2023-07-26 08:40:17.671992+07', 'Xã Đại Minh', '04786', 'Xã');
INSERT INTO category."Wards" VALUES (4789, 148, 'system', '2023-07-26 08:40:17.671994+07', 'system', '2023-07-26 08:40:17.671994+07', 'Phường Thái Bình', '04789', 'Phường');
INSERT INTO category."Wards" VALUES (4792, 148, 'system', '2023-07-26 08:40:17.671997+07', 'system', '2023-07-26 08:40:17.671997+07', 'Phường Tân Hòa', '04792', 'Phường');
INSERT INTO category."Wards" VALUES (4795, 148, 'system', '2023-07-26 08:40:17.672+07', 'system', '2023-07-26 08:40:17.672+07', 'Phường Thịnh Lang', '04795', 'Phường');
INSERT INTO category."Wards" VALUES (4798, 148, 'system', '2023-07-26 08:40:17.672003+07', 'system', '2023-07-26 08:40:17.672003+07', 'Phường Hữu Nghị', '04798', 'Phường');
INSERT INTO category."Wards" VALUES (4801, 148, 'system', '2023-07-26 08:40:17.672005+07', 'system', '2023-07-26 08:40:17.672005+07', 'Phường Tân Thịnh', '04801', 'Phường');
INSERT INTO category."Wards" VALUES (4804, 148, 'system', '2023-07-26 08:40:17.672008+07', 'system', '2023-07-26 08:40:17.672008+07', 'Phường Đồng Tiến', '04804', 'Phường');
INSERT INTO category."Wards" VALUES (4807, 148, 'system', '2023-07-26 08:40:17.672011+07', 'system', '2023-07-26 08:40:17.672011+07', 'Phường Phương Lâm', '04807', 'Phường');
INSERT INTO category."Wards" VALUES (4813, 148, 'system', '2023-07-26 08:40:17.672014+07', 'system', '2023-07-26 08:40:17.672014+07', 'Xã Yên Mông', '04813', 'Xã');
INSERT INTO category."Wards" VALUES (4816, 148, 'system', '2023-07-26 08:40:17.672016+07', 'system', '2023-07-26 08:40:17.672016+07', 'Phường Quỳnh Lâm', '04816', 'Phường');
INSERT INTO category."Wards" VALUES (4819, 148, 'system', '2023-07-26 08:40:17.672019+07', 'system', '2023-07-26 08:40:17.672019+07', 'Phường Dân Chủ', '04819', 'Phường');
INSERT INTO category."Wards" VALUES (4825, 148, 'system', '2023-07-26 08:40:17.672022+07', 'system', '2023-07-26 08:40:17.672022+07', 'Xã Hòa Bình', '04825', 'Xã');
INSERT INTO category."Wards" VALUES (4828, 148, 'system', '2023-07-26 08:40:17.672025+07', 'system', '2023-07-26 08:40:17.672025+07', 'Phường Thống Nhất', '04828', 'Phường');
INSERT INTO category."Wards" VALUES (4831, 150, 'system', '2023-07-26 08:40:17.672046+07', 'system', '2023-07-26 08:40:17.672046+07', 'Thị trấn Đà Bắc', '04831', 'Thị trấn');
INSERT INTO category."Wards" VALUES (4834, 150, 'system', '2023-07-26 08:40:17.672049+07', 'system', '2023-07-26 08:40:17.672049+07', 'Xã Nánh Nghê', '04834', 'Xã');
INSERT INTO category."Wards" VALUES (4840, 150, 'system', '2023-07-26 08:40:17.672052+07', 'system', '2023-07-26 08:40:17.672052+07', 'Xã Giáp Đắt', '04840', 'Xã');
INSERT INTO category."Wards" VALUES (4846, 150, 'system', '2023-07-26 08:40:17.672055+07', 'system', '2023-07-26 08:40:17.672055+07', 'Xã Mường Chiềng', '04846', 'Xã');
INSERT INTO category."Wards" VALUES (4849, 150, 'system', '2023-07-26 08:40:17.672057+07', 'system', '2023-07-26 08:40:17.672057+07', 'Xã Tân Pheo', '04849', 'Xã');
INSERT INTO category."Wards" VALUES (4852, 150, 'system', '2023-07-26 08:40:17.67206+07', 'system', '2023-07-26 08:40:17.67206+07', 'Xã Đồng Chum', '04852', 'Xã');
INSERT INTO category."Wards" VALUES (4855, 150, 'system', '2023-07-26 08:40:17.672063+07', 'system', '2023-07-26 08:40:17.672063+07', 'Xã Tân Minh', '04855', 'Xã');
INSERT INTO category."Wards" VALUES (4858, 150, 'system', '2023-07-26 08:40:17.672065+07', 'system', '2023-07-26 08:40:17.672065+07', 'Xã Đoàn Kết', '04858', 'Xã');
INSERT INTO category."Wards" VALUES (4861, 150, 'system', '2023-07-26 08:40:17.672068+07', 'system', '2023-07-26 08:40:17.672068+07', 'Xã Đồng Ruộng', '04861', 'Xã');
INSERT INTO category."Wards" VALUES (4867, 150, 'system', '2023-07-26 08:40:17.672071+07', 'system', '2023-07-26 08:40:17.672071+07', 'Xã Tú Lý', '04867', 'Xã');
INSERT INTO category."Wards" VALUES (4870, 150, 'system', '2023-07-26 08:40:17.672073+07', 'system', '2023-07-26 08:40:17.672073+07', 'Xã Trung Thành', '04870', 'Xã');
INSERT INTO category."Wards" VALUES (4873, 150, 'system', '2023-07-26 08:40:17.672076+07', 'system', '2023-07-26 08:40:17.672076+07', 'Xã Yên Hòa', '04873', 'Xã');
INSERT INTO category."Wards" VALUES (4876, 150, 'system', '2023-07-26 08:40:17.672079+07', 'system', '2023-07-26 08:40:17.672079+07', 'Xã Cao Sơn', '04876', 'Xã');
INSERT INTO category."Wards" VALUES (4879, 150, 'system', '2023-07-26 08:40:17.672081+07', 'system', '2023-07-26 08:40:17.672081+07', 'Xã Toàn Sơn', '04879', 'Xã');
INSERT INTO category."Wards" VALUES (4882, 156, 'system', '2023-07-26 08:40:17.672299+07', 'system', '2023-07-26 08:40:17.672299+07', 'Xã Tân Thành', '04882', 'Xã');
INSERT INTO category."Wards" VALUES (4885, 150, 'system', '2023-07-26 08:40:17.672085+07', 'system', '2023-07-26 08:40:17.672085+07', 'Xã Hiền Lương', '04885', 'Xã');
INSERT INTO category."Wards" VALUES (4888, 150, 'system', '2023-07-26 08:40:17.672087+07', 'system', '2023-07-26 08:40:17.672087+07', 'Xã Tiền Phong', '04888', 'Xã');
INSERT INTO category."Wards" VALUES (4891, 150, 'system', '2023-07-26 08:40:17.67209+07', 'system', '2023-07-26 08:40:17.67209+07', 'Xã Vầy Nưa', '04891', 'Xã');
INSERT INTO category."Wards" VALUES (4894, 148, 'system', '2023-07-26 08:40:17.672027+07', 'system', '2023-07-26 08:40:17.672027+07', 'Phường Kỳ Sơn', '04894', 'Phường');
INSERT INTO category."Wards" VALUES (4897, 148, 'system', '2023-07-26 08:40:17.67203+07', 'system', '2023-07-26 08:40:17.67203+07', 'Xã Thịnh Minh', '04897', 'Xã');
INSERT INTO category."Wards" VALUES (4903, 148, 'system', '2023-07-26 08:40:17.672033+07', 'system', '2023-07-26 08:40:17.672033+07', 'Xã Hợp Thành', '04903', 'Xã');
INSERT INTO category."Wards" VALUES (4906, 148, 'system', '2023-07-26 08:40:17.672035+07', 'system', '2023-07-26 08:40:17.672035+07', 'Xã Quang Tiến', '04906', 'Xã');
INSERT INTO category."Wards" VALUES (4912, 148, 'system', '2023-07-26 08:40:17.672038+07', 'system', '2023-07-26 08:40:17.672038+07', 'Xã Mông Hóa', '04912', 'Xã');
INSERT INTO category."Wards" VALUES (4918, 148, 'system', '2023-07-26 08:40:17.67204+07', 'system', '2023-07-26 08:40:17.672041+07', 'Phường Trung Minh', '04918', 'Phường');
INSERT INTO category."Wards" VALUES (4921, 148, 'system', '2023-07-26 08:40:17.672043+07', 'system', '2023-07-26 08:40:17.672043+07', 'Xã Độc Lập', '04921', 'Xã');
INSERT INTO category."Wards" VALUES (4924, 152, 'system', '2023-07-26 08:40:17.672093+07', 'system', '2023-07-26 08:40:17.672093+07', 'Thị trấn Lương Sơn', '04924', 'Thị trấn');
INSERT INTO category."Wards" VALUES (4927, 276, 'system', '2023-07-26 08:40:17.661199+07', 'system', '2023-07-26 08:40:17.661199+07', 'Xã Yên Trung', '04927', 'Xã');
INSERT INTO category."Wards" VALUES (4930, 276, 'system', '2023-07-26 08:40:17.661202+07', 'system', '2023-07-26 08:40:17.661202+07', 'Xã Yên Bình', '04930', 'Xã');
INSERT INTO category."Wards" VALUES (4936, 276, 'system', '2023-07-26 08:40:17.661205+07', 'system', '2023-07-26 08:40:17.661205+07', 'Xã Tiến Xuân', '04936', 'Xã');
INSERT INTO category."Wards" VALUES (4939, 275, 'system', '2023-07-26 08:40:17.661143+07', 'system', '2023-07-26 08:40:17.661143+07', 'Xã Đông Xuân', '04939', 'Xã');
INSERT INTO category."Wards" VALUES (4942, 152, 'system', '2023-07-26 08:40:17.672096+07', 'system', '2023-07-26 08:40:17.672096+07', 'Xã Lâm Sơn', '04942', 'Xã');
INSERT INTO category."Wards" VALUES (4945, 152, 'system', '2023-07-26 08:40:17.6721+07', 'system', '2023-07-26 08:40:17.6721+07', 'Xã Hòa Sơn', '04945', 'Xã');
INSERT INTO category."Wards" VALUES (4951, 152, 'system', '2023-07-26 08:40:17.672104+07', 'system', '2023-07-26 08:40:17.672105+07', 'Xã Tân Vinh', '04951', 'Xã');
INSERT INTO category."Wards" VALUES (4954, 152, 'system', '2023-07-26 08:40:17.672109+07', 'system', '2023-07-26 08:40:17.672109+07', 'Xã Nhuận Trạch', '04954', 'Xã');
INSERT INTO category."Wards" VALUES (4957, 152, 'system', '2023-07-26 08:40:17.672114+07', 'system', '2023-07-26 08:40:17.672114+07', 'Xã Cao Sơn', '04957', 'Xã');
INSERT INTO category."Wards" VALUES (4960, 152, 'system', '2023-07-26 08:40:17.672118+07', 'system', '2023-07-26 08:40:17.672118+07', 'Xã Cư Yên', '04960', 'Xã');
INSERT INTO category."Wards" VALUES (4969, 152, 'system', '2023-07-26 08:40:17.672121+07', 'system', '2023-07-26 08:40:17.672121+07', 'Xã Liên Sơn', '04969', 'Xã');
INSERT INTO category."Wards" VALUES (4978, 153, 'system', '2023-07-26 08:40:17.672137+07', 'system', '2023-07-26 08:40:17.672137+07', 'Thị trấn Bo', '04978', 'Thị trấn');
INSERT INTO category."Wards" VALUES (4981, 159, 'system', '2023-07-26 08:40:17.672441+07', 'system', '2023-07-26 08:40:17.672441+07', 'Thị trấn Ba Hàng Đồi', '04981', 'Thị trấn');
INSERT INTO category."Wards" VALUES (4984, 153, 'system', '2023-07-26 08:40:17.672141+07', 'system', '2023-07-26 08:40:17.672141+07', 'Xã Đú Sáng', '04984', 'Xã');
INSERT INTO category."Wards" VALUES (4987, 153, 'system', '2023-07-26 08:40:17.672144+07', 'system', '2023-07-26 08:40:17.672144+07', 'Xã Hùng Sơn', '04987', 'Xã');
INSERT INTO category."Wards" VALUES (4990, 153, 'system', '2023-07-26 08:40:17.672148+07', 'system', '2023-07-26 08:40:17.672148+07', 'Xã Bình Sơn', '04990', 'Xã');
INSERT INTO category."Wards" VALUES (4999, 153, 'system', '2023-07-26 08:40:17.672153+07', 'system', '2023-07-26 08:40:17.672153+07', 'Xã Tú Sơn', '04999', 'Xã');
INSERT INTO category."Wards" VALUES (5005, 153, 'system', '2023-07-26 08:40:17.672157+07', 'system', '2023-07-26 08:40:17.672157+07', 'Xã Vĩnh Tiến', '05005', 'Xã');
INSERT INTO category."Wards" VALUES (5008, 152, 'system', '2023-07-26 08:40:17.672125+07', 'system', '2023-07-26 08:40:17.672125+07', 'Xã Cao Dương', '05008', 'Xã');
INSERT INTO category."Wards" VALUES (5014, 153, 'system', '2023-07-26 08:40:17.672162+07', 'system', '2023-07-26 08:40:17.672162+07', 'Xã Đông Bắc', '05014', 'Xã');
INSERT INTO category."Wards" VALUES (5017, 153, 'system', '2023-07-26 08:40:17.672166+07', 'system', '2023-07-26 08:40:17.672166+07', 'Xã Xuân Thủy', '05017', 'Xã');
INSERT INTO category."Wards" VALUES (5026, 153, 'system', '2023-07-26 08:40:17.67217+07', 'system', '2023-07-26 08:40:17.67217+07', 'Xã Vĩnh Đồng', '05026', 'Xã');
INSERT INTO category."Wards" VALUES (5035, 153, 'system', '2023-07-26 08:40:17.672175+07', 'system', '2023-07-26 08:40:17.672175+07', 'Xã Kim Lập', '05035', 'Xã');
INSERT INTO category."Wards" VALUES (5038, 153, 'system', '2023-07-26 08:40:17.672179+07', 'system', '2023-07-26 08:40:17.672179+07', 'Xã Hợp Tiến', '05038', 'Xã');
INSERT INTO category."Wards" VALUES (5041, 152, 'system', '2023-07-26 08:40:17.672129+07', 'system', '2023-07-26 08:40:17.672129+07', 'Xã Thanh Sơn', '05041', 'Xã');
INSERT INTO category."Wards" VALUES (5047, 152, 'system', '2023-07-26 08:40:17.672133+07', 'system', '2023-07-26 08:40:17.672133+07', 'Xã Thanh Cao', '05047', 'Xã');
INSERT INTO category."Wards" VALUES (5065, 153, 'system', '2023-07-26 08:40:17.672183+07', 'system', '2023-07-26 08:40:17.672183+07', 'Xã Kim Bôi', '05065', 'Xã');
INSERT INTO category."Wards" VALUES (5068, 153, 'system', '2023-07-26 08:40:17.672188+07', 'system', '2023-07-26 08:40:17.672188+07', 'Xã Nam Thượng', '05068', 'Xã');
INSERT INTO category."Wards" VALUES (5077, 153, 'system', '2023-07-26 08:40:17.672193+07', 'system', '2023-07-26 08:40:17.672193+07', 'Xã Cuối Hạ', '05077', 'Xã');
INSERT INTO category."Wards" VALUES (5080, 153, 'system', '2023-07-26 08:40:17.672198+07', 'system', '2023-07-26 08:40:17.672198+07', 'Xã Sào Báy', '05080', 'Xã');
INSERT INTO category."Wards" VALUES (5083, 153, 'system', '2023-07-26 08:40:17.672202+07', 'system', '2023-07-26 08:40:17.672202+07', 'Xã Mi Hòa', '05083', 'Xã');
INSERT INTO category."Wards" VALUES (5086, 153, 'system', '2023-07-26 08:40:17.672206+07', 'system', '2023-07-26 08:40:17.672206+07', 'Xã Nuông Dăm', '05086', 'Xã');
INSERT INTO category."Wards" VALUES (5089, 154, 'system', '2023-07-26 08:40:17.672211+07', 'system', '2023-07-26 08:40:17.672211+07', 'Thị trấn Cao Phong', '05089', 'Thị trấn');
INSERT INTO category."Wards" VALUES (5092, 154, 'system', '2023-07-26 08:40:17.672216+07', 'system', '2023-07-26 08:40:17.672216+07', 'Xã Bình Thanh', '05092', 'Xã');
INSERT INTO category."Wards" VALUES (5095, 154, 'system', '2023-07-26 08:40:17.672221+07', 'system', '2023-07-26 08:40:17.672221+07', 'Xã Thung Nai', '05095', 'Xã');
INSERT INTO category."Wards" VALUES (5098, 154, 'system', '2023-07-26 08:40:17.672226+07', 'system', '2023-07-26 08:40:17.672226+07', 'Xã Bắc Phong', '05098', 'Xã');
INSERT INTO category."Wards" VALUES (5101, 154, 'system', '2023-07-26 08:40:17.672231+07', 'system', '2023-07-26 08:40:17.672231+07', 'Xã Thu Phong', '05101', 'Xã');
INSERT INTO category."Wards" VALUES (5104, 154, 'system', '2023-07-26 08:40:17.672237+07', 'system', '2023-07-26 08:40:17.672237+07', 'Xã Hợp Phong', '05104', 'Xã');
INSERT INTO category."Wards" VALUES (5110, 154, 'system', '2023-07-26 08:40:17.672242+07', 'system', '2023-07-26 08:40:17.672242+07', 'Xã Tây Phong', '05110', 'Xã');
INSERT INTO category."Wards" VALUES (5116, 154, 'system', '2023-07-26 08:40:17.672246+07', 'system', '2023-07-26 08:40:17.672247+07', 'Xã Dũng Phong', '05116', 'Xã');
INSERT INTO category."Wards" VALUES (5119, 154, 'system', '2023-07-26 08:40:17.672251+07', 'system', '2023-07-26 08:40:17.672251+07', 'Xã Nam Phong', '05119', 'Xã');
INSERT INTO category."Wards" VALUES (5125, 154, 'system', '2023-07-26 08:40:17.672253+07', 'system', '2023-07-26 08:40:17.672253+07', 'Xã Thạch Yên', '05125', 'Xã');
INSERT INTO category."Wards" VALUES (5128, 155, 'system', '2023-07-26 08:40:17.672256+07', 'system', '2023-07-26 08:40:17.672256+07', 'Thị trấn Mãn Đức', '05128', 'Thị trấn');
INSERT INTO category."Wards" VALUES (5134, 155, 'system', '2023-07-26 08:40:17.672259+07', 'system', '2023-07-26 08:40:17.672259+07', 'Xã Suối Hoa', '05134', 'Xã');
INSERT INTO category."Wards" VALUES (5137, 155, 'system', '2023-07-26 08:40:17.672262+07', 'system', '2023-07-26 08:40:17.672262+07', 'Xã Phú Vinh', '05137', 'Xã');
INSERT INTO category."Wards" VALUES (5140, 155, 'system', '2023-07-26 08:40:17.672264+07', 'system', '2023-07-26 08:40:17.672264+07', 'Xã Phú Cường', '05140', 'Xã');
INSERT INTO category."Wards" VALUES (5143, 155, 'system', '2023-07-26 08:40:17.672267+07', 'system', '2023-07-26 08:40:17.672267+07', 'Xã Mỹ Hòa', '05143', 'Xã');
INSERT INTO category."Wards" VALUES (5152, 155, 'system', '2023-07-26 08:40:17.67227+07', 'system', '2023-07-26 08:40:17.67227+07', 'Xã Quyết Chiến', '05152', 'Xã');
INSERT INTO category."Wards" VALUES (5158, 155, 'system', '2023-07-26 08:40:17.672272+07', 'system', '2023-07-26 08:40:17.672272+07', 'Xã Phong Phú', '05158', 'Xã');
INSERT INTO category."Wards" VALUES (5164, 155, 'system', '2023-07-26 08:40:17.672275+07', 'system', '2023-07-26 08:40:17.672275+07', 'Xã Tử Nê', '05164', 'Xã');
INSERT INTO category."Wards" VALUES (5167, 155, 'system', '2023-07-26 08:40:17.672277+07', 'system', '2023-07-26 08:40:17.672277+07', 'Xã Thanh Hối', '05167', 'Xã');
INSERT INTO category."Wards" VALUES (5170, 155, 'system', '2023-07-26 08:40:17.67228+07', 'system', '2023-07-26 08:40:17.67228+07', 'Xã Ngọc Mỹ', '05170', 'Xã');
INSERT INTO category."Wards" VALUES (5173, 155, 'system', '2023-07-26 08:40:17.672282+07', 'system', '2023-07-26 08:40:17.672282+07', 'Xã Đông Lai', '05173', 'Xã');
INSERT INTO category."Wards" VALUES (5176, 155, 'system', '2023-07-26 08:40:17.672285+07', 'system', '2023-07-26 08:40:17.672286+07', 'Xã Vân Sơn', '05176', 'Xã');
INSERT INTO category."Wards" VALUES (5182, 155, 'system', '2023-07-26 08:40:17.672288+07', 'system', '2023-07-26 08:40:17.672288+07', 'Xã Nhân Mỹ', '05182', 'Xã');
INSERT INTO category."Wards" VALUES (5191, 155, 'system', '2023-07-26 08:40:17.672291+07', 'system', '2023-07-26 08:40:17.672291+07', 'Xã Lỗ Sơn', '05191', 'Xã');
INSERT INTO category."Wards" VALUES (5194, 155, 'system', '2023-07-26 08:40:17.672293+07', 'system', '2023-07-26 08:40:17.672293+07', 'Xã Ngổ Luông', '05194', 'Xã');
INSERT INTO category."Wards" VALUES (5197, 155, 'system', '2023-07-26 08:40:17.672296+07', 'system', '2023-07-26 08:40:17.672296+07', 'Xã Gia Mô', '05197', 'Xã');
INSERT INTO category."Wards" VALUES (5200, 156, 'system', '2023-07-26 08:40:17.672301+07', 'system', '2023-07-26 08:40:17.672301+07', 'Thị trấn Mai Châu', '05200', 'Thị trấn');
INSERT INTO category."Wards" VALUES (5206, 156, 'system', '2023-07-26 08:40:17.672304+07', 'system', '2023-07-26 08:40:17.672304+07', 'Xã Sơn Thủy', '05206', 'Xã');
INSERT INTO category."Wards" VALUES (5209, 156, 'system', '2023-07-26 08:40:17.672307+07', 'system', '2023-07-26 08:40:17.672307+07', 'Xã Pà Cò', '05209', 'Xã');
INSERT INTO category."Wards" VALUES (5212, 156, 'system', '2023-07-26 08:40:17.67231+07', 'system', '2023-07-26 08:40:17.67231+07', 'Xã Hang Kia', '05212', 'Xã');
INSERT INTO category."Wards" VALUES (5221, 156, 'system', '2023-07-26 08:40:17.672312+07', 'system', '2023-07-26 08:40:17.672312+07', 'Xã Đồng Tân', '05221', 'Xã');
INSERT INTO category."Wards" VALUES (5224, 156, 'system', '2023-07-26 08:40:17.672315+07', 'system', '2023-07-26 08:40:17.672315+07', 'Xã Cun Pheo', '05224', 'Xã');
INSERT INTO category."Wards" VALUES (5227, 156, 'system', '2023-07-26 08:40:17.672318+07', 'system', '2023-07-26 08:40:17.672318+07', 'Xã Bao La', '05227', 'Xã');
INSERT INTO category."Wards" VALUES (5233, 156, 'system', '2023-07-26 08:40:17.67232+07', 'system', '2023-07-26 08:40:17.67232+07', 'Xã Tòng Đậu', '05233', 'Xã');
INSERT INTO category."Wards" VALUES (5242, 156, 'system', '2023-07-26 08:40:17.672323+07', 'system', '2023-07-26 08:40:17.672323+07', 'Xã Nà Phòn', '05242', 'Xã');
INSERT INTO category."Wards" VALUES (5245, 156, 'system', '2023-07-26 08:40:17.672325+07', 'system', '2023-07-26 08:40:17.672325+07', 'Xã Săm Khóe', '05245', 'Xã');
INSERT INTO category."Wards" VALUES (5248, 156, 'system', '2023-07-26 08:40:17.672328+07', 'system', '2023-07-26 08:40:17.672328+07', 'Xã Chiềng Châu', '05248', 'Xã');
INSERT INTO category."Wards" VALUES (5251, 156, 'system', '2023-07-26 08:40:17.672331+07', 'system', '2023-07-26 08:40:17.672331+07', 'Xã Mai Hạ', '05251', 'Xã');
INSERT INTO category."Wards" VALUES (5254, 156, 'system', '2023-07-26 08:40:17.672333+07', 'system', '2023-07-26 08:40:17.672333+07', 'Xã Thành Sơn', '05254', 'Xã');
INSERT INTO category."Wards" VALUES (5257, 156, 'system', '2023-07-26 08:40:17.672336+07', 'system', '2023-07-26 08:40:17.672336+07', 'Xã Mai Hịch', '05257', 'Xã');
INSERT INTO category."Wards" VALUES (5263, 156, 'system', '2023-07-26 08:40:17.672338+07', 'system', '2023-07-26 08:40:17.672338+07', 'Xã Vạn Mai', '05263', 'Xã');
INSERT INTO category."Wards" VALUES (5266, 157, 'system', '2023-07-26 08:40:17.672349+07', 'system', '2023-07-26 08:40:17.672349+07', 'Thị trấn Vụ Bản', '05266', 'Thị trấn');
INSERT INTO category."Wards" VALUES (5269, 157, 'system', '2023-07-26 08:40:17.672352+07', 'system', '2023-07-26 08:40:17.672352+07', 'Xã Quý Hòa', '05269', 'Xã');
INSERT INTO category."Wards" VALUES (5272, 157, 'system', '2023-07-26 08:40:17.672354+07', 'system', '2023-07-26 08:40:17.672354+07', 'Xã Miền Đồi', '05272', 'Xã');
INSERT INTO category."Wards" VALUES (5275, 157, 'system', '2023-07-26 08:40:17.672357+07', 'system', '2023-07-26 08:40:17.672357+07', 'Xã Mỹ Thành', '05275', 'Xã');
INSERT INTO category."Wards" VALUES (5278, 157, 'system', '2023-07-26 08:40:17.67236+07', 'system', '2023-07-26 08:40:17.67236+07', 'Xã Tuân Đạo', '05278', 'Xã');
INSERT INTO category."Wards" VALUES (5281, 157, 'system', '2023-07-26 08:40:17.672362+07', 'system', '2023-07-26 08:40:17.672362+07', 'Xã Văn Nghĩa', '05281', 'Xã');
INSERT INTO category."Wards" VALUES (5284, 157, 'system', '2023-07-26 08:40:17.672365+07', 'system', '2023-07-26 08:40:17.672365+07', 'Xã Văn Sơn', '05284', 'Xã');
INSERT INTO category."Wards" VALUES (5287, 157, 'system', '2023-07-26 08:40:17.672367+07', 'system', '2023-07-26 08:40:17.672367+07', 'Xã Tân Lập', '05287', 'Xã');
INSERT INTO category."Wards" VALUES (5290, 157, 'system', '2023-07-26 08:40:17.67237+07', 'system', '2023-07-26 08:40:17.67237+07', 'Xã Nhân Nghĩa', '05290', 'Xã');
INSERT INTO category."Wards" VALUES (5293, 157, 'system', '2023-07-26 08:40:17.672372+07', 'system', '2023-07-26 08:40:17.672373+07', 'Xã Thượng Cốc', '05293', 'Xã');
INSERT INTO category."Wards" VALUES (5299, 157, 'system', '2023-07-26 08:40:17.672375+07', 'system', '2023-07-26 08:40:17.672375+07', 'Xã Quyết Thắng', '05299', 'Xã');
INSERT INTO category."Wards" VALUES (5302, 157, 'system', '2023-07-26 08:40:17.672378+07', 'system', '2023-07-26 08:40:17.672378+07', 'Xã Xuất Hóa', '05302', 'Xã');
INSERT INTO category."Wards" VALUES (5305, 157, 'system', '2023-07-26 08:40:17.672381+07', 'system', '2023-07-26 08:40:17.672381+07', 'Xã Yên Phú', '05305', 'Xã');
INSERT INTO category."Wards" VALUES (5308, 157, 'system', '2023-07-26 08:40:17.672383+07', 'system', '2023-07-26 08:40:17.672383+07', 'Xã Bình Hẻm', '05308', 'Xã');
INSERT INTO category."Wards" VALUES (5320, 157, 'system', '2023-07-26 08:40:17.672386+07', 'system', '2023-07-26 08:40:17.672386+07', 'Xã Định Cư', '05320', 'Xã');
INSERT INTO category."Wards" VALUES (5323, 157, 'system', '2023-07-26 08:40:17.672388+07', 'system', '2023-07-26 08:40:17.672388+07', 'Xã Chí Đạo', '05323', 'Xã');
INSERT INTO category."Wards" VALUES (5329, 157, 'system', '2023-07-26 08:40:17.672391+07', 'system', '2023-07-26 08:40:17.672391+07', 'Xã Ngọc Sơn', '05329', 'Xã');
INSERT INTO category."Wards" VALUES (5332, 157, 'system', '2023-07-26 08:40:17.672394+07', 'system', '2023-07-26 08:40:17.672394+07', 'Xã Hương Nhượng', '05332', 'Xã');
INSERT INTO category."Wards" VALUES (5335, 157, 'system', '2023-07-26 08:40:17.672396+07', 'system', '2023-07-26 08:40:17.672396+07', 'Xã Vũ Bình', '05335', 'Xã');
INSERT INTO category."Wards" VALUES (5338, 157, 'system', '2023-07-26 08:40:17.672399+07', 'system', '2023-07-26 08:40:17.672399+07', 'Xã Tự Do', '05338', 'Xã');
INSERT INTO category."Wards" VALUES (5341, 157, 'system', '2023-07-26 08:40:17.672401+07', 'system', '2023-07-26 08:40:17.672401+07', 'Xã Yên Nghiệp', '05341', 'Xã');
INSERT INTO category."Wards" VALUES (5344, 157, 'system', '2023-07-26 08:40:17.672404+07', 'system', '2023-07-26 08:40:17.672404+07', 'Xã Tân Mỹ', '05344', 'Xã');
INSERT INTO category."Wards" VALUES (5347, 157, 'system', '2023-07-26 08:40:17.672407+07', 'system', '2023-07-26 08:40:17.672407+07', 'Xã Ân Nghĩa', '05347', 'Xã');
INSERT INTO category."Wards" VALUES (5350, 157, 'system', '2023-07-26 08:40:17.672409+07', 'system', '2023-07-26 08:40:17.672409+07', 'Xã Ngọc Lâu', '05350', 'Xã');
INSERT INTO category."Wards" VALUES (5353, 158, 'system', '2023-07-26 08:40:17.672412+07', 'system', '2023-07-26 08:40:17.672412+07', 'Thị trấn Hàng Trạm', '05353', 'Thị trấn');
INSERT INTO category."Wards" VALUES (5356, 158, 'system', '2023-07-26 08:40:17.672414+07', 'system', '2023-07-26 08:40:17.672414+07', 'Xã Lạc Sỹ', '05356', 'Xã');
INSERT INTO category."Wards" VALUES (5362, 158, 'system', '2023-07-26 08:40:17.672417+07', 'system', '2023-07-26 08:40:17.672417+07', 'Xã Lạc Lương', '05362', 'Xã');
INSERT INTO category."Wards" VALUES (5365, 158, 'system', '2023-07-26 08:40:17.67242+07', 'system', '2023-07-26 08:40:17.67242+07', 'Xã Bảo Hiệu', '05365', 'Xã');
INSERT INTO category."Wards" VALUES (5368, 158, 'system', '2023-07-26 08:40:17.672422+07', 'system', '2023-07-26 08:40:17.672422+07', 'Xã Đa Phúc', '05368', 'Xã');
INSERT INTO category."Wards" VALUES (5371, 158, 'system', '2023-07-26 08:40:17.672425+07', 'system', '2023-07-26 08:40:17.672425+07', 'Xã Hữu Lợi', '05371', 'Xã');
INSERT INTO category."Wards" VALUES (5374, 158, 'system', '2023-07-26 08:40:17.672427+07', 'system', '2023-07-26 08:40:17.672428+07', 'Xã Lạc Thịnh', '05374', 'Xã');
INSERT INTO category."Wards" VALUES (5380, 158, 'system', '2023-07-26 08:40:17.67243+07', 'system', '2023-07-26 08:40:17.67243+07', 'Xã Đoàn Kết', '05380', 'Xã');
INSERT INTO category."Wards" VALUES (5383, 158, 'system', '2023-07-26 08:40:17.672433+07', 'system', '2023-07-26 08:40:17.672433+07', 'Xã Phú Lai', '05383', 'Xã');
INSERT INTO category."Wards" VALUES (5386, 158, 'system', '2023-07-26 08:40:17.672436+07', 'system', '2023-07-26 08:40:17.672436+07', 'Xã Yên Trị', '05386', 'Xã');
INSERT INTO category."Wards" VALUES (5389, 158, 'system', '2023-07-26 08:40:17.672438+07', 'system', '2023-07-26 08:40:17.672438+07', 'Xã Ngọc Lương', '05389', 'Xã');
INSERT INTO category."Wards" VALUES (5392, 159, 'system', '2023-07-26 08:40:17.672445+07', 'system', '2023-07-26 08:40:17.672445+07', 'Thị trấn Chi Nê', '05392', 'Thị trấn');
INSERT INTO category."Wards" VALUES (5395, 159, 'system', '2023-07-26 08:40:17.672448+07', 'system', '2023-07-26 08:40:17.672448+07', 'Xã Phú Nghĩa', '05395', 'Xã');
INSERT INTO category."Wards" VALUES (5398, 159, 'system', '2023-07-26 08:40:17.67245+07', 'system', '2023-07-26 08:40:17.67245+07', 'Xã Phú Thành', '05398', 'Xã');
INSERT INTO category."Wards" VALUES (5404, 159, 'system', '2023-07-26 08:40:17.672453+07', 'system', '2023-07-26 08:40:17.672453+07', 'Xã Hưng Thi', '05404', 'Xã');
INSERT INTO category."Wards" VALUES (5413, 159, 'system', '2023-07-26 08:40:17.672455+07', 'system', '2023-07-26 08:40:17.672455+07', 'Xã Khoan Dụ', '05413', 'Xã');
INSERT INTO category."Wards" VALUES (5419, 159, 'system', '2023-07-26 08:40:17.672458+07', 'system', '2023-07-26 08:40:17.672458+07', 'Xã Đồng Tâm', '05419', 'Xã');
INSERT INTO category."Wards" VALUES (5422, 159, 'system', '2023-07-26 08:40:17.67246+07', 'system', '2023-07-26 08:40:17.67246+07', 'Xã Yên Bồng', '05422', 'Xã');
INSERT INTO category."Wards" VALUES (5425, 159, 'system', '2023-07-26 08:40:17.672463+07', 'system', '2023-07-26 08:40:17.672463+07', 'Xã Thống Nhất', '05425', 'Xã');
INSERT INTO category."Wards" VALUES (5428, 159, 'system', '2023-07-26 08:40:17.672466+07', 'system', '2023-07-26 08:40:17.672466+07', 'Xã An Bình', '05428', 'Xã');
INSERT INTO category."Wards" VALUES (5431, 164, 'system', '2023-07-26 08:40:17.672468+07', 'system', '2023-07-26 08:40:17.672468+07', 'Phường Quán Triều', '05431', 'Phường');
INSERT INTO category."Wards" VALUES (5434, 164, 'system', '2023-07-26 08:40:17.672471+07', 'system', '2023-07-26 08:40:17.672471+07', 'Phường Quang Vinh', '05434', 'Phường');
INSERT INTO category."Wards" VALUES (5437, 164, 'system', '2023-07-26 08:40:17.672474+07', 'system', '2023-07-26 08:40:17.672474+07', 'Phường Túc Duyên', '05437', 'Phường');
INSERT INTO category."Wards" VALUES (5440, 164, 'system', '2023-07-26 08:40:17.672477+07', 'system', '2023-07-26 08:40:17.672477+07', 'Phường Hoàng Văn Thụ', '05440', 'Phường');
INSERT INTO category."Wards" VALUES (5443, 164, 'system', '2023-07-26 08:40:17.67248+07', 'system', '2023-07-26 08:40:17.67248+07', 'Phường Trưng Vương', '05443', 'Phường');
INSERT INTO category."Wards" VALUES (5446, 164, 'system', '2023-07-26 08:40:17.672497+07', 'system', '2023-07-26 08:40:17.672497+07', 'Phường Quang Trung', '05446', 'Phường');
INSERT INTO category."Wards" VALUES (5449, 164, 'system', '2023-07-26 08:40:17.6725+07', 'system', '2023-07-26 08:40:17.6725+07', 'Phường Phan Đình Phùng', '05449', 'Phường');
INSERT INTO category."Wards" VALUES (5452, 164, 'system', '2023-07-26 08:40:17.672503+07', 'system', '2023-07-26 08:40:17.672503+07', 'Phường Tân Thịnh', '05452', 'Phường');
INSERT INTO category."Wards" VALUES (5455, 164, 'system', '2023-07-26 08:40:17.672506+07', 'system', '2023-07-26 08:40:17.672506+07', 'Phường Thịnh Đán', '05455', 'Phường');
INSERT INTO category."Wards" VALUES (5458, 164, 'system', '2023-07-26 08:40:17.672509+07', 'system', '2023-07-26 08:40:17.672509+07', 'Phường Đồng Quang', '05458', 'Phường');
INSERT INTO category."Wards" VALUES (5461, 164, 'system', '2023-07-26 08:40:17.672513+07', 'system', '2023-07-26 08:40:17.672513+07', 'Phường Gia Sàng', '05461', 'Phường');
INSERT INTO category."Wards" VALUES (5464, 164, 'system', '2023-07-26 08:40:17.672518+07', 'system', '2023-07-26 08:40:17.672518+07', 'Phường Tân Lập', '05464', 'Phường');
INSERT INTO category."Wards" VALUES (5467, 164, 'system', '2023-07-26 08:40:17.672523+07', 'system', '2023-07-26 08:40:17.672523+07', 'Phường Cam Giá', '05467', 'Phường');
INSERT INTO category."Wards" VALUES (5470, 164, 'system', '2023-07-26 08:40:17.672527+07', 'system', '2023-07-26 08:40:17.672527+07', 'Phường Phú Xá', '05470', 'Phường');
INSERT INTO category."Wards" VALUES (5473, 164, 'system', '2023-07-26 08:40:17.672532+07', 'system', '2023-07-26 08:40:17.672532+07', 'Phường Hương Sơn', '05473', 'Phường');
INSERT INTO category."Wards" VALUES (5476, 164, 'system', '2023-07-26 08:40:17.672538+07', 'system', '2023-07-26 08:40:17.672538+07', 'Phường Trung Thành', '05476', 'Phường');
INSERT INTO category."Wards" VALUES (5479, 164, 'system', '2023-07-26 08:40:17.672542+07', 'system', '2023-07-26 08:40:17.672542+07', 'Phường Tân Thành', '05479', 'Phường');
INSERT INTO category."Wards" VALUES (5482, 164, 'system', '2023-07-26 08:40:17.672545+07', 'system', '2023-07-26 08:40:17.672545+07', 'Phường Tân Long', '05482', 'Phường');
INSERT INTO category."Wards" VALUES (5485, 164, 'system', '2023-07-26 08:40:17.672548+07', 'system', '2023-07-26 08:40:17.672548+07', 'Xã Phúc Hà', '05485', 'Xã');
INSERT INTO category."Wards" VALUES (5488, 164, 'system', '2023-07-26 08:40:17.672551+07', 'system', '2023-07-26 08:40:17.672551+07', 'Xã Phúc Xuân', '05488', 'Xã');
INSERT INTO category."Wards" VALUES (5491, 164, 'system', '2023-07-26 08:40:17.672553+07', 'system', '2023-07-26 08:40:17.672553+07', 'Xã Quyết Thắng', '05491', 'Xã');
INSERT INTO category."Wards" VALUES (5494, 164, 'system', '2023-07-26 08:40:17.672556+07', 'system', '2023-07-26 08:40:17.672556+07', 'Xã Phúc Trìu', '05494', 'Xã');
INSERT INTO category."Wards" VALUES (5497, 164, 'system', '2023-07-26 08:40:17.672559+07', 'system', '2023-07-26 08:40:17.672559+07', 'Xã Thịnh Đức', '05497', 'Xã');
INSERT INTO category."Wards" VALUES (5500, 164, 'system', '2023-07-26 08:40:17.672561+07', 'system', '2023-07-26 08:40:17.672562+07', 'Phường Tích Lương', '05500', 'Phường');
INSERT INTO category."Wards" VALUES (5503, 164, 'system', '2023-07-26 08:40:17.672564+07', 'system', '2023-07-26 08:40:17.672565+07', 'Xã Tân Cương', '05503', 'Xã');
INSERT INTO category."Wards" VALUES (5506, 165, 'system', '2023-07-26 08:40:17.672587+07', 'system', '2023-07-26 08:40:17.672587+07', 'Phường Lương Sơn', '05506', 'Phường');
INSERT INTO category."Wards" VALUES (5509, 165, 'system', '2023-07-26 08:40:17.672589+07', 'system', '2023-07-26 08:40:17.67259+07', 'Phường Châu Sơn', '05509', 'Phường');
INSERT INTO category."Wards" VALUES (5512, 165, 'system', '2023-07-26 08:40:17.672592+07', 'system', '2023-07-26 08:40:17.672592+07', 'Phường Mỏ Chè', '05512', 'Phường');
INSERT INTO category."Wards" VALUES (5515, 165, 'system', '2023-07-26 08:40:17.672595+07', 'system', '2023-07-26 08:40:17.672595+07', 'Phường Cải Đan', '05515', 'Phường');
INSERT INTO category."Wards" VALUES (5518, 165, 'system', '2023-07-26 08:40:17.672598+07', 'system', '2023-07-26 08:40:17.672598+07', 'Phường Thắng Lợi', '05518', 'Phường');
INSERT INTO category."Wards" VALUES (5521, 165, 'system', '2023-07-26 08:40:17.6726+07', 'system', '2023-07-26 08:40:17.672601+07', 'Phường Phố Cò', '05521', 'Phường');
INSERT INTO category."Wards" VALUES (5527, 165, 'system', '2023-07-26 08:40:17.672603+07', 'system', '2023-07-26 08:40:17.672603+07', 'Xã Tân Quang', '05527', 'Xã');
INSERT INTO category."Wards" VALUES (5528, 165, 'system', '2023-07-26 08:40:17.672606+07', 'system', '2023-07-26 08:40:17.672606+07', 'Phường Bách Quang', '05528', 'Phường');
INSERT INTO category."Wards" VALUES (5530, 165, 'system', '2023-07-26 08:40:17.672609+07', 'system', '2023-07-26 08:40:17.672609+07', 'Xã Bình Sơn', '05530', 'Xã');
INSERT INTO category."Wards" VALUES (5533, 165, 'system', '2023-07-26 08:40:17.672611+07', 'system', '2023-07-26 08:40:17.672611+07', 'Xã Bá Xuyên', '05533', 'Xã');
INSERT INTO category."Wards" VALUES (5536, 167, 'system', '2023-07-26 08:40:17.672614+07', 'system', '2023-07-26 08:40:17.672614+07', 'Thị trấn Chợ Chu', '05536', 'Thị trấn');
INSERT INTO category."Wards" VALUES (5539, 167, 'system', '2023-07-26 08:40:17.672617+07', 'system', '2023-07-26 08:40:17.672617+07', 'Xã Linh Thông', '05539', 'Xã');
INSERT INTO category."Wards" VALUES (5542, 167, 'system', '2023-07-26 08:40:17.672619+07', 'system', '2023-07-26 08:40:17.67262+07', 'Xã Lam Vỹ', '05542', 'Xã');
INSERT INTO category."Wards" VALUES (5545, 167, 'system', '2023-07-26 08:40:17.672622+07', 'system', '2023-07-26 08:40:17.672622+07', 'Xã Quy Kỳ', '05545', 'Xã');
INSERT INTO category."Wards" VALUES (5548, 167, 'system', '2023-07-26 08:40:17.672624+07', 'system', '2023-07-26 08:40:17.672624+07', 'Xã Tân Thịnh', '05548', 'Xã');
INSERT INTO category."Wards" VALUES (5551, 167, 'system', '2023-07-26 08:40:17.672627+07', 'system', '2023-07-26 08:40:17.672627+07', 'Xã Kim Phượng', '05551', 'Xã');
INSERT INTO category."Wards" VALUES (5554, 167, 'system', '2023-07-26 08:40:17.67263+07', 'system', '2023-07-26 08:40:17.67263+07', 'Xã Bảo Linh', '05554', 'Xã');
INSERT INTO category."Wards" VALUES (5560, 167, 'system', '2023-07-26 08:40:17.672632+07', 'system', '2023-07-26 08:40:17.672632+07', 'Xã Phúc Chu', '05560', 'Xã');
INSERT INTO category."Wards" VALUES (5563, 167, 'system', '2023-07-26 08:40:17.672635+07', 'system', '2023-07-26 08:40:17.672635+07', 'Xã Tân Dương', '05563', 'Xã');
INSERT INTO category."Wards" VALUES (5566, 167, 'system', '2023-07-26 08:40:17.672638+07', 'system', '2023-07-26 08:40:17.672638+07', 'Xã Phượng Tiến', '05566', 'Xã');
INSERT INTO category."Wards" VALUES (5569, 167, 'system', '2023-07-26 08:40:17.67264+07', 'system', '2023-07-26 08:40:17.67264+07', 'Xã Bảo Cường', '05569', 'Xã');
INSERT INTO category."Wards" VALUES (5572, 167, 'system', '2023-07-26 08:40:17.672643+07', 'system', '2023-07-26 08:40:17.672643+07', 'Xã Đồng Thịnh', '05572', 'Xã');
INSERT INTO category."Wards" VALUES (5575, 167, 'system', '2023-07-26 08:40:17.672646+07', 'system', '2023-07-26 08:40:17.672646+07', 'Xã Định Biên', '05575', 'Xã');
INSERT INTO category."Wards" VALUES (5578, 167, 'system', '2023-07-26 08:40:17.672648+07', 'system', '2023-07-26 08:40:17.672648+07', 'Xã Thanh Định', '05578', 'Xã');
INSERT INTO category."Wards" VALUES (5581, 167, 'system', '2023-07-26 08:40:17.672651+07', 'system', '2023-07-26 08:40:17.672651+07', 'Xã Trung Hội', '05581', 'Xã');
INSERT INTO category."Wards" VALUES (5584, 167, 'system', '2023-07-26 08:40:17.672653+07', 'system', '2023-07-26 08:40:17.672654+07', 'Xã Trung Lương', '05584', 'Xã');
INSERT INTO category."Wards" VALUES (5587, 167, 'system', '2023-07-26 08:40:17.672656+07', 'system', '2023-07-26 08:40:17.672656+07', 'Xã Bình Yên', '05587', 'Xã');
INSERT INTO category."Wards" VALUES (5590, 167, 'system', '2023-07-26 08:40:17.672659+07', 'system', '2023-07-26 08:40:17.672659+07', 'Xã Điềm Mặc', '05590', 'Xã');
INSERT INTO category."Wards" VALUES (5593, 167, 'system', '2023-07-26 08:40:17.672661+07', 'system', '2023-07-26 08:40:17.672661+07', 'Xã Phú Tiến', '05593', 'Xã');
INSERT INTO category."Wards" VALUES (5596, 167, 'system', '2023-07-26 08:40:17.672664+07', 'system', '2023-07-26 08:40:17.672664+07', 'Xã Bộc Nhiêu', '05596', 'Xã');
INSERT INTO category."Wards" VALUES (5599, 167, 'system', '2023-07-26 08:40:17.672667+07', 'system', '2023-07-26 08:40:17.672667+07', 'Xã Sơn Phú', '05599', 'Xã');
INSERT INTO category."Wards" VALUES (5602, 167, 'system', '2023-07-26 08:40:17.67267+07', 'system', '2023-07-26 08:40:17.67267+07', 'Xã Phú Đình', '05602', 'Xã');
INSERT INTO category."Wards" VALUES (5605, 167, 'system', '2023-07-26 08:40:17.672673+07', 'system', '2023-07-26 08:40:17.672673+07', 'Xã Bình Thành', '05605', 'Xã');
INSERT INTO category."Wards" VALUES (5608, 168, 'system', '2023-07-26 08:40:17.672675+07', 'system', '2023-07-26 08:40:17.672675+07', 'Thị trấn Giang Tiên', '05608', 'Thị trấn');
INSERT INTO category."Wards" VALUES (5611, 168, 'system', '2023-07-26 08:40:17.672678+07', 'system', '2023-07-26 08:40:17.672678+07', 'Thị trấn Đu', '05611', 'Thị trấn');
INSERT INTO category."Wards" VALUES (5614, 168, 'system', '2023-07-26 08:40:17.672681+07', 'system', '2023-07-26 08:40:17.672681+07', 'Xã Yên Ninh', '05614', 'Xã');
INSERT INTO category."Wards" VALUES (5617, 168, 'system', '2023-07-26 08:40:17.672684+07', 'system', '2023-07-26 08:40:17.672684+07', 'Xã Yên Trạch', '05617', 'Xã');
INSERT INTO category."Wards" VALUES (5620, 168, 'system', '2023-07-26 08:40:17.672686+07', 'system', '2023-07-26 08:40:17.672687+07', 'Xã Yên Đổ', '05620', 'Xã');
INSERT INTO category."Wards" VALUES (5623, 168, 'system', '2023-07-26 08:40:17.672689+07', 'system', '2023-07-26 08:40:17.672689+07', 'Xã Yên Lạc', '05623', 'Xã');
INSERT INTO category."Wards" VALUES (5626, 168, 'system', '2023-07-26 08:40:17.672692+07', 'system', '2023-07-26 08:40:17.672692+07', 'Xã Ôn Lương', '05626', 'Xã');
INSERT INTO category."Wards" VALUES (5629, 168, 'system', '2023-07-26 08:40:17.672694+07', 'system', '2023-07-26 08:40:17.672694+07', 'Xã Động Đạt', '05629', 'Xã');
INSERT INTO category."Wards" VALUES (5632, 168, 'system', '2023-07-26 08:40:17.672697+07', 'system', '2023-07-26 08:40:17.672697+07', 'Xã Phủ Lý', '05632', 'Xã');
INSERT INTO category."Wards" VALUES (5635, 168, 'system', '2023-07-26 08:40:17.6727+07', 'system', '2023-07-26 08:40:17.6727+07', 'Xã Phú Đô', '05635', 'Xã');
INSERT INTO category."Wards" VALUES (5638, 168, 'system', '2023-07-26 08:40:17.672702+07', 'system', '2023-07-26 08:40:17.672703+07', 'Xã Hợp Thành', '05638', 'Xã');
INSERT INTO category."Wards" VALUES (5641, 168, 'system', '2023-07-26 08:40:17.672705+07', 'system', '2023-07-26 08:40:17.672705+07', 'Xã Tức Tranh', '05641', 'Xã');
INSERT INTO category."Wards" VALUES (5644, 168, 'system', '2023-07-26 08:40:17.672708+07', 'system', '2023-07-26 08:40:17.672708+07', 'Xã Phấn Mễ', '05644', 'Xã');
INSERT INTO category."Wards" VALUES (5647, 168, 'system', '2023-07-26 08:40:17.672711+07', 'system', '2023-07-26 08:40:17.672711+07', 'Xã Vô Tranh', '05647', 'Xã');
INSERT INTO category."Wards" VALUES (5650, 168, 'system', '2023-07-26 08:40:17.672713+07', 'system', '2023-07-26 08:40:17.672713+07', 'Xã Cổ Lũng', '05650', 'Xã');
INSERT INTO category."Wards" VALUES (5653, 164, 'system', '2023-07-26 08:40:17.672567+07', 'system', '2023-07-26 08:40:17.672567+07', 'Xã Sơn Cẩm', '05653', 'Xã');
INSERT INTO category."Wards" VALUES (5656, 169, 'system', '2023-07-26 08:40:17.672716+07', 'system', '2023-07-26 08:40:17.672716+07', 'Thị trấn Sông Cầu', '05656', 'Thị trấn');
INSERT INTO category."Wards" VALUES (5659, 164, 'system', '2023-07-26 08:40:17.672571+07', 'system', '2023-07-26 08:40:17.672571+07', 'Phường Chùa Hang', '05659', 'Phường');
INSERT INTO category."Wards" VALUES (5662, 169, 'system', '2023-07-26 08:40:17.672719+07', 'system', '2023-07-26 08:40:17.672719+07', 'Thị trấn Trại Cau', '05662', 'Thị trấn');
INSERT INTO category."Wards" VALUES (5665, 169, 'system', '2023-07-26 08:40:17.672721+07', 'system', '2023-07-26 08:40:17.672722+07', 'Xã Văn Lăng', '05665', 'Xã');
INSERT INTO category."Wards" VALUES (5668, 169, 'system', '2023-07-26 08:40:17.672724+07', 'system', '2023-07-26 08:40:17.672724+07', 'Xã Tân Long', '05668', 'Xã');
INSERT INTO category."Wards" VALUES (5671, 169, 'system', '2023-07-26 08:40:17.672727+07', 'system', '2023-07-26 08:40:17.672727+07', 'Xã Hòa Bình', '05671', 'Xã');
INSERT INTO category."Wards" VALUES (5674, 169, 'system', '2023-07-26 08:40:17.672729+07', 'system', '2023-07-26 08:40:17.672729+07', 'Xã Quang Sơn', '05674', 'Xã');
INSERT INTO category."Wards" VALUES (5677, 169, 'system', '2023-07-26 08:40:17.672732+07', 'system', '2023-07-26 08:40:17.672732+07', 'Xã Minh Lập', '05677', 'Xã');
INSERT INTO category."Wards" VALUES (5680, 169, 'system', '2023-07-26 08:40:17.672734+07', 'system', '2023-07-26 08:40:17.672734+07', 'Xã Văn Hán', '05680', 'Xã');
INSERT INTO category."Wards" VALUES (5683, 169, 'system', '2023-07-26 08:40:17.672737+07', 'system', '2023-07-26 08:40:17.672737+07', 'Xã Hóa Trung', '05683', 'Xã');
INSERT INTO category."Wards" VALUES (5686, 169, 'system', '2023-07-26 08:40:17.67274+07', 'system', '2023-07-26 08:40:17.67274+07', 'Xã Khe Mo', '05686', 'Xã');
INSERT INTO category."Wards" VALUES (5689, 169, 'system', '2023-07-26 08:40:17.672742+07', 'system', '2023-07-26 08:40:17.672742+07', 'Xã Cây Thị', '05689', 'Xã');
INSERT INTO category."Wards" VALUES (5692, 169, 'system', '2023-07-26 08:40:17.672745+07', 'system', '2023-07-26 08:40:17.672745+07', 'Xã Hóa Thượng', '05692', 'Xã');
INSERT INTO category."Wards" VALUES (5695, 164, 'system', '2023-07-26 08:40:17.672573+07', 'system', '2023-07-26 08:40:17.672573+07', 'Xã Cao Ngạn', '05695', 'Xã');
INSERT INTO category."Wards" VALUES (5698, 169, 'system', '2023-07-26 08:40:17.672748+07', 'system', '2023-07-26 08:40:17.672748+07', 'Xã Hợp Tiến', '05698', 'Xã');
INSERT INTO category."Wards" VALUES (5701, 164, 'system', '2023-07-26 08:40:17.672576+07', 'system', '2023-07-26 08:40:17.672576+07', 'Xã Linh Sơn', '05701', 'Xã');
INSERT INTO category."Wards" VALUES (5704, 169, 'system', '2023-07-26 08:40:17.67275+07', 'system', '2023-07-26 08:40:17.67275+07', 'Xã Tân Lợi', '05704', 'Xã');
INSERT INTO category."Wards" VALUES (5707, 169, 'system', '2023-07-26 08:40:17.672753+07', 'system', '2023-07-26 08:40:17.672753+07', 'Xã Nam Hòa', '05707', 'Xã');
INSERT INTO category."Wards" VALUES (5710, 164, 'system', '2023-07-26 08:40:17.672579+07', 'system', '2023-07-26 08:40:17.672579+07', 'Phường Đồng Bẩm', '05710', 'Phường');
INSERT INTO category."Wards" VALUES (5713, 164, 'system', '2023-07-26 08:40:17.672581+07', 'system', '2023-07-26 08:40:17.672582+07', 'Xã Huống Thượng', '05713', 'Xã');
INSERT INTO category."Wards" VALUES (5716, 170, 'system', '2023-07-26 08:40:17.672756+07', 'system', '2023-07-26 08:40:17.672756+07', 'Thị trấn Đình Cả', '05716', 'Thị trấn');
INSERT INTO category."Wards" VALUES (5719, 170, 'system', '2023-07-26 08:40:17.672759+07', 'system', '2023-07-26 08:40:17.672759+07', 'Xã Sảng Mộc', '05719', 'Xã');
INSERT INTO category."Wards" VALUES (5722, 170, 'system', '2023-07-26 08:40:17.672761+07', 'system', '2023-07-26 08:40:17.672761+07', 'Xã Nghinh Tường', '05722', 'Xã');
INSERT INTO category."Wards" VALUES (5725, 170, 'system', '2023-07-26 08:40:17.672765+07', 'system', '2023-07-26 08:40:17.672765+07', 'Xã Thần Xa', '05725', 'Xã');
INSERT INTO category."Wards" VALUES (5728, 170, 'system', '2023-07-26 08:40:17.672767+07', 'system', '2023-07-26 08:40:17.672767+07', 'Xã Vũ Chấn', '05728', 'Xã');
INSERT INTO category."Wards" VALUES (5731, 170, 'system', '2023-07-26 08:40:17.67277+07', 'system', '2023-07-26 08:40:17.67277+07', 'Xã Thượng Nung', '05731', 'Xã');
INSERT INTO category."Wards" VALUES (5734, 170, 'system', '2023-07-26 08:40:17.672772+07', 'system', '2023-07-26 08:40:17.672773+07', 'Xã Phú Thượng', '05734', 'Xã');
INSERT INTO category."Wards" VALUES (5737, 170, 'system', '2023-07-26 08:40:17.672775+07', 'system', '2023-07-26 08:40:17.672775+07', 'Xã Cúc Đường', '05737', 'Xã');
INSERT INTO category."Wards" VALUES (5740, 170, 'system', '2023-07-26 08:40:17.672778+07', 'system', '2023-07-26 08:40:17.672778+07', 'Xã La Hiên', '05740', 'Xã');
INSERT INTO category."Wards" VALUES (5743, 170, 'system', '2023-07-26 08:40:17.67278+07', 'system', '2023-07-26 08:40:17.67278+07', 'Xã Lâu Thượng', '05743', 'Xã');
INSERT INTO category."Wards" VALUES (5746, 170, 'system', '2023-07-26 08:40:17.672783+07', 'system', '2023-07-26 08:40:17.672783+07', 'Xã Tràng Xá', '05746', 'Xã');
INSERT INTO category."Wards" VALUES (5749, 170, 'system', '2023-07-26 08:40:17.672785+07', 'system', '2023-07-26 08:40:17.672785+07', 'Xã Phương Giao', '05749', 'Xã');
INSERT INTO category."Wards" VALUES (5752, 170, 'system', '2023-07-26 08:40:17.672788+07', 'system', '2023-07-26 08:40:17.672788+07', 'Xã Liên Minh', '05752', 'Xã');
INSERT INTO category."Wards" VALUES (5755, 170, 'system', '2023-07-26 08:40:17.672791+07', 'system', '2023-07-26 08:40:17.672791+07', 'Xã Dân Tiến', '05755', 'Xã');
INSERT INTO category."Wards" VALUES (5758, 170, 'system', '2023-07-26 08:40:17.672793+07', 'system', '2023-07-26 08:40:17.672793+07', 'Xã Bình Long', '05758', 'Xã');
INSERT INTO category."Wards" VALUES (5761, 171, 'system', '2023-07-26 08:40:17.672796+07', 'system', '2023-07-26 08:40:17.672796+07', 'Thị trấn Hùng Sơn', '05761', 'Thị trấn');
INSERT INTO category."Wards" VALUES (5764, 171, 'system', '2023-07-26 08:40:17.672799+07', 'system', '2023-07-26 08:40:17.672799+07', 'Thị trấn Quân Chu', '05764', 'Thị trấn');
INSERT INTO category."Wards" VALUES (5767, 171, 'system', '2023-07-26 08:40:17.672802+07', 'system', '2023-07-26 08:40:17.672802+07', 'Xã Phúc Lương', '05767', 'Xã');
INSERT INTO category."Wards" VALUES (5770, 171, 'system', '2023-07-26 08:40:17.672804+07', 'system', '2023-07-26 08:40:17.672804+07', 'Xã Minh Tiến', '05770', 'Xã');
INSERT INTO category."Wards" VALUES (5773, 171, 'system', '2023-07-26 08:40:17.672807+07', 'system', '2023-07-26 08:40:17.672807+07', 'Xã Yên Lãng', '05773', 'Xã');
INSERT INTO category."Wards" VALUES (5776, 171, 'system', '2023-07-26 08:40:17.672809+07', 'system', '2023-07-26 08:40:17.672809+07', 'Xã Đức Lương', '05776', 'Xã');
INSERT INTO category."Wards" VALUES (5779, 171, 'system', '2023-07-26 08:40:17.672812+07', 'system', '2023-07-26 08:40:17.672812+07', 'Xã Phú Cường', '05779', 'Xã');
INSERT INTO category."Wards" VALUES (5782, 171, 'system', '2023-07-26 08:40:17.672815+07', 'system', '2023-07-26 08:40:17.672815+07', 'Xã Na Mao', '05782', 'Xã');
INSERT INTO category."Wards" VALUES (5785, 171, 'system', '2023-07-26 08:40:17.672817+07', 'system', '2023-07-26 08:40:17.672817+07', 'Xã Phú Lạc', '05785', 'Xã');
INSERT INTO category."Wards" VALUES (5788, 171, 'system', '2023-07-26 08:40:17.67282+07', 'system', '2023-07-26 08:40:17.67282+07', 'Xã Tân Linh', '05788', 'Xã');
INSERT INTO category."Wards" VALUES (5791, 171, 'system', '2023-07-26 08:40:17.672822+07', 'system', '2023-07-26 08:40:17.672822+07', 'Xã Phú Thịnh', '05791', 'Xã');
INSERT INTO category."Wards" VALUES (5794, 171, 'system', '2023-07-26 08:40:17.672825+07', 'system', '2023-07-26 08:40:17.672825+07', 'Xã Phục Linh', '05794', 'Xã');
INSERT INTO category."Wards" VALUES (5797, 171, 'system', '2023-07-26 08:40:17.672827+07', 'system', '2023-07-26 08:40:17.672827+07', 'Xã Phú Xuyên', '05797', 'Xã');
INSERT INTO category."Wards" VALUES (5800, 171, 'system', '2023-07-26 08:40:17.67283+07', 'system', '2023-07-26 08:40:17.67283+07', 'Xã Bản Ngoại', '05800', 'Xã');
INSERT INTO category."Wards" VALUES (5803, 171, 'system', '2023-07-26 08:40:17.672832+07', 'system', '2023-07-26 08:40:17.672833+07', 'Xã Tiên Hội', '05803', 'Xã');
INSERT INTO category."Wards" VALUES (5809, 171, 'system', '2023-07-26 08:40:17.672835+07', 'system', '2023-07-26 08:40:17.672835+07', 'Xã Cù Vân', '05809', 'Xã');
INSERT INTO category."Wards" VALUES (5812, 171, 'system', '2023-07-26 08:40:17.672838+07', 'system', '2023-07-26 08:40:17.672838+07', 'Xã Hà Thượng', '05812', 'Xã');
INSERT INTO category."Wards" VALUES (5815, 171, 'system', '2023-07-26 08:40:17.672841+07', 'system', '2023-07-26 08:40:17.672841+07', 'Xã La Bằng', '05815', 'Xã');
INSERT INTO category."Wards" VALUES (5818, 171, 'system', '2023-07-26 08:40:17.672843+07', 'system', '2023-07-26 08:40:17.672843+07', 'Xã Hoàng Nông', '05818', 'Xã');
INSERT INTO category."Wards" VALUES (5821, 171, 'system', '2023-07-26 08:40:17.672846+07', 'system', '2023-07-26 08:40:17.672846+07', 'Xã Khôi Kỳ', '05821', 'Xã');
INSERT INTO category."Wards" VALUES (5824, 171, 'system', '2023-07-26 08:40:17.672848+07', 'system', '2023-07-26 08:40:17.672848+07', 'Xã An Khánh', '05824', 'Xã');
INSERT INTO category."Wards" VALUES (5827, 171, 'system', '2023-07-26 08:40:17.672851+07', 'system', '2023-07-26 08:40:17.672851+07', 'Xã Tân Thái', '05827', 'Xã');
INSERT INTO category."Wards" VALUES (5830, 171, 'system', '2023-07-26 08:40:17.672853+07', 'system', '2023-07-26 08:40:17.672854+07', 'Xã Bình Thuận', '05830', 'Xã');
INSERT INTO category."Wards" VALUES (5833, 171, 'system', '2023-07-26 08:40:17.672856+07', 'system', '2023-07-26 08:40:17.672856+07', 'Xã Lục Ba', '05833', 'Xã');
INSERT INTO category."Wards" VALUES (5836, 171, 'system', '2023-07-26 08:40:17.672859+07', 'system', '2023-07-26 08:40:17.67286+07', 'Xã Mỹ Yên', '05836', 'Xã');
INSERT INTO category."Wards" VALUES (5839, 171, 'system', '2023-07-26 08:40:17.672862+07', 'system', '2023-07-26 08:40:17.672862+07', 'Xã Vạn Thọ', '05839', 'Xã');
INSERT INTO category."Wards" VALUES (5842, 171, 'system', '2023-07-26 08:40:17.672865+07', 'system', '2023-07-26 08:40:17.672865+07', 'Xã Văn Yên', '05842', 'Xã');
INSERT INTO category."Wards" VALUES (5845, 171, 'system', '2023-07-26 08:40:17.672867+07', 'system', '2023-07-26 08:40:17.672867+07', 'Xã Ký Phú', '05845', 'Xã');
INSERT INTO category."Wards" VALUES (5848, 171, 'system', '2023-07-26 08:40:17.67287+07', 'system', '2023-07-26 08:40:17.67287+07', 'Xã Cát Nê', '05848', 'Xã');
INSERT INTO category."Wards" VALUES (5851, 171, 'system', '2023-07-26 08:40:17.672873+07', 'system', '2023-07-26 08:40:17.672873+07', 'Xã Quân Chu', '05851', 'Xã');
INSERT INTO category."Wards" VALUES (5854, 172, 'system', '2023-07-26 08:40:17.672875+07', 'system', '2023-07-26 08:40:17.672875+07', 'Phường Bãi Bông', '05854', 'Phường');
INSERT INTO category."Wards" VALUES (5857, 172, 'system', '2023-07-26 08:40:17.672878+07', 'system', '2023-07-26 08:40:17.672878+07', 'Phường Bắc Sơn', '05857', 'Phường');
INSERT INTO category."Wards" VALUES (5860, 172, 'system', '2023-07-26 08:40:17.672881+07', 'system', '2023-07-26 08:40:17.672881+07', 'Phường Ba Hàng', '05860', 'Phường');
INSERT INTO category."Wards" VALUES (5863, 172, 'system', '2023-07-26 08:40:17.672884+07', 'system', '2023-07-26 08:40:17.672884+07', 'Xã Phúc Tân', '05863', 'Xã');
INSERT INTO category."Wards" VALUES (5866, 172, 'system', '2023-07-26 08:40:17.672886+07', 'system', '2023-07-26 08:40:17.672886+07', 'Xã Phúc Thuận', '05866', 'Xã');
INSERT INTO category."Wards" VALUES (5869, 172, 'system', '2023-07-26 08:40:17.672889+07', 'system', '2023-07-26 08:40:17.672889+07', 'Phường Hồng Tiến', '05869', 'Phường');
INSERT INTO category."Wards" VALUES (5872, 172, 'system', '2023-07-26 08:40:17.672892+07', 'system', '2023-07-26 08:40:17.672892+07', 'Xã Minh Đức', '05872', 'Xã');
INSERT INTO category."Wards" VALUES (5875, 172, 'system', '2023-07-26 08:40:17.672894+07', 'system', '2023-07-26 08:40:17.672894+07', 'Phường Đắc Sơn', '05875', 'Phường');
INSERT INTO category."Wards" VALUES (5878, 172, 'system', '2023-07-26 08:40:17.672897+07', 'system', '2023-07-26 08:40:17.672897+07', 'Phường Đồng Tiến', '05878', 'Phường');
INSERT INTO category."Wards" VALUES (5881, 172, 'system', '2023-07-26 08:40:17.6729+07', 'system', '2023-07-26 08:40:17.6729+07', 'Xã Thành Công', '05881', 'Xã');
INSERT INTO category."Wards" VALUES (5884, 172, 'system', '2023-07-26 08:40:17.672903+07', 'system', '2023-07-26 08:40:17.672903+07', 'Phường Tiên Phong', '05884', 'Phường');
INSERT INTO category."Wards" VALUES (5887, 172, 'system', '2023-07-26 08:40:17.672905+07', 'system', '2023-07-26 08:40:17.672905+07', 'Xã Vạn Phái', '05887', 'Xã');
INSERT INTO category."Wards" VALUES (5890, 172, 'system', '2023-07-26 08:40:17.672908+07', 'system', '2023-07-26 08:40:17.672908+07', 'Phường Nam Tiến', '05890', 'Phường');
INSERT INTO category."Wards" VALUES (5893, 172, 'system', '2023-07-26 08:40:17.672911+07', 'system', '2023-07-26 08:40:17.672911+07', 'Phường Tân Hương', '05893', 'Phường');
INSERT INTO category."Wards" VALUES (5896, 172, 'system', '2023-07-26 08:40:17.672913+07', 'system', '2023-07-26 08:40:17.672913+07', 'Phường Đông Cao', '05896', 'Phường');
INSERT INTO category."Wards" VALUES (5899, 172, 'system', '2023-07-26 08:40:17.672916+07', 'system', '2023-07-26 08:40:17.672916+07', 'Phường Trung Thành', '05899', 'Phường');
INSERT INTO category."Wards" VALUES (5902, 172, 'system', '2023-07-26 08:40:17.672919+07', 'system', '2023-07-26 08:40:17.672919+07', 'Phường Tân Phú', '05902', 'Phường');
INSERT INTO category."Wards" VALUES (5905, 172, 'system', '2023-07-26 08:40:17.672922+07', 'system', '2023-07-26 08:40:17.672922+07', 'Phường Thuận Thành', '05905', 'Phường');
INSERT INTO category."Wards" VALUES (5908, 173, 'system', '2023-07-26 08:40:17.672924+07', 'system', '2023-07-26 08:40:17.672924+07', 'Thị trấn Hương Sơn', '05908', 'Thị trấn');
INSERT INTO category."Wards" VALUES (5911, 173, 'system', '2023-07-26 08:40:17.672927+07', 'system', '2023-07-26 08:40:17.672927+07', 'Xã Bàn Đạt', '05911', 'Xã');
INSERT INTO category."Wards" VALUES (5914, 164, 'system', '2023-07-26 08:40:17.672584+07', 'system', '2023-07-26 08:40:17.672584+07', 'Xã Đồng Liên', '05914', 'Xã');
INSERT INTO category."Wards" VALUES (5917, 173, 'system', '2023-07-26 08:40:17.67293+07', 'system', '2023-07-26 08:40:17.67293+07', 'Xã Tân Khánh', '05917', 'Xã');
INSERT INTO category."Wards" VALUES (5920, 173, 'system', '2023-07-26 08:40:17.672933+07', 'system', '2023-07-26 08:40:17.672933+07', 'Xã Tân Kim', '05920', 'Xã');
INSERT INTO category."Wards" VALUES (5923, 173, 'system', '2023-07-26 08:40:17.672935+07', 'system', '2023-07-26 08:40:17.672935+07', 'Xã Tân Thành', '05923', 'Xã');
INSERT INTO category."Wards" VALUES (5926, 173, 'system', '2023-07-26 08:40:17.672938+07', 'system', '2023-07-26 08:40:17.672938+07', 'Xã Đào Xá', '05926', 'Xã');
INSERT INTO category."Wards" VALUES (5929, 173, 'system', '2023-07-26 08:40:17.67294+07', 'system', '2023-07-26 08:40:17.67294+07', 'Xã Bảo Lý', '05929', 'Xã');
INSERT INTO category."Wards" VALUES (5932, 173, 'system', '2023-07-26 08:40:17.672943+07', 'system', '2023-07-26 08:40:17.672943+07', 'Xã Thượng Đình', '05932', 'Xã');
INSERT INTO category."Wards" VALUES (5935, 173, 'system', '2023-07-26 08:40:17.672945+07', 'system', '2023-07-26 08:40:17.672946+07', 'Xã Tân Hòa', '05935', 'Xã');
INSERT INTO category."Wards" VALUES (5938, 173, 'system', '2023-07-26 08:40:17.672948+07', 'system', '2023-07-26 08:40:17.672948+07', 'Xã Nhã Lộng', '05938', 'Xã');
INSERT INTO category."Wards" VALUES (5941, 173, 'system', '2023-07-26 08:40:17.672951+07', 'system', '2023-07-26 08:40:17.672951+07', 'Xã Điềm Thụy', '05941', 'Xã');
INSERT INTO category."Wards" VALUES (5944, 173, 'system', '2023-07-26 08:40:17.672953+07', 'system', '2023-07-26 08:40:17.672954+07', 'Xã Xuân Phương', '05944', 'Xã');
INSERT INTO category."Wards" VALUES (5947, 173, 'system', '2023-07-26 08:40:17.672957+07', 'system', '2023-07-26 08:40:17.672957+07', 'Xã Tân Đức', '05947', 'Xã');
INSERT INTO category."Wards" VALUES (5950, 173, 'system', '2023-07-26 08:40:17.67296+07', 'system', '2023-07-26 08:40:17.67296+07', 'Xã Úc Kỳ', '05950', 'Xã');
INSERT INTO category."Wards" VALUES (5953, 173, 'system', '2023-07-26 08:40:17.672962+07', 'system', '2023-07-26 08:40:17.672962+07', 'Xã Lương Phú', '05953', 'Xã');
INSERT INTO category."Wards" VALUES (5956, 173, 'system', '2023-07-26 08:40:17.672965+07', 'system', '2023-07-26 08:40:17.672965+07', 'Xã Nga My', '05956', 'Xã');
INSERT INTO category."Wards" VALUES (5959, 173, 'system', '2023-07-26 08:40:17.672968+07', 'system', '2023-07-26 08:40:17.672968+07', 'Xã Kha Sơn', '05959', 'Xã');
INSERT INTO category."Wards" VALUES (5962, 173, 'system', '2023-07-26 08:40:17.67297+07', 'system', '2023-07-26 08:40:17.67297+07', 'Xã Thanh Ninh', '05962', 'Xã');
INSERT INTO category."Wards" VALUES (5965, 173, 'system', '2023-07-26 08:40:17.672973+07', 'system', '2023-07-26 08:40:17.672973+07', 'Xã Dương Thành', '05965', 'Xã');
INSERT INTO category."Wards" VALUES (5968, 173, 'system', '2023-07-26 08:40:17.672975+07', 'system', '2023-07-26 08:40:17.672975+07', 'Xã Hà Châu', '05968', 'Xã');
INSERT INTO category."Wards" VALUES (5971, 178, 'system', '2023-07-26 08:40:17.672978+07', 'system', '2023-07-26 08:40:17.672978+07', 'Phường Hoàng Văn Thụ', '05971', 'Phường');
INSERT INTO category."Wards" VALUES (5974, 178, 'system', '2023-07-26 08:40:17.672981+07', 'system', '2023-07-26 08:40:17.672981+07', 'Phường Tam Thanh', '05974', 'Phường');
INSERT INTO category."Wards" VALUES (5977, 178, 'system', '2023-07-26 08:40:17.672984+07', 'system', '2023-07-26 08:40:17.672984+07', 'Phường Vĩnh Trại', '05977', 'Phường');
INSERT INTO category."Wards" VALUES (5980, 178, 'system', '2023-07-26 08:40:17.672986+07', 'system', '2023-07-26 08:40:17.672986+07', 'Phường Đông Kinh', '05980', 'Phường');
INSERT INTO category."Wards" VALUES (5983, 178, 'system', '2023-07-26 08:40:17.672989+07', 'system', '2023-07-26 08:40:17.672989+07', 'Phường Chi Lăng', '05983', 'Phường');
INSERT INTO category."Wards" VALUES (5986, 178, 'system', '2023-07-26 08:40:17.672992+07', 'system', '2023-07-26 08:40:17.672992+07', 'Xã Hoàng Đồng', '05986', 'Xã');
INSERT INTO category."Wards" VALUES (5989, 178, 'system', '2023-07-26 08:40:17.672995+07', 'system', '2023-07-26 08:40:17.672995+07', 'Xã Quảng Lạc', '05989', 'Xã');
INSERT INTO category."Wards" VALUES (5992, 178, 'system', '2023-07-26 08:40:17.672997+07', 'system', '2023-07-26 08:40:17.672997+07', 'Xã Mai Pha', '05992', 'Xã');
INSERT INTO category."Wards" VALUES (5995, 180, 'system', '2023-07-26 08:40:17.673+07', 'system', '2023-07-26 08:40:17.673+07', 'Thị trấn Thất Khê', '05995', 'Thị trấn');
INSERT INTO category."Wards" VALUES (5998, 180, 'system', '2023-07-26 08:40:17.673003+07', 'system', '2023-07-26 08:40:17.673003+07', 'Xã Khánh Long', '05998', 'Xã');
INSERT INTO category."Wards" VALUES (6001, 180, 'system', '2023-07-26 08:40:17.673006+07', 'system', '2023-07-26 08:40:17.673006+07', 'Xã Đoàn Kết', '06001', 'Xã');
INSERT INTO category."Wards" VALUES (6004, 180, 'system', '2023-07-26 08:40:17.673008+07', 'system', '2023-07-26 08:40:17.673009+07', 'Xã Quốc Khánh', '06004', 'Xã');
INSERT INTO category."Wards" VALUES (6007, 180, 'system', '2023-07-26 08:40:17.673011+07', 'system', '2023-07-26 08:40:17.673011+07', 'Xã Vĩnh Tiến', '06007', 'Xã');
INSERT INTO category."Wards" VALUES (6010, 180, 'system', '2023-07-26 08:40:17.673014+07', 'system', '2023-07-26 08:40:17.673014+07', 'Xã Cao Minh', '06010', 'Xã');
INSERT INTO category."Wards" VALUES (6013, 180, 'system', '2023-07-26 08:40:17.673016+07', 'system', '2023-07-26 08:40:17.673016+07', 'Xã Chí Minh', '06013', 'Xã');
INSERT INTO category."Wards" VALUES (6016, 180, 'system', '2023-07-26 08:40:17.673019+07', 'system', '2023-07-26 08:40:17.673019+07', 'Xã Tri Phương', '06016', 'Xã');
INSERT INTO category."Wards" VALUES (6019, 180, 'system', '2023-07-26 08:40:17.673022+07', 'system', '2023-07-26 08:40:17.673022+07', 'Xã Tân Tiến', '06019', 'Xã');
INSERT INTO category."Wards" VALUES (6022, 180, 'system', '2023-07-26 08:40:17.673024+07', 'system', '2023-07-26 08:40:17.673024+07', 'Xã Tân Yên', '06022', 'Xã');
INSERT INTO category."Wards" VALUES (6025, 180, 'system', '2023-07-26 08:40:17.673027+07', 'system', '2023-07-26 08:40:17.673027+07', 'Xã Đội Cấn', '06025', 'Xã');
INSERT INTO category."Wards" VALUES (6028, 180, 'system', '2023-07-26 08:40:17.673029+07', 'system', '2023-07-26 08:40:17.673029+07', 'Xã Tân Minh', '06028', 'Xã');
INSERT INTO category."Wards" VALUES (6031, 180, 'system', '2023-07-26 08:40:17.673032+07', 'system', '2023-07-26 08:40:17.673032+07', 'Xã Kim Đồng', '06031', 'Xã');
INSERT INTO category."Wards" VALUES (6034, 180, 'system', '2023-07-26 08:40:17.673034+07', 'system', '2023-07-26 08:40:17.673034+07', 'Xã Chi Lăng', '06034', 'Xã');
INSERT INTO category."Wards" VALUES (6037, 180, 'system', '2023-07-26 08:40:17.673037+07', 'system', '2023-07-26 08:40:17.673037+07', 'Xã Trung Thành', '06037', 'Xã');
INSERT INTO category."Wards" VALUES (6040, 180, 'system', '2023-07-26 08:40:17.67304+07', 'system', '2023-07-26 08:40:17.67304+07', 'Xã Đại Đồng', '06040', 'Xã');
INSERT INTO category."Wards" VALUES (6043, 180, 'system', '2023-07-26 08:40:17.673042+07', 'system', '2023-07-26 08:40:17.673042+07', 'Xã Đào Viên', '06043', 'Xã');
INSERT INTO category."Wards" VALUES (6046, 180, 'system', '2023-07-26 08:40:17.673045+07', 'system', '2023-07-26 08:40:17.673045+07', 'Xã Đề Thám', '06046', 'Xã');
INSERT INTO category."Wards" VALUES (6049, 180, 'system', '2023-07-26 08:40:17.673047+07', 'system', '2023-07-26 08:40:17.673047+07', 'Xã Kháng Chiến', '06049', 'Xã');
INSERT INTO category."Wards" VALUES (6055, 180, 'system', '2023-07-26 08:40:17.67305+07', 'system', '2023-07-26 08:40:17.67305+07', 'Xã Hùng Sơn', '06055', 'Xã');
INSERT INTO category."Wards" VALUES (6058, 180, 'system', '2023-07-26 08:40:17.673053+07', 'system', '2023-07-26 08:40:17.673054+07', 'Xã Quốc Việt', '06058', 'Xã');
INSERT INTO category."Wards" VALUES (6061, 180, 'system', '2023-07-26 08:40:17.673056+07', 'system', '2023-07-26 08:40:17.673056+07', 'Xã Hùng Việt', '06061', 'Xã');
INSERT INTO category."Wards" VALUES (6067, 181, 'system', '2023-07-26 08:40:17.673059+07', 'system', '2023-07-26 08:40:17.673059+07', 'Xã Hưng Đạo', '06067', 'Xã');
INSERT INTO category."Wards" VALUES (6070, 181, 'system', '2023-07-26 08:40:17.673061+07', 'system', '2023-07-26 08:40:17.673061+07', 'Xã Vĩnh Yên', '06070', 'Xã');
INSERT INTO category."Wards" VALUES (6073, 181, 'system', '2023-07-26 08:40:17.673064+07', 'system', '2023-07-26 08:40:17.673064+07', 'Xã Hoa Thám', '06073', 'Xã');
INSERT INTO category."Wards" VALUES (6076, 181, 'system', '2023-07-26 08:40:17.673067+07', 'system', '2023-07-26 08:40:17.673067+07', 'Xã Quý Hòa', '06076', 'Xã');
INSERT INTO category."Wards" VALUES (6079, 181, 'system', '2023-07-26 08:40:17.673069+07', 'system', '2023-07-26 08:40:17.673069+07', 'Xã Hồng Phong', '06079', 'Xã');
INSERT INTO category."Wards" VALUES (6082, 181, 'system', '2023-07-26 08:40:17.673072+07', 'system', '2023-07-26 08:40:17.673072+07', 'Xã Yên Lỗ', '06082', 'Xã');
INSERT INTO category."Wards" VALUES (6085, 181, 'system', '2023-07-26 08:40:17.673075+07', 'system', '2023-07-26 08:40:17.673075+07', 'Xã Thiện Hòa', '06085', 'Xã');
INSERT INTO category."Wards" VALUES (6088, 181, 'system', '2023-07-26 08:40:17.673077+07', 'system', '2023-07-26 08:40:17.673077+07', 'Xã Quang Trung', '06088', 'Xã');
INSERT INTO category."Wards" VALUES (6091, 181, 'system', '2023-07-26 08:40:17.67308+07', 'system', '2023-07-26 08:40:17.67308+07', 'Xã Thiện Thuật', '06091', 'Xã');
INSERT INTO category."Wards" VALUES (6094, 181, 'system', '2023-07-26 08:40:17.673082+07', 'system', '2023-07-26 08:40:17.673083+07', 'Xã Minh Khai', '06094', 'Xã');
INSERT INTO category."Wards" VALUES (6097, 181, 'system', '2023-07-26 08:40:17.673085+07', 'system', '2023-07-26 08:40:17.673085+07', 'Xã Thiện Long', '06097', 'Xã');
INSERT INTO category."Wards" VALUES (6100, 181, 'system', '2023-07-26 08:40:17.673088+07', 'system', '2023-07-26 08:40:17.673088+07', 'Xã Hoàng Văn Thụ', '06100', 'Xã');
INSERT INTO category."Wards" VALUES (6103, 181, 'system', '2023-07-26 08:40:17.67309+07', 'system', '2023-07-26 08:40:17.67309+07', 'Xã Hòa Bình', '06103', 'Xã');
INSERT INTO category."Wards" VALUES (6106, 181, 'system', '2023-07-26 08:40:17.673093+07', 'system', '2023-07-26 08:40:17.673093+07', 'Xã Mông Ân', '06106', 'Xã');
INSERT INTO category."Wards" VALUES (6109, 181, 'system', '2023-07-26 08:40:17.673096+07', 'system', '2023-07-26 08:40:17.673096+07', 'Xã Tân Hòa', '06109', 'Xã');
INSERT INTO category."Wards" VALUES (6112, 181, 'system', '2023-07-26 08:40:17.673098+07', 'system', '2023-07-26 08:40:17.673098+07', 'Thị trấn Bình Gia', '06112', 'Thị trấn');
INSERT INTO category."Wards" VALUES (6115, 181, 'system', '2023-07-26 08:40:17.673101+07', 'system', '2023-07-26 08:40:17.673101+07', 'Xã Hồng Thái', '06115', 'Xã');
INSERT INTO category."Wards" VALUES (6118, 181, 'system', '2023-07-26 08:40:17.673104+07', 'system', '2023-07-26 08:40:17.673104+07', 'Xã Bình La', '06118', 'Xã');
INSERT INTO category."Wards" VALUES (6121, 181, 'system', '2023-07-26 08:40:17.673106+07', 'system', '2023-07-26 08:40:17.673106+07', 'Xã Tân Văn', '06121', 'Xã');
INSERT INTO category."Wards" VALUES (6124, 182, 'system', '2023-07-26 08:40:17.673109+07', 'system', '2023-07-26 08:40:17.673109+07', 'Thị trấn Na Sầm', '06124', 'Thị trấn');
INSERT INTO category."Wards" VALUES (6127, 182, 'system', '2023-07-26 08:40:17.673112+07', 'system', '2023-07-26 08:40:17.673112+07', 'Xã Trùng Khánh', '06127', 'Xã');
INSERT INTO category."Wards" VALUES (6133, 182, 'system', '2023-07-26 08:40:17.673115+07', 'system', '2023-07-26 08:40:17.673115+07', 'Xã Bắc La', '06133', 'Xã');
INSERT INTO category."Wards" VALUES (6136, 182, 'system', '2023-07-26 08:40:17.673117+07', 'system', '2023-07-26 08:40:17.673117+07', 'Xã Thụy Hùng', '06136', 'Xã');
INSERT INTO category."Wards" VALUES (6139, 182, 'system', '2023-07-26 08:40:17.67312+07', 'system', '2023-07-26 08:40:17.67312+07', 'Xã Bắc Hùng', '06139', 'Xã');
INSERT INTO category."Wards" VALUES (6142, 182, 'system', '2023-07-26 08:40:17.673122+07', 'system', '2023-07-26 08:40:17.673122+07', 'Xã Tân Tác', '06142', 'Xã');
INSERT INTO category."Wards" VALUES (6148, 182, 'system', '2023-07-26 08:40:17.673125+07', 'system', '2023-07-26 08:40:17.673125+07', 'Xã Thanh Long', '06148', 'Xã');
INSERT INTO category."Wards" VALUES (6151, 182, 'system', '2023-07-26 08:40:17.673128+07', 'system', '2023-07-26 08:40:17.673128+07', 'Xã Hội Hoan', '06151', 'Xã');
INSERT INTO category."Wards" VALUES (6154, 182, 'system', '2023-07-26 08:40:17.673142+07', 'system', '2023-07-26 08:40:17.673143+07', 'Xã Bắc Việt', '06154', 'Xã');
INSERT INTO category."Wards" VALUES (6157, 182, 'system', '2023-07-26 08:40:17.673145+07', 'system', '2023-07-26 08:40:17.673146+07', 'Xã Hoàng Việt', '06157', 'Xã');
INSERT INTO category."Wards" VALUES (6160, 182, 'system', '2023-07-26 08:40:17.673148+07', 'system', '2023-07-26 08:40:17.673148+07', 'Xã Gia Miễn', '06160', 'Xã');
INSERT INTO category."Wards" VALUES (6163, 182, 'system', '2023-07-26 08:40:17.673151+07', 'system', '2023-07-26 08:40:17.673151+07', 'Xã Thành Hòa', '06163', 'Xã');
INSERT INTO category."Wards" VALUES (6166, 182, 'system', '2023-07-26 08:40:17.673153+07', 'system', '2023-07-26 08:40:17.673153+07', 'Xã Tân Thanh', '06166', 'Xã');
INSERT INTO category."Wards" VALUES (6172, 182, 'system', '2023-07-26 08:40:17.673156+07', 'system', '2023-07-26 08:40:17.673156+07', 'Xã Tân Mỹ', '06172', 'Xã');
INSERT INTO category."Wards" VALUES (6175, 182, 'system', '2023-07-26 08:40:17.673158+07', 'system', '2023-07-26 08:40:17.673158+07', 'Xã Hồng Thái', '06175', 'Xã');
INSERT INTO category."Wards" VALUES (6178, 182, 'system', '2023-07-26 08:40:17.673162+07', 'system', '2023-07-26 08:40:17.673162+07', 'Xã  Hoàng Văn Thụ', '06178', 'Xã');
INSERT INTO category."Wards" VALUES (6181, 182, 'system', '2023-07-26 08:40:17.673165+07', 'system', '2023-07-26 08:40:17.673165+07', 'Xã Nhạc Kỳ', '06181', 'Xã');
INSERT INTO category."Wards" VALUES (6184, 183, 'system', '2023-07-26 08:40:17.673168+07', 'system', '2023-07-26 08:40:17.673168+07', 'Thị trấn Đồng Đăng', '06184', 'Thị trấn');
INSERT INTO category."Wards" VALUES (6187, 183, 'system', '2023-07-26 08:40:17.673171+07', 'system', '2023-07-26 08:40:17.673171+07', 'Thị trấn Cao Lộc', '06187', 'Thị trấn');
INSERT INTO category."Wards" VALUES (6190, 183, 'system', '2023-07-26 08:40:17.673174+07', 'system', '2023-07-26 08:40:17.673174+07', 'Xã Bảo Lâm', '06190', 'Xã');
INSERT INTO category."Wards" VALUES (6193, 183, 'system', '2023-07-26 08:40:17.673176+07', 'system', '2023-07-26 08:40:17.673176+07', 'Xã Thanh Lòa', '06193', 'Xã');
INSERT INTO category."Wards" VALUES (6196, 183, 'system', '2023-07-26 08:40:17.673179+07', 'system', '2023-07-26 08:40:17.673179+07', 'Xã Cao Lâu', '06196', 'Xã');
INSERT INTO category."Wards" VALUES (6199, 183, 'system', '2023-07-26 08:40:17.673181+07', 'system', '2023-07-26 08:40:17.673181+07', 'Xã Thạch Đạn', '06199', 'Xã');
INSERT INTO category."Wards" VALUES (6202, 183, 'system', '2023-07-26 08:40:17.673184+07', 'system', '2023-07-26 08:40:17.673184+07', 'Xã Xuất Lễ', '06202', 'Xã');
INSERT INTO category."Wards" VALUES (6205, 183, 'system', '2023-07-26 08:40:17.673186+07', 'system', '2023-07-26 08:40:17.673186+07', 'Xã Hồng Phong', '06205', 'Xã');
INSERT INTO category."Wards" VALUES (6208, 183, 'system', '2023-07-26 08:40:17.673189+07', 'system', '2023-07-26 08:40:17.673189+07', 'Xã Thụy Hùng', '06208', 'Xã');
INSERT INTO category."Wards" VALUES (6211, 183, 'system', '2023-07-26 08:40:17.673192+07', 'system', '2023-07-26 08:40:17.673192+07', 'Xã Lộc Yên', '06211', 'Xã');
INSERT INTO category."Wards" VALUES (6214, 183, 'system', '2023-07-26 08:40:17.673194+07', 'system', '2023-07-26 08:40:17.673194+07', 'Xã Phú Xá', '06214', 'Xã');
INSERT INTO category."Wards" VALUES (6217, 183, 'system', '2023-07-26 08:40:17.673197+07', 'system', '2023-07-26 08:40:17.673197+07', 'Xã Bình Trung', '06217', 'Xã');
INSERT INTO category."Wards" VALUES (6220, 183, 'system', '2023-07-26 08:40:17.673199+07', 'system', '2023-07-26 08:40:17.6732+07', 'Xã Hải Yến', '06220', 'Xã');
INSERT INTO category."Wards" VALUES (6223, 183, 'system', '2023-07-26 08:40:17.673202+07', 'system', '2023-07-26 08:40:17.673202+07', 'Xã Hòa Cư', '06223', 'Xã');
INSERT INTO category."Wards" VALUES (6226, 183, 'system', '2023-07-26 08:40:17.673205+07', 'system', '2023-07-26 08:40:17.673205+07', 'Xã Hợp Thành', '06226', 'Xã');
INSERT INTO category."Wards" VALUES (6232, 183, 'system', '2023-07-26 08:40:17.673207+07', 'system', '2023-07-26 08:40:17.673207+07', 'Xã Công Sơn', '06232', 'Xã');
INSERT INTO category."Wards" VALUES (6235, 183, 'system', '2023-07-26 08:40:17.67321+07', 'system', '2023-07-26 08:40:17.67321+07', 'Xã Gia Cát', '06235', 'Xã');
INSERT INTO category."Wards" VALUES (6238, 183, 'system', '2023-07-26 08:40:17.673212+07', 'system', '2023-07-26 08:40:17.673212+07', 'Xã Mẫu Sơn', '06238', 'Xã');
INSERT INTO category."Wards" VALUES (6241, 183, 'system', '2023-07-26 08:40:17.673215+07', 'system', '2023-07-26 08:40:17.673215+07', 'Xã Xuân Long', '06241', 'Xã');
INSERT INTO category."Wards" VALUES (6244, 183, 'system', '2023-07-26 08:40:17.673217+07', 'system', '2023-07-26 08:40:17.673217+07', 'Xã Tân Liên', '06244', 'Xã');
INSERT INTO category."Wards" VALUES (6247, 183, 'system', '2023-07-26 08:40:17.67322+07', 'system', '2023-07-26 08:40:17.67322+07', 'Xã Yên Trạch', '06247', 'Xã');
INSERT INTO category."Wards" VALUES (6250, 183, 'system', '2023-07-26 08:40:17.673222+07', 'system', '2023-07-26 08:40:17.673222+07', 'Xã Tân Thành', '06250', 'Xã');
INSERT INTO category."Wards" VALUES (6253, 184, 'system', '2023-07-26 08:40:17.673225+07', 'system', '2023-07-26 08:40:17.673225+07', 'Thị trấn Văn Quan', '06253', 'Thị trấn');
INSERT INTO category."Wards" VALUES (6256, 184, 'system', '2023-07-26 08:40:17.673228+07', 'system', '2023-07-26 08:40:17.673228+07', 'Xã Trấn Ninh', '06256', 'Xã');
INSERT INTO category."Wards" VALUES (6268, 184, 'system', '2023-07-26 08:40:17.67323+07', 'system', '2023-07-26 08:40:17.67323+07', 'Xã Liên Hội', '06268', 'Xã');
INSERT INTO category."Wards" VALUES (6274, 184, 'system', '2023-07-26 08:40:17.673233+07', 'system', '2023-07-26 08:40:17.673233+07', 'Xã Hòa Bình', '06274', 'Xã');
INSERT INTO category."Wards" VALUES (6277, 184, 'system', '2023-07-26 08:40:17.673236+07', 'system', '2023-07-26 08:40:17.673236+07', 'Xã Tú Xuyên', '06277', 'Xã');
INSERT INTO category."Wards" VALUES (6280, 184, 'system', '2023-07-26 08:40:17.673238+07', 'system', '2023-07-26 08:40:17.673238+07', 'Xã Điềm He', '06280', 'Xã');
INSERT INTO category."Wards" VALUES (6283, 184, 'system', '2023-07-26 08:40:17.673241+07', 'system', '2023-07-26 08:40:17.673241+07', 'Xã An Sơn', '06283', 'Xã');
INSERT INTO category."Wards" VALUES (6286, 184, 'system', '2023-07-26 08:40:17.673243+07', 'system', '2023-07-26 08:40:17.673243+07', 'Xã Khánh Khê', '06286', 'Xã');
INSERT INTO category."Wards" VALUES (6292, 184, 'system', '2023-07-26 08:40:17.673246+07', 'system', '2023-07-26 08:40:17.673246+07', 'Xã Lương Năng', '06292', 'Xã');
INSERT INTO category."Wards" VALUES (6295, 184, 'system', '2023-07-26 08:40:17.673249+07', 'system', '2023-07-26 08:40:17.673249+07', 'Xã Đồng Giáp', '06295', 'Xã');
INSERT INTO category."Wards" VALUES (6298, 184, 'system', '2023-07-26 08:40:17.673251+07', 'system', '2023-07-26 08:40:17.673251+07', 'Xã Bình Phúc', '06298', 'Xã');
INSERT INTO category."Wards" VALUES (6301, 184, 'system', '2023-07-26 08:40:17.673254+07', 'system', '2023-07-26 08:40:17.673254+07', 'Xã Tràng Các', '06301', 'Xã');
INSERT INTO category."Wards" VALUES (6307, 184, 'system', '2023-07-26 08:40:17.673257+07', 'system', '2023-07-26 08:40:17.673257+07', 'Xã Tân Đoàn', '06307', 'Xã');
INSERT INTO category."Wards" VALUES (6313, 184, 'system', '2023-07-26 08:40:17.67326+07', 'system', '2023-07-26 08:40:17.67326+07', 'Xã Tri Lễ', '06313', 'Xã');
INSERT INTO category."Wards" VALUES (6316, 184, 'system', '2023-07-26 08:40:17.673263+07', 'system', '2023-07-26 08:40:17.673263+07', 'Xã Tràng Phái', '06316', 'Xã');
INSERT INTO category."Wards" VALUES (6319, 184, 'system', '2023-07-26 08:40:17.673266+07', 'system', '2023-07-26 08:40:17.673266+07', 'Xã Yên Phúc', '06319', 'Xã');
INSERT INTO category."Wards" VALUES (6322, 184, 'system', '2023-07-26 08:40:17.673268+07', 'system', '2023-07-26 08:40:17.673268+07', 'Xã Hữu Lễ', '06322', 'Xã');
INSERT INTO category."Wards" VALUES (6325, 185, 'system', '2023-07-26 08:40:17.673271+07', 'system', '2023-07-26 08:40:17.673271+07', 'Thị trấn Bắc Sơn', '06325', 'Thị trấn');
INSERT INTO category."Wards" VALUES (6328, 185, 'system', '2023-07-26 08:40:17.673274+07', 'system', '2023-07-26 08:40:17.673274+07', 'Xã Long Đống', '06328', 'Xã');
INSERT INTO category."Wards" VALUES (6331, 185, 'system', '2023-07-26 08:40:17.673276+07', 'system', '2023-07-26 08:40:17.673276+07', 'Xã Vạn Thủy', '06331', 'Xã');
INSERT INTO category."Wards" VALUES (6337, 185, 'system', '2023-07-26 08:40:17.673279+07', 'system', '2023-07-26 08:40:17.673279+07', 'Xã Đồng ý', '06337', 'Xã');
INSERT INTO category."Wards" VALUES (6340, 185, 'system', '2023-07-26 08:40:17.673281+07', 'system', '2023-07-26 08:40:17.673282+07', 'Xã Tân Tri', '06340', 'Xã');
INSERT INTO category."Wards" VALUES (6343, 185, 'system', '2023-07-26 08:40:17.673284+07', 'system', '2023-07-26 08:40:17.673284+07', 'Xã Bắc Quỳnh', '06343', 'Xã');
INSERT INTO category."Wards" VALUES (6349, 185, 'system', '2023-07-26 08:40:17.673287+07', 'system', '2023-07-26 08:40:17.673287+07', 'Xã Hưng Vũ', '06349', 'Xã');
INSERT INTO category."Wards" VALUES (6352, 185, 'system', '2023-07-26 08:40:17.673289+07', 'system', '2023-07-26 08:40:17.673289+07', 'Xã Tân Lập', '06352', 'Xã');
INSERT INTO category."Wards" VALUES (6355, 185, 'system', '2023-07-26 08:40:17.673292+07', 'system', '2023-07-26 08:40:17.673292+07', 'Xã Vũ Sơn', '06355', 'Xã');
INSERT INTO category."Wards" VALUES (6358, 185, 'system', '2023-07-26 08:40:17.673294+07', 'system', '2023-07-26 08:40:17.673294+07', 'Xã Chiêu Vũ', '06358', 'Xã');
INSERT INTO category."Wards" VALUES (6361, 185, 'system', '2023-07-26 08:40:17.673297+07', 'system', '2023-07-26 08:40:17.673297+07', 'Xã Tân Hương', '06361', 'Xã');
INSERT INTO category."Wards" VALUES (6364, 185, 'system', '2023-07-26 08:40:17.6733+07', 'system', '2023-07-26 08:40:17.6733+07', 'Xã Chiến Thắng', '06364', 'Xã');
INSERT INTO category."Wards" VALUES (6367, 185, 'system', '2023-07-26 08:40:17.673302+07', 'system', '2023-07-26 08:40:17.673302+07', 'Xã Vũ Lăng', '06367', 'Xã');
INSERT INTO category."Wards" VALUES (6370, 185, 'system', '2023-07-26 08:40:17.673305+07', 'system', '2023-07-26 08:40:17.673305+07', 'Xã Trấn Yên', '06370', 'Xã');
INSERT INTO category."Wards" VALUES (6373, 185, 'system', '2023-07-26 08:40:17.673308+07', 'system', '2023-07-26 08:40:17.673308+07', 'Xã Vũ Lễ', '06373', 'Xã');
INSERT INTO category."Wards" VALUES (6376, 185, 'system', '2023-07-26 08:40:17.67331+07', 'system', '2023-07-26 08:40:17.67331+07', 'Xã Nhất Hòa', '06376', 'Xã');
INSERT INTO category."Wards" VALUES (6379, 185, 'system', '2023-07-26 08:40:17.673313+07', 'system', '2023-07-26 08:40:17.673313+07', 'Xã Tân Thành', '06379', 'Xã');
INSERT INTO category."Wards" VALUES (6382, 185, 'system', '2023-07-26 08:40:17.673316+07', 'system', '2023-07-26 08:40:17.673316+07', 'Xã Nhất Tiến', '06382', 'Xã');
INSERT INTO category."Wards" VALUES (6385, 186, 'system', '2023-07-26 08:40:17.673318+07', 'system', '2023-07-26 08:40:17.673318+07', 'Thị trấn Hữu Lũng', '06385', 'Thị trấn');
INSERT INTO category."Wards" VALUES (6388, 186, 'system', '2023-07-26 08:40:17.673321+07', 'system', '2023-07-26 08:40:17.673321+07', 'Xã Hữu Liên', '06388', 'Xã');
INSERT INTO category."Wards" VALUES (6391, 186, 'system', '2023-07-26 08:40:17.673324+07', 'system', '2023-07-26 08:40:17.673324+07', 'Xã Yên Bình', '06391', 'Xã');
INSERT INTO category."Wards" VALUES (6394, 186, 'system', '2023-07-26 08:40:17.673326+07', 'system', '2023-07-26 08:40:17.673327+07', 'Xã Quyết Thắng', '06394', 'Xã');
INSERT INTO category."Wards" VALUES (6397, 186, 'system', '2023-07-26 08:40:17.673329+07', 'system', '2023-07-26 08:40:17.673329+07', 'Xã Hòa Bình', '06397', 'Xã');
INSERT INTO category."Wards" VALUES (6400, 186, 'system', '2023-07-26 08:40:17.673332+07', 'system', '2023-07-26 08:40:17.673332+07', 'Xã Yên Thịnh', '06400', 'Xã');
INSERT INTO category."Wards" VALUES (6403, 186, 'system', '2023-07-26 08:40:17.673334+07', 'system', '2023-07-26 08:40:17.673334+07', 'Xã Yên Sơn', '06403', 'Xã');
INSERT INTO category."Wards" VALUES (6406, 186, 'system', '2023-07-26 08:40:17.673337+07', 'system', '2023-07-26 08:40:17.673337+07', 'Xã Thiện Tân', '06406', 'Xã');
INSERT INTO category."Wards" VALUES (6412, 186, 'system', '2023-07-26 08:40:17.67334+07', 'system', '2023-07-26 08:40:17.67334+07', 'Xã Yên Vượng', '06412', 'Xã');
INSERT INTO category."Wards" VALUES (6415, 186, 'system', '2023-07-26 08:40:17.673342+07', 'system', '2023-07-26 08:40:17.673342+07', 'Xã Minh Tiến', '06415', 'Xã');
INSERT INTO category."Wards" VALUES (6418, 186, 'system', '2023-07-26 08:40:17.673345+07', 'system', '2023-07-26 08:40:17.673345+07', 'Xã Nhật Tiến', '06418', 'Xã');
INSERT INTO category."Wards" VALUES (6421, 186, 'system', '2023-07-26 08:40:17.673347+07', 'system', '2023-07-26 08:40:17.673347+07', 'Xã Thanh Sơn', '06421', 'Xã');
INSERT INTO category."Wards" VALUES (6424, 186, 'system', '2023-07-26 08:40:17.67335+07', 'system', '2023-07-26 08:40:17.67335+07', 'Xã Đồng Tân', '06424', 'Xã');
INSERT INTO category."Wards" VALUES (6427, 186, 'system', '2023-07-26 08:40:17.673352+07', 'system', '2023-07-26 08:40:17.673353+07', 'Xã Cai Kinh', '06427', 'Xã');
INSERT INTO category."Wards" VALUES (6430, 186, 'system', '2023-07-26 08:40:17.673356+07', 'system', '2023-07-26 08:40:17.673356+07', 'Xã Hòa Lạc', '06430', 'Xã');
INSERT INTO category."Wards" VALUES (6433, 186, 'system', '2023-07-26 08:40:17.673358+07', 'system', '2023-07-26 08:40:17.673358+07', 'Xã Vân Nham', '06433', 'Xã');
INSERT INTO category."Wards" VALUES (6436, 186, 'system', '2023-07-26 08:40:17.673361+07', 'system', '2023-07-26 08:40:17.673361+07', 'Xã Đồng Tiến', '06436', 'Xã');
INSERT INTO category."Wards" VALUES (6442, 186, 'system', '2023-07-26 08:40:17.673364+07', 'system', '2023-07-26 08:40:17.673364+07', 'Xã Tân Thành', '06442', 'Xã');
INSERT INTO category."Wards" VALUES (6445, 186, 'system', '2023-07-26 08:40:17.673366+07', 'system', '2023-07-26 08:40:17.673366+07', 'Xã Hòa Sơn', '06445', 'Xã');
INSERT INTO category."Wards" VALUES (6448, 186, 'system', '2023-07-26 08:40:17.673369+07', 'system', '2023-07-26 08:40:17.673369+07', 'Xã Minh Sơn', '06448', 'Xã');
INSERT INTO category."Wards" VALUES (6451, 186, 'system', '2023-07-26 08:40:17.673371+07', 'system', '2023-07-26 08:40:17.673371+07', 'Xã Hồ Sơn', '06451', 'Xã');
INSERT INTO category."Wards" VALUES (6454, 186, 'system', '2023-07-26 08:40:17.673374+07', 'system', '2023-07-26 08:40:17.673374+07', 'Xã Sơn Hà', '06454', 'Xã');
INSERT INTO category."Wards" VALUES (6457, 186, 'system', '2023-07-26 08:40:17.673376+07', 'system', '2023-07-26 08:40:17.673376+07', 'Xã Minh Hòa', '06457', 'Xã');
INSERT INTO category."Wards" VALUES (6460, 186, 'system', '2023-07-26 08:40:17.673379+07', 'system', '2023-07-26 08:40:17.673379+07', 'Xã Hòa Thắng', '06460', 'Xã');
INSERT INTO category."Wards" VALUES (6463, 187, 'system', '2023-07-26 08:40:17.673382+07', 'system', '2023-07-26 08:40:17.673382+07', 'Thị trấn Đồng Mỏ', '06463', 'Thị trấn');
INSERT INTO category."Wards" VALUES (6466, 187, 'system', '2023-07-26 08:40:17.673385+07', 'system', '2023-07-26 08:40:17.673385+07', 'Thị trấn Chi Lăng', '06466', 'Thị trấn');
INSERT INTO category."Wards" VALUES (6469, 187, 'system', '2023-07-26 08:40:17.673388+07', 'system', '2023-07-26 08:40:17.673388+07', 'Xã Vân An', '06469', 'Xã');
INSERT INTO category."Wards" VALUES (6472, 187, 'system', '2023-07-26 08:40:17.67339+07', 'system', '2023-07-26 08:40:17.67339+07', 'Xã Vân Thủy', '06472', 'Xã');
INSERT INTO category."Wards" VALUES (6475, 187, 'system', '2023-07-26 08:40:17.673392+07', 'system', '2023-07-26 08:40:17.673393+07', 'Xã Gia Lộc', '06475', 'Xã');
INSERT INTO category."Wards" VALUES (6478, 187, 'system', '2023-07-26 08:40:17.673395+07', 'system', '2023-07-26 08:40:17.673395+07', 'Xã Bắc Thủy', '06478', 'Xã');
INSERT INTO category."Wards" VALUES (6481, 187, 'system', '2023-07-26 08:40:17.673398+07', 'system', '2023-07-26 08:40:17.673398+07', 'Xã Chiến Thắng', '06481', 'Xã');
INSERT INTO category."Wards" VALUES (6484, 187, 'system', '2023-07-26 08:40:17.6734+07', 'system', '2023-07-26 08:40:17.673401+07', 'Xã Mai Sao', '06484', 'Xã');
INSERT INTO category."Wards" VALUES (6487, 187, 'system', '2023-07-26 08:40:17.673403+07', 'system', '2023-07-26 08:40:17.673403+07', 'Xã Bằng Hữu', '06487', 'Xã');
INSERT INTO category."Wards" VALUES (6490, 187, 'system', '2023-07-26 08:40:17.673405+07', 'system', '2023-07-26 08:40:17.673405+07', 'Xã Thượng Cường', '06490', 'Xã');
INSERT INTO category."Wards" VALUES (6493, 187, 'system', '2023-07-26 08:40:17.673408+07', 'system', '2023-07-26 08:40:17.673408+07', 'Xã Bằng Mạc', '06493', 'Xã');
INSERT INTO category."Wards" VALUES (6496, 187, 'system', '2023-07-26 08:40:17.673411+07', 'system', '2023-07-26 08:40:17.673411+07', 'Xã Nhân Lý', '06496', 'Xã');
INSERT INTO category."Wards" VALUES (6499, 187, 'system', '2023-07-26 08:40:17.673414+07', 'system', '2023-07-26 08:40:17.673414+07', 'Xã Lâm Sơn', '06499', 'Xã');
INSERT INTO category."Wards" VALUES (6502, 187, 'system', '2023-07-26 08:40:17.673416+07', 'system', '2023-07-26 08:40:17.673416+07', 'Xã Liên Sơn', '06502', 'Xã');
INSERT INTO category."Wards" VALUES (6505, 187, 'system', '2023-07-26 08:40:17.673419+07', 'system', '2023-07-26 08:40:17.673419+07', 'Xã Vạn Linh', '06505', 'Xã');
INSERT INTO category."Wards" VALUES (6508, 187, 'system', '2023-07-26 08:40:17.673421+07', 'system', '2023-07-26 08:40:17.673421+07', 'Xã Hòa Bình', '06508', 'Xã');
INSERT INTO category."Wards" VALUES (6514, 187, 'system', '2023-07-26 08:40:17.673424+07', 'system', '2023-07-26 08:40:17.673424+07', 'Xã Hữu Kiên', '06514', 'Xã');
INSERT INTO category."Wards" VALUES (6517, 187, 'system', '2023-07-26 08:40:17.673426+07', 'system', '2023-07-26 08:40:17.673426+07', 'Xã Quan Sơn', '06517', 'Xã');
INSERT INTO category."Wards" VALUES (6520, 187, 'system', '2023-07-26 08:40:17.673429+07', 'system', '2023-07-26 08:40:17.673429+07', 'Xã Y Tịch', '06520', 'Xã');
INSERT INTO category."Wards" VALUES (6523, 187, 'system', '2023-07-26 08:40:17.673431+07', 'system', '2023-07-26 08:40:17.673431+07', 'Xã Chi Lăng', '06523', 'Xã');
INSERT INTO category."Wards" VALUES (6526, 188, 'system', '2023-07-26 08:40:17.673434+07', 'system', '2023-07-26 08:40:17.673434+07', 'Thị trấn Na Dương', '06526', 'Thị trấn');
INSERT INTO category."Wards" VALUES (6529, 188, 'system', '2023-07-26 08:40:17.673437+07', 'system', '2023-07-26 08:40:17.673437+07', 'Thị trấn Lộc Bình', '06529', 'Thị trấn');
INSERT INTO category."Wards" VALUES (6532, 188, 'system', '2023-07-26 08:40:17.67344+07', 'system', '2023-07-26 08:40:17.67344+07', 'Xã Mẫu Sơn', '06532', 'Xã');
INSERT INTO category."Wards" VALUES (6541, 188, 'system', '2023-07-26 08:40:17.673442+07', 'system', '2023-07-26 08:40:17.673443+07', 'Xã Yên Khoái', '06541', 'Xã');
INSERT INTO category."Wards" VALUES (6544, 188, 'system', '2023-07-26 08:40:17.673445+07', 'system', '2023-07-26 08:40:17.673445+07', 'Xã Khánh Xuân', '06544', 'Xã');
INSERT INTO category."Wards" VALUES (6547, 188, 'system', '2023-07-26 08:40:17.673448+07', 'system', '2023-07-26 08:40:17.673448+07', 'Xã Tú Mịch', '06547', 'Xã');
INSERT INTO category."Wards" VALUES (6550, 188, 'system', '2023-07-26 08:40:17.673451+07', 'system', '2023-07-26 08:40:17.673451+07', 'Xã Hữu Khánh', '06550', 'Xã');
INSERT INTO category."Wards" VALUES (6553, 188, 'system', '2023-07-26 08:40:17.673453+07', 'system', '2023-07-26 08:40:17.673453+07', 'Xã Đồng Bục', '06553', 'Xã');
INSERT INTO category."Wards" VALUES (6559, 188, 'system', '2023-07-26 08:40:17.673456+07', 'system', '2023-07-26 08:40:17.673456+07', 'Xã Tam Gia', '06559', 'Xã');
INSERT INTO category."Wards" VALUES (6562, 188, 'system', '2023-07-26 08:40:17.673459+07', 'system', '2023-07-26 08:40:17.673459+07', 'Xã Tú Đoạn', '06562', 'Xã');
INSERT INTO category."Wards" VALUES (6565, 188, 'system', '2023-07-26 08:40:17.673461+07', 'system', '2023-07-26 08:40:17.673461+07', 'Xã Khuất Xá', '06565', 'Xã');
INSERT INTO category."Wards" VALUES (6574, 188, 'system', '2023-07-26 08:40:17.673464+07', 'system', '2023-07-26 08:40:17.673464+07', 'Xã Tĩnh Bắc', '06574', 'Xã');
INSERT INTO category."Wards" VALUES (6577, 188, 'system', '2023-07-26 08:40:17.673466+07', 'system', '2023-07-26 08:40:17.673467+07', 'Xã Thống Nhất', '06577', 'Xã');
INSERT INTO category."Wards" VALUES (6589, 188, 'system', '2023-07-26 08:40:17.673469+07', 'system', '2023-07-26 08:40:17.673469+07', 'Xã Sàn Viên', '06589', 'Xã');
INSERT INTO category."Wards" VALUES (6592, 188, 'system', '2023-07-26 08:40:17.673472+07', 'system', '2023-07-26 08:40:17.673472+07', 'Xã Đông Quan', '06592', 'Xã');
INSERT INTO category."Wards" VALUES (6595, 188, 'system', '2023-07-26 08:40:17.673474+07', 'system', '2023-07-26 08:40:17.673474+07', 'Xã Minh Hiệp', '06595', 'Xã');
INSERT INTO category."Wards" VALUES (6598, 188, 'system', '2023-07-26 08:40:17.673477+07', 'system', '2023-07-26 08:40:17.673477+07', 'Xã Hữu Lân', '06598', 'Xã');
INSERT INTO category."Wards" VALUES (6601, 188, 'system', '2023-07-26 08:40:17.673479+07', 'system', '2023-07-26 08:40:17.67348+07', 'Xã Lợi Bác', '06601', 'Xã');
INSERT INTO category."Wards" VALUES (6604, 188, 'system', '2023-07-26 08:40:17.673482+07', 'system', '2023-07-26 08:40:17.673482+07', 'Xã Nam Quan', '06604', 'Xã');
INSERT INTO category."Wards" VALUES (6607, 188, 'system', '2023-07-26 08:40:17.673485+07', 'system', '2023-07-26 08:40:17.673485+07', 'Xã Xuân Dương', '06607', 'Xã');
INSERT INTO category."Wards" VALUES (6610, 188, 'system', '2023-07-26 08:40:17.673487+07', 'system', '2023-07-26 08:40:17.673487+07', 'Xã Ái Quốc', '06610', 'Xã');
INSERT INTO category."Wards" VALUES (6613, 189, 'system', '2023-07-26 08:40:17.67349+07', 'system', '2023-07-26 08:40:17.67349+07', 'Thị trấn Đình Lập', '06613', 'Thị trấn');
INSERT INTO category."Wards" VALUES (6616, 189, 'system', '2023-07-26 08:40:17.673493+07', 'system', '2023-07-26 08:40:17.673493+07', 'Thị trấn NT Thái Bình', '06616', 'Thị trấn');
INSERT INTO category."Wards" VALUES (6619, 189, 'system', '2023-07-26 08:40:17.673496+07', 'system', '2023-07-26 08:40:17.673496+07', 'Xã Bắc Xa', '06619', 'Xã');
INSERT INTO category."Wards" VALUES (6622, 189, 'system', '2023-07-26 08:40:17.673498+07', 'system', '2023-07-26 08:40:17.673498+07', 'Xã Bính Xá', '06622', 'Xã');
INSERT INTO category."Wards" VALUES (6625, 189, 'system', '2023-07-26 08:40:17.673501+07', 'system', '2023-07-26 08:40:17.673501+07', 'Xã Kiên Mộc', '06625', 'Xã');
INSERT INTO category."Wards" VALUES (6628, 189, 'system', '2023-07-26 08:40:17.673503+07', 'system', '2023-07-26 08:40:17.673503+07', 'Xã Đình Lập', '06628', 'Xã');
INSERT INTO category."Wards" VALUES (6631, 189, 'system', '2023-07-26 08:40:17.673506+07', 'system', '2023-07-26 08:40:17.673506+07', 'Xã Thái Bình', '06631', 'Xã');
INSERT INTO category."Wards" VALUES (6634, 189, 'system', '2023-07-26 08:40:17.673509+07', 'system', '2023-07-26 08:40:17.673509+07', 'Xã Cường Lợi', '06634', 'Xã');
INSERT INTO category."Wards" VALUES (6637, 189, 'system', '2023-07-26 08:40:17.673513+07', 'system', '2023-07-26 08:40:17.673513+07', 'Xã Châu Sơn', '06637', 'Xã');
INSERT INTO category."Wards" VALUES (6640, 189, 'system', '2023-07-26 08:40:17.673517+07', 'system', '2023-07-26 08:40:17.673517+07', 'Xã Lâm Ca', '06640', 'Xã');
INSERT INTO category."Wards" VALUES (6643, 189, 'system', '2023-07-26 08:40:17.673522+07', 'system', '2023-07-26 08:40:17.673522+07', 'Xã Đồng Thắng', '06643', 'Xã');
INSERT INTO category."Wards" VALUES (6646, 189, 'system', '2023-07-26 08:40:17.673527+07', 'system', '2023-07-26 08:40:17.673527+07', 'Xã Bắc Lãng', '06646', 'Xã');
INSERT INTO category."Wards" VALUES (6649, 193, 'system', '2023-07-26 08:40:17.673532+07', 'system', '2023-07-26 08:40:17.673532+07', 'Phường Hà Khánh', '06649', 'Phường');
INSERT INTO category."Wards" VALUES (6652, 193, 'system', '2023-07-26 08:40:17.673537+07', 'system', '2023-07-26 08:40:17.673537+07', 'Phường Hà Phong', '06652', 'Phường');
INSERT INTO category."Wards" VALUES (6655, 193, 'system', '2023-07-26 08:40:17.673541+07', 'system', '2023-07-26 08:40:17.673542+07', 'Phường Hà Khẩu', '06655', 'Phường');
INSERT INTO category."Wards" VALUES (6658, 193, 'system', '2023-07-26 08:40:17.673544+07', 'system', '2023-07-26 08:40:17.673544+07', 'Phường Cao Xanh', '06658', 'Phường');
INSERT INTO category."Wards" VALUES (6661, 193, 'system', '2023-07-26 08:40:17.673547+07', 'system', '2023-07-26 08:40:17.673547+07', 'Phường Giếng Đáy', '06661', 'Phường');
INSERT INTO category."Wards" VALUES (6664, 193, 'system', '2023-07-26 08:40:17.67355+07', 'system', '2023-07-26 08:40:17.67355+07', 'Phường Hà Tu', '06664', 'Phường');
INSERT INTO category."Wards" VALUES (6667, 193, 'system', '2023-07-26 08:40:17.673552+07', 'system', '2023-07-26 08:40:17.673552+07', 'Phường Hà Trung', '06667', 'Phường');
INSERT INTO category."Wards" VALUES (6670, 193, 'system', '2023-07-26 08:40:17.673555+07', 'system', '2023-07-26 08:40:17.673555+07', 'Phường Hà Lầm', '06670', 'Phường');
INSERT INTO category."Wards" VALUES (6673, 193, 'system', '2023-07-26 08:40:17.673558+07', 'system', '2023-07-26 08:40:17.673558+07', 'Phường Bãi Cháy', '06673', 'Phường');
INSERT INTO category."Wards" VALUES (6676, 193, 'system', '2023-07-26 08:40:17.673562+07', 'system', '2023-07-26 08:40:17.673562+07', 'Phường Cao Thắng', '06676', 'Phường');
INSERT INTO category."Wards" VALUES (6679, 193, 'system', '2023-07-26 08:40:17.673564+07', 'system', '2023-07-26 08:40:17.673564+07', 'Phường Hùng Thắng', '06679', 'Phường');
INSERT INTO category."Wards" VALUES (6682, 193, 'system', '2023-07-26 08:40:17.673567+07', 'system', '2023-07-26 08:40:17.673567+07', 'Phường Yết Kiêu', '06682', 'Phường');
INSERT INTO category."Wards" VALUES (6685, 193, 'system', '2023-07-26 08:40:17.67357+07', 'system', '2023-07-26 08:40:17.67357+07', 'Phường Trần Hưng Đạo', '06685', 'Phường');
INSERT INTO category."Wards" VALUES (6688, 193, 'system', '2023-07-26 08:40:17.673573+07', 'system', '2023-07-26 08:40:17.673573+07', 'Phường Hồng Hải', '06688', 'Phường');
INSERT INTO category."Wards" VALUES (6691, 193, 'system', '2023-07-26 08:40:17.673576+07', 'system', '2023-07-26 08:40:17.673576+07', 'Phường Hồng Gai', '06691', 'Phường');
INSERT INTO category."Wards" VALUES (6694, 193, 'system', '2023-07-26 08:40:17.673578+07', 'system', '2023-07-26 08:40:17.673578+07', 'Phường Bạch Đằng', '06694', 'Phường');
INSERT INTO category."Wards" VALUES (6697, 193, 'system', '2023-07-26 08:40:17.673581+07', 'system', '2023-07-26 08:40:17.673581+07', 'Phường Hồng Hà', '06697', 'Phường');
INSERT INTO category."Wards" VALUES (6700, 193, 'system', '2023-07-26 08:40:17.673584+07', 'system', '2023-07-26 08:40:17.673584+07', 'Phường Tuần Châu', '06700', 'Phường');
INSERT INTO category."Wards" VALUES (6703, 193, 'system', '2023-07-26 08:40:17.673587+07', 'system', '2023-07-26 08:40:17.673587+07', 'Phường Việt Hưng', '06703', 'Phường');
INSERT INTO category."Wards" VALUES (6706, 193, 'system', '2023-07-26 08:40:17.673589+07', 'system', '2023-07-26 08:40:17.673589+07', 'Phường Đại Yên', '06706', 'Phường');
INSERT INTO category."Wards" VALUES (6709, 194, 'system', '2023-07-26 08:40:17.673626+07', 'system', '2023-07-26 08:40:17.673627+07', 'Phường Ka Long', '06709', 'Phường');
INSERT INTO category."Wards" VALUES (6712, 194, 'system', '2023-07-26 08:40:17.673629+07', 'system', '2023-07-26 08:40:17.673629+07', 'Phường Trần Phú', '06712', 'Phường');
INSERT INTO category."Wards" VALUES (6715, 194, 'system', '2023-07-26 08:40:17.673632+07', 'system', '2023-07-26 08:40:17.673632+07', 'Phường Ninh Dương', '06715', 'Phường');
INSERT INTO category."Wards" VALUES (6718, 194, 'system', '2023-07-26 08:40:17.673635+07', 'system', '2023-07-26 08:40:17.673635+07', 'Phường Hoà Lạc', '06718', 'Phường');
INSERT INTO category."Wards" VALUES (6721, 194, 'system', '2023-07-26 08:40:17.673638+07', 'system', '2023-07-26 08:40:17.673638+07', 'Phường Trà Cổ', '06721', 'Phường');
INSERT INTO category."Wards" VALUES (6724, 194, 'system', '2023-07-26 08:40:17.673641+07', 'system', '2023-07-26 08:40:17.673641+07', 'Xã Hải Sơn', '06724', 'Xã');
INSERT INTO category."Wards" VALUES (6727, 194, 'system', '2023-07-26 08:40:17.673643+07', 'system', '2023-07-26 08:40:17.673643+07', 'Xã Bắc Sơn', '06727', 'Xã');
INSERT INTO category."Wards" VALUES (6730, 194, 'system', '2023-07-26 08:40:17.673646+07', 'system', '2023-07-26 08:40:17.673646+07', 'Xã Hải Đông', '06730', 'Xã');
INSERT INTO category."Wards" VALUES (6733, 194, 'system', '2023-07-26 08:40:17.673648+07', 'system', '2023-07-26 08:40:17.673649+07', 'Xã Hải Tiến', '06733', 'Xã');
INSERT INTO category."Wards" VALUES (6736, 194, 'system', '2023-07-26 08:40:17.673651+07', 'system', '2023-07-26 08:40:17.673651+07', 'Phường Hải Yên', '06736', 'Phường');
INSERT INTO category."Wards" VALUES (6739, 194, 'system', '2023-07-26 08:40:17.673654+07', 'system', '2023-07-26 08:40:17.673654+07', 'Xã Quảng Nghĩa', '06739', 'Xã');
INSERT INTO category."Wards" VALUES (6742, 194, 'system', '2023-07-26 08:40:17.673657+07', 'system', '2023-07-26 08:40:17.673658+07', 'Phường Hải Hoà', '06742', 'Phường');
INSERT INTO category."Wards" VALUES (6745, 194, 'system', '2023-07-26 08:40:17.67366+07', 'system', '2023-07-26 08:40:17.67366+07', 'Xã Hải Xuân', '06745', 'Xã');
INSERT INTO category."Wards" VALUES (6748, 194, 'system', '2023-07-26 08:40:17.673663+07', 'system', '2023-07-26 08:40:17.673663+07', 'Xã Vạn Ninh', '06748', 'Xã');
INSERT INTO category."Wards" VALUES (6751, 194, 'system', '2023-07-26 08:40:17.673666+07', 'system', '2023-07-26 08:40:17.673666+07', 'Phường Bình Ngọc', '06751', 'Phường');
INSERT INTO category."Wards" VALUES (6754, 194, 'system', '2023-07-26 08:40:17.673669+07', 'system', '2023-07-26 08:40:17.673669+07', 'Xã Vĩnh Trung', '06754', 'Xã');
INSERT INTO category."Wards" VALUES (6757, 194, 'system', '2023-07-26 08:40:17.673671+07', 'system', '2023-07-26 08:40:17.673672+07', 'Xã Vĩnh Thực', '06757', 'Xã');
INSERT INTO category."Wards" VALUES (6760, 195, 'system', '2023-07-26 08:40:17.673674+07', 'system', '2023-07-26 08:40:17.673674+07', 'Phường Mông Dương', '06760', 'Phường');
INSERT INTO category."Wards" VALUES (6763, 195, 'system', '2023-07-26 08:40:17.673677+07', 'system', '2023-07-26 08:40:17.673677+07', 'Phường Cửa Ông', '06763', 'Phường');
INSERT INTO category."Wards" VALUES (6766, 195, 'system', '2023-07-26 08:40:17.67368+07', 'system', '2023-07-26 08:40:17.67368+07', 'Phường Cẩm Sơn', '06766', 'Phường');
INSERT INTO category."Wards" VALUES (6769, 195, 'system', '2023-07-26 08:40:17.673682+07', 'system', '2023-07-26 08:40:17.673682+07', 'Phường Cẩm Đông', '06769', 'Phường');
INSERT INTO category."Wards" VALUES (6772, 195, 'system', '2023-07-26 08:40:17.673685+07', 'system', '2023-07-26 08:40:17.673685+07', 'Phường Cẩm Phú', '06772', 'Phường');
INSERT INTO category."Wards" VALUES (6775, 195, 'system', '2023-07-26 08:40:17.673688+07', 'system', '2023-07-26 08:40:17.673688+07', 'Phường Cẩm Tây', '06775', 'Phường');
INSERT INTO category."Wards" VALUES (6778, 195, 'system', '2023-07-26 08:40:17.673691+07', 'system', '2023-07-26 08:40:17.673691+07', 'Phường Quang Hanh', '06778', 'Phường');
INSERT INTO category."Wards" VALUES (6781, 195, 'system', '2023-07-26 08:40:17.673693+07', 'system', '2023-07-26 08:40:17.673693+07', 'Phường Cẩm Thịnh', '06781', 'Phường');
INSERT INTO category."Wards" VALUES (6784, 195, 'system', '2023-07-26 08:40:17.673696+07', 'system', '2023-07-26 08:40:17.673696+07', 'Phường Cẩm Thủy', '06784', 'Phường');
INSERT INTO category."Wards" VALUES (6787, 195, 'system', '2023-07-26 08:40:17.673699+07', 'system', '2023-07-26 08:40:17.673699+07', 'Phường Cẩm Thạch', '06787', 'Phường');
INSERT INTO category."Wards" VALUES (6790, 195, 'system', '2023-07-26 08:40:17.673702+07', 'system', '2023-07-26 08:40:17.673702+07', 'Phường Cẩm Thành', '06790', 'Phường');
INSERT INTO category."Wards" VALUES (6793, 195, 'system', '2023-07-26 08:40:17.673704+07', 'system', '2023-07-26 08:40:17.673705+07', 'Phường Cẩm Trung', '06793', 'Phường');
INSERT INTO category."Wards" VALUES (6796, 195, 'system', '2023-07-26 08:40:17.673707+07', 'system', '2023-07-26 08:40:17.673707+07', 'Phường Cẩm Bình', '06796', 'Phường');
INSERT INTO category."Wards" VALUES (6799, 195, 'system', '2023-07-26 08:40:17.67371+07', 'system', '2023-07-26 08:40:17.67371+07', 'Xã Cộng Hòa', '06799', 'Xã');
INSERT INTO category."Wards" VALUES (6802, 195, 'system', '2023-07-26 08:40:17.673713+07', 'system', '2023-07-26 08:40:17.673713+07', 'Xã Cẩm Hải', '06802', 'Xã');
INSERT INTO category."Wards" VALUES (6805, 195, 'system', '2023-07-26 08:40:17.673716+07', 'system', '2023-07-26 08:40:17.673716+07', 'Xã Dương Huy', '06805', 'Xã');
INSERT INTO category."Wards" VALUES (6808, 196, 'system', '2023-07-26 08:40:17.673718+07', 'system', '2023-07-26 08:40:17.673718+07', 'Phường Vàng Danh', '06808', 'Phường');
INSERT INTO category."Wards" VALUES (6811, 196, 'system', '2023-07-26 08:40:17.673721+07', 'system', '2023-07-26 08:40:17.673721+07', 'Phường Thanh Sơn', '06811', 'Phường');
INSERT INTO category."Wards" VALUES (6814, 196, 'system', '2023-07-26 08:40:17.673724+07', 'system', '2023-07-26 08:40:17.673724+07', 'Phường Bắc Sơn', '06814', 'Phường');
INSERT INTO category."Wards" VALUES (6817, 196, 'system', '2023-07-26 08:40:17.673727+07', 'system', '2023-07-26 08:40:17.673727+07', 'Phường Quang Trung', '06817', 'Phường');
INSERT INTO category."Wards" VALUES (6820, 196, 'system', '2023-07-26 08:40:17.673729+07', 'system', '2023-07-26 08:40:17.67373+07', 'Phường Trưng Vương', '06820', 'Phường');
INSERT INTO category."Wards" VALUES (6823, 196, 'system', '2023-07-26 08:40:17.673732+07', 'system', '2023-07-26 08:40:17.673732+07', 'Phường Nam Khê', '06823', 'Phường');
INSERT INTO category."Wards" VALUES (6826, 196, 'system', '2023-07-26 08:40:17.673735+07', 'system', '2023-07-26 08:40:17.673735+07', 'Phường Yên Thanh', '06826', 'Phường');
INSERT INTO category."Wards" VALUES (6829, 196, 'system', '2023-07-26 08:40:17.673738+07', 'system', '2023-07-26 08:40:17.673738+07', 'Xã Thượng Yên Công', '06829', 'Xã');
INSERT INTO category."Wards" VALUES (6832, 196, 'system', '2023-07-26 08:40:17.673741+07', 'system', '2023-07-26 08:40:17.673741+07', 'Phường Phương Đông', '06832', 'Phường');
INSERT INTO category."Wards" VALUES (6835, 196, 'system', '2023-07-26 08:40:17.673744+07', 'system', '2023-07-26 08:40:17.673744+07', 'Phường Phương Nam', '06835', 'Phường');
INSERT INTO category."Wards" VALUES (6838, 198, 'system', '2023-07-26 08:40:17.673747+07', 'system', '2023-07-26 08:40:17.673747+07', 'Thị trấn Bình Liêu', '06838', 'Thị trấn');
INSERT INTO category."Wards" VALUES (6841, 198, 'system', '2023-07-26 08:40:17.67375+07', 'system', '2023-07-26 08:40:17.67375+07', 'Xã Hoành Mô', '06841', 'Xã');
INSERT INTO category."Wards" VALUES (6844, 198, 'system', '2023-07-26 08:40:17.673753+07', 'system', '2023-07-26 08:40:17.673753+07', 'Xã Đồng Tâm', '06844', 'Xã');
INSERT INTO category."Wards" VALUES (6847, 198, 'system', '2023-07-26 08:40:17.673756+07', 'system', '2023-07-26 08:40:17.673756+07', 'Xã Đồng Văn', '06847', 'Xã');
INSERT INTO category."Wards" VALUES (6853, 198, 'system', '2023-07-26 08:40:17.673759+07', 'system', '2023-07-26 08:40:17.673759+07', 'Xã Vô Ngại', '06853', 'Xã');
INSERT INTO category."Wards" VALUES (6856, 198, 'system', '2023-07-26 08:40:17.673761+07', 'system', '2023-07-26 08:40:17.673761+07', 'Xã Lục Hồn', '06856', 'Xã');
INSERT INTO category."Wards" VALUES (6859, 198, 'system', '2023-07-26 08:40:17.673764+07', 'system', '2023-07-26 08:40:17.673764+07', 'Xã Húc Động', '06859', 'Xã');
INSERT INTO category."Wards" VALUES (6862, 199, 'system', '2023-07-26 08:40:17.673766+07', 'system', '2023-07-26 08:40:17.673767+07', 'Thị trấn Tiên Yên', '06862', 'Thị trấn');
INSERT INTO category."Wards" VALUES (6865, 199, 'system', '2023-07-26 08:40:17.673769+07', 'system', '2023-07-26 08:40:17.67377+07', 'Xã Hà Lâu', '06865', 'Xã');
INSERT INTO category."Wards" VALUES (6868, 199, 'system', '2023-07-26 08:40:17.673772+07', 'system', '2023-07-26 08:40:17.673772+07', 'Xã Đại Dực', '06868', 'Xã');
INSERT INTO category."Wards" VALUES (6871, 199, 'system', '2023-07-26 08:40:17.673787+07', 'system', '2023-07-26 08:40:17.673787+07', 'Xã Phong Dụ', '06871', 'Xã');
INSERT INTO category."Wards" VALUES (6874, 199, 'system', '2023-07-26 08:40:17.67379+07', 'system', '2023-07-26 08:40:17.67379+07', 'Xã Điền Xá', '06874', 'Xã');
INSERT INTO category."Wards" VALUES (6877, 199, 'system', '2023-07-26 08:40:17.673793+07', 'system', '2023-07-26 08:40:17.673793+07', 'Xã Đông Ngũ', '06877', 'Xã');
INSERT INTO category."Wards" VALUES (6880, 199, 'system', '2023-07-26 08:40:17.673795+07', 'system', '2023-07-26 08:40:17.673795+07', 'Xã Yên Than', '06880', 'Xã');
INSERT INTO category."Wards" VALUES (6883, 199, 'system', '2023-07-26 08:40:17.673798+07', 'system', '2023-07-26 08:40:17.673798+07', 'Xã Đông Hải', '06883', 'Xã');
INSERT INTO category."Wards" VALUES (6886, 199, 'system', '2023-07-26 08:40:17.6738+07', 'system', '2023-07-26 08:40:17.673801+07', 'Xã Hải Lạng', '06886', 'Xã');
INSERT INTO category."Wards" VALUES (6889, 199, 'system', '2023-07-26 08:40:17.673803+07', 'system', '2023-07-26 08:40:17.673803+07', 'Xã Tiên Lãng', '06889', 'Xã');
INSERT INTO category."Wards" VALUES (6892, 199, 'system', '2023-07-26 08:40:17.673806+07', 'system', '2023-07-26 08:40:17.673806+07', 'Xã Đồng Rui', '06892', 'Xã');
INSERT INTO category."Wards" VALUES (6895, 200, 'system', '2023-07-26 08:40:17.673808+07', 'system', '2023-07-26 08:40:17.673808+07', 'Thị trấn Đầm Hà', '06895', 'Thị trấn');
INSERT INTO category."Wards" VALUES (6898, 200, 'system', '2023-07-26 08:40:17.673811+07', 'system', '2023-07-26 08:40:17.673811+07', 'Xã Quảng Lâm', '06898', 'Xã');
INSERT INTO category."Wards" VALUES (6901, 200, 'system', '2023-07-26 08:40:17.673814+07', 'system', '2023-07-26 08:40:17.673814+07', 'Xã Quảng An', '06901', 'Xã');
INSERT INTO category."Wards" VALUES (6904, 200, 'system', '2023-07-26 08:40:17.673817+07', 'system', '2023-07-26 08:40:17.673817+07', 'Xã Tân Bình', '06904', 'Xã');
INSERT INTO category."Wards" VALUES (6910, 200, 'system', '2023-07-26 08:40:17.673819+07', 'system', '2023-07-26 08:40:17.673819+07', 'Xã Dực Yên', '06910', 'Xã');
INSERT INTO category."Wards" VALUES (6913, 200, 'system', '2023-07-26 08:40:17.673822+07', 'system', '2023-07-26 08:40:17.673822+07', 'Xã Quảng Tân', '06913', 'Xã');
INSERT INTO category."Wards" VALUES (6916, 200, 'system', '2023-07-26 08:40:17.673824+07', 'system', '2023-07-26 08:40:17.673825+07', 'Xã Đầm Hà', '06916', 'Xã');
INSERT INTO category."Wards" VALUES (6917, 200, 'system', '2023-07-26 08:40:17.673827+07', 'system', '2023-07-26 08:40:17.673827+07', 'Xã Tân Lập', '06917', 'Xã');
INSERT INTO category."Wards" VALUES (6919, 200, 'system', '2023-07-26 08:40:17.67383+07', 'system', '2023-07-26 08:40:17.67383+07', 'Xã Đại Bình', '06919', 'Xã');
INSERT INTO category."Wards" VALUES (6922, 201, 'system', '2023-07-26 08:40:17.673833+07', 'system', '2023-07-26 08:40:17.673833+07', 'Thị trấn Quảng Hà', '06922', 'Thị trấn');
INSERT INTO category."Wards" VALUES (6925, 201, 'system', '2023-07-26 08:40:17.673836+07', 'system', '2023-07-26 08:40:17.673836+07', 'Xã Quảng Đức', '06925', 'Xã');
INSERT INTO category."Wards" VALUES (6928, 201, 'system', '2023-07-26 08:40:17.673838+07', 'system', '2023-07-26 08:40:17.673838+07', 'Xã Quảng Sơn', '06928', 'Xã');
INSERT INTO category."Wards" VALUES (6931, 201, 'system', '2023-07-26 08:40:17.673841+07', 'system', '2023-07-26 08:40:17.673841+07', 'Xã Quảng Thành', '06931', 'Xã');
INSERT INTO category."Wards" VALUES (6937, 201, 'system', '2023-07-26 08:40:17.673844+07', 'system', '2023-07-26 08:40:17.673844+07', 'Xã Quảng Thịnh', '06937', 'Xã');
INSERT INTO category."Wards" VALUES (6940, 201, 'system', '2023-07-26 08:40:17.673846+07', 'system', '2023-07-26 08:40:17.673846+07', 'Xã Quảng Minh', '06940', 'Xã');
INSERT INTO category."Wards" VALUES (6943, 201, 'system', '2023-07-26 08:40:17.673849+07', 'system', '2023-07-26 08:40:17.673849+07', 'Xã Quảng Chính', '06943', 'Xã');
INSERT INTO category."Wards" VALUES (6946, 201, 'system', '2023-07-26 08:40:17.673852+07', 'system', '2023-07-26 08:40:17.673852+07', 'Xã Quảng Long', '06946', 'Xã');
INSERT INTO category."Wards" VALUES (6949, 201, 'system', '2023-07-26 08:40:17.673854+07', 'system', '2023-07-26 08:40:17.673854+07', 'Xã Đường Hoa', '06949', 'Xã');
INSERT INTO category."Wards" VALUES (6952, 201, 'system', '2023-07-26 08:40:17.673857+07', 'system', '2023-07-26 08:40:17.673857+07', 'Xã Quảng Phong', '06952', 'Xã');
INSERT INTO category."Wards" VALUES (6967, 201, 'system', '2023-07-26 08:40:17.67386+07', 'system', '2023-07-26 08:40:17.67386+07', 'Xã Cái Chiên', '06967', 'Xã');
INSERT INTO category."Wards" VALUES (6970, 202, 'system', '2023-07-26 08:40:17.673863+07', 'system', '2023-07-26 08:40:17.673863+07', 'Thị trấn Ba Chẽ', '06970', 'Thị trấn');
INSERT INTO category."Wards" VALUES (6973, 202, 'system', '2023-07-26 08:40:17.673866+07', 'system', '2023-07-26 08:40:17.673866+07', 'Xã Thanh Sơn', '06973', 'Xã');
INSERT INTO category."Wards" VALUES (6976, 202, 'system', '2023-07-26 08:40:17.673869+07', 'system', '2023-07-26 08:40:17.673869+07', 'Xã Thanh Lâm', '06976', 'Xã');
INSERT INTO category."Wards" VALUES (6979, 202, 'system', '2023-07-26 08:40:17.673871+07', 'system', '2023-07-26 08:40:17.673871+07', 'Xã Đạp Thanh', '06979', 'Xã');
INSERT INTO category."Wards" VALUES (6982, 202, 'system', '2023-07-26 08:40:17.673874+07', 'system', '2023-07-26 08:40:17.673874+07', 'Xã Nam Sơn', '06982', 'Xã');
INSERT INTO category."Wards" VALUES (6985, 202, 'system', '2023-07-26 08:40:17.673877+07', 'system', '2023-07-26 08:40:17.673877+07', 'Xã Lương Mông', '06985', 'Xã');
INSERT INTO category."Wards" VALUES (6988, 202, 'system', '2023-07-26 08:40:17.673879+07', 'system', '2023-07-26 08:40:17.673879+07', 'Xã Đồn Đạc', '06988', 'Xã');
INSERT INTO category."Wards" VALUES (6991, 202, 'system', '2023-07-26 08:40:17.673882+07', 'system', '2023-07-26 08:40:17.673882+07', 'Xã Minh Cầm', '06991', 'Xã');
INSERT INTO category."Wards" VALUES (6994, 203, 'system', '2023-07-26 08:40:17.673885+07', 'system', '2023-07-26 08:40:17.673885+07', 'Thị trấn Cái Rồng', '06994', 'Thị trấn');
INSERT INTO category."Wards" VALUES (6997, 203, 'system', '2023-07-26 08:40:17.673888+07', 'system', '2023-07-26 08:40:17.673888+07', 'Xã Đài Xuyên', '06997', 'Xã');
INSERT INTO category."Wards" VALUES (7000, 203, 'system', '2023-07-26 08:40:17.67389+07', 'system', '2023-07-26 08:40:17.67389+07', 'Xã Bình Dân', '07000', 'Xã');
INSERT INTO category."Wards" VALUES (7003, 203, 'system', '2023-07-26 08:40:17.673893+07', 'system', '2023-07-26 08:40:17.673893+07', 'Xã Vạn Yên', '07003', 'Xã');
INSERT INTO category."Wards" VALUES (7006, 203, 'system', '2023-07-26 08:40:17.673896+07', 'system', '2023-07-26 08:40:17.673896+07', 'Xã Minh Châu', '07006', 'Xã');
INSERT INTO category."Wards" VALUES (7009, 203, 'system', '2023-07-26 08:40:17.673898+07', 'system', '2023-07-26 08:40:17.673898+07', 'Xã Đoàn Kết', '07009', 'Xã');
INSERT INTO category."Wards" VALUES (7012, 203, 'system', '2023-07-26 08:40:17.673901+07', 'system', '2023-07-26 08:40:17.673901+07', 'Xã Hạ Long', '07012', 'Xã');
INSERT INTO category."Wards" VALUES (7015, 203, 'system', '2023-07-26 08:40:17.673904+07', 'system', '2023-07-26 08:40:17.673904+07', 'Xã Đông Xá', '07015', 'Xã');
INSERT INTO category."Wards" VALUES (7018, 203, 'system', '2023-07-26 08:40:17.673906+07', 'system', '2023-07-26 08:40:17.673906+07', 'Xã Bản Sen', '07018', 'Xã');
INSERT INTO category."Wards" VALUES (7021, 203, 'system', '2023-07-26 08:40:17.673909+07', 'system', '2023-07-26 08:40:17.673909+07', 'Xã Thắng Lợi', '07021', 'Xã');
INSERT INTO category."Wards" VALUES (7024, 203, 'system', '2023-07-26 08:40:17.673912+07', 'system', '2023-07-26 08:40:17.673912+07', 'Xã Quan Lạn', '07024', 'Xã');
INSERT INTO category."Wards" VALUES (7027, 203, 'system', '2023-07-26 08:40:17.673914+07', 'system', '2023-07-26 08:40:17.673914+07', 'Xã Ngọc Vừng', '07027', 'Xã');
INSERT INTO category."Wards" VALUES (7030, 193, 'system', '2023-07-26 08:40:17.673592+07', 'system', '2023-07-26 08:40:17.673592+07', 'Phường Hoành Bồ', '07030', 'Phường');
INSERT INTO category."Wards" VALUES (7033, 193, 'system', '2023-07-26 08:40:17.673595+07', 'system', '2023-07-26 08:40:17.673595+07', 'Xã Kỳ Thượng', '07033', 'Xã');
INSERT INTO category."Wards" VALUES (7036, 193, 'system', '2023-07-26 08:40:17.673598+07', 'system', '2023-07-26 08:40:17.673598+07', 'Xã Đồng Sơn', '07036', 'Xã');
INSERT INTO category."Wards" VALUES (7039, 193, 'system', '2023-07-26 08:40:17.6736+07', 'system', '2023-07-26 08:40:17.6736+07', 'Xã Tân Dân', '07039', 'Xã');
INSERT INTO category."Wards" VALUES (7042, 193, 'system', '2023-07-26 08:40:17.673603+07', 'system', '2023-07-26 08:40:17.673603+07', 'Xã Đồng Lâm', '07042', 'Xã');
INSERT INTO category."Wards" VALUES (7045, 193, 'system', '2023-07-26 08:40:17.673605+07', 'system', '2023-07-26 08:40:17.673605+07', 'Xã Hòa Bình', '07045', 'Xã');
INSERT INTO category."Wards" VALUES (7048, 193, 'system', '2023-07-26 08:40:17.673608+07', 'system', '2023-07-26 08:40:17.673608+07', 'Xã Vũ Oai', '07048', 'Xã');
INSERT INTO category."Wards" VALUES (7051, 193, 'system', '2023-07-26 08:40:17.67361+07', 'system', '2023-07-26 08:40:17.673611+07', 'Xã Dân Chủ', '07051', 'Xã');
INSERT INTO category."Wards" VALUES (7054, 193, 'system', '2023-07-26 08:40:17.673613+07', 'system', '2023-07-26 08:40:17.673613+07', 'Xã Quảng La', '07054', 'Xã');
INSERT INTO category."Wards" VALUES (7057, 193, 'system', '2023-07-26 08:40:17.673616+07', 'system', '2023-07-26 08:40:17.673616+07', 'Xã Bằng Cả', '07057', 'Xã');
INSERT INTO category."Wards" VALUES (7060, 193, 'system', '2023-07-26 08:40:17.673618+07', 'system', '2023-07-26 08:40:17.673618+07', 'Xã Thống Nhất', '07060', 'Xã');
INSERT INTO category."Wards" VALUES (7063, 193, 'system', '2023-07-26 08:40:17.673621+07', 'system', '2023-07-26 08:40:17.673621+07', 'Xã Sơn Dương', '07063', 'Xã');
INSERT INTO category."Wards" VALUES (7066, 193, 'system', '2023-07-26 08:40:17.673624+07', 'system', '2023-07-26 08:40:17.673624+07', 'Xã Lê Lợi', '07066', 'Xã');
INSERT INTO category."Wards" VALUES (7069, 205, 'system', '2023-07-26 08:40:17.673916+07', 'system', '2023-07-26 08:40:17.673916+07', 'Phường Mạo Khê', '07069', 'Phường');
INSERT INTO category."Wards" VALUES (7072, 205, 'system', '2023-07-26 08:40:17.673919+07', 'system', '2023-07-26 08:40:17.673919+07', 'Phường Đông Triều', '07072', 'Phường');
INSERT INTO category."Wards" VALUES (7075, 205, 'system', '2023-07-26 08:40:17.673922+07', 'system', '2023-07-26 08:40:17.673922+07', 'Xã An Sinh', '07075', 'Xã');
INSERT INTO category."Wards" VALUES (7078, 205, 'system', '2023-07-26 08:40:17.673925+07', 'system', '2023-07-26 08:40:17.673925+07', 'Xã Tràng Lương', '07078', 'Xã');
INSERT INTO category."Wards" VALUES (7081, 205, 'system', '2023-07-26 08:40:17.673927+07', 'system', '2023-07-26 08:40:17.673927+07', 'Xã Bình Khê', '07081', 'Xã');
INSERT INTO category."Wards" VALUES (7084, 205, 'system', '2023-07-26 08:40:17.67393+07', 'system', '2023-07-26 08:40:17.67393+07', 'Xã Việt Dân', '07084', 'Xã');
INSERT INTO category."Wards" VALUES (7087, 205, 'system', '2023-07-26 08:40:17.673933+07', 'system', '2023-07-26 08:40:17.673933+07', 'Xã Tân Việt', '07087', 'Xã');
INSERT INTO category."Wards" VALUES (7090, 205, 'system', '2023-07-26 08:40:17.673935+07', 'system', '2023-07-26 08:40:17.673935+07', 'Xã Bình Dương', '07090', 'Xã');
INSERT INTO category."Wards" VALUES (7093, 205, 'system', '2023-07-26 08:40:17.673938+07', 'system', '2023-07-26 08:40:17.673938+07', 'Phường Đức Chính', '07093', 'Phường');
INSERT INTO category."Wards" VALUES (7096, 205, 'system', '2023-07-26 08:40:17.673941+07', 'system', '2023-07-26 08:40:17.673941+07', 'Phường Tràng An', '07096', 'Phường');
INSERT INTO category."Wards" VALUES (7099, 205, 'system', '2023-07-26 08:40:17.673944+07', 'system', '2023-07-26 08:40:17.673944+07', 'Xã Nguyễn Huệ', '07099', 'Xã');
INSERT INTO category."Wards" VALUES (7102, 205, 'system', '2023-07-26 08:40:17.673946+07', 'system', '2023-07-26 08:40:17.673947+07', 'Xã Thủy An', '07102', 'Xã');
INSERT INTO category."Wards" VALUES (7105, 205, 'system', '2023-07-26 08:40:17.673949+07', 'system', '2023-07-26 08:40:17.673949+07', 'Phường Xuân Sơn', '07105', 'Phường');
INSERT INTO category."Wards" VALUES (7108, 205, 'system', '2023-07-26 08:40:17.673952+07', 'system', '2023-07-26 08:40:17.673952+07', 'Xã Hồng Thái Tây', '07108', 'Xã');
INSERT INTO category."Wards" VALUES (7111, 205, 'system', '2023-07-26 08:40:17.673955+07', 'system', '2023-07-26 08:40:17.673955+07', 'Xã Hồng Thái Đông', '07111', 'Xã');
INSERT INTO category."Wards" VALUES (7114, 205, 'system', '2023-07-26 08:40:17.673958+07', 'system', '2023-07-26 08:40:17.673958+07', 'Phường Hoàng Quế', '07114', 'Phường');
INSERT INTO category."Wards" VALUES (7117, 205, 'system', '2023-07-26 08:40:17.673961+07', 'system', '2023-07-26 08:40:17.673961+07', 'Phường Yên Thọ', '07117', 'Phường');
INSERT INTO category."Wards" VALUES (7120, 205, 'system', '2023-07-26 08:40:17.673964+07', 'system', '2023-07-26 08:40:17.673964+07', 'Phường Hồng Phong', '07120', 'Phường');
INSERT INTO category."Wards" VALUES (7123, 205, 'system', '2023-07-26 08:40:17.673967+07', 'system', '2023-07-26 08:40:17.673967+07', 'Phường Kim Sơn', '07123', 'Phường');
INSERT INTO category."Wards" VALUES (7126, 205, 'system', '2023-07-26 08:40:17.67397+07', 'system', '2023-07-26 08:40:17.67397+07', 'Phường Hưng Đạo', '07126', 'Phường');
INSERT INTO category."Wards" VALUES (7129, 205, 'system', '2023-07-26 08:40:17.673973+07', 'system', '2023-07-26 08:40:17.673973+07', 'Xã Yên Đức', '07129', 'Xã');
INSERT INTO category."Wards" VALUES (7132, 206, 'system', '2023-07-26 08:40:17.673975+07', 'system', '2023-07-26 08:40:17.673975+07', 'Phường Quảng Yên', '07132', 'Phường');
INSERT INTO category."Wards" VALUES (7135, 206, 'system', '2023-07-26 08:40:17.673978+07', 'system', '2023-07-26 08:40:17.673978+07', 'Phường Đông Mai', '07135', 'Phường');
INSERT INTO category."Wards" VALUES (7138, 206, 'system', '2023-07-26 08:40:17.673981+07', 'system', '2023-07-26 08:40:17.673981+07', 'Phường Minh Thành', '07138', 'Phường');
INSERT INTO category."Wards" VALUES (7144, 206, 'system', '2023-07-26 08:40:17.673984+07', 'system', '2023-07-26 08:40:17.673984+07', 'Xã Sông Khoai', '07144', 'Xã');
INSERT INTO category."Wards" VALUES (7147, 206, 'system', '2023-07-26 08:40:17.673986+07', 'system', '2023-07-26 08:40:17.673986+07', 'Xã Hiệp Hòa', '07147', 'Xã');
INSERT INTO category."Wards" VALUES (7150, 206, 'system', '2023-07-26 08:40:17.673988+07', 'system', '2023-07-26 08:40:17.673989+07', 'Phường Cộng Hòa', '07150', 'Phường');
INSERT INTO category."Wards" VALUES (7153, 206, 'system', '2023-07-26 08:40:17.673991+07', 'system', '2023-07-26 08:40:17.673991+07', 'Xã Tiền An', '07153', 'Xã');
INSERT INTO category."Wards" VALUES (7156, 206, 'system', '2023-07-26 08:40:17.673994+07', 'system', '2023-07-26 08:40:17.673994+07', 'Xã Hoàng Tân', '07156', 'Xã');
INSERT INTO category."Wards" VALUES (7159, 206, 'system', '2023-07-26 08:40:17.673996+07', 'system', '2023-07-26 08:40:17.673996+07', 'Phường Tân An', '07159', 'Phường');
INSERT INTO category."Wards" VALUES (7162, 206, 'system', '2023-07-26 08:40:17.673999+07', 'system', '2023-07-26 08:40:17.673999+07', 'Phường Yên Giang', '07162', 'Phường');
INSERT INTO category."Wards" VALUES (7165, 206, 'system', '2023-07-26 08:40:17.674002+07', 'system', '2023-07-26 08:40:17.674002+07', 'Phường Nam Hoà', '07165', 'Phường');
INSERT INTO category."Wards" VALUES (7168, 206, 'system', '2023-07-26 08:40:17.674005+07', 'system', '2023-07-26 08:40:17.674005+07', 'Phường Hà An', '07168', 'Phường');
INSERT INTO category."Wards" VALUES (7171, 206, 'system', '2023-07-26 08:40:17.674007+07', 'system', '2023-07-26 08:40:17.674007+07', 'Xã Cẩm La', '07171', 'Xã');
INSERT INTO category."Wards" VALUES (7174, 206, 'system', '2023-07-26 08:40:17.67401+07', 'system', '2023-07-26 08:40:17.67401+07', 'Phường Phong Hải', '07174', 'Phường');
INSERT INTO category."Wards" VALUES (7177, 206, 'system', '2023-07-26 08:40:17.674013+07', 'system', '2023-07-26 08:40:17.674013+07', 'Phường Yên Hải', '07177', 'Phường');
INSERT INTO category."Wards" VALUES (7180, 206, 'system', '2023-07-26 08:40:17.674016+07', 'system', '2023-07-26 08:40:17.674016+07', 'Xã Liên Hòa', '07180', 'Xã');
INSERT INTO category."Wards" VALUES (7183, 206, 'system', '2023-07-26 08:40:17.674018+07', 'system', '2023-07-26 08:40:17.674018+07', 'Phường Phong Cốc', '07183', 'Phường');
INSERT INTO category."Wards" VALUES (7186, 206, 'system', '2023-07-26 08:40:17.674021+07', 'system', '2023-07-26 08:40:17.674021+07', 'Xã Liên Vị', '07186', 'Xã');
INSERT INTO category."Wards" VALUES (7189, 206, 'system', '2023-07-26 08:40:17.674024+07', 'system', '2023-07-26 08:40:17.674024+07', 'Xã Tiền Phong', '07189', 'Xã');
INSERT INTO category."Wards" VALUES (7192, 207, 'system', '2023-07-26 08:40:17.674026+07', 'system', '2023-07-26 08:40:17.674026+07', 'Thị trấn Cô Tô', '07192', 'Thị trấn');
INSERT INTO category."Wards" VALUES (7195, 207, 'system', '2023-07-26 08:40:17.674029+07', 'system', '2023-07-26 08:40:17.674029+07', 'Xã Đồng Tiến', '07195', 'Xã');
INSERT INTO category."Wards" VALUES (7198, 207, 'system', '2023-07-26 08:40:17.674032+07', 'system', '2023-07-26 08:40:17.674032+07', 'Xã Thanh Lân', '07198', 'Xã');
INSERT INTO category."Wards" VALUES (7201, 213, 'system', '2023-07-26 08:40:17.674034+07', 'system', '2023-07-26 08:40:17.674034+07', 'Phường Thọ Xương', '07201', 'Phường');
INSERT INTO category."Wards" VALUES (7204, 213, 'system', '2023-07-26 08:40:17.674037+07', 'system', '2023-07-26 08:40:17.674037+07', 'Phường Trần Nguyên Hãn', '07204', 'Phường');
INSERT INTO category."Wards" VALUES (7207, 213, 'system', '2023-07-26 08:40:17.67404+07', 'system', '2023-07-26 08:40:17.67404+07', 'Phường Ngô Quyền', '07207', 'Phường');
INSERT INTO category."Wards" VALUES (7210, 213, 'system', '2023-07-26 08:40:17.674042+07', 'system', '2023-07-26 08:40:17.674042+07', 'Phường Hoàng Văn Thụ', '07210', 'Phường');
INSERT INTO category."Wards" VALUES (7213, 213, 'system', '2023-07-26 08:40:17.674045+07', 'system', '2023-07-26 08:40:17.674045+07', 'Phường Trần Phú', '07213', 'Phường');
INSERT INTO category."Wards" VALUES (7216, 213, 'system', '2023-07-26 08:40:17.674048+07', 'system', '2023-07-26 08:40:17.674048+07', 'Phường Mỹ Độ', '07216', 'Phường');
INSERT INTO category."Wards" VALUES (7219, 213, 'system', '2023-07-26 08:40:17.674051+07', 'system', '2023-07-26 08:40:17.674051+07', 'Phường Lê Lợi', '07219', 'Phường');
INSERT INTO category."Wards" VALUES (7222, 213, 'system', '2023-07-26 08:40:17.674054+07', 'system', '2023-07-26 08:40:17.674054+07', 'Xã Song Mai', '07222', 'Xã');
INSERT INTO category."Wards" VALUES (7225, 213, 'system', '2023-07-26 08:40:17.674057+07', 'system', '2023-07-26 08:40:17.674057+07', 'Phường Xương Giang', '07225', 'Phường');
INSERT INTO category."Wards" VALUES (7228, 213, 'system', '2023-07-26 08:40:17.67406+07', 'system', '2023-07-26 08:40:17.67406+07', 'Phường Đa Mai', '07228', 'Phường');
INSERT INTO category."Wards" VALUES (7231, 213, 'system', '2023-07-26 08:40:17.674062+07', 'system', '2023-07-26 08:40:17.674063+07', 'Phường Dĩnh Kế', '07231', 'Phường');
INSERT INTO category."Wards" VALUES (7243, 215, 'system', '2023-07-26 08:40:17.674078+07', 'system', '2023-07-26 08:40:17.674078+07', 'Xã Đồng Tiến', '07243', 'Xã');
INSERT INTO category."Wards" VALUES (7246, 215, 'system', '2023-07-26 08:40:17.674081+07', 'system', '2023-07-26 08:40:17.674081+07', 'Xã Canh Nậu', '07246', 'Xã');
INSERT INTO category."Wards" VALUES (7249, 215, 'system', '2023-07-26 08:40:17.674084+07', 'system', '2023-07-26 08:40:17.674084+07', 'Xã Xuân Lương', '07249', 'Xã');
INSERT INTO category."Wards" VALUES (7252, 215, 'system', '2023-07-26 08:40:17.674087+07', 'system', '2023-07-26 08:40:17.674087+07', 'Xã Tam Tiến', '07252', 'Xã');
INSERT INTO category."Wards" VALUES (7255, 215, 'system', '2023-07-26 08:40:17.674089+07', 'system', '2023-07-26 08:40:17.674089+07', 'Xã Đồng Vương', '07255', 'Xã');
INSERT INTO category."Wards" VALUES (7258, 215, 'system', '2023-07-26 08:40:17.674092+07', 'system', '2023-07-26 08:40:17.674092+07', 'Xã Đồng Hưu', '07258', 'Xã');
INSERT INTO category."Wards" VALUES (7260, 215, 'system', '2023-07-26 08:40:17.674095+07', 'system', '2023-07-26 08:40:17.674095+07', 'Xã Đồng Tâm', '07260', 'Xã');
INSERT INTO category."Wards" VALUES (7261, 215, 'system', '2023-07-26 08:40:17.674097+07', 'system', '2023-07-26 08:40:17.674097+07', 'Xã Tam Hiệp', '07261', 'Xã');
INSERT INTO category."Wards" VALUES (7264, 215, 'system', '2023-07-26 08:40:17.6741+07', 'system', '2023-07-26 08:40:17.6741+07', 'Xã Tiến Thắng', '07264', 'Xã');
INSERT INTO category."Wards" VALUES (7267, 215, 'system', '2023-07-26 08:40:17.674103+07', 'system', '2023-07-26 08:40:17.674103+07', 'Xã Hồng Kỳ', '07267', 'Xã');
INSERT INTO category."Wards" VALUES (7270, 215, 'system', '2023-07-26 08:40:17.674105+07', 'system', '2023-07-26 08:40:17.674105+07', 'Xã Đồng Lạc', '07270', 'Xã');
INSERT INTO category."Wards" VALUES (7273, 215, 'system', '2023-07-26 08:40:17.674108+07', 'system', '2023-07-26 08:40:17.674108+07', 'Xã Đông Sơn', '07273', 'Xã');
INSERT INTO category."Wards" VALUES (7276, 215, 'system', '2023-07-26 08:40:17.67411+07', 'system', '2023-07-26 08:40:17.67411+07', 'Xã Tân Hiệp', '07276', 'Xã');
INSERT INTO category."Wards" VALUES (7279, 215, 'system', '2023-07-26 08:40:17.674113+07', 'system', '2023-07-26 08:40:17.674113+07', 'Xã Hương Vĩ', '07279', 'Xã');
INSERT INTO category."Wards" VALUES (7282, 215, 'system', '2023-07-26 08:40:17.674116+07', 'system', '2023-07-26 08:40:17.674116+07', 'Xã Đồng Kỳ', '07282', 'Xã');
INSERT INTO category."Wards" VALUES (7285, 215, 'system', '2023-07-26 08:40:17.674118+07', 'system', '2023-07-26 08:40:17.674118+07', 'Xã An Thượng', '07285', 'Xã');
INSERT INTO category."Wards" VALUES (7288, 215, 'system', '2023-07-26 08:40:17.674121+07', 'system', '2023-07-26 08:40:17.674121+07', 'Thị trấn Phồn Xương', '07288', 'Thị trấn');
INSERT INTO category."Wards" VALUES (7291, 215, 'system', '2023-07-26 08:40:17.674124+07', 'system', '2023-07-26 08:40:17.674124+07', 'Xã Tân Sỏi', '07291', 'Xã');
INSERT INTO category."Wards" VALUES (7294, 215, 'system', '2023-07-26 08:40:17.674126+07', 'system', '2023-07-26 08:40:17.674127+07', 'Thị trấn Bố Hạ', '07294', 'Thị trấn');
INSERT INTO category."Wards" VALUES (7303, 216, 'system', '2023-07-26 08:40:17.674129+07', 'system', '2023-07-26 08:40:17.674129+07', 'Xã Lan Giới', '07303', 'Xã');
INSERT INTO category."Wards" VALUES (7306, 216, 'system', '2023-07-26 08:40:17.674132+07', 'system', '2023-07-26 08:40:17.674132+07', 'Thị trấn Nhã Nam', '07306', 'Thị trấn');
INSERT INTO category."Wards" VALUES (7309, 216, 'system', '2023-07-26 08:40:17.674135+07', 'system', '2023-07-26 08:40:17.674135+07', 'Xã Tân Trung', '07309', 'Xã');
INSERT INTO category."Wards" VALUES (7312, 216, 'system', '2023-07-26 08:40:17.674137+07', 'system', '2023-07-26 08:40:17.674137+07', 'Xã Đại Hóa', '07312', 'Xã');
INSERT INTO category."Wards" VALUES (7315, 216, 'system', '2023-07-26 08:40:17.67414+07', 'system', '2023-07-26 08:40:17.67414+07', 'Xã Quang Tiến', '07315', 'Xã');
INSERT INTO category."Wards" VALUES (7318, 216, 'system', '2023-07-26 08:40:17.674143+07', 'system', '2023-07-26 08:40:17.674143+07', 'Xã Phúc Sơn', '07318', 'Xã');
INSERT INTO category."Wards" VALUES (7321, 216, 'system', '2023-07-26 08:40:17.674145+07', 'system', '2023-07-26 08:40:17.674145+07', 'Xã An Dương', '07321', 'Xã');
INSERT INTO category."Wards" VALUES (7324, 216, 'system', '2023-07-26 08:40:17.674148+07', 'system', '2023-07-26 08:40:17.674148+07', 'Xã Phúc Hòa', '07324', 'Xã');
INSERT INTO category."Wards" VALUES (7327, 216, 'system', '2023-07-26 08:40:17.67415+07', 'system', '2023-07-26 08:40:17.67415+07', 'Xã Liên Sơn', '07327', 'Xã');
INSERT INTO category."Wards" VALUES (7330, 216, 'system', '2023-07-26 08:40:17.674153+07', 'system', '2023-07-26 08:40:17.674153+07', 'Xã Hợp Đức', '07330', 'Xã');
INSERT INTO category."Wards" VALUES (7333, 216, 'system', '2023-07-26 08:40:17.674156+07', 'system', '2023-07-26 08:40:17.674156+07', 'Xã Lam Cốt', '07333', 'Xã');
INSERT INTO category."Wards" VALUES (7336, 216, 'system', '2023-07-26 08:40:17.674159+07', 'system', '2023-07-26 08:40:17.674159+07', 'Xã Cao Xá', '07336', 'Xã');
INSERT INTO category."Wards" VALUES (7339, 216, 'system', '2023-07-26 08:40:17.674162+07', 'system', '2023-07-26 08:40:17.674162+07', 'Thị trấn Cao Thượng', '07339', 'Thị trấn');
INSERT INTO category."Wards" VALUES (7342, 216, 'system', '2023-07-26 08:40:17.674165+07', 'system', '2023-07-26 08:40:17.674165+07', 'Xã Việt Ngọc', '07342', 'Xã');
INSERT INTO category."Wards" VALUES (7345, 216, 'system', '2023-07-26 08:40:17.674167+07', 'system', '2023-07-26 08:40:17.674167+07', 'Xã Song Vân', '07345', 'Xã');
INSERT INTO category."Wards" VALUES (7348, 216, 'system', '2023-07-26 08:40:17.67417+07', 'system', '2023-07-26 08:40:17.67417+07', 'Xã Ngọc Châu', '07348', 'Xã');
INSERT INTO category."Wards" VALUES (7351, 216, 'system', '2023-07-26 08:40:17.674173+07', 'system', '2023-07-26 08:40:17.674173+07', 'Xã Ngọc Vân', '07351', 'Xã');
INSERT INTO category."Wards" VALUES (7354, 216, 'system', '2023-07-26 08:40:17.674175+07', 'system', '2023-07-26 08:40:17.674175+07', 'Xã Việt Lập', '07354', 'Xã');
INSERT INTO category."Wards" VALUES (7357, 216, 'system', '2023-07-26 08:40:17.674178+07', 'system', '2023-07-26 08:40:17.674178+07', 'Xã Liên Chung', '07357', 'Xã');
INSERT INTO category."Wards" VALUES (7360, 216, 'system', '2023-07-26 08:40:17.67418+07', 'system', '2023-07-26 08:40:17.67418+07', 'Xã Ngọc Thiện', '07360', 'Xã');
INSERT INTO category."Wards" VALUES (7363, 216, 'system', '2023-07-26 08:40:17.674183+07', 'system', '2023-07-26 08:40:17.674183+07', 'Xã Ngọc Lý', '07363', 'Xã');
INSERT INTO category."Wards" VALUES (7366, 216, 'system', '2023-07-26 08:40:17.674186+07', 'system', '2023-07-26 08:40:17.674186+07', 'Xã Quế Nham', '07366', 'Xã');
INSERT INTO category."Wards" VALUES (7375, 217, 'system', '2023-07-26 08:40:17.674188+07', 'system', '2023-07-26 08:40:17.674189+07', 'Thị trấn Vôi', '07375', 'Thị trấn');
INSERT INTO category."Wards" VALUES (7378, 217, 'system', '2023-07-26 08:40:17.674191+07', 'system', '2023-07-26 08:40:17.674191+07', 'Xã Nghĩa Hòa', '07378', 'Xã');
INSERT INTO category."Wards" VALUES (7381, 217, 'system', '2023-07-26 08:40:17.674194+07', 'system', '2023-07-26 08:40:17.674194+07', 'Xã Nghĩa Hưng', '07381', 'Xã');
INSERT INTO category."Wards" VALUES (7384, 217, 'system', '2023-07-26 08:40:17.674197+07', 'system', '2023-07-26 08:40:17.674197+07', 'Xã Quang Thịnh', '07384', 'Xã');
INSERT INTO category."Wards" VALUES (7387, 217, 'system', '2023-07-26 08:40:17.674199+07', 'system', '2023-07-26 08:40:17.674199+07', 'Xã Hương Sơn', '07387', 'Xã');
INSERT INTO category."Wards" VALUES (7390, 217, 'system', '2023-07-26 08:40:17.674202+07', 'system', '2023-07-26 08:40:17.674202+07', 'Xã Đào Mỹ', '07390', 'Xã');
INSERT INTO category."Wards" VALUES (7393, 217, 'system', '2023-07-26 08:40:17.674205+07', 'system', '2023-07-26 08:40:17.674205+07', 'Xã Tiên Lục', '07393', 'Xã');
INSERT INTO category."Wards" VALUES (7396, 217, 'system', '2023-07-26 08:40:17.674207+07', 'system', '2023-07-26 08:40:17.674207+07', 'Xã An Hà', '07396', 'Xã');
INSERT INTO category."Wards" VALUES (7399, 217, 'system', '2023-07-26 08:40:17.67421+07', 'system', '2023-07-26 08:40:17.67421+07', 'Thị trấn Kép', '07399', 'Thị trấn');
INSERT INTO category."Wards" VALUES (7402, 217, 'system', '2023-07-26 08:40:17.674212+07', 'system', '2023-07-26 08:40:17.674212+07', 'Xã Mỹ Hà', '07402', 'Xã');
INSERT INTO category."Wards" VALUES (7405, 217, 'system', '2023-07-26 08:40:17.674215+07', 'system', '2023-07-26 08:40:17.674215+07', 'Xã Hương Lạc', '07405', 'Xã');
INSERT INTO category."Wards" VALUES (7408, 217, 'system', '2023-07-26 08:40:17.674218+07', 'system', '2023-07-26 08:40:17.674218+07', 'Xã Dương Đức', '07408', 'Xã');
INSERT INTO category."Wards" VALUES (7411, 217, 'system', '2023-07-26 08:40:17.67422+07', 'system', '2023-07-26 08:40:17.67422+07', 'Xã Tân Thanh', '07411', 'Xã');
INSERT INTO category."Wards" VALUES (7414, 217, 'system', '2023-07-26 08:40:17.674223+07', 'system', '2023-07-26 08:40:17.674223+07', 'Xã Yên Mỹ', '07414', 'Xã');
INSERT INTO category."Wards" VALUES (7417, 217, 'system', '2023-07-26 08:40:17.674226+07', 'system', '2023-07-26 08:40:17.674226+07', 'Xã Tân Hưng', '07417', 'Xã');
INSERT INTO category."Wards" VALUES (7420, 217, 'system', '2023-07-26 08:40:17.674228+07', 'system', '2023-07-26 08:40:17.674228+07', 'Xã Mỹ Thái', '07420', 'Xã');
INSERT INTO category."Wards" VALUES (7426, 217, 'system', '2023-07-26 08:40:17.674231+07', 'system', '2023-07-26 08:40:17.674231+07', 'Xã Xương Lâm', '07426', 'Xã');
INSERT INTO category."Wards" VALUES (7429, 217, 'system', '2023-07-26 08:40:17.674234+07', 'system', '2023-07-26 08:40:17.674234+07', 'Xã Xuân Hương', '07429', 'Xã');
INSERT INTO category."Wards" VALUES (7432, 217, 'system', '2023-07-26 08:40:17.674236+07', 'system', '2023-07-26 08:40:17.674237+07', 'Xã Tân Dĩnh', '07432', 'Xã');
INSERT INTO category."Wards" VALUES (7435, 217, 'system', '2023-07-26 08:40:17.674239+07', 'system', '2023-07-26 08:40:17.674239+07', 'Xã Đại Lâm', '07435', 'Xã');
INSERT INTO category."Wards" VALUES (7438, 217, 'system', '2023-07-26 08:40:17.674242+07', 'system', '2023-07-26 08:40:17.674242+07', 'Xã Thái Đào', '07438', 'Xã');
INSERT INTO category."Wards" VALUES (7441, 213, 'system', '2023-07-26 08:40:17.674065+07', 'system', '2023-07-26 08:40:17.674065+07', 'Xã Dĩnh Trì', '07441', 'Xã');
INSERT INTO category."Wards" VALUES (7444, 218, 'system', '2023-07-26 08:40:17.674244+07', 'system', '2023-07-26 08:40:17.674244+07', 'Thị trấn Đồi Ngô', '07444', 'Thị trấn');
INSERT INTO category."Wards" VALUES (7450, 218, 'system', '2023-07-26 08:40:17.674247+07', 'system', '2023-07-26 08:40:17.674247+07', 'Xã Đông Hưng', '07450', 'Xã');
INSERT INTO category."Wards" VALUES (7453, 218, 'system', '2023-07-26 08:40:17.67425+07', 'system', '2023-07-26 08:40:17.67425+07', 'Xã Đông Phú', '07453', 'Xã');
INSERT INTO category."Wards" VALUES (7456, 218, 'system', '2023-07-26 08:40:17.674253+07', 'system', '2023-07-26 08:40:17.674253+07', 'Xã Tam Dị', '07456', 'Xã');
INSERT INTO category."Wards" VALUES (7459, 218, 'system', '2023-07-26 08:40:17.674256+07', 'system', '2023-07-26 08:40:17.674256+07', 'Xã Bảo Sơn', '07459', 'Xã');
INSERT INTO category."Wards" VALUES (7462, 218, 'system', '2023-07-26 08:40:17.674258+07', 'system', '2023-07-26 08:40:17.674259+07', 'Xã Bảo Đài', '07462', 'Xã');
INSERT INTO category."Wards" VALUES (7465, 218, 'system', '2023-07-26 08:40:17.674261+07', 'system', '2023-07-26 08:40:17.674261+07', 'Xã Thanh Lâm', '07465', 'Xã');
INSERT INTO category."Wards" VALUES (7468, 218, 'system', '2023-07-26 08:40:17.674264+07', 'system', '2023-07-26 08:40:17.674264+07', 'Xã Tiên Nha', '07468', 'Xã');
INSERT INTO category."Wards" VALUES (7471, 218, 'system', '2023-07-26 08:40:17.674266+07', 'system', '2023-07-26 08:40:17.674266+07', 'Xã Trường Giang', '07471', 'Xã');
INSERT INTO category."Wards" VALUES (7477, 218, 'system', '2023-07-26 08:40:17.674269+07', 'system', '2023-07-26 08:40:17.674269+07', 'Xã Phương Sơn', '07477', 'Xã');
INSERT INTO category."Wards" VALUES (7480, 218, 'system', '2023-07-26 08:40:17.674272+07', 'system', '2023-07-26 08:40:17.674272+07', 'Xã Chu Điện', '07480', 'Xã');
INSERT INTO category."Wards" VALUES (7483, 218, 'system', '2023-07-26 08:40:17.674274+07', 'system', '2023-07-26 08:40:17.674274+07', 'Xã Cương Sơn', '07483', 'Xã');
INSERT INTO category."Wards" VALUES (7486, 218, 'system', '2023-07-26 08:40:17.674277+07', 'system', '2023-07-26 08:40:17.674277+07', 'Xã Nghĩa Phương', '07486', 'Xã');
INSERT INTO category."Wards" VALUES (7489, 218, 'system', '2023-07-26 08:40:17.67428+07', 'system', '2023-07-26 08:40:17.67428+07', 'Xã Vô Tranh', '07489', 'Xã');
INSERT INTO category."Wards" VALUES (7492, 218, 'system', '2023-07-26 08:40:17.674282+07', 'system', '2023-07-26 08:40:17.674282+07', 'Xã Bình Sơn', '07492', 'Xã');
INSERT INTO category."Wards" VALUES (7495, 218, 'system', '2023-07-26 08:40:17.674285+07', 'system', '2023-07-26 08:40:17.674285+07', 'Xã Lan Mẫu', '07495', 'Xã');
INSERT INTO category."Wards" VALUES (7498, 218, 'system', '2023-07-26 08:40:17.674287+07', 'system', '2023-07-26 08:40:17.674287+07', 'Xã Yên Sơn', '07498', 'Xã');
INSERT INTO category."Wards" VALUES (7501, 218, 'system', '2023-07-26 08:40:17.67429+07', 'system', '2023-07-26 08:40:17.67429+07', 'Xã Khám Lạng', '07501', 'Xã');
INSERT INTO category."Wards" VALUES (7504, 218, 'system', '2023-07-26 08:40:17.674293+07', 'system', '2023-07-26 08:40:17.674293+07', 'Xã Huyền Sơn', '07504', 'Xã');
INSERT INTO category."Wards" VALUES (7507, 218, 'system', '2023-07-26 08:40:17.674295+07', 'system', '2023-07-26 08:40:17.674295+07', 'Xã Trường Sơn', '07507', 'Xã');
INSERT INTO category."Wards" VALUES (7510, 218, 'system', '2023-07-26 08:40:17.674298+07', 'system', '2023-07-26 08:40:17.674298+07', 'Xã Lục Sơn', '07510', 'Xã');
INSERT INTO category."Wards" VALUES (7513, 218, 'system', '2023-07-26 08:40:17.674301+07', 'system', '2023-07-26 08:40:17.674301+07', 'Xã Bắc Lũng', '07513', 'Xã');
INSERT INTO category."Wards" VALUES (7516, 218, 'system', '2023-07-26 08:40:17.674303+07', 'system', '2023-07-26 08:40:17.674303+07', 'Xã Vũ Xá', '07516', 'Xã');
INSERT INTO category."Wards" VALUES (7519, 218, 'system', '2023-07-26 08:40:17.674306+07', 'system', '2023-07-26 08:40:17.674306+07', 'Xã Cẩm Lý', '07519', 'Xã');
INSERT INTO category."Wards" VALUES (7522, 218, 'system', '2023-07-26 08:40:17.674309+07', 'system', '2023-07-26 08:40:17.674309+07', 'Xã Đan Hội', '07522', 'Xã');
INSERT INTO category."Wards" VALUES (7525, 219, 'system', '2023-07-26 08:40:17.674311+07', 'system', '2023-07-26 08:40:17.674311+07', 'Thị trấn Chũ', '07525', 'Thị trấn');
INSERT INTO category."Wards" VALUES (7528, 219, 'system', '2023-07-26 08:40:17.674314+07', 'system', '2023-07-26 08:40:17.674314+07', 'Xã Cấm Sơn', '07528', 'Xã');
INSERT INTO category."Wards" VALUES (7531, 219, 'system', '2023-07-26 08:40:17.674317+07', 'system', '2023-07-26 08:40:17.674317+07', 'Xã Tân Sơn', '07531', 'Xã');
INSERT INTO category."Wards" VALUES (7534, 219, 'system', '2023-07-26 08:40:17.674319+07', 'system', '2023-07-26 08:40:17.674319+07', 'Xã Phong Minh', '07534', 'Xã');
INSERT INTO category."Wards" VALUES (7537, 219, 'system', '2023-07-26 08:40:17.674322+07', 'system', '2023-07-26 08:40:17.674322+07', 'Xã Phong Vân', '07537', 'Xã');
INSERT INTO category."Wards" VALUES (7540, 219, 'system', '2023-07-26 08:40:17.674324+07', 'system', '2023-07-26 08:40:17.674324+07', 'Xã Xa Lý', '07540', 'Xã');
INSERT INTO category."Wards" VALUES (7543, 219, 'system', '2023-07-26 08:40:17.674327+07', 'system', '2023-07-26 08:40:17.674327+07', 'Xã Hộ Đáp', '07543', 'Xã');
INSERT INTO category."Wards" VALUES (7546, 219, 'system', '2023-07-26 08:40:17.674329+07', 'system', '2023-07-26 08:40:17.67433+07', 'Xã Sơn Hải', '07546', 'Xã');
INSERT INTO category."Wards" VALUES (7549, 219, 'system', '2023-07-26 08:40:17.674332+07', 'system', '2023-07-26 08:40:17.674332+07', 'Xã Thanh Hải', '07549', 'Xã');
INSERT INTO category."Wards" VALUES (7552, 219, 'system', '2023-07-26 08:40:17.674334+07', 'system', '2023-07-26 08:40:17.674335+07', 'Xã Kiên Lao', '07552', 'Xã');
INSERT INTO category."Wards" VALUES (7555, 219, 'system', '2023-07-26 08:40:17.674337+07', 'system', '2023-07-26 08:40:17.674337+07', 'Xã Biên Sơn', '07555', 'Xã');
INSERT INTO category."Wards" VALUES (7558, 219, 'system', '2023-07-26 08:40:17.67434+07', 'system', '2023-07-26 08:40:17.67434+07', 'Xã Kiên Thành', '07558', 'Xã');
INSERT INTO category."Wards" VALUES (7561, 219, 'system', '2023-07-26 08:40:17.674343+07', 'system', '2023-07-26 08:40:17.674343+07', 'Xã Hồng Giang', '07561', 'Xã');
INSERT INTO category."Wards" VALUES (7564, 219, 'system', '2023-07-26 08:40:17.674345+07', 'system', '2023-07-26 08:40:17.674345+07', 'Xã Kim Sơn', '07564', 'Xã');
INSERT INTO category."Wards" VALUES (7567, 219, 'system', '2023-07-26 08:40:17.674348+07', 'system', '2023-07-26 08:40:17.674348+07', 'Xã Tân Hoa', '07567', 'Xã');
INSERT INTO category."Wards" VALUES (7570, 219, 'system', '2023-07-26 08:40:17.674351+07', 'system', '2023-07-26 08:40:17.674351+07', 'Xã Giáp Sơn', '07570', 'Xã');
INSERT INTO category."Wards" VALUES (7573, 219, 'system', '2023-07-26 08:40:17.674354+07', 'system', '2023-07-26 08:40:17.674354+07', 'Xã Biển Động', '07573', 'Xã');
INSERT INTO category."Wards" VALUES (7576, 219, 'system', '2023-07-26 08:40:17.674356+07', 'system', '2023-07-26 08:40:17.674356+07', 'Xã Quý Sơn', '07576', 'Xã');
INSERT INTO category."Wards" VALUES (7579, 219, 'system', '2023-07-26 08:40:17.674359+07', 'system', '2023-07-26 08:40:17.674359+07', 'Xã Trù Hựu', '07579', 'Xã');
INSERT INTO category."Wards" VALUES (7582, 219, 'system', '2023-07-26 08:40:17.674362+07', 'system', '2023-07-26 08:40:17.674362+07', 'Xã Phì Điền', '07582', 'Xã');
INSERT INTO category."Wards" VALUES (7588, 219, 'system', '2023-07-26 08:40:17.674364+07', 'system', '2023-07-26 08:40:17.674364+07', 'Xã Tân Quang', '07588', 'Xã');
INSERT INTO category."Wards" VALUES (7591, 219, 'system', '2023-07-26 08:40:17.674367+07', 'system', '2023-07-26 08:40:17.674367+07', 'Xã Đồng Cốc', '07591', 'Xã');
INSERT INTO category."Wards" VALUES (7594, 219, 'system', '2023-07-26 08:40:17.67437+07', 'system', '2023-07-26 08:40:17.67437+07', 'Xã Tân Lập', '07594', 'Xã');
INSERT INTO category."Wards" VALUES (7597, 219, 'system', '2023-07-26 08:40:17.674372+07', 'system', '2023-07-26 08:40:17.674372+07', 'Xã Phú Nhuận', '07597', 'Xã');
INSERT INTO category."Wards" VALUES (7600, 219, 'system', '2023-07-26 08:40:17.674374+07', 'system', '2023-07-26 08:40:17.674374+07', 'Xã Mỹ An', '07600', 'Xã');
INSERT INTO category."Wards" VALUES (7603, 219, 'system', '2023-07-26 08:40:17.674377+07', 'system', '2023-07-26 08:40:17.674377+07', 'Xã Nam Dương', '07603', 'Xã');
INSERT INTO category."Wards" VALUES (7606, 219, 'system', '2023-07-26 08:40:17.674379+07', 'system', '2023-07-26 08:40:17.674379+07', 'Xã Tân Mộc', '07606', 'Xã');
INSERT INTO category."Wards" VALUES (7609, 219, 'system', '2023-07-26 08:40:17.674382+07', 'system', '2023-07-26 08:40:17.674382+07', 'Xã Đèo Gia', '07609', 'Xã');
INSERT INTO category."Wards" VALUES (7612, 219, 'system', '2023-07-26 08:40:17.674385+07', 'system', '2023-07-26 08:40:17.674385+07', 'Xã Phượng Sơn', '07612', 'Xã');
INSERT INTO category."Wards" VALUES (7615, 220, 'system', '2023-07-26 08:40:17.674387+07', 'system', '2023-07-26 08:40:17.674387+07', 'Thị trấn An Châu', '07615', 'Thị trấn');
INSERT INTO category."Wards" VALUES (7616, 220, 'system', '2023-07-26 08:40:17.67439+07', 'system', '2023-07-26 08:40:17.67439+07', 'Thị trấn Tây Yên Tử', '07616', 'Thị trấn');
INSERT INTO category."Wards" VALUES (7621, 220, 'system', '2023-07-26 08:40:17.674393+07', 'system', '2023-07-26 08:40:17.674393+07', 'Xã Vân Sơn', '07621', 'Xã');
INSERT INTO category."Wards" VALUES (7624, 220, 'system', '2023-07-26 08:40:17.674396+07', 'system', '2023-07-26 08:40:17.674396+07', 'Xã Hữu Sản', '07624', 'Xã');
INSERT INTO category."Wards" VALUES (7627, 220, 'system', '2023-07-26 08:40:17.674398+07', 'system', '2023-07-26 08:40:17.674398+07', 'Xã Đại Sơn', '07627', 'Xã');
INSERT INTO category."Wards" VALUES (7630, 220, 'system', '2023-07-26 08:40:17.674401+07', 'system', '2023-07-26 08:40:17.674401+07', 'Xã Phúc Sơn', '07630', 'Xã');
INSERT INTO category."Wards" VALUES (7636, 220, 'system', '2023-07-26 08:40:17.674403+07', 'system', '2023-07-26 08:40:17.674403+07', 'Xã Giáo Liêm', '07636', 'Xã');
INSERT INTO category."Wards" VALUES (7642, 220, 'system', '2023-07-26 08:40:17.674406+07', 'system', '2023-07-26 08:40:17.674406+07', 'Xã Cẩm Đàn', '07642', 'Xã');
INSERT INTO category."Wards" VALUES (7645, 220, 'system', '2023-07-26 08:40:17.674408+07', 'system', '2023-07-26 08:40:17.674408+07', 'Xã An Lạc', '07645', 'Xã');
INSERT INTO category."Wards" VALUES (7648, 220, 'system', '2023-07-26 08:40:17.674411+07', 'system', '2023-07-26 08:40:17.674411+07', 'Xã Vĩnh An', '07648', 'Xã');
INSERT INTO category."Wards" VALUES (7651, 220, 'system', '2023-07-26 08:40:17.674413+07', 'system', '2023-07-26 08:40:17.674414+07', 'Xã Yên Định', '07651', 'Xã');
INSERT INTO category."Wards" VALUES (7654, 220, 'system', '2023-07-26 08:40:17.674416+07', 'system', '2023-07-26 08:40:17.674416+07', 'Xã Lệ Viễn', '07654', 'Xã');
INSERT INTO category."Wards" VALUES (7660, 220, 'system', '2023-07-26 08:40:17.67443+07', 'system', '2023-07-26 08:40:17.67443+07', 'Xã An Bá', '07660', 'Xã');
INSERT INTO category."Wards" VALUES (7663, 220, 'system', '2023-07-26 08:40:17.674433+07', 'system', '2023-07-26 08:40:17.674433+07', 'Xã Tuấn Đạo', '07663', 'Xã');
INSERT INTO category."Wards" VALUES (7666, 220, 'system', '2023-07-26 08:40:17.674435+07', 'system', '2023-07-26 08:40:17.674435+07', 'Xã Dương Hưu', '07666', 'Xã');
INSERT INTO category."Wards" VALUES (7672, 220, 'system', '2023-07-26 08:40:17.674438+07', 'system', '2023-07-26 08:40:17.674438+07', 'Xã Long Sơn', '07672', 'Xã');
INSERT INTO category."Wards" VALUES (7678, 220, 'system', '2023-07-26 08:40:17.674441+07', 'system', '2023-07-26 08:40:17.674441+07', 'Xã Thanh Luận', '07678', 'Xã');
INSERT INTO category."Wards" VALUES (7681, 221, 'system', '2023-07-26 08:40:17.674443+07', 'system', '2023-07-26 08:40:17.674443+07', 'Thị trấn Nham Biền', '07681', 'Thị trấn');
INSERT INTO category."Wards" VALUES (7682, 221, 'system', '2023-07-26 08:40:17.674446+07', 'system', '2023-07-26 08:40:17.674446+07', 'Thị trấn Tân An', '07682', 'Thị trấn');
INSERT INTO category."Wards" VALUES (7684, 221, 'system', '2023-07-26 08:40:17.674449+07', 'system', '2023-07-26 08:40:17.674449+07', 'Xã Lão Hộ', '07684', 'Xã');
INSERT INTO category."Wards" VALUES (7687, 213, 'system', '2023-07-26 08:40:17.674068+07', 'system', '2023-07-26 08:40:17.674068+07', 'Xã Tân Mỹ', '07687', 'Xã');
INSERT INTO category."Wards" VALUES (7690, 221, 'system', '2023-07-26 08:40:17.674452+07', 'system', '2023-07-26 08:40:17.674452+07', 'Xã Hương Gián', '07690', 'Xã');
INSERT INTO category."Wards" VALUES (7696, 213, 'system', '2023-07-26 08:40:17.67407+07', 'system', '2023-07-26 08:40:17.67407+07', 'Xã Đồng Sơn', '07696', 'Xã');
INSERT INTO category."Wards" VALUES (7699, 213, 'system', '2023-07-26 08:40:17.674073+07', 'system', '2023-07-26 08:40:17.674073+07', 'Xã Tân Tiến', '07699', 'Xã');
INSERT INTO category."Wards" VALUES (7702, 221, 'system', '2023-07-26 08:40:17.674455+07', 'system', '2023-07-26 08:40:17.674455+07', 'Xã Quỳnh Sơn', '07702', 'Xã');
INSERT INTO category."Wards" VALUES (7705, 213, 'system', '2023-07-26 08:40:17.674076+07', 'system', '2023-07-26 08:40:17.674076+07', 'Xã Song Khê', '07705', 'Xã');
INSERT INTO category."Wards" VALUES (7708, 221, 'system', '2023-07-26 08:40:17.674458+07', 'system', '2023-07-26 08:40:17.674458+07', 'Xã Nội Hoàng', '07708', 'Xã');
INSERT INTO category."Wards" VALUES (7711, 221, 'system', '2023-07-26 08:40:17.674461+07', 'system', '2023-07-26 08:40:17.674461+07', 'Xã Tiền Phong', '07711', 'Xã');
INSERT INTO category."Wards" VALUES (7714, 221, 'system', '2023-07-26 08:40:17.674463+07', 'system', '2023-07-26 08:40:17.674463+07', 'Xã Xuân Phú', '07714', 'Xã');
INSERT INTO category."Wards" VALUES (7717, 221, 'system', '2023-07-26 08:40:17.674466+07', 'system', '2023-07-26 08:40:17.674466+07', 'Xã Tân Liễu', '07717', 'Xã');
INSERT INTO category."Wards" VALUES (7720, 221, 'system', '2023-07-26 08:40:17.674469+07', 'system', '2023-07-26 08:40:17.674469+07', 'Xã Trí Yên', '07720', 'Xã');
INSERT INTO category."Wards" VALUES (7723, 221, 'system', '2023-07-26 08:40:17.674471+07', 'system', '2023-07-26 08:40:17.674471+07', 'Xã Lãng Sơn', '07723', 'Xã');
INSERT INTO category."Wards" VALUES (7726, 221, 'system', '2023-07-26 08:40:17.674474+07', 'system', '2023-07-26 08:40:17.674474+07', 'Xã Yên Lư', '07726', 'Xã');
INSERT INTO category."Wards" VALUES (7729, 221, 'system', '2023-07-26 08:40:17.674476+07', 'system', '2023-07-26 08:40:17.674476+07', 'Xã Tiến Dũng', '07729', 'Xã');
INSERT INTO category."Wards" VALUES (7735, 221, 'system', '2023-07-26 08:40:17.674479+07', 'system', '2023-07-26 08:40:17.674479+07', 'Xã Đức Giang', '07735', 'Xã');
INSERT INTO category."Wards" VALUES (7738, 221, 'system', '2023-07-26 08:40:17.674482+07', 'system', '2023-07-26 08:40:17.674482+07', 'Xã Cảnh Thụy', '07738', 'Xã');
INSERT INTO category."Wards" VALUES (7741, 221, 'system', '2023-07-26 08:40:17.674484+07', 'system', '2023-07-26 08:40:17.674484+07', 'Xã Tư Mại', '07741', 'Xã');
INSERT INTO category."Wards" VALUES (7747, 221, 'system', '2023-07-26 08:40:17.674487+07', 'system', '2023-07-26 08:40:17.674487+07', 'Xã Đồng Việt', '07747', 'Xã');
INSERT INTO category."Wards" VALUES (7750, 221, 'system', '2023-07-26 08:40:17.67449+07', 'system', '2023-07-26 08:40:17.67449+07', 'Xã Đồng Phúc', '07750', 'Xã');
INSERT INTO category."Wards" VALUES (7759, 222, 'system', '2023-07-26 08:40:17.674492+07', 'system', '2023-07-26 08:40:17.674492+07', 'Xã Thượng Lan', '07759', 'Xã');
INSERT INTO category."Wards" VALUES (7762, 222, 'system', '2023-07-26 08:40:17.674495+07', 'system', '2023-07-26 08:40:17.674495+07', 'Xã Việt Tiến', '07762', 'Xã');
INSERT INTO category."Wards" VALUES (7765, 222, 'system', '2023-07-26 08:40:17.674497+07', 'system', '2023-07-26 08:40:17.674498+07', 'Xã Nghĩa Trung', '07765', 'Xã');
INSERT INTO category."Wards" VALUES (7768, 222, 'system', '2023-07-26 08:40:17.6745+07', 'system', '2023-07-26 08:40:17.6745+07', 'Xã Minh Đức', '07768', 'Xã');
INSERT INTO category."Wards" VALUES (7771, 222, 'system', '2023-07-26 08:40:17.674503+07', 'system', '2023-07-26 08:40:17.674503+07', 'Xã Hương Mai', '07771', 'Xã');
INSERT INTO category."Wards" VALUES (7774, 222, 'system', '2023-07-26 08:40:17.674505+07', 'system', '2023-07-26 08:40:17.674505+07', 'Xã Tự Lạn', '07774', 'Xã');
INSERT INTO category."Wards" VALUES (7777, 222, 'system', '2023-07-26 08:40:17.674508+07', 'system', '2023-07-26 08:40:17.674508+07', 'Thị trấn Bích Động', '07777', 'Thị trấn');
INSERT INTO category."Wards" VALUES (7780, 222, 'system', '2023-07-26 08:40:17.674512+07', 'system', '2023-07-26 08:40:17.674512+07', 'Xã Trung Sơn', '07780', 'Xã');
INSERT INTO category."Wards" VALUES (7783, 222, 'system', '2023-07-26 08:40:17.674516+07', 'system', '2023-07-26 08:40:17.674517+07', 'Xã Hồng Thái', '07783', 'Xã');
INSERT INTO category."Wards" VALUES (7786, 222, 'system', '2023-07-26 08:40:17.674521+07', 'system', '2023-07-26 08:40:17.674521+07', 'Xã Tiên Sơn', '07786', 'Xã');
INSERT INTO category."Wards" VALUES (7789, 222, 'system', '2023-07-26 08:40:17.674526+07', 'system', '2023-07-26 08:40:17.674526+07', 'Xã Tăng Tiến', '07789', 'Xã');
INSERT INTO category."Wards" VALUES (7792, 222, 'system', '2023-07-26 08:40:17.674531+07', 'system', '2023-07-26 08:40:17.674531+07', 'Xã Quảng Minh', '07792', 'Xã');
INSERT INTO category."Wards" VALUES (7795, 222, 'system', '2023-07-26 08:40:17.674536+07', 'system', '2023-07-26 08:40:17.674537+07', 'Thị trấn Nếnh', '07795', 'Thị trấn');
INSERT INTO category."Wards" VALUES (7798, 222, 'system', '2023-07-26 08:40:17.674541+07', 'system', '2023-07-26 08:40:17.674541+07', 'Xã Ninh Sơn', '07798', 'Xã');
INSERT INTO category."Wards" VALUES (7801, 222, 'system', '2023-07-26 08:40:17.674544+07', 'system', '2023-07-26 08:40:17.674544+07', 'Xã Vân Trung', '07801', 'Xã');
INSERT INTO category."Wards" VALUES (7804, 222, 'system', '2023-07-26 08:40:17.674546+07', 'system', '2023-07-26 08:40:17.674546+07', 'Xã Vân Hà', '07804', 'Xã');
INSERT INTO category."Wards" VALUES (7807, 222, 'system', '2023-07-26 08:40:17.674549+07', 'system', '2023-07-26 08:40:17.674549+07', 'Xã Quang Châu', '07807', 'Xã');
INSERT INTO category."Wards" VALUES (7813, 223, 'system', '2023-07-26 08:40:17.674551+07', 'system', '2023-07-26 08:40:17.674552+07', 'Xã Đồng Tân', '07813', 'Xã');
INSERT INTO category."Wards" VALUES (7816, 223, 'system', '2023-07-26 08:40:17.674554+07', 'system', '2023-07-26 08:40:17.674554+07', 'Xã Thanh Vân', '07816', 'Xã');
INSERT INTO category."Wards" VALUES (7819, 223, 'system', '2023-07-26 08:40:17.674557+07', 'system', '2023-07-26 08:40:17.674557+07', 'Xã Hoàng Lương', '07819', 'Xã');
INSERT INTO category."Wards" VALUES (7822, 223, 'system', '2023-07-26 08:40:17.674559+07', 'system', '2023-07-26 08:40:17.674559+07', 'Xã Hoàng Vân', '07822', 'Xã');
INSERT INTO category."Wards" VALUES (7825, 223, 'system', '2023-07-26 08:40:17.674562+07', 'system', '2023-07-26 08:40:17.674562+07', 'Xã Hoàng Thanh', '07825', 'Xã');
INSERT INTO category."Wards" VALUES (7828, 223, 'system', '2023-07-26 08:40:17.674564+07', 'system', '2023-07-26 08:40:17.674565+07', 'Xã Hoàng An', '07828', 'Xã');
INSERT INTO category."Wards" VALUES (7831, 223, 'system', '2023-07-26 08:40:17.674568+07', 'system', '2023-07-26 08:40:17.674568+07', 'Xã Ngọc Sơn', '07831', 'Xã');
INSERT INTO category."Wards" VALUES (7834, 223, 'system', '2023-07-26 08:40:17.674571+07', 'system', '2023-07-26 08:40:17.674571+07', 'Xã Thái Sơn', '07834', 'Xã');
INSERT INTO category."Wards" VALUES (7837, 223, 'system', '2023-07-26 08:40:17.674573+07', 'system', '2023-07-26 08:40:17.674573+07', 'Xã Hòa Sơn', '07837', 'Xã');
INSERT INTO category."Wards" VALUES (7840, 223, 'system', '2023-07-26 08:40:17.674576+07', 'system', '2023-07-26 08:40:17.674576+07', 'Thị trấn Thắng', '07840', 'Thị trấn');
INSERT INTO category."Wards" VALUES (7843, 223, 'system', '2023-07-26 08:40:17.674579+07', 'system', '2023-07-26 08:40:17.674579+07', 'Xã Quang Minh', '07843', 'Xã');
INSERT INTO category."Wards" VALUES (7846, 223, 'system', '2023-07-26 08:40:17.674581+07', 'system', '2023-07-26 08:40:17.674582+07', 'Xã Lương Phong', '07846', 'Xã');
INSERT INTO category."Wards" VALUES (7849, 223, 'system', '2023-07-26 08:40:17.674584+07', 'system', '2023-07-26 08:40:17.674584+07', 'Xã Hùng Sơn', '07849', 'Xã');
INSERT INTO category."Wards" VALUES (7852, 223, 'system', '2023-07-26 08:40:17.674587+07', 'system', '2023-07-26 08:40:17.674587+07', 'Xã Đại Thành', '07852', 'Xã');
INSERT INTO category."Wards" VALUES (7855, 223, 'system', '2023-07-26 08:40:17.674589+07', 'system', '2023-07-26 08:40:17.674589+07', 'Xã Thường Thắng', '07855', 'Xã');
INSERT INTO category."Wards" VALUES (7858, 223, 'system', '2023-07-26 08:40:17.674592+07', 'system', '2023-07-26 08:40:17.674592+07', 'Xã Hợp Thịnh', '07858', 'Xã');
INSERT INTO category."Wards" VALUES (7861, 223, 'system', '2023-07-26 08:40:17.674595+07', 'system', '2023-07-26 08:40:17.674595+07', 'Xã Danh Thắng', '07861', 'Xã');
INSERT INTO category."Wards" VALUES (7864, 223, 'system', '2023-07-26 08:40:17.674597+07', 'system', '2023-07-26 08:40:17.674597+07', 'Xã Mai Trung', '07864', 'Xã');
INSERT INTO category."Wards" VALUES (7867, 223, 'system', '2023-07-26 08:40:17.6746+07', 'system', '2023-07-26 08:40:17.6746+07', 'Xã Đoan Bái', '07867', 'Xã');
INSERT INTO category."Wards" VALUES (7870, 223, 'system', '2023-07-26 08:40:17.674602+07', 'system', '2023-07-26 08:40:17.674602+07', 'Xã Bắc Lý', '07870', 'Xã');
INSERT INTO category."Wards" VALUES (7873, 223, 'system', '2023-07-26 08:40:17.674605+07', 'system', '2023-07-26 08:40:17.674605+07', 'Xã Xuân Cẩm', '07873', 'Xã');
INSERT INTO category."Wards" VALUES (7876, 223, 'system', '2023-07-26 08:40:17.674607+07', 'system', '2023-07-26 08:40:17.674607+07', 'Xã Hương Lâm', '07876', 'Xã');
INSERT INTO category."Wards" VALUES (7879, 223, 'system', '2023-07-26 08:40:17.67461+07', 'system', '2023-07-26 08:40:17.67461+07', 'Xã Đông Lỗ', '07879', 'Xã');
INSERT INTO category."Wards" VALUES (7882, 223, 'system', '2023-07-26 08:40:17.674613+07', 'system', '2023-07-26 08:40:17.674613+07', 'Xã Châu Minh', '07882', 'Xã');
INSERT INTO category."Wards" VALUES (7885, 223, 'system', '2023-07-26 08:40:17.674615+07', 'system', '2023-07-26 08:40:17.674615+07', 'Xã Mai Đình', '07885', 'Xã');
INSERT INTO category."Wards" VALUES (7888, 227, 'system', '2023-07-26 08:40:17.674618+07', 'system', '2023-07-26 08:40:17.674618+07', 'Phường Dữu Lâu', '07888', 'Phường');
INSERT INTO category."Wards" VALUES (7891, 227, 'system', '2023-07-26 08:40:17.674621+07', 'system', '2023-07-26 08:40:17.674621+07', 'Phường Vân Cơ', '07891', 'Phường');
INSERT INTO category."Wards" VALUES (7894, 227, 'system', '2023-07-26 08:40:17.674623+07', 'system', '2023-07-26 08:40:17.674624+07', 'Phường Nông Trang', '07894', 'Phường');
INSERT INTO category."Wards" VALUES (7897, 227, 'system', '2023-07-26 08:40:17.674626+07', 'system', '2023-07-26 08:40:17.674626+07', 'Phường Tân Dân', '07897', 'Phường');
INSERT INTO category."Wards" VALUES (7900, 227, 'system', '2023-07-26 08:40:17.674629+07', 'system', '2023-07-26 08:40:17.674629+07', 'Phường Gia Cẩm', '07900', 'Phường');
INSERT INTO category."Wards" VALUES (7903, 227, 'system', '2023-07-26 08:40:17.674632+07', 'system', '2023-07-26 08:40:17.674632+07', 'Phường Tiên Cát', '07903', 'Phường');
INSERT INTO category."Wards" VALUES (7906, 227, 'system', '2023-07-26 08:40:17.674635+07', 'system', '2023-07-26 08:40:17.674635+07', 'Phường Thọ Sơn', '07906', 'Phường');
INSERT INTO category."Wards" VALUES (7909, 227, 'system', '2023-07-26 08:40:17.674637+07', 'system', '2023-07-26 08:40:17.674637+07', 'Phường Thanh Miếu', '07909', 'Phường');
INSERT INTO category."Wards" VALUES (7912, 227, 'system', '2023-07-26 08:40:17.67464+07', 'system', '2023-07-26 08:40:17.67464+07', 'Phường Bạch Hạc', '07912', 'Phường');
INSERT INTO category."Wards" VALUES (7915, 227, 'system', '2023-07-26 08:40:17.674643+07', 'system', '2023-07-26 08:40:17.674643+07', 'Phường Bến Gót', '07915', 'Phường');
INSERT INTO category."Wards" VALUES (7918, 227, 'system', '2023-07-26 08:40:17.674645+07', 'system', '2023-07-26 08:40:17.674645+07', 'Phường Vân Phú', '07918', 'Phường');
INSERT INTO category."Wards" VALUES (7921, 227, 'system', '2023-07-26 08:40:17.674648+07', 'system', '2023-07-26 08:40:17.674648+07', 'Xã Phượng Lâu', '07921', 'Xã');
INSERT INTO category."Wards" VALUES (7924, 227, 'system', '2023-07-26 08:40:17.674651+07', 'system', '2023-07-26 08:40:17.674651+07', 'Xã Thụy Vân', '07924', 'Xã');
INSERT INTO category."Wards" VALUES (7927, 227, 'system', '2023-07-26 08:40:17.674653+07', 'system', '2023-07-26 08:40:17.674653+07', 'Phường Minh Phương', '07927', 'Phường');
INSERT INTO category."Wards" VALUES (7930, 227, 'system', '2023-07-26 08:40:17.674656+07', 'system', '2023-07-26 08:40:17.674656+07', 'Xã Trưng Vương', '07930', 'Xã');
INSERT INTO category."Wards" VALUES (7933, 227, 'system', '2023-07-26 08:40:17.674659+07', 'system', '2023-07-26 08:40:17.674659+07', 'Phường Minh Nông', '07933', 'Phường');
INSERT INTO category."Wards" VALUES (7936, 227, 'system', '2023-07-26 08:40:17.674662+07', 'system', '2023-07-26 08:40:17.674662+07', 'Xã Sông Lô', '07936', 'Xã');
INSERT INTO category."Wards" VALUES (7942, 228, 'system', '2023-07-26 08:40:17.674678+07', 'system', '2023-07-26 08:40:17.674678+07', 'Phường Hùng Vương', '07942', 'Phường');
INSERT INTO category."Wards" VALUES (7945, 228, 'system', '2023-07-26 08:40:17.67468+07', 'system', '2023-07-26 08:40:17.674681+07', 'Phường Phong Châu', '07945', 'Phường');
INSERT INTO category."Wards" VALUES (7948, 228, 'system', '2023-07-26 08:40:17.674683+07', 'system', '2023-07-26 08:40:17.674683+07', 'Phường Âu Cơ', '07948', 'Phường');
INSERT INTO category."Wards" VALUES (7951, 228, 'system', '2023-07-26 08:40:17.674686+07', 'system', '2023-07-26 08:40:17.674686+07', 'Xã Hà Lộc', '07951', 'Xã');
INSERT INTO category."Wards" VALUES (7954, 228, 'system', '2023-07-26 08:40:17.674689+07', 'system', '2023-07-26 08:40:17.674689+07', 'Xã Phú Hộ', '07954', 'Xã');
INSERT INTO category."Wards" VALUES (7957, 228, 'system', '2023-07-26 08:40:17.674692+07', 'system', '2023-07-26 08:40:17.674692+07', 'Xã Văn Lung', '07957', 'Xã');
INSERT INTO category."Wards" VALUES (7960, 228, 'system', '2023-07-26 08:40:17.674694+07', 'system', '2023-07-26 08:40:17.674694+07', 'Xã Thanh Minh', '07960', 'Xã');
INSERT INTO category."Wards" VALUES (7963, 228, 'system', '2023-07-26 08:40:17.674697+07', 'system', '2023-07-26 08:40:17.674697+07', 'Xã Hà Thạch', '07963', 'Xã');
INSERT INTO category."Wards" VALUES (7966, 228, 'system', '2023-07-26 08:40:17.674699+07', 'system', '2023-07-26 08:40:17.674699+07', 'Phường Thanh Vinh', '07966', 'Phường');
INSERT INTO category."Wards" VALUES (7969, 230, 'system', '2023-07-26 08:40:17.674702+07', 'system', '2023-07-26 08:40:17.674702+07', 'Thị trấn Đoan Hùng', '07969', 'Thị trấn');
INSERT INTO category."Wards" VALUES (7975, 230, 'system', '2023-07-26 08:40:17.674705+07', 'system', '2023-07-26 08:40:17.674705+07', 'Xã Hùng Xuyên', '07975', 'Xã');
INSERT INTO category."Wards" VALUES (7981, 230, 'system', '2023-07-26 08:40:17.674707+07', 'system', '2023-07-26 08:40:17.674708+07', 'Xã Bằng Luân', '07981', 'Xã');
INSERT INTO category."Wards" VALUES (7984, 230, 'system', '2023-07-26 08:40:17.67471+07', 'system', '2023-07-26 08:40:17.67471+07', 'Xã Vân Du', '07984', 'Xã');
INSERT INTO category."Wards" VALUES (7987, 230, 'system', '2023-07-26 08:40:17.674713+07', 'system', '2023-07-26 08:40:17.674713+07', 'Xã Phú Lâm', '07987', 'Xã');
INSERT INTO category."Wards" VALUES (7993, 230, 'system', '2023-07-26 08:40:17.674715+07', 'system', '2023-07-26 08:40:17.674715+07', 'Xã Minh Lương', '07993', 'Xã');
INSERT INTO category."Wards" VALUES (7996, 230, 'system', '2023-07-26 08:40:17.674718+07', 'system', '2023-07-26 08:40:17.674718+07', 'Xã Bằng Doãn', '07996', 'Xã');
INSERT INTO category."Wards" VALUES (7999, 230, 'system', '2023-07-26 08:40:17.67472+07', 'system', '2023-07-26 08:40:17.67472+07', 'Xã Chí Đám', '07999', 'Xã');
INSERT INTO category."Wards" VALUES (8005, 230, 'system', '2023-07-26 08:40:17.674723+07', 'system', '2023-07-26 08:40:17.674723+07', 'Xã Phúc Lai', '08005', 'Xã');
INSERT INTO category."Wards" VALUES (8008, 230, 'system', '2023-07-26 08:40:17.674726+07', 'system', '2023-07-26 08:40:17.674726+07', 'Xã Ngọc Quan', '08008', 'Xã');
INSERT INTO category."Wards" VALUES (8014, 230, 'system', '2023-07-26 08:40:17.674728+07', 'system', '2023-07-26 08:40:17.674728+07', 'Xã Hợp Nhất', '08014', 'Xã');
INSERT INTO category."Wards" VALUES (8017, 230, 'system', '2023-07-26 08:40:17.674731+07', 'system', '2023-07-26 08:40:17.674731+07', 'Xã Sóc Đăng', '08017', 'Xã');
INSERT INTO category."Wards" VALUES (8023, 230, 'system', '2023-07-26 08:40:17.674733+07', 'system', '2023-07-26 08:40:17.674733+07', 'Xã Tây Cốc', '08023', 'Xã');
INSERT INTO category."Wards" VALUES (8026, 230, 'system', '2023-07-26 08:40:17.674736+07', 'system', '2023-07-26 08:40:17.674736+07', 'Xã Yên Kiện', '08026', 'Xã');
INSERT INTO category."Wards" VALUES (8029, 230, 'system', '2023-07-26 08:40:17.674739+07', 'system', '2023-07-26 08:40:17.674739+07', 'Xã Hùng Long', '08029', 'Xã');
INSERT INTO category."Wards" VALUES (8032, 230, 'system', '2023-07-26 08:40:17.674741+07', 'system', '2023-07-26 08:40:17.674741+07', 'Xã Vụ Quang', '08032', 'Xã');
INSERT INTO category."Wards" VALUES (8035, 230, 'system', '2023-07-26 08:40:17.674744+07', 'system', '2023-07-26 08:40:17.674744+07', 'Xã Vân Đồn', '08035', 'Xã');
INSERT INTO category."Wards" VALUES (8038, 230, 'system', '2023-07-26 08:40:17.674746+07', 'system', '2023-07-26 08:40:17.674746+07', 'Xã Tiêu Sơn', '08038', 'Xã');
INSERT INTO category."Wards" VALUES (8041, 230, 'system', '2023-07-26 08:40:17.674749+07', 'system', '2023-07-26 08:40:17.674749+07', 'Xã Minh Tiến', '08041', 'Xã');
INSERT INTO category."Wards" VALUES (8044, 230, 'system', '2023-07-26 08:40:17.674751+07', 'system', '2023-07-26 08:40:17.674751+07', 'Xã Minh Phú', '08044', 'Xã');
INSERT INTO category."Wards" VALUES (8047, 230, 'system', '2023-07-26 08:40:17.674754+07', 'system', '2023-07-26 08:40:17.674754+07', 'Xã Chân Mộng', '08047', 'Xã');
INSERT INTO category."Wards" VALUES (8050, 230, 'system', '2023-07-26 08:40:17.674757+07', 'system', '2023-07-26 08:40:17.674758+07', 'Xã Ca Đình', '08050', 'Xã');
INSERT INTO category."Wards" VALUES (8053, 231, 'system', '2023-07-26 08:40:17.67476+07', 'system', '2023-07-26 08:40:17.67476+07', 'Thị trấn Hạ Hoà', '08053', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8056, 231, 'system', '2023-07-26 08:40:17.674763+07', 'system', '2023-07-26 08:40:17.674763+07', 'Xã Đại Phạm', '08056', 'Xã');
INSERT INTO category."Wards" VALUES (8062, 231, 'system', '2023-07-26 08:40:17.674766+07', 'system', '2023-07-26 08:40:17.674766+07', 'Xã Đan Thượng', '08062', 'Xã');
INSERT INTO category."Wards" VALUES (8065, 231, 'system', '2023-07-26 08:40:17.674768+07', 'system', '2023-07-26 08:40:17.674768+07', 'Xã Hà Lương', '08065', 'Xã');
INSERT INTO category."Wards" VALUES (8071, 231, 'system', '2023-07-26 08:40:17.674771+07', 'system', '2023-07-26 08:40:17.674771+07', 'Xã Tứ Hiệp', '08071', 'Xã');
INSERT INTO category."Wards" VALUES (8080, 231, 'system', '2023-07-26 08:40:17.674774+07', 'system', '2023-07-26 08:40:17.674774+07', 'Xã Hiền Lương', '08080', 'Xã');
INSERT INTO category."Wards" VALUES (8089, 231, 'system', '2023-07-26 08:40:17.674776+07', 'system', '2023-07-26 08:40:17.674776+07', 'Xã Phương Viên', '08089', 'Xã');
INSERT INTO category."Wards" VALUES (8092, 231, 'system', '2023-07-26 08:40:17.674779+07', 'system', '2023-07-26 08:40:17.674779+07', 'Xã Gia Điền', '08092', 'Xã');
INSERT INTO category."Wards" VALUES (8095, 231, 'system', '2023-07-26 08:40:17.674782+07', 'system', '2023-07-26 08:40:17.674782+07', 'Xã Ấm Hạ', '08095', 'Xã');
INSERT INTO category."Wards" VALUES (8104, 231, 'system', '2023-07-26 08:40:17.674784+07', 'system', '2023-07-26 08:40:17.674784+07', 'Xã Hương Xạ', '08104', 'Xã');
INSERT INTO category."Wards" VALUES (8110, 231, 'system', '2023-07-26 08:40:17.674787+07', 'system', '2023-07-26 08:40:17.674787+07', 'Xã Xuân Áng', '08110', 'Xã');
INSERT INTO category."Wards" VALUES (8113, 231, 'system', '2023-07-26 08:40:17.674789+07', 'system', '2023-07-26 08:40:17.674789+07', 'Xã Yên Kỳ', '08113', 'Xã');
INSERT INTO category."Wards" VALUES (8119, 231, 'system', '2023-07-26 08:40:17.674792+07', 'system', '2023-07-26 08:40:17.674792+07', 'Xã Minh Hạc', '08119', 'Xã');
INSERT INTO category."Wards" VALUES (8122, 231, 'system', '2023-07-26 08:40:17.674794+07', 'system', '2023-07-26 08:40:17.674794+07', 'Xã Lang Sơn', '08122', 'Xã');
INSERT INTO category."Wards" VALUES (8125, 231, 'system', '2023-07-26 08:40:17.674797+07', 'system', '2023-07-26 08:40:17.674797+07', 'Xã Bằng Giã', '08125', 'Xã');
INSERT INTO category."Wards" VALUES (8128, 231, 'system', '2023-07-26 08:40:17.674799+07', 'system', '2023-07-26 08:40:17.674799+07', 'Xã Yên Luật', '08128', 'Xã');
INSERT INTO category."Wards" VALUES (8131, 231, 'system', '2023-07-26 08:40:17.674802+07', 'system', '2023-07-26 08:40:17.674802+07', 'Xã Vô Tranh', '08131', 'Xã');
INSERT INTO category."Wards" VALUES (8134, 231, 'system', '2023-07-26 08:40:17.674805+07', 'system', '2023-07-26 08:40:17.674805+07', 'Xã Văn Lang', '08134', 'Xã');
INSERT INTO category."Wards" VALUES (8140, 231, 'system', '2023-07-26 08:40:17.674807+07', 'system', '2023-07-26 08:40:17.674807+07', 'Xã Minh Côi', '08140', 'Xã');
INSERT INTO category."Wards" VALUES (8143, 231, 'system', '2023-07-26 08:40:17.67481+07', 'system', '2023-07-26 08:40:17.67481+07', 'Xã Vĩnh Chân', '08143', 'Xã');
INSERT INTO category."Wards" VALUES (8152, 232, 'system', '2023-07-26 08:40:17.674812+07', 'system', '2023-07-26 08:40:17.674813+07', 'Thị trấn Thanh Ba', '08152', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8156, 232, 'system', '2023-07-26 08:40:17.674815+07', 'system', '2023-07-26 08:40:17.674815+07', 'Xã Vân Lĩnh', '08156', 'Xã');
INSERT INTO category."Wards" VALUES (8158, 232, 'system', '2023-07-26 08:40:17.674818+07', 'system', '2023-07-26 08:40:17.674818+07', 'Xã Đông Lĩnh', '08158', 'Xã');
INSERT INTO category."Wards" VALUES (8161, 232, 'system', '2023-07-26 08:40:17.67482+07', 'system', '2023-07-26 08:40:17.67482+07', 'Xã Đại An', '08161', 'Xã');
INSERT INTO category."Wards" VALUES (8164, 232, 'system', '2023-07-26 08:40:17.674823+07', 'system', '2023-07-26 08:40:17.674823+07', 'Xã Hanh Cù', '08164', 'Xã');
INSERT INTO category."Wards" VALUES (8170, 232, 'system', '2023-07-26 08:40:17.674826+07', 'system', '2023-07-26 08:40:17.674826+07', 'Xã Đồng Xuân', '08170', 'Xã');
INSERT INTO category."Wards" VALUES (8173, 232, 'system', '2023-07-26 08:40:17.674828+07', 'system', '2023-07-26 08:40:17.674828+07', 'Xã Quảng Yên', '08173', 'Xã');
INSERT INTO category."Wards" VALUES (8179, 232, 'system', '2023-07-26 08:40:17.674831+07', 'system', '2023-07-26 08:40:17.674831+07', 'Xã Ninh Dân', '08179', 'Xã');
INSERT INTO category."Wards" VALUES (8194, 232, 'system', '2023-07-26 08:40:17.674833+07', 'system', '2023-07-26 08:40:17.674833+07', 'Xã Võ Lao', '08194', 'Xã');
INSERT INTO category."Wards" VALUES (8197, 232, 'system', '2023-07-26 08:40:17.674836+07', 'system', '2023-07-26 08:40:17.674836+07', 'Xã Khải Xuân', '08197', 'Xã');
INSERT INTO category."Wards" VALUES (8200, 232, 'system', '2023-07-26 08:40:17.674839+07', 'system', '2023-07-26 08:40:17.674839+07', 'Xã Mạn Lạn', '08200', 'Xã');
INSERT INTO category."Wards" VALUES (8203, 232, 'system', '2023-07-26 08:40:17.674841+07', 'system', '2023-07-26 08:40:17.674841+07', 'Xã Hoàng Cương', '08203', 'Xã');
INSERT INTO category."Wards" VALUES (8206, 232, 'system', '2023-07-26 08:40:17.674844+07', 'system', '2023-07-26 08:40:17.674844+07', 'Xã Chí Tiên', '08206', 'Xã');
INSERT INTO category."Wards" VALUES (8209, 232, 'system', '2023-07-26 08:40:17.674846+07', 'system', '2023-07-26 08:40:17.674846+07', 'Xã Đông Thành', '08209', 'Xã');
INSERT INTO category."Wards" VALUES (8215, 232, 'system', '2023-07-26 08:40:17.674849+07', 'system', '2023-07-26 08:40:17.674849+07', 'Xã Sơn Cương', '08215', 'Xã');
INSERT INTO category."Wards" VALUES (8218, 232, 'system', '2023-07-26 08:40:17.674852+07', 'system', '2023-07-26 08:40:17.674852+07', 'Xã Thanh Hà', '08218', 'Xã');
INSERT INTO category."Wards" VALUES (8221, 232, 'system', '2023-07-26 08:40:17.674855+07', 'system', '2023-07-26 08:40:17.674855+07', 'Xã Đỗ Sơn', '08221', 'Xã');
INSERT INTO category."Wards" VALUES (8224, 232, 'system', '2023-07-26 08:40:17.674858+07', 'system', '2023-07-26 08:40:17.674858+07', 'Xã Đỗ Xuyên', '08224', 'Xã');
INSERT INTO category."Wards" VALUES (8227, 232, 'system', '2023-07-26 08:40:17.67486+07', 'system', '2023-07-26 08:40:17.67486+07', 'Xã Lương Lỗ', '08227', 'Xã');
INSERT INTO category."Wards" VALUES (8230, 233, 'system', '2023-07-26 08:40:17.674863+07', 'system', '2023-07-26 08:40:17.674863+07', 'Thị trấn Phong Châu', '08230', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8233, 233, 'system', '2023-07-26 08:40:17.674866+07', 'system', '2023-07-26 08:40:17.674866+07', 'Xã Phú Mỹ', '08233', 'Xã');
INSERT INTO category."Wards" VALUES (8234, 233, 'system', '2023-07-26 08:40:17.674868+07', 'system', '2023-07-26 08:40:17.674869+07', 'Xã Lệ Mỹ', '08234', 'Xã');
INSERT INTO category."Wards" VALUES (8236, 233, 'system', '2023-07-26 08:40:17.674871+07', 'system', '2023-07-26 08:40:17.674871+07', 'Xã Liên Hoa', '08236', 'Xã');
INSERT INTO category."Wards" VALUES (8239, 233, 'system', '2023-07-26 08:40:17.674874+07', 'system', '2023-07-26 08:40:17.674874+07', 'Xã Trạm Thản', '08239', 'Xã');
INSERT INTO category."Wards" VALUES (8242, 233, 'system', '2023-07-26 08:40:17.674876+07', 'system', '2023-07-26 08:40:17.674876+07', 'Xã Trị Quận', '08242', 'Xã');
INSERT INTO category."Wards" VALUES (8245, 233, 'system', '2023-07-26 08:40:17.674879+07', 'system', '2023-07-26 08:40:17.674879+07', 'Xã Trung Giáp', '08245', 'Xã');
INSERT INTO category."Wards" VALUES (8248, 233, 'system', '2023-07-26 08:40:17.674882+07', 'system', '2023-07-26 08:40:17.674882+07', 'Xã Tiên Phú', '08248', 'Xã');
INSERT INTO category."Wards" VALUES (8251, 233, 'system', '2023-07-26 08:40:17.674884+07', 'system', '2023-07-26 08:40:17.674884+07', 'Xã Hạ Giáp', '08251', 'Xã');
INSERT INTO category."Wards" VALUES (8254, 233, 'system', '2023-07-26 08:40:17.674887+07', 'system', '2023-07-26 08:40:17.674887+07', 'Xã Bảo Thanh', '08254', 'Xã');
INSERT INTO category."Wards" VALUES (8257, 233, 'system', '2023-07-26 08:40:17.67489+07', 'system', '2023-07-26 08:40:17.67489+07', 'Xã Phú Lộc', '08257', 'Xã');
INSERT INTO category."Wards" VALUES (8260, 233, 'system', '2023-07-26 08:40:17.674892+07', 'system', '2023-07-26 08:40:17.674892+07', 'Xã Gia Thanh', '08260', 'Xã');
INSERT INTO category."Wards" VALUES (8263, 233, 'system', '2023-07-26 08:40:17.674895+07', 'system', '2023-07-26 08:40:17.674895+07', 'Xã Tiên Du', '08263', 'Xã');
INSERT INTO category."Wards" VALUES (8266, 233, 'system', '2023-07-26 08:40:17.674897+07', 'system', '2023-07-26 08:40:17.674897+07', 'Xã Phú Nham', '08266', 'Xã');
INSERT INTO category."Wards" VALUES (8272, 233, 'system', '2023-07-26 08:40:17.6749+07', 'system', '2023-07-26 08:40:17.6749+07', 'Xã An Đạo', '08272', 'Xã');
INSERT INTO category."Wards" VALUES (8275, 233, 'system', '2023-07-26 08:40:17.674902+07', 'system', '2023-07-26 08:40:17.674902+07', 'Xã Bình Phú', '08275', 'Xã');
INSERT INTO category."Wards" VALUES (8278, 233, 'system', '2023-07-26 08:40:17.674905+07', 'system', '2023-07-26 08:40:17.674905+07', 'Xã Phù Ninh', '08278', 'Xã');
INSERT INTO category."Wards" VALUES (8281, 227, 'system', '2023-07-26 08:40:17.674665+07', 'system', '2023-07-26 08:40:17.674665+07', 'Xã Kim Đức', '08281', 'Xã');
INSERT INTO category."Wards" VALUES (8287, 227, 'system', '2023-07-26 08:40:17.674667+07', 'system', '2023-07-26 08:40:17.674667+07', 'Xã Hùng Lô', '08287', 'Xã');
INSERT INTO category."Wards" VALUES (8290, 234, 'system', '2023-07-26 08:40:17.674907+07', 'system', '2023-07-26 08:40:17.674907+07', 'Thị trấn Yên Lập', '08290', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8293, 234, 'system', '2023-07-26 08:40:17.67491+07', 'system', '2023-07-26 08:40:17.67491+07', 'Xã Mỹ Lung', '08293', 'Xã');
INSERT INTO category."Wards" VALUES (8296, 234, 'system', '2023-07-26 08:40:17.674913+07', 'system', '2023-07-26 08:40:17.674913+07', 'Xã Mỹ Lương', '08296', 'Xã');
INSERT INTO category."Wards" VALUES (8299, 234, 'system', '2023-07-26 08:40:17.674916+07', 'system', '2023-07-26 08:40:17.674916+07', 'Xã Lương Sơn', '08299', 'Xã');
INSERT INTO category."Wards" VALUES (8302, 234, 'system', '2023-07-26 08:40:17.674918+07', 'system', '2023-07-26 08:40:17.674918+07', 'Xã Xuân An', '08302', 'Xã');
INSERT INTO category."Wards" VALUES (8305, 234, 'system', '2023-07-26 08:40:17.674921+07', 'system', '2023-07-26 08:40:17.674921+07', 'Xã Xuân Viên', '08305', 'Xã');
INSERT INTO category."Wards" VALUES (8308, 234, 'system', '2023-07-26 08:40:17.674923+07', 'system', '2023-07-26 08:40:17.674924+07', 'Xã Xuân Thủy', '08308', 'Xã');
INSERT INTO category."Wards" VALUES (8311, 234, 'system', '2023-07-26 08:40:17.674926+07', 'system', '2023-07-26 08:40:17.674926+07', 'Xã Trung Sơn', '08311', 'Xã');
INSERT INTO category."Wards" VALUES (8314, 234, 'system', '2023-07-26 08:40:17.674928+07', 'system', '2023-07-26 08:40:17.674929+07', 'Xã Hưng Long', '08314', 'Xã');
INSERT INTO category."Wards" VALUES (8317, 234, 'system', '2023-07-26 08:40:17.674931+07', 'system', '2023-07-26 08:40:17.674931+07', 'Xã Nga Hoàng', '08317', 'Xã');
INSERT INTO category."Wards" VALUES (8320, 234, 'system', '2023-07-26 08:40:17.674934+07', 'system', '2023-07-26 08:40:17.674934+07', 'Xã Đồng Lạc', '08320', 'Xã');
INSERT INTO category."Wards" VALUES (8323, 234, 'system', '2023-07-26 08:40:17.674936+07', 'system', '2023-07-26 08:40:17.674936+07', 'Xã Thượng Long', '08323', 'Xã');
INSERT INTO category."Wards" VALUES (8326, 234, 'system', '2023-07-26 08:40:17.674939+07', 'system', '2023-07-26 08:40:17.674939+07', 'Xã Đồng Thịnh', '08326', 'Xã');
INSERT INTO category."Wards" VALUES (8329, 234, 'system', '2023-07-26 08:40:17.674941+07', 'system', '2023-07-26 08:40:17.674941+07', 'Xã Phúc Khánh', '08329', 'Xã');
INSERT INTO category."Wards" VALUES (8332, 234, 'system', '2023-07-26 08:40:17.674944+07', 'system', '2023-07-26 08:40:17.674944+07', 'Xã Minh Hòa', '08332', 'Xã');
INSERT INTO category."Wards" VALUES (8335, 234, 'system', '2023-07-26 08:40:17.674947+07', 'system', '2023-07-26 08:40:17.674947+07', 'Xã Ngọc Lập', '08335', 'Xã');
INSERT INTO category."Wards" VALUES (8338, 234, 'system', '2023-07-26 08:40:17.67495+07', 'system', '2023-07-26 08:40:17.67495+07', 'Xã Ngọc Đồng', '08338', 'Xã');
INSERT INTO category."Wards" VALUES (8341, 235, 'system', '2023-07-26 08:40:17.674953+07', 'system', '2023-07-26 08:40:17.674953+07', 'Thị trấn Cẩm Khê', '08341', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8344, 235, 'system', '2023-07-26 08:40:17.674956+07', 'system', '2023-07-26 08:40:17.674956+07', 'Xã Tiên Lương', '08344', 'Xã');
INSERT INTO category."Wards" VALUES (8347, 235, 'system', '2023-07-26 08:40:17.674958+07', 'system', '2023-07-26 08:40:17.674958+07', 'Xã Tuy Lộc', '08347', 'Xã');
INSERT INTO category."Wards" VALUES (8350, 235, 'system', '2023-07-26 08:40:17.674961+07', 'system', '2023-07-26 08:40:17.674961+07', 'Xã Ngô Xá', '08350', 'Xã');
INSERT INTO category."Wards" VALUES (8353, 235, 'system', '2023-07-26 08:40:17.674963+07', 'system', '2023-07-26 08:40:17.674963+07', 'Xã Minh Tân', '08353', 'Xã');
INSERT INTO category."Wards" VALUES (8356, 235, 'system', '2023-07-26 08:40:17.674966+07', 'system', '2023-07-26 08:40:17.674966+07', 'Xã Phượng Vĩ', '08356', 'Xã');
INSERT INTO category."Wards" VALUES (8362, 235, 'system', '2023-07-26 08:40:17.674969+07', 'system', '2023-07-26 08:40:17.674969+07', 'Xã Thụy Liễu', '08362', 'Xã');
INSERT INTO category."Wards" VALUES (8374, 235, 'system', '2023-07-26 08:40:17.674971+07', 'system', '2023-07-26 08:40:17.674971+07', 'Xã Tùng Khê', '08374', 'Xã');
INSERT INTO category."Wards" VALUES (8377, 235, 'system', '2023-07-26 08:40:17.674974+07', 'system', '2023-07-26 08:40:17.674974+07', 'Xã Tam Sơn', '08377', 'Xã');
INSERT INTO category."Wards" VALUES (8380, 235, 'system', '2023-07-26 08:40:17.674976+07', 'system', '2023-07-26 08:40:17.674976+07', 'Xã Văn Bán', '08380', 'Xã');
INSERT INTO category."Wards" VALUES (8383, 235, 'system', '2023-07-26 08:40:17.674979+07', 'system', '2023-07-26 08:40:17.674979+07', 'Xã Cấp Dẫn', '08383', 'Xã');
INSERT INTO category."Wards" VALUES (8389, 235, 'system', '2023-07-26 08:40:17.674981+07', 'system', '2023-07-26 08:40:17.674981+07', 'Xã Xương Thịnh', '08389', 'Xã');
INSERT INTO category."Wards" VALUES (8392, 235, 'system', '2023-07-26 08:40:17.674984+07', 'system', '2023-07-26 08:40:17.674984+07', 'Xã Phú Khê', '08392', 'Xã');
INSERT INTO category."Wards" VALUES (8395, 235, 'system', '2023-07-26 08:40:17.674987+07', 'system', '2023-07-26 08:40:17.674987+07', 'Xã Sơn Tình', '08395', 'Xã');
INSERT INTO category."Wards" VALUES (8398, 235, 'system', '2023-07-26 08:40:17.674989+07', 'system', '2023-07-26 08:40:17.674989+07', 'Xã Yên Tập', '08398', 'Xã');
INSERT INTO category."Wards" VALUES (8401, 235, 'system', '2023-07-26 08:40:17.674992+07', 'system', '2023-07-26 08:40:17.674992+07', 'Xã Hương Lung', '08401', 'Xã');
INSERT INTO category."Wards" VALUES (8404, 235, 'system', '2023-07-26 08:40:17.674995+07', 'system', '2023-07-26 08:40:17.674995+07', 'Xã Tạ Xá', '08404', 'Xã');
INSERT INTO category."Wards" VALUES (8407, 235, 'system', '2023-07-26 08:40:17.674997+07', 'system', '2023-07-26 08:40:17.674997+07', 'Xã Phú Lạc', '08407', 'Xã');
INSERT INTO category."Wards" VALUES (8413, 235, 'system', '2023-07-26 08:40:17.675+07', 'system', '2023-07-26 08:40:17.675+07', 'Xã Chương Xá', '08413', 'Xã');
INSERT INTO category."Wards" VALUES (8416, 235, 'system', '2023-07-26 08:40:17.675002+07', 'system', '2023-07-26 08:40:17.675002+07', 'Xã Hùng Việt', '08416', 'Xã');
INSERT INTO category."Wards" VALUES (8419, 235, 'system', '2023-07-26 08:40:17.675005+07', 'system', '2023-07-26 08:40:17.675005+07', 'Xã Văn Khúc', '08419', 'Xã');
INSERT INTO category."Wards" VALUES (8422, 235, 'system', '2023-07-26 08:40:17.675008+07', 'system', '2023-07-26 08:40:17.675008+07', 'Xã Yên Dưỡng', '08422', 'Xã');
INSERT INTO category."Wards" VALUES (8428, 235, 'system', '2023-07-26 08:40:17.67501+07', 'system', '2023-07-26 08:40:17.67501+07', 'Xã Điêu Lương', '08428', 'Xã');
INSERT INTO category."Wards" VALUES (8431, 235, 'system', '2023-07-26 08:40:17.675013+07', 'system', '2023-07-26 08:40:17.675013+07', 'Xã Đồng Lương', '08431', 'Xã');
INSERT INTO category."Wards" VALUES (8434, 236, 'system', '2023-07-26 08:40:17.675016+07', 'system', '2023-07-26 08:40:17.675016+07', 'Thị trấn Hưng Hoá', '08434', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8440, 236, 'system', '2023-07-26 08:40:17.675019+07', 'system', '2023-07-26 08:40:17.675019+07', 'Xã Hiền Quan', '08440', 'Xã');
INSERT INTO category."Wards" VALUES (8443, 236, 'system', '2023-07-26 08:40:17.675021+07', 'system', '2023-07-26 08:40:17.675021+07', 'Xã Bắc Sơn', '08443', 'Xã');
INSERT INTO category."Wards" VALUES (8446, 236, 'system', '2023-07-26 08:40:17.675023+07', 'system', '2023-07-26 08:40:17.675023+07', 'Xã Thanh Uyên', '08446', 'Xã');
INSERT INTO category."Wards" VALUES (8461, 236, 'system', '2023-07-26 08:40:17.675026+07', 'system', '2023-07-26 08:40:17.675026+07', 'Xã Lam Sơn', '08461', 'Xã');
INSERT INTO category."Wards" VALUES (8467, 236, 'system', '2023-07-26 08:40:17.675029+07', 'system', '2023-07-26 08:40:17.675029+07', 'Xã Vạn Xuân', '08467', 'Xã');
INSERT INTO category."Wards" VALUES (8470, 236, 'system', '2023-07-26 08:40:17.675031+07', 'system', '2023-07-26 08:40:17.675031+07', 'Xã Quang Húc', '08470', 'Xã');
INSERT INTO category."Wards" VALUES (8473, 236, 'system', '2023-07-26 08:40:17.675034+07', 'system', '2023-07-26 08:40:17.675034+07', 'Xã Hương Nộn', '08473', 'Xã');
INSERT INTO category."Wards" VALUES (8476, 236, 'system', '2023-07-26 08:40:17.675036+07', 'system', '2023-07-26 08:40:17.675036+07', 'Xã Tề Lễ', '08476', 'Xã');
INSERT INTO category."Wards" VALUES (8479, 236, 'system', '2023-07-26 08:40:17.675039+07', 'system', '2023-07-26 08:40:17.675039+07', 'Xã Thọ Văn', '08479', 'Xã');
INSERT INTO category."Wards" VALUES (8482, 236, 'system', '2023-07-26 08:40:17.675042+07', 'system', '2023-07-26 08:40:17.675042+07', 'Xã Dị Nậu', '08482', 'Xã');
INSERT INTO category."Wards" VALUES (8491, 236, 'system', '2023-07-26 08:40:17.675044+07', 'system', '2023-07-26 08:40:17.675044+07', 'Xã Dân Quyền', '08491', 'Xã');
INSERT INTO category."Wards" VALUES (8494, 237, 'system', '2023-07-26 08:40:17.675048+07', 'system', '2023-07-26 08:40:17.675048+07', 'Thị trấn Lâm Thao', '08494', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8497, 237, 'system', '2023-07-26 08:40:17.67505+07', 'system', '2023-07-26 08:40:17.67505+07', 'Xã Tiên Kiên', '08497', 'Xã');
INSERT INTO category."Wards" VALUES (8498, 237, 'system', '2023-07-26 08:40:17.675053+07', 'system', '2023-07-26 08:40:17.675053+07', 'Thị trấn Hùng Sơn', '08498', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8500, 237, 'system', '2023-07-26 08:40:17.675056+07', 'system', '2023-07-26 08:40:17.675056+07', 'Xã Xuân Lũng', '08500', 'Xã');
INSERT INTO category."Wards" VALUES (8503, 227, 'system', '2023-07-26 08:40:17.67467+07', 'system', '2023-07-26 08:40:17.67467+07', 'Xã Hy Cương', '08503', 'Xã');
INSERT INTO category."Wards" VALUES (8506, 227, 'system', '2023-07-26 08:40:17.674672+07', 'system', '2023-07-26 08:40:17.674672+07', 'Xã Chu Hóa', '08506', 'Xã');
INSERT INTO category."Wards" VALUES (8509, 237, 'system', '2023-07-26 08:40:17.675058+07', 'system', '2023-07-26 08:40:17.675058+07', 'Xã Xuân Huy', '08509', 'Xã');
INSERT INTO category."Wards" VALUES (8512, 237, 'system', '2023-07-26 08:40:17.675073+07', 'system', '2023-07-26 08:40:17.675073+07', 'Xã Thạch Sơn', '08512', 'Xã');
INSERT INTO category."Wards" VALUES (8515, 227, 'system', '2023-07-26 08:40:17.674675+07', 'system', '2023-07-26 08:40:17.674675+07', 'Xã Thanh Đình', '08515', 'Xã');
INSERT INTO category."Wards" VALUES (8518, 237, 'system', '2023-07-26 08:40:17.675076+07', 'system', '2023-07-26 08:40:17.675076+07', 'Xã Sơn Vi', '08518', 'Xã');
INSERT INTO category."Wards" VALUES (8521, 237, 'system', '2023-07-26 08:40:17.675078+07', 'system', '2023-07-26 08:40:17.675078+07', 'Xã Phùng Nguyên', '08521', 'Xã');
INSERT INTO category."Wards" VALUES (8527, 237, 'system', '2023-07-26 08:40:17.675081+07', 'system', '2023-07-26 08:40:17.675081+07', 'Xã Cao Xá', '08527', 'Xã');
INSERT INTO category."Wards" VALUES (8533, 237, 'system', '2023-07-26 08:40:17.675084+07', 'system', '2023-07-26 08:40:17.675084+07', 'Xã Vĩnh Lại', '08533', 'Xã');
INSERT INTO category."Wards" VALUES (8536, 237, 'system', '2023-07-26 08:40:17.675086+07', 'system', '2023-07-26 08:40:17.675087+07', 'Xã Tứ Xã', '08536', 'Xã');
INSERT INTO category."Wards" VALUES (8539, 237, 'system', '2023-07-26 08:40:17.675089+07', 'system', '2023-07-26 08:40:17.675089+07', 'Xã Bản Nguyên', '08539', 'Xã');
INSERT INTO category."Wards" VALUES (8542, 238, 'system', '2023-07-26 08:40:17.675092+07', 'system', '2023-07-26 08:40:17.675092+07', 'Thị trấn Thanh Sơn', '08542', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8545, 240, 'system', '2023-07-26 08:40:17.675182+07', 'system', '2023-07-26 08:40:17.675182+07', 'Xã Thu Cúc', '08545', 'Xã');
INSERT INTO category."Wards" VALUES (8548, 240, 'system', '2023-07-26 08:40:17.675185+07', 'system', '2023-07-26 08:40:17.675185+07', 'Xã Thạch Kiệt', '08548', 'Xã');
INSERT INTO category."Wards" VALUES (8551, 240, 'system', '2023-07-26 08:40:17.675187+07', 'system', '2023-07-26 08:40:17.675187+07', 'Xã Thu Ngạc', '08551', 'Xã');
INSERT INTO category."Wards" VALUES (8554, 240, 'system', '2023-07-26 08:40:17.67519+07', 'system', '2023-07-26 08:40:17.67519+07', 'Xã Kiệt Sơn', '08554', 'Xã');
INSERT INTO category."Wards" VALUES (8557, 240, 'system', '2023-07-26 08:40:17.675192+07', 'system', '2023-07-26 08:40:17.675192+07', 'Xã Đồng Sơn', '08557', 'Xã');
INSERT INTO category."Wards" VALUES (8560, 240, 'system', '2023-07-26 08:40:17.675195+07', 'system', '2023-07-26 08:40:17.675195+07', 'Xã Lai Đồng', '08560', 'Xã');
INSERT INTO category."Wards" VALUES (8563, 238, 'system', '2023-07-26 08:40:17.675095+07', 'system', '2023-07-26 08:40:17.675095+07', 'Xã Sơn Hùng', '08563', 'Xã');
INSERT INTO category."Wards" VALUES (8566, 240, 'system', '2023-07-26 08:40:17.675198+07', 'system', '2023-07-26 08:40:17.675198+07', 'Xã Tân Phú', '08566', 'Xã');
INSERT INTO category."Wards" VALUES (8569, 240, 'system', '2023-07-26 08:40:17.6752+07', 'system', '2023-07-26 08:40:17.6752+07', 'Xã Mỹ Thuận', '08569', 'Xã');
INSERT INTO category."Wards" VALUES (8572, 238, 'system', '2023-07-26 08:40:17.675097+07', 'system', '2023-07-26 08:40:17.675097+07', 'Xã Địch Quả', '08572', 'Xã');
INSERT INTO category."Wards" VALUES (8575, 238, 'system', '2023-07-26 08:40:17.6751+07', 'system', '2023-07-26 08:40:17.6751+07', 'Xã Giáp Lai', '08575', 'Xã');
INSERT INTO category."Wards" VALUES (8578, 240, 'system', '2023-07-26 08:40:17.675203+07', 'system', '2023-07-26 08:40:17.675203+07', 'Xã Tân Sơn', '08578', 'Xã');
INSERT INTO category."Wards" VALUES (8581, 238, 'system', '2023-07-26 08:40:17.675102+07', 'system', '2023-07-26 08:40:17.675103+07', 'Xã Thục Luyện', '08581', 'Xã');
INSERT INTO category."Wards" VALUES (8584, 238, 'system', '2023-07-26 08:40:17.675105+07', 'system', '2023-07-26 08:40:17.675105+07', 'Xã Võ Miếu', '08584', 'Xã');
INSERT INTO category."Wards" VALUES (8587, 238, 'system', '2023-07-26 08:40:17.675108+07', 'system', '2023-07-26 08:40:17.675108+07', 'Xã Thạch Khoán', '08587', 'Xã');
INSERT INTO category."Wards" VALUES (8590, 240, 'system', '2023-07-26 08:40:17.675206+07', 'system', '2023-07-26 08:40:17.675206+07', 'Xã Xuân Đài', '08590', 'Xã');
INSERT INTO category."Wards" VALUES (8593, 240, 'system', '2023-07-26 08:40:17.675208+07', 'system', '2023-07-26 08:40:17.675208+07', 'Xã Minh Đài', '08593', 'Xã');
INSERT INTO category."Wards" VALUES (8596, 240, 'system', '2023-07-26 08:40:17.675211+07', 'system', '2023-07-26 08:40:17.675211+07', 'Xã Văn Luông', '08596', 'Xã');
INSERT INTO category."Wards" VALUES (8599, 240, 'system', '2023-07-26 08:40:17.675214+07', 'system', '2023-07-26 08:40:17.675214+07', 'Xã Xuân Sơn', '08599', 'Xã');
INSERT INTO category."Wards" VALUES (8602, 238, 'system', '2023-07-26 08:40:17.67511+07', 'system', '2023-07-26 08:40:17.67511+07', 'Xã Cự Thắng', '08602', 'Xã');
INSERT INTO category."Wards" VALUES (8605, 238, 'system', '2023-07-26 08:40:17.675113+07', 'system', '2023-07-26 08:40:17.675113+07', 'Xã Tất Thắng', '08605', 'Xã');
INSERT INTO category."Wards" VALUES (8608, 240, 'system', '2023-07-26 08:40:17.675216+07', 'system', '2023-07-26 08:40:17.675216+07', 'Xã Long Cốc', '08608', 'Xã');
INSERT INTO category."Wards" VALUES (8611, 238, 'system', '2023-07-26 08:40:17.675116+07', 'system', '2023-07-26 08:40:17.675116+07', 'Xã Văn Miếu', '08611', 'Xã');
INSERT INTO category."Wards" VALUES (8614, 238, 'system', '2023-07-26 08:40:17.675118+07', 'system', '2023-07-26 08:40:17.675118+07', 'Xã Cự Đồng', '08614', 'Xã');
INSERT INTO category."Wards" VALUES (8617, 240, 'system', '2023-07-26 08:40:17.675219+07', 'system', '2023-07-26 08:40:17.675219+07', 'Xã Kim Thượng', '08617', 'Xã');
INSERT INTO category."Wards" VALUES (8620, 240, 'system', '2023-07-26 08:40:17.675221+07', 'system', '2023-07-26 08:40:17.675221+07', 'Xã Tam Thanh', '08620', 'Xã');
INSERT INTO category."Wards" VALUES (8623, 238, 'system', '2023-07-26 08:40:17.675121+07', 'system', '2023-07-26 08:40:17.675121+07', 'Xã Thắng Sơn', '08623', 'Xã');
INSERT INTO category."Wards" VALUES (8626, 240, 'system', '2023-07-26 08:40:17.675224+07', 'system', '2023-07-26 08:40:17.675224+07', 'Xã Vinh Tiền', '08626', 'Xã');
INSERT INTO category."Wards" VALUES (8629, 238, 'system', '2023-07-26 08:40:17.675123+07', 'system', '2023-07-26 08:40:17.675123+07', 'Xã Tân Minh', '08629', 'Xã');
INSERT INTO category."Wards" VALUES (8632, 238, 'system', '2023-07-26 08:40:17.675126+07', 'system', '2023-07-26 08:40:17.675126+07', 'Xã Hương Cần', '08632', 'Xã');
INSERT INTO category."Wards" VALUES (8635, 238, 'system', '2023-07-26 08:40:17.675129+07', 'system', '2023-07-26 08:40:17.675129+07', 'Xã Khả Cửu', '08635', 'Xã');
INSERT INTO category."Wards" VALUES (8638, 238, 'system', '2023-07-26 08:40:17.675131+07', 'system', '2023-07-26 08:40:17.675131+07', 'Xã Đông Cửu', '08638', 'Xã');
INSERT INTO category."Wards" VALUES (8641, 238, 'system', '2023-07-26 08:40:17.675134+07', 'system', '2023-07-26 08:40:17.675134+07', 'Xã Tân Lập', '08641', 'Xã');
INSERT INTO category."Wards" VALUES (8644, 238, 'system', '2023-07-26 08:40:17.675137+07', 'system', '2023-07-26 08:40:17.675137+07', 'Xã Yên Lãng', '08644', 'Xã');
INSERT INTO category."Wards" VALUES (8647, 238, 'system', '2023-07-26 08:40:17.675139+07', 'system', '2023-07-26 08:40:17.675139+07', 'Xã Yên Lương', '08647', 'Xã');
INSERT INTO category."Wards" VALUES (8650, 238, 'system', '2023-07-26 08:40:17.675142+07', 'system', '2023-07-26 08:40:17.675142+07', 'Xã Thượng Cửu', '08650', 'Xã');
INSERT INTO category."Wards" VALUES (8653, 238, 'system', '2023-07-26 08:40:17.675145+07', 'system', '2023-07-26 08:40:17.675145+07', 'Xã Lương Nha', '08653', 'Xã');
INSERT INTO category."Wards" VALUES (8656, 238, 'system', '2023-07-26 08:40:17.675147+07', 'system', '2023-07-26 08:40:17.675147+07', 'Xã Yên Sơn', '08656', 'Xã');
INSERT INTO category."Wards" VALUES (8659, 238, 'system', '2023-07-26 08:40:17.67515+07', 'system', '2023-07-26 08:40:17.67515+07', 'Xã Tinh Nhuệ', '08659', 'Xã');
INSERT INTO category."Wards" VALUES (8662, 239, 'system', '2023-07-26 08:40:17.675152+07', 'system', '2023-07-26 08:40:17.675152+07', 'Xã Đào Xá', '08662', 'Xã');
INSERT INTO category."Wards" VALUES (8665, 239, 'system', '2023-07-26 08:40:17.675156+07', 'system', '2023-07-26 08:40:17.675156+07', 'Xã Thạch Đồng', '08665', 'Xã');
INSERT INTO category."Wards" VALUES (8668, 239, 'system', '2023-07-26 08:40:17.675159+07', 'system', '2023-07-26 08:40:17.675159+07', 'Xã Xuân Lộc', '08668', 'Xã');
INSERT INTO category."Wards" VALUES (8671, 239, 'system', '2023-07-26 08:40:17.675161+07', 'system', '2023-07-26 08:40:17.675161+07', 'Xã Tân Phương', '08671', 'Xã');
INSERT INTO category."Wards" VALUES (8674, 239, 'system', '2023-07-26 08:40:17.675164+07', 'system', '2023-07-26 08:40:17.675164+07', 'Thị trấn Thanh Thủy', '08674', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8677, 239, 'system', '2023-07-26 08:40:17.675167+07', 'system', '2023-07-26 08:40:17.675167+07', 'Xã Sơn Thủy', '08677', 'Xã');
INSERT INTO category."Wards" VALUES (8680, 239, 'system', '2023-07-26 08:40:17.675169+07', 'system', '2023-07-26 08:40:17.675169+07', 'Xã Bảo Yên', '08680', 'Xã');
INSERT INTO category."Wards" VALUES (8683, 239, 'system', '2023-07-26 08:40:17.675172+07', 'system', '2023-07-26 08:40:17.675172+07', 'Xã Đoan Hạ', '08683', 'Xã');
INSERT INTO category."Wards" VALUES (8686, 239, 'system', '2023-07-26 08:40:17.675175+07', 'system', '2023-07-26 08:40:17.675175+07', 'Xã Đồng Trung', '08686', 'Xã');
INSERT INTO category."Wards" VALUES (8689, 239, 'system', '2023-07-26 08:40:17.675177+07', 'system', '2023-07-26 08:40:17.675177+07', 'Xã Hoàng Xá', '08689', 'Xã');
INSERT INTO category."Wards" VALUES (8701, 239, 'system', '2023-07-26 08:40:17.67518+07', 'system', '2023-07-26 08:40:17.67518+07', 'Xã Tu Vũ', '08701', 'Xã');
INSERT INTO category."Wards" VALUES (8707, 243, 'system', '2023-07-26 08:40:17.675227+07', 'system', '2023-07-26 08:40:17.675227+07', 'Phường Tích Sơn', '08707', 'Phường');
INSERT INTO category."Wards" VALUES (8710, 243, 'system', '2023-07-26 08:40:17.675229+07', 'system', '2023-07-26 08:40:17.67523+07', 'Phường Liên Bảo', '08710', 'Phường');
INSERT INTO category."Wards" VALUES (8713, 243, 'system', '2023-07-26 08:40:17.675232+07', 'system', '2023-07-26 08:40:17.675232+07', 'Phường Hội Hợp', '08713', 'Phường');
INSERT INTO category."Wards" VALUES (8716, 243, 'system', '2023-07-26 08:40:17.675235+07', 'system', '2023-07-26 08:40:17.675235+07', 'Phường Đống Đa', '08716', 'Phường');
INSERT INTO category."Wards" VALUES (8719, 243, 'system', '2023-07-26 08:40:17.675238+07', 'system', '2023-07-26 08:40:17.675238+07', 'Phường Ngô Quyền', '08719', 'Phường');
INSERT INTO category."Wards" VALUES (8722, 243, 'system', '2023-07-26 08:40:17.675241+07', 'system', '2023-07-26 08:40:17.675241+07', 'Phường Đồng Tâm', '08722', 'Phường');
INSERT INTO category."Wards" VALUES (8725, 243, 'system', '2023-07-26 08:40:17.675243+07', 'system', '2023-07-26 08:40:17.675243+07', 'Xã Định Trung', '08725', 'Xã');
INSERT INTO category."Wards" VALUES (8728, 243, 'system', '2023-07-26 08:40:17.675246+07', 'system', '2023-07-26 08:40:17.675246+07', 'Phường Khai Quang', '08728', 'Phường');
INSERT INTO category."Wards" VALUES (8731, 243, 'system', '2023-07-26 08:40:17.675249+07', 'system', '2023-07-26 08:40:17.675249+07', 'Xã Thanh Trù', '08731', 'Xã');
INSERT INTO category."Wards" VALUES (8734, 244, 'system', '2023-07-26 08:40:17.675252+07', 'system', '2023-07-26 08:40:17.675252+07', 'Phường Trưng Trắc', '08734', 'Phường');
INSERT INTO category."Wards" VALUES (8737, 244, 'system', '2023-07-26 08:40:17.675255+07', 'system', '2023-07-26 08:40:17.675255+07', 'Phường Hùng Vương', '08737', 'Phường');
INSERT INTO category."Wards" VALUES (8740, 244, 'system', '2023-07-26 08:40:17.675257+07', 'system', '2023-07-26 08:40:17.675257+07', 'Phường Trưng Nhị', '08740', 'Phường');
INSERT INTO category."Wards" VALUES (8743, 244, 'system', '2023-07-26 08:40:17.67526+07', 'system', '2023-07-26 08:40:17.67526+07', 'Phường Phúc Thắng', '08743', 'Phường');
INSERT INTO category."Wards" VALUES (8746, 244, 'system', '2023-07-26 08:40:17.675263+07', 'system', '2023-07-26 08:40:17.675263+07', 'Phường Xuân Hoà', '08746', 'Phường');
INSERT INTO category."Wards" VALUES (8747, 244, 'system', '2023-07-26 08:40:17.675266+07', 'system', '2023-07-26 08:40:17.675266+07', 'Phường Đồng Xuân', '08747', 'Phường');
INSERT INTO category."Wards" VALUES (8749, 244, 'system', '2023-07-26 08:40:17.675269+07', 'system', '2023-07-26 08:40:17.675269+07', 'Xã Ngọc Thanh', '08749', 'Xã');
INSERT INTO category."Wards" VALUES (8752, 244, 'system', '2023-07-26 08:40:17.675271+07', 'system', '2023-07-26 08:40:17.675271+07', 'Xã Cao Minh', '08752', 'Xã');
INSERT INTO category."Wards" VALUES (8755, 244, 'system', '2023-07-26 08:40:17.675274+07', 'system', '2023-07-26 08:40:17.675274+07', 'Phường Nam Viêm', '08755', 'Phường');
INSERT INTO category."Wards" VALUES (8758, 244, 'system', '2023-07-26 08:40:17.675277+07', 'system', '2023-07-26 08:40:17.675277+07', 'Phường Tiền Châu', '08758', 'Phường');
INSERT INTO category."Wards" VALUES (8761, 246, 'system', '2023-07-26 08:40:17.67528+07', 'system', '2023-07-26 08:40:17.67528+07', 'Thị trấn Lập Thạch', '08761', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8764, 246, 'system', '2023-07-26 08:40:17.675282+07', 'system', '2023-07-26 08:40:17.675282+07', 'Xã Quang Sơn', '08764', 'Xã');
INSERT INTO category."Wards" VALUES (8767, 246, 'system', '2023-07-26 08:40:17.675285+07', 'system', '2023-07-26 08:40:17.675285+07', 'Xã Ngọc Mỹ', '08767', 'Xã');
INSERT INTO category."Wards" VALUES (8770, 246, 'system', '2023-07-26 08:40:17.675288+07', 'system', '2023-07-26 08:40:17.675288+07', 'Xã Hợp Lý', '08770', 'Xã');
INSERT INTO category."Wards" VALUES (8773, 253, 'system', '2023-07-26 08:40:17.675577+07', 'system', '2023-07-26 08:40:17.675577+07', 'Xã Lãng Công', '08773', 'Xã');
INSERT INTO category."Wards" VALUES (8776, 253, 'system', '2023-07-26 08:40:17.675582+07', 'system', '2023-07-26 08:40:17.675582+07', 'Xã Quang Yên', '08776', 'Xã');
INSERT INTO category."Wards" VALUES (8779, 253, 'system', '2023-07-26 08:40:17.675588+07', 'system', '2023-07-26 08:40:17.675588+07', 'Xã Bạch Lưu', '08779', 'Xã');
INSERT INTO category."Wards" VALUES (8782, 253, 'system', '2023-07-26 08:40:17.675592+07', 'system', '2023-07-26 08:40:17.675593+07', 'Xã Hải Lựu', '08782', 'Xã');
INSERT INTO category."Wards" VALUES (8785, 246, 'system', '2023-07-26 08:40:17.67529+07', 'system', '2023-07-26 08:40:17.67529+07', 'Xã Bắc Bình', '08785', 'Xã');
INSERT INTO category."Wards" VALUES (8788, 246, 'system', '2023-07-26 08:40:17.675293+07', 'system', '2023-07-26 08:40:17.675293+07', 'Xã Thái Hòa', '08788', 'Xã');
INSERT INTO category."Wards" VALUES (8789, 246, 'system', '2023-07-26 08:40:17.675295+07', 'system', '2023-07-26 08:40:17.675295+07', 'Thị trấn Hoa Sơn', '08789', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8791, 246, 'system', '2023-07-26 08:40:17.675298+07', 'system', '2023-07-26 08:40:17.675298+07', 'Xã Liễn Sơn', '08791', 'Xã');
INSERT INTO category."Wards" VALUES (8794, 246, 'system', '2023-07-26 08:40:17.675301+07', 'system', '2023-07-26 08:40:17.675301+07', 'Xã Xuân Hòa', '08794', 'Xã');
INSERT INTO category."Wards" VALUES (8797, 246, 'system', '2023-07-26 08:40:17.675304+07', 'system', '2023-07-26 08:40:17.675304+07', 'Xã Vân Trục', '08797', 'Xã');
INSERT INTO category."Wards" VALUES (8800, 253, 'system', '2023-07-26 08:40:17.675597+07', 'system', '2023-07-26 08:40:17.675597+07', 'Xã Đồng Quế', '08800', 'Xã');
INSERT INTO category."Wards" VALUES (8803, 253, 'system', '2023-07-26 08:40:17.675603+07', 'system', '2023-07-26 08:40:17.675603+07', 'Xã Nhân Đạo', '08803', 'Xã');
INSERT INTO category."Wards" VALUES (8806, 253, 'system', '2023-07-26 08:40:17.675607+07', 'system', '2023-07-26 08:40:17.675608+07', 'Xã Đôn Nhân', '08806', 'Xã');
INSERT INTO category."Wards" VALUES (8809, 253, 'system', '2023-07-26 08:40:17.675612+07', 'system', '2023-07-26 08:40:17.675612+07', 'Xã Phương Khoan', '08809', 'Xã');
INSERT INTO category."Wards" VALUES (8812, 246, 'system', '2023-07-26 08:40:17.675306+07', 'system', '2023-07-26 08:40:17.675306+07', 'Xã Liên Hòa', '08812', 'Xã');
INSERT INTO category."Wards" VALUES (8815, 246, 'system', '2023-07-26 08:40:17.675308+07', 'system', '2023-07-26 08:40:17.675309+07', 'Xã Tử Du', '08815', 'Xã');
INSERT INTO category."Wards" VALUES (8818, 253, 'system', '2023-07-26 08:40:17.675618+07', 'system', '2023-07-26 08:40:17.675618+07', 'Xã Tân Lập', '08818', 'Xã');
INSERT INTO category."Wards" VALUES (8821, 253, 'system', '2023-07-26 08:40:17.675623+07', 'system', '2023-07-26 08:40:17.675623+07', 'Xã Nhạo Sơn', '08821', 'Xã');
INSERT INTO category."Wards" VALUES (8824, 253, 'system', '2023-07-26 08:40:17.675629+07', 'system', '2023-07-26 08:40:17.675629+07', 'Thị trấn Tam Sơn', '08824', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8827, 253, 'system', '2023-07-26 08:40:17.675633+07', 'system', '2023-07-26 08:40:17.675633+07', 'Xã Như Thụy', '08827', 'Xã');
INSERT INTO category."Wards" VALUES (8830, 253, 'system', '2023-07-26 08:40:17.675641+07', 'system', '2023-07-26 08:40:17.675641+07', 'Xã Yên Thạch', '08830', 'Xã');
INSERT INTO category."Wards" VALUES (8833, 246, 'system', '2023-07-26 08:40:17.675311+07', 'system', '2023-07-26 08:40:17.675311+07', 'Xã Bàn Giản', '08833', 'Xã');
INSERT INTO category."Wards" VALUES (8836, 246, 'system', '2023-07-26 08:40:17.675314+07', 'system', '2023-07-26 08:40:17.675314+07', 'Xã Xuân Lôi', '08836', 'Xã');
INSERT INTO category."Wards" VALUES (8839, 246, 'system', '2023-07-26 08:40:17.675316+07', 'system', '2023-07-26 08:40:17.675316+07', 'Xã Đồng Ích', '08839', 'Xã');
INSERT INTO category."Wards" VALUES (8842, 246, 'system', '2023-07-26 08:40:17.675319+07', 'system', '2023-07-26 08:40:17.675319+07', 'Xã Tiên Lữ', '08842', 'Xã');
INSERT INTO category."Wards" VALUES (8845, 246, 'system', '2023-07-26 08:40:17.675322+07', 'system', '2023-07-26 08:40:17.675322+07', 'Xã Văn Quán', '08845', 'Xã');
INSERT INTO category."Wards" VALUES (8848, 253, 'system', '2023-07-26 08:40:17.675646+07', 'system', '2023-07-26 08:40:17.675646+07', 'Xã Đồng Thịnh', '08848', 'Xã');
INSERT INTO category."Wards" VALUES (8851, 253, 'system', '2023-07-26 08:40:17.675651+07', 'system', '2023-07-26 08:40:17.675651+07', 'Xã Tứ Yên', '08851', 'Xã');
INSERT INTO category."Wards" VALUES (8854, 253, 'system', '2023-07-26 08:40:17.675656+07', 'system', '2023-07-26 08:40:17.675656+07', 'Xã Đức Bác', '08854', 'Xã');
INSERT INTO category."Wards" VALUES (8857, 246, 'system', '2023-07-26 08:40:17.675324+07', 'system', '2023-07-26 08:40:17.675324+07', 'Xã Đình Chu', '08857', 'Xã');
INSERT INTO category."Wards" VALUES (8860, 253, 'system', '2023-07-26 08:40:17.675661+07', 'system', '2023-07-26 08:40:17.675661+07', 'Xã Cao Phong', '08860', 'Xã');
INSERT INTO category."Wards" VALUES (8863, 246, 'system', '2023-07-26 08:40:17.675327+07', 'system', '2023-07-26 08:40:17.675327+07', 'Xã Triệu Đề', '08863', 'Xã');
INSERT INTO category."Wards" VALUES (8866, 246, 'system', '2023-07-26 08:40:17.67533+07', 'system', '2023-07-26 08:40:17.67533+07', 'Xã Sơn Đông', '08866', 'Xã');
INSERT INTO category."Wards" VALUES (8869, 247, 'system', '2023-07-26 08:40:17.675332+07', 'system', '2023-07-26 08:40:17.675332+07', 'Thị trấn Hợp Hòa', '08869', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8872, 247, 'system', '2023-07-26 08:40:17.675335+07', 'system', '2023-07-26 08:40:17.675335+07', 'Xã Hoàng Hoa', '08872', 'Xã');
INSERT INTO category."Wards" VALUES (8875, 247, 'system', '2023-07-26 08:40:17.675338+07', 'system', '2023-07-26 08:40:17.675338+07', 'Xã Đồng Tĩnh', '08875', 'Xã');
INSERT INTO category."Wards" VALUES (8878, 247, 'system', '2023-07-26 08:40:17.67534+07', 'system', '2023-07-26 08:40:17.675341+07', 'Xã Kim Long', '08878', 'Xã');
INSERT INTO category."Wards" VALUES (8881, 247, 'system', '2023-07-26 08:40:17.675343+07', 'system', '2023-07-26 08:40:17.675343+07', 'Xã Hướng Đạo', '08881', 'Xã');
INSERT INTO category."Wards" VALUES (8884, 247, 'system', '2023-07-26 08:40:17.675346+07', 'system', '2023-07-26 08:40:17.675346+07', 'Xã Đạo Tú', '08884', 'Xã');
INSERT INTO category."Wards" VALUES (8887, 247, 'system', '2023-07-26 08:40:17.675349+07', 'system', '2023-07-26 08:40:17.675349+07', 'Xã An Hòa', '08887', 'Xã');
INSERT INTO category."Wards" VALUES (8890, 247, 'system', '2023-07-26 08:40:17.675352+07', 'system', '2023-07-26 08:40:17.675352+07', 'Xã Thanh Vân', '08890', 'Xã');
INSERT INTO category."Wards" VALUES (8893, 247, 'system', '2023-07-26 08:40:17.675354+07', 'system', '2023-07-26 08:40:17.675355+07', 'Xã Duy Phiên', '08893', 'Xã');
INSERT INTO category."Wards" VALUES (8896, 247, 'system', '2023-07-26 08:40:17.675357+07', 'system', '2023-07-26 08:40:17.675357+07', 'Xã Hoàng Đan', '08896', 'Xã');
INSERT INTO category."Wards" VALUES (8899, 247, 'system', '2023-07-26 08:40:17.67536+07', 'system', '2023-07-26 08:40:17.67536+07', 'Xã Hoàng Lâu', '08899', 'Xã');
INSERT INTO category."Wards" VALUES (8902, 247, 'system', '2023-07-26 08:40:17.675362+07', 'system', '2023-07-26 08:40:17.675362+07', 'Xã Vân Hội', '08902', 'Xã');
INSERT INTO category."Wards" VALUES (8905, 247, 'system', '2023-07-26 08:40:17.675365+07', 'system', '2023-07-26 08:40:17.675365+07', 'Xã Hợp Thịnh', '08905', 'Xã');
INSERT INTO category."Wards" VALUES (8908, 248, 'system', '2023-07-26 08:40:17.675367+07', 'system', '2023-07-26 08:40:17.675367+07', 'Thị trấn Tam Đảo', '08908', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8911, 248, 'system', '2023-07-26 08:40:17.67537+07', 'system', '2023-07-26 08:40:17.67537+07', 'Thị trấn Hợp Châu', '08911', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8914, 248, 'system', '2023-07-26 08:40:17.675373+07', 'system', '2023-07-26 08:40:17.675373+07', 'Xã Đạo Trù', '08914', 'Xã');
INSERT INTO category."Wards" VALUES (8917, 248, 'system', '2023-07-26 08:40:17.675376+07', 'system', '2023-07-26 08:40:17.675376+07', 'Xã Yên Dương', '08917', 'Xã');
INSERT INTO category."Wards" VALUES (8920, 248, 'system', '2023-07-26 08:40:17.675379+07', 'system', '2023-07-26 08:40:17.675379+07', 'Xã Bồ Lý', '08920', 'Xã');
INSERT INTO category."Wards" VALUES (8923, 248, 'system', '2023-07-26 08:40:17.675381+07', 'system', '2023-07-26 08:40:17.675381+07', 'Thị trấn Đại Đình', '08923', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8926, 248, 'system', '2023-07-26 08:40:17.675384+07', 'system', '2023-07-26 08:40:17.675384+07', 'Xã Tam Quan', '08926', 'Xã');
INSERT INTO category."Wards" VALUES (8929, 248, 'system', '2023-07-26 08:40:17.675387+07', 'system', '2023-07-26 08:40:17.675387+07', 'Xã Hồ Sơn', '08929', 'Xã');
INSERT INTO category."Wards" VALUES (8932, 248, 'system', '2023-07-26 08:40:17.675389+07', 'system', '2023-07-26 08:40:17.675389+07', 'Xã Minh Quang', '08932', 'Xã');
INSERT INTO category."Wards" VALUES (8935, 249, 'system', '2023-07-26 08:40:17.675392+07', 'system', '2023-07-26 08:40:17.675392+07', 'Thị trấn Hương Canh', '08935', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8936, 249, 'system', '2023-07-26 08:40:17.675395+07', 'system', '2023-07-26 08:40:17.675395+07', 'Thị trấn Gia Khánh', '08936', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8938, 249, 'system', '2023-07-26 08:40:17.675398+07', 'system', '2023-07-26 08:40:17.675398+07', 'Xã Trung Mỹ', '08938', 'Xã');
INSERT INTO category."Wards" VALUES (9421, 262, 'system', '2023-07-26 08:40:17.676063+07', 'system', '2023-07-26 08:40:17.676063+07', 'Xã Trí Quả', '09421', 'Xã');
INSERT INTO category."Wards" VALUES (8944, 249, 'system', '2023-07-26 08:40:17.6754+07', 'system', '2023-07-26 08:40:17.6754+07', 'Thị trấn Bá Hiến', '08944', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8947, 249, 'system', '2023-07-26 08:40:17.675403+07', 'system', '2023-07-26 08:40:17.675403+07', 'Xã Thiện Kế', '08947', 'Xã');
INSERT INTO category."Wards" VALUES (8950, 249, 'system', '2023-07-26 08:40:17.675406+07', 'system', '2023-07-26 08:40:17.675406+07', 'Xã Hương Sơn', '08950', 'Xã');
INSERT INTO category."Wards" VALUES (8953, 249, 'system', '2023-07-26 08:40:17.675408+07', 'system', '2023-07-26 08:40:17.675408+07', 'Xã Tam Hợp', '08953', 'Xã');
INSERT INTO category."Wards" VALUES (8956, 249, 'system', '2023-07-26 08:40:17.675411+07', 'system', '2023-07-26 08:40:17.675411+07', 'Xã Quất Lưu', '08956', 'Xã');
INSERT INTO category."Wards" VALUES (8959, 249, 'system', '2023-07-26 08:40:17.675414+07', 'system', '2023-07-26 08:40:17.675414+07', 'Xã Sơn Lôi', '08959', 'Xã');
INSERT INTO category."Wards" VALUES (8962, 249, 'system', '2023-07-26 08:40:17.675416+07', 'system', '2023-07-26 08:40:17.675416+07', 'Thị trấn Đạo Đức', '08962', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8965, 249, 'system', '2023-07-26 08:40:17.675419+07', 'system', '2023-07-26 08:40:17.675419+07', 'Xã Tân Phong', '08965', 'Xã');
INSERT INTO category."Wards" VALUES (8968, 249, 'system', '2023-07-26 08:40:17.675422+07', 'system', '2023-07-26 08:40:17.675422+07', 'Thị trấn Thanh Lãng', '08968', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8971, 249, 'system', '2023-07-26 08:40:17.675425+07', 'system', '2023-07-26 08:40:17.675425+07', 'Xã Phú Xuân', '08971', 'Xã');
INSERT INTO category."Wards" VALUES (8973, 250, 'system', '2023-07-26 08:40:17.660671+07', 'system', '2023-07-26 08:40:17.660671+07', 'Thị trấn Chi Đông', '08973', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8974, 250, 'system', '2023-07-26 08:40:17.660674+07', 'system', '2023-07-26 08:40:17.660674+07', 'Xã Đại Thịnh', '08974', 'Xã');
INSERT INTO category."Wards" VALUES (8977, 250, 'system', '2023-07-26 08:40:17.660677+07', 'system', '2023-07-26 08:40:17.660677+07', 'Xã Kim Hoa', '08977', 'Xã');
INSERT INTO category."Wards" VALUES (8980, 250, 'system', '2023-07-26 08:40:17.66068+07', 'system', '2023-07-26 08:40:17.66068+07', 'Xã Thạch Đà', '08980', 'Xã');
INSERT INTO category."Wards" VALUES (8983, 250, 'system', '2023-07-26 08:40:17.660682+07', 'system', '2023-07-26 08:40:17.660682+07', 'Xã Tiến Thắng', '08983', 'Xã');
INSERT INTO category."Wards" VALUES (8986, 250, 'system', '2023-07-26 08:40:17.660685+07', 'system', '2023-07-26 08:40:17.660685+07', 'Xã Tự Lập', '08986', 'Xã');
INSERT INTO category."Wards" VALUES (8989, 250, 'system', '2023-07-26 08:40:17.660688+07', 'system', '2023-07-26 08:40:17.660688+07', 'Thị trấn Quang Minh', '08989', 'Thị trấn');
INSERT INTO category."Wards" VALUES (8992, 250, 'system', '2023-07-26 08:40:17.66069+07', 'system', '2023-07-26 08:40:17.66069+07', 'Xã Thanh Lâm', '08992', 'Xã');
INSERT INTO category."Wards" VALUES (8995, 250, 'system', '2023-07-26 08:40:17.660693+07', 'system', '2023-07-26 08:40:17.660693+07', 'Xã Tam Đồng', '08995', 'Xã');
INSERT INTO category."Wards" VALUES (8998, 250, 'system', '2023-07-26 08:40:17.660696+07', 'system', '2023-07-26 08:40:17.660696+07', 'Xã Liên Mạc', '08998', 'Xã');
INSERT INTO category."Wards" VALUES (9001, 250, 'system', '2023-07-26 08:40:17.660699+07', 'system', '2023-07-26 08:40:17.660699+07', 'Xã Vạn Yên', '09001', 'Xã');
INSERT INTO category."Wards" VALUES (9004, 250, 'system', '2023-07-26 08:40:17.660702+07', 'system', '2023-07-26 08:40:17.660702+07', 'Xã Chu Phan', '09004', 'Xã');
INSERT INTO category."Wards" VALUES (9007, 250, 'system', '2023-07-26 08:40:17.660704+07', 'system', '2023-07-26 08:40:17.660704+07', 'Xã Tiến Thịnh', '09007', 'Xã');
INSERT INTO category."Wards" VALUES (9010, 250, 'system', '2023-07-26 08:40:17.660707+07', 'system', '2023-07-26 08:40:17.660707+07', 'Xã Mê Linh', '09010', 'Xã');
INSERT INTO category."Wards" VALUES (9013, 250, 'system', '2023-07-26 08:40:17.660709+07', 'system', '2023-07-26 08:40:17.660709+07', 'Xã Văn Khê', '09013', 'Xã');
INSERT INTO category."Wards" VALUES (9016, 250, 'system', '2023-07-26 08:40:17.660712+07', 'system', '2023-07-26 08:40:17.660712+07', 'Xã Hoàng Kim', '09016', 'Xã');
INSERT INTO category."Wards" VALUES (9019, 250, 'system', '2023-07-26 08:40:17.660715+07', 'system', '2023-07-26 08:40:17.660715+07', 'Xã Tiền Phong', '09019', 'Xã');
INSERT INTO category."Wards" VALUES (9022, 250, 'system', '2023-07-26 08:40:17.660717+07', 'system', '2023-07-26 08:40:17.660717+07', 'Xã Tráng Việt', '09022', 'Xã');
INSERT INTO category."Wards" VALUES (9025, 251, 'system', '2023-07-26 08:40:17.675427+07', 'system', '2023-07-26 08:40:17.675428+07', 'Thị trấn Yên Lạc', '09025', 'Thị trấn');
INSERT INTO category."Wards" VALUES (9028, 251, 'system', '2023-07-26 08:40:17.67543+07', 'system', '2023-07-26 08:40:17.67543+07', 'Xã Đồng Cương', '09028', 'Xã');
INSERT INTO category."Wards" VALUES (9031, 251, 'system', '2023-07-26 08:40:17.675433+07', 'system', '2023-07-26 08:40:17.675433+07', 'Xã Đồng Văn', '09031', 'Xã');
INSERT INTO category."Wards" VALUES (9034, 251, 'system', '2023-07-26 08:40:17.675435+07', 'system', '2023-07-26 08:40:17.675436+07', 'Xã Bình Định', '09034', 'Xã');
INSERT INTO category."Wards" VALUES (9037, 251, 'system', '2023-07-26 08:40:17.675438+07', 'system', '2023-07-26 08:40:17.675438+07', 'Xã Trung Nguyên', '09037', 'Xã');
INSERT INTO category."Wards" VALUES (9040, 251, 'system', '2023-07-26 08:40:17.675441+07', 'system', '2023-07-26 08:40:17.675441+07', 'Xã Tề Lỗ', '09040', 'Xã');
INSERT INTO category."Wards" VALUES (9043, 251, 'system', '2023-07-26 08:40:17.675444+07', 'system', '2023-07-26 08:40:17.675444+07', 'Xã Tam Hồng', '09043', 'Xã');
INSERT INTO category."Wards" VALUES (9046, 251, 'system', '2023-07-26 08:40:17.675447+07', 'system', '2023-07-26 08:40:17.675447+07', 'Xã Yên Đồng', '09046', 'Xã');
INSERT INTO category."Wards" VALUES (9049, 251, 'system', '2023-07-26 08:40:17.67545+07', 'system', '2023-07-26 08:40:17.67545+07', 'Xã Văn Tiến', '09049', 'Xã');
INSERT INTO category."Wards" VALUES (9052, 251, 'system', '2023-07-26 08:40:17.675452+07', 'system', '2023-07-26 08:40:17.675452+07', 'Xã Nguyệt Đức', '09052', 'Xã');
INSERT INTO category."Wards" VALUES (9055, 251, 'system', '2023-07-26 08:40:17.675455+07', 'system', '2023-07-26 08:40:17.675455+07', 'Xã Yên Phương', '09055', 'Xã');
INSERT INTO category."Wards" VALUES (9058, 251, 'system', '2023-07-26 08:40:17.675458+07', 'system', '2023-07-26 08:40:17.675458+07', 'Xã Hồng Phương', '09058', 'Xã');
INSERT INTO category."Wards" VALUES (9061, 251, 'system', '2023-07-26 08:40:17.67546+07', 'system', '2023-07-26 08:40:17.67546+07', 'Xã Trung Kiên', '09061', 'Xã');
INSERT INTO category."Wards" VALUES (9064, 251, 'system', '2023-07-26 08:40:17.675463+07', 'system', '2023-07-26 08:40:17.675463+07', 'Xã Liên Châu', '09064', 'Xã');
INSERT INTO category."Wards" VALUES (9067, 251, 'system', '2023-07-26 08:40:17.675465+07', 'system', '2023-07-26 08:40:17.675466+07', 'Xã Đại Tự', '09067', 'Xã');
INSERT INTO category."Wards" VALUES (9070, 251, 'system', '2023-07-26 08:40:17.675468+07', 'system', '2023-07-26 08:40:17.675468+07', 'Xã Hồng Châu', '09070', 'Xã');
INSERT INTO category."Wards" VALUES (9073, 251, 'system', '2023-07-26 08:40:17.675471+07', 'system', '2023-07-26 08:40:17.675471+07', 'Xã Trung Hà', '09073', 'Xã');
INSERT INTO category."Wards" VALUES (9076, 252, 'system', '2023-07-26 08:40:17.675473+07', 'system', '2023-07-26 08:40:17.675473+07', 'Thị trấn Vĩnh Tường', '09076', 'Thị trấn');
INSERT INTO category."Wards" VALUES (9079, 252, 'system', '2023-07-26 08:40:17.675476+07', 'system', '2023-07-26 08:40:17.675476+07', 'Xã Kim Xá', '09079', 'Xã');
INSERT INTO category."Wards" VALUES (9082, 252, 'system', '2023-07-26 08:40:17.675479+07', 'system', '2023-07-26 08:40:17.675479+07', 'Xã Yên Bình', '09082', 'Xã');
INSERT INTO category."Wards" VALUES (9085, 252, 'system', '2023-07-26 08:40:17.675482+07', 'system', '2023-07-26 08:40:17.675482+07', 'Xã Chấn Hưng', '09085', 'Xã');
INSERT INTO category."Wards" VALUES (9088, 252, 'system', '2023-07-26 08:40:17.675484+07', 'system', '2023-07-26 08:40:17.675484+07', 'Xã Nghĩa Hưng', '09088', 'Xã');
INSERT INTO category."Wards" VALUES (9091, 252, 'system', '2023-07-26 08:40:17.675487+07', 'system', '2023-07-26 08:40:17.675487+07', 'Xã Yên Lập', '09091', 'Xã');
INSERT INTO category."Wards" VALUES (9094, 252, 'system', '2023-07-26 08:40:17.675489+07', 'system', '2023-07-26 08:40:17.675489+07', 'Xã Việt Xuân', '09094', 'Xã');
INSERT INTO category."Wards" VALUES (9097, 252, 'system', '2023-07-26 08:40:17.675492+07', 'system', '2023-07-26 08:40:17.675492+07', 'Xã Bồ Sao', '09097', 'Xã');
INSERT INTO category."Wards" VALUES (9100, 252, 'system', '2023-07-26 08:40:17.675494+07', 'system', '2023-07-26 08:40:17.675494+07', 'Xã Đại Đồng', '09100', 'Xã');
INSERT INTO category."Wards" VALUES (9103, 252, 'system', '2023-07-26 08:40:17.675497+07', 'system', '2023-07-26 08:40:17.675497+07', 'Xã Tân Tiến', '09103', 'Xã');
INSERT INTO category."Wards" VALUES (9106, 252, 'system', '2023-07-26 08:40:17.6755+07', 'system', '2023-07-26 08:40:17.6755+07', 'Xã Lũng Hoà', '09106', 'Xã');
INSERT INTO category."Wards" VALUES (9109, 252, 'system', '2023-07-26 08:40:17.675502+07', 'system', '2023-07-26 08:40:17.675502+07', 'Xã Cao Đại', '09109', 'Xã');
INSERT INTO category."Wards" VALUES (9112, 252, 'system', '2023-07-26 08:40:17.675504+07', 'system', '2023-07-26 08:40:17.675504+07', 'Thị Trấn Thổ Tang', '09112', 'Thị trấn');
INSERT INTO category."Wards" VALUES (9115, 252, 'system', '2023-07-26 08:40:17.675507+07', 'system', '2023-07-26 08:40:17.675507+07', 'Xã Vĩnh Sơn', '09115', 'Xã');
INSERT INTO category."Wards" VALUES (9118, 252, 'system', '2023-07-26 08:40:17.67551+07', 'system', '2023-07-26 08:40:17.67551+07', 'Xã Bình Dương', '09118', 'Xã');
INSERT INTO category."Wards" VALUES (9124, 252, 'system', '2023-07-26 08:40:17.675515+07', 'system', '2023-07-26 08:40:17.675515+07', 'Xã Tân Phú', '09124', 'Xã');
INSERT INTO category."Wards" VALUES (9127, 252, 'system', '2023-07-26 08:40:17.67552+07', 'system', '2023-07-26 08:40:17.67552+07', 'Xã Thượng Trưng', '09127', 'Xã');
INSERT INTO category."Wards" VALUES (9130, 252, 'system', '2023-07-26 08:40:17.675525+07', 'system', '2023-07-26 08:40:17.675525+07', 'Xã Vũ Di', '09130', 'Xã');
INSERT INTO category."Wards" VALUES (9133, 252, 'system', '2023-07-26 08:40:17.675529+07', 'system', '2023-07-26 08:40:17.675529+07', 'Xã Lý Nhân', '09133', 'Xã');
INSERT INTO category."Wards" VALUES (9136, 252, 'system', '2023-07-26 08:40:17.675533+07', 'system', '2023-07-26 08:40:17.675533+07', 'Xã Tuân Chính', '09136', 'Xã');
INSERT INTO category."Wards" VALUES (9139, 252, 'system', '2023-07-26 08:40:17.675538+07', 'system', '2023-07-26 08:40:17.675538+07', 'Xã Vân Xuân', '09139', 'Xã');
INSERT INTO category."Wards" VALUES (9142, 252, 'system', '2023-07-26 08:40:17.675543+07', 'system', '2023-07-26 08:40:17.675543+07', 'Xã Tam Phúc', '09142', 'Xã');
INSERT INTO category."Wards" VALUES (9145, 252, 'system', '2023-07-26 08:40:17.675547+07', 'system', '2023-07-26 08:40:17.675548+07', 'Thị trấn Tứ Trưng', '09145', 'Thị trấn');
INSERT INTO category."Wards" VALUES (9148, 252, 'system', '2023-07-26 08:40:17.675553+07', 'system', '2023-07-26 08:40:17.675553+07', 'Xã Ngũ Kiên', '09148', 'Xã');
INSERT INTO category."Wards" VALUES (9151, 252, 'system', '2023-07-26 08:40:17.675557+07', 'system', '2023-07-26 08:40:17.675557+07', 'Xã An Tường', '09151', 'Xã');
INSERT INTO category."Wards" VALUES (9154, 252, 'system', '2023-07-26 08:40:17.675561+07', 'system', '2023-07-26 08:40:17.675561+07', 'Xã Vĩnh Thịnh', '09154', 'Xã');
INSERT INTO category."Wards" VALUES (9157, 252, 'system', '2023-07-26 08:40:17.675567+07', 'system', '2023-07-26 08:40:17.675567+07', 'Xã Phú Đa', '09157', 'Xã');
INSERT INTO category."Wards" VALUES (9160, 252, 'system', '2023-07-26 08:40:17.675572+07', 'system', '2023-07-26 08:40:17.675572+07', 'Xã Vĩnh Ninh', '09160', 'Xã');
INSERT INTO category."Wards" VALUES (9163, 256, 'system', '2023-07-26 08:40:17.675666+07', 'system', '2023-07-26 08:40:17.675666+07', 'Phường Vũ Ninh', '09163', 'Phường');
INSERT INTO category."Wards" VALUES (9166, 256, 'system', '2023-07-26 08:40:17.675671+07', 'system', '2023-07-26 08:40:17.675671+07', 'Phường Đáp Cầu', '09166', 'Phường');
INSERT INTO category."Wards" VALUES (9169, 256, 'system', '2023-07-26 08:40:17.675676+07', 'system', '2023-07-26 08:40:17.675676+07', 'Phường Thị Cầu', '09169', 'Phường');
INSERT INTO category."Wards" VALUES (9172, 256, 'system', '2023-07-26 08:40:17.675681+07', 'system', '2023-07-26 08:40:17.675681+07', 'Phường Kinh Bắc', '09172', 'Phường');
INSERT INTO category."Wards" VALUES (9175, 256, 'system', '2023-07-26 08:40:17.675685+07', 'system', '2023-07-26 08:40:17.675703+07', 'Phường Vệ An', '09175', 'Phường');
INSERT INTO category."Wards" VALUES (9178, 256, 'system', '2023-07-26 08:40:17.67571+07', 'system', '2023-07-26 08:40:17.67571+07', 'Phường Tiền An', '09178', 'Phường');
INSERT INTO category."Wards" VALUES (9181, 256, 'system', '2023-07-26 08:40:17.675716+07', 'system', '2023-07-26 08:40:17.675716+07', 'Phường Đại Phúc', '09181', 'Phường');
INSERT INTO category."Wards" VALUES (9184, 256, 'system', '2023-07-26 08:40:17.675736+07', 'system', '2023-07-26 08:40:17.675736+07', 'Phường Ninh Xá', '09184', 'Phường');
INSERT INTO category."Wards" VALUES (9187, 256, 'system', '2023-07-26 08:40:17.675743+07', 'system', '2023-07-26 08:40:17.675743+07', 'Phường Suối Hoa', '09187', 'Phường');
INSERT INTO category."Wards" VALUES (9190, 256, 'system', '2023-07-26 08:40:17.675747+07', 'system', '2023-07-26 08:40:17.675747+07', 'Phường Võ Cường', '09190', 'Phường');
INSERT INTO category."Wards" VALUES (9193, 258, 'system', '2023-07-26 08:40:17.675801+07', 'system', '2023-07-26 08:40:17.675801+07', 'Thị trấn Chờ', '09193', 'Thị trấn');
INSERT INTO category."Wards" VALUES (9196, 258, 'system', '2023-07-26 08:40:17.675806+07', 'system', '2023-07-26 08:40:17.675806+07', 'Xã Dũng Liệt', '09196', 'Xã');
INSERT INTO category."Wards" VALUES (9199, 258, 'system', '2023-07-26 08:40:17.675811+07', 'system', '2023-07-26 08:40:17.675811+07', 'Xã Tam Đa', '09199', 'Xã');
INSERT INTO category."Wards" VALUES (9202, 258, 'system', '2023-07-26 08:40:17.675816+07', 'system', '2023-07-26 08:40:17.675816+07', 'Xã Tam Giang', '09202', 'Xã');
INSERT INTO category."Wards" VALUES (9205, 258, 'system', '2023-07-26 08:40:17.67582+07', 'system', '2023-07-26 08:40:17.67582+07', 'Xã Yên Trung', '09205', 'Xã');
INSERT INTO category."Wards" VALUES (9208, 258, 'system', '2023-07-26 08:40:17.675824+07', 'system', '2023-07-26 08:40:17.675825+07', 'Xã Thụy Hòa', '09208', 'Xã');
INSERT INTO category."Wards" VALUES (9211, 258, 'system', '2023-07-26 08:40:17.675828+07', 'system', '2023-07-26 08:40:17.675828+07', 'Xã Hòa Tiến', '09211', 'Xã');
INSERT INTO category."Wards" VALUES (9214, 256, 'system', '2023-07-26 08:40:17.675752+07', 'system', '2023-07-26 08:40:17.675752+07', 'Phường Hòa Long', '09214', 'Phường');
INSERT INTO category."Wards" VALUES (9217, 258, 'system', '2023-07-26 08:40:17.675833+07', 'system', '2023-07-26 08:40:17.675833+07', 'Xã Đông Tiến', '09217', 'Xã');
INSERT INTO category."Wards" VALUES (9220, 258, 'system', '2023-07-26 08:40:17.675837+07', 'system', '2023-07-26 08:40:17.675837+07', 'Xã Yên Phụ', '09220', 'Xã');
INSERT INTO category."Wards" VALUES (9223, 258, 'system', '2023-07-26 08:40:17.675842+07', 'system', '2023-07-26 08:40:17.675842+07', 'Xã Trung Nghĩa', '09223', 'Xã');
INSERT INTO category."Wards" VALUES (9226, 256, 'system', '2023-07-26 08:40:17.675757+07', 'system', '2023-07-26 08:40:17.675758+07', 'Phường Vạn An', '09226', 'Phường');
INSERT INTO category."Wards" VALUES (9229, 258, 'system', '2023-07-26 08:40:17.675847+07', 'system', '2023-07-26 08:40:17.675847+07', 'Xã Đông Phong', '09229', 'Xã');
INSERT INTO category."Wards" VALUES (9232, 258, 'system', '2023-07-26 08:40:17.675852+07', 'system', '2023-07-26 08:40:17.675852+07', 'Xã Long Châu', '09232', 'Xã');
INSERT INTO category."Wards" VALUES (9235, 256, 'system', '2023-07-26 08:40:17.675763+07', 'system', '2023-07-26 08:40:17.675763+07', 'Phường Khúc Xuyên', '09235', 'Phường');
INSERT INTO category."Wards" VALUES (9238, 258, 'system', '2023-07-26 08:40:17.675856+07', 'system', '2023-07-26 08:40:17.675856+07', 'Xã Văn Môn', '09238', 'Xã');
INSERT INTO category."Wards" VALUES (9241, 258, 'system', '2023-07-26 08:40:17.675861+07', 'system', '2023-07-26 08:40:17.675861+07', 'Xã Đông Thọ', '09241', 'Xã');
INSERT INTO category."Wards" VALUES (9244, 256, 'system', '2023-07-26 08:40:17.675768+07', 'system', '2023-07-26 08:40:17.675768+07', 'Phường Phong Khê', '09244', 'Phường');
INSERT INTO category."Wards" VALUES (9247, 259, 'system', '2023-07-26 08:40:17.675866+07', 'system', '2023-07-26 08:40:17.675866+07', 'Thị trấn Phố Mới', '09247', 'Thị trấn');
INSERT INTO category."Wards" VALUES (9250, 259, 'system', '2023-07-26 08:40:17.67587+07', 'system', '2023-07-26 08:40:17.67587+07', 'Xã Việt Thống', '09250', 'Xã');
INSERT INTO category."Wards" VALUES (9253, 259, 'system', '2023-07-26 08:40:17.675874+07', 'system', '2023-07-26 08:40:17.675874+07', 'Xã Đại Xuân', '09253', 'Xã');
INSERT INTO category."Wards" VALUES (9256, 256, 'system', '2023-07-26 08:40:17.675773+07', 'system', '2023-07-26 08:40:17.675773+07', 'Phường Kim Chân', '09256', 'Phường');
INSERT INTO category."Wards" VALUES (9259, 259, 'system', '2023-07-26 08:40:17.675878+07', 'system', '2023-07-26 08:40:17.675878+07', 'Xã Nhân Hòa', '09259', 'Xã');
INSERT INTO category."Wards" VALUES (9262, 259, 'system', '2023-07-26 08:40:17.675882+07', 'system', '2023-07-26 08:40:17.675883+07', 'Xã Bằng An', '09262', 'Xã');
INSERT INTO category."Wards" VALUES (9265, 259, 'system', '2023-07-26 08:40:17.675887+07', 'system', '2023-07-26 08:40:17.675887+07', 'Xã Phương Liễu', '09265', 'Xã');
INSERT INTO category."Wards" VALUES (9268, 259, 'system', '2023-07-26 08:40:17.675892+07', 'system', '2023-07-26 08:40:17.675892+07', 'Xã Quế Tân', '09268', 'Xã');
INSERT INTO category."Wards" VALUES (9271, 256, 'system', '2023-07-26 08:40:17.675778+07', 'system', '2023-07-26 08:40:17.675778+07', 'Phường Vân Dương', '09271', 'Phường');
INSERT INTO category."Wards" VALUES (9274, 259, 'system', '2023-07-26 08:40:17.675897+07', 'system', '2023-07-26 08:40:17.675897+07', 'Xã Phù Lương', '09274', 'Xã');
INSERT INTO category."Wards" VALUES (9277, 259, 'system', '2023-07-26 08:40:17.675903+07', 'system', '2023-07-26 08:40:17.675903+07', 'Xã Phù Lãng', '09277', 'Xã');
INSERT INTO category."Wards" VALUES (9280, 259, 'system', '2023-07-26 08:40:17.675935+07', 'system', '2023-07-26 08:40:17.675935+07', 'Xã Phượng Mao', '09280', 'Xã');
INSERT INTO category."Wards" VALUES (9283, 259, 'system', '2023-07-26 08:40:17.67594+07', 'system', '2023-07-26 08:40:17.67594+07', 'Xã Việt Hùng', '09283', 'Xã');
INSERT INTO category."Wards" VALUES (9286, 256, 'system', '2023-07-26 08:40:17.675785+07', 'system', '2023-07-26 08:40:17.675785+07', 'Phường Nam Sơn', '09286', 'Phường');
INSERT INTO category."Wards" VALUES (9289, 259, 'system', '2023-07-26 08:40:17.675943+07', 'system', '2023-07-26 08:40:17.675943+07', 'Xã Ngọc Xá', '09289', 'Xã');
INSERT INTO category."Wards" VALUES (9292, 259, 'system', '2023-07-26 08:40:17.675945+07', 'system', '2023-07-26 08:40:17.675946+07', 'Xã Châu Phong', '09292', 'Xã');
INSERT INTO category."Wards" VALUES (9295, 259, 'system', '2023-07-26 08:40:17.675948+07', 'system', '2023-07-26 08:40:17.675948+07', 'Xã Bồng Lai', '09295', 'Xã');
INSERT INTO category."Wards" VALUES (9298, 259, 'system', '2023-07-26 08:40:17.675951+07', 'system', '2023-07-26 08:40:17.675951+07', 'Xã Cách Bi', '09298', 'Xã');
INSERT INTO category."Wards" VALUES (9301, 259, 'system', '2023-07-26 08:40:17.675953+07', 'system', '2023-07-26 08:40:17.675953+07', 'Xã Đào Viên', '09301', 'Xã');
INSERT INTO category."Wards" VALUES (9304, 259, 'system', '2023-07-26 08:40:17.675956+07', 'system', '2023-07-26 08:40:17.675956+07', 'Xã Yên Giả', '09304', 'Xã');
INSERT INTO category."Wards" VALUES (9307, 259, 'system', '2023-07-26 08:40:17.675959+07', 'system', '2023-07-26 08:40:17.675959+07', 'Xã Mộ Đạo', '09307', 'Xã');
INSERT INTO category."Wards" VALUES (9310, 259, 'system', '2023-07-26 08:40:17.675961+07', 'system', '2023-07-26 08:40:17.675961+07', 'Xã Đức Long', '09310', 'Xã');
INSERT INTO category."Wards" VALUES (9313, 259, 'system', '2023-07-26 08:40:17.675966+07', 'system', '2023-07-26 08:40:17.675966+07', 'Xã Chi Lăng', '09313', 'Xã');
INSERT INTO category."Wards" VALUES (9316, 259, 'system', '2023-07-26 08:40:17.675968+07', 'system', '2023-07-26 08:40:17.675969+07', 'Xã Hán Quảng', '09316', 'Xã');
INSERT INTO category."Wards" VALUES (9319, 260, 'system', '2023-07-26 08:40:17.675971+07', 'system', '2023-07-26 08:40:17.675971+07', 'Thị trấn Lim', '09319', 'Thị trấn');
INSERT INTO category."Wards" VALUES (9322, 260, 'system', '2023-07-26 08:40:17.675974+07', 'system', '2023-07-26 08:40:17.675974+07', 'Xã Phú Lâm', '09322', 'Xã');
INSERT INTO category."Wards" VALUES (9325, 256, 'system', '2023-07-26 08:40:17.675791+07', 'system', '2023-07-26 08:40:17.675791+07', 'Phường Khắc Niệm', '09325', 'Phường');
INSERT INTO category."Wards" VALUES (9328, 260, 'system', '2023-07-26 08:40:17.675977+07', 'system', '2023-07-26 08:40:17.675977+07', 'Xã Nội Duệ', '09328', 'Xã');
INSERT INTO category."Wards" VALUES (9331, 256, 'system', '2023-07-26 08:40:17.675796+07', 'system', '2023-07-26 08:40:17.675796+07', 'Phường Hạp Lĩnh', '09331', 'Phường');
INSERT INTO category."Wards" VALUES (9334, 260, 'system', '2023-07-26 08:40:17.67598+07', 'system', '2023-07-26 08:40:17.67598+07', 'Xã Liên Bão', '09334', 'Xã');
INSERT INTO category."Wards" VALUES (9337, 260, 'system', '2023-07-26 08:40:17.675982+07', 'system', '2023-07-26 08:40:17.675982+07', 'Xã Hiên Vân', '09337', 'Xã');
INSERT INTO category."Wards" VALUES (9340, 260, 'system', '2023-07-26 08:40:17.675985+07', 'system', '2023-07-26 08:40:17.675985+07', 'Xã Hoàn Sơn', '09340', 'Xã');
INSERT INTO category."Wards" VALUES (9343, 260, 'system', '2023-07-26 08:40:17.675987+07', 'system', '2023-07-26 08:40:17.675987+07', 'Xã Lạc Vệ', '09343', 'Xã');
INSERT INTO category."Wards" VALUES (9346, 260, 'system', '2023-07-26 08:40:17.67599+07', 'system', '2023-07-26 08:40:17.67599+07', 'Xã Việt Đoàn', '09346', 'Xã');
INSERT INTO category."Wards" VALUES (9349, 260, 'system', '2023-07-26 08:40:17.675993+07', 'system', '2023-07-26 08:40:17.675993+07', 'Xã Phật Tích', '09349', 'Xã');
INSERT INTO category."Wards" VALUES (9352, 260, 'system', '2023-07-26 08:40:17.675996+07', 'system', '2023-07-26 08:40:17.675996+07', 'Xã Tân Chi', '09352', 'Xã');
INSERT INTO category."Wards" VALUES (9355, 260, 'system', '2023-07-26 08:40:17.675998+07', 'system', '2023-07-26 08:40:17.675998+07', 'Xã Đại Đồng', '09355', 'Xã');
INSERT INTO category."Wards" VALUES (9358, 260, 'system', '2023-07-26 08:40:17.676001+07', 'system', '2023-07-26 08:40:17.676001+07', 'Xã Tri Phương', '09358', 'Xã');
INSERT INTO category."Wards" VALUES (9361, 260, 'system', '2023-07-26 08:40:17.676004+07', 'system', '2023-07-26 08:40:17.676004+07', 'Xã Minh Đạo', '09361', 'Xã');
INSERT INTO category."Wards" VALUES (9364, 260, 'system', '2023-07-26 08:40:17.676006+07', 'system', '2023-07-26 08:40:17.676007+07', 'Xã Cảnh Hưng', '09364', 'Xã');
INSERT INTO category."Wards" VALUES (9367, 261, 'system', '2023-07-26 08:40:17.676009+07', 'system', '2023-07-26 08:40:17.676009+07', 'Phường Đông Ngàn', '09367', 'Phường');
INSERT INTO category."Wards" VALUES (9370, 261, 'system', '2023-07-26 08:40:17.676012+07', 'system', '2023-07-26 08:40:17.676012+07', 'Phường Tam Sơn', '09370', 'Phường');
INSERT INTO category."Wards" VALUES (9373, 261, 'system', '2023-07-26 08:40:17.676015+07', 'system', '2023-07-26 08:40:17.676015+07', 'Phường Hương Mạc', '09373', 'Phường');
INSERT INTO category."Wards" VALUES (9376, 261, 'system', '2023-07-26 08:40:17.676018+07', 'system', '2023-07-26 08:40:17.676018+07', 'Phường Tương Giang', '09376', 'Phường');
INSERT INTO category."Wards" VALUES (9379, 261, 'system', '2023-07-26 08:40:17.676021+07', 'system', '2023-07-26 08:40:17.676021+07', 'Phường Phù Khê', '09379', 'Phường');
INSERT INTO category."Wards" VALUES (9382, 261, 'system', '2023-07-26 08:40:17.676023+07', 'system', '2023-07-26 08:40:17.676023+07', 'Phường Đồng Kỵ', '09382', 'Phường');
INSERT INTO category."Wards" VALUES (9383, 261, 'system', '2023-07-26 08:40:17.676026+07', 'system', '2023-07-26 08:40:17.676026+07', 'Phường Trang Hạ', '09383', 'Phường');
INSERT INTO category."Wards" VALUES (9385, 261, 'system', '2023-07-26 08:40:17.676029+07', 'system', '2023-07-26 08:40:17.676029+07', 'Phường Đồng Nguyên', '09385', 'Phường');
INSERT INTO category."Wards" VALUES (9388, 261, 'system', '2023-07-26 08:40:17.676032+07', 'system', '2023-07-26 08:40:17.676032+07', 'Phường Châu Khê', '09388', 'Phường');
INSERT INTO category."Wards" VALUES (9391, 261, 'system', '2023-07-26 08:40:17.676035+07', 'system', '2023-07-26 08:40:17.676035+07', 'Phường Tân Hồng', '09391', 'Phường');
INSERT INTO category."Wards" VALUES (9394, 261, 'system', '2023-07-26 08:40:17.676038+07', 'system', '2023-07-26 08:40:17.676038+07', 'Phường Đình Bảng', '09394', 'Phường');
INSERT INTO category."Wards" VALUES (9397, 261, 'system', '2023-07-26 08:40:17.676041+07', 'system', '2023-07-26 08:40:17.676041+07', 'Phường Phù Chẩn', '09397', 'Phường');
INSERT INTO category."Wards" VALUES (9400, 262, 'system', '2023-07-26 08:40:17.676044+07', 'system', '2023-07-26 08:40:17.676044+07', 'Thị trấn Hồ', '09400', 'Thị trấn');
INSERT INTO category."Wards" VALUES (9403, 262, 'system', '2023-07-26 08:40:17.676046+07', 'system', '2023-07-26 08:40:17.676046+07', 'Xã Hoài Thượng', '09403', 'Xã');
INSERT INTO category."Wards" VALUES (9406, 262, 'system', '2023-07-26 08:40:17.676049+07', 'system', '2023-07-26 08:40:17.676049+07', 'Xã Đại Đồng Thành', '09406', 'Xã');
INSERT INTO category."Wards" VALUES (9409, 262, 'system', '2023-07-26 08:40:17.676052+07', 'system', '2023-07-26 08:40:17.676052+07', 'Xã Mão Điền', '09409', 'Xã');
INSERT INTO category."Wards" VALUES (9412, 262, 'system', '2023-07-26 08:40:17.676055+07', 'system', '2023-07-26 08:40:17.676055+07', 'Xã Song Hồ', '09412', 'Xã');
INSERT INTO category."Wards" VALUES (9415, 262, 'system', '2023-07-26 08:40:17.676058+07', 'system', '2023-07-26 08:40:17.676058+07', 'Xã Đình Tổ', '09415', 'Xã');
INSERT INTO category."Wards" VALUES (9418, 262, 'system', '2023-07-26 08:40:17.676061+07', 'system', '2023-07-26 08:40:17.676061+07', 'Xã An Bình', '09418', 'Xã');
INSERT INTO category."Wards" VALUES (9424, 262, 'system', '2023-07-26 08:40:17.676067+07', 'system', '2023-07-26 08:40:17.676067+07', 'Xã Gia Đông', '09424', 'Xã');
INSERT INTO category."Wards" VALUES (9427, 262, 'system', '2023-07-26 08:40:17.67607+07', 'system', '2023-07-26 08:40:17.67607+07', 'Xã Thanh Khương', '09427', 'Xã');
INSERT INTO category."Wards" VALUES (9430, 262, 'system', '2023-07-26 08:40:17.676072+07', 'system', '2023-07-26 08:40:17.676072+07', 'Xã Trạm Lộ', '09430', 'Xã');
INSERT INTO category."Wards" VALUES (9433, 262, 'system', '2023-07-26 08:40:17.676075+07', 'system', '2023-07-26 08:40:17.676075+07', 'Xã Xuân Lâm', '09433', 'Xã');
INSERT INTO category."Wards" VALUES (9436, 262, 'system', '2023-07-26 08:40:17.676077+07', 'system', '2023-07-26 08:40:17.676077+07', 'Xã Hà Mãn', '09436', 'Xã');
INSERT INTO category."Wards" VALUES (9439, 262, 'system', '2023-07-26 08:40:17.67608+07', 'system', '2023-07-26 08:40:17.67608+07', 'Xã Ngũ Thái', '09439', 'Xã');
INSERT INTO category."Wards" VALUES (9442, 262, 'system', '2023-07-26 08:40:17.676082+07', 'system', '2023-07-26 08:40:17.676083+07', 'Xã Nguyệt Đức', '09442', 'Xã');
INSERT INTO category."Wards" VALUES (9445, 262, 'system', '2023-07-26 08:40:17.676085+07', 'system', '2023-07-26 08:40:17.676085+07', 'Xã Ninh Xá', '09445', 'Xã');
INSERT INTO category."Wards" VALUES (9448, 262, 'system', '2023-07-26 08:40:17.676088+07', 'system', '2023-07-26 08:40:17.676088+07', 'Xã Nghĩa Đạo', '09448', 'Xã');
INSERT INTO category."Wards" VALUES (9451, 262, 'system', '2023-07-26 08:40:17.676091+07', 'system', '2023-07-26 08:40:17.676091+07', 'Xã Song Liễu', '09451', 'Xã');
INSERT INTO category."Wards" VALUES (9454, 263, 'system', '2023-07-26 08:40:17.676093+07', 'system', '2023-07-26 08:40:17.676093+07', 'Thị trấn Gia Bình', '09454', 'Thị trấn');
INSERT INTO category."Wards" VALUES (9457, 263, 'system', '2023-07-26 08:40:17.676096+07', 'system', '2023-07-26 08:40:17.676096+07', 'Xã Vạn Ninh', '09457', 'Xã');
INSERT INTO category."Wards" VALUES (9460, 263, 'system', '2023-07-26 08:40:17.676099+07', 'system', '2023-07-26 08:40:17.676099+07', 'Xã Thái Bảo', '09460', 'Xã');
INSERT INTO category."Wards" VALUES (9463, 263, 'system', '2023-07-26 08:40:17.676101+07', 'system', '2023-07-26 08:40:17.676101+07', 'Xã Giang Sơn', '09463', 'Xã');
INSERT INTO category."Wards" VALUES (9466, 263, 'system', '2023-07-26 08:40:17.676104+07', 'system', '2023-07-26 08:40:17.676104+07', 'Xã Cao Đức', '09466', 'Xã');
INSERT INTO category."Wards" VALUES (9469, 263, 'system', '2023-07-26 08:40:17.676106+07', 'system', '2023-07-26 08:40:17.676107+07', 'Xã Đại Lai', '09469', 'Xã');
INSERT INTO category."Wards" VALUES (9472, 263, 'system', '2023-07-26 08:40:17.676109+07', 'system', '2023-07-26 08:40:17.676109+07', 'Xã Song Giang', '09472', 'Xã');
INSERT INTO category."Wards" VALUES (9475, 263, 'system', '2023-07-26 08:40:17.676112+07', 'system', '2023-07-26 08:40:17.676112+07', 'Xã Bình Dương', '09475', 'Xã');
INSERT INTO category."Wards" VALUES (9478, 263, 'system', '2023-07-26 08:40:17.676115+07', 'system', '2023-07-26 08:40:17.676115+07', 'Xã Lãng Ngâm', '09478', 'Xã');
INSERT INTO category."Wards" VALUES (9481, 263, 'system', '2023-07-26 08:40:17.676117+07', 'system', '2023-07-26 08:40:17.676117+07', 'Xã Nhân Thắng', '09481', 'Xã');
INSERT INTO category."Wards" VALUES (9484, 263, 'system', '2023-07-26 08:40:17.67612+07', 'system', '2023-07-26 08:40:17.67612+07', 'Xã Xuân Lai', '09484', 'Xã');
INSERT INTO category."Wards" VALUES (9487, 263, 'system', '2023-07-26 08:40:17.676122+07', 'system', '2023-07-26 08:40:17.676122+07', 'Xã Đông Cứu', '09487', 'Xã');
INSERT INTO category."Wards" VALUES (9490, 263, 'system', '2023-07-26 08:40:17.676125+07', 'system', '2023-07-26 08:40:17.676125+07', 'Xã Đại Bái', '09490', 'Xã');
INSERT INTO category."Wards" VALUES (9493, 263, 'system', '2023-07-26 08:40:17.676128+07', 'system', '2023-07-26 08:40:17.676128+07', 'Xã Quỳnh Phú', '09493', 'Xã');
INSERT INTO category."Wards" VALUES (9496, 264, 'system', '2023-07-26 08:40:17.67613+07', 'system', '2023-07-26 08:40:17.67613+07', 'Thị trấn Thứa', '09496', 'Thị trấn');
INSERT INTO category."Wards" VALUES (9499, 264, 'system', '2023-07-26 08:40:17.676133+07', 'system', '2023-07-26 08:40:17.676134+07', 'Xã An Thịnh', '09499', 'Xã');
INSERT INTO category."Wards" VALUES (9502, 264, 'system', '2023-07-26 08:40:17.676136+07', 'system', '2023-07-26 08:40:17.676136+07', 'Xã Trung Kênh', '09502', 'Xã');
INSERT INTO category."Wards" VALUES (9505, 264, 'system', '2023-07-26 08:40:17.676139+07', 'system', '2023-07-26 08:40:17.676139+07', 'Xã Phú Hòa', '09505', 'Xã');
INSERT INTO category."Wards" VALUES (9508, 264, 'system', '2023-07-26 08:40:17.676141+07', 'system', '2023-07-26 08:40:17.676141+07', 'Xã Mỹ Hương', '09508', 'Xã');
INSERT INTO category."Wards" VALUES (9511, 264, 'system', '2023-07-26 08:40:17.676144+07', 'system', '2023-07-26 08:40:17.676144+07', 'Xã Tân Lãng', '09511', 'Xã');
INSERT INTO category."Wards" VALUES (9514, 264, 'system', '2023-07-26 08:40:17.676146+07', 'system', '2023-07-26 08:40:17.676146+07', 'Xã Quảng Phú', '09514', 'Xã');
INSERT INTO category."Wards" VALUES (9517, 264, 'system', '2023-07-26 08:40:17.676149+07', 'system', '2023-07-26 08:40:17.676149+07', 'Xã Trừng Xá', '09517', 'Xã');
INSERT INTO category."Wards" VALUES (9520, 264, 'system', '2023-07-26 08:40:17.676152+07', 'system', '2023-07-26 08:40:17.676152+07', 'Xã Lai Hạ', '09520', 'Xã');
INSERT INTO category."Wards" VALUES (9523, 264, 'system', '2023-07-26 08:40:17.676154+07', 'system', '2023-07-26 08:40:17.676154+07', 'Xã Trung Chính', '09523', 'Xã');
INSERT INTO category."Wards" VALUES (9526, 264, 'system', '2023-07-26 08:40:17.676157+07', 'system', '2023-07-26 08:40:17.676157+07', 'Xã Minh Tân', '09526', 'Xã');
INSERT INTO category."Wards" VALUES (9529, 264, 'system', '2023-07-26 08:40:17.67616+07', 'system', '2023-07-26 08:40:17.67616+07', 'Xã Bình Định', '09529', 'Xã');
INSERT INTO category."Wards" VALUES (9532, 264, 'system', '2023-07-26 08:40:17.676163+07', 'system', '2023-07-26 08:40:17.676163+07', 'Xã Phú Lương', '09532', 'Xã');
INSERT INTO category."Wards" VALUES (9535, 264, 'system', '2023-07-26 08:40:17.676166+07', 'system', '2023-07-26 08:40:17.676166+07', 'Xã Lâm Thao', '09535', 'Xã');
INSERT INTO category."Wards" VALUES (9538, 268, 'system', '2023-07-26 08:40:17.66072+07', 'system', '2023-07-26 08:40:17.66072+07', 'Phường Nguyễn Trãi', '09538', 'Phường');
INSERT INTO category."Wards" VALUES (9541, 268, 'system', '2023-07-26 08:40:17.660723+07', 'system', '2023-07-26 08:40:17.660723+07', 'Phường Mộ Lao', '09541', 'Phường');
INSERT INTO category."Wards" VALUES (9542, 268, 'system', '2023-07-26 08:40:17.660728+07', 'system', '2023-07-26 08:40:17.660728+07', 'Phường Văn Quán', '09542', 'Phường');
INSERT INTO category."Wards" VALUES (9544, 268, 'system', '2023-07-26 08:40:17.660731+07', 'system', '2023-07-26 08:40:17.660731+07', 'Phường Vạn Phúc', '09544', 'Phường');
INSERT INTO category."Wards" VALUES (9547, 268, 'system', '2023-07-26 08:40:17.660733+07', 'system', '2023-07-26 08:40:17.660734+07', 'Phường Yết Kiêu', '09547', 'Phường');
INSERT INTO category."Wards" VALUES (9550, 268, 'system', '2023-07-26 08:40:17.660736+07', 'system', '2023-07-26 08:40:17.660736+07', 'Phường Quang Trung', '09550', 'Phường');
INSERT INTO category."Wards" VALUES (9551, 268, 'system', '2023-07-26 08:40:17.660739+07', 'system', '2023-07-26 08:40:17.660739+07', 'Phường La Khê', '09551', 'Phường');
INSERT INTO category."Wards" VALUES (9552, 268, 'system', '2023-07-26 08:40:17.660742+07', 'system', '2023-07-26 08:40:17.660742+07', 'Phường Phú La', '09552', 'Phường');
INSERT INTO category."Wards" VALUES (9553, 268, 'system', '2023-07-26 08:40:17.660745+07', 'system', '2023-07-26 08:40:17.660745+07', 'Phường Phúc La', '09553', 'Phường');
INSERT INTO category."Wards" VALUES (9556, 268, 'system', '2023-07-26 08:40:17.660748+07', 'system', '2023-07-26 08:40:17.660748+07', 'Phường Hà Cầu', '09556', 'Phường');
INSERT INTO category."Wards" VALUES (9562, 268, 'system', '2023-07-26 08:40:17.66075+07', 'system', '2023-07-26 08:40:17.66075+07', 'Phường Yên Nghĩa', '09562', 'Phường');
INSERT INTO category."Wards" VALUES (9565, 268, 'system', '2023-07-26 08:40:17.660753+07', 'system', '2023-07-26 08:40:17.660753+07', 'Phường Kiến Hưng', '09565', 'Phường');
INSERT INTO category."Wards" VALUES (9568, 268, 'system', '2023-07-26 08:40:17.660756+07', 'system', '2023-07-26 08:40:17.660756+07', 'Phường Phú Lãm', '09568', 'Phường');
INSERT INTO category."Wards" VALUES (9571, 268, 'system', '2023-07-26 08:40:17.660772+07', 'system', '2023-07-26 08:40:17.660772+07', 'Phường Phú Lương', '09571', 'Phường');
INSERT INTO category."Wards" VALUES (9574, 269, 'system', '2023-07-26 08:40:17.660784+07', 'system', '2023-07-26 08:40:17.660784+07', 'Phường Lê Lợi', '09574', 'Phường');
INSERT INTO category."Wards" VALUES (9577, 269, 'system', '2023-07-26 08:40:17.660787+07', 'system', '2023-07-26 08:40:17.660787+07', 'Phường Phú Thịnh', '09577', 'Phường');
INSERT INTO category."Wards" VALUES (9580, 269, 'system', '2023-07-26 08:40:17.66079+07', 'system', '2023-07-26 08:40:17.66079+07', 'Phường Ngô Quyền', '09580', 'Phường');
INSERT INTO category."Wards" VALUES (9583, 269, 'system', '2023-07-26 08:40:17.660792+07', 'system', '2023-07-26 08:40:17.660793+07', 'Phường Quang Trung', '09583', 'Phường');
INSERT INTO category."Wards" VALUES (9586, 269, 'system', '2023-07-26 08:40:17.660795+07', 'system', '2023-07-26 08:40:17.660795+07', 'Phường Sơn Lộc', '09586', 'Phường');
INSERT INTO category."Wards" VALUES (9589, 269, 'system', '2023-07-26 08:40:17.660798+07', 'system', '2023-07-26 08:40:17.660798+07', 'Phường Xuân Khanh', '09589', 'Phường');
INSERT INTO category."Wards" VALUES (9592, 269, 'system', '2023-07-26 08:40:17.660801+07', 'system', '2023-07-26 08:40:17.660801+07', 'Xã Đường Lâm', '09592', 'Xã');
INSERT INTO category."Wards" VALUES (9595, 269, 'system', '2023-07-26 08:40:17.660803+07', 'system', '2023-07-26 08:40:17.660804+07', 'Phường Viên Sơn', '09595', 'Phường');
INSERT INTO category."Wards" VALUES (9598, 269, 'system', '2023-07-26 08:40:17.660806+07', 'system', '2023-07-26 08:40:17.660806+07', 'Xã Xuân Sơn', '09598', 'Xã');
INSERT INTO category."Wards" VALUES (9601, 269, 'system', '2023-07-26 08:40:17.66082+07', 'system', '2023-07-26 08:40:17.66082+07', 'Phường Trung Hưng', '09601', 'Phường');
INSERT INTO category."Wards" VALUES (9604, 269, 'system', '2023-07-26 08:40:17.660823+07', 'system', '2023-07-26 08:40:17.660823+07', 'Xã Thanh Mỹ', '09604', 'Xã');
INSERT INTO category."Wards" VALUES (9607, 269, 'system', '2023-07-26 08:40:17.660827+07', 'system', '2023-07-26 08:40:17.660827+07', 'Phường Trung Sơn Trầm', '09607', 'Phường');
INSERT INTO category."Wards" VALUES (9610, 269, 'system', '2023-07-26 08:40:17.660831+07', 'system', '2023-07-26 08:40:17.660832+07', 'Xã Kim Sơn', '09610', 'Xã');
INSERT INTO category."Wards" VALUES (9613, 269, 'system', '2023-07-26 08:40:17.660836+07', 'system', '2023-07-26 08:40:17.660836+07', 'Xã Sơn Đông', '09613', 'Xã');
INSERT INTO category."Wards" VALUES (9616, 269, 'system', '2023-07-26 08:40:17.66084+07', 'system', '2023-07-26 08:40:17.66084+07', 'Xã Cổ Đông', '09616', 'Xã');
INSERT INTO category."Wards" VALUES (9619, 271, 'system', '2023-07-26 08:40:17.660844+07', 'system', '2023-07-26 08:40:17.660845+07', 'Thị trấn Tây Đằng', '09619', 'Thị trấn');
INSERT INTO category."Wards" VALUES (9625, 271, 'system', '2023-07-26 08:40:17.66085+07', 'system', '2023-07-26 08:40:17.66085+07', 'Xã Phú Cường', '09625', 'Xã');
INSERT INTO category."Wards" VALUES (9628, 271, 'system', '2023-07-26 08:40:17.660857+07', 'system', '2023-07-26 08:40:17.660857+07', 'Xã Cổ Đô', '09628', 'Xã');
INSERT INTO category."Wards" VALUES (9631, 271, 'system', '2023-07-26 08:40:17.660862+07', 'system', '2023-07-26 08:40:17.660862+07', 'Xã Tản Hồng', '09631', 'Xã');
INSERT INTO category."Wards" VALUES (9634, 271, 'system', '2023-07-26 08:40:17.660867+07', 'system', '2023-07-26 08:40:17.660867+07', 'Xã Vạn Thắng', '09634', 'Xã');
INSERT INTO category."Wards" VALUES (9637, 271, 'system', '2023-07-26 08:40:17.660871+07', 'system', '2023-07-26 08:40:17.660872+07', 'Xã Châu Sơn', '09637', 'Xã');
INSERT INTO category."Wards" VALUES (9640, 271, 'system', '2023-07-26 08:40:17.660876+07', 'system', '2023-07-26 08:40:17.660876+07', 'Xã Phong Vân', '09640', 'Xã');
INSERT INTO category."Wards" VALUES (9643, 271, 'system', '2023-07-26 08:40:17.660881+07', 'system', '2023-07-26 08:40:17.660881+07', 'Xã Phú Đông', '09643', 'Xã');
INSERT INTO category."Wards" VALUES (9646, 271, 'system', '2023-07-26 08:40:17.660886+07', 'system', '2023-07-26 08:40:17.660886+07', 'Xã Phú Phương', '09646', 'Xã');
INSERT INTO category."Wards" VALUES (9649, 271, 'system', '2023-07-26 08:40:17.660891+07', 'system', '2023-07-26 08:40:17.660891+07', 'Xã Phú Châu', '09649', 'Xã');
INSERT INTO category."Wards" VALUES (9652, 271, 'system', '2023-07-26 08:40:17.660896+07', 'system', '2023-07-26 08:40:17.660896+07', 'Xã Thái Hòa', '09652', 'Xã');
INSERT INTO category."Wards" VALUES (9655, 271, 'system', '2023-07-26 08:40:17.6609+07', 'system', '2023-07-26 08:40:17.6609+07', 'Xã Đồng Thái', '09655', 'Xã');
INSERT INTO category."Wards" VALUES (9658, 271, 'system', '2023-07-26 08:40:17.660905+07', 'system', '2023-07-26 08:40:17.660905+07', 'Xã Phú Sơn', '09658', 'Xã');
INSERT INTO category."Wards" VALUES (9661, 271, 'system', '2023-07-26 08:40:17.660909+07', 'system', '2023-07-26 08:40:17.660909+07', 'Xã Minh Châu', '09661', 'Xã');
INSERT INTO category."Wards" VALUES (9664, 271, 'system', '2023-07-26 08:40:17.660913+07', 'system', '2023-07-26 08:40:17.660913+07', 'Xã Vật Lại', '09664', 'Xã');
INSERT INTO category."Wards" VALUES (9667, 271, 'system', '2023-07-26 08:40:17.660917+07', 'system', '2023-07-26 08:40:17.660917+07', 'Xã Chu Minh', '09667', 'Xã');
INSERT INTO category."Wards" VALUES (9670, 271, 'system', '2023-07-26 08:40:17.660921+07', 'system', '2023-07-26 08:40:17.660921+07', 'Xã Tòng Bạt', '09670', 'Xã');
INSERT INTO category."Wards" VALUES (9673, 271, 'system', '2023-07-26 08:40:17.660926+07', 'system', '2023-07-26 08:40:17.660926+07', 'Xã Cẩm Lĩnh', '09673', 'Xã');
INSERT INTO category."Wards" VALUES (9676, 271, 'system', '2023-07-26 08:40:17.66093+07', 'system', '2023-07-26 08:40:17.66093+07', 'Xã Sơn Đà', '09676', 'Xã');
INSERT INTO category."Wards" VALUES (9679, 271, 'system', '2023-07-26 08:40:17.660934+07', 'system', '2023-07-26 08:40:17.660934+07', 'Xã Đông Quang', '09679', 'Xã');
INSERT INTO category."Wards" VALUES (9682, 271, 'system', '2023-07-26 08:40:17.660939+07', 'system', '2023-07-26 08:40:17.660939+07', 'Xã Tiên Phong', '09682', 'Xã');
INSERT INTO category."Wards" VALUES (9685, 271, 'system', '2023-07-26 08:40:17.660943+07', 'system', '2023-07-26 08:40:17.660943+07', 'Xã Thụy An', '09685', 'Xã');
INSERT INTO category."Wards" VALUES (9688, 271, 'system', '2023-07-26 08:40:17.660948+07', 'system', '2023-07-26 08:40:17.660948+07', 'Xã Cam Thượng', '09688', 'Xã');
INSERT INTO category."Wards" VALUES (9691, 271, 'system', '2023-07-26 08:40:17.660952+07', 'system', '2023-07-26 08:40:17.660952+07', 'Xã Thuần Mỹ', '09691', 'Xã');
INSERT INTO category."Wards" VALUES (9694, 271, 'system', '2023-07-26 08:40:17.660956+07', 'system', '2023-07-26 08:40:17.660956+07', 'Xã Tản Lĩnh', '09694', 'Xã');
INSERT INTO category."Wards" VALUES (9697, 271, 'system', '2023-07-26 08:40:17.660961+07', 'system', '2023-07-26 08:40:17.660961+07', 'Xã Ba Trại', '09697', 'Xã');
INSERT INTO category."Wards" VALUES (9700, 271, 'system', '2023-07-26 08:40:17.660966+07', 'system', '2023-07-26 08:40:17.660966+07', 'Xã Minh Quang', '09700', 'Xã');
INSERT INTO category."Wards" VALUES (9703, 271, 'system', '2023-07-26 08:40:17.660971+07', 'system', '2023-07-26 08:40:17.660971+07', 'Xã Ba Vì', '09703', 'Xã');
INSERT INTO category."Wards" VALUES (9706, 271, 'system', '2023-07-26 08:40:17.660975+07', 'system', '2023-07-26 08:40:17.660975+07', 'Xã Vân Hòa', '09706', 'Xã');
INSERT INTO category."Wards" VALUES (9709, 271, 'system', '2023-07-26 08:40:17.66098+07', 'system', '2023-07-26 08:40:17.66098+07', 'Xã Yên Bài', '09709', 'Xã');
INSERT INTO category."Wards" VALUES (9712, 271, 'system', '2023-07-26 08:40:17.660985+07', 'system', '2023-07-26 08:40:17.660985+07', 'Xã Khánh Thượng', '09712', 'Xã');
INSERT INTO category."Wards" VALUES (9715, 272, 'system', '2023-07-26 08:40:17.660988+07', 'system', '2023-07-26 08:40:17.660988+07', 'Thị trấn Phúc Thọ', '09715', 'Thị trấn');
INSERT INTO category."Wards" VALUES (9718, 272, 'system', '2023-07-26 08:40:17.660991+07', 'system', '2023-07-26 08:40:17.660991+07', 'Xã Vân Hà', '09718', 'Xã');
INSERT INTO category."Wards" VALUES (9721, 272, 'system', '2023-07-26 08:40:17.660994+07', 'system', '2023-07-26 08:40:17.660994+07', 'Xã Vân Phúc', '09721', 'Xã');
INSERT INTO category."Wards" VALUES (9724, 272, 'system', '2023-07-26 08:40:17.660996+07', 'system', '2023-07-26 08:40:17.660997+07', 'Xã Vân Nam', '09724', 'Xã');
INSERT INTO category."Wards" VALUES (9727, 272, 'system', '2023-07-26 08:40:17.660999+07', 'system', '2023-07-26 08:40:17.660999+07', 'Xã Xuân Đình', '09727', 'Xã');
INSERT INTO category."Wards" VALUES (9733, 272, 'system', '2023-07-26 08:40:17.661002+07', 'system', '2023-07-26 08:40:17.661002+07', 'Xã Sen Phương', '09733', 'Xã');
INSERT INTO category."Wards" VALUES (9739, 272, 'system', '2023-07-26 08:40:17.661004+07', 'system', '2023-07-26 08:40:17.661005+07', 'Xã Võng Xuyên', '09739', 'Xã');
INSERT INTO category."Wards" VALUES (9742, 272, 'system', '2023-07-26 08:40:17.661007+07', 'system', '2023-07-26 08:40:17.661007+07', 'Xã Thọ Lộc', '09742', 'Xã');
INSERT INTO category."Wards" VALUES (9745, 272, 'system', '2023-07-26 08:40:17.661011+07', 'system', '2023-07-26 08:40:17.661011+07', 'Xã Long Xuyên', '09745', 'Xã');
INSERT INTO category."Wards" VALUES (9748, 272, 'system', '2023-07-26 08:40:17.661014+07', 'system', '2023-07-26 08:40:17.661014+07', 'Xã Thượng Cốc', '09748', 'Xã');
INSERT INTO category."Wards" VALUES (9751, 272, 'system', '2023-07-26 08:40:17.661017+07', 'system', '2023-07-26 08:40:17.661017+07', 'Xã Hát Môn', '09751', 'Xã');
INSERT INTO category."Wards" VALUES (9754, 272, 'system', '2023-07-26 08:40:17.661019+07', 'system', '2023-07-26 08:40:17.661019+07', 'Xã Tích Giang', '09754', 'Xã');
INSERT INTO category."Wards" VALUES (9757, 272, 'system', '2023-07-26 08:40:17.661022+07', 'system', '2023-07-26 08:40:17.661022+07', 'Xã Thanh Đa', '09757', 'Xã');
INSERT INTO category."Wards" VALUES (9760, 272, 'system', '2023-07-26 08:40:17.661025+07', 'system', '2023-07-26 08:40:17.661025+07', 'Xã Trạch Mỹ Lộc', '09760', 'Xã');
INSERT INTO category."Wards" VALUES (9763, 272, 'system', '2023-07-26 08:40:17.661028+07', 'system', '2023-07-26 08:40:17.661028+07', 'Xã Phúc Hòa', '09763', 'Xã');
INSERT INTO category."Wards" VALUES (9766, 272, 'system', '2023-07-26 08:40:17.66103+07', 'system', '2023-07-26 08:40:17.66103+07', 'Xã Ngọc Tảo', '09766', 'Xã');
INSERT INTO category."Wards" VALUES (9769, 272, 'system', '2023-07-26 08:40:17.661033+07', 'system', '2023-07-26 08:40:17.661033+07', 'Xã Phụng Thượng', '09769', 'Xã');
INSERT INTO category."Wards" VALUES (9772, 272, 'system', '2023-07-26 08:40:17.661036+07', 'system', '2023-07-26 08:40:17.661036+07', 'Xã Tam Thuấn', '09772', 'Xã');
INSERT INTO category."Wards" VALUES (9775, 272, 'system', '2023-07-26 08:40:17.661038+07', 'system', '2023-07-26 08:40:17.661039+07', 'Xã Tam Hiệp', '09775', 'Xã');
INSERT INTO category."Wards" VALUES (9778, 272, 'system', '2023-07-26 08:40:17.661041+07', 'system', '2023-07-26 08:40:17.661041+07', 'Xã Hiệp Thuận', '09778', 'Xã');
INSERT INTO category."Wards" VALUES (9781, 272, 'system', '2023-07-26 08:40:17.661044+07', 'system', '2023-07-26 08:40:17.661044+07', 'Xã Liên Hiệp', '09781', 'Xã');
INSERT INTO category."Wards" VALUES (9784, 273, 'system', '2023-07-26 08:40:17.661047+07', 'system', '2023-07-26 08:40:17.661047+07', 'Thị trấn Phùng', '09784', 'Thị trấn');
INSERT INTO category."Wards" VALUES (9787, 273, 'system', '2023-07-26 08:40:17.661049+07', 'system', '2023-07-26 08:40:17.661049+07', 'Xã Trung Châu', '09787', 'Xã');
INSERT INTO category."Wards" VALUES (9790, 273, 'system', '2023-07-26 08:40:17.661052+07', 'system', '2023-07-26 08:40:17.661052+07', 'Xã Thọ An', '09790', 'Xã');
INSERT INTO category."Wards" VALUES (9793, 273, 'system', '2023-07-26 08:40:17.661055+07', 'system', '2023-07-26 08:40:17.661055+07', 'Xã Thọ Xuân', '09793', 'Xã');
INSERT INTO category."Wards" VALUES (9796, 273, 'system', '2023-07-26 08:40:17.661057+07', 'system', '2023-07-26 08:40:17.661057+07', 'Xã Hồng Hà', '09796', 'Xã');
INSERT INTO category."Wards" VALUES (9799, 273, 'system', '2023-07-26 08:40:17.66106+07', 'system', '2023-07-26 08:40:17.66106+07', 'Xã Liên Hồng', '09799', 'Xã');
INSERT INTO category."Wards" VALUES (9802, 273, 'system', '2023-07-26 08:40:17.661063+07', 'system', '2023-07-26 08:40:17.661063+07', 'Xã Liên Hà', '09802', 'Xã');
INSERT INTO category."Wards" VALUES (9805, 273, 'system', '2023-07-26 08:40:17.661066+07', 'system', '2023-07-26 08:40:17.661066+07', 'Xã Hạ Mỗ', '09805', 'Xã');
INSERT INTO category."Wards" VALUES (9808, 273, 'system', '2023-07-26 08:40:17.661068+07', 'system', '2023-07-26 08:40:17.661068+07', 'Xã Liên Trung', '09808', 'Xã');
INSERT INTO category."Wards" VALUES (9811, 273, 'system', '2023-07-26 08:40:17.661071+07', 'system', '2023-07-26 08:40:17.661071+07', 'Xã Phương Đình', '09811', 'Xã');
INSERT INTO category."Wards" VALUES (9814, 273, 'system', '2023-07-26 08:40:17.661074+07', 'system', '2023-07-26 08:40:17.661074+07', 'Xã Thượng Mỗ', '09814', 'Xã');
INSERT INTO category."Wards" VALUES (9817, 273, 'system', '2023-07-26 08:40:17.661076+07', 'system', '2023-07-26 08:40:17.661076+07', 'Xã Tân Hội', '09817', 'Xã');
INSERT INTO category."Wards" VALUES (9820, 273, 'system', '2023-07-26 08:40:17.661079+07', 'system', '2023-07-26 08:40:17.661079+07', 'Xã Tân Lập', '09820', 'Xã');
INSERT INTO category."Wards" VALUES (9823, 273, 'system', '2023-07-26 08:40:17.661082+07', 'system', '2023-07-26 08:40:17.661082+07', 'Xã Đan Phượng', '09823', 'Xã');
INSERT INTO category."Wards" VALUES (9826, 273, 'system', '2023-07-26 08:40:17.661084+07', 'system', '2023-07-26 08:40:17.661084+07', 'Xã Đồng Tháp', '09826', 'Xã');
INSERT INTO category."Wards" VALUES (9829, 273, 'system', '2023-07-26 08:40:17.661087+07', 'system', '2023-07-26 08:40:17.661087+07', 'Xã Song Phượng', '09829', 'Xã');
INSERT INTO category."Wards" VALUES (9832, 274, 'system', '2023-07-26 08:40:17.66109+07', 'system', '2023-07-26 08:40:17.66109+07', 'Thị trấn Trạm Trôi', '09832', 'Thị trấn');
INSERT INTO category."Wards" VALUES (9835, 274, 'system', '2023-07-26 08:40:17.661092+07', 'system', '2023-07-26 08:40:17.661092+07', 'Xã Đức Thượng', '09835', 'Xã');
INSERT INTO category."Wards" VALUES (9838, 274, 'system', '2023-07-26 08:40:17.661095+07', 'system', '2023-07-26 08:40:17.661095+07', 'Xã Minh Khai', '09838', 'Xã');
INSERT INTO category."Wards" VALUES (9841, 274, 'system', '2023-07-26 08:40:17.661098+07', 'system', '2023-07-26 08:40:17.661098+07', 'Xã Dương Liễu', '09841', 'Xã');
INSERT INTO category."Wards" VALUES (9844, 274, 'system', '2023-07-26 08:40:17.661101+07', 'system', '2023-07-26 08:40:17.661101+07', 'Xã Di Trạch', '09844', 'Xã');
INSERT INTO category."Wards" VALUES (9847, 274, 'system', '2023-07-26 08:40:17.661103+07', 'system', '2023-07-26 08:40:17.661103+07', 'Xã Đức Giang', '09847', 'Xã');
INSERT INTO category."Wards" VALUES (9850, 274, 'system', '2023-07-26 08:40:17.661105+07', 'system', '2023-07-26 08:40:17.661106+07', 'Xã Cát Quế', '09850', 'Xã');
INSERT INTO category."Wards" VALUES (9853, 274, 'system', '2023-07-26 08:40:17.661109+07', 'system', '2023-07-26 08:40:17.661109+07', 'Xã Kim Chung', '09853', 'Xã');
INSERT INTO category."Wards" VALUES (9856, 274, 'system', '2023-07-26 08:40:17.661112+07', 'system', '2023-07-26 08:40:17.661112+07', 'Xã Yên Sở', '09856', 'Xã');
INSERT INTO category."Wards" VALUES (9859, 274, 'system', '2023-07-26 08:40:17.661114+07', 'system', '2023-07-26 08:40:17.661114+07', 'Xã Sơn Đồng', '09859', 'Xã');
INSERT INTO category."Wards" VALUES (9862, 274, 'system', '2023-07-26 08:40:17.661117+07', 'system', '2023-07-26 08:40:17.661117+07', 'Xã Vân Canh', '09862', 'Xã');
INSERT INTO category."Wards" VALUES (9865, 274, 'system', '2023-07-26 08:40:17.66112+07', 'system', '2023-07-26 08:40:17.66112+07', 'Xã Đắc Sở', '09865', 'Xã');
INSERT INTO category."Wards" VALUES (9868, 274, 'system', '2023-07-26 08:40:17.661122+07', 'system', '2023-07-26 08:40:17.661122+07', 'Xã Lại Yên', '09868', 'Xã');
INSERT INTO category."Wards" VALUES (9871, 274, 'system', '2023-07-26 08:40:17.661125+07', 'system', '2023-07-26 08:40:17.661125+07', 'Xã Tiền Yên', '09871', 'Xã');
INSERT INTO category."Wards" VALUES (9874, 274, 'system', '2023-07-26 08:40:17.661127+07', 'system', '2023-07-26 08:40:17.661127+07', 'Xã Song Phương', '09874', 'Xã');
INSERT INTO category."Wards" VALUES (9877, 274, 'system', '2023-07-26 08:40:17.66113+07', 'system', '2023-07-26 08:40:17.66113+07', 'Xã An Khánh', '09877', 'Xã');
INSERT INTO category."Wards" VALUES (9880, 274, 'system', '2023-07-26 08:40:17.661133+07', 'system', '2023-07-26 08:40:17.661133+07', 'Xã An Thượng', '09880', 'Xã');
INSERT INTO category."Wards" VALUES (9883, 274, 'system', '2023-07-26 08:40:17.661135+07', 'system', '2023-07-26 08:40:17.661135+07', 'Xã Vân Côn', '09883', 'Xã');
INSERT INTO category."Wards" VALUES (9886, 268, 'system', '2023-07-26 08:40:17.660775+07', 'system', '2023-07-26 08:40:17.660775+07', 'Phường Dương Nội', '09886', 'Phường');
INSERT INTO category."Wards" VALUES (9889, 274, 'system', '2023-07-26 08:40:17.661138+07', 'system', '2023-07-26 08:40:17.661138+07', 'Xã La Phù', '09889', 'Xã');
INSERT INTO category."Wards" VALUES (9892, 274, 'system', '2023-07-26 08:40:17.66114+07', 'system', '2023-07-26 08:40:17.66114+07', 'Xã Đông La', '09892', 'Xã');
INSERT INTO category."Wards" VALUES (9895, 275, 'system', '2023-07-26 08:40:17.661146+07', 'system', '2023-07-26 08:40:17.661146+07', 'Thị trấn Quốc Oai', '09895', 'Thị trấn');
INSERT INTO category."Wards" VALUES (9898, 275, 'system', '2023-07-26 08:40:17.661149+07', 'system', '2023-07-26 08:40:17.661149+07', 'Xã Sài Sơn', '09898', 'Xã');
INSERT INTO category."Wards" VALUES (9901, 275, 'system', '2023-07-26 08:40:17.661151+07', 'system', '2023-07-26 08:40:17.661151+07', 'Xã Phượng Cách', '09901', 'Xã');
INSERT INTO category."Wards" VALUES (9904, 275, 'system', '2023-07-26 08:40:17.661154+07', 'system', '2023-07-26 08:40:17.661154+07', 'Xã Yên Sơn', '09904', 'Xã');
INSERT INTO category."Wards" VALUES (9907, 275, 'system', '2023-07-26 08:40:17.661157+07', 'system', '2023-07-26 08:40:17.661157+07', 'Xã Ngọc Liệp', '09907', 'Xã');
INSERT INTO category."Wards" VALUES (9910, 275, 'system', '2023-07-26 08:40:17.661159+07', 'system', '2023-07-26 08:40:17.661159+07', 'Xã Ngọc Mỹ', '09910', 'Xã');
INSERT INTO category."Wards" VALUES (9913, 275, 'system', '2023-07-26 08:40:17.661162+07', 'system', '2023-07-26 08:40:17.661162+07', 'Xã Liệp Tuyết', '09913', 'Xã');
INSERT INTO category."Wards" VALUES (9916, 275, 'system', '2023-07-26 08:40:17.661164+07', 'system', '2023-07-26 08:40:17.661164+07', 'Xã Thạch Thán', '09916', 'Xã');
INSERT INTO category."Wards" VALUES (9919, 275, 'system', '2023-07-26 08:40:17.661167+07', 'system', '2023-07-26 08:40:17.661167+07', 'Xã Đồng Quang', '09919', 'Xã');
INSERT INTO category."Wards" VALUES (9922, 275, 'system', '2023-07-26 08:40:17.66117+07', 'system', '2023-07-26 08:40:17.66117+07', 'Xã Phú Cát', '09922', 'Xã');
INSERT INTO category."Wards" VALUES (9925, 275, 'system', '2023-07-26 08:40:17.661172+07', 'system', '2023-07-26 08:40:17.661172+07', 'Xã Tuyết Nghĩa', '09925', 'Xã');
INSERT INTO category."Wards" VALUES (9928, 275, 'system', '2023-07-26 08:40:17.661175+07', 'system', '2023-07-26 08:40:17.661175+07', 'Xã Nghĩa Hương', '09928', 'Xã');
INSERT INTO category."Wards" VALUES (9931, 275, 'system', '2023-07-26 08:40:17.661178+07', 'system', '2023-07-26 08:40:17.661178+07', 'Xã Cộng Hòa', '09931', 'Xã');
INSERT INTO category."Wards" VALUES (9934, 275, 'system', '2023-07-26 08:40:17.661181+07', 'system', '2023-07-26 08:40:17.661181+07', 'Xã Tân Phú', '09934', 'Xã');
INSERT INTO category."Wards" VALUES (9937, 275, 'system', '2023-07-26 08:40:17.661183+07', 'system', '2023-07-26 08:40:17.661184+07', 'Xã Đại Thành', '09937', 'Xã');
INSERT INTO category."Wards" VALUES (9940, 275, 'system', '2023-07-26 08:40:17.661186+07', 'system', '2023-07-26 08:40:17.661186+07', 'Xã Phú Mãn', '09940', 'Xã');
INSERT INTO category."Wards" VALUES (9943, 275, 'system', '2023-07-26 08:40:17.661189+07', 'system', '2023-07-26 08:40:17.661189+07', 'Xã Cấn Hữu', '09943', 'Xã');
INSERT INTO category."Wards" VALUES (9946, 275, 'system', '2023-07-26 08:40:17.661191+07', 'system', '2023-07-26 08:40:17.661191+07', 'Xã Tân Hòa', '09946', 'Xã');
INSERT INTO category."Wards" VALUES (9949, 275, 'system', '2023-07-26 08:40:17.661194+07', 'system', '2023-07-26 08:40:17.661194+07', 'Xã Hòa Thạch', '09949', 'Xã');
INSERT INTO category."Wards" VALUES (9952, 275, 'system', '2023-07-26 08:40:17.661196+07', 'system', '2023-07-26 08:40:17.661196+07', 'Xã Đông Yên', '09952', 'Xã');
INSERT INTO category."Wards" VALUES (9955, 276, 'system', '2023-07-26 08:40:17.661208+07', 'system', '2023-07-26 08:40:17.661208+07', 'Thị trấn Liên Quan', '09955', 'Thị trấn');
INSERT INTO category."Wards" VALUES (9958, 276, 'system', '2023-07-26 08:40:17.661211+07', 'system', '2023-07-26 08:40:17.661211+07', 'Xã Đại Đồng', '09958', 'Xã');
INSERT INTO category."Wards" VALUES (9961, 276, 'system', '2023-07-26 08:40:17.661213+07', 'system', '2023-07-26 08:40:17.661213+07', 'Xã Cẩm Yên', '09961', 'Xã');
INSERT INTO category."Wards" VALUES (9964, 276, 'system', '2023-07-26 08:40:17.661216+07', 'system', '2023-07-26 08:40:17.661216+07', 'Xã Lại Thượng', '09964', 'Xã');
INSERT INTO category."Wards" VALUES (9967, 276, 'system', '2023-07-26 08:40:17.661219+07', 'system', '2023-07-26 08:40:17.661219+07', 'Xã Phú Kim', '09967', 'Xã');
INSERT INTO category."Wards" VALUES (9970, 276, 'system', '2023-07-26 08:40:17.661221+07', 'system', '2023-07-26 08:40:17.661221+07', 'Xã Hương Ngải', '09970', 'Xã');
INSERT INTO category."Wards" VALUES (9973, 276, 'system', '2023-07-26 08:40:17.661224+07', 'system', '2023-07-26 08:40:17.661224+07', 'Xã Canh Nậu', '09973', 'Xã');
INSERT INTO category."Wards" VALUES (9976, 276, 'system', '2023-07-26 08:40:17.661226+07', 'system', '2023-07-26 08:40:17.661226+07', 'Xã Kim Quan', '09976', 'Xã');
INSERT INTO category."Wards" VALUES (9979, 276, 'system', '2023-07-26 08:40:17.661229+07', 'system', '2023-07-26 08:40:17.661229+07', 'Xã Dị Nậu', '09979', 'Xã');
INSERT INTO category."Wards" VALUES (9982, 276, 'system', '2023-07-26 08:40:17.661231+07', 'system', '2023-07-26 08:40:17.661231+07', 'Xã Bình Yên', '09982', 'Xã');
INSERT INTO category."Wards" VALUES (9985, 276, 'system', '2023-07-26 08:40:17.661234+07', 'system', '2023-07-26 08:40:17.661234+07', 'Xã Chàng Sơn', '09985', 'Xã');
INSERT INTO category."Wards" VALUES (9988, 276, 'system', '2023-07-26 08:40:17.661236+07', 'system', '2023-07-26 08:40:17.661236+07', 'Xã Thạch Hoà', '09988', 'Xã');
INSERT INTO category."Wards" VALUES (9991, 276, 'system', '2023-07-26 08:40:17.661239+07', 'system', '2023-07-26 08:40:17.661239+07', 'Xã Cần Kiệm', '09991', 'Xã');
INSERT INTO category."Wards" VALUES (9994, 276, 'system', '2023-07-26 08:40:17.661241+07', 'system', '2023-07-26 08:40:17.661242+07', 'Xã Hữu Bằng', '09994', 'Xã');
INSERT INTO category."Wards" VALUES (9997, 276, 'system', '2023-07-26 08:40:17.661244+07', 'system', '2023-07-26 08:40:17.661244+07', 'Xã Phùng Xá', '09997', 'Xã');
INSERT INTO category."Wards" VALUES (10000, 276, 'system', '2023-07-26 08:40:17.661247+07', 'system', '2023-07-26 08:40:17.661247+07', 'Xã Tân Xã', '10000', 'Xã');
INSERT INTO category."Wards" VALUES (10003, 276, 'system', '2023-07-26 08:40:17.66125+07', 'system', '2023-07-26 08:40:17.66125+07', 'Xã Thạch Xá', '10003', 'Xã');
INSERT INTO category."Wards" VALUES (10006, 276, 'system', '2023-07-26 08:40:17.661252+07', 'system', '2023-07-26 08:40:17.661252+07', 'Xã Bình Phú', '10006', 'Xã');
INSERT INTO category."Wards" VALUES (10009, 276, 'system', '2023-07-26 08:40:17.661255+07', 'system', '2023-07-26 08:40:17.661255+07', 'Xã Hạ Bằng', '10009', 'Xã');
INSERT INTO category."Wards" VALUES (10012, 276, 'system', '2023-07-26 08:40:17.661258+07', 'system', '2023-07-26 08:40:17.661258+07', 'Xã Đồng Trúc', '10012', 'Xã');
INSERT INTO category."Wards" VALUES (10015, 277, 'system', '2023-07-26 08:40:17.66126+07', 'system', '2023-07-26 08:40:17.661261+07', 'Thị trấn Chúc Sơn', '10015', 'Thị trấn');
INSERT INTO category."Wards" VALUES (10018, 277, 'system', '2023-07-26 08:40:17.661263+07', 'system', '2023-07-26 08:40:17.661263+07', 'Thị trấn Xuân Mai', '10018', 'Thị trấn');
INSERT INTO category."Wards" VALUES (10021, 277, 'system', '2023-07-26 08:40:17.661266+07', 'system', '2023-07-26 08:40:17.661266+07', 'Xã Phụng Châu', '10021', 'Xã');
INSERT INTO category."Wards" VALUES (10024, 277, 'system', '2023-07-26 08:40:17.661269+07', 'system', '2023-07-26 08:40:17.661269+07', 'Xã Tiên Phương', '10024', 'Xã');
INSERT INTO category."Wards" VALUES (10027, 277, 'system', '2023-07-26 08:40:17.661271+07', 'system', '2023-07-26 08:40:17.661271+07', 'Xã Đông Sơn', '10027', 'Xã');
INSERT INTO category."Wards" VALUES (10030, 277, 'system', '2023-07-26 08:40:17.661274+07', 'system', '2023-07-26 08:40:17.661274+07', 'Xã Đông Phương Yên', '10030', 'Xã');
INSERT INTO category."Wards" VALUES (10033, 277, 'system', '2023-07-26 08:40:17.661277+07', 'system', '2023-07-26 08:40:17.661277+07', 'Xã Phú Nghĩa', '10033', 'Xã');
INSERT INTO category."Wards" VALUES (10039, 277, 'system', '2023-07-26 08:40:17.66128+07', 'system', '2023-07-26 08:40:17.66128+07', 'Xã Trường Yên', '10039', 'Xã');
INSERT INTO category."Wards" VALUES (10042, 277, 'system', '2023-07-26 08:40:17.661282+07', 'system', '2023-07-26 08:40:17.661282+07', 'Xã Ngọc Hòa', '10042', 'Xã');
INSERT INTO category."Wards" VALUES (10045, 277, 'system', '2023-07-26 08:40:17.661285+07', 'system', '2023-07-26 08:40:17.661285+07', 'Xã Thủy Xuân Tiên', '10045', 'Xã');
INSERT INTO category."Wards" VALUES (10048, 277, 'system', '2023-07-26 08:40:17.661288+07', 'system', '2023-07-26 08:40:17.661288+07', 'Xã Thanh Bình', '10048', 'Xã');
INSERT INTO category."Wards" VALUES (10051, 277, 'system', '2023-07-26 08:40:17.661291+07', 'system', '2023-07-26 08:40:17.661291+07', 'Xã Trung Hòa', '10051', 'Xã');
INSERT INTO category."Wards" VALUES (10054, 277, 'system', '2023-07-26 08:40:17.661293+07', 'system', '2023-07-26 08:40:17.661293+07', 'Xã Đại Yên', '10054', 'Xã');
INSERT INTO category."Wards" VALUES (10057, 277, 'system', '2023-07-26 08:40:17.661296+07', 'system', '2023-07-26 08:40:17.661296+07', 'Xã Thụy Hương', '10057', 'Xã');
INSERT INTO category."Wards" VALUES (10060, 277, 'system', '2023-07-26 08:40:17.661299+07', 'system', '2023-07-26 08:40:17.661299+07', 'Xã Tốt Động', '10060', 'Xã');
INSERT INTO category."Wards" VALUES (10063, 277, 'system', '2023-07-26 08:40:17.661302+07', 'system', '2023-07-26 08:40:17.661302+07', 'Xã Lam Điền', '10063', 'Xã');
INSERT INTO category."Wards" VALUES (10066, 277, 'system', '2023-07-26 08:40:17.661305+07', 'system', '2023-07-26 08:40:17.661305+07', 'Xã Tân Tiến', '10066', 'Xã');
INSERT INTO category."Wards" VALUES (10069, 277, 'system', '2023-07-26 08:40:17.661308+07', 'system', '2023-07-26 08:40:17.661308+07', 'Xã Nam Phương Tiến', '10069', 'Xã');
INSERT INTO category."Wards" VALUES (10072, 277, 'system', '2023-07-26 08:40:17.66131+07', 'system', '2023-07-26 08:40:17.66131+07', 'Xã Hợp Đồng', '10072', 'Xã');
INSERT INTO category."Wards" VALUES (10075, 277, 'system', '2023-07-26 08:40:17.661313+07', 'system', '2023-07-26 08:40:17.661313+07', 'Xã Hoàng Văn Thụ', '10075', 'Xã');
INSERT INTO category."Wards" VALUES (10078, 277, 'system', '2023-07-26 08:40:17.661316+07', 'system', '2023-07-26 08:40:17.661316+07', 'Xã Hoàng Diệu', '10078', 'Xã');
INSERT INTO category."Wards" VALUES (10081, 277, 'system', '2023-07-26 08:40:17.661318+07', 'system', '2023-07-26 08:40:17.661318+07', 'Xã Hữu Văn', '10081', 'Xã');
INSERT INTO category."Wards" VALUES (10084, 277, 'system', '2023-07-26 08:40:17.661321+07', 'system', '2023-07-26 08:40:17.661321+07', 'Xã Quảng Bị', '10084', 'Xã');
INSERT INTO category."Wards" VALUES (10087, 277, 'system', '2023-07-26 08:40:17.661324+07', 'system', '2023-07-26 08:40:17.661324+07', 'Xã Mỹ Lương', '10087', 'Xã');
INSERT INTO category."Wards" VALUES (10090, 277, 'system', '2023-07-26 08:40:17.661326+07', 'system', '2023-07-26 08:40:17.661326+07', 'Xã Thượng Vực', '10090', 'Xã');
INSERT INTO category."Wards" VALUES (10093, 277, 'system', '2023-07-26 08:40:17.661329+07', 'system', '2023-07-26 08:40:17.661329+07', 'Xã Hồng Phong', '10093', 'Xã');
INSERT INTO category."Wards" VALUES (10096, 277, 'system', '2023-07-26 08:40:17.661332+07', 'system', '2023-07-26 08:40:17.661332+07', 'Xã Đồng Phú', '10096', 'Xã');
INSERT INTO category."Wards" VALUES (10099, 277, 'system', '2023-07-26 08:40:17.661334+07', 'system', '2023-07-26 08:40:17.661334+07', 'Xã Trần Phú', '10099', 'Xã');
INSERT INTO category."Wards" VALUES (10102, 277, 'system', '2023-07-26 08:40:17.661337+07', 'system', '2023-07-26 08:40:17.661337+07', 'Xã Văn Võ', '10102', 'Xã');
INSERT INTO category."Wards" VALUES (10105, 277, 'system', '2023-07-26 08:40:17.661339+07', 'system', '2023-07-26 08:40:17.661339+07', 'Xã Đồng Lạc', '10105', 'Xã');
INSERT INTO category."Wards" VALUES (10108, 277, 'system', '2023-07-26 08:40:17.661342+07', 'system', '2023-07-26 08:40:17.661342+07', 'Xã Hòa Chính', '10108', 'Xã');
INSERT INTO category."Wards" VALUES (10111, 277, 'system', '2023-07-26 08:40:17.661344+07', 'system', '2023-07-26 08:40:17.661344+07', 'Xã Phú Nam An', '10111', 'Xã');
INSERT INTO category."Wards" VALUES (10114, 278, 'system', '2023-07-26 08:40:17.661347+07', 'system', '2023-07-26 08:40:17.661347+07', 'Thị trấn Kim Bài', '10114', 'Thị trấn');
INSERT INTO category."Wards" VALUES (10117, 268, 'system', '2023-07-26 08:40:17.660778+07', 'system', '2023-07-26 08:40:17.660778+07', 'Phường Đồng Mai', '10117', 'Phường');
INSERT INTO category."Wards" VALUES (10120, 278, 'system', '2023-07-26 08:40:17.661349+07', 'system', '2023-07-26 08:40:17.661349+07', 'Xã Cự Khê', '10120', 'Xã');
INSERT INTO category."Wards" VALUES (10123, 268, 'system', '2023-07-26 08:40:17.660781+07', 'system', '2023-07-26 08:40:17.660781+07', 'Phường Biên Giang', '10123', 'Phường');
INSERT INTO category."Wards" VALUES (10126, 278, 'system', '2023-07-26 08:40:17.661352+07', 'system', '2023-07-26 08:40:17.661352+07', 'Xã Bích Hòa', '10126', 'Xã');
INSERT INTO category."Wards" VALUES (10129, 278, 'system', '2023-07-26 08:40:17.661355+07', 'system', '2023-07-26 08:40:17.661355+07', 'Xã Mỹ Hưng', '10129', 'Xã');
INSERT INTO category."Wards" VALUES (10132, 278, 'system', '2023-07-26 08:40:17.661357+07', 'system', '2023-07-26 08:40:17.661357+07', 'Xã Cao Viên', '10132', 'Xã');
INSERT INTO category."Wards" VALUES (10135, 278, 'system', '2023-07-26 08:40:17.66136+07', 'system', '2023-07-26 08:40:17.66136+07', 'Xã Bình Minh', '10135', 'Xã');
INSERT INTO category."Wards" VALUES (10138, 278, 'system', '2023-07-26 08:40:17.661362+07', 'system', '2023-07-26 08:40:17.661362+07', 'Xã Tam Hưng', '10138', 'Xã');
INSERT INTO category."Wards" VALUES (10141, 278, 'system', '2023-07-26 08:40:17.661365+07', 'system', '2023-07-26 08:40:17.661365+07', 'Xã Thanh Cao', '10141', 'Xã');
INSERT INTO category."Wards" VALUES (10144, 278, 'system', '2023-07-26 08:40:17.661368+07', 'system', '2023-07-26 08:40:17.661368+07', 'Xã Thanh Thùy', '10144', 'Xã');
INSERT INTO category."Wards" VALUES (10147, 278, 'system', '2023-07-26 08:40:17.66137+07', 'system', '2023-07-26 08:40:17.66137+07', 'Xã Thanh Mai', '10147', 'Xã');
INSERT INTO category."Wards" VALUES (10150, 278, 'system', '2023-07-26 08:40:17.661373+07', 'system', '2023-07-26 08:40:17.661373+07', 'Xã Thanh Văn', '10150', 'Xã');
INSERT INTO category."Wards" VALUES (10153, 278, 'system', '2023-07-26 08:40:17.661375+07', 'system', '2023-07-26 08:40:17.661375+07', 'Xã Đỗ Động', '10153', 'Xã');
INSERT INTO category."Wards" VALUES (10156, 278, 'system', '2023-07-26 08:40:17.661378+07', 'system', '2023-07-26 08:40:17.661378+07', 'Xã Kim An', '10156', 'Xã');
INSERT INTO category."Wards" VALUES (10159, 278, 'system', '2023-07-26 08:40:17.661381+07', 'system', '2023-07-26 08:40:17.661381+07', 'Xã Kim Thư', '10159', 'Xã');
INSERT INTO category."Wards" VALUES (10162, 278, 'system', '2023-07-26 08:40:17.661383+07', 'system', '2023-07-26 08:40:17.661383+07', 'Xã Phương Trung', '10162', 'Xã');
INSERT INTO category."Wards" VALUES (10165, 278, 'system', '2023-07-26 08:40:17.661386+07', 'system', '2023-07-26 08:40:17.661386+07', 'Xã Tân Ước', '10165', 'Xã');
INSERT INTO category."Wards" VALUES (10168, 278, 'system', '2023-07-26 08:40:17.661388+07', 'system', '2023-07-26 08:40:17.661389+07', 'Xã Dân Hòa', '10168', 'Xã');
INSERT INTO category."Wards" VALUES (10171, 278, 'system', '2023-07-26 08:40:17.661391+07', 'system', '2023-07-26 08:40:17.661391+07', 'Xã Liên Châu', '10171', 'Xã');
INSERT INTO category."Wards" VALUES (10174, 278, 'system', '2023-07-26 08:40:17.661394+07', 'system', '2023-07-26 08:40:17.661394+07', 'Xã Cao Dương', '10174', 'Xã');
INSERT INTO category."Wards" VALUES (10177, 278, 'system', '2023-07-26 08:40:17.661396+07', 'system', '2023-07-26 08:40:17.661396+07', 'Xã Xuân Dương', '10177', 'Xã');
INSERT INTO category."Wards" VALUES (10180, 278, 'system', '2023-07-26 08:40:17.6614+07', 'system', '2023-07-26 08:40:17.6614+07', 'Xã Hồng Dương', '10180', 'Xã');
INSERT INTO category."Wards" VALUES (10183, 279, 'system', '2023-07-26 08:40:17.661402+07', 'system', '2023-07-26 08:40:17.661402+07', 'Thị trấn Thường Tín', '10183', 'Thị trấn');
INSERT INTO category."Wards" VALUES (10186, 279, 'system', '2023-07-26 08:40:17.661405+07', 'system', '2023-07-26 08:40:17.661405+07', 'Xã Ninh Sở', '10186', 'Xã');
INSERT INTO category."Wards" VALUES (10189, 279, 'system', '2023-07-26 08:40:17.661408+07', 'system', '2023-07-26 08:40:17.661408+07', 'Xã Nhị Khê', '10189', 'Xã');
INSERT INTO category."Wards" VALUES (10192, 279, 'system', '2023-07-26 08:40:17.661411+07', 'system', '2023-07-26 08:40:17.661411+07', 'Xã Duyên Thái', '10192', 'Xã');
INSERT INTO category."Wards" VALUES (10195, 279, 'system', '2023-07-26 08:40:17.661413+07', 'system', '2023-07-26 08:40:17.661413+07', 'Xã Khánh Hà', '10195', 'Xã');
INSERT INTO category."Wards" VALUES (10198, 279, 'system', '2023-07-26 08:40:17.661432+07', 'system', '2023-07-26 08:40:17.661432+07', 'Xã Hòa Bình', '10198', 'Xã');
INSERT INTO category."Wards" VALUES (10201, 279, 'system', '2023-07-26 08:40:17.661434+07', 'system', '2023-07-26 08:40:17.661434+07', 'Xã Văn Bình', '10201', 'Xã');
INSERT INTO category."Wards" VALUES (10204, 279, 'system', '2023-07-26 08:40:17.661437+07', 'system', '2023-07-26 08:40:17.661437+07', 'Xã Hiền Giang', '10204', 'Xã');
INSERT INTO category."Wards" VALUES (10207, 279, 'system', '2023-07-26 08:40:17.661439+07', 'system', '2023-07-26 08:40:17.661439+07', 'Xã Hồng Vân', '10207', 'Xã');
INSERT INTO category."Wards" VALUES (10210, 279, 'system', '2023-07-26 08:40:17.661442+07', 'system', '2023-07-26 08:40:17.661442+07', 'Xã Vân Tảo', '10210', 'Xã');
INSERT INTO category."Wards" VALUES (10213, 279, 'system', '2023-07-26 08:40:17.661445+07', 'system', '2023-07-26 08:40:17.661445+07', 'Xã Liên Phương', '10213', 'Xã');
INSERT INTO category."Wards" VALUES (10216, 279, 'system', '2023-07-26 08:40:17.661447+07', 'system', '2023-07-26 08:40:17.661447+07', 'Xã Văn Phú', '10216', 'Xã');
INSERT INTO category."Wards" VALUES (10219, 279, 'system', '2023-07-26 08:40:17.66145+07', 'system', '2023-07-26 08:40:17.66145+07', 'Xã Tự Nhiên', '10219', 'Xã');
INSERT INTO category."Wards" VALUES (10222, 279, 'system', '2023-07-26 08:40:17.661452+07', 'system', '2023-07-26 08:40:17.661453+07', 'Xã Tiền Phong', '10222', 'Xã');
INSERT INTO category."Wards" VALUES (10225, 279, 'system', '2023-07-26 08:40:17.661455+07', 'system', '2023-07-26 08:40:17.661455+07', 'Xã Hà Hồi', '10225', 'Xã');
INSERT INTO category."Wards" VALUES (10228, 279, 'system', '2023-07-26 08:40:17.661458+07', 'system', '2023-07-26 08:40:17.661458+07', 'Xã Thư Phú', '10228', 'Xã');
INSERT INTO category."Wards" VALUES (10231, 279, 'system', '2023-07-26 08:40:17.66146+07', 'system', '2023-07-26 08:40:17.66146+07', 'Xã Nguyễn Trãi', '10231', 'Xã');
INSERT INTO category."Wards" VALUES (10234, 279, 'system', '2023-07-26 08:40:17.661463+07', 'system', '2023-07-26 08:40:17.661463+07', 'Xã Quất Động', '10234', 'Xã');
INSERT INTO category."Wards" VALUES (10237, 279, 'system', '2023-07-26 08:40:17.661466+07', 'system', '2023-07-26 08:40:17.661466+07', 'Xã Chương Dương', '10237', 'Xã');
INSERT INTO category."Wards" VALUES (10240, 279, 'system', '2023-07-26 08:40:17.661468+07', 'system', '2023-07-26 08:40:17.661468+07', 'Xã Tân Minh', '10240', 'Xã');
INSERT INTO category."Wards" VALUES (10243, 279, 'system', '2023-07-26 08:40:17.661471+07', 'system', '2023-07-26 08:40:17.661471+07', 'Xã Lê Lợi', '10243', 'Xã');
INSERT INTO category."Wards" VALUES (10246, 279, 'system', '2023-07-26 08:40:17.661473+07', 'system', '2023-07-26 08:40:17.661473+07', 'Xã Thắng Lợi', '10246', 'Xã');
INSERT INTO category."Wards" VALUES (10249, 279, 'system', '2023-07-26 08:40:17.661476+07', 'system', '2023-07-26 08:40:17.661476+07', 'Xã Dũng Tiến', '10249', 'Xã');
INSERT INTO category."Wards" VALUES (10252, 279, 'system', '2023-07-26 08:40:17.661479+07', 'system', '2023-07-26 08:40:17.661479+07', 'Xã Thống Nhất', '10252', 'Xã');
INSERT INTO category."Wards" VALUES (10255, 279, 'system', '2023-07-26 08:40:17.661481+07', 'system', '2023-07-26 08:40:17.661481+07', 'Xã Nghiêm Xuyên', '10255', 'Xã');
INSERT INTO category."Wards" VALUES (10258, 279, 'system', '2023-07-26 08:40:17.661484+07', 'system', '2023-07-26 08:40:17.661484+07', 'Xã Tô Hiệu', '10258', 'Xã');
INSERT INTO category."Wards" VALUES (10261, 279, 'system', '2023-07-26 08:40:17.661487+07', 'system', '2023-07-26 08:40:17.661487+07', 'Xã Văn Tự', '10261', 'Xã');
INSERT INTO category."Wards" VALUES (10264, 279, 'system', '2023-07-26 08:40:17.661489+07', 'system', '2023-07-26 08:40:17.661489+07', 'Xã Vạn Điểm', '10264', 'Xã');
INSERT INTO category."Wards" VALUES (10267, 279, 'system', '2023-07-26 08:40:17.661492+07', 'system', '2023-07-26 08:40:17.661492+07', 'Xã Minh Cường', '10267', 'Xã');
INSERT INTO category."Wards" VALUES (10270, 280, 'system', '2023-07-26 08:40:17.661495+07', 'system', '2023-07-26 08:40:17.661495+07', 'Thị trấn Phú Minh', '10270', 'Thị trấn');
INSERT INTO category."Wards" VALUES (10273, 280, 'system', '2023-07-26 08:40:17.661498+07', 'system', '2023-07-26 08:40:17.661498+07', 'Thị trấn Phú Xuyên', '10273', 'Thị trấn');
INSERT INTO category."Wards" VALUES (10276, 280, 'system', '2023-07-26 08:40:17.6615+07', 'system', '2023-07-26 08:40:17.6615+07', 'Xã Hồng Minh', '10276', 'Xã');
INSERT INTO category."Wards" VALUES (10279, 280, 'system', '2023-07-26 08:40:17.661503+07', 'system', '2023-07-26 08:40:17.661503+07', 'Xã Phượng Dực', '10279', 'Xã');
INSERT INTO category."Wards" VALUES (10282, 280, 'system', '2023-07-26 08:40:17.661506+07', 'system', '2023-07-26 08:40:17.661506+07', 'Xã Nam Tiến', '10282', 'Xã');
INSERT INTO category."Wards" VALUES (10288, 280, 'system', '2023-07-26 08:40:17.661508+07', 'system', '2023-07-26 08:40:17.661508+07', 'Xã Tri Trung', '10288', 'Xã');
INSERT INTO category."Wards" VALUES (10291, 280, 'system', '2023-07-26 08:40:17.661512+07', 'system', '2023-07-26 08:40:17.661512+07', 'Xã Đại Thắng', '10291', 'Xã');
INSERT INTO category."Wards" VALUES (10294, 280, 'system', '2023-07-26 08:40:17.661515+07', 'system', '2023-07-26 08:40:17.661515+07', 'Xã Phú Túc', '10294', 'Xã');
INSERT INTO category."Wards" VALUES (10297, 280, 'system', '2023-07-26 08:40:17.661517+07', 'system', '2023-07-26 08:40:17.661518+07', 'Xã Văn Hoàng', '10297', 'Xã');
INSERT INTO category."Wards" VALUES (10300, 280, 'system', '2023-07-26 08:40:17.66152+07', 'system', '2023-07-26 08:40:17.66152+07', 'Xã Hồng Thái', '10300', 'Xã');
INSERT INTO category."Wards" VALUES (10303, 280, 'system', '2023-07-26 08:40:17.661523+07', 'system', '2023-07-26 08:40:17.661523+07', 'Xã Hoàng Long', '10303', 'Xã');
INSERT INTO category."Wards" VALUES (10306, 280, 'system', '2023-07-26 08:40:17.661525+07', 'system', '2023-07-26 08:40:17.661525+07', 'Xã Quang Trung', '10306', 'Xã');
INSERT INTO category."Wards" VALUES (10309, 280, 'system', '2023-07-26 08:40:17.661531+07', 'system', '2023-07-26 08:40:17.661531+07', 'Xã Nam Phong', '10309', 'Xã');
INSERT INTO category."Wards" VALUES (10312, 280, 'system', '2023-07-26 08:40:17.661534+07', 'system', '2023-07-26 08:40:17.661534+07', 'Xã Nam Triều', '10312', 'Xã');
INSERT INTO category."Wards" VALUES (10315, 280, 'system', '2023-07-26 08:40:17.661537+07', 'system', '2023-07-26 08:40:17.661537+07', 'Xã Tân Dân', '10315', 'Xã');
INSERT INTO category."Wards" VALUES (10318, 280, 'system', '2023-07-26 08:40:17.661539+07', 'system', '2023-07-26 08:40:17.661539+07', 'Xã Sơn Hà', '10318', 'Xã');
INSERT INTO category."Wards" VALUES (10321, 280, 'system', '2023-07-26 08:40:17.661542+07', 'system', '2023-07-26 08:40:17.661542+07', 'Xã Chuyên Mỹ', '10321', 'Xã');
INSERT INTO category."Wards" VALUES (10324, 280, 'system', '2023-07-26 08:40:17.661545+07', 'system', '2023-07-26 08:40:17.661545+07', 'Xã Khai Thái', '10324', 'Xã');
INSERT INTO category."Wards" VALUES (10327, 280, 'system', '2023-07-26 08:40:17.661547+07', 'system', '2023-07-26 08:40:17.661547+07', 'Xã Phúc Tiến', '10327', 'Xã');
INSERT INTO category."Wards" VALUES (10330, 280, 'system', '2023-07-26 08:40:17.66155+07', 'system', '2023-07-26 08:40:17.66155+07', 'Xã Vân Từ', '10330', 'Xã');
INSERT INTO category."Wards" VALUES (10333, 280, 'system', '2023-07-26 08:40:17.661553+07', 'system', '2023-07-26 08:40:17.661553+07', 'Xã Tri Thủy', '10333', 'Xã');
INSERT INTO category."Wards" VALUES (10336, 280, 'system', '2023-07-26 08:40:17.661555+07', 'system', '2023-07-26 08:40:17.661555+07', 'Xã Đại Xuyên', '10336', 'Xã');
INSERT INTO category."Wards" VALUES (10339, 280, 'system', '2023-07-26 08:40:17.661558+07', 'system', '2023-07-26 08:40:17.661558+07', 'Xã Phú Yên', '10339', 'Xã');
INSERT INTO category."Wards" VALUES (10342, 280, 'system', '2023-07-26 08:40:17.66156+07', 'system', '2023-07-26 08:40:17.66156+07', 'Xã Bạch Hạ', '10342', 'Xã');
INSERT INTO category."Wards" VALUES (10345, 280, 'system', '2023-07-26 08:40:17.661563+07', 'system', '2023-07-26 08:40:17.661563+07', 'Xã Quang Lãng', '10345', 'Xã');
INSERT INTO category."Wards" VALUES (10348, 280, 'system', '2023-07-26 08:40:17.661565+07', 'system', '2023-07-26 08:40:17.661565+07', 'Xã Châu Can', '10348', 'Xã');
INSERT INTO category."Wards" VALUES (10351, 280, 'system', '2023-07-26 08:40:17.661568+07', 'system', '2023-07-26 08:40:17.661568+07', 'Xã Minh Tân', '10351', 'Xã');
INSERT INTO category."Wards" VALUES (10354, 281, 'system', '2023-07-26 08:40:17.661571+07', 'system', '2023-07-26 08:40:17.661571+07', 'Thị trấn Vân Đình', '10354', 'Thị trấn');
INSERT INTO category."Wards" VALUES (10357, 281, 'system', '2023-07-26 08:40:17.661573+07', 'system', '2023-07-26 08:40:17.661573+07', 'Xã Viên An', '10357', 'Xã');
INSERT INTO category."Wards" VALUES (10360, 281, 'system', '2023-07-26 08:40:17.661576+07', 'system', '2023-07-26 08:40:17.661576+07', 'Xã Viên Nội', '10360', 'Xã');
INSERT INTO category."Wards" VALUES (10363, 281, 'system', '2023-07-26 08:40:17.661579+07', 'system', '2023-07-26 08:40:17.661579+07', 'Xã Hoa Sơn', '10363', 'Xã');
INSERT INTO category."Wards" VALUES (10366, 281, 'system', '2023-07-26 08:40:17.661581+07', 'system', '2023-07-26 08:40:17.661581+07', 'Xã Quảng Phú Cầu', '10366', 'Xã');
INSERT INTO category."Wards" VALUES (10369, 281, 'system', '2023-07-26 08:40:17.661583+07', 'system', '2023-07-26 08:40:17.661584+07', 'Xã Trường Thịnh', '10369', 'Xã');
INSERT INTO category."Wards" VALUES (10372, 281, 'system', '2023-07-26 08:40:17.661586+07', 'system', '2023-07-26 08:40:17.661586+07', 'Xã Cao Thành', '10372', 'Xã');
INSERT INTO category."Wards" VALUES (10375, 281, 'system', '2023-07-26 08:40:17.661589+07', 'system', '2023-07-26 08:40:17.661589+07', 'Xã Liên Bạt', '10375', 'Xã');
INSERT INTO category."Wards" VALUES (10378, 281, 'system', '2023-07-26 08:40:17.661591+07', 'system', '2023-07-26 08:40:17.661591+07', 'Xã Sơn Công', '10378', 'Xã');
INSERT INTO category."Wards" VALUES (10381, 281, 'system', '2023-07-26 08:40:17.661594+07', 'system', '2023-07-26 08:40:17.661594+07', 'Xã Đồng Tiến', '10381', 'Xã');
INSERT INTO category."Wards" VALUES (10384, 281, 'system', '2023-07-26 08:40:17.661597+07', 'system', '2023-07-26 08:40:17.661597+07', 'Xã Phương Tú', '10384', 'Xã');
INSERT INTO category."Wards" VALUES (10387, 281, 'system', '2023-07-26 08:40:17.661599+07', 'system', '2023-07-26 08:40:17.661599+07', 'Xã Trung Tú', '10387', 'Xã');
INSERT INTO category."Wards" VALUES (10390, 281, 'system', '2023-07-26 08:40:17.661602+07', 'system', '2023-07-26 08:40:17.661602+07', 'Xã Đồng Tân', '10390', 'Xã');
INSERT INTO category."Wards" VALUES (10393, 281, 'system', '2023-07-26 08:40:17.661604+07', 'system', '2023-07-26 08:40:17.661604+07', 'Xã Tảo Dương Văn', '10393', 'Xã');
INSERT INTO category."Wards" VALUES (10396, 281, 'system', '2023-07-26 08:40:17.661607+07', 'system', '2023-07-26 08:40:17.661607+07', 'Xã Vạn Thái', '10396', 'Xã');
INSERT INTO category."Wards" VALUES (10399, 281, 'system', '2023-07-26 08:40:17.661611+07', 'system', '2023-07-26 08:40:17.661611+07', 'Xã Minh Đức', '10399', 'Xã');
INSERT INTO category."Wards" VALUES (10402, 281, 'system', '2023-07-26 08:40:17.661614+07', 'system', '2023-07-26 08:40:17.661614+07', 'Xã Hòa Lâm', '10402', 'Xã');
INSERT INTO category."Wards" VALUES (10405, 281, 'system', '2023-07-26 08:40:17.661616+07', 'system', '2023-07-26 08:40:17.661616+07', 'Xã Hòa Xá', '10405', 'Xã');
INSERT INTO category."Wards" VALUES (10408, 281, 'system', '2023-07-26 08:40:17.661619+07', 'system', '2023-07-26 08:40:17.661619+07', 'Xã Trầm Lộng', '10408', 'Xã');
INSERT INTO category."Wards" VALUES (10411, 281, 'system', '2023-07-26 08:40:17.661622+07', 'system', '2023-07-26 08:40:17.661622+07', 'Xã Kim Đường', '10411', 'Xã');
INSERT INTO category."Wards" VALUES (10414, 281, 'system', '2023-07-26 08:40:17.661624+07', 'system', '2023-07-26 08:40:17.661624+07', 'Xã Hòa Nam', '10414', 'Xã');
INSERT INTO category."Wards" VALUES (10417, 281, 'system', '2023-07-26 08:40:17.661627+07', 'system', '2023-07-26 08:40:17.661627+07', 'Xã Hòa Phú', '10417', 'Xã');
INSERT INTO category."Wards" VALUES (10420, 281, 'system', '2023-07-26 08:40:17.66163+07', 'system', '2023-07-26 08:40:17.66163+07', 'Xã Đội Bình', '10420', 'Xã');
INSERT INTO category."Wards" VALUES (10423, 281, 'system', '2023-07-26 08:40:17.661632+07', 'system', '2023-07-26 08:40:17.661632+07', 'Xã Đại Hùng', '10423', 'Xã');
INSERT INTO category."Wards" VALUES (10426, 281, 'system', '2023-07-26 08:40:17.661635+07', 'system', '2023-07-26 08:40:17.661635+07', 'Xã Đông Lỗ', '10426', 'Xã');
INSERT INTO category."Wards" VALUES (10429, 281, 'system', '2023-07-26 08:40:17.661637+07', 'system', '2023-07-26 08:40:17.661637+07', 'Xã Phù Lưu', '10429', 'Xã');
INSERT INTO category."Wards" VALUES (10432, 281, 'system', '2023-07-26 08:40:17.66164+07', 'system', '2023-07-26 08:40:17.66164+07', 'Xã Đại Cường', '10432', 'Xã');
INSERT INTO category."Wards" VALUES (10435, 281, 'system', '2023-07-26 08:40:17.661643+07', 'system', '2023-07-26 08:40:17.661643+07', 'Xã Lưu Hoàng', '10435', 'Xã');
INSERT INTO category."Wards" VALUES (10438, 281, 'system', '2023-07-26 08:40:17.661645+07', 'system', '2023-07-26 08:40:17.661645+07', 'Xã Hồng Quang', '10438', 'Xã');
INSERT INTO category."Wards" VALUES (10441, 282, 'system', '2023-07-26 08:40:17.661648+07', 'system', '2023-07-26 08:40:17.661648+07', 'Thị trấn Đại Nghĩa', '10441', 'Thị trấn');
INSERT INTO category."Wards" VALUES (10444, 282, 'system', '2023-07-26 08:40:17.661651+07', 'system', '2023-07-26 08:40:17.661651+07', 'Xã Đồng Tâm', '10444', 'Xã');
INSERT INTO category."Wards" VALUES (10447, 282, 'system', '2023-07-26 08:40:17.661653+07', 'system', '2023-07-26 08:40:17.661653+07', 'Xã Thượng Lâm', '10447', 'Xã');
INSERT INTO category."Wards" VALUES (10450, 282, 'system', '2023-07-26 08:40:17.661656+07', 'system', '2023-07-26 08:40:17.661656+07', 'Xã Tuy Lai', '10450', 'Xã');
INSERT INTO category."Wards" VALUES (10453, 282, 'system', '2023-07-26 08:40:17.661659+07', 'system', '2023-07-26 08:40:17.661659+07', 'Xã Phúc Lâm', '10453', 'Xã');
INSERT INTO category."Wards" VALUES (10456, 282, 'system', '2023-07-26 08:40:17.661661+07', 'system', '2023-07-26 08:40:17.661661+07', 'Xã Mỹ Thành', '10456', 'Xã');
INSERT INTO category."Wards" VALUES (10459, 282, 'system', '2023-07-26 08:40:17.661664+07', 'system', '2023-07-26 08:40:17.661664+07', 'Xã Bột Xuyên', '10459', 'Xã');
INSERT INTO category."Wards" VALUES (10462, 282, 'system', '2023-07-26 08:40:17.661666+07', 'system', '2023-07-26 08:40:17.661666+07', 'Xã An Mỹ', '10462', 'Xã');
INSERT INTO category."Wards" VALUES (10465, 282, 'system', '2023-07-26 08:40:17.661669+07', 'system', '2023-07-26 08:40:17.661669+07', 'Xã Hồng Sơn', '10465', 'Xã');
INSERT INTO category."Wards" VALUES (10468, 282, 'system', '2023-07-26 08:40:17.661672+07', 'system', '2023-07-26 08:40:17.661672+07', 'Xã Lê Thanh', '10468', 'Xã');
INSERT INTO category."Wards" VALUES (10471, 282, 'system', '2023-07-26 08:40:17.661674+07', 'system', '2023-07-26 08:40:17.661674+07', 'Xã Xuy Xá', '10471', 'Xã');
INSERT INTO category."Wards" VALUES (10474, 282, 'system', '2023-07-26 08:40:17.661677+07', 'system', '2023-07-26 08:40:17.661677+07', 'Xã Phùng Xá', '10474', 'Xã');
INSERT INTO category."Wards" VALUES (10477, 282, 'system', '2023-07-26 08:40:17.661679+07', 'system', '2023-07-26 08:40:17.661679+07', 'Xã Phù Lưu Tế', '10477', 'Xã');
INSERT INTO category."Wards" VALUES (10480, 282, 'system', '2023-07-26 08:40:17.661682+07', 'system', '2023-07-26 08:40:17.661682+07', 'Xã Đại Hưng', '10480', 'Xã');
INSERT INTO category."Wards" VALUES (10483, 282, 'system', '2023-07-26 08:40:17.661685+07', 'system', '2023-07-26 08:40:17.661685+07', 'Xã Vạn Kim', '10483', 'Xã');
INSERT INTO category."Wards" VALUES (10486, 282, 'system', '2023-07-26 08:40:17.661687+07', 'system', '2023-07-26 08:40:17.661687+07', 'Xã Đốc Tín', '10486', 'Xã');
INSERT INTO category."Wards" VALUES (10489, 282, 'system', '2023-07-26 08:40:17.66169+07', 'system', '2023-07-26 08:40:17.66169+07', 'Xã Hương Sơn', '10489', 'Xã');
INSERT INTO category."Wards" VALUES (10492, 282, 'system', '2023-07-26 08:40:17.661693+07', 'system', '2023-07-26 08:40:17.661693+07', 'Xã Hùng Tiến', '10492', 'Xã');
INSERT INTO category."Wards" VALUES (10495, 282, 'system', '2023-07-26 08:40:17.661695+07', 'system', '2023-07-26 08:40:17.661695+07', 'Xã An Tiến', '10495', 'Xã');
INSERT INTO category."Wards" VALUES (10498, 282, 'system', '2023-07-26 08:40:17.661698+07', 'system', '2023-07-26 08:40:17.661698+07', 'Xã Hợp Tiến', '10498', 'Xã');
INSERT INTO category."Wards" VALUES (10501, 282, 'system', '2023-07-26 08:40:17.661701+07', 'system', '2023-07-26 08:40:17.661701+07', 'Xã Hợp Thanh', '10501', 'Xã');
INSERT INTO category."Wards" VALUES (10504, 282, 'system', '2023-07-26 08:40:17.661703+07', 'system', '2023-07-26 08:40:17.661703+07', 'Xã An Phú', '10504', 'Xã');
INSERT INTO category."Wards" VALUES (10507, 288, 'system', '2023-07-26 08:40:17.676169+07', 'system', '2023-07-26 08:40:17.676169+07', 'Phường Cẩm Thượng', '10507', 'Phường');
INSERT INTO category."Wards" VALUES (10510, 288, 'system', '2023-07-26 08:40:17.676172+07', 'system', '2023-07-26 08:40:17.676172+07', 'Phường Bình Hàn', '10510', 'Phường');
INSERT INTO category."Wards" VALUES (10513, 288, 'system', '2023-07-26 08:40:17.676175+07', 'system', '2023-07-26 08:40:17.676175+07', 'Phường Ngọc Châu', '10513', 'Phường');
INSERT INTO category."Wards" VALUES (10514, 288, 'system', '2023-07-26 08:40:17.676177+07', 'system', '2023-07-26 08:40:17.676178+07', 'Phường Nhị Châu', '10514', 'Phường');
INSERT INTO category."Wards" VALUES (10516, 288, 'system', '2023-07-26 08:40:17.67618+07', 'system', '2023-07-26 08:40:17.67618+07', 'Phường Quang Trung', '10516', 'Phường');
INSERT INTO category."Wards" VALUES (10519, 288, 'system', '2023-07-26 08:40:17.676183+07', 'system', '2023-07-26 08:40:17.676183+07', 'Phường Nguyễn Trãi', '10519', 'Phường');
INSERT INTO category."Wards" VALUES (10522, 288, 'system', '2023-07-26 08:40:17.676186+07', 'system', '2023-07-26 08:40:17.676186+07', 'Phường Phạm Ngũ Lão', '10522', 'Phường');
INSERT INTO category."Wards" VALUES (10525, 288, 'system', '2023-07-26 08:40:17.676189+07', 'system', '2023-07-26 08:40:17.676189+07', 'Phường Trần Hưng Đạo', '10525', 'Phường');
INSERT INTO category."Wards" VALUES (10528, 288, 'system', '2023-07-26 08:40:17.676192+07', 'system', '2023-07-26 08:40:17.676192+07', 'Phường Trần Phú', '10528', 'Phường');
INSERT INTO category."Wards" VALUES (10531, 288, 'system', '2023-07-26 08:40:17.676195+07', 'system', '2023-07-26 08:40:17.676195+07', 'Phường Thanh Bình', '10531', 'Phường');
INSERT INTO category."Wards" VALUES (10532, 288, 'system', '2023-07-26 08:40:17.676197+07', 'system', '2023-07-26 08:40:17.676198+07', 'Phường Tân Bình', '10532', 'Phường');
INSERT INTO category."Wards" VALUES (10534, 288, 'system', '2023-07-26 08:40:17.6762+07', 'system', '2023-07-26 08:40:17.6762+07', 'Phường Lê Thanh Nghị', '10534', 'Phường');
INSERT INTO category."Wards" VALUES (10537, 288, 'system', '2023-07-26 08:40:17.676203+07', 'system', '2023-07-26 08:40:17.676203+07', 'Phường Hải Tân', '10537', 'Phường');
INSERT INTO category."Wards" VALUES (10540, 288, 'system', '2023-07-26 08:40:17.676206+07', 'system', '2023-07-26 08:40:17.676206+07', 'Phường Tứ Minh', '10540', 'Phường');
INSERT INTO category."Wards" VALUES (10543, 288, 'system', '2023-07-26 08:40:17.676209+07', 'system', '2023-07-26 08:40:17.676209+07', 'Phường Việt Hoà', '10543', 'Phường');
INSERT INTO category."Wards" VALUES (10546, 290, 'system', '2023-07-26 08:40:17.676238+07', 'system', '2023-07-26 08:40:17.676238+07', 'Phường Phả Lại', '10546', 'Phường');
INSERT INTO category."Wards" VALUES (10549, 290, 'system', '2023-07-26 08:40:17.676241+07', 'system', '2023-07-26 08:40:17.676241+07', 'Phường Sao Đỏ', '10549', 'Phường');
INSERT INTO category."Wards" VALUES (10552, 290, 'system', '2023-07-26 08:40:17.676244+07', 'system', '2023-07-26 08:40:17.676244+07', 'Phường Bến Tắm', '10552', 'Phường');
INSERT INTO category."Wards" VALUES (10555, 290, 'system', '2023-07-26 08:40:17.676247+07', 'system', '2023-07-26 08:40:17.676247+07', 'Xã Hoàng Hoa Thám', '10555', 'Xã');
INSERT INTO category."Wards" VALUES (10558, 290, 'system', '2023-07-26 08:40:17.67625+07', 'system', '2023-07-26 08:40:17.67625+07', 'Xã Bắc An', '10558', 'Xã');
INSERT INTO category."Wards" VALUES (10561, 290, 'system', '2023-07-26 08:40:17.676252+07', 'system', '2023-07-26 08:40:17.676252+07', 'Xã Hưng Đạo', '10561', 'Xã');
INSERT INTO category."Wards" VALUES (10564, 290, 'system', '2023-07-26 08:40:17.676255+07', 'system', '2023-07-26 08:40:17.676255+07', 'Xã Lê Lợi', '10564', 'Xã');
INSERT INTO category."Wards" VALUES (10567, 290, 'system', '2023-07-26 08:40:17.676258+07', 'system', '2023-07-26 08:40:17.676258+07', 'Phường Hoàng Tiến', '10567', 'Phường');
INSERT INTO category."Wards" VALUES (10570, 290, 'system', '2023-07-26 08:40:17.676261+07', 'system', '2023-07-26 08:40:17.676261+07', 'Phường Cộng Hoà', '10570', 'Phường');
INSERT INTO category."Wards" VALUES (10573, 290, 'system', '2023-07-26 08:40:17.676264+07', 'system', '2023-07-26 08:40:17.676264+07', 'Phường Hoàng Tân', '10573', 'Phường');
INSERT INTO category."Wards" VALUES (10576, 290, 'system', '2023-07-26 08:40:17.676267+07', 'system', '2023-07-26 08:40:17.676267+07', 'Phường Cổ Thành', '10576', 'Phường');
INSERT INTO category."Wards" VALUES (10579, 290, 'system', '2023-07-26 08:40:17.676269+07', 'system', '2023-07-26 08:40:17.676269+07', 'Phường Văn An', '10579', 'Phường');
INSERT INTO category."Wards" VALUES (10582, 290, 'system', '2023-07-26 08:40:17.676272+07', 'system', '2023-07-26 08:40:17.676272+07', 'Phường Chí Minh', '10582', 'Phường');
INSERT INTO category."Wards" VALUES (10585, 290, 'system', '2023-07-26 08:40:17.676275+07', 'system', '2023-07-26 08:40:17.676275+07', 'Phường Văn Đức', '10585', 'Phường');
INSERT INTO category."Wards" VALUES (10588, 290, 'system', '2023-07-26 08:40:17.676278+07', 'system', '2023-07-26 08:40:17.676278+07', 'Phường Thái Học', '10588', 'Phường');
INSERT INTO category."Wards" VALUES (10591, 290, 'system', '2023-07-26 08:40:17.676281+07', 'system', '2023-07-26 08:40:17.676281+07', 'Xã Nhân Huệ', '10591', 'Xã');
INSERT INTO category."Wards" VALUES (10594, 290, 'system', '2023-07-26 08:40:17.676283+07', 'system', '2023-07-26 08:40:17.676283+07', 'Phường An Lạc', '10594', 'Phường');
INSERT INTO category."Wards" VALUES (10600, 290, 'system', '2023-07-26 08:40:17.676286+07', 'system', '2023-07-26 08:40:17.676286+07', 'Phường Đồng Lạc', '10600', 'Phường');
INSERT INTO category."Wards" VALUES (10603, 290, 'system', '2023-07-26 08:40:17.676289+07', 'system', '2023-07-26 08:40:17.676289+07', 'Phường Tân Dân', '10603', 'Phường');
INSERT INTO category."Wards" VALUES (10606, 291, 'system', '2023-07-26 08:40:17.676292+07', 'system', '2023-07-26 08:40:17.676292+07', 'Thị trấn Nam Sách', '10606', 'Thị trấn');
INSERT INTO category."Wards" VALUES (10609, 291, 'system', '2023-07-26 08:40:17.676295+07', 'system', '2023-07-26 08:40:17.676295+07', 'Xã Nam Hưng', '10609', 'Xã');
INSERT INTO category."Wards" VALUES (10612, 291, 'system', '2023-07-26 08:40:17.676297+07', 'system', '2023-07-26 08:40:17.676297+07', 'Xã Nam Tân', '10612', 'Xã');
INSERT INTO category."Wards" VALUES (10615, 291, 'system', '2023-07-26 08:40:17.6763+07', 'system', '2023-07-26 08:40:17.6763+07', 'Xã Hợp Tiến', '10615', 'Xã');
INSERT INTO category."Wards" VALUES (10618, 291, 'system', '2023-07-26 08:40:17.676302+07', 'system', '2023-07-26 08:40:17.676302+07', 'Xã Hiệp Cát', '10618', 'Xã');
INSERT INTO category."Wards" VALUES (10621, 291, 'system', '2023-07-26 08:40:17.676305+07', 'system', '2023-07-26 08:40:17.676305+07', 'Xã Thanh Quang', '10621', 'Xã');
INSERT INTO category."Wards" VALUES (10624, 291, 'system', '2023-07-26 08:40:17.676308+07', 'system', '2023-07-26 08:40:17.676308+07', 'Xã Quốc Tuấn', '10624', 'Xã');
INSERT INTO category."Wards" VALUES (10627, 291, 'system', '2023-07-26 08:40:17.676311+07', 'system', '2023-07-26 08:40:17.676311+07', 'Xã Nam Chính', '10627', 'Xã');
INSERT INTO category."Wards" VALUES (10630, 291, 'system', '2023-07-26 08:40:17.676313+07', 'system', '2023-07-26 08:40:17.676313+07', 'Xã An Bình', '10630', 'Xã');
INSERT INTO category."Wards" VALUES (10633, 291, 'system', '2023-07-26 08:40:17.676316+07', 'system', '2023-07-26 08:40:17.676316+07', 'Xã Nam Trung', '10633', 'Xã');
INSERT INTO category."Wards" VALUES (10636, 291, 'system', '2023-07-26 08:40:17.676319+07', 'system', '2023-07-26 08:40:17.676319+07', 'Xã An Sơn', '10636', 'Xã');
INSERT INTO category."Wards" VALUES (10639, 291, 'system', '2023-07-26 08:40:17.676321+07', 'system', '2023-07-26 08:40:17.676321+07', 'Xã Cộng Hòa', '10639', 'Xã');
INSERT INTO category."Wards" VALUES (10642, 291, 'system', '2023-07-26 08:40:17.676324+07', 'system', '2023-07-26 08:40:17.676324+07', 'Xã Thái Tân', '10642', 'Xã');
INSERT INTO category."Wards" VALUES (10645, 291, 'system', '2023-07-26 08:40:17.676326+07', 'system', '2023-07-26 08:40:17.676326+07', 'Xã An Lâm', '10645', 'Xã');
INSERT INTO category."Wards" VALUES (10648, 291, 'system', '2023-07-26 08:40:17.676329+07', 'system', '2023-07-26 08:40:17.676329+07', 'Xã Phú Điền', '10648', 'Xã');
INSERT INTO category."Wards" VALUES (10651, 291, 'system', '2023-07-26 08:40:17.676331+07', 'system', '2023-07-26 08:40:17.676331+07', 'Xã Nam Hồng', '10651', 'Xã');
INSERT INTO category."Wards" VALUES (10654, 291, 'system', '2023-07-26 08:40:17.676334+07', 'system', '2023-07-26 08:40:17.676334+07', 'Xã Hồng Phong', '10654', 'Xã');
INSERT INTO category."Wards" VALUES (10657, 291, 'system', '2023-07-26 08:40:17.676337+07', 'system', '2023-07-26 08:40:17.676337+07', 'Xã Đồng Lạc', '10657', 'Xã');
INSERT INTO category."Wards" VALUES (10660, 288, 'system', '2023-07-26 08:40:17.676212+07', 'system', '2023-07-26 08:40:17.676212+07', 'Phường Ái Quốc', '10660', 'Phường');
INSERT INTO category."Wards" VALUES (10663, 288, 'system', '2023-07-26 08:40:17.676214+07', 'system', '2023-07-26 08:40:17.676214+07', 'Xã An Thượng', '10663', 'Xã');
INSERT INTO category."Wards" VALUES (10666, 291, 'system', '2023-07-26 08:40:17.676339+07', 'system', '2023-07-26 08:40:17.67634+07', 'Xã Minh Tân', '10666', 'Xã');
INSERT INTO category."Wards" VALUES (10672, 288, 'system', '2023-07-26 08:40:17.676217+07', 'system', '2023-07-26 08:40:17.676217+07', 'Phường Nam Đồng', '10672', 'Phường');
INSERT INTO category."Wards" VALUES (10675, 292, 'system', '2023-07-26 08:40:17.676342+07', 'system', '2023-07-26 08:40:17.676342+07', 'Phường An Lưu', '10675', 'Phường');
INSERT INTO category."Wards" VALUES (10678, 292, 'system', '2023-07-26 08:40:17.676345+07', 'system', '2023-07-26 08:40:17.676345+07', 'Xã Bạch Đằng', '10678', 'Xã');
INSERT INTO category."Wards" VALUES (10681, 292, 'system', '2023-07-26 08:40:17.676347+07', 'system', '2023-07-26 08:40:17.676348+07', 'Phường Thất Hùng', '10681', 'Phường');
INSERT INTO category."Wards" VALUES (10684, 292, 'system', '2023-07-26 08:40:17.67635+07', 'system', '2023-07-26 08:40:17.67635+07', 'Xã Lê Ninh', '10684', 'Xã');
INSERT INTO category."Wards" VALUES (10687, 292, 'system', '2023-07-26 08:40:17.676353+07', 'system', '2023-07-26 08:40:17.676353+07', 'Xã Hoành Sơn', '10687', 'Xã');
INSERT INTO category."Wards" VALUES (10693, 292, 'system', '2023-07-26 08:40:17.676356+07', 'system', '2023-07-26 08:40:17.676357+07', 'Phường Phạm Thái', '10693', 'Phường');
INSERT INTO category."Wards" VALUES (10696, 292, 'system', '2023-07-26 08:40:17.676359+07', 'system', '2023-07-26 08:40:17.67636+07', 'Phường Duy Tân', '10696', 'Phường');
INSERT INTO category."Wards" VALUES (10699, 292, 'system', '2023-07-26 08:40:17.676362+07', 'system', '2023-07-26 08:40:17.676362+07', 'Phường Tân Dân', '10699', 'Phường');
INSERT INTO category."Wards" VALUES (10702, 292, 'system', '2023-07-26 08:40:17.676365+07', 'system', '2023-07-26 08:40:17.676365+07', 'Phường Minh Tân', '10702', 'Phường');
INSERT INTO category."Wards" VALUES (10705, 292, 'system', '2023-07-26 08:40:17.676368+07', 'system', '2023-07-26 08:40:17.676368+07', 'Xã Quang Thành', '10705', 'Xã');
INSERT INTO category."Wards" VALUES (10708, 292, 'system', '2023-07-26 08:40:17.67637+07', 'system', '2023-07-26 08:40:17.67637+07', 'Xã Hiệp Hòa', '10708', 'Xã');
INSERT INTO category."Wards" VALUES (10714, 292, 'system', '2023-07-26 08:40:17.676373+07', 'system', '2023-07-26 08:40:17.676373+07', 'Phường Phú Thứ', '10714', 'Phường');
INSERT INTO category."Wards" VALUES (10717, 292, 'system', '2023-07-26 08:40:17.676376+07', 'system', '2023-07-26 08:40:17.676376+07', 'Xã Thăng Long', '10717', 'Xã');
INSERT INTO category."Wards" VALUES (10720, 292, 'system', '2023-07-26 08:40:17.676378+07', 'system', '2023-07-26 08:40:17.676378+07', 'Xã Lạc Long', '10720', 'Xã');
INSERT INTO category."Wards" VALUES (10723, 292, 'system', '2023-07-26 08:40:17.676381+07', 'system', '2023-07-26 08:40:17.676381+07', 'Phường An Sinh', '10723', 'Phường');
INSERT INTO category."Wards" VALUES (10726, 292, 'system', '2023-07-26 08:40:17.676384+07', 'system', '2023-07-26 08:40:17.676384+07', 'Phường Hiệp Sơn', '10726', 'Phường');
INSERT INTO category."Wards" VALUES (10729, 292, 'system', '2023-07-26 08:40:17.676387+07', 'system', '2023-07-26 08:40:17.676387+07', 'Xã Thượng Quận', '10729', 'Xã');
INSERT INTO category."Wards" VALUES (10732, 292, 'system', '2023-07-26 08:40:17.676389+07', 'system', '2023-07-26 08:40:17.67639+07', 'Phường An Phụ', '10732', 'Phường');
INSERT INTO category."Wards" VALUES (10735, 292, 'system', '2023-07-26 08:40:17.676392+07', 'system', '2023-07-26 08:40:17.676392+07', 'Phường Hiệp An', '10735', 'Phường');
INSERT INTO category."Wards" VALUES (10738, 292, 'system', '2023-07-26 08:40:17.676409+07', 'system', '2023-07-26 08:40:17.676409+07', 'Phường Long Xuyên', '10738', 'Phường');
INSERT INTO category."Wards" VALUES (10741, 292, 'system', '2023-07-26 08:40:17.676412+07', 'system', '2023-07-26 08:40:17.676412+07', 'Phường Thái Thịnh', '10741', 'Phường');
INSERT INTO category."Wards" VALUES (10744, 292, 'system', '2023-07-26 08:40:17.676414+07', 'system', '2023-07-26 08:40:17.676415+07', 'Phường Hiến Thành', '10744', 'Phường');
INSERT INTO category."Wards" VALUES (10747, 292, 'system', '2023-07-26 08:40:17.676417+07', 'system', '2023-07-26 08:40:17.676417+07', 'Xã Minh Hòa', '10747', 'Xã');
INSERT INTO category."Wards" VALUES (10750, 293, 'system', '2023-07-26 08:40:17.67642+07', 'system', '2023-07-26 08:40:17.67642+07', 'Thị trấn Phú Thái', '10750', 'Thị trấn');
INSERT INTO category."Wards" VALUES (10753, 293, 'system', '2023-07-26 08:40:17.676423+07', 'system', '2023-07-26 08:40:17.676423+07', 'Xã Lai Vu', '10753', 'Xã');
INSERT INTO category."Wards" VALUES (10756, 293, 'system', '2023-07-26 08:40:17.676425+07', 'system', '2023-07-26 08:40:17.676425+07', 'Xã Cộng Hòa', '10756', 'Xã');
INSERT INTO category."Wards" VALUES (10759, 293, 'system', '2023-07-26 08:40:17.676428+07', 'system', '2023-07-26 08:40:17.676428+07', 'Xã Thượng Vũ', '10759', 'Xã');
INSERT INTO category."Wards" VALUES (10762, 293, 'system', '2023-07-26 08:40:17.676431+07', 'system', '2023-07-26 08:40:17.676431+07', 'Xã Cổ Dũng', '10762', 'Xã');
INSERT INTO category."Wards" VALUES (10768, 293, 'system', '2023-07-26 08:40:17.676433+07', 'system', '2023-07-26 08:40:17.676433+07', 'Xã Tuấn Việt', '10768', 'Xã');
INSERT INTO category."Wards" VALUES (10771, 293, 'system', '2023-07-26 08:40:17.676436+07', 'system', '2023-07-26 08:40:17.676436+07', 'Xã Kim Xuyên', '10771', 'Xã');
INSERT INTO category."Wards" VALUES (10774, 293, 'system', '2023-07-26 08:40:17.676438+07', 'system', '2023-07-26 08:40:17.676439+07', 'Xã Phúc Thành A', '10774', 'Xã');
INSERT INTO category."Wards" VALUES (10777, 293, 'system', '2023-07-26 08:40:17.676441+07', 'system', '2023-07-26 08:40:17.676441+07', 'Xã Ngũ Phúc', '10777', 'Xã');
INSERT INTO category."Wards" VALUES (10780, 293, 'system', '2023-07-26 08:40:17.676444+07', 'system', '2023-07-26 08:40:17.676444+07', 'Xã Kim Anh', '10780', 'Xã');
INSERT INTO category."Wards" VALUES (10783, 293, 'system', '2023-07-26 08:40:17.676447+07', 'system', '2023-07-26 08:40:17.676447+07', 'Xã Kim Liên', '10783', 'Xã');
INSERT INTO category."Wards" VALUES (10786, 293, 'system', '2023-07-26 08:40:17.676449+07', 'system', '2023-07-26 08:40:17.676449+07', 'Xã Kim Tân', '10786', 'Xã');
INSERT INTO category."Wards" VALUES (10792, 293, 'system', '2023-07-26 08:40:17.676452+07', 'system', '2023-07-26 08:40:17.676452+07', 'Xã Kim Đính', '10792', 'Xã');
INSERT INTO category."Wards" VALUES (10798, 293, 'system', '2023-07-26 08:40:17.676454+07', 'system', '2023-07-26 08:40:17.676455+07', 'Xã Bình Dân', '10798', 'Xã');
INSERT INTO category."Wards" VALUES (10801, 293, 'system', '2023-07-26 08:40:17.676457+07', 'system', '2023-07-26 08:40:17.676457+07', 'Xã Tam Kỳ', '10801', 'Xã');
INSERT INTO category."Wards" VALUES (10804, 293, 'system', '2023-07-26 08:40:17.67646+07', 'system', '2023-07-26 08:40:17.67646+07', 'Xã Đồng Cẩm', '10804', 'Xã');
INSERT INTO category."Wards" VALUES (10807, 293, 'system', '2023-07-26 08:40:17.676462+07', 'system', '2023-07-26 08:40:17.676462+07', 'Xã Liên Hòa', '10807', 'Xã');
INSERT INTO category."Wards" VALUES (10810, 293, 'system', '2023-07-26 08:40:17.676465+07', 'system', '2023-07-26 08:40:17.676465+07', 'Xã Đại Đức', '10810', 'Xã');
INSERT INTO category."Wards" VALUES (10813, 294, 'system', '2023-07-26 08:40:17.676469+07', 'system', '2023-07-26 08:40:17.676469+07', 'Thị trấn Thanh Hà', '10813', 'Thị trấn');
INSERT INTO category."Wards" VALUES (10816, 294, 'system', '2023-07-26 08:40:17.676472+07', 'system', '2023-07-26 08:40:17.676472+07', 'Xã Hồng Lạc', '10816', 'Xã');
INSERT INTO category."Wards" VALUES (10819, 294, 'system', '2023-07-26 08:40:17.676475+07', 'system', '2023-07-26 08:40:17.676475+07', 'Xã Việt Hồng', '10819', 'Xã');
INSERT INTO category."Wards" VALUES (10822, 288, 'system', '2023-07-26 08:40:17.67622+07', 'system', '2023-07-26 08:40:17.67622+07', 'Xã Quyết Thắng', '10822', 'Xã');
INSERT INTO category."Wards" VALUES (10825, 294, 'system', '2023-07-26 08:40:17.676477+07', 'system', '2023-07-26 08:40:17.676477+07', 'Xã Tân Việt', '10825', 'Xã');
INSERT INTO category."Wards" VALUES (10828, 294, 'system', '2023-07-26 08:40:17.67648+07', 'system', '2023-07-26 08:40:17.67648+07', 'Xã Cẩm Chế', '10828', 'Xã');
INSERT INTO category."Wards" VALUES (10831, 294, 'system', '2023-07-26 08:40:17.676482+07', 'system', '2023-07-26 08:40:17.676482+07', 'Xã Thanh An', '10831', 'Xã');
INSERT INTO category."Wards" VALUES (10834, 294, 'system', '2023-07-26 08:40:17.676485+07', 'system', '2023-07-26 08:40:17.676485+07', 'Xã Thanh Lang', '10834', 'Xã');
INSERT INTO category."Wards" VALUES (10837, 288, 'system', '2023-07-26 08:40:17.676222+07', 'system', '2023-07-26 08:40:17.676222+07', 'Xã Tiền Tiến', '10837', 'Xã');
INSERT INTO category."Wards" VALUES (10840, 294, 'system', '2023-07-26 08:40:17.676488+07', 'system', '2023-07-26 08:40:17.676488+07', 'Xã Tân An', '10840', 'Xã');
INSERT INTO category."Wards" VALUES (10843, 294, 'system', '2023-07-26 08:40:17.67649+07', 'system', '2023-07-26 08:40:17.676491+07', 'Xã Liên Mạc', '10843', 'Xã');
INSERT INTO category."Wards" VALUES (10846, 294, 'system', '2023-07-26 08:40:17.676493+07', 'system', '2023-07-26 08:40:17.676493+07', 'Xã Thanh Hải', '10846', 'Xã');
INSERT INTO category."Wards" VALUES (10849, 294, 'system', '2023-07-26 08:40:17.676496+07', 'system', '2023-07-26 08:40:17.676496+07', 'Xã Thanh Khê', '10849', 'Xã');
INSERT INTO category."Wards" VALUES (10852, 294, 'system', '2023-07-26 08:40:17.676499+07', 'system', '2023-07-26 08:40:17.676499+07', 'Xã Thanh Xá', '10852', 'Xã');
INSERT INTO category."Wards" VALUES (10855, 294, 'system', '2023-07-26 08:40:17.676501+07', 'system', '2023-07-26 08:40:17.676501+07', 'Xã Thanh Xuân', '10855', 'Xã');
INSERT INTO category."Wards" VALUES (10861, 294, 'system', '2023-07-26 08:40:17.676504+07', 'system', '2023-07-26 08:40:17.676504+07', 'Xã Thanh Thủy', '10861', 'Xã');
INSERT INTO category."Wards" VALUES (10864, 294, 'system', '2023-07-26 08:40:17.676506+07', 'system', '2023-07-26 08:40:17.676506+07', 'Xã An Phượng', '10864', 'Xã');
INSERT INTO category."Wards" VALUES (10867, 294, 'system', '2023-07-26 08:40:17.676509+07', 'system', '2023-07-26 08:40:17.676509+07', 'Xã Thanh Sơn', '10867', 'Xã');
INSERT INTO category."Wards" VALUES (10876, 294, 'system', '2023-07-26 08:40:17.676513+07', 'system', '2023-07-26 08:40:17.676513+07', 'Xã Thanh Quang', '10876', 'Xã');
INSERT INTO category."Wards" VALUES (10879, 294, 'system', '2023-07-26 08:40:17.676517+07', 'system', '2023-07-26 08:40:17.676517+07', 'Xã Thanh Hồng', '10879', 'Xã');
INSERT INTO category."Wards" VALUES (10882, 294, 'system', '2023-07-26 08:40:17.676521+07', 'system', '2023-07-26 08:40:17.676522+07', 'Xã Thanh Cường', '10882', 'Xã');
INSERT INTO category."Wards" VALUES (10885, 294, 'system', '2023-07-26 08:40:17.676526+07', 'system', '2023-07-26 08:40:17.676526+07', 'Xã Vĩnh Lập', '10885', 'Xã');
INSERT INTO category."Wards" VALUES (10888, 295, 'system', '2023-07-26 08:40:17.67653+07', 'system', '2023-07-26 08:40:17.676531+07', 'Thị trấn Cẩm Giang', '10888', 'Thị trấn');
INSERT INTO category."Wards" VALUES (10891, 295, 'system', '2023-07-26 08:40:17.676535+07', 'system', '2023-07-26 08:40:17.676535+07', 'Thị trấn Lai Cách', '10891', 'Thị trấn');
INSERT INTO category."Wards" VALUES (10894, 295, 'system', '2023-07-26 08:40:17.67654+07', 'system', '2023-07-26 08:40:17.676541+07', 'Xã Cẩm Hưng', '10894', 'Xã');
INSERT INTO category."Wards" VALUES (10897, 295, 'system', '2023-07-26 08:40:17.676543+07', 'system', '2023-07-26 08:40:17.676544+07', 'Xã Cẩm Hoàng', '10897', 'Xã');
INSERT INTO category."Wards" VALUES (10900, 295, 'system', '2023-07-26 08:40:17.676546+07', 'system', '2023-07-26 08:40:17.676546+07', 'Xã Cẩm Văn', '10900', 'Xã');
INSERT INTO category."Wards" VALUES (10903, 295, 'system', '2023-07-26 08:40:17.676549+07', 'system', '2023-07-26 08:40:17.676549+07', 'Xã Ngọc Liên', '10903', 'Xã');
INSERT INTO category."Wards" VALUES (10906, 295, 'system', '2023-07-26 08:40:17.676552+07', 'system', '2023-07-26 08:40:17.676552+07', 'Xã Thạch Lỗi', '10906', 'Xã');
INSERT INTO category."Wards" VALUES (10909, 295, 'system', '2023-07-26 08:40:17.676555+07', 'system', '2023-07-26 08:40:17.676555+07', 'Xã Cẩm Vũ', '10909', 'Xã');
INSERT INTO category."Wards" VALUES (10912, 295, 'system', '2023-07-26 08:40:17.676557+07', 'system', '2023-07-26 08:40:17.676557+07', 'Xã Đức Chính', '10912', 'Xã');
INSERT INTO category."Wards" VALUES (10918, 295, 'system', '2023-07-26 08:40:17.67656+07', 'system', '2023-07-26 08:40:17.67656+07', 'Xã Định Sơn', '10918', 'Xã');
INSERT INTO category."Wards" VALUES (10924, 295, 'system', '2023-07-26 08:40:17.676562+07', 'system', '2023-07-26 08:40:17.676562+07', 'Xã Lương Điền', '10924', 'Xã');
INSERT INTO category."Wards" VALUES (10927, 295, 'system', '2023-07-26 08:40:17.676565+07', 'system', '2023-07-26 08:40:17.676565+07', 'Xã Cao An', '10927', 'Xã');
INSERT INTO category."Wards" VALUES (10930, 295, 'system', '2023-07-26 08:40:17.676568+07', 'system', '2023-07-26 08:40:17.676568+07', 'Xã Tân Trường', '10930', 'Xã');
INSERT INTO category."Wards" VALUES (10933, 295, 'system', '2023-07-26 08:40:17.67657+07', 'system', '2023-07-26 08:40:17.676571+07', 'Xã Cẩm Phúc', '10933', 'Xã');
INSERT INTO category."Wards" VALUES (10936, 295, 'system', '2023-07-26 08:40:17.676573+07', 'system', '2023-07-26 08:40:17.676573+07', 'Xã Cẩm Điền', '10936', 'Xã');
INSERT INTO category."Wards" VALUES (10939, 295, 'system', '2023-07-26 08:40:17.676576+07', 'system', '2023-07-26 08:40:17.676576+07', 'Xã Cẩm Đông', '10939', 'Xã');
INSERT INTO category."Wards" VALUES (10942, 295, 'system', '2023-07-26 08:40:17.67658+07', 'system', '2023-07-26 08:40:17.67658+07', 'Xã Cẩm Đoài', '10942', 'Xã');
INSERT INTO category."Wards" VALUES (10945, 296, 'system', '2023-07-26 08:40:17.676583+07', 'system', '2023-07-26 08:40:17.676583+07', 'Thị trấn Kẻ Sặt', '10945', 'Thị trấn');
INSERT INTO category."Wards" VALUES (10951, 296, 'system', '2023-07-26 08:40:17.676586+07', 'system', '2023-07-26 08:40:17.676586+07', 'Xã Vĩnh Hưng', '10951', 'Xã');
INSERT INTO category."Wards" VALUES (10954, 296, 'system', '2023-07-26 08:40:17.676588+07', 'system', '2023-07-26 08:40:17.676588+07', 'Xã Hùng Thắng', '10954', 'Xã');
INSERT INTO category."Wards" VALUES (10960, 296, 'system', '2023-07-26 08:40:17.676591+07', 'system', '2023-07-26 08:40:17.676591+07', 'Xã Vĩnh Hồng', '10960', 'Xã');
INSERT INTO category."Wards" VALUES (10963, 296, 'system', '2023-07-26 08:40:17.676593+07', 'system', '2023-07-26 08:40:17.676593+07', 'Xã Long Xuyên', '10963', 'Xã');
INSERT INTO category."Wards" VALUES (10966, 296, 'system', '2023-07-26 08:40:17.676596+07', 'system', '2023-07-26 08:40:17.676596+07', 'Xã Tân Việt', '10966', 'Xã');
INSERT INTO category."Wards" VALUES (10969, 296, 'system', '2023-07-26 08:40:17.676598+07', 'system', '2023-07-26 08:40:17.676598+07', 'Xã Thúc Kháng', '10969', 'Xã');
INSERT INTO category."Wards" VALUES (10972, 296, 'system', '2023-07-26 08:40:17.676601+07', 'system', '2023-07-26 08:40:17.676601+07', 'Xã Tân Hồng', '10972', 'Xã');
INSERT INTO category."Wards" VALUES (10975, 296, 'system', '2023-07-26 08:40:17.676603+07', 'system', '2023-07-26 08:40:17.676604+07', 'Xã Bình Minh', '10975', 'Xã');
INSERT INTO category."Wards" VALUES (10978, 296, 'system', '2023-07-26 08:40:17.676606+07', 'system', '2023-07-26 08:40:17.676606+07', 'Xã Hồng Khê', '10978', 'Xã');
INSERT INTO category."Wards" VALUES (10981, 296, 'system', '2023-07-26 08:40:17.676609+07', 'system', '2023-07-26 08:40:17.676609+07', 'Xã Thái Học', '10981', 'Xã');
INSERT INTO category."Wards" VALUES (10984, 296, 'system', '2023-07-26 08:40:17.676611+07', 'system', '2023-07-26 08:40:17.676611+07', 'Xã Cổ Bì', '10984', 'Xã');
INSERT INTO category."Wards" VALUES (10987, 296, 'system', '2023-07-26 08:40:17.676614+07', 'system', '2023-07-26 08:40:17.676614+07', 'Xã Nhân Quyền', '10987', 'Xã');
INSERT INTO category."Wards" VALUES (10990, 296, 'system', '2023-07-26 08:40:17.676616+07', 'system', '2023-07-26 08:40:17.676617+07', 'Xã Thái Dương', '10990', 'Xã');
INSERT INTO category."Wards" VALUES (10993, 296, 'system', '2023-07-26 08:40:17.676619+07', 'system', '2023-07-26 08:40:17.676619+07', 'Xã Thái Hòa', '10993', 'Xã');
INSERT INTO category."Wards" VALUES (10996, 296, 'system', '2023-07-26 08:40:17.676622+07', 'system', '2023-07-26 08:40:17.676622+07', 'Xã Bình Xuyên', '10996', 'Xã');
INSERT INTO category."Wards" VALUES (10999, 297, 'system', '2023-07-26 08:40:17.676625+07', 'system', '2023-07-26 08:40:17.676625+07', 'Thị trấn Gia Lộc', '10999', 'Thị trấn');
INSERT INTO category."Wards" VALUES (11002, 288, 'system', '2023-07-26 08:40:17.676225+07', 'system', '2023-07-26 08:40:17.676225+07', 'Phường Thạch Khôi', '11002', 'Phường');
INSERT INTO category."Wards" VALUES (11005, 288, 'system', '2023-07-26 08:40:17.676228+07', 'system', '2023-07-26 08:40:17.676228+07', 'Xã Liên Hồng', '11005', 'Xã');
INSERT INTO category."Wards" VALUES (11008, 297, 'system', '2023-07-26 08:40:17.676627+07', 'system', '2023-07-26 08:40:17.676627+07', 'Xã Thống Nhất', '11008', 'Xã');
INSERT INTO category."Wards" VALUES (11011, 288, 'system', '2023-07-26 08:40:17.67623+07', 'system', '2023-07-26 08:40:17.67623+07', 'Phường Tân Hưng', '11011', 'Phường');
INSERT INTO category."Wards" VALUES (11017, 288, 'system', '2023-07-26 08:40:17.676233+07', 'system', '2023-07-26 08:40:17.676233+07', 'Xã Gia Xuyên', '11017', 'Xã');
INSERT INTO category."Wards" VALUES (11020, 297, 'system', '2023-07-26 08:40:17.67663+07', 'system', '2023-07-26 08:40:17.67663+07', 'Xã Yết Kiêu', '11020', 'Xã');
INSERT INTO category."Wards" VALUES (11029, 297, 'system', '2023-07-26 08:40:17.676633+07', 'system', '2023-07-26 08:40:17.676633+07', 'Xã Gia Tân', '11029', 'Xã');
INSERT INTO category."Wards" VALUES (11032, 297, 'system', '2023-07-26 08:40:17.676635+07', 'system', '2023-07-26 08:40:17.676635+07', 'Xã Tân Tiến', '11032', 'Xã');
INSERT INTO category."Wards" VALUES (11035, 297, 'system', '2023-07-26 08:40:17.676638+07', 'system', '2023-07-26 08:40:17.676638+07', 'Xã Gia Khánh', '11035', 'Xã');
INSERT INTO category."Wards" VALUES (11038, 297, 'system', '2023-07-26 08:40:17.67664+07', 'system', '2023-07-26 08:40:17.67664+07', 'Xã Gia Lương', '11038', 'Xã');
INSERT INTO category."Wards" VALUES (11041, 297, 'system', '2023-07-26 08:40:17.676643+07', 'system', '2023-07-26 08:40:17.676643+07', 'Xã Lê Lợi', '11041', 'Xã');
INSERT INTO category."Wards" VALUES (11044, 297, 'system', '2023-07-26 08:40:17.676646+07', 'system', '2023-07-26 08:40:17.676646+07', 'Xã Toàn Thắng', '11044', 'Xã');
INSERT INTO category."Wards" VALUES (11047, 297, 'system', '2023-07-26 08:40:17.676648+07', 'system', '2023-07-26 08:40:17.676648+07', 'Xã Hoàng Diệu', '11047', 'Xã');
INSERT INTO category."Wards" VALUES (11050, 297, 'system', '2023-07-26 08:40:17.676651+07', 'system', '2023-07-26 08:40:17.676651+07', 'Xã Hồng Hưng', '11050', 'Xã');
INSERT INTO category."Wards" VALUES (11053, 297, 'system', '2023-07-26 08:40:17.676654+07', 'system', '2023-07-26 08:40:17.676654+07', 'Xã Phạm Trấn', '11053', 'Xã');
INSERT INTO category."Wards" VALUES (11056, 297, 'system', '2023-07-26 08:40:17.676656+07', 'system', '2023-07-26 08:40:17.676656+07', 'Xã Đoàn Thượng', '11056', 'Xã');
INSERT INTO category."Wards" VALUES (11059, 297, 'system', '2023-07-26 08:40:17.676659+07', 'system', '2023-07-26 08:40:17.676659+07', 'Xã Thống Kênh', '11059', 'Xã');
INSERT INTO category."Wards" VALUES (11062, 297, 'system', '2023-07-26 08:40:17.676662+07', 'system', '2023-07-26 08:40:17.676662+07', 'Xã Quang Minh', '11062', 'Xã');
INSERT INTO category."Wards" VALUES (11065, 297, 'system', '2023-07-26 08:40:17.676664+07', 'system', '2023-07-26 08:40:17.676664+07', 'Xã Đồng Quang', '11065', 'Xã');
INSERT INTO category."Wards" VALUES (11068, 297, 'system', '2023-07-26 08:40:17.676667+07', 'system', '2023-07-26 08:40:17.676667+07', 'Xã Nhật Tân', '11068', 'Xã');
INSERT INTO category."Wards" VALUES (11071, 297, 'system', '2023-07-26 08:40:17.67667+07', 'system', '2023-07-26 08:40:17.67667+07', 'Xã Đức Xương', '11071', 'Xã');
INSERT INTO category."Wards" VALUES (11074, 298, 'system', '2023-07-26 08:40:17.676672+07', 'system', '2023-07-26 08:40:17.676672+07', 'Thị trấn Tứ Kỳ', '11074', 'Thị trấn');
INSERT INTO category."Wards" VALUES (11077, 288, 'system', '2023-07-26 08:40:17.676236+07', 'system', '2023-07-26 08:40:17.676236+07', 'Xã Ngọc Sơn', '11077', 'Xã');
INSERT INTO category."Wards" VALUES (11083, 298, 'system', '2023-07-26 08:40:17.676676+07', 'system', '2023-07-26 08:40:17.676676+07', 'Xã Đại Sơn', '11083', 'Xã');
INSERT INTO category."Wards" VALUES (11086, 298, 'system', '2023-07-26 08:40:17.676679+07', 'system', '2023-07-26 08:40:17.676679+07', 'Xã Hưng Đạo', '11086', 'Xã');
INSERT INTO category."Wards" VALUES (11089, 298, 'system', '2023-07-26 08:40:17.676681+07', 'system', '2023-07-26 08:40:17.676681+07', 'Xã Ngọc Kỳ', '11089', 'Xã');
INSERT INTO category."Wards" VALUES (11092, 298, 'system', '2023-07-26 08:40:17.676684+07', 'system', '2023-07-26 08:40:17.676684+07', 'Xã Bình Lăng', '11092', 'Xã');
INSERT INTO category."Wards" VALUES (11095, 298, 'system', '2023-07-26 08:40:17.676687+07', 'system', '2023-07-26 08:40:17.676687+07', 'Xã Chí Minh', '11095', 'Xã');
INSERT INTO category."Wards" VALUES (11098, 298, 'system', '2023-07-26 08:40:17.676689+07', 'system', '2023-07-26 08:40:17.676689+07', 'Xã Tái Sơn', '11098', 'Xã');
INSERT INTO category."Wards" VALUES (11101, 298, 'system', '2023-07-26 08:40:17.676692+07', 'system', '2023-07-26 08:40:17.676692+07', 'Xã Quang Phục', '11101', 'Xã');
INSERT INTO category."Wards" VALUES (11110, 298, 'system', '2023-07-26 08:40:17.676694+07', 'system', '2023-07-26 08:40:17.676694+07', 'Xã Dân Chủ', '11110', 'Xã');
INSERT INTO category."Wards" VALUES (11113, 298, 'system', '2023-07-26 08:40:17.676697+07', 'system', '2023-07-26 08:40:17.676697+07', 'Xã Tân Kỳ', '11113', 'Xã');
INSERT INTO category."Wards" VALUES (11116, 298, 'system', '2023-07-26 08:40:17.6767+07', 'system', '2023-07-26 08:40:17.6767+07', 'Xã Quang Khải', '11116', 'Xã');
INSERT INTO category."Wards" VALUES (11119, 298, 'system', '2023-07-26 08:40:17.676702+07', 'system', '2023-07-26 08:40:17.676702+07', 'Xã Đại Hợp', '11119', 'Xã');
INSERT INTO category."Wards" VALUES (11122, 298, 'system', '2023-07-26 08:40:17.676705+07', 'system', '2023-07-26 08:40:17.676705+07', 'Xã Quảng Nghiệp', '11122', 'Xã');
INSERT INTO category."Wards" VALUES (11125, 298, 'system', '2023-07-26 08:40:17.676708+07', 'system', '2023-07-26 08:40:17.676708+07', 'Xã An Thanh', '11125', 'Xã');
INSERT INTO category."Wards" VALUES (11128, 298, 'system', '2023-07-26 08:40:17.67671+07', 'system', '2023-07-26 08:40:17.67671+07', 'Xã Minh Đức', '11128', 'Xã');
INSERT INTO category."Wards" VALUES (11131, 298, 'system', '2023-07-26 08:40:17.676713+07', 'system', '2023-07-26 08:40:17.676713+07', 'Xã Văn Tố', '11131', 'Xã');
INSERT INTO category."Wards" VALUES (11134, 298, 'system', '2023-07-26 08:40:17.676715+07', 'system', '2023-07-26 08:40:17.676715+07', 'Xã Quang Trung', '11134', 'Xã');
INSERT INTO category."Wards" VALUES (11137, 298, 'system', '2023-07-26 08:40:17.676718+07', 'system', '2023-07-26 08:40:17.676718+07', 'Xã Phượng Kỳ', '11137', 'Xã');
INSERT INTO category."Wards" VALUES (11140, 298, 'system', '2023-07-26 08:40:17.67672+07', 'system', '2023-07-26 08:40:17.67672+07', 'Xã Cộng Lạc', '11140', 'Xã');
INSERT INTO category."Wards" VALUES (11143, 298, 'system', '2023-07-26 08:40:17.676723+07', 'system', '2023-07-26 08:40:17.676723+07', 'Xã Tiên Động', '11143', 'Xã');
INSERT INTO category."Wards" VALUES (11146, 298, 'system', '2023-07-26 08:40:17.676726+07', 'system', '2023-07-26 08:40:17.676726+07', 'Xã Nguyên Giáp', '11146', 'Xã');
INSERT INTO category."Wards" VALUES (11149, 298, 'system', '2023-07-26 08:40:17.676728+07', 'system', '2023-07-26 08:40:17.676728+07', 'Xã Hà Kỳ', '11149', 'Xã');
INSERT INTO category."Wards" VALUES (11152, 298, 'system', '2023-07-26 08:40:17.676731+07', 'system', '2023-07-26 08:40:17.676731+07', 'Xã Hà Thanh', '11152', 'Xã');
INSERT INTO category."Wards" VALUES (11155, 299, 'system', '2023-07-26 08:40:17.676734+07', 'system', '2023-07-26 08:40:17.676734+07', 'Thị trấn Ninh Giang', '11155', 'Thị trấn');
INSERT INTO category."Wards" VALUES (11161, 299, 'system', '2023-07-26 08:40:17.676736+07', 'system', '2023-07-26 08:40:17.676737+07', 'Xã Ứng Hoè', '11161', 'Xã');
INSERT INTO category."Wards" VALUES (11164, 299, 'system', '2023-07-26 08:40:17.676739+07', 'system', '2023-07-26 08:40:17.676739+07', 'Xã Nghĩa An', '11164', 'Xã');
INSERT INTO category."Wards" VALUES (11167, 299, 'system', '2023-07-26 08:40:17.676742+07', 'system', '2023-07-26 08:40:17.676742+07', 'Xã Hồng Đức', '11167', 'Xã');
INSERT INTO category."Wards" VALUES (11173, 299, 'system', '2023-07-26 08:40:17.676744+07', 'system', '2023-07-26 08:40:17.676744+07', 'Xã An Đức', '11173', 'Xã');
INSERT INTO category."Wards" VALUES (11176, 299, 'system', '2023-07-26 08:40:17.676747+07', 'system', '2023-07-26 08:40:17.676747+07', 'Xã Vạn Phúc', '11176', 'Xã');
INSERT INTO category."Wards" VALUES (11179, 299, 'system', '2023-07-26 08:40:17.67675+07', 'system', '2023-07-26 08:40:17.67675+07', 'Xã Tân Hương', '11179', 'Xã');
INSERT INTO category."Wards" VALUES (11185, 299, 'system', '2023-07-26 08:40:17.676752+07', 'system', '2023-07-26 08:40:17.676752+07', 'Xã Vĩnh Hòa', '11185', 'Xã');
INSERT INTO category."Wards" VALUES (11188, 299, 'system', '2023-07-26 08:40:17.676755+07', 'system', '2023-07-26 08:40:17.676755+07', 'Xã Đông Xuyên', '11188', 'Xã');
INSERT INTO category."Wards" VALUES (11197, 299, 'system', '2023-07-26 08:40:17.676757+07', 'system', '2023-07-26 08:40:17.676757+07', 'Xã Tân Phong', '11197', 'Xã');
INSERT INTO category."Wards" VALUES (11200, 299, 'system', '2023-07-26 08:40:17.67676+07', 'system', '2023-07-26 08:40:17.67676+07', 'Xã Ninh Hải', '11200', 'Xã');
INSERT INTO category."Wards" VALUES (11203, 299, 'system', '2023-07-26 08:40:17.676763+07', 'system', '2023-07-26 08:40:17.676763+07', 'Xã Đồng Tâm', '11203', 'Xã');
INSERT INTO category."Wards" VALUES (11206, 299, 'system', '2023-07-26 08:40:17.676765+07', 'system', '2023-07-26 08:40:17.676765+07', 'Xã Tân Quang', '11206', 'Xã');
INSERT INTO category."Wards" VALUES (11209, 299, 'system', '2023-07-26 08:40:17.676768+07', 'system', '2023-07-26 08:40:17.676768+07', 'Xã Kiến Quốc', '11209', 'Xã');
INSERT INTO category."Wards" VALUES (11215, 299, 'system', '2023-07-26 08:40:17.67677+07', 'system', '2023-07-26 08:40:17.67677+07', 'Xã Hồng Dụ', '11215', 'Xã');
INSERT INTO category."Wards" VALUES (11218, 299, 'system', '2023-07-26 08:40:17.676774+07', 'system', '2023-07-26 08:40:17.676774+07', 'Xã Văn Hội', '11218', 'Xã');
INSERT INTO category."Wards" VALUES (11224, 299, 'system', '2023-07-26 08:40:17.676777+07', 'system', '2023-07-26 08:40:17.676777+07', 'Xã Hồng Phong', '11224', 'Xã');
INSERT INTO category."Wards" VALUES (11227, 299, 'system', '2023-07-26 08:40:17.676779+07', 'system', '2023-07-26 08:40:17.676779+07', 'Xã Hiệp Lực', '11227', 'Xã');
INSERT INTO category."Wards" VALUES (11230, 299, 'system', '2023-07-26 08:40:17.676782+07', 'system', '2023-07-26 08:40:17.676782+07', 'Xã Hồng Phúc', '11230', 'Xã');
INSERT INTO category."Wards" VALUES (11233, 299, 'system', '2023-07-26 08:40:17.676784+07', 'system', '2023-07-26 08:40:17.676785+07', 'Xã Hưng Long', '11233', 'Xã');
INSERT INTO category."Wards" VALUES (11239, 300, 'system', '2023-07-26 08:40:17.676787+07', 'system', '2023-07-26 08:40:17.676787+07', 'Thị trấn Thanh Miện', '11239', 'Thị trấn');
INSERT INTO category."Wards" VALUES (11242, 300, 'system', '2023-07-26 08:40:17.67679+07', 'system', '2023-07-26 08:40:17.67679+07', 'Xã Thanh Tùng', '11242', 'Xã');
INSERT INTO category."Wards" VALUES (11245, 300, 'system', '2023-07-26 08:40:17.676793+07', 'system', '2023-07-26 08:40:17.676793+07', 'Xã Phạm Kha', '11245', 'Xã');
INSERT INTO category."Wards" VALUES (11248, 300, 'system', '2023-07-26 08:40:17.676795+07', 'system', '2023-07-26 08:40:17.676795+07', 'Xã Ngô Quyền', '11248', 'Xã');
INSERT INTO category."Wards" VALUES (11251, 300, 'system', '2023-07-26 08:40:17.676798+07', 'system', '2023-07-26 08:40:17.676798+07', 'Xã Đoàn Tùng', '11251', 'Xã');
INSERT INTO category."Wards" VALUES (11254, 300, 'system', '2023-07-26 08:40:17.676801+07', 'system', '2023-07-26 08:40:17.676801+07', 'Xã Hồng Quang', '11254', 'Xã');
INSERT INTO category."Wards" VALUES (11257, 300, 'system', '2023-07-26 08:40:17.676803+07', 'system', '2023-07-26 08:40:17.676804+07', 'Xã Tân Trào', '11257', 'Xã');
INSERT INTO category."Wards" VALUES (11260, 300, 'system', '2023-07-26 08:40:17.676806+07', 'system', '2023-07-26 08:40:17.676806+07', 'Xã Lam Sơn', '11260', 'Xã');
INSERT INTO category."Wards" VALUES (11263, 300, 'system', '2023-07-26 08:40:17.676809+07', 'system', '2023-07-26 08:40:17.676809+07', 'Xã Đoàn Kết', '11263', 'Xã');
INSERT INTO category."Wards" VALUES (11266, 300, 'system', '2023-07-26 08:40:17.676811+07', 'system', '2023-07-26 08:40:17.676811+07', 'Xã Lê Hồng', '11266', 'Xã');
INSERT INTO category."Wards" VALUES (11269, 300, 'system', '2023-07-26 08:40:17.676827+07', 'system', '2023-07-26 08:40:17.676827+07', 'Xã Tứ Cường', '11269', 'Xã');
INSERT INTO category."Wards" VALUES (11275, 300, 'system', '2023-07-26 08:40:17.676831+07', 'system', '2023-07-26 08:40:17.676831+07', 'Xã Ngũ Hùng', '11275', 'Xã');
INSERT INTO category."Wards" VALUES (11278, 300, 'system', '2023-07-26 08:40:17.676834+07', 'system', '2023-07-26 08:40:17.676834+07', 'Xã Cao Thắng', '11278', 'Xã');
INSERT INTO category."Wards" VALUES (11281, 300, 'system', '2023-07-26 08:40:17.676836+07', 'system', '2023-07-26 08:40:17.676836+07', 'Xã Chi Lăng Bắc', '11281', 'Xã');
INSERT INTO category."Wards" VALUES (11284, 300, 'system', '2023-07-26 08:40:17.676839+07', 'system', '2023-07-26 08:40:17.676839+07', 'Xã Chi Lăng Nam', '11284', 'Xã');
INSERT INTO category."Wards" VALUES (11287, 300, 'system', '2023-07-26 08:40:17.676842+07', 'system', '2023-07-26 08:40:17.676842+07', 'Xã Thanh Giang', '11287', 'Xã');
INSERT INTO category."Wards" VALUES (11293, 300, 'system', '2023-07-26 08:40:17.676844+07', 'system', '2023-07-26 08:40:17.676844+07', 'Xã Hồng Phong', '11293', 'Xã');
INSERT INTO category."Wards" VALUES (11296, 303, 'system', '2023-07-26 08:40:17.676847+07', 'system', '2023-07-26 08:40:17.676847+07', 'Phường Quán Toan', '11296', 'Phường');
INSERT INTO category."Wards" VALUES (11299, 303, 'system', '2023-07-26 08:40:17.676849+07', 'system', '2023-07-26 08:40:17.67685+07', 'Phường Hùng Vương', '11299', 'Phường');
INSERT INTO category."Wards" VALUES (11302, 303, 'system', '2023-07-26 08:40:17.676852+07', 'system', '2023-07-26 08:40:17.676852+07', 'Phường Sở Dầu', '11302', 'Phường');
INSERT INTO category."Wards" VALUES (11305, 303, 'system', '2023-07-26 08:40:17.676855+07', 'system', '2023-07-26 08:40:17.676855+07', 'Phường Thượng Lý', '11305', 'Phường');
INSERT INTO category."Wards" VALUES (11308, 303, 'system', '2023-07-26 08:40:17.676858+07', 'system', '2023-07-26 08:40:17.676858+07', 'Phường Hạ Lý', '11308', 'Phường');
INSERT INTO category."Wards" VALUES (11311, 303, 'system', '2023-07-26 08:40:17.676861+07', 'system', '2023-07-26 08:40:17.676861+07', 'Phường Minh Khai', '11311', 'Phường');
INSERT INTO category."Wards" VALUES (11314, 303, 'system', '2023-07-26 08:40:17.676864+07', 'system', '2023-07-26 08:40:17.676864+07', 'Phường Trại Chuối', '11314', 'Phường');
INSERT INTO category."Wards" VALUES (11320, 303, 'system', '2023-07-26 08:40:17.676866+07', 'system', '2023-07-26 08:40:17.676866+07', 'Phường Hoàng Văn Thụ', '11320', 'Phường');
INSERT INTO category."Wards" VALUES (11323, 303, 'system', '2023-07-26 08:40:17.676869+07', 'system', '2023-07-26 08:40:17.676869+07', 'Phường Phan Bội Châu', '11323', 'Phường');
INSERT INTO category."Wards" VALUES (11329, 304, 'system', '2023-07-26 08:40:17.676872+07', 'system', '2023-07-26 08:40:17.676872+07', 'Phường Máy Chai', '11329', 'Phường');
INSERT INTO category."Wards" VALUES (11332, 304, 'system', '2023-07-26 08:40:17.676875+07', 'system', '2023-07-26 08:40:17.676875+07', 'Phường Máy Tơ', '11332', 'Phường');
INSERT INTO category."Wards" VALUES (11335, 304, 'system', '2023-07-26 08:40:17.676878+07', 'system', '2023-07-26 08:40:17.676878+07', 'Phường Vạn Mỹ', '11335', 'Phường');
INSERT INTO category."Wards" VALUES (11338, 304, 'system', '2023-07-26 08:40:17.67688+07', 'system', '2023-07-26 08:40:17.67688+07', 'Phường Cầu Tre', '11338', 'Phường');
INSERT INTO category."Wards" VALUES (11341, 304, 'system', '2023-07-26 08:40:17.676884+07', 'system', '2023-07-26 08:40:17.676884+07', 'Phường Lạc Viên', '11341', 'Phường');
INSERT INTO category."Wards" VALUES (11344, 304, 'system', '2023-07-26 08:40:17.676887+07', 'system', '2023-07-26 08:40:17.676887+07', 'Phường Cầu Đất', '11344', 'Phường');
INSERT INTO category."Wards" VALUES (11347, 304, 'system', '2023-07-26 08:40:17.67689+07', 'system', '2023-07-26 08:40:17.67689+07', 'Phường Gia Viên', '11347', 'Phường');
INSERT INTO category."Wards" VALUES (11350, 304, 'system', '2023-07-26 08:40:17.676893+07', 'system', '2023-07-26 08:40:17.676893+07', 'Phường Đông Khê', '11350', 'Phường');
INSERT INTO category."Wards" VALUES (11356, 304, 'system', '2023-07-26 08:40:17.676896+07', 'system', '2023-07-26 08:40:17.676896+07', 'Phường Lê Lợi', '11356', 'Phường');
INSERT INTO category."Wards" VALUES (11359, 304, 'system', '2023-07-26 08:40:17.676898+07', 'system', '2023-07-26 08:40:17.676898+07', 'Phường Đằng Giang', '11359', 'Phường');
INSERT INTO category."Wards" VALUES (11362, 304, 'system', '2023-07-26 08:40:17.676901+07', 'system', '2023-07-26 08:40:17.676901+07', 'Phường Lạch Tray', '11362', 'Phường');
INSERT INTO category."Wards" VALUES (11365, 304, 'system', '2023-07-26 08:40:17.676904+07', 'system', '2023-07-26 08:40:17.676904+07', 'Phường Đổng Quốc Bình', '11365', 'Phường');
INSERT INTO category."Wards" VALUES (11368, 305, 'system', '2023-07-26 08:40:17.676907+07', 'system', '2023-07-26 08:40:17.676907+07', 'Phường Cát Dài', '11368', 'Phường');
INSERT INTO category."Wards" VALUES (11371, 305, 'system', '2023-07-26 08:40:17.67691+07', 'system', '2023-07-26 08:40:17.67691+07', 'Phường An Biên', '11371', 'Phường');
INSERT INTO category."Wards" VALUES (11374, 305, 'system', '2023-07-26 08:40:17.676912+07', 'system', '2023-07-26 08:40:17.676912+07', 'Phường Lam Sơn', '11374', 'Phường');
INSERT INTO category."Wards" VALUES (11377, 305, 'system', '2023-07-26 08:40:17.676915+07', 'system', '2023-07-26 08:40:17.676915+07', 'Phường An Dương', '11377', 'Phường');
INSERT INTO category."Wards" VALUES (11380, 305, 'system', '2023-07-26 08:40:17.676918+07', 'system', '2023-07-26 08:40:17.676918+07', 'Phường Trần Nguyên Hãn', '11380', 'Phường');
INSERT INTO category."Wards" VALUES (11383, 305, 'system', '2023-07-26 08:40:17.676921+07', 'system', '2023-07-26 08:40:17.676921+07', 'Phường Hồ Nam', '11383', 'Phường');
INSERT INTO category."Wards" VALUES (11386, 305, 'system', '2023-07-26 08:40:17.676924+07', 'system', '2023-07-26 08:40:17.676924+07', 'Phường Trại Cau', '11386', 'Phường');
INSERT INTO category."Wards" VALUES (11389, 305, 'system', '2023-07-26 08:40:17.676926+07', 'system', '2023-07-26 08:40:17.676926+07', 'Phường Dư Hàng', '11389', 'Phường');
INSERT INTO category."Wards" VALUES (11392, 305, 'system', '2023-07-26 08:40:17.676929+07', 'system', '2023-07-26 08:40:17.676929+07', 'Phường Hàng Kênh', '11392', 'Phường');
INSERT INTO category."Wards" VALUES (11395, 305, 'system', '2023-07-26 08:40:17.676932+07', 'system', '2023-07-26 08:40:17.676932+07', 'Phường Đông Hải', '11395', 'Phường');
INSERT INTO category."Wards" VALUES (11398, 305, 'system', '2023-07-26 08:40:17.676934+07', 'system', '2023-07-26 08:40:17.676935+07', 'Phường Niệm Nghĩa', '11398', 'Phường');
INSERT INTO category."Wards" VALUES (11401, 305, 'system', '2023-07-26 08:40:17.676937+07', 'system', '2023-07-26 08:40:17.676937+07', 'Phường Nghĩa Xá', '11401', 'Phường');
INSERT INTO category."Wards" VALUES (11404, 305, 'system', '2023-07-26 08:40:17.67694+07', 'system', '2023-07-26 08:40:17.67694+07', 'Phường Dư Hàng Kênh', '11404', 'Phường');
INSERT INTO category."Wards" VALUES (11405, 305, 'system', '2023-07-26 08:40:17.676943+07', 'system', '2023-07-26 08:40:17.676943+07', 'Phường Kênh Dương', '11405', 'Phường');
INSERT INTO category."Wards" VALUES (11407, 305, 'system', '2023-07-26 08:40:17.676945+07', 'system', '2023-07-26 08:40:17.676945+07', 'Phường Vĩnh Niệm', '11407', 'Phường');
INSERT INTO category."Wards" VALUES (11410, 306, 'system', '2023-07-26 08:40:17.676948+07', 'system', '2023-07-26 08:40:17.676948+07', 'Phường Đông Hải 1', '11410', 'Phường');
INSERT INTO category."Wards" VALUES (11411, 306, 'system', '2023-07-26 08:40:17.676951+07', 'system', '2023-07-26 08:40:17.676951+07', 'Phường Đông Hải 2', '11411', 'Phường');
INSERT INTO category."Wards" VALUES (11413, 306, 'system', '2023-07-26 08:40:17.676954+07', 'system', '2023-07-26 08:40:17.676954+07', 'Phường Đằng Lâm', '11413', 'Phường');
INSERT INTO category."Wards" VALUES (11414, 306, 'system', '2023-07-26 08:40:17.676957+07', 'system', '2023-07-26 08:40:17.676957+07', 'Phường Thành Tô', '11414', 'Phường');
INSERT INTO category."Wards" VALUES (11416, 306, 'system', '2023-07-26 08:40:17.676959+07', 'system', '2023-07-26 08:40:17.676959+07', 'Phường Đằng Hải', '11416', 'Phường');
INSERT INTO category."Wards" VALUES (11419, 306, 'system', '2023-07-26 08:40:17.676962+07', 'system', '2023-07-26 08:40:17.676962+07', 'Phường Nam Hải', '11419', 'Phường');
INSERT INTO category."Wards" VALUES (11422, 306, 'system', '2023-07-26 08:40:17.676965+07', 'system', '2023-07-26 08:40:17.676965+07', 'Phường Cát Bi', '11422', 'Phường');
INSERT INTO category."Wards" VALUES (11425, 306, 'system', '2023-07-26 08:40:17.676967+07', 'system', '2023-07-26 08:40:17.676967+07', 'Phường Tràng Cát', '11425', 'Phường');
INSERT INTO category."Wards" VALUES (11428, 307, 'system', '2023-07-26 08:40:17.67697+07', 'system', '2023-07-26 08:40:17.67697+07', 'Phường Quán Trữ', '11428', 'Phường');
INSERT INTO category."Wards" VALUES (11429, 307, 'system', '2023-07-26 08:40:17.676973+07', 'system', '2023-07-26 08:40:17.676973+07', 'Phường Lãm Hà', '11429', 'Phường');
INSERT INTO category."Wards" VALUES (11431, 307, 'system', '2023-07-26 08:40:17.676976+07', 'system', '2023-07-26 08:40:17.676976+07', 'Phường Đồng Hoà', '11431', 'Phường');
INSERT INTO category."Wards" VALUES (11434, 307, 'system', '2023-07-26 08:40:17.676979+07', 'system', '2023-07-26 08:40:17.676979+07', 'Phường Bắc Sơn', '11434', 'Phường');
INSERT INTO category."Wards" VALUES (11437, 307, 'system', '2023-07-26 08:40:17.676982+07', 'system', '2023-07-26 08:40:17.676982+07', 'Phường Nam Sơn', '11437', 'Phường');
INSERT INTO category."Wards" VALUES (11932, 317, 'system', '2023-07-26 08:40:17.677428+07', 'system', '2023-07-26 08:40:17.677428+07', 'Xã Phù Long', '11932', 'Xã');
INSERT INTO category."Wards" VALUES (11440, 307, 'system', '2023-07-26 08:40:17.676984+07', 'system', '2023-07-26 08:40:17.676984+07', 'Phường Ngọc Sơn', '11440', 'Phường');
INSERT INTO category."Wards" VALUES (11443, 307, 'system', '2023-07-26 08:40:17.676987+07', 'system', '2023-07-26 08:40:17.676987+07', 'Phường Trần Thành Ngọ', '11443', 'Phường');
INSERT INTO category."Wards" VALUES (11446, 307, 'system', '2023-07-26 08:40:17.67699+07', 'system', '2023-07-26 08:40:17.67699+07', 'Phường Văn Đẩu', '11446', 'Phường');
INSERT INTO category."Wards" VALUES (11449, 307, 'system', '2023-07-26 08:40:17.676993+07', 'system', '2023-07-26 08:40:17.676993+07', 'Phường Phù Liễn', '11449', 'Phường');
INSERT INTO category."Wards" VALUES (11452, 307, 'system', '2023-07-26 08:40:17.676996+07', 'system', '2023-07-26 08:40:17.676996+07', 'Phường Tràng Minh', '11452', 'Phường');
INSERT INTO category."Wards" VALUES (11455, 308, 'system', '2023-07-26 08:40:17.676998+07', 'system', '2023-07-26 08:40:17.676998+07', 'Phường Ngọc Xuyên', '11455', 'Phường');
INSERT INTO category."Wards" VALUES (11458, 308, 'system', '2023-07-26 08:40:17.677001+07', 'system', '2023-07-26 08:40:17.677001+07', 'Phường Hải Sơn', '11458', 'Phường');
INSERT INTO category."Wards" VALUES (11461, 308, 'system', '2023-07-26 08:40:17.677004+07', 'system', '2023-07-26 08:40:17.677004+07', 'Phường Vạn Hương', '11461', 'Phường');
INSERT INTO category."Wards" VALUES (11465, 308, 'system', '2023-07-26 08:40:17.677006+07', 'system', '2023-07-26 08:40:17.677006+07', 'Phường Minh Đức', '11465', 'Phường');
INSERT INTO category."Wards" VALUES (11467, 308, 'system', '2023-07-26 08:40:17.677009+07', 'system', '2023-07-26 08:40:17.677009+07', 'Phường Bàng La', '11467', 'Phường');
INSERT INTO category."Wards" VALUES (11470, 311, 'system', '2023-07-26 08:40:17.677031+07', 'system', '2023-07-26 08:40:17.677031+07', 'Thị trấn Núi Đèo', '11470', 'Thị trấn');
INSERT INTO category."Wards" VALUES (11473, 311, 'system', '2023-07-26 08:40:17.677034+07', 'system', '2023-07-26 08:40:17.677034+07', 'Thị trấn Minh Đức', '11473', 'Thị trấn');
INSERT INTO category."Wards" VALUES (11476, 311, 'system', '2023-07-26 08:40:17.677037+07', 'system', '2023-07-26 08:40:17.677037+07', 'Xã Lại Xuân', '11476', 'Xã');
INSERT INTO category."Wards" VALUES (11479, 311, 'system', '2023-07-26 08:40:17.67704+07', 'system', '2023-07-26 08:40:17.67704+07', 'Xã An Sơn', '11479', 'Xã');
INSERT INTO category."Wards" VALUES (11482, 311, 'system', '2023-07-26 08:40:17.677042+07', 'system', '2023-07-26 08:40:17.677042+07', 'Xã Kỳ Sơn', '11482', 'Xã');
INSERT INTO category."Wards" VALUES (11485, 311, 'system', '2023-07-26 08:40:17.677045+07', 'system', '2023-07-26 08:40:17.677045+07', 'Xã Liên Khê', '11485', 'Xã');
INSERT INTO category."Wards" VALUES (11488, 311, 'system', '2023-07-26 08:40:17.677048+07', 'system', '2023-07-26 08:40:17.677048+07', 'Xã Lưu Kiếm', '11488', 'Xã');
INSERT INTO category."Wards" VALUES (11491, 311, 'system', '2023-07-26 08:40:17.67705+07', 'system', '2023-07-26 08:40:17.67705+07', 'Xã Lưu Kỳ', '11491', 'Xã');
INSERT INTO category."Wards" VALUES (11494, 311, 'system', '2023-07-26 08:40:17.677064+07', 'system', '2023-07-26 08:40:17.677064+07', 'Xã Gia Minh', '11494', 'Xã');
INSERT INTO category."Wards" VALUES (11497, 311, 'system', '2023-07-26 08:40:17.677067+07', 'system', '2023-07-26 08:40:17.677067+07', 'Xã Gia Đức', '11497', 'Xã');
INSERT INTO category."Wards" VALUES (11500, 311, 'system', '2023-07-26 08:40:17.67707+07', 'system', '2023-07-26 08:40:17.67707+07', 'Xã Minh Tân', '11500', 'Xã');
INSERT INTO category."Wards" VALUES (11503, 311, 'system', '2023-07-26 08:40:17.677073+07', 'system', '2023-07-26 08:40:17.677073+07', 'Xã Phù Ninh', '11503', 'Xã');
INSERT INTO category."Wards" VALUES (11506, 311, 'system', '2023-07-26 08:40:17.677075+07', 'system', '2023-07-26 08:40:17.677075+07', 'Xã Quảng Thanh', '11506', 'Xã');
INSERT INTO category."Wards" VALUES (11509, 311, 'system', '2023-07-26 08:40:17.677078+07', 'system', '2023-07-26 08:40:17.677078+07', 'Xã Chính Mỹ', '11509', 'Xã');
INSERT INTO category."Wards" VALUES (11512, 311, 'system', '2023-07-26 08:40:17.677081+07', 'system', '2023-07-26 08:40:17.677081+07', 'Xã Kênh Giang', '11512', 'Xã');
INSERT INTO category."Wards" VALUES (11515, 311, 'system', '2023-07-26 08:40:17.677083+07', 'system', '2023-07-26 08:40:17.677083+07', 'Xã Hợp Thành', '11515', 'Xã');
INSERT INTO category."Wards" VALUES (11518, 311, 'system', '2023-07-26 08:40:17.677087+07', 'system', '2023-07-26 08:40:17.677087+07', 'Xã Cao Nhân', '11518', 'Xã');
INSERT INTO category."Wards" VALUES (11521, 311, 'system', '2023-07-26 08:40:17.677089+07', 'system', '2023-07-26 08:40:17.677089+07', 'Xã Mỹ Đồng', '11521', 'Xã');
INSERT INTO category."Wards" VALUES (11524, 311, 'system', '2023-07-26 08:40:17.677092+07', 'system', '2023-07-26 08:40:17.677092+07', 'Xã Đông Sơn', '11524', 'Xã');
INSERT INTO category."Wards" VALUES (11527, 311, 'system', '2023-07-26 08:40:17.677095+07', 'system', '2023-07-26 08:40:17.677095+07', 'Xã Hoà Bình', '11527', 'Xã');
INSERT INTO category."Wards" VALUES (11530, 311, 'system', '2023-07-26 08:40:17.677097+07', 'system', '2023-07-26 08:40:17.677097+07', 'Xã Trung Hà', '11530', 'Xã');
INSERT INTO category."Wards" VALUES (11533, 311, 'system', '2023-07-26 08:40:17.6771+07', 'system', '2023-07-26 08:40:17.6771+07', 'Xã An Lư', '11533', 'Xã');
INSERT INTO category."Wards" VALUES (11536, 311, 'system', '2023-07-26 08:40:17.677102+07', 'system', '2023-07-26 08:40:17.677102+07', 'Xã Thuỷ Triều', '11536', 'Xã');
INSERT INTO category."Wards" VALUES (11539, 311, 'system', '2023-07-26 08:40:17.677105+07', 'system', '2023-07-26 08:40:17.677105+07', 'Xã Ngũ Lão', '11539', 'Xã');
INSERT INTO category."Wards" VALUES (11542, 311, 'system', '2023-07-26 08:40:17.677107+07', 'system', '2023-07-26 08:40:17.677107+07', 'Xã Phục Lễ', '11542', 'Xã');
INSERT INTO category."Wards" VALUES (11545, 311, 'system', '2023-07-26 08:40:17.67711+07', 'system', '2023-07-26 08:40:17.67711+07', 'Xã Tam Hưng', '11545', 'Xã');
INSERT INTO category."Wards" VALUES (11548, 311, 'system', '2023-07-26 08:40:17.677113+07', 'system', '2023-07-26 08:40:17.677113+07', 'Xã Phả Lễ', '11548', 'Xã');
INSERT INTO category."Wards" VALUES (11551, 311, 'system', '2023-07-26 08:40:17.677115+07', 'system', '2023-07-26 08:40:17.677115+07', 'Xã Lập Lễ', '11551', 'Xã');
INSERT INTO category."Wards" VALUES (11554, 311, 'system', '2023-07-26 08:40:17.677118+07', 'system', '2023-07-26 08:40:17.677118+07', 'Xã Kiền Bái', '11554', 'Xã');
INSERT INTO category."Wards" VALUES (11557, 311, 'system', '2023-07-26 08:40:17.67712+07', 'system', '2023-07-26 08:40:17.677121+07', 'Xã Thiên Hương', '11557', 'Xã');
INSERT INTO category."Wards" VALUES (11560, 311, 'system', '2023-07-26 08:40:17.677123+07', 'system', '2023-07-26 08:40:17.677123+07', 'Xã Thuỷ Sơn', '11560', 'Xã');
INSERT INTO category."Wards" VALUES (11563, 311, 'system', '2023-07-26 08:40:17.677126+07', 'system', '2023-07-26 08:40:17.677126+07', 'Xã Thuỷ Đường', '11563', 'Xã');
INSERT INTO category."Wards" VALUES (11566, 311, 'system', '2023-07-26 08:40:17.677128+07', 'system', '2023-07-26 08:40:17.677128+07', 'Xã Hoàng Động', '11566', 'Xã');
INSERT INTO category."Wards" VALUES (11569, 311, 'system', '2023-07-26 08:40:17.677131+07', 'system', '2023-07-26 08:40:17.677131+07', 'Xã Lâm Động', '11569', 'Xã');
INSERT INTO category."Wards" VALUES (11572, 311, 'system', '2023-07-26 08:40:17.677134+07', 'system', '2023-07-26 08:40:17.677134+07', 'Xã Hoa Động', '11572', 'Xã');
INSERT INTO category."Wards" VALUES (11575, 311, 'system', '2023-07-26 08:40:17.677137+07', 'system', '2023-07-26 08:40:17.677137+07', 'Xã Tân Dương', '11575', 'Xã');
INSERT INTO category."Wards" VALUES (11578, 311, 'system', '2023-07-26 08:40:17.677139+07', 'system', '2023-07-26 08:40:17.677139+07', 'Xã Dương Quan', '11578', 'Xã');
INSERT INTO category."Wards" VALUES (11581, 312, 'system', '2023-07-26 08:40:17.677142+07', 'system', '2023-07-26 08:40:17.677142+07', 'Thị trấn An Dương', '11581', 'Thị trấn');
INSERT INTO category."Wards" VALUES (11584, 312, 'system', '2023-07-26 08:40:17.677145+07', 'system', '2023-07-26 08:40:17.677145+07', 'Xã Lê Thiện', '11584', 'Xã');
INSERT INTO category."Wards" VALUES (11587, 312, 'system', '2023-07-26 08:40:17.677147+07', 'system', '2023-07-26 08:40:17.677147+07', 'Xã Đại Bản', '11587', 'Xã');
INSERT INTO category."Wards" VALUES (11590, 312, 'system', '2023-07-26 08:40:17.67715+07', 'system', '2023-07-26 08:40:17.67715+07', 'Xã An Hoà', '11590', 'Xã');
INSERT INTO category."Wards" VALUES (11593, 312, 'system', '2023-07-26 08:40:17.677153+07', 'system', '2023-07-26 08:40:17.677153+07', 'Xã Hồng Phong', '11593', 'Xã');
INSERT INTO category."Wards" VALUES (11596, 312, 'system', '2023-07-26 08:40:17.677155+07', 'system', '2023-07-26 08:40:17.677155+07', 'Xã Tân Tiến', '11596', 'Xã');
INSERT INTO category."Wards" VALUES (11599, 312, 'system', '2023-07-26 08:40:17.677158+07', 'system', '2023-07-26 08:40:17.677158+07', 'Xã An Hưng', '11599', 'Xã');
INSERT INTO category."Wards" VALUES (11602, 312, 'system', '2023-07-26 08:40:17.67716+07', 'system', '2023-07-26 08:40:17.67716+07', 'Xã An Hồng', '11602', 'Xã');
INSERT INTO category."Wards" VALUES (11605, 312, 'system', '2023-07-26 08:40:17.677163+07', 'system', '2023-07-26 08:40:17.677163+07', 'Xã Bắc Sơn', '11605', 'Xã');
INSERT INTO category."Wards" VALUES (11608, 312, 'system', '2023-07-26 08:40:17.677165+07', 'system', '2023-07-26 08:40:17.677165+07', 'Xã Nam Sơn', '11608', 'Xã');
INSERT INTO category."Wards" VALUES (11611, 312, 'system', '2023-07-26 08:40:17.677168+07', 'system', '2023-07-26 08:40:17.677168+07', 'Xã Lê Lợi', '11611', 'Xã');
INSERT INTO category."Wards" VALUES (11614, 312, 'system', '2023-07-26 08:40:17.67717+07', 'system', '2023-07-26 08:40:17.67717+07', 'Xã Đặng Cương', '11614', 'Xã');
INSERT INTO category."Wards" VALUES (11617, 312, 'system', '2023-07-26 08:40:17.677173+07', 'system', '2023-07-26 08:40:17.677173+07', 'Xã Đồng Thái', '11617', 'Xã');
INSERT INTO category."Wards" VALUES (11620, 312, 'system', '2023-07-26 08:40:17.677176+07', 'system', '2023-07-26 08:40:17.677176+07', 'Xã Quốc Tuấn', '11620', 'Xã');
INSERT INTO category."Wards" VALUES (11623, 312, 'system', '2023-07-26 08:40:17.677178+07', 'system', '2023-07-26 08:40:17.677178+07', 'Xã An Đồng', '11623', 'Xã');
INSERT INTO category."Wards" VALUES (11626, 312, 'system', '2023-07-26 08:40:17.677181+07', 'system', '2023-07-26 08:40:17.677181+07', 'Xã Hồng Thái', '11626', 'Xã');
INSERT INTO category."Wards" VALUES (11629, 313, 'system', '2023-07-26 08:40:17.677184+07', 'system', '2023-07-26 08:40:17.677184+07', 'Thị trấn An Lão', '11629', 'Thị trấn');
INSERT INTO category."Wards" VALUES (11632, 313, 'system', '2023-07-26 08:40:17.677187+07', 'system', '2023-07-26 08:40:17.677187+07', 'Xã Bát Trang', '11632', 'Xã');
INSERT INTO category."Wards" VALUES (11635, 313, 'system', '2023-07-26 08:40:17.67719+07', 'system', '2023-07-26 08:40:17.67719+07', 'Xã Trường Thọ', '11635', 'Xã');
INSERT INTO category."Wards" VALUES (11638, 313, 'system', '2023-07-26 08:40:17.677192+07', 'system', '2023-07-26 08:40:17.677192+07', 'Xã Trường Thành', '11638', 'Xã');
INSERT INTO category."Wards" VALUES (11641, 313, 'system', '2023-07-26 08:40:17.677195+07', 'system', '2023-07-26 08:40:17.677195+07', 'Xã An Tiến', '11641', 'Xã');
INSERT INTO category."Wards" VALUES (11644, 313, 'system', '2023-07-26 08:40:17.677198+07', 'system', '2023-07-26 08:40:17.677198+07', 'Xã Quang Hưng', '11644', 'Xã');
INSERT INTO category."Wards" VALUES (11647, 313, 'system', '2023-07-26 08:40:17.6772+07', 'system', '2023-07-26 08:40:17.6772+07', 'Xã Quang Trung', '11647', 'Xã');
INSERT INTO category."Wards" VALUES (11650, 313, 'system', '2023-07-26 08:40:17.677203+07', 'system', '2023-07-26 08:40:17.677203+07', 'Xã Quốc Tuấn', '11650', 'Xã');
INSERT INTO category."Wards" VALUES (11653, 313, 'system', '2023-07-26 08:40:17.677205+07', 'system', '2023-07-26 08:40:17.677205+07', 'Xã An Thắng', '11653', 'Xã');
INSERT INTO category."Wards" VALUES (11656, 313, 'system', '2023-07-26 08:40:17.677208+07', 'system', '2023-07-26 08:40:17.677208+07', 'Thị trấn Trường Sơn', '11656', 'Thị trấn');
INSERT INTO category."Wards" VALUES (11659, 313, 'system', '2023-07-26 08:40:17.677211+07', 'system', '2023-07-26 08:40:17.677211+07', 'Xã Tân Dân', '11659', 'Xã');
INSERT INTO category."Wards" VALUES (11662, 313, 'system', '2023-07-26 08:40:17.677213+07', 'system', '2023-07-26 08:40:17.677213+07', 'Xã Thái Sơn', '11662', 'Xã');
INSERT INTO category."Wards" VALUES (11665, 313, 'system', '2023-07-26 08:40:17.677216+07', 'system', '2023-07-26 08:40:17.677216+07', 'Xã Tân Viên', '11665', 'Xã');
INSERT INTO category."Wards" VALUES (11668, 313, 'system', '2023-07-26 08:40:17.677218+07', 'system', '2023-07-26 08:40:17.677218+07', 'Xã Mỹ Đức', '11668', 'Xã');
INSERT INTO category."Wards" VALUES (11671, 313, 'system', '2023-07-26 08:40:17.677221+07', 'system', '2023-07-26 08:40:17.677221+07', 'Xã Chiến Thắng', '11671', 'Xã');
INSERT INTO category."Wards" VALUES (11674, 313, 'system', '2023-07-26 08:40:17.677224+07', 'system', '2023-07-26 08:40:17.677224+07', 'Xã An Thọ', '11674', 'Xã');
INSERT INTO category."Wards" VALUES (11677, 313, 'system', '2023-07-26 08:40:17.677226+07', 'system', '2023-07-26 08:40:17.677226+07', 'Xã An Thái', '11677', 'Xã');
INSERT INTO category."Wards" VALUES (11680, 314, 'system', '2023-07-26 08:40:17.677229+07', 'system', '2023-07-26 08:40:17.677229+07', 'Thị trấn Núi Đối', '11680', 'Thị trấn');
INSERT INTO category."Wards" VALUES (11683, 309, 'system', '2023-07-26 08:40:17.677014+07', 'system', '2023-07-26 08:40:17.677015+07', 'Phường Đa Phúc', '11683', 'Phường');
INSERT INTO category."Wards" VALUES (11686, 309, 'system', '2023-07-26 08:40:17.677017+07', 'system', '2023-07-26 08:40:17.677017+07', 'Phường Hưng Đạo', '11686', 'Phường');
INSERT INTO category."Wards" VALUES (11689, 309, 'system', '2023-07-26 08:40:17.67702+07', 'system', '2023-07-26 08:40:17.67702+07', 'Phường Anh Dũng', '11689', 'Phường');
INSERT INTO category."Wards" VALUES (11692, 309, 'system', '2023-07-26 08:40:17.677023+07', 'system', '2023-07-26 08:40:17.677023+07', 'Phường Hải Thành', '11692', 'Phường');
INSERT INTO category."Wards" VALUES (11695, 314, 'system', '2023-07-26 08:40:17.677232+07', 'system', '2023-07-26 08:40:17.677232+07', 'Xã Đông Phương', '11695', 'Xã');
INSERT INTO category."Wards" VALUES (11698, 314, 'system', '2023-07-26 08:40:17.677235+07', 'system', '2023-07-26 08:40:17.677235+07', 'Xã Thuận Thiên', '11698', 'Xã');
INSERT INTO category."Wards" VALUES (11701, 314, 'system', '2023-07-26 08:40:17.677237+07', 'system', '2023-07-26 08:40:17.677237+07', 'Xã Hữu Bằng', '11701', 'Xã');
INSERT INTO category."Wards" VALUES (11704, 314, 'system', '2023-07-26 08:40:17.67724+07', 'system', '2023-07-26 08:40:17.67724+07', 'Xã Đại Đồng', '11704', 'Xã');
INSERT INTO category."Wards" VALUES (11707, 309, 'system', '2023-07-26 08:40:17.677026+07', 'system', '2023-07-26 08:40:17.677026+07', 'Phường Hoà Nghĩa', '11707', 'Phường');
INSERT INTO category."Wards" VALUES (11710, 314, 'system', '2023-07-26 08:40:17.677243+07', 'system', '2023-07-26 08:40:17.677243+07', 'Xã Ngũ Phúc', '11710', 'Xã');
INSERT INTO category."Wards" VALUES (11713, 314, 'system', '2023-07-26 08:40:17.677245+07', 'system', '2023-07-26 08:40:17.677246+07', 'Xã Kiến Quốc', '11713', 'Xã');
INSERT INTO category."Wards" VALUES (11716, 314, 'system', '2023-07-26 08:40:17.677248+07', 'system', '2023-07-26 08:40:17.677248+07', 'Xã Du Lễ', '11716', 'Xã');
INSERT INTO category."Wards" VALUES (11719, 314, 'system', '2023-07-26 08:40:17.677251+07', 'system', '2023-07-26 08:40:17.677251+07', 'Xã Thuỵ Hương', '11719', 'Xã');
INSERT INTO category."Wards" VALUES (11722, 314, 'system', '2023-07-26 08:40:17.677253+07', 'system', '2023-07-26 08:40:17.677253+07', 'Xã Thanh Sơn', '11722', 'Xã');
INSERT INTO category."Wards" VALUES (11725, 314, 'system', '2023-07-26 08:40:17.677256+07', 'system', '2023-07-26 08:40:17.677256+07', 'Xã Minh Tân', '11725', 'Xã');
INSERT INTO category."Wards" VALUES (11728, 314, 'system', '2023-07-26 08:40:17.677259+07', 'system', '2023-07-26 08:40:17.677259+07', 'Xã Đại Hà', '11728', 'Xã');
INSERT INTO category."Wards" VALUES (11731, 314, 'system', '2023-07-26 08:40:17.677261+07', 'system', '2023-07-26 08:40:17.677261+07', 'Xã Ngũ Đoan', '11731', 'Xã');
INSERT INTO category."Wards" VALUES (11734, 314, 'system', '2023-07-26 08:40:17.677264+07', 'system', '2023-07-26 08:40:17.677264+07', 'Xã Tân Phong', '11734', 'Xã');
INSERT INTO category."Wards" VALUES (11737, 308, 'system', '2023-07-26 08:40:17.677012+07', 'system', '2023-07-26 08:40:17.677012+07', 'Phường Hợp Đức', '11737', 'Phường');
INSERT INTO category."Wards" VALUES (11740, 309, 'system', '2023-07-26 08:40:17.677028+07', 'system', '2023-07-26 08:40:17.677029+07', 'Phường Tân Thành', '11740', 'Phường');
INSERT INTO category."Wards" VALUES (11743, 314, 'system', '2023-07-26 08:40:17.677267+07', 'system', '2023-07-26 08:40:17.677267+07', 'Xã Tân Trào', '11743', 'Xã');
INSERT INTO category."Wards" VALUES (11746, 314, 'system', '2023-07-26 08:40:17.677269+07', 'system', '2023-07-26 08:40:17.677269+07', 'Xã Đoàn Xá', '11746', 'Xã');
INSERT INTO category."Wards" VALUES (11749, 314, 'system', '2023-07-26 08:40:17.677272+07', 'system', '2023-07-26 08:40:17.677272+07', 'Xã Tú Sơn', '11749', 'Xã');
INSERT INTO category."Wards" VALUES (11752, 314, 'system', '2023-07-26 08:40:17.677274+07', 'system', '2023-07-26 08:40:17.677274+07', 'Xã Đại Hợp', '11752', 'Xã');
INSERT INTO category."Wards" VALUES (11755, 315, 'system', '2023-07-26 08:40:17.677277+07', 'system', '2023-07-26 08:40:17.677277+07', 'Thị trấn Tiên Lãng', '11755', 'Thị trấn');
INSERT INTO category."Wards" VALUES (11758, 315, 'system', '2023-07-26 08:40:17.67728+07', 'system', '2023-07-26 08:40:17.677281+07', 'Xã Đại Thắng', '11758', 'Xã');
INSERT INTO category."Wards" VALUES (11761, 315, 'system', '2023-07-26 08:40:17.677283+07', 'system', '2023-07-26 08:40:17.677283+07', 'Xã Tiên Cường', '11761', 'Xã');
INSERT INTO category."Wards" VALUES (11764, 315, 'system', '2023-07-26 08:40:17.677286+07', 'system', '2023-07-26 08:40:17.677286+07', 'Xã Tự Cường', '11764', 'Xã');
INSERT INTO category."Wards" VALUES (11770, 315, 'system', '2023-07-26 08:40:17.677288+07', 'system', '2023-07-26 08:40:17.677288+07', 'Xã Quyết Tiến', '11770', 'Xã');
INSERT INTO category."Wards" VALUES (11773, 315, 'system', '2023-07-26 08:40:17.677291+07', 'system', '2023-07-26 08:40:17.677291+07', 'Xã Khởi Nghĩa', '11773', 'Xã');
INSERT INTO category."Wards" VALUES (11776, 315, 'system', '2023-07-26 08:40:17.677294+07', 'system', '2023-07-26 08:40:17.677294+07', 'Xã Tiên Thanh', '11776', 'Xã');
INSERT INTO category."Wards" VALUES (11779, 315, 'system', '2023-07-26 08:40:17.677296+07', 'system', '2023-07-26 08:40:17.677296+07', 'Xã Cấp Tiến', '11779', 'Xã');
INSERT INTO category."Wards" VALUES (11782, 315, 'system', '2023-07-26 08:40:17.677299+07', 'system', '2023-07-26 08:40:17.677299+07', 'Xã Kiến Thiết', '11782', 'Xã');
INSERT INTO category."Wards" VALUES (11785, 315, 'system', '2023-07-26 08:40:17.677301+07', 'system', '2023-07-26 08:40:17.677301+07', 'Xã Đoàn Lập', '11785', 'Xã');
INSERT INTO category."Wards" VALUES (11788, 315, 'system', '2023-07-26 08:40:17.677304+07', 'system', '2023-07-26 08:40:17.677304+07', 'Xã Bạch Đằng', '11788', 'Xã');
INSERT INTO category."Wards" VALUES (11791, 315, 'system', '2023-07-26 08:40:17.677307+07', 'system', '2023-07-26 08:40:17.677307+07', 'Xã Quang Phục', '11791', 'Xã');
INSERT INTO category."Wards" VALUES (11794, 315, 'system', '2023-07-26 08:40:17.677309+07', 'system', '2023-07-26 08:40:17.677309+07', 'Xã Toàn Thắng', '11794', 'Xã');
INSERT INTO category."Wards" VALUES (11797, 315, 'system', '2023-07-26 08:40:17.677312+07', 'system', '2023-07-26 08:40:17.677312+07', 'Xã Tiên Thắng', '11797', 'Xã');
INSERT INTO category."Wards" VALUES (11800, 315, 'system', '2023-07-26 08:40:17.677314+07', 'system', '2023-07-26 08:40:17.677315+07', 'Xã Tiên Minh', '11800', 'Xã');
INSERT INTO category."Wards" VALUES (11803, 315, 'system', '2023-07-26 08:40:17.677317+07', 'system', '2023-07-26 08:40:17.677317+07', 'Xã Bắc Hưng', '11803', 'Xã');
INSERT INTO category."Wards" VALUES (11806, 315, 'system', '2023-07-26 08:40:17.67732+07', 'system', '2023-07-26 08:40:17.67732+07', 'Xã Nam Hưng', '11806', 'Xã');
INSERT INTO category."Wards" VALUES (11809, 315, 'system', '2023-07-26 08:40:17.677322+07', 'system', '2023-07-26 08:40:17.677322+07', 'Xã Hùng Thắng', '11809', 'Xã');
INSERT INTO category."Wards" VALUES (11812, 315, 'system', '2023-07-26 08:40:17.677325+07', 'system', '2023-07-26 08:40:17.677325+07', 'Xã Tây Hưng', '11812', 'Xã');
INSERT INTO category."Wards" VALUES (11815, 315, 'system', '2023-07-26 08:40:17.677327+07', 'system', '2023-07-26 08:40:17.677327+07', 'Xã Đông Hưng', '11815', 'Xã');
INSERT INTO category."Wards" VALUES (11821, 315, 'system', '2023-07-26 08:40:17.67733+07', 'system', '2023-07-26 08:40:17.67733+07', 'Xã Vinh Quang', '11821', 'Xã');
INSERT INTO category."Wards" VALUES (11824, 316, 'system', '2023-07-26 08:40:17.677333+07', 'system', '2023-07-26 08:40:17.677333+07', 'Thị trấn Vĩnh Bảo', '11824', 'Thị trấn');
INSERT INTO category."Wards" VALUES (11827, 316, 'system', '2023-07-26 08:40:17.677336+07', 'system', '2023-07-26 08:40:17.677336+07', 'Xã Dũng Tiến', '11827', 'Xã');
INSERT INTO category."Wards" VALUES (11830, 316, 'system', '2023-07-26 08:40:17.677338+07', 'system', '2023-07-26 08:40:17.677338+07', 'Xã Giang Biên', '11830', 'Xã');
INSERT INTO category."Wards" VALUES (11833, 316, 'system', '2023-07-26 08:40:17.677341+07', 'system', '2023-07-26 08:40:17.677341+07', 'Xã Thắng Thuỷ', '11833', 'Xã');
INSERT INTO category."Wards" VALUES (11836, 316, 'system', '2023-07-26 08:40:17.677344+07', 'system', '2023-07-26 08:40:17.677344+07', 'Xã Trung Lập', '11836', 'Xã');
INSERT INTO category."Wards" VALUES (11839, 316, 'system', '2023-07-26 08:40:17.677346+07', 'system', '2023-07-26 08:40:17.677346+07', 'Xã Việt Tiến', '11839', 'Xã');
INSERT INTO category."Wards" VALUES (11842, 316, 'system', '2023-07-26 08:40:17.677349+07', 'system', '2023-07-26 08:40:17.677349+07', 'Xã Vĩnh An', '11842', 'Xã');
INSERT INTO category."Wards" VALUES (11845, 316, 'system', '2023-07-26 08:40:17.677351+07', 'system', '2023-07-26 08:40:17.677351+07', 'Xã Vĩnh Long', '11845', 'Xã');
INSERT INTO category."Wards" VALUES (11848, 316, 'system', '2023-07-26 08:40:17.677354+07', 'system', '2023-07-26 08:40:17.677354+07', 'Xã Hiệp Hoà', '11848', 'Xã');
INSERT INTO category."Wards" VALUES (11851, 316, 'system', '2023-07-26 08:40:17.677357+07', 'system', '2023-07-26 08:40:17.677357+07', 'Xã Hùng Tiến', '11851', 'Xã');
INSERT INTO category."Wards" VALUES (11854, 316, 'system', '2023-07-26 08:40:17.677359+07', 'system', '2023-07-26 08:40:17.677359+07', 'Xã An Hoà', '11854', 'Xã');
INSERT INTO category."Wards" VALUES (11857, 316, 'system', '2023-07-26 08:40:17.677362+07', 'system', '2023-07-26 08:40:17.677362+07', 'Xã Tân Hưng', '11857', 'Xã');
INSERT INTO category."Wards" VALUES (11860, 316, 'system', '2023-07-26 08:40:17.677364+07', 'system', '2023-07-26 08:40:17.677364+07', 'Xã Tân Liên', '11860', 'Xã');
INSERT INTO category."Wards" VALUES (11863, 316, 'system', '2023-07-26 08:40:17.677367+07', 'system', '2023-07-26 08:40:17.677367+07', 'Xã Nhân Hoà', '11863', 'Xã');
INSERT INTO category."Wards" VALUES (11866, 316, 'system', '2023-07-26 08:40:17.677369+07', 'system', '2023-07-26 08:40:17.67737+07', 'Xã Tam Đa', '11866', 'Xã');
INSERT INTO category."Wards" VALUES (11869, 316, 'system', '2023-07-26 08:40:17.677372+07', 'system', '2023-07-26 08:40:17.677372+07', 'Xã Hưng Nhân', '11869', 'Xã');
INSERT INTO category."Wards" VALUES (11872, 316, 'system', '2023-07-26 08:40:17.677375+07', 'system', '2023-07-26 08:40:17.677375+07', 'Xã Vinh Quang', '11872', 'Xã');
INSERT INTO category."Wards" VALUES (11875, 316, 'system', '2023-07-26 08:40:17.677378+07', 'system', '2023-07-26 08:40:17.677378+07', 'Xã Đồng Minh', '11875', 'Xã');
INSERT INTO category."Wards" VALUES (11878, 316, 'system', '2023-07-26 08:40:17.677381+07', 'system', '2023-07-26 08:40:17.677381+07', 'Xã Thanh Lương', '11878', 'Xã');
INSERT INTO category."Wards" VALUES (11881, 316, 'system', '2023-07-26 08:40:17.677383+07', 'system', '2023-07-26 08:40:17.677383+07', 'Xã Liên Am', '11881', 'Xã');
INSERT INTO category."Wards" VALUES (11884, 316, 'system', '2023-07-26 08:40:17.677386+07', 'system', '2023-07-26 08:40:17.677386+07', 'Xã Lý Học', '11884', 'Xã');
INSERT INTO category."Wards" VALUES (11887, 316, 'system', '2023-07-26 08:40:17.677389+07', 'system', '2023-07-26 08:40:17.677389+07', 'Xã Tam Cường', '11887', 'Xã');
INSERT INTO category."Wards" VALUES (11890, 316, 'system', '2023-07-26 08:40:17.677391+07', 'system', '2023-07-26 08:40:17.677391+07', 'Xã Hoà Bình', '11890', 'Xã');
INSERT INTO category."Wards" VALUES (11893, 316, 'system', '2023-07-26 08:40:17.677394+07', 'system', '2023-07-26 08:40:17.677394+07', 'Xã Tiền Phong', '11893', 'Xã');
INSERT INTO category."Wards" VALUES (11896, 316, 'system', '2023-07-26 08:40:17.677396+07', 'system', '2023-07-26 08:40:17.677396+07', 'Xã Vĩnh Phong', '11896', 'Xã');
INSERT INTO category."Wards" VALUES (11899, 316, 'system', '2023-07-26 08:40:17.677399+07', 'system', '2023-07-26 08:40:17.677399+07', 'Xã Cộng Hiền', '11899', 'Xã');
INSERT INTO category."Wards" VALUES (11902, 316, 'system', '2023-07-26 08:40:17.677401+07', 'system', '2023-07-26 08:40:17.677401+07', 'Xã Cao Minh', '11902', 'Xã');
INSERT INTO category."Wards" VALUES (11905, 316, 'system', '2023-07-26 08:40:17.677404+07', 'system', '2023-07-26 08:40:17.677404+07', 'Xã Cổ Am', '11905', 'Xã');
INSERT INTO category."Wards" VALUES (11908, 316, 'system', '2023-07-26 08:40:17.677407+07', 'system', '2023-07-26 08:40:17.677407+07', 'Xã Vĩnh Tiến', '11908', 'Xã');
INSERT INTO category."Wards" VALUES (11911, 316, 'system', '2023-07-26 08:40:17.677409+07', 'system', '2023-07-26 08:40:17.677409+07', 'Xã Trấn Dương', '11911', 'Xã');
INSERT INTO category."Wards" VALUES (11914, 317, 'system', '2023-07-26 08:40:17.677412+07', 'system', '2023-07-26 08:40:17.677412+07', 'Thị trấn Cát Bà', '11914', 'Thị trấn');
INSERT INTO category."Wards" VALUES (11917, 317, 'system', '2023-07-26 08:40:17.677415+07', 'system', '2023-07-26 08:40:17.677415+07', 'Thị trấn Cát Hải', '11917', 'Thị trấn');
INSERT INTO category."Wards" VALUES (11920, 317, 'system', '2023-07-26 08:40:17.677418+07', 'system', '2023-07-26 08:40:17.677418+07', 'Xã Nghĩa Lộ', '11920', 'Xã');
INSERT INTO category."Wards" VALUES (11923, 317, 'system', '2023-07-26 08:40:17.67742+07', 'system', '2023-07-26 08:40:17.67742+07', 'Xã Đồng Bài', '11923', 'Xã');
INSERT INTO category."Wards" VALUES (11926, 317, 'system', '2023-07-26 08:40:17.677423+07', 'system', '2023-07-26 08:40:17.677423+07', 'Xã Hoàng Châu', '11926', 'Xã');
INSERT INTO category."Wards" VALUES (11929, 317, 'system', '2023-07-26 08:40:17.677426+07', 'system', '2023-07-26 08:40:17.677426+07', 'Xã Văn Phong', '11929', 'Xã');
INSERT INTO category."Wards" VALUES (11935, 317, 'system', '2023-07-26 08:40:17.677431+07', 'system', '2023-07-26 08:40:17.677431+07', 'Xã Gia Luận', '11935', 'Xã');
INSERT INTO category."Wards" VALUES (11938, 317, 'system', '2023-07-26 08:40:17.677434+07', 'system', '2023-07-26 08:40:17.677434+07', 'Xã Hiền Hào', '11938', 'Xã');
INSERT INTO category."Wards" VALUES (11941, 317, 'system', '2023-07-26 08:40:17.677436+07', 'system', '2023-07-26 08:40:17.677436+07', 'Xã Trân Châu', '11941', 'Xã');
INSERT INTO category."Wards" VALUES (11944, 317, 'system', '2023-07-26 08:40:17.677438+07', 'system', '2023-07-26 08:40:17.677439+07', 'Xã Việt Hải', '11944', 'Xã');
INSERT INTO category."Wards" VALUES (11947, 317, 'system', '2023-07-26 08:40:17.677441+07', 'system', '2023-07-26 08:40:17.677441+07', 'Xã Xuân Đám', '11947', 'Xã');
INSERT INTO category."Wards" VALUES (11950, 323, 'system', '2023-07-26 08:40:17.677444+07', 'system', '2023-07-26 08:40:17.677444+07', 'Phường Lam Sơn', '11950', 'Phường');
INSERT INTO category."Wards" VALUES (11953, 323, 'system', '2023-07-26 08:40:17.677447+07', 'system', '2023-07-26 08:40:17.677447+07', 'Phường Hiến Nam', '11953', 'Phường');
INSERT INTO category."Wards" VALUES (11956, 323, 'system', '2023-07-26 08:40:17.677449+07', 'system', '2023-07-26 08:40:17.677449+07', 'Phường An Tảo', '11956', 'Phường');
INSERT INTO category."Wards" VALUES (11959, 323, 'system', '2023-07-26 08:40:17.677452+07', 'system', '2023-07-26 08:40:17.677452+07', 'Phường Lê Lợi', '11959', 'Phường');
INSERT INTO category."Wards" VALUES (11962, 323, 'system', '2023-07-26 08:40:17.677455+07', 'system', '2023-07-26 08:40:17.677455+07', 'Phường Minh Khai', '11962', 'Phường');
INSERT INTO category."Wards" VALUES (11965, 323, 'system', '2023-07-26 08:40:17.677458+07', 'system', '2023-07-26 08:40:17.677458+07', 'Phường Quang Trung', '11965', 'Phường');
INSERT INTO category."Wards" VALUES (11968, 323, 'system', '2023-07-26 08:40:17.677461+07', 'system', '2023-07-26 08:40:17.677461+07', 'Phường Hồng Châu', '11968', 'Phường');
INSERT INTO category."Wards" VALUES (11971, 323, 'system', '2023-07-26 08:40:17.677463+07', 'system', '2023-07-26 08:40:17.677463+07', 'Xã Trung Nghĩa', '11971', 'Xã');
INSERT INTO category."Wards" VALUES (11974, 323, 'system', '2023-07-26 08:40:17.677466+07', 'system', '2023-07-26 08:40:17.677466+07', 'Xã Liên Phương', '11974', 'Xã');
INSERT INTO category."Wards" VALUES (11977, 323, 'system', '2023-07-26 08:40:17.677469+07', 'system', '2023-07-26 08:40:17.677469+07', 'Xã Hồng Nam', '11977', 'Xã');
INSERT INTO category."Wards" VALUES (11980, 323, 'system', '2023-07-26 08:40:17.677472+07', 'system', '2023-07-26 08:40:17.677472+07', 'Xã Quảng Châu', '11980', 'Xã');
INSERT INTO category."Wards" VALUES (11983, 323, 'system', '2023-07-26 08:40:17.677475+07', 'system', '2023-07-26 08:40:17.677475+07', 'Xã Bảo Khê', '11983', 'Xã');
INSERT INTO category."Wards" VALUES (11986, 325, 'system', '2023-07-26 08:40:17.67749+07', 'system', '2023-07-26 08:40:17.677491+07', 'Thị trấn Như Quỳnh', '11986', 'Thị trấn');
INSERT INTO category."Wards" VALUES (11989, 325, 'system', '2023-07-26 08:40:17.677494+07', 'system', '2023-07-26 08:40:17.677494+07', 'Xã Lạc Đạo', '11989', 'Xã');
INSERT INTO category."Wards" VALUES (11992, 325, 'system', '2023-07-26 08:40:17.677496+07', 'system', '2023-07-26 08:40:17.677496+07', 'Xã Chỉ Đạo', '11992', 'Xã');
INSERT INTO category."Wards" VALUES (11995, 325, 'system', '2023-07-26 08:40:17.677499+07', 'system', '2023-07-26 08:40:17.677499+07', 'Xã Đại Đồng', '11995', 'Xã');
INSERT INTO category."Wards" VALUES (11998, 325, 'system', '2023-07-26 08:40:17.677502+07', 'system', '2023-07-26 08:40:17.677502+07', 'Xã Việt Hưng', '11998', 'Xã');
INSERT INTO category."Wards" VALUES (12001, 325, 'system', '2023-07-26 08:40:17.677504+07', 'system', '2023-07-26 08:40:17.677504+07', 'Xã Tân Quang', '12001', 'Xã');
INSERT INTO category."Wards" VALUES (12004, 325, 'system', '2023-07-26 08:40:17.677507+07', 'system', '2023-07-26 08:40:17.677507+07', 'Xã Đình Dù', '12004', 'Xã');
INSERT INTO category."Wards" VALUES (12007, 325, 'system', '2023-07-26 08:40:17.67751+07', 'system', '2023-07-26 08:40:17.67751+07', 'Xã Minh Hải', '12007', 'Xã');
INSERT INTO category."Wards" VALUES (12010, 325, 'system', '2023-07-26 08:40:17.677514+07', 'system', '2023-07-26 08:40:17.677514+07', 'Xã Lương Tài', '12010', 'Xã');
INSERT INTO category."Wards" VALUES (12013, 325, 'system', '2023-07-26 08:40:17.677518+07', 'system', '2023-07-26 08:40:17.677519+07', 'Xã Trưng Trắc', '12013', 'Xã');
INSERT INTO category."Wards" VALUES (12016, 325, 'system', '2023-07-26 08:40:17.677523+07', 'system', '2023-07-26 08:40:17.677523+07', 'Xã Lạc Hồng', '12016', 'Xã');
INSERT INTO category."Wards" VALUES (12019, 326, 'system', '2023-07-26 08:40:17.677527+07', 'system', '2023-07-26 08:40:17.677527+07', 'Thị trấn Văn Giang', '12019', 'Thị trấn');
INSERT INTO category."Wards" VALUES (12022, 326, 'system', '2023-07-26 08:40:17.677532+07', 'system', '2023-07-26 08:40:17.677532+07', 'Xã Xuân Quan', '12022', 'Xã');
INSERT INTO category."Wards" VALUES (12025, 326, 'system', '2023-07-26 08:40:17.677537+07', 'system', '2023-07-26 08:40:17.677537+07', 'Xã Cửu Cao', '12025', 'Xã');
INSERT INTO category."Wards" VALUES (12028, 326, 'system', '2023-07-26 08:40:17.677541+07', 'system', '2023-07-26 08:40:17.677541+07', 'Xã Phụng Công', '12028', 'Xã');
INSERT INTO category."Wards" VALUES (12031, 326, 'system', '2023-07-26 08:40:17.677544+07', 'system', '2023-07-26 08:40:17.677544+07', 'Xã Nghĩa Trụ', '12031', 'Xã');
INSERT INTO category."Wards" VALUES (12034, 326, 'system', '2023-07-26 08:40:17.677546+07', 'system', '2023-07-26 08:40:17.677547+07', 'Xã Long Hưng', '12034', 'Xã');
INSERT INTO category."Wards" VALUES (12037, 326, 'system', '2023-07-26 08:40:17.677549+07', 'system', '2023-07-26 08:40:17.677549+07', 'Xã Vĩnh Khúc', '12037', 'Xã');
INSERT INTO category."Wards" VALUES (12040, 326, 'system', '2023-07-26 08:40:17.677552+07', 'system', '2023-07-26 08:40:17.677552+07', 'Xã Liên Nghĩa', '12040', 'Xã');
INSERT INTO category."Wards" VALUES (12043, 326, 'system', '2023-07-26 08:40:17.677554+07', 'system', '2023-07-26 08:40:17.677554+07', 'Xã Tân Tiến', '12043', 'Xã');
INSERT INTO category."Wards" VALUES (12046, 326, 'system', '2023-07-26 08:40:17.677557+07', 'system', '2023-07-26 08:40:17.677557+07', 'Xã Thắng Lợi', '12046', 'Xã');
INSERT INTO category."Wards" VALUES (12049, 326, 'system', '2023-07-26 08:40:17.67756+07', 'system', '2023-07-26 08:40:17.67756+07', 'Xã Mễ Sở', '12049', 'Xã');
INSERT INTO category."Wards" VALUES (12052, 327, 'system', '2023-07-26 08:40:17.677562+07', 'system', '2023-07-26 08:40:17.677562+07', 'Thị trấn Yên Mỹ', '12052', 'Thị trấn');
INSERT INTO category."Wards" VALUES (12055, 327, 'system', '2023-07-26 08:40:17.677565+07', 'system', '2023-07-26 08:40:17.677565+07', 'Xã Giai Phạm', '12055', 'Xã');
INSERT INTO category."Wards" VALUES (12058, 327, 'system', '2023-07-26 08:40:17.677568+07', 'system', '2023-07-26 08:40:17.677568+07', 'Xã Nghĩa Hiệp', '12058', 'Xã');
INSERT INTO category."Wards" VALUES (12061, 327, 'system', '2023-07-26 08:40:17.67757+07', 'system', '2023-07-26 08:40:17.67757+07', 'Xã Đồng Than', '12061', 'Xã');
INSERT INTO category."Wards" VALUES (12064, 327, 'system', '2023-07-26 08:40:17.677573+07', 'system', '2023-07-26 08:40:17.677573+07', 'Xã Ngọc Long', '12064', 'Xã');
INSERT INTO category."Wards" VALUES (12067, 327, 'system', '2023-07-26 08:40:17.677575+07', 'system', '2023-07-26 08:40:17.677575+07', 'Xã Liêu Xá', '12067', 'Xã');
INSERT INTO category."Wards" VALUES (12070, 327, 'system', '2023-07-26 08:40:17.677578+07', 'system', '2023-07-26 08:40:17.677578+07', 'Xã Hoàn Long', '12070', 'Xã');
INSERT INTO category."Wards" VALUES (12073, 327, 'system', '2023-07-26 08:40:17.677582+07', 'system', '2023-07-26 08:40:17.677582+07', 'Xã Tân Lập', '12073', 'Xã');
INSERT INTO category."Wards" VALUES (12076, 327, 'system', '2023-07-26 08:40:17.677585+07', 'system', '2023-07-26 08:40:17.677585+07', 'Xã Thanh Long', '12076', 'Xã');
INSERT INTO category."Wards" VALUES (12079, 327, 'system', '2023-07-26 08:40:17.677587+07', 'system', '2023-07-26 08:40:17.677587+07', 'Xã Yên Phú', '12079', 'Xã');
INSERT INTO category."Wards" VALUES (12082, 327, 'system', '2023-07-26 08:40:17.67759+07', 'system', '2023-07-26 08:40:17.67759+07', 'Xã Việt Cường', '12082', 'Xã');
INSERT INTO category."Wards" VALUES (12085, 327, 'system', '2023-07-26 08:40:17.677592+07', 'system', '2023-07-26 08:40:17.677592+07', 'Xã Trung Hòa', '12085', 'Xã');
INSERT INTO category."Wards" VALUES (12088, 327, 'system', '2023-07-26 08:40:17.677595+07', 'system', '2023-07-26 08:40:17.677595+07', 'Xã Yên Hòa', '12088', 'Xã');
INSERT INTO category."Wards" VALUES (12091, 327, 'system', '2023-07-26 08:40:17.677597+07', 'system', '2023-07-26 08:40:17.677597+07', 'Xã Minh Châu', '12091', 'Xã');
INSERT INTO category."Wards" VALUES (12094, 327, 'system', '2023-07-26 08:40:17.6776+07', 'system', '2023-07-26 08:40:17.6776+07', 'Xã Trung Hưng', '12094', 'Xã');
INSERT INTO category."Wards" VALUES (12097, 327, 'system', '2023-07-26 08:40:17.677602+07', 'system', '2023-07-26 08:40:17.677602+07', 'Xã Lý Thường Kiệt', '12097', 'Xã');
INSERT INTO category."Wards" VALUES (12100, 327, 'system', '2023-07-26 08:40:17.677605+07', 'system', '2023-07-26 08:40:17.677605+07', 'Xã Tân Việt', '12100', 'Xã');
INSERT INTO category."Wards" VALUES (12103, 328, 'system', '2023-07-26 08:40:17.677608+07', 'system', '2023-07-26 08:40:17.677608+07', 'Phường Bần Yên Nhân', '12103', 'Phường');
INSERT INTO category."Wards" VALUES (12106, 328, 'system', '2023-07-26 08:40:17.677611+07', 'system', '2023-07-26 08:40:17.677611+07', 'Phường Phan Đình Phùng', '12106', 'Phường');
INSERT INTO category."Wards" VALUES (12109, 328, 'system', '2023-07-26 08:40:17.677614+07', 'system', '2023-07-26 08:40:17.677614+07', 'Xã Cẩm Xá', '12109', 'Xã');
INSERT INTO category."Wards" VALUES (12112, 328, 'system', '2023-07-26 08:40:17.677617+07', 'system', '2023-07-26 08:40:17.677617+07', 'Xã Dương Quang', '12112', 'Xã');
INSERT INTO category."Wards" VALUES (12115, 328, 'system', '2023-07-26 08:40:17.677619+07', 'system', '2023-07-26 08:40:17.677619+07', 'Xã Hòa Phong', '12115', 'Xã');
INSERT INTO category."Wards" VALUES (12118, 328, 'system', '2023-07-26 08:40:17.677622+07', 'system', '2023-07-26 08:40:17.677622+07', 'Phường Nhân Hòa', '12118', 'Phường');
INSERT INTO category."Wards" VALUES (12121, 328, 'system', '2023-07-26 08:40:17.677624+07', 'system', '2023-07-26 08:40:17.677625+07', 'Phường Dị Sử', '12121', 'Phường');
INSERT INTO category."Wards" VALUES (12124, 328, 'system', '2023-07-26 08:40:17.677627+07', 'system', '2023-07-26 08:40:17.677627+07', 'Phường Bạch Sam', '12124', 'Phường');
INSERT INTO category."Wards" VALUES (12127, 328, 'system', '2023-07-26 08:40:17.67763+07', 'system', '2023-07-26 08:40:17.67763+07', 'Phường Minh Đức', '12127', 'Phường');
INSERT INTO category."Wards" VALUES (12130, 328, 'system', '2023-07-26 08:40:17.677633+07', 'system', '2023-07-26 08:40:17.677633+07', 'Phường Phùng Chí Kiên', '12130', 'Phường');
INSERT INTO category."Wards" VALUES (12133, 328, 'system', '2023-07-26 08:40:17.677636+07', 'system', '2023-07-26 08:40:17.677636+07', 'Xã Xuân Dục', '12133', 'Xã');
INSERT INTO category."Wards" VALUES (12136, 328, 'system', '2023-07-26 08:40:17.677638+07', 'system', '2023-07-26 08:40:17.677638+07', 'Xã Ngọc Lâm', '12136', 'Xã');
INSERT INTO category."Wards" VALUES (12139, 328, 'system', '2023-07-26 08:40:17.677641+07', 'system', '2023-07-26 08:40:17.677641+07', 'Xã Hưng Long', '12139', 'Xã');
INSERT INTO category."Wards" VALUES (12142, 329, 'system', '2023-07-26 08:40:17.677643+07', 'system', '2023-07-26 08:40:17.677643+07', 'Thị trấn Ân Thi', '12142', 'Thị trấn');
INSERT INTO category."Wards" VALUES (12145, 329, 'system', '2023-07-26 08:40:17.677646+07', 'system', '2023-07-26 08:40:17.677646+07', 'Xã Phù Ủng', '12145', 'Xã');
INSERT INTO category."Wards" VALUES (12148, 329, 'system', '2023-07-26 08:40:17.677649+07', 'system', '2023-07-26 08:40:17.677649+07', 'Xã Bắc Sơn', '12148', 'Xã');
INSERT INTO category."Wards" VALUES (12151, 329, 'system', '2023-07-26 08:40:17.677652+07', 'system', '2023-07-26 08:40:17.677652+07', 'Xã Bãi Sậy', '12151', 'Xã');
INSERT INTO category."Wards" VALUES (12154, 329, 'system', '2023-07-26 08:40:17.677655+07', 'system', '2023-07-26 08:40:17.677655+07', 'Xã Đào Dương', '12154', 'Xã');
INSERT INTO category."Wards" VALUES (12157, 329, 'system', '2023-07-26 08:40:17.677657+07', 'system', '2023-07-26 08:40:17.677657+07', 'Xã Tân Phúc', '12157', 'Xã');
INSERT INTO category."Wards" VALUES (12160, 329, 'system', '2023-07-26 08:40:17.67766+07', 'system', '2023-07-26 08:40:17.67766+07', 'Xã Vân Du', '12160', 'Xã');
INSERT INTO category."Wards" VALUES (12163, 329, 'system', '2023-07-26 08:40:17.677662+07', 'system', '2023-07-26 08:40:17.677662+07', 'Xã Quang Vinh', '12163', 'Xã');
INSERT INTO category."Wards" VALUES (12166, 329, 'system', '2023-07-26 08:40:17.677665+07', 'system', '2023-07-26 08:40:17.677665+07', 'Xã Xuân Trúc', '12166', 'Xã');
INSERT INTO category."Wards" VALUES (12169, 329, 'system', '2023-07-26 08:40:17.677668+07', 'system', '2023-07-26 08:40:17.677668+07', 'Xã Hoàng Hoa Thám', '12169', 'Xã');
INSERT INTO category."Wards" VALUES (12172, 329, 'system', '2023-07-26 08:40:17.67767+07', 'system', '2023-07-26 08:40:17.67767+07', 'Xã Quảng Lãng', '12172', 'Xã');
INSERT INTO category."Wards" VALUES (12175, 329, 'system', '2023-07-26 08:40:17.677673+07', 'system', '2023-07-26 08:40:17.677673+07', 'Xã Văn Nhuệ', '12175', 'Xã');
INSERT INTO category."Wards" VALUES (12178, 329, 'system', '2023-07-26 08:40:17.677676+07', 'system', '2023-07-26 08:40:17.677676+07', 'Xã Đặng Lễ', '12178', 'Xã');
INSERT INTO category."Wards" VALUES (12181, 329, 'system', '2023-07-26 08:40:17.677679+07', 'system', '2023-07-26 08:40:17.677679+07', 'Xã Cẩm Ninh', '12181', 'Xã');
INSERT INTO category."Wards" VALUES (12184, 329, 'system', '2023-07-26 08:40:17.677682+07', 'system', '2023-07-26 08:40:17.677682+07', 'Xã Nguyễn Trãi', '12184', 'Xã');
INSERT INTO category."Wards" VALUES (12187, 329, 'system', '2023-07-26 08:40:17.677684+07', 'system', '2023-07-26 08:40:17.677684+07', 'Xã Đa Lộc', '12187', 'Xã');
INSERT INTO category."Wards" VALUES (12190, 329, 'system', '2023-07-26 08:40:17.677687+07', 'system', '2023-07-26 08:40:17.677687+07', 'Xã Hồ Tùng Mậu', '12190', 'Xã');
INSERT INTO category."Wards" VALUES (12193, 329, 'system', '2023-07-26 08:40:17.67769+07', 'system', '2023-07-26 08:40:17.67769+07', 'Xã Tiền Phong', '12193', 'Xã');
INSERT INTO category."Wards" VALUES (12196, 329, 'system', '2023-07-26 08:40:17.677693+07', 'system', '2023-07-26 08:40:17.677693+07', 'Xã Hồng Vân', '12196', 'Xã');
INSERT INTO category."Wards" VALUES (12199, 329, 'system', '2023-07-26 08:40:17.677706+07', 'system', '2023-07-26 08:40:17.677706+07', 'Xã Hồng Quang', '12199', 'Xã');
INSERT INTO category."Wards" VALUES (12202, 329, 'system', '2023-07-26 08:40:17.67771+07', 'system', '2023-07-26 08:40:17.67771+07', 'Xã Hạ Lễ', '12202', 'Xã');
INSERT INTO category."Wards" VALUES (12205, 330, 'system', '2023-07-26 08:40:17.677712+07', 'system', '2023-07-26 08:40:17.677712+07', 'Thị trấn Khoái Châu', '12205', 'Thị trấn');
INSERT INTO category."Wards" VALUES (12208, 330, 'system', '2023-07-26 08:40:17.677715+07', 'system', '2023-07-26 08:40:17.677715+07', 'Xã Đông Tảo', '12208', 'Xã');
INSERT INTO category."Wards" VALUES (12211, 330, 'system', '2023-07-26 08:40:17.677718+07', 'system', '2023-07-26 08:40:17.677718+07', 'Xã Bình Minh', '12211', 'Xã');
INSERT INTO category."Wards" VALUES (12214, 330, 'system', '2023-07-26 08:40:17.67772+07', 'system', '2023-07-26 08:40:17.67772+07', 'Xã Dạ Trạch', '12214', 'Xã');
INSERT INTO category."Wards" VALUES (12217, 330, 'system', '2023-07-26 08:40:17.677723+07', 'system', '2023-07-26 08:40:17.677723+07', 'Xã Hàm Tử', '12217', 'Xã');
INSERT INTO category."Wards" VALUES (12220, 330, 'system', '2023-07-26 08:40:17.677726+07', 'system', '2023-07-26 08:40:17.677726+07', 'Xã Ông Đình', '12220', 'Xã');
INSERT INTO category."Wards" VALUES (12223, 330, 'system', '2023-07-26 08:40:17.677728+07', 'system', '2023-07-26 08:40:17.677728+07', 'Xã Tân Dân', '12223', 'Xã');
INSERT INTO category."Wards" VALUES (12226, 330, 'system', '2023-07-26 08:40:17.677731+07', 'system', '2023-07-26 08:40:17.677731+07', 'Xã Tứ Dân', '12226', 'Xã');
INSERT INTO category."Wards" VALUES (12229, 330, 'system', '2023-07-26 08:40:17.677733+07', 'system', '2023-07-26 08:40:17.677733+07', 'Xã An Vĩ', '12229', 'Xã');
INSERT INTO category."Wards" VALUES (12232, 330, 'system', '2023-07-26 08:40:17.677736+07', 'system', '2023-07-26 08:40:17.677736+07', 'Xã Đông Kết', '12232', 'Xã');
INSERT INTO category."Wards" VALUES (12235, 330, 'system', '2023-07-26 08:40:17.677738+07', 'system', '2023-07-26 08:40:17.677739+07', 'Xã Bình Kiều', '12235', 'Xã');
INSERT INTO category."Wards" VALUES (12238, 330, 'system', '2023-07-26 08:40:17.677741+07', 'system', '2023-07-26 08:40:17.677741+07', 'Xã Dân Tiến', '12238', 'Xã');
INSERT INTO category."Wards" VALUES (12241, 330, 'system', '2023-07-26 08:40:17.677744+07', 'system', '2023-07-26 08:40:17.677744+07', 'Xã Đồng Tiến', '12241', 'Xã');
INSERT INTO category."Wards" VALUES (12244, 330, 'system', '2023-07-26 08:40:17.677746+07', 'system', '2023-07-26 08:40:17.677746+07', 'Xã Hồng Tiến', '12244', 'Xã');
INSERT INTO category."Wards" VALUES (12247, 330, 'system', '2023-07-26 08:40:17.677749+07', 'system', '2023-07-26 08:40:17.677749+07', 'Xã Tân Châu', '12247', 'Xã');
INSERT INTO category."Wards" VALUES (12250, 330, 'system', '2023-07-26 08:40:17.677752+07', 'system', '2023-07-26 08:40:17.677752+07', 'Xã Liên Khê', '12250', 'Xã');
INSERT INTO category."Wards" VALUES (12253, 330, 'system', '2023-07-26 08:40:17.677754+07', 'system', '2023-07-26 08:40:17.677754+07', 'Xã Phùng Hưng', '12253', 'Xã');
INSERT INTO category."Wards" VALUES (12256, 330, 'system', '2023-07-26 08:40:17.677757+07', 'system', '2023-07-26 08:40:17.677757+07', 'Xã Việt Hòa', '12256', 'Xã');
INSERT INTO category."Wards" VALUES (12259, 330, 'system', '2023-07-26 08:40:17.67776+07', 'system', '2023-07-26 08:40:17.67776+07', 'Xã Đông Ninh', '12259', 'Xã');
INSERT INTO category."Wards" VALUES (12262, 330, 'system', '2023-07-26 08:40:17.677762+07', 'system', '2023-07-26 08:40:17.677762+07', 'Xã Đại Tập', '12262', 'Xã');
INSERT INTO category."Wards" VALUES (12265, 330, 'system', '2023-07-26 08:40:17.677765+07', 'system', '2023-07-26 08:40:17.677765+07', 'Xã Chí Tân', '12265', 'Xã');
INSERT INTO category."Wards" VALUES (12268, 330, 'system', '2023-07-26 08:40:17.677767+07', 'system', '2023-07-26 08:40:17.677767+07', 'Xã Đại Hưng', '12268', 'Xã');
INSERT INTO category."Wards" VALUES (12271, 330, 'system', '2023-07-26 08:40:17.67777+07', 'system', '2023-07-26 08:40:17.67777+07', 'Xã Thuần Hưng', '12271', 'Xã');
INSERT INTO category."Wards" VALUES (12274, 330, 'system', '2023-07-26 08:40:17.677773+07', 'system', '2023-07-26 08:40:17.677773+07', 'Xã Thành Công', '12274', 'Xã');
INSERT INTO category."Wards" VALUES (12277, 330, 'system', '2023-07-26 08:40:17.677775+07', 'system', '2023-07-26 08:40:17.677775+07', 'Xã Nhuế Dương', '12277', 'Xã');
INSERT INTO category."Wards" VALUES (12280, 331, 'system', '2023-07-26 08:40:17.677778+07', 'system', '2023-07-26 08:40:17.677778+07', 'Thị trấn Lương Bằng', '12280', 'Thị trấn');
INSERT INTO category."Wards" VALUES (12283, 331, 'system', '2023-07-26 08:40:17.677781+07', 'system', '2023-07-26 08:40:17.677781+07', 'Xã Nghĩa Dân', '12283', 'Xã');
INSERT INTO category."Wards" VALUES (12286, 331, 'system', '2023-07-26 08:40:17.677784+07', 'system', '2023-07-26 08:40:17.677784+07', 'Xã Toàn Thắng', '12286', 'Xã');
INSERT INTO category."Wards" VALUES (12289, 331, 'system', '2023-07-26 08:40:17.677787+07', 'system', '2023-07-26 08:40:17.677787+07', 'Xã Vĩnh Xá', '12289', 'Xã');
INSERT INTO category."Wards" VALUES (12292, 331, 'system', '2023-07-26 08:40:17.67779+07', 'system', '2023-07-26 08:40:17.67779+07', 'Xã Phạm Ngũ Lão', '12292', 'Xã');
INSERT INTO category."Wards" VALUES (12295, 331, 'system', '2023-07-26 08:40:17.677793+07', 'system', '2023-07-26 08:40:17.677793+07', 'Xã Thọ Vinh', '12295', 'Xã');
INSERT INTO category."Wards" VALUES (12298, 331, 'system', '2023-07-26 08:40:17.677796+07', 'system', '2023-07-26 08:40:17.677796+07', 'Xã Đồng Thanh', '12298', 'Xã');
INSERT INTO category."Wards" VALUES (12301, 331, 'system', '2023-07-26 08:40:17.677798+07', 'system', '2023-07-26 08:40:17.677798+07', 'Xã Song Mai', '12301', 'Xã');
INSERT INTO category."Wards" VALUES (12304, 331, 'system', '2023-07-26 08:40:17.677801+07', 'system', '2023-07-26 08:40:17.677801+07', 'Xã Chính Nghĩa', '12304', 'Xã');
INSERT INTO category."Wards" VALUES (12307, 331, 'system', '2023-07-26 08:40:17.677803+07', 'system', '2023-07-26 08:40:17.677804+07', 'Xã Nhân La', '12307', 'Xã');
INSERT INTO category."Wards" VALUES (12310, 331, 'system', '2023-07-26 08:40:17.677806+07', 'system', '2023-07-26 08:40:17.677806+07', 'Xã Phú Thịnh', '12310', 'Xã');
INSERT INTO category."Wards" VALUES (12313, 331, 'system', '2023-07-26 08:40:17.677808+07', 'system', '2023-07-26 08:40:17.677808+07', 'Xã Mai Động', '12313', 'Xã');
INSERT INTO category."Wards" VALUES (12316, 331, 'system', '2023-07-26 08:40:17.677811+07', 'system', '2023-07-26 08:40:17.677811+07', 'Xã Đức Hợp', '12316', 'Xã');
INSERT INTO category."Wards" VALUES (12319, 331, 'system', '2023-07-26 08:40:17.677814+07', 'system', '2023-07-26 08:40:17.677814+07', 'Xã Hùng An', '12319', 'Xã');
INSERT INTO category."Wards" VALUES (12322, 331, 'system', '2023-07-26 08:40:17.677816+07', 'system', '2023-07-26 08:40:17.677816+07', 'Xã Ngọc Thanh', '12322', 'Xã');
INSERT INTO category."Wards" VALUES (12325, 331, 'system', '2023-07-26 08:40:17.677819+07', 'system', '2023-07-26 08:40:17.677819+07', 'Xã Vũ Xá', '12325', 'Xã');
INSERT INTO category."Wards" VALUES (12328, 331, 'system', '2023-07-26 08:40:17.677821+07', 'system', '2023-07-26 08:40:17.677821+07', 'Xã Hiệp Cường', '12328', 'Xã');
INSERT INTO category."Wards" VALUES (12331, 323, 'system', '2023-07-26 08:40:17.677477+07', 'system', '2023-07-26 08:40:17.677477+07', 'Xã Phú Cường', '12331', 'Xã');
INSERT INTO category."Wards" VALUES (12334, 323, 'system', '2023-07-26 08:40:17.67748+07', 'system', '2023-07-26 08:40:17.67748+07', 'Xã Hùng Cường', '12334', 'Xã');
INSERT INTO category."Wards" VALUES (12337, 332, 'system', '2023-07-26 08:40:17.677824+07', 'system', '2023-07-26 08:40:17.677824+07', 'Thị trấn Vương', '12337', 'Thị trấn');
INSERT INTO category."Wards" VALUES (12340, 332, 'system', '2023-07-26 08:40:17.677827+07', 'system', '2023-07-26 08:40:17.677827+07', 'Xã Hưng Đạo', '12340', 'Xã');
INSERT INTO category."Wards" VALUES (12343, 332, 'system', '2023-07-26 08:40:17.677829+07', 'system', '2023-07-26 08:40:17.677829+07', 'Xã Ngô Quyền', '12343', 'Xã');
INSERT INTO category."Wards" VALUES (12346, 332, 'system', '2023-07-26 08:40:17.677832+07', 'system', '2023-07-26 08:40:17.677832+07', 'Xã Nhật Tân', '12346', 'Xã');
INSERT INTO category."Wards" VALUES (12349, 332, 'system', '2023-07-26 08:40:17.677834+07', 'system', '2023-07-26 08:40:17.677835+07', 'Xã Dị Chế', '12349', 'Xã');
INSERT INTO category."Wards" VALUES (12352, 332, 'system', '2023-07-26 08:40:17.677837+07', 'system', '2023-07-26 08:40:17.677837+07', 'Xã Lệ Xá', '12352', 'Xã');
INSERT INTO category."Wards" VALUES (12355, 332, 'system', '2023-07-26 08:40:17.677839+07', 'system', '2023-07-26 08:40:17.67784+07', 'Xã An Viên', '12355', 'Xã');
INSERT INTO category."Wards" VALUES (12358, 332, 'system', '2023-07-26 08:40:17.677842+07', 'system', '2023-07-26 08:40:17.677842+07', 'Xã Đức Thắng', '12358', 'Xã');
INSERT INTO category."Wards" VALUES (12361, 332, 'system', '2023-07-26 08:40:17.677845+07', 'system', '2023-07-26 08:40:17.677845+07', 'Xã Trung Dũng', '12361', 'Xã');
INSERT INTO category."Wards" VALUES (12364, 332, 'system', '2023-07-26 08:40:17.677847+07', 'system', '2023-07-26 08:40:17.677847+07', 'Xã Hải Triều', '12364', 'Xã');
INSERT INTO category."Wards" VALUES (12367, 332, 'system', '2023-07-26 08:40:17.67785+07', 'system', '2023-07-26 08:40:17.67785+07', 'Xã Thủ Sỹ', '12367', 'Xã');
INSERT INTO category."Wards" VALUES (12370, 332, 'system', '2023-07-26 08:40:17.677853+07', 'system', '2023-07-26 08:40:17.677853+07', 'Xã Thiện Phiến', '12370', 'Xã');
INSERT INTO category."Wards" VALUES (12373, 332, 'system', '2023-07-26 08:40:17.677855+07', 'system', '2023-07-26 08:40:17.677855+07', 'Xã Thụy Lôi', '12373', 'Xã');
INSERT INTO category."Wards" VALUES (12376, 332, 'system', '2023-07-26 08:40:17.677858+07', 'system', '2023-07-26 08:40:17.677858+07', 'Xã Cương Chính', '12376', 'Xã');
INSERT INTO category."Wards" VALUES (12379, 332, 'system', '2023-07-26 08:40:17.67786+07', 'system', '2023-07-26 08:40:17.67786+07', 'Xã Minh Phượng', '12379', 'Xã');
INSERT INTO category."Wards" VALUES (12382, 323, 'system', '2023-07-26 08:40:17.677483+07', 'system', '2023-07-26 08:40:17.677483+07', 'Xã Phương Chiểu', '12382', 'Xã');
INSERT INTO category."Wards" VALUES (12385, 323, 'system', '2023-07-26 08:40:17.677485+07', 'system', '2023-07-26 08:40:17.677485+07', 'Xã Tân Hưng', '12385', 'Xã');
INSERT INTO category."Wards" VALUES (12388, 323, 'system', '2023-07-26 08:40:17.677488+07', 'system', '2023-07-26 08:40:17.677488+07', 'Xã Hoàng Hanh', '12388', 'Xã');
INSERT INTO category."Wards" VALUES (12391, 333, 'system', '2023-07-26 08:40:17.677863+07', 'system', '2023-07-26 08:40:17.677863+07', 'Thị trấn Trần Cao', '12391', 'Thị trấn');
INSERT INTO category."Wards" VALUES (12394, 333, 'system', '2023-07-26 08:40:17.677866+07', 'system', '2023-07-26 08:40:17.677866+07', 'Xã Minh Tân', '12394', 'Xã');
INSERT INTO category."Wards" VALUES (12397, 333, 'system', '2023-07-26 08:40:17.677868+07', 'system', '2023-07-26 08:40:17.677868+07', 'Xã Phan Sào Nam', '12397', 'Xã');
INSERT INTO category."Wards" VALUES (12400, 333, 'system', '2023-07-26 08:40:17.677871+07', 'system', '2023-07-26 08:40:17.677871+07', 'Xã Quang Hưng', '12400', 'Xã');
INSERT INTO category."Wards" VALUES (12403, 333, 'system', '2023-07-26 08:40:17.677874+07', 'system', '2023-07-26 08:40:17.677874+07', 'Xã Minh Hoàng', '12403', 'Xã');
INSERT INTO category."Wards" VALUES (12406, 333, 'system', '2023-07-26 08:40:17.677876+07', 'system', '2023-07-26 08:40:17.677876+07', 'Xã Đoàn Đào', '12406', 'Xã');
INSERT INTO category."Wards" VALUES (12409, 333, 'system', '2023-07-26 08:40:17.677879+07', 'system', '2023-07-26 08:40:17.677879+07', 'Xã Tống Phan', '12409', 'Xã');
INSERT INTO category."Wards" VALUES (12412, 333, 'system', '2023-07-26 08:40:17.677882+07', 'system', '2023-07-26 08:40:17.677882+07', 'Xã Đình Cao', '12412', 'Xã');
INSERT INTO category."Wards" VALUES (12415, 333, 'system', '2023-07-26 08:40:17.677885+07', 'system', '2023-07-26 08:40:17.677885+07', 'Xã Nhật Quang', '12415', 'Xã');
INSERT INTO category."Wards" VALUES (12418, 333, 'system', '2023-07-26 08:40:17.677888+07', 'system', '2023-07-26 08:40:17.677888+07', 'Xã Tiền Tiến', '12418', 'Xã');
INSERT INTO category."Wards" VALUES (12421, 333, 'system', '2023-07-26 08:40:17.67789+07', 'system', '2023-07-26 08:40:17.67789+07', 'Xã Tam Đa', '12421', 'Xã');
INSERT INTO category."Wards" VALUES (12424, 333, 'system', '2023-07-26 08:40:17.677893+07', 'system', '2023-07-26 08:40:17.677893+07', 'Xã Minh Tiến', '12424', 'Xã');
INSERT INTO category."Wards" VALUES (12427, 333, 'system', '2023-07-26 08:40:17.677895+07', 'system', '2023-07-26 08:40:17.677895+07', 'Xã Nguyên Hòa', '12427', 'Xã');
INSERT INTO category."Wards" VALUES (12430, 333, 'system', '2023-07-26 08:40:17.677898+07', 'system', '2023-07-26 08:40:17.677898+07', 'Xã Tống Trân', '12430', 'Xã');
INSERT INTO category."Wards" VALUES (12433, 336, 'system', '2023-07-26 08:40:17.6779+07', 'system', '2023-07-26 08:40:17.6779+07', 'Phường Lê Hồng Phong', '12433', 'Phường');
INSERT INTO category."Wards" VALUES (12436, 336, 'system', '2023-07-26 08:40:17.677903+07', 'system', '2023-07-26 08:40:17.677903+07', 'Phường Bồ Xuyên', '12436', 'Phường');
INSERT INTO category."Wards" VALUES (12439, 336, 'system', '2023-07-26 08:40:17.677906+07', 'system', '2023-07-26 08:40:17.677906+07', 'Phường Đề Thám', '12439', 'Phường');
INSERT INTO category."Wards" VALUES (12442, 336, 'system', '2023-07-26 08:40:17.677909+07', 'system', '2023-07-26 08:40:17.677909+07', 'Phường Kỳ Bá', '12442', 'Phường');
INSERT INTO category."Wards" VALUES (12445, 336, 'system', '2023-07-26 08:40:17.677912+07', 'system', '2023-07-26 08:40:17.677912+07', 'Phường Quang Trung', '12445', 'Phường');
INSERT INTO category."Wards" VALUES (12448, 336, 'system', '2023-07-26 08:40:17.677915+07', 'system', '2023-07-26 08:40:17.677915+07', 'Phường Phú Khánh', '12448', 'Phường');
INSERT INTO category."Wards" VALUES (12451, 336, 'system', '2023-07-26 08:40:17.677917+07', 'system', '2023-07-26 08:40:17.677917+07', 'Phường Tiền Phong', '12451', 'Phường');
INSERT INTO category."Wards" VALUES (12452, 336, 'system', '2023-07-26 08:40:17.67792+07', 'system', '2023-07-26 08:40:17.67792+07', 'Phường Trần Hưng Đạo', '12452', 'Phường');
INSERT INTO category."Wards" VALUES (12454, 336, 'system', '2023-07-26 08:40:17.677923+07', 'system', '2023-07-26 08:40:17.677923+07', 'Phường Trần Lãm', '12454', 'Phường');
INSERT INTO category."Wards" VALUES (12457, 336, 'system', '2023-07-26 08:40:17.677926+07', 'system', '2023-07-26 08:40:17.677926+07', 'Xã Đông Hòa', '12457', 'Xã');
INSERT INTO category."Wards" VALUES (12460, 336, 'system', '2023-07-26 08:40:17.677929+07', 'system', '2023-07-26 08:40:17.677929+07', 'Phường Hoàng Diệu', '12460', 'Phường');
INSERT INTO category."Wards" VALUES (12463, 336, 'system', '2023-07-26 08:40:17.677931+07', 'system', '2023-07-26 08:40:17.677932+07', 'Xã Phú Xuân', '12463', 'Xã');
INSERT INTO category."Wards" VALUES (12466, 336, 'system', '2023-07-26 08:40:17.677934+07', 'system', '2023-07-26 08:40:17.677934+07', 'Xã Vũ Phúc', '12466', 'Xã');
INSERT INTO category."Wards" VALUES (12469, 336, 'system', '2023-07-26 08:40:17.677937+07', 'system', '2023-07-26 08:40:17.677937+07', 'Xã Vũ Chính', '12469', 'Xã');
INSERT INTO category."Wards" VALUES (12472, 338, 'system', '2023-07-26 08:40:17.677952+07', 'system', '2023-07-26 08:40:17.677952+07', 'Thị trấn Quỳnh Côi', '12472', 'Thị trấn');
INSERT INTO category."Wards" VALUES (12475, 338, 'system', '2023-07-26 08:40:17.677955+07', 'system', '2023-07-26 08:40:17.677955+07', 'Xã An Khê', '12475', 'Xã');
INSERT INTO category."Wards" VALUES (12478, 338, 'system', '2023-07-26 08:40:17.677958+07', 'system', '2023-07-26 08:40:17.677958+07', 'Xã An Đồng', '12478', 'Xã');
INSERT INTO category."Wards" VALUES (12481, 338, 'system', '2023-07-26 08:40:17.67796+07', 'system', '2023-07-26 08:40:17.677961+07', 'Xã Quỳnh Hoa', '12481', 'Xã');
INSERT INTO category."Wards" VALUES (12484, 338, 'system', '2023-07-26 08:40:17.677963+07', 'system', '2023-07-26 08:40:17.677963+07', 'Xã Quỳnh Lâm', '12484', 'Xã');
INSERT INTO category."Wards" VALUES (12487, 338, 'system', '2023-07-26 08:40:17.677966+07', 'system', '2023-07-26 08:40:17.677966+07', 'Xã Quỳnh Thọ', '12487', 'Xã');
INSERT INTO category."Wards" VALUES (12490, 338, 'system', '2023-07-26 08:40:17.677968+07', 'system', '2023-07-26 08:40:17.677968+07', 'Xã An Hiệp', '12490', 'Xã');
INSERT INTO category."Wards" VALUES (12493, 338, 'system', '2023-07-26 08:40:17.677971+07', 'system', '2023-07-26 08:40:17.677971+07', 'Xã Quỳnh Hoàng', '12493', 'Xã');
INSERT INTO category."Wards" VALUES (12496, 338, 'system', '2023-07-26 08:40:17.677974+07', 'system', '2023-07-26 08:40:17.677974+07', 'Xã Quỳnh Giao', '12496', 'Xã');
INSERT INTO category."Wards" VALUES (12499, 338, 'system', '2023-07-26 08:40:17.677976+07', 'system', '2023-07-26 08:40:17.677976+07', 'Xã An Thái', '12499', 'Xã');
INSERT INTO category."Wards" VALUES (12502, 338, 'system', '2023-07-26 08:40:17.677979+07', 'system', '2023-07-26 08:40:17.677979+07', 'Xã An Cầu', '12502', 'Xã');
INSERT INTO category."Wards" VALUES (12505, 338, 'system', '2023-07-26 08:40:17.677982+07', 'system', '2023-07-26 08:40:17.677982+07', 'Xã Quỳnh Hồng', '12505', 'Xã');
INSERT INTO category."Wards" VALUES (12508, 338, 'system', '2023-07-26 08:40:17.677984+07', 'system', '2023-07-26 08:40:17.677984+07', 'Xã Quỳnh Khê', '12508', 'Xã');
INSERT INTO category."Wards" VALUES (12511, 338, 'system', '2023-07-26 08:40:17.677987+07', 'system', '2023-07-26 08:40:17.677987+07', 'Xã Quỳnh Minh', '12511', 'Xã');
INSERT INTO category."Wards" VALUES (12514, 338, 'system', '2023-07-26 08:40:17.67799+07', 'system', '2023-07-26 08:40:17.67799+07', 'Xã An Ninh', '12514', 'Xã');
INSERT INTO category."Wards" VALUES (12517, 338, 'system', '2023-07-26 08:40:17.677992+07', 'system', '2023-07-26 08:40:17.677993+07', 'Xã Quỳnh Ngọc', '12517', 'Xã');
INSERT INTO category."Wards" VALUES (12520, 338, 'system', '2023-07-26 08:40:17.677995+07', 'system', '2023-07-26 08:40:17.677995+07', 'Xã Quỳnh Hải', '12520', 'Xã');
INSERT INTO category."Wards" VALUES (12523, 338, 'system', '2023-07-26 08:40:17.677998+07', 'system', '2023-07-26 08:40:17.677998+07', 'Thị trấn An Bài', '12523', 'Thị trấn');
INSERT INTO category."Wards" VALUES (12526, 338, 'system', '2023-07-26 08:40:17.678001+07', 'system', '2023-07-26 08:40:17.678001+07', 'Xã An Ấp', '12526', 'Xã');
INSERT INTO category."Wards" VALUES (12529, 338, 'system', '2023-07-26 08:40:17.678003+07', 'system', '2023-07-26 08:40:17.678003+07', 'Xã Quỳnh Hội', '12529', 'Xã');
INSERT INTO category."Wards" VALUES (12532, 338, 'system', '2023-07-26 08:40:17.678006+07', 'system', '2023-07-26 08:40:17.678006+07', 'Xã Châu Sơn', '12532', 'Xã');
INSERT INTO category."Wards" VALUES (12535, 338, 'system', '2023-07-26 08:40:17.678009+07', 'system', '2023-07-26 08:40:17.678009+07', 'Xã Quỳnh Mỹ', '12535', 'Xã');
INSERT INTO category."Wards" VALUES (12538, 338, 'system', '2023-07-26 08:40:17.678011+07', 'system', '2023-07-26 08:40:17.678011+07', 'Xã An Quí', '12538', 'Xã');
INSERT INTO category."Wards" VALUES (12541, 338, 'system', '2023-07-26 08:40:17.678014+07', 'system', '2023-07-26 08:40:17.678014+07', 'Xã An Thanh', '12541', 'Xã');
INSERT INTO category."Wards" VALUES (12547, 338, 'system', '2023-07-26 08:40:17.678016+07', 'system', '2023-07-26 08:40:17.678017+07', 'Xã An Vũ', '12547', 'Xã');
INSERT INTO category."Wards" VALUES (12550, 338, 'system', '2023-07-26 08:40:17.678019+07', 'system', '2023-07-26 08:40:17.678019+07', 'Xã An Lễ', '12550', 'Xã');
INSERT INTO category."Wards" VALUES (12553, 338, 'system', '2023-07-26 08:40:17.678022+07', 'system', '2023-07-26 08:40:17.678022+07', 'Xã Quỳnh Hưng', '12553', 'Xã');
INSERT INTO category."Wards" VALUES (12556, 338, 'system', '2023-07-26 08:40:17.678024+07', 'system', '2023-07-26 08:40:17.678024+07', 'Xã Quỳnh Bảo', '12556', 'Xã');
INSERT INTO category."Wards" VALUES (12559, 338, 'system', '2023-07-26 08:40:17.678027+07', 'system', '2023-07-26 08:40:17.678027+07', 'Xã An Mỹ', '12559', 'Xã');
INSERT INTO category."Wards" VALUES (12562, 338, 'system', '2023-07-26 08:40:17.67803+07', 'system', '2023-07-26 08:40:17.67803+07', 'Xã Quỳnh Nguyên', '12562', 'Xã');
INSERT INTO category."Wards" VALUES (12565, 338, 'system', '2023-07-26 08:40:17.678032+07', 'system', '2023-07-26 08:40:17.678032+07', 'Xã An Vinh', '12565', 'Xã');
INSERT INTO category."Wards" VALUES (12568, 338, 'system', '2023-07-26 08:40:17.678035+07', 'system', '2023-07-26 08:40:17.678035+07', 'Xã Quỳnh Xá', '12568', 'Xã');
INSERT INTO category."Wards" VALUES (12571, 338, 'system', '2023-07-26 08:40:17.678038+07', 'system', '2023-07-26 08:40:17.678038+07', 'Xã An Dục', '12571', 'Xã');
INSERT INTO category."Wards" VALUES (12574, 338, 'system', '2023-07-26 08:40:17.67804+07', 'system', '2023-07-26 08:40:17.67804+07', 'Xã Đông Hải', '12574', 'Xã');
INSERT INTO category."Wards" VALUES (12577, 338, 'system', '2023-07-26 08:40:17.678043+07', 'system', '2023-07-26 08:40:17.678043+07', 'Xã Quỳnh Trang', '12577', 'Xã');
INSERT INTO category."Wards" VALUES (12580, 338, 'system', '2023-07-26 08:40:17.678045+07', 'system', '2023-07-26 08:40:17.678045+07', 'Xã An Tràng', '12580', 'Xã');
INSERT INTO category."Wards" VALUES (12583, 338, 'system', '2023-07-26 08:40:17.678048+07', 'system', '2023-07-26 08:40:17.678048+07', 'Xã Đồng Tiến', '12583', 'Xã');
INSERT INTO category."Wards" VALUES (12586, 339, 'system', '2023-07-26 08:40:17.678051+07', 'system', '2023-07-26 08:40:17.678051+07', 'Thị trấn Hưng Hà', '12586', 'Thị trấn');
INSERT INTO category."Wards" VALUES (12589, 339, 'system', '2023-07-26 08:40:17.678054+07', 'system', '2023-07-26 08:40:17.678054+07', 'Xã Điệp Nông', '12589', 'Xã');
INSERT INTO category."Wards" VALUES (12592, 339, 'system', '2023-07-26 08:40:17.678056+07', 'system', '2023-07-26 08:40:17.678056+07', 'Xã Tân Lễ', '12592', 'Xã');
INSERT INTO category."Wards" VALUES (12595, 339, 'system', '2023-07-26 08:40:17.678059+07', 'system', '2023-07-26 08:40:17.678059+07', 'Xã Cộng Hòa', '12595', 'Xã');
INSERT INTO category."Wards" VALUES (12598, 339, 'system', '2023-07-26 08:40:17.678061+07', 'system', '2023-07-26 08:40:17.678061+07', 'Xã Dân Chủ', '12598', 'Xã');
INSERT INTO category."Wards" VALUES (12601, 339, 'system', '2023-07-26 08:40:17.678064+07', 'system', '2023-07-26 08:40:17.678064+07', 'Xã Canh Tân', '12601', 'Xã');
INSERT INTO category."Wards" VALUES (12604, 339, 'system', '2023-07-26 08:40:17.678067+07', 'system', '2023-07-26 08:40:17.678067+07', 'Xã Hòa Tiến', '12604', 'Xã');
INSERT INTO category."Wards" VALUES (12607, 339, 'system', '2023-07-26 08:40:17.678069+07', 'system', '2023-07-26 08:40:17.678069+07', 'Xã Hùng Dũng', '12607', 'Xã');
INSERT INTO category."Wards" VALUES (12610, 339, 'system', '2023-07-26 08:40:17.678072+07', 'system', '2023-07-26 08:40:17.678072+07', 'Xã Tân Tiến', '12610', 'Xã');
INSERT INTO category."Wards" VALUES (12613, 339, 'system', '2023-07-26 08:40:17.678074+07', 'system', '2023-07-26 08:40:17.678074+07', 'Thị trấn Hưng Nhân', '12613', 'Thị trấn');
INSERT INTO category."Wards" VALUES (12616, 339, 'system', '2023-07-26 08:40:17.678078+07', 'system', '2023-07-26 08:40:17.678078+07', 'Xã Đoan Hùng', '12616', 'Xã');
INSERT INTO category."Wards" VALUES (12619, 339, 'system', '2023-07-26 08:40:17.678081+07', 'system', '2023-07-26 08:40:17.678081+07', 'Xã Duyên Hải', '12619', 'Xã');
INSERT INTO category."Wards" VALUES (12622, 339, 'system', '2023-07-26 08:40:17.678083+07', 'system', '2023-07-26 08:40:17.678084+07', 'Xã Tân Hòa', '12622', 'Xã');
INSERT INTO category."Wards" VALUES (12625, 339, 'system', '2023-07-26 08:40:17.678086+07', 'system', '2023-07-26 08:40:17.678086+07', 'Xã Văn Cẩm', '12625', 'Xã');
INSERT INTO category."Wards" VALUES (12628, 339, 'system', '2023-07-26 08:40:17.678088+07', 'system', '2023-07-26 08:40:17.678088+07', 'Xã Bắc Sơn', '12628', 'Xã');
INSERT INTO category."Wards" VALUES (12631, 339, 'system', '2023-07-26 08:40:17.678091+07', 'system', '2023-07-26 08:40:17.678091+07', 'Xã Đông Đô', '12631', 'Xã');
INSERT INTO category."Wards" VALUES (12634, 339, 'system', '2023-07-26 08:40:17.678094+07', 'system', '2023-07-26 08:40:17.678094+07', 'Xã Phúc Khánh', '12634', 'Xã');
INSERT INTO category."Wards" VALUES (12637, 339, 'system', '2023-07-26 08:40:17.678096+07', 'system', '2023-07-26 08:40:17.678097+07', 'Xã Liên Hiệp', '12637', 'Xã');
INSERT INTO category."Wards" VALUES (12640, 339, 'system', '2023-07-26 08:40:17.678099+07', 'system', '2023-07-26 08:40:17.678099+07', 'Xã Tây Đô', '12640', 'Xã');
INSERT INTO category."Wards" VALUES (12643, 339, 'system', '2023-07-26 08:40:17.678102+07', 'system', '2023-07-26 08:40:17.678102+07', 'Xã Thống Nhất', '12643', 'Xã');
INSERT INTO category."Wards" VALUES (12646, 339, 'system', '2023-07-26 08:40:17.678104+07', 'system', '2023-07-26 08:40:17.678104+07', 'Xã Tiến Đức', '12646', 'Xã');
INSERT INTO category."Wards" VALUES (12649, 339, 'system', '2023-07-26 08:40:17.678107+07', 'system', '2023-07-26 08:40:17.678107+07', 'Xã Thái Hưng', '12649', 'Xã');
INSERT INTO category."Wards" VALUES (12652, 339, 'system', '2023-07-26 08:40:17.678109+07', 'system', '2023-07-26 08:40:17.678109+07', 'Xã Thái Phương', '12652', 'Xã');
INSERT INTO category."Wards" VALUES (12655, 339, 'system', '2023-07-26 08:40:17.678112+07', 'system', '2023-07-26 08:40:17.678112+07', 'Xã Hòa Bình', '12655', 'Xã');
INSERT INTO category."Wards" VALUES (12656, 339, 'system', '2023-07-26 08:40:17.678115+07', 'system', '2023-07-26 08:40:17.678115+07', 'Xã Chi Lăng', '12656', 'Xã');
INSERT INTO category."Wards" VALUES (12658, 339, 'system', '2023-07-26 08:40:17.678117+07', 'system', '2023-07-26 08:40:17.678117+07', 'Xã Minh Khai', '12658', 'Xã');
INSERT INTO category."Wards" VALUES (12661, 339, 'system', '2023-07-26 08:40:17.67812+07', 'system', '2023-07-26 08:40:17.67812+07', 'Xã Hồng An', '12661', 'Xã');
INSERT INTO category."Wards" VALUES (12664, 339, 'system', '2023-07-26 08:40:17.678123+07', 'system', '2023-07-26 08:40:17.678123+07', 'Xã Kim Chung', '12664', 'Xã');
INSERT INTO category."Wards" VALUES (12667, 339, 'system', '2023-07-26 08:40:17.678125+07', 'system', '2023-07-26 08:40:17.678125+07', 'Xã Hồng Lĩnh', '12667', 'Xã');
INSERT INTO category."Wards" VALUES (12670, 339, 'system', '2023-07-26 08:40:17.678128+07', 'system', '2023-07-26 08:40:17.678128+07', 'Xã Minh Tân', '12670', 'Xã');
INSERT INTO category."Wards" VALUES (12673, 339, 'system', '2023-07-26 08:40:17.67813+07', 'system', '2023-07-26 08:40:17.67813+07', 'Xã Văn Lang', '12673', 'Xã');
INSERT INTO category."Wards" VALUES (12676, 339, 'system', '2023-07-26 08:40:17.678133+07', 'system', '2023-07-26 08:40:17.678133+07', 'Xã Độc Lập', '12676', 'Xã');
INSERT INTO category."Wards" VALUES (12679, 339, 'system', '2023-07-26 08:40:17.678135+07', 'system', '2023-07-26 08:40:17.678135+07', 'Xã Chí Hòa', '12679', 'Xã');
INSERT INTO category."Wards" VALUES (12682, 339, 'system', '2023-07-26 08:40:17.678138+07', 'system', '2023-07-26 08:40:17.678138+07', 'Xã Minh Hòa', '12682', 'Xã');
INSERT INTO category."Wards" VALUES (12685, 339, 'system', '2023-07-26 08:40:17.67814+07', 'system', '2023-07-26 08:40:17.678141+07', 'Xã Hồng Minh', '12685', 'Xã');
INSERT INTO category."Wards" VALUES (12688, 340, 'system', '2023-07-26 08:40:17.678143+07', 'system', '2023-07-26 08:40:17.678143+07', 'Thị trấn Đông Hưng', '12688', 'Thị trấn');
INSERT INTO category."Wards" VALUES (12691, 340, 'system', '2023-07-26 08:40:17.678146+07', 'system', '2023-07-26 08:40:17.678146+07', 'Xã Đô Lương', '12691', 'Xã');
INSERT INTO category."Wards" VALUES (12694, 340, 'system', '2023-07-26 08:40:17.678149+07', 'system', '2023-07-26 08:40:17.678149+07', 'Xã Đông Phương', '12694', 'Xã');
INSERT INTO category."Wards" VALUES (12697, 340, 'system', '2023-07-26 08:40:17.678151+07', 'system', '2023-07-26 08:40:17.678152+07', 'Xã Liên Giang', '12697', 'Xã');
INSERT INTO category."Wards" VALUES (12700, 340, 'system', '2023-07-26 08:40:17.678154+07', 'system', '2023-07-26 08:40:17.678154+07', 'Xã An Châu', '12700', 'Xã');
INSERT INTO category."Wards" VALUES (12703, 340, 'system', '2023-07-26 08:40:17.678157+07', 'system', '2023-07-26 08:40:17.678157+07', 'Xã Đông Sơn', '12703', 'Xã');
INSERT INTO category."Wards" VALUES (12706, 340, 'system', '2023-07-26 08:40:17.678159+07', 'system', '2023-07-26 08:40:17.678159+07', 'Xã Đông Cường', '12706', 'Xã');
INSERT INTO category."Wards" VALUES (12709, 340, 'system', '2023-07-26 08:40:17.678162+07', 'system', '2023-07-26 08:40:17.678162+07', 'Xã Phú Lương', '12709', 'Xã');
INSERT INTO category."Wards" VALUES (12712, 340, 'system', '2023-07-26 08:40:17.678165+07', 'system', '2023-07-26 08:40:17.678165+07', 'Xã Mê Linh', '12712', 'Xã');
INSERT INTO category."Wards" VALUES (12715, 340, 'system', '2023-07-26 08:40:17.678167+07', 'system', '2023-07-26 08:40:17.678167+07', 'Xã Lô Giang', '12715', 'Xã');
INSERT INTO category."Wards" VALUES (12718, 340, 'system', '2023-07-26 08:40:17.67817+07', 'system', '2023-07-26 08:40:17.67817+07', 'Xã Đông La', '12718', 'Xã');
INSERT INTO category."Wards" VALUES (12721, 340, 'system', '2023-07-26 08:40:17.678173+07', 'system', '2023-07-26 08:40:17.678173+07', 'Xã Minh Tân', '12721', 'Xã');
INSERT INTO category."Wards" VALUES (12724, 340, 'system', '2023-07-26 08:40:17.678176+07', 'system', '2023-07-26 08:40:17.678176+07', 'Xã Đông Xá', '12724', 'Xã');
INSERT INTO category."Wards" VALUES (12727, 340, 'system', '2023-07-26 08:40:17.678178+07', 'system', '2023-07-26 08:40:17.678178+07', 'Xã Chương Dương', '12727', 'Xã');
INSERT INTO category."Wards" VALUES (12730, 340, 'system', '2023-07-26 08:40:17.678181+07', 'system', '2023-07-26 08:40:17.678181+07', 'Xã Nguyên Xá', '12730', 'Xã');
INSERT INTO category."Wards" VALUES (12733, 340, 'system', '2023-07-26 08:40:17.678184+07', 'system', '2023-07-26 08:40:17.678184+07', 'Xã Phong Châu', '12733', 'Xã');
INSERT INTO category."Wards" VALUES (12736, 340, 'system', '2023-07-26 08:40:17.678186+07', 'system', '2023-07-26 08:40:17.678186+07', 'Xã Hợp Tiến', '12736', 'Xã');
INSERT INTO category."Wards" VALUES (12739, 340, 'system', '2023-07-26 08:40:17.678189+07', 'system', '2023-07-26 08:40:17.678189+07', 'Xã Hồng Việt', '12739', 'Xã');
INSERT INTO category."Wards" VALUES (12745, 340, 'system', '2023-07-26 08:40:17.678192+07', 'system', '2023-07-26 08:40:17.678192+07', 'Xã Hà Giang', '12745', 'Xã');
INSERT INTO category."Wards" VALUES (12748, 340, 'system', '2023-07-26 08:40:17.678194+07', 'system', '2023-07-26 08:40:17.678194+07', 'Xã Đông Kinh', '12748', 'Xã');
INSERT INTO category."Wards" VALUES (12751, 340, 'system', '2023-07-26 08:40:17.678197+07', 'system', '2023-07-26 08:40:17.678197+07', 'Xã Đông Hợp', '12751', 'Xã');
INSERT INTO category."Wards" VALUES (12754, 340, 'system', '2023-07-26 08:40:17.6782+07', 'system', '2023-07-26 08:40:17.6782+07', 'Xã Thăng Long', '12754', 'Xã');
INSERT INTO category."Wards" VALUES (12757, 340, 'system', '2023-07-26 08:40:17.678202+07', 'system', '2023-07-26 08:40:17.678202+07', 'Xã Đông Các', '12757', 'Xã');
INSERT INTO category."Wards" VALUES (12760, 340, 'system', '2023-07-26 08:40:17.678205+07', 'system', '2023-07-26 08:40:17.678205+07', 'Xã Phú Châu', '12760', 'Xã');
INSERT INTO category."Wards" VALUES (12763, 340, 'system', '2023-07-26 08:40:17.678207+07', 'system', '2023-07-26 08:40:17.678207+07', 'Xã Liên Hoa', '12763', 'Xã');
INSERT INTO category."Wards" VALUES (12769, 340, 'system', '2023-07-26 08:40:17.67821+07', 'system', '2023-07-26 08:40:17.67821+07', 'Xã Đông Tân', '12769', 'Xã');
INSERT INTO category."Wards" VALUES (12772, 340, 'system', '2023-07-26 08:40:17.678213+07', 'system', '2023-07-26 08:40:17.678213+07', 'Xã Đông Vinh', '12772', 'Xã');
INSERT INTO category."Wards" VALUES (12775, 340, 'system', '2023-07-26 08:40:17.678215+07', 'system', '2023-07-26 08:40:17.678215+07', 'Xã Đông Động', '12775', 'Xã');
INSERT INTO category."Wards" VALUES (12778, 340, 'system', '2023-07-26 08:40:17.678218+07', 'system', '2023-07-26 08:40:17.678218+07', 'Xã Hồng Bạch', '12778', 'Xã');
INSERT INTO category."Wards" VALUES (12784, 340, 'system', '2023-07-26 08:40:17.678221+07', 'system', '2023-07-26 08:40:17.678221+07', 'Xã Trọng Quan', '12784', 'Xã');
INSERT INTO category."Wards" VALUES (12790, 340, 'system', '2023-07-26 08:40:17.678223+07', 'system', '2023-07-26 08:40:17.678223+07', 'Xã Hồng Giang', '12790', 'Xã');
INSERT INTO category."Wards" VALUES (12793, 340, 'system', '2023-07-26 08:40:17.678226+07', 'system', '2023-07-26 08:40:17.678226+07', 'Xã Đông Quan', '12793', 'Xã');
INSERT INTO category."Wards" VALUES (12796, 340, 'system', '2023-07-26 08:40:17.678228+07', 'system', '2023-07-26 08:40:17.678228+07', 'Xã Đông Quang', '12796', 'Xã');
INSERT INTO category."Wards" VALUES (12799, 340, 'system', '2023-07-26 08:40:17.678231+07', 'system', '2023-07-26 08:40:17.678231+07', 'Xã Đông Xuân', '12799', 'Xã');
INSERT INTO category."Wards" VALUES (12802, 340, 'system', '2023-07-26 08:40:17.678233+07', 'system', '2023-07-26 08:40:17.678233+07', 'Xã Đông Á', '12802', 'Xã');
INSERT INTO category."Wards" VALUES (12808, 340, 'system', '2023-07-26 08:40:17.678236+07', 'system', '2023-07-26 08:40:17.678236+07', 'Xã Đông Hoàng', '12808', 'Xã');
INSERT INTO category."Wards" VALUES (12811, 340, 'system', '2023-07-26 08:40:17.678239+07', 'system', '2023-07-26 08:40:17.678239+07', 'Xã Đông Dương', '12811', 'Xã');
INSERT INTO category."Wards" VALUES (12817, 336, 'system', '2023-07-26 08:40:17.677939+07', 'system', '2023-07-26 08:40:17.677939+07', 'Xã Đông Mỹ', '12817', 'Xã');
INSERT INTO category."Wards" VALUES (12820, 336, 'system', '2023-07-26 08:40:17.677942+07', 'system', '2023-07-26 08:40:17.677942+07', 'Xã Đông Thọ', '12820', 'Xã');
INSERT INTO category."Wards" VALUES (12823, 340, 'system', '2023-07-26 08:40:17.678241+07', 'system', '2023-07-26 08:40:17.678242+07', 'Xã Minh Phú', '12823', 'Xã');
INSERT INTO category."Wards" VALUES (12826, 341, 'system', '2023-07-26 08:40:17.678244+07', 'system', '2023-07-26 08:40:17.678244+07', 'Thị trấn Diêm Điền', '12826', 'Thị trấn');
INSERT INTO category."Wards" VALUES (12832, 341, 'system', '2023-07-26 08:40:17.678247+07', 'system', '2023-07-26 08:40:17.678247+07', 'Xã Thụy Trường', '12832', 'Xã');
INSERT INTO category."Wards" VALUES (12841, 341, 'system', '2023-07-26 08:40:17.67825+07', 'system', '2023-07-26 08:40:17.67825+07', 'Xã Hồng Dũng', '12841', 'Xã');
INSERT INTO category."Wards" VALUES (12844, 341, 'system', '2023-07-26 08:40:17.678252+07', 'system', '2023-07-26 08:40:17.678252+07', 'Xã Thụy Quỳnh', '12844', 'Xã');
INSERT INTO category."Wards" VALUES (12847, 341, 'system', '2023-07-26 08:40:17.678255+07', 'system', '2023-07-26 08:40:17.678255+07', 'Xã An Tân', '12847', 'Xã');
INSERT INTO category."Wards" VALUES (12850, 341, 'system', '2023-07-26 08:40:17.678258+07', 'system', '2023-07-26 08:40:17.678258+07', 'Xã Thụy Ninh', '12850', 'Xã');
INSERT INTO category."Wards" VALUES (12853, 341, 'system', '2023-07-26 08:40:17.67826+07', 'system', '2023-07-26 08:40:17.67826+07', 'Xã Thụy Hưng', '12853', 'Xã');
INSERT INTO category."Wards" VALUES (12856, 341, 'system', '2023-07-26 08:40:17.678263+07', 'system', '2023-07-26 08:40:17.678263+07', 'Xã Thụy Việt', '12856', 'Xã');
INSERT INTO category."Wards" VALUES (12859, 341, 'system', '2023-07-26 08:40:17.678265+07', 'system', '2023-07-26 08:40:17.678265+07', 'Xã Thụy Văn', '12859', 'Xã');
INSERT INTO category."Wards" VALUES (12862, 341, 'system', '2023-07-26 08:40:17.678268+07', 'system', '2023-07-26 08:40:17.678269+07', 'Xã Thụy Xuân', '12862', 'Xã');
INSERT INTO category."Wards" VALUES (12865, 341, 'system', '2023-07-26 08:40:17.678284+07', 'system', '2023-07-26 08:40:17.678284+07', 'Xã Dương Phúc', '12865', 'Xã');
INSERT INTO category."Wards" VALUES (12868, 341, 'system', '2023-07-26 08:40:17.678287+07', 'system', '2023-07-26 08:40:17.678287+07', 'Xã Thụy Trình', '12868', 'Xã');
INSERT INTO category."Wards" VALUES (12871, 341, 'system', '2023-07-26 08:40:17.678289+07', 'system', '2023-07-26 08:40:17.67829+07', 'Xã Thụy Bình', '12871', 'Xã');
INSERT INTO category."Wards" VALUES (12874, 341, 'system', '2023-07-26 08:40:17.678292+07', 'system', '2023-07-26 08:40:17.678292+07', 'Xã Thụy Chính', '12874', 'Xã');
INSERT INTO category."Wards" VALUES (12877, 341, 'system', '2023-07-26 08:40:17.678295+07', 'system', '2023-07-26 08:40:17.678295+07', 'Xã Thụy Dân', '12877', 'Xã');
INSERT INTO category."Wards" VALUES (12880, 341, 'system', '2023-07-26 08:40:17.678297+07', 'system', '2023-07-26 08:40:17.678298+07', 'Xã Thụy Hải', '12880', 'Xã');
INSERT INTO category."Wards" VALUES (12889, 341, 'system', '2023-07-26 08:40:17.6783+07', 'system', '2023-07-26 08:40:17.6783+07', 'Xã Thụy Liên', '12889', 'Xã');
INSERT INTO category."Wards" VALUES (12892, 341, 'system', '2023-07-26 08:40:17.678303+07', 'system', '2023-07-26 08:40:17.678303+07', 'Xã Thụy Duyên', '12892', 'Xã');
INSERT INTO category."Wards" VALUES (12898, 341, 'system', '2023-07-26 08:40:17.678305+07', 'system', '2023-07-26 08:40:17.678305+07', 'Xã Thụy Thanh', '12898', 'Xã');
INSERT INTO category."Wards" VALUES (12901, 341, 'system', '2023-07-26 08:40:17.678308+07', 'system', '2023-07-26 08:40:17.678308+07', 'Xã Thụy Sơn', '12901', 'Xã');
INSERT INTO category."Wards" VALUES (12904, 341, 'system', '2023-07-26 08:40:17.67831+07', 'system', '2023-07-26 08:40:17.67831+07', 'Xã Thụy Phong', '12904', 'Xã');
INSERT INTO category."Wards" VALUES (12907, 341, 'system', '2023-07-26 08:40:17.678313+07', 'system', '2023-07-26 08:40:17.678313+07', 'Xã Thái Thượng', '12907', 'Xã');
INSERT INTO category."Wards" VALUES (12910, 341, 'system', '2023-07-26 08:40:17.678316+07', 'system', '2023-07-26 08:40:17.678316+07', 'Xã Thái Nguyên', '12910', 'Xã');
INSERT INTO category."Wards" VALUES (12916, 341, 'system', '2023-07-26 08:40:17.678318+07', 'system', '2023-07-26 08:40:17.678318+07', 'Xã Dương Hồng  Thủy', '12916', 'Xã');
INSERT INTO category."Wards" VALUES (12919, 341, 'system', '2023-07-26 08:40:17.678321+07', 'system', '2023-07-26 08:40:17.678321+07', 'Xã Thái Giang', '12919', 'Xã');
INSERT INTO category."Wards" VALUES (12922, 341, 'system', '2023-07-26 08:40:17.678324+07', 'system', '2023-07-26 08:40:17.678324+07', 'Xã Hòa An', '12922', 'Xã');
INSERT INTO category."Wards" VALUES (12925, 341, 'system', '2023-07-26 08:40:17.678326+07', 'system', '2023-07-26 08:40:17.678327+07', 'Xã Sơn Hà', '12925', 'Xã');
INSERT INTO category."Wards" VALUES (12934, 341, 'system', '2023-07-26 08:40:17.678329+07', 'system', '2023-07-26 08:40:17.678329+07', 'Xã Thái Phúc', '12934', 'Xã');
INSERT INTO category."Wards" VALUES (12937, 341, 'system', '2023-07-26 08:40:17.678332+07', 'system', '2023-07-26 08:40:17.678332+07', 'Xã Thái Hưng', '12937', 'Xã');
INSERT INTO category."Wards" VALUES (12940, 341, 'system', '2023-07-26 08:40:17.678334+07', 'system', '2023-07-26 08:40:17.678334+07', 'Xã Thái Đô', '12940', 'Xã');
INSERT INTO category."Wards" VALUES (12943, 341, 'system', '2023-07-26 08:40:17.678337+07', 'system', '2023-07-26 08:40:17.678337+07', 'Xã Thái Xuyên', '12943', 'Xã');
INSERT INTO category."Wards" VALUES (12949, 341, 'system', '2023-07-26 08:40:17.67835+07', 'system', '2023-07-26 08:40:17.67835+07', 'Xã  Mỹ Lộc', '12949', 'Xã');
INSERT INTO category."Wards" VALUES (12958, 341, 'system', '2023-07-26 08:40:17.678354+07', 'system', '2023-07-26 08:40:17.678354+07', 'Xã Tân Học', '12958', 'Xã');
INSERT INTO category."Wards" VALUES (12961, 341, 'system', '2023-07-26 08:40:17.678356+07', 'system', '2023-07-26 08:40:17.678356+07', 'Xã Thái Thịnh', '12961', 'Xã');
INSERT INTO category."Wards" VALUES (12964, 341, 'system', '2023-07-26 08:40:17.678359+07', 'system', '2023-07-26 08:40:17.678359+07', 'Xã Thuần Thành', '12964', 'Xã');
INSERT INTO category."Wards" VALUES (12967, 341, 'system', '2023-07-26 08:40:17.678361+07', 'system', '2023-07-26 08:40:17.678361+07', 'Xã Thái Thọ', '12967', 'Xã');
INSERT INTO category."Wards" VALUES (12970, 342, 'system', '2023-07-26 08:40:17.678364+07', 'system', '2023-07-26 08:40:17.678364+07', 'Thị trấn Tiền Hải', '12970', 'Thị trấn');
INSERT INTO category."Wards" VALUES (12976, 342, 'system', '2023-07-26 08:40:17.678367+07', 'system', '2023-07-26 08:40:17.678367+07', 'Xã Đông Trà', '12976', 'Xã');
INSERT INTO category."Wards" VALUES (12979, 342, 'system', '2023-07-26 08:40:17.678369+07', 'system', '2023-07-26 08:40:17.678369+07', 'Xã Đông Long', '12979', 'Xã');
INSERT INTO category."Wards" VALUES (12982, 342, 'system', '2023-07-26 08:40:17.678372+07', 'system', '2023-07-26 08:40:17.678372+07', 'Xã Đông Quí', '12982', 'Xã');
INSERT INTO category."Wards" VALUES (12985, 342, 'system', '2023-07-26 08:40:17.678375+07', 'system', '2023-07-26 08:40:17.678375+07', 'Xã Vũ Lăng', '12985', 'Xã');
INSERT INTO category."Wards" VALUES (12988, 342, 'system', '2023-07-26 08:40:17.678377+07', 'system', '2023-07-26 08:40:17.678377+07', 'Xã Đông Xuyên', '12988', 'Xã');
INSERT INTO category."Wards" VALUES (12991, 342, 'system', '2023-07-26 08:40:17.67838+07', 'system', '2023-07-26 08:40:17.67838+07', 'Xã Tây Lương', '12991', 'Xã');
INSERT INTO category."Wards" VALUES (12994, 342, 'system', '2023-07-26 08:40:17.678382+07', 'system', '2023-07-26 08:40:17.678383+07', 'Xã Tây Ninh', '12994', 'Xã');
INSERT INTO category."Wards" VALUES (12997, 342, 'system', '2023-07-26 08:40:17.678385+07', 'system', '2023-07-26 08:40:17.678385+07', 'Xã Đông Trung', '12997', 'Xã');
INSERT INTO category."Wards" VALUES (13000, 342, 'system', '2023-07-26 08:40:17.678388+07', 'system', '2023-07-26 08:40:17.678388+07', 'Xã Đông Hoàng', '13000', 'Xã');
INSERT INTO category."Wards" VALUES (13003, 342, 'system', '2023-07-26 08:40:17.678392+07', 'system', '2023-07-26 08:40:17.678392+07', 'Xã Đông Minh', '13003', 'Xã');
INSERT INTO category."Wards" VALUES (13009, 342, 'system', '2023-07-26 08:40:17.678394+07', 'system', '2023-07-26 08:40:17.678394+07', 'Xã Đông Phong', '13009', 'Xã');
INSERT INTO category."Wards" VALUES (13012, 342, 'system', '2023-07-26 08:40:17.678397+07', 'system', '2023-07-26 08:40:17.678397+07', 'Xã An Ninh', '13012', 'Xã');
INSERT INTO category."Wards" VALUES (13018, 342, 'system', '2023-07-26 08:40:17.678399+07', 'system', '2023-07-26 08:40:17.678399+07', 'Xã Đông Cơ', '13018', 'Xã');
INSERT INTO category."Wards" VALUES (13021, 342, 'system', '2023-07-26 08:40:17.678402+07', 'system', '2023-07-26 08:40:17.678402+07', 'Xã Tây Giang', '13021', 'Xã');
INSERT INTO category."Wards" VALUES (13024, 342, 'system', '2023-07-26 08:40:17.678404+07', 'system', '2023-07-26 08:40:17.678404+07', 'Xã Đông Lâm', '13024', 'Xã');
INSERT INTO category."Wards" VALUES (13027, 342, 'system', '2023-07-26 08:40:17.678407+07', 'system', '2023-07-26 08:40:17.678407+07', 'Xã Phương Công', '13027', 'Xã');
INSERT INTO category."Wards" VALUES (13030, 342, 'system', '2023-07-26 08:40:17.678409+07', 'system', '2023-07-26 08:40:17.67841+07', 'Xã Tây Phong', '13030', 'Xã');
INSERT INTO category."Wards" VALUES (13033, 342, 'system', '2023-07-26 08:40:17.678412+07', 'system', '2023-07-26 08:40:17.678412+07', 'Xã Tây Tiến', '13033', 'Xã');
INSERT INTO category."Wards" VALUES (13036, 342, 'system', '2023-07-26 08:40:17.678415+07', 'system', '2023-07-26 08:40:17.678415+07', 'Xã Nam Cường', '13036', 'Xã');
INSERT INTO category."Wards" VALUES (13039, 342, 'system', '2023-07-26 08:40:17.678417+07', 'system', '2023-07-26 08:40:17.678417+07', 'Xã Vân Trường', '13039', 'Xã');
INSERT INTO category."Wards" VALUES (13042, 342, 'system', '2023-07-26 08:40:17.67842+07', 'system', '2023-07-26 08:40:17.67842+07', 'Xã Nam Thắng', '13042', 'Xã');
INSERT INTO category."Wards" VALUES (13045, 342, 'system', '2023-07-26 08:40:17.678423+07', 'system', '2023-07-26 08:40:17.678423+07', 'Xã Nam Chính', '13045', 'Xã');
INSERT INTO category."Wards" VALUES (13048, 342, 'system', '2023-07-26 08:40:17.678425+07', 'system', '2023-07-26 08:40:17.678425+07', 'Xã Bắc Hải', '13048', 'Xã');
INSERT INTO category."Wards" VALUES (13051, 342, 'system', '2023-07-26 08:40:17.678428+07', 'system', '2023-07-26 08:40:17.678428+07', 'Xã Nam Thịnh', '13051', 'Xã');
INSERT INTO category."Wards" VALUES (13054, 342, 'system', '2023-07-26 08:40:17.678431+07', 'system', '2023-07-26 08:40:17.678431+07', 'Xã Nam Hà', '13054', 'Xã');
INSERT INTO category."Wards" VALUES (13057, 342, 'system', '2023-07-26 08:40:17.678433+07', 'system', '2023-07-26 08:40:17.678433+07', 'Xã Nam Thanh', '13057', 'Xã');
INSERT INTO category."Wards" VALUES (13060, 342, 'system', '2023-07-26 08:40:17.678436+07', 'system', '2023-07-26 08:40:17.678436+07', 'Xã Nam Trung', '13060', 'Xã');
INSERT INTO category."Wards" VALUES (13063, 342, 'system', '2023-07-26 08:40:17.678438+07', 'system', '2023-07-26 08:40:17.678438+07', 'Xã Nam Hồng', '13063', 'Xã');
INSERT INTO category."Wards" VALUES (13066, 342, 'system', '2023-07-26 08:40:17.678441+07', 'system', '2023-07-26 08:40:17.678441+07', 'Xã Nam Hưng', '13066', 'Xã');
INSERT INTO category."Wards" VALUES (13069, 342, 'system', '2023-07-26 08:40:17.678443+07', 'system', '2023-07-26 08:40:17.678443+07', 'Xã Nam Hải', '13069', 'Xã');
INSERT INTO category."Wards" VALUES (13072, 342, 'system', '2023-07-26 08:40:17.678446+07', 'system', '2023-07-26 08:40:17.678446+07', 'Xã Nam Phú', '13072', 'Xã');
INSERT INTO category."Wards" VALUES (13075, 343, 'system', '2023-07-26 08:40:17.678448+07', 'system', '2023-07-26 08:40:17.678448+07', 'Thị trấn Kiến Xương', '13075', 'Thị trấn');
INSERT INTO category."Wards" VALUES (13078, 343, 'system', '2023-07-26 08:40:17.678451+07', 'system', '2023-07-26 08:40:17.678451+07', 'Xã Trà Giang', '13078', 'Xã');
INSERT INTO category."Wards" VALUES (13081, 343, 'system', '2023-07-26 08:40:17.678453+07', 'system', '2023-07-26 08:40:17.678454+07', 'Xã Quốc Tuấn', '13081', 'Xã');
INSERT INTO category."Wards" VALUES (13084, 336, 'system', '2023-07-26 08:40:17.677944+07', 'system', '2023-07-26 08:40:17.677944+07', 'Xã Vũ Đông', '13084', 'Xã');
INSERT INTO category."Wards" VALUES (13087, 343, 'system', '2023-07-26 08:40:17.678456+07', 'system', '2023-07-26 08:40:17.678456+07', 'Xã An Bình', '13087', 'Xã');
INSERT INTO category."Wards" VALUES (13090, 343, 'system', '2023-07-26 08:40:17.678459+07', 'system', '2023-07-26 08:40:17.678459+07', 'Xã Tây Sơn', '13090', 'Xã');
INSERT INTO category."Wards" VALUES (13093, 343, 'system', '2023-07-26 08:40:17.678461+07', 'system', '2023-07-26 08:40:17.678461+07', 'Xã Hồng Thái', '13093', 'Xã');
INSERT INTO category."Wards" VALUES (13096, 343, 'system', '2023-07-26 08:40:17.678464+07', 'system', '2023-07-26 08:40:17.678464+07', 'Xã Bình Nguyên', '13096', 'Xã');
INSERT INTO category."Wards" VALUES (13102, 343, 'system', '2023-07-26 08:40:17.678467+07', 'system', '2023-07-26 08:40:17.678467+07', 'Xã Lê Lợi', '13102', 'Xã');
INSERT INTO category."Wards" VALUES (13108, 336, 'system', '2023-07-26 08:40:17.677947+07', 'system', '2023-07-26 08:40:17.677947+07', 'Xã Vũ Lạc', '13108', 'Xã');
INSERT INTO category."Wards" VALUES (13111, 343, 'system', '2023-07-26 08:40:17.678469+07', 'system', '2023-07-26 08:40:17.678469+07', 'Xã Vũ Lễ', '13111', 'Xã');
INSERT INTO category."Wards" VALUES (13114, 343, 'system', '2023-07-26 08:40:17.678472+07', 'system', '2023-07-26 08:40:17.678472+07', 'Xã Thanh Tân', '13114', 'Xã');
INSERT INTO category."Wards" VALUES (13117, 343, 'system', '2023-07-26 08:40:17.678474+07', 'system', '2023-07-26 08:40:17.678474+07', 'Xã Thượng Hiền', '13117', 'Xã');
INSERT INTO category."Wards" VALUES (13120, 343, 'system', '2023-07-26 08:40:17.678477+07', 'system', '2023-07-26 08:40:17.678477+07', 'Xã Nam Cao', '13120', 'Xã');
INSERT INTO category."Wards" VALUES (13123, 343, 'system', '2023-07-26 08:40:17.67848+07', 'system', '2023-07-26 08:40:17.67848+07', 'Xã Đình Phùng', '13123', 'Xã');
INSERT INTO category."Wards" VALUES (13126, 343, 'system', '2023-07-26 08:40:17.678482+07', 'system', '2023-07-26 08:40:17.678482+07', 'Xã Vũ Ninh', '13126', 'Xã');
INSERT INTO category."Wards" VALUES (13129, 343, 'system', '2023-07-26 08:40:17.678485+07', 'system', '2023-07-26 08:40:17.678485+07', 'Xã Vũ An', '13129', 'Xã');
INSERT INTO category."Wards" VALUES (13132, 343, 'system', '2023-07-26 08:40:17.678488+07', 'system', '2023-07-26 08:40:17.678488+07', 'Xã Quang Lịch', '13132', 'Xã');
INSERT INTO category."Wards" VALUES (13135, 343, 'system', '2023-07-26 08:40:17.678491+07', 'system', '2023-07-26 08:40:17.678491+07', 'Xã Hòa Bình', '13135', 'Xã');
INSERT INTO category."Wards" VALUES (13138, 343, 'system', '2023-07-26 08:40:17.678493+07', 'system', '2023-07-26 08:40:17.678493+07', 'Xã Bình Minh', '13138', 'Xã');
INSERT INTO category."Wards" VALUES (13141, 343, 'system', '2023-07-26 08:40:17.678496+07', 'system', '2023-07-26 08:40:17.678496+07', 'Xã Vũ Quí', '13141', 'Xã');
INSERT INTO category."Wards" VALUES (13144, 343, 'system', '2023-07-26 08:40:17.678498+07', 'system', '2023-07-26 08:40:17.678498+07', 'Xã Quang Bình', '13144', 'Xã');
INSERT INTO category."Wards" VALUES (13150, 343, 'system', '2023-07-26 08:40:17.678501+07', 'system', '2023-07-26 08:40:17.678501+07', 'Xã Vũ Trung', '13150', 'Xã');
INSERT INTO category."Wards" VALUES (13153, 343, 'system', '2023-07-26 08:40:17.678503+07', 'system', '2023-07-26 08:40:17.678503+07', 'Xã Vũ Thắng', '13153', 'Xã');
INSERT INTO category."Wards" VALUES (13156, 343, 'system', '2023-07-26 08:40:17.678506+07', 'system', '2023-07-26 08:40:17.678506+07', 'Xã Vũ Công', '13156', 'Xã');
INSERT INTO category."Wards" VALUES (13159, 343, 'system', '2023-07-26 08:40:17.678509+07', 'system', '2023-07-26 08:40:17.678509+07', 'Xã Vũ Hòa', '13159', 'Xã');
INSERT INTO category."Wards" VALUES (13162, 343, 'system', '2023-07-26 08:40:17.678513+07', 'system', '2023-07-26 08:40:17.678513+07', 'Xã Quang Minh', '13162', 'Xã');
INSERT INTO category."Wards" VALUES (13165, 343, 'system', '2023-07-26 08:40:17.678517+07', 'system', '2023-07-26 08:40:17.678517+07', 'Xã Quang Trung', '13165', 'Xã');
INSERT INTO category."Wards" VALUES (13171, 343, 'system', '2023-07-26 08:40:17.678522+07', 'system', '2023-07-26 08:40:17.678522+07', 'Xã Minh Quang', '13171', 'Xã');
INSERT INTO category."Wards" VALUES (13174, 343, 'system', '2023-07-26 08:40:17.678526+07', 'system', '2023-07-26 08:40:17.678527+07', 'Xã Vũ Bình', '13174', 'Xã');
INSERT INTO category."Wards" VALUES (13177, 343, 'system', '2023-07-26 08:40:17.678531+07', 'system', '2023-07-26 08:40:17.678531+07', 'Xã Minh Tân', '13177', 'Xã');
INSERT INTO category."Wards" VALUES (13180, 343, 'system', '2023-07-26 08:40:17.678535+07', 'system', '2023-07-26 08:40:17.678535+07', 'Xã Nam Bình', '13180', 'Xã');
INSERT INTO category."Wards" VALUES (13183, 343, 'system', '2023-07-26 08:40:17.678539+07', 'system', '2023-07-26 08:40:17.67854+07', 'Xã Bình Thanh', '13183', 'Xã');
INSERT INTO category."Wards" VALUES (13186, 343, 'system', '2023-07-26 08:40:17.678542+07', 'system', '2023-07-26 08:40:17.678542+07', 'Xã Bình Định', '13186', 'Xã');
INSERT INTO category."Wards" VALUES (13189, 343, 'system', '2023-07-26 08:40:17.678545+07', 'system', '2023-07-26 08:40:17.678545+07', 'Xã Hồng Tiến', '13189', 'Xã');
INSERT INTO category."Wards" VALUES (13192, 344, 'system', '2023-07-26 08:40:17.678547+07', 'system', '2023-07-26 08:40:17.678547+07', 'Thị trấn Vũ Thư', '13192', 'Thị trấn');
INSERT INTO category."Wards" VALUES (13195, 344, 'system', '2023-07-26 08:40:17.67855+07', 'system', '2023-07-26 08:40:17.67855+07', 'Xã Hồng Lý', '13195', 'Xã');
INSERT INTO category."Wards" VALUES (13198, 344, 'system', '2023-07-26 08:40:17.678553+07', 'system', '2023-07-26 08:40:17.678553+07', 'Xã Đồng Thanh', '13198', 'Xã');
INSERT INTO category."Wards" VALUES (13201, 344, 'system', '2023-07-26 08:40:17.678556+07', 'system', '2023-07-26 08:40:17.678556+07', 'Xã Xuân Hòa', '13201', 'Xã');
INSERT INTO category."Wards" VALUES (13204, 344, 'system', '2023-07-26 08:40:17.678558+07', 'system', '2023-07-26 08:40:17.678558+07', 'Xã Hiệp Hòa', '13204', 'Xã');
INSERT INTO category."Wards" VALUES (13207, 344, 'system', '2023-07-26 08:40:17.67856+07', 'system', '2023-07-26 08:40:17.67856+07', 'Xã Phúc Thành', '13207', 'Xã');
INSERT INTO category."Wards" VALUES (13210, 344, 'system', '2023-07-26 08:40:17.678563+07', 'system', '2023-07-26 08:40:17.678563+07', 'Xã Tân Phong', '13210', 'Xã');
INSERT INTO category."Wards" VALUES (13213, 344, 'system', '2023-07-26 08:40:17.678566+07', 'system', '2023-07-26 08:40:17.678566+07', 'Xã Song Lãng', '13213', 'Xã');
INSERT INTO category."Wards" VALUES (13216, 344, 'system', '2023-07-26 08:40:17.678568+07', 'system', '2023-07-26 08:40:17.678568+07', 'Xã Tân Hòa', '13216', 'Xã');
INSERT INTO category."Wards" VALUES (13219, 344, 'system', '2023-07-26 08:40:17.678571+07', 'system', '2023-07-26 08:40:17.678571+07', 'Xã Việt Hùng', '13219', 'Xã');
INSERT INTO category."Wards" VALUES (13222, 344, 'system', '2023-07-26 08:40:17.678573+07', 'system', '2023-07-26 08:40:17.678574+07', 'Xã Minh Lãng', '13222', 'Xã');
INSERT INTO category."Wards" VALUES (13225, 336, 'system', '2023-07-26 08:40:17.67795+07', 'system', '2023-07-26 08:40:17.67795+07', 'Xã Tân Bình', '13225', 'Xã');
INSERT INTO category."Wards" VALUES (13228, 344, 'system', '2023-07-26 08:40:17.678576+07', 'system', '2023-07-26 08:40:17.678576+07', 'Xã Minh Khai', '13228', 'Xã');
INSERT INTO category."Wards" VALUES (13231, 344, 'system', '2023-07-26 08:40:17.678578+07', 'system', '2023-07-26 08:40:17.678579+07', 'Xã Dũng Nghĩa', '13231', 'Xã');
INSERT INTO category."Wards" VALUES (13234, 344, 'system', '2023-07-26 08:40:17.678581+07', 'system', '2023-07-26 08:40:17.678581+07', 'Xã Minh Quang', '13234', 'Xã');
INSERT INTO category."Wards" VALUES (13237, 344, 'system', '2023-07-26 08:40:17.678584+07', 'system', '2023-07-26 08:40:17.678584+07', 'Xã Tam Quang', '13237', 'Xã');
INSERT INTO category."Wards" VALUES (13240, 344, 'system', '2023-07-26 08:40:17.678586+07', 'system', '2023-07-26 08:40:17.678586+07', 'Xã Tân Lập', '13240', 'Xã');
INSERT INTO category."Wards" VALUES (13243, 344, 'system', '2023-07-26 08:40:17.678589+07', 'system', '2023-07-26 08:40:17.678589+07', 'Xã Bách Thuận', '13243', 'Xã');
INSERT INTO category."Wards" VALUES (13246, 344, 'system', '2023-07-26 08:40:17.678592+07', 'system', '2023-07-26 08:40:17.678592+07', 'Xã Tự Tân', '13246', 'Xã');
INSERT INTO category."Wards" VALUES (13249, 344, 'system', '2023-07-26 08:40:17.678595+07', 'system', '2023-07-26 08:40:17.678595+07', 'Xã Song An', '13249', 'Xã');
INSERT INTO category."Wards" VALUES (13252, 344, 'system', '2023-07-26 08:40:17.678598+07', 'system', '2023-07-26 08:40:17.678598+07', 'Xã Trung An', '13252', 'Xã');
INSERT INTO category."Wards" VALUES (13255, 344, 'system', '2023-07-26 08:40:17.6786+07', 'system', '2023-07-26 08:40:17.6786+07', 'Xã Vũ Hội', '13255', 'Xã');
INSERT INTO category."Wards" VALUES (13258, 344, 'system', '2023-07-26 08:40:17.678603+07', 'system', '2023-07-26 08:40:17.678603+07', 'Xã Hòa Bình', '13258', 'Xã');
INSERT INTO category."Wards" VALUES (13261, 344, 'system', '2023-07-26 08:40:17.678605+07', 'system', '2023-07-26 08:40:17.678605+07', 'Xã Nguyên Xá', '13261', 'Xã');
INSERT INTO category."Wards" VALUES (13264, 344, 'system', '2023-07-26 08:40:17.678608+07', 'system', '2023-07-26 08:40:17.678608+07', 'Xã Việt Thuận', '13264', 'Xã');
INSERT INTO category."Wards" VALUES (13267, 344, 'system', '2023-07-26 08:40:17.678611+07', 'system', '2023-07-26 08:40:17.678611+07', 'Xã Vũ Vinh', '13267', 'Xã');
INSERT INTO category."Wards" VALUES (13270, 344, 'system', '2023-07-26 08:40:17.678613+07', 'system', '2023-07-26 08:40:17.678613+07', 'Xã Vũ Đoài', '13270', 'Xã');
INSERT INTO category."Wards" VALUES (13273, 344, 'system', '2023-07-26 08:40:17.678616+07', 'system', '2023-07-26 08:40:17.678616+07', 'Xã Vũ Tiến', '13273', 'Xã');
INSERT INTO category."Wards" VALUES (13276, 344, 'system', '2023-07-26 08:40:17.678619+07', 'system', '2023-07-26 08:40:17.678619+07', 'Xã Vũ Vân', '13276', 'Xã');
INSERT INTO category."Wards" VALUES (13279, 344, 'system', '2023-07-26 08:40:17.678621+07', 'system', '2023-07-26 08:40:17.678621+07', 'Xã Duy Nhất', '13279', 'Xã');
INSERT INTO category."Wards" VALUES (13282, 344, 'system', '2023-07-26 08:40:17.678624+07', 'system', '2023-07-26 08:40:17.678624+07', 'Xã Hồng Phong', '13282', 'Xã');
INSERT INTO category."Wards" VALUES (13285, 347, 'system', '2023-07-26 08:40:17.678626+07', 'system', '2023-07-26 08:40:17.678627+07', 'Phường Quang Trung', '13285', 'Phường');
INSERT INTO category."Wards" VALUES (13288, 347, 'system', '2023-07-26 08:40:17.678629+07', 'system', '2023-07-26 08:40:17.678629+07', 'Phường Lương Khánh Thiện', '13288', 'Phường');
INSERT INTO category."Wards" VALUES (13291, 347, 'system', '2023-07-26 08:40:17.678632+07', 'system', '2023-07-26 08:40:17.678632+07', 'Phường Lê Hồng Phong', '13291', 'Phường');
INSERT INTO category."Wards" VALUES (13294, 347, 'system', '2023-07-26 08:40:17.678635+07', 'system', '2023-07-26 08:40:17.678635+07', 'Phường Minh Khai', '13294', 'Phường');
INSERT INTO category."Wards" VALUES (13297, 347, 'system', '2023-07-26 08:40:17.678638+07', 'system', '2023-07-26 08:40:17.678638+07', 'Phường Hai Bà Trưng', '13297', 'Phường');
INSERT INTO category."Wards" VALUES (13300, 347, 'system', '2023-07-26 08:40:17.678641+07', 'system', '2023-07-26 08:40:17.678641+07', 'Phường Trần Hưng Đạo', '13300', 'Phường');
INSERT INTO category."Wards" VALUES (13303, 347, 'system', '2023-07-26 08:40:17.678644+07', 'system', '2023-07-26 08:40:17.678644+07', 'Phường Lam Hạ', '13303', 'Phường');
INSERT INTO category."Wards" VALUES (13306, 347, 'system', '2023-07-26 08:40:17.678646+07', 'system', '2023-07-26 08:40:17.678646+07', 'Xã Phù Vân', '13306', 'Xã');
INSERT INTO category."Wards" VALUES (13309, 347, 'system', '2023-07-26 08:40:17.678649+07', 'system', '2023-07-26 08:40:17.678649+07', 'Phường Liêm Chính', '13309', 'Phường');
INSERT INTO category."Wards" VALUES (13312, 347, 'system', '2023-07-26 08:40:17.678651+07', 'system', '2023-07-26 08:40:17.678651+07', 'Xã Liêm Chung', '13312', 'Xã');
INSERT INTO category."Wards" VALUES (13315, 347, 'system', '2023-07-26 08:40:17.678654+07', 'system', '2023-07-26 08:40:17.678654+07', 'Phường Thanh Châu', '13315', 'Phường');
INSERT INTO category."Wards" VALUES (13318, 347, 'system', '2023-07-26 08:40:17.678657+07', 'system', '2023-07-26 08:40:17.678657+07', 'Phường Châu Sơn', '13318', 'Phường');
INSERT INTO category."Wards" VALUES (13321, 349, 'system', '2023-07-26 08:40:17.678683+07', 'system', '2023-07-26 08:40:17.678683+07', 'Phường Đồng Văn', '13321', 'Phường');
INSERT INTO category."Wards" VALUES (13324, 349, 'system', '2023-07-26 08:40:17.678686+07', 'system', '2023-07-26 08:40:17.678686+07', 'Phường Hòa Mạc', '13324', 'Phường');
INSERT INTO category."Wards" VALUES (13327, 349, 'system', '2023-07-26 08:40:17.678689+07', 'system', '2023-07-26 08:40:17.678689+07', 'Xã Mộc Bắc', '13327', 'Xã');
INSERT INTO category."Wards" VALUES (13330, 349, 'system', '2023-07-26 08:40:17.678692+07', 'system', '2023-07-26 08:40:17.678692+07', 'Phường Châu Giang', '13330', 'Phường');
INSERT INTO category."Wards" VALUES (13333, 349, 'system', '2023-07-26 08:40:17.678695+07', 'system', '2023-07-26 08:40:17.678695+07', 'Phường Bạch Thượng', '13333', 'Phường');
INSERT INTO category."Wards" VALUES (13336, 349, 'system', '2023-07-26 08:40:17.678698+07', 'system', '2023-07-26 08:40:17.678698+07', 'Phường Duy Minh', '13336', 'Phường');
INSERT INTO category."Wards" VALUES (13339, 349, 'system', '2023-07-26 08:40:17.678701+07', 'system', '2023-07-26 08:40:17.678701+07', 'Xã Mộc Nam', '13339', 'Xã');
INSERT INTO category."Wards" VALUES (13342, 349, 'system', '2023-07-26 08:40:17.678703+07', 'system', '2023-07-26 08:40:17.678703+07', 'Phường Duy Hải', '13342', 'Phường');
INSERT INTO category."Wards" VALUES (13345, 349, 'system', '2023-07-26 08:40:17.678706+07', 'system', '2023-07-26 08:40:17.678706+07', 'Xã Chuyên Ngoại', '13345', 'Xã');
INSERT INTO category."Wards" VALUES (13348, 349, 'system', '2023-07-26 08:40:17.678708+07', 'system', '2023-07-26 08:40:17.678708+07', 'Phường Yên Bắc', '13348', 'Phường');
INSERT INTO category."Wards" VALUES (13351, 349, 'system', '2023-07-26 08:40:17.678711+07', 'system', '2023-07-26 08:40:17.678711+07', 'Xã Trác Văn', '13351', 'Xã');
INSERT INTO category."Wards" VALUES (13354, 349, 'system', '2023-07-26 08:40:17.678714+07', 'system', '2023-07-26 08:40:17.678714+07', 'Phường Tiên Nội', '13354', 'Phường');
INSERT INTO category."Wards" VALUES (13357, 349, 'system', '2023-07-26 08:40:17.678717+07', 'system', '2023-07-26 08:40:17.678717+07', 'Phường Hoàng Đông', '13357', 'Phường');
INSERT INTO category."Wards" VALUES (13360, 349, 'system', '2023-07-26 08:40:17.67872+07', 'system', '2023-07-26 08:40:17.67872+07', 'Xã Yên Nam', '13360', 'Xã');
INSERT INTO category."Wards" VALUES (13363, 349, 'system', '2023-07-26 08:40:17.678722+07', 'system', '2023-07-26 08:40:17.678722+07', 'Xã Tiên Ngoại', '13363', 'Xã');
INSERT INTO category."Wards" VALUES (13366, 347, 'system', '2023-07-26 08:40:17.67866+07', 'system', '2023-07-26 08:40:17.67866+07', 'Xã Tiên Tân', '13366', 'Xã');
INSERT INTO category."Wards" VALUES (13369, 349, 'system', '2023-07-26 08:40:17.678725+07', 'system', '2023-07-26 08:40:17.678725+07', 'Xã Tiên Sơn', '13369', 'Xã');
INSERT INTO category."Wards" VALUES (13372, 347, 'system', '2023-07-26 08:40:17.678662+07', 'system', '2023-07-26 08:40:17.678662+07', 'Xã Tiên Hiệp', '13372', 'Xã');
INSERT INTO category."Wards" VALUES (13381, 347, 'system', '2023-07-26 08:40:17.678665+07', 'system', '2023-07-26 08:40:17.678665+07', 'Xã Tiên Hải', '13381', 'Xã');
INSERT INTO category."Wards" VALUES (13384, 350, 'system', '2023-07-26 08:40:17.678728+07', 'system', '2023-07-26 08:40:17.678728+07', 'Thị trấn Quế', '13384', 'Thị trấn');
INSERT INTO category."Wards" VALUES (13387, 350, 'system', '2023-07-26 08:40:17.67873+07', 'system', '2023-07-26 08:40:17.67873+07', 'Xã Nguyễn Úy', '13387', 'Xã');
INSERT INTO category."Wards" VALUES (13390, 350, 'system', '2023-07-26 08:40:17.678733+07', 'system', '2023-07-26 08:40:17.678733+07', 'Xã Đại Cương', '13390', 'Xã');
INSERT INTO category."Wards" VALUES (13393, 350, 'system', '2023-07-26 08:40:17.678736+07', 'system', '2023-07-26 08:40:17.678736+07', 'Xã Lê Hồ', '13393', 'Xã');
INSERT INTO category."Wards" VALUES (13396, 350, 'system', '2023-07-26 08:40:17.678738+07', 'system', '2023-07-26 08:40:17.678738+07', 'Xã Tượng Lĩnh', '13396', 'Xã');
INSERT INTO category."Wards" VALUES (13399, 350, 'system', '2023-07-26 08:40:17.678741+07', 'system', '2023-07-26 08:40:17.678741+07', 'Xã Nhật Tựu', '13399', 'Xã');
INSERT INTO category."Wards" VALUES (13402, 350, 'system', '2023-07-26 08:40:17.678744+07', 'system', '2023-07-26 08:40:17.678744+07', 'Xã Nhật Tân', '13402', 'Xã');
INSERT INTO category."Wards" VALUES (13405, 350, 'system', '2023-07-26 08:40:17.678747+07', 'system', '2023-07-26 08:40:17.678747+07', 'Xã Đồng Hóa', '13405', 'Xã');
INSERT INTO category."Wards" VALUES (13408, 350, 'system', '2023-07-26 08:40:17.678749+07', 'system', '2023-07-26 08:40:17.678749+07', 'Xã Hoàng Tây', '13408', 'Xã');
INSERT INTO category."Wards" VALUES (13411, 350, 'system', '2023-07-26 08:40:17.678752+07', 'system', '2023-07-26 08:40:17.678752+07', 'Xã Tân Sơn', '13411', 'Xã');
INSERT INTO category."Wards" VALUES (13414, 350, 'system', '2023-07-26 08:40:17.678755+07', 'system', '2023-07-26 08:40:17.678755+07', 'Xã Thụy Lôi', '13414', 'Xã');
INSERT INTO category."Wards" VALUES (13417, 350, 'system', '2023-07-26 08:40:17.678757+07', 'system', '2023-07-26 08:40:17.678757+07', 'Xã Văn Xá', '13417', 'Xã');
INSERT INTO category."Wards" VALUES (13420, 350, 'system', '2023-07-26 08:40:17.67876+07', 'system', '2023-07-26 08:40:17.67876+07', 'Xã Khả Phong', '13420', 'Xã');
INSERT INTO category."Wards" VALUES (13423, 350, 'system', '2023-07-26 08:40:17.678763+07', 'system', '2023-07-26 08:40:17.678763+07', 'Xã Ngọc Sơn', '13423', 'Xã');
INSERT INTO category."Wards" VALUES (13426, 347, 'system', '2023-07-26 08:40:17.678667+07', 'system', '2023-07-26 08:40:17.678667+07', 'Xã Kim Bình', '13426', 'Xã');
INSERT INTO category."Wards" VALUES (13429, 350, 'system', '2023-07-26 08:40:17.678765+07', 'system', '2023-07-26 08:40:17.678765+07', 'Thị trấn Ba Sao', '13429', 'Thị trấn');
INSERT INTO category."Wards" VALUES (13432, 350, 'system', '2023-07-26 08:40:17.678768+07', 'system', '2023-07-26 08:40:17.678768+07', 'Xã Liên Sơn', '13432', 'Xã');
INSERT INTO category."Wards" VALUES (13435, 350, 'system', '2023-07-26 08:40:17.678771+07', 'system', '2023-07-26 08:40:17.678771+07', 'Xã Thi Sơn', '13435', 'Xã');
INSERT INTO category."Wards" VALUES (13438, 350, 'system', '2023-07-26 08:40:17.678773+07', 'system', '2023-07-26 08:40:17.678773+07', 'Xã Thanh Sơn', '13438', 'Xã');
INSERT INTO category."Wards" VALUES (13441, 351, 'system', '2023-07-26 08:40:17.678776+07', 'system', '2023-07-26 08:40:17.678776+07', 'Thị trấn Kiện Khê', '13441', 'Thị trấn');
INSERT INTO category."Wards" VALUES (13444, 347, 'system', '2023-07-26 08:40:17.67867+07', 'system', '2023-07-26 08:40:17.67867+07', 'Xã Liêm Tuyền', '13444', 'Xã');
INSERT INTO category."Wards" VALUES (13447, 347, 'system', '2023-07-26 08:40:17.678672+07', 'system', '2023-07-26 08:40:17.678672+07', 'Xã Liêm Tiết', '13447', 'Xã');
INSERT INTO category."Wards" VALUES (13450, 351, 'system', '2023-07-26 08:40:17.678779+07', 'system', '2023-07-26 08:40:17.678779+07', 'Xã Liêm Phong', '13450', 'Xã');
INSERT INTO category."Wards" VALUES (13453, 351, 'system', '2023-07-26 08:40:17.678781+07', 'system', '2023-07-26 08:40:17.678781+07', 'Xã Thanh Hà', '13453', 'Xã');
INSERT INTO category."Wards" VALUES (13456, 351, 'system', '2023-07-26 08:40:17.678784+07', 'system', '2023-07-26 08:40:17.678784+07', 'Xã Liêm Cần', '13456', 'Xã');
INSERT INTO category."Wards" VALUES (13459, 347, 'system', '2023-07-26 08:40:17.678675+07', 'system', '2023-07-26 08:40:17.678675+07', 'Phường Thanh Tuyền', '13459', 'Phường');
INSERT INTO category."Wards" VALUES (13465, 351, 'system', '2023-07-26 08:40:17.678787+07', 'system', '2023-07-26 08:40:17.678787+07', 'Xã Liêm Thuận', '13465', 'Xã');
INSERT INTO category."Wards" VALUES (13468, 351, 'system', '2023-07-26 08:40:17.67879+07', 'system', '2023-07-26 08:40:17.67879+07', 'Xã Thanh Thủy', '13468', 'Xã');
INSERT INTO category."Wards" VALUES (13471, 351, 'system', '2023-07-26 08:40:17.678793+07', 'system', '2023-07-26 08:40:17.678793+07', 'Xã Thanh Phong', '13471', 'Xã');
INSERT INTO category."Wards" VALUES (13474, 351, 'system', '2023-07-26 08:40:17.678795+07', 'system', '2023-07-26 08:40:17.678795+07', 'Thị trấn Tân Thanh', '13474', 'Thị trấn');
INSERT INTO category."Wards" VALUES (13477, 351, 'system', '2023-07-26 08:40:17.678798+07', 'system', '2023-07-26 08:40:17.678798+07', 'Xã Thanh Tân', '13477', 'Xã');
INSERT INTO category."Wards" VALUES (13480, 351, 'system', '2023-07-26 08:40:17.678801+07', 'system', '2023-07-26 08:40:17.678801+07', 'Xã Liêm Túc', '13480', 'Xã');
INSERT INTO category."Wards" VALUES (13483, 351, 'system', '2023-07-26 08:40:17.678803+07', 'system', '2023-07-26 08:40:17.678803+07', 'Xã Liêm Sơn', '13483', 'Xã');
INSERT INTO category."Wards" VALUES (13486, 351, 'system', '2023-07-26 08:40:17.678806+07', 'system', '2023-07-26 08:40:17.678806+07', 'Xã Thanh Hương', '13486', 'Xã');
INSERT INTO category."Wards" VALUES (13489, 351, 'system', '2023-07-26 08:40:17.678808+07', 'system', '2023-07-26 08:40:17.678808+07', 'Xã Thanh Nghị', '13489', 'Xã');
INSERT INTO category."Wards" VALUES (13492, 351, 'system', '2023-07-26 08:40:17.678811+07', 'system', '2023-07-26 08:40:17.678811+07', 'Xã Thanh Tâm', '13492', 'Xã');
INSERT INTO category."Wards" VALUES (13495, 351, 'system', '2023-07-26 08:40:17.678813+07', 'system', '2023-07-26 08:40:17.678813+07', 'Xã Thanh Nguyên', '13495', 'Xã');
INSERT INTO category."Wards" VALUES (13498, 351, 'system', '2023-07-26 08:40:17.678816+07', 'system', '2023-07-26 08:40:17.678816+07', 'Xã Thanh Hải', '13498', 'Xã');
INSERT INTO category."Wards" VALUES (13501, 352, 'system', '2023-07-26 08:40:17.678819+07', 'system', '2023-07-26 08:40:17.678819+07', 'Thị trấn Bình Mỹ', '13501', 'Thị trấn');
INSERT INTO category."Wards" VALUES (13504, 352, 'system', '2023-07-26 08:40:17.678822+07', 'system', '2023-07-26 08:40:17.678822+07', 'Xã Bình Nghĩa', '13504', 'Xã');
INSERT INTO category."Wards" VALUES (13507, 347, 'system', '2023-07-26 08:40:17.678677+07', 'system', '2023-07-26 08:40:17.678677+07', 'Xã Đinh Xá', '13507', 'Xã');
INSERT INTO category."Wards" VALUES (13510, 352, 'system', '2023-07-26 08:40:17.678825+07', 'system', '2023-07-26 08:40:17.678825+07', 'Xã Tràng An', '13510', 'Xã');
INSERT INTO category."Wards" VALUES (13513, 347, 'system', '2023-07-26 08:40:17.67868+07', 'system', '2023-07-26 08:40:17.67868+07', 'Xã Trịnh Xá', '13513', 'Xã');
INSERT INTO category."Wards" VALUES (13516, 352, 'system', '2023-07-26 08:40:17.678827+07', 'system', '2023-07-26 08:40:17.678827+07', 'Xã Đồng Du', '13516', 'Xã');
INSERT INTO category."Wards" VALUES (13519, 352, 'system', '2023-07-26 08:40:17.67883+07', 'system', '2023-07-26 08:40:17.67883+07', 'Xã Ngọc Lũ', '13519', 'Xã');
INSERT INTO category."Wards" VALUES (13522, 352, 'system', '2023-07-26 08:40:17.678832+07', 'system', '2023-07-26 08:40:17.678833+07', 'Xã Hưng Công', '13522', 'Xã');
INSERT INTO category."Wards" VALUES (13525, 352, 'system', '2023-07-26 08:40:17.678835+07', 'system', '2023-07-26 08:40:17.678835+07', 'Xã Đồn Xá', '13525', 'Xã');
INSERT INTO category."Wards" VALUES (13528, 352, 'system', '2023-07-26 08:40:17.678838+07', 'system', '2023-07-26 08:40:17.678838+07', 'Xã An Ninh', '13528', 'Xã');
INSERT INTO category."Wards" VALUES (13531, 352, 'system', '2023-07-26 08:40:17.67884+07', 'system', '2023-07-26 08:40:17.67884+07', 'Xã Bồ Đề', '13531', 'Xã');
INSERT INTO category."Wards" VALUES (13534, 352, 'system', '2023-07-26 08:40:17.678843+07', 'system', '2023-07-26 08:40:17.678843+07', 'Xã Bối Cầu', '13534', 'Xã');
INSERT INTO category."Wards" VALUES (13540, 352, 'system', '2023-07-26 08:40:17.678846+07', 'system', '2023-07-26 08:40:17.678846+07', 'Xã An Nội', '13540', 'Xã');
INSERT INTO category."Wards" VALUES (13543, 352, 'system', '2023-07-26 08:40:17.678848+07', 'system', '2023-07-26 08:40:17.678848+07', 'Xã Vũ Bản', '13543', 'Xã');
INSERT INTO category."Wards" VALUES (13546, 352, 'system', '2023-07-26 08:40:17.678851+07', 'system', '2023-07-26 08:40:17.678851+07', 'Xã Trung Lương', '13546', 'Xã');
INSERT INTO category."Wards" VALUES (13552, 352, 'system', '2023-07-26 08:40:17.678854+07', 'system', '2023-07-26 08:40:17.678854+07', 'Xã An Đổ', '13552', 'Xã');
INSERT INTO category."Wards" VALUES (13555, 352, 'system', '2023-07-26 08:40:17.678856+07', 'system', '2023-07-26 08:40:17.678856+07', 'Xã La Sơn', '13555', 'Xã');
INSERT INTO category."Wards" VALUES (13558, 352, 'system', '2023-07-26 08:40:17.678859+07', 'system', '2023-07-26 08:40:17.678859+07', 'Xã Tiêu Động', '13558', 'Xã');
INSERT INTO category."Wards" VALUES (13561, 352, 'system', '2023-07-26 08:40:17.678861+07', 'system', '2023-07-26 08:40:17.678861+07', 'Xã An Lão', '13561', 'Xã');
INSERT INTO category."Wards" VALUES (13567, 353, 'system', '2023-07-26 08:40:17.678864+07', 'system', '2023-07-26 08:40:17.678864+07', 'Xã Hợp Lý', '13567', 'Xã');
INSERT INTO category."Wards" VALUES (13570, 353, 'system', '2023-07-26 08:40:17.678866+07', 'system', '2023-07-26 08:40:17.678866+07', 'Xã Nguyên Lý', '13570', 'Xã');
INSERT INTO category."Wards" VALUES (13573, 353, 'system', '2023-07-26 08:40:17.678869+07', 'system', '2023-07-26 08:40:17.678869+07', 'Xã Chính Lý', '13573', 'Xã');
INSERT INTO category."Wards" VALUES (13576, 353, 'system', '2023-07-26 08:40:17.678872+07', 'system', '2023-07-26 08:40:17.678872+07', 'Xã Chân Lý', '13576', 'Xã');
INSERT INTO category."Wards" VALUES (13579, 353, 'system', '2023-07-26 08:40:17.678874+07', 'system', '2023-07-26 08:40:17.678874+07', 'Xã Đạo Lý', '13579', 'Xã');
INSERT INTO category."Wards" VALUES (13582, 353, 'system', '2023-07-26 08:40:17.678877+07', 'system', '2023-07-26 08:40:17.678877+07', 'Xã Công Lý', '13582', 'Xã');
INSERT INTO category."Wards" VALUES (13585, 353, 'system', '2023-07-26 08:40:17.678879+07', 'system', '2023-07-26 08:40:17.678879+07', 'Xã Văn Lý', '13585', 'Xã');
INSERT INTO category."Wards" VALUES (13588, 353, 'system', '2023-07-26 08:40:17.678883+07', 'system', '2023-07-26 08:40:17.678883+07', 'Xã Bắc Lý', '13588', 'Xã');
INSERT INTO category."Wards" VALUES (13591, 353, 'system', '2023-07-26 08:40:17.678885+07', 'system', '2023-07-26 08:40:17.678886+07', 'Xã Đức Lý', '13591', 'Xã');
INSERT INTO category."Wards" VALUES (13594, 353, 'system', '2023-07-26 08:40:17.678888+07', 'system', '2023-07-26 08:40:17.678888+07', 'Xã Trần Hưng Đạo', '13594', 'Xã');
INSERT INTO category."Wards" VALUES (13597, 353, 'system', '2023-07-26 08:40:17.678891+07', 'system', '2023-07-26 08:40:17.678891+07', 'Thị trấn Vĩnh Trụ', '13597', 'Thị trấn');
INSERT INTO category."Wards" VALUES (13600, 353, 'system', '2023-07-26 08:40:17.678894+07', 'system', '2023-07-26 08:40:17.678894+07', 'Xã Nhân Thịnh', '13600', 'Xã');
INSERT INTO category."Wards" VALUES (13606, 353, 'system', '2023-07-26 08:40:17.678896+07', 'system', '2023-07-26 08:40:17.678896+07', 'Xã Nhân Khang', '13606', 'Xã');
INSERT INTO category."Wards" VALUES (13609, 353, 'system', '2023-07-26 08:40:17.678899+07', 'system', '2023-07-26 08:40:17.678899+07', 'Xã Nhân Mỹ', '13609', 'Xã');
INSERT INTO category."Wards" VALUES (13612, 353, 'system', '2023-07-26 08:40:17.678902+07', 'system', '2023-07-26 08:40:17.678902+07', 'Xã Nhân Nghĩa', '13612', 'Xã');
INSERT INTO category."Wards" VALUES (13615, 353, 'system', '2023-07-26 08:40:17.678904+07', 'system', '2023-07-26 08:40:17.678904+07', 'Xã Nhân Chính', '13615', 'Xã');
INSERT INTO category."Wards" VALUES (13618, 353, 'system', '2023-07-26 08:40:17.678907+07', 'system', '2023-07-26 08:40:17.678907+07', 'Xã Nhân Bình', '13618', 'Xã');
INSERT INTO category."Wards" VALUES (13621, 353, 'system', '2023-07-26 08:40:17.678909+07', 'system', '2023-07-26 08:40:17.67891+07', 'Xã Phú Phúc', '13621', 'Xã');
INSERT INTO category."Wards" VALUES (13624, 353, 'system', '2023-07-26 08:40:17.678912+07', 'system', '2023-07-26 08:40:17.678912+07', 'Xã Xuân Khê', '13624', 'Xã');
INSERT INTO category."Wards" VALUES (13627, 353, 'system', '2023-07-26 08:40:17.678915+07', 'system', '2023-07-26 08:40:17.678915+07', 'Xã Tiến Thắng', '13627', 'Xã');
INSERT INTO category."Wards" VALUES (13630, 353, 'system', '2023-07-26 08:40:17.678918+07', 'system', '2023-07-26 08:40:17.678918+07', 'Xã Hòa Hậu', '13630', 'Xã');
INSERT INTO category."Wards" VALUES (13633, 356, 'system', '2023-07-26 08:40:17.67892+07', 'system', '2023-07-26 08:40:17.67892+07', 'Phường Hạ Long', '13633', 'Phường');
INSERT INTO category."Wards" VALUES (13636, 356, 'system', '2023-07-26 08:40:17.678923+07', 'system', '2023-07-26 08:40:17.678923+07', 'Phường Trần Tế Xương', '13636', 'Phường');
INSERT INTO category."Wards" VALUES (13639, 356, 'system', '2023-07-26 08:40:17.678926+07', 'system', '2023-07-26 08:40:17.678926+07', 'Phường Vị Hoàng', '13639', 'Phường');
INSERT INTO category."Wards" VALUES (13642, 356, 'system', '2023-07-26 08:40:17.678928+07', 'system', '2023-07-26 08:40:17.678929+07', 'Phường Vị Xuyên', '13642', 'Phường');
INSERT INTO category."Wards" VALUES (13645, 356, 'system', '2023-07-26 08:40:17.678931+07', 'system', '2023-07-26 08:40:17.678931+07', 'Phường Quang Trung', '13645', 'Phường');
INSERT INTO category."Wards" VALUES (13648, 356, 'system', '2023-07-26 08:40:17.678934+07', 'system', '2023-07-26 08:40:17.678934+07', 'Phường Cửa Bắc', '13648', 'Phường');
INSERT INTO category."Wards" VALUES (13651, 356, 'system', '2023-07-26 08:40:17.678937+07', 'system', '2023-07-26 08:40:17.678937+07', 'Phường Nguyễn Du', '13651', 'Phường');
INSERT INTO category."Wards" VALUES (13654, 356, 'system', '2023-07-26 08:40:17.67894+07', 'system', '2023-07-26 08:40:17.67894+07', 'Phường Bà Triệu', '13654', 'Phường');
INSERT INTO category."Wards" VALUES (13657, 356, 'system', '2023-07-26 08:40:17.678942+07', 'system', '2023-07-26 08:40:17.678942+07', 'Phường Trường Thi', '13657', 'Phường');
INSERT INTO category."Wards" VALUES (13660, 356, 'system', '2023-07-26 08:40:17.678945+07', 'system', '2023-07-26 08:40:17.678945+07', 'Phường Phan Đình Phùng', '13660', 'Phường');
INSERT INTO category."Wards" VALUES (13663, 356, 'system', '2023-07-26 08:40:17.678948+07', 'system', '2023-07-26 08:40:17.678948+07', 'Phường Ngô Quyền', '13663', 'Phường');
INSERT INTO category."Wards" VALUES (13666, 356, 'system', '2023-07-26 08:40:17.678951+07', 'system', '2023-07-26 08:40:17.678951+07', 'Phường Trần Hưng Đạo', '13666', 'Phường');
INSERT INTO category."Wards" VALUES (13669, 356, 'system', '2023-07-26 08:40:17.678954+07', 'system', '2023-07-26 08:40:17.678954+07', 'Phường Trần Đăng Ninh', '13669', 'Phường');
INSERT INTO category."Wards" VALUES (13672, 356, 'system', '2023-07-26 08:40:17.678957+07', 'system', '2023-07-26 08:40:17.678957+07', 'Phường Năng Tĩnh', '13672', 'Phường');
INSERT INTO category."Wards" VALUES (13675, 356, 'system', '2023-07-26 08:40:17.67896+07', 'system', '2023-07-26 08:40:17.67896+07', 'Phường Văn Miếu', '13675', 'Phường');
INSERT INTO category."Wards" VALUES (13678, 356, 'system', '2023-07-26 08:40:17.678963+07', 'system', '2023-07-26 08:40:17.678963+07', 'Phường Trần Quang Khải', '13678', 'Phường');
INSERT INTO category."Wards" VALUES (13681, 356, 'system', '2023-07-26 08:40:17.678966+07', 'system', '2023-07-26 08:40:17.678966+07', 'Phường Thống Nhất', '13681', 'Phường');
INSERT INTO category."Wards" VALUES (13684, 356, 'system', '2023-07-26 08:40:17.678969+07', 'system', '2023-07-26 08:40:17.678969+07', 'Phường Lộc Hạ', '13684', 'Phường');
INSERT INTO category."Wards" VALUES (13687, 356, 'system', '2023-07-26 08:40:17.678972+07', 'system', '2023-07-26 08:40:17.678972+07', 'Phường Lộc Vượng', '13687', 'Phường');
INSERT INTO category."Wards" VALUES (13690, 356, 'system', '2023-07-26 08:40:17.678974+07', 'system', '2023-07-26 08:40:17.678974+07', 'Phường Cửa Nam', '13690', 'Phường');
INSERT INTO category."Wards" VALUES (13693, 356, 'system', '2023-07-26 08:40:17.678977+07', 'system', '2023-07-26 08:40:17.678977+07', 'Phường Lộc Hòa', '13693', 'Phường');
INSERT INTO category."Wards" VALUES (13696, 356, 'system', '2023-07-26 08:40:17.678981+07', 'system', '2023-07-26 08:40:17.678981+07', 'Xã Nam Phong', '13696', 'Xã');
INSERT INTO category."Wards" VALUES (13699, 356, 'system', '2023-07-26 08:40:17.678995+07', 'system', '2023-07-26 08:40:17.678995+07', 'Phường Mỹ Xá', '13699', 'Phường');
INSERT INTO category."Wards" VALUES (13702, 356, 'system', '2023-07-26 08:40:17.678998+07', 'system', '2023-07-26 08:40:17.678998+07', 'Xã Lộc An', '13702', 'Xã');
INSERT INTO category."Wards" VALUES (13705, 356, 'system', '2023-07-26 08:40:17.679001+07', 'system', '2023-07-26 08:40:17.679001+07', 'Xã Nam Vân', '13705', 'Xã');
INSERT INTO category."Wards" VALUES (13708, 358, 'system', '2023-07-26 08:40:17.679004+07', 'system', '2023-07-26 08:40:17.679004+07', 'Thị trấn Mỹ Lộc', '13708', 'Thị trấn');
INSERT INTO category."Wards" VALUES (13711, 358, 'system', '2023-07-26 08:40:17.679007+07', 'system', '2023-07-26 08:40:17.679007+07', 'Xã Mỹ Hà', '13711', 'Xã');
INSERT INTO category."Wards" VALUES (13714, 358, 'system', '2023-07-26 08:40:17.679009+07', 'system', '2023-07-26 08:40:17.679009+07', 'Xã Mỹ Tiến', '13714', 'Xã');
INSERT INTO category."Wards" VALUES (13717, 358, 'system', '2023-07-26 08:40:17.679012+07', 'system', '2023-07-26 08:40:17.679012+07', 'Xã Mỹ Thắng', '13717', 'Xã');
INSERT INTO category."Wards" VALUES (13720, 358, 'system', '2023-07-26 08:40:17.679014+07', 'system', '2023-07-26 08:40:17.679014+07', 'Xã Mỹ Trung', '13720', 'Xã');
INSERT INTO category."Wards" VALUES (13723, 358, 'system', '2023-07-26 08:40:17.679017+07', 'system', '2023-07-26 08:40:17.679017+07', 'Xã Mỹ Tân', '13723', 'Xã');
INSERT INTO category."Wards" VALUES (13726, 358, 'system', '2023-07-26 08:40:17.67902+07', 'system', '2023-07-26 08:40:17.67902+07', 'Xã Mỹ Phúc', '13726', 'Xã');
INSERT INTO category."Wards" VALUES (13729, 358, 'system', '2023-07-26 08:40:17.679022+07', 'system', '2023-07-26 08:40:17.679022+07', 'Xã Mỹ Hưng', '13729', 'Xã');
INSERT INTO category."Wards" VALUES (13732, 358, 'system', '2023-07-26 08:40:17.679025+07', 'system', '2023-07-26 08:40:17.679025+07', 'Xã Mỹ Thuận', '13732', 'Xã');
INSERT INTO category."Wards" VALUES (13735, 358, 'system', '2023-07-26 08:40:17.679028+07', 'system', '2023-07-26 08:40:17.679028+07', 'Xã Mỹ Thịnh', '13735', 'Xã');
INSERT INTO category."Wards" VALUES (13738, 358, 'system', '2023-07-26 08:40:17.67903+07', 'system', '2023-07-26 08:40:17.67903+07', 'Xã Mỹ Thành', '13738', 'Xã');
INSERT INTO category."Wards" VALUES (13741, 359, 'system', '2023-07-26 08:40:17.679033+07', 'system', '2023-07-26 08:40:17.679033+07', 'Thị trấn Gôi', '13741', 'Thị trấn');
INSERT INTO category."Wards" VALUES (13744, 359, 'system', '2023-07-26 08:40:17.679035+07', 'system', '2023-07-26 08:40:17.679035+07', 'Xã Minh Thuận', '13744', 'Xã');
INSERT INTO category."Wards" VALUES (13747, 359, 'system', '2023-07-26 08:40:17.679038+07', 'system', '2023-07-26 08:40:17.679038+07', 'Xã Hiển Khánh', '13747', 'Xã');
INSERT INTO category."Wards" VALUES (13750, 359, 'system', '2023-07-26 08:40:17.679041+07', 'system', '2023-07-26 08:40:17.679041+07', 'Xã Tân Khánh', '13750', 'Xã');
INSERT INTO category."Wards" VALUES (13753, 359, 'system', '2023-07-26 08:40:17.679044+07', 'system', '2023-07-26 08:40:17.679044+07', 'Xã Hợp Hưng', '13753', 'Xã');
INSERT INTO category."Wards" VALUES (13756, 359, 'system', '2023-07-26 08:40:17.679046+07', 'system', '2023-07-26 08:40:17.679046+07', 'Xã Đại An', '13756', 'Xã');
INSERT INTO category."Wards" VALUES (13759, 359, 'system', '2023-07-26 08:40:17.679049+07', 'system', '2023-07-26 08:40:17.679049+07', 'Xã Tân Thành', '13759', 'Xã');
INSERT INTO category."Wards" VALUES (13762, 359, 'system', '2023-07-26 08:40:17.679051+07', 'system', '2023-07-26 08:40:17.679051+07', 'Xã Cộng Hòa', '13762', 'Xã');
INSERT INTO category."Wards" VALUES (13765, 359, 'system', '2023-07-26 08:40:17.679054+07', 'system', '2023-07-26 08:40:17.679054+07', 'Xã Trung Thành', '13765', 'Xã');
INSERT INTO category."Wards" VALUES (13768, 359, 'system', '2023-07-26 08:40:17.679056+07', 'system', '2023-07-26 08:40:17.679056+07', 'Xã Quang Trung', '13768', 'Xã');
INSERT INTO category."Wards" VALUES (13771, 359, 'system', '2023-07-26 08:40:17.679059+07', 'system', '2023-07-26 08:40:17.679059+07', 'Xã Minh Tân', '13771', 'Xã');
INSERT INTO category."Wards" VALUES (13774, 359, 'system', '2023-07-26 08:40:17.679061+07', 'system', '2023-07-26 08:40:17.679061+07', 'Xã Liên Bảo', '13774', 'Xã');
INSERT INTO category."Wards" VALUES (13777, 359, 'system', '2023-07-26 08:40:17.679064+07', 'system', '2023-07-26 08:40:17.679064+07', 'Xã Thành Lợi', '13777', 'Xã');
INSERT INTO category."Wards" VALUES (13780, 359, 'system', '2023-07-26 08:40:17.679066+07', 'system', '2023-07-26 08:40:17.679067+07', 'Xã Kim Thái', '13780', 'Xã');
INSERT INTO category."Wards" VALUES (13783, 359, 'system', '2023-07-26 08:40:17.679069+07', 'system', '2023-07-26 08:40:17.679069+07', 'Xã Liên Minh', '13783', 'Xã');
INSERT INTO category."Wards" VALUES (13786, 359, 'system', '2023-07-26 08:40:17.679072+07', 'system', '2023-07-26 08:40:17.679072+07', 'Xã Đại Thắng', '13786', 'Xã');
INSERT INTO category."Wards" VALUES (13789, 359, 'system', '2023-07-26 08:40:17.679075+07', 'system', '2023-07-26 08:40:17.679075+07', 'Xã Tam Thanh', '13789', 'Xã');
INSERT INTO category."Wards" VALUES (13792, 359, 'system', '2023-07-26 08:40:17.679077+07', 'system', '2023-07-26 08:40:17.679077+07', 'Xã Vĩnh Hào', '13792', 'Xã');
INSERT INTO category."Wards" VALUES (13795, 360, 'system', '2023-07-26 08:40:17.67908+07', 'system', '2023-07-26 08:40:17.67908+07', 'Thị trấn Lâm', '13795', 'Thị trấn');
INSERT INTO category."Wards" VALUES (13798, 360, 'system', '2023-07-26 08:40:17.679082+07', 'system', '2023-07-26 08:40:17.679082+07', 'Xã Yên Trung', '13798', 'Xã');
INSERT INTO category."Wards" VALUES (13801, 360, 'system', '2023-07-26 08:40:17.679085+07', 'system', '2023-07-26 08:40:17.679085+07', 'Xã Yên Thành', '13801', 'Xã');
INSERT INTO category."Wards" VALUES (13804, 360, 'system', '2023-07-26 08:40:17.679089+07', 'system', '2023-07-26 08:40:17.679089+07', 'Xã Yên Tân', '13804', 'Xã');
INSERT INTO category."Wards" VALUES (13807, 360, 'system', '2023-07-26 08:40:17.679091+07', 'system', '2023-07-26 08:40:17.679091+07', 'Xã Yên Lợi', '13807', 'Xã');
INSERT INTO category."Wards" VALUES (13810, 360, 'system', '2023-07-26 08:40:17.679094+07', 'system', '2023-07-26 08:40:17.679094+07', 'Xã Yên Thọ', '13810', 'Xã');
INSERT INTO category."Wards" VALUES (13813, 360, 'system', '2023-07-26 08:40:17.679097+07', 'system', '2023-07-26 08:40:17.679097+07', 'Xã Yên Nghĩa', '13813', 'Xã');
INSERT INTO category."Wards" VALUES (13816, 360, 'system', '2023-07-26 08:40:17.679099+07', 'system', '2023-07-26 08:40:17.679099+07', 'Xã Yên Minh', '13816', 'Xã');
INSERT INTO category."Wards" VALUES (13819, 360, 'system', '2023-07-26 08:40:17.679102+07', 'system', '2023-07-26 08:40:17.679102+07', 'Xã Yên Phương', '13819', 'Xã');
INSERT INTO category."Wards" VALUES (13822, 360, 'system', '2023-07-26 08:40:17.679104+07', 'system', '2023-07-26 08:40:17.679104+07', 'Xã Yên Chính', '13822', 'Xã');
INSERT INTO category."Wards" VALUES (13825, 360, 'system', '2023-07-26 08:40:17.679107+07', 'system', '2023-07-26 08:40:17.679107+07', 'Xã Yên Bình', '13825', 'Xã');
INSERT INTO category."Wards" VALUES (13828, 360, 'system', '2023-07-26 08:40:17.679109+07', 'system', '2023-07-26 08:40:17.679109+07', 'Xã Yên Phú', '13828', 'Xã');
INSERT INTO category."Wards" VALUES (13831, 360, 'system', '2023-07-26 08:40:17.679112+07', 'system', '2023-07-26 08:40:17.679112+07', 'Xã Yên Mỹ', '13831', 'Xã');
INSERT INTO category."Wards" VALUES (13834, 360, 'system', '2023-07-26 08:40:17.679115+07', 'system', '2023-07-26 08:40:17.679115+07', 'Xã Yên Dương', '13834', 'Xã');
INSERT INTO category."Wards" VALUES (13840, 360, 'system', '2023-07-26 08:40:17.679117+07', 'system', '2023-07-26 08:40:17.679117+07', 'Xã Yên Hưng', '13840', 'Xã');
INSERT INTO category."Wards" VALUES (13843, 360, 'system', '2023-07-26 08:40:17.67912+07', 'system', '2023-07-26 08:40:17.67912+07', 'Xã Yên Khánh', '13843', 'Xã');
INSERT INTO category."Wards" VALUES (13846, 360, 'system', '2023-07-26 08:40:17.679122+07', 'system', '2023-07-26 08:40:17.679122+07', 'Xã Yên Phong', '13846', 'Xã');
INSERT INTO category."Wards" VALUES (13849, 360, 'system', '2023-07-26 08:40:17.679125+07', 'system', '2023-07-26 08:40:17.679125+07', 'Xã Yên Ninh', '13849', 'Xã');
INSERT INTO category."Wards" VALUES (13852, 360, 'system', '2023-07-26 08:40:17.679127+07', 'system', '2023-07-26 08:40:17.679128+07', 'Xã Yên Lương', '13852', 'Xã');
INSERT INTO category."Wards" VALUES (13855, 360, 'system', '2023-07-26 08:40:17.67913+07', 'system', '2023-07-26 08:40:17.67913+07', 'Xã Yên Hồng', '13855', 'Xã');
INSERT INTO category."Wards" VALUES (13858, 360, 'system', '2023-07-26 08:40:17.679133+07', 'system', '2023-07-26 08:40:17.679133+07', 'Xã Yên Quang', '13858', 'Xã');
INSERT INTO category."Wards" VALUES (13861, 360, 'system', '2023-07-26 08:40:17.679135+07', 'system', '2023-07-26 08:40:17.679135+07', 'Xã Yên Tiến', '13861', 'Xã');
INSERT INTO category."Wards" VALUES (13864, 360, 'system', '2023-07-26 08:40:17.679138+07', 'system', '2023-07-26 08:40:17.679138+07', 'Xã Yên Thắng', '13864', 'Xã');
INSERT INTO category."Wards" VALUES (13867, 360, 'system', '2023-07-26 08:40:17.679141+07', 'system', '2023-07-26 08:40:17.679141+07', 'Xã Yên Phúc', '13867', 'Xã');
INSERT INTO category."Wards" VALUES (13870, 360, 'system', '2023-07-26 08:40:17.679143+07', 'system', '2023-07-26 08:40:17.679143+07', 'Xã Yên Cường', '13870', 'Xã');
INSERT INTO category."Wards" VALUES (13873, 360, 'system', '2023-07-26 08:40:17.679146+07', 'system', '2023-07-26 08:40:17.679146+07', 'Xã Yên Lộc', '13873', 'Xã');
INSERT INTO category."Wards" VALUES (13876, 360, 'system', '2023-07-26 08:40:17.679149+07', 'system', '2023-07-26 08:40:17.679149+07', 'Xã Yên Bằng', '13876', 'Xã');
INSERT INTO category."Wards" VALUES (13879, 360, 'system', '2023-07-26 08:40:17.679151+07', 'system', '2023-07-26 08:40:17.679151+07', 'Xã Yên Đồng', '13879', 'Xã');
INSERT INTO category."Wards" VALUES (13882, 360, 'system', '2023-07-26 08:40:17.679154+07', 'system', '2023-07-26 08:40:17.679154+07', 'Xã Yên Khang', '13882', 'Xã');
INSERT INTO category."Wards" VALUES (13885, 360, 'system', '2023-07-26 08:40:17.679156+07', 'system', '2023-07-26 08:40:17.679156+07', 'Xã Yên Nhân', '13885', 'Xã');
INSERT INTO category."Wards" VALUES (13888, 360, 'system', '2023-07-26 08:40:17.679159+07', 'system', '2023-07-26 08:40:17.679159+07', 'Xã Yên Trị', '13888', 'Xã');
INSERT INTO category."Wards" VALUES (13891, 361, 'system', '2023-07-26 08:40:17.679162+07', 'system', '2023-07-26 08:40:17.679162+07', 'Thị trấn Liễu Đề', '13891', 'Thị trấn');
INSERT INTO category."Wards" VALUES (13894, 361, 'system', '2023-07-26 08:40:17.679165+07', 'system', '2023-07-26 08:40:17.679165+07', 'Thị trấn Rạng Đông', '13894', 'Thị trấn');
INSERT INTO category."Wards" VALUES (13897, 361, 'system', '2023-07-26 08:40:17.679168+07', 'system', '2023-07-26 08:40:17.679168+07', 'Xã Nghĩa Đồng', '13897', 'Xã');
INSERT INTO category."Wards" VALUES (13900, 361, 'system', '2023-07-26 08:40:17.679171+07', 'system', '2023-07-26 08:40:17.679171+07', 'Xã Nghĩa Thịnh', '13900', 'Xã');
INSERT INTO category."Wards" VALUES (13903, 361, 'system', '2023-07-26 08:40:17.679173+07', 'system', '2023-07-26 08:40:17.679173+07', 'Xã Nghĩa Minh', '13903', 'Xã');
INSERT INTO category."Wards" VALUES (13906, 361, 'system', '2023-07-26 08:40:17.679176+07', 'system', '2023-07-26 08:40:17.679176+07', 'Xã Nghĩa Thái', '13906', 'Xã');
INSERT INTO category."Wards" VALUES (13909, 361, 'system', '2023-07-26 08:40:17.679179+07', 'system', '2023-07-26 08:40:17.679179+07', 'Xã Hoàng Nam', '13909', 'Xã');
INSERT INTO category."Wards" VALUES (13912, 361, 'system', '2023-07-26 08:40:17.679181+07', 'system', '2023-07-26 08:40:17.679181+07', 'Xã Nghĩa Châu', '13912', 'Xã');
INSERT INTO category."Wards" VALUES (13915, 361, 'system', '2023-07-26 08:40:17.679184+07', 'system', '2023-07-26 08:40:17.679184+07', 'Xã Nghĩa Trung', '13915', 'Xã');
INSERT INTO category."Wards" VALUES (13918, 361, 'system', '2023-07-26 08:40:17.679187+07', 'system', '2023-07-26 08:40:17.679187+07', 'Xã Nghĩa Sơn', '13918', 'Xã');
INSERT INTO category."Wards" VALUES (13921, 361, 'system', '2023-07-26 08:40:17.67919+07', 'system', '2023-07-26 08:40:17.67919+07', 'Xã Nghĩa Lạc', '13921', 'Xã');
INSERT INTO category."Wards" VALUES (13924, 361, 'system', '2023-07-26 08:40:17.679192+07', 'system', '2023-07-26 08:40:17.679192+07', 'Xã Nghĩa Hồng', '13924', 'Xã');
INSERT INTO category."Wards" VALUES (13927, 361, 'system', '2023-07-26 08:40:17.679195+07', 'system', '2023-07-26 08:40:17.679195+07', 'Xã Nghĩa Phong', '13927', 'Xã');
INSERT INTO category."Wards" VALUES (13930, 361, 'system', '2023-07-26 08:40:17.679197+07', 'system', '2023-07-26 08:40:17.679197+07', 'Xã Nghĩa Phú', '13930', 'Xã');
INSERT INTO category."Wards" VALUES (13933, 361, 'system', '2023-07-26 08:40:17.6792+07', 'system', '2023-07-26 08:40:17.6792+07', 'Xã Nghĩa Bình', '13933', 'Xã');
INSERT INTO category."Wards" VALUES (13936, 361, 'system', '2023-07-26 08:40:17.679203+07', 'system', '2023-07-26 08:40:17.679203+07', 'Thị trấn Quỹ Nhất', '13936', 'Thị trấn');
INSERT INTO category."Wards" VALUES (13939, 361, 'system', '2023-07-26 08:40:17.679206+07', 'system', '2023-07-26 08:40:17.679206+07', 'Xã Nghĩa Tân', '13939', 'Xã');
INSERT INTO category."Wards" VALUES (13942, 361, 'system', '2023-07-26 08:40:17.679208+07', 'system', '2023-07-26 08:40:17.679208+07', 'Xã Nghĩa Hùng', '13942', 'Xã');
INSERT INTO category."Wards" VALUES (13945, 361, 'system', '2023-07-26 08:40:17.679211+07', 'system', '2023-07-26 08:40:17.679211+07', 'Xã Nghĩa Lâm', '13945', 'Xã');
INSERT INTO category."Wards" VALUES (13948, 361, 'system', '2023-07-26 08:40:17.679214+07', 'system', '2023-07-26 08:40:17.679214+07', 'Xã Nghĩa Thành', '13948', 'Xã');
INSERT INTO category."Wards" VALUES (13951, 361, 'system', '2023-07-26 08:40:17.679216+07', 'system', '2023-07-26 08:40:17.679216+07', 'Xã Phúc Thắng', '13951', 'Xã');
INSERT INTO category."Wards" VALUES (13954, 361, 'system', '2023-07-26 08:40:17.679219+07', 'system', '2023-07-26 08:40:17.679219+07', 'Xã Nghĩa Lợi', '13954', 'Xã');
INSERT INTO category."Wards" VALUES (13957, 361, 'system', '2023-07-26 08:40:17.679221+07', 'system', '2023-07-26 08:40:17.679222+07', 'Xã Nghĩa Hải', '13957', 'Xã');
INSERT INTO category."Wards" VALUES (13963, 361, 'system', '2023-07-26 08:40:17.679224+07', 'system', '2023-07-26 08:40:17.679224+07', 'Xã Nam Điền', '13963', 'Xã');
INSERT INTO category."Wards" VALUES (13966, 362, 'system', '2023-07-26 08:40:17.679227+07', 'system', '2023-07-26 08:40:17.679227+07', 'Thị trấn Nam Giang', '13966', 'Thị trấn');
INSERT INTO category."Wards" VALUES (13969, 362, 'system', '2023-07-26 08:40:17.679229+07', 'system', '2023-07-26 08:40:17.679229+07', 'Xã Nam Mỹ', '13969', 'Xã');
INSERT INTO category."Wards" VALUES (13972, 362, 'system', '2023-07-26 08:40:17.679232+07', 'system', '2023-07-26 08:40:17.679232+07', 'Xã Điền Xá', '13972', 'Xã');
INSERT INTO category."Wards" VALUES (13975, 362, 'system', '2023-07-26 08:40:17.679235+07', 'system', '2023-07-26 08:40:17.679235+07', 'Xã Nghĩa An', '13975', 'Xã');
INSERT INTO category."Wards" VALUES (13978, 362, 'system', '2023-07-26 08:40:17.679238+07', 'system', '2023-07-26 08:40:17.679238+07', 'Xã Nam Thắng', '13978', 'Xã');
INSERT INTO category."Wards" VALUES (13981, 362, 'system', '2023-07-26 08:40:17.67924+07', 'system', '2023-07-26 08:40:17.67924+07', 'Xã Nam Toàn', '13981', 'Xã');
INSERT INTO category."Wards" VALUES (13984, 362, 'system', '2023-07-26 08:40:17.679243+07', 'system', '2023-07-26 08:40:17.679243+07', 'Xã Hồng Quang', '13984', 'Xã');
INSERT INTO category."Wards" VALUES (13987, 362, 'system', '2023-07-26 08:40:17.679245+07', 'system', '2023-07-26 08:40:17.679245+07', 'Xã Tân Thịnh', '13987', 'Xã');
INSERT INTO category."Wards" VALUES (13990, 362, 'system', '2023-07-26 08:40:17.679248+07', 'system', '2023-07-26 08:40:17.679248+07', 'Xã Nam Cường', '13990', 'Xã');
INSERT INTO category."Wards" VALUES (13993, 362, 'system', '2023-07-26 08:40:17.679251+07', 'system', '2023-07-26 08:40:17.679251+07', 'Xã Nam Hồng', '13993', 'Xã');
INSERT INTO category."Wards" VALUES (13996, 362, 'system', '2023-07-26 08:40:17.679253+07', 'system', '2023-07-26 08:40:17.679253+07', 'Xã Nam Hùng', '13996', 'Xã');
INSERT INTO category."Wards" VALUES (13999, 362, 'system', '2023-07-26 08:40:17.679256+07', 'system', '2023-07-26 08:40:17.679256+07', 'Xã Nam Hoa', '13999', 'Xã');
INSERT INTO category."Wards" VALUES (14002, 362, 'system', '2023-07-26 08:40:17.679259+07', 'system', '2023-07-26 08:40:17.679259+07', 'Xã Nam Dương', '14002', 'Xã');
INSERT INTO category."Wards" VALUES (14005, 362, 'system', '2023-07-26 08:40:17.679261+07', 'system', '2023-07-26 08:40:17.679261+07', 'Xã Nam Thanh', '14005', 'Xã');
INSERT INTO category."Wards" VALUES (14008, 362, 'system', '2023-07-26 08:40:17.679264+07', 'system', '2023-07-26 08:40:17.679264+07', 'Xã Nam Lợi', '14008', 'Xã');
INSERT INTO category."Wards" VALUES (14011, 362, 'system', '2023-07-26 08:40:17.679266+07', 'system', '2023-07-26 08:40:17.679267+07', 'Xã Bình Minh', '14011', 'Xã');
INSERT INTO category."Wards" VALUES (14014, 362, 'system', '2023-07-26 08:40:17.679269+07', 'system', '2023-07-26 08:40:17.679269+07', 'Xã Đồng Sơn', '14014', 'Xã');
INSERT INTO category."Wards" VALUES (14017, 362, 'system', '2023-07-26 08:40:17.679272+07', 'system', '2023-07-26 08:40:17.679272+07', 'Xã Nam Tiến', '14017', 'Xã');
INSERT INTO category."Wards" VALUES (14020, 362, 'system', '2023-07-26 08:40:17.679274+07', 'system', '2023-07-26 08:40:17.679274+07', 'Xã Nam Hải', '14020', 'Xã');
INSERT INTO category."Wards" VALUES (14023, 362, 'system', '2023-07-26 08:40:17.679277+07', 'system', '2023-07-26 08:40:17.679277+07', 'Xã Nam Thái', '14023', 'Xã');
INSERT INTO category."Wards" VALUES (14026, 363, 'system', '2023-07-26 08:40:17.679279+07', 'system', '2023-07-26 08:40:17.679279+07', 'Thị trấn Cổ Lễ', '14026', 'Thị trấn');
INSERT INTO category."Wards" VALUES (14029, 363, 'system', '2023-07-26 08:40:17.679284+07', 'system', '2023-07-26 08:40:17.679284+07', 'Xã Phương Định', '14029', 'Xã');
INSERT INTO category."Wards" VALUES (14032, 363, 'system', '2023-07-26 08:40:17.679287+07', 'system', '2023-07-26 08:40:17.679287+07', 'Xã Trực Chính', '14032', 'Xã');
INSERT INTO category."Wards" VALUES (14035, 363, 'system', '2023-07-26 08:40:17.679289+07', 'system', '2023-07-26 08:40:17.679289+07', 'Xã Trung Đông', '14035', 'Xã');
INSERT INTO category."Wards" VALUES (14038, 363, 'system', '2023-07-26 08:40:17.679292+07', 'system', '2023-07-26 08:40:17.679292+07', 'Xã Liêm Hải', '14038', 'Xã');
INSERT INTO category."Wards" VALUES (14041, 363, 'system', '2023-07-26 08:40:17.679295+07', 'system', '2023-07-26 08:40:17.679295+07', 'Xã Trực Tuấn', '14041', 'Xã');
INSERT INTO category."Wards" VALUES (14044, 363, 'system', '2023-07-26 08:40:17.679297+07', 'system', '2023-07-26 08:40:17.679297+07', 'Xã Việt Hùng', '14044', 'Xã');
INSERT INTO category."Wards" VALUES (14047, 363, 'system', '2023-07-26 08:40:17.6793+07', 'system', '2023-07-26 08:40:17.6793+07', 'Xã Trực Đạo', '14047', 'Xã');
INSERT INTO category."Wards" VALUES (14050, 363, 'system', '2023-07-26 08:40:17.679303+07', 'system', '2023-07-26 08:40:17.679303+07', 'Xã Trực Hưng', '14050', 'Xã');
INSERT INTO category."Wards" VALUES (14053, 363, 'system', '2023-07-26 08:40:17.679305+07', 'system', '2023-07-26 08:40:17.679305+07', 'Xã Trực Nội', '14053', 'Xã');
INSERT INTO category."Wards" VALUES (14056, 363, 'system', '2023-07-26 08:40:17.679308+07', 'system', '2023-07-26 08:40:17.679308+07', 'Thị trấn Cát Thành', '14056', 'Thị trấn');
INSERT INTO category."Wards" VALUES (14059, 363, 'system', '2023-07-26 08:40:17.679311+07', 'system', '2023-07-26 08:40:17.679311+07', 'Xã Trực Thanh', '14059', 'Xã');
INSERT INTO category."Wards" VALUES (14062, 363, 'system', '2023-07-26 08:40:17.679313+07', 'system', '2023-07-26 08:40:17.679313+07', 'Xã Trực Khang', '14062', 'Xã');
INSERT INTO category."Wards" VALUES (14065, 363, 'system', '2023-07-26 08:40:17.679316+07', 'system', '2023-07-26 08:40:17.679316+07', 'Xã Trực Thuận', '14065', 'Xã');
INSERT INTO category."Wards" VALUES (14068, 363, 'system', '2023-07-26 08:40:17.679318+07', 'system', '2023-07-26 08:40:17.679318+07', 'Xã Trực Mỹ', '14068', 'Xã');
INSERT INTO category."Wards" VALUES (14071, 363, 'system', '2023-07-26 08:40:17.679321+07', 'system', '2023-07-26 08:40:17.679321+07', 'Xã Trực Đại', '14071', 'Xã');
INSERT INTO category."Wards" VALUES (14074, 363, 'system', '2023-07-26 08:40:17.679323+07', 'system', '2023-07-26 08:40:17.679324+07', 'Xã Trực Cường', '14074', 'Xã');
INSERT INTO category."Wards" VALUES (14077, 363, 'system', '2023-07-26 08:40:17.679326+07', 'system', '2023-07-26 08:40:17.679326+07', 'Thị trấn Ninh Cường', '14077', 'Thị trấn');
INSERT INTO category."Wards" VALUES (14080, 363, 'system', '2023-07-26 08:40:17.679329+07', 'system', '2023-07-26 08:40:17.679329+07', 'Xã Trực Thái', '14080', 'Xã');
INSERT INTO category."Wards" VALUES (14083, 363, 'system', '2023-07-26 08:40:17.679332+07', 'system', '2023-07-26 08:40:17.679332+07', 'Xã Trực Hùng', '14083', 'Xã');
INSERT INTO category."Wards" VALUES (14086, 363, 'system', '2023-07-26 08:40:17.679334+07', 'system', '2023-07-26 08:40:17.679334+07', 'Xã Trực Thắng', '14086', 'Xã');
INSERT INTO category."Wards" VALUES (14089, 364, 'system', '2023-07-26 08:40:17.679337+07', 'system', '2023-07-26 08:40:17.679337+07', 'Thị trấn Xuân Trường', '14089', 'Thị trấn');
INSERT INTO category."Wards" VALUES (14092, 364, 'system', '2023-07-26 08:40:17.67934+07', 'system', '2023-07-26 08:40:17.67934+07', 'Xã Xuân Châu', '14092', 'Xã');
INSERT INTO category."Wards" VALUES (14095, 364, 'system', '2023-07-26 08:40:17.679343+07', 'system', '2023-07-26 08:40:17.679343+07', 'Xã Xuân Hồng', '14095', 'Xã');
INSERT INTO category."Wards" VALUES (14098, 364, 'system', '2023-07-26 08:40:17.679345+07', 'system', '2023-07-26 08:40:17.679345+07', 'Xã Xuân Thành', '14098', 'Xã');
INSERT INTO category."Wards" VALUES (14101, 364, 'system', '2023-07-26 08:40:17.679348+07', 'system', '2023-07-26 08:40:17.679348+07', 'Xã Xuân Thượng', '14101', 'Xã');
INSERT INTO category."Wards" VALUES (14104, 364, 'system', '2023-07-26 08:40:17.67935+07', 'system', '2023-07-26 08:40:17.67935+07', 'Xã Xuân Phong', '14104', 'Xã');
INSERT INTO category."Wards" VALUES (14107, 364, 'system', '2023-07-26 08:40:17.679353+07', 'system', '2023-07-26 08:40:17.679353+07', 'Xã Xuân Đài', '14107', 'Xã');
INSERT INTO category."Wards" VALUES (14110, 364, 'system', '2023-07-26 08:40:17.679356+07', 'system', '2023-07-26 08:40:17.679356+07', 'Xã Xuân Tân', '14110', 'Xã');
INSERT INTO category."Wards" VALUES (14113, 364, 'system', '2023-07-26 08:40:17.679358+07', 'system', '2023-07-26 08:40:17.679358+07', 'Xã Xuân Thủy', '14113', 'Xã');
INSERT INTO category."Wards" VALUES (14116, 364, 'system', '2023-07-26 08:40:17.679361+07', 'system', '2023-07-26 08:40:17.679361+07', 'Xã Xuân Ngọc', '14116', 'Xã');
INSERT INTO category."Wards" VALUES (14119, 364, 'system', '2023-07-26 08:40:17.679363+07', 'system', '2023-07-26 08:40:17.679363+07', 'Xã Xuân Bắc', '14119', 'Xã');
INSERT INTO category."Wards" VALUES (14122, 364, 'system', '2023-07-26 08:40:17.679366+07', 'system', '2023-07-26 08:40:17.679366+07', 'Xã Xuân Phương', '14122', 'Xã');
INSERT INTO category."Wards" VALUES (14125, 364, 'system', '2023-07-26 08:40:17.679369+07', 'system', '2023-07-26 08:40:17.679369+07', 'Xã Thọ Nghiệp', '14125', 'Xã');
INSERT INTO category."Wards" VALUES (14128, 364, 'system', '2023-07-26 08:40:17.679371+07', 'system', '2023-07-26 08:40:17.679371+07', 'Xã Xuân Phú', '14128', 'Xã');
INSERT INTO category."Wards" VALUES (14131, 364, 'system', '2023-07-26 08:40:17.679374+07', 'system', '2023-07-26 08:40:17.679374+07', 'Xã Xuân Trung', '14131', 'Xã');
INSERT INTO category."Wards" VALUES (14134, 364, 'system', '2023-07-26 08:40:17.679376+07', 'system', '2023-07-26 08:40:17.679377+07', 'Xã Xuân Vinh', '14134', 'Xã');
INSERT INTO category."Wards" VALUES (14137, 364, 'system', '2023-07-26 08:40:17.679395+07', 'system', '2023-07-26 08:40:17.679395+07', 'Xã Xuân Kiên', '14137', 'Xã');
INSERT INTO category."Wards" VALUES (14140, 364, 'system', '2023-07-26 08:40:17.679397+07', 'system', '2023-07-26 08:40:17.679397+07', 'Xã Xuân Tiến', '14140', 'Xã');
INSERT INTO category."Wards" VALUES (14143, 364, 'system', '2023-07-26 08:40:17.679399+07', 'system', '2023-07-26 08:40:17.679399+07', 'Xã Xuân Ninh', '14143', 'Xã');
INSERT INTO category."Wards" VALUES (14146, 364, 'system', '2023-07-26 08:40:17.679401+07', 'system', '2023-07-26 08:40:17.679401+07', 'Xã Xuân Hòa', '14146', 'Xã');
INSERT INTO category."Wards" VALUES (14149, 365, 'system', '2023-07-26 08:40:17.679403+07', 'system', '2023-07-26 08:40:17.679403+07', 'Thị trấn Ngô Đồng', '14149', 'Thị trấn');
INSERT INTO category."Wards" VALUES (14152, 365, 'system', '2023-07-26 08:40:17.679406+07', 'system', '2023-07-26 08:40:17.679406+07', 'Thị trấn Quất Lâm', '14152', 'Thị trấn');
INSERT INTO category."Wards" VALUES (14155, 365, 'system', '2023-07-26 08:40:17.679408+07', 'system', '2023-07-26 08:40:17.679408+07', 'Xã Giao Hương', '14155', 'Xã');
INSERT INTO category."Wards" VALUES (14158, 365, 'system', '2023-07-26 08:40:17.67941+07', 'system', '2023-07-26 08:40:17.67941+07', 'Xã Hồng Thuận', '14158', 'Xã');
INSERT INTO category."Wards" VALUES (14161, 365, 'system', '2023-07-26 08:40:17.679413+07', 'system', '2023-07-26 08:40:17.679413+07', 'Xã Giao Thiện', '14161', 'Xã');
INSERT INTO category."Wards" VALUES (14164, 365, 'system', '2023-07-26 08:40:17.679415+07', 'system', '2023-07-26 08:40:17.679415+07', 'Xã Giao Thanh', '14164', 'Xã');
INSERT INTO category."Wards" VALUES (14167, 365, 'system', '2023-07-26 08:40:17.679417+07', 'system', '2023-07-26 08:40:17.679417+07', 'Xã Hoành Sơn', '14167', 'Xã');
INSERT INTO category."Wards" VALUES (14170, 365, 'system', '2023-07-26 08:40:17.679419+07', 'system', '2023-07-26 08:40:17.679419+07', 'Xã Bình Hòa', '14170', 'Xã');
INSERT INTO category."Wards" VALUES (14173, 365, 'system', '2023-07-26 08:40:17.679421+07', 'system', '2023-07-26 08:40:17.679421+07', 'Xã Giao Tiến', '14173', 'Xã');
INSERT INTO category."Wards" VALUES (14176, 365, 'system', '2023-07-26 08:40:17.679423+07', 'system', '2023-07-26 08:40:17.679423+07', 'Xã Giao Hà', '14176', 'Xã');
INSERT INTO category."Wards" VALUES (14179, 365, 'system', '2023-07-26 08:40:17.679425+07', 'system', '2023-07-26 08:40:17.679425+07', 'Xã Giao Nhân', '14179', 'Xã');
INSERT INTO category."Wards" VALUES (14182, 365, 'system', '2023-07-26 08:40:17.679427+07', 'system', '2023-07-26 08:40:17.679427+07', 'Xã Giao An', '14182', 'Xã');
INSERT INTO category."Wards" VALUES (14185, 365, 'system', '2023-07-26 08:40:17.679429+07', 'system', '2023-07-26 08:40:17.679429+07', 'Xã Giao Lạc', '14185', 'Xã');
INSERT INTO category."Wards" VALUES (14188, 365, 'system', '2023-07-26 08:40:17.679432+07', 'system', '2023-07-26 08:40:17.679432+07', 'Xã Giao Châu', '14188', 'Xã');
INSERT INTO category."Wards" VALUES (14191, 365, 'system', '2023-07-26 08:40:17.679434+07', 'system', '2023-07-26 08:40:17.679434+07', 'Xã Giao Tân', '14191', 'Xã');
INSERT INTO category."Wards" VALUES (14194, 365, 'system', '2023-07-26 08:40:17.679436+07', 'system', '2023-07-26 08:40:17.679436+07', 'Xã Giao Yến', '14194', 'Xã');
INSERT INTO category."Wards" VALUES (14197, 365, 'system', '2023-07-26 08:40:17.679438+07', 'system', '2023-07-26 08:40:17.679438+07', 'Xã Giao Xuân', '14197', 'Xã');
INSERT INTO category."Wards" VALUES (14200, 365, 'system', '2023-07-26 08:40:17.67944+07', 'system', '2023-07-26 08:40:17.67944+07', 'Xã Giao Thịnh', '14200', 'Xã');
INSERT INTO category."Wards" VALUES (14203, 365, 'system', '2023-07-26 08:40:17.679442+07', 'system', '2023-07-26 08:40:17.679442+07', 'Xã Giao Hải', '14203', 'Xã');
INSERT INTO category."Wards" VALUES (14206, 365, 'system', '2023-07-26 08:40:17.679444+07', 'system', '2023-07-26 08:40:17.679444+07', 'Xã Bạch Long', '14206', 'Xã');
INSERT INTO category."Wards" VALUES (14209, 365, 'system', '2023-07-26 08:40:17.679446+07', 'system', '2023-07-26 08:40:17.679447+07', 'Xã Giao Long', '14209', 'Xã');
INSERT INTO category."Wards" VALUES (14212, 365, 'system', '2023-07-26 08:40:17.679448+07', 'system', '2023-07-26 08:40:17.679449+07', 'Xã Giao Phong', '14212', 'Xã');
INSERT INTO category."Wards" VALUES (14215, 366, 'system', '2023-07-26 08:40:17.679451+07', 'system', '2023-07-26 08:40:17.679451+07', 'Thị trấn Yên Định', '14215', 'Thị trấn');
INSERT INTO category."Wards" VALUES (14218, 366, 'system', '2023-07-26 08:40:17.679453+07', 'system', '2023-07-26 08:40:17.679453+07', 'Thị trấn Cồn', '14218', 'Thị trấn');
INSERT INTO category."Wards" VALUES (14221, 366, 'system', '2023-07-26 08:40:17.679455+07', 'system', '2023-07-26 08:40:17.679455+07', 'Thị trấn Thịnh Long', '14221', 'Thị trấn');
INSERT INTO category."Wards" VALUES (14224, 366, 'system', '2023-07-26 08:40:17.679458+07', 'system', '2023-07-26 08:40:17.679458+07', 'Xã Hải Nam', '14224', 'Xã');
INSERT INTO category."Wards" VALUES (14227, 366, 'system', '2023-07-26 08:40:17.67946+07', 'system', '2023-07-26 08:40:17.67946+07', 'Xã Hải Trung', '14227', 'Xã');
INSERT INTO category."Wards" VALUES (14230, 366, 'system', '2023-07-26 08:40:17.679462+07', 'system', '2023-07-26 08:40:17.679462+07', 'Xã Hải Vân', '14230', 'Xã');
INSERT INTO category."Wards" VALUES (14233, 366, 'system', '2023-07-26 08:40:17.679464+07', 'system', '2023-07-26 08:40:17.679464+07', 'Xã Hải Minh', '14233', 'Xã');
INSERT INTO category."Wards" VALUES (14236, 366, 'system', '2023-07-26 08:40:17.679466+07', 'system', '2023-07-26 08:40:17.679466+07', 'Xã Hải Anh', '14236', 'Xã');
INSERT INTO category."Wards" VALUES (14239, 366, 'system', '2023-07-26 08:40:17.679468+07', 'system', '2023-07-26 08:40:17.679468+07', 'Xã Hải Hưng', '14239', 'Xã');
INSERT INTO category."Wards" VALUES (14242, 366, 'system', '2023-07-26 08:40:17.67947+07', 'system', '2023-07-26 08:40:17.67947+07', 'Xã Hải Bắc', '14242', 'Xã');
INSERT INTO category."Wards" VALUES (14245, 366, 'system', '2023-07-26 08:40:17.679473+07', 'system', '2023-07-26 08:40:17.679473+07', 'Xã Hải Phúc', '14245', 'Xã');
INSERT INTO category."Wards" VALUES (14248, 366, 'system', '2023-07-26 08:40:17.679475+07', 'system', '2023-07-26 08:40:17.679475+07', 'Xã Hải Thanh', '14248', 'Xã');
INSERT INTO category."Wards" VALUES (14251, 366, 'system', '2023-07-26 08:40:17.679477+07', 'system', '2023-07-26 08:40:17.679478+07', 'Xã Hải Hà', '14251', 'Xã');
INSERT INTO category."Wards" VALUES (14254, 366, 'system', '2023-07-26 08:40:17.67948+07', 'system', '2023-07-26 08:40:17.67948+07', 'Xã Hải Long', '14254', 'Xã');
INSERT INTO category."Wards" VALUES (14257, 366, 'system', '2023-07-26 08:40:17.679482+07', 'system', '2023-07-26 08:40:17.679482+07', 'Xã Hải Phương', '14257', 'Xã');
INSERT INTO category."Wards" VALUES (14260, 366, 'system', '2023-07-26 08:40:17.679484+07', 'system', '2023-07-26 08:40:17.679484+07', 'Xã Hải Đường', '14260', 'Xã');
INSERT INTO category."Wards" VALUES (14263, 366, 'system', '2023-07-26 08:40:17.679486+07', 'system', '2023-07-26 08:40:17.679486+07', 'Xã Hải Lộc', '14263', 'Xã');
INSERT INTO category."Wards" VALUES (14266, 366, 'system', '2023-07-26 08:40:17.679488+07', 'system', '2023-07-26 08:40:17.679488+07', 'Xã Hải Quang', '14266', 'Xã');
INSERT INTO category."Wards" VALUES (14269, 366, 'system', '2023-07-26 08:40:17.67949+07', 'system', '2023-07-26 08:40:17.67949+07', 'Xã Hải Đông', '14269', 'Xã');
INSERT INTO category."Wards" VALUES (14272, 366, 'system', '2023-07-26 08:40:17.679492+07', 'system', '2023-07-26 08:40:17.679492+07', 'Xã Hải Sơn', '14272', 'Xã');
INSERT INTO category."Wards" VALUES (14275, 366, 'system', '2023-07-26 08:40:17.679494+07', 'system', '2023-07-26 08:40:17.679494+07', 'Xã Hải Tân', '14275', 'Xã');
INSERT INTO category."Wards" VALUES (14281, 366, 'system', '2023-07-26 08:40:17.679496+07', 'system', '2023-07-26 08:40:17.679496+07', 'Xã Hải Phong', '14281', 'Xã');
INSERT INTO category."Wards" VALUES (14284, 366, 'system', '2023-07-26 08:40:17.679499+07', 'system', '2023-07-26 08:40:17.679499+07', 'Xã Hải An', '14284', 'Xã');
INSERT INTO category."Wards" VALUES (14287, 366, 'system', '2023-07-26 08:40:17.679501+07', 'system', '2023-07-26 08:40:17.679501+07', 'Xã Hải Tây', '14287', 'Xã');
INSERT INTO category."Wards" VALUES (14290, 366, 'system', '2023-07-26 08:40:17.679503+07', 'system', '2023-07-26 08:40:17.679503+07', 'Xã Hải Lý', '14290', 'Xã');
INSERT INTO category."Wards" VALUES (14293, 366, 'system', '2023-07-26 08:40:17.679505+07', 'system', '2023-07-26 08:40:17.679505+07', 'Xã Hải Phú', '14293', 'Xã');
INSERT INTO category."Wards" VALUES (14296, 366, 'system', '2023-07-26 08:40:17.679507+07', 'system', '2023-07-26 08:40:17.679507+07', 'Xã Hải Giang', '14296', 'Xã');
INSERT INTO category."Wards" VALUES (14299, 366, 'system', '2023-07-26 08:40:17.679509+07', 'system', '2023-07-26 08:40:17.679509+07', 'Xã Hải Cường', '14299', 'Xã');
INSERT INTO category."Wards" VALUES (14302, 366, 'system', '2023-07-26 08:40:17.679513+07', 'system', '2023-07-26 08:40:17.679513+07', 'Xã Hải Ninh', '14302', 'Xã');
INSERT INTO category."Wards" VALUES (14305, 366, 'system', '2023-07-26 08:40:17.679516+07', 'system', '2023-07-26 08:40:17.679516+07', 'Xã Hải Chính', '14305', 'Xã');
INSERT INTO category."Wards" VALUES (14308, 366, 'system', '2023-07-26 08:40:17.67952+07', 'system', '2023-07-26 08:40:17.67952+07', 'Xã Hải Xuân', '14308', 'Xã');
INSERT INTO category."Wards" VALUES (14311, 366, 'system', '2023-07-26 08:40:17.679524+07', 'system', '2023-07-26 08:40:17.679524+07', 'Xã Hải Châu', '14311', 'Xã');
INSERT INTO category."Wards" VALUES (14314, 366, 'system', '2023-07-26 08:40:17.679528+07', 'system', '2023-07-26 08:40:17.679528+07', 'Xã Hải Triều', '14314', 'Xã');
INSERT INTO category."Wards" VALUES (14317, 366, 'system', '2023-07-26 08:40:17.679532+07', 'system', '2023-07-26 08:40:17.679532+07', 'Xã Hải Hòa', '14317', 'Xã');
INSERT INTO category."Wards" VALUES (14320, 369, 'system', '2023-07-26 08:40:17.679534+07', 'system', '2023-07-26 08:40:17.679534+07', 'Phường Đông Thành', '14320', 'Phường');
INSERT INTO category."Wards" VALUES (14323, 369, 'system', '2023-07-26 08:40:17.679537+07', 'system', '2023-07-26 08:40:17.679537+07', 'Phường Tân Thành', '14323', 'Phường');
INSERT INTO category."Wards" VALUES (14326, 369, 'system', '2023-07-26 08:40:17.679539+07', 'system', '2023-07-26 08:40:17.679539+07', 'Phường Thanh Bình', '14326', 'Phường');
INSERT INTO category."Wards" VALUES (14329, 369, 'system', '2023-07-26 08:40:17.679541+07', 'system', '2023-07-26 08:40:17.679541+07', 'Phường Vân Giang', '14329', 'Phường');
INSERT INTO category."Wards" VALUES (14332, 369, 'system', '2023-07-26 08:40:17.679544+07', 'system', '2023-07-26 08:40:17.679544+07', 'Phường Bích Đào', '14332', 'Phường');
INSERT INTO category."Wards" VALUES (14335, 369, 'system', '2023-07-26 08:40:17.679546+07', 'system', '2023-07-26 08:40:17.679546+07', 'Phường Phúc Thành', '14335', 'Phường');
INSERT INTO category."Wards" VALUES (14338, 369, 'system', '2023-07-26 08:40:17.679548+07', 'system', '2023-07-26 08:40:17.679548+07', 'Phường Nam Bình', '14338', 'Phường');
INSERT INTO category."Wards" VALUES (14341, 369, 'system', '2023-07-26 08:40:17.67955+07', 'system', '2023-07-26 08:40:17.679551+07', 'Phường Nam Thành', '14341', 'Phường');
INSERT INTO category."Wards" VALUES (14344, 369, 'system', '2023-07-26 08:40:17.679553+07', 'system', '2023-07-26 08:40:17.679553+07', 'Phường Ninh Khánh', '14344', 'Phường');
INSERT INTO category."Wards" VALUES (14347, 369, 'system', '2023-07-26 08:40:17.679555+07', 'system', '2023-07-26 08:40:17.679555+07', 'Xã Ninh Nhất', '14347', 'Xã');
INSERT INTO category."Wards" VALUES (14350, 369, 'system', '2023-07-26 08:40:17.679557+07', 'system', '2023-07-26 08:40:17.679557+07', 'Xã Ninh Tiến', '14350', 'Xã');
INSERT INTO category."Wards" VALUES (14353, 369, 'system', '2023-07-26 08:40:17.679559+07', 'system', '2023-07-26 08:40:17.679559+07', 'Xã Ninh Phúc', '14353', 'Xã');
INSERT INTO category."Wards" VALUES (14356, 369, 'system', '2023-07-26 08:40:17.679562+07', 'system', '2023-07-26 08:40:17.679562+07', 'Phường Ninh Sơn', '14356', 'Phường');
INSERT INTO category."Wards" VALUES (14359, 369, 'system', '2023-07-26 08:40:17.679564+07', 'system', '2023-07-26 08:40:17.679564+07', 'Phường Ninh Phong', '14359', 'Phường');
INSERT INTO category."Wards" VALUES (14362, 370, 'system', '2023-07-26 08:40:17.679567+07', 'system', '2023-07-26 08:40:17.679567+07', 'Phường Bắc Sơn', '14362', 'Phường');
INSERT INTO category."Wards" VALUES (14365, 370, 'system', '2023-07-26 08:40:17.679569+07', 'system', '2023-07-26 08:40:17.679569+07', 'Phường Trung Sơn', '14365', 'Phường');
INSERT INTO category."Wards" VALUES (14368, 370, 'system', '2023-07-26 08:40:17.679571+07', 'system', '2023-07-26 08:40:17.679571+07', 'Phường Nam Sơn', '14368', 'Phường');
INSERT INTO category."Wards" VALUES (14369, 370, 'system', '2023-07-26 08:40:17.679574+07', 'system', '2023-07-26 08:40:17.679574+07', 'Phường Tây Sơn', '14369', 'Phường');
INSERT INTO category."Wards" VALUES (14371, 370, 'system', '2023-07-26 08:40:17.679576+07', 'system', '2023-07-26 08:40:17.679576+07', 'Xã Yên Sơn', '14371', 'Xã');
INSERT INTO category."Wards" VALUES (14374, 370, 'system', '2023-07-26 08:40:17.679578+07', 'system', '2023-07-26 08:40:17.679578+07', 'Phường Yên Bình', '14374', 'Phường');
INSERT INTO category."Wards" VALUES (14375, 370, 'system', '2023-07-26 08:40:17.67958+07', 'system', '2023-07-26 08:40:17.67958+07', 'Phường Tân Bình', '14375', 'Phường');
INSERT INTO category."Wards" VALUES (14377, 370, 'system', '2023-07-26 08:40:17.679582+07', 'system', '2023-07-26 08:40:17.679582+07', 'Xã Quang Sơn', '14377', 'Xã');
INSERT INTO category."Wards" VALUES (14380, 370, 'system', '2023-07-26 08:40:17.679584+07', 'system', '2023-07-26 08:40:17.679585+07', 'Xã Đông Sơn', '14380', 'Xã');
INSERT INTO category."Wards" VALUES (14383, 372, 'system', '2023-07-26 08:40:17.679587+07', 'system', '2023-07-26 08:40:17.679587+07', 'Thị trấn Nho Quan', '14383', 'Thị trấn');
INSERT INTO category."Wards" VALUES (14386, 372, 'system', '2023-07-26 08:40:17.679589+07', 'system', '2023-07-26 08:40:17.679589+07', 'Xã Xích Thổ', '14386', 'Xã');
INSERT INTO category."Wards" VALUES (14389, 372, 'system', '2023-07-26 08:40:17.679591+07', 'system', '2023-07-26 08:40:17.679591+07', 'Xã Gia Lâm', '14389', 'Xã');
INSERT INTO category."Wards" VALUES (14392, 372, 'system', '2023-07-26 08:40:17.679594+07', 'system', '2023-07-26 08:40:17.679594+07', 'Xã Gia Sơn', '14392', 'Xã');
INSERT INTO category."Wards" VALUES (14395, 372, 'system', '2023-07-26 08:40:17.679596+07', 'system', '2023-07-26 08:40:17.679596+07', 'Xã Thạch Bình', '14395', 'Xã');
INSERT INTO category."Wards" VALUES (14398, 372, 'system', '2023-07-26 08:40:17.679608+07', 'system', '2023-07-26 08:40:17.679608+07', 'Xã Gia Thủy', '14398', 'Xã');
INSERT INTO category."Wards" VALUES (14401, 372, 'system', '2023-07-26 08:40:17.67961+07', 'system', '2023-07-26 08:40:17.67961+07', 'Xã Gia Tường', '14401', 'Xã');
INSERT INTO category."Wards" VALUES (14404, 372, 'system', '2023-07-26 08:40:17.679612+07', 'system', '2023-07-26 08:40:17.679612+07', 'Xã Cúc Phương', '14404', 'Xã');
INSERT INTO category."Wards" VALUES (14407, 372, 'system', '2023-07-26 08:40:17.679614+07', 'system', '2023-07-26 08:40:17.679614+07', 'Xã Phú Sơn', '14407', 'Xã');
INSERT INTO category."Wards" VALUES (14410, 372, 'system', '2023-07-26 08:40:17.679617+07', 'system', '2023-07-26 08:40:17.679617+07', 'Xã Đức Long', '14410', 'Xã');
INSERT INTO category."Wards" VALUES (14413, 372, 'system', '2023-07-26 08:40:17.679619+07', 'system', '2023-07-26 08:40:17.679619+07', 'Xã Lạc Vân', '14413', 'Xã');
INSERT INTO category."Wards" VALUES (14416, 372, 'system', '2023-07-26 08:40:17.679621+07', 'system', '2023-07-26 08:40:17.679621+07', 'Xã Đồng Phong', '14416', 'Xã');
INSERT INTO category."Wards" VALUES (14419, 372, 'system', '2023-07-26 08:40:17.679623+07', 'system', '2023-07-26 08:40:17.679623+07', 'Xã Yên Quang', '14419', 'Xã');
INSERT INTO category."Wards" VALUES (14422, 372, 'system', '2023-07-26 08:40:17.679625+07', 'system', '2023-07-26 08:40:17.679626+07', 'Xã Lạng Phong', '14422', 'Xã');
INSERT INTO category."Wards" VALUES (14425, 372, 'system', '2023-07-26 08:40:17.679628+07', 'system', '2023-07-26 08:40:17.679628+07', 'Xã Thượng Hòa', '14425', 'Xã');
INSERT INTO category."Wards" VALUES (14428, 372, 'system', '2023-07-26 08:40:17.67963+07', 'system', '2023-07-26 08:40:17.67963+07', 'Xã Văn Phong', '14428', 'Xã');
INSERT INTO category."Wards" VALUES (14431, 372, 'system', '2023-07-26 08:40:17.679632+07', 'system', '2023-07-26 08:40:17.679632+07', 'Xã Văn Phương', '14431', 'Xã');
INSERT INTO category."Wards" VALUES (14434, 372, 'system', '2023-07-26 08:40:17.679634+07', 'system', '2023-07-26 08:40:17.679634+07', 'Xã Thanh Lạc', '14434', 'Xã');
INSERT INTO category."Wards" VALUES (14437, 372, 'system', '2023-07-26 08:40:17.679636+07', 'system', '2023-07-26 08:40:17.679637+07', 'Xã Sơn Lai', '14437', 'Xã');
INSERT INTO category."Wards" VALUES (14440, 372, 'system', '2023-07-26 08:40:17.679639+07', 'system', '2023-07-26 08:40:17.679639+07', 'Xã Sơn Thành', '14440', 'Xã');
INSERT INTO category."Wards" VALUES (14443, 372, 'system', '2023-07-26 08:40:17.679641+07', 'system', '2023-07-26 08:40:17.679641+07', 'Xã Văn Phú', '14443', 'Xã');
INSERT INTO category."Wards" VALUES (14446, 372, 'system', '2023-07-26 08:40:17.679643+07', 'system', '2023-07-26 08:40:17.679643+07', 'Xã Phú Lộc', '14446', 'Xã');
INSERT INTO category."Wards" VALUES (14449, 372, 'system', '2023-07-26 08:40:17.679645+07', 'system', '2023-07-26 08:40:17.679645+07', 'Xã Kỳ Phú', '14449', 'Xã');
INSERT INTO category."Wards" VALUES (14452, 372, 'system', '2023-07-26 08:40:17.679647+07', 'system', '2023-07-26 08:40:17.679647+07', 'Xã Quỳnh Lưu', '14452', 'Xã');
INSERT INTO category."Wards" VALUES (14455, 372, 'system', '2023-07-26 08:40:17.679649+07', 'system', '2023-07-26 08:40:17.67965+07', 'Xã Sơn Hà', '14455', 'Xã');
INSERT INTO category."Wards" VALUES (14458, 372, 'system', '2023-07-26 08:40:17.679652+07', 'system', '2023-07-26 08:40:17.679653+07', 'Xã Phú Long', '14458', 'Xã');
INSERT INTO category."Wards" VALUES (14461, 372, 'system', '2023-07-26 08:40:17.679655+07', 'system', '2023-07-26 08:40:17.679655+07', 'Xã Quảng Lạc', '14461', 'Xã');
INSERT INTO category."Wards" VALUES (14464, 373, 'system', '2023-07-26 08:40:17.679657+07', 'system', '2023-07-26 08:40:17.679657+07', 'Thị trấn Me', '14464', 'Thị trấn');
INSERT INTO category."Wards" VALUES (14467, 373, 'system', '2023-07-26 08:40:17.679659+07', 'system', '2023-07-26 08:40:17.679659+07', 'Xã Gia Hòa', '14467', 'Xã');
INSERT INTO category."Wards" VALUES (14470, 373, 'system', '2023-07-26 08:40:17.679661+07', 'system', '2023-07-26 08:40:17.679661+07', 'Xã Gia Hưng', '14470', 'Xã');
INSERT INTO category."Wards" VALUES (14473, 373, 'system', '2023-07-26 08:40:17.679663+07', 'system', '2023-07-26 08:40:17.679663+07', 'Xã Liên Sơn', '14473', 'Xã');
INSERT INTO category."Wards" VALUES (14476, 373, 'system', '2023-07-26 08:40:17.679666+07', 'system', '2023-07-26 08:40:17.679666+07', 'Xã Gia Thanh', '14476', 'Xã');
INSERT INTO category."Wards" VALUES (14479, 373, 'system', '2023-07-26 08:40:17.679668+07', 'system', '2023-07-26 08:40:17.679668+07', 'Xã Gia Vân', '14479', 'Xã');
INSERT INTO category."Wards" VALUES (14482, 373, 'system', '2023-07-26 08:40:17.67967+07', 'system', '2023-07-26 08:40:17.67967+07', 'Xã Gia Phú', '14482', 'Xã');
INSERT INTO category."Wards" VALUES (14485, 373, 'system', '2023-07-26 08:40:17.679672+07', 'system', '2023-07-26 08:40:17.679672+07', 'Xã Gia Xuân', '14485', 'Xã');
INSERT INTO category."Wards" VALUES (14488, 373, 'system', '2023-07-26 08:40:17.679674+07', 'system', '2023-07-26 08:40:17.679674+07', 'Xã Gia Lập', '14488', 'Xã');
INSERT INTO category."Wards" VALUES (14491, 373, 'system', '2023-07-26 08:40:17.679676+07', 'system', '2023-07-26 08:40:17.679676+07', 'Xã Gia Vượng', '14491', 'Xã');
INSERT INTO category."Wards" VALUES (14494, 373, 'system', '2023-07-26 08:40:17.679678+07', 'system', '2023-07-26 08:40:17.679678+07', 'Xã Gia Trấn', '14494', 'Xã');
INSERT INTO category."Wards" VALUES (14497, 373, 'system', '2023-07-26 08:40:17.679681+07', 'system', '2023-07-26 08:40:17.679681+07', 'Xã Gia Thịnh', '14497', 'Xã');
INSERT INTO category."Wards" VALUES (14500, 373, 'system', '2023-07-26 08:40:17.679683+07', 'system', '2023-07-26 08:40:17.679683+07', 'Xã Gia Phương', '14500', 'Xã');
INSERT INTO category."Wards" VALUES (14503, 373, 'system', '2023-07-26 08:40:17.679685+07', 'system', '2023-07-26 08:40:17.679685+07', 'Xã Gia Tân', '14503', 'Xã');
INSERT INTO category."Wards" VALUES (14506, 373, 'system', '2023-07-26 08:40:17.679687+07', 'system', '2023-07-26 08:40:17.679687+07', 'Xã Gia Thắng', '14506', 'Xã');
INSERT INTO category."Wards" VALUES (14509, 373, 'system', '2023-07-26 08:40:17.679689+07', 'system', '2023-07-26 08:40:17.679689+07', 'Xã Gia Trung', '14509', 'Xã');
INSERT INTO category."Wards" VALUES (14512, 373, 'system', '2023-07-26 08:40:17.679691+07', 'system', '2023-07-26 08:40:17.679691+07', 'Xã Gia Minh', '14512', 'Xã');
INSERT INTO category."Wards" VALUES (14515, 373, 'system', '2023-07-26 08:40:17.679693+07', 'system', '2023-07-26 08:40:17.679693+07', 'Xã Gia Lạc', '14515', 'Xã');
INSERT INTO category."Wards" VALUES (14518, 373, 'system', '2023-07-26 08:40:17.679695+07', 'system', '2023-07-26 08:40:17.679695+07', 'Xã Gia Tiến', '14518', 'Xã');
INSERT INTO category."Wards" VALUES (14521, 373, 'system', '2023-07-26 08:40:17.679698+07', 'system', '2023-07-26 08:40:17.679698+07', 'Xã Gia Sinh', '14521', 'Xã');
INSERT INTO category."Wards" VALUES (14524, 373, 'system', '2023-07-26 08:40:17.6797+07', 'system', '2023-07-26 08:40:17.6797+07', 'Xã Gia Phong', '14524', 'Xã');
INSERT INTO category."Wards" VALUES (14527, 374, 'system', '2023-07-26 08:40:17.679702+07', 'system', '2023-07-26 08:40:17.679702+07', 'Thị trấn Thiên Tôn', '14527', 'Thị trấn');
INSERT INTO category."Wards" VALUES (14530, 374, 'system', '2023-07-26 08:40:17.679704+07', 'system', '2023-07-26 08:40:17.679704+07', 'Xã Ninh Giang', '14530', 'Xã');
INSERT INTO category."Wards" VALUES (14533, 374, 'system', '2023-07-26 08:40:17.679706+07', 'system', '2023-07-26 08:40:17.679706+07', 'Xã Trường Yên', '14533', 'Xã');
INSERT INTO category."Wards" VALUES (14536, 374, 'system', '2023-07-26 08:40:17.679709+07', 'system', '2023-07-26 08:40:17.679709+07', 'Xã Ninh Khang', '14536', 'Xã');
INSERT INTO category."Wards" VALUES (14539, 374, 'system', '2023-07-26 08:40:17.679711+07', 'system', '2023-07-26 08:40:17.679711+07', 'Xã Ninh Mỹ', '14539', 'Xã');
INSERT INTO category."Wards" VALUES (14542, 374, 'system', '2023-07-26 08:40:17.679713+07', 'system', '2023-07-26 08:40:17.679713+07', 'Xã Ninh Hòa', '14542', 'Xã');
INSERT INTO category."Wards" VALUES (14545, 374, 'system', '2023-07-26 08:40:17.679715+07', 'system', '2023-07-26 08:40:17.679715+07', 'Xã Ninh Xuân', '14545', 'Xã');
INSERT INTO category."Wards" VALUES (14548, 374, 'system', '2023-07-26 08:40:17.679717+07', 'system', '2023-07-26 08:40:17.679717+07', 'Xã Ninh Hải', '14548', 'Xã');
INSERT INTO category."Wards" VALUES (14551, 374, 'system', '2023-07-26 08:40:17.679719+07', 'system', '2023-07-26 08:40:17.679719+07', 'Xã Ninh Thắng', '14551', 'Xã');
INSERT INTO category."Wards" VALUES (14554, 374, 'system', '2023-07-26 08:40:17.679721+07', 'system', '2023-07-26 08:40:17.679721+07', 'Xã Ninh Vân', '14554', 'Xã');
INSERT INTO category."Wards" VALUES (14557, 374, 'system', '2023-07-26 08:40:17.679724+07', 'system', '2023-07-26 08:40:17.679724+07', 'Xã Ninh An', '14557', 'Xã');
INSERT INTO category."Wards" VALUES (14560, 375, 'system', '2023-07-26 08:40:17.679726+07', 'system', '2023-07-26 08:40:17.679726+07', 'Thị trấn Yên Ninh', '14560', 'Thị trấn');
INSERT INTO category."Wards" VALUES (14563, 375, 'system', '2023-07-26 08:40:17.679728+07', 'system', '2023-07-26 08:40:17.679728+07', 'Xã Khánh Tiên', '14563', 'Xã');
INSERT INTO category."Wards" VALUES (14566, 375, 'system', '2023-07-26 08:40:17.679731+07', 'system', '2023-07-26 08:40:17.679731+07', 'Xã Khánh Phú', '14566', 'Xã');
INSERT INTO category."Wards" VALUES (14569, 375, 'system', '2023-07-26 08:40:17.679733+07', 'system', '2023-07-26 08:40:17.679733+07', 'Xã Khánh Hòa', '14569', 'Xã');
INSERT INTO category."Wards" VALUES (14572, 375, 'system', '2023-07-26 08:40:17.679735+07', 'system', '2023-07-26 08:40:17.679735+07', 'Xã Khánh Lợi', '14572', 'Xã');
INSERT INTO category."Wards" VALUES (14575, 375, 'system', '2023-07-26 08:40:17.679737+07', 'system', '2023-07-26 08:40:17.679737+07', 'Xã Khánh An', '14575', 'Xã');
INSERT INTO category."Wards" VALUES (14578, 375, 'system', '2023-07-26 08:40:17.679739+07', 'system', '2023-07-26 08:40:17.679739+07', 'Xã Khánh Cường', '14578', 'Xã');
INSERT INTO category."Wards" VALUES (14581, 375, 'system', '2023-07-26 08:40:17.679742+07', 'system', '2023-07-26 08:40:17.679742+07', 'Xã Khánh Cư', '14581', 'Xã');
INSERT INTO category."Wards" VALUES (14584, 375, 'system', '2023-07-26 08:40:17.679744+07', 'system', '2023-07-26 08:40:17.679744+07', 'Xã Khánh Thiện', '14584', 'Xã');
INSERT INTO category."Wards" VALUES (14587, 375, 'system', '2023-07-26 08:40:17.679746+07', 'system', '2023-07-26 08:40:17.679746+07', 'Xã Khánh Hải', '14587', 'Xã');
INSERT INTO category."Wards" VALUES (14590, 375, 'system', '2023-07-26 08:40:17.679748+07', 'system', '2023-07-26 08:40:17.679748+07', 'Xã Khánh Trung', '14590', 'Xã');
INSERT INTO category."Wards" VALUES (14593, 375, 'system', '2023-07-26 08:40:17.67975+07', 'system', '2023-07-26 08:40:17.67975+07', 'Xã Khánh Mậu', '14593', 'Xã');
INSERT INTO category."Wards" VALUES (14596, 375, 'system', '2023-07-26 08:40:17.679752+07', 'system', '2023-07-26 08:40:17.679752+07', 'Xã Khánh Vân', '14596', 'Xã');
INSERT INTO category."Wards" VALUES (14599, 375, 'system', '2023-07-26 08:40:17.679754+07', 'system', '2023-07-26 08:40:17.679754+07', 'Xã Khánh Hội', '14599', 'Xã');
INSERT INTO category."Wards" VALUES (14602, 375, 'system', '2023-07-26 08:40:17.679756+07', 'system', '2023-07-26 08:40:17.679756+07', 'Xã Khánh Công', '14602', 'Xã');
INSERT INTO category."Wards" VALUES (14608, 375, 'system', '2023-07-26 08:40:17.679759+07', 'system', '2023-07-26 08:40:17.679759+07', 'Xã Khánh Thành', '14608', 'Xã');
INSERT INTO category."Wards" VALUES (14611, 375, 'system', '2023-07-26 08:40:17.679761+07', 'system', '2023-07-26 08:40:17.679761+07', 'Xã Khánh Nhạc', '14611', 'Xã');
INSERT INTO category."Wards" VALUES (14614, 375, 'system', '2023-07-26 08:40:17.679763+07', 'system', '2023-07-26 08:40:17.679763+07', 'Xã Khánh Thủy', '14614', 'Xã');
INSERT INTO category."Wards" VALUES (14617, 375, 'system', '2023-07-26 08:40:17.679765+07', 'system', '2023-07-26 08:40:17.679765+07', 'Xã Khánh Hồng', '14617', 'Xã');
INSERT INTO category."Wards" VALUES (14620, 376, 'system', '2023-07-26 08:40:17.679767+07', 'system', '2023-07-26 08:40:17.679767+07', 'Thị trấn Phát Diệm', '14620', 'Thị trấn');
INSERT INTO category."Wards" VALUES (14623, 376, 'system', '2023-07-26 08:40:17.679769+07', 'system', '2023-07-26 08:40:17.67977+07', 'Thị trấn Bình Minh', '14623', 'Thị trấn');
INSERT INTO category."Wards" VALUES (14629, 376, 'system', '2023-07-26 08:40:17.679772+07', 'system', '2023-07-26 08:40:17.679772+07', 'Xã Hồi Ninh', '14629', 'Xã');
INSERT INTO category."Wards" VALUES (14632, 376, 'system', '2023-07-26 08:40:17.679774+07', 'system', '2023-07-26 08:40:17.679774+07', 'Xã Xuân Chính', '14632', 'Xã');
INSERT INTO category."Wards" VALUES (14635, 376, 'system', '2023-07-26 08:40:17.679776+07', 'system', '2023-07-26 08:40:17.679776+07', 'Xã Kim Định', '14635', 'Xã');
INSERT INTO category."Wards" VALUES (14638, 376, 'system', '2023-07-26 08:40:17.679778+07', 'system', '2023-07-26 08:40:17.679778+07', 'Xã Ân Hòa', '14638', 'Xã');
INSERT INTO category."Wards" VALUES (14641, 376, 'system', '2023-07-26 08:40:17.67978+07', 'system', '2023-07-26 08:40:17.679781+07', 'Xã Hùng Tiến', '14641', 'Xã');
INSERT INTO category."Wards" VALUES (14647, 376, 'system', '2023-07-26 08:40:17.679783+07', 'system', '2023-07-26 08:40:17.679783+07', 'Xã Quang Thiện', '14647', 'Xã');
INSERT INTO category."Wards" VALUES (14650, 376, 'system', '2023-07-26 08:40:17.679785+07', 'system', '2023-07-26 08:40:17.679785+07', 'Xã Như Hòa', '14650', 'Xã');
INSERT INTO category."Wards" VALUES (14653, 376, 'system', '2023-07-26 08:40:17.679787+07', 'system', '2023-07-26 08:40:17.679787+07', 'Xã Chất Bình', '14653', 'Xã');
INSERT INTO category."Wards" VALUES (14656, 376, 'system', '2023-07-26 08:40:17.679789+07', 'system', '2023-07-26 08:40:17.679789+07', 'Xã Đồng Hướng', '14656', 'Xã');
INSERT INTO category."Wards" VALUES (14659, 376, 'system', '2023-07-26 08:40:17.679792+07', 'system', '2023-07-26 08:40:17.679792+07', 'Xã Kim Chính', '14659', 'Xã');
INSERT INTO category."Wards" VALUES (14662, 376, 'system', '2023-07-26 08:40:17.679794+07', 'system', '2023-07-26 08:40:17.679794+07', 'Xã Thượng Kiệm', '14662', 'Xã');
INSERT INTO category."Wards" VALUES (14665, 376, 'system', '2023-07-26 08:40:17.679796+07', 'system', '2023-07-26 08:40:17.679796+07', 'Xã Lưu Phương', '14665', 'Xã');
INSERT INTO category."Wards" VALUES (14668, 376, 'system', '2023-07-26 08:40:17.679798+07', 'system', '2023-07-26 08:40:17.679798+07', 'Xã Tân Thành', '14668', 'Xã');
INSERT INTO category."Wards" VALUES (14671, 376, 'system', '2023-07-26 08:40:17.6798+07', 'system', '2023-07-26 08:40:17.6798+07', 'Xã Yên Lộc', '14671', 'Xã');
INSERT INTO category."Wards" VALUES (14674, 376, 'system', '2023-07-26 08:40:17.679802+07', 'system', '2023-07-26 08:40:17.679802+07', 'Xã Lai Thành', '14674', 'Xã');
INSERT INTO category."Wards" VALUES (14677, 376, 'system', '2023-07-26 08:40:17.679804+07', 'system', '2023-07-26 08:40:17.679804+07', 'Xã Định Hóa', '14677', 'Xã');
INSERT INTO category."Wards" VALUES (14680, 376, 'system', '2023-07-26 08:40:17.679807+07', 'system', '2023-07-26 08:40:17.679807+07', 'Xã Văn Hải', '14680', 'Xã');
INSERT INTO category."Wards" VALUES (14683, 376, 'system', '2023-07-26 08:40:17.679809+07', 'system', '2023-07-26 08:40:17.679809+07', 'Xã Kim Tân', '14683', 'Xã');
INSERT INTO category."Wards" VALUES (14686, 376, 'system', '2023-07-26 08:40:17.679811+07', 'system', '2023-07-26 08:40:17.679811+07', 'Xã Kim Mỹ', '14686', 'Xã');
INSERT INTO category."Wards" VALUES (14689, 376, 'system', '2023-07-26 08:40:17.679813+07', 'system', '2023-07-26 08:40:17.679814+07', 'Xã Cồn Thoi', '14689', 'Xã');
INSERT INTO category."Wards" VALUES (14692, 376, 'system', '2023-07-26 08:40:17.679816+07', 'system', '2023-07-26 08:40:17.679816+07', 'Xã Kim Hải', '14692', 'Xã');
INSERT INTO category."Wards" VALUES (14695, 376, 'system', '2023-07-26 08:40:17.679818+07', 'system', '2023-07-26 08:40:17.679818+07', 'Xã Kim Trung', '14695', 'Xã');
INSERT INTO category."Wards" VALUES (14698, 376, 'system', '2023-07-26 08:40:17.67982+07', 'system', '2023-07-26 08:40:17.67982+07', 'Xã Kim Đông', '14698', 'Xã');
INSERT INTO category."Wards" VALUES (14701, 377, 'system', '2023-07-26 08:40:17.679822+07', 'system', '2023-07-26 08:40:17.679822+07', 'Thị trấn Yên Thịnh', '14701', 'Thị trấn');
INSERT INTO category."Wards" VALUES (14704, 377, 'system', '2023-07-26 08:40:17.679824+07', 'system', '2023-07-26 08:40:17.679824+07', 'Xã Khánh Thượng', '14704', 'Xã');
INSERT INTO category."Wards" VALUES (14707, 377, 'system', '2023-07-26 08:40:17.679827+07', 'system', '2023-07-26 08:40:17.679827+07', 'Xã Khánh Dương', '14707', 'Xã');
INSERT INTO category."Wards" VALUES (14710, 377, 'system', '2023-07-26 08:40:17.679829+07', 'system', '2023-07-26 08:40:17.679829+07', 'Xã Mai Sơn', '14710', 'Xã');
INSERT INTO category."Wards" VALUES (14713, 377, 'system', '2023-07-26 08:40:17.679831+07', 'system', '2023-07-26 08:40:17.679831+07', 'Xã Khánh Thịnh', '14713', 'Xã');
INSERT INTO category."Wards" VALUES (14719, 377, 'system', '2023-07-26 08:40:17.679833+07', 'system', '2023-07-26 08:40:17.679833+07', 'Xã Yên Phong', '14719', 'Xã');
INSERT INTO category."Wards" VALUES (14722, 377, 'system', '2023-07-26 08:40:17.679835+07', 'system', '2023-07-26 08:40:17.679835+07', 'Xã Yên Hòa', '14722', 'Xã');
INSERT INTO category."Wards" VALUES (14725, 377, 'system', '2023-07-26 08:40:17.679837+07', 'system', '2023-07-26 08:40:17.679838+07', 'Xã Yên Thắng', '14725', 'Xã');
INSERT INTO category."Wards" VALUES (14728, 377, 'system', '2023-07-26 08:40:17.67984+07', 'system', '2023-07-26 08:40:17.67984+07', 'Xã Yên Từ', '14728', 'Xã');
INSERT INTO category."Wards" VALUES (14731, 377, 'system', '2023-07-26 08:40:17.679842+07', 'system', '2023-07-26 08:40:17.679842+07', 'Xã Yên Hưng', '14731', 'Xã');
INSERT INTO category."Wards" VALUES (14734, 377, 'system', '2023-07-26 08:40:17.679844+07', 'system', '2023-07-26 08:40:17.679844+07', 'Xã Yên Thành', '14734', 'Xã');
INSERT INTO category."Wards" VALUES (14737, 377, 'system', '2023-07-26 08:40:17.679846+07', 'system', '2023-07-26 08:40:17.679846+07', 'Xã Yên Nhân', '14737', 'Xã');
INSERT INTO category."Wards" VALUES (14740, 377, 'system', '2023-07-26 08:40:17.679848+07', 'system', '2023-07-26 08:40:17.679848+07', 'Xã Yên Mỹ', '14740', 'Xã');
INSERT INTO category."Wards" VALUES (14743, 377, 'system', '2023-07-26 08:40:17.67985+07', 'system', '2023-07-26 08:40:17.67985+07', 'Xã Yên Mạc', '14743', 'Xã');
INSERT INTO category."Wards" VALUES (14746, 377, 'system', '2023-07-26 08:40:17.679852+07', 'system', '2023-07-26 08:40:17.679852+07', 'Xã Yên Đồng', '14746', 'Xã');
INSERT INTO category."Wards" VALUES (14749, 377, 'system', '2023-07-26 08:40:17.679855+07', 'system', '2023-07-26 08:40:17.679855+07', 'Xã Yên Thái', '14749', 'Xã');
INSERT INTO category."Wards" VALUES (14752, 377, 'system', '2023-07-26 08:40:17.679857+07', 'system', '2023-07-26 08:40:17.679857+07', 'Xã Yên Lâm', '14752', 'Xã');
INSERT INTO category."Wards" VALUES (14755, 380, 'system', '2023-07-26 08:40:17.679859+07', 'system', '2023-07-26 08:40:17.679859+07', 'Phường Hàm Rồng', '14755', 'Phường');
INSERT INTO category."Wards" VALUES (14758, 380, 'system', '2023-07-26 08:40:17.679861+07', 'system', '2023-07-26 08:40:17.679861+07', 'Phường Đông Thọ', '14758', 'Phường');
INSERT INTO category."Wards" VALUES (14761, 380, 'system', '2023-07-26 08:40:17.679863+07', 'system', '2023-07-26 08:40:17.679863+07', 'Phường Nam Ngạn', '14761', 'Phường');
INSERT INTO category."Wards" VALUES (14764, 380, 'system', '2023-07-26 08:40:17.679866+07', 'system', '2023-07-26 08:40:17.679866+07', 'Phường Trường Thi', '14764', 'Phường');
INSERT INTO category."Wards" VALUES (14767, 380, 'system', '2023-07-26 08:40:17.679868+07', 'system', '2023-07-26 08:40:17.679868+07', 'Phường Điện Biên', '14767', 'Phường');
INSERT INTO category."Wards" VALUES (14770, 380, 'system', '2023-07-26 08:40:17.67987+07', 'system', '2023-07-26 08:40:17.67987+07', 'Phường Phú Sơn', '14770', 'Phường');
INSERT INTO category."Wards" VALUES (14773, 380, 'system', '2023-07-26 08:40:17.679872+07', 'system', '2023-07-26 08:40:17.679872+07', 'Phường Lam Sơn', '14773', 'Phường');
INSERT INTO category."Wards" VALUES (14776, 380, 'system', '2023-07-26 08:40:17.679875+07', 'system', '2023-07-26 08:40:17.679875+07', 'Phường Ba Đình', '14776', 'Phường');
INSERT INTO category."Wards" VALUES (14779, 380, 'system', '2023-07-26 08:40:17.679877+07', 'system', '2023-07-26 08:40:17.679877+07', 'Phường Ngọc Trạo', '14779', 'Phường');
INSERT INTO category."Wards" VALUES (14782, 380, 'system', '2023-07-26 08:40:17.679879+07', 'system', '2023-07-26 08:40:17.679879+07', 'Phường Đông Vệ', '14782', 'Phường');
INSERT INTO category."Wards" VALUES (14785, 380, 'system', '2023-07-26 08:40:17.679882+07', 'system', '2023-07-26 08:40:17.679882+07', 'Phường Đông Sơn', '14785', 'Phường');
INSERT INTO category."Wards" VALUES (14788, 380, 'system', '2023-07-26 08:40:17.679884+07', 'system', '2023-07-26 08:40:17.679884+07', 'Phường Tân Sơn', '14788', 'Phường');
INSERT INTO category."Wards" VALUES (14791, 380, 'system', '2023-07-26 08:40:17.679886+07', 'system', '2023-07-26 08:40:17.679886+07', 'Phường Đông Cương', '14791', 'Phường');
INSERT INTO category."Wards" VALUES (14794, 380, 'system', '2023-07-26 08:40:17.679889+07', 'system', '2023-07-26 08:40:17.679889+07', 'Phường Đông Hương', '14794', 'Phường');
INSERT INTO category."Wards" VALUES (14797, 380, 'system', '2023-07-26 08:40:17.679892+07', 'system', '2023-07-26 08:40:17.679892+07', 'Phường Đông Hải', '14797', 'Phường');
INSERT INTO category."Wards" VALUES (14800, 380, 'system', '2023-07-26 08:40:17.679894+07', 'system', '2023-07-26 08:40:17.679894+07', 'Phường Quảng Hưng', '14800', 'Phường');
INSERT INTO category."Wards" VALUES (14803, 380, 'system', '2023-07-26 08:40:17.679896+07', 'system', '2023-07-26 08:40:17.679896+07', 'Phường Quảng Thắng', '14803', 'Phường');
INSERT INTO category."Wards" VALUES (14806, 380, 'system', '2023-07-26 08:40:17.679898+07', 'system', '2023-07-26 08:40:17.679898+07', 'Phường Quảng Thành', '14806', 'Phường');
INSERT INTO category."Wards" VALUES (14809, 381, 'system', '2023-07-26 08:40:17.679937+07', 'system', '2023-07-26 08:40:17.679937+07', 'Phường Bắc Sơn', '14809', 'Phường');
INSERT INTO category."Wards" VALUES (14812, 381, 'system', '2023-07-26 08:40:17.679939+07', 'system', '2023-07-26 08:40:17.679939+07', 'Phường Ba Đình', '14812', 'Phường');
INSERT INTO category."Wards" VALUES (14815, 381, 'system', '2023-07-26 08:40:17.679941+07', 'system', '2023-07-26 08:40:17.679941+07', 'Phường Lam Sơn', '14815', 'Phường');
INSERT INTO category."Wards" VALUES (14818, 381, 'system', '2023-07-26 08:40:17.679943+07', 'system', '2023-07-26 08:40:17.679943+07', 'Phường Ngọc Trạo', '14818', 'Phường');
INSERT INTO category."Wards" VALUES (14821, 381, 'system', '2023-07-26 08:40:17.679946+07', 'system', '2023-07-26 08:40:17.679946+07', 'Phường Đông Sơn', '14821', 'Phường');
INSERT INTO category."Wards" VALUES (14823, 381, 'system', '2023-07-26 08:40:17.679948+07', 'system', '2023-07-26 08:40:17.679948+07', 'Phường Phú Sơn', '14823', 'Phường');
INSERT INTO category."Wards" VALUES (14824, 381, 'system', '2023-07-26 08:40:17.67995+07', 'system', '2023-07-26 08:40:17.67995+07', 'Xã Quang Trung', '14824', 'Xã');
INSERT INTO category."Wards" VALUES (14830, 382, 'system', '2023-07-26 08:40:17.679953+07', 'system', '2023-07-26 08:40:17.679953+07', 'Phường Trung Sơn', '14830', 'Phường');
INSERT INTO category."Wards" VALUES (14833, 382, 'system', '2023-07-26 08:40:17.679955+07', 'system', '2023-07-26 08:40:17.679955+07', 'Phường Bắc Sơn', '14833', 'Phường');
INSERT INTO category."Wards" VALUES (14836, 382, 'system', '2023-07-26 08:40:17.679957+07', 'system', '2023-07-26 08:40:17.679957+07', 'Phường Trường Sơn', '14836', 'Phường');
INSERT INTO category."Wards" VALUES (14839, 382, 'system', '2023-07-26 08:40:17.67996+07', 'system', '2023-07-26 08:40:17.67996+07', 'Phường Quảng Cư', '14839', 'Phường');
INSERT INTO category."Wards" VALUES (14842, 382, 'system', '2023-07-26 08:40:17.679962+07', 'system', '2023-07-26 08:40:17.679962+07', 'Phường Quảng Tiến', '14842', 'Phường');
INSERT INTO category."Wards" VALUES (14845, 384, 'system', '2023-07-26 08:40:17.679978+07', 'system', '2023-07-26 08:40:17.679978+07', 'Thị trấn Mường Lát', '14845', 'Thị trấn');
INSERT INTO category."Wards" VALUES (14848, 384, 'system', '2023-07-26 08:40:17.679981+07', 'system', '2023-07-26 08:40:17.679981+07', 'Xã Tam Chung', '14848', 'Xã');
INSERT INTO category."Wards" VALUES (14854, 384, 'system', '2023-07-26 08:40:17.679983+07', 'system', '2023-07-26 08:40:17.679983+07', 'Xã Mường Lý', '14854', 'Xã');
INSERT INTO category."Wards" VALUES (14857, 384, 'system', '2023-07-26 08:40:17.679985+07', 'system', '2023-07-26 08:40:17.679985+07', 'Xã Trung Lý', '14857', 'Xã');
INSERT INTO category."Wards" VALUES (14860, 384, 'system', '2023-07-26 08:40:17.679987+07', 'system', '2023-07-26 08:40:17.679987+07', 'Xã Quang Chiểu', '14860', 'Xã');
INSERT INTO category."Wards" VALUES (14863, 384, 'system', '2023-07-26 08:40:17.67999+07', 'system', '2023-07-26 08:40:17.67999+07', 'Xã Pù Nhi', '14863', 'Xã');
INSERT INTO category."Wards" VALUES (14864, 384, 'system', '2023-07-26 08:40:17.679992+07', 'system', '2023-07-26 08:40:17.679992+07', 'Xã Nhi Sơn', '14864', 'Xã');
INSERT INTO category."Wards" VALUES (14866, 384, 'system', '2023-07-26 08:40:17.679994+07', 'system', '2023-07-26 08:40:17.679994+07', 'Xã Mường Chanh', '14866', 'Xã');
INSERT INTO category."Wards" VALUES (14869, 385, 'system', '2023-07-26 08:40:17.679996+07', 'system', '2023-07-26 08:40:17.679996+07', 'Thị trấn Hồi Xuân', '14869', 'Thị trấn');
INSERT INTO category."Wards" VALUES (14872, 385, 'system', '2023-07-26 08:40:17.679999+07', 'system', '2023-07-26 08:40:17.679999+07', 'Xã Thành Sơn', '14872', 'Xã');
INSERT INTO category."Wards" VALUES (14875, 385, 'system', '2023-07-26 08:40:17.680001+07', 'system', '2023-07-26 08:40:17.680001+07', 'Xã Trung Sơn', '14875', 'Xã');
INSERT INTO category."Wards" VALUES (14878, 385, 'system', '2023-07-26 08:40:17.680003+07', 'system', '2023-07-26 08:40:17.680003+07', 'Xã Phú Thanh', '14878', 'Xã');
INSERT INTO category."Wards" VALUES (14881, 385, 'system', '2023-07-26 08:40:17.680005+07', 'system', '2023-07-26 08:40:17.680005+07', 'Xã Trung Thành', '14881', 'Xã');
INSERT INTO category."Wards" VALUES (14884, 385, 'system', '2023-07-26 08:40:17.680007+07', 'system', '2023-07-26 08:40:17.680007+07', 'Xã Phú Lệ', '14884', 'Xã');
INSERT INTO category."Wards" VALUES (14887, 385, 'system', '2023-07-26 08:40:17.68001+07', 'system', '2023-07-26 08:40:17.68001+07', 'Xã Phú Sơn', '14887', 'Xã');
INSERT INTO category."Wards" VALUES (14890, 385, 'system', '2023-07-26 08:40:17.680012+07', 'system', '2023-07-26 08:40:17.680012+07', 'Xã Phú Xuân', '14890', 'Xã');
INSERT INTO category."Wards" VALUES (14896, 385, 'system', '2023-07-26 08:40:17.680014+07', 'system', '2023-07-26 08:40:17.680014+07', 'Xã Hiền Chung', '14896', 'Xã');
INSERT INTO category."Wards" VALUES (14899, 385, 'system', '2023-07-26 08:40:17.680016+07', 'system', '2023-07-26 08:40:17.680016+07', 'Xã Hiền Kiệt', '14899', 'Xã');
INSERT INTO category."Wards" VALUES (14902, 385, 'system', '2023-07-26 08:40:17.680018+07', 'system', '2023-07-26 08:40:17.680018+07', 'Xã Nam Tiến', '14902', 'Xã');
INSERT INTO category."Wards" VALUES (14908, 385, 'system', '2023-07-26 08:40:17.68002+07', 'system', '2023-07-26 08:40:17.68002+07', 'Xã Thiên Phủ', '14908', 'Xã');
INSERT INTO category."Wards" VALUES (14911, 385, 'system', '2023-07-26 08:40:17.680022+07', 'system', '2023-07-26 08:40:17.680022+07', 'Xã Phú Nghiêm', '14911', 'Xã');
INSERT INTO category."Wards" VALUES (14914, 385, 'system', '2023-07-26 08:40:17.680024+07', 'system', '2023-07-26 08:40:17.680025+07', 'Xã Nam Xuân', '14914', 'Xã');
INSERT INTO category."Wards" VALUES (14917, 385, 'system', '2023-07-26 08:40:17.680027+07', 'system', '2023-07-26 08:40:17.680027+07', 'Xã Nam Động', '14917', 'Xã');
INSERT INTO category."Wards" VALUES (14923, 386, 'system', '2023-07-26 08:40:17.680029+07', 'system', '2023-07-26 08:40:17.680029+07', 'Thị trấn Cành Nàng', '14923', 'Thị trấn');
INSERT INTO category."Wards" VALUES (14926, 386, 'system', '2023-07-26 08:40:17.680031+07', 'system', '2023-07-26 08:40:17.680031+07', 'Xã Điền Thượng', '14926', 'Xã');
INSERT INTO category."Wards" VALUES (14929, 386, 'system', '2023-07-26 08:40:17.680034+07', 'system', '2023-07-26 08:40:17.680034+07', 'Xã Điền Hạ', '14929', 'Xã');
INSERT INTO category."Wards" VALUES (14932, 386, 'system', '2023-07-26 08:40:17.680036+07', 'system', '2023-07-26 08:40:17.680036+07', 'Xã Điền Quang', '14932', 'Xã');
INSERT INTO category."Wards" VALUES (14935, 386, 'system', '2023-07-26 08:40:17.680038+07', 'system', '2023-07-26 08:40:17.680038+07', 'Xã Điền Trung', '14935', 'Xã');
INSERT INTO category."Wards" VALUES (14938, 386, 'system', '2023-07-26 08:40:17.68004+07', 'system', '2023-07-26 08:40:17.68004+07', 'Xã Thành Sơn', '14938', 'Xã');
INSERT INTO category."Wards" VALUES (14941, 386, 'system', '2023-07-26 08:40:17.680042+07', 'system', '2023-07-26 08:40:17.680042+07', 'Xã Lương Ngoại', '14941', 'Xã');
INSERT INTO category."Wards" VALUES (14944, 386, 'system', '2023-07-26 08:40:17.680044+07', 'system', '2023-07-26 08:40:17.680045+07', 'Xã Ái Thượng', '14944', 'Xã');
INSERT INTO category."Wards" VALUES (14947, 386, 'system', '2023-07-26 08:40:17.680048+07', 'system', '2023-07-26 08:40:17.680048+07', 'Xã Lương Nội', '14947', 'Xã');
INSERT INTO category."Wards" VALUES (14950, 386, 'system', '2023-07-26 08:40:17.68005+07', 'system', '2023-07-26 08:40:17.68005+07', 'Xã Điền Lư', '14950', 'Xã');
INSERT INTO category."Wards" VALUES (14953, 386, 'system', '2023-07-26 08:40:17.680052+07', 'system', '2023-07-26 08:40:17.680052+07', 'Xã Lương Trung', '14953', 'Xã');
INSERT INTO category."Wards" VALUES (14956, 386, 'system', '2023-07-26 08:40:17.680054+07', 'system', '2023-07-26 08:40:17.680054+07', 'Xã Lũng Niêm', '14956', 'Xã');
INSERT INTO category."Wards" VALUES (14959, 386, 'system', '2023-07-26 08:40:17.680057+07', 'system', '2023-07-26 08:40:17.680057+07', 'Xã Lũng Cao', '14959', 'Xã');
INSERT INTO category."Wards" VALUES (14962, 386, 'system', '2023-07-26 08:40:17.680059+07', 'system', '2023-07-26 08:40:17.680059+07', 'Xã Hạ Trung', '14962', 'Xã');
INSERT INTO category."Wards" VALUES (14965, 386, 'system', '2023-07-26 08:40:17.680061+07', 'system', '2023-07-26 08:40:17.680061+07', 'Xã Cổ Lũng', '14965', 'Xã');
INSERT INTO category."Wards" VALUES (14968, 386, 'system', '2023-07-26 08:40:17.680063+07', 'system', '2023-07-26 08:40:17.680063+07', 'Xã Thành Lâm', '14968', 'Xã');
INSERT INTO category."Wards" VALUES (14971, 386, 'system', '2023-07-26 08:40:17.680065+07', 'system', '2023-07-26 08:40:17.680065+07', 'Xã Ban Công', '14971', 'Xã');
INSERT INTO category."Wards" VALUES (14974, 386, 'system', '2023-07-26 08:40:17.680068+07', 'system', '2023-07-26 08:40:17.680068+07', 'Xã Kỳ Tân', '14974', 'Xã');
INSERT INTO category."Wards" VALUES (14977, 386, 'system', '2023-07-26 08:40:17.68007+07', 'system', '2023-07-26 08:40:17.68007+07', 'Xã Văn Nho', '14977', 'Xã');
INSERT INTO category."Wards" VALUES (14980, 386, 'system', '2023-07-26 08:40:17.680072+07', 'system', '2023-07-26 08:40:17.680072+07', 'Xã Thiết Ống', '14980', 'Xã');
INSERT INTO category."Wards" VALUES (14986, 386, 'system', '2023-07-26 08:40:17.680074+07', 'system', '2023-07-26 08:40:17.680074+07', 'Xã Thiết Kế', '14986', 'Xã');
INSERT INTO category."Wards" VALUES (14995, 387, 'system', '2023-07-26 08:40:17.680076+07', 'system', '2023-07-26 08:40:17.680076+07', 'Xã Trung Xuân', '14995', 'Xã');
INSERT INTO category."Wards" VALUES (14998, 387, 'system', '2023-07-26 08:40:17.680078+07', 'system', '2023-07-26 08:40:17.680078+07', 'Xã Trung Thượng', '14998', 'Xã');
INSERT INTO category."Wards" VALUES (14999, 387, 'system', '2023-07-26 08:40:17.68008+07', 'system', '2023-07-26 08:40:17.68008+07', 'Xã Trung Tiến', '14999', 'Xã');
INSERT INTO category."Wards" VALUES (15001, 387, 'system', '2023-07-26 08:40:17.680082+07', 'system', '2023-07-26 08:40:17.680082+07', 'Xã Trung Hạ', '15001', 'Xã');
INSERT INTO category."Wards" VALUES (15004, 387, 'system', '2023-07-26 08:40:17.680085+07', 'system', '2023-07-26 08:40:17.680085+07', 'Xã Sơn Hà', '15004', 'Xã');
INSERT INTO category."Wards" VALUES (15007, 387, 'system', '2023-07-26 08:40:17.680087+07', 'system', '2023-07-26 08:40:17.680087+07', 'Xã Tam Thanh', '15007', 'Xã');
INSERT INTO category."Wards" VALUES (15010, 387, 'system', '2023-07-26 08:40:17.680089+07', 'system', '2023-07-26 08:40:17.680089+07', 'Xã Sơn Thủy', '15010', 'Xã');
INSERT INTO category."Wards" VALUES (15013, 387, 'system', '2023-07-26 08:40:17.680091+07', 'system', '2023-07-26 08:40:17.680091+07', 'Xã Na Mèo', '15013', 'Xã');
INSERT INTO category."Wards" VALUES (15016, 387, 'system', '2023-07-26 08:40:17.680093+07', 'system', '2023-07-26 08:40:17.680093+07', 'Thị trấn Sơn Lư', '15016', 'Thị trấn');
INSERT INTO category."Wards" VALUES (15019, 387, 'system', '2023-07-26 08:40:17.680095+07', 'system', '2023-07-26 08:40:17.680095+07', 'Xã Tam Lư', '15019', 'Xã');
INSERT INTO category."Wards" VALUES (15022, 387, 'system', '2023-07-26 08:40:17.680098+07', 'system', '2023-07-26 08:40:17.680098+07', 'Xã Sơn Điện', '15022', 'Xã');
INSERT INTO category."Wards" VALUES (15025, 387, 'system', '2023-07-26 08:40:17.6801+07', 'system', '2023-07-26 08:40:17.6801+07', 'Xã Mường Mìn', '15025', 'Xã');
INSERT INTO category."Wards" VALUES (15031, 388, 'system', '2023-07-26 08:40:17.680102+07', 'system', '2023-07-26 08:40:17.680102+07', 'Xã Yên Khương', '15031', 'Xã');
INSERT INTO category."Wards" VALUES (15034, 388, 'system', '2023-07-26 08:40:17.680104+07', 'system', '2023-07-26 08:40:17.680104+07', 'Xã Yên Thắng', '15034', 'Xã');
INSERT INTO category."Wards" VALUES (15037, 388, 'system', '2023-07-26 08:40:17.680106+07', 'system', '2023-07-26 08:40:17.680106+07', 'Xã Trí Nang', '15037', 'Xã');
INSERT INTO category."Wards" VALUES (15040, 388, 'system', '2023-07-26 08:40:17.680108+07', 'system', '2023-07-26 08:40:17.680108+07', 'Xã Giao An', '15040', 'Xã');
INSERT INTO category."Wards" VALUES (15043, 388, 'system', '2023-07-26 08:40:17.68011+07', 'system', '2023-07-26 08:40:17.68011+07', 'Xã Giao Thiện', '15043', 'Xã');
INSERT INTO category."Wards" VALUES (15046, 388, 'system', '2023-07-26 08:40:17.680112+07', 'system', '2023-07-26 08:40:17.680113+07', 'Xã Tân Phúc', '15046', 'Xã');
INSERT INTO category."Wards" VALUES (15049, 388, 'system', '2023-07-26 08:40:17.680115+07', 'system', '2023-07-26 08:40:17.680115+07', 'Xã Tam Văn', '15049', 'Xã');
INSERT INTO category."Wards" VALUES (15052, 388, 'system', '2023-07-26 08:40:17.680117+07', 'system', '2023-07-26 08:40:17.680117+07', 'Xã Lâm Phú', '15052', 'Xã');
INSERT INTO category."Wards" VALUES (15055, 388, 'system', '2023-07-26 08:40:17.680119+07', 'system', '2023-07-26 08:40:17.680119+07', 'Thị trấn Lang Chánh', '15055', 'Thị trấn');
INSERT INTO category."Wards" VALUES (15058, 388, 'system', '2023-07-26 08:40:17.680121+07', 'system', '2023-07-26 08:40:17.680121+07', 'Xã Đồng Lương', '15058', 'Xã');
INSERT INTO category."Wards" VALUES (15061, 389, 'system', '2023-07-26 08:40:17.680124+07', 'system', '2023-07-26 08:40:17.680124+07', 'Thị Trấn Ngọc Lặc', '15061', 'Thị trấn');
INSERT INTO category."Wards" VALUES (15064, 389, 'system', '2023-07-26 08:40:17.680127+07', 'system', '2023-07-26 08:40:17.680127+07', 'Xã Lam Sơn', '15064', 'Xã');
INSERT INTO category."Wards" VALUES (15067, 389, 'system', '2023-07-26 08:40:17.680129+07', 'system', '2023-07-26 08:40:17.680129+07', 'Xã Mỹ Tân', '15067', 'Xã');
INSERT INTO category."Wards" VALUES (15070, 389, 'system', '2023-07-26 08:40:17.68014+07', 'system', '2023-07-26 08:40:17.68014+07', 'Xã Thúy Sơn', '15070', 'Xã');
INSERT INTO category."Wards" VALUES (15073, 389, 'system', '2023-07-26 08:40:17.680142+07', 'system', '2023-07-26 08:40:17.680142+07', 'Xã Thạch Lập', '15073', 'Xã');
INSERT INTO category."Wards" VALUES (15076, 389, 'system', '2023-07-26 08:40:17.680144+07', 'system', '2023-07-26 08:40:17.680144+07', 'Xã Vân Âm', '15076', 'Xã');
INSERT INTO category."Wards" VALUES (15079, 389, 'system', '2023-07-26 08:40:17.680146+07', 'system', '2023-07-26 08:40:17.680146+07', 'Xã Cao Ngọc', '15079', 'Xã');
INSERT INTO category."Wards" VALUES (15085, 389, 'system', '2023-07-26 08:40:17.680148+07', 'system', '2023-07-26 08:40:17.680148+07', 'Xã Quang Trung', '15085', 'Xã');
INSERT INTO category."Wards" VALUES (15088, 389, 'system', '2023-07-26 08:40:17.68015+07', 'system', '2023-07-26 08:40:17.68015+07', 'Xã Đồng Thịnh', '15088', 'Xã');
INSERT INTO category."Wards" VALUES (15091, 389, 'system', '2023-07-26 08:40:17.680153+07', 'system', '2023-07-26 08:40:17.680153+07', 'Xã Ngọc Liên', '15091', 'Xã');
INSERT INTO category."Wards" VALUES (15094, 389, 'system', '2023-07-26 08:40:17.680155+07', 'system', '2023-07-26 08:40:17.680155+07', 'Xã Ngọc Sơn', '15094', 'Xã');
INSERT INTO category."Wards" VALUES (15097, 389, 'system', '2023-07-26 08:40:17.680157+07', 'system', '2023-07-26 08:40:17.680157+07', 'Xã Lộc Thịnh', '15097', 'Xã');
INSERT INTO category."Wards" VALUES (15100, 389, 'system', '2023-07-26 08:40:17.680159+07', 'system', '2023-07-26 08:40:17.680159+07', 'Xã Cao Thịnh', '15100', 'Xã');
INSERT INTO category."Wards" VALUES (15103, 389, 'system', '2023-07-26 08:40:17.680161+07', 'system', '2023-07-26 08:40:17.680161+07', 'Xã Ngọc Trung', '15103', 'Xã');
INSERT INTO category."Wards" VALUES (15106, 389, 'system', '2023-07-26 08:40:17.680163+07', 'system', '2023-07-26 08:40:17.680163+07', 'Xã Phùng Giáo', '15106', 'Xã');
INSERT INTO category."Wards" VALUES (15109, 389, 'system', '2023-07-26 08:40:17.680165+07', 'system', '2023-07-26 08:40:17.680165+07', 'Xã Phùng Minh', '15109', 'Xã');
INSERT INTO category."Wards" VALUES (15112, 389, 'system', '2023-07-26 08:40:17.680167+07', 'system', '2023-07-26 08:40:17.680167+07', 'Xã Phúc Thịnh', '15112', 'Xã');
INSERT INTO category."Wards" VALUES (15115, 389, 'system', '2023-07-26 08:40:17.68017+07', 'system', '2023-07-26 08:40:17.68017+07', 'Xã Nguyệt Ấn', '15115', 'Xã');
INSERT INTO category."Wards" VALUES (15118, 389, 'system', '2023-07-26 08:40:17.680172+07', 'system', '2023-07-26 08:40:17.680172+07', 'Xã Kiên Thọ', '15118', 'Xã');
INSERT INTO category."Wards" VALUES (15121, 389, 'system', '2023-07-26 08:40:17.680174+07', 'system', '2023-07-26 08:40:17.680174+07', 'Xã Minh Tiến', '15121', 'Xã');
INSERT INTO category."Wards" VALUES (15124, 389, 'system', '2023-07-26 08:40:17.680176+07', 'system', '2023-07-26 08:40:17.680176+07', 'Xã Minh Sơn', '15124', 'Xã');
INSERT INTO category."Wards" VALUES (15127, 390, 'system', '2023-07-26 08:40:17.680178+07', 'system', '2023-07-26 08:40:17.680178+07', 'Thị trấn Phong Sơn', '15127', 'Thị trấn');
INSERT INTO category."Wards" VALUES (15133, 390, 'system', '2023-07-26 08:40:17.680181+07', 'system', '2023-07-26 08:40:17.680181+07', 'Xã Cẩm Thành', '15133', 'Xã');
INSERT INTO category."Wards" VALUES (15136, 390, 'system', '2023-07-26 08:40:17.680183+07', 'system', '2023-07-26 08:40:17.680183+07', 'Xã Cẩm Quý', '15136', 'Xã');
INSERT INTO category."Wards" VALUES (15139, 390, 'system', '2023-07-26 08:40:17.680185+07', 'system', '2023-07-26 08:40:17.680185+07', 'Xã Cẩm Lương', '15139', 'Xã');
INSERT INTO category."Wards" VALUES (15142, 390, 'system', '2023-07-26 08:40:17.680187+07', 'system', '2023-07-26 08:40:17.680187+07', 'Xã Cẩm Thạch', '15142', 'Xã');
INSERT INTO category."Wards" VALUES (15145, 390, 'system', '2023-07-26 08:40:17.680189+07', 'system', '2023-07-26 08:40:17.680189+07', 'Xã Cẩm Liên', '15145', 'Xã');
INSERT INTO category."Wards" VALUES (15148, 390, 'system', '2023-07-26 08:40:17.680191+07', 'system', '2023-07-26 08:40:17.680191+07', 'Xã Cẩm Giang', '15148', 'Xã');
INSERT INTO category."Wards" VALUES (15151, 390, 'system', '2023-07-26 08:40:17.680193+07', 'system', '2023-07-26 08:40:17.680193+07', 'Xã Cẩm Bình', '15151', 'Xã');
INSERT INTO category."Wards" VALUES (15154, 390, 'system', '2023-07-26 08:40:17.680196+07', 'system', '2023-07-26 08:40:17.680196+07', 'Xã Cẩm Tú', '15154', 'Xã');
INSERT INTO category."Wards" VALUES (15160, 390, 'system', '2023-07-26 08:40:17.680198+07', 'system', '2023-07-26 08:40:17.680198+07', 'Xã Cẩm Châu', '15160', 'Xã');
INSERT INTO category."Wards" VALUES (15163, 390, 'system', '2023-07-26 08:40:17.6802+07', 'system', '2023-07-26 08:40:17.6802+07', 'Xã Cẩm Tâm', '15163', 'Xã');
INSERT INTO category."Wards" VALUES (15169, 390, 'system', '2023-07-26 08:40:17.680202+07', 'system', '2023-07-26 08:40:17.680202+07', 'Xã Cẩm Ngọc', '15169', 'Xã');
INSERT INTO category."Wards" VALUES (15172, 390, 'system', '2023-07-26 08:40:17.680204+07', 'system', '2023-07-26 08:40:17.680204+07', 'Xã Cẩm Long', '15172', 'Xã');
INSERT INTO category."Wards" VALUES (15175, 390, 'system', '2023-07-26 08:40:17.680206+07', 'system', '2023-07-26 08:40:17.680206+07', 'Xã Cẩm Yên', '15175', 'Xã');
INSERT INTO category."Wards" VALUES (15178, 390, 'system', '2023-07-26 08:40:17.680208+07', 'system', '2023-07-26 08:40:17.680208+07', 'Xã Cẩm Tân', '15178', 'Xã');
INSERT INTO category."Wards" VALUES (15181, 390, 'system', '2023-07-26 08:40:17.68021+07', 'system', '2023-07-26 08:40:17.68021+07', 'Xã Cẩm Phú', '15181', 'Xã');
INSERT INTO category."Wards" VALUES (15184, 390, 'system', '2023-07-26 08:40:17.680213+07', 'system', '2023-07-26 08:40:17.680214+07', 'Xã Cẩm Vân', '15184', 'Xã');
INSERT INTO category."Wards" VALUES (15187, 391, 'system', '2023-07-26 08:40:17.680216+07', 'system', '2023-07-26 08:40:17.680216+07', 'Thị trấn Kim Tân', '15187', 'Thị trấn');
INSERT INTO category."Wards" VALUES (15190, 391, 'system', '2023-07-26 08:40:17.680218+07', 'system', '2023-07-26 08:40:17.680218+07', 'Thị trấn Vân Du', '15190', 'Thị trấn');
INSERT INTO category."Wards" VALUES (15196, 391, 'system', '2023-07-26 08:40:17.68022+07', 'system', '2023-07-26 08:40:17.680221+07', 'Xã Thạch Lâm', '15196', 'Xã');
INSERT INTO category."Wards" VALUES (15199, 391, 'system', '2023-07-26 08:40:17.680223+07', 'system', '2023-07-26 08:40:17.680223+07', 'Xã Thạch Quảng', '15199', 'Xã');
INSERT INTO category."Wards" VALUES (15202, 391, 'system', '2023-07-26 08:40:17.680225+07', 'system', '2023-07-26 08:40:17.680225+07', 'Xã Thạch Tượng', '15202', 'Xã');
INSERT INTO category."Wards" VALUES (15205, 391, 'system', '2023-07-26 08:40:17.680227+07', 'system', '2023-07-26 08:40:17.680227+07', 'Xã Thạch Cẩm', '15205', 'Xã');
INSERT INTO category."Wards" VALUES (15208, 391, 'system', '2023-07-26 08:40:17.680229+07', 'system', '2023-07-26 08:40:17.680229+07', 'Xã Thạch Sơn', '15208', 'Xã');
INSERT INTO category."Wards" VALUES (15211, 391, 'system', '2023-07-26 08:40:17.680231+07', 'system', '2023-07-26 08:40:17.680231+07', 'Xã Thạch Bình', '15211', 'Xã');
INSERT INTO category."Wards" VALUES (15214, 391, 'system', '2023-07-26 08:40:17.680233+07', 'system', '2023-07-26 08:40:17.680234+07', 'Xã Thạch Định', '15214', 'Xã');
INSERT INTO category."Wards" VALUES (15217, 391, 'system', '2023-07-26 08:40:17.680236+07', 'system', '2023-07-26 08:40:17.680236+07', 'Xã Thạch Đồng', '15217', 'Xã');
INSERT INTO category."Wards" VALUES (15220, 391, 'system', '2023-07-26 08:40:17.680238+07', 'system', '2023-07-26 08:40:17.680238+07', 'Xã Thạch Long', '15220', 'Xã');
INSERT INTO category."Wards" VALUES (15223, 391, 'system', '2023-07-26 08:40:17.68024+07', 'system', '2023-07-26 08:40:17.68024+07', 'Xã Thành Mỹ', '15223', 'Xã');
INSERT INTO category."Wards" VALUES (15226, 391, 'system', '2023-07-26 08:40:17.680242+07', 'system', '2023-07-26 08:40:17.680242+07', 'Xã Thành Yên', '15226', 'Xã');
INSERT INTO category."Wards" VALUES (15229, 391, 'system', '2023-07-26 08:40:17.680244+07', 'system', '2023-07-26 08:40:17.680244+07', 'Xã Thành Vinh', '15229', 'Xã');
INSERT INTO category."Wards" VALUES (15232, 391, 'system', '2023-07-26 08:40:17.680246+07', 'system', '2023-07-26 08:40:17.680246+07', 'Xã Thành Minh', '15232', 'Xã');
INSERT INTO category."Wards" VALUES (15235, 391, 'system', '2023-07-26 08:40:17.680248+07', 'system', '2023-07-26 08:40:17.680248+07', 'Xã Thành Công', '15235', 'Xã');
INSERT INTO category."Wards" VALUES (15238, 391, 'system', '2023-07-26 08:40:17.68025+07', 'system', '2023-07-26 08:40:17.68025+07', 'Xã Thành Tân', '15238', 'Xã');
INSERT INTO category."Wards" VALUES (15241, 391, 'system', '2023-07-26 08:40:17.680252+07', 'system', '2023-07-26 08:40:17.680252+07', 'Xã Thành Trực', '15241', 'Xã');
INSERT INTO category."Wards" VALUES (15247, 391, 'system', '2023-07-26 08:40:17.680255+07', 'system', '2023-07-26 08:40:17.680255+07', 'Xã Thành Tâm', '15247', 'Xã');
INSERT INTO category."Wards" VALUES (15250, 391, 'system', '2023-07-26 08:40:17.680257+07', 'system', '2023-07-26 08:40:17.680257+07', 'Xã Thành An', '15250', 'Xã');
INSERT INTO category."Wards" VALUES (15253, 391, 'system', '2023-07-26 08:40:17.680259+07', 'system', '2023-07-26 08:40:17.680259+07', 'Xã Thành Thọ', '15253', 'Xã');
INSERT INTO category."Wards" VALUES (15256, 391, 'system', '2023-07-26 08:40:17.680261+07', 'system', '2023-07-26 08:40:17.680261+07', 'Xã Thành Tiến', '15256', 'Xã');
INSERT INTO category."Wards" VALUES (15259, 391, 'system', '2023-07-26 08:40:17.680263+07', 'system', '2023-07-26 08:40:17.680263+07', 'Xã Thành Long', '15259', 'Xã');
INSERT INTO category."Wards" VALUES (15265, 391, 'system', '2023-07-26 08:40:17.680265+07', 'system', '2023-07-26 08:40:17.680265+07', 'Xã Thành Hưng', '15265', 'Xã');
INSERT INTO category."Wards" VALUES (15268, 391, 'system', '2023-07-26 08:40:17.680267+07', 'system', '2023-07-26 08:40:17.680267+07', 'Xã Ngọc Trạo', '15268', 'Xã');
INSERT INTO category."Wards" VALUES (15271, 392, 'system', '2023-07-26 08:40:17.680269+07', 'system', '2023-07-26 08:40:17.68027+07', 'Thị trấn Hà Trung', '15271', 'Thị trấn');
INSERT INTO category."Wards" VALUES (15274, 392, 'system', '2023-07-26 08:40:17.680272+07', 'system', '2023-07-26 08:40:17.680272+07', 'Xã Hà Long', '15274', 'Xã');
INSERT INTO category."Wards" VALUES (15277, 392, 'system', '2023-07-26 08:40:17.680274+07', 'system', '2023-07-26 08:40:17.680274+07', 'Xã Hà Vinh', '15277', 'Xã');
INSERT INTO category."Wards" VALUES (15280, 392, 'system', '2023-07-26 08:40:17.680276+07', 'system', '2023-07-26 08:40:17.680276+07', 'Xã Hà Bắc', '15280', 'Xã');
INSERT INTO category."Wards" VALUES (15283, 392, 'system', '2023-07-26 08:40:17.680278+07', 'system', '2023-07-26 08:40:17.680278+07', 'Xã Hoạt Giang', '15283', 'Xã');
INSERT INTO category."Wards" VALUES (15286, 392, 'system', '2023-07-26 08:40:17.68028+07', 'system', '2023-07-26 08:40:17.68028+07', 'Xã Yên Dương', '15286', 'Xã');
INSERT INTO category."Wards" VALUES (15292, 392, 'system', '2023-07-26 08:40:17.680282+07', 'system', '2023-07-26 08:40:17.680283+07', 'Xã Hà Giang', '15292', 'Xã');
INSERT INTO category."Wards" VALUES (15298, 392, 'system', '2023-07-26 08:40:17.680284+07', 'system', '2023-07-26 08:40:17.680284+07', 'Xã Lĩnh Toại', '15298', 'Xã');
INSERT INTO category."Wards" VALUES (15304, 392, 'system', '2023-07-26 08:40:17.680286+07', 'system', '2023-07-26 08:40:17.680286+07', 'Xã Hà Ngọc', '15304', 'Xã');
INSERT INTO category."Wards" VALUES (15307, 392, 'system', '2023-07-26 08:40:17.680289+07', 'system', '2023-07-26 08:40:17.680289+07', 'Xã Yến Sơn', '15307', 'Xã');
INSERT INTO category."Wards" VALUES (15313, 392, 'system', '2023-07-26 08:40:17.680291+07', 'system', '2023-07-26 08:40:17.680291+07', 'Xã Hà Sơn', '15313', 'Xã');
INSERT INTO category."Wards" VALUES (15316, 392, 'system', '2023-07-26 08:40:17.680293+07', 'system', '2023-07-26 08:40:17.680293+07', 'Xã Hà Lĩnh', '15316', 'Xã');
INSERT INTO category."Wards" VALUES (15319, 392, 'system', '2023-07-26 08:40:17.680296+07', 'system', '2023-07-26 08:40:17.680296+07', 'Xã Hà Đông', '15319', 'Xã');
INSERT INTO category."Wards" VALUES (15322, 392, 'system', '2023-07-26 08:40:17.680298+07', 'system', '2023-07-26 08:40:17.680298+07', 'Xã Hà Tân', '15322', 'Xã');
INSERT INTO category."Wards" VALUES (15325, 392, 'system', '2023-07-26 08:40:17.6803+07', 'system', '2023-07-26 08:40:17.6803+07', 'Xã Hà Tiến', '15325', 'Xã');
INSERT INTO category."Wards" VALUES (15328, 392, 'system', '2023-07-26 08:40:17.680302+07', 'system', '2023-07-26 08:40:17.680302+07', 'Xã Hà Bình', '15328', 'Xã');
INSERT INTO category."Wards" VALUES (15331, 392, 'system', '2023-07-26 08:40:17.680304+07', 'system', '2023-07-26 08:40:17.680304+07', 'Xã Hà Lai', '15331', 'Xã');
INSERT INTO category."Wards" VALUES (15334, 392, 'system', '2023-07-26 08:40:17.680306+07', 'system', '2023-07-26 08:40:17.680306+07', 'Xã Hà Châu', '15334', 'Xã');
INSERT INTO category."Wards" VALUES (15340, 392, 'system', '2023-07-26 08:40:17.680308+07', 'system', '2023-07-26 08:40:17.680309+07', 'Xã Hà Thái', '15340', 'Xã');
INSERT INTO category."Wards" VALUES (15343, 392, 'system', '2023-07-26 08:40:17.680311+07', 'system', '2023-07-26 08:40:17.680311+07', 'Xã Hà Hải', '15343', 'Xã');
INSERT INTO category."Wards" VALUES (15349, 393, 'system', '2023-07-26 08:40:17.680313+07', 'system', '2023-07-26 08:40:17.680313+07', 'Thị trấn Vĩnh Lộc', '15349', 'Thị trấn');
INSERT INTO category."Wards" VALUES (15352, 393, 'system', '2023-07-26 08:40:17.680315+07', 'system', '2023-07-26 08:40:17.680315+07', 'Xã Vĩnh Quang', '15352', 'Xã');
INSERT INTO category."Wards" VALUES (15355, 393, 'system', '2023-07-26 08:40:17.680317+07', 'system', '2023-07-26 08:40:17.680317+07', 'Xã Vĩnh Yên', '15355', 'Xã');
INSERT INTO category."Wards" VALUES (15358, 393, 'system', '2023-07-26 08:40:17.680319+07', 'system', '2023-07-26 08:40:17.680319+07', 'Xã Vĩnh Tiến', '15358', 'Xã');
INSERT INTO category."Wards" VALUES (15361, 393, 'system', '2023-07-26 08:40:17.680321+07', 'system', '2023-07-26 08:40:17.680321+07', 'Xã Vĩnh Long', '15361', 'Xã');
INSERT INTO category."Wards" VALUES (15364, 393, 'system', '2023-07-26 08:40:17.680324+07', 'system', '2023-07-26 08:40:17.680324+07', 'Xã Vĩnh Phúc', '15364', 'Xã');
INSERT INTO category."Wards" VALUES (15367, 393, 'system', '2023-07-26 08:40:17.680326+07', 'system', '2023-07-26 08:40:17.680326+07', 'Xã Vĩnh Hưng', '15367', 'Xã');
INSERT INTO category."Wards" VALUES (15376, 393, 'system', '2023-07-26 08:40:17.680328+07', 'system', '2023-07-26 08:40:17.680328+07', 'Xã Vĩnh Hòa', '15376', 'Xã');
INSERT INTO category."Wards" VALUES (15379, 393, 'system', '2023-07-26 08:40:17.68033+07', 'system', '2023-07-26 08:40:17.68033+07', 'Xã Vĩnh Hùng', '15379', 'Xã');
INSERT INTO category."Wards" VALUES (15382, 393, 'system', '2023-07-26 08:40:17.680332+07', 'system', '2023-07-26 08:40:17.680332+07', 'Xã Minh Tân', '15382', 'Xã');
INSERT INTO category."Wards" VALUES (15385, 393, 'system', '2023-07-26 08:40:17.680334+07', 'system', '2023-07-26 08:40:17.680334+07', 'Xã Ninh Khang', '15385', 'Xã');
INSERT INTO category."Wards" VALUES (15388, 393, 'system', '2023-07-26 08:40:17.680336+07', 'system', '2023-07-26 08:40:17.680336+07', 'Xã Vĩnh Thịnh', '15388', 'Xã');
INSERT INTO category."Wards" VALUES (15391, 393, 'system', '2023-07-26 08:40:17.680339+07', 'system', '2023-07-26 08:40:17.680339+07', 'Xã Vĩnh An', '15391', 'Xã');
INSERT INTO category."Wards" VALUES (15397, 394, 'system', '2023-07-26 08:40:17.680341+07', 'system', '2023-07-26 08:40:17.680341+07', 'Thị trấn Thống Nhất', '15397', 'Thị trấn');
INSERT INTO category."Wards" VALUES (15403, 394, 'system', '2023-07-26 08:40:17.680343+07', 'system', '2023-07-26 08:40:17.680343+07', 'Thị trấn Yên Lâm', '15403', 'Thị trấn');
INSERT INTO category."Wards" VALUES (15406, 394, 'system', '2023-07-26 08:40:17.680346+07', 'system', '2023-07-26 08:40:17.680346+07', 'Xã Yên Tâm', '15406', 'Xã');
INSERT INTO category."Wards" VALUES (15409, 394, 'system', '2023-07-26 08:40:17.680348+07', 'system', '2023-07-26 08:40:17.680348+07', 'Xã Yên Phú', '15409', 'Xã');
INSERT INTO category."Wards" VALUES (15412, 394, 'system', '2023-07-26 08:40:17.68035+07', 'system', '2023-07-26 08:40:17.68035+07', 'Thị trấn Quý Lộc', '15412', 'Thị trấn');
INSERT INTO category."Wards" VALUES (15415, 394, 'system', '2023-07-26 08:40:17.680352+07', 'system', '2023-07-26 08:40:17.680352+07', 'Xã Yên Thọ', '15415', 'Xã');
INSERT INTO category."Wards" VALUES (15418, 394, 'system', '2023-07-26 08:40:17.680354+07', 'system', '2023-07-26 08:40:17.680354+07', 'Xã Yên Trung', '15418', 'Xã');
INSERT INTO category."Wards" VALUES (15421, 394, 'system', '2023-07-26 08:40:17.680356+07', 'system', '2023-07-26 08:40:17.680356+07', 'Xã Yên Trường', '15421', 'Xã');
INSERT INTO category."Wards" VALUES (15427, 394, 'system', '2023-07-26 08:40:17.680359+07', 'system', '2023-07-26 08:40:17.680359+07', 'Xã Yên Phong', '15427', 'Xã');
INSERT INTO category."Wards" VALUES (15430, 394, 'system', '2023-07-26 08:40:17.68036+07', 'system', '2023-07-26 08:40:17.68036+07', 'Xã Yên Thái', '15430', 'Xã');
INSERT INTO category."Wards" VALUES (15433, 394, 'system', '2023-07-26 08:40:17.680362+07', 'system', '2023-07-26 08:40:17.680363+07', 'Xã Yên Hùng', '15433', 'Xã');
INSERT INTO category."Wards" VALUES (15436, 394, 'system', '2023-07-26 08:40:17.680365+07', 'system', '2023-07-26 08:40:17.680365+07', 'Xã Yên Thịnh', '15436', 'Xã');
INSERT INTO category."Wards" VALUES (15439, 394, 'system', '2023-07-26 08:40:17.680367+07', 'system', '2023-07-26 08:40:17.680367+07', 'Xã Yên Ninh', '15439', 'Xã');
INSERT INTO category."Wards" VALUES (15442, 394, 'system', '2023-07-26 08:40:17.680369+07', 'system', '2023-07-26 08:40:17.680369+07', 'Xã Yên Lạc', '15442', 'Xã');
INSERT INTO category."Wards" VALUES (15445, 394, 'system', '2023-07-26 08:40:17.680372+07', 'system', '2023-07-26 08:40:17.680372+07', 'Xã Định Tăng', '15445', 'Xã');
INSERT INTO category."Wards" VALUES (15448, 394, 'system', '2023-07-26 08:40:17.680374+07', 'system', '2023-07-26 08:40:17.680374+07', 'Xã Định Hòa', '15448', 'Xã');
INSERT INTO category."Wards" VALUES (15451, 394, 'system', '2023-07-26 08:40:17.680376+07', 'system', '2023-07-26 08:40:17.680376+07', 'Xã Định Thành', '15451', 'Xã');
INSERT INTO category."Wards" VALUES (15454, 394, 'system', '2023-07-26 08:40:17.680378+07', 'system', '2023-07-26 08:40:17.680378+07', 'Xã Định Công', '15454', 'Xã');
INSERT INTO category."Wards" VALUES (15457, 394, 'system', '2023-07-26 08:40:17.680381+07', 'system', '2023-07-26 08:40:17.680381+07', 'Xã Định Tân', '15457', 'Xã');
INSERT INTO category."Wards" VALUES (15460, 394, 'system', '2023-07-26 08:40:17.680383+07', 'system', '2023-07-26 08:40:17.680383+07', 'Xã Định Tiến', '15460', 'Xã');
INSERT INTO category."Wards" VALUES (15463, 394, 'system', '2023-07-26 08:40:17.680385+07', 'system', '2023-07-26 08:40:17.680385+07', 'Xã Định Long', '15463', 'Xã');
INSERT INTO category."Wards" VALUES (15466, 394, 'system', '2023-07-26 08:40:17.680387+07', 'system', '2023-07-26 08:40:17.680387+07', 'Xã Định Liên', '15466', 'Xã');
INSERT INTO category."Wards" VALUES (15469, 394, 'system', '2023-07-26 08:40:17.680389+07', 'system', '2023-07-26 08:40:17.680389+07', 'Thị trấn Quán Lào', '15469', 'Thị trấn');
INSERT INTO category."Wards" VALUES (15472, 394, 'system', '2023-07-26 08:40:17.680391+07', 'system', '2023-07-26 08:40:17.680391+07', 'Xã Định Hưng', '15472', 'Xã');
INSERT INTO category."Wards" VALUES (15475, 394, 'system', '2023-07-26 08:40:17.680394+07', 'system', '2023-07-26 08:40:17.680394+07', 'Xã Định Hải', '15475', 'Xã');
INSERT INTO category."Wards" VALUES (15478, 394, 'system', '2023-07-26 08:40:17.680396+07', 'system', '2023-07-26 08:40:17.680396+07', 'Xã Định Bình', '15478', 'Xã');
INSERT INTO category."Wards" VALUES (15493, 395, 'system', '2023-07-26 08:40:17.680398+07', 'system', '2023-07-26 08:40:17.680398+07', 'Xã Xuân Hồng', '15493', 'Xã');
INSERT INTO category."Wards" VALUES (15499, 395, 'system', '2023-07-26 08:40:17.6804+07', 'system', '2023-07-26 08:40:17.6804+07', 'Thị trấn Thọ Xuân', '15499', 'Thị trấn');
INSERT INTO category."Wards" VALUES (15502, 395, 'system', '2023-07-26 08:40:17.680402+07', 'system', '2023-07-26 08:40:17.680402+07', 'Xã Bắc Lương', '15502', 'Xã');
INSERT INTO category."Wards" VALUES (15505, 395, 'system', '2023-07-26 08:40:17.680404+07', 'system', '2023-07-26 08:40:17.680404+07', 'Xã Nam Giang', '15505', 'Xã');
INSERT INTO category."Wards" VALUES (15508, 395, 'system', '2023-07-26 08:40:17.680407+07', 'system', '2023-07-26 08:40:17.680407+07', 'Xã Xuân Phong', '15508', 'Xã');
INSERT INTO category."Wards" VALUES (15511, 395, 'system', '2023-07-26 08:40:17.680409+07', 'system', '2023-07-26 08:40:17.680409+07', 'Xã Thọ Lộc', '15511', 'Xã');
INSERT INTO category."Wards" VALUES (15514, 395, 'system', '2023-07-26 08:40:17.680411+07', 'system', '2023-07-26 08:40:17.680411+07', 'Xã Xuân Trường', '15514', 'Xã');
INSERT INTO category."Wards" VALUES (15517, 395, 'system', '2023-07-26 08:40:17.680413+07', 'system', '2023-07-26 08:40:17.680413+07', 'Xã Xuân Hòa', '15517', 'Xã');
INSERT INTO category."Wards" VALUES (15520, 395, 'system', '2023-07-26 08:40:17.680415+07', 'system', '2023-07-26 08:40:17.680415+07', 'Xã Thọ Hải', '15520', 'Xã');
INSERT INTO category."Wards" VALUES (15523, 395, 'system', '2023-07-26 08:40:17.680417+07', 'system', '2023-07-26 08:40:17.680417+07', 'Xã Tây Hồ', '15523', 'Xã');
INSERT INTO category."Wards" VALUES (15526, 395, 'system', '2023-07-26 08:40:17.680419+07', 'system', '2023-07-26 08:40:17.680419+07', 'Xã Xuân Giang', '15526', 'Xã');
INSERT INTO category."Wards" VALUES (15532, 395, 'system', '2023-07-26 08:40:17.680421+07', 'system', '2023-07-26 08:40:17.680421+07', 'Xã Xuân Sinh', '15532', 'Xã');
INSERT INTO category."Wards" VALUES (15535, 395, 'system', '2023-07-26 08:40:17.680423+07', 'system', '2023-07-26 08:40:17.680423+07', 'Xã Xuân Hưng', '15535', 'Xã');
INSERT INTO category."Wards" VALUES (15538, 395, 'system', '2023-07-26 08:40:17.680425+07', 'system', '2023-07-26 08:40:17.680426+07', 'Xã Thọ Diên', '15538', 'Xã');
INSERT INTO category."Wards" VALUES (15541, 395, 'system', '2023-07-26 08:40:17.680428+07', 'system', '2023-07-26 08:40:17.680428+07', 'Xã Thọ Lâm', '15541', 'Xã');
INSERT INTO category."Wards" VALUES (15544, 395, 'system', '2023-07-26 08:40:17.68043+07', 'system', '2023-07-26 08:40:17.68043+07', 'Xã Thọ Xương', '15544', 'Xã');
INSERT INTO category."Wards" VALUES (15547, 395, 'system', '2023-07-26 08:40:17.680432+07', 'system', '2023-07-26 08:40:17.680432+07', 'Xã Xuân Bái', '15547', 'Xã');
INSERT INTO category."Wards" VALUES (15550, 395, 'system', '2023-07-26 08:40:17.680434+07', 'system', '2023-07-26 08:40:17.680434+07', 'Xã Xuân Phú', '15550', 'Xã');
INSERT INTO category."Wards" VALUES (15553, 395, 'system', '2023-07-26 08:40:17.680436+07', 'system', '2023-07-26 08:40:17.680436+07', 'Thị trấn Sao Vàng', '15553', 'Thị trấn');
INSERT INTO category."Wards" VALUES (15556, 395, 'system', '2023-07-26 08:40:17.680439+07', 'system', '2023-07-26 08:40:17.680439+07', 'Thị trấn Lam Sơn', '15556', 'Thị trấn');
INSERT INTO category."Wards" VALUES (15559, 395, 'system', '2023-07-26 08:40:17.680441+07', 'system', '2023-07-26 08:40:17.680441+07', 'Xã Xuân Thiên', '15559', 'Xã');
INSERT INTO category."Wards" VALUES (15565, 395, 'system', '2023-07-26 08:40:17.680443+07', 'system', '2023-07-26 08:40:17.680443+07', 'Xã Thuận Minh', '15565', 'Xã');
INSERT INTO category."Wards" VALUES (15568, 395, 'system', '2023-07-26 08:40:17.680445+07', 'system', '2023-07-26 08:40:17.680445+07', 'Xã Thọ Lập', '15568', 'Xã');
INSERT INTO category."Wards" VALUES (15571, 395, 'system', '2023-07-26 08:40:17.680447+07', 'system', '2023-07-26 08:40:17.680447+07', 'Xã Quảng Phú', '15571', 'Xã');
INSERT INTO category."Wards" VALUES (15574, 395, 'system', '2023-07-26 08:40:17.68045+07', 'system', '2023-07-26 08:40:17.68045+07', 'Xã Xuân Tín', '15574', 'Xã');
INSERT INTO category."Wards" VALUES (15577, 395, 'system', '2023-07-26 08:40:17.680452+07', 'system', '2023-07-26 08:40:17.680452+07', 'Xã Phú Xuân', '15577', 'Xã');
INSERT INTO category."Wards" VALUES (15583, 395, 'system', '2023-07-26 08:40:17.680454+07', 'system', '2023-07-26 08:40:17.680454+07', 'Xã Xuân Lai', '15583', 'Xã');
INSERT INTO category."Wards" VALUES (15586, 395, 'system', '2023-07-26 08:40:17.680456+07', 'system', '2023-07-26 08:40:17.680456+07', 'Xã Xuân Lập', '15586', 'Xã');
INSERT INTO category."Wards" VALUES (15592, 395, 'system', '2023-07-26 08:40:17.680458+07', 'system', '2023-07-26 08:40:17.680459+07', 'Xã Xuân Minh', '15592', 'Xã');
INSERT INTO category."Wards" VALUES (15598, 395, 'system', '2023-07-26 08:40:17.680461+07', 'system', '2023-07-26 08:40:17.680461+07', 'Xã Trường Xuân', '15598', 'Xã');
INSERT INTO category."Wards" VALUES (15607, 396, 'system', '2023-07-26 08:40:17.680463+07', 'system', '2023-07-26 08:40:17.680463+07', 'Xã Bát Mọt', '15607', 'Xã');
INSERT INTO category."Wards" VALUES (15610, 396, 'system', '2023-07-26 08:40:17.680465+07', 'system', '2023-07-26 08:40:17.680465+07', 'Xã Yên Nhân', '15610', 'Xã');
INSERT INTO category."Wards" VALUES (15619, 396, 'system', '2023-07-26 08:40:17.680467+07', 'system', '2023-07-26 08:40:17.680467+07', 'Xã Xuân Lẹ', '15619', 'Xã');
INSERT INTO category."Wards" VALUES (15622, 396, 'system', '2023-07-26 08:40:17.680469+07', 'system', '2023-07-26 08:40:17.680469+07', 'Xã Vạn Xuân', '15622', 'Xã');
INSERT INTO category."Wards" VALUES (15628, 396, 'system', '2023-07-26 08:40:17.680471+07', 'system', '2023-07-26 08:40:17.680471+07', 'Xã Lương Sơn', '15628', 'Xã');
INSERT INTO category."Wards" VALUES (15631, 396, 'system', '2023-07-26 08:40:17.680473+07', 'system', '2023-07-26 08:40:17.680474+07', 'Xã Xuân Cao', '15631', 'Xã');
INSERT INTO category."Wards" VALUES (15634, 396, 'system', '2023-07-26 08:40:17.680475+07', 'system', '2023-07-26 08:40:17.680475+07', 'Xã Luận Thành', '15634', 'Xã');
INSERT INTO category."Wards" VALUES (15637, 396, 'system', '2023-07-26 08:40:17.680478+07', 'system', '2023-07-26 08:40:17.680478+07', 'Xã Luận Khê', '15637', 'Xã');
INSERT INTO category."Wards" VALUES (15640, 396, 'system', '2023-07-26 08:40:17.68048+07', 'system', '2023-07-26 08:40:17.68048+07', 'Xã Xuân Thắng', '15640', 'Xã');
INSERT INTO category."Wards" VALUES (15643, 396, 'system', '2023-07-26 08:40:17.680482+07', 'system', '2023-07-26 08:40:17.680482+07', 'Xã Xuân Lộc', '15643', 'Xã');
INSERT INTO category."Wards" VALUES (15646, 396, 'system', '2023-07-26 08:40:17.680484+07', 'system', '2023-07-26 08:40:17.680484+07', 'Thị trấn Thường Xuân', '15646', 'Thị trấn');
INSERT INTO category."Wards" VALUES (15649, 396, 'system', '2023-07-26 08:40:17.680487+07', 'system', '2023-07-26 08:40:17.680487+07', 'Xã Xuân Dương', '15649', 'Xã');
INSERT INTO category."Wards" VALUES (15652, 396, 'system', '2023-07-26 08:40:17.680489+07', 'system', '2023-07-26 08:40:17.680489+07', 'Xã Thọ Thanh', '15652', 'Xã');
INSERT INTO category."Wards" VALUES (15655, 396, 'system', '2023-07-26 08:40:17.680491+07', 'system', '2023-07-26 08:40:17.680491+07', 'Xã Ngọc Phụng', '15655', 'Xã');
INSERT INTO category."Wards" VALUES (15658, 396, 'system', '2023-07-26 08:40:17.680493+07', 'system', '2023-07-26 08:40:17.680493+07', 'Xã Xuân Chinh', '15658', 'Xã');
INSERT INTO category."Wards" VALUES (15661, 396, 'system', '2023-07-26 08:40:17.680495+07', 'system', '2023-07-26 08:40:17.680495+07', 'Xã Tân Thành', '15661', 'Xã');
INSERT INTO category."Wards" VALUES (15664, 397, 'system', '2023-07-26 08:40:17.680497+07', 'system', '2023-07-26 08:40:17.680497+07', 'Thị trấn Triệu Sơn', '15664', 'Thị trấn');
INSERT INTO category."Wards" VALUES (15667, 397, 'system', '2023-07-26 08:40:17.6805+07', 'system', '2023-07-26 08:40:17.6805+07', 'Xã Thọ Sơn', '15667', 'Xã');
INSERT INTO category."Wards" VALUES (15670, 397, 'system', '2023-07-26 08:40:17.680502+07', 'system', '2023-07-26 08:40:17.680502+07', 'Xã Thọ Bình', '15670', 'Xã');
INSERT INTO category."Wards" VALUES (15673, 397, 'system', '2023-07-26 08:40:17.680504+07', 'system', '2023-07-26 08:40:17.680504+07', 'Xã Thọ Tiến', '15673', 'Xã');
INSERT INTO category."Wards" VALUES (15676, 397, 'system', '2023-07-26 08:40:17.680506+07', 'system', '2023-07-26 08:40:17.680506+07', 'Xã Hợp Lý', '15676', 'Xã');
INSERT INTO category."Wards" VALUES (15679, 397, 'system', '2023-07-26 08:40:17.680508+07', 'system', '2023-07-26 08:40:17.680508+07', 'Xã Hợp Tiến', '15679', 'Xã');
INSERT INTO category."Wards" VALUES (15682, 397, 'system', '2023-07-26 08:40:17.680512+07', 'system', '2023-07-26 08:40:17.680512+07', 'Xã Hợp Thành', '15682', 'Xã');
INSERT INTO category."Wards" VALUES (15685, 397, 'system', '2023-07-26 08:40:17.680516+07', 'system', '2023-07-26 08:40:17.680516+07', 'Xã Triệu Thành', '15685', 'Xã');
INSERT INTO category."Wards" VALUES (15688, 397, 'system', '2023-07-26 08:40:17.680519+07', 'system', '2023-07-26 08:40:17.680519+07', 'Xã Hợp Thắng', '15688', 'Xã');
INSERT INTO category."Wards" VALUES (15691, 397, 'system', '2023-07-26 08:40:17.680523+07', 'system', '2023-07-26 08:40:17.680523+07', 'Xã Minh Sơn', '15691', 'Xã');
INSERT INTO category."Wards" VALUES (15700, 397, 'system', '2023-07-26 08:40:17.680527+07', 'system', '2023-07-26 08:40:17.680527+07', 'Xã Dân Lực', '15700', 'Xã');
INSERT INTO category."Wards" VALUES (15703, 397, 'system', '2023-07-26 08:40:17.68053+07', 'system', '2023-07-26 08:40:17.680531+07', 'Xã Dân Lý', '15703', 'Xã');
INSERT INTO category."Wards" VALUES (15706, 397, 'system', '2023-07-26 08:40:17.680534+07', 'system', '2023-07-26 08:40:17.680534+07', 'Xã Dân Quyền', '15706', 'Xã');
INSERT INTO category."Wards" VALUES (15709, 397, 'system', '2023-07-26 08:40:17.680536+07', 'system', '2023-07-26 08:40:17.680536+07', 'Xã An Nông', '15709', 'Xã');
INSERT INTO category."Wards" VALUES (15712, 397, 'system', '2023-07-26 08:40:17.680539+07', 'system', '2023-07-26 08:40:17.680539+07', 'Xã Văn Sơn', '15712', 'Xã');
INSERT INTO category."Wards" VALUES (15715, 397, 'system', '2023-07-26 08:40:17.680541+07', 'system', '2023-07-26 08:40:17.680541+07', 'Xã Thái Hòa', '15715', 'Xã');
INSERT INTO category."Wards" VALUES (15718, 397, 'system', '2023-07-26 08:40:17.680543+07', 'system', '2023-07-26 08:40:17.680543+07', 'Thị trấn Nưa', '15718', 'Thị trấn');
INSERT INTO category."Wards" VALUES (15721, 397, 'system', '2023-07-26 08:40:17.680545+07', 'system', '2023-07-26 08:40:17.680545+07', 'Xã Đồng Lợi', '15721', 'Xã');
INSERT INTO category."Wards" VALUES (15724, 397, 'system', '2023-07-26 08:40:17.680548+07', 'system', '2023-07-26 08:40:17.680548+07', 'Xã Đồng Tiến', '15724', 'Xã');
INSERT INTO category."Wards" VALUES (15727, 397, 'system', '2023-07-26 08:40:17.68055+07', 'system', '2023-07-26 08:40:17.68055+07', 'Xã Đồng Thắng', '15727', 'Xã');
INSERT INTO category."Wards" VALUES (15730, 397, 'system', '2023-07-26 08:40:17.680552+07', 'system', '2023-07-26 08:40:17.680552+07', 'Xã Tiến Nông', '15730', 'Xã');
INSERT INTO category."Wards" VALUES (15733, 397, 'system', '2023-07-26 08:40:17.680554+07', 'system', '2023-07-26 08:40:17.680554+07', 'Xã Khuyến Nông', '15733', 'Xã');
INSERT INTO category."Wards" VALUES (15736, 397, 'system', '2023-07-26 08:40:17.680556+07', 'system', '2023-07-26 08:40:17.680556+07', 'Xã Xuân Thịnh', '15736', 'Xã');
INSERT INTO category."Wards" VALUES (15739, 397, 'system', '2023-07-26 08:40:17.680558+07', 'system', '2023-07-26 08:40:17.680558+07', 'Xã Xuân Lộc', '15739', 'Xã');
INSERT INTO category."Wards" VALUES (15742, 397, 'system', '2023-07-26 08:40:17.68056+07', 'system', '2023-07-26 08:40:17.68056+07', 'Xã Thọ Dân', '15742', 'Xã');
INSERT INTO category."Wards" VALUES (15745, 397, 'system', '2023-07-26 08:40:17.680562+07', 'system', '2023-07-26 08:40:17.680562+07', 'Xã Xuân Thọ', '15745', 'Xã');
INSERT INTO category."Wards" VALUES (15748, 397, 'system', '2023-07-26 08:40:17.680565+07', 'system', '2023-07-26 08:40:17.680565+07', 'Xã Thọ Tân', '15748', 'Xã');
INSERT INTO category."Wards" VALUES (15751, 397, 'system', '2023-07-26 08:40:17.680567+07', 'system', '2023-07-26 08:40:17.680567+07', 'Xã Thọ Ngọc', '15751', 'Xã');
INSERT INTO category."Wards" VALUES (15754, 397, 'system', '2023-07-26 08:40:17.680569+07', 'system', '2023-07-26 08:40:17.680569+07', 'Xã Thọ Cường', '15754', 'Xã');
INSERT INTO category."Wards" VALUES (15757, 397, 'system', '2023-07-26 08:40:17.680571+07', 'system', '2023-07-26 08:40:17.680571+07', 'Xã Thọ Phú', '15757', 'Xã');
INSERT INTO category."Wards" VALUES (15760, 397, 'system', '2023-07-26 08:40:17.680573+07', 'system', '2023-07-26 08:40:17.680573+07', 'Xã Thọ Vực', '15760', 'Xã');
INSERT INTO category."Wards" VALUES (15763, 397, 'system', '2023-07-26 08:40:17.680576+07', 'system', '2023-07-26 08:40:17.680576+07', 'Xã Thọ Thế', '15763', 'Xã');
INSERT INTO category."Wards" VALUES (15766, 397, 'system', '2023-07-26 08:40:17.680578+07', 'system', '2023-07-26 08:40:17.680578+07', 'Xã Nông Trường', '15766', 'Xã');
INSERT INTO category."Wards" VALUES (15769, 397, 'system', '2023-07-26 08:40:17.68058+07', 'system', '2023-07-26 08:40:17.68058+07', 'Xã Bình Sơn', '15769', 'Xã');
INSERT INTO category."Wards" VALUES (15772, 398, 'system', '2023-07-26 08:40:17.680582+07', 'system', '2023-07-26 08:40:17.680582+07', 'Thị trấn Thiệu Hóa', '15772', 'Thị trấn');
INSERT INTO category."Wards" VALUES (15775, 398, 'system', '2023-07-26 08:40:17.680584+07', 'system', '2023-07-26 08:40:17.680584+07', 'Xã Thiệu Ngọc', '15775', 'Xã');
INSERT INTO category."Wards" VALUES (15778, 398, 'system', '2023-07-26 08:40:17.680587+07', 'system', '2023-07-26 08:40:17.680587+07', 'Xã Thiệu Vũ', '15778', 'Xã');
INSERT INTO category."Wards" VALUES (15781, 398, 'system', '2023-07-26 08:40:17.680589+07', 'system', '2023-07-26 08:40:17.680589+07', 'Xã Thiệu Phúc', '15781', 'Xã');
INSERT INTO category."Wards" VALUES (15784, 398, 'system', '2023-07-26 08:40:17.680591+07', 'system', '2023-07-26 08:40:17.680591+07', 'Xã Thiệu Tiến', '15784', 'Xã');
INSERT INTO category."Wards" VALUES (15787, 398, 'system', '2023-07-26 08:40:17.680593+07', 'system', '2023-07-26 08:40:17.680593+07', 'Xã Thiệu Công', '15787', 'Xã');
INSERT INTO category."Wards" VALUES (15790, 398, 'system', '2023-07-26 08:40:17.680596+07', 'system', '2023-07-26 08:40:17.680596+07', 'Xã Thiệu Phú', '15790', 'Xã');
INSERT INTO category."Wards" VALUES (15793, 398, 'system', '2023-07-26 08:40:17.680598+07', 'system', '2023-07-26 08:40:17.680598+07', 'Xã Thiệu Long', '15793', 'Xã');
INSERT INTO category."Wards" VALUES (15796, 398, 'system', '2023-07-26 08:40:17.6806+07', 'system', '2023-07-26 08:40:17.6806+07', 'Xã Thiệu Giang', '15796', 'Xã');
INSERT INTO category."Wards" VALUES (15799, 398, 'system', '2023-07-26 08:40:17.680602+07', 'system', '2023-07-26 08:40:17.680602+07', 'Xã Thiệu Duy', '15799', 'Xã');
INSERT INTO category."Wards" VALUES (15802, 398, 'system', '2023-07-26 08:40:17.680604+07', 'system', '2023-07-26 08:40:17.680604+07', 'Xã Thiệu Nguyên', '15802', 'Xã');
INSERT INTO category."Wards" VALUES (15805, 398, 'system', '2023-07-26 08:40:17.680606+07', 'system', '2023-07-26 08:40:17.680606+07', 'Xã Thiệu Hợp', '15805', 'Xã');
INSERT INTO category."Wards" VALUES (15808, 398, 'system', '2023-07-26 08:40:17.680608+07', 'system', '2023-07-26 08:40:17.680609+07', 'Xã Thiệu Thịnh', '15808', 'Xã');
INSERT INTO category."Wards" VALUES (15811, 398, 'system', '2023-07-26 08:40:17.680611+07', 'system', '2023-07-26 08:40:17.680611+07', 'Xã Thiệu Quang', '15811', 'Xã');
INSERT INTO category."Wards" VALUES (15814, 398, 'system', '2023-07-26 08:40:17.680613+07', 'system', '2023-07-26 08:40:17.680613+07', 'Xã Thiệu Thành', '15814', 'Xã');
INSERT INTO category."Wards" VALUES (15817, 398, 'system', '2023-07-26 08:40:17.680615+07', 'system', '2023-07-26 08:40:17.680615+07', 'Xã Thiệu Toán', '15817', 'Xã');
INSERT INTO category."Wards" VALUES (15820, 398, 'system', '2023-07-26 08:40:17.680618+07', 'system', '2023-07-26 08:40:17.680618+07', 'Xã Thiệu Chính', '15820', 'Xã');
INSERT INTO category."Wards" VALUES (15823, 398, 'system', '2023-07-26 08:40:17.68062+07', 'system', '2023-07-26 08:40:17.68062+07', 'Xã Thiệu Hòa', '15823', 'Xã');
INSERT INTO category."Wards" VALUES (15829, 398, 'system', '2023-07-26 08:40:17.680622+07', 'system', '2023-07-26 08:40:17.680622+07', 'Xã Minh Tâm', '15829', 'Xã');
INSERT INTO category."Wards" VALUES (15832, 398, 'system', '2023-07-26 08:40:17.680624+07', 'system', '2023-07-26 08:40:17.680624+07', 'Xã Thiệu Viên', '15832', 'Xã');
INSERT INTO category."Wards" VALUES (15835, 398, 'system', '2023-07-26 08:40:17.680626+07', 'system', '2023-07-26 08:40:17.680626+07', 'Xã Thiệu Lý', '15835', 'Xã');
INSERT INTO category."Wards" VALUES (15838, 398, 'system', '2023-07-26 08:40:17.680628+07', 'system', '2023-07-26 08:40:17.680628+07', 'Xã Thiệu Vận', '15838', 'Xã');
INSERT INTO category."Wards" VALUES (15841, 398, 'system', '2023-07-26 08:40:17.68063+07', 'system', '2023-07-26 08:40:17.68063+07', 'Xã Thiệu Trung', '15841', 'Xã');
INSERT INTO category."Wards" VALUES (15847, 398, 'system', '2023-07-26 08:40:17.680632+07', 'system', '2023-07-26 08:40:17.680632+07', 'Xã Tân Châu', '15847', 'Xã');
INSERT INTO category."Wards" VALUES (15850, 380, 'system', '2023-07-26 08:40:17.679901+07', 'system', '2023-07-26 08:40:17.679901+07', 'Xã Thiệu Vân', '15850', 'Xã');
INSERT INTO category."Wards" VALUES (15853, 398, 'system', '2023-07-26 08:40:17.680635+07', 'system', '2023-07-26 08:40:17.680635+07', 'Xã Thiệu Giao', '15853', 'Xã');
INSERT INTO category."Wards" VALUES (15856, 380, 'system', '2023-07-26 08:40:17.679903+07', 'system', '2023-07-26 08:40:17.679903+07', 'Phường Thiệu Khánh', '15856', 'Phường');
INSERT INTO category."Wards" VALUES (15859, 380, 'system', '2023-07-26 08:40:17.679905+07', 'system', '2023-07-26 08:40:17.679905+07', 'Phường Thiệu Dương', '15859', 'Phường');
INSERT INTO category."Wards" VALUES (15865, 399, 'system', '2023-07-26 08:40:17.680637+07', 'system', '2023-07-26 08:40:17.680637+07', 'Thị trấn Bút Sơn', '15865', 'Thị trấn');
INSERT INTO category."Wards" VALUES (15871, 399, 'system', '2023-07-26 08:40:17.680639+07', 'system', '2023-07-26 08:40:17.680639+07', 'Xã Hoằng Giang', '15871', 'Xã');
INSERT INTO category."Wards" VALUES (15877, 399, 'system', '2023-07-26 08:40:17.680641+07', 'system', '2023-07-26 08:40:17.680641+07', 'Xã Hoằng Xuân', '15877', 'Xã');
INSERT INTO category."Wards" VALUES (15880, 399, 'system', '2023-07-26 08:40:17.680643+07', 'system', '2023-07-26 08:40:17.680643+07', 'Xã Hoằng Phượng', '15880', 'Xã');
INSERT INTO category."Wards" VALUES (15883, 399, 'system', '2023-07-26 08:40:17.680645+07', 'system', '2023-07-26 08:40:17.680646+07', 'Xã Hoằng Phú', '15883', 'Xã');
INSERT INTO category."Wards" VALUES (15886, 399, 'system', '2023-07-26 08:40:17.680648+07', 'system', '2023-07-26 08:40:17.680648+07', 'Xã Hoằng Quỳ', '15886', 'Xã');
INSERT INTO category."Wards" VALUES (15889, 399, 'system', '2023-07-26 08:40:17.68065+07', 'system', '2023-07-26 08:40:17.68065+07', 'Xã Hoằng Kim', '15889', 'Xã');
INSERT INTO category."Wards" VALUES (15892, 399, 'system', '2023-07-26 08:40:17.680652+07', 'system', '2023-07-26 08:40:17.680652+07', 'Xã Hoằng Trung', '15892', 'Xã');
INSERT INTO category."Wards" VALUES (15895, 399, 'system', '2023-07-26 08:40:17.680654+07', 'system', '2023-07-26 08:40:17.680654+07', 'Xã Hoằng Trinh', '15895', 'Xã');
INSERT INTO category."Wards" VALUES (15901, 399, 'system', '2023-07-26 08:40:17.680656+07', 'system', '2023-07-26 08:40:17.680656+07', 'Xã Hoằng Sơn', '15901', 'Xã');
INSERT INTO category."Wards" VALUES (15907, 399, 'system', '2023-07-26 08:40:17.680658+07', 'system', '2023-07-26 08:40:17.680658+07', 'Xã Hoằng Cát', '15907', 'Xã');
INSERT INTO category."Wards" VALUES (15910, 399, 'system', '2023-07-26 08:40:17.68067+07', 'system', '2023-07-26 08:40:17.68067+07', 'Xã Hoằng Xuyên', '15910', 'Xã');
INSERT INTO category."Wards" VALUES (15913, 380, 'system', '2023-07-26 08:40:17.679908+07', 'system', '2023-07-26 08:40:17.679908+07', 'Phường Tào Xuyên', '15913', 'Phường');
INSERT INTO category."Wards" VALUES (15916, 399, 'system', '2023-07-26 08:40:17.680672+07', 'system', '2023-07-26 08:40:17.680672+07', 'Xã Hoằng Quý', '15916', 'Xã');
INSERT INTO category."Wards" VALUES (15919, 399, 'system', '2023-07-26 08:40:17.680674+07', 'system', '2023-07-26 08:40:17.680674+07', 'Xã Hoằng Hợp', '15919', 'Xã');
INSERT INTO category."Wards" VALUES (15922, 380, 'system', '2023-07-26 08:40:17.67991+07', 'system', '2023-07-26 08:40:17.67991+07', 'Phường Long Anh', '15922', 'Phường');
INSERT INTO category."Wards" VALUES (15925, 380, 'system', '2023-07-26 08:40:17.679912+07', 'system', '2023-07-26 08:40:17.679912+07', 'Xã Hoằng Quang', '15925', 'Xã');
INSERT INTO category."Wards" VALUES (15928, 399, 'system', '2023-07-26 08:40:17.680676+07', 'system', '2023-07-26 08:40:17.680677+07', 'Xã Hoằng Đức', '15928', 'Xã');
INSERT INTO category."Wards" VALUES (15937, 399, 'system', '2023-07-26 08:40:17.680679+07', 'system', '2023-07-26 08:40:17.680679+07', 'Xã Hoằng Hà', '15937', 'Xã');
INSERT INTO category."Wards" VALUES (15940, 399, 'system', '2023-07-26 08:40:17.680681+07', 'system', '2023-07-26 08:40:17.680681+07', 'Xã Hoằng Đạt', '15940', 'Xã');
INSERT INTO category."Wards" VALUES (15946, 399, 'system', '2023-07-26 08:40:17.680683+07', 'system', '2023-07-26 08:40:17.680683+07', 'Xã Hoằng Đạo', '15946', 'Xã');
INSERT INTO category."Wards" VALUES (15949, 399, 'system', '2023-07-26 08:40:17.680685+07', 'system', '2023-07-26 08:40:17.680686+07', 'Xã Hoằng Thắng', '15949', 'Xã');
INSERT INTO category."Wards" VALUES (15952, 399, 'system', '2023-07-26 08:40:17.680688+07', 'system', '2023-07-26 08:40:17.680688+07', 'Xã Hoằng Đồng', '15952', 'Xã');
INSERT INTO category."Wards" VALUES (15955, 399, 'system', '2023-07-26 08:40:17.68069+07', 'system', '2023-07-26 08:40:17.68069+07', 'Xã Hoằng Thái', '15955', 'Xã');
INSERT INTO category."Wards" VALUES (15958, 399, 'system', '2023-07-26 08:40:17.680692+07', 'system', '2023-07-26 08:40:17.680692+07', 'Xã Hoằng Thịnh', '15958', 'Xã');
INSERT INTO category."Wards" VALUES (15961, 399, 'system', '2023-07-26 08:40:17.680694+07', 'system', '2023-07-26 08:40:17.680694+07', 'Xã Hoằng Thành', '15961', 'Xã');
INSERT INTO category."Wards" VALUES (15964, 399, 'system', '2023-07-26 08:40:17.680696+07', 'system', '2023-07-26 08:40:17.680696+07', 'Xã Hoằng Lộc', '15964', 'Xã');
INSERT INTO category."Wards" VALUES (15967, 399, 'system', '2023-07-26 08:40:17.680699+07', 'system', '2023-07-26 08:40:17.680699+07', 'Xã Hoằng Trạch', '15967', 'Xã');
INSERT INTO category."Wards" VALUES (15970, 380, 'system', '2023-07-26 08:40:17.679914+07', 'system', '2023-07-26 08:40:17.679914+07', 'Xã Hoằng Đại', '15970', 'Xã');
INSERT INTO category."Wards" VALUES (15973, 399, 'system', '2023-07-26 08:40:17.680701+07', 'system', '2023-07-26 08:40:17.680701+07', 'Xã Hoằng Phong', '15973', 'Xã');
INSERT INTO category."Wards" VALUES (15976, 399, 'system', '2023-07-26 08:40:17.680703+07', 'system', '2023-07-26 08:40:17.680703+07', 'Xã Hoằng Lưu', '15976', 'Xã');
INSERT INTO category."Wards" VALUES (15979, 399, 'system', '2023-07-26 08:40:17.680706+07', 'system', '2023-07-26 08:40:17.680706+07', 'Xã Hoằng Châu', '15979', 'Xã');
INSERT INTO category."Wards" VALUES (15982, 399, 'system', '2023-07-26 08:40:17.680708+07', 'system', '2023-07-26 08:40:17.680708+07', 'Xã Hoằng Tân', '15982', 'Xã');
INSERT INTO category."Wards" VALUES (15985, 399, 'system', '2023-07-26 08:40:17.68071+07', 'system', '2023-07-26 08:40:17.68071+07', 'Xã Hoằng Yến', '15985', 'Xã');
INSERT INTO category."Wards" VALUES (15988, 399, 'system', '2023-07-26 08:40:17.680712+07', 'system', '2023-07-26 08:40:17.680712+07', 'Xã Hoằng Tiến', '15988', 'Xã');
INSERT INTO category."Wards" VALUES (15991, 399, 'system', '2023-07-26 08:40:17.680714+07', 'system', '2023-07-26 08:40:17.680715+07', 'Xã Hoằng Hải', '15991', 'Xã');
INSERT INTO category."Wards" VALUES (15994, 399, 'system', '2023-07-26 08:40:17.680717+07', 'system', '2023-07-26 08:40:17.680717+07', 'Xã Hoằng Ngọc', '15994', 'Xã');
INSERT INTO category."Wards" VALUES (15997, 399, 'system', '2023-07-26 08:40:17.680719+07', 'system', '2023-07-26 08:40:17.680719+07', 'Xã Hoằng Đông', '15997', 'Xã');
INSERT INTO category."Wards" VALUES (16000, 399, 'system', '2023-07-26 08:40:17.680721+07', 'system', '2023-07-26 08:40:17.680721+07', 'Xã Hoằng Thanh', '16000', 'Xã');
INSERT INTO category."Wards" VALUES (16003, 399, 'system', '2023-07-26 08:40:17.680723+07', 'system', '2023-07-26 08:40:17.680723+07', 'Xã Hoằng Phụ', '16003', 'Xã');
INSERT INTO category."Wards" VALUES (16006, 399, 'system', '2023-07-26 08:40:17.680725+07', 'system', '2023-07-26 08:40:17.680725+07', 'Xã Hoằng Trường', '16006', 'Xã');
INSERT INTO category."Wards" VALUES (16012, 400, 'system', '2023-07-26 08:40:17.680727+07', 'system', '2023-07-26 08:40:17.680727+07', 'Thị trấn Hậu Lộc', '16012', 'Thị trấn');
INSERT INTO category."Wards" VALUES (16015, 400, 'system', '2023-07-26 08:40:17.68073+07', 'system', '2023-07-26 08:40:17.68073+07', 'Xã Đồng Lộc', '16015', 'Xã');
INSERT INTO category."Wards" VALUES (16018, 400, 'system', '2023-07-26 08:40:17.680732+07', 'system', '2023-07-26 08:40:17.680732+07', 'Xã Đại Lộc', '16018', 'Xã');
INSERT INTO category."Wards" VALUES (16021, 400, 'system', '2023-07-26 08:40:17.680734+07', 'system', '2023-07-26 08:40:17.680734+07', 'Xã Triệu Lộc', '16021', 'Xã');
INSERT INTO category."Wards" VALUES (16027, 400, 'system', '2023-07-26 08:40:17.680736+07', 'system', '2023-07-26 08:40:17.680736+07', 'Xã Tiến Lộc', '16027', 'Xã');
INSERT INTO category."Wards" VALUES (16030, 400, 'system', '2023-07-26 08:40:17.680738+07', 'system', '2023-07-26 08:40:17.680738+07', 'Xã Lộc Sơn', '16030', 'Xã');
INSERT INTO category."Wards" VALUES (16033, 400, 'system', '2023-07-26 08:40:17.680741+07', 'system', '2023-07-26 08:40:17.680741+07', 'Xã Cầu Lộc', '16033', 'Xã');
INSERT INTO category."Wards" VALUES (16036, 400, 'system', '2023-07-26 08:40:17.680743+07', 'system', '2023-07-26 08:40:17.680743+07', 'Xã Thành Lộc', '16036', 'Xã');
INSERT INTO category."Wards" VALUES (16039, 400, 'system', '2023-07-26 08:40:17.680745+07', 'system', '2023-07-26 08:40:17.680745+07', 'Xã Tuy Lộc', '16039', 'Xã');
INSERT INTO category."Wards" VALUES (16042, 400, 'system', '2023-07-26 08:40:17.680747+07', 'system', '2023-07-26 08:40:17.680747+07', 'Xã Phong Lộc', '16042', 'Xã');
INSERT INTO category."Wards" VALUES (16045, 400, 'system', '2023-07-26 08:40:17.680749+07', 'system', '2023-07-26 08:40:17.680749+07', 'Xã Mỹ Lộc', '16045', 'Xã');
INSERT INTO category."Wards" VALUES (16048, 400, 'system', '2023-07-26 08:40:17.680752+07', 'system', '2023-07-26 08:40:17.680752+07', 'Xã Thuần Lộc', '16048', 'Xã');
INSERT INTO category."Wards" VALUES (16057, 400, 'system', '2023-07-26 08:40:17.680754+07', 'system', '2023-07-26 08:40:17.680754+07', 'Xã Xuân Lộc', '16057', 'Xã');
INSERT INTO category."Wards" VALUES (16063, 400, 'system', '2023-07-26 08:40:17.680756+07', 'system', '2023-07-26 08:40:17.680756+07', 'Xã Hoa Lộc', '16063', 'Xã');
INSERT INTO category."Wards" VALUES (16066, 400, 'system', '2023-07-26 08:40:17.680758+07', 'system', '2023-07-26 08:40:17.680758+07', 'Xã Liên Lộc', '16066', 'Xã');
INSERT INTO category."Wards" VALUES (16069, 400, 'system', '2023-07-26 08:40:17.68076+07', 'system', '2023-07-26 08:40:17.68076+07', 'Xã Quang Lộc', '16069', 'Xã');
INSERT INTO category."Wards" VALUES (16072, 400, 'system', '2023-07-26 08:40:17.680762+07', 'system', '2023-07-26 08:40:17.680762+07', 'Xã Phú Lộc', '16072', 'Xã');
INSERT INTO category."Wards" VALUES (16075, 400, 'system', '2023-07-26 08:40:17.680764+07', 'system', '2023-07-26 08:40:17.680764+07', 'Xã Hòa Lộc', '16075', 'Xã');
INSERT INTO category."Wards" VALUES (16078, 400, 'system', '2023-07-26 08:40:17.680766+07', 'system', '2023-07-26 08:40:17.680767+07', 'Xã Minh Lộc', '16078', 'Xã');
INSERT INTO category."Wards" VALUES (16081, 400, 'system', '2023-07-26 08:40:17.680769+07', 'system', '2023-07-26 08:40:17.680769+07', 'Xã Hưng Lộc', '16081', 'Xã');
INSERT INTO category."Wards" VALUES (16084, 400, 'system', '2023-07-26 08:40:17.680771+07', 'system', '2023-07-26 08:40:17.680771+07', 'Xã Hải Lộc', '16084', 'Xã');
INSERT INTO category."Wards" VALUES (16087, 400, 'system', '2023-07-26 08:40:17.680773+07', 'system', '2023-07-26 08:40:17.680773+07', 'Xã Đa Lộc', '16087', 'Xã');
INSERT INTO category."Wards" VALUES (16090, 400, 'system', '2023-07-26 08:40:17.680775+07', 'system', '2023-07-26 08:40:17.680775+07', 'Xã Ngư Lộc', '16090', 'Xã');
INSERT INTO category."Wards" VALUES (16093, 401, 'system', '2023-07-26 08:40:17.680777+07', 'system', '2023-07-26 08:40:17.680777+07', 'Thị trấn Nga Sơn', '16093', 'Thị trấn');
INSERT INTO category."Wards" VALUES (16096, 401, 'system', '2023-07-26 08:40:17.68078+07', 'system', '2023-07-26 08:40:17.68078+07', 'Xã Ba Đình', '16096', 'Xã');
INSERT INTO category."Wards" VALUES (16099, 401, 'system', '2023-07-26 08:40:17.680782+07', 'system', '2023-07-26 08:40:17.680782+07', 'Xã Nga Vịnh', '16099', 'Xã');
INSERT INTO category."Wards" VALUES (16102, 401, 'system', '2023-07-26 08:40:17.680784+07', 'system', '2023-07-26 08:40:17.680784+07', 'Xã Nga Văn', '16102', 'Xã');
INSERT INTO category."Wards" VALUES (16105, 401, 'system', '2023-07-26 08:40:17.680787+07', 'system', '2023-07-26 08:40:17.680787+07', 'Xã Nga Thiện', '16105', 'Xã');
INSERT INTO category."Wards" VALUES (16108, 401, 'system', '2023-07-26 08:40:17.680789+07', 'system', '2023-07-26 08:40:17.680789+07', 'Xã Nga Tiến', '16108', 'Xã');
INSERT INTO category."Wards" VALUES (16114, 401, 'system', '2023-07-26 08:40:17.680791+07', 'system', '2023-07-26 08:40:17.680791+07', 'Xã Nga Phượng', '16114', 'Xã');
INSERT INTO category."Wards" VALUES (16117, 401, 'system', '2023-07-26 08:40:17.680793+07', 'system', '2023-07-26 08:40:17.680793+07', 'Xã Nga Trung', '16117', 'Xã');
INSERT INTO category."Wards" VALUES (16120, 401, 'system', '2023-07-26 08:40:17.680795+07', 'system', '2023-07-26 08:40:17.680795+07', 'Xã Nga Bạch', '16120', 'Xã');
INSERT INTO category."Wards" VALUES (16123, 401, 'system', '2023-07-26 08:40:17.680797+07', 'system', '2023-07-26 08:40:17.680797+07', 'Xã Nga Thanh', '16123', 'Xã');
INSERT INTO category."Wards" VALUES (16132, 401, 'system', '2023-07-26 08:40:17.6808+07', 'system', '2023-07-26 08:40:17.6808+07', 'Xã Nga Yên', '16132', 'Xã');
INSERT INTO category."Wards" VALUES (16135, 401, 'system', '2023-07-26 08:40:17.680802+07', 'system', '2023-07-26 08:40:17.680802+07', 'Xã Nga Giáp', '16135', 'Xã');
INSERT INTO category."Wards" VALUES (16138, 401, 'system', '2023-07-26 08:40:17.680804+07', 'system', '2023-07-26 08:40:17.680804+07', 'Xã Nga Hải', '16138', 'Xã');
INSERT INTO category."Wards" VALUES (16141, 401, 'system', '2023-07-26 08:40:17.680806+07', 'system', '2023-07-26 08:40:17.680806+07', 'Xã Nga Thành', '16141', 'Xã');
INSERT INTO category."Wards" VALUES (16144, 401, 'system', '2023-07-26 08:40:17.680808+07', 'system', '2023-07-26 08:40:17.680808+07', 'Xã Nga An', '16144', 'Xã');
INSERT INTO category."Wards" VALUES (16147, 401, 'system', '2023-07-26 08:40:17.68081+07', 'system', '2023-07-26 08:40:17.68081+07', 'Xã Nga Phú', '16147', 'Xã');
INSERT INTO category."Wards" VALUES (16150, 401, 'system', '2023-07-26 08:40:17.680812+07', 'system', '2023-07-26 08:40:17.680812+07', 'Xã Nga Điền', '16150', 'Xã');
INSERT INTO category."Wards" VALUES (16153, 401, 'system', '2023-07-26 08:40:17.680815+07', 'system', '2023-07-26 08:40:17.680815+07', 'Xã Nga Tân', '16153', 'Xã');
INSERT INTO category."Wards" VALUES (16156, 401, 'system', '2023-07-26 08:40:17.680817+07', 'system', '2023-07-26 08:40:17.680817+07', 'Xã Nga Thủy', '16156', 'Xã');
INSERT INTO category."Wards" VALUES (16159, 401, 'system', '2023-07-26 08:40:17.680819+07', 'system', '2023-07-26 08:40:17.680819+07', 'Xã Nga Liên', '16159', 'Xã');
INSERT INTO category."Wards" VALUES (16162, 401, 'system', '2023-07-26 08:40:17.680821+07', 'system', '2023-07-26 08:40:17.680821+07', 'Xã Nga Thái', '16162', 'Xã');
INSERT INTO category."Wards" VALUES (16165, 401, 'system', '2023-07-26 08:40:17.680823+07', 'system', '2023-07-26 08:40:17.680823+07', 'Xã Nga Thạch', '16165', 'Xã');
INSERT INTO category."Wards" VALUES (16168, 401, 'system', '2023-07-26 08:40:17.680825+07', 'system', '2023-07-26 08:40:17.680825+07', 'Xã Nga Thắng', '16168', 'Xã');
INSERT INTO category."Wards" VALUES (16171, 401, 'system', '2023-07-26 08:40:17.680827+07', 'system', '2023-07-26 08:40:17.680827+07', 'Xã Nga Trường', '16171', 'Xã');
INSERT INTO category."Wards" VALUES (16174, 402, 'system', '2023-07-26 08:40:17.680829+07', 'system', '2023-07-26 08:40:17.680829+07', 'Thị trấn Yên Cát', '16174', 'Thị trấn');
INSERT INTO category."Wards" VALUES (16177, 402, 'system', '2023-07-26 08:40:17.680832+07', 'system', '2023-07-26 08:40:17.680832+07', 'Xã Bãi Trành', '16177', 'Xã');
INSERT INTO category."Wards" VALUES (16180, 402, 'system', '2023-07-26 08:40:17.680834+07', 'system', '2023-07-26 08:40:17.680834+07', 'Xã Xuân Hòa', '16180', 'Xã');
INSERT INTO category."Wards" VALUES (16183, 402, 'system', '2023-07-26 08:40:17.680836+07', 'system', '2023-07-26 08:40:17.680836+07', 'Xã Xuân Bình', '16183', 'Xã');
INSERT INTO category."Wards" VALUES (16186, 402, 'system', '2023-07-26 08:40:17.680838+07', 'system', '2023-07-26 08:40:17.680838+07', 'Xã Hóa Quỳ', '16186', 'Xã');
INSERT INTO category."Wards" VALUES (16195, 402, 'system', '2023-07-26 08:40:17.68084+07', 'system', '2023-07-26 08:40:17.68084+07', 'Xã Cát Vân', '16195', 'Xã');
INSERT INTO category."Wards" VALUES (16198, 402, 'system', '2023-07-26 08:40:17.680842+07', 'system', '2023-07-26 08:40:17.680842+07', 'Xã Cát Tân', '16198', 'Xã');
INSERT INTO category."Wards" VALUES (16201, 402, 'system', '2023-07-26 08:40:17.680845+07', 'system', '2023-07-26 08:40:17.680845+07', 'Xã Tân Bình', '16201', 'Xã');
INSERT INTO category."Wards" VALUES (16204, 402, 'system', '2023-07-26 08:40:17.680847+07', 'system', '2023-07-26 08:40:17.680847+07', 'Xã Bình Lương', '16204', 'Xã');
INSERT INTO category."Wards" VALUES (16207, 402, 'system', '2023-07-26 08:40:17.680849+07', 'system', '2023-07-26 08:40:17.680849+07', 'Xã Thanh Quân', '16207', 'Xã');
INSERT INTO category."Wards" VALUES (16210, 402, 'system', '2023-07-26 08:40:17.680851+07', 'system', '2023-07-26 08:40:17.680851+07', 'Xã Thanh Xuân', '16210', 'Xã');
INSERT INTO category."Wards" VALUES (16213, 402, 'system', '2023-07-26 08:40:17.680853+07', 'system', '2023-07-26 08:40:17.680853+07', 'Xã Thanh Hòa', '16213', 'Xã');
INSERT INTO category."Wards" VALUES (16216, 402, 'system', '2023-07-26 08:40:17.680855+07', 'system', '2023-07-26 08:40:17.680855+07', 'Xã Thanh Phong', '16216', 'Xã');
INSERT INTO category."Wards" VALUES (16219, 402, 'system', '2023-07-26 08:40:17.680858+07', 'system', '2023-07-26 08:40:17.680858+07', 'Xã Thanh Lâm', '16219', 'Xã');
INSERT INTO category."Wards" VALUES (16222, 402, 'system', '2023-07-26 08:40:17.68086+07', 'system', '2023-07-26 08:40:17.68086+07', 'Xã Thanh Sơn', '16222', 'Xã');
INSERT INTO category."Wards" VALUES (16225, 402, 'system', '2023-07-26 08:40:17.680862+07', 'system', '2023-07-26 08:40:17.680862+07', 'Xã Thượng Ninh', '16225', 'Xã');
INSERT INTO category."Wards" VALUES (16228, 403, 'system', '2023-07-26 08:40:17.680865+07', 'system', '2023-07-26 08:40:17.680865+07', 'Thị trấn Bến Sung', '16228', 'Thị trấn');
INSERT INTO category."Wards" VALUES (16231, 403, 'system', '2023-07-26 08:40:17.680867+07', 'system', '2023-07-26 08:40:17.680867+07', 'Xã Cán Khê', '16231', 'Xã');
INSERT INTO category."Wards" VALUES (16234, 403, 'system', '2023-07-26 08:40:17.680869+07', 'system', '2023-07-26 08:40:17.680869+07', 'Xã Xuân Du', '16234', 'Xã');
INSERT INTO category."Wards" VALUES (16240, 403, 'system', '2023-07-26 08:40:17.680872+07', 'system', '2023-07-26 08:40:17.680872+07', 'Xã Phượng Nghi', '16240', 'Xã');
INSERT INTO category."Wards" VALUES (16243, 403, 'system', '2023-07-26 08:40:17.680874+07', 'system', '2023-07-26 08:40:17.680874+07', 'Xã Mậu Lâm', '16243', 'Xã');
INSERT INTO category."Wards" VALUES (16246, 403, 'system', '2023-07-26 08:40:17.680876+07', 'system', '2023-07-26 08:40:17.680876+07', 'Xã Xuân Khang', '16246', 'Xã');
INSERT INTO category."Wards" VALUES (16249, 403, 'system', '2023-07-26 08:40:17.680878+07', 'system', '2023-07-26 08:40:17.680878+07', 'Xã Phú Nhuận', '16249', 'Xã');
INSERT INTO category."Wards" VALUES (16252, 403, 'system', '2023-07-26 08:40:17.68088+07', 'system', '2023-07-26 08:40:17.68088+07', 'Xã Hải Long', '16252', 'Xã');
INSERT INTO category."Wards" VALUES (16258, 403, 'system', '2023-07-26 08:40:17.680882+07', 'system', '2023-07-26 08:40:17.680883+07', 'Xã Xuân Thái', '16258', 'Xã');
INSERT INTO category."Wards" VALUES (16261, 403, 'system', '2023-07-26 08:40:17.680885+07', 'system', '2023-07-26 08:40:17.680885+07', 'Xã Xuân Phúc', '16261', 'Xã');
INSERT INTO category."Wards" VALUES (16264, 403, 'system', '2023-07-26 08:40:17.680887+07', 'system', '2023-07-26 08:40:17.680887+07', 'Xã Yên Thọ', '16264', 'Xã');
INSERT INTO category."Wards" VALUES (16267, 403, 'system', '2023-07-26 08:40:17.680889+07', 'system', '2023-07-26 08:40:17.680889+07', 'Xã Yên Lạc', '16267', 'Xã');
INSERT INTO category."Wards" VALUES (16273, 403, 'system', '2023-07-26 08:40:17.680891+07', 'system', '2023-07-26 08:40:17.680891+07', 'Xã Thanh Tân', '16273', 'Xã');
INSERT INTO category."Wards" VALUES (16276, 403, 'system', '2023-07-26 08:40:17.680893+07', 'system', '2023-07-26 08:40:17.680893+07', 'Xã Thanh Kỳ', '16276', 'Xã');
INSERT INTO category."Wards" VALUES (16279, 404, 'system', '2023-07-26 08:40:17.680895+07', 'system', '2023-07-26 08:40:17.680895+07', 'Thị trấn Nông Cống', '16279', 'Thị trấn');
INSERT INTO category."Wards" VALUES (16282, 404, 'system', '2023-07-26 08:40:17.680898+07', 'system', '2023-07-26 08:40:17.680898+07', 'Xã Tân Phúc', '16282', 'Xã');
INSERT INTO category."Wards" VALUES (16285, 404, 'system', '2023-07-26 08:40:17.6809+07', 'system', '2023-07-26 08:40:17.6809+07', 'Xã Tân Thọ', '16285', 'Xã');
INSERT INTO category."Wards" VALUES (16288, 404, 'system', '2023-07-26 08:40:17.680902+07', 'system', '2023-07-26 08:40:17.680902+07', 'Xã Hoàng Sơn', '16288', 'Xã');
INSERT INTO category."Wards" VALUES (16291, 404, 'system', '2023-07-26 08:40:17.680904+07', 'system', '2023-07-26 08:40:17.680904+07', 'Xã Tân Khang', '16291', 'Xã');
INSERT INTO category."Wards" VALUES (16294, 404, 'system', '2023-07-26 08:40:17.680906+07', 'system', '2023-07-26 08:40:17.680906+07', 'Xã Hoàng Giang', '16294', 'Xã');
INSERT INTO category."Wards" VALUES (16297, 404, 'system', '2023-07-26 08:40:17.680908+07', 'system', '2023-07-26 08:40:17.680908+07', 'Xã Trung Chính', '16297', 'Xã');
INSERT INTO category."Wards" VALUES (16303, 404, 'system', '2023-07-26 08:40:17.680911+07', 'system', '2023-07-26 08:40:17.680911+07', 'Xã Trung Thành', '16303', 'Xã');
INSERT INTO category."Wards" VALUES (16309, 404, 'system', '2023-07-26 08:40:17.680913+07', 'system', '2023-07-26 08:40:17.680913+07', 'Xã Tế Thắng', '16309', 'Xã');
INSERT INTO category."Wards" VALUES (16315, 404, 'system', '2023-07-26 08:40:17.680915+07', 'system', '2023-07-26 08:40:17.680915+07', 'Xã Tế Lợi', '16315', 'Xã');
INSERT INTO category."Wards" VALUES (16318, 404, 'system', '2023-07-26 08:40:17.680917+07', 'system', '2023-07-26 08:40:17.680917+07', 'Xã Tế Nông', '16318', 'Xã');
INSERT INTO category."Wards" VALUES (16321, 404, 'system', '2023-07-26 08:40:17.68092+07', 'system', '2023-07-26 08:40:17.68092+07', 'Xã Minh Nghĩa', '16321', 'Xã');
INSERT INTO category."Wards" VALUES (16324, 404, 'system', '2023-07-26 08:40:17.680922+07', 'system', '2023-07-26 08:40:17.680922+07', 'Xã Minh Khôi', '16324', 'Xã');
INSERT INTO category."Wards" VALUES (16327, 404, 'system', '2023-07-26 08:40:17.680924+07', 'system', '2023-07-26 08:40:17.680924+07', 'Xã Vạn Hòa', '16327', 'Xã');
INSERT INTO category."Wards" VALUES (16330, 404, 'system', '2023-07-26 08:40:17.680926+07', 'system', '2023-07-26 08:40:17.680926+07', 'Xã Trường Trung', '16330', 'Xã');
INSERT INTO category."Wards" VALUES (16333, 404, 'system', '2023-07-26 08:40:17.680928+07', 'system', '2023-07-26 08:40:17.680928+07', 'Xã Vạn Thắng', '16333', 'Xã');
INSERT INTO category."Wards" VALUES (16336, 404, 'system', '2023-07-26 08:40:17.68093+07', 'system', '2023-07-26 08:40:17.68093+07', 'Xã Trường Giang', '16336', 'Xã');
INSERT INTO category."Wards" VALUES (16339, 404, 'system', '2023-07-26 08:40:17.680933+07', 'system', '2023-07-26 08:40:17.680933+07', 'Xã Vạn Thiện', '16339', 'Xã');
INSERT INTO category."Wards" VALUES (16342, 404, 'system', '2023-07-26 08:40:17.680935+07', 'system', '2023-07-26 08:40:17.680935+07', 'Xã Thăng Long', '16342', 'Xã');
INSERT INTO category."Wards" VALUES (16345, 404, 'system', '2023-07-26 08:40:17.680937+07', 'system', '2023-07-26 08:40:17.680937+07', 'Xã Trường Minh', '16345', 'Xã');
INSERT INTO category."Wards" VALUES (16348, 404, 'system', '2023-07-26 08:40:17.680939+07', 'system', '2023-07-26 08:40:17.680939+07', 'Xã Trường Sơn', '16348', 'Xã');
INSERT INTO category."Wards" VALUES (16351, 404, 'system', '2023-07-26 08:40:17.680941+07', 'system', '2023-07-26 08:40:17.680941+07', 'Xã Thăng Bình', '16351', 'Xã');
INSERT INTO category."Wards" VALUES (16354, 404, 'system', '2023-07-26 08:40:17.680944+07', 'system', '2023-07-26 08:40:17.680944+07', 'Xã Công Liêm', '16354', 'Xã');
INSERT INTO category."Wards" VALUES (16357, 404, 'system', '2023-07-26 08:40:17.680946+07', 'system', '2023-07-26 08:40:17.680946+07', 'Xã Tượng Văn', '16357', 'Xã');
INSERT INTO category."Wards" VALUES (16360, 404, 'system', '2023-07-26 08:40:17.680948+07', 'system', '2023-07-26 08:40:17.680948+07', 'Xã Thăng Thọ', '16360', 'Xã');
INSERT INTO category."Wards" VALUES (16363, 404, 'system', '2023-07-26 08:40:17.680951+07', 'system', '2023-07-26 08:40:17.680951+07', 'Xã Tượng Lĩnh', '16363', 'Xã');
INSERT INTO category."Wards" VALUES (16366, 404, 'system', '2023-07-26 08:40:17.680953+07', 'system', '2023-07-26 08:40:17.680953+07', 'Xã Tượng Sơn', '16366', 'Xã');
INSERT INTO category."Wards" VALUES (16369, 404, 'system', '2023-07-26 08:40:17.680955+07', 'system', '2023-07-26 08:40:17.680955+07', 'Xã Công Chính', '16369', 'Xã');
INSERT INTO category."Wards" VALUES (16375, 404, 'system', '2023-07-26 08:40:17.680957+07', 'system', '2023-07-26 08:40:17.680957+07', 'Xã Yên Mỹ', '16375', 'Xã');
INSERT INTO category."Wards" VALUES (16378, 405, 'system', '2023-07-26 08:40:17.68096+07', 'system', '2023-07-26 08:40:17.68096+07', 'Thị trấn Rừng Thông', '16378', 'Thị trấn');
INSERT INTO category."Wards" VALUES (16381, 405, 'system', '2023-07-26 08:40:17.680962+07', 'system', '2023-07-26 08:40:17.680962+07', 'Xã Đông Hoàng', '16381', 'Xã');
INSERT INTO category."Wards" VALUES (16384, 405, 'system', '2023-07-26 08:40:17.680964+07', 'system', '2023-07-26 08:40:17.680964+07', 'Xã Đông Ninh', '16384', 'Xã');
INSERT INTO category."Wards" VALUES (16390, 405, 'system', '2023-07-26 08:40:17.680966+07', 'system', '2023-07-26 08:40:17.680967+07', 'Xã Đông Hòa', '16390', 'Xã');
INSERT INTO category."Wards" VALUES (16393, 405, 'system', '2023-07-26 08:40:17.680969+07', 'system', '2023-07-26 08:40:17.680969+07', 'Xã Đông Yên', '16393', 'Xã');
INSERT INTO category."Wards" VALUES (16396, 380, 'system', '2023-07-26 08:40:17.679917+07', 'system', '2023-07-26 08:40:17.679917+07', 'Phường Đông Lĩnh', '16396', 'Phường');
INSERT INTO category."Wards" VALUES (16399, 405, 'system', '2023-07-26 08:40:17.680971+07', 'system', '2023-07-26 08:40:17.680971+07', 'Xã Đông Minh', '16399', 'Xã');
INSERT INTO category."Wards" VALUES (16402, 405, 'system', '2023-07-26 08:40:17.680973+07', 'system', '2023-07-26 08:40:17.680973+07', 'Xã Đông Thanh', '16402', 'Xã');
INSERT INTO category."Wards" VALUES (16405, 405, 'system', '2023-07-26 08:40:17.680975+07', 'system', '2023-07-26 08:40:17.680975+07', 'Xã Đông Tiến', '16405', 'Xã');
INSERT INTO category."Wards" VALUES (16408, 405, 'system', '2023-07-26 08:40:17.680977+07', 'system', '2023-07-26 08:40:17.680977+07', 'Xã Đông Khê', '16408', 'Xã');
INSERT INTO category."Wards" VALUES (16414, 405, 'system', '2023-07-26 08:40:17.68098+07', 'system', '2023-07-26 08:40:17.68098+07', 'Xã Đông Thịnh', '16414', 'Xã');
INSERT INTO category."Wards" VALUES (16417, 405, 'system', '2023-07-26 08:40:17.680982+07', 'system', '2023-07-26 08:40:17.680982+07', 'Xã Đông Văn', '16417', 'Xã');
INSERT INTO category."Wards" VALUES (16420, 405, 'system', '2023-07-26 08:40:17.680984+07', 'system', '2023-07-26 08:40:17.680984+07', 'Xã Đông Phú', '16420', 'Xã');
INSERT INTO category."Wards" VALUES (16423, 405, 'system', '2023-07-26 08:40:17.680986+07', 'system', '2023-07-26 08:40:17.680986+07', 'Xã Đông Nam', '16423', 'Xã');
INSERT INTO category."Wards" VALUES (16426, 405, 'system', '2023-07-26 08:40:17.680988+07', 'system', '2023-07-26 08:40:17.680988+07', 'Xã Đông Quang', '16426', 'Xã');
INSERT INTO category."Wards" VALUES (16429, 380, 'system', '2023-07-26 08:40:17.679919+07', 'system', '2023-07-26 08:40:17.679919+07', 'Xã Đông Vinh', '16429', 'Xã');
INSERT INTO category."Wards" VALUES (16432, 380, 'system', '2023-07-26 08:40:17.679921+07', 'system', '2023-07-26 08:40:17.679921+07', 'Phường Đông Tân', '16432', 'Phường');
INSERT INTO category."Wards" VALUES (16435, 380, 'system', '2023-07-26 08:40:17.679923+07', 'system', '2023-07-26 08:40:17.679923+07', 'Phường An Hưng', '16435', 'Phường');
INSERT INTO category."Wards" VALUES (16438, 406, 'system', '2023-07-26 08:40:17.68099+07', 'system', '2023-07-26 08:40:17.68099+07', 'Thị trấn Tân Phong', '16438', 'Thị trấn');
INSERT INTO category."Wards" VALUES (16441, 380, 'system', '2023-07-26 08:40:17.679926+07', 'system', '2023-07-26 08:40:17.679926+07', 'Phường Quảng Thịnh', '16441', 'Phường');
INSERT INTO category."Wards" VALUES (16447, 406, 'system', '2023-07-26 08:40:17.680993+07', 'system', '2023-07-26 08:40:17.680993+07', 'Xã Quảng Trạch', '16447', 'Xã');
INSERT INTO category."Wards" VALUES (16453, 406, 'system', '2023-07-26 08:40:17.680995+07', 'system', '2023-07-26 08:40:17.680995+07', 'Xã Quảng Đức', '16453', 'Xã');
INSERT INTO category."Wards" VALUES (16456, 406, 'system', '2023-07-26 08:40:17.680997+07', 'system', '2023-07-26 08:40:17.680997+07', 'Xã Quảng Định', '16456', 'Xã');
INSERT INTO category."Wards" VALUES (16459, 380, 'system', '2023-07-26 08:40:17.679928+07', 'system', '2023-07-26 08:40:17.679928+07', 'Phường Quảng Đông', '16459', 'Phường');
INSERT INTO category."Wards" VALUES (16462, 406, 'system', '2023-07-26 08:40:17.681+07', 'system', '2023-07-26 08:40:17.681+07', 'Xã Quảng Nhân', '16462', 'Xã');
INSERT INTO category."Wards" VALUES (16465, 406, 'system', '2023-07-26 08:40:17.681002+07', 'system', '2023-07-26 08:40:17.681002+07', 'Xã Quảng Ninh', '16465', 'Xã');
INSERT INTO category."Wards" VALUES (16468, 406, 'system', '2023-07-26 08:40:17.681004+07', 'system', '2023-07-26 08:40:17.681004+07', 'Xã Quảng Bình', '16468', 'Xã');
INSERT INTO category."Wards" VALUES (16471, 406, 'system', '2023-07-26 08:40:17.681006+07', 'system', '2023-07-26 08:40:17.681006+07', 'Xã Quảng Hợp', '16471', 'Xã');
INSERT INTO category."Wards" VALUES (16474, 406, 'system', '2023-07-26 08:40:17.681008+07', 'system', '2023-07-26 08:40:17.681008+07', 'Xã Quảng Văn', '16474', 'Xã');
INSERT INTO category."Wards" VALUES (16477, 406, 'system', '2023-07-26 08:40:17.68101+07', 'system', '2023-07-26 08:40:17.68101+07', 'Xã Quảng Long', '16477', 'Xã');
INSERT INTO category."Wards" VALUES (16480, 406, 'system', '2023-07-26 08:40:17.681012+07', 'system', '2023-07-26 08:40:17.681012+07', 'Xã Quảng Yên', '16480', 'Xã');
INSERT INTO category."Wards" VALUES (16483, 406, 'system', '2023-07-26 08:40:17.681014+07', 'system', '2023-07-26 08:40:17.681014+07', 'Xã Quảng Hòa', '16483', 'Xã');
INSERT INTO category."Wards" VALUES (16489, 406, 'system', '2023-07-26 08:40:17.681016+07', 'system', '2023-07-26 08:40:17.681016+07', 'Xã Quảng Khê', '16489', 'Xã');
INSERT INTO category."Wards" VALUES (16492, 406, 'system', '2023-07-26 08:40:17.681019+07', 'system', '2023-07-26 08:40:17.681019+07', 'Xã Quảng Trung', '16492', 'Xã');
INSERT INTO category."Wards" VALUES (16495, 406, 'system', '2023-07-26 08:40:17.681021+07', 'system', '2023-07-26 08:40:17.681021+07', 'Xã Quảng Chính', '16495', 'Xã');
INSERT INTO category."Wards" VALUES (16498, 406, 'system', '2023-07-26 08:40:17.681024+07', 'system', '2023-07-26 08:40:17.681024+07', 'Xã Quảng Ngọc', '16498', 'Xã');
INSERT INTO category."Wards" VALUES (16501, 406, 'system', '2023-07-26 08:40:17.681026+07', 'system', '2023-07-26 08:40:17.681026+07', 'Xã Quảng Trường', '16501', 'Xã');
INSERT INTO category."Wards" VALUES (16507, 380, 'system', '2023-07-26 08:40:17.67993+07', 'system', '2023-07-26 08:40:17.67993+07', 'Phường Quảng Cát', '16507', 'Phường');
INSERT INTO category."Wards" VALUES (16510, 406, 'system', '2023-07-26 08:40:17.681028+07', 'system', '2023-07-26 08:40:17.681029+07', 'Xã Quảng Phúc', '16510', 'Xã');
INSERT INTO category."Wards" VALUES (16513, 382, 'system', '2023-07-26 08:40:17.679964+07', 'system', '2023-07-26 08:40:17.679964+07', 'Xã Quảng Minh', '16513', 'Xã');
INSERT INTO category."Wards" VALUES (16516, 382, 'system', '2023-07-26 08:40:17.679967+07', 'system', '2023-07-26 08:40:17.679967+07', 'Xã Quảng Hùng', '16516', 'Xã');
INSERT INTO category."Wards" VALUES (16519, 406, 'system', '2023-07-26 08:40:17.681031+07', 'system', '2023-07-26 08:40:17.681031+07', 'Xã Quảng Giao', '16519', 'Xã');
INSERT INTO category."Wards" VALUES (16522, 380, 'system', '2023-07-26 08:40:17.679932+07', 'system', '2023-07-26 08:40:17.679932+07', 'Phường Quảng Phú', '16522', 'Phường');
INSERT INTO category."Wards" VALUES (16525, 380, 'system', '2023-07-26 08:40:17.679934+07', 'system', '2023-07-26 08:40:17.679935+07', 'Phường Quảng Tâm', '16525', 'Phường');
INSERT INTO category."Wards" VALUES (16528, 382, 'system', '2023-07-26 08:40:17.67997+07', 'system', '2023-07-26 08:40:17.67997+07', 'Phường Quảng Thọ', '16528', 'Phường');
INSERT INTO category."Wards" VALUES (16531, 382, 'system', '2023-07-26 08:40:17.679972+07', 'system', '2023-07-26 08:40:17.679972+07', 'Phường Quảng Châu', '16531', 'Phường');
INSERT INTO category."Wards" VALUES (16534, 382, 'system', '2023-07-26 08:40:17.679974+07', 'system', '2023-07-26 08:40:17.679974+07', 'Phường Quảng Vinh', '16534', 'Phường');
INSERT INTO category."Wards" VALUES (16537, 382, 'system', '2023-07-26 08:40:17.679976+07', 'system', '2023-07-26 08:40:17.679976+07', 'Xã Quảng Đại', '16537', 'Xã');
INSERT INTO category."Wards" VALUES (16540, 406, 'system', '2023-07-26 08:40:17.681033+07', 'system', '2023-07-26 08:40:17.681033+07', 'Xã Quảng Hải', '16540', 'Xã');
INSERT INTO category."Wards" VALUES (16543, 406, 'system', '2023-07-26 08:40:17.681035+07', 'system', '2023-07-26 08:40:17.681035+07', 'Xã Quảng Lưu', '16543', 'Xã');
INSERT INTO category."Wards" VALUES (16546, 406, 'system', '2023-07-26 08:40:17.681037+07', 'system', '2023-07-26 08:40:17.681037+07', 'Xã Quảng Lộc', '16546', 'Xã');
INSERT INTO category."Wards" VALUES (16549, 406, 'system', '2023-07-26 08:40:17.681039+07', 'system', '2023-07-26 08:40:17.681039+07', 'Xã Tiên Trang', '16549', 'Xã');
INSERT INTO category."Wards" VALUES (16552, 406, 'system', '2023-07-26 08:40:17.681041+07', 'system', '2023-07-26 08:40:17.681041+07', 'Xã Quảng Nham', '16552', 'Xã');
INSERT INTO category."Wards" VALUES (16555, 406, 'system', '2023-07-26 08:40:17.681043+07', 'system', '2023-07-26 08:40:17.681043+07', 'Xã Quảng Thạch', '16555', 'Xã');
INSERT INTO category."Wards" VALUES (16558, 406, 'system', '2023-07-26 08:40:17.681045+07', 'system', '2023-07-26 08:40:17.681046+07', 'Xã Quảng Thái', '16558', 'Xã');
INSERT INTO category."Wards" VALUES (16561, 407, 'system', '2023-07-26 08:40:17.681048+07', 'system', '2023-07-26 08:40:17.681048+07', 'Phường Hải Hòa', '16561', 'Phường');
INSERT INTO category."Wards" VALUES (16564, 407, 'system', '2023-07-26 08:40:17.68105+07', 'system', '2023-07-26 08:40:17.68105+07', 'Phường Hải Châu', '16564', 'Phường');
INSERT INTO category."Wards" VALUES (16567, 407, 'system', '2023-07-26 08:40:17.681052+07', 'system', '2023-07-26 08:40:17.681052+07', 'Xã Thanh Thủy', '16567', 'Xã');
INSERT INTO category."Wards" VALUES (16570, 407, 'system', '2023-07-26 08:40:17.681054+07', 'system', '2023-07-26 08:40:17.681055+07', 'Xã Thanh Sơn', '16570', 'Xã');
INSERT INTO category."Wards" VALUES (16576, 407, 'system', '2023-07-26 08:40:17.681057+07', 'system', '2023-07-26 08:40:17.681057+07', 'Phường Hải Ninh', '16576', 'Phường');
INSERT INTO category."Wards" VALUES (16579, 407, 'system', '2023-07-26 08:40:17.681059+07', 'system', '2023-07-26 08:40:17.681059+07', 'Xã Anh Sơn', '16579', 'Xã');
INSERT INTO category."Wards" VALUES (16582, 407, 'system', '2023-07-26 08:40:17.681061+07', 'system', '2023-07-26 08:40:17.681061+07', 'Xã Ngọc Lĩnh', '16582', 'Xã');
INSERT INTO category."Wards" VALUES (16585, 407, 'system', '2023-07-26 08:40:17.681063+07', 'system', '2023-07-26 08:40:17.681063+07', 'Phường Hải An', '16585', 'Phường');
INSERT INTO category."Wards" VALUES (16591, 407, 'system', '2023-07-26 08:40:17.681066+07', 'system', '2023-07-26 08:40:17.681066+07', 'Xã Các Sơn', '16591', 'Xã');
INSERT INTO category."Wards" VALUES (16594, 407, 'system', '2023-07-26 08:40:17.681068+07', 'system', '2023-07-26 08:40:17.681068+07', 'Phường Tân Dân', '16594', 'Phường');
INSERT INTO category."Wards" VALUES (16597, 407, 'system', '2023-07-26 08:40:17.68107+07', 'system', '2023-07-26 08:40:17.68107+07', 'Phường Hải Lĩnh', '16597', 'Phường');
INSERT INTO category."Wards" VALUES (16600, 407, 'system', '2023-07-26 08:40:17.681073+07', 'system', '2023-07-26 08:40:17.681073+07', 'Xã Định Hải', '16600', 'Xã');
INSERT INTO category."Wards" VALUES (16603, 407, 'system', '2023-07-26 08:40:17.681075+07', 'system', '2023-07-26 08:40:17.681075+07', 'Xã Phú Sơn', '16603', 'Xã');
INSERT INTO category."Wards" VALUES (16606, 407, 'system', '2023-07-26 08:40:17.681077+07', 'system', '2023-07-26 08:40:17.681077+07', 'Phường Ninh Hải', '16606', 'Phường');
INSERT INTO category."Wards" VALUES (16609, 407, 'system', '2023-07-26 08:40:17.681079+07', 'system', '2023-07-26 08:40:17.681079+07', 'Phường Nguyên Bình', '16609', 'Phường');
INSERT INTO category."Wards" VALUES (16612, 407, 'system', '2023-07-26 08:40:17.681082+07', 'system', '2023-07-26 08:40:17.681082+07', 'Xã Hải Nhân', '16612', 'Xã');
INSERT INTO category."Wards" VALUES (16618, 407, 'system', '2023-07-26 08:40:17.681084+07', 'system', '2023-07-26 08:40:17.681084+07', 'Phường Bình Minh', '16618', 'Phường');
INSERT INTO category."Wards" VALUES (16621, 407, 'system', '2023-07-26 08:40:17.681086+07', 'system', '2023-07-26 08:40:17.681086+07', 'Phường Hải Thanh', '16621', 'Phường');
INSERT INTO category."Wards" VALUES (16624, 407, 'system', '2023-07-26 08:40:17.681088+07', 'system', '2023-07-26 08:40:17.681088+07', 'Xã Phú Lâm', '16624', 'Xã');
INSERT INTO category."Wards" VALUES (16627, 407, 'system', '2023-07-26 08:40:17.68109+07', 'system', '2023-07-26 08:40:17.68109+07', 'Phường Xuân Lâm', '16627', 'Phường');
INSERT INTO category."Wards" VALUES (16630, 407, 'system', '2023-07-26 08:40:17.681093+07', 'system', '2023-07-26 08:40:17.681093+07', 'Phường Trúc Lâm', '16630', 'Phường');
INSERT INTO category."Wards" VALUES (16633, 407, 'system', '2023-07-26 08:40:17.681095+07', 'system', '2023-07-26 08:40:17.681095+07', 'Phường Hải Bình', '16633', 'Phường');
INSERT INTO category."Wards" VALUES (16636, 407, 'system', '2023-07-26 08:40:17.681097+07', 'system', '2023-07-26 08:40:17.681097+07', 'Xã Tân Trường', '16636', 'Xã');
INSERT INTO category."Wards" VALUES (16639, 407, 'system', '2023-07-26 08:40:17.681099+07', 'system', '2023-07-26 08:40:17.6811+07', 'Xã Tùng Lâm', '16639', 'Xã');
INSERT INTO category."Wards" VALUES (16642, 407, 'system', '2023-07-26 08:40:17.681102+07', 'system', '2023-07-26 08:40:17.681102+07', 'Phường Tĩnh Hải', '16642', 'Phường');
INSERT INTO category."Wards" VALUES (16645, 407, 'system', '2023-07-26 08:40:17.681105+07', 'system', '2023-07-26 08:40:17.681105+07', 'Phường Mai Lâm', '16645', 'Phường');
INSERT INTO category."Wards" VALUES (16648, 407, 'system', '2023-07-26 08:40:17.681107+07', 'system', '2023-07-26 08:40:17.681107+07', 'Xã Trường Lâm', '16648', 'Xã');
INSERT INTO category."Wards" VALUES (16651, 407, 'system', '2023-07-26 08:40:17.681109+07', 'system', '2023-07-26 08:40:17.681109+07', 'Xã Hải Yến', '16651', 'Xã');
INSERT INTO category."Wards" VALUES (16654, 407, 'system', '2023-07-26 08:40:17.681111+07', 'system', '2023-07-26 08:40:17.681111+07', 'Phường Hải Thượng', '16654', 'Phường');
INSERT INTO category."Wards" VALUES (16657, 407, 'system', '2023-07-26 08:40:17.681114+07', 'system', '2023-07-26 08:40:17.681114+07', 'Xã Nghi Sơn', '16657', 'Xã');
INSERT INTO category."Wards" VALUES (16660, 407, 'system', '2023-07-26 08:40:17.681116+07', 'system', '2023-07-26 08:40:17.681116+07', 'Xã Hải Hà', '16660', 'Xã');
INSERT INTO category."Wards" VALUES (16663, 412, 'system', '2023-07-26 08:40:17.681118+07', 'system', '2023-07-26 08:40:17.681118+07', 'Phường Đông Vĩnh', '16663', 'Phường');
INSERT INTO category."Wards" VALUES (16666, 412, 'system', '2023-07-26 08:40:17.68112+07', 'system', '2023-07-26 08:40:17.68112+07', 'Phường Hà Huy Tập', '16666', 'Phường');
INSERT INTO category."Wards" VALUES (16669, 412, 'system', '2023-07-26 08:40:17.681122+07', 'system', '2023-07-26 08:40:17.681123+07', 'Phường Lê Lợi', '16669', 'Phường');
INSERT INTO category."Wards" VALUES (16670, 412, 'system', '2023-07-26 08:40:17.681125+07', 'system', '2023-07-26 08:40:17.681125+07', 'Phường Quán Bàu', '16670', 'Phường');
INSERT INTO category."Wards" VALUES (16672, 412, 'system', '2023-07-26 08:40:17.681127+07', 'system', '2023-07-26 08:40:17.681127+07', 'Phường Hưng Bình', '16672', 'Phường');
INSERT INTO category."Wards" VALUES (16673, 412, 'system', '2023-07-26 08:40:17.681129+07', 'system', '2023-07-26 08:40:17.681129+07', 'Phường Hưng Phúc', '16673', 'Phường');
INSERT INTO category."Wards" VALUES (16675, 412, 'system', '2023-07-26 08:40:17.681132+07', 'system', '2023-07-26 08:40:17.681132+07', 'Phường Hưng Dũng', '16675', 'Phường');
INSERT INTO category."Wards" VALUES (16678, 412, 'system', '2023-07-26 08:40:17.681134+07', 'system', '2023-07-26 08:40:17.681134+07', 'Phường Cửa Nam', '16678', 'Phường');
INSERT INTO category."Wards" VALUES (16681, 412, 'system', '2023-07-26 08:40:17.681136+07', 'system', '2023-07-26 08:40:17.681136+07', 'Phường Quang Trung', '16681', 'Phường');
INSERT INTO category."Wards" VALUES (16684, 412, 'system', '2023-07-26 08:40:17.681138+07', 'system', '2023-07-26 08:40:17.681138+07', 'Phường Đội Cung', '16684', 'Phường');
INSERT INTO category."Wards" VALUES (16687, 412, 'system', '2023-07-26 08:40:17.681141+07', 'system', '2023-07-26 08:40:17.681141+07', 'Phường Lê Mao', '16687', 'Phường');
INSERT INTO category."Wards" VALUES (16690, 412, 'system', '2023-07-26 08:40:17.681143+07', 'system', '2023-07-26 08:40:17.681143+07', 'Phường Trường Thi', '16690', 'Phường');
INSERT INTO category."Wards" VALUES (16693, 412, 'system', '2023-07-26 08:40:17.681145+07', 'system', '2023-07-26 08:40:17.681145+07', 'Phường Bến Thủy', '16693', 'Phường');
INSERT INTO category."Wards" VALUES (16696, 412, 'system', '2023-07-26 08:40:17.681148+07', 'system', '2023-07-26 08:40:17.681148+07', 'Phường Hồng Sơn', '16696', 'Phường');
INSERT INTO category."Wards" VALUES (16699, 412, 'system', '2023-07-26 08:40:17.68115+07', 'system', '2023-07-26 08:40:17.68115+07', 'Phường Trung Đô', '16699', 'Phường');
INSERT INTO category."Wards" VALUES (16702, 412, 'system', '2023-07-26 08:40:17.681152+07', 'system', '2023-07-26 08:40:17.681152+07', 'Xã Nghi Phú', '16702', 'Xã');
INSERT INTO category."Wards" VALUES (16705, 412, 'system', '2023-07-26 08:40:17.681154+07', 'system', '2023-07-26 08:40:17.681154+07', 'Xã Hưng Đông', '16705', 'Xã');
INSERT INTO category."Wards" VALUES (16708, 412, 'system', '2023-07-26 08:40:17.681157+07', 'system', '2023-07-26 08:40:17.681157+07', 'Xã Hưng Lộc', '16708', 'Xã');
INSERT INTO category."Wards" VALUES (16711, 412, 'system', '2023-07-26 08:40:17.681159+07', 'system', '2023-07-26 08:40:17.681159+07', 'Xã Hưng Hòa', '16711', 'Xã');
INSERT INTO category."Wards" VALUES (16714, 412, 'system', '2023-07-26 08:40:17.681161+07', 'system', '2023-07-26 08:40:17.681161+07', 'Phường Vinh Tân', '16714', 'Phường');
INSERT INTO category."Wards" VALUES (16717, 413, 'system', '2023-07-26 08:40:17.681174+07', 'system', '2023-07-26 08:40:17.681174+07', 'Phường Nghi Thuỷ', '16717', 'Phường');
INSERT INTO category."Wards" VALUES (16720, 413, 'system', '2023-07-26 08:40:17.681176+07', 'system', '2023-07-26 08:40:17.681176+07', 'Phường Nghi Tân', '16720', 'Phường');
INSERT INTO category."Wards" VALUES (16723, 413, 'system', '2023-07-26 08:40:17.681179+07', 'system', '2023-07-26 08:40:17.681179+07', 'Phường Thu Thuỷ', '16723', 'Phường');
INSERT INTO category."Wards" VALUES (16726, 413, 'system', '2023-07-26 08:40:17.681181+07', 'system', '2023-07-26 08:40:17.681181+07', 'Phường Nghi Hòa', '16726', 'Phường');
INSERT INTO category."Wards" VALUES (16729, 413, 'system', '2023-07-26 08:40:17.681184+07', 'system', '2023-07-26 08:40:17.681184+07', 'Phường Nghi Hải', '16729', 'Phường');
INSERT INTO category."Wards" VALUES (16732, 413, 'system', '2023-07-26 08:40:17.681186+07', 'system', '2023-07-26 08:40:17.681186+07', 'Phường Nghi Hương', '16732', 'Phường');
INSERT INTO category."Wards" VALUES (16735, 413, 'system', '2023-07-26 08:40:17.681189+07', 'system', '2023-07-26 08:40:17.681189+07', 'Phường Nghi Thu', '16735', 'Phường');
INSERT INTO category."Wards" VALUES (16738, 415, 'system', '2023-07-26 08:40:17.68122+07', 'system', '2023-07-26 08:40:17.68122+07', 'Thị trấn Kim Sơn', '16738', 'Thị trấn');
INSERT INTO category."Wards" VALUES (16741, 415, 'system', '2023-07-26 08:40:17.681222+07', 'system', '2023-07-26 08:40:17.681222+07', 'Xã Thông Thụ', '16741', 'Xã');
INSERT INTO category."Wards" VALUES (16744, 415, 'system', '2023-07-26 08:40:17.681225+07', 'system', '2023-07-26 08:40:17.681225+07', 'Xã Đồng Văn', '16744', 'Xã');
INSERT INTO category."Wards" VALUES (16747, 415, 'system', '2023-07-26 08:40:17.681227+07', 'system', '2023-07-26 08:40:17.681227+07', 'Xã Hạnh Dịch', '16747', 'Xã');
INSERT INTO category."Wards" VALUES (16750, 415, 'system', '2023-07-26 08:40:17.681229+07', 'system', '2023-07-26 08:40:17.681229+07', 'Xã Tiền Phong', '16750', 'Xã');
INSERT INTO category."Wards" VALUES (16753, 415, 'system', '2023-07-26 08:40:17.681231+07', 'system', '2023-07-26 08:40:17.681231+07', 'Xã Nậm Giải', '16753', 'Xã');
INSERT INTO category."Wards" VALUES (16756, 415, 'system', '2023-07-26 08:40:17.681233+07', 'system', '2023-07-26 08:40:17.681233+07', 'Xã Tri Lễ', '16756', 'Xã');
INSERT INTO category."Wards" VALUES (16759, 415, 'system', '2023-07-26 08:40:17.681235+07', 'system', '2023-07-26 08:40:17.681236+07', 'Xã Châu Kim', '16759', 'Xã');
INSERT INTO category."Wards" VALUES (16763, 415, 'system', '2023-07-26 08:40:17.681238+07', 'system', '2023-07-26 08:40:17.681238+07', 'Xã Mường Nọc', '16763', 'Xã');
INSERT INTO category."Wards" VALUES (16765, 415, 'system', '2023-07-26 08:40:17.68124+07', 'system', '2023-07-26 08:40:17.68124+07', 'Xã Châu Thôn', '16765', 'Xã');
INSERT INTO category."Wards" VALUES (16768, 415, 'system', '2023-07-26 08:40:17.681242+07', 'system', '2023-07-26 08:40:17.681242+07', 'Xã Nậm Nhoóng', '16768', 'Xã');
INSERT INTO category."Wards" VALUES (16771, 415, 'system', '2023-07-26 08:40:17.681244+07', 'system', '2023-07-26 08:40:17.681244+07', 'Xã Quang Phong', '16771', 'Xã');
INSERT INTO category."Wards" VALUES (16774, 415, 'system', '2023-07-26 08:40:17.681246+07', 'system', '2023-07-26 08:40:17.681246+07', 'Xã Căm Muộn', '16774', 'Xã');
INSERT INTO category."Wards" VALUES (16777, 416, 'system', '2023-07-26 08:40:17.681248+07', 'system', '2023-07-26 08:40:17.681248+07', 'Thị trấn Tân Lạc', '16777', 'Thị trấn');
INSERT INTO category."Wards" VALUES (16780, 416, 'system', '2023-07-26 08:40:17.681251+07', 'system', '2023-07-26 08:40:17.681251+07', 'Xã Châu Bính', '16780', 'Xã');
INSERT INTO category."Wards" VALUES (16783, 416, 'system', '2023-07-26 08:40:17.681253+07', 'system', '2023-07-26 08:40:17.681253+07', 'Xã Châu Thuận', '16783', 'Xã');
INSERT INTO category."Wards" VALUES (16786, 416, 'system', '2023-07-26 08:40:17.681255+07', 'system', '2023-07-26 08:40:17.681255+07', 'Xã Châu Hội', '16786', 'Xã');
INSERT INTO category."Wards" VALUES (16789, 416, 'system', '2023-07-26 08:40:17.681257+07', 'system', '2023-07-26 08:40:17.681257+07', 'Xã Châu Nga', '16789', 'Xã');
INSERT INTO category."Wards" VALUES (16792, 416, 'system', '2023-07-26 08:40:17.681259+07', 'system', '2023-07-26 08:40:17.681259+07', 'Xã Châu Tiến', '16792', 'Xã');
INSERT INTO category."Wards" VALUES (16795, 416, 'system', '2023-07-26 08:40:17.681261+07', 'system', '2023-07-26 08:40:17.681261+07', 'Xã Châu Hạnh', '16795', 'Xã');
INSERT INTO category."Wards" VALUES (16798, 416, 'system', '2023-07-26 08:40:17.681263+07', 'system', '2023-07-26 08:40:17.681263+07', 'Xã Châu Thắng', '16798', 'Xã');
INSERT INTO category."Wards" VALUES (16801, 416, 'system', '2023-07-26 08:40:17.681266+07', 'system', '2023-07-26 08:40:17.681266+07', 'Xã Châu Phong', '16801', 'Xã');
INSERT INTO category."Wards" VALUES (16804, 416, 'system', '2023-07-26 08:40:17.681268+07', 'system', '2023-07-26 08:40:17.681268+07', 'Xã Châu Bình', '16804', 'Xã');
INSERT INTO category."Wards" VALUES (16807, 416, 'system', '2023-07-26 08:40:17.68127+07', 'system', '2023-07-26 08:40:17.681271+07', 'Xã Châu Hoàn', '16807', 'Xã');
INSERT INTO category."Wards" VALUES (16810, 416, 'system', '2023-07-26 08:40:17.681273+07', 'system', '2023-07-26 08:40:17.681273+07', 'Xã Diên Lãm', '16810', 'Xã');
INSERT INTO category."Wards" VALUES (16813, 417, 'system', '2023-07-26 08:40:17.681275+07', 'system', '2023-07-26 08:40:17.681275+07', 'Thị trấn Mường Xén', '16813', 'Thị trấn');
INSERT INTO category."Wards" VALUES (16816, 417, 'system', '2023-07-26 08:40:17.681277+07', 'system', '2023-07-26 08:40:17.681277+07', 'Xã Mỹ Lý', '16816', 'Xã');
INSERT INTO category."Wards" VALUES (16819, 417, 'system', '2023-07-26 08:40:17.681279+07', 'system', '2023-07-26 08:40:17.681279+07', 'Xã Bắc Lý', '16819', 'Xã');
INSERT INTO category."Wards" VALUES (16822, 417, 'system', '2023-07-26 08:40:17.681281+07', 'system', '2023-07-26 08:40:17.681281+07', 'Xã Keng Đu', '16822', 'Xã');
INSERT INTO category."Wards" VALUES (16825, 417, 'system', '2023-07-26 08:40:17.681283+07', 'system', '2023-07-26 08:40:17.681283+07', 'Xã Đoọc Mạy', '16825', 'Xã');
INSERT INTO category."Wards" VALUES (16828, 417, 'system', '2023-07-26 08:40:17.681286+07', 'system', '2023-07-26 08:40:17.681286+07', 'Xã Huồi Tụ', '16828', 'Xã');
INSERT INTO category."Wards" VALUES (16831, 417, 'system', '2023-07-26 08:40:17.681288+07', 'system', '2023-07-26 08:40:17.681288+07', 'Xã Mường Lống', '16831', 'Xã');
INSERT INTO category."Wards" VALUES (16834, 417, 'system', '2023-07-26 08:40:17.68129+07', 'system', '2023-07-26 08:40:17.68129+07', 'Xã Na Loi', '16834', 'Xã');
INSERT INTO category."Wards" VALUES (16837, 417, 'system', '2023-07-26 08:40:17.681292+07', 'system', '2023-07-26 08:40:17.681292+07', 'Xã Nậm Cắn', '16837', 'Xã');
INSERT INTO category."Wards" VALUES (16840, 417, 'system', '2023-07-26 08:40:17.681294+07', 'system', '2023-07-26 08:40:17.681294+07', 'Xã Bảo Nam', '16840', 'Xã');
INSERT INTO category."Wards" VALUES (16843, 417, 'system', '2023-07-26 08:40:17.681296+07', 'system', '2023-07-26 08:40:17.681296+07', 'Xã Phà Đánh', '16843', 'Xã');
INSERT INTO category."Wards" VALUES (16846, 417, 'system', '2023-07-26 08:40:17.681298+07', 'system', '2023-07-26 08:40:17.681298+07', 'Xã Bảo Thắng', '16846', 'Xã');
INSERT INTO category."Wards" VALUES (16849, 417, 'system', '2023-07-26 08:40:17.681301+07', 'system', '2023-07-26 08:40:17.681301+07', 'Xã Hữu Lập', '16849', 'Xã');
INSERT INTO category."Wards" VALUES (16852, 417, 'system', '2023-07-26 08:40:17.681303+07', 'system', '2023-07-26 08:40:17.681303+07', 'Xã Tà Cạ', '16852', 'Xã');
INSERT INTO category."Wards" VALUES (16855, 417, 'system', '2023-07-26 08:40:17.681305+07', 'system', '2023-07-26 08:40:17.681305+07', 'Xã Chiêu Lưu', '16855', 'Xã');
INSERT INTO category."Wards" VALUES (16858, 417, 'system', '2023-07-26 08:40:17.681307+07', 'system', '2023-07-26 08:40:17.681307+07', 'Xã Mường Típ', '16858', 'Xã');
INSERT INTO category."Wards" VALUES (16861, 417, 'system', '2023-07-26 08:40:17.681309+07', 'system', '2023-07-26 08:40:17.681309+07', 'Xã Hữu Kiệm', '16861', 'Xã');
INSERT INTO category."Wards" VALUES (16864, 417, 'system', '2023-07-26 08:40:17.681311+07', 'system', '2023-07-26 08:40:17.681311+07', 'Xã Tây Sơn', '16864', 'Xã');
INSERT INTO category."Wards" VALUES (16867, 417, 'system', '2023-07-26 08:40:17.681313+07', 'system', '2023-07-26 08:40:17.681313+07', 'Xã Mường Ải', '16867', 'Xã');
INSERT INTO category."Wards" VALUES (16870, 417, 'system', '2023-07-26 08:40:17.681315+07', 'system', '2023-07-26 08:40:17.681315+07', 'Xã Na Ngoi', '16870', 'Xã');
INSERT INTO category."Wards" VALUES (16873, 417, 'system', '2023-07-26 08:40:17.681317+07', 'system', '2023-07-26 08:40:17.681317+07', 'Xã Nậm Càn', '16873', 'Xã');
INSERT INTO category."Wards" VALUES (16876, 418, 'system', '2023-07-26 08:40:17.68132+07', 'system', '2023-07-26 08:40:17.68132+07', 'Thị trấn Thạch Giám', '16876', 'Thị trấn');
INSERT INTO category."Wards" VALUES (16879, 418, 'system', '2023-07-26 08:40:17.681322+07', 'system', '2023-07-26 08:40:17.681322+07', 'Xã Mai Sơn', '16879', 'Xã');
INSERT INTO category."Wards" VALUES (16882, 418, 'system', '2023-07-26 08:40:17.681324+07', 'system', '2023-07-26 08:40:17.681324+07', 'Xã Nhôn Mai', '16882', 'Xã');
INSERT INTO category."Wards" VALUES (16885, 418, 'system', '2023-07-26 08:40:17.681326+07', 'system', '2023-07-26 08:40:17.681326+07', 'Xã Hữu Khuông', '16885', 'Xã');
INSERT INTO category."Wards" VALUES (16900, 418, 'system', '2023-07-26 08:40:17.681329+07', 'system', '2023-07-26 08:40:17.681329+07', 'Xã Yên Tĩnh', '16900', 'Xã');
INSERT INTO category."Wards" VALUES (16903, 418, 'system', '2023-07-26 08:40:17.681331+07', 'system', '2023-07-26 08:40:17.681331+07', 'Xã Nga My', '16903', 'Xã');
INSERT INTO category."Wards" VALUES (16904, 418, 'system', '2023-07-26 08:40:17.681333+07', 'system', '2023-07-26 08:40:17.681333+07', 'Xã Xiêng My', '16904', 'Xã');
INSERT INTO category."Wards" VALUES (16906, 418, 'system', '2023-07-26 08:40:17.681335+07', 'system', '2023-07-26 08:40:17.681335+07', 'Xã Lưỡng Minh', '16906', 'Xã');
INSERT INTO category."Wards" VALUES (16909, 418, 'system', '2023-07-26 08:40:17.681337+07', 'system', '2023-07-26 08:40:17.681337+07', 'Xã Yên Hòa', '16909', 'Xã');
INSERT INTO category."Wards" VALUES (16912, 418, 'system', '2023-07-26 08:40:17.681339+07', 'system', '2023-07-26 08:40:17.681339+07', 'Xã Yên Na', '16912', 'Xã');
INSERT INTO category."Wards" VALUES (16915, 418, 'system', '2023-07-26 08:40:17.681341+07', 'system', '2023-07-26 08:40:17.681341+07', 'Xã Lưu Kiền', '16915', 'Xã');
INSERT INTO category."Wards" VALUES (16921, 418, 'system', '2023-07-26 08:40:17.681343+07', 'system', '2023-07-26 08:40:17.681343+07', 'Xã Xá Lượng', '16921', 'Xã');
INSERT INTO category."Wards" VALUES (16924, 418, 'system', '2023-07-26 08:40:17.681345+07', 'system', '2023-07-26 08:40:17.681345+07', 'Xã Tam Thái', '16924', 'Xã');
INSERT INTO category."Wards" VALUES (16927, 418, 'system', '2023-07-26 08:40:17.681347+07', 'system', '2023-07-26 08:40:17.681347+07', 'Xã Tam Đình', '16927', 'Xã');
INSERT INTO category."Wards" VALUES (16930, 418, 'system', '2023-07-26 08:40:17.68135+07', 'system', '2023-07-26 08:40:17.68135+07', 'Xã Yên Thắng', '16930', 'Xã');
INSERT INTO category."Wards" VALUES (16933, 418, 'system', '2023-07-26 08:40:17.681352+07', 'system', '2023-07-26 08:40:17.681352+07', 'Xã Tam Quang', '16933', 'Xã');
INSERT INTO category."Wards" VALUES (16936, 418, 'system', '2023-07-26 08:40:17.681354+07', 'system', '2023-07-26 08:40:17.681355+07', 'Xã Tam Hợp', '16936', 'Xã');
INSERT INTO category."Wards" VALUES (16939, 414, 'system', '2023-07-26 08:40:17.681191+07', 'system', '2023-07-26 08:40:17.681191+07', 'Phường Hoà Hiếu', '16939', 'Phường');
INSERT INTO category."Wards" VALUES (16941, 419, 'system', '2023-07-26 08:40:17.681356+07', 'system', '2023-07-26 08:40:17.681357+07', 'Thị trấn Nghĩa Đàn', '16941', 'Thị trấn');
INSERT INTO category."Wards" VALUES (16942, 419, 'system', '2023-07-26 08:40:17.681359+07', 'system', '2023-07-26 08:40:17.681359+07', 'Xã Nghĩa Mai', '16942', 'Xã');
INSERT INTO category."Wards" VALUES (16945, 419, 'system', '2023-07-26 08:40:17.681361+07', 'system', '2023-07-26 08:40:17.681361+07', 'Xã Nghĩa Yên', '16945', 'Xã');
INSERT INTO category."Wards" VALUES (16948, 419, 'system', '2023-07-26 08:40:17.681363+07', 'system', '2023-07-26 08:40:17.681363+07', 'Xã Nghĩa Lạc', '16948', 'Xã');
INSERT INTO category."Wards" VALUES (16951, 419, 'system', '2023-07-26 08:40:17.681365+07', 'system', '2023-07-26 08:40:17.681365+07', 'Xã Nghĩa Lâm', '16951', 'Xã');
INSERT INTO category."Wards" VALUES (16954, 419, 'system', '2023-07-26 08:40:17.681367+07', 'system', '2023-07-26 08:40:17.681368+07', 'Xã Nghĩa Sơn', '16954', 'Xã');
INSERT INTO category."Wards" VALUES (16957, 419, 'system', '2023-07-26 08:40:17.68137+07', 'system', '2023-07-26 08:40:17.68137+07', 'Xã Nghĩa Lợi', '16957', 'Xã');
INSERT INTO category."Wards" VALUES (16960, 419, 'system', '2023-07-26 08:40:17.681372+07', 'system', '2023-07-26 08:40:17.681372+07', 'Xã Nghĩa Bình', '16960', 'Xã');
INSERT INTO category."Wards" VALUES (16963, 419, 'system', '2023-07-26 08:40:17.681374+07', 'system', '2023-07-26 08:40:17.681374+07', 'Xã Nghĩa Thọ', '16963', 'Xã');
INSERT INTO category."Wards" VALUES (16966, 419, 'system', '2023-07-26 08:40:17.681376+07', 'system', '2023-07-26 08:40:17.681376+07', 'Xã Nghĩa Minh', '16966', 'Xã');
INSERT INTO category."Wards" VALUES (16969, 419, 'system', '2023-07-26 08:40:17.681378+07', 'system', '2023-07-26 08:40:17.681378+07', 'Xã Nghĩa Phú', '16969', 'Xã');
INSERT INTO category."Wards" VALUES (16972, 419, 'system', '2023-07-26 08:40:17.68138+07', 'system', '2023-07-26 08:40:17.68138+07', 'Xã Nghĩa Hưng', '16972', 'Xã');
INSERT INTO category."Wards" VALUES (16975, 419, 'system', '2023-07-26 08:40:17.681382+07', 'system', '2023-07-26 08:40:17.681382+07', 'Xã Nghĩa Hồng', '16975', 'Xã');
INSERT INTO category."Wards" VALUES (16978, 419, 'system', '2023-07-26 08:40:17.681385+07', 'system', '2023-07-26 08:40:17.681385+07', 'Xã Nghĩa Thịnh', '16978', 'Xã');
INSERT INTO category."Wards" VALUES (16981, 419, 'system', '2023-07-26 08:40:17.681387+07', 'system', '2023-07-26 08:40:17.681387+07', 'Xã Nghĩa Trung', '16981', 'Xã');
INSERT INTO category."Wards" VALUES (16984, 419, 'system', '2023-07-26 08:40:17.681389+07', 'system', '2023-07-26 08:40:17.681389+07', 'Xã Nghĩa Hội', '16984', 'Xã');
INSERT INTO category."Wards" VALUES (16987, 419, 'system', '2023-07-26 08:40:17.681391+07', 'system', '2023-07-26 08:40:17.681391+07', 'Xã Nghĩa Thành', '16987', 'Xã');
INSERT INTO category."Wards" VALUES (16993, 414, 'system', '2023-07-26 08:40:17.681202+07', 'system', '2023-07-26 08:40:17.681202+07', 'Phường Quang Phong', '16993', 'Phường');
INSERT INTO category."Wards" VALUES (16994, 414, 'system', '2023-07-26 08:40:17.681204+07', 'system', '2023-07-26 08:40:17.681204+07', 'Phường Quang Tiến', '16994', 'Phường');
INSERT INTO category."Wards" VALUES (16996, 419, 'system', '2023-07-26 08:40:17.681393+07', 'system', '2023-07-26 08:40:17.681393+07', 'Xã Nghĩa Hiếu', '16996', 'Xã');
INSERT INTO category."Wards" VALUES (17003, 414, 'system', '2023-07-26 08:40:17.681207+07', 'system', '2023-07-26 08:40:17.681207+07', 'Phường Long Sơn', '17003', 'Phường');
INSERT INTO category."Wards" VALUES (17005, 414, 'system', '2023-07-26 08:40:17.681209+07', 'system', '2023-07-26 08:40:17.681209+07', 'Xã Nghĩa Tiến', '17005', 'Xã');
INSERT INTO category."Wards" VALUES (17008, 414, 'system', '2023-07-26 08:40:17.681211+07', 'system', '2023-07-26 08:40:17.681211+07', 'Xã Nghĩa Mỹ', '17008', 'Xã');
INSERT INTO category."Wards" VALUES (17011, 414, 'system', '2023-07-26 08:40:17.681213+07', 'system', '2023-07-26 08:40:17.681213+07', 'Xã Tây Hiếu', '17011', 'Xã');
INSERT INTO category."Wards" VALUES (17014, 414, 'system', '2023-07-26 08:40:17.681216+07', 'system', '2023-07-26 08:40:17.681216+07', 'Xã Nghĩa Thuận', '17014', 'Xã');
INSERT INTO category."Wards" VALUES (17017, 414, 'system', '2023-07-26 08:40:17.681218+07', 'system', '2023-07-26 08:40:17.681218+07', 'Xã Đông Hiếu', '17017', 'Xã');
INSERT INTO category."Wards" VALUES (17020, 419, 'system', '2023-07-26 08:40:17.681395+07', 'system', '2023-07-26 08:40:17.681395+07', 'Xã Nghĩa Đức', '17020', 'Xã');
INSERT INTO category."Wards" VALUES (17023, 419, 'system', '2023-07-26 08:40:17.681398+07', 'system', '2023-07-26 08:40:17.681398+07', 'Xã Nghĩa An', '17023', 'Xã');
INSERT INTO category."Wards" VALUES (17026, 419, 'system', '2023-07-26 08:40:17.6814+07', 'system', '2023-07-26 08:40:17.6814+07', 'Xã Nghĩa Long', '17026', 'Xã');
INSERT INTO category."Wards" VALUES (17029, 419, 'system', '2023-07-26 08:40:17.681402+07', 'system', '2023-07-26 08:40:17.681402+07', 'Xã Nghĩa Lộc', '17029', 'Xã');
INSERT INTO category."Wards" VALUES (17032, 419, 'system', '2023-07-26 08:40:17.681404+07', 'system', '2023-07-26 08:40:17.681404+07', 'Xã Nghĩa Khánh', '17032', 'Xã');
INSERT INTO category."Wards" VALUES (17035, 420, 'system', '2023-07-26 08:40:17.681406+07', 'system', '2023-07-26 08:40:17.681406+07', 'Thị trấn Quỳ Hợp', '17035', 'Thị trấn');
INSERT INTO category."Wards" VALUES (17038, 420, 'system', '2023-07-26 08:40:17.681408+07', 'system', '2023-07-26 08:40:17.681408+07', 'Xã Yên Hợp', '17038', 'Xã');
INSERT INTO category."Wards" VALUES (17041, 420, 'system', '2023-07-26 08:40:17.681411+07', 'system', '2023-07-26 08:40:17.681411+07', 'Xã Châu Tiến', '17041', 'Xã');
INSERT INTO category."Wards" VALUES (17044, 420, 'system', '2023-07-26 08:40:17.681413+07', 'system', '2023-07-26 08:40:17.681413+07', 'Xã Châu Hồng', '17044', 'Xã');
INSERT INTO category."Wards" VALUES (17047, 420, 'system', '2023-07-26 08:40:17.681415+07', 'system', '2023-07-26 08:40:17.681415+07', 'Xã Đồng Hợp', '17047', 'Xã');
INSERT INTO category."Wards" VALUES (17050, 420, 'system', '2023-07-26 08:40:17.681417+07', 'system', '2023-07-26 08:40:17.681417+07', 'Xã Châu Thành', '17050', 'Xã');
INSERT INTO category."Wards" VALUES (17053, 420, 'system', '2023-07-26 08:40:17.681419+07', 'system', '2023-07-26 08:40:17.681419+07', 'Xã Liên Hợp', '17053', 'Xã');
INSERT INTO category."Wards" VALUES (17056, 420, 'system', '2023-07-26 08:40:17.681421+07', 'system', '2023-07-26 08:40:17.681421+07', 'Xã Châu Lộc', '17056', 'Xã');
INSERT INTO category."Wards" VALUES (17059, 420, 'system', '2023-07-26 08:40:17.681423+07', 'system', '2023-07-26 08:40:17.681423+07', 'Xã Tam Hợp', '17059', 'Xã');
INSERT INTO category."Wards" VALUES (17062, 420, 'system', '2023-07-26 08:40:17.681425+07', 'system', '2023-07-26 08:40:17.681426+07', 'Xã Châu Cường', '17062', 'Xã');
INSERT INTO category."Wards" VALUES (17065, 420, 'system', '2023-07-26 08:40:17.681428+07', 'system', '2023-07-26 08:40:17.681428+07', 'Xã Châu Quang', '17065', 'Xã');
INSERT INTO category."Wards" VALUES (17068, 420, 'system', '2023-07-26 08:40:17.681431+07', 'system', '2023-07-26 08:40:17.681431+07', 'Xã Thọ Hợp', '17068', 'Xã');
INSERT INTO category."Wards" VALUES (17071, 420, 'system', '2023-07-26 08:40:17.681433+07', 'system', '2023-07-26 08:40:17.681433+07', 'Xã Minh Hợp', '17071', 'Xã');
INSERT INTO category."Wards" VALUES (17074, 420, 'system', '2023-07-26 08:40:17.681435+07', 'system', '2023-07-26 08:40:17.681435+07', 'Xã Nghĩa Xuân', '17074', 'Xã');
INSERT INTO category."Wards" VALUES (17077, 420, 'system', '2023-07-26 08:40:17.681437+07', 'system', '2023-07-26 08:40:17.681437+07', 'Xã Châu Thái', '17077', 'Xã');
INSERT INTO category."Wards" VALUES (17080, 420, 'system', '2023-07-26 08:40:17.681439+07', 'system', '2023-07-26 08:40:17.681439+07', 'Xã Châu Đình', '17080', 'Xã');
INSERT INTO category."Wards" VALUES (17083, 420, 'system', '2023-07-26 08:40:17.681441+07', 'system', '2023-07-26 08:40:17.681441+07', 'Xã Văn Lợi', '17083', 'Xã');
INSERT INTO category."Wards" VALUES (17086, 420, 'system', '2023-07-26 08:40:17.681443+07', 'system', '2023-07-26 08:40:17.681443+07', 'Xã Nam Sơn', '17086', 'Xã');
INSERT INTO category."Wards" VALUES (17089, 420, 'system', '2023-07-26 08:40:17.681445+07', 'system', '2023-07-26 08:40:17.681445+07', 'Xã Châu Lý', '17089', 'Xã');
INSERT INTO category."Wards" VALUES (17092, 420, 'system', '2023-07-26 08:40:17.681447+07', 'system', '2023-07-26 08:40:17.681447+07', 'Xã Hạ Sơn', '17092', 'Xã');
INSERT INTO category."Wards" VALUES (17095, 420, 'system', '2023-07-26 08:40:17.681449+07', 'system', '2023-07-26 08:40:17.68145+07', 'Xã Bắc Sơn', '17095', 'Xã');
INSERT INTO category."Wards" VALUES (17098, 421, 'system', '2023-07-26 08:40:17.681452+07', 'system', '2023-07-26 08:40:17.681452+07', 'Thị trấn Cầu Giát', '17098', 'Thị trấn');
INSERT INTO category."Wards" VALUES (17101, 421, 'system', '2023-07-26 08:40:17.681454+07', 'system', '2023-07-26 08:40:17.681454+07', 'Xã Quỳnh Thắng', '17101', 'Xã');
INSERT INTO category."Wards" VALUES (17104, 432, 'system', '2023-07-26 08:40:17.682127+07', 'system', '2023-07-26 08:40:17.682127+07', 'Xã Quỳnh Vinh', '17104', 'Xã');
INSERT INTO category."Wards" VALUES (17107, 432, 'system', '2023-07-26 08:40:17.682129+07', 'system', '2023-07-26 08:40:17.68213+07', 'Xã Quỳnh Lộc', '17107', 'Xã');
INSERT INTO category."Wards" VALUES (17110, 432, 'system', '2023-07-26 08:40:17.682132+07', 'system', '2023-07-26 08:40:17.682132+07', 'Phường Quỳnh Thiện', '17110', 'Phường');
INSERT INTO category."Wards" VALUES (17113, 432, 'system', '2023-07-26 08:40:17.682134+07', 'system', '2023-07-26 08:40:17.682134+07', 'Xã Quỳnh Lập', '17113', 'Xã');
INSERT INTO category."Wards" VALUES (17116, 432, 'system', '2023-07-26 08:40:17.682136+07', 'system', '2023-07-26 08:40:17.682136+07', 'Xã Quỳnh Trang', '17116', 'Xã');
INSERT INTO category."Wards" VALUES (17119, 421, 'system', '2023-07-26 08:40:17.681456+07', 'system', '2023-07-26 08:40:17.681456+07', 'Xã Quỳnh Tân', '17119', 'Xã');
INSERT INTO category."Wards" VALUES (17122, 421, 'system', '2023-07-26 08:40:17.681458+07', 'system', '2023-07-26 08:40:17.681458+07', 'Xã Quỳnh Châu', '17122', 'Xã');
INSERT INTO category."Wards" VALUES (17125, 432, 'system', '2023-07-26 08:40:17.682139+07', 'system', '2023-07-26 08:40:17.682139+07', 'Phường Mai Hùng', '17125', 'Phường');
INSERT INTO category."Wards" VALUES (17128, 432, 'system', '2023-07-26 08:40:17.682141+07', 'system', '2023-07-26 08:40:17.682141+07', 'Phường Quỳnh Dị', '17128', 'Phường');
INSERT INTO category."Wards" VALUES (17131, 432, 'system', '2023-07-26 08:40:17.682143+07', 'system', '2023-07-26 08:40:17.682143+07', 'Phường Quỳnh Xuân', '17131', 'Phường');
INSERT INTO category."Wards" VALUES (17134, 432, 'system', '2023-07-26 08:40:17.682146+07', 'system', '2023-07-26 08:40:17.682146+07', 'Phường Quỳnh Phương', '17134', 'Phường');
INSERT INTO category."Wards" VALUES (17137, 432, 'system', '2023-07-26 08:40:17.682148+07', 'system', '2023-07-26 08:40:17.682148+07', 'Xã Quỳnh Liên', '17137', 'Xã');
INSERT INTO category."Wards" VALUES (17140, 421, 'system', '2023-07-26 08:40:17.681461+07', 'system', '2023-07-26 08:40:17.681461+07', 'Xã Tân Sơn', '17140', 'Xã');
INSERT INTO category."Wards" VALUES (17143, 421, 'system', '2023-07-26 08:40:17.681463+07', 'system', '2023-07-26 08:40:17.681463+07', 'Xã Quỳnh Văn', '17143', 'Xã');
INSERT INTO category."Wards" VALUES (17146, 421, 'system', '2023-07-26 08:40:17.681465+07', 'system', '2023-07-26 08:40:17.681465+07', 'Xã Ngọc Sơn', '17146', 'Xã');
INSERT INTO category."Wards" VALUES (17149, 421, 'system', '2023-07-26 08:40:17.681467+07', 'system', '2023-07-26 08:40:17.681467+07', 'Xã Quỳnh Tam', '17149', 'Xã');
INSERT INTO category."Wards" VALUES (17152, 421, 'system', '2023-07-26 08:40:17.681469+07', 'system', '2023-07-26 08:40:17.681469+07', 'Xã Quỳnh Hoa', '17152', 'Xã');
INSERT INTO category."Wards" VALUES (17155, 421, 'system', '2023-07-26 08:40:17.681471+07', 'system', '2023-07-26 08:40:17.681471+07', 'Xã Quỳnh Thạch', '17155', 'Xã');
INSERT INTO category."Wards" VALUES (17158, 421, 'system', '2023-07-26 08:40:17.681473+07', 'system', '2023-07-26 08:40:17.681473+07', 'Xã Quỳnh Bảng', '17158', 'Xã');
INSERT INTO category."Wards" VALUES (17161, 421, 'system', '2023-07-26 08:40:17.681475+07', 'system', '2023-07-26 08:40:17.681475+07', 'Xã Quỳnh Mỹ', '17161', 'Xã');
INSERT INTO category."Wards" VALUES (17164, 421, 'system', '2023-07-26 08:40:17.681477+07', 'system', '2023-07-26 08:40:17.681477+07', 'Xã Quỳnh Thanh', '17164', 'Xã');
INSERT INTO category."Wards" VALUES (17167, 421, 'system', '2023-07-26 08:40:17.681479+07', 'system', '2023-07-26 08:40:17.68148+07', 'Xã Quỳnh Hậu', '17167', 'Xã');
INSERT INTO category."Wards" VALUES (17170, 421, 'system', '2023-07-26 08:40:17.681482+07', 'system', '2023-07-26 08:40:17.681482+07', 'Xã Quỳnh Lâm', '17170', 'Xã');
INSERT INTO category."Wards" VALUES (17173, 421, 'system', '2023-07-26 08:40:17.681484+07', 'system', '2023-07-26 08:40:17.681484+07', 'Xã Quỳnh Đôi', '17173', 'Xã');
INSERT INTO category."Wards" VALUES (17176, 421, 'system', '2023-07-26 08:40:17.681486+07', 'system', '2023-07-26 08:40:17.681486+07', 'Xã Quỳnh Lương', '17176', 'Xã');
INSERT INTO category."Wards" VALUES (17179, 421, 'system', '2023-07-26 08:40:17.681488+07', 'system', '2023-07-26 08:40:17.681488+07', 'Xã Quỳnh Hồng', '17179', 'Xã');
INSERT INTO category."Wards" VALUES (17182, 421, 'system', '2023-07-26 08:40:17.68149+07', 'system', '2023-07-26 08:40:17.68149+07', 'Xã Quỳnh Yên', '17182', 'Xã');
INSERT INTO category."Wards" VALUES (17185, 421, 'system', '2023-07-26 08:40:17.681492+07', 'system', '2023-07-26 08:40:17.681493+07', 'Xã Quỳnh Bá', '17185', 'Xã');
INSERT INTO category."Wards" VALUES (17188, 421, 'system', '2023-07-26 08:40:17.681495+07', 'system', '2023-07-26 08:40:17.681495+07', 'Xã Quỳnh Minh', '17188', 'Xã');
INSERT INTO category."Wards" VALUES (17191, 421, 'system', '2023-07-26 08:40:17.681497+07', 'system', '2023-07-26 08:40:17.681497+07', 'Xã Quỳnh Diễn', '17191', 'Xã');
INSERT INTO category."Wards" VALUES (17194, 421, 'system', '2023-07-26 08:40:17.681499+07', 'system', '2023-07-26 08:40:17.681499+07', 'Xã Quỳnh Hưng', '17194', 'Xã');
INSERT INTO category."Wards" VALUES (17197, 421, 'system', '2023-07-26 08:40:17.681501+07', 'system', '2023-07-26 08:40:17.681501+07', 'Xã Quỳnh Giang', '17197', 'Xã');
INSERT INTO category."Wards" VALUES (17200, 421, 'system', '2023-07-26 08:40:17.681503+07', 'system', '2023-07-26 08:40:17.681503+07', 'Xã Quỳnh Ngọc', '17200', 'Xã');
INSERT INTO category."Wards" VALUES (17203, 421, 'system', '2023-07-26 08:40:17.681506+07', 'system', '2023-07-26 08:40:17.681506+07', 'Xã Quỳnh Nghĩa', '17203', 'Xã');
INSERT INTO category."Wards" VALUES (17206, 421, 'system', '2023-07-26 08:40:17.681508+07', 'system', '2023-07-26 08:40:17.681508+07', 'Xã An Hòa', '17206', 'Xã');
INSERT INTO category."Wards" VALUES (17209, 421, 'system', '2023-07-26 08:40:17.681511+07', 'system', '2023-07-26 08:40:17.681511+07', 'Xã Tiến Thủy', '17209', 'Xã');
INSERT INTO category."Wards" VALUES (17212, 421, 'system', '2023-07-26 08:40:17.681515+07', 'system', '2023-07-26 08:40:17.681515+07', 'Xã Sơn Hải', '17212', 'Xã');
INSERT INTO category."Wards" VALUES (17215, 421, 'system', '2023-07-26 08:40:17.681518+07', 'system', '2023-07-26 08:40:17.681518+07', 'Xã Quỳnh Thọ', '17215', 'Xã');
INSERT INTO category."Wards" VALUES (17218, 421, 'system', '2023-07-26 08:40:17.681522+07', 'system', '2023-07-26 08:40:17.681522+07', 'Xã Quỳnh Thuận', '17218', 'Xã');
INSERT INTO category."Wards" VALUES (17221, 421, 'system', '2023-07-26 08:40:17.681526+07', 'system', '2023-07-26 08:40:17.681526+07', 'Xã Quỳnh Long', '17221', 'Xã');
INSERT INTO category."Wards" VALUES (17224, 421, 'system', '2023-07-26 08:40:17.68153+07', 'system', '2023-07-26 08:40:17.68153+07', 'Xã Tân Thắng', '17224', 'Xã');
INSERT INTO category."Wards" VALUES (17227, 422, 'system', '2023-07-26 08:40:17.681534+07', 'system', '2023-07-26 08:40:17.681534+07', 'Thị trấn Con Cuông', '17227', 'Thị trấn');
INSERT INTO category."Wards" VALUES (17230, 422, 'system', '2023-07-26 08:40:17.681536+07', 'system', '2023-07-26 08:40:17.681536+07', 'Xã Bình Chuẩn', '17230', 'Xã');
INSERT INTO category."Wards" VALUES (17233, 422, 'system', '2023-07-26 08:40:17.681538+07', 'system', '2023-07-26 08:40:17.681538+07', 'Xã Lạng Khê', '17233', 'Xã');
INSERT INTO category."Wards" VALUES (17236, 422, 'system', '2023-07-26 08:40:17.68154+07', 'system', '2023-07-26 08:40:17.68154+07', 'Xã Cam Lâm', '17236', 'Xã');
INSERT INTO category."Wards" VALUES (17239, 422, 'system', '2023-07-26 08:40:17.681543+07', 'system', '2023-07-26 08:40:17.681543+07', 'Xã Thạch Ngàn', '17239', 'Xã');
INSERT INTO category."Wards" VALUES (17242, 422, 'system', '2023-07-26 08:40:17.681545+07', 'system', '2023-07-26 08:40:17.681545+07', 'Xã Đôn Phục', '17242', 'Xã');
INSERT INTO category."Wards" VALUES (17245, 422, 'system', '2023-07-26 08:40:17.681547+07', 'system', '2023-07-26 08:40:17.681547+07', 'Xã Mậu Đức', '17245', 'Xã');
INSERT INTO category."Wards" VALUES (17248, 422, 'system', '2023-07-26 08:40:17.681549+07', 'system', '2023-07-26 08:40:17.681549+07', 'Xã Châu Khê', '17248', 'Xã');
INSERT INTO category."Wards" VALUES (17251, 422, 'system', '2023-07-26 08:40:17.681551+07', 'system', '2023-07-26 08:40:17.681551+07', 'Xã Chi Khê', '17251', 'Xã');
INSERT INTO category."Wards" VALUES (17254, 422, 'system', '2023-07-26 08:40:17.681553+07', 'system', '2023-07-26 08:40:17.681553+07', 'Xã Bồng Khê', '17254', 'Xã');
INSERT INTO category."Wards" VALUES (17257, 422, 'system', '2023-07-26 08:40:17.681555+07', 'system', '2023-07-26 08:40:17.681556+07', 'Xã Yên Khê', '17257', 'Xã');
INSERT INTO category."Wards" VALUES (17260, 422, 'system', '2023-07-26 08:40:17.681558+07', 'system', '2023-07-26 08:40:17.681558+07', 'Xã Lục Dạ', '17260', 'Xã');
INSERT INTO category."Wards" VALUES (17263, 422, 'system', '2023-07-26 08:40:17.68156+07', 'system', '2023-07-26 08:40:17.68156+07', 'Xã Môn Sơn', '17263', 'Xã');
INSERT INTO category."Wards" VALUES (17266, 423, 'system', '2023-07-26 08:40:17.681562+07', 'system', '2023-07-26 08:40:17.681562+07', 'Thị trấn Tân Kỳ', '17266', 'Thị trấn');
INSERT INTO category."Wards" VALUES (17269, 423, 'system', '2023-07-26 08:40:17.681564+07', 'system', '2023-07-26 08:40:17.681564+07', 'Xã Tân Hợp', '17269', 'Xã');
INSERT INTO category."Wards" VALUES (17272, 423, 'system', '2023-07-26 08:40:17.681567+07', 'system', '2023-07-26 08:40:17.681567+07', 'Xã Tân Phú', '17272', 'Xã');
INSERT INTO category."Wards" VALUES (17275, 423, 'system', '2023-07-26 08:40:17.681569+07', 'system', '2023-07-26 08:40:17.681569+07', 'Xã Tân Xuân', '17275', 'Xã');
INSERT INTO category."Wards" VALUES (17278, 423, 'system', '2023-07-26 08:40:17.681571+07', 'system', '2023-07-26 08:40:17.681571+07', 'Xã Giai Xuân', '17278', 'Xã');
INSERT INTO category."Wards" VALUES (17281, 423, 'system', '2023-07-26 08:40:17.681573+07', 'system', '2023-07-26 08:40:17.681573+07', 'Xã Nghĩa Bình', '17281', 'Xã');
INSERT INTO category."Wards" VALUES (17284, 423, 'system', '2023-07-26 08:40:17.681575+07', 'system', '2023-07-26 08:40:17.681575+07', 'Xã Nghĩa Đồng', '17284', 'Xã');
INSERT INTO category."Wards" VALUES (17287, 423, 'system', '2023-07-26 08:40:17.681577+07', 'system', '2023-07-26 08:40:17.681577+07', 'Xã Đồng Văn', '17287', 'Xã');
INSERT INTO category."Wards" VALUES (17290, 423, 'system', '2023-07-26 08:40:17.681579+07', 'system', '2023-07-26 08:40:17.681579+07', 'Xã Nghĩa Thái', '17290', 'Xã');
INSERT INTO category."Wards" VALUES (17293, 423, 'system', '2023-07-26 08:40:17.681582+07', 'system', '2023-07-26 08:40:17.681582+07', 'Xã Nghĩa Hợp', '17293', 'Xã');
INSERT INTO category."Wards" VALUES (17296, 423, 'system', '2023-07-26 08:40:17.681584+07', 'system', '2023-07-26 08:40:17.681584+07', 'Xã Nghĩa Hoàn', '17296', 'Xã');
INSERT INTO category."Wards" VALUES (17299, 423, 'system', '2023-07-26 08:40:17.681586+07', 'system', '2023-07-26 08:40:17.681586+07', 'Xã Nghĩa Phúc', '17299', 'Xã');
INSERT INTO category."Wards" VALUES (17302, 423, 'system', '2023-07-26 08:40:17.681588+07', 'system', '2023-07-26 08:40:17.681588+07', 'Xã Tiên Kỳ', '17302', 'Xã');
INSERT INTO category."Wards" VALUES (17305, 423, 'system', '2023-07-26 08:40:17.68159+07', 'system', '2023-07-26 08:40:17.68159+07', 'Xã Tân An', '17305', 'Xã');
INSERT INTO category."Wards" VALUES (17308, 423, 'system', '2023-07-26 08:40:17.681592+07', 'system', '2023-07-26 08:40:17.681592+07', 'Xã Nghĩa Dũng', '17308', 'Xã');
INSERT INTO category."Wards" VALUES (17311, 423, 'system', '2023-07-26 08:40:17.681595+07', 'system', '2023-07-26 08:40:17.681595+07', 'Xã Tân Long', '17311', 'Xã');
INSERT INTO category."Wards" VALUES (17314, 423, 'system', '2023-07-26 08:40:17.681597+07', 'system', '2023-07-26 08:40:17.681597+07', 'Xã Kỳ Sơn', '17314', 'Xã');
INSERT INTO category."Wards" VALUES (17317, 423, 'system', '2023-07-26 08:40:17.681599+07', 'system', '2023-07-26 08:40:17.681599+07', 'Xã Hương Sơn', '17317', 'Xã');
INSERT INTO category."Wards" VALUES (17320, 423, 'system', '2023-07-26 08:40:17.681601+07', 'system', '2023-07-26 08:40:17.681601+07', 'Xã Kỳ Tân', '17320', 'Xã');
INSERT INTO category."Wards" VALUES (17323, 423, 'system', '2023-07-26 08:40:17.681604+07', 'system', '2023-07-26 08:40:17.681604+07', 'Xã Phú Sơn', '17323', 'Xã');
INSERT INTO category."Wards" VALUES (17325, 423, 'system', '2023-07-26 08:40:17.681606+07', 'system', '2023-07-26 08:40:17.681606+07', 'Xã Tân Hương', '17325', 'Xã');
INSERT INTO category."Wards" VALUES (17326, 423, 'system', '2023-07-26 08:40:17.681608+07', 'system', '2023-07-26 08:40:17.681608+07', 'Xã Nghĩa Hành', '17326', 'Xã');
INSERT INTO category."Wards" VALUES (17329, 424, 'system', '2023-07-26 08:40:17.68161+07', 'system', '2023-07-26 08:40:17.68161+07', 'Thị trấn Anh Sơn', '17329', 'Thị trấn');
INSERT INTO category."Wards" VALUES (17332, 424, 'system', '2023-07-26 08:40:17.681612+07', 'system', '2023-07-26 08:40:17.681612+07', 'Xã Thọ Sơn', '17332', 'Xã');
INSERT INTO category."Wards" VALUES (17335, 424, 'system', '2023-07-26 08:40:17.681614+07', 'system', '2023-07-26 08:40:17.681614+07', 'Xã Thành Sơn', '17335', 'Xã');
INSERT INTO category."Wards" VALUES (17338, 424, 'system', '2023-07-26 08:40:17.681616+07', 'system', '2023-07-26 08:40:17.681617+07', 'Xã Bình Sơn', '17338', 'Xã');
INSERT INTO category."Wards" VALUES (17341, 424, 'system', '2023-07-26 08:40:17.681619+07', 'system', '2023-07-26 08:40:17.681619+07', 'Xã Tam Sơn', '17341', 'Xã');
INSERT INTO category."Wards" VALUES (17344, 424, 'system', '2023-07-26 08:40:17.681621+07', 'system', '2023-07-26 08:40:17.681621+07', 'Xã Đỉnh Sơn', '17344', 'Xã');
INSERT INTO category."Wards" VALUES (17347, 424, 'system', '2023-07-26 08:40:17.681623+07', 'system', '2023-07-26 08:40:17.681623+07', 'Xã Hùng Sơn', '17347', 'Xã');
INSERT INTO category."Wards" VALUES (17350, 424, 'system', '2023-07-26 08:40:17.681625+07', 'system', '2023-07-26 08:40:17.681625+07', 'Xã Cẩm Sơn', '17350', 'Xã');
INSERT INTO category."Wards" VALUES (17353, 424, 'system', '2023-07-26 08:40:17.681627+07', 'system', '2023-07-26 08:40:17.681627+07', 'Xã Đức Sơn', '17353', 'Xã');
INSERT INTO category."Wards" VALUES (17356, 424, 'system', '2023-07-26 08:40:17.68163+07', 'system', '2023-07-26 08:40:17.68163+07', 'Xã Tường Sơn', '17356', 'Xã');
INSERT INTO category."Wards" VALUES (17357, 424, 'system', '2023-07-26 08:40:17.681632+07', 'system', '2023-07-26 08:40:17.681632+07', 'Xã Hoa Sơn', '17357', 'Xã');
INSERT INTO category."Wards" VALUES (17359, 424, 'system', '2023-07-26 08:40:17.681634+07', 'system', '2023-07-26 08:40:17.681634+07', 'Xã Tào Sơn', '17359', 'Xã');
INSERT INTO category."Wards" VALUES (17362, 424, 'system', '2023-07-26 08:40:17.681636+07', 'system', '2023-07-26 08:40:17.681636+07', 'Xã Vĩnh Sơn', '17362', 'Xã');
INSERT INTO category."Wards" VALUES (17365, 424, 'system', '2023-07-26 08:40:17.681638+07', 'system', '2023-07-26 08:40:17.681638+07', 'Xã Lạng Sơn', '17365', 'Xã');
INSERT INTO category."Wards" VALUES (17368, 424, 'system', '2023-07-26 08:40:17.68164+07', 'system', '2023-07-26 08:40:17.68164+07', 'Xã Hội Sơn', '17368', 'Xã');
INSERT INTO category."Wards" VALUES (17371, 424, 'system', '2023-07-26 08:40:17.681643+07', 'system', '2023-07-26 08:40:17.681643+07', 'Xã Thạch Sơn', '17371', 'Xã');
INSERT INTO category."Wards" VALUES (17374, 424, 'system', '2023-07-26 08:40:17.681645+07', 'system', '2023-07-26 08:40:17.681645+07', 'Xã Phúc Sơn', '17374', 'Xã');
INSERT INTO category."Wards" VALUES (17377, 424, 'system', '2023-07-26 08:40:17.681647+07', 'system', '2023-07-26 08:40:17.681647+07', 'Xã Long Sơn', '17377', 'Xã');
INSERT INTO category."Wards" VALUES (17380, 424, 'system', '2023-07-26 08:40:17.681649+07', 'system', '2023-07-26 08:40:17.681649+07', 'Xã Khai Sơn', '17380', 'Xã');
INSERT INTO category."Wards" VALUES (17383, 424, 'system', '2023-07-26 08:40:17.681651+07', 'system', '2023-07-26 08:40:17.681651+07', 'Xã Lĩnh Sơn', '17383', 'Xã');
INSERT INTO category."Wards" VALUES (17386, 424, 'system', '2023-07-26 08:40:17.681653+07', 'system', '2023-07-26 08:40:17.681654+07', 'Xã Cao Sơn', '17386', 'Xã');
INSERT INTO category."Wards" VALUES (17389, 425, 'system', '2023-07-26 08:40:17.681656+07', 'system', '2023-07-26 08:40:17.681656+07', 'Thị trấn Diễn Châu', '17389', 'Thị trấn');
INSERT INTO category."Wards" VALUES (17392, 425, 'system', '2023-07-26 08:40:17.681658+07', 'system', '2023-07-26 08:40:17.681658+07', 'Xã Diễn Lâm', '17392', 'Xã');
INSERT INTO category."Wards" VALUES (17395, 425, 'system', '2023-07-26 08:40:17.68166+07', 'system', '2023-07-26 08:40:17.68166+07', 'Xã Diễn Đoài', '17395', 'Xã');
INSERT INTO category."Wards" VALUES (17398, 425, 'system', '2023-07-26 08:40:17.681662+07', 'system', '2023-07-26 08:40:17.681662+07', 'Xã Diễn Trường', '17398', 'Xã');
INSERT INTO category."Wards" VALUES (17401, 425, 'system', '2023-07-26 08:40:17.681664+07', 'system', '2023-07-26 08:40:17.681664+07', 'Xã Diễn Yên', '17401', 'Xã');
INSERT INTO category."Wards" VALUES (17404, 425, 'system', '2023-07-26 08:40:17.681666+07', 'system', '2023-07-26 08:40:17.681666+07', 'Xã Diễn Hoàng', '17404', 'Xã');
INSERT INTO category."Wards" VALUES (17407, 425, 'system', '2023-07-26 08:40:17.681669+07', 'system', '2023-07-26 08:40:17.681669+07', 'Xã Diễn Hùng', '17407', 'Xã');
INSERT INTO category."Wards" VALUES (17410, 425, 'system', '2023-07-26 08:40:17.681671+07', 'system', '2023-07-26 08:40:17.681671+07', 'Xã Diễn Mỹ', '17410', 'Xã');
INSERT INTO category."Wards" VALUES (17413, 425, 'system', '2023-07-26 08:40:17.681673+07', 'system', '2023-07-26 08:40:17.681673+07', 'Xã Diễn Hồng', '17413', 'Xã');
INSERT INTO category."Wards" VALUES (17416, 425, 'system', '2023-07-26 08:40:17.681676+07', 'system', '2023-07-26 08:40:17.681676+07', 'Xã Diễn Phong', '17416', 'Xã');
INSERT INTO category."Wards" VALUES (17419, 425, 'system', '2023-07-26 08:40:17.681678+07', 'system', '2023-07-26 08:40:17.681678+07', 'Xã Diễn Hải', '17419', 'Xã');
INSERT INTO category."Wards" VALUES (17422, 425, 'system', '2023-07-26 08:40:17.68168+07', 'system', '2023-07-26 08:40:17.68168+07', 'Xã Diễn Tháp', '17422', 'Xã');
INSERT INTO category."Wards" VALUES (17425, 425, 'system', '2023-07-26 08:40:17.681682+07', 'system', '2023-07-26 08:40:17.681683+07', 'Xã Diễn Liên', '17425', 'Xã');
INSERT INTO category."Wards" VALUES (17428, 425, 'system', '2023-07-26 08:40:17.681684+07', 'system', '2023-07-26 08:40:17.681684+07', 'Xã Diễn Vạn', '17428', 'Xã');
INSERT INTO category."Wards" VALUES (17431, 425, 'system', '2023-07-26 08:40:17.681687+07', 'system', '2023-07-26 08:40:17.681687+07', 'Xã Diễn Kim', '17431', 'Xã');
INSERT INTO category."Wards" VALUES (17434, 425, 'system', '2023-07-26 08:40:17.681689+07', 'system', '2023-07-26 08:40:17.681689+07', 'Xã Diễn Kỷ', '17434', 'Xã');
INSERT INTO category."Wards" VALUES (17437, 425, 'system', '2023-07-26 08:40:17.681691+07', 'system', '2023-07-26 08:40:17.681691+07', 'Xã Diễn Xuân', '17437', 'Xã');
INSERT INTO category."Wards" VALUES (17440, 425, 'system', '2023-07-26 08:40:17.681693+07', 'system', '2023-07-26 08:40:17.681693+07', 'Xã Diễn Thái', '17440', 'Xã');
INSERT INTO category."Wards" VALUES (17443, 425, 'system', '2023-07-26 08:40:17.681695+07', 'system', '2023-07-26 08:40:17.681695+07', 'Xã Diễn Đồng', '17443', 'Xã');
INSERT INTO category."Wards" VALUES (17446, 425, 'system', '2023-07-26 08:40:17.681697+07', 'system', '2023-07-26 08:40:17.681697+07', 'Xã Diễn Bích', '17446', 'Xã');
INSERT INTO category."Wards" VALUES (17449, 425, 'system', '2023-07-26 08:40:17.681699+07', 'system', '2023-07-26 08:40:17.681699+07', 'Xã Diễn Hạnh', '17449', 'Xã');
INSERT INTO category."Wards" VALUES (17452, 425, 'system', '2023-07-26 08:40:17.681701+07', 'system', '2023-07-26 08:40:17.681701+07', 'Xã Diễn Ngọc', '17452', 'Xã');
INSERT INTO category."Wards" VALUES (17455, 425, 'system', '2023-07-26 08:40:17.681704+07', 'system', '2023-07-26 08:40:17.681704+07', 'Xã Diễn Quảng', '17455', 'Xã');
INSERT INTO category."Wards" VALUES (17458, 425, 'system', '2023-07-26 08:40:17.681706+07', 'system', '2023-07-26 08:40:17.681706+07', 'Xã Diễn Nguyên', '17458', 'Xã');
INSERT INTO category."Wards" VALUES (17461, 425, 'system', '2023-07-26 08:40:17.681708+07', 'system', '2023-07-26 08:40:17.681708+07', 'Xã Diễn Hoa', '17461', 'Xã');
INSERT INTO category."Wards" VALUES (17464, 425, 'system', '2023-07-26 08:40:17.68171+07', 'system', '2023-07-26 08:40:17.68171+07', 'Xã Diễn Thành', '17464', 'Xã');
INSERT INTO category."Wards" VALUES (17467, 425, 'system', '2023-07-26 08:40:17.681712+07', 'system', '2023-07-26 08:40:17.681712+07', 'Xã Diễn Phúc', '17467', 'Xã');
INSERT INTO category."Wards" VALUES (17476, 425, 'system', '2023-07-26 08:40:17.681715+07', 'system', '2023-07-26 08:40:17.681715+07', 'Xã Diễn Cát', '17476', 'Xã');
INSERT INTO category."Wards" VALUES (17479, 425, 'system', '2023-07-26 08:40:17.681717+07', 'system', '2023-07-26 08:40:17.681717+07', 'Xã Diễn Thịnh', '17479', 'Xã');
INSERT INTO category."Wards" VALUES (17482, 425, 'system', '2023-07-26 08:40:17.681719+07', 'system', '2023-07-26 08:40:17.681719+07', 'Xã Diễn Tân', '17482', 'Xã');
INSERT INTO category."Wards" VALUES (17485, 425, 'system', '2023-07-26 08:40:17.681721+07', 'system', '2023-07-26 08:40:17.681721+07', 'Xã Minh Châu', '17485', 'Xã');
INSERT INTO category."Wards" VALUES (17488, 425, 'system', '2023-07-26 08:40:17.681733+07', 'system', '2023-07-26 08:40:17.681733+07', 'Xã Diễn Thọ', '17488', 'Xã');
INSERT INTO category."Wards" VALUES (17491, 425, 'system', '2023-07-26 08:40:17.681735+07', 'system', '2023-07-26 08:40:17.681735+07', 'Xã Diễn Lợi', '17491', 'Xã');
INSERT INTO category."Wards" VALUES (17494, 425, 'system', '2023-07-26 08:40:17.681737+07', 'system', '2023-07-26 08:40:17.681737+07', 'Xã Diễn Lộc', '17494', 'Xã');
INSERT INTO category."Wards" VALUES (17497, 425, 'system', '2023-07-26 08:40:17.681739+07', 'system', '2023-07-26 08:40:17.681739+07', 'Xã Diễn Trung', '17497', 'Xã');
INSERT INTO category."Wards" VALUES (17500, 425, 'system', '2023-07-26 08:40:17.681741+07', 'system', '2023-07-26 08:40:17.681741+07', 'Xã Diễn An', '17500', 'Xã');
INSERT INTO category."Wards" VALUES (17503, 425, 'system', '2023-07-26 08:40:17.681743+07', 'system', '2023-07-26 08:40:17.681743+07', 'Xã Diễn Phú', '17503', 'Xã');
INSERT INTO category."Wards" VALUES (17506, 426, 'system', '2023-07-26 08:40:17.681746+07', 'system', '2023-07-26 08:40:17.681746+07', 'Thị trấn Yên Thành', '17506', 'Thị trấn');
INSERT INTO category."Wards" VALUES (17509, 426, 'system', '2023-07-26 08:40:17.681748+07', 'system', '2023-07-26 08:40:17.681748+07', 'Xã Mã Thành', '17509', 'Xã');
INSERT INTO category."Wards" VALUES (17510, 426, 'system', '2023-07-26 08:40:17.68175+07', 'system', '2023-07-26 08:40:17.68175+07', 'Xã Tiến Thành', '17510', 'Xã');
INSERT INTO category."Wards" VALUES (17512, 426, 'system', '2023-07-26 08:40:17.681752+07', 'system', '2023-07-26 08:40:17.681752+07', 'Xã Lăng Thành', '17512', 'Xã');
INSERT INTO category."Wards" VALUES (17515, 426, 'system', '2023-07-26 08:40:17.681754+07', 'system', '2023-07-26 08:40:17.681754+07', 'Xã Tân Thành', '17515', 'Xã');
INSERT INTO category."Wards" VALUES (17518, 426, 'system', '2023-07-26 08:40:17.681757+07', 'system', '2023-07-26 08:40:17.681757+07', 'Xã Đức Thành', '17518', 'Xã');
INSERT INTO category."Wards" VALUES (17521, 426, 'system', '2023-07-26 08:40:17.681759+07', 'system', '2023-07-26 08:40:17.681759+07', 'Xã Kim Thành', '17521', 'Xã');
INSERT INTO category."Wards" VALUES (17524, 426, 'system', '2023-07-26 08:40:17.681761+07', 'system', '2023-07-26 08:40:17.681761+07', 'Xã Hậu Thành', '17524', 'Xã');
INSERT INTO category."Wards" VALUES (17525, 426, 'system', '2023-07-26 08:40:17.681764+07', 'system', '2023-07-26 08:40:17.681764+07', 'Xã Hùng Thành', '17525', 'Xã');
INSERT INTO category."Wards" VALUES (17527, 426, 'system', '2023-07-26 08:40:17.681766+07', 'system', '2023-07-26 08:40:17.681766+07', 'Xã Đô Thành', '17527', 'Xã');
INSERT INTO category."Wards" VALUES (17530, 426, 'system', '2023-07-26 08:40:17.681768+07', 'system', '2023-07-26 08:40:17.681768+07', 'Xã Thọ Thành', '17530', 'Xã');
INSERT INTO category."Wards" VALUES (17533, 426, 'system', '2023-07-26 08:40:17.68177+07', 'system', '2023-07-26 08:40:17.68177+07', 'Xã Quang Thành', '17533', 'Xã');
INSERT INTO category."Wards" VALUES (17536, 426, 'system', '2023-07-26 08:40:17.681772+07', 'system', '2023-07-26 08:40:17.681772+07', 'Xã Tây Thành', '17536', 'Xã');
INSERT INTO category."Wards" VALUES (17539, 426, 'system', '2023-07-26 08:40:17.681774+07', 'system', '2023-07-26 08:40:17.681774+07', 'Xã Phúc Thành', '17539', 'Xã');
INSERT INTO category."Wards" VALUES (17542, 426, 'system', '2023-07-26 08:40:17.681777+07', 'system', '2023-07-26 08:40:17.681777+07', 'Xã Hồng Thành', '17542', 'Xã');
INSERT INTO category."Wards" VALUES (17545, 426, 'system', '2023-07-26 08:40:17.681779+07', 'system', '2023-07-26 08:40:17.681779+07', 'Xã Đồng Thành', '17545', 'Xã');
INSERT INTO category."Wards" VALUES (17548, 426, 'system', '2023-07-26 08:40:17.681781+07', 'system', '2023-07-26 08:40:17.681781+07', 'Xã Phú Thành', '17548', 'Xã');
INSERT INTO category."Wards" VALUES (17551, 426, 'system', '2023-07-26 08:40:17.681783+07', 'system', '2023-07-26 08:40:17.681783+07', 'Xã Hoa Thành', '17551', 'Xã');
INSERT INTO category."Wards" VALUES (17554, 426, 'system', '2023-07-26 08:40:17.681785+07', 'system', '2023-07-26 08:40:17.681785+07', 'Xã Tăng Thành', '17554', 'Xã');
INSERT INTO category."Wards" VALUES (17557, 426, 'system', '2023-07-26 08:40:17.681787+07', 'system', '2023-07-26 08:40:17.681787+07', 'Xã Văn Thành', '17557', 'Xã');
INSERT INTO category."Wards" VALUES (17560, 426, 'system', '2023-07-26 08:40:17.681789+07', 'system', '2023-07-26 08:40:17.681789+07', 'Xã Thịnh Thành', '17560', 'Xã');
INSERT INTO category."Wards" VALUES (17563, 426, 'system', '2023-07-26 08:40:17.681792+07', 'system', '2023-07-26 08:40:17.681792+07', 'Xã Hợp Thành', '17563', 'Xã');
INSERT INTO category."Wards" VALUES (17566, 426, 'system', '2023-07-26 08:40:17.681794+07', 'system', '2023-07-26 08:40:17.681794+07', 'Xã Xuân Thành', '17566', 'Xã');
INSERT INTO category."Wards" VALUES (17569, 426, 'system', '2023-07-26 08:40:17.681796+07', 'system', '2023-07-26 08:40:17.681796+07', 'Xã Bắc Thành', '17569', 'Xã');
INSERT INTO category."Wards" VALUES (17572, 426, 'system', '2023-07-26 08:40:17.681798+07', 'system', '2023-07-26 08:40:17.681798+07', 'Xã Nhân Thành', '17572', 'Xã');
INSERT INTO category."Wards" VALUES (17575, 426, 'system', '2023-07-26 08:40:17.6818+07', 'system', '2023-07-26 08:40:17.6818+07', 'Xã Trung Thành', '17575', 'Xã');
INSERT INTO category."Wards" VALUES (17578, 426, 'system', '2023-07-26 08:40:17.681802+07', 'system', '2023-07-26 08:40:17.681802+07', 'Xã Long Thành', '17578', 'Xã');
INSERT INTO category."Wards" VALUES (17581, 426, 'system', '2023-07-26 08:40:17.681804+07', 'system', '2023-07-26 08:40:17.681804+07', 'Xã Minh Thành', '17581', 'Xã');
INSERT INTO category."Wards" VALUES (17584, 426, 'system', '2023-07-26 08:40:17.681806+07', 'system', '2023-07-26 08:40:17.681806+07', 'Xã Nam Thành', '17584', 'Xã');
INSERT INTO category."Wards" VALUES (17587, 426, 'system', '2023-07-26 08:40:17.681809+07', 'system', '2023-07-26 08:40:17.681809+07', 'Xã Vĩnh Thành', '17587', 'Xã');
INSERT INTO category."Wards" VALUES (17590, 426, 'system', '2023-07-26 08:40:17.681811+07', 'system', '2023-07-26 08:40:17.681811+07', 'Xã Lý Thành', '17590', 'Xã');
INSERT INTO category."Wards" VALUES (17593, 426, 'system', '2023-07-26 08:40:17.681813+07', 'system', '2023-07-26 08:40:17.681813+07', 'Xã Khánh Thành', '17593', 'Xã');
INSERT INTO category."Wards" VALUES (17596, 426, 'system', '2023-07-26 08:40:17.681815+07', 'system', '2023-07-26 08:40:17.681815+07', 'Xã Viên Thành', '17596', 'Xã');
INSERT INTO category."Wards" VALUES (17599, 426, 'system', '2023-07-26 08:40:17.681817+07', 'system', '2023-07-26 08:40:17.681817+07', 'Xã Đại Thành', '17599', 'Xã');
INSERT INTO category."Wards" VALUES (17602, 426, 'system', '2023-07-26 08:40:17.681819+07', 'system', '2023-07-26 08:40:17.681819+07', 'Xã Liên Thành', '17602', 'Xã');
INSERT INTO category."Wards" VALUES (17605, 426, 'system', '2023-07-26 08:40:17.681821+07', 'system', '2023-07-26 08:40:17.681821+07', 'Xã Bảo Thành', '17605', 'Xã');
INSERT INTO category."Wards" VALUES (17608, 426, 'system', '2023-07-26 08:40:17.681823+07', 'system', '2023-07-26 08:40:17.681823+07', 'Xã Mỹ Thành', '17608', 'Xã');
INSERT INTO category."Wards" VALUES (17611, 426, 'system', '2023-07-26 08:40:17.681826+07', 'system', '2023-07-26 08:40:17.681826+07', 'Xã Công Thành', '17611', 'Xã');
INSERT INTO category."Wards" VALUES (17614, 426, 'system', '2023-07-26 08:40:17.681828+07', 'system', '2023-07-26 08:40:17.681828+07', 'Xã Sơn Thành', '17614', 'Xã');
INSERT INTO category."Wards" VALUES (17617, 427, 'system', '2023-07-26 08:40:17.68183+07', 'system', '2023-07-26 08:40:17.68183+07', 'Thị trấn Đô Lương', '17617', 'Thị trấn');
INSERT INTO category."Wards" VALUES (17619, 427, 'system', '2023-07-26 08:40:17.681832+07', 'system', '2023-07-26 08:40:17.681832+07', 'Xã Giang Sơn Đông', '17619', 'Xã');
INSERT INTO category."Wards" VALUES (17620, 427, 'system', '2023-07-26 08:40:17.681835+07', 'system', '2023-07-26 08:40:17.681835+07', 'Xã Giang Sơn Tây', '17620', 'Xã');
INSERT INTO category."Wards" VALUES (17623, 427, 'system', '2023-07-26 08:40:17.681837+07', 'system', '2023-07-26 08:40:17.681837+07', 'Xã Lam Sơn', '17623', 'Xã');
INSERT INTO category."Wards" VALUES (17626, 427, 'system', '2023-07-26 08:40:17.681839+07', 'system', '2023-07-26 08:40:17.681839+07', 'Xã Bồi Sơn', '17626', 'Xã');
INSERT INTO category."Wards" VALUES (17629, 427, 'system', '2023-07-26 08:40:17.681842+07', 'system', '2023-07-26 08:40:17.681842+07', 'Xã Hồng Sơn', '17629', 'Xã');
INSERT INTO category."Wards" VALUES (17632, 427, 'system', '2023-07-26 08:40:17.681844+07', 'system', '2023-07-26 08:40:17.681844+07', 'Xã Bài Sơn', '17632', 'Xã');
INSERT INTO category."Wards" VALUES (17635, 427, 'system', '2023-07-26 08:40:17.681846+07', 'system', '2023-07-26 08:40:17.681846+07', 'Xã Ngọc Sơn', '17635', 'Xã');
INSERT INTO category."Wards" VALUES (17638, 427, 'system', '2023-07-26 08:40:17.681848+07', 'system', '2023-07-26 08:40:17.681848+07', 'Xã Bắc Sơn', '17638', 'Xã');
INSERT INTO category."Wards" VALUES (17641, 427, 'system', '2023-07-26 08:40:17.68185+07', 'system', '2023-07-26 08:40:17.68185+07', 'Xã Tràng Sơn', '17641', 'Xã');
INSERT INTO category."Wards" VALUES (17644, 427, 'system', '2023-07-26 08:40:17.681852+07', 'system', '2023-07-26 08:40:17.681852+07', 'Xã Thượng Sơn', '17644', 'Xã');
INSERT INTO category."Wards" VALUES (17647, 427, 'system', '2023-07-26 08:40:17.681854+07', 'system', '2023-07-26 08:40:17.681855+07', 'Xã Hòa Sơn', '17647', 'Xã');
INSERT INTO category."Wards" VALUES (17650, 427, 'system', '2023-07-26 08:40:17.681857+07', 'system', '2023-07-26 08:40:17.681857+07', 'Xã Đặng Sơn', '17650', 'Xã');
INSERT INTO category."Wards" VALUES (17653, 427, 'system', '2023-07-26 08:40:17.681858+07', 'system', '2023-07-26 08:40:17.681858+07', 'Xã Đông Sơn', '17653', 'Xã');
INSERT INTO category."Wards" VALUES (17656, 427, 'system', '2023-07-26 08:40:17.681861+07', 'system', '2023-07-26 08:40:17.681861+07', 'Xã Nam Sơn', '17656', 'Xã');
INSERT INTO category."Wards" VALUES (17659, 427, 'system', '2023-07-26 08:40:17.681863+07', 'system', '2023-07-26 08:40:17.681863+07', 'Xã Lưu Sơn', '17659', 'Xã');
INSERT INTO category."Wards" VALUES (17662, 427, 'system', '2023-07-26 08:40:17.681865+07', 'system', '2023-07-26 08:40:17.681865+07', 'Xã Yên Sơn', '17662', 'Xã');
INSERT INTO category."Wards" VALUES (17665, 427, 'system', '2023-07-26 08:40:17.681867+07', 'system', '2023-07-26 08:40:17.681867+07', 'Xã Văn Sơn', '17665', 'Xã');
INSERT INTO category."Wards" VALUES (17668, 427, 'system', '2023-07-26 08:40:17.681869+07', 'system', '2023-07-26 08:40:17.681869+07', 'Xã Đà Sơn', '17668', 'Xã');
INSERT INTO category."Wards" VALUES (17671, 427, 'system', '2023-07-26 08:40:17.681871+07', 'system', '2023-07-26 08:40:17.681871+07', 'Xã Lạc Sơn', '17671', 'Xã');
INSERT INTO category."Wards" VALUES (17674, 427, 'system', '2023-07-26 08:40:17.681873+07', 'system', '2023-07-26 08:40:17.681873+07', 'Xã Tân Sơn', '17674', 'Xã');
INSERT INTO category."Wards" VALUES (17677, 427, 'system', '2023-07-26 08:40:17.681876+07', 'system', '2023-07-26 08:40:17.681876+07', 'Xã Thái Sơn', '17677', 'Xã');
INSERT INTO category."Wards" VALUES (17680, 427, 'system', '2023-07-26 08:40:17.681878+07', 'system', '2023-07-26 08:40:17.681878+07', 'Xã Quang Sơn', '17680', 'Xã');
INSERT INTO category."Wards" VALUES (17683, 427, 'system', '2023-07-26 08:40:17.68188+07', 'system', '2023-07-26 08:40:17.68188+07', 'Xã Thịnh Sơn', '17683', 'Xã');
INSERT INTO category."Wards" VALUES (17686, 427, 'system', '2023-07-26 08:40:17.681882+07', 'system', '2023-07-26 08:40:17.681882+07', 'Xã Trung Sơn', '17686', 'Xã');
INSERT INTO category."Wards" VALUES (17689, 427, 'system', '2023-07-26 08:40:17.681884+07', 'system', '2023-07-26 08:40:17.681884+07', 'Xã Xuân Sơn', '17689', 'Xã');
INSERT INTO category."Wards" VALUES (17692, 427, 'system', '2023-07-26 08:40:17.681886+07', 'system', '2023-07-26 08:40:17.681886+07', 'Xã Minh Sơn', '17692', 'Xã');
INSERT INTO category."Wards" VALUES (17695, 427, 'system', '2023-07-26 08:40:17.681888+07', 'system', '2023-07-26 08:40:17.681888+07', 'Xã Thuận Sơn', '17695', 'Xã');
INSERT INTO category."Wards" VALUES (17698, 427, 'system', '2023-07-26 08:40:17.68189+07', 'system', '2023-07-26 08:40:17.68189+07', 'Xã Nhân Sơn', '17698', 'Xã');
INSERT INTO category."Wards" VALUES (17701, 427, 'system', '2023-07-26 08:40:17.681893+07', 'system', '2023-07-26 08:40:17.681893+07', 'Xã Hiến Sơn', '17701', 'Xã');
INSERT INTO category."Wards" VALUES (17704, 427, 'system', '2023-07-26 08:40:17.681895+07', 'system', '2023-07-26 08:40:17.681895+07', 'Xã Mỹ Sơn', '17704', 'Xã');
INSERT INTO category."Wards" VALUES (17707, 427, 'system', '2023-07-26 08:40:17.681897+07', 'system', '2023-07-26 08:40:17.681897+07', 'Xã Trù Sơn', '17707', 'Xã');
INSERT INTO category."Wards" VALUES (17710, 427, 'system', '2023-07-26 08:40:17.681899+07', 'system', '2023-07-26 08:40:17.681899+07', 'Xã Đại Sơn', '17710', 'Xã');
INSERT INTO category."Wards" VALUES (17713, 428, 'system', '2023-07-26 08:40:17.681901+07', 'system', '2023-07-26 08:40:17.681901+07', 'Thị trấn Thanh Chương', '17713', 'Thị trấn');
INSERT INTO category."Wards" VALUES (17716, 428, 'system', '2023-07-26 08:40:17.681904+07', 'system', '2023-07-26 08:40:17.681904+07', 'Xã Cát Văn', '17716', 'Xã');
INSERT INTO category."Wards" VALUES (17719, 428, 'system', '2023-07-26 08:40:17.681906+07', 'system', '2023-07-26 08:40:17.681906+07', 'Xã Thanh Nho', '17719', 'Xã');
INSERT INTO category."Wards" VALUES (17722, 428, 'system', '2023-07-26 08:40:17.681908+07', 'system', '2023-07-26 08:40:17.681908+07', 'Xã Hạnh Lâm', '17722', 'Xã');
INSERT INTO category."Wards" VALUES (17723, 428, 'system', '2023-07-26 08:40:17.68191+07', 'system', '2023-07-26 08:40:17.68191+07', 'Xã Thanh Sơn', '17723', 'Xã');
INSERT INTO category."Wards" VALUES (17725, 428, 'system', '2023-07-26 08:40:17.681912+07', 'system', '2023-07-26 08:40:17.681912+07', 'Xã Thanh Hòa', '17725', 'Xã');
INSERT INTO category."Wards" VALUES (17728, 428, 'system', '2023-07-26 08:40:17.681914+07', 'system', '2023-07-26 08:40:17.681914+07', 'Xã Phong Thịnh', '17728', 'Xã');
INSERT INTO category."Wards" VALUES (17731, 428, 'system', '2023-07-26 08:40:17.681916+07', 'system', '2023-07-26 08:40:17.681916+07', 'Xã Thanh Phong', '17731', 'Xã');
INSERT INTO category."Wards" VALUES (17734, 428, 'system', '2023-07-26 08:40:17.681919+07', 'system', '2023-07-26 08:40:17.681919+07', 'Xã Thanh Mỹ', '17734', 'Xã');
INSERT INTO category."Wards" VALUES (17737, 428, 'system', '2023-07-26 08:40:17.681921+07', 'system', '2023-07-26 08:40:17.681921+07', 'Xã Thanh Tiên', '17737', 'Xã');
INSERT INTO category."Wards" VALUES (17743, 428, 'system', '2023-07-26 08:40:17.681923+07', 'system', '2023-07-26 08:40:17.681923+07', 'Xã Thanh Liên', '17743', 'Xã');
INSERT INTO category."Wards" VALUES (17749, 428, 'system', '2023-07-26 08:40:17.681925+07', 'system', '2023-07-26 08:40:17.681925+07', 'Xã Đại Đồng', '17749', 'Xã');
INSERT INTO category."Wards" VALUES (17752, 428, 'system', '2023-07-26 08:40:17.681928+07', 'system', '2023-07-26 08:40:17.681928+07', 'Xã Thanh Đồng', '17752', 'Xã');
INSERT INTO category."Wards" VALUES (17755, 428, 'system', '2023-07-26 08:40:17.68193+07', 'system', '2023-07-26 08:40:17.68193+07', 'Xã Thanh Ngọc', '17755', 'Xã');
INSERT INTO category."Wards" VALUES (17758, 428, 'system', '2023-07-26 08:40:17.681932+07', 'system', '2023-07-26 08:40:17.681932+07', 'Xã Thanh Hương', '17758', 'Xã');
INSERT INTO category."Wards" VALUES (17759, 428, 'system', '2023-07-26 08:40:17.681934+07', 'system', '2023-07-26 08:40:17.681934+07', 'Xã Ngọc Lâm', '17759', 'Xã');
INSERT INTO category."Wards" VALUES (17761, 428, 'system', '2023-07-26 08:40:17.681936+07', 'system', '2023-07-26 08:40:17.681936+07', 'Xã Thanh Lĩnh', '17761', 'Xã');
INSERT INTO category."Wards" VALUES (17764, 428, 'system', '2023-07-26 08:40:17.681938+07', 'system', '2023-07-26 08:40:17.681938+07', 'Xã Đồng Văn', '17764', 'Xã');
INSERT INTO category."Wards" VALUES (17767, 428, 'system', '2023-07-26 08:40:17.68194+07', 'system', '2023-07-26 08:40:17.68194+07', 'Xã Ngọc Sơn', '17767', 'Xã');
INSERT INTO category."Wards" VALUES (17770, 428, 'system', '2023-07-26 08:40:17.681942+07', 'system', '2023-07-26 08:40:17.681942+07', 'Xã Thanh Thịnh', '17770', 'Xã');
INSERT INTO category."Wards" VALUES (17773, 428, 'system', '2023-07-26 08:40:17.681944+07', 'system', '2023-07-26 08:40:17.681944+07', 'Xã Thanh An', '17773', 'Xã');
INSERT INTO category."Wards" VALUES (17776, 428, 'system', '2023-07-26 08:40:17.681946+07', 'system', '2023-07-26 08:40:17.681946+07', 'Xã Thanh Chi', '17776', 'Xã');
INSERT INTO category."Wards" VALUES (17779, 428, 'system', '2023-07-26 08:40:17.681948+07', 'system', '2023-07-26 08:40:17.681949+07', 'Xã Xuân Tường', '17779', 'Xã');
INSERT INTO category."Wards" VALUES (17782, 428, 'system', '2023-07-26 08:40:17.681951+07', 'system', '2023-07-26 08:40:17.681951+07', 'Xã Thanh Dương', '17782', 'Xã');
INSERT INTO category."Wards" VALUES (17785, 428, 'system', '2023-07-26 08:40:17.681953+07', 'system', '2023-07-26 08:40:17.681953+07', 'Xã Thanh Lương', '17785', 'Xã');
INSERT INTO category."Wards" VALUES (17788, 428, 'system', '2023-07-26 08:40:17.681955+07', 'system', '2023-07-26 08:40:17.681955+07', 'Xã Thanh Khê', '17788', 'Xã');
INSERT INTO category."Wards" VALUES (17791, 428, 'system', '2023-07-26 08:40:17.681957+07', 'system', '2023-07-26 08:40:17.681957+07', 'Xã Võ Liệt', '17791', 'Xã');
INSERT INTO category."Wards" VALUES (17794, 428, 'system', '2023-07-26 08:40:17.68196+07', 'system', '2023-07-26 08:40:17.68196+07', 'Xã Thanh Long', '17794', 'Xã');
INSERT INTO category."Wards" VALUES (17797, 428, 'system', '2023-07-26 08:40:17.681962+07', 'system', '2023-07-26 08:40:17.681962+07', 'Xã Thanh Thủy', '17797', 'Xã');
INSERT INTO category."Wards" VALUES (17800, 428, 'system', '2023-07-26 08:40:17.681964+07', 'system', '2023-07-26 08:40:17.681964+07', 'Xã Thanh Khai', '17800', 'Xã');
INSERT INTO category."Wards" VALUES (17803, 428, 'system', '2023-07-26 08:40:17.681966+07', 'system', '2023-07-26 08:40:17.681966+07', 'Xã Thanh Yên', '17803', 'Xã');
INSERT INTO category."Wards" VALUES (17806, 428, 'system', '2023-07-26 08:40:17.681968+07', 'system', '2023-07-26 08:40:17.681968+07', 'Xã Thanh Hà', '17806', 'Xã');
INSERT INTO category."Wards" VALUES (17809, 428, 'system', '2023-07-26 08:40:17.68197+07', 'system', '2023-07-26 08:40:17.68197+07', 'Xã Thanh Giang', '17809', 'Xã');
INSERT INTO category."Wards" VALUES (17812, 428, 'system', '2023-07-26 08:40:17.681972+07', 'system', '2023-07-26 08:40:17.681972+07', 'Xã Thanh Tùng', '17812', 'Xã');
INSERT INTO category."Wards" VALUES (17815, 428, 'system', '2023-07-26 08:40:17.681974+07', 'system', '2023-07-26 08:40:17.681974+07', 'Xã Thanh Lâm', '17815', 'Xã');
INSERT INTO category."Wards" VALUES (17818, 428, 'system', '2023-07-26 08:40:17.681976+07', 'system', '2023-07-26 08:40:17.681977+07', 'Xã Thanh Mai', '17818', 'Xã');
INSERT INTO category."Wards" VALUES (17821, 428, 'system', '2023-07-26 08:40:17.681979+07', 'system', '2023-07-26 08:40:17.681979+07', 'Xã Thanh Xuân', '17821', 'Xã');
INSERT INTO category."Wards" VALUES (17824, 428, 'system', '2023-07-26 08:40:17.681981+07', 'system', '2023-07-26 08:40:17.681981+07', 'Xã Thanh Đức', '17824', 'Xã');
INSERT INTO category."Wards" VALUES (17827, 429, 'system', '2023-07-26 08:40:17.681983+07', 'system', '2023-07-26 08:40:17.681983+07', 'Thị trấn Quán Hành', '17827', 'Thị trấn');
INSERT INTO category."Wards" VALUES (17830, 429, 'system', '2023-07-26 08:40:17.681985+07', 'system', '2023-07-26 08:40:17.681986+07', 'Xã Nghi Văn', '17830', 'Xã');
INSERT INTO category."Wards" VALUES (17833, 429, 'system', '2023-07-26 08:40:17.681988+07', 'system', '2023-07-26 08:40:17.681988+07', 'Xã Nghi Yên', '17833', 'Xã');
INSERT INTO category."Wards" VALUES (17836, 429, 'system', '2023-07-26 08:40:17.68199+07', 'system', '2023-07-26 08:40:17.68199+07', 'Xã Nghi Tiến', '17836', 'Xã');
INSERT INTO category."Wards" VALUES (17839, 429, 'system', '2023-07-26 08:40:17.681992+07', 'system', '2023-07-26 08:40:17.681992+07', 'Xã Nghi Hưng', '17839', 'Xã');
INSERT INTO category."Wards" VALUES (17842, 429, 'system', '2023-07-26 08:40:17.681994+07', 'system', '2023-07-26 08:40:17.681994+07', 'Xã Nghi Đồng', '17842', 'Xã');
INSERT INTO category."Wards" VALUES (17845, 429, 'system', '2023-07-26 08:40:17.681996+07', 'system', '2023-07-26 08:40:17.681996+07', 'Xã Nghi Thiết', '17845', 'Xã');
INSERT INTO category."Wards" VALUES (17848, 429, 'system', '2023-07-26 08:40:17.681999+07', 'system', '2023-07-26 08:40:17.681999+07', 'Xã Nghi Lâm', '17848', 'Xã');
INSERT INTO category."Wards" VALUES (17851, 429, 'system', '2023-07-26 08:40:17.682001+07', 'system', '2023-07-26 08:40:17.682001+07', 'Xã Nghi Quang', '17851', 'Xã');
INSERT INTO category."Wards" VALUES (17854, 429, 'system', '2023-07-26 08:40:17.682003+07', 'system', '2023-07-26 08:40:17.682003+07', 'Xã Nghi Kiều', '17854', 'Xã');
INSERT INTO category."Wards" VALUES (17857, 429, 'system', '2023-07-26 08:40:17.682005+07', 'system', '2023-07-26 08:40:17.682005+07', 'Xã Nghi Mỹ', '17857', 'Xã');
INSERT INTO category."Wards" VALUES (17860, 429, 'system', '2023-07-26 08:40:17.682007+07', 'system', '2023-07-26 08:40:17.682007+07', 'Xã Nghi Phương', '17860', 'Xã');
INSERT INTO category."Wards" VALUES (17863, 429, 'system', '2023-07-26 08:40:17.682009+07', 'system', '2023-07-26 08:40:17.682009+07', 'Xã Nghi Thuận', '17863', 'Xã');
INSERT INTO category."Wards" VALUES (17866, 429, 'system', '2023-07-26 08:40:17.682012+07', 'system', '2023-07-26 08:40:17.682012+07', 'Xã Nghi Long', '17866', 'Xã');
INSERT INTO category."Wards" VALUES (17869, 429, 'system', '2023-07-26 08:40:17.682014+07', 'system', '2023-07-26 08:40:17.682014+07', 'Xã Nghi Xá', '17869', 'Xã');
INSERT INTO category."Wards" VALUES (17875, 429, 'system', '2023-07-26 08:40:17.682016+07', 'system', '2023-07-26 08:40:17.682016+07', 'Xã Nghi Hoa', '17875', 'Xã');
INSERT INTO category."Wards" VALUES (17878, 429, 'system', '2023-07-26 08:40:17.682018+07', 'system', '2023-07-26 08:40:17.682018+07', 'Xã Khánh Hợp', '17878', 'Xã');
INSERT INTO category."Wards" VALUES (17881, 429, 'system', '2023-07-26 08:40:17.68202+07', 'system', '2023-07-26 08:40:17.68202+07', 'Xã Nghi Thịnh', '17881', 'Xã');
INSERT INTO category."Wards" VALUES (17884, 429, 'system', '2023-07-26 08:40:17.682022+07', 'system', '2023-07-26 08:40:17.682022+07', 'Xã Nghi Công Bắc', '17884', 'Xã');
INSERT INTO category."Wards" VALUES (17887, 429, 'system', '2023-07-26 08:40:17.682025+07', 'system', '2023-07-26 08:40:17.682025+07', 'Xã Nghi Công Nam', '17887', 'Xã');
INSERT INTO category."Wards" VALUES (17890, 429, 'system', '2023-07-26 08:40:17.682027+07', 'system', '2023-07-26 08:40:17.682027+07', 'Xã Nghi Thạch', '17890', 'Xã');
INSERT INTO category."Wards" VALUES (17893, 429, 'system', '2023-07-26 08:40:17.682029+07', 'system', '2023-07-26 08:40:17.682029+07', 'Xã Nghi Trung', '17893', 'Xã');
INSERT INTO category."Wards" VALUES (17896, 429, 'system', '2023-07-26 08:40:17.682031+07', 'system', '2023-07-26 08:40:17.682031+07', 'Xã Nghi Trường', '17896', 'Xã');
INSERT INTO category."Wards" VALUES (17899, 429, 'system', '2023-07-26 08:40:17.682033+07', 'system', '2023-07-26 08:40:17.682033+07', 'Xã Nghi Diên', '17899', 'Xã');
INSERT INTO category."Wards" VALUES (17902, 429, 'system', '2023-07-26 08:40:17.682035+07', 'system', '2023-07-26 08:40:17.682036+07', 'Xã Nghi Phong', '17902', 'Xã');
INSERT INTO category."Wards" VALUES (17905, 429, 'system', '2023-07-26 08:40:17.682038+07', 'system', '2023-07-26 08:40:17.682038+07', 'Xã Nghi Xuân', '17905', 'Xã');
INSERT INTO category."Wards" VALUES (17908, 412, 'system', '2023-07-26 08:40:17.681163+07', 'system', '2023-07-26 08:40:17.681163+07', 'Xã Nghi Liên', '17908', 'Xã');
INSERT INTO category."Wards" VALUES (17911, 429, 'system', '2023-07-26 08:40:17.68204+07', 'system', '2023-07-26 08:40:17.68204+07', 'Xã Nghi Vạn', '17911', 'Xã');
INSERT INTO category."Wards" VALUES (17914, 412, 'system', '2023-07-26 08:40:17.681165+07', 'system', '2023-07-26 08:40:17.681165+07', 'Xã Nghi Ân', '17914', 'Xã');
INSERT INTO category."Wards" VALUES (17917, 429, 'system', '2023-07-26 08:40:17.682042+07', 'system', '2023-07-26 08:40:17.682042+07', 'Xã Phúc Thọ', '17917', 'Xã');
INSERT INTO category."Wards" VALUES (17920, 412, 'system', '2023-07-26 08:40:17.681167+07', 'system', '2023-07-26 08:40:17.681167+07', 'Xã Nghi Kim', '17920', 'Xã');
INSERT INTO category."Wards" VALUES (17923, 412, 'system', '2023-07-26 08:40:17.681169+07', 'system', '2023-07-26 08:40:17.68117+07', 'Xã Nghi Đức', '17923', 'Xã');
INSERT INTO category."Wards" VALUES (17926, 429, 'system', '2023-07-26 08:40:17.682044+07', 'system', '2023-07-26 08:40:17.682044+07', 'Xã Nghi Thái', '17926', 'Xã');
INSERT INTO category."Wards" VALUES (17932, 430, 'system', '2023-07-26 08:40:17.682046+07', 'system', '2023-07-26 08:40:17.682046+07', 'Xã Nam Hưng', '17932', 'Xã');
INSERT INTO category."Wards" VALUES (17935, 430, 'system', '2023-07-26 08:40:17.682048+07', 'system', '2023-07-26 08:40:17.682048+07', 'Xã Nam Nghĩa', '17935', 'Xã');
INSERT INTO category."Wards" VALUES (17938, 430, 'system', '2023-07-26 08:40:17.68205+07', 'system', '2023-07-26 08:40:17.682051+07', 'Xã Nam Thanh', '17938', 'Xã');
INSERT INTO category."Wards" VALUES (17941, 430, 'system', '2023-07-26 08:40:17.682053+07', 'system', '2023-07-26 08:40:17.682053+07', 'Xã Nam Anh', '17941', 'Xã');
INSERT INTO category."Wards" VALUES (17944, 430, 'system', '2023-07-26 08:40:17.682055+07', 'system', '2023-07-26 08:40:17.682055+07', 'Xã Nam Xuân', '17944', 'Xã');
INSERT INTO category."Wards" VALUES (17947, 430, 'system', '2023-07-26 08:40:17.682057+07', 'system', '2023-07-26 08:40:17.682057+07', 'Xã Nam Thái', '17947', 'Xã');
INSERT INTO category."Wards" VALUES (17950, 430, 'system', '2023-07-26 08:40:17.682059+07', 'system', '2023-07-26 08:40:17.682059+07', 'Thị trấn Nam Đàn', '17950', 'Thị trấn');
INSERT INTO category."Wards" VALUES (17953, 430, 'system', '2023-07-26 08:40:17.682061+07', 'system', '2023-07-26 08:40:17.682061+07', 'Xã Nam Lĩnh', '17953', 'Xã');
INSERT INTO category."Wards" VALUES (17956, 430, 'system', '2023-07-26 08:40:17.682064+07', 'system', '2023-07-26 08:40:17.682064+07', 'Xã Nam Giang', '17956', 'Xã');
INSERT INTO category."Wards" VALUES (17959, 430, 'system', '2023-07-26 08:40:17.682066+07', 'system', '2023-07-26 08:40:17.682066+07', 'Xã Xuân Hòa', '17959', 'Xã');
INSERT INTO category."Wards" VALUES (17962, 430, 'system', '2023-07-26 08:40:17.682068+07', 'system', '2023-07-26 08:40:17.682068+07', 'Xã Hùng Tiến', '17962', 'Xã');
INSERT INTO category."Wards" VALUES (17968, 430, 'system', '2023-07-26 08:40:17.68207+07', 'system', '2023-07-26 08:40:17.68207+07', 'Xã Thượng Tân Lộc', '17968', 'Xã');
INSERT INTO category."Wards" VALUES (17971, 430, 'system', '2023-07-26 08:40:17.682072+07', 'system', '2023-07-26 08:40:17.682072+07', 'Xã Kim Liên', '17971', 'Xã');
INSERT INTO category."Wards" VALUES (17977, 430, 'system', '2023-07-26 08:40:17.682074+07', 'system', '2023-07-26 08:40:17.682074+07', 'Xã Hồng Long', '17977', 'Xã');
INSERT INTO category."Wards" VALUES (17980, 430, 'system', '2023-07-26 08:40:17.682077+07', 'system', '2023-07-26 08:40:17.682077+07', 'Xã Xuân Lâm', '17980', 'Xã');
INSERT INTO category."Wards" VALUES (17983, 430, 'system', '2023-07-26 08:40:17.682079+07', 'system', '2023-07-26 08:40:17.682079+07', 'Xã Nam Cát', '17983', 'Xã');
INSERT INTO category."Wards" VALUES (17986, 430, 'system', '2023-07-26 08:40:17.682082+07', 'system', '2023-07-26 08:40:17.682082+07', 'Xã Khánh Sơn', '17986', 'Xã');
INSERT INTO category."Wards" VALUES (17989, 430, 'system', '2023-07-26 08:40:17.682084+07', 'system', '2023-07-26 08:40:17.682084+07', 'Xã Trung Phúc Cường', '17989', 'Xã');
INSERT INTO category."Wards" VALUES (17998, 430, 'system', '2023-07-26 08:40:17.682086+07', 'system', '2023-07-26 08:40:17.682086+07', 'Xã Nam Kim', '17998', 'Xã');
INSERT INTO category."Wards" VALUES (18001, 431, 'system', '2023-07-26 08:40:17.682089+07', 'system', '2023-07-26 08:40:17.682089+07', 'Thị trấn Hưng Nguyên', '18001', 'Thị trấn');
INSERT INTO category."Wards" VALUES (18004, 431, 'system', '2023-07-26 08:40:17.682091+07', 'system', '2023-07-26 08:40:17.682091+07', 'Xã Hưng Trung', '18004', 'Xã');
INSERT INTO category."Wards" VALUES (18007, 431, 'system', '2023-07-26 08:40:17.682093+07', 'system', '2023-07-26 08:40:17.682093+07', 'Xã Hưng Yên', '18007', 'Xã');
INSERT INTO category."Wards" VALUES (18008, 431, 'system', '2023-07-26 08:40:17.682095+07', 'system', '2023-07-26 08:40:17.682095+07', 'Xã Hưng Yên Bắc', '18008', 'Xã');
INSERT INTO category."Wards" VALUES (18010, 431, 'system', '2023-07-26 08:40:17.682098+07', 'system', '2023-07-26 08:40:17.682098+07', 'Xã Hưng Tây', '18010', 'Xã');
INSERT INTO category."Wards" VALUES (18013, 412, 'system', '2023-07-26 08:40:17.681172+07', 'system', '2023-07-26 08:40:17.681172+07', 'Xã Hưng Chính', '18013', 'Xã');
INSERT INTO category."Wards" VALUES (18016, 431, 'system', '2023-07-26 08:40:17.682099+07', 'system', '2023-07-26 08:40:17.682099+07', 'Xã Hưng Đạo', '18016', 'Xã');
INSERT INTO category."Wards" VALUES (18019, 431, 'system', '2023-07-26 08:40:17.682101+07', 'system', '2023-07-26 08:40:17.682102+07', 'Xã Hưng Mỹ', '18019', 'Xã');
INSERT INTO category."Wards" VALUES (18022, 431, 'system', '2023-07-26 08:40:17.682104+07', 'system', '2023-07-26 08:40:17.682104+07', 'Xã Hưng Thịnh', '18022', 'Xã');
INSERT INTO category."Wards" VALUES (18025, 431, 'system', '2023-07-26 08:40:17.682106+07', 'system', '2023-07-26 08:40:17.682106+07', 'Xã Hưng Lĩnh', '18025', 'Xã');
INSERT INTO category."Wards" VALUES (18028, 431, 'system', '2023-07-26 08:40:17.682108+07', 'system', '2023-07-26 08:40:17.682108+07', 'Xã Hưng Thông', '18028', 'Xã');
INSERT INTO category."Wards" VALUES (18031, 431, 'system', '2023-07-26 08:40:17.68211+07', 'system', '2023-07-26 08:40:17.68211+07', 'Xã Hưng Tân', '18031', 'Xã');
INSERT INTO category."Wards" VALUES (18034, 431, 'system', '2023-07-26 08:40:17.682112+07', 'system', '2023-07-26 08:40:17.682112+07', 'Xã Hưng Lợi', '18034', 'Xã');
INSERT INTO category."Wards" VALUES (18037, 431, 'system', '2023-07-26 08:40:17.682114+07', 'system', '2023-07-26 08:40:17.682114+07', 'Xã Hưng Nghĩa', '18037', 'Xã');
INSERT INTO category."Wards" VALUES (18040, 431, 'system', '2023-07-26 08:40:17.682116+07', 'system', '2023-07-26 08:40:17.682116+07', 'Xã Hưng Phúc', '18040', 'Xã');
INSERT INTO category."Wards" VALUES (18043, 431, 'system', '2023-07-26 08:40:17.682119+07', 'system', '2023-07-26 08:40:17.682119+07', 'Xã Long Xá', '18043', 'Xã');
INSERT INTO category."Wards" VALUES (18052, 431, 'system', '2023-07-26 08:40:17.682121+07', 'system', '2023-07-26 08:40:17.682121+07', 'Xã Châu Nhân', '18052', 'Xã');
INSERT INTO category."Wards" VALUES (18055, 431, 'system', '2023-07-26 08:40:17.682123+07', 'system', '2023-07-26 08:40:17.682123+07', 'Xã Xuân Lam', '18055', 'Xã');
INSERT INTO category."Wards" VALUES (18064, 431, 'system', '2023-07-26 08:40:17.682125+07', 'system', '2023-07-26 08:40:17.682125+07', 'Xã Hưng Thành', '18064', 'Xã');
INSERT INTO category."Wards" VALUES (18070, 436, 'system', '2023-07-26 08:40:17.68215+07', 'system', '2023-07-26 08:40:17.68215+07', 'Phường Trần Phú', '18070', 'Phường');
INSERT INTO category."Wards" VALUES (18073, 436, 'system', '2023-07-26 08:40:17.682153+07', 'system', '2023-07-26 08:40:17.682153+07', 'Phường Nam Hà', '18073', 'Phường');
INSERT INTO category."Wards" VALUES (18076, 436, 'system', '2023-07-26 08:40:17.682155+07', 'system', '2023-07-26 08:40:17.682155+07', 'Phường Bắc Hà', '18076', 'Phường');
INSERT INTO category."Wards" VALUES (18077, 436, 'system', '2023-07-26 08:40:17.682158+07', 'system', '2023-07-26 08:40:17.682158+07', 'Phường Nguyễn Du', '18077', 'Phường');
INSERT INTO category."Wards" VALUES (18079, 436, 'system', '2023-07-26 08:40:17.68216+07', 'system', '2023-07-26 08:40:17.68216+07', 'Phường Tân Giang', '18079', 'Phường');
INSERT INTO category."Wards" VALUES (18082, 436, 'system', '2023-07-26 08:40:17.682162+07', 'system', '2023-07-26 08:40:17.682162+07', 'Phường Đại Nài', '18082', 'Phường');
INSERT INTO category."Wards" VALUES (18085, 436, 'system', '2023-07-26 08:40:17.682165+07', 'system', '2023-07-26 08:40:17.682165+07', 'Phường Hà Huy Tập', '18085', 'Phường');
INSERT INTO category."Wards" VALUES (18088, 436, 'system', '2023-07-26 08:40:17.682167+07', 'system', '2023-07-26 08:40:17.682167+07', 'Xã Thạch Trung', '18088', 'Xã');
INSERT INTO category."Wards" VALUES (18091, 436, 'system', '2023-07-26 08:40:17.682169+07', 'system', '2023-07-26 08:40:17.682169+07', 'Phường Thạch Quý', '18091', 'Phường');
INSERT INTO category."Wards" VALUES (18094, 436, 'system', '2023-07-26 08:40:17.682171+07', 'system', '2023-07-26 08:40:17.682171+07', 'Phường Thạch Linh', '18094', 'Phường');
INSERT INTO category."Wards" VALUES (18097, 436, 'system', '2023-07-26 08:40:17.682174+07', 'system', '2023-07-26 08:40:17.682174+07', 'Phường Văn Yên', '18097', 'Phường');
INSERT INTO category."Wards" VALUES (18100, 436, 'system', '2023-07-26 08:40:17.682176+07', 'system', '2023-07-26 08:40:17.682176+07', 'Xã Thạch Hạ', '18100', 'Xã');
INSERT INTO category."Wards" VALUES (18103, 436, 'system', '2023-07-26 08:40:17.682178+07', 'system', '2023-07-26 08:40:17.682178+07', 'Xã Đồng Môn', '18103', 'Xã');
INSERT INTO category."Wards" VALUES (18109, 436, 'system', '2023-07-26 08:40:17.68218+07', 'system', '2023-07-26 08:40:17.68218+07', 'Xã Thạch Hưng', '18109', 'Xã');
INSERT INTO category."Wards" VALUES (18112, 436, 'system', '2023-07-26 08:40:17.682183+07', 'system', '2023-07-26 08:40:17.682183+07', 'Xã Thạch Bình', '18112', 'Xã');
INSERT INTO category."Wards" VALUES (18115, 437, 'system', '2023-07-26 08:40:17.682185+07', 'system', '2023-07-26 08:40:17.682185+07', 'Phường Bắc Hồng', '18115', 'Phường');
INSERT INTO category."Wards" VALUES (18118, 437, 'system', '2023-07-26 08:40:17.682187+07', 'system', '2023-07-26 08:40:17.682187+07', 'Phường Nam Hồng', '18118', 'Phường');
INSERT INTO category."Wards" VALUES (18121, 437, 'system', '2023-07-26 08:40:17.682189+07', 'system', '2023-07-26 08:40:17.682189+07', 'Phường Trung Lương', '18121', 'Phường');
INSERT INTO category."Wards" VALUES (18124, 437, 'system', '2023-07-26 08:40:17.682191+07', 'system', '2023-07-26 08:40:17.682192+07', 'Phường Đức Thuận', '18124', 'Phường');
INSERT INTO category."Wards" VALUES (18127, 437, 'system', '2023-07-26 08:40:17.682194+07', 'system', '2023-07-26 08:40:17.682194+07', 'Phường Đậu Liêu', '18127', 'Phường');
INSERT INTO category."Wards" VALUES (18130, 437, 'system', '2023-07-26 08:40:17.682196+07', 'system', '2023-07-26 08:40:17.682196+07', 'Xã Thuận Lộc', '18130', 'Xã');
INSERT INTO category."Wards" VALUES (18133, 439, 'system', '2023-07-26 08:40:17.682198+07', 'system', '2023-07-26 08:40:17.682198+07', 'Thị trấn Phố Châu', '18133', 'Thị trấn');
INSERT INTO category."Wards" VALUES (18136, 439, 'system', '2023-07-26 08:40:17.682201+07', 'system', '2023-07-26 08:40:17.682201+07', 'Thị trấn  Tây Sơn', '18136', 'Thị trấn');
INSERT INTO category."Wards" VALUES (18139, 439, 'system', '2023-07-26 08:40:17.682203+07', 'system', '2023-07-26 08:40:17.682203+07', 'Xã Sơn Hồng', '18139', 'Xã');
INSERT INTO category."Wards" VALUES (18142, 439, 'system', '2023-07-26 08:40:17.682205+07', 'system', '2023-07-26 08:40:17.682206+07', 'Xã Sơn Tiến', '18142', 'Xã');
INSERT INTO category."Wards" VALUES (18145, 439, 'system', '2023-07-26 08:40:17.682208+07', 'system', '2023-07-26 08:40:17.682208+07', 'Xã Sơn Lâm', '18145', 'Xã');
INSERT INTO category."Wards" VALUES (18148, 439, 'system', '2023-07-26 08:40:17.68221+07', 'system', '2023-07-26 08:40:17.68221+07', 'Xã Sơn Lễ', '18148', 'Xã');
INSERT INTO category."Wards" VALUES (18157, 439, 'system', '2023-07-26 08:40:17.682212+07', 'system', '2023-07-26 08:40:17.682212+07', 'Xã Sơn Giang', '18157', 'Xã');
INSERT INTO category."Wards" VALUES (18160, 439, 'system', '2023-07-26 08:40:17.682214+07', 'system', '2023-07-26 08:40:17.682214+07', 'Xã Sơn Lĩnh', '18160', 'Xã');
INSERT INTO category."Wards" VALUES (18163, 439, 'system', '2023-07-26 08:40:17.682216+07', 'system', '2023-07-26 08:40:17.682216+07', 'Xã An Hòa Thịnh', '18163', 'Xã');
INSERT INTO category."Wards" VALUES (18172, 439, 'system', '2023-07-26 08:40:17.682218+07', 'system', '2023-07-26 08:40:17.682218+07', 'Xã Sơn Tây', '18172', 'Xã');
INSERT INTO category."Wards" VALUES (18175, 439, 'system', '2023-07-26 08:40:17.682221+07', 'system', '2023-07-26 08:40:17.682221+07', 'Xã Sơn Ninh', '18175', 'Xã');
INSERT INTO category."Wards" VALUES (18178, 439, 'system', '2023-07-26 08:40:17.682223+07', 'system', '2023-07-26 08:40:17.682223+07', 'Xã Sơn Châu', '18178', 'Xã');
INSERT INTO category."Wards" VALUES (18181, 439, 'system', '2023-07-26 08:40:17.682225+07', 'system', '2023-07-26 08:40:17.682225+07', 'Xã Tân Mỹ Hà', '18181', 'Xã');
INSERT INTO category."Wards" VALUES (18184, 439, 'system', '2023-07-26 08:40:17.682227+07', 'system', '2023-07-26 08:40:17.682227+07', 'Xã Quang Diệm', '18184', 'Xã');
INSERT INTO category."Wards" VALUES (18187, 439, 'system', '2023-07-26 08:40:17.682229+07', 'system', '2023-07-26 08:40:17.682229+07', 'Xã Sơn Trung', '18187', 'Xã');
INSERT INTO category."Wards" VALUES (18190, 439, 'system', '2023-07-26 08:40:17.682231+07', 'system', '2023-07-26 08:40:17.682231+07', 'Xã Sơn Bằng', '18190', 'Xã');
INSERT INTO category."Wards" VALUES (18193, 439, 'system', '2023-07-26 08:40:17.682234+07', 'system', '2023-07-26 08:40:17.682234+07', 'Xã Sơn Bình', '18193', 'Xã');
INSERT INTO category."Wards" VALUES (18196, 439, 'system', '2023-07-26 08:40:17.682236+07', 'system', '2023-07-26 08:40:17.682236+07', 'Xã Sơn Kim 1', '18196', 'Xã');
INSERT INTO category."Wards" VALUES (18199, 439, 'system', '2023-07-26 08:40:17.682239+07', 'system', '2023-07-26 08:40:17.682239+07', 'Xã Sơn Kim 2', '18199', 'Xã');
INSERT INTO category."Wards" VALUES (18202, 439, 'system', '2023-07-26 08:40:17.682241+07', 'system', '2023-07-26 08:40:17.682241+07', 'Xã Sơn Trà', '18202', 'Xã');
INSERT INTO category."Wards" VALUES (18205, 439, 'system', '2023-07-26 08:40:17.682243+07', 'system', '2023-07-26 08:40:17.682243+07', 'Xã Sơn Long', '18205', 'Xã');
INSERT INTO category."Wards" VALUES (18211, 439, 'system', '2023-07-26 08:40:17.682245+07', 'system', '2023-07-26 08:40:17.682245+07', 'Xã Kim Hoa', '18211', 'Xã');
INSERT INTO category."Wards" VALUES (18214, 439, 'system', '2023-07-26 08:40:17.682247+07', 'system', '2023-07-26 08:40:17.682247+07', 'Xã Sơn Hàm', '18214', 'Xã');
INSERT INTO category."Wards" VALUES (18217, 439, 'system', '2023-07-26 08:40:17.682249+07', 'system', '2023-07-26 08:40:17.682249+07', 'Xã Sơn Phú', '18217', 'Xã');
INSERT INTO category."Wards" VALUES (18223, 439, 'system', '2023-07-26 08:40:17.682251+07', 'system', '2023-07-26 08:40:17.682251+07', 'Xã Sơn Trường', '18223', 'Xã');
INSERT INTO category."Wards" VALUES (18229, 440, 'system', '2023-07-26 08:40:17.682253+07', 'system', '2023-07-26 08:40:17.682253+07', 'Thị trấn Đức Thọ', '18229', 'Thị trấn');
INSERT INTO category."Wards" VALUES (18235, 440, 'system', '2023-07-26 08:40:17.682264+07', 'system', '2023-07-26 08:40:17.682264+07', 'Xã Quang Vĩnh', '18235', 'Xã');
INSERT INTO category."Wards" VALUES (18241, 440, 'system', '2023-07-26 08:40:17.682267+07', 'system', '2023-07-26 08:40:17.682267+07', 'Xã Tùng Châu', '18241', 'Xã');
INSERT INTO category."Wards" VALUES (18244, 440, 'system', '2023-07-26 08:40:17.682269+07', 'system', '2023-07-26 08:40:17.682269+07', 'Xã Trường Sơn', '18244', 'Xã');
INSERT INTO category."Wards" VALUES (18247, 440, 'system', '2023-07-26 08:40:17.682271+07', 'system', '2023-07-26 08:40:17.682271+07', 'Xã Liên Minh', '18247', 'Xã');
INSERT INTO category."Wards" VALUES (18253, 440, 'system', '2023-07-26 08:40:17.682273+07', 'system', '2023-07-26 08:40:17.682273+07', 'Xã Yên Hồ', '18253', 'Xã');
INSERT INTO category."Wards" VALUES (18259, 440, 'system', '2023-07-26 08:40:17.682275+07', 'system', '2023-07-26 08:40:17.682275+07', 'Xã Tùng Ảnh', '18259', 'Xã');
INSERT INTO category."Wards" VALUES (18262, 440, 'system', '2023-07-26 08:40:17.682277+07', 'system', '2023-07-26 08:40:17.682277+07', 'Xã Bùi La Nhân', '18262', 'Xã');
INSERT INTO category."Wards" VALUES (18274, 440, 'system', '2023-07-26 08:40:17.682279+07', 'system', '2023-07-26 08:40:17.682279+07', 'Xã Thanh Bình Thịnh', '18274', 'Xã');
INSERT INTO category."Wards" VALUES (18277, 440, 'system', '2023-07-26 08:40:17.682282+07', 'system', '2023-07-26 08:40:17.682282+07', 'Xã Lâm Trung Thủy', '18277', 'Xã');
INSERT INTO category."Wards" VALUES (18280, 440, 'system', '2023-07-26 08:40:17.682284+07', 'system', '2023-07-26 08:40:17.682284+07', 'Xã Hòa Lạc', '18280', 'Xã');
INSERT INTO category."Wards" VALUES (18283, 440, 'system', '2023-07-26 08:40:17.682286+07', 'system', '2023-07-26 08:40:17.682286+07', 'Xã Tân Dân', '18283', 'Xã');
INSERT INTO category."Wards" VALUES (18298, 440, 'system', '2023-07-26 08:40:17.682288+07', 'system', '2023-07-26 08:40:17.682288+07', 'Xã An Dũng', '18298', 'Xã');
INSERT INTO category."Wards" VALUES (18304, 440, 'system', '2023-07-26 08:40:17.68229+07', 'system', '2023-07-26 08:40:17.68229+07', 'Xã Đức Đồng', '18304', 'Xã');
INSERT INTO category."Wards" VALUES (18307, 440, 'system', '2023-07-26 08:40:17.682293+07', 'system', '2023-07-26 08:40:17.682293+07', 'Xã Đức Lạng', '18307', 'Xã');
INSERT INTO category."Wards" VALUES (18310, 440, 'system', '2023-07-26 08:40:17.682295+07', 'system', '2023-07-26 08:40:17.682295+07', 'Xã Tân Hương', '18310', 'Xã');
INSERT INTO category."Wards" VALUES (18313, 441, 'system', '2023-07-26 08:40:17.682297+07', 'system', '2023-07-26 08:40:17.682297+07', 'Thị trấn Vũ Quang', '18313', 'Thị trấn');
INSERT INTO category."Wards" VALUES (18316, 441, 'system', '2023-07-26 08:40:17.682299+07', 'system', '2023-07-26 08:40:17.682299+07', 'Xã Ân Phú', '18316', 'Xã');
INSERT INTO category."Wards" VALUES (18319, 441, 'system', '2023-07-26 08:40:17.682302+07', 'system', '2023-07-26 08:40:17.682302+07', 'Xã Đức Giang', '18319', 'Xã');
INSERT INTO category."Wards" VALUES (18322, 441, 'system', '2023-07-26 08:40:17.682304+07', 'system', '2023-07-26 08:40:17.682304+07', 'Xã Đức Lĩnh', '18322', 'Xã');
INSERT INTO category."Wards" VALUES (18325, 441, 'system', '2023-07-26 08:40:17.682306+07', 'system', '2023-07-26 08:40:17.682306+07', 'Xã Thọ Điền', '18325', 'Xã');
INSERT INTO category."Wards" VALUES (18328, 441, 'system', '2023-07-26 08:40:17.682308+07', 'system', '2023-07-26 08:40:17.682308+07', 'Xã Đức Hương', '18328', 'Xã');
INSERT INTO category."Wards" VALUES (18331, 441, 'system', '2023-07-26 08:40:17.682311+07', 'system', '2023-07-26 08:40:17.682311+07', 'Xã Đức Bồng', '18331', 'Xã');
INSERT INTO category."Wards" VALUES (18334, 441, 'system', '2023-07-26 08:40:17.682313+07', 'system', '2023-07-26 08:40:17.682313+07', 'Xã Đức Liên', '18334', 'Xã');
INSERT INTO category."Wards" VALUES (18340, 441, 'system', '2023-07-26 08:40:17.682315+07', 'system', '2023-07-26 08:40:17.682315+07', 'Xã Hương Minh', '18340', 'Xã');
INSERT INTO category."Wards" VALUES (18343, 441, 'system', '2023-07-26 08:40:17.682317+07', 'system', '2023-07-26 08:40:17.682317+07', 'Xã Quang Thọ', '18343', 'Xã');
INSERT INTO category."Wards" VALUES (18352, 442, 'system', '2023-07-26 08:40:17.682319+07', 'system', '2023-07-26 08:40:17.682319+07', 'Thị trấn Xuân An', '18352', 'Thị trấn');
INSERT INTO category."Wards" VALUES (18355, 442, 'system', '2023-07-26 08:40:17.682321+07', 'system', '2023-07-26 08:40:17.682321+07', 'Xã Xuân Hội', '18355', 'Xã');
INSERT INTO category."Wards" VALUES (18358, 442, 'system', '2023-07-26 08:40:17.682324+07', 'system', '2023-07-26 08:40:17.682324+07', 'Xã Đan Trường', '18358', 'Xã');
INSERT INTO category."Wards" VALUES (18364, 442, 'system', '2023-07-26 08:40:17.682327+07', 'system', '2023-07-26 08:40:17.682327+07', 'Xã Xuân Phổ', '18364', 'Xã');
INSERT INTO category."Wards" VALUES (18367, 442, 'system', '2023-07-26 08:40:17.682329+07', 'system', '2023-07-26 08:40:17.682329+07', 'Xã Xuân Hải', '18367', 'Xã');
INSERT INTO category."Wards" VALUES (18370, 442, 'system', '2023-07-26 08:40:17.682331+07', 'system', '2023-07-26 08:40:17.682331+07', 'Xã Xuân Giang', '18370', 'Xã');
INSERT INTO category."Wards" VALUES (18373, 442, 'system', '2023-07-26 08:40:17.682333+07', 'system', '2023-07-26 08:40:17.682333+07', 'Thị trấn Tiên Điền', '18373', 'Thị trấn');
INSERT INTO category."Wards" VALUES (18376, 442, 'system', '2023-07-26 08:40:17.682336+07', 'system', '2023-07-26 08:40:17.682336+07', 'Xã Xuân Yên', '18376', 'Xã');
INSERT INTO category."Wards" VALUES (18379, 442, 'system', '2023-07-26 08:40:17.682338+07', 'system', '2023-07-26 08:40:17.682338+07', 'Xã Xuân Mỹ', '18379', 'Xã');
INSERT INTO category."Wards" VALUES (18382, 442, 'system', '2023-07-26 08:40:17.68234+07', 'system', '2023-07-26 08:40:17.68234+07', 'Xã Xuân Thành', '18382', 'Xã');
INSERT INTO category."Wards" VALUES (18385, 442, 'system', '2023-07-26 08:40:17.682342+07', 'system', '2023-07-26 08:40:17.682342+07', 'Xã Xuân Viên', '18385', 'Xã');
INSERT INTO category."Wards" VALUES (18388, 442, 'system', '2023-07-26 08:40:17.682344+07', 'system', '2023-07-26 08:40:17.682344+07', 'Xã Xuân Hồng', '18388', 'Xã');
INSERT INTO category."Wards" VALUES (18391, 442, 'system', '2023-07-26 08:40:17.682346+07', 'system', '2023-07-26 08:40:17.682346+07', 'Xã Cỗ Đạm', '18391', 'Xã');
INSERT INTO category."Wards" VALUES (18394, 442, 'system', '2023-07-26 08:40:17.682348+07', 'system', '2023-07-26 08:40:17.682349+07', 'Xã Xuân Liên', '18394', 'Xã');
INSERT INTO category."Wards" VALUES (18397, 442, 'system', '2023-07-26 08:40:17.682351+07', 'system', '2023-07-26 08:40:17.682351+07', 'Xã Xuân Lĩnh', '18397', 'Xã');
INSERT INTO category."Wards" VALUES (18400, 442, 'system', '2023-07-26 08:40:17.682353+07', 'system', '2023-07-26 08:40:17.682353+07', 'Xã Xuân Lam', '18400', 'Xã');
INSERT INTO category."Wards" VALUES (18403, 442, 'system', '2023-07-26 08:40:17.682355+07', 'system', '2023-07-26 08:40:17.682355+07', 'Xã Cương Gián', '18403', 'Xã');
INSERT INTO category."Wards" VALUES (18406, 443, 'system', '2023-07-26 08:40:17.682357+07', 'system', '2023-07-26 08:40:17.682357+07', 'Thị trấn Nghèn', '18406', 'Thị trấn');
INSERT INTO category."Wards" VALUES (18409, 448, 'system', '2023-07-26 08:40:17.682595+07', 'system', '2023-07-26 08:40:17.682595+07', 'Xã Tân Lộc', '18409', 'Xã');
INSERT INTO category."Wards" VALUES (18412, 448, 'system', '2023-07-26 08:40:17.682597+07', 'system', '2023-07-26 08:40:17.682597+07', 'Xã Hồng Lộc', '18412', 'Xã');
INSERT INTO category."Wards" VALUES (18415, 443, 'system', '2023-07-26 08:40:17.68236+07', 'system', '2023-07-26 08:40:17.68236+07', 'Xã Thiên Lộc', '18415', 'Xã');
INSERT INTO category."Wards" VALUES (18418, 443, 'system', '2023-07-26 08:40:17.682362+07', 'system', '2023-07-26 08:40:17.682362+07', 'Xã Thuần Thiện', '18418', 'Xã');
INSERT INTO category."Wards" VALUES (18421, 448, 'system', '2023-07-26 08:40:17.682599+07', 'system', '2023-07-26 08:40:17.682599+07', 'Xã Thịnh Lộc', '18421', 'Xã');
INSERT INTO category."Wards" VALUES (18427, 443, 'system', '2023-07-26 08:40:17.682364+07', 'system', '2023-07-26 08:40:17.682364+07', 'Xã Vượng Lộc', '18427', 'Xã');
INSERT INTO category."Wards" VALUES (18430, 448, 'system', '2023-07-26 08:40:17.682602+07', 'system', '2023-07-26 08:40:17.682602+07', 'Xã Bình An', '18430', 'Xã');
INSERT INTO category."Wards" VALUES (18433, 443, 'system', '2023-07-26 08:40:17.682366+07', 'system', '2023-07-26 08:40:17.682366+07', 'Xã Thanh Lộc', '18433', 'Xã');
INSERT INTO category."Wards" VALUES (18436, 443, 'system', '2023-07-26 08:40:17.682368+07', 'system', '2023-07-26 08:40:17.682368+07', 'Xã Kim Song Trường', '18436', 'Xã');
INSERT INTO category."Wards" VALUES (18439, 443, 'system', '2023-07-26 08:40:17.682371+07', 'system', '2023-07-26 08:40:17.682371+07', 'Xã Thường Nga', '18439', 'Xã');
INSERT INTO category."Wards" VALUES (18445, 443, 'system', '2023-07-26 08:40:17.682373+07', 'system', '2023-07-26 08:40:17.682373+07', 'Xã Tùng Lộc', '18445', 'Xã');
INSERT INTO category."Wards" VALUES (18454, 443, 'system', '2023-07-26 08:40:17.682375+07', 'system', '2023-07-26 08:40:17.682375+07', 'Xã Phú Lộc', '18454', 'Xã');
INSERT INTO category."Wards" VALUES (18457, 448, 'system', '2023-07-26 08:40:17.682604+07', 'system', '2023-07-26 08:40:17.682604+07', 'Xã Ích Hậu', '18457', 'Xã');
INSERT INTO category."Wards" VALUES (18463, 443, 'system', '2023-07-26 08:40:17.682377+07', 'system', '2023-07-26 08:40:17.682377+07', 'Xã Gia Hanh', '18463', 'Xã');
INSERT INTO category."Wards" VALUES (18466, 443, 'system', '2023-07-26 08:40:17.682379+07', 'system', '2023-07-26 08:40:17.682379+07', 'Xã Khánh Vĩnh Yên', '18466', 'Xã');
INSERT INTO category."Wards" VALUES (18472, 443, 'system', '2023-07-26 08:40:17.682381+07', 'system', '2023-07-26 08:40:17.682381+07', 'Xã Trung Lộc', '18472', 'Xã');
INSERT INTO category."Wards" VALUES (18475, 443, 'system', '2023-07-26 08:40:17.682383+07', 'system', '2023-07-26 08:40:17.682383+07', 'Xã Xuân Lộc', '18475', 'Xã');
INSERT INTO category."Wards" VALUES (18478, 443, 'system', '2023-07-26 08:40:17.682385+07', 'system', '2023-07-26 08:40:17.682385+07', 'Xã Thượng Lộc', '18478', 'Xã');
INSERT INTO category."Wards" VALUES (18481, 443, 'system', '2023-07-26 08:40:17.682388+07', 'system', '2023-07-26 08:40:17.682388+07', 'Xã Quang Lộc', '18481', 'Xã');
INSERT INTO category."Wards" VALUES (18484, 443, 'system', '2023-07-26 08:40:17.68239+07', 'system', '2023-07-26 08:40:17.68239+07', 'Thị trấn Đồng Lộc', '18484', 'Thị trấn');
INSERT INTO category."Wards" VALUES (18487, 443, 'system', '2023-07-26 08:40:17.682392+07', 'system', '2023-07-26 08:40:17.682392+07', 'Xã Mỹ Lộc', '18487', 'Xã');
INSERT INTO category."Wards" VALUES (18490, 443, 'system', '2023-07-26 08:40:17.682395+07', 'system', '2023-07-26 08:40:17.682395+07', 'Xã Sơn Lộc', '18490', 'Xã');
INSERT INTO category."Wards" VALUES (18493, 448, 'system', '2023-07-26 08:40:17.682606+07', 'system', '2023-07-26 08:40:17.682606+07', 'Xã Phù Lưu', '18493', 'Xã');
INSERT INTO category."Wards" VALUES (18496, 444, 'system', '2023-07-26 08:40:17.682397+07', 'system', '2023-07-26 08:40:17.682397+07', 'Thị trấn Hương Khê', '18496', 'Thị trấn');
INSERT INTO category."Wards" VALUES (18499, 444, 'system', '2023-07-26 08:40:17.682399+07', 'system', '2023-07-26 08:40:17.682399+07', 'Xã Điền Mỹ', '18499', 'Xã');
INSERT INTO category."Wards" VALUES (18502, 444, 'system', '2023-07-26 08:40:17.682401+07', 'system', '2023-07-26 08:40:17.682402+07', 'Xã Hà Linh', '18502', 'Xã');
INSERT INTO category."Wards" VALUES (18505, 444, 'system', '2023-07-26 08:40:17.682404+07', 'system', '2023-07-26 08:40:17.682404+07', 'Xã Hương Thủy', '18505', 'Xã');
INSERT INTO category."Wards" VALUES (18508, 444, 'system', '2023-07-26 08:40:17.682406+07', 'system', '2023-07-26 08:40:17.682406+07', 'Xã Hòa Hải', '18508', 'Xã');
INSERT INTO category."Wards" VALUES (18514, 444, 'system', '2023-07-26 08:40:17.682409+07', 'system', '2023-07-26 08:40:17.682409+07', 'Xã Phúc Đồng', '18514', 'Xã');
INSERT INTO category."Wards" VALUES (18517, 444, 'system', '2023-07-26 08:40:17.682411+07', 'system', '2023-07-26 08:40:17.682411+07', 'Xã Hương Giang', '18517', 'Xã');
INSERT INTO category."Wards" VALUES (18520, 444, 'system', '2023-07-26 08:40:17.682413+07', 'system', '2023-07-26 08:40:17.682413+07', 'Xã Lộc Yên', '18520', 'Xã');
INSERT INTO category."Wards" VALUES (18523, 444, 'system', '2023-07-26 08:40:17.682415+07', 'system', '2023-07-26 08:40:17.682415+07', 'Xã Hương Bình', '18523', 'Xã');
INSERT INTO category."Wards" VALUES (18526, 444, 'system', '2023-07-26 08:40:17.682417+07', 'system', '2023-07-26 08:40:17.682417+07', 'Xã Hương Long', '18526', 'Xã');
INSERT INTO category."Wards" VALUES (18529, 444, 'system', '2023-07-26 08:40:17.682419+07', 'system', '2023-07-26 08:40:17.682419+07', 'Xã Phú Gia', '18529', 'Xã');
INSERT INTO category."Wards" VALUES (18532, 444, 'system', '2023-07-26 08:40:17.682421+07', 'system', '2023-07-26 08:40:17.682422+07', 'Xã Gia Phố', '18532', 'Xã');
INSERT INTO category."Wards" VALUES (18535, 444, 'system', '2023-07-26 08:40:17.682424+07', 'system', '2023-07-26 08:40:17.682424+07', 'Xã Phú Phong', '18535', 'Xã');
INSERT INTO category."Wards" VALUES (18538, 444, 'system', '2023-07-26 08:40:17.682426+07', 'system', '2023-07-26 08:40:17.682426+07', 'Xã Hương Đô', '18538', 'Xã');
INSERT INTO category."Wards" VALUES (18541, 444, 'system', '2023-07-26 08:40:17.682428+07', 'system', '2023-07-26 08:40:17.682428+07', 'Xã Hương Vĩnh', '18541', 'Xã');
INSERT INTO category."Wards" VALUES (18544, 444, 'system', '2023-07-26 08:40:17.68243+07', 'system', '2023-07-26 08:40:17.68243+07', 'Xã Hương Xuân', '18544', 'Xã');
INSERT INTO category."Wards" VALUES (18547, 444, 'system', '2023-07-26 08:40:17.682432+07', 'system', '2023-07-26 08:40:17.682432+07', 'Xã Phúc Trạch', '18547', 'Xã');
INSERT INTO category."Wards" VALUES (18550, 444, 'system', '2023-07-26 08:40:17.682434+07', 'system', '2023-07-26 08:40:17.682434+07', 'Xã Hương Trà', '18550', 'Xã');
INSERT INTO category."Wards" VALUES (18553, 444, 'system', '2023-07-26 08:40:17.682436+07', 'system', '2023-07-26 08:40:17.682437+07', 'Xã Hương Trạch', '18553', 'Xã');
INSERT INTO category."Wards" VALUES (18556, 444, 'system', '2023-07-26 08:40:17.682439+07', 'system', '2023-07-26 08:40:17.682439+07', 'Xã Hương Lâm', '18556', 'Xã');
INSERT INTO category."Wards" VALUES (18559, 444, 'system', '2023-07-26 08:40:17.682441+07', 'system', '2023-07-26 08:40:17.682441+07', 'Xã Hương Liên', '18559', 'Xã');
INSERT INTO category."Wards" VALUES (18562, 445, 'system', '2023-07-26 08:40:17.682443+07', 'system', '2023-07-26 08:40:17.682443+07', 'Thị trấn Thạch Hà', '18562', 'Thị trấn');
INSERT INTO category."Wards" VALUES (18565, 445, 'system', '2023-07-26 08:40:17.682445+07', 'system', '2023-07-26 08:40:17.682445+07', 'Xã Ngọc Sơn', '18565', 'Xã');
INSERT INTO category."Wards" VALUES (18568, 448, 'system', '2023-07-26 08:40:17.682608+07', 'system', '2023-07-26 08:40:17.682608+07', 'Thị trấn Lộc Hà', '18568', 'Thị trấn');
INSERT INTO category."Wards" VALUES (18571, 445, 'system', '2023-07-26 08:40:17.682448+07', 'system', '2023-07-26 08:40:17.682448+07', 'Xã Thạch Hải', '18571', 'Xã');
INSERT INTO category."Wards" VALUES (18577, 448, 'system', '2023-07-26 08:40:17.68261+07', 'system', '2023-07-26 08:40:17.68261+07', 'Xã Thạch Mỹ', '18577', 'Xã');
INSERT INTO category."Wards" VALUES (18580, 448, 'system', '2023-07-26 08:40:17.682612+07', 'system', '2023-07-26 08:40:17.682613+07', 'Xã Thạch Kim', '18580', 'Xã');
INSERT INTO category."Wards" VALUES (18583, 448, 'system', '2023-07-26 08:40:17.682615+07', 'system', '2023-07-26 08:40:17.682615+07', 'Xã Thạch Châu', '18583', 'Xã');
INSERT INTO category."Wards" VALUES (18586, 445, 'system', '2023-07-26 08:40:17.68245+07', 'system', '2023-07-26 08:40:17.68245+07', 'Xã Thạch Kênh', '18586', 'Xã');
INSERT INTO category."Wards" VALUES (18589, 445, 'system', '2023-07-26 08:40:17.682452+07', 'system', '2023-07-26 08:40:17.682452+07', 'Xã Thạch Sơn', '18589', 'Xã');
INSERT INTO category."Wards" VALUES (18592, 445, 'system', '2023-07-26 08:40:17.682454+07', 'system', '2023-07-26 08:40:17.682454+07', 'Xã Thạch Liên', '18592', 'Xã');
INSERT INTO category."Wards" VALUES (18595, 445, 'system', '2023-07-26 08:40:17.682456+07', 'system', '2023-07-26 08:40:17.682456+07', 'Xã Đỉnh Bàn', '18595', 'Xã');
INSERT INTO category."Wards" VALUES (18598, 448, 'system', '2023-07-26 08:40:17.682617+07', 'system', '2023-07-26 08:40:17.682617+07', 'Xã Hộ Độ', '18598', 'Xã');
INSERT INTO category."Wards" VALUES (18601, 445, 'system', '2023-07-26 08:40:17.682458+07', 'system', '2023-07-26 08:40:17.682458+07', 'Xã Việt Tiến', '18601', 'Xã');
INSERT INTO category."Wards" VALUES (18604, 445, 'system', '2023-07-26 08:40:17.68246+07', 'system', '2023-07-26 08:40:17.68246+07', 'Xã Thạch Khê', '18604', 'Xã');
INSERT INTO category."Wards" VALUES (18607, 445, 'system', '2023-07-26 08:40:17.682462+07', 'system', '2023-07-26 08:40:17.682463+07', 'Xã Thạch Long', '18607', 'Xã');
INSERT INTO category."Wards" VALUES (18619, 445, 'system', '2023-07-26 08:40:17.682465+07', 'system', '2023-07-26 08:40:17.682465+07', 'Xã Thạch Trị', '18619', 'Xã');
INSERT INTO category."Wards" VALUES (18622, 445, 'system', '2023-07-26 08:40:17.682467+07', 'system', '2023-07-26 08:40:17.682467+07', 'Xã Thạch Lạc', '18622', 'Xã');
INSERT INTO category."Wards" VALUES (18625, 445, 'system', '2023-07-26 08:40:17.682469+07', 'system', '2023-07-26 08:40:17.682469+07', 'Xã Thạch Ngọc', '18625', 'Xã');
INSERT INTO category."Wards" VALUES (18628, 445, 'system', '2023-07-26 08:40:17.682471+07', 'system', '2023-07-26 08:40:17.682471+07', 'Xã Tượng Sơn', '18628', 'Xã');
INSERT INTO category."Wards" VALUES (18631, 445, 'system', '2023-07-26 08:40:17.682473+07', 'system', '2023-07-26 08:40:17.682473+07', 'Xã Thạch Văn', '18631', 'Xã');
INSERT INTO category."Wards" VALUES (18634, 445, 'system', '2023-07-26 08:40:17.682476+07', 'system', '2023-07-26 08:40:17.682476+07', 'Xã Lưu Vĩnh Sơn', '18634', 'Xã');
INSERT INTO category."Wards" VALUES (18637, 445, 'system', '2023-07-26 08:40:17.682478+07', 'system', '2023-07-26 08:40:17.682478+07', 'Xã Thạch Thắng', '18637', 'Xã');
INSERT INTO category."Wards" VALUES (18643, 445, 'system', '2023-07-26 08:40:17.68248+07', 'system', '2023-07-26 08:40:17.68248+07', 'Xã Thạch Đài', '18643', 'Xã');
INSERT INTO category."Wards" VALUES (18649, 445, 'system', '2023-07-26 08:40:17.682483+07', 'system', '2023-07-26 08:40:17.682483+07', 'Xã Thạch Hội', '18649', 'Xã');
INSERT INTO category."Wards" VALUES (18652, 445, 'system', '2023-07-26 08:40:17.682485+07', 'system', '2023-07-26 08:40:17.682485+07', 'Xã Tân Lâm Hương', '18652', 'Xã');
INSERT INTO category."Wards" VALUES (18658, 445, 'system', '2023-07-26 08:40:17.682487+07', 'system', '2023-07-26 08:40:17.682487+07', 'Xã Thạch Xuân', '18658', 'Xã');
INSERT INTO category."Wards" VALUES (18667, 445, 'system', '2023-07-26 08:40:17.682489+07', 'system', '2023-07-26 08:40:17.682489+07', 'Xã Nam Điền', '18667', 'Xã');
INSERT INTO category."Wards" VALUES (18670, 448, 'system', '2023-07-26 08:40:17.682619+07', 'system', '2023-07-26 08:40:17.682619+07', 'Xã Mai Phụ', '18670', 'Xã');
INSERT INTO category."Wards" VALUES (18673, 446, 'system', '2023-07-26 08:40:17.682491+07', 'system', '2023-07-26 08:40:17.682492+07', 'Thị trấn Cẩm Xuyên', '18673', 'Thị trấn');
INSERT INTO category."Wards" VALUES (18676, 446, 'system', '2023-07-26 08:40:17.682494+07', 'system', '2023-07-26 08:40:17.682494+07', 'Thị trấn Thiên Cầm', '18676', 'Thị trấn');
INSERT INTO category."Wards" VALUES (18679, 446, 'system', '2023-07-26 08:40:17.682496+07', 'system', '2023-07-26 08:40:17.682496+07', 'Xã Yên Hòa', '18679', 'Xã');
INSERT INTO category."Wards" VALUES (18682, 446, 'system', '2023-07-26 08:40:17.682498+07', 'system', '2023-07-26 08:40:17.682498+07', 'Xã Cẩm Dương', '18682', 'Xã');
INSERT INTO category."Wards" VALUES (18685, 446, 'system', '2023-07-26 08:40:17.682501+07', 'system', '2023-07-26 08:40:17.682501+07', 'Xã Cẩm Bình', '18685', 'Xã');
INSERT INTO category."Wards" VALUES (18691, 446, 'system', '2023-07-26 08:40:17.682503+07', 'system', '2023-07-26 08:40:17.682503+07', 'Xã Cẩm Vĩnh', '18691', 'Xã');
INSERT INTO category."Wards" VALUES (18694, 446, 'system', '2023-07-26 08:40:17.682505+07', 'system', '2023-07-26 08:40:17.682505+07', 'Xã Cẩm Thành', '18694', 'Xã');
INSERT INTO category."Wards" VALUES (18697, 446, 'system', '2023-07-26 08:40:17.682507+07', 'system', '2023-07-26 08:40:17.682507+07', 'Xã Cẩm Quang', '18697', 'Xã');
INSERT INTO category."Wards" VALUES (18706, 446, 'system', '2023-07-26 08:40:17.68251+07', 'system', '2023-07-26 08:40:17.68251+07', 'Xã Cẩm Thạch', '18706', 'Xã');
INSERT INTO category."Wards" VALUES (18709, 446, 'system', '2023-07-26 08:40:17.682513+07', 'system', '2023-07-26 08:40:17.682514+07', 'Xã Cẩm Nhượng', '18709', 'Xã');
INSERT INTO category."Wards" VALUES (18712, 446, 'system', '2023-07-26 08:40:17.682518+07', 'system', '2023-07-26 08:40:17.682518+07', 'Xã Nam Phúc Thăng', '18712', 'Xã');
INSERT INTO category."Wards" VALUES (18715, 446, 'system', '2023-07-26 08:40:17.682521+07', 'system', '2023-07-26 08:40:17.682521+07', 'Xã Cẩm Duệ', '18715', 'Xã');
INSERT INTO category."Wards" VALUES (18721, 446, 'system', '2023-07-26 08:40:17.682525+07', 'system', '2023-07-26 08:40:17.682525+07', 'Xã Cẩm Lĩnh', '18721', 'Xã');
INSERT INTO category."Wards" VALUES (18724, 446, 'system', '2023-07-26 08:40:17.682528+07', 'system', '2023-07-26 08:40:17.682528+07', 'Xã Cẩm Quan', '18724', 'Xã');
INSERT INTO category."Wards" VALUES (18727, 446, 'system', '2023-07-26 08:40:17.682532+07', 'system', '2023-07-26 08:40:17.682532+07', 'Xã Cẩm Hà', '18727', 'Xã');
INSERT INTO category."Wards" VALUES (18730, 446, 'system', '2023-07-26 08:40:17.682535+07', 'system', '2023-07-26 08:40:17.682535+07', 'Xã Cẩm Lộc', '18730', 'Xã');
INSERT INTO category."Wards" VALUES (18733, 446, 'system', '2023-07-26 08:40:17.682537+07', 'system', '2023-07-26 08:40:17.682537+07', 'Xã Cẩm Hưng', '18733', 'Xã');
INSERT INTO category."Wards" VALUES (18736, 446, 'system', '2023-07-26 08:40:17.682539+07', 'system', '2023-07-26 08:40:17.682539+07', 'Xã Cẩm Thịnh', '18736', 'Xã');
INSERT INTO category."Wards" VALUES (18739, 446, 'system', '2023-07-26 08:40:17.682541+07', 'system', '2023-07-26 08:40:17.682541+07', 'Xã Cẩm Mỹ', '18739', 'Xã');
INSERT INTO category."Wards" VALUES (18742, 446, 'system', '2023-07-26 08:40:17.682544+07', 'system', '2023-07-26 08:40:17.682544+07', 'Xã Cẩm Trung', '18742', 'Xã');
INSERT INTO category."Wards" VALUES (18745, 446, 'system', '2023-07-26 08:40:17.682546+07', 'system', '2023-07-26 08:40:17.682546+07', 'Xã Cẩm Sơn', '18745', 'Xã');
INSERT INTO category."Wards" VALUES (18748, 446, 'system', '2023-07-26 08:40:17.682548+07', 'system', '2023-07-26 08:40:17.682548+07', 'Xã Cẩm Lạc', '18748', 'Xã');
INSERT INTO category."Wards" VALUES (18751, 446, 'system', '2023-07-26 08:40:17.68255+07', 'system', '2023-07-26 08:40:17.68255+07', 'Xã Cẩm Minh', '18751', 'Xã');
INSERT INTO category."Wards" VALUES (18754, 449, 'system', '2023-07-26 08:40:17.682621+07', 'system', '2023-07-26 08:40:17.682621+07', 'Phường Hưng Trí', '18754', 'Phường');
INSERT INTO category."Wards" VALUES (18757, 447, 'system', '2023-07-26 08:40:17.682552+07', 'system', '2023-07-26 08:40:17.682552+07', 'Xã Kỳ Xuân', '18757', 'Xã');
INSERT INTO category."Wards" VALUES (18760, 447, 'system', '2023-07-26 08:40:17.682554+07', 'system', '2023-07-26 08:40:17.682554+07', 'Xã Kỳ Bắc', '18760', 'Xã');
INSERT INTO category."Wards" VALUES (18763, 447, 'system', '2023-07-26 08:40:17.682556+07', 'system', '2023-07-26 08:40:17.682556+07', 'Xã Kỳ Phú', '18763', 'Xã');
INSERT INTO category."Wards" VALUES (18766, 447, 'system', '2023-07-26 08:40:17.682558+07', 'system', '2023-07-26 08:40:17.682558+07', 'Xã Kỳ Phong', '18766', 'Xã');
INSERT INTO category."Wards" VALUES (18769, 447, 'system', '2023-07-26 08:40:17.68256+07', 'system', '2023-07-26 08:40:17.68256+07', 'Xã Kỳ Tiến', '18769', 'Xã');
INSERT INTO category."Wards" VALUES (18772, 447, 'system', '2023-07-26 08:40:17.682563+07', 'system', '2023-07-26 08:40:17.682563+07', 'Xã Kỳ Giang', '18772', 'Xã');
INSERT INTO category."Wards" VALUES (18775, 447, 'system', '2023-07-26 08:40:17.682565+07', 'system', '2023-07-26 08:40:17.682565+07', 'Xã Kỳ Đồng', '18775', 'Xã');
INSERT INTO category."Wards" VALUES (18778, 447, 'system', '2023-07-26 08:40:17.682567+07', 'system', '2023-07-26 08:40:17.682567+07', 'Xã Kỳ Khang', '18778', 'Xã');
INSERT INTO category."Wards" VALUES (18781, 449, 'system', '2023-07-26 08:40:17.682623+07', 'system', '2023-07-26 08:40:17.682623+07', 'Xã Kỳ Ninh', '18781', 'Xã');
INSERT INTO category."Wards" VALUES (18784, 447, 'system', '2023-07-26 08:40:17.682569+07', 'system', '2023-07-26 08:40:17.682569+07', 'Xã Kỳ Văn', '18784', 'Xã');
INSERT INTO category."Wards" VALUES (18787, 447, 'system', '2023-07-26 08:40:17.682571+07', 'system', '2023-07-26 08:40:17.682571+07', 'Xã Kỳ Trung', '18787', 'Xã');
INSERT INTO category."Wards" VALUES (18790, 447, 'system', '2023-07-26 08:40:17.682574+07', 'system', '2023-07-26 08:40:17.682574+07', 'Xã Kỳ Thọ', '18790', 'Xã');
INSERT INTO category."Wards" VALUES (18793, 447, 'system', '2023-07-26 08:40:17.682576+07', 'system', '2023-07-26 08:40:17.682576+07', 'Xã Kỳ Tây', '18793', 'Xã');
INSERT INTO category."Wards" VALUES (18796, 449, 'system', '2023-07-26 08:40:17.682626+07', 'system', '2023-07-26 08:40:17.682626+07', 'Xã Kỳ Lợi', '18796', 'Xã');
INSERT INTO category."Wards" VALUES (18799, 447, 'system', '2023-07-26 08:40:17.682578+07', 'system', '2023-07-26 08:40:17.682578+07', 'Xã Kỳ Thượng', '18799', 'Xã');
INSERT INTO category."Wards" VALUES (18802, 447, 'system', '2023-07-26 08:40:17.68258+07', 'system', '2023-07-26 08:40:17.68258+07', 'Xã Kỳ Hải', '18802', 'Xã');
INSERT INTO category."Wards" VALUES (18805, 447, 'system', '2023-07-26 08:40:17.682582+07', 'system', '2023-07-26 08:40:17.682582+07', 'Xã Kỳ Thư', '18805', 'Xã');
INSERT INTO category."Wards" VALUES (18808, 449, 'system', '2023-07-26 08:40:17.682628+07', 'system', '2023-07-26 08:40:17.682628+07', 'Xã Kỳ Hà', '18808', 'Xã');
INSERT INTO category."Wards" VALUES (18811, 447, 'system', '2023-07-26 08:40:17.682584+07', 'system', '2023-07-26 08:40:17.682584+07', 'Xã Kỳ Châu', '18811', 'Xã');
INSERT INTO category."Wards" VALUES (18814, 447, 'system', '2023-07-26 08:40:17.682586+07', 'system', '2023-07-26 08:40:17.682587+07', 'Xã Kỳ Tân', '18814', 'Xã');
INSERT INTO category."Wards" VALUES (18820, 449, 'system', '2023-07-26 08:40:17.68263+07', 'system', '2023-07-26 08:40:17.68263+07', 'Phường Kỳ Trinh', '18820', 'Phường');
INSERT INTO category."Wards" VALUES (18823, 449, 'system', '2023-07-26 08:40:17.682632+07', 'system', '2023-07-26 08:40:17.682632+07', 'Phường Kỳ Thịnh', '18823', 'Phường');
INSERT INTO category."Wards" VALUES (18829, 449, 'system', '2023-07-26 08:40:17.682634+07', 'system', '2023-07-26 08:40:17.682634+07', 'Xã Kỳ Hoa', '18829', 'Xã');
INSERT INTO category."Wards" VALUES (18832, 449, 'system', '2023-07-26 08:40:17.682636+07', 'system', '2023-07-26 08:40:17.682637+07', 'Phường Kỳ Phương', '18832', 'Phường');
INSERT INTO category."Wards" VALUES (18835, 449, 'system', '2023-07-26 08:40:17.682639+07', 'system', '2023-07-26 08:40:17.682639+07', 'Phường Kỳ Long', '18835', 'Phường');
INSERT INTO category."Wards" VALUES (18838, 447, 'system', '2023-07-26 08:40:17.682589+07', 'system', '2023-07-26 08:40:17.682589+07', 'Xã Lâm Hợp', '18838', 'Xã');
INSERT INTO category."Wards" VALUES (18841, 449, 'system', '2023-07-26 08:40:17.682641+07', 'system', '2023-07-26 08:40:17.682641+07', 'Phường Kỳ Liên', '18841', 'Phường');
INSERT INTO category."Wards" VALUES (18844, 447, 'system', '2023-07-26 08:40:17.682591+07', 'system', '2023-07-26 08:40:17.682591+07', 'Xã Kỳ Sơn', '18844', 'Xã');
INSERT INTO category."Wards" VALUES (18847, 449, 'system', '2023-07-26 08:40:17.682643+07', 'system', '2023-07-26 08:40:17.682643+07', 'Xã Kỳ Nam', '18847', 'Xã');
INSERT INTO category."Wards" VALUES (18850, 447, 'system', '2023-07-26 08:40:17.682593+07', 'system', '2023-07-26 08:40:17.682593+07', 'Xã Kỳ Lạc', '18850', 'Xã');
INSERT INTO category."Wards" VALUES (18853, 450, 'system', '2023-07-26 08:40:17.682645+07', 'system', '2023-07-26 08:40:17.682645+07', 'Phường Hải Thành', '18853', 'Phường');
INSERT INTO category."Wards" VALUES (18856, 450, 'system', '2023-07-26 08:40:17.682648+07', 'system', '2023-07-26 08:40:17.682648+07', 'Phường Đồng Phú', '18856', 'Phường');
INSERT INTO category."Wards" VALUES (18859, 450, 'system', '2023-07-26 08:40:17.68265+07', 'system', '2023-07-26 08:40:17.68265+07', 'Phường Bắc Lý', '18859', 'Phường');
INSERT INTO category."Wards" VALUES (18865, 450, 'system', '2023-07-26 08:40:17.682653+07', 'system', '2023-07-26 08:40:17.682653+07', 'Phường Nam Lý', '18865', 'Phường');
INSERT INTO category."Wards" VALUES (18868, 450, 'system', '2023-07-26 08:40:17.682656+07', 'system', '2023-07-26 08:40:17.682656+07', 'Phường Đồng Hải', '18868', 'Phường');
INSERT INTO category."Wards" VALUES (18871, 450, 'system', '2023-07-26 08:40:17.682658+07', 'system', '2023-07-26 08:40:17.682658+07', 'Phường Đồng Sơn', '18871', 'Phường');
INSERT INTO category."Wards" VALUES (18874, 450, 'system', '2023-07-26 08:40:17.68266+07', 'system', '2023-07-26 08:40:17.68266+07', 'Phường Phú Hải', '18874', 'Phường');
INSERT INTO category."Wards" VALUES (18877, 450, 'system', '2023-07-26 08:40:17.682663+07', 'system', '2023-07-26 08:40:17.682663+07', 'Phường Bắc Nghĩa', '18877', 'Phường');
INSERT INTO category."Wards" VALUES (18880, 450, 'system', '2023-07-26 08:40:17.682665+07', 'system', '2023-07-26 08:40:17.682665+07', 'Phường Đức Ninh Đông', '18880', 'Phường');
INSERT INTO category."Wards" VALUES (18883, 450, 'system', '2023-07-26 08:40:17.682667+07', 'system', '2023-07-26 08:40:17.682667+07', 'Xã Quang Phú', '18883', 'Xã');
INSERT INTO category."Wards" VALUES (18886, 450, 'system', '2023-07-26 08:40:17.682669+07', 'system', '2023-07-26 08:40:17.682669+07', 'Xã Lộc Ninh', '18886', 'Xã');
INSERT INTO category."Wards" VALUES (18889, 450, 'system', '2023-07-26 08:40:17.682671+07', 'system', '2023-07-26 08:40:17.682672+07', 'Xã Bảo Ninh', '18889', 'Xã');
INSERT INTO category."Wards" VALUES (18892, 450, 'system', '2023-07-26 08:40:17.682674+07', 'system', '2023-07-26 08:40:17.682674+07', 'Xã Nghĩa Ninh', '18892', 'Xã');
INSERT INTO category."Wards" VALUES (18895, 450, 'system', '2023-07-26 08:40:17.682676+07', 'system', '2023-07-26 08:40:17.682676+07', 'Xã Thuận Đức', '18895', 'Xã');
INSERT INTO category."Wards" VALUES (18898, 450, 'system', '2023-07-26 08:40:17.682678+07', 'system', '2023-07-26 08:40:17.682678+07', 'Xã Đức Ninh', '18898', 'Xã');
INSERT INTO category."Wards" VALUES (18901, 452, 'system', '2023-07-26 08:40:17.68268+07', 'system', '2023-07-26 08:40:17.68268+07', 'Thị trấn Quy Đạt', '18901', 'Thị trấn');
INSERT INTO category."Wards" VALUES (18904, 452, 'system', '2023-07-26 08:40:17.682683+07', 'system', '2023-07-26 08:40:17.682683+07', 'Xã Dân Hóa', '18904', 'Xã');
INSERT INTO category."Wards" VALUES (18907, 452, 'system', '2023-07-26 08:40:17.682685+07', 'system', '2023-07-26 08:40:17.682685+07', 'Xã Trọng Hóa', '18907', 'Xã');
INSERT INTO category."Wards" VALUES (18910, 452, 'system', '2023-07-26 08:40:17.682687+07', 'system', '2023-07-26 08:40:17.682687+07', 'Xã Hóa Phúc', '18910', 'Xã');
INSERT INTO category."Wards" VALUES (18913, 452, 'system', '2023-07-26 08:40:17.682689+07', 'system', '2023-07-26 08:40:17.682689+07', 'Xã Hồng Hóa', '18913', 'Xã');
INSERT INTO category."Wards" VALUES (18916, 452, 'system', '2023-07-26 08:40:17.682691+07', 'system', '2023-07-26 08:40:17.682691+07', 'Xã Hóa Thanh', '18916', 'Xã');
INSERT INTO category."Wards" VALUES (18919, 452, 'system', '2023-07-26 08:40:17.682693+07', 'system', '2023-07-26 08:40:17.682693+07', 'Xã Hóa Tiến', '18919', 'Xã');
INSERT INTO category."Wards" VALUES (18922, 452, 'system', '2023-07-26 08:40:17.682695+07', 'system', '2023-07-26 08:40:17.682695+07', 'Xã Hóa Hợp', '18922', 'Xã');
INSERT INTO category."Wards" VALUES (18925, 452, 'system', '2023-07-26 08:40:17.682697+07', 'system', '2023-07-26 08:40:17.682697+07', 'Xã Xuân Hóa', '18925', 'Xã');
INSERT INTO category."Wards" VALUES (18928, 452, 'system', '2023-07-26 08:40:17.682699+07', 'system', '2023-07-26 08:40:17.682699+07', 'Xã Yên Hóa', '18928', 'Xã');
INSERT INTO category."Wards" VALUES (18931, 452, 'system', '2023-07-26 08:40:17.682701+07', 'system', '2023-07-26 08:40:17.682701+07', 'Xã Minh Hóa', '18931', 'Xã');
INSERT INTO category."Wards" VALUES (18934, 452, 'system', '2023-07-26 08:40:17.682703+07', 'system', '2023-07-26 08:40:17.682704+07', 'Xã Tân Hóa', '18934', 'Xã');
INSERT INTO category."Wards" VALUES (18937, 452, 'system', '2023-07-26 08:40:17.682706+07', 'system', '2023-07-26 08:40:17.682706+07', 'Xã Hóa Sơn', '18937', 'Xã');
INSERT INTO category."Wards" VALUES (18943, 452, 'system', '2023-07-26 08:40:17.682708+07', 'system', '2023-07-26 08:40:17.682708+07', 'Xã Trung Hóa', '18943', 'Xã');
INSERT INTO category."Wards" VALUES (18946, 452, 'system', '2023-07-26 08:40:17.68271+07', 'system', '2023-07-26 08:40:17.68271+07', 'Xã Thượng Hóa', '18946', 'Xã');
INSERT INTO category."Wards" VALUES (18949, 453, 'system', '2023-07-26 08:40:17.682712+07', 'system', '2023-07-26 08:40:17.682712+07', 'Thị trấn Đồng Lê', '18949', 'Thị trấn');
INSERT INTO category."Wards" VALUES (18952, 453, 'system', '2023-07-26 08:40:17.682714+07', 'system', '2023-07-26 08:40:17.682714+07', 'Xã Hương Hóa', '18952', 'Xã');
INSERT INTO category."Wards" VALUES (18955, 453, 'system', '2023-07-26 08:40:17.682716+07', 'system', '2023-07-26 08:40:17.682716+07', 'Xã Kim Hóa', '18955', 'Xã');
INSERT INTO category."Wards" VALUES (18958, 453, 'system', '2023-07-26 08:40:17.682719+07', 'system', '2023-07-26 08:40:17.682719+07', 'Xã Thanh Hóa', '18958', 'Xã');
INSERT INTO category."Wards" VALUES (18961, 453, 'system', '2023-07-26 08:40:17.682721+07', 'system', '2023-07-26 08:40:17.682721+07', 'Xã Thanh Thạch', '18961', 'Xã');
INSERT INTO category."Wards" VALUES (18964, 453, 'system', '2023-07-26 08:40:17.682723+07', 'system', '2023-07-26 08:40:17.682723+07', 'Xã Thuận Hóa', '18964', 'Xã');
INSERT INTO category."Wards" VALUES (18967, 453, 'system', '2023-07-26 08:40:17.682725+07', 'system', '2023-07-26 08:40:17.682725+07', 'Xã Lâm Hóa', '18967', 'Xã');
INSERT INTO category."Wards" VALUES (18970, 453, 'system', '2023-07-26 08:40:17.682727+07', 'system', '2023-07-26 08:40:17.682727+07', 'Xã Lê Hóa', '18970', 'Xã');
INSERT INTO category."Wards" VALUES (18973, 453, 'system', '2023-07-26 08:40:17.682729+07', 'system', '2023-07-26 08:40:17.682729+07', 'Xã Sơn Hóa', '18973', 'Xã');
INSERT INTO category."Wards" VALUES (18976, 453, 'system', '2023-07-26 08:40:17.682732+07', 'system', '2023-07-26 08:40:17.682732+07', 'Xã Đồng Hóa', '18976', 'Xã');
INSERT INTO category."Wards" VALUES (18979, 453, 'system', '2023-07-26 08:40:17.682734+07', 'system', '2023-07-26 08:40:17.682734+07', 'Xã Ngư Hóa', '18979', 'Xã');
INSERT INTO category."Wards" VALUES (18985, 453, 'system', '2023-07-26 08:40:17.682737+07', 'system', '2023-07-26 08:40:17.682737+07', 'Xã Thạch Hóa', '18985', 'Xã');
INSERT INTO category."Wards" VALUES (18988, 453, 'system', '2023-07-26 08:40:17.682739+07', 'system', '2023-07-26 08:40:17.682739+07', 'Xã Đức Hóa', '18988', 'Xã');
INSERT INTO category."Wards" VALUES (18991, 453, 'system', '2023-07-26 08:40:17.682741+07', 'system', '2023-07-26 08:40:17.682741+07', 'Xã Phong Hóa', '18991', 'Xã');
INSERT INTO category."Wards" VALUES (18994, 453, 'system', '2023-07-26 08:40:17.682743+07', 'system', '2023-07-26 08:40:17.682743+07', 'Xã Mai Hóa', '18994', 'Xã');
INSERT INTO category."Wards" VALUES (18997, 453, 'system', '2023-07-26 08:40:17.682745+07', 'system', '2023-07-26 08:40:17.682745+07', 'Xã Tiến Hóa', '18997', 'Xã');
INSERT INTO category."Wards" VALUES (19000, 453, 'system', '2023-07-26 08:40:17.682747+07', 'system', '2023-07-26 08:40:17.682747+07', 'Xã Châu Hóa', '19000', 'Xã');
INSERT INTO category."Wards" VALUES (19003, 453, 'system', '2023-07-26 08:40:17.682749+07', 'system', '2023-07-26 08:40:17.682749+07', 'Xã Cao Quảng', '19003', 'Xã');
INSERT INTO category."Wards" VALUES (19006, 453, 'system', '2023-07-26 08:40:17.682751+07', 'system', '2023-07-26 08:40:17.682751+07', 'Xã Văn Hóa', '19006', 'Xã');
INSERT INTO category."Wards" VALUES (19009, 458, 'system', '2023-07-26 08:40:17.68295+07', 'system', '2023-07-26 08:40:17.68295+07', 'Phường Ba Đồn', '19009', 'Phường');
INSERT INTO category."Wards" VALUES (19012, 454, 'system', '2023-07-26 08:40:17.682753+07', 'system', '2023-07-26 08:40:17.682754+07', 'Xã Quảng Hợp', '19012', 'Xã');
INSERT INTO category."Wards" VALUES (19015, 454, 'system', '2023-07-26 08:40:17.682756+07', 'system', '2023-07-26 08:40:17.682756+07', 'Xã Quảng Kim', '19015', 'Xã');
INSERT INTO category."Wards" VALUES (19018, 454, 'system', '2023-07-26 08:40:17.682758+07', 'system', '2023-07-26 08:40:17.682758+07', 'Xã Quảng Đông', '19018', 'Xã');
INSERT INTO category."Wards" VALUES (19021, 454, 'system', '2023-07-26 08:40:17.68276+07', 'system', '2023-07-26 08:40:17.68276+07', 'Xã Quảng Phú', '19021', 'Xã');
INSERT INTO category."Wards" VALUES (19024, 454, 'system', '2023-07-26 08:40:17.682762+07', 'system', '2023-07-26 08:40:17.682762+07', 'Xã Quảng Châu', '19024', 'Xã');
INSERT INTO category."Wards" VALUES (19027, 454, 'system', '2023-07-26 08:40:17.682764+07', 'system', '2023-07-26 08:40:17.682764+07', 'Xã Quảng Thạch', '19027', 'Xã');
INSERT INTO category."Wards" VALUES (19030, 454, 'system', '2023-07-26 08:40:17.682766+07', 'system', '2023-07-26 08:40:17.682766+07', 'Xã Quảng Lưu', '19030', 'Xã');
INSERT INTO category."Wards" VALUES (19033, 454, 'system', '2023-07-26 08:40:17.682768+07', 'system', '2023-07-26 08:40:17.682768+07', 'Xã Quảng Tùng', '19033', 'Xã');
INSERT INTO category."Wards" VALUES (19036, 454, 'system', '2023-07-26 08:40:17.68277+07', 'system', '2023-07-26 08:40:17.68277+07', 'Xã Cảnh Dương', '19036', 'Xã');
INSERT INTO category."Wards" VALUES (19039, 454, 'system', '2023-07-26 08:40:17.682773+07', 'system', '2023-07-26 08:40:17.682773+07', 'Xã Quảng Tiến', '19039', 'Xã');
INSERT INTO category."Wards" VALUES (19042, 454, 'system', '2023-07-26 08:40:17.682775+07', 'system', '2023-07-26 08:40:17.682775+07', 'Xã Quảng Hưng', '19042', 'Xã');
INSERT INTO category."Wards" VALUES (19045, 454, 'system', '2023-07-26 08:40:17.682777+07', 'system', '2023-07-26 08:40:17.682777+07', 'Xã Quảng Xuân', '19045', 'Xã');
INSERT INTO category."Wards" VALUES (19048, 454, 'system', '2023-07-26 08:40:17.682779+07', 'system', '2023-07-26 08:40:17.682779+07', 'Xã Cảnh Hóa', '19048', 'Xã');
INSERT INTO category."Wards" VALUES (19051, 454, 'system', '2023-07-26 08:40:17.682781+07', 'system', '2023-07-26 08:40:17.682781+07', 'Xã Liên Trường', '19051', 'Xã');
INSERT INTO category."Wards" VALUES (19057, 454, 'system', '2023-07-26 08:40:17.682783+07', 'system', '2023-07-26 08:40:17.682783+07', 'Xã Quảng Phương', '19057', 'Xã');
INSERT INTO category."Wards" VALUES (19060, 458, 'system', '2023-07-26 08:40:17.682952+07', 'system', '2023-07-26 08:40:17.682952+07', 'Phường Quảng Long', '19060', 'Phường');
INSERT INTO category."Wards" VALUES (19063, 454, 'system', '2023-07-26 08:40:17.682795+07', 'system', '2023-07-26 08:40:17.682795+07', 'Xã Phù Hóa', '19063', 'Xã');
INSERT INTO category."Wards" VALUES (19066, 458, 'system', '2023-07-26 08:40:17.682955+07', 'system', '2023-07-26 08:40:17.682955+07', 'Phường Quảng Thọ', '19066', 'Phường');
INSERT INTO category."Wards" VALUES (19069, 458, 'system', '2023-07-26 08:40:17.682957+07', 'system', '2023-07-26 08:40:17.682957+07', 'Xã Quảng Tiên', '19069', 'Xã');
INSERT INTO category."Wards" VALUES (19072, 454, 'system', '2023-07-26 08:40:17.682797+07', 'system', '2023-07-26 08:40:17.682797+07', 'Xã Quảng Thanh', '19072', 'Xã');
INSERT INTO category."Wards" VALUES (19075, 458, 'system', '2023-07-26 08:40:17.682959+07', 'system', '2023-07-26 08:40:17.682959+07', 'Xã Quảng Trung', '19075', 'Xã');
INSERT INTO category."Wards" VALUES (19078, 458, 'system', '2023-07-26 08:40:17.682961+07', 'system', '2023-07-26 08:40:17.682961+07', 'Phường Quảng Phong', '19078', 'Phường');
INSERT INTO category."Wards" VALUES (19081, 458, 'system', '2023-07-26 08:40:17.682964+07', 'system', '2023-07-26 08:40:17.682964+07', 'Phường Quảng Thuận', '19081', 'Phường');
INSERT INTO category."Wards" VALUES (19084, 458, 'system', '2023-07-26 08:40:17.682966+07', 'system', '2023-07-26 08:40:17.682966+07', 'Xã Quảng Tân', '19084', 'Xã');
INSERT INTO category."Wards" VALUES (19087, 458, 'system', '2023-07-26 08:40:17.682968+07', 'system', '2023-07-26 08:40:17.682968+07', 'Xã Quảng Hải', '19087', 'Xã');
INSERT INTO category."Wards" VALUES (19090, 458, 'system', '2023-07-26 08:40:17.68297+07', 'system', '2023-07-26 08:40:17.68297+07', 'Xã Quảng Sơn', '19090', 'Xã');
INSERT INTO category."Wards" VALUES (19093, 458, 'system', '2023-07-26 08:40:17.682972+07', 'system', '2023-07-26 08:40:17.682972+07', 'Xã Quảng Lộc', '19093', 'Xã');
INSERT INTO category."Wards" VALUES (19096, 458, 'system', '2023-07-26 08:40:17.682974+07', 'system', '2023-07-26 08:40:17.682974+07', 'Xã Quảng Thủy', '19096', 'Xã');
INSERT INTO category."Wards" VALUES (19099, 458, 'system', '2023-07-26 08:40:17.682977+07', 'system', '2023-07-26 08:40:17.682977+07', 'Xã Quảng Văn', '19099', 'Xã');
INSERT INTO category."Wards" VALUES (19102, 458, 'system', '2023-07-26 08:40:17.682979+07', 'system', '2023-07-26 08:40:17.682979+07', 'Phường Quảng Phúc', '19102', 'Phường');
INSERT INTO category."Wards" VALUES (19105, 458, 'system', '2023-07-26 08:40:17.682982+07', 'system', '2023-07-26 08:40:17.682982+07', 'Xã Quảng Hòa', '19105', 'Xã');
INSERT INTO category."Wards" VALUES (19108, 458, 'system', '2023-07-26 08:40:17.682984+07', 'system', '2023-07-26 08:40:17.682984+07', 'Xã Quảng Minh', '19108', 'Xã');
INSERT INTO category."Wards" VALUES (19111, 455, 'system', '2023-07-26 08:40:17.682799+07', 'system', '2023-07-26 08:40:17.6828+07', 'Thị trấn Hoàn Lão', '19111', 'Thị trấn');
INSERT INTO category."Wards" VALUES (19114, 455, 'system', '2023-07-26 08:40:17.682802+07', 'system', '2023-07-26 08:40:17.682802+07', 'Thị trấn NT Việt Trung', '19114', 'Thị trấn');
INSERT INTO category."Wards" VALUES (19117, 455, 'system', '2023-07-26 08:40:17.682804+07', 'system', '2023-07-26 08:40:17.682804+07', 'Xã Xuân Trạch', '19117', 'Xã');
INSERT INTO category."Wards" VALUES (19120, 455, 'system', '2023-07-26 08:40:17.682806+07', 'system', '2023-07-26 08:40:17.682806+07', 'Xã Mỹ Trạch', '19120', 'Xã');
INSERT INTO category."Wards" VALUES (19123, 455, 'system', '2023-07-26 08:40:17.682808+07', 'system', '2023-07-26 08:40:17.682808+07', 'Xã Hạ Trạch', '19123', 'Xã');
INSERT INTO category."Wards" VALUES (19126, 455, 'system', '2023-07-26 08:40:17.68281+07', 'system', '2023-07-26 08:40:17.68281+07', 'Xã Bắc Trạch', '19126', 'Xã');
INSERT INTO category."Wards" VALUES (19129, 455, 'system', '2023-07-26 08:40:17.682812+07', 'system', '2023-07-26 08:40:17.682812+07', 'Xã Lâm Trạch', '19129', 'Xã');
INSERT INTO category."Wards" VALUES (19132, 455, 'system', '2023-07-26 08:40:17.682815+07', 'system', '2023-07-26 08:40:17.682815+07', 'Xã Thanh Trạch', '19132', 'Xã');
INSERT INTO category."Wards" VALUES (19135, 455, 'system', '2023-07-26 08:40:17.682817+07', 'system', '2023-07-26 08:40:17.682817+07', 'Xã Liên Trạch', '19135', 'Xã');
INSERT INTO category."Wards" VALUES (19138, 455, 'system', '2023-07-26 08:40:17.68282+07', 'system', '2023-07-26 08:40:17.68282+07', 'Xã Phúc Trạch', '19138', 'Xã');
INSERT INTO category."Wards" VALUES (19141, 455, 'system', '2023-07-26 08:40:17.682822+07', 'system', '2023-07-26 08:40:17.682822+07', 'Xã Cự Nẫm', '19141', 'Xã');
INSERT INTO category."Wards" VALUES (19144, 455, 'system', '2023-07-26 08:40:17.682824+07', 'system', '2023-07-26 08:40:17.682824+07', 'Xã Hải Phú', '19144', 'Xã');
INSERT INTO category."Wards" VALUES (19147, 455, 'system', '2023-07-26 08:40:17.682826+07', 'system', '2023-07-26 08:40:17.682827+07', 'Xã Thượng Trạch', '19147', 'Xã');
INSERT INTO category."Wards" VALUES (19150, 455, 'system', '2023-07-26 08:40:17.682829+07', 'system', '2023-07-26 08:40:17.682829+07', 'Xã Sơn Lộc', '19150', 'Xã');
INSERT INTO category."Wards" VALUES (19156, 455, 'system', '2023-07-26 08:40:17.682831+07', 'system', '2023-07-26 08:40:17.682831+07', 'Xã Hưng Trạch', '19156', 'Xã');
INSERT INTO category."Wards" VALUES (19159, 455, 'system', '2023-07-26 08:40:17.682833+07', 'system', '2023-07-26 08:40:17.682833+07', 'Xã Đồng Trạch', '19159', 'Xã');
INSERT INTO category."Wards" VALUES (19162, 455, 'system', '2023-07-26 08:40:17.682835+07', 'system', '2023-07-26 08:40:17.682835+07', 'Xã Đức Trạch', '19162', 'Xã');
INSERT INTO category."Wards" VALUES (19165, 455, 'system', '2023-07-26 08:40:17.682837+07', 'system', '2023-07-26 08:40:17.682837+07', 'Thị trấn Phong Nha', '19165', 'Thị trấn');
INSERT INTO category."Wards" VALUES (19168, 455, 'system', '2023-07-26 08:40:17.682839+07', 'system', '2023-07-26 08:40:17.68284+07', 'Xã Vạn Trạch', '19168', 'Xã');
INSERT INTO category."Wards" VALUES (19174, 455, 'system', '2023-07-26 08:40:17.682842+07', 'system', '2023-07-26 08:40:17.682842+07', 'Xã Phú Định', '19174', 'Xã');
INSERT INTO category."Wards" VALUES (19177, 455, 'system', '2023-07-26 08:40:17.682844+07', 'system', '2023-07-26 08:40:17.682844+07', 'Xã Trung Trạch', '19177', 'Xã');
INSERT INTO category."Wards" VALUES (19180, 455, 'system', '2023-07-26 08:40:17.682846+07', 'system', '2023-07-26 08:40:17.682846+07', 'Xã Tây Trạch', '19180', 'Xã');
INSERT INTO category."Wards" VALUES (19183, 455, 'system', '2023-07-26 08:40:17.682848+07', 'system', '2023-07-26 08:40:17.682848+07', 'Xã Hòa Trạch', '19183', 'Xã');
INSERT INTO category."Wards" VALUES (19186, 455, 'system', '2023-07-26 08:40:17.68285+07', 'system', '2023-07-26 08:40:17.68285+07', 'Xã Đại Trạch', '19186', 'Xã');
INSERT INTO category."Wards" VALUES (19189, 455, 'system', '2023-07-26 08:40:17.682852+07', 'system', '2023-07-26 08:40:17.682852+07', 'Xã Nhân Trạch', '19189', 'Xã');
INSERT INTO category."Wards" VALUES (19192, 455, 'system', '2023-07-26 08:40:17.682854+07', 'system', '2023-07-26 08:40:17.682854+07', 'Xã Tân Trạch', '19192', 'Xã');
INSERT INTO category."Wards" VALUES (19195, 455, 'system', '2023-07-26 08:40:17.682856+07', 'system', '2023-07-26 08:40:17.682857+07', 'Xã Nam Trạch', '19195', 'Xã');
INSERT INTO category."Wards" VALUES (19198, 455, 'system', '2023-07-26 08:40:17.682858+07', 'system', '2023-07-26 08:40:17.682859+07', 'Xã Lý Trạch', '19198', 'Xã');
INSERT INTO category."Wards" VALUES (19201, 456, 'system', '2023-07-26 08:40:17.682861+07', 'system', '2023-07-26 08:40:17.682861+07', 'Thị trấn Quán Hàu', '19201', 'Thị trấn');
INSERT INTO category."Wards" VALUES (19204, 456, 'system', '2023-07-26 08:40:17.682863+07', 'system', '2023-07-26 08:40:17.682863+07', 'Xã Trường Sơn', '19204', 'Xã');
INSERT INTO category."Wards" VALUES (19207, 456, 'system', '2023-07-26 08:40:17.682865+07', 'system', '2023-07-26 08:40:17.682865+07', 'Xã Lương Ninh', '19207', 'Xã');
INSERT INTO category."Wards" VALUES (19210, 456, 'system', '2023-07-26 08:40:17.682867+07', 'system', '2023-07-26 08:40:17.682868+07', 'Xã Vĩnh Ninh', '19210', 'Xã');
INSERT INTO category."Wards" VALUES (19213, 456, 'system', '2023-07-26 08:40:17.68287+07', 'system', '2023-07-26 08:40:17.68287+07', 'Xã Võ Ninh', '19213', 'Xã');
INSERT INTO category."Wards" VALUES (19216, 456, 'system', '2023-07-26 08:40:17.682872+07', 'system', '2023-07-26 08:40:17.682872+07', 'Xã Hải Ninh', '19216', 'Xã');
INSERT INTO category."Wards" VALUES (19219, 456, 'system', '2023-07-26 08:40:17.682874+07', 'system', '2023-07-26 08:40:17.682874+07', 'Xã Hàm Ninh', '19219', 'Xã');
INSERT INTO category."Wards" VALUES (19222, 456, 'system', '2023-07-26 08:40:17.682876+07', 'system', '2023-07-26 08:40:17.682876+07', 'Xã Duy Ninh', '19222', 'Xã');
INSERT INTO category."Wards" VALUES (19225, 456, 'system', '2023-07-26 08:40:17.682878+07', 'system', '2023-07-26 08:40:17.682878+07', 'Xã Gia Ninh', '19225', 'Xã');
INSERT INTO category."Wards" VALUES (19228, 456, 'system', '2023-07-26 08:40:17.68288+07', 'system', '2023-07-26 08:40:17.68288+07', 'Xã Trường Xuân', '19228', 'Xã');
INSERT INTO category."Wards" VALUES (19231, 456, 'system', '2023-07-26 08:40:17.682882+07', 'system', '2023-07-26 08:40:17.682882+07', 'Xã Hiền Ninh', '19231', 'Xã');
INSERT INTO category."Wards" VALUES (19234, 456, 'system', '2023-07-26 08:40:17.682884+07', 'system', '2023-07-26 08:40:17.682885+07', 'Xã Tân Ninh', '19234', 'Xã');
INSERT INTO category."Wards" VALUES (19237, 456, 'system', '2023-07-26 08:40:17.682887+07', 'system', '2023-07-26 08:40:17.682887+07', 'Xã Xuân Ninh', '19237', 'Xã');
INSERT INTO category."Wards" VALUES (19240, 456, 'system', '2023-07-26 08:40:17.682889+07', 'system', '2023-07-26 08:40:17.682889+07', 'Xã An Ninh', '19240', 'Xã');
INSERT INTO category."Wards" VALUES (19243, 456, 'system', '2023-07-26 08:40:17.682891+07', 'system', '2023-07-26 08:40:17.682891+07', 'Xã Vạn Ninh', '19243', 'Xã');
INSERT INTO category."Wards" VALUES (19246, 457, 'system', '2023-07-26 08:40:17.682893+07', 'system', '2023-07-26 08:40:17.682893+07', 'Thị trấn NT Lệ Ninh', '19246', 'Thị trấn');
INSERT INTO category."Wards" VALUES (19249, 457, 'system', '2023-07-26 08:40:17.682895+07', 'system', '2023-07-26 08:40:17.682895+07', 'Thị trấn Kiến Giang', '19249', 'Thị trấn');
INSERT INTO category."Wards" VALUES (19252, 457, 'system', '2023-07-26 08:40:17.682898+07', 'system', '2023-07-26 08:40:17.682898+07', 'Xã Hồng Thủy', '19252', 'Xã');
INSERT INTO category."Wards" VALUES (19255, 457, 'system', '2023-07-26 08:40:17.682901+07', 'system', '2023-07-26 08:40:17.682901+07', 'Xã Ngư Thủy Bắc', '19255', 'Xã');
INSERT INTO category."Wards" VALUES (19258, 457, 'system', '2023-07-26 08:40:17.682903+07', 'system', '2023-07-26 08:40:17.682903+07', 'Xã Hoa Thủy', '19258', 'Xã');
INSERT INTO category."Wards" VALUES (19261, 457, 'system', '2023-07-26 08:40:17.682905+07', 'system', '2023-07-26 08:40:17.682905+07', 'Xã Thanh Thủy', '19261', 'Xã');
INSERT INTO category."Wards" VALUES (19264, 457, 'system', '2023-07-26 08:40:17.682907+07', 'system', '2023-07-26 08:40:17.682907+07', 'Xã An Thủy', '19264', 'Xã');
INSERT INTO category."Wards" VALUES (19267, 457, 'system', '2023-07-26 08:40:17.682909+07', 'system', '2023-07-26 08:40:17.682909+07', 'Xã Phong Thủy', '19267', 'Xã');
INSERT INTO category."Wards" VALUES (19270, 457, 'system', '2023-07-26 08:40:17.682911+07', 'system', '2023-07-26 08:40:17.682911+07', 'Xã Cam Thủy', '19270', 'Xã');
INSERT INTO category."Wards" VALUES (19273, 457, 'system', '2023-07-26 08:40:17.682913+07', 'system', '2023-07-26 08:40:17.682913+07', 'Xã Ngân Thủy', '19273', 'Xã');
INSERT INTO category."Wards" VALUES (19276, 457, 'system', '2023-07-26 08:40:17.682916+07', 'system', '2023-07-26 08:40:17.682916+07', 'Xã Sơn Thủy', '19276', 'Xã');
INSERT INTO category."Wards" VALUES (19279, 457, 'system', '2023-07-26 08:40:17.682918+07', 'system', '2023-07-26 08:40:17.682918+07', 'Xã Lộc Thủy', '19279', 'Xã');
INSERT INTO category."Wards" VALUES (19285, 457, 'system', '2023-07-26 08:40:17.68292+07', 'system', '2023-07-26 08:40:17.68292+07', 'Xã Liên Thủy', '19285', 'Xã');
INSERT INTO category."Wards" VALUES (19288, 457, 'system', '2023-07-26 08:40:17.682922+07', 'system', '2023-07-26 08:40:17.682922+07', 'Xã Hưng Thủy', '19288', 'Xã');
INSERT INTO category."Wards" VALUES (19291, 457, 'system', '2023-07-26 08:40:17.682924+07', 'system', '2023-07-26 08:40:17.682924+07', 'Xã Dương Thủy', '19291', 'Xã');
INSERT INTO category."Wards" VALUES (19294, 457, 'system', '2023-07-26 08:40:17.682926+07', 'system', '2023-07-26 08:40:17.682926+07', 'Xã Tân Thủy', '19294', 'Xã');
INSERT INTO category."Wards" VALUES (19297, 457, 'system', '2023-07-26 08:40:17.682928+07', 'system', '2023-07-26 08:40:17.682928+07', 'Xã Phú Thủy', '19297', 'Xã');
INSERT INTO category."Wards" VALUES (19300, 457, 'system', '2023-07-26 08:40:17.68293+07', 'system', '2023-07-26 08:40:17.68293+07', 'Xã Xuân Thủy', '19300', 'Xã');
INSERT INTO category."Wards" VALUES (19303, 457, 'system', '2023-07-26 08:40:17.682933+07', 'system', '2023-07-26 08:40:17.682933+07', 'Xã Mỹ Thủy', '19303', 'Xã');
INSERT INTO category."Wards" VALUES (19306, 457, 'system', '2023-07-26 08:40:17.682935+07', 'system', '2023-07-26 08:40:17.682935+07', 'Xã Ngư Thủy ', '19306', 'Xã');
INSERT INTO category."Wards" VALUES (19309, 457, 'system', '2023-07-26 08:40:17.682937+07', 'system', '2023-07-26 08:40:17.682937+07', 'Xã Mai Thủy', '19309', 'Xã');
INSERT INTO category."Wards" VALUES (19312, 457, 'system', '2023-07-26 08:40:17.682939+07', 'system', '2023-07-26 08:40:17.682939+07', 'Xã Sen Thủy', '19312', 'Xã');
INSERT INTO category."Wards" VALUES (19315, 457, 'system', '2023-07-26 08:40:17.682941+07', 'system', '2023-07-26 08:40:17.682941+07', 'Xã Thái Thủy', '19315', 'Xã');
INSERT INTO category."Wards" VALUES (19318, 457, 'system', '2023-07-26 08:40:17.682943+07', 'system', '2023-07-26 08:40:17.682943+07', 'Xã Kim Thủy', '19318', 'Xã');
INSERT INTO category."Wards" VALUES (19321, 457, 'system', '2023-07-26 08:40:17.682945+07', 'system', '2023-07-26 08:40:17.682946+07', 'Xã Trường Thủy', '19321', 'Xã');
INSERT INTO category."Wards" VALUES (19327, 457, 'system', '2023-07-26 08:40:17.682948+07', 'system', '2023-07-26 08:40:17.682948+07', 'Xã Lâm Thủy', '19327', 'Xã');
INSERT INTO category."Wards" VALUES (19330, 461, 'system', '2023-07-26 08:40:17.682986+07', 'system', '2023-07-26 08:40:17.682986+07', 'Phường Đông Giang', '19330', 'Phường');
INSERT INTO category."Wards" VALUES (19333, 461, 'system', '2023-07-26 08:40:17.682988+07', 'system', '2023-07-26 08:40:17.682988+07', 'Phường 1', '19333', 'Phường');
INSERT INTO category."Wards" VALUES (19336, 461, 'system', '2023-07-26 08:40:17.68299+07', 'system', '2023-07-26 08:40:17.68299+07', 'Phường Đông Lễ', '19336', 'Phường');
INSERT INTO category."Wards" VALUES (19339, 461, 'system', '2023-07-26 08:40:17.682993+07', 'system', '2023-07-26 08:40:17.682993+07', 'Phường Đông Thanh', '19339', 'Phường');
INSERT INTO category."Wards" VALUES (19342, 461, 'system', '2023-07-26 08:40:17.682995+07', 'system', '2023-07-26 08:40:17.682995+07', 'Phường 2', '19342', 'Phường');
INSERT INTO category."Wards" VALUES (19345, 461, 'system', '2023-07-26 08:40:17.682997+07', 'system', '2023-07-26 08:40:17.682997+07', 'Phường 4', '19345', 'Phường');
INSERT INTO category."Wards" VALUES (19348, 461, 'system', '2023-07-26 08:40:17.682999+07', 'system', '2023-07-26 08:40:17.682999+07', 'Phường 5', '19348', 'Phường');
INSERT INTO category."Wards" VALUES (19351, 461, 'system', '2023-07-26 08:40:17.683001+07', 'system', '2023-07-26 08:40:17.683002+07', 'Phường Đông Lương', '19351', 'Phường');
INSERT INTO category."Wards" VALUES (19354, 461, 'system', '2023-07-26 08:40:17.683004+07', 'system', '2023-07-26 08:40:17.683004+07', 'Phường 3', '19354', 'Phường');
INSERT INTO category."Wards" VALUES (19357, 462, 'system', '2023-07-26 08:40:17.683006+07', 'system', '2023-07-26 08:40:17.683006+07', 'Phường 1', '19357', 'Phường');
INSERT INTO category."Wards" VALUES (19358, 462, 'system', '2023-07-26 08:40:17.683008+07', 'system', '2023-07-26 08:40:17.683008+07', 'Phường An Đôn', '19358', 'Phường');
INSERT INTO category."Wards" VALUES (19360, 462, 'system', '2023-07-26 08:40:17.683011+07', 'system', '2023-07-26 08:40:17.683011+07', 'Phường 2', '19360', 'Phường');
INSERT INTO category."Wards" VALUES (19361, 462, 'system', '2023-07-26 08:40:17.683013+07', 'system', '2023-07-26 08:40:17.683013+07', 'Phường 3', '19361', 'Phường');
INSERT INTO category."Wards" VALUES (19363, 464, 'system', '2023-07-26 08:40:17.683017+07', 'system', '2023-07-26 08:40:17.683017+07', 'Thị trấn Hồ Xá', '19363', 'Thị trấn');
INSERT INTO category."Wards" VALUES (19366, 464, 'system', '2023-07-26 08:40:17.683019+07', 'system', '2023-07-26 08:40:17.683019+07', 'Thị trấn Bến Quan', '19366', 'Thị trấn');
INSERT INTO category."Wards" VALUES (19369, 464, 'system', '2023-07-26 08:40:17.683022+07', 'system', '2023-07-26 08:40:17.683022+07', 'Xã Vĩnh Thái', '19369', 'Xã');
INSERT INTO category."Wards" VALUES (19372, 464, 'system', '2023-07-26 08:40:17.683024+07', 'system', '2023-07-26 08:40:17.683024+07', 'Xã Vĩnh Tú', '19372', 'Xã');
INSERT INTO category."Wards" VALUES (19375, 464, 'system', '2023-07-26 08:40:17.683026+07', 'system', '2023-07-26 08:40:17.683026+07', 'Xã Vĩnh Chấp', '19375', 'Xã');
INSERT INTO category."Wards" VALUES (19378, 464, 'system', '2023-07-26 08:40:17.683028+07', 'system', '2023-07-26 08:40:17.683028+07', 'Xã Trung Nam', '19378', 'Xã');
INSERT INTO category."Wards" VALUES (19384, 464, 'system', '2023-07-26 08:40:17.68303+07', 'system', '2023-07-26 08:40:17.68303+07', 'Xã Kim Thạch', '19384', 'Xã');
INSERT INTO category."Wards" VALUES (19387, 464, 'system', '2023-07-26 08:40:17.683032+07', 'system', '2023-07-26 08:40:17.683032+07', 'Xã Vĩnh Long', '19387', 'Xã');
INSERT INTO category."Wards" VALUES (19393, 464, 'system', '2023-07-26 08:40:17.683034+07', 'system', '2023-07-26 08:40:17.683034+07', 'Xã Vĩnh Khê', '19393', 'Xã');
INSERT INTO category."Wards" VALUES (19396, 464, 'system', '2023-07-26 08:40:17.683036+07', 'system', '2023-07-26 08:40:17.683037+07', 'Xã Vĩnh Hòa', '19396', 'Xã');
INSERT INTO category."Wards" VALUES (19402, 464, 'system', '2023-07-26 08:40:17.683039+07', 'system', '2023-07-26 08:40:17.683039+07', 'Xã Vĩnh Thủy', '19402', 'Xã');
INSERT INTO category."Wards" VALUES (19405, 464, 'system', '2023-07-26 08:40:17.683041+07', 'system', '2023-07-26 08:40:17.683041+07', 'Xã Vĩnh Lâm', '19405', 'Xã');
INSERT INTO category."Wards" VALUES (19408, 464, 'system', '2023-07-26 08:40:17.683043+07', 'system', '2023-07-26 08:40:17.683043+07', 'Xã Hiền Thành', '19408', 'Xã');
INSERT INTO category."Wards" VALUES (19414, 464, 'system', '2023-07-26 08:40:17.683045+07', 'system', '2023-07-26 08:40:17.683045+07', 'Thị trấn Cửa Tùng', '19414', 'Thị trấn');
INSERT INTO category."Wards" VALUES (19417, 464, 'system', '2023-07-26 08:40:17.683047+07', 'system', '2023-07-26 08:40:17.683047+07', 'Xã Vĩnh Hà', '19417', 'Xã');
INSERT INTO category."Wards" VALUES (19420, 464, 'system', '2023-07-26 08:40:17.683049+07', 'system', '2023-07-26 08:40:17.683049+07', 'Xã Vĩnh Sơn', '19420', 'Xã');
INSERT INTO category."Wards" VALUES (19423, 464, 'system', '2023-07-26 08:40:17.683052+07', 'system', '2023-07-26 08:40:17.683052+07', 'Xã Vĩnh Giang', '19423', 'Xã');
INSERT INTO category."Wards" VALUES (19426, 464, 'system', '2023-07-26 08:40:17.683054+07', 'system', '2023-07-26 08:40:17.683054+07', 'Xã Vĩnh Ô', '19426', 'Xã');
INSERT INTO category."Wards" VALUES (19429, 465, 'system', '2023-07-26 08:40:17.683057+07', 'system', '2023-07-26 08:40:17.683057+07', 'Thị trấn Khe Sanh', '19429', 'Thị trấn');
INSERT INTO category."Wards" VALUES (19432, 465, 'system', '2023-07-26 08:40:17.683059+07', 'system', '2023-07-26 08:40:17.683059+07', 'Thị trấn Lao Bảo', '19432', 'Thị trấn');
INSERT INTO category."Wards" VALUES (19435, 465, 'system', '2023-07-26 08:40:17.683061+07', 'system', '2023-07-26 08:40:17.683061+07', 'Xã Hướng Lập', '19435', 'Xã');
INSERT INTO category."Wards" VALUES (19438, 465, 'system', '2023-07-26 08:40:17.683064+07', 'system', '2023-07-26 08:40:17.683064+07', 'Xã Hướng Việt', '19438', 'Xã');
INSERT INTO category."Wards" VALUES (19441, 465, 'system', '2023-07-26 08:40:17.683066+07', 'system', '2023-07-26 08:40:17.683066+07', 'Xã Hướng Phùng', '19441', 'Xã');
INSERT INTO category."Wards" VALUES (19444, 465, 'system', '2023-07-26 08:40:17.683068+07', 'system', '2023-07-26 08:40:17.683068+07', 'Xã Hướng Sơn', '19444', 'Xã');
INSERT INTO category."Wards" VALUES (19447, 465, 'system', '2023-07-26 08:40:17.68307+07', 'system', '2023-07-26 08:40:17.68307+07', 'Xã Hướng Linh', '19447', 'Xã');
INSERT INTO category."Wards" VALUES (19450, 465, 'system', '2023-07-26 08:40:17.683073+07', 'system', '2023-07-26 08:40:17.683073+07', 'Xã Tân Hợp', '19450', 'Xã');
INSERT INTO category."Wards" VALUES (19453, 465, 'system', '2023-07-26 08:40:17.683075+07', 'system', '2023-07-26 08:40:17.683075+07', 'Xã Hướng Tân', '19453', 'Xã');
INSERT INTO category."Wards" VALUES (19456, 465, 'system', '2023-07-26 08:40:17.683077+07', 'system', '2023-07-26 08:40:17.683077+07', 'Xã Tân Thành', '19456', 'Xã');
INSERT INTO category."Wards" VALUES (19459, 465, 'system', '2023-07-26 08:40:17.683079+07', 'system', '2023-07-26 08:40:17.683079+07', 'Xã Tân Long', '19459', 'Xã');
INSERT INTO category."Wards" VALUES (19462, 465, 'system', '2023-07-26 08:40:17.683081+07', 'system', '2023-07-26 08:40:17.683081+07', 'Xã Tân Lập', '19462', 'Xã');
INSERT INTO category."Wards" VALUES (19465, 465, 'system', '2023-07-26 08:40:17.683083+07', 'system', '2023-07-26 08:40:17.683083+07', 'Xã Tân Liên', '19465', 'Xã');
INSERT INTO category."Wards" VALUES (19468, 465, 'system', '2023-07-26 08:40:17.683085+07', 'system', '2023-07-26 08:40:17.683085+07', 'Xã Húc', '19468', 'Xã');
INSERT INTO category."Wards" VALUES (19471, 465, 'system', '2023-07-26 08:40:17.683087+07', 'system', '2023-07-26 08:40:17.683087+07', 'Xã Thuận', '19471', 'Xã');
INSERT INTO category."Wards" VALUES (19474, 465, 'system', '2023-07-26 08:40:17.683089+07', 'system', '2023-07-26 08:40:17.683089+07', 'Xã Hướng Lộc', '19474', 'Xã');
INSERT INTO category."Wards" VALUES (19477, 465, 'system', '2023-07-26 08:40:17.683091+07', 'system', '2023-07-26 08:40:17.683091+07', 'Xã Ba Tầng', '19477', 'Xã');
INSERT INTO category."Wards" VALUES (19480, 465, 'system', '2023-07-26 08:40:17.683093+07', 'system', '2023-07-26 08:40:17.683094+07', 'Xã Thanh', '19480', 'Xã');
INSERT INTO category."Wards" VALUES (19483, 465, 'system', '2023-07-26 08:40:17.683095+07', 'system', '2023-07-26 08:40:17.683096+07', 'Xã  A Dơi', '19483', 'Xã');
INSERT INTO category."Wards" VALUES (19489, 465, 'system', '2023-07-26 08:40:17.683098+07', 'system', '2023-07-26 08:40:17.683098+07', 'Xã Lìa', '19489', 'Xã');
INSERT INTO category."Wards" VALUES (19492, 465, 'system', '2023-07-26 08:40:17.6831+07', 'system', '2023-07-26 08:40:17.6831+07', 'Xã Xy', '19492', 'Xã');
INSERT INTO category."Wards" VALUES (19495, 466, 'system', '2023-07-26 08:40:17.683102+07', 'system', '2023-07-26 08:40:17.683102+07', 'Thị trấn Gio Linh', '19495', 'Thị trấn');
INSERT INTO category."Wards" VALUES (19496, 466, 'system', '2023-07-26 08:40:17.683104+07', 'system', '2023-07-26 08:40:17.683104+07', 'Thị trấn Cửa Việt', '19496', 'Thị trấn');
INSERT INTO category."Wards" VALUES (19498, 466, 'system', '2023-07-26 08:40:17.683106+07', 'system', '2023-07-26 08:40:17.683106+07', 'Xã Trung Giang', '19498', 'Xã');
INSERT INTO category."Wards" VALUES (19501, 466, 'system', '2023-07-26 08:40:17.683109+07', 'system', '2023-07-26 08:40:17.683109+07', 'Xã Trung Hải', '19501', 'Xã');
INSERT INTO category."Wards" VALUES (19504, 466, 'system', '2023-07-26 08:40:17.683111+07', 'system', '2023-07-26 08:40:17.683111+07', 'Xã Trung Sơn', '19504', 'Xã');
INSERT INTO category."Wards" VALUES (19507, 466, 'system', '2023-07-26 08:40:17.683113+07', 'system', '2023-07-26 08:40:17.683113+07', 'Xã Phong Bình', '19507', 'Xã');
INSERT INTO category."Wards" VALUES (19510, 466, 'system', '2023-07-26 08:40:17.683115+07', 'system', '2023-07-26 08:40:17.683115+07', 'Xã Gio Mỹ', '19510', 'Xã');
INSERT INTO category."Wards" VALUES (19519, 466, 'system', '2023-07-26 08:40:17.683117+07', 'system', '2023-07-26 08:40:17.683117+07', 'Xã Gio Hải', '19519', 'Xã');
INSERT INTO category."Wards" VALUES (19522, 466, 'system', '2023-07-26 08:40:17.683119+07', 'system', '2023-07-26 08:40:17.683119+07', 'Xã Gio An', '19522', 'Xã');
INSERT INTO category."Wards" VALUES (19525, 466, 'system', '2023-07-26 08:40:17.683122+07', 'system', '2023-07-26 08:40:17.683122+07', 'Xã Gio Châu', '19525', 'Xã');
INSERT INTO category."Wards" VALUES (19531, 466, 'system', '2023-07-26 08:40:17.683124+07', 'system', '2023-07-26 08:40:17.683124+07', 'Xã Gio Việt', '19531', 'Xã');
INSERT INTO category."Wards" VALUES (19534, 466, 'system', '2023-07-26 08:40:17.683126+07', 'system', '2023-07-26 08:40:17.683126+07', 'Xã Linh Trường', '19534', 'Xã');
INSERT INTO category."Wards" VALUES (19537, 466, 'system', '2023-07-26 08:40:17.683128+07', 'system', '2023-07-26 08:40:17.683128+07', 'Xã Gio Sơn', '19537', 'Xã');
INSERT INTO category."Wards" VALUES (19543, 466, 'system', '2023-07-26 08:40:17.68313+07', 'system', '2023-07-26 08:40:17.68313+07', 'Xã Gio Mai', '19543', 'Xã');
INSERT INTO category."Wards" VALUES (19546, 466, 'system', '2023-07-26 08:40:17.683132+07', 'system', '2023-07-26 08:40:17.683132+07', 'Xã Hải Thái', '19546', 'Xã');
INSERT INTO category."Wards" VALUES (19549, 466, 'system', '2023-07-26 08:40:17.683135+07', 'system', '2023-07-26 08:40:17.683135+07', 'Xã Linh Hải', '19549', 'Xã');
INSERT INTO category."Wards" VALUES (19552, 466, 'system', '2023-07-26 08:40:17.683137+07', 'system', '2023-07-26 08:40:17.683137+07', 'Xã Gio Quang', '19552', 'Xã');
INSERT INTO category."Wards" VALUES (19555, 467, 'system', '2023-07-26 08:40:17.683139+07', 'system', '2023-07-26 08:40:17.683139+07', 'Thị trấn Krông Klang', '19555', 'Thị trấn');
INSERT INTO category."Wards" VALUES (19558, 467, 'system', '2023-07-26 08:40:17.683141+07', 'system', '2023-07-26 08:40:17.683142+07', 'Xã Mò Ó', '19558', 'Xã');
INSERT INTO category."Wards" VALUES (19561, 467, 'system', '2023-07-26 08:40:17.683144+07', 'system', '2023-07-26 08:40:17.683144+07', 'Xã Hướng Hiệp', '19561', 'Xã');
INSERT INTO category."Wards" VALUES (19564, 467, 'system', '2023-07-26 08:40:17.683146+07', 'system', '2023-07-26 08:40:17.683146+07', 'Xã Đa Krông', '19564', 'Xã');
INSERT INTO category."Wards" VALUES (19567, 467, 'system', '2023-07-26 08:40:17.683148+07', 'system', '2023-07-26 08:40:17.683148+07', 'Xã Triệu Nguyên', '19567', 'Xã');
INSERT INTO category."Wards" VALUES (19570, 467, 'system', '2023-07-26 08:40:17.68315+07', 'system', '2023-07-26 08:40:17.68315+07', 'Xã Ba Lòng', '19570', 'Xã');
INSERT INTO category."Wards" VALUES (19576, 467, 'system', '2023-07-26 08:40:17.683152+07', 'system', '2023-07-26 08:40:17.683152+07', 'Xã Ba Nang', '19576', 'Xã');
INSERT INTO category."Wards" VALUES (19579, 467, 'system', '2023-07-26 08:40:17.683154+07', 'system', '2023-07-26 08:40:17.683154+07', 'Xã Tà Long', '19579', 'Xã');
INSERT INTO category."Wards" VALUES (19582, 467, 'system', '2023-07-26 08:40:17.683157+07', 'system', '2023-07-26 08:40:17.683157+07', 'Xã Húc Nghì', '19582', 'Xã');
INSERT INTO category."Wards" VALUES (19585, 467, 'system', '2023-07-26 08:40:17.683159+07', 'system', '2023-07-26 08:40:17.683159+07', 'Xã A Vao', '19585', 'Xã');
INSERT INTO category."Wards" VALUES (19588, 467, 'system', '2023-07-26 08:40:17.683161+07', 'system', '2023-07-26 08:40:17.683161+07', 'Xã Tà Rụt', '19588', 'Xã');
INSERT INTO category."Wards" VALUES (19591, 467, 'system', '2023-07-26 08:40:17.683163+07', 'system', '2023-07-26 08:40:17.683163+07', 'Xã A Bung', '19591', 'Xã');
INSERT INTO category."Wards" VALUES (19594, 467, 'system', '2023-07-26 08:40:17.683165+07', 'system', '2023-07-26 08:40:17.683165+07', 'Xã A Ngo', '19594', 'Xã');
INSERT INTO category."Wards" VALUES (19597, 468, 'system', '2023-07-26 08:40:17.683167+07', 'system', '2023-07-26 08:40:17.683167+07', 'Thị trấn Cam Lộ', '19597', 'Thị trấn');
INSERT INTO category."Wards" VALUES (19600, 468, 'system', '2023-07-26 08:40:17.68317+07', 'system', '2023-07-26 08:40:17.68317+07', 'Xã Cam Tuyền', '19600', 'Xã');
INSERT INTO category."Wards" VALUES (19603, 468, 'system', '2023-07-26 08:40:17.683172+07', 'system', '2023-07-26 08:40:17.683172+07', 'Xã Thanh An', '19603', 'Xã');
INSERT INTO category."Wards" VALUES (19606, 468, 'system', '2023-07-26 08:40:17.683174+07', 'system', '2023-07-26 08:40:17.683174+07', 'Xã Cam Thủy', '19606', 'Xã');
INSERT INTO category."Wards" VALUES (19612, 468, 'system', '2023-07-26 08:40:17.683176+07', 'system', '2023-07-26 08:40:17.683176+07', 'Xã Cam Thành', '19612', 'Xã');
INSERT INTO category."Wards" VALUES (19615, 468, 'system', '2023-07-26 08:40:17.683178+07', 'system', '2023-07-26 08:40:17.683179+07', 'Xã Cam Hiếu', '19615', 'Xã');
INSERT INTO category."Wards" VALUES (19618, 468, 'system', '2023-07-26 08:40:17.683181+07', 'system', '2023-07-26 08:40:17.683181+07', 'Xã Cam Chính', '19618', 'Xã');
INSERT INTO category."Wards" VALUES (19621, 468, 'system', '2023-07-26 08:40:17.683183+07', 'system', '2023-07-26 08:40:17.683183+07', 'Xã Cam Nghĩa', '19621', 'Xã');
INSERT INTO category."Wards" VALUES (19624, 469, 'system', '2023-07-26 08:40:17.683185+07', 'system', '2023-07-26 08:40:17.683185+07', 'Thị Trấn Ái Tử', '19624', 'Thị trấn');
INSERT INTO category."Wards" VALUES (19627, 469, 'system', '2023-07-26 08:40:17.683187+07', 'system', '2023-07-26 08:40:17.683187+07', 'Xã Triệu An', '19627', 'Xã');
INSERT INTO category."Wards" VALUES (19630, 469, 'system', '2023-07-26 08:40:17.683189+07', 'system', '2023-07-26 08:40:17.683189+07', 'Xã Triệu Vân', '19630', 'Xã');
INSERT INTO category."Wards" VALUES (19633, 469, 'system', '2023-07-26 08:40:17.683191+07', 'system', '2023-07-26 08:40:17.683192+07', 'Xã Triệu Phước', '19633', 'Xã');
INSERT INTO category."Wards" VALUES (19636, 469, 'system', '2023-07-26 08:40:17.683194+07', 'system', '2023-07-26 08:40:17.683194+07', 'Xã Triệu Độ', '19636', 'Xã');
INSERT INTO category."Wards" VALUES (19639, 469, 'system', '2023-07-26 08:40:17.683196+07', 'system', '2023-07-26 08:40:17.683196+07', 'Xã Triệu Trạch', '19639', 'Xã');
INSERT INTO category."Wards" VALUES (19642, 469, 'system', '2023-07-26 08:40:17.683198+07', 'system', '2023-07-26 08:40:17.683198+07', 'Xã Triệu Thuận', '19642', 'Xã');
INSERT INTO category."Wards" VALUES (19645, 469, 'system', '2023-07-26 08:40:17.6832+07', 'system', '2023-07-26 08:40:17.6832+07', 'Xã Triệu Đại', '19645', 'Xã');
INSERT INTO category."Wards" VALUES (19648, 469, 'system', '2023-07-26 08:40:17.683203+07', 'system', '2023-07-26 08:40:17.683203+07', 'Xã Triệu Hòa', '19648', 'Xã');
INSERT INTO category."Wards" VALUES (19651, 469, 'system', '2023-07-26 08:40:17.683205+07', 'system', '2023-07-26 08:40:17.683205+07', 'Xã Triệu Lăng', '19651', 'Xã');
INSERT INTO category."Wards" VALUES (19654, 469, 'system', '2023-07-26 08:40:17.683207+07', 'system', '2023-07-26 08:40:17.683207+07', 'Xã Triệu Sơn', '19654', 'Xã');
INSERT INTO category."Wards" VALUES (19657, 469, 'system', '2023-07-26 08:40:17.683209+07', 'system', '2023-07-26 08:40:17.683209+07', 'Xã Triệu Long', '19657', 'Xã');
INSERT INTO category."Wards" VALUES (19660, 469, 'system', '2023-07-26 08:40:17.683211+07', 'system', '2023-07-26 08:40:17.683211+07', 'Xã Triệu Tài', '19660', 'Xã');
INSERT INTO category."Wards" VALUES (19666, 469, 'system', '2023-07-26 08:40:17.683213+07', 'system', '2023-07-26 08:40:17.683213+07', 'Xã Triệu Trung', '19666', 'Xã');
INSERT INTO category."Wards" VALUES (19669, 469, 'system', '2023-07-26 08:40:17.683216+07', 'system', '2023-07-26 08:40:17.683216+07', 'Xã Triệu Ái', '19669', 'Xã');
INSERT INTO category."Wards" VALUES (19672, 469, 'system', '2023-07-26 08:40:17.683218+07', 'system', '2023-07-26 08:40:17.683218+07', 'Xã Triệu Thượng', '19672', 'Xã');
INSERT INTO category."Wards" VALUES (19675, 469, 'system', '2023-07-26 08:40:17.68322+07', 'system', '2023-07-26 08:40:17.68322+07', 'Xã Triệu Giang', '19675', 'Xã');
INSERT INTO category."Wards" VALUES (19678, 469, 'system', '2023-07-26 08:40:17.683223+07', 'system', '2023-07-26 08:40:17.683223+07', 'Xã Triệu Thành', '19678', 'Xã');
INSERT INTO category."Wards" VALUES (19681, 470, 'system', '2023-07-26 08:40:17.683225+07', 'system', '2023-07-26 08:40:17.683225+07', 'Thị trấn Diên Sanh', '19681', 'Thị trấn');
INSERT INTO category."Wards" VALUES (19684, 470, 'system', '2023-07-26 08:40:17.683227+07', 'system', '2023-07-26 08:40:17.683227+07', 'Xã Hải An', '19684', 'Xã');
INSERT INTO category."Wards" VALUES (19687, 470, 'system', '2023-07-26 08:40:17.683229+07', 'system', '2023-07-26 08:40:17.683229+07', 'Xã Hải Ba', '19687', 'Xã');
INSERT INTO category."Wards" VALUES (19693, 470, 'system', '2023-07-26 08:40:17.683231+07', 'system', '2023-07-26 08:40:17.683231+07', 'Xã Hải Quy', '19693', 'Xã');
INSERT INTO category."Wards" VALUES (19696, 470, 'system', '2023-07-26 08:40:17.683233+07', 'system', '2023-07-26 08:40:17.683233+07', 'Xã Hải Quế', '19696', 'Xã');
INSERT INTO category."Wards" VALUES (19699, 470, 'system', '2023-07-26 08:40:17.683235+07', 'system', '2023-07-26 08:40:17.683235+07', 'Xã Hải Hưng', '19699', 'Xã');
INSERT INTO category."Wards" VALUES (19702, 470, 'system', '2023-07-26 08:40:17.683238+07', 'system', '2023-07-26 08:40:17.683238+07', 'Xã Hải Phú', '19702', 'Xã');
INSERT INTO category."Wards" VALUES (19705, 462, 'system', '2023-07-26 08:40:17.683015+07', 'system', '2023-07-26 08:40:17.683015+07', 'Xã Hải Lệ', '19705', 'Xã');
INSERT INTO category."Wards" VALUES (19708, 470, 'system', '2023-07-26 08:40:17.68324+07', 'system', '2023-07-26 08:40:17.68324+07', 'Xã Hải Thượng', '19708', 'Xã');
INSERT INTO category."Wards" VALUES (19711, 470, 'system', '2023-07-26 08:40:17.683242+07', 'system', '2023-07-26 08:40:17.683242+07', 'Xã Hải Dương', '19711', 'Xã');
INSERT INTO category."Wards" VALUES (19714, 470, 'system', '2023-07-26 08:40:17.683244+07', 'system', '2023-07-26 08:40:17.683244+07', 'Xã Hải Định', '19714', 'Xã');
INSERT INTO category."Wards" VALUES (19717, 470, 'system', '2023-07-26 08:40:17.683246+07', 'system', '2023-07-26 08:40:17.683246+07', 'Xã Hải Lâm', '19717', 'Xã');
INSERT INTO category."Wards" VALUES (19726, 470, 'system', '2023-07-26 08:40:17.683249+07', 'system', '2023-07-26 08:40:17.683249+07', 'Xã Hải Phong', '19726', 'Xã');
INSERT INTO category."Wards" VALUES (19729, 470, 'system', '2023-07-26 08:40:17.683251+07', 'system', '2023-07-26 08:40:17.683251+07', 'Xã Hải Trường', '19729', 'Xã');
INSERT INTO category."Wards" VALUES (19735, 470, 'system', '2023-07-26 08:40:17.683253+07', 'system', '2023-07-26 08:40:17.683253+07', 'Xã Hải Sơn', '19735', 'Xã');
INSERT INTO category."Wards" VALUES (19738, 470, 'system', '2023-07-26 08:40:17.683255+07', 'system', '2023-07-26 08:40:17.683255+07', 'Xã Hải Chánh', '19738', 'Xã');
INSERT INTO category."Wards" VALUES (19741, 470, 'system', '2023-07-26 08:40:17.683257+07', 'system', '2023-07-26 08:40:17.683257+07', 'Xã Hải Khê', '19741', 'Xã');
INSERT INTO category."Wards" VALUES (19750, 474, 'system', '2023-07-26 08:40:17.683259+07', 'system', '2023-07-26 08:40:17.683259+07', 'Phường Tây Lộc', '19750', 'Phường');
INSERT INTO category."Wards" VALUES (19753, 474, 'system', '2023-07-26 08:40:17.683262+07', 'system', '2023-07-26 08:40:17.683262+07', 'Phường Thuận Lộc', '19753', 'Phường');
INSERT INTO category."Wards" VALUES (19756, 474, 'system', '2023-07-26 08:40:17.683264+07', 'system', '2023-07-26 08:40:17.683264+07', 'Phường Gia Hội', '19756', 'Phường');
INSERT INTO category."Wards" VALUES (19759, 474, 'system', '2023-07-26 08:40:17.683266+07', 'system', '2023-07-26 08:40:17.683266+07', 'Phường Phú Hậu', '19759', 'Phường');
INSERT INTO category."Wards" VALUES (19762, 474, 'system', '2023-07-26 08:40:17.683269+07', 'system', '2023-07-26 08:40:17.683269+07', 'Phường Thuận Hòa', '19762', 'Phường');
INSERT INTO category."Wards" VALUES (19768, 474, 'system', '2023-07-26 08:40:17.683271+07', 'system', '2023-07-26 08:40:17.683271+07', 'Phường Đông Ba', '19768', 'Phường');
INSERT INTO category."Wards" VALUES (19774, 474, 'system', '2023-07-26 08:40:17.683273+07', 'system', '2023-07-26 08:40:17.683273+07', 'Phường Kim Long', '19774', 'Phường');
INSERT INTO category."Wards" VALUES (19777, 474, 'system', '2023-07-26 08:40:17.683275+07', 'system', '2023-07-26 08:40:17.683276+07', 'Phường Vỹ Dạ', '19777', 'Phường');
INSERT INTO category."Wards" VALUES (19780, 474, 'system', '2023-07-26 08:40:17.683278+07', 'system', '2023-07-26 08:40:17.683278+07', 'Phường Phường Đúc', '19780', 'Phường');
INSERT INTO category."Wards" VALUES (19783, 474, 'system', '2023-07-26 08:40:17.68328+07', 'system', '2023-07-26 08:40:17.68328+07', 'Phường Vĩnh Ninh', '19783', 'Phường');
INSERT INTO category."Wards" VALUES (19786, 474, 'system', '2023-07-26 08:40:17.683282+07', 'system', '2023-07-26 08:40:17.683282+07', 'Phường Phú Hội', '19786', 'Phường');
INSERT INTO category."Wards" VALUES (19789, 474, 'system', '2023-07-26 08:40:17.683285+07', 'system', '2023-07-26 08:40:17.683285+07', 'Phường Phú Nhuận', '19789', 'Phường');
INSERT INTO category."Wards" VALUES (19792, 474, 'system', '2023-07-26 08:40:17.683287+07', 'system', '2023-07-26 08:40:17.683287+07', 'Phường Xuân Phú', '19792', 'Phường');
INSERT INTO category."Wards" VALUES (19795, 474, 'system', '2023-07-26 08:40:17.683289+07', 'system', '2023-07-26 08:40:17.683289+07', 'Phường Trường An', '19795', 'Phường');
INSERT INTO category."Wards" VALUES (19798, 474, 'system', '2023-07-26 08:40:17.683291+07', 'system', '2023-07-26 08:40:17.683291+07', 'Phường Phước Vĩnh', '19798', 'Phường');
INSERT INTO category."Wards" VALUES (19801, 474, 'system', '2023-07-26 08:40:17.683294+07', 'system', '2023-07-26 08:40:17.683294+07', 'Phường An Cựu', '19801', 'Phường');
INSERT INTO category."Wards" VALUES (19803, 474, 'system', '2023-07-26 08:40:17.683296+07', 'system', '2023-07-26 08:40:17.683296+07', 'Phường An Hòa', '19803', 'Phường');
INSERT INTO category."Wards" VALUES (19804, 474, 'system', '2023-07-26 08:40:17.683299+07', 'system', '2023-07-26 08:40:17.683299+07', 'Phường Hương Sơ', '19804', 'Phường');
INSERT INTO category."Wards" VALUES (19807, 474, 'system', '2023-07-26 08:40:17.683301+07', 'system', '2023-07-26 08:40:17.683301+07', 'Phường Thuỷ Biều', '19807', 'Phường');
INSERT INTO category."Wards" VALUES (19810, 474, 'system', '2023-07-26 08:40:17.683303+07', 'system', '2023-07-26 08:40:17.683303+07', 'Phường Hương Long', '19810', 'Phường');
INSERT INTO category."Wards" VALUES (19813, 474, 'system', '2023-07-26 08:40:17.683306+07', 'system', '2023-07-26 08:40:17.683306+07', 'Phường Thuỷ Xuân', '19813', 'Phường');
INSERT INTO category."Wards" VALUES (19815, 474, 'system', '2023-07-26 08:40:17.683308+07', 'system', '2023-07-26 08:40:17.683308+07', 'Phường An Đông', '19815', 'Phường');
INSERT INTO category."Wards" VALUES (19816, 474, 'system', '2023-07-26 08:40:17.68331+07', 'system', '2023-07-26 08:40:17.68331+07', 'Phường An Tây', '19816', 'Phường');
INSERT INTO category."Wards" VALUES (19819, 476, 'system', '2023-07-26 08:40:17.68335+07', 'system', '2023-07-26 08:40:17.68335+07', 'Thị trấn Phong Điền', '19819', 'Thị trấn');
INSERT INTO category."Wards" VALUES (19822, 476, 'system', '2023-07-26 08:40:17.683353+07', 'system', '2023-07-26 08:40:17.683353+07', 'Xã Điền Hương', '19822', 'Xã');
INSERT INTO category."Wards" VALUES (19825, 476, 'system', '2023-07-26 08:40:17.683355+07', 'system', '2023-07-26 08:40:17.683355+07', 'Xã Điền Môn', '19825', 'Xã');
INSERT INTO category."Wards" VALUES (19828, 476, 'system', '2023-07-26 08:40:17.683357+07', 'system', '2023-07-26 08:40:17.683357+07', 'Xã Điền Lộc', '19828', 'Xã');
INSERT INTO category."Wards" VALUES (19831, 476, 'system', '2023-07-26 08:40:17.683359+07', 'system', '2023-07-26 08:40:17.683359+07', 'Xã Phong Bình', '19831', 'Xã');
INSERT INTO category."Wards" VALUES (19834, 476, 'system', '2023-07-26 08:40:17.683361+07', 'system', '2023-07-26 08:40:17.683361+07', 'Xã Điền Hòa', '19834', 'Xã');
INSERT INTO category."Wards" VALUES (19837, 476, 'system', '2023-07-26 08:40:17.683364+07', 'system', '2023-07-26 08:40:17.683364+07', 'Xã Phong Chương', '19837', 'Xã');
INSERT INTO category."Wards" VALUES (19840, 476, 'system', '2023-07-26 08:40:17.683366+07', 'system', '2023-07-26 08:40:17.683366+07', 'Xã Phong Hải', '19840', 'Xã');
INSERT INTO category."Wards" VALUES (19843, 476, 'system', '2023-07-26 08:40:17.683368+07', 'system', '2023-07-26 08:40:17.683368+07', 'Xã Điền Hải', '19843', 'Xã');
INSERT INTO category."Wards" VALUES (19846, 476, 'system', '2023-07-26 08:40:17.68337+07', 'system', '2023-07-26 08:40:17.68337+07', 'Xã Phong Hòa', '19846', 'Xã');
INSERT INTO category."Wards" VALUES (19849, 476, 'system', '2023-07-26 08:40:17.683372+07', 'system', '2023-07-26 08:40:17.683372+07', 'Xã Phong Thu', '19849', 'Xã');
INSERT INTO category."Wards" VALUES (19852, 476, 'system', '2023-07-26 08:40:17.683374+07', 'system', '2023-07-26 08:40:17.683374+07', 'Xã Phong Hiền', '19852', 'Xã');
INSERT INTO category."Wards" VALUES (19855, 476, 'system', '2023-07-26 08:40:17.683377+07', 'system', '2023-07-26 08:40:17.683377+07', 'Xã Phong Mỹ', '19855', 'Xã');
INSERT INTO category."Wards" VALUES (19858, 476, 'system', '2023-07-26 08:40:17.683379+07', 'system', '2023-07-26 08:40:17.683379+07', 'Xã Phong An', '19858', 'Xã');
INSERT INTO category."Wards" VALUES (19861, 476, 'system', '2023-07-26 08:40:17.683382+07', 'system', '2023-07-26 08:40:17.683382+07', 'Xã Phong Xuân', '19861', 'Xã');
INSERT INTO category."Wards" VALUES (19864, 476, 'system', '2023-07-26 08:40:17.683384+07', 'system', '2023-07-26 08:40:17.683384+07', 'Xã Phong Sơn', '19864', 'Xã');
INSERT INTO category."Wards" VALUES (19867, 477, 'system', '2023-07-26 08:40:17.683386+07', 'system', '2023-07-26 08:40:17.683386+07', 'Thị trấn Sịa', '19867', 'Thị trấn');
INSERT INTO category."Wards" VALUES (19870, 477, 'system', '2023-07-26 08:40:17.683389+07', 'system', '2023-07-26 08:40:17.683389+07', 'Xã Quảng Thái', '19870', 'Xã');
INSERT INTO category."Wards" VALUES (19873, 477, 'system', '2023-07-26 08:40:17.683391+07', 'system', '2023-07-26 08:40:17.683391+07', 'Xã Quảng Ngạn', '19873', 'Xã');
INSERT INTO category."Wards" VALUES (19876, 477, 'system', '2023-07-26 08:40:17.683393+07', 'system', '2023-07-26 08:40:17.683393+07', 'Xã Quảng Lợi', '19876', 'Xã');
INSERT INTO category."Wards" VALUES (19879, 477, 'system', '2023-07-26 08:40:17.683395+07', 'system', '2023-07-26 08:40:17.683395+07', 'Xã Quảng Công', '19879', 'Xã');
INSERT INTO category."Wards" VALUES (19882, 477, 'system', '2023-07-26 08:40:17.683397+07', 'system', '2023-07-26 08:40:17.683397+07', 'Xã Quảng Phước', '19882', 'Xã');
INSERT INTO category."Wards" VALUES (19885, 477, 'system', '2023-07-26 08:40:17.683399+07', 'system', '2023-07-26 08:40:17.6834+07', 'Xã Quảng Vinh', '19885', 'Xã');
INSERT INTO category."Wards" VALUES (19888, 477, 'system', '2023-07-26 08:40:17.683402+07', 'system', '2023-07-26 08:40:17.683402+07', 'Xã Quảng An', '19888', 'Xã');
INSERT INTO category."Wards" VALUES (19891, 477, 'system', '2023-07-26 08:40:17.683404+07', 'system', '2023-07-26 08:40:17.683404+07', 'Xã Quảng Thành', '19891', 'Xã');
INSERT INTO category."Wards" VALUES (19894, 477, 'system', '2023-07-26 08:40:17.683406+07', 'system', '2023-07-26 08:40:17.683406+07', 'Xã Quảng Thọ', '19894', 'Xã');
INSERT INTO category."Wards" VALUES (19897, 477, 'system', '2023-07-26 08:40:17.683408+07', 'system', '2023-07-26 08:40:17.683408+07', 'Xã Quảng Phú', '19897', 'Xã');
INSERT INTO category."Wards" VALUES (19900, 474, 'system', '2023-07-26 08:40:17.683312+07', 'system', '2023-07-26 08:40:17.683312+07', 'Phường Thuận An', '19900', 'Phường');
INSERT INTO category."Wards" VALUES (19903, 478, 'system', '2023-07-26 08:40:17.68341+07', 'system', '2023-07-26 08:40:17.68341+07', 'Xã Phú Thuận', '19903', 'Xã');
INSERT INTO category."Wards" VALUES (19906, 474, 'system', '2023-07-26 08:40:17.683315+07', 'system', '2023-07-26 08:40:17.683315+07', 'Xã Phú Dương', '19906', 'Xã');
INSERT INTO category."Wards" VALUES (19909, 474, 'system', '2023-07-26 08:40:17.683325+07', 'system', '2023-07-26 08:40:17.683325+07', 'Xã Phú Mậu', '19909', 'Xã');
INSERT INTO category."Wards" VALUES (19912, 478, 'system', '2023-07-26 08:40:17.683412+07', 'system', '2023-07-26 08:40:17.683412+07', 'Xã Phú An', '19912', 'Xã');
INSERT INTO category."Wards" VALUES (19915, 478, 'system', '2023-07-26 08:40:17.683415+07', 'system', '2023-07-26 08:40:17.683415+07', 'Xã Phú Hải', '19915', 'Xã');
INSERT INTO category."Wards" VALUES (19918, 478, 'system', '2023-07-26 08:40:17.683417+07', 'system', '2023-07-26 08:40:17.683417+07', 'Xã Phú Xuân', '19918', 'Xã');
INSERT INTO category."Wards" VALUES (19921, 478, 'system', '2023-07-26 08:40:17.683419+07', 'system', '2023-07-26 08:40:17.683419+07', 'Xã Phú Diên', '19921', 'Xã');
INSERT INTO category."Wards" VALUES (19924, 474, 'system', '2023-07-26 08:40:17.683328+07', 'system', '2023-07-26 08:40:17.683328+07', 'Xã Phú Thanh', '19924', 'Xã');
INSERT INTO category."Wards" VALUES (19927, 478, 'system', '2023-07-26 08:40:17.683421+07', 'system', '2023-07-26 08:40:17.683421+07', 'Xã Phú Mỹ', '19927', 'Xã');
INSERT INTO category."Wards" VALUES (19930, 474, 'system', '2023-07-26 08:40:17.68333+07', 'system', '2023-07-26 08:40:17.68333+07', 'Phường Phú Thượng', '19930', 'Phường');
INSERT INTO category."Wards" VALUES (19933, 478, 'system', '2023-07-26 08:40:17.683423+07', 'system', '2023-07-26 08:40:17.683423+07', 'Xã Phú Hồ', '19933', 'Xã');
INSERT INTO category."Wards" VALUES (19936, 478, 'system', '2023-07-26 08:40:17.683425+07', 'system', '2023-07-26 08:40:17.683425+07', 'Xã Vinh Xuân', '19936', 'Xã');
INSERT INTO category."Wards" VALUES (19939, 478, 'system', '2023-07-26 08:40:17.683427+07', 'system', '2023-07-26 08:40:17.683428+07', 'Xã Phú Lương', '19939', 'Xã');
INSERT INTO category."Wards" VALUES (19942, 478, 'system', '2023-07-26 08:40:17.68343+07', 'system', '2023-07-26 08:40:17.68343+07', 'Thị trấn Phú Đa', '19942', 'Thị trấn');
INSERT INTO category."Wards" VALUES (19945, 478, 'system', '2023-07-26 08:40:17.683432+07', 'system', '2023-07-26 08:40:17.683432+07', 'Xã Vinh Thanh', '19945', 'Xã');
INSERT INTO category."Wards" VALUES (19948, 478, 'system', '2023-07-26 08:40:17.683434+07', 'system', '2023-07-26 08:40:17.683434+07', 'Xã Vinh An', '19948', 'Xã');
INSERT INTO category."Wards" VALUES (19954, 478, 'system', '2023-07-26 08:40:17.683436+07', 'system', '2023-07-26 08:40:17.683436+07', 'Xã Phú Gia', '19954', 'Xã');
INSERT INTO category."Wards" VALUES (19957, 478, 'system', '2023-07-26 08:40:17.683438+07', 'system', '2023-07-26 08:40:17.683438+07', 'Xã Vinh Hà', '19957', 'Xã');
INSERT INTO category."Wards" VALUES (19960, 479, 'system', '2023-07-26 08:40:17.68344+07', 'system', '2023-07-26 08:40:17.68344+07', 'Phường Phú Bài', '19960', 'Phường');
INSERT INTO category."Wards" VALUES (19963, 474, 'system', '2023-07-26 08:40:17.683332+07', 'system', '2023-07-26 08:40:17.683332+07', 'Phường Thủy Vân', '19963', 'Phường');
INSERT INTO category."Wards" VALUES (19966, 479, 'system', '2023-07-26 08:40:17.683443+07', 'system', '2023-07-26 08:40:17.683443+07', 'Xã Thủy Thanh', '19966', 'Xã');
INSERT INTO category."Wards" VALUES (19969, 479, 'system', '2023-07-26 08:40:17.683445+07', 'system', '2023-07-26 08:40:17.683445+07', 'Phường Thủy Dương', '19969', 'Phường');
INSERT INTO category."Wards" VALUES (19972, 479, 'system', '2023-07-26 08:40:17.683447+07', 'system', '2023-07-26 08:40:17.683447+07', 'Phường Thủy Phương', '19972', 'Phường');
INSERT INTO category."Wards" VALUES (19975, 479, 'system', '2023-07-26 08:40:17.683449+07', 'system', '2023-07-26 08:40:17.68345+07', 'Phường Thủy Châu', '19975', 'Phường');
INSERT INTO category."Wards" VALUES (19978, 479, 'system', '2023-07-26 08:40:17.683452+07', 'system', '2023-07-26 08:40:17.683452+07', 'Phường Thủy Lương', '19978', 'Phường');
INSERT INTO category."Wards" VALUES (19981, 474, 'system', '2023-07-26 08:40:17.683335+07', 'system', '2023-07-26 08:40:17.683335+07', 'Xã Thủy Bằng', '19981', 'Xã');
INSERT INTO category."Wards" VALUES (19984, 479, 'system', '2023-07-26 08:40:17.683454+07', 'system', '2023-07-26 08:40:17.683454+07', 'Xã Thủy Tân', '19984', 'Xã');
INSERT INTO category."Wards" VALUES (19987, 479, 'system', '2023-07-26 08:40:17.683456+07', 'system', '2023-07-26 08:40:17.683456+07', 'Xã Thủy Phù', '19987', 'Xã');
INSERT INTO category."Wards" VALUES (19990, 479, 'system', '2023-07-26 08:40:17.683458+07', 'system', '2023-07-26 08:40:17.683458+07', 'Xã Phú Sơn', '19990', 'Xã');
INSERT INTO category."Wards" VALUES (19993, 479, 'system', '2023-07-26 08:40:17.683461+07', 'system', '2023-07-26 08:40:17.683461+07', 'Xã Dương Hòa', '19993', 'Xã');
INSERT INTO category."Wards" VALUES (19996, 480, 'system', '2023-07-26 08:40:17.683463+07', 'system', '2023-07-26 08:40:17.683463+07', 'Phường Tứ Hạ', '19996', 'Phường');
INSERT INTO category."Wards" VALUES (19999, 474, 'system', '2023-07-26 08:40:17.683337+07', 'system', '2023-07-26 08:40:17.683337+07', 'Xã Hải Dương', '19999', 'Xã');
INSERT INTO category."Wards" VALUES (20002, 474, 'system', '2023-07-26 08:40:17.683339+07', 'system', '2023-07-26 08:40:17.683339+07', 'Xã Hương Phong', '20002', 'Xã');
INSERT INTO category."Wards" VALUES (20005, 480, 'system', '2023-07-26 08:40:17.683466+07', 'system', '2023-07-26 08:40:17.683466+07', 'Xã Hương Toàn', '20005', 'Xã');
INSERT INTO category."Wards" VALUES (20008, 480, 'system', '2023-07-26 08:40:17.683468+07', 'system', '2023-07-26 08:40:17.683468+07', 'Phường Hương Vân', '20008', 'Phường');
INSERT INTO category."Wards" VALUES (20011, 480, 'system', '2023-07-26 08:40:17.68347+07', 'system', '2023-07-26 08:40:17.68347+07', 'Phường Hương Văn', '20011', 'Phường');
INSERT INTO category."Wards" VALUES (20014, 474, 'system', '2023-07-26 08:40:17.683342+07', 'system', '2023-07-26 08:40:17.683342+07', 'Phường Hương Vinh', '20014', 'Phường');
INSERT INTO category."Wards" VALUES (20017, 480, 'system', '2023-07-26 08:40:17.683472+07', 'system', '2023-07-26 08:40:17.683472+07', 'Phường Hương Xuân', '20017', 'Phường');
INSERT INTO category."Wards" VALUES (20020, 480, 'system', '2023-07-26 08:40:17.683475+07', 'system', '2023-07-26 08:40:17.683475+07', 'Phường Hương Chữ', '20020', 'Phường');
INSERT INTO category."Wards" VALUES (20023, 474, 'system', '2023-07-26 08:40:17.683344+07', 'system', '2023-07-26 08:40:17.683344+07', 'Phường Hương An', '20023', 'Phường');
INSERT INTO category."Wards" VALUES (20026, 480, 'system', '2023-07-26 08:40:17.683477+07', 'system', '2023-07-26 08:40:17.683477+07', 'Xã Hương Bình', '20026', 'Xã');
INSERT INTO category."Wards" VALUES (20029, 474, 'system', '2023-07-26 08:40:17.683346+07', 'system', '2023-07-26 08:40:17.683346+07', 'Phường Hương Hồ', '20029', 'Phường');
INSERT INTO category."Wards" VALUES (20032, 474, 'system', '2023-07-26 08:40:17.683348+07', 'system', '2023-07-26 08:40:17.683348+07', 'Xã Hương Thọ', '20032', 'Xã');
INSERT INTO category."Wards" VALUES (20035, 480, 'system', '2023-07-26 08:40:17.683479+07', 'system', '2023-07-26 08:40:17.683479+07', 'Xã Bình Tiến', '20035', 'Xã');
INSERT INTO category."Wards" VALUES (20041, 480, 'system', '2023-07-26 08:40:17.683481+07', 'system', '2023-07-26 08:40:17.683481+07', 'Xã Bình Thành', '20041', 'Xã');
INSERT INTO category."Wards" VALUES (20044, 481, 'system', '2023-07-26 08:40:17.683483+07', 'system', '2023-07-26 08:40:17.683483+07', 'Thị trấn A Lưới', '20044', 'Thị trấn');
INSERT INTO category."Wards" VALUES (20047, 481, 'system', '2023-07-26 08:40:17.683486+07', 'system', '2023-07-26 08:40:17.683486+07', 'Xã Hồng Vân', '20047', 'Xã');
INSERT INTO category."Wards" VALUES (20050, 481, 'system', '2023-07-26 08:40:17.683488+07', 'system', '2023-07-26 08:40:17.683488+07', 'Xã Hồng Hạ', '20050', 'Xã');
INSERT INTO category."Wards" VALUES (20053, 481, 'system', '2023-07-26 08:40:17.68349+07', 'system', '2023-07-26 08:40:17.68349+07', 'Xã Hồng Kim', '20053', 'Xã');
INSERT INTO category."Wards" VALUES (20056, 481, 'system', '2023-07-26 08:40:17.683492+07', 'system', '2023-07-26 08:40:17.683492+07', 'Xã Trung Sơn', '20056', 'Xã');
INSERT INTO category."Wards" VALUES (20059, 481, 'system', '2023-07-26 08:40:17.683494+07', 'system', '2023-07-26 08:40:17.683494+07', 'Xã Hương Nguyên', '20059', 'Xã');
INSERT INTO category."Wards" VALUES (20065, 481, 'system', '2023-07-26 08:40:17.683496+07', 'system', '2023-07-26 08:40:17.683496+07', 'Xã Hồng Bắc', '20065', 'Xã');
INSERT INTO category."Wards" VALUES (20068, 481, 'system', '2023-07-26 08:40:17.683499+07', 'system', '2023-07-26 08:40:17.683499+07', 'Xã A Ngo', '20068', 'Xã');
INSERT INTO category."Wards" VALUES (20071, 481, 'system', '2023-07-26 08:40:17.683501+07', 'system', '2023-07-26 08:40:17.683501+07', 'Xã Sơn Thủy', '20071', 'Xã');
INSERT INTO category."Wards" VALUES (20074, 481, 'system', '2023-07-26 08:40:17.683503+07', 'system', '2023-07-26 08:40:17.683503+07', 'Xã Phú Vinh', '20074', 'Xã');
INSERT INTO category."Wards" VALUES (20080, 481, 'system', '2023-07-26 08:40:17.683505+07', 'system', '2023-07-26 08:40:17.683505+07', 'Xã Hương Phong', '20080', 'Xã');
INSERT INTO category."Wards" VALUES (20083, 481, 'system', '2023-07-26 08:40:17.683507+07', 'system', '2023-07-26 08:40:17.683507+07', 'Xã Quảng Nhâm', '20083', 'Xã');
INSERT INTO category."Wards" VALUES (20086, 481, 'system', '2023-07-26 08:40:17.68351+07', 'system', '2023-07-26 08:40:17.68351+07', 'Xã Hồng Thượng', '20086', 'Xã');
INSERT INTO category."Wards" VALUES (20089, 481, 'system', '2023-07-26 08:40:17.683513+07', 'system', '2023-07-26 08:40:17.683513+07', 'Xã Hồng Thái', '20089', 'Xã');
INSERT INTO category."Wards" VALUES (20095, 481, 'system', '2023-07-26 08:40:17.683517+07', 'system', '2023-07-26 08:40:17.683517+07', 'Xã A Roàng', '20095', 'Xã');
INSERT INTO category."Wards" VALUES (20098, 481, 'system', '2023-07-26 08:40:17.68352+07', 'system', '2023-07-26 08:40:17.68352+07', 'Xã Đông Sơn', '20098', 'Xã');
INSERT INTO category."Wards" VALUES (20101, 481, 'system', '2023-07-26 08:40:17.683524+07', 'system', '2023-07-26 08:40:17.683524+07', 'Xã Lâm Đớt', '20101', 'Xã');
INSERT INTO category."Wards" VALUES (20104, 481, 'system', '2023-07-26 08:40:17.683528+07', 'system', '2023-07-26 08:40:17.683528+07', 'Xã Hồng Thủy', '20104', 'Xã');
INSERT INTO category."Wards" VALUES (20107, 482, 'system', '2023-07-26 08:40:17.683532+07', 'system', '2023-07-26 08:40:17.683532+07', 'Thị trấn Phú Lộc', '20107', 'Thị trấn');
INSERT INTO category."Wards" VALUES (20110, 482, 'system', '2023-07-26 08:40:17.683534+07', 'system', '2023-07-26 08:40:17.683534+07', 'Thị trấn Lăng Cô', '20110', 'Thị trấn');
INSERT INTO category."Wards" VALUES (20113, 482, 'system', '2023-07-26 08:40:17.683537+07', 'system', '2023-07-26 08:40:17.683537+07', 'Xã Vinh Mỹ', '20113', 'Xã');
INSERT INTO category."Wards" VALUES (20116, 482, 'system', '2023-07-26 08:40:17.683539+07', 'system', '2023-07-26 08:40:17.683539+07', 'Xã Vinh Hưng', '20116', 'Xã');
INSERT INTO category."Wards" VALUES (20122, 482, 'system', '2023-07-26 08:40:17.683541+07', 'system', '2023-07-26 08:40:17.683541+07', 'Xã Giang Hải', '20122', 'Xã');
INSERT INTO category."Wards" VALUES (20125, 482, 'system', '2023-07-26 08:40:17.683543+07', 'system', '2023-07-26 08:40:17.683543+07', 'Xã Vinh Hiền', '20125', 'Xã');
INSERT INTO category."Wards" VALUES (20128, 482, 'system', '2023-07-26 08:40:17.683545+07', 'system', '2023-07-26 08:40:17.683545+07', 'Xã Lộc Bổn', '20128', 'Xã');
INSERT INTO category."Wards" VALUES (20131, 482, 'system', '2023-07-26 08:40:17.683547+07', 'system', '2023-07-26 08:40:17.683548+07', 'Xã Lộc Sơn', '20131', 'Xã');
INSERT INTO category."Wards" VALUES (20134, 482, 'system', '2023-07-26 08:40:17.683551+07', 'system', '2023-07-26 08:40:17.683551+07', 'Xã Lộc Bình', '20134', 'Xã');
INSERT INTO category."Wards" VALUES (20137, 482, 'system', '2023-07-26 08:40:17.683553+07', 'system', '2023-07-26 08:40:17.683553+07', 'Xã Lộc Vĩnh', '20137', 'Xã');
INSERT INTO category."Wards" VALUES (20140, 482, 'system', '2023-07-26 08:40:17.683555+07', 'system', '2023-07-26 08:40:17.683555+07', 'Xã Lộc An', '20140', 'Xã');
INSERT INTO category."Wards" VALUES (20143, 482, 'system', '2023-07-26 08:40:17.683557+07', 'system', '2023-07-26 08:40:17.683557+07', 'Xã Lộc Điền', '20143', 'Xã');
INSERT INTO category."Wards" VALUES (20146, 482, 'system', '2023-07-26 08:40:17.68356+07', 'system', '2023-07-26 08:40:17.68356+07', 'Xã Lộc Thủy', '20146', 'Xã');
INSERT INTO category."Wards" VALUES (20149, 482, 'system', '2023-07-26 08:40:17.683562+07', 'system', '2023-07-26 08:40:17.683562+07', 'Xã Lộc Trì', '20149', 'Xã');
INSERT INTO category."Wards" VALUES (20152, 482, 'system', '2023-07-26 08:40:17.683564+07', 'system', '2023-07-26 08:40:17.683564+07', 'Xã Lộc Tiến', '20152', 'Xã');
INSERT INTO category."Wards" VALUES (20155, 482, 'system', '2023-07-26 08:40:17.683566+07', 'system', '2023-07-26 08:40:17.683566+07', 'Xã Lộc Hòa', '20155', 'Xã');
INSERT INTO category."Wards" VALUES (20158, 482, 'system', '2023-07-26 08:40:17.683569+07', 'system', '2023-07-26 08:40:17.683569+07', 'Xã Xuân Lộc', '20158', 'Xã');
INSERT INTO category."Wards" VALUES (20161, 483, 'system', '2023-07-26 08:40:17.683571+07', 'system', '2023-07-26 08:40:17.683571+07', 'Thị trấn Khe Tre', '20161', 'Thị trấn');
INSERT INTO category."Wards" VALUES (20164, 483, 'system', '2023-07-26 08:40:17.683573+07', 'system', '2023-07-26 08:40:17.683573+07', 'Xã Hương Phú', '20164', 'Xã');
INSERT INTO category."Wards" VALUES (20167, 483, 'system', '2023-07-26 08:40:17.683575+07', 'system', '2023-07-26 08:40:17.683575+07', 'Xã Hương Sơn', '20167', 'Xã');
INSERT INTO category."Wards" VALUES (20170, 483, 'system', '2023-07-26 08:40:17.683577+07', 'system', '2023-07-26 08:40:17.683577+07', 'Xã Hương Lộc', '20170', 'Xã');
INSERT INTO category."Wards" VALUES (20173, 483, 'system', '2023-07-26 08:40:17.68358+07', 'system', '2023-07-26 08:40:17.68358+07', 'Xã Thượng Quảng', '20173', 'Xã');
INSERT INTO category."Wards" VALUES (20179, 483, 'system', '2023-07-26 08:40:17.683582+07', 'system', '2023-07-26 08:40:17.683582+07', 'Xã Hương Xuân', '20179', 'Xã');
INSERT INTO category."Wards" VALUES (20182, 483, 'system', '2023-07-26 08:40:17.683584+07', 'system', '2023-07-26 08:40:17.683584+07', 'Xã Hương Hữu', '20182', 'Xã');
INSERT INTO category."Wards" VALUES (20185, 483, 'system', '2023-07-26 08:40:17.683586+07', 'system', '2023-07-26 08:40:17.683586+07', 'Xã Thượng Lộ', '20185', 'Xã');
INSERT INTO category."Wards" VALUES (20188, 483, 'system', '2023-07-26 08:40:17.683588+07', 'system', '2023-07-26 08:40:17.683588+07', 'Xã Thượng Long', '20188', 'Xã');
INSERT INTO category."Wards" VALUES (20191, 483, 'system', '2023-07-26 08:40:17.683591+07', 'system', '2023-07-26 08:40:17.683591+07', 'Xã Thượng Nhật', '20191', 'Xã');
INSERT INTO category."Wards" VALUES (20194, 490, 'system', '2023-07-26 08:40:17.683593+07', 'system', '2023-07-26 08:40:17.683593+07', 'Phường Hòa Hiệp Bắc', '20194', 'Phường');
INSERT INTO category."Wards" VALUES (20195, 490, 'system', '2023-07-26 08:40:17.683595+07', 'system', '2023-07-26 08:40:17.683595+07', 'Phường Hòa Hiệp Nam', '20195', 'Phường');
INSERT INTO category."Wards" VALUES (20197, 490, 'system', '2023-07-26 08:40:17.683597+07', 'system', '2023-07-26 08:40:17.683597+07', 'Phường Hòa Khánh Bắc', '20197', 'Phường');
INSERT INTO category."Wards" VALUES (20198, 490, 'system', '2023-07-26 08:40:17.6836+07', 'system', '2023-07-26 08:40:17.6836+07', 'Phường Hòa Khánh Nam', '20198', 'Phường');
INSERT INTO category."Wards" VALUES (20200, 490, 'system', '2023-07-26 08:40:17.683602+07', 'system', '2023-07-26 08:40:17.683602+07', 'Phường Hòa Minh', '20200', 'Phường');
INSERT INTO category."Wards" VALUES (20203, 491, 'system', '2023-07-26 08:40:17.683605+07', 'system', '2023-07-26 08:40:17.683605+07', 'Phường Tam Thuận', '20203', 'Phường');
INSERT INTO category."Wards" VALUES (20206, 491, 'system', '2023-07-26 08:40:17.683607+07', 'system', '2023-07-26 08:40:17.683607+07', 'Phường Thanh Khê Tây', '20206', 'Phường');
INSERT INTO category."Wards" VALUES (20207, 491, 'system', '2023-07-26 08:40:17.683609+07', 'system', '2023-07-26 08:40:17.683609+07', 'Phường Thanh Khê Đông', '20207', 'Phường');
INSERT INTO category."Wards" VALUES (20209, 491, 'system', '2023-07-26 08:40:17.683612+07', 'system', '2023-07-26 08:40:17.683612+07', 'Phường Xuân Hà', '20209', 'Phường');
INSERT INTO category."Wards" VALUES (20212, 491, 'system', '2023-07-26 08:40:17.683614+07', 'system', '2023-07-26 08:40:17.683614+07', 'Phường Tân Chính', '20212', 'Phường');
INSERT INTO category."Wards" VALUES (20215, 491, 'system', '2023-07-26 08:40:17.683616+07', 'system', '2023-07-26 08:40:17.683616+07', 'Phường Chính Gián', '20215', 'Phường');
INSERT INTO category."Wards" VALUES (20218, 491, 'system', '2023-07-26 08:40:17.683619+07', 'system', '2023-07-26 08:40:17.683619+07', 'Phường Vĩnh Trung', '20218', 'Phường');
INSERT INTO category."Wards" VALUES (20221, 491, 'system', '2023-07-26 08:40:17.683621+07', 'system', '2023-07-26 08:40:17.683621+07', 'Phường Thạc Gián', '20221', 'Phường');
INSERT INTO category."Wards" VALUES (20224, 491, 'system', '2023-07-26 08:40:17.683623+07', 'system', '2023-07-26 08:40:17.683623+07', 'Phường An Khê', '20224', 'Phường');
INSERT INTO category."Wards" VALUES (20225, 491, 'system', '2023-07-26 08:40:17.683626+07', 'system', '2023-07-26 08:40:17.683626+07', 'Phường Hòa Khê', '20225', 'Phường');
INSERT INTO category."Wards" VALUES (20227, 492, 'system', '2023-07-26 08:40:17.683628+07', 'system', '2023-07-26 08:40:17.683628+07', 'Phường Thanh Bình', '20227', 'Phường');
INSERT INTO category."Wards" VALUES (20230, 492, 'system', '2023-07-26 08:40:17.683631+07', 'system', '2023-07-26 08:40:17.683631+07', 'Phường Thuận Phước', '20230', 'Phường');
INSERT INTO category."Wards" VALUES (20233, 492, 'system', '2023-07-26 08:40:17.683634+07', 'system', '2023-07-26 08:40:17.683634+07', 'Phường Thạch Thang', '20233', 'Phường');
INSERT INTO category."Wards" VALUES (20236, 492, 'system', '2023-07-26 08:40:17.683636+07', 'system', '2023-07-26 08:40:17.683636+07', 'Phường Hải Châu  I', '20236', 'Phường');
INSERT INTO category."Wards" VALUES (20239, 492, 'system', '2023-07-26 08:40:17.683638+07', 'system', '2023-07-26 08:40:17.683638+07', 'Phường Hải Châu II', '20239', 'Phường');
INSERT INTO category."Wards" VALUES (20242, 492, 'system', '2023-07-26 08:40:17.683641+07', 'system', '2023-07-26 08:40:17.683641+07', 'Phường Phước Ninh', '20242', 'Phường');
INSERT INTO category."Wards" VALUES (20245, 492, 'system', '2023-07-26 08:40:17.683643+07', 'system', '2023-07-26 08:40:17.683643+07', 'Phường Hòa Thuận Tây', '20245', 'Phường');
INSERT INTO category."Wards" VALUES (20246, 492, 'system', '2023-07-26 08:40:17.683645+07', 'system', '2023-07-26 08:40:17.683645+07', 'Phường Hòa Thuận Đông', '20246', 'Phường');
INSERT INTO category."Wards" VALUES (20248, 492, 'system', '2023-07-26 08:40:17.683648+07', 'system', '2023-07-26 08:40:17.683648+07', 'Phường Nam Dương', '20248', 'Phường');
INSERT INTO category."Wards" VALUES (20251, 492, 'system', '2023-07-26 08:40:17.68365+07', 'system', '2023-07-26 08:40:17.68365+07', 'Phường Bình Hiên', '20251', 'Phường');
INSERT INTO category."Wards" VALUES (20254, 492, 'system', '2023-07-26 08:40:17.683652+07', 'system', '2023-07-26 08:40:17.683652+07', 'Phường Bình Thuận', '20254', 'Phường');
INSERT INTO category."Wards" VALUES (20257, 492, 'system', '2023-07-26 08:40:17.683654+07', 'system', '2023-07-26 08:40:17.683654+07', 'Phường Hòa Cường Bắc', '20257', 'Phường');
INSERT INTO category."Wards" VALUES (20258, 492, 'system', '2023-07-26 08:40:17.683657+07', 'system', '2023-07-26 08:40:17.683657+07', 'Phường Hòa Cường Nam', '20258', 'Phường');
INSERT INTO category."Wards" VALUES (20260, 495, 'system', '2023-07-26 08:40:17.683684+07', 'system', '2023-07-26 08:40:17.683684+07', 'Phường Khuê Trung', '20260', 'Phường');
INSERT INTO category."Wards" VALUES (20263, 493, 'system', '2023-07-26 08:40:17.683659+07', 'system', '2023-07-26 08:40:17.683659+07', 'Phường Thọ Quang', '20263', 'Phường');
INSERT INTO category."Wards" VALUES (20266, 493, 'system', '2023-07-26 08:40:17.683661+07', 'system', '2023-07-26 08:40:17.683661+07', 'Phường Nại Hiên Đông', '20266', 'Phường');
INSERT INTO category."Wards" VALUES (20269, 493, 'system', '2023-07-26 08:40:17.683664+07', 'system', '2023-07-26 08:40:17.683664+07', 'Phường Mân Thái', '20269', 'Phường');
INSERT INTO category."Wards" VALUES (20272, 493, 'system', '2023-07-26 08:40:17.683666+07', 'system', '2023-07-26 08:40:17.683666+07', 'Phường An Hải Bắc', '20272', 'Phường');
INSERT INTO category."Wards" VALUES (20275, 493, 'system', '2023-07-26 08:40:17.683668+07', 'system', '2023-07-26 08:40:17.683668+07', 'Phường Phước Mỹ', '20275', 'Phường');
INSERT INTO category."Wards" VALUES (20278, 493, 'system', '2023-07-26 08:40:17.683671+07', 'system', '2023-07-26 08:40:17.683671+07', 'Phường An Hải Tây', '20278', 'Phường');
INSERT INTO category."Wards" VALUES (20281, 493, 'system', '2023-07-26 08:40:17.683673+07', 'system', '2023-07-26 08:40:17.683673+07', 'Phường An Hải Đông', '20281', 'Phường');
INSERT INTO category."Wards" VALUES (20284, 494, 'system', '2023-07-26 08:40:17.683675+07', 'system', '2023-07-26 08:40:17.683675+07', 'Phường Mỹ An', '20284', 'Phường');
INSERT INTO category."Wards" VALUES (20285, 494, 'system', '2023-07-26 08:40:17.683678+07', 'system', '2023-07-26 08:40:17.683678+07', 'Phường Khuê Mỹ', '20285', 'Phường');
INSERT INTO category."Wards" VALUES (20287, 494, 'system', '2023-07-26 08:40:17.68368+07', 'system', '2023-07-26 08:40:17.68368+07', 'Phường Hoà Quý', '20287', 'Phường');
INSERT INTO category."Wards" VALUES (20290, 494, 'system', '2023-07-26 08:40:17.683682+07', 'system', '2023-07-26 08:40:17.683682+07', 'Phường Hoà Hải', '20290', 'Phường');
INSERT INTO category."Wards" VALUES (20293, 497, 'system', '2023-07-26 08:40:17.683698+07', 'system', '2023-07-26 08:40:17.683698+07', 'Xã Hòa Bắc', '20293', 'Xã');
INSERT INTO category."Wards" VALUES (20296, 497, 'system', '2023-07-26 08:40:17.6837+07', 'system', '2023-07-26 08:40:17.6837+07', 'Xã Hòa Liên', '20296', 'Xã');
INSERT INTO category."Wards" VALUES (20299, 497, 'system', '2023-07-26 08:40:17.683702+07', 'system', '2023-07-26 08:40:17.683703+07', 'Xã Hòa Ninh', '20299', 'Xã');
INSERT INTO category."Wards" VALUES (20302, 497, 'system', '2023-07-26 08:40:17.683705+07', 'system', '2023-07-26 08:40:17.683705+07', 'Xã Hòa Sơn', '20302', 'Xã');
INSERT INTO category."Wards" VALUES (20305, 495, 'system', '2023-07-26 08:40:17.683687+07', 'system', '2023-07-26 08:40:17.683687+07', 'Phường Hòa Phát', '20305', 'Phường');
INSERT INTO category."Wards" VALUES (20306, 495, 'system', '2023-07-26 08:40:17.683689+07', 'system', '2023-07-26 08:40:17.683689+07', 'Phường Hòa An', '20306', 'Phường');
INSERT INTO category."Wards" VALUES (20308, 497, 'system', '2023-07-26 08:40:17.683707+07', 'system', '2023-07-26 08:40:17.683707+07', 'Xã Hòa Nhơn', '20308', 'Xã');
INSERT INTO category."Wards" VALUES (20311, 495, 'system', '2023-07-26 08:40:17.683691+07', 'system', '2023-07-26 08:40:17.683691+07', 'Phường Hòa Thọ Tây', '20311', 'Phường');
INSERT INTO category."Wards" VALUES (20312, 495, 'system', '2023-07-26 08:40:17.683694+07', 'system', '2023-07-26 08:40:17.683694+07', 'Phường Hòa Thọ Đông', '20312', 'Phường');
INSERT INTO category."Wards" VALUES (20314, 495, 'system', '2023-07-26 08:40:17.683696+07', 'system', '2023-07-26 08:40:17.683696+07', 'Phường Hòa Xuân', '20314', 'Phường');
INSERT INTO category."Wards" VALUES (20317, 497, 'system', '2023-07-26 08:40:17.68371+07', 'system', '2023-07-26 08:40:17.68371+07', 'Xã Hòa Phú', '20317', 'Xã');
INSERT INTO category."Wards" VALUES (20320, 497, 'system', '2023-07-26 08:40:17.683712+07', 'system', '2023-07-26 08:40:17.683712+07', 'Xã Hòa Phong', '20320', 'Xã');
INSERT INTO category."Wards" VALUES (20323, 497, 'system', '2023-07-26 08:40:17.683714+07', 'system', '2023-07-26 08:40:17.683714+07', 'Xã Hòa Châu', '20323', 'Xã');
INSERT INTO category."Wards" VALUES (20326, 497, 'system', '2023-07-26 08:40:17.683716+07', 'system', '2023-07-26 08:40:17.683716+07', 'Xã Hòa Tiến', '20326', 'Xã');
INSERT INTO category."Wards" VALUES (20329, 497, 'system', '2023-07-26 08:40:17.683718+07', 'system', '2023-07-26 08:40:17.683718+07', 'Xã Hòa Phước', '20329', 'Xã');
INSERT INTO category."Wards" VALUES (20332, 497, 'system', '2023-07-26 08:40:17.68372+07', 'system', '2023-07-26 08:40:17.68372+07', 'Xã Hòa Khương', '20332', 'Xã');
INSERT INTO category."Wards" VALUES (20335, 502, 'system', '2023-07-26 08:40:17.683723+07', 'system', '2023-07-26 08:40:17.683723+07', 'Phường Tân Thạnh', '20335', 'Phường');
INSERT INTO category."Wards" VALUES (20338, 502, 'system', '2023-07-26 08:40:17.683725+07', 'system', '2023-07-26 08:40:17.683725+07', 'Phường Phước Hòa', '20338', 'Phường');
INSERT INTO category."Wards" VALUES (20341, 502, 'system', '2023-07-26 08:40:17.683728+07', 'system', '2023-07-26 08:40:17.683728+07', 'Phường An Mỹ', '20341', 'Phường');
INSERT INTO category."Wards" VALUES (20344, 502, 'system', '2023-07-26 08:40:17.68373+07', 'system', '2023-07-26 08:40:17.68373+07', 'Phường Hòa Hương', '20344', 'Phường');
INSERT INTO category."Wards" VALUES (20347, 502, 'system', '2023-07-26 08:40:17.683732+07', 'system', '2023-07-26 08:40:17.683732+07', 'Phường An Xuân', '20347', 'Phường');
INSERT INTO category."Wards" VALUES (20350, 502, 'system', '2023-07-26 08:40:17.683734+07', 'system', '2023-07-26 08:40:17.683734+07', 'Phường An Sơn', '20350', 'Phường');
INSERT INTO category."Wards" VALUES (20353, 502, 'system', '2023-07-26 08:40:17.683737+07', 'system', '2023-07-26 08:40:17.683737+07', 'Phường Trường Xuân', '20353', 'Phường');
INSERT INTO category."Wards" VALUES (20356, 502, 'system', '2023-07-26 08:40:17.683739+07', 'system', '2023-07-26 08:40:17.683739+07', 'Phường An Phú', '20356', 'Phường');
INSERT INTO category."Wards" VALUES (20359, 502, 'system', '2023-07-26 08:40:17.683741+07', 'system', '2023-07-26 08:40:17.683741+07', 'Xã Tam Thanh', '20359', 'Xã');
INSERT INTO category."Wards" VALUES (20362, 502, 'system', '2023-07-26 08:40:17.683743+07', 'system', '2023-07-26 08:40:17.683743+07', 'Xã Tam Thăng', '20362', 'Xã');
INSERT INTO category."Wards" VALUES (20364, 518, 'system', '2023-07-26 08:40:17.684231+07', 'system', '2023-07-26 08:40:17.684231+07', 'Thị trấn Phú Thịnh', '20364', 'Thị trấn');
INSERT INTO category."Wards" VALUES (20365, 518, 'system', '2023-07-26 08:40:17.684233+07', 'system', '2023-07-26 08:40:17.684233+07', 'Xã Tam Thành', '20365', 'Xã');
INSERT INTO category."Wards" VALUES (20368, 518, 'system', '2023-07-26 08:40:17.684235+07', 'system', '2023-07-26 08:40:17.684235+07', 'Xã Tam An', '20368', 'Xã');
INSERT INTO category."Wards" VALUES (20371, 502, 'system', '2023-07-26 08:40:17.683746+07', 'system', '2023-07-26 08:40:17.683746+07', 'Xã Tam Phú', '20371', 'Xã');
INSERT INTO category."Wards" VALUES (20374, 518, 'system', '2023-07-26 08:40:17.684237+07', 'system', '2023-07-26 08:40:17.684237+07', 'Xã Tam Đàn', '20374', 'Xã');
INSERT INTO category."Wards" VALUES (20375, 502, 'system', '2023-07-26 08:40:17.683748+07', 'system', '2023-07-26 08:40:17.683748+07', 'Phường Hoà Thuận', '20375', 'Phường');
INSERT INTO category."Wards" VALUES (20377, 518, 'system', '2023-07-26 08:40:17.68424+07', 'system', '2023-07-26 08:40:17.68424+07', 'Xã Tam Lộc', '20377', 'Xã');
INSERT INTO category."Wards" VALUES (20380, 518, 'system', '2023-07-26 08:40:17.684242+07', 'system', '2023-07-26 08:40:17.684242+07', 'Xã Tam Phước', '20380', 'Xã');
INSERT INTO category."Wards" VALUES (20383, 518, 'system', '2023-07-26 08:40:17.684244+07', 'system', '2023-07-26 08:40:17.684244+07', 'Xã Tam Vinh', '20383', 'Xã');
INSERT INTO category."Wards" VALUES (20386, 518, 'system', '2023-07-26 08:40:17.684246+07', 'system', '2023-07-26 08:40:17.684246+07', 'Xã Tam Thái', '20386', 'Xã');
INSERT INTO category."Wards" VALUES (20387, 518, 'system', '2023-07-26 08:40:17.684248+07', 'system', '2023-07-26 08:40:17.684248+07', 'Xã Tam Đại', '20387', 'Xã');
INSERT INTO category."Wards" VALUES (20389, 502, 'system', '2023-07-26 08:40:17.68375+07', 'system', '2023-07-26 08:40:17.68375+07', 'Xã Tam Ngọc', '20389', 'Xã');
INSERT INTO category."Wards" VALUES (20392, 518, 'system', '2023-07-26 08:40:17.684251+07', 'system', '2023-07-26 08:40:17.684251+07', 'Xã Tam Dân', '20392', 'Xã');
INSERT INTO category."Wards" VALUES (20395, 518, 'system', '2023-07-26 08:40:17.684253+07', 'system', '2023-07-26 08:40:17.684253+07', 'Xã Tam Lãnh', '20395', 'Xã');
INSERT INTO category."Wards" VALUES (20398, 503, 'system', '2023-07-26 08:40:17.683752+07', 'system', '2023-07-26 08:40:17.683752+07', 'Phường Minh An', '20398', 'Phường');
INSERT INTO category."Wards" VALUES (20401, 503, 'system', '2023-07-26 08:40:17.683755+07', 'system', '2023-07-26 08:40:17.683755+07', 'Phường Tân An', '20401', 'Phường');
INSERT INTO category."Wards" VALUES (20404, 503, 'system', '2023-07-26 08:40:17.683757+07', 'system', '2023-07-26 08:40:17.683757+07', 'Phường Cẩm Phô', '20404', 'Phường');
INSERT INTO category."Wards" VALUES (20407, 503, 'system', '2023-07-26 08:40:17.683759+07', 'system', '2023-07-26 08:40:17.683759+07', 'Phường Thanh Hà', '20407', 'Phường');
INSERT INTO category."Wards" VALUES (20410, 503, 'system', '2023-07-26 08:40:17.683762+07', 'system', '2023-07-26 08:40:17.683762+07', 'Phường Sơn Phong', '20410', 'Phường');
INSERT INTO category."Wards" VALUES (20413, 503, 'system', '2023-07-26 08:40:17.683764+07', 'system', '2023-07-26 08:40:17.683764+07', 'Phường Cẩm Châu', '20413', 'Phường');
INSERT INTO category."Wards" VALUES (20416, 503, 'system', '2023-07-26 08:40:17.683766+07', 'system', '2023-07-26 08:40:17.683766+07', 'Phường Cửa Đại', '20416', 'Phường');
INSERT INTO category."Wards" VALUES (20419, 503, 'system', '2023-07-26 08:40:17.683768+07', 'system', '2023-07-26 08:40:17.683769+07', 'Phường Cẩm An', '20419', 'Phường');
INSERT INTO category."Wards" VALUES (20422, 503, 'system', '2023-07-26 08:40:17.683771+07', 'system', '2023-07-26 08:40:17.683771+07', 'Xã Cẩm Hà', '20422', 'Xã');
INSERT INTO category."Wards" VALUES (20425, 503, 'system', '2023-07-26 08:40:17.683773+07', 'system', '2023-07-26 08:40:17.683773+07', 'Xã Cẩm Kim', '20425', 'Xã');
INSERT INTO category."Wards" VALUES (20428, 503, 'system', '2023-07-26 08:40:17.683775+07', 'system', '2023-07-26 08:40:17.683775+07', 'Phường Cẩm Nam', '20428', 'Phường');
INSERT INTO category."Wards" VALUES (20431, 503, 'system', '2023-07-26 08:40:17.683777+07', 'system', '2023-07-26 08:40:17.683777+07', 'Xã Cẩm Thanh', '20431', 'Xã');
INSERT INTO category."Wards" VALUES (20434, 503, 'system', '2023-07-26 08:40:17.683779+07', 'system', '2023-07-26 08:40:17.683779+07', 'Xã Tân Hiệp', '20434', 'Xã');
INSERT INTO category."Wards" VALUES (20437, 504, 'system', '2023-07-26 08:40:17.683781+07', 'system', '2023-07-26 08:40:17.683782+07', 'Xã Ch''ơm', '20437', 'Xã');
INSERT INTO category."Wards" VALUES (20440, 504, 'system', '2023-07-26 08:40:17.683784+07', 'system', '2023-07-26 08:40:17.683784+07', 'Xã Ga Ri', '20440', 'Xã');
INSERT INTO category."Wards" VALUES (20443, 504, 'system', '2023-07-26 08:40:17.683786+07', 'system', '2023-07-26 08:40:17.683786+07', 'Xã A Xan', '20443', 'Xã');
INSERT INTO category."Wards" VALUES (20446, 504, 'system', '2023-07-26 08:40:17.683788+07', 'system', '2023-07-26 08:40:17.683788+07', 'Xã Tr''Hy', '20446', 'Xã');
INSERT INTO category."Wards" VALUES (20449, 504, 'system', '2023-07-26 08:40:17.683791+07', 'system', '2023-07-26 08:40:17.683791+07', 'Xã Lăng', '20449', 'Xã');
INSERT INTO category."Wards" VALUES (20452, 504, 'system', '2023-07-26 08:40:17.683793+07', 'system', '2023-07-26 08:40:17.683793+07', 'Xã A Nông', '20452', 'Xã');
INSERT INTO category."Wards" VALUES (20455, 504, 'system', '2023-07-26 08:40:17.683795+07', 'system', '2023-07-26 08:40:17.683795+07', 'Xã A Tiêng', '20455', 'Xã');
INSERT INTO category."Wards" VALUES (20458, 504, 'system', '2023-07-26 08:40:17.683797+07', 'system', '2023-07-26 08:40:17.683797+07', 'Xã Bha Lê', '20458', 'Xã');
INSERT INTO category."Wards" VALUES (20461, 504, 'system', '2023-07-26 08:40:17.683799+07', 'system', '2023-07-26 08:40:17.683799+07', 'Xã A Vương', '20461', 'Xã');
INSERT INTO category."Wards" VALUES (20464, 504, 'system', '2023-07-26 08:40:17.683802+07', 'system', '2023-07-26 08:40:17.683802+07', 'Xã Dang', '20464', 'Xã');
INSERT INTO category."Wards" VALUES (20467, 505, 'system', '2023-07-26 08:40:17.683804+07', 'system', '2023-07-26 08:40:17.683804+07', 'Thị trấn P Rao', '20467', 'Thị trấn');
INSERT INTO category."Wards" VALUES (20470, 505, 'system', '2023-07-26 08:40:17.683806+07', 'system', '2023-07-26 08:40:17.683806+07', 'Xã Tà Lu', '20470', 'Xã');
INSERT INTO category."Wards" VALUES (20473, 505, 'system', '2023-07-26 08:40:17.683808+07', 'system', '2023-07-26 08:40:17.683808+07', 'Xã Sông Kôn', '20473', 'Xã');
INSERT INTO category."Wards" VALUES (20476, 505, 'system', '2023-07-26 08:40:17.68381+07', 'system', '2023-07-26 08:40:17.68381+07', 'Xã Jơ Ngây', '20476', 'Xã');
INSERT INTO category."Wards" VALUES (20479, 505, 'system', '2023-07-26 08:40:17.683813+07', 'system', '2023-07-26 08:40:17.683813+07', 'Xã A Ting', '20479', 'Xã');
INSERT INTO category."Wards" VALUES (20482, 505, 'system', '2023-07-26 08:40:17.683815+07', 'system', '2023-07-26 08:40:17.683815+07', 'Xã  Tư', '20482', 'Xã');
INSERT INTO category."Wards" VALUES (20485, 505, 'system', '2023-07-26 08:40:17.683817+07', 'system', '2023-07-26 08:40:17.683817+07', 'Xã Ba', '20485', 'Xã');
INSERT INTO category."Wards" VALUES (20488, 505, 'system', '2023-07-26 08:40:17.683819+07', 'system', '2023-07-26 08:40:17.683819+07', 'Xã A Rooi', '20488', 'Xã');
INSERT INTO category."Wards" VALUES (20491, 505, 'system', '2023-07-26 08:40:17.683821+07', 'system', '2023-07-26 08:40:17.683821+07', 'Xã Za Hung', '20491', 'Xã');
INSERT INTO category."Wards" VALUES (20494, 505, 'system', '2023-07-26 08:40:17.683823+07', 'system', '2023-07-26 08:40:17.683823+07', 'Xã Mà Cooi', '20494', 'Xã');
INSERT INTO category."Wards" VALUES (20497, 505, 'system', '2023-07-26 08:40:17.683825+07', 'system', '2023-07-26 08:40:17.683825+07', 'Xã Ka Dăng', '20497', 'Xã');
INSERT INTO category."Wards" VALUES (20500, 506, 'system', '2023-07-26 08:40:17.683827+07', 'system', '2023-07-26 08:40:17.683827+07', 'Thị Trấn Ái Nghĩa', '20500', 'Thị trấn');
INSERT INTO category."Wards" VALUES (20503, 506, 'system', '2023-07-26 08:40:17.68383+07', 'system', '2023-07-26 08:40:17.68383+07', 'Xã Đại Sơn', '20503', 'Xã');
INSERT INTO category."Wards" VALUES (20506, 506, 'system', '2023-07-26 08:40:17.683832+07', 'system', '2023-07-26 08:40:17.683832+07', 'Xã Đại Lãnh', '20506', 'Xã');
INSERT INTO category."Wards" VALUES (20509, 506, 'system', '2023-07-26 08:40:17.683834+07', 'system', '2023-07-26 08:40:17.683834+07', 'Xã Đại Hưng', '20509', 'Xã');
INSERT INTO category."Wards" VALUES (20512, 506, 'system', '2023-07-26 08:40:17.683836+07', 'system', '2023-07-26 08:40:17.683836+07', 'Xã Đại Hồng', '20512', 'Xã');
INSERT INTO category."Wards" VALUES (20515, 506, 'system', '2023-07-26 08:40:17.683839+07', 'system', '2023-07-26 08:40:17.683839+07', 'Xã Đại Đồng', '20515', 'Xã');
INSERT INTO category."Wards" VALUES (20518, 506, 'system', '2023-07-26 08:40:17.683841+07', 'system', '2023-07-26 08:40:17.683841+07', 'Xã Đại Quang', '20518', 'Xã');
INSERT INTO category."Wards" VALUES (20521, 506, 'system', '2023-07-26 08:40:17.683843+07', 'system', '2023-07-26 08:40:17.683843+07', 'Xã Đại Nghĩa', '20521', 'Xã');
INSERT INTO category."Wards" VALUES (20524, 506, 'system', '2023-07-26 08:40:17.683845+07', 'system', '2023-07-26 08:40:17.683845+07', 'Xã Đại Hiệp', '20524', 'Xã');
INSERT INTO category."Wards" VALUES (20527, 506, 'system', '2023-07-26 08:40:17.683857+07', 'system', '2023-07-26 08:40:17.683857+07', 'Xã Đại Thạnh', '20527', 'Xã');
INSERT INTO category."Wards" VALUES (20530, 506, 'system', '2023-07-26 08:40:17.68386+07', 'system', '2023-07-26 08:40:17.68386+07', 'Xã Đại Chánh', '20530', 'Xã');
INSERT INTO category."Wards" VALUES (20533, 506, 'system', '2023-07-26 08:40:17.683862+07', 'system', '2023-07-26 08:40:17.683862+07', 'Xã Đại Tân', '20533', 'Xã');
INSERT INTO category."Wards" VALUES (20536, 506, 'system', '2023-07-26 08:40:17.683864+07', 'system', '2023-07-26 08:40:17.683864+07', 'Xã Đại Phong', '20536', 'Xã');
INSERT INTO category."Wards" VALUES (20539, 506, 'system', '2023-07-26 08:40:17.683866+07', 'system', '2023-07-26 08:40:17.683866+07', 'Xã Đại Minh', '20539', 'Xã');
INSERT INTO category."Wards" VALUES (20542, 506, 'system', '2023-07-26 08:40:17.683869+07', 'system', '2023-07-26 08:40:17.683869+07', 'Xã Đại Thắng', '20542', 'Xã');
INSERT INTO category."Wards" VALUES (20545, 506, 'system', '2023-07-26 08:40:17.683871+07', 'system', '2023-07-26 08:40:17.683871+07', 'Xã Đại Cường', '20545', 'Xã');
INSERT INTO category."Wards" VALUES (20547, 506, 'system', '2023-07-26 08:40:17.683873+07', 'system', '2023-07-26 08:40:17.683873+07', 'Xã Đại An', '20547', 'Xã');
INSERT INTO category."Wards" VALUES (20548, 506, 'system', '2023-07-26 08:40:17.683875+07', 'system', '2023-07-26 08:40:17.683875+07', 'Xã Đại Hòa', '20548', 'Xã');
INSERT INTO category."Wards" VALUES (20551, 507, 'system', '2023-07-26 08:40:17.683877+07', 'system', '2023-07-26 08:40:17.683877+07', 'Phường Vĩnh Điện', '20551', 'Phường');
INSERT INTO category."Wards" VALUES (20554, 507, 'system', '2023-07-26 08:40:17.683881+07', 'system', '2023-07-26 08:40:17.683881+07', 'Xã Điện Tiến', '20554', 'Xã');
INSERT INTO category."Wards" VALUES (20557, 507, 'system', '2023-07-26 08:40:17.683883+07', 'system', '2023-07-26 08:40:17.683883+07', 'Xã Điện Hòa', '20557', 'Xã');
INSERT INTO category."Wards" VALUES (20560, 507, 'system', '2023-07-26 08:40:17.683885+07', 'system', '2023-07-26 08:40:17.683885+07', 'Xã Điện Thắng Bắc', '20560', 'Xã');
INSERT INTO category."Wards" VALUES (20561, 507, 'system', '2023-07-26 08:40:17.683887+07', 'system', '2023-07-26 08:40:17.683887+07', 'Xã Điện Thắng Trung', '20561', 'Xã');
INSERT INTO category."Wards" VALUES (20562, 507, 'system', '2023-07-26 08:40:17.68389+07', 'system', '2023-07-26 08:40:17.68389+07', 'Xã Điện Thắng Nam', '20562', 'Xã');
INSERT INTO category."Wards" VALUES (20563, 507, 'system', '2023-07-26 08:40:17.683892+07', 'system', '2023-07-26 08:40:17.683892+07', 'Phường Điện Ngọc', '20563', 'Phường');
INSERT INTO category."Wards" VALUES (20566, 507, 'system', '2023-07-26 08:40:17.683894+07', 'system', '2023-07-26 08:40:17.683894+07', 'Xã Điện Hồng', '20566', 'Xã');
INSERT INTO category."Wards" VALUES (20569, 507, 'system', '2023-07-26 08:40:17.683896+07', 'system', '2023-07-26 08:40:17.683896+07', 'Xã Điện Thọ', '20569', 'Xã');
INSERT INTO category."Wards" VALUES (20572, 507, 'system', '2023-07-26 08:40:17.683899+07', 'system', '2023-07-26 08:40:17.683899+07', 'Xã Điện Phước', '20572', 'Xã');
INSERT INTO category."Wards" VALUES (20575, 507, 'system', '2023-07-26 08:40:17.683901+07', 'system', '2023-07-26 08:40:17.683901+07', 'Phường Điện An', '20575', 'Phường');
INSERT INTO category."Wards" VALUES (20578, 507, 'system', '2023-07-26 08:40:17.683903+07', 'system', '2023-07-26 08:40:17.683903+07', 'Phường Điện Nam Bắc', '20578', 'Phường');
INSERT INTO category."Wards" VALUES (20579, 507, 'system', '2023-07-26 08:40:17.683906+07', 'system', '2023-07-26 08:40:17.683906+07', 'Phường Điện Nam Trung', '20579', 'Phường');
INSERT INTO category."Wards" VALUES (20580, 507, 'system', '2023-07-26 08:40:17.683908+07', 'system', '2023-07-26 08:40:17.683908+07', 'Phường Điện Nam Đông', '20580', 'Phường');
INSERT INTO category."Wards" VALUES (20581, 507, 'system', '2023-07-26 08:40:17.68391+07', 'system', '2023-07-26 08:40:17.68391+07', 'Phường Điện Dương', '20581', 'Phường');
INSERT INTO category."Wards" VALUES (20584, 507, 'system', '2023-07-26 08:40:17.683913+07', 'system', '2023-07-26 08:40:17.683913+07', 'Xã Điện Quang', '20584', 'Xã');
INSERT INTO category."Wards" VALUES (20587, 507, 'system', '2023-07-26 08:40:17.683915+07', 'system', '2023-07-26 08:40:17.683915+07', 'Xã Điện Trung', '20587', 'Xã');
INSERT INTO category."Wards" VALUES (20590, 507, 'system', '2023-07-26 08:40:17.683917+07', 'system', '2023-07-26 08:40:17.683917+07', 'Xã Điện Phong', '20590', 'Xã');
INSERT INTO category."Wards" VALUES (20593, 507, 'system', '2023-07-26 08:40:17.683919+07', 'system', '2023-07-26 08:40:17.683919+07', 'Xã Điện Minh', '20593', 'Xã');
INSERT INTO category."Wards" VALUES (20596, 507, 'system', '2023-07-26 08:40:17.683921+07', 'system', '2023-07-26 08:40:17.683921+07', 'Xã Điện Phương', '20596', 'Xã');
INSERT INTO category."Wards" VALUES (20599, 508, 'system', '2023-07-26 08:40:17.683924+07', 'system', '2023-07-26 08:40:17.683924+07', 'Thị trấn Nam Phước', '20599', 'Thị trấn');
INSERT INTO category."Wards" VALUES (20602, 508, 'system', '2023-07-26 08:40:17.683926+07', 'system', '2023-07-26 08:40:17.683926+07', 'Xã Duy Thu', '20602', 'Xã');
INSERT INTO category."Wards" VALUES (20605, 508, 'system', '2023-07-26 08:40:17.683929+07', 'system', '2023-07-26 08:40:17.683929+07', 'Xã Duy Phú', '20605', 'Xã');
INSERT INTO category."Wards" VALUES (20608, 508, 'system', '2023-07-26 08:40:17.683931+07', 'system', '2023-07-26 08:40:17.683931+07', 'Xã Duy Tân', '20608', 'Xã');
INSERT INTO category."Wards" VALUES (20611, 508, 'system', '2023-07-26 08:40:17.683933+07', 'system', '2023-07-26 08:40:17.683933+07', 'Xã Duy Hòa', '20611', 'Xã');
INSERT INTO category."Wards" VALUES (20614, 508, 'system', '2023-07-26 08:40:17.683935+07', 'system', '2023-07-26 08:40:17.683935+07', 'Xã Duy Châu', '20614', 'Xã');
INSERT INTO category."Wards" VALUES (20617, 508, 'system', '2023-07-26 08:40:17.683937+07', 'system', '2023-07-26 08:40:17.683937+07', 'Xã Duy Trinh', '20617', 'Xã');
INSERT INTO category."Wards" VALUES (20620, 508, 'system', '2023-07-26 08:40:17.683939+07', 'system', '2023-07-26 08:40:17.683939+07', 'Xã Duy Sơn', '20620', 'Xã');
INSERT INTO category."Wards" VALUES (20623, 508, 'system', '2023-07-26 08:40:17.683941+07', 'system', '2023-07-26 08:40:17.683941+07', 'Xã Duy Trung', '20623', 'Xã');
INSERT INTO category."Wards" VALUES (20626, 508, 'system', '2023-07-26 08:40:17.683943+07', 'system', '2023-07-26 08:40:17.683944+07', 'Xã Duy Phước', '20626', 'Xã');
INSERT INTO category."Wards" VALUES (20629, 508, 'system', '2023-07-26 08:40:17.683946+07', 'system', '2023-07-26 08:40:17.683946+07', 'Xã Duy Thành', '20629', 'Xã');
INSERT INTO category."Wards" VALUES (20632, 508, 'system', '2023-07-26 08:40:17.683948+07', 'system', '2023-07-26 08:40:17.683948+07', 'Xã Duy Vinh', '20632', 'Xã');
INSERT INTO category."Wards" VALUES (20635, 508, 'system', '2023-07-26 08:40:17.68395+07', 'system', '2023-07-26 08:40:17.68395+07', 'Xã Duy Nghĩa', '20635', 'Xã');
INSERT INTO category."Wards" VALUES (20638, 508, 'system', '2023-07-26 08:40:17.683952+07', 'system', '2023-07-26 08:40:17.683952+07', 'Xã Duy Hải', '20638', 'Xã');
INSERT INTO category."Wards" VALUES (20641, 509, 'system', '2023-07-26 08:40:17.683954+07', 'system', '2023-07-26 08:40:17.683954+07', 'Thị trấn Đông Phú', '20641', 'Thị trấn');
INSERT INTO category."Wards" VALUES (20644, 509, 'system', '2023-07-26 08:40:17.683957+07', 'system', '2023-07-26 08:40:17.683957+07', 'Xã Quế Xuân 1', '20644', 'Xã');
INSERT INTO category."Wards" VALUES (20647, 509, 'system', '2023-07-26 08:40:17.683959+07', 'system', '2023-07-26 08:40:17.683959+07', 'Xã Quế Xuân 2', '20647', 'Xã');
INSERT INTO category."Wards" VALUES (20650, 509, 'system', '2023-07-26 08:40:17.683962+07', 'system', '2023-07-26 08:40:17.683962+07', 'Xã Quế Phú', '20650', 'Xã');
INSERT INTO category."Wards" VALUES (20651, 509, 'system', '2023-07-26 08:40:17.683964+07', 'system', '2023-07-26 08:40:17.683964+07', 'Thị trấn Hương An', '20651', 'Thị trấn');
INSERT INTO category."Wards" VALUES (20656, 519, 'system', '2023-07-26 08:40:17.684255+07', 'system', '2023-07-26 08:40:17.684255+07', 'Xã Quế Trung', '20656', 'Xã');
INSERT INTO category."Wards" VALUES (20659, 509, 'system', '2023-07-26 08:40:17.683967+07', 'system', '2023-07-26 08:40:17.683967+07', 'Xã Quế Hiệp', '20659', 'Xã');
INSERT INTO category."Wards" VALUES (20662, 509, 'system', '2023-07-26 08:40:17.683969+07', 'system', '2023-07-26 08:40:17.683969+07', 'Xã Quế Thuận', '20662', 'Xã');
INSERT INTO category."Wards" VALUES (20665, 509, 'system', '2023-07-26 08:40:17.683971+07', 'system', '2023-07-26 08:40:17.683971+07', 'Xã Quế Mỹ', '20665', 'Xã');
INSERT INTO category."Wards" VALUES (20668, 519, 'system', '2023-07-26 08:40:17.684257+07', 'system', '2023-07-26 08:40:17.684257+07', 'Xã Ninh Phước', '20668', 'Xã');
INSERT INTO category."Wards" VALUES (20669, 519, 'system', '2023-07-26 08:40:17.684259+07', 'system', '2023-07-26 08:40:17.684259+07', 'Xã Phước Ninh', '20669', 'Xã');
INSERT INTO category."Wards" VALUES (20671, 519, 'system', '2023-07-26 08:40:17.684262+07', 'system', '2023-07-26 08:40:17.684262+07', 'Xã Quế Lộc', '20671', 'Xã');
INSERT INTO category."Wards" VALUES (20672, 519, 'system', '2023-07-26 08:40:17.684264+07', 'system', '2023-07-26 08:40:17.684264+07', 'Xã Sơn Viên', '20672', 'Xã');
INSERT INTO category."Wards" VALUES (20677, 509, 'system', '2023-07-26 08:40:17.683973+07', 'system', '2023-07-26 08:40:17.683973+07', 'Xã Quế Long', '20677', 'Xã');
INSERT INTO category."Wards" VALUES (20680, 509, 'system', '2023-07-26 08:40:17.683975+07', 'system', '2023-07-26 08:40:17.683975+07', 'Xã Quế Châu', '20680', 'Xã');
INSERT INTO category."Wards" VALUES (20683, 509, 'system', '2023-07-26 08:40:17.683978+07', 'system', '2023-07-26 08:40:17.683978+07', 'Xã Quế Phong', '20683', 'Xã');
INSERT INTO category."Wards" VALUES (20686, 509, 'system', '2023-07-26 08:40:17.68398+07', 'system', '2023-07-26 08:40:17.68398+07', 'Xã Quế An', '20686', 'Xã');
INSERT INTO category."Wards" VALUES (20689, 509, 'system', '2023-07-26 08:40:17.683982+07', 'system', '2023-07-26 08:40:17.683982+07', 'Xã Quế Minh', '20689', 'Xã');
INSERT INTO category."Wards" VALUES (20692, 519, 'system', '2023-07-26 08:40:17.684266+07', 'system', '2023-07-26 08:40:17.684266+07', 'Xã Quế Lâm', '20692', 'Xã');
INSERT INTO category."Wards" VALUES (20695, 510, 'system', '2023-07-26 08:40:17.683984+07', 'system', '2023-07-26 08:40:17.683984+07', 'Thị trấn Thạnh Mỹ', '20695', 'Thị trấn');
INSERT INTO category."Wards" VALUES (20698, 510, 'system', '2023-07-26 08:40:17.683987+07', 'system', '2023-07-26 08:40:17.683987+07', 'Xã Laêê', '20698', 'Xã');
INSERT INTO category."Wards" VALUES (20699, 510, 'system', '2023-07-26 08:40:17.683989+07', 'system', '2023-07-26 08:40:17.683989+07', 'Xã Chơ Chun', '20699', 'Xã');
INSERT INTO category."Wards" VALUES (20701, 510, 'system', '2023-07-26 08:40:17.683991+07', 'system', '2023-07-26 08:40:17.683991+07', 'Xã Zuôich', '20701', 'Xã');
INSERT INTO category."Wards" VALUES (20702, 510, 'system', '2023-07-26 08:40:17.683993+07', 'system', '2023-07-26 08:40:17.683993+07', 'Xã Tà Pơơ', '20702', 'Xã');
INSERT INTO category."Wards" VALUES (20704, 510, 'system', '2023-07-26 08:40:17.683995+07', 'system', '2023-07-26 08:40:17.683995+07', 'Xã La Dêê', '20704', 'Xã');
INSERT INTO category."Wards" VALUES (20705, 510, 'system', '2023-07-26 08:40:17.683997+07', 'system', '2023-07-26 08:40:17.683997+07', 'Xã Đắc Tôi', '20705', 'Xã');
INSERT INTO category."Wards" VALUES (20707, 510, 'system', '2023-07-26 08:40:17.683999+07', 'system', '2023-07-26 08:40:17.684+07', 'Xã Chà Vàl', '20707', 'Xã');
INSERT INTO category."Wards" VALUES (20710, 510, 'system', '2023-07-26 08:40:17.684002+07', 'system', '2023-07-26 08:40:17.684002+07', 'Xã Tà Bhinh', '20710', 'Xã');
INSERT INTO category."Wards" VALUES (20713, 510, 'system', '2023-07-26 08:40:17.684004+07', 'system', '2023-07-26 08:40:17.684004+07', 'Xã Cà Dy', '20713', 'Xã');
INSERT INTO category."Wards" VALUES (20716, 510, 'system', '2023-07-26 08:40:17.684006+07', 'system', '2023-07-26 08:40:17.684006+07', 'Xã Đắc Pre', '20716', 'Xã');
INSERT INTO category."Wards" VALUES (20719, 510, 'system', '2023-07-26 08:40:17.684008+07', 'system', '2023-07-26 08:40:17.684008+07', 'Xã Đắc Pring', '20719', 'Xã');
INSERT INTO category."Wards" VALUES (20722, 511, 'system', '2023-07-26 08:40:17.684011+07', 'system', '2023-07-26 08:40:17.684011+07', 'Thị trấn Khâm Đức', '20722', 'Thị trấn');
INSERT INTO category."Wards" VALUES (20725, 511, 'system', '2023-07-26 08:40:17.684013+07', 'system', '2023-07-26 08:40:17.684013+07', 'Xã Phước Xuân', '20725', 'Xã');
INSERT INTO category."Wards" VALUES (20728, 511, 'system', '2023-07-26 08:40:17.684015+07', 'system', '2023-07-26 08:40:17.684015+07', 'Xã Phước Hiệp', '20728', 'Xã');
INSERT INTO category."Wards" VALUES (20729, 511, 'system', '2023-07-26 08:40:17.684018+07', 'system', '2023-07-26 08:40:17.684018+07', 'Xã Phước Hoà', '20729', 'Xã');
INSERT INTO category."Wards" VALUES (20731, 511, 'system', '2023-07-26 08:40:17.68402+07', 'system', '2023-07-26 08:40:17.68402+07', 'Xã Phước Đức', '20731', 'Xã');
INSERT INTO category."Wards" VALUES (20734, 511, 'system', '2023-07-26 08:40:17.684022+07', 'system', '2023-07-26 08:40:17.684022+07', 'Xã Phước Năng', '20734', 'Xã');
INSERT INTO category."Wards" VALUES (20737, 511, 'system', '2023-07-26 08:40:17.684024+07', 'system', '2023-07-26 08:40:17.684024+07', 'Xã Phước Mỹ', '20737', 'Xã');
INSERT INTO category."Wards" VALUES (20740, 511, 'system', '2023-07-26 08:40:17.684026+07', 'system', '2023-07-26 08:40:17.684026+07', 'Xã Phước Chánh', '20740', 'Xã');
INSERT INTO category."Wards" VALUES (20743, 511, 'system', '2023-07-26 08:40:17.684029+07', 'system', '2023-07-26 08:40:17.684029+07', 'Xã Phước Công', '20743', 'Xã');
INSERT INTO category."Wards" VALUES (20746, 511, 'system', '2023-07-26 08:40:17.684031+07', 'system', '2023-07-26 08:40:17.684031+07', 'Xã Phước Kim', '20746', 'Xã');
INSERT INTO category."Wards" VALUES (20749, 511, 'system', '2023-07-26 08:40:17.684033+07', 'system', '2023-07-26 08:40:17.684033+07', 'Xã Phước Lộc', '20749', 'Xã');
INSERT INTO category."Wards" VALUES (20752, 511, 'system', '2023-07-26 08:40:17.684035+07', 'system', '2023-07-26 08:40:17.684035+07', 'Xã Phước Thành', '20752', 'Xã');
INSERT INTO category."Wards" VALUES (20758, 512, 'system', '2023-07-26 08:40:17.684037+07', 'system', '2023-07-26 08:40:17.684037+07', 'Xã Hiệp Hòa', '20758', 'Xã');
INSERT INTO category."Wards" VALUES (20761, 512, 'system', '2023-07-26 08:40:17.68404+07', 'system', '2023-07-26 08:40:17.68404+07', 'Xã Hiệp Thuận', '20761', 'Xã');
INSERT INTO category."Wards" VALUES (20764, 512, 'system', '2023-07-26 08:40:17.684042+07', 'system', '2023-07-26 08:40:17.684042+07', 'Xã Quế Thọ', '20764', 'Xã');
INSERT INTO category."Wards" VALUES (20767, 512, 'system', '2023-07-26 08:40:17.684045+07', 'system', '2023-07-26 08:40:17.684045+07', 'Xã Bình Lâm', '20767', 'Xã');
INSERT INTO category."Wards" VALUES (20770, 512, 'system', '2023-07-26 08:40:17.684047+07', 'system', '2023-07-26 08:40:17.684047+07', 'Xã Sông Trà', '20770', 'Xã');
INSERT INTO category."Wards" VALUES (20773, 512, 'system', '2023-07-26 08:40:17.684049+07', 'system', '2023-07-26 08:40:17.684049+07', 'Xã Phước Trà', '20773', 'Xã');
INSERT INTO category."Wards" VALUES (20776, 512, 'system', '2023-07-26 08:40:17.684051+07', 'system', '2023-07-26 08:40:17.684051+07', 'Xã Phước Gia', '20776', 'Xã');
INSERT INTO category."Wards" VALUES (20779, 512, 'system', '2023-07-26 08:40:17.684053+07', 'system', '2023-07-26 08:40:17.684053+07', 'Thị trấn Tân Bình', '20779', 'Thị trấn');
INSERT INTO category."Wards" VALUES (20782, 512, 'system', '2023-07-26 08:40:17.684056+07', 'system', '2023-07-26 08:40:17.684056+07', 'Xã Quế Lưu', '20782', 'Xã');
INSERT INTO category."Wards" VALUES (20785, 512, 'system', '2023-07-26 08:40:17.684058+07', 'system', '2023-07-26 08:40:17.684058+07', 'Xã Thăng Phước', '20785', 'Xã');
INSERT INTO category."Wards" VALUES (20788, 512, 'system', '2023-07-26 08:40:17.68406+07', 'system', '2023-07-26 08:40:17.68406+07', 'Xã Bình Sơn', '20788', 'Xã');
INSERT INTO category."Wards" VALUES (20791, 513, 'system', '2023-07-26 08:40:17.684062+07', 'system', '2023-07-26 08:40:17.684062+07', 'Thị trấn Hà Lam', '20791', 'Thị trấn');
INSERT INTO category."Wards" VALUES (20794, 513, 'system', '2023-07-26 08:40:17.684065+07', 'system', '2023-07-26 08:40:17.684065+07', 'Xã Bình Dương', '20794', 'Xã');
INSERT INTO category."Wards" VALUES (20797, 513, 'system', '2023-07-26 08:40:17.684067+07', 'system', '2023-07-26 08:40:17.684067+07', 'Xã Bình Giang', '20797', 'Xã');
INSERT INTO category."Wards" VALUES (20800, 513, 'system', '2023-07-26 08:40:17.684069+07', 'system', '2023-07-26 08:40:17.684069+07', 'Xã Bình Nguyên', '20800', 'Xã');
INSERT INTO category."Wards" VALUES (20803, 513, 'system', '2023-07-26 08:40:17.684071+07', 'system', '2023-07-26 08:40:17.684071+07', 'Xã Bình Phục', '20803', 'Xã');
INSERT INTO category."Wards" VALUES (20806, 513, 'system', '2023-07-26 08:40:17.684073+07', 'system', '2023-07-26 08:40:17.684074+07', 'Xã Bình Triều', '20806', 'Xã');
INSERT INTO category."Wards" VALUES (20809, 513, 'system', '2023-07-26 08:40:17.684076+07', 'system', '2023-07-26 08:40:17.684076+07', 'Xã Bình Đào', '20809', 'Xã');
INSERT INTO category."Wards" VALUES (20812, 513, 'system', '2023-07-26 08:40:17.684078+07', 'system', '2023-07-26 08:40:17.684078+07', 'Xã Bình Minh', '20812', 'Xã');
INSERT INTO category."Wards" VALUES (20815, 513, 'system', '2023-07-26 08:40:17.68408+07', 'system', '2023-07-26 08:40:17.68408+07', 'Xã Bình Lãnh', '20815', 'Xã');
INSERT INTO category."Wards" VALUES (20818, 513, 'system', '2023-07-26 08:40:17.684082+07', 'system', '2023-07-26 08:40:17.684082+07', 'Xã Bình Trị', '20818', 'Xã');
INSERT INTO category."Wards" VALUES (20821, 513, 'system', '2023-07-26 08:40:17.684084+07', 'system', '2023-07-26 08:40:17.684084+07', 'Xã Bình Định Bắc', '20821', 'Xã');
INSERT INTO category."Wards" VALUES (20822, 513, 'system', '2023-07-26 08:40:17.684087+07', 'system', '2023-07-26 08:40:17.684087+07', 'Xã Bình Định Nam', '20822', 'Xã');
INSERT INTO category."Wards" VALUES (20824, 513, 'system', '2023-07-26 08:40:17.684089+07', 'system', '2023-07-26 08:40:17.684089+07', 'Xã Bình Quý', '20824', 'Xã');
INSERT INTO category."Wards" VALUES (20827, 513, 'system', '2023-07-26 08:40:17.684091+07', 'system', '2023-07-26 08:40:17.684091+07', 'Xã Bình Phú', '20827', 'Xã');
INSERT INTO category."Wards" VALUES (20830, 513, 'system', '2023-07-26 08:40:17.684093+07', 'system', '2023-07-26 08:40:17.684093+07', 'Xã Bình Chánh', '20830', 'Xã');
INSERT INTO category."Wards" VALUES (20833, 513, 'system', '2023-07-26 08:40:17.684095+07', 'system', '2023-07-26 08:40:17.684095+07', 'Xã Bình Tú', '20833', 'Xã');
INSERT INTO category."Wards" VALUES (20836, 513, 'system', '2023-07-26 08:40:17.684098+07', 'system', '2023-07-26 08:40:17.684098+07', 'Xã Bình Sa', '20836', 'Xã');
INSERT INTO category."Wards" VALUES (20839, 513, 'system', '2023-07-26 08:40:17.6841+07', 'system', '2023-07-26 08:40:17.6841+07', 'Xã Bình Hải', '20839', 'Xã');
INSERT INTO category."Wards" VALUES (20842, 513, 'system', '2023-07-26 08:40:17.684102+07', 'system', '2023-07-26 08:40:17.684102+07', 'Xã Bình Quế', '20842', 'Xã');
INSERT INTO category."Wards" VALUES (20845, 513, 'system', '2023-07-26 08:40:17.684104+07', 'system', '2023-07-26 08:40:17.684104+07', 'Xã Bình An', '20845', 'Xã');
INSERT INTO category."Wards" VALUES (20848, 513, 'system', '2023-07-26 08:40:17.684106+07', 'system', '2023-07-26 08:40:17.684106+07', 'Xã Bình Trung', '20848', 'Xã');
INSERT INTO category."Wards" VALUES (20851, 513, 'system', '2023-07-26 08:40:17.684108+07', 'system', '2023-07-26 08:40:17.684108+07', 'Xã Bình Nam', '20851', 'Xã');
INSERT INTO category."Wards" VALUES (20854, 514, 'system', '2023-07-26 08:40:17.68411+07', 'system', '2023-07-26 08:40:17.684111+07', 'Thị trấn Tiên Kỳ', '20854', 'Thị trấn');
INSERT INTO category."Wards" VALUES (20857, 514, 'system', '2023-07-26 08:40:17.684113+07', 'system', '2023-07-26 08:40:17.684113+07', 'Xã Tiên Sơn', '20857', 'Xã');
INSERT INTO category."Wards" VALUES (20860, 514, 'system', '2023-07-26 08:40:17.684115+07', 'system', '2023-07-26 08:40:17.684115+07', 'Xã Tiên Hà', '20860', 'Xã');
INSERT INTO category."Wards" VALUES (20863, 514, 'system', '2023-07-26 08:40:17.684117+07', 'system', '2023-07-26 08:40:17.684117+07', 'Xã Tiên Cẩm', '20863', 'Xã');
INSERT INTO category."Wards" VALUES (20866, 514, 'system', '2023-07-26 08:40:17.684119+07', 'system', '2023-07-26 08:40:17.684119+07', 'Xã Tiên Châu', '20866', 'Xã');
INSERT INTO category."Wards" VALUES (20869, 514, 'system', '2023-07-26 08:40:17.684122+07', 'system', '2023-07-26 08:40:17.684122+07', 'Xã Tiên Lãnh', '20869', 'Xã');
INSERT INTO category."Wards" VALUES (20872, 514, 'system', '2023-07-26 08:40:17.684124+07', 'system', '2023-07-26 08:40:17.684124+07', 'Xã Tiên Ngọc', '20872', 'Xã');
INSERT INTO category."Wards" VALUES (20875, 514, 'system', '2023-07-26 08:40:17.684127+07', 'system', '2023-07-26 08:40:17.684127+07', 'Xã Tiên Hiệp', '20875', 'Xã');
INSERT INTO category."Wards" VALUES (20878, 514, 'system', '2023-07-26 08:40:17.684129+07', 'system', '2023-07-26 08:40:17.684129+07', 'Xã Tiên Cảnh', '20878', 'Xã');
INSERT INTO category."Wards" VALUES (20881, 514, 'system', '2023-07-26 08:40:17.684131+07', 'system', '2023-07-26 08:40:17.684131+07', 'Xã Tiên Mỹ', '20881', 'Xã');
INSERT INTO category."Wards" VALUES (20884, 514, 'system', '2023-07-26 08:40:17.684133+07', 'system', '2023-07-26 08:40:17.684133+07', 'Xã Tiên Phong', '20884', 'Xã');
INSERT INTO category."Wards" VALUES (20887, 514, 'system', '2023-07-26 08:40:17.684135+07', 'system', '2023-07-26 08:40:17.684135+07', 'Xã Tiên Thọ', '20887', 'Xã');
INSERT INTO category."Wards" VALUES (20890, 514, 'system', '2023-07-26 08:40:17.684137+07', 'system', '2023-07-26 08:40:17.684138+07', 'Xã Tiên An', '20890', 'Xã');
INSERT INTO category."Wards" VALUES (20893, 514, 'system', '2023-07-26 08:40:17.68414+07', 'system', '2023-07-26 08:40:17.68414+07', 'Xã Tiên Lộc', '20893', 'Xã');
INSERT INTO category."Wards" VALUES (20896, 514, 'system', '2023-07-26 08:40:17.684142+07', 'system', '2023-07-26 08:40:17.684142+07', 'Xã Tiên Lập', '20896', 'Xã');
INSERT INTO category."Wards" VALUES (20899, 515, 'system', '2023-07-26 08:40:17.684144+07', 'system', '2023-07-26 08:40:17.684144+07', 'Thị trấn Trà My', '20899', 'Thị trấn');
INSERT INTO category."Wards" VALUES (20900, 515, 'system', '2023-07-26 08:40:17.684146+07', 'system', '2023-07-26 08:40:17.684146+07', 'Xã Trà Sơn', '20900', 'Xã');
INSERT INTO category."Wards" VALUES (20902, 515, 'system', '2023-07-26 08:40:17.684148+07', 'system', '2023-07-26 08:40:17.684148+07', 'Xã Trà Kót', '20902', 'Xã');
INSERT INTO category."Wards" VALUES (20905, 515, 'system', '2023-07-26 08:40:17.684151+07', 'system', '2023-07-26 08:40:17.684151+07', 'Xã Trà Nú', '20905', 'Xã');
INSERT INTO category."Wards" VALUES (20908, 515, 'system', '2023-07-26 08:40:17.684153+07', 'system', '2023-07-26 08:40:17.684153+07', 'Xã Trà Đông', '20908', 'Xã');
INSERT INTO category."Wards" VALUES (20911, 515, 'system', '2023-07-26 08:40:17.684155+07', 'system', '2023-07-26 08:40:17.684155+07', 'Xã Trà Dương', '20911', 'Xã');
INSERT INTO category."Wards" VALUES (20914, 515, 'system', '2023-07-26 08:40:17.684157+07', 'system', '2023-07-26 08:40:17.684157+07', 'Xã Trà Giang', '20914', 'Xã');
INSERT INTO category."Wards" VALUES (20917, 515, 'system', '2023-07-26 08:40:17.684159+07', 'system', '2023-07-26 08:40:17.684159+07', 'Xã Trà Bui', '20917', 'Xã');
INSERT INTO category."Wards" VALUES (20920, 515, 'system', '2023-07-26 08:40:17.684161+07', 'system', '2023-07-26 08:40:17.684161+07', 'Xã Trà Đốc', '20920', 'Xã');
INSERT INTO category."Wards" VALUES (20923, 515, 'system', '2023-07-26 08:40:17.684163+07', 'system', '2023-07-26 08:40:17.684163+07', 'Xã Trà Tân', '20923', 'Xã');
INSERT INTO category."Wards" VALUES (20926, 515, 'system', '2023-07-26 08:40:17.684165+07', 'system', '2023-07-26 08:40:17.684165+07', 'Xã Trà Giác', '20926', 'Xã');
INSERT INTO category."Wards" VALUES (20929, 515, 'system', '2023-07-26 08:40:17.684168+07', 'system', '2023-07-26 08:40:17.684168+07', 'Xã Trà Giáp', '20929', 'Xã');
INSERT INTO category."Wards" VALUES (20932, 515, 'system', '2023-07-26 08:40:17.68417+07', 'system', '2023-07-26 08:40:17.68417+07', 'Xã Trà Ka', '20932', 'Xã');
INSERT INTO category."Wards" VALUES (20935, 516, 'system', '2023-07-26 08:40:17.684172+07', 'system', '2023-07-26 08:40:17.684172+07', 'Xã Trà Leng', '20935', 'Xã');
INSERT INTO category."Wards" VALUES (20938, 516, 'system', '2023-07-26 08:40:17.684174+07', 'system', '2023-07-26 08:40:17.684174+07', 'Xã Trà Dơn', '20938', 'Xã');
INSERT INTO category."Wards" VALUES (20941, 516, 'system', '2023-07-26 08:40:17.684176+07', 'system', '2023-07-26 08:40:17.684176+07', 'Xã Trà Tập', '20941', 'Xã');
INSERT INTO category."Wards" VALUES (20944, 516, 'system', '2023-07-26 08:40:17.684178+07', 'system', '2023-07-26 08:40:17.684178+07', 'Xã Trà Mai', '20944', 'Xã');
INSERT INTO category."Wards" VALUES (20947, 516, 'system', '2023-07-26 08:40:17.68418+07', 'system', '2023-07-26 08:40:17.68418+07', 'Xã Trà Cang', '20947', 'Xã');
INSERT INTO category."Wards" VALUES (20950, 516, 'system', '2023-07-26 08:40:17.684182+07', 'system', '2023-07-26 08:40:17.684182+07', 'Xã Trà Linh', '20950', 'Xã');
INSERT INTO category."Wards" VALUES (20953, 516, 'system', '2023-07-26 08:40:17.684184+07', 'system', '2023-07-26 08:40:17.684185+07', 'Xã Trà Nam', '20953', 'Xã');
INSERT INTO category."Wards" VALUES (20956, 516, 'system', '2023-07-26 08:40:17.684187+07', 'system', '2023-07-26 08:40:17.684187+07', 'Xã Trà Don', '20956', 'Xã');
INSERT INTO category."Wards" VALUES (20959, 516, 'system', '2023-07-26 08:40:17.684189+07', 'system', '2023-07-26 08:40:17.684189+07', 'Xã Trà Vân', '20959', 'Xã');
INSERT INTO category."Wards" VALUES (20962, 516, 'system', '2023-07-26 08:40:17.684191+07', 'system', '2023-07-26 08:40:17.684191+07', 'Xã Trà Vinh', '20962', 'Xã');
INSERT INTO category."Wards" VALUES (20965, 517, 'system', '2023-07-26 08:40:17.684193+07', 'system', '2023-07-26 08:40:17.684193+07', 'Thị trấn Núi Thành', '20965', 'Thị trấn');
INSERT INTO category."Wards" VALUES (20968, 517, 'system', '2023-07-26 08:40:17.684196+07', 'system', '2023-07-26 08:40:17.684196+07', 'Xã Tam Xuân I', '20968', 'Xã');
INSERT INTO category."Wards" VALUES (20971, 517, 'system', '2023-07-26 08:40:17.684198+07', 'system', '2023-07-26 08:40:17.684198+07', 'Xã Tam Xuân II', '20971', 'Xã');
INSERT INTO category."Wards" VALUES (20974, 517, 'system', '2023-07-26 08:40:17.6842+07', 'system', '2023-07-26 08:40:17.6842+07', 'Xã Tam Tiến', '20974', 'Xã');
INSERT INTO category."Wards" VALUES (20977, 517, 'system', '2023-07-26 08:40:17.684203+07', 'system', '2023-07-26 08:40:17.684203+07', 'Xã Tam Sơn', '20977', 'Xã');
INSERT INTO category."Wards" VALUES (20980, 517, 'system', '2023-07-26 08:40:17.684205+07', 'system', '2023-07-26 08:40:17.684205+07', 'Xã Tam Thạnh', '20980', 'Xã');
INSERT INTO category."Wards" VALUES (20983, 517, 'system', '2023-07-26 08:40:17.684207+07', 'system', '2023-07-26 08:40:17.684207+07', 'Xã Tam Anh Bắc', '20983', 'Xã');
INSERT INTO category."Wards" VALUES (20984, 517, 'system', '2023-07-26 08:40:17.684209+07', 'system', '2023-07-26 08:40:17.684209+07', 'Xã Tam Anh Nam', '20984', 'Xã');
INSERT INTO category."Wards" VALUES (20986, 517, 'system', '2023-07-26 08:40:17.684211+07', 'system', '2023-07-26 08:40:17.684211+07', 'Xã Tam Hòa', '20986', 'Xã');
INSERT INTO category."Wards" VALUES (20989, 517, 'system', '2023-07-26 08:40:17.684213+07', 'system', '2023-07-26 08:40:17.684213+07', 'Xã Tam Hiệp', '20989', 'Xã');
INSERT INTO category."Wards" VALUES (20992, 517, 'system', '2023-07-26 08:40:17.684216+07', 'system', '2023-07-26 08:40:17.684216+07', 'Xã Tam Hải', '20992', 'Xã');
INSERT INTO category."Wards" VALUES (20995, 517, 'system', '2023-07-26 08:40:17.684218+07', 'system', '2023-07-26 08:40:17.684218+07', 'Xã Tam Giang', '20995', 'Xã');
INSERT INTO category."Wards" VALUES (20998, 517, 'system', '2023-07-26 08:40:17.68422+07', 'system', '2023-07-26 08:40:17.68422+07', 'Xã Tam Quang', '20998', 'Xã');
INSERT INTO category."Wards" VALUES (21001, 517, 'system', '2023-07-26 08:40:17.684222+07', 'system', '2023-07-26 08:40:17.684222+07', 'Xã Tam Nghĩa', '21001', 'Xã');
INSERT INTO category."Wards" VALUES (21004, 517, 'system', '2023-07-26 08:40:17.684224+07', 'system', '2023-07-26 08:40:17.684224+07', 'Xã Tam Mỹ Tây', '21004', 'Xã');
INSERT INTO category."Wards" VALUES (21005, 517, 'system', '2023-07-26 08:40:17.684226+07', 'system', '2023-07-26 08:40:17.684227+07', 'Xã Tam Mỹ Đông', '21005', 'Xã');
INSERT INTO category."Wards" VALUES (21007, 517, 'system', '2023-07-26 08:40:17.684229+07', 'system', '2023-07-26 08:40:17.684229+07', 'Xã Tam Trà', '21007', 'Xã');
INSERT INTO category."Wards" VALUES (21010, 522, 'system', '2023-07-26 08:40:17.684268+07', 'system', '2023-07-26 08:40:17.684268+07', 'Phường Lê Hồng Phong', '21010', 'Phường');
INSERT INTO category."Wards" VALUES (21013, 522, 'system', '2023-07-26 08:40:17.684271+07', 'system', '2023-07-26 08:40:17.684271+07', 'Phường Trần Phú', '21013', 'Phường');
INSERT INTO category."Wards" VALUES (21016, 522, 'system', '2023-07-26 08:40:17.684273+07', 'system', '2023-07-26 08:40:17.684273+07', 'Phường Quảng Phú', '21016', 'Phường');
INSERT INTO category."Wards" VALUES (21019, 522, 'system', '2023-07-26 08:40:17.684275+07', 'system', '2023-07-26 08:40:17.684275+07', 'Phường Nghĩa Chánh', '21019', 'Phường');
INSERT INTO category."Wards" VALUES (21022, 522, 'system', '2023-07-26 08:40:17.684278+07', 'system', '2023-07-26 08:40:17.684278+07', 'Phường Trần Hưng Đạo', '21022', 'Phường');
INSERT INTO category."Wards" VALUES (21025, 522, 'system', '2023-07-26 08:40:17.684281+07', 'system', '2023-07-26 08:40:17.684281+07', 'Phường Nguyễn Nghiêm', '21025', 'Phường');
INSERT INTO category."Wards" VALUES (21028, 522, 'system', '2023-07-26 08:40:17.684283+07', 'system', '2023-07-26 08:40:17.684283+07', 'Phường Nghĩa Lộ', '21028', 'Phường');
INSERT INTO category."Wards" VALUES (21031, 522, 'system', '2023-07-26 08:40:17.684286+07', 'system', '2023-07-26 08:40:17.684286+07', 'Phường Chánh Lộ', '21031', 'Phường');
INSERT INTO category."Wards" VALUES (21034, 522, 'system', '2023-07-26 08:40:17.684288+07', 'system', '2023-07-26 08:40:17.684288+07', 'Xã Nghĩa Dũng', '21034', 'Xã');
INSERT INTO category."Wards" VALUES (21037, 522, 'system', '2023-07-26 08:40:17.68429+07', 'system', '2023-07-26 08:40:17.68429+07', 'Xã Nghĩa Dõng', '21037', 'Xã');
INSERT INTO category."Wards" VALUES (21040, 524, 'system', '2023-07-26 08:40:17.684321+07', 'system', '2023-07-26 08:40:17.684321+07', 'Thị Trấn Châu Ổ', '21040', 'Thị trấn');
INSERT INTO category."Wards" VALUES (21043, 524, 'system', '2023-07-26 08:40:17.684324+07', 'system', '2023-07-26 08:40:17.684324+07', 'Xã Bình Thuận', '21043', 'Xã');
INSERT INTO category."Wards" VALUES (21046, 524, 'system', '2023-07-26 08:40:17.684326+07', 'system', '2023-07-26 08:40:17.684326+07', 'Xã Bình Thạnh', '21046', 'Xã');
INSERT INTO category."Wards" VALUES (21049, 524, 'system', '2023-07-26 08:40:17.684328+07', 'system', '2023-07-26 08:40:17.684328+07', 'Xã Bình Đông', '21049', 'Xã');
INSERT INTO category."Wards" VALUES (21052, 524, 'system', '2023-07-26 08:40:17.68433+07', 'system', '2023-07-26 08:40:17.68433+07', 'Xã Bình Chánh', '21052', 'Xã');
INSERT INTO category."Wards" VALUES (21055, 524, 'system', '2023-07-26 08:40:17.684332+07', 'system', '2023-07-26 08:40:17.684332+07', 'Xã Bình Nguyên', '21055', 'Xã');
INSERT INTO category."Wards" VALUES (21058, 524, 'system', '2023-07-26 08:40:17.684334+07', 'system', '2023-07-26 08:40:17.684334+07', 'Xã Bình Khương', '21058', 'Xã');
INSERT INTO category."Wards" VALUES (21061, 524, 'system', '2023-07-26 08:40:17.684337+07', 'system', '2023-07-26 08:40:17.684337+07', 'Xã Bình Trị', '21061', 'Xã');
INSERT INTO category."Wards" VALUES (21064, 524, 'system', '2023-07-26 08:40:17.684339+07', 'system', '2023-07-26 08:40:17.684339+07', 'Xã Bình An', '21064', 'Xã');
INSERT INTO category."Wards" VALUES (21067, 524, 'system', '2023-07-26 08:40:17.684341+07', 'system', '2023-07-26 08:40:17.684341+07', 'Xã Bình Hải', '21067', 'Xã');
INSERT INTO category."Wards" VALUES (21070, 524, 'system', '2023-07-26 08:40:17.684343+07', 'system', '2023-07-26 08:40:17.684343+07', 'Xã Bình Dương', '21070', 'Xã');
INSERT INTO category."Wards" VALUES (21073, 524, 'system', '2023-07-26 08:40:17.684345+07', 'system', '2023-07-26 08:40:17.684345+07', 'Xã Bình Phước', '21073', 'Xã');
INSERT INTO category."Wards" VALUES (21079, 524, 'system', '2023-07-26 08:40:17.684347+07', 'system', '2023-07-26 08:40:17.684347+07', 'Xã Bình Hòa', '21079', 'Xã');
INSERT INTO category."Wards" VALUES (21082, 524, 'system', '2023-07-26 08:40:17.684349+07', 'system', '2023-07-26 08:40:17.684349+07', 'Xã Bình Trung', '21082', 'Xã');
INSERT INTO category."Wards" VALUES (21085, 524, 'system', '2023-07-26 08:40:17.684352+07', 'system', '2023-07-26 08:40:17.684352+07', 'Xã Bình Minh', '21085', 'Xã');
INSERT INTO category."Wards" VALUES (21088, 524, 'system', '2023-07-26 08:40:17.684354+07', 'system', '2023-07-26 08:40:17.684354+07', 'Xã Bình Long', '21088', 'Xã');
INSERT INTO category."Wards" VALUES (21091, 524, 'system', '2023-07-26 08:40:17.684356+07', 'system', '2023-07-26 08:40:17.684356+07', 'Xã Bình Thanh ', '21091', 'Xã');
INSERT INTO category."Wards" VALUES (21100, 524, 'system', '2023-07-26 08:40:17.684358+07', 'system', '2023-07-26 08:40:17.684358+07', 'Xã Bình Chương', '21100', 'Xã');
INSERT INTO category."Wards" VALUES (21103, 524, 'system', '2023-07-26 08:40:17.684361+07', 'system', '2023-07-26 08:40:17.684361+07', 'Xã Bình Hiệp', '21103', 'Xã');
INSERT INTO category."Wards" VALUES (21106, 524, 'system', '2023-07-26 08:40:17.684363+07', 'system', '2023-07-26 08:40:17.684363+07', 'Xã Bình Mỹ', '21106', 'Xã');
INSERT INTO category."Wards" VALUES (21109, 524, 'system', '2023-07-26 08:40:17.684365+07', 'system', '2023-07-26 08:40:17.684365+07', 'Xã Bình Tân Phú', '21109', 'Xã');
INSERT INTO category."Wards" VALUES (21112, 524, 'system', '2023-07-26 08:40:17.684367+07', 'system', '2023-07-26 08:40:17.684367+07', 'Xã Bình Châu', '21112', 'Xã');
INSERT INTO category."Wards" VALUES (21115, 525, 'system', '2023-07-26 08:40:17.68437+07', 'system', '2023-07-26 08:40:17.68437+07', 'Thị trấn Trà Xuân', '21115', 'Thị trấn');
INSERT INTO category."Wards" VALUES (21118, 525, 'system', '2023-07-26 08:40:17.684372+07', 'system', '2023-07-26 08:40:17.684372+07', 'Xã Trà Giang', '21118', 'Xã');
INSERT INTO category."Wards" VALUES (21121, 525, 'system', '2023-07-26 08:40:17.684374+07', 'system', '2023-07-26 08:40:17.684374+07', 'Xã Trà Thủy', '21121', 'Xã');
INSERT INTO category."Wards" VALUES (21124, 525, 'system', '2023-07-26 08:40:17.684376+07', 'system', '2023-07-26 08:40:17.684376+07', 'Xã Trà Hiệp', '21124', 'Xã');
INSERT INTO category."Wards" VALUES (21127, 525, 'system', '2023-07-26 08:40:17.684378+07', 'system', '2023-07-26 08:40:17.684378+07', 'Xã Trà Bình', '21127', 'Xã');
INSERT INTO category."Wards" VALUES (21130, 525, 'system', '2023-07-26 08:40:17.684389+07', 'system', '2023-07-26 08:40:17.684389+07', 'Xã Trà Phú', '21130', 'Xã');
INSERT INTO category."Wards" VALUES (21133, 525, 'system', '2023-07-26 08:40:17.684391+07', 'system', '2023-07-26 08:40:17.684391+07', 'Xã Trà Lâm', '21133', 'Xã');
INSERT INTO category."Wards" VALUES (21136, 525, 'system', '2023-07-26 08:40:17.684393+07', 'system', '2023-07-26 08:40:17.684393+07', 'Xã Trà Tân', '21136', 'Xã');
INSERT INTO category."Wards" VALUES (21139, 525, 'system', '2023-07-26 08:40:17.684396+07', 'system', '2023-07-26 08:40:17.684396+07', 'Xã Trà Sơn', '21139', 'Xã');
INSERT INTO category."Wards" VALUES (21142, 525, 'system', '2023-07-26 08:40:17.684398+07', 'system', '2023-07-26 08:40:17.684398+07', 'Xã Trà Bùi', '21142', 'Xã');
INSERT INTO category."Wards" VALUES (21145, 525, 'system', '2023-07-26 08:40:17.6844+07', 'system', '2023-07-26 08:40:17.6844+07', 'Xã Trà Thanh', '21145', 'Xã');
INSERT INTO category."Wards" VALUES (21148, 525, 'system', '2023-07-26 08:40:17.684402+07', 'system', '2023-07-26 08:40:17.684402+07', 'Xã Sơn Trà', '21148', 'Xã');
INSERT INTO category."Wards" VALUES (21154, 525, 'system', '2023-07-26 08:40:17.684404+07', 'system', '2023-07-26 08:40:17.684404+07', 'Xã Trà Phong', '21154', 'Xã');
INSERT INTO category."Wards" VALUES (21157, 525, 'system', '2023-07-26 08:40:17.684406+07', 'system', '2023-07-26 08:40:17.684406+07', 'Xã Hương Trà', '21157', 'Xã');
INSERT INTO category."Wards" VALUES (21163, 525, 'system', '2023-07-26 08:40:17.684408+07', 'system', '2023-07-26 08:40:17.684408+07', 'Xã Trà Xinh', '21163', 'Xã');
INSERT INTO category."Wards" VALUES (21166, 525, 'system', '2023-07-26 08:40:17.68441+07', 'system', '2023-07-26 08:40:17.68441+07', 'Xã Trà Tây', '21166', 'Xã');
INSERT INTO category."Wards" VALUES (21172, 522, 'system', '2023-07-26 08:40:17.684293+07', 'system', '2023-07-26 08:40:17.684293+07', 'Phường Trương Quang Trọng', '21172', 'Phường');
INSERT INTO category."Wards" VALUES (21175, 527, 'system', '2023-07-26 08:40:17.684412+07', 'system', '2023-07-26 08:40:17.684412+07', 'Xã Tịnh Thọ', '21175', 'Xã');
INSERT INTO category."Wards" VALUES (21178, 527, 'system', '2023-07-26 08:40:17.684414+07', 'system', '2023-07-26 08:40:17.684414+07', 'Xã Tịnh Trà', '21178', 'Xã');
INSERT INTO category."Wards" VALUES (21181, 527, 'system', '2023-07-26 08:40:17.684417+07', 'system', '2023-07-26 08:40:17.684417+07', 'Xã Tịnh Phong', '21181', 'Xã');
INSERT INTO category."Wards" VALUES (21184, 527, 'system', '2023-07-26 08:40:17.684419+07', 'system', '2023-07-26 08:40:17.684419+07', 'Xã Tịnh Hiệp', '21184', 'Xã');
INSERT INTO category."Wards" VALUES (21187, 522, 'system', '2023-07-26 08:40:17.684295+07', 'system', '2023-07-26 08:40:17.684295+07', 'Xã Tịnh Hòa', '21187', 'Xã');
INSERT INTO category."Wards" VALUES (21190, 522, 'system', '2023-07-26 08:40:17.684297+07', 'system', '2023-07-26 08:40:17.684297+07', 'Xã Tịnh Kỳ', '21190', 'Xã');
INSERT INTO category."Wards" VALUES (21193, 527, 'system', '2023-07-26 08:40:17.684421+07', 'system', '2023-07-26 08:40:17.684421+07', 'Xã Tịnh Bình', '21193', 'Xã');
INSERT INTO category."Wards" VALUES (21196, 527, 'system', '2023-07-26 08:40:17.684423+07', 'system', '2023-07-26 08:40:17.684423+07', 'Xã Tịnh Đông', '21196', 'Xã');
INSERT INTO category."Wards" VALUES (21199, 522, 'system', '2023-07-26 08:40:17.6843+07', 'system', '2023-07-26 08:40:17.6843+07', 'Xã Tịnh Thiện', '21199', 'Xã');
INSERT INTO category."Wards" VALUES (21202, 522, 'system', '2023-07-26 08:40:17.684302+07', 'system', '2023-07-26 08:40:17.684302+07', 'Xã Tịnh Ấn Đông', '21202', 'Xã');
INSERT INTO category."Wards" VALUES (21205, 527, 'system', '2023-07-26 08:40:17.684425+07', 'system', '2023-07-26 08:40:17.684425+07', 'Xã Tịnh Bắc', '21205', 'Xã');
INSERT INTO category."Wards" VALUES (21208, 522, 'system', '2023-07-26 08:40:17.684304+07', 'system', '2023-07-26 08:40:17.684304+07', 'Xã Tịnh Châu', '21208', 'Xã');
INSERT INTO category."Wards" VALUES (21211, 522, 'system', '2023-07-26 08:40:17.684306+07', 'system', '2023-07-26 08:40:17.684306+07', 'Xã Tịnh Khê', '21211', 'Xã');
INSERT INTO category."Wards" VALUES (21214, 522, 'system', '2023-07-26 08:40:17.684308+07', 'system', '2023-07-26 08:40:17.684308+07', 'Xã Tịnh Long', '21214', 'Xã');
INSERT INTO category."Wards" VALUES (21217, 527, 'system', '2023-07-26 08:40:17.684428+07', 'system', '2023-07-26 08:40:17.684428+07', 'Xã Tịnh Sơn', '21217', 'Xã');
INSERT INTO category."Wards" VALUES (21220, 527, 'system', '2023-07-26 08:40:17.68443+07', 'system', '2023-07-26 08:40:17.68443+07', 'Xã Tịnh Hà', '21220', 'Xã');
INSERT INTO category."Wards" VALUES (21223, 522, 'system', '2023-07-26 08:40:17.68431+07', 'system', '2023-07-26 08:40:17.68431+07', 'Xã Tịnh Ấn Tây', '21223', 'Xã');
INSERT INTO category."Wards" VALUES (21226, 527, 'system', '2023-07-26 08:40:17.684432+07', 'system', '2023-07-26 08:40:17.684432+07', 'Xã Tịnh Giang', '21226', 'Xã');
INSERT INTO category."Wards" VALUES (21229, 527, 'system', '2023-07-26 08:40:17.684434+07', 'system', '2023-07-26 08:40:17.684434+07', 'Xã Tịnh Minh', '21229', 'Xã');
INSERT INTO category."Wards" VALUES (21232, 522, 'system', '2023-07-26 08:40:17.684313+07', 'system', '2023-07-26 08:40:17.684313+07', 'Xã Tịnh An', '21232', 'Xã');
INSERT INTO category."Wards" VALUES (21235, 528, 'system', '2023-07-26 08:40:17.684437+07', 'system', '2023-07-26 08:40:17.684437+07', 'Thị trấn La Hà', '21235', 'Thị trấn');
INSERT INTO category."Wards" VALUES (21238, 528, 'system', '2023-07-26 08:40:17.684439+07', 'system', '2023-07-26 08:40:17.684439+07', 'Thị trấn Sông Vệ', '21238', 'Thị trấn');
INSERT INTO category."Wards" VALUES (21241, 528, 'system', '2023-07-26 08:40:17.684441+07', 'system', '2023-07-26 08:40:17.684441+07', 'Xã Nghĩa Lâm', '21241', 'Xã');
INSERT INTO category."Wards" VALUES (21244, 528, 'system', '2023-07-26 08:40:17.684443+07', 'system', '2023-07-26 08:40:17.684443+07', 'Xã Nghĩa Thắng', '21244', 'Xã');
INSERT INTO category."Wards" VALUES (21247, 528, 'system', '2023-07-26 08:40:17.684446+07', 'system', '2023-07-26 08:40:17.684446+07', 'Xã Nghĩa Thuận', '21247', 'Xã');
INSERT INTO category."Wards" VALUES (21250, 528, 'system', '2023-07-26 08:40:17.684449+07', 'system', '2023-07-26 08:40:17.684449+07', 'Xã Nghĩa Kỳ', '21250', 'Xã');
INSERT INTO category."Wards" VALUES (21253, 522, 'system', '2023-07-26 08:40:17.684315+07', 'system', '2023-07-26 08:40:17.684315+07', 'Xã Nghĩa Phú', '21253', 'Xã');
INSERT INTO category."Wards" VALUES (21256, 522, 'system', '2023-07-26 08:40:17.684317+07', 'system', '2023-07-26 08:40:17.684317+07', 'Xã Nghĩa Hà', '21256', 'Xã');
INSERT INTO category."Wards" VALUES (21259, 528, 'system', '2023-07-26 08:40:17.684451+07', 'system', '2023-07-26 08:40:17.684451+07', 'Xã Nghĩa Sơn', '21259', 'Xã');
INSERT INTO category."Wards" VALUES (21262, 522, 'system', '2023-07-26 08:40:17.684319+07', 'system', '2023-07-26 08:40:17.684319+07', 'Xã Nghĩa An', '21262', 'Xã');
INSERT INTO category."Wards" VALUES (21268, 528, 'system', '2023-07-26 08:40:17.684453+07', 'system', '2023-07-26 08:40:17.684453+07', 'Xã Nghĩa Hòa', '21268', 'Xã');
INSERT INTO category."Wards" VALUES (21271, 528, 'system', '2023-07-26 08:40:17.684455+07', 'system', '2023-07-26 08:40:17.684455+07', 'Xã Nghĩa Điền', '21271', 'Xã');
INSERT INTO category."Wards" VALUES (21274, 528, 'system', '2023-07-26 08:40:17.684457+07', 'system', '2023-07-26 08:40:17.684457+07', 'Xã Nghĩa Thương', '21274', 'Xã');
INSERT INTO category."Wards" VALUES (21277, 528, 'system', '2023-07-26 08:40:17.684459+07', 'system', '2023-07-26 08:40:17.684459+07', 'Xã Nghĩa Trung', '21277', 'Xã');
INSERT INTO category."Wards" VALUES (21280, 528, 'system', '2023-07-26 08:40:17.684462+07', 'system', '2023-07-26 08:40:17.684462+07', 'Xã Nghĩa Hiệp', '21280', 'Xã');
INSERT INTO category."Wards" VALUES (21283, 528, 'system', '2023-07-26 08:40:17.684464+07', 'system', '2023-07-26 08:40:17.684464+07', 'Xã Nghĩa Phương', '21283', 'Xã');
INSERT INTO category."Wards" VALUES (21286, 528, 'system', '2023-07-26 08:40:17.684466+07', 'system', '2023-07-26 08:40:17.684466+07', 'Xã Nghĩa Mỹ', '21286', 'Xã');
INSERT INTO category."Wards" VALUES (21289, 529, 'system', '2023-07-26 08:40:17.684468+07', 'system', '2023-07-26 08:40:17.684468+07', 'Thị trấn Di Lăng', '21289', 'Thị trấn');
INSERT INTO category."Wards" VALUES (21292, 529, 'system', '2023-07-26 08:40:17.68447+07', 'system', '2023-07-26 08:40:17.68447+07', 'Xã Sơn Hạ', '21292', 'Xã');
INSERT INTO category."Wards" VALUES (21295, 529, 'system', '2023-07-26 08:40:17.684473+07', 'system', '2023-07-26 08:40:17.684473+07', 'Xã Sơn Thành', '21295', 'Xã');
INSERT INTO category."Wards" VALUES (21298, 529, 'system', '2023-07-26 08:40:17.684475+07', 'system', '2023-07-26 08:40:17.684475+07', 'Xã Sơn Nham', '21298', 'Xã');
INSERT INTO category."Wards" VALUES (21301, 529, 'system', '2023-07-26 08:40:17.684477+07', 'system', '2023-07-26 08:40:17.684477+07', 'Xã Sơn Bao', '21301', 'Xã');
INSERT INTO category."Wards" VALUES (21304, 529, 'system', '2023-07-26 08:40:17.684479+07', 'system', '2023-07-26 08:40:17.684479+07', 'Xã Sơn Linh', '21304', 'Xã');
INSERT INTO category."Wards" VALUES (21307, 529, 'system', '2023-07-26 08:40:17.684481+07', 'system', '2023-07-26 08:40:17.684481+07', 'Xã Sơn Giang', '21307', 'Xã');
INSERT INTO category."Wards" VALUES (21310, 529, 'system', '2023-07-26 08:40:17.684483+07', 'system', '2023-07-26 08:40:17.684483+07', 'Xã Sơn Trung', '21310', 'Xã');
INSERT INTO category."Wards" VALUES (21313, 529, 'system', '2023-07-26 08:40:17.684485+07', 'system', '2023-07-26 08:40:17.684486+07', 'Xã Sơn Thượng', '21313', 'Xã');
INSERT INTO category."Wards" VALUES (21316, 529, 'system', '2023-07-26 08:40:17.684488+07', 'system', '2023-07-26 08:40:17.684488+07', 'Xã Sơn Cao', '21316', 'Xã');
INSERT INTO category."Wards" VALUES (21319, 529, 'system', '2023-07-26 08:40:17.68449+07', 'system', '2023-07-26 08:40:17.68449+07', 'Xã Sơn Hải', '21319', 'Xã');
INSERT INTO category."Wards" VALUES (21322, 529, 'system', '2023-07-26 08:40:17.684492+07', 'system', '2023-07-26 08:40:17.684492+07', 'Xã Sơn Thủy', '21322', 'Xã');
INSERT INTO category."Wards" VALUES (21325, 529, 'system', '2023-07-26 08:40:17.684494+07', 'system', '2023-07-26 08:40:17.684494+07', 'Xã Sơn Kỳ', '21325', 'Xã');
INSERT INTO category."Wards" VALUES (21328, 529, 'system', '2023-07-26 08:40:17.684496+07', 'system', '2023-07-26 08:40:17.684496+07', 'Xã Sơn Ba', '21328', 'Xã');
INSERT INTO category."Wards" VALUES (21331, 530, 'system', '2023-07-26 08:40:17.684499+07', 'system', '2023-07-26 08:40:17.684499+07', 'Xã Sơn Bua', '21331', 'Xã');
INSERT INTO category."Wards" VALUES (21334, 530, 'system', '2023-07-26 08:40:17.684501+07', 'system', '2023-07-26 08:40:17.684501+07', 'Xã Sơn Mùa', '21334', 'Xã');
INSERT INTO category."Wards" VALUES (21335, 530, 'system', '2023-07-26 08:40:17.684503+07', 'system', '2023-07-26 08:40:17.684503+07', 'Xã Sơn Liên', '21335', 'Xã');
INSERT INTO category."Wards" VALUES (21337, 530, 'system', '2023-07-26 08:40:17.684505+07', 'system', '2023-07-26 08:40:17.684505+07', 'Xã Sơn Tân', '21337', 'Xã');
INSERT INTO category."Wards" VALUES (21338, 530, 'system', '2023-07-26 08:40:17.684507+07', 'system', '2023-07-26 08:40:17.684507+07', 'Xã Sơn Màu', '21338', 'Xã');
INSERT INTO category."Wards" VALUES (21340, 530, 'system', '2023-07-26 08:40:17.68451+07', 'system', '2023-07-26 08:40:17.68451+07', 'Xã Sơn Dung', '21340', 'Xã');
INSERT INTO category."Wards" VALUES (21341, 530, 'system', '2023-07-26 08:40:17.684513+07', 'system', '2023-07-26 08:40:17.684513+07', 'Xã Sơn Long', '21341', 'Xã');
INSERT INTO category."Wards" VALUES (21343, 530, 'system', '2023-07-26 08:40:17.684517+07', 'system', '2023-07-26 08:40:17.684517+07', 'Xã Sơn Tinh', '21343', 'Xã');
INSERT INTO category."Wards" VALUES (21346, 530, 'system', '2023-07-26 08:40:17.684521+07', 'system', '2023-07-26 08:40:17.684521+07', 'Xã Sơn Lập', '21346', 'Xã');
INSERT INTO category."Wards" VALUES (21349, 531, 'system', '2023-07-26 08:40:17.684524+07', 'system', '2023-07-26 08:40:17.684524+07', 'Xã Long Sơn', '21349', 'Xã');
INSERT INTO category."Wards" VALUES (21352, 531, 'system', '2023-07-26 08:40:17.684528+07', 'system', '2023-07-26 08:40:17.684528+07', 'Xã Long Mai', '21352', 'Xã');
INSERT INTO category."Wards" VALUES (21355, 531, 'system', '2023-07-26 08:40:17.684532+07', 'system', '2023-07-26 08:40:17.684532+07', 'Xã Thanh An', '21355', 'Xã');
INSERT INTO category."Wards" VALUES (21358, 531, 'system', '2023-07-26 08:40:17.684534+07', 'system', '2023-07-26 08:40:17.684534+07', 'Xã Long Môn', '21358', 'Xã');
INSERT INTO category."Wards" VALUES (21361, 531, 'system', '2023-07-26 08:40:17.684536+07', 'system', '2023-07-26 08:40:17.684537+07', 'Xã Long Hiệp', '21361', 'Xã');
INSERT INTO category."Wards" VALUES (21364, 532, 'system', '2023-07-26 08:40:17.68454+07', 'system', '2023-07-26 08:40:17.68454+07', 'Thị trấn Chợ Chùa', '21364', 'Thị trấn');
INSERT INTO category."Wards" VALUES (21367, 532, 'system', '2023-07-26 08:40:17.684542+07', 'system', '2023-07-26 08:40:17.684542+07', 'Xã Hành Thuận', '21367', 'Xã');
INSERT INTO category."Wards" VALUES (21370, 532, 'system', '2023-07-26 08:40:17.684544+07', 'system', '2023-07-26 08:40:17.684544+07', 'Xã Hành Dũng', '21370', 'Xã');
INSERT INTO category."Wards" VALUES (21373, 532, 'system', '2023-07-26 08:40:17.684546+07', 'system', '2023-07-26 08:40:17.684546+07', 'Xã Hành Trung', '21373', 'Xã');
INSERT INTO category."Wards" VALUES (21376, 532, 'system', '2023-07-26 08:40:17.684549+07', 'system', '2023-07-26 08:40:17.684549+07', 'Xã Hành Nhân', '21376', 'Xã');
INSERT INTO category."Wards" VALUES (21379, 532, 'system', '2023-07-26 08:40:17.684551+07', 'system', '2023-07-26 08:40:17.684551+07', 'Xã Hành Đức', '21379', 'Xã');
INSERT INTO category."Wards" VALUES (21382, 532, 'system', '2023-07-26 08:40:17.684553+07', 'system', '2023-07-26 08:40:17.684553+07', 'Xã Hành Minh', '21382', 'Xã');
INSERT INTO category."Wards" VALUES (21385, 532, 'system', '2023-07-26 08:40:17.684555+07', 'system', '2023-07-26 08:40:17.684555+07', 'Xã Hành Phước', '21385', 'Xã');
INSERT INTO category."Wards" VALUES (21388, 532, 'system', '2023-07-26 08:40:17.684557+07', 'system', '2023-07-26 08:40:17.684557+07', 'Xã Hành Thiện', '21388', 'Xã');
INSERT INTO category."Wards" VALUES (21391, 532, 'system', '2023-07-26 08:40:17.684559+07', 'system', '2023-07-26 08:40:17.684559+07', 'Xã Hành Thịnh', '21391', 'Xã');
INSERT INTO category."Wards" VALUES (21394, 532, 'system', '2023-07-26 08:40:17.684561+07', 'system', '2023-07-26 08:40:17.684561+07', 'Xã Hành Tín Tây', '21394', 'Xã');
INSERT INTO category."Wards" VALUES (21397, 532, 'system', '2023-07-26 08:40:17.684564+07', 'system', '2023-07-26 08:40:17.684564+07', 'Xã Hành Tín  Đông', '21397', 'Xã');
INSERT INTO category."Wards" VALUES (21400, 533, 'system', '2023-07-26 08:40:17.684566+07', 'system', '2023-07-26 08:40:17.684566+07', 'Thị trấn Mộ Đức', '21400', 'Thị trấn');
INSERT INTO category."Wards" VALUES (21403, 533, 'system', '2023-07-26 08:40:17.684568+07', 'system', '2023-07-26 08:40:17.684568+07', 'Xã Đức Lợi', '21403', 'Xã');
INSERT INTO category."Wards" VALUES (21406, 533, 'system', '2023-07-26 08:40:17.684571+07', 'system', '2023-07-26 08:40:17.684571+07', 'Xã Đức Thắng', '21406', 'Xã');
INSERT INTO category."Wards" VALUES (21409, 533, 'system', '2023-07-26 08:40:17.684573+07', 'system', '2023-07-26 08:40:17.684573+07', 'Xã Đức Nhuận', '21409', 'Xã');
INSERT INTO category."Wards" VALUES (21412, 533, 'system', '2023-07-26 08:40:17.684575+07', 'system', '2023-07-26 08:40:17.684575+07', 'Xã Đức Chánh', '21412', 'Xã');
INSERT INTO category."Wards" VALUES (21415, 533, 'system', '2023-07-26 08:40:17.684577+07', 'system', '2023-07-26 08:40:17.684577+07', 'Xã Đức Hiệp', '21415', 'Xã');
INSERT INTO category."Wards" VALUES (21418, 533, 'system', '2023-07-26 08:40:17.684579+07', 'system', '2023-07-26 08:40:17.684579+07', 'Xã Đức Minh', '21418', 'Xã');
INSERT INTO category."Wards" VALUES (21421, 533, 'system', '2023-07-26 08:40:17.684581+07', 'system', '2023-07-26 08:40:17.684581+07', 'Xã Đức Thạnh', '21421', 'Xã');
INSERT INTO category."Wards" VALUES (21424, 533, 'system', '2023-07-26 08:40:17.684584+07', 'system', '2023-07-26 08:40:17.684584+07', 'Xã Đức Hòa', '21424', 'Xã');
INSERT INTO category."Wards" VALUES (21427, 533, 'system', '2023-07-26 08:40:17.684586+07', 'system', '2023-07-26 08:40:17.684586+07', 'Xã Đức Tân', '21427', 'Xã');
INSERT INTO category."Wards" VALUES (21430, 533, 'system', '2023-07-26 08:40:17.684588+07', 'system', '2023-07-26 08:40:17.684588+07', 'Xã Đức Phú', '21430', 'Xã');
INSERT INTO category."Wards" VALUES (21433, 533, 'system', '2023-07-26 08:40:17.68459+07', 'system', '2023-07-26 08:40:17.68459+07', 'Xã Đức Phong', '21433', 'Xã');
INSERT INTO category."Wards" VALUES (21436, 533, 'system', '2023-07-26 08:40:17.684592+07', 'system', '2023-07-26 08:40:17.684593+07', 'Xã Đức Lân', '21436', 'Xã');
INSERT INTO category."Wards" VALUES (21439, 534, 'system', '2023-07-26 08:40:17.684595+07', 'system', '2023-07-26 08:40:17.684595+07', 'Phường Nguyễn Nghiêm', '21439', 'Phường');
INSERT INTO category."Wards" VALUES (21442, 534, 'system', '2023-07-26 08:40:17.684597+07', 'system', '2023-07-26 08:40:17.684597+07', 'Xã Phổ An', '21442', 'Xã');
INSERT INTO category."Wards" VALUES (21445, 534, 'system', '2023-07-26 08:40:17.684599+07', 'system', '2023-07-26 08:40:17.6846+07', 'Xã Phổ Phong', '21445', 'Xã');
INSERT INTO category."Wards" VALUES (21448, 534, 'system', '2023-07-26 08:40:17.684602+07', 'system', '2023-07-26 08:40:17.684602+07', 'Xã Phổ Thuận', '21448', 'Xã');
INSERT INTO category."Wards" VALUES (21451, 534, 'system', '2023-07-26 08:40:17.684604+07', 'system', '2023-07-26 08:40:17.684604+07', 'Phường Phổ Văn', '21451', 'Phường');
INSERT INTO category."Wards" VALUES (21454, 534, 'system', '2023-07-26 08:40:17.684606+07', 'system', '2023-07-26 08:40:17.684606+07', 'Phường Phổ Quang', '21454', 'Phường');
INSERT INTO category."Wards" VALUES (21457, 534, 'system', '2023-07-26 08:40:17.684609+07', 'system', '2023-07-26 08:40:17.684609+07', 'Xã Phổ Nhơn', '21457', 'Xã');
INSERT INTO category."Wards" VALUES (21460, 534, 'system', '2023-07-26 08:40:17.684611+07', 'system', '2023-07-26 08:40:17.684611+07', 'Phường Phổ Ninh', '21460', 'Phường');
INSERT INTO category."Wards" VALUES (21463, 534, 'system', '2023-07-26 08:40:17.684613+07', 'system', '2023-07-26 08:40:17.684613+07', 'Phường Phổ Minh', '21463', 'Phường');
INSERT INTO category."Wards" VALUES (21466, 534, 'system', '2023-07-26 08:40:17.684615+07', 'system', '2023-07-26 08:40:17.684615+07', 'Phường Phổ Vinh', '21466', 'Phường');
INSERT INTO category."Wards" VALUES (21469, 534, 'system', '2023-07-26 08:40:17.684618+07', 'system', '2023-07-26 08:40:17.684618+07', 'Phường Phổ Hòa', '21469', 'Phường');
INSERT INTO category."Wards" VALUES (21472, 534, 'system', '2023-07-26 08:40:17.684621+07', 'system', '2023-07-26 08:40:17.684621+07', 'Xã Phổ Cường', '21472', 'Xã');
INSERT INTO category."Wards" VALUES (21475, 534, 'system', '2023-07-26 08:40:17.684623+07', 'system', '2023-07-26 08:40:17.684623+07', 'Xã Phổ Khánh', '21475', 'Xã');
INSERT INTO category."Wards" VALUES (21478, 534, 'system', '2023-07-26 08:40:17.684626+07', 'system', '2023-07-26 08:40:17.684626+07', 'Phường Phổ Thạnh', '21478', 'Phường');
INSERT INTO category."Wards" VALUES (21481, 534, 'system', '2023-07-26 08:40:17.684628+07', 'system', '2023-07-26 08:40:17.684628+07', 'Xã Phổ Châu', '21481', 'Xã');
INSERT INTO category."Wards" VALUES (21484, 535, 'system', '2023-07-26 08:40:17.68463+07', 'system', '2023-07-26 08:40:17.68463+07', 'Thị trấn Ba Tơ', '21484', 'Thị trấn');
INSERT INTO category."Wards" VALUES (21487, 535, 'system', '2023-07-26 08:40:17.684632+07', 'system', '2023-07-26 08:40:17.684632+07', 'Xã Ba Điền', '21487', 'Xã');
INSERT INTO category."Wards" VALUES (21490, 535, 'system', '2023-07-26 08:40:17.684634+07', 'system', '2023-07-26 08:40:17.684634+07', 'Xã Ba Vinh', '21490', 'Xã');
INSERT INTO category."Wards" VALUES (21493, 535, 'system', '2023-07-26 08:40:17.684636+07', 'system', '2023-07-26 08:40:17.684636+07', 'Xã Ba Thành', '21493', 'Xã');
INSERT INTO category."Wards" VALUES (21496, 535, 'system', '2023-07-26 08:40:17.684639+07', 'system', '2023-07-26 08:40:17.684639+07', 'Xã Ba Động', '21496', 'Xã');
INSERT INTO category."Wards" VALUES (21499, 535, 'system', '2023-07-26 08:40:17.684641+07', 'system', '2023-07-26 08:40:17.684641+07', 'Xã Ba Dinh', '21499', 'Xã');
INSERT INTO category."Wards" VALUES (21500, 535, 'system', '2023-07-26 08:40:17.684643+07', 'system', '2023-07-26 08:40:17.684643+07', 'Xã Ba Giang', '21500', 'Xã');
INSERT INTO category."Wards" VALUES (21502, 535, 'system', '2023-07-26 08:40:17.684645+07', 'system', '2023-07-26 08:40:17.684645+07', 'Xã Ba Liên', '21502', 'Xã');
INSERT INTO category."Wards" VALUES (21505, 535, 'system', '2023-07-26 08:40:17.684647+07', 'system', '2023-07-26 08:40:17.684647+07', 'Xã Ba Ngạc', '21505', 'Xã');
INSERT INTO category."Wards" VALUES (21508, 535, 'system', '2023-07-26 08:40:17.684649+07', 'system', '2023-07-26 08:40:17.684649+07', 'Xã Ba Khâm', '21508', 'Xã');
INSERT INTO category."Wards" VALUES (21511, 535, 'system', '2023-07-26 08:40:17.684651+07', 'system', '2023-07-26 08:40:17.684651+07', 'Xã Ba Cung', '21511', 'Xã');
INSERT INTO category."Wards" VALUES (21517, 535, 'system', '2023-07-26 08:40:17.684653+07', 'system', '2023-07-26 08:40:17.684653+07', 'Xã Ba Tiêu', '21517', 'Xã');
INSERT INTO category."Wards" VALUES (21520, 535, 'system', '2023-07-26 08:40:17.684655+07', 'system', '2023-07-26 08:40:17.684655+07', 'Xã Ba Trang', '21520', 'Xã');
INSERT INTO category."Wards" VALUES (21523, 535, 'system', '2023-07-26 08:40:17.684657+07', 'system', '2023-07-26 08:40:17.684657+07', 'Xã Ba Tô', '21523', 'Xã');
INSERT INTO category."Wards" VALUES (21526, 535, 'system', '2023-07-26 08:40:17.684659+07', 'system', '2023-07-26 08:40:17.684659+07', 'Xã Ba Bích', '21526', 'Xã');
INSERT INTO category."Wards" VALUES (21529, 535, 'system', '2023-07-26 08:40:17.684661+07', 'system', '2023-07-26 08:40:17.684661+07', 'Xã Ba Vì', '21529', 'Xã');
INSERT INTO category."Wards" VALUES (21532, 535, 'system', '2023-07-26 08:40:17.684664+07', 'system', '2023-07-26 08:40:17.684664+07', 'Xã Ba Lế', '21532', 'Xã');
INSERT INTO category."Wards" VALUES (21535, 535, 'system', '2023-07-26 08:40:17.684666+07', 'system', '2023-07-26 08:40:17.684666+07', 'Xã Ba Nam', '21535', 'Xã');
INSERT INTO category."Wards" VALUES (21538, 535, 'system', '2023-07-26 08:40:17.684668+07', 'system', '2023-07-26 08:40:17.684668+07', 'Xã Ba Xa', '21538', 'Xã');
INSERT INTO category."Wards" VALUES (21550, 540, 'system', '2023-07-26 08:40:17.68467+07', 'system', '2023-07-26 08:40:17.68467+07', 'Phường Nhơn Bình', '21550', 'Phường');
INSERT INTO category."Wards" VALUES (21553, 540, 'system', '2023-07-26 08:40:17.684672+07', 'system', '2023-07-26 08:40:17.684672+07', 'Phường Nhơn Phú', '21553', 'Phường');
INSERT INTO category."Wards" VALUES (21556, 540, 'system', '2023-07-26 08:40:17.684675+07', 'system', '2023-07-26 08:40:17.684675+07', 'Phường Đống Đa', '21556', 'Phường');
INSERT INTO category."Wards" VALUES (21559, 540, 'system', '2023-07-26 08:40:17.684677+07', 'system', '2023-07-26 08:40:17.684677+07', 'Phường Trần Quang Diệu', '21559', 'Phường');
INSERT INTO category."Wards" VALUES (21562, 540, 'system', '2023-07-26 08:40:17.684679+07', 'system', '2023-07-26 08:40:17.684679+07', 'Phường Hải Cảng', '21562', 'Phường');
INSERT INTO category."Wards" VALUES (21565, 540, 'system', '2023-07-26 08:40:17.684682+07', 'system', '2023-07-26 08:40:17.684682+07', 'Phường Quang Trung', '21565', 'Phường');
INSERT INTO category."Wards" VALUES (21568, 540, 'system', '2023-07-26 08:40:17.684684+07', 'system', '2023-07-26 08:40:17.684684+07', 'Phường Thị Nại', '21568', 'Phường');
INSERT INTO category."Wards" VALUES (21571, 540, 'system', '2023-07-26 08:40:17.684686+07', 'system', '2023-07-26 08:40:17.684686+07', 'Phường Lê Hồng Phong', '21571', 'Phường');
INSERT INTO category."Wards" VALUES (21574, 540, 'system', '2023-07-26 08:40:17.684688+07', 'system', '2023-07-26 08:40:17.684688+07', 'Phường Trần Hưng Đạo', '21574', 'Phường');
INSERT INTO category."Wards" VALUES (21577, 540, 'system', '2023-07-26 08:40:17.684691+07', 'system', '2023-07-26 08:40:17.684691+07', 'Phường Ngô Mây', '21577', 'Phường');
INSERT INTO category."Wards" VALUES (21580, 540, 'system', '2023-07-26 08:40:17.684693+07', 'system', '2023-07-26 08:40:17.684693+07', 'Phường Lý Thường Kiệt', '21580', 'Phường');
INSERT INTO category."Wards" VALUES (21583, 540, 'system', '2023-07-26 08:40:17.684696+07', 'system', '2023-07-26 08:40:17.684696+07', 'Phường Lê Lợi', '21583', 'Phường');
INSERT INTO category."Wards" VALUES (21586, 540, 'system', '2023-07-26 08:40:17.684699+07', 'system', '2023-07-26 08:40:17.684699+07', 'Phường Trần Phú', '21586', 'Phường');
INSERT INTO category."Wards" VALUES (21589, 540, 'system', '2023-07-26 08:40:17.684701+07', 'system', '2023-07-26 08:40:17.684701+07', 'Phường Bùi Thị Xuân', '21589', 'Phường');
INSERT INTO category."Wards" VALUES (21592, 540, 'system', '2023-07-26 08:40:17.684703+07', 'system', '2023-07-26 08:40:17.684704+07', 'Phường Nguyễn Văn Cừ', '21592', 'Phường');
INSERT INTO category."Wards" VALUES (21595, 540, 'system', '2023-07-26 08:40:17.684706+07', 'system', '2023-07-26 08:40:17.684706+07', 'Phường Ghềnh Ráng', '21595', 'Phường');
INSERT INTO category."Wards" VALUES (21598, 540, 'system', '2023-07-26 08:40:17.684708+07', 'system', '2023-07-26 08:40:17.684708+07', 'Xã Nhơn Lý', '21598', 'Xã');
INSERT INTO category."Wards" VALUES (21601, 540, 'system', '2023-07-26 08:40:17.684711+07', 'system', '2023-07-26 08:40:17.684711+07', 'Xã Nhơn Hội', '21601', 'Xã');
INSERT INTO category."Wards" VALUES (21604, 540, 'system', '2023-07-26 08:40:17.684713+07', 'system', '2023-07-26 08:40:17.684713+07', 'Xã Nhơn Hải', '21604', 'Xã');
INSERT INTO category."Wards" VALUES (21607, 540, 'system', '2023-07-26 08:40:17.684715+07', 'system', '2023-07-26 08:40:17.684715+07', 'Xã Nhơn Châu', '21607', 'Xã');
INSERT INTO category."Wards" VALUES (21609, 542, 'system', '2023-07-26 08:40:17.684719+07', 'system', '2023-07-26 08:40:17.684719+07', 'Thị trấn An Lão', '21609', 'Thị trấn');
INSERT INTO category."Wards" VALUES (21610, 542, 'system', '2023-07-26 08:40:17.684722+07', 'system', '2023-07-26 08:40:17.684722+07', 'Xã An Hưng', '21610', 'Xã');
INSERT INTO category."Wards" VALUES (21613, 542, 'system', '2023-07-26 08:40:17.684724+07', 'system', '2023-07-26 08:40:17.684724+07', 'Xã An Trung', '21613', 'Xã');
INSERT INTO category."Wards" VALUES (21616, 542, 'system', '2023-07-26 08:40:17.684726+07', 'system', '2023-07-26 08:40:17.684726+07', 'Xã An Dũng', '21616', 'Xã');
INSERT INTO category."Wards" VALUES (21619, 542, 'system', '2023-07-26 08:40:17.684728+07', 'system', '2023-07-26 08:40:17.684728+07', 'Xã An Vinh', '21619', 'Xã');
INSERT INTO category."Wards" VALUES (21622, 542, 'system', '2023-07-26 08:40:17.68473+07', 'system', '2023-07-26 08:40:17.68473+07', 'Xã An Toàn', '21622', 'Xã');
INSERT INTO category."Wards" VALUES (21625, 542, 'system', '2023-07-26 08:40:17.684732+07', 'system', '2023-07-26 08:40:17.684732+07', 'Xã An Tân', '21625', 'Xã');
INSERT INTO category."Wards" VALUES (21628, 542, 'system', '2023-07-26 08:40:17.684734+07', 'system', '2023-07-26 08:40:17.684734+07', 'Xã An Hòa', '21628', 'Xã');
INSERT INTO category."Wards" VALUES (21631, 542, 'system', '2023-07-26 08:40:17.684736+07', 'system', '2023-07-26 08:40:17.684737+07', 'Xã An Quang', '21631', 'Xã');
INSERT INTO category."Wards" VALUES (21634, 542, 'system', '2023-07-26 08:40:17.684739+07', 'system', '2023-07-26 08:40:17.684739+07', 'Xã An Nghĩa', '21634', 'Xã');
INSERT INTO category."Wards" VALUES (21637, 543, 'system', '2023-07-26 08:40:17.684741+07', 'system', '2023-07-26 08:40:17.684741+07', 'Phường Tam Quan', '21637', 'Phường');
INSERT INTO category."Wards" VALUES (21640, 543, 'system', '2023-07-26 08:40:17.684743+07', 'system', '2023-07-26 08:40:17.684743+07', 'Phường Bồng Sơn', '21640', 'Phường');
INSERT INTO category."Wards" VALUES (21643, 543, 'system', '2023-07-26 08:40:17.684746+07', 'system', '2023-07-26 08:40:17.684746+07', 'Xã Hoài Sơn', '21643', 'Xã');
INSERT INTO category."Wards" VALUES (21646, 543, 'system', '2023-07-26 08:40:17.684748+07', 'system', '2023-07-26 08:40:17.684748+07', 'Xã Hoài Châu Bắc', '21646', 'Xã');
INSERT INTO category."Wards" VALUES (21649, 543, 'system', '2023-07-26 08:40:17.68475+07', 'system', '2023-07-26 08:40:17.68475+07', 'Xã Hoài Châu', '21649', 'Xã');
INSERT INTO category."Wards" VALUES (21652, 543, 'system', '2023-07-26 08:40:17.684752+07', 'system', '2023-07-26 08:40:17.684752+07', 'Xã Hoài Phú', '21652', 'Xã');
INSERT INTO category."Wards" VALUES (21655, 543, 'system', '2023-07-26 08:40:17.684754+07', 'system', '2023-07-26 08:40:17.684754+07', 'Phường Tam Quan Bắc', '21655', 'Phường');
INSERT INTO category."Wards" VALUES (21658, 543, 'system', '2023-07-26 08:40:17.684757+07', 'system', '2023-07-26 08:40:17.684757+07', 'Phường Tam Quan Nam', '21658', 'Phường');
INSERT INTO category."Wards" VALUES (21661, 543, 'system', '2023-07-26 08:40:17.684759+07', 'system', '2023-07-26 08:40:17.684759+07', 'Phường Hoài Hảo', '21661', 'Phường');
INSERT INTO category."Wards" VALUES (21664, 543, 'system', '2023-07-26 08:40:17.684761+07', 'system', '2023-07-26 08:40:17.684761+07', 'Phường Hoài Thanh Tây', '21664', 'Phường');
INSERT INTO category."Wards" VALUES (21667, 543, 'system', '2023-07-26 08:40:17.684764+07', 'system', '2023-07-26 08:40:17.684764+07', 'Phường Hoài Thanh', '21667', 'Phường');
INSERT INTO category."Wards" VALUES (21670, 543, 'system', '2023-07-26 08:40:17.684766+07', 'system', '2023-07-26 08:40:17.684766+07', 'Phường Hoài Hương', '21670', 'Phường');
INSERT INTO category."Wards" VALUES (21673, 543, 'system', '2023-07-26 08:40:17.684768+07', 'system', '2023-07-26 08:40:17.684768+07', 'Phường Hoài Tân', '21673', 'Phường');
INSERT INTO category."Wards" VALUES (21676, 543, 'system', '2023-07-26 08:40:17.68477+07', 'system', '2023-07-26 08:40:17.684771+07', 'Xã Hoài Hải', '21676', 'Xã');
INSERT INTO category."Wards" VALUES (21679, 543, 'system', '2023-07-26 08:40:17.684773+07', 'system', '2023-07-26 08:40:17.684773+07', 'Phường Hoài Xuân', '21679', 'Phường');
INSERT INTO category."Wards" VALUES (21682, 543, 'system', '2023-07-26 08:40:17.684775+07', 'system', '2023-07-26 08:40:17.684775+07', 'Xã Hoài Mỹ', '21682', 'Xã');
INSERT INTO category."Wards" VALUES (21685, 543, 'system', '2023-07-26 08:40:17.684778+07', 'system', '2023-07-26 08:40:17.684778+07', 'Phường Hoài Đức', '21685', 'Phường');
INSERT INTO category."Wards" VALUES (21688, 544, 'system', '2023-07-26 08:40:17.68478+07', 'system', '2023-07-26 08:40:17.68478+07', 'Thị trấn Tăng Bạt Hổ', '21688', 'Thị trấn');
INSERT INTO category."Wards" VALUES (21690, 544, 'system', '2023-07-26 08:40:17.684783+07', 'system', '2023-07-26 08:40:17.684783+07', 'Xã Ân Hảo Tây', '21690', 'Xã');
INSERT INTO category."Wards" VALUES (21691, 544, 'system', '2023-07-26 08:40:17.684785+07', 'system', '2023-07-26 08:40:17.684785+07', 'Xã Ân Hảo Đông', '21691', 'Xã');
INSERT INTO category."Wards" VALUES (21694, 544, 'system', '2023-07-26 08:40:17.684787+07', 'system', '2023-07-26 08:40:17.684787+07', 'Xã Ân Sơn', '21694', 'Xã');
INSERT INTO category."Wards" VALUES (21697, 544, 'system', '2023-07-26 08:40:17.684789+07', 'system', '2023-07-26 08:40:17.684789+07', 'Xã Ân Mỹ', '21697', 'Xã');
INSERT INTO category."Wards" VALUES (21700, 544, 'system', '2023-07-26 08:40:17.684791+07', 'system', '2023-07-26 08:40:17.684792+07', 'Xã Đak Mang', '21700', 'Xã');
INSERT INTO category."Wards" VALUES (21703, 544, 'system', '2023-07-26 08:40:17.684794+07', 'system', '2023-07-26 08:40:17.684794+07', 'Xã Ân Tín', '21703', 'Xã');
INSERT INTO category."Wards" VALUES (21706, 544, 'system', '2023-07-26 08:40:17.684796+07', 'system', '2023-07-26 08:40:17.684796+07', 'Xã Ân Thạnh', '21706', 'Xã');
INSERT INTO category."Wards" VALUES (21709, 544, 'system', '2023-07-26 08:40:17.684798+07', 'system', '2023-07-26 08:40:17.684798+07', 'Xã Ân Phong', '21709', 'Xã');
INSERT INTO category."Wards" VALUES (21712, 544, 'system', '2023-07-26 08:40:17.6848+07', 'system', '2023-07-26 08:40:17.6848+07', 'Xã Ân Đức', '21712', 'Xã');
INSERT INTO category."Wards" VALUES (21715, 544, 'system', '2023-07-26 08:40:17.684802+07', 'system', '2023-07-26 08:40:17.684802+07', 'Xã Ân Hữu', '21715', 'Xã');
INSERT INTO category."Wards" VALUES (21718, 544, 'system', '2023-07-26 08:40:17.684804+07', 'system', '2023-07-26 08:40:17.684804+07', 'Xã Bok Tới', '21718', 'Xã');
INSERT INTO category."Wards" VALUES (21721, 544, 'system', '2023-07-26 08:40:17.684806+07', 'system', '2023-07-26 08:40:17.684807+07', 'Xã Ân Tường Tây', '21721', 'Xã');
INSERT INTO category."Wards" VALUES (21724, 544, 'system', '2023-07-26 08:40:17.684809+07', 'system', '2023-07-26 08:40:17.684809+07', 'Xã Ân Tường Đông', '21724', 'Xã');
INSERT INTO category."Wards" VALUES (21727, 544, 'system', '2023-07-26 08:40:17.684811+07', 'system', '2023-07-26 08:40:17.684811+07', 'Xã Ân Nghĩa', '21727', 'Xã');
INSERT INTO category."Wards" VALUES (21730, 545, 'system', '2023-07-26 08:40:17.684813+07', 'system', '2023-07-26 08:40:17.684813+07', 'Thị trấn Phù Mỹ', '21730', 'Thị trấn');
INSERT INTO category."Wards" VALUES (21733, 545, 'system', '2023-07-26 08:40:17.684816+07', 'system', '2023-07-26 08:40:17.684816+07', 'Thị trấn Bình Dương', '21733', 'Thị trấn');
INSERT INTO category."Wards" VALUES (21736, 545, 'system', '2023-07-26 08:40:17.684818+07', 'system', '2023-07-26 08:40:17.684818+07', 'Xã Mỹ Đức', '21736', 'Xã');
INSERT INTO category."Wards" VALUES (21739, 545, 'system', '2023-07-26 08:40:17.684821+07', 'system', '2023-07-26 08:40:17.684821+07', 'Xã Mỹ Châu', '21739', 'Xã');
INSERT INTO category."Wards" VALUES (21742, 545, 'system', '2023-07-26 08:40:17.684823+07', 'system', '2023-07-26 08:40:17.684823+07', 'Xã Mỹ Thắng', '21742', 'Xã');
INSERT INTO category."Wards" VALUES (21745, 545, 'system', '2023-07-26 08:40:17.684825+07', 'system', '2023-07-26 08:40:17.684825+07', 'Xã Mỹ Lộc', '21745', 'Xã');
INSERT INTO category."Wards" VALUES (21748, 545, 'system', '2023-07-26 08:40:17.684827+07', 'system', '2023-07-26 08:40:17.684827+07', 'Xã Mỹ Lợi', '21748', 'Xã');
INSERT INTO category."Wards" VALUES (21751, 545, 'system', '2023-07-26 08:40:17.68483+07', 'system', '2023-07-26 08:40:17.68483+07', 'Xã Mỹ An', '21751', 'Xã');
INSERT INTO category."Wards" VALUES (21754, 545, 'system', '2023-07-26 08:40:17.684832+07', 'system', '2023-07-26 08:40:17.684832+07', 'Xã Mỹ Phong', '21754', 'Xã');
INSERT INTO category."Wards" VALUES (21757, 545, 'system', '2023-07-26 08:40:17.684834+07', 'system', '2023-07-26 08:40:17.684834+07', 'Xã Mỹ Trinh', '21757', 'Xã');
INSERT INTO category."Wards" VALUES (21760, 545, 'system', '2023-07-26 08:40:17.684836+07', 'system', '2023-07-26 08:40:17.684836+07', 'Xã Mỹ Thọ', '21760', 'Xã');
INSERT INTO category."Wards" VALUES (21763, 545, 'system', '2023-07-26 08:40:17.684838+07', 'system', '2023-07-26 08:40:17.684838+07', 'Xã Mỹ Hòa', '21763', 'Xã');
INSERT INTO category."Wards" VALUES (21766, 545, 'system', '2023-07-26 08:40:17.68484+07', 'system', '2023-07-26 08:40:17.68484+07', 'Xã Mỹ Thành', '21766', 'Xã');
INSERT INTO category."Wards" VALUES (21769, 545, 'system', '2023-07-26 08:40:17.684843+07', 'system', '2023-07-26 08:40:17.684843+07', 'Xã Mỹ Chánh', '21769', 'Xã');
INSERT INTO category."Wards" VALUES (21772, 545, 'system', '2023-07-26 08:40:17.684845+07', 'system', '2023-07-26 08:40:17.684845+07', 'Xã Mỹ Quang', '21772', 'Xã');
INSERT INTO category."Wards" VALUES (21775, 545, 'system', '2023-07-26 08:40:17.684847+07', 'system', '2023-07-26 08:40:17.684847+07', 'Xã Mỹ Hiệp', '21775', 'Xã');
INSERT INTO category."Wards" VALUES (21778, 545, 'system', '2023-07-26 08:40:17.684849+07', 'system', '2023-07-26 08:40:17.684849+07', 'Xã Mỹ Tài', '21778', 'Xã');
INSERT INTO category."Wards" VALUES (21781, 545, 'system', '2023-07-26 08:40:17.684851+07', 'system', '2023-07-26 08:40:17.684851+07', 'Xã Mỹ Cát', '21781', 'Xã');
INSERT INTO category."Wards" VALUES (21784, 545, 'system', '2023-07-26 08:40:17.684853+07', 'system', '2023-07-26 08:40:17.684853+07', 'Xã Mỹ Chánh Tây', '21784', 'Xã');
INSERT INTO category."Wards" VALUES (21786, 546, 'system', '2023-07-26 08:40:17.684856+07', 'system', '2023-07-26 08:40:17.684856+07', 'Thị trấn Vĩnh Thạnh', '21786', 'Thị trấn');
INSERT INTO category."Wards" VALUES (21787, 546, 'system', '2023-07-26 08:40:17.684858+07', 'system', '2023-07-26 08:40:17.684858+07', 'Xã Vĩnh Sơn', '21787', 'Xã');
INSERT INTO category."Wards" VALUES (21790, 546, 'system', '2023-07-26 08:40:17.684861+07', 'system', '2023-07-26 08:40:17.684861+07', 'Xã Vĩnh Kim', '21790', 'Xã');
INSERT INTO category."Wards" VALUES (21796, 546, 'system', '2023-07-26 08:40:17.684863+07', 'system', '2023-07-26 08:40:17.684863+07', 'Xã Vĩnh Hiệp', '21796', 'Xã');
INSERT INTO category."Wards" VALUES (21799, 546, 'system', '2023-07-26 08:40:17.684865+07', 'system', '2023-07-26 08:40:17.684865+07', 'Xã Vĩnh Hảo', '21799', 'Xã');
INSERT INTO category."Wards" VALUES (21801, 546, 'system', '2023-07-26 08:40:17.684868+07', 'system', '2023-07-26 08:40:17.684868+07', 'Xã Vĩnh Hòa', '21801', 'Xã');
INSERT INTO category."Wards" VALUES (21802, 546, 'system', '2023-07-26 08:40:17.68487+07', 'system', '2023-07-26 08:40:17.68487+07', 'Xã Vĩnh Thịnh', '21802', 'Xã');
INSERT INTO category."Wards" VALUES (21804, 546, 'system', '2023-07-26 08:40:17.684872+07', 'system', '2023-07-26 08:40:17.684872+07', 'Xã Vĩnh Thuận', '21804', 'Xã');
INSERT INTO category."Wards" VALUES (21805, 546, 'system', '2023-07-26 08:40:17.684874+07', 'system', '2023-07-26 08:40:17.684874+07', 'Xã Vĩnh Quang', '21805', 'Xã');
INSERT INTO category."Wards" VALUES (21808, 547, 'system', '2023-07-26 08:40:17.684876+07', 'system', '2023-07-26 08:40:17.684876+07', 'Thị trấn Phú Phong', '21808', 'Thị trấn');
INSERT INTO category."Wards" VALUES (21811, 547, 'system', '2023-07-26 08:40:17.684879+07', 'system', '2023-07-26 08:40:17.684879+07', 'Xã Bình Tân', '21811', 'Xã');
INSERT INTO category."Wards" VALUES (21814, 547, 'system', '2023-07-26 08:40:17.68488+07', 'system', '2023-07-26 08:40:17.684881+07', 'Xã Tây Thuận', '21814', 'Xã');
INSERT INTO category."Wards" VALUES (21817, 547, 'system', '2023-07-26 08:40:17.684882+07', 'system', '2023-07-26 08:40:17.684883+07', 'Xã Bình Thuận', '21817', 'Xã');
INSERT INTO category."Wards" VALUES (21820, 547, 'system', '2023-07-26 08:40:17.684885+07', 'system', '2023-07-26 08:40:17.684885+07', 'Xã Tây Giang', '21820', 'Xã');
INSERT INTO category."Wards" VALUES (21823, 547, 'system', '2023-07-26 08:40:17.684887+07', 'system', '2023-07-26 08:40:17.684887+07', 'Xã Bình Thành', '21823', 'Xã');
INSERT INTO category."Wards" VALUES (21826, 547, 'system', '2023-07-26 08:40:17.684889+07', 'system', '2023-07-26 08:40:17.684889+07', 'Xã Tây An', '21826', 'Xã');
INSERT INTO category."Wards" VALUES (21829, 547, 'system', '2023-07-26 08:40:17.684891+07', 'system', '2023-07-26 08:40:17.684891+07', 'Xã Bình Hòa', '21829', 'Xã');
INSERT INTO category."Wards" VALUES (21832, 547, 'system', '2023-07-26 08:40:17.684893+07', 'system', '2023-07-26 08:40:17.684893+07', 'Xã Tây Bình', '21832', 'Xã');
INSERT INTO category."Wards" VALUES (21835, 547, 'system', '2023-07-26 08:40:17.684895+07', 'system', '2023-07-26 08:40:17.684895+07', 'Xã Bình Tường', '21835', 'Xã');
INSERT INTO category."Wards" VALUES (21838, 547, 'system', '2023-07-26 08:40:17.684898+07', 'system', '2023-07-26 08:40:17.684898+07', 'Xã Tây Vinh', '21838', 'Xã');
INSERT INTO category."Wards" VALUES (21841, 547, 'system', '2023-07-26 08:40:17.6849+07', 'system', '2023-07-26 08:40:17.6849+07', 'Xã Vĩnh An', '21841', 'Xã');
INSERT INTO category."Wards" VALUES (21844, 547, 'system', '2023-07-26 08:40:17.684902+07', 'system', '2023-07-26 08:40:17.684902+07', 'Xã Tây Xuân', '21844', 'Xã');
INSERT INTO category."Wards" VALUES (21847, 547, 'system', '2023-07-26 08:40:17.684904+07', 'system', '2023-07-26 08:40:17.684904+07', 'Xã Bình Nghi', '21847', 'Xã');
INSERT INTO category."Wards" VALUES (21850, 547, 'system', '2023-07-26 08:40:17.684906+07', 'system', '2023-07-26 08:40:17.684906+07', 'Xã Tây Phú', '21850', 'Xã');
INSERT INTO category."Wards" VALUES (21853, 548, 'system', '2023-07-26 08:40:17.684908+07', 'system', '2023-07-26 08:40:17.684908+07', 'Thị trấn Ngô Mây', '21853', 'Thị trấn');
INSERT INTO category."Wards" VALUES (21856, 548, 'system', '2023-07-26 08:40:17.68492+07', 'system', '2023-07-26 08:40:17.68492+07', 'Xã Cát Sơn', '21856', 'Xã');
INSERT INTO category."Wards" VALUES (21859, 548, 'system', '2023-07-26 08:40:17.684922+07', 'system', '2023-07-26 08:40:17.684922+07', 'Xã Cát Minh', '21859', 'Xã');
INSERT INTO category."Wards" VALUES (21862, 548, 'system', '2023-07-26 08:40:17.684924+07', 'system', '2023-07-26 08:40:17.684924+07', 'Xã Cát Khánh', '21862', 'Xã');
INSERT INTO category."Wards" VALUES (21865, 548, 'system', '2023-07-26 08:40:17.684926+07', 'system', '2023-07-26 08:40:17.684927+07', 'Xã Cát Tài', '21865', 'Xã');
INSERT INTO category."Wards" VALUES (21868, 548, 'system', '2023-07-26 08:40:17.684929+07', 'system', '2023-07-26 08:40:17.684929+07', 'Xã Cát Lâm', '21868', 'Xã');
INSERT INTO category."Wards" VALUES (21871, 548, 'system', '2023-07-26 08:40:17.684931+07', 'system', '2023-07-26 08:40:17.684931+07', 'Xã Cát Hanh', '21871', 'Xã');
INSERT INTO category."Wards" VALUES (21874, 548, 'system', '2023-07-26 08:40:17.684933+07', 'system', '2023-07-26 08:40:17.684933+07', 'Xã Cát Thành', '21874', 'Xã');
INSERT INTO category."Wards" VALUES (21877, 548, 'system', '2023-07-26 08:40:17.684935+07', 'system', '2023-07-26 08:40:17.684935+07', 'Xã Cát Trinh', '21877', 'Xã');
INSERT INTO category."Wards" VALUES (21880, 548, 'system', '2023-07-26 08:40:17.684937+07', 'system', '2023-07-26 08:40:17.684937+07', 'Xã Cát Hải', '21880', 'Xã');
INSERT INTO category."Wards" VALUES (21883, 548, 'system', '2023-07-26 08:40:17.684939+07', 'system', '2023-07-26 08:40:17.684939+07', 'Xã Cát Hiệp', '21883', 'Xã');
INSERT INTO category."Wards" VALUES (21886, 548, 'system', '2023-07-26 08:40:17.684942+07', 'system', '2023-07-26 08:40:17.684942+07', 'Xã Cát Nhơn', '21886', 'Xã');
INSERT INTO category."Wards" VALUES (21889, 548, 'system', '2023-07-26 08:40:17.684944+07', 'system', '2023-07-26 08:40:17.684944+07', 'Xã Cát Hưng', '21889', 'Xã');
INSERT INTO category."Wards" VALUES (21892, 548, 'system', '2023-07-26 08:40:17.684946+07', 'system', '2023-07-26 08:40:17.684946+07', 'Xã Cát Tường', '21892', 'Xã');
INSERT INTO category."Wards" VALUES (21895, 548, 'system', '2023-07-26 08:40:17.684949+07', 'system', '2023-07-26 08:40:17.684949+07', 'Xã Cát Tân', '21895', 'Xã');
INSERT INTO category."Wards" VALUES (21898, 548, 'system', '2023-07-26 08:40:17.684951+07', 'system', '2023-07-26 08:40:17.684951+07', 'Thị trấn Cát Tiến', '21898', 'Thị trấn');
INSERT INTO category."Wards" VALUES (21901, 548, 'system', '2023-07-26 08:40:17.684953+07', 'system', '2023-07-26 08:40:17.684953+07', 'Xã Cát Thắng', '21901', 'Xã');
INSERT INTO category."Wards" VALUES (21904, 548, 'system', '2023-07-26 08:40:17.684956+07', 'system', '2023-07-26 08:40:17.684956+07', 'Xã Cát Chánh', '21904', 'Xã');
INSERT INTO category."Wards" VALUES (21907, 549, 'system', '2023-07-26 08:40:17.684958+07', 'system', '2023-07-26 08:40:17.684958+07', 'Phường Bình Định', '21907', 'Phường');
INSERT INTO category."Wards" VALUES (21910, 549, 'system', '2023-07-26 08:40:17.68496+07', 'system', '2023-07-26 08:40:17.68496+07', 'Phường Đập Đá', '21910', 'Phường');
INSERT INTO category."Wards" VALUES (21913, 549, 'system', '2023-07-26 08:40:17.684962+07', 'system', '2023-07-26 08:40:17.684962+07', 'Xã Nhơn Mỹ', '21913', 'Xã');
INSERT INTO category."Wards" VALUES (21916, 549, 'system', '2023-07-26 08:40:17.684964+07', 'system', '2023-07-26 08:40:17.684964+07', 'Phường Nhơn Thành', '21916', 'Phường');
INSERT INTO category."Wards" VALUES (21919, 549, 'system', '2023-07-26 08:40:17.684967+07', 'system', '2023-07-26 08:40:17.684967+07', 'Xã Nhơn Hạnh', '21919', 'Xã');
INSERT INTO category."Wards" VALUES (21922, 549, 'system', '2023-07-26 08:40:17.684969+07', 'system', '2023-07-26 08:40:17.684969+07', 'Xã Nhơn Hậu', '21922', 'Xã');
INSERT INTO category."Wards" VALUES (21925, 549, 'system', '2023-07-26 08:40:17.684971+07', 'system', '2023-07-26 08:40:17.684971+07', 'Xã Nhơn Phong', '21925', 'Xã');
INSERT INTO category."Wards" VALUES (21928, 549, 'system', '2023-07-26 08:40:17.684973+07', 'system', '2023-07-26 08:40:17.684973+07', 'Xã Nhơn An', '21928', 'Xã');
INSERT INTO category."Wards" VALUES (21931, 549, 'system', '2023-07-26 08:40:17.684975+07', 'system', '2023-07-26 08:40:17.684976+07', 'Xã Nhơn Phúc', '21931', 'Xã');
INSERT INTO category."Wards" VALUES (21934, 549, 'system', '2023-07-26 08:40:17.684978+07', 'system', '2023-07-26 08:40:17.684978+07', 'Phường Nhơn Hưng', '21934', 'Phường');
INSERT INTO category."Wards" VALUES (21937, 549, 'system', '2023-07-26 08:40:17.68498+07', 'system', '2023-07-26 08:40:17.68498+07', 'Xã Nhơn Khánh', '21937', 'Xã');
INSERT INTO category."Wards" VALUES (21940, 549, 'system', '2023-07-26 08:40:17.684982+07', 'system', '2023-07-26 08:40:17.684982+07', 'Xã Nhơn Lộc', '21940', 'Xã');
INSERT INTO category."Wards" VALUES (21943, 549, 'system', '2023-07-26 08:40:17.684984+07', 'system', '2023-07-26 08:40:17.684984+07', 'Phường Nhơn Hoà', '21943', 'Phường');
INSERT INTO category."Wards" VALUES (21946, 549, 'system', '2023-07-26 08:40:17.684986+07', 'system', '2023-07-26 08:40:17.684986+07', 'Xã Nhơn Tân', '21946', 'Xã');
INSERT INTO category."Wards" VALUES (21949, 549, 'system', '2023-07-26 08:40:17.684989+07', 'system', '2023-07-26 08:40:17.684989+07', 'Xã Nhơn Thọ', '21949', 'Xã');
INSERT INTO category."Wards" VALUES (21952, 550, 'system', '2023-07-26 08:40:17.684991+07', 'system', '2023-07-26 08:40:17.684991+07', 'Thị trấn Tuy Phước', '21952', 'Thị trấn');
INSERT INTO category."Wards" VALUES (21955, 550, 'system', '2023-07-26 08:40:17.684993+07', 'system', '2023-07-26 08:40:17.684993+07', 'Thị trấn Diêu Trì', '21955', 'Thị trấn');
INSERT INTO category."Wards" VALUES (21958, 550, 'system', '2023-07-26 08:40:17.684996+07', 'system', '2023-07-26 08:40:17.684996+07', 'Xã Phước Thắng', '21958', 'Xã');
INSERT INTO category."Wards" VALUES (21961, 550, 'system', '2023-07-26 08:40:17.684998+07', 'system', '2023-07-26 08:40:17.684998+07', 'Xã Phước Hưng', '21961', 'Xã');
INSERT INTO category."Wards" VALUES (21964, 550, 'system', '2023-07-26 08:40:17.685+07', 'system', '2023-07-26 08:40:17.685+07', 'Xã Phước Quang', '21964', 'Xã');
INSERT INTO category."Wards" VALUES (21967, 550, 'system', '2023-07-26 08:40:17.685002+07', 'system', '2023-07-26 08:40:17.685003+07', 'Xã Phước Hòa', '21967', 'Xã');
INSERT INTO category."Wards" VALUES (21970, 550, 'system', '2023-07-26 08:40:17.685005+07', 'system', '2023-07-26 08:40:17.685005+07', 'Xã Phước Sơn', '21970', 'Xã');
INSERT INTO category."Wards" VALUES (21973, 550, 'system', '2023-07-26 08:40:17.685007+07', 'system', '2023-07-26 08:40:17.685007+07', 'Xã Phước Hiệp', '21973', 'Xã');
INSERT INTO category."Wards" VALUES (21976, 550, 'system', '2023-07-26 08:40:17.685009+07', 'system', '2023-07-26 08:40:17.685009+07', 'Xã Phước Lộc', '21976', 'Xã');
INSERT INTO category."Wards" VALUES (21979, 550, 'system', '2023-07-26 08:40:17.685011+07', 'system', '2023-07-26 08:40:17.685011+07', 'Xã Phước Nghĩa', '21979', 'Xã');
INSERT INTO category."Wards" VALUES (21982, 550, 'system', '2023-07-26 08:40:17.685013+07', 'system', '2023-07-26 08:40:17.685013+07', 'Xã Phước Thuận', '21982', 'Xã');
INSERT INTO category."Wards" VALUES (21985, 550, 'system', '2023-07-26 08:40:17.685016+07', 'system', '2023-07-26 08:40:17.685016+07', 'Xã Phước An', '21985', 'Xã');
INSERT INTO category."Wards" VALUES (21988, 550, 'system', '2023-07-26 08:40:17.685018+07', 'system', '2023-07-26 08:40:17.685018+07', 'Xã Phước Thành', '21988', 'Xã');
INSERT INTO category."Wards" VALUES (21991, 540, 'system', '2023-07-26 08:40:17.684717+07', 'system', '2023-07-26 08:40:17.684717+07', 'Xã Phước Mỹ', '21991', 'Xã');
INSERT INTO category."Wards" VALUES (21994, 551, 'system', '2023-07-26 08:40:17.68502+07', 'system', '2023-07-26 08:40:17.68502+07', 'Thị trấn Vân Canh', '21994', 'Thị trấn');
INSERT INTO category."Wards" VALUES (21997, 551, 'system', '2023-07-26 08:40:17.685022+07', 'system', '2023-07-26 08:40:17.685022+07', 'Xã Canh Liên', '21997', 'Xã');
INSERT INTO category."Wards" VALUES (22000, 551, 'system', '2023-07-26 08:40:17.685025+07', 'system', '2023-07-26 08:40:17.685025+07', 'Xã Canh Hiệp', '22000', 'Xã');
INSERT INTO category."Wards" VALUES (22003, 551, 'system', '2023-07-26 08:40:17.685027+07', 'system', '2023-07-26 08:40:17.685027+07', 'Xã Canh Vinh', '22003', 'Xã');
INSERT INTO category."Wards" VALUES (22006, 551, 'system', '2023-07-26 08:40:17.68503+07', 'system', '2023-07-26 08:40:17.68503+07', 'Xã Canh Hiển', '22006', 'Xã');
INSERT INTO category."Wards" VALUES (22009, 551, 'system', '2023-07-26 08:40:17.685032+07', 'system', '2023-07-26 08:40:17.685032+07', 'Xã Canh Thuận', '22009', 'Xã');
INSERT INTO category."Wards" VALUES (22012, 551, 'system', '2023-07-26 08:40:17.685034+07', 'system', '2023-07-26 08:40:17.685034+07', 'Xã Canh Hòa', '22012', 'Xã');
INSERT INTO category."Wards" VALUES (22015, 555, 'system', '2023-07-26 08:40:17.685036+07', 'system', '2023-07-26 08:40:17.685036+07', 'Phường 1', '22015', 'Phường');
INSERT INTO category."Wards" VALUES (22018, 555, 'system', '2023-07-26 08:40:17.685038+07', 'system', '2023-07-26 08:40:17.685038+07', 'Phường 8', '22018', 'Phường');
INSERT INTO category."Wards" VALUES (22021, 555, 'system', '2023-07-26 08:40:17.68504+07', 'system', '2023-07-26 08:40:17.68504+07', 'Phường 2', '22021', 'Phường');
INSERT INTO category."Wards" VALUES (22024, 555, 'system', '2023-07-26 08:40:17.685042+07', 'system', '2023-07-26 08:40:17.685042+07', 'Phường 9', '22024', 'Phường');
INSERT INTO category."Wards" VALUES (22027, 555, 'system', '2023-07-26 08:40:17.685044+07', 'system', '2023-07-26 08:40:17.685045+07', 'Phường 3', '22027', 'Phường');
INSERT INTO category."Wards" VALUES (22030, 555, 'system', '2023-07-26 08:40:17.685047+07', 'system', '2023-07-26 08:40:17.685047+07', 'Phường 4', '22030', 'Phường');
INSERT INTO category."Wards" VALUES (22033, 555, 'system', '2023-07-26 08:40:17.685049+07', 'system', '2023-07-26 08:40:17.685049+07', 'Phường 5', '22033', 'Phường');
INSERT INTO category."Wards" VALUES (22036, 555, 'system', '2023-07-26 08:40:17.685051+07', 'system', '2023-07-26 08:40:17.685051+07', 'Phường 7', '22036', 'Phường');
INSERT INTO category."Wards" VALUES (22039, 555, 'system', '2023-07-26 08:40:17.685053+07', 'system', '2023-07-26 08:40:17.685053+07', 'Phường 6', '22039', 'Phường');
INSERT INTO category."Wards" VALUES (22040, 555, 'system', '2023-07-26 08:40:17.685055+07', 'system', '2023-07-26 08:40:17.685056+07', 'Phường Phú Thạnh', '22040', 'Phường');
INSERT INTO category."Wards" VALUES (22041, 555, 'system', '2023-07-26 08:40:17.685058+07', 'system', '2023-07-26 08:40:17.685058+07', 'Phường Phú Đông', '22041', 'Phường');
INSERT INTO category."Wards" VALUES (22042, 555, 'system', '2023-07-26 08:40:17.68506+07', 'system', '2023-07-26 08:40:17.68506+07', 'Xã Hòa Kiến', '22042', 'Xã');
INSERT INTO category."Wards" VALUES (22045, 555, 'system', '2023-07-26 08:40:17.685062+07', 'system', '2023-07-26 08:40:17.685063+07', 'Xã Bình Kiến', '22045', 'Xã');
INSERT INTO category."Wards" VALUES (22048, 555, 'system', '2023-07-26 08:40:17.685065+07', 'system', '2023-07-26 08:40:17.685065+07', 'Xã Bình Ngọc', '22048', 'Xã');
INSERT INTO category."Wards" VALUES (22051, 557, 'system', '2023-07-26 08:40:17.685071+07', 'system', '2023-07-26 08:40:17.685071+07', 'Phường Xuân Phú', '22051', 'Phường');
INSERT INTO category."Wards" VALUES (22052, 557, 'system', '2023-07-26 08:40:17.685073+07', 'system', '2023-07-26 08:40:17.685073+07', 'Xã Xuân Lâm', '22052', 'Xã');
INSERT INTO category."Wards" VALUES (22053, 557, 'system', '2023-07-26 08:40:17.685075+07', 'system', '2023-07-26 08:40:17.685075+07', 'Phường Xuân Thành', '22053', 'Phường');
INSERT INTO category."Wards" VALUES (22054, 557, 'system', '2023-07-26 08:40:17.685078+07', 'system', '2023-07-26 08:40:17.685078+07', 'Xã Xuân Hải', '22054', 'Xã');
INSERT INTO category."Wards" VALUES (22057, 557, 'system', '2023-07-26 08:40:17.68508+07', 'system', '2023-07-26 08:40:17.68508+07', 'Xã Xuân Lộc', '22057', 'Xã');
INSERT INTO category."Wards" VALUES (22060, 557, 'system', '2023-07-26 08:40:17.685082+07', 'system', '2023-07-26 08:40:17.685082+07', 'Xã Xuân Bình', '22060', 'Xã');
INSERT INTO category."Wards" VALUES (22066, 557, 'system', '2023-07-26 08:40:17.685084+07', 'system', '2023-07-26 08:40:17.685084+07', 'Xã Xuân Cảnh', '22066', 'Xã');
INSERT INTO category."Wards" VALUES (22069, 557, 'system', '2023-07-26 08:40:17.685086+07', 'system', '2023-07-26 08:40:17.685086+07', 'Xã Xuân Thịnh', '22069', 'Xã');
INSERT INTO category."Wards" VALUES (22072, 557, 'system', '2023-07-26 08:40:17.685088+07', 'system', '2023-07-26 08:40:17.685088+07', 'Xã Xuân Phương', '22072', 'Xã');
INSERT INTO category."Wards" VALUES (22073, 557, 'system', '2023-07-26 08:40:17.685091+07', 'system', '2023-07-26 08:40:17.685091+07', 'Phường Xuân Yên', '22073', 'Phường');
INSERT INTO category."Wards" VALUES (22075, 557, 'system', '2023-07-26 08:40:17.685093+07', 'system', '2023-07-26 08:40:17.685093+07', 'Xã Xuân Thọ 1', '22075', 'Xã');
INSERT INTO category."Wards" VALUES (22076, 557, 'system', '2023-07-26 08:40:17.685095+07', 'system', '2023-07-26 08:40:17.685095+07', 'Phường Xuân Đài', '22076', 'Phường');
INSERT INTO category."Wards" VALUES (22078, 557, 'system', '2023-07-26 08:40:17.685097+07', 'system', '2023-07-26 08:40:17.685097+07', 'Xã Xuân Thọ 2', '22078', 'Xã');
INSERT INTO category."Wards" VALUES (22081, 558, 'system', '2023-07-26 08:40:17.6851+07', 'system', '2023-07-26 08:40:17.6851+07', 'Thị trấn La Hai', '22081', 'Thị trấn');
INSERT INTO category."Wards" VALUES (22084, 558, 'system', '2023-07-26 08:40:17.685102+07', 'system', '2023-07-26 08:40:17.685102+07', 'Xã Đa Lộc', '22084', 'Xã');
INSERT INTO category."Wards" VALUES (22087, 558, 'system', '2023-07-26 08:40:17.685104+07', 'system', '2023-07-26 08:40:17.685104+07', 'Xã Phú Mỡ', '22087', 'Xã');
INSERT INTO category."Wards" VALUES (22090, 558, 'system', '2023-07-26 08:40:17.685106+07', 'system', '2023-07-26 08:40:17.685106+07', 'Xã Xuân Lãnh', '22090', 'Xã');
INSERT INTO category."Wards" VALUES (22093, 558, 'system', '2023-07-26 08:40:17.685109+07', 'system', '2023-07-26 08:40:17.685109+07', 'Xã Xuân Long', '22093', 'Xã');
INSERT INTO category."Wards" VALUES (22096, 558, 'system', '2023-07-26 08:40:17.685111+07', 'system', '2023-07-26 08:40:17.685111+07', 'Xã Xuân Quang 1', '22096', 'Xã');
INSERT INTO category."Wards" VALUES (22099, 558, 'system', '2023-07-26 08:40:17.685113+07', 'system', '2023-07-26 08:40:17.685114+07', 'Xã Xuân Sơn Bắc', '22099', 'Xã');
INSERT INTO category."Wards" VALUES (22102, 558, 'system', '2023-07-26 08:40:17.685116+07', 'system', '2023-07-26 08:40:17.685116+07', 'Xã Xuân Quang 2', '22102', 'Xã');
INSERT INTO category."Wards" VALUES (22105, 558, 'system', '2023-07-26 08:40:17.685118+07', 'system', '2023-07-26 08:40:17.685118+07', 'Xã Xuân Sơn Nam', '22105', 'Xã');
INSERT INTO category."Wards" VALUES (22108, 558, 'system', '2023-07-26 08:40:17.68512+07', 'system', '2023-07-26 08:40:17.68512+07', 'Xã Xuân Quang 3', '22108', 'Xã');
INSERT INTO category."Wards" VALUES (22111, 558, 'system', '2023-07-26 08:40:17.685122+07', 'system', '2023-07-26 08:40:17.685122+07', 'Xã Xuân Phước', '22111', 'Xã');
INSERT INTO category."Wards" VALUES (22114, 559, 'system', '2023-07-26 08:40:17.685124+07', 'system', '2023-07-26 08:40:17.685124+07', 'Thị trấn Chí Thạnh', '22114', 'Thị trấn');
INSERT INTO category."Wards" VALUES (22117, 559, 'system', '2023-07-26 08:40:17.685127+07', 'system', '2023-07-26 08:40:17.685127+07', 'Xã An Dân', '22117', 'Xã');
INSERT INTO category."Wards" VALUES (22120, 559, 'system', '2023-07-26 08:40:17.685129+07', 'system', '2023-07-26 08:40:17.685129+07', 'Xã An Ninh Tây', '22120', 'Xã');
INSERT INTO category."Wards" VALUES (22123, 559, 'system', '2023-07-26 08:40:17.685131+07', 'system', '2023-07-26 08:40:17.685131+07', 'Xã An Ninh Đông', '22123', 'Xã');
INSERT INTO category."Wards" VALUES (22126, 559, 'system', '2023-07-26 08:40:17.685133+07', 'system', '2023-07-26 08:40:17.685133+07', 'Xã An Thạch', '22126', 'Xã');
INSERT INTO category."Wards" VALUES (22129, 559, 'system', '2023-07-26 08:40:17.685135+07', 'system', '2023-07-26 08:40:17.685135+07', 'Xã An Định', '22129', 'Xã');
INSERT INTO category."Wards" VALUES (22132, 559, 'system', '2023-07-26 08:40:17.685138+07', 'system', '2023-07-26 08:40:17.685138+07', 'Xã An Nghiệp', '22132', 'Xã');
INSERT INTO category."Wards" VALUES (22138, 559, 'system', '2023-07-26 08:40:17.68514+07', 'system', '2023-07-26 08:40:17.68514+07', 'Xã An Cư', '22138', 'Xã');
INSERT INTO category."Wards" VALUES (22141, 559, 'system', '2023-07-26 08:40:17.685142+07', 'system', '2023-07-26 08:40:17.685142+07', 'Xã An Xuân', '22141', 'Xã');
INSERT INTO category."Wards" VALUES (22144, 559, 'system', '2023-07-26 08:40:17.685144+07', 'system', '2023-07-26 08:40:17.685144+07', 'Xã An Lĩnh', '22144', 'Xã');
INSERT INTO category."Wards" VALUES (22147, 559, 'system', '2023-07-26 08:40:17.685146+07', 'system', '2023-07-26 08:40:17.685146+07', 'Xã An Hòa Hải', '22147', 'Xã');
INSERT INTO category."Wards" VALUES (22150, 559, 'system', '2023-07-26 08:40:17.685148+07', 'system', '2023-07-26 08:40:17.685148+07', 'Xã An Hiệp', '22150', 'Xã');
INSERT INTO category."Wards" VALUES (22153, 559, 'system', '2023-07-26 08:40:17.68515+07', 'system', '2023-07-26 08:40:17.68515+07', 'Xã An Mỹ', '22153', 'Xã');
INSERT INTO category."Wards" VALUES (22156, 559, 'system', '2023-07-26 08:40:17.685152+07', 'system', '2023-07-26 08:40:17.685152+07', 'Xã An Chấn', '22156', 'Xã');
INSERT INTO category."Wards" VALUES (22159, 559, 'system', '2023-07-26 08:40:17.685154+07', 'system', '2023-07-26 08:40:17.685154+07', 'Xã An Thọ', '22159', 'Xã');
INSERT INTO category."Wards" VALUES (22162, 555, 'system', '2023-07-26 08:40:17.685067+07', 'system', '2023-07-26 08:40:17.685067+07', 'Xã An Phú', '22162', 'Xã');
INSERT INTO category."Wards" VALUES (22165, 560, 'system', '2023-07-26 08:40:17.685156+07', 'system', '2023-07-26 08:40:17.685156+07', 'Thị trấn Củng Sơn', '22165', 'Thị trấn');
INSERT INTO category."Wards" VALUES (22168, 560, 'system', '2023-07-26 08:40:17.685159+07', 'system', '2023-07-26 08:40:17.685159+07', 'Xã Phước Tân', '22168', 'Xã');
INSERT INTO category."Wards" VALUES (22171, 560, 'system', '2023-07-26 08:40:17.685161+07', 'system', '2023-07-26 08:40:17.685161+07', 'Xã Sơn Hội', '22171', 'Xã');
INSERT INTO category."Wards" VALUES (22174, 560, 'system', '2023-07-26 08:40:17.685163+07', 'system', '2023-07-26 08:40:17.685163+07', 'Xã Sơn Định', '22174', 'Xã');
INSERT INTO category."Wards" VALUES (22177, 560, 'system', '2023-07-26 08:40:17.685165+07', 'system', '2023-07-26 08:40:17.685165+07', 'Xã Sơn Long', '22177', 'Xã');
INSERT INTO category."Wards" VALUES (22180, 560, 'system', '2023-07-26 08:40:17.685167+07', 'system', '2023-07-26 08:40:17.685167+07', 'Xã Cà Lúi', '22180', 'Xã');
INSERT INTO category."Wards" VALUES (22183, 560, 'system', '2023-07-26 08:40:17.685169+07', 'system', '2023-07-26 08:40:17.685169+07', 'Xã Sơn Phước', '22183', 'Xã');
INSERT INTO category."Wards" VALUES (22186, 560, 'system', '2023-07-26 08:40:17.685171+07', 'system', '2023-07-26 08:40:17.685172+07', 'Xã Sơn Xuân', '22186', 'Xã');
INSERT INTO category."Wards" VALUES (22189, 560, 'system', '2023-07-26 08:40:17.685174+07', 'system', '2023-07-26 08:40:17.685174+07', 'Xã Sơn Nguyên', '22189', 'Xã');
INSERT INTO category."Wards" VALUES (22192, 560, 'system', '2023-07-26 08:40:17.685176+07', 'system', '2023-07-26 08:40:17.685176+07', 'Xã Eachà Rang', '22192', 'Xã');
INSERT INTO category."Wards" VALUES (22195, 560, 'system', '2023-07-26 08:40:17.685178+07', 'system', '2023-07-26 08:40:17.685178+07', 'Xã Krông Pa', '22195', 'Xã');
INSERT INTO category."Wards" VALUES (22198, 560, 'system', '2023-07-26 08:40:17.68518+07', 'system', '2023-07-26 08:40:17.68518+07', 'Xã Suối Bạc', '22198', 'Xã');
INSERT INTO category."Wards" VALUES (22201, 560, 'system', '2023-07-26 08:40:17.685182+07', 'system', '2023-07-26 08:40:17.685182+07', 'Xã Sơn Hà', '22201', 'Xã');
INSERT INTO category."Wards" VALUES (22204, 560, 'system', '2023-07-26 08:40:17.685184+07', 'system', '2023-07-26 08:40:17.685185+07', 'Xã Suối Trai', '22204', 'Xã');
INSERT INTO category."Wards" VALUES (22207, 561, 'system', '2023-07-26 08:40:17.685187+07', 'system', '2023-07-26 08:40:17.685187+07', 'Thị trấn Hai Riêng', '22207', 'Thị trấn');
INSERT INTO category."Wards" VALUES (22210, 561, 'system', '2023-07-26 08:40:17.68519+07', 'system', '2023-07-26 08:40:17.68519+07', 'Xã Ea Lâm', '22210', 'Xã');
INSERT INTO category."Wards" VALUES (22213, 561, 'system', '2023-07-26 08:40:17.685192+07', 'system', '2023-07-26 08:40:17.685192+07', 'Xã Đức Bình Tây', '22213', 'Xã');
INSERT INTO category."Wards" VALUES (22216, 561, 'system', '2023-07-26 08:40:17.685194+07', 'system', '2023-07-26 08:40:17.685194+07', 'Xã Ea Bá', '22216', 'Xã');
INSERT INTO category."Wards" VALUES (22219, 561, 'system', '2023-07-26 08:40:17.685196+07', 'system', '2023-07-26 08:40:17.685196+07', 'Xã Sơn Giang', '22219', 'Xã');
INSERT INTO category."Wards" VALUES (22222, 561, 'system', '2023-07-26 08:40:17.685198+07', 'system', '2023-07-26 08:40:17.685198+07', 'Xã Đức Bình Đông', '22222', 'Xã');
INSERT INTO category."Wards" VALUES (22225, 561, 'system', '2023-07-26 08:40:17.6852+07', 'system', '2023-07-26 08:40:17.6852+07', 'Xã EaBar', '22225', 'Xã');
INSERT INTO category."Wards" VALUES (22228, 561, 'system', '2023-07-26 08:40:17.685202+07', 'system', '2023-07-26 08:40:17.685202+07', 'Xã EaBia', '22228', 'Xã');
INSERT INTO category."Wards" VALUES (22231, 561, 'system', '2023-07-26 08:40:17.685204+07', 'system', '2023-07-26 08:40:17.685204+07', 'Xã EaTrol', '22231', 'Xã');
INSERT INTO category."Wards" VALUES (22234, 561, 'system', '2023-07-26 08:40:17.685206+07', 'system', '2023-07-26 08:40:17.685207+07', 'Xã Sông Hinh', '22234', 'Xã');
INSERT INTO category."Wards" VALUES (22237, 561, 'system', '2023-07-26 08:40:17.685209+07', 'system', '2023-07-26 08:40:17.685209+07', 'Xã Ealy', '22237', 'Xã');
INSERT INTO category."Wards" VALUES (22240, 555, 'system', '2023-07-26 08:40:17.685069+07', 'system', '2023-07-26 08:40:17.685069+07', 'Phường Phú Lâm', '22240', 'Phường');
INSERT INTO category."Wards" VALUES (22243, 564, 'system', '2023-07-26 08:40:17.685255+07', 'system', '2023-07-26 08:40:17.685255+07', 'Xã Hòa Thành', '22243', 'Xã');
INSERT INTO category."Wards" VALUES (22246, 564, 'system', '2023-07-26 08:40:17.685257+07', 'system', '2023-07-26 08:40:17.685257+07', 'Phường Hòa Hiệp Bắc', '22246', 'Phường');
INSERT INTO category."Wards" VALUES (22249, 562, 'system', '2023-07-26 08:40:17.685211+07', 'system', '2023-07-26 08:40:17.685211+07', 'Xã Sơn Thành Tây', '22249', 'Xã');
INSERT INTO category."Wards" VALUES (22250, 562, 'system', '2023-07-26 08:40:17.685213+07', 'system', '2023-07-26 08:40:17.685213+07', 'Xã Sơn Thành Đông', '22250', 'Xã');
INSERT INTO category."Wards" VALUES (22252, 562, 'system', '2023-07-26 08:40:17.685215+07', 'system', '2023-07-26 08:40:17.685215+07', 'Xã Hòa Bình 1', '22252', 'Xã');
INSERT INTO category."Wards" VALUES (22255, 562, 'system', '2023-07-26 08:40:17.685217+07', 'system', '2023-07-26 08:40:17.685217+07', 'Thị trấn Phú Thứ', '22255', 'Thị trấn');
INSERT INTO category."Wards" VALUES (22258, 564, 'system', '2023-07-26 08:40:17.685259+07', 'system', '2023-07-26 08:40:17.68526+07', 'Phường Hoà Vinh', '22258', 'Phường');
INSERT INTO category."Wards" VALUES (22261, 564, 'system', '2023-07-26 08:40:17.685262+07', 'system', '2023-07-26 08:40:17.685262+07', 'Phường Hoà Hiệp Trung', '22261', 'Phường');
INSERT INTO category."Wards" VALUES (22264, 562, 'system', '2023-07-26 08:40:17.68522+07', 'system', '2023-07-26 08:40:17.68522+07', 'Xã Hòa Phong', '22264', 'Xã');
INSERT INTO category."Wards" VALUES (22267, 564, 'system', '2023-07-26 08:40:17.685264+07', 'system', '2023-07-26 08:40:17.685264+07', 'Xã Hòa Tân Đông', '22267', 'Xã');
INSERT INTO category."Wards" VALUES (22270, 562, 'system', '2023-07-26 08:40:17.685222+07', 'system', '2023-07-26 08:40:17.685222+07', 'Xã Hòa Phú', '22270', 'Xã');
INSERT INTO category."Wards" VALUES (22273, 562, 'system', '2023-07-26 08:40:17.685224+07', 'system', '2023-07-26 08:40:17.685224+07', 'Xã Hòa Tân Tây', '22273', 'Xã');
INSERT INTO category."Wards" VALUES (22276, 562, 'system', '2023-07-26 08:40:17.685226+07', 'system', '2023-07-26 08:40:17.685226+07', 'Xã Hòa Đồng', '22276', 'Xã');
INSERT INTO category."Wards" VALUES (22279, 564, 'system', '2023-07-26 08:40:17.685267+07', 'system', '2023-07-26 08:40:17.685267+07', 'Phường Hòa Xuân Tây', '22279', 'Phường');
INSERT INTO category."Wards" VALUES (22282, 564, 'system', '2023-07-26 08:40:17.685269+07', 'system', '2023-07-26 08:40:17.685269+07', 'Phường Hòa Hiệp Nam', '22282', 'Phường');
INSERT INTO category."Wards" VALUES (22285, 562, 'system', '2023-07-26 08:40:17.685228+07', 'system', '2023-07-26 08:40:17.685228+07', 'Xã Hòa Mỹ Đông', '22285', 'Xã');
INSERT INTO category."Wards" VALUES (22288, 562, 'system', '2023-07-26 08:40:17.685231+07', 'system', '2023-07-26 08:40:17.685231+07', 'Xã Hòa Mỹ Tây', '22288', 'Xã');
INSERT INTO category."Wards" VALUES (22291, 564, 'system', '2023-07-26 08:40:17.685272+07', 'system', '2023-07-26 08:40:17.685272+07', 'Xã Hòa Xuân Đông', '22291', 'Xã');
INSERT INTO category."Wards" VALUES (22294, 562, 'system', '2023-07-26 08:40:17.685233+07', 'system', '2023-07-26 08:40:17.685233+07', 'Xã Hòa Thịnh', '22294', 'Xã');
INSERT INTO category."Wards" VALUES (22297, 564, 'system', '2023-07-26 08:40:17.685274+07', 'system', '2023-07-26 08:40:17.685274+07', 'Xã Hòa Tâm', '22297', 'Xã');
INSERT INTO category."Wards" VALUES (22300, 564, 'system', '2023-07-26 08:40:17.685276+07', 'system', '2023-07-26 08:40:17.685276+07', 'Xã Hòa Xuân Nam', '22300', 'Xã');
INSERT INTO category."Wards" VALUES (22303, 563, 'system', '2023-07-26 08:40:17.685235+07', 'system', '2023-07-26 08:40:17.685235+07', 'Xã Hòa Quang Bắc', '22303', 'Xã');
INSERT INTO category."Wards" VALUES (22306, 563, 'system', '2023-07-26 08:40:17.685237+07', 'system', '2023-07-26 08:40:17.685237+07', 'Xã Hòa Quang Nam', '22306', 'Xã');
INSERT INTO category."Wards" VALUES (22309, 563, 'system', '2023-07-26 08:40:17.68524+07', 'system', '2023-07-26 08:40:17.68524+07', 'Xã Hòa Hội', '22309', 'Xã');
INSERT INTO category."Wards" VALUES (22312, 563, 'system', '2023-07-26 08:40:17.685242+07', 'system', '2023-07-26 08:40:17.685242+07', 'Xã Hòa Trị', '22312', 'Xã');
INSERT INTO category."Wards" VALUES (22315, 563, 'system', '2023-07-26 08:40:17.685244+07', 'system', '2023-07-26 08:40:17.685244+07', 'Xã Hòa An', '22315', 'Xã');
INSERT INTO category."Wards" VALUES (22318, 563, 'system', '2023-07-26 08:40:17.685246+07', 'system', '2023-07-26 08:40:17.685246+07', 'Xã Hòa Định Đông', '22318', 'Xã');
INSERT INTO category."Wards" VALUES (22319, 563, 'system', '2023-07-26 08:40:17.685248+07', 'system', '2023-07-26 08:40:17.685248+07', 'Thị Trấn Phú Hoà', '22319', 'Thị trấn');
INSERT INTO category."Wards" VALUES (22321, 563, 'system', '2023-07-26 08:40:17.68525+07', 'system', '2023-07-26 08:40:17.685251+07', 'Xã Hòa Định Tây', '22321', 'Xã');
INSERT INTO category."Wards" VALUES (22324, 563, 'system', '2023-07-26 08:40:17.685253+07', 'system', '2023-07-26 08:40:17.685253+07', 'Xã Hòa Thắng', '22324', 'Xã');
INSERT INTO category."Wards" VALUES (22327, 568, 'system', '2023-07-26 08:40:17.685278+07', 'system', '2023-07-26 08:40:17.685278+07', 'Phường Vĩnh Hòa', '22327', 'Phường');
INSERT INTO category."Wards" VALUES (22330, 568, 'system', '2023-07-26 08:40:17.68528+07', 'system', '2023-07-26 08:40:17.68528+07', 'Phường Vĩnh Hải', '22330', 'Phường');
INSERT INTO category."Wards" VALUES (22333, 568, 'system', '2023-07-26 08:40:17.685282+07', 'system', '2023-07-26 08:40:17.685282+07', 'Phường Vĩnh Phước', '22333', 'Phường');
INSERT INTO category."Wards" VALUES (22336, 568, 'system', '2023-07-26 08:40:17.685285+07', 'system', '2023-07-26 08:40:17.685285+07', 'Phường Ngọc Hiệp', '22336', 'Phường');
INSERT INTO category."Wards" VALUES (22339, 568, 'system', '2023-07-26 08:40:17.685287+07', 'system', '2023-07-26 08:40:17.685287+07', 'Phường Vĩnh Thọ', '22339', 'Phường');
INSERT INTO category."Wards" VALUES (22342, 568, 'system', '2023-07-26 08:40:17.685289+07', 'system', '2023-07-26 08:40:17.685289+07', 'Phường Xương Huân', '22342', 'Phường');
INSERT INTO category."Wards" VALUES (22345, 568, 'system', '2023-07-26 08:40:17.685291+07', 'system', '2023-07-26 08:40:17.685291+07', 'Phường Vạn Thắng', '22345', 'Phường');
INSERT INTO category."Wards" VALUES (22348, 568, 'system', '2023-07-26 08:40:17.685293+07', 'system', '2023-07-26 08:40:17.685294+07', 'Phường Vạn Thạnh', '22348', 'Phường');
INSERT INTO category."Wards" VALUES (22351, 568, 'system', '2023-07-26 08:40:17.685296+07', 'system', '2023-07-26 08:40:17.685296+07', 'Phường Phương Sài', '22351', 'Phường');
INSERT INTO category."Wards" VALUES (22354, 568, 'system', '2023-07-26 08:40:17.685298+07', 'system', '2023-07-26 08:40:17.685298+07', 'Phường Phương Sơn', '22354', 'Phường');
INSERT INTO category."Wards" VALUES (22357, 568, 'system', '2023-07-26 08:40:17.6853+07', 'system', '2023-07-26 08:40:17.6853+07', 'Phường Phước Hải', '22357', 'Phường');
INSERT INTO category."Wards" VALUES (22360, 568, 'system', '2023-07-26 08:40:17.685302+07', 'system', '2023-07-26 08:40:17.685303+07', 'Phường Phước Tân', '22360', 'Phường');
INSERT INTO category."Wards" VALUES (22363, 568, 'system', '2023-07-26 08:40:17.685305+07', 'system', '2023-07-26 08:40:17.685305+07', 'Phường Lộc Thọ', '22363', 'Phường');
INSERT INTO category."Wards" VALUES (22366, 568, 'system', '2023-07-26 08:40:17.685307+07', 'system', '2023-07-26 08:40:17.685307+07', 'Phường Phước Tiến', '22366', 'Phường');
INSERT INTO category."Wards" VALUES (22369, 568, 'system', '2023-07-26 08:40:17.685309+07', 'system', '2023-07-26 08:40:17.685309+07', 'Phường Tân Lập', '22369', 'Phường');
INSERT INTO category."Wards" VALUES (22372, 568, 'system', '2023-07-26 08:40:17.685312+07', 'system', '2023-07-26 08:40:17.685312+07', 'Phường Phước Hòa', '22372', 'Phường');
INSERT INTO category."Wards" VALUES (22375, 568, 'system', '2023-07-26 08:40:17.685314+07', 'system', '2023-07-26 08:40:17.685314+07', 'Phường Vĩnh Nguyên', '22375', 'Phường');
INSERT INTO category."Wards" VALUES (22378, 568, 'system', '2023-07-26 08:40:17.685316+07', 'system', '2023-07-26 08:40:17.685316+07', 'Phường Phước Long', '22378', 'Phường');
INSERT INTO category."Wards" VALUES (22381, 568, 'system', '2023-07-26 08:40:17.685318+07', 'system', '2023-07-26 08:40:17.685318+07', 'Phường Vĩnh Trường', '22381', 'Phường');
INSERT INTO category."Wards" VALUES (22384, 568, 'system', '2023-07-26 08:40:17.685321+07', 'system', '2023-07-26 08:40:17.685321+07', 'Xã Vĩnh Lương', '22384', 'Xã');
INSERT INTO category."Wards" VALUES (22387, 568, 'system', '2023-07-26 08:40:17.685323+07', 'system', '2023-07-26 08:40:17.685323+07', 'Xã Vĩnh Phương', '22387', 'Xã');
INSERT INTO category."Wards" VALUES (22390, 568, 'system', '2023-07-26 08:40:17.685325+07', 'system', '2023-07-26 08:40:17.685325+07', 'Xã Vĩnh Ngọc', '22390', 'Xã');
INSERT INTO category."Wards" VALUES (22393, 568, 'system', '2023-07-26 08:40:17.685327+07', 'system', '2023-07-26 08:40:17.685327+07', 'Xã Vĩnh Thạnh', '22393', 'Xã');
INSERT INTO category."Wards" VALUES (22396, 568, 'system', '2023-07-26 08:40:17.685329+07', 'system', '2023-07-26 08:40:17.685329+07', 'Xã Vĩnh Trung', '22396', 'Xã');
INSERT INTO category."Wards" VALUES (22399, 568, 'system', '2023-07-26 08:40:17.685331+07', 'system', '2023-07-26 08:40:17.685332+07', 'Xã Vĩnh Hiệp', '22399', 'Xã');
INSERT INTO category."Wards" VALUES (22402, 568, 'system', '2023-07-26 08:40:17.685334+07', 'system', '2023-07-26 08:40:17.685334+07', 'Xã Vĩnh Thái', '22402', 'Xã');
INSERT INTO category."Wards" VALUES (22405, 568, 'system', '2023-07-26 08:40:17.685336+07', 'system', '2023-07-26 08:40:17.685336+07', 'Xã Phước Đồng', '22405', 'Xã');
INSERT INTO category."Wards" VALUES (22408, 569, 'system', '2023-07-26 08:40:17.685338+07', 'system', '2023-07-26 08:40:17.685338+07', 'Phường Cam Nghĩa', '22408', 'Phường');
INSERT INTO category."Wards" VALUES (22411, 569, 'system', '2023-07-26 08:40:17.685341+07', 'system', '2023-07-26 08:40:17.685341+07', 'Phường Cam Phúc Bắc', '22411', 'Phường');
INSERT INTO category."Wards" VALUES (22414, 569, 'system', '2023-07-26 08:40:17.685344+07', 'system', '2023-07-26 08:40:17.685344+07', 'Phường Cam Phúc Nam', '22414', 'Phường');
INSERT INTO category."Wards" VALUES (22417, 569, 'system', '2023-07-26 08:40:17.685346+07', 'system', '2023-07-26 08:40:17.685347+07', 'Phường Cam Lộc', '22417', 'Phường');
INSERT INTO category."Wards" VALUES (22420, 569, 'system', '2023-07-26 08:40:17.685349+07', 'system', '2023-07-26 08:40:17.685349+07', 'Phường Cam Phú', '22420', 'Phường');
INSERT INTO category."Wards" VALUES (22423, 569, 'system', '2023-07-26 08:40:17.685351+07', 'system', '2023-07-26 08:40:17.685351+07', 'Phường Ba Ngòi', '22423', 'Phường');
INSERT INTO category."Wards" VALUES (22426, 569, 'system', '2023-07-26 08:40:17.685353+07', 'system', '2023-07-26 08:40:17.685353+07', 'Phường Cam Thuận', '22426', 'Phường');
INSERT INTO category."Wards" VALUES (22429, 569, 'system', '2023-07-26 08:40:17.685356+07', 'system', '2023-07-26 08:40:17.685356+07', 'Phường Cam Lợi', '22429', 'Phường');
INSERT INTO category."Wards" VALUES (22432, 569, 'system', '2023-07-26 08:40:17.685358+07', 'system', '2023-07-26 08:40:17.685358+07', 'Phường Cam Linh', '22432', 'Phường');
INSERT INTO category."Wards" VALUES (22435, 570, 'system', '2023-07-26 08:40:17.685374+07', 'system', '2023-07-26 08:40:17.685374+07', 'Xã Cam Tân', '22435', 'Xã');
INSERT INTO category."Wards" VALUES (22438, 570, 'system', '2023-07-26 08:40:17.685376+07', 'system', '2023-07-26 08:40:17.685376+07', 'Xã Cam Hòa', '22438', 'Xã');
INSERT INTO category."Wards" VALUES (22441, 570, 'system', '2023-07-26 08:40:17.685378+07', 'system', '2023-07-26 08:40:17.685378+07', 'Xã Cam Hải Đông', '22441', 'Xã');
INSERT INTO category."Wards" VALUES (22444, 570, 'system', '2023-07-26 08:40:17.68538+07', 'system', '2023-07-26 08:40:17.68538+07', 'Xã Cam Hải Tây', '22444', 'Xã');
INSERT INTO category."Wards" VALUES (22447, 570, 'system', '2023-07-26 08:40:17.685382+07', 'system', '2023-07-26 08:40:17.685382+07', 'Xã Sơn Tân', '22447', 'Xã');
INSERT INTO category."Wards" VALUES (22450, 570, 'system', '2023-07-26 08:40:17.685384+07', 'system', '2023-07-26 08:40:17.685384+07', 'Xã Cam Hiệp Bắc', '22450', 'Xã');
INSERT INTO category."Wards" VALUES (22453, 570, 'system', '2023-07-26 08:40:17.685387+07', 'system', '2023-07-26 08:40:17.685387+07', 'Thị trấn Cam Đức', '22453', 'Thị trấn');
INSERT INTO category."Wards" VALUES (22456, 570, 'system', '2023-07-26 08:40:17.685389+07', 'system', '2023-07-26 08:40:17.685389+07', 'Xã Cam Hiệp Nam', '22456', 'Xã');
INSERT INTO category."Wards" VALUES (22459, 570, 'system', '2023-07-26 08:40:17.685391+07', 'system', '2023-07-26 08:40:17.685391+07', 'Xã Cam Phước Tây', '22459', 'Xã');
INSERT INTO category."Wards" VALUES (22462, 570, 'system', '2023-07-26 08:40:17.685394+07', 'system', '2023-07-26 08:40:17.685394+07', 'Xã Cam Thành Bắc', '22462', 'Xã');
INSERT INTO category."Wards" VALUES (22465, 570, 'system', '2023-07-26 08:40:17.685396+07', 'system', '2023-07-26 08:40:17.685396+07', 'Xã Cam An Bắc', '22465', 'Xã');
INSERT INTO category."Wards" VALUES (22468, 569, 'system', '2023-07-26 08:40:17.68536+07', 'system', '2023-07-26 08:40:17.68536+07', 'Xã Cam Thành Nam', '22468', 'Xã');
INSERT INTO category."Wards" VALUES (22471, 570, 'system', '2023-07-26 08:40:17.685398+07', 'system', '2023-07-26 08:40:17.685398+07', 'Xã Cam An Nam', '22471', 'Xã');
INSERT INTO category."Wards" VALUES (22474, 569, 'system', '2023-07-26 08:40:17.685362+07', 'system', '2023-07-26 08:40:17.685362+07', 'Xã Cam Phước Đông', '22474', 'Xã');
INSERT INTO category."Wards" VALUES (22477, 569, 'system', '2023-07-26 08:40:17.685365+07', 'system', '2023-07-26 08:40:17.685365+07', 'Xã Cam Thịnh Tây', '22477', 'Xã');
INSERT INTO category."Wards" VALUES (22480, 569, 'system', '2023-07-26 08:40:17.685367+07', 'system', '2023-07-26 08:40:17.685367+07', 'Xã Cam Thịnh Đông', '22480', 'Xã');
INSERT INTO category."Wards" VALUES (22483, 569, 'system', '2023-07-26 08:40:17.685369+07', 'system', '2023-07-26 08:40:17.685369+07', 'Xã Cam Lập', '22483', 'Xã');
INSERT INTO category."Wards" VALUES (22486, 569, 'system', '2023-07-26 08:40:17.685371+07', 'system', '2023-07-26 08:40:17.685371+07', 'Xã Cam Bình', '22486', 'Xã');
INSERT INTO category."Wards" VALUES (22489, 571, 'system', '2023-07-26 08:40:17.685404+07', 'system', '2023-07-26 08:40:17.685404+07', 'Thị trấn Vạn Giã', '22489', 'Thị trấn');
INSERT INTO category."Wards" VALUES (22492, 571, 'system', '2023-07-26 08:40:17.685407+07', 'system', '2023-07-26 08:40:17.685407+07', 'Xã Đại Lãnh', '22492', 'Xã');
INSERT INTO category."Wards" VALUES (22495, 571, 'system', '2023-07-26 08:40:17.685409+07', 'system', '2023-07-26 08:40:17.685409+07', 'Xã Vạn Phước', '22495', 'Xã');
INSERT INTO category."Wards" VALUES (22498, 571, 'system', '2023-07-26 08:40:17.685411+07', 'system', '2023-07-26 08:40:17.685411+07', 'Xã Vạn Long', '22498', 'Xã');
INSERT INTO category."Wards" VALUES (22501, 571, 'system', '2023-07-26 08:40:17.685413+07', 'system', '2023-07-26 08:40:17.685413+07', 'Xã Vạn Bình', '22501', 'Xã');
INSERT INTO category."Wards" VALUES (22504, 571, 'system', '2023-07-26 08:40:17.685415+07', 'system', '2023-07-26 08:40:17.685416+07', 'Xã Vạn Thọ', '22504', 'Xã');
INSERT INTO category."Wards" VALUES (22507, 571, 'system', '2023-07-26 08:40:17.685418+07', 'system', '2023-07-26 08:40:17.685418+07', 'Xã Vạn Khánh', '22507', 'Xã');
INSERT INTO category."Wards" VALUES (22510, 571, 'system', '2023-07-26 08:40:17.68542+07', 'system', '2023-07-26 08:40:17.68542+07', 'Xã Vạn Phú', '22510', 'Xã');
INSERT INTO category."Wards" VALUES (22513, 571, 'system', '2023-07-26 08:40:17.685422+07', 'system', '2023-07-26 08:40:17.685422+07', 'Xã Vạn Lương', '22513', 'Xã');
INSERT INTO category."Wards" VALUES (22516, 571, 'system', '2023-07-26 08:40:17.685425+07', 'system', '2023-07-26 08:40:17.685425+07', 'Xã Vạn Thắng', '22516', 'Xã');
INSERT INTO category."Wards" VALUES (22519, 571, 'system', '2023-07-26 08:40:17.685427+07', 'system', '2023-07-26 08:40:17.685427+07', 'Xã Vạn Thạnh', '22519', 'Xã');
INSERT INTO category."Wards" VALUES (22522, 571, 'system', '2023-07-26 08:40:17.685429+07', 'system', '2023-07-26 08:40:17.685429+07', 'Xã Xuân Sơn', '22522', 'Xã');
INSERT INTO category."Wards" VALUES (22525, 571, 'system', '2023-07-26 08:40:17.685431+07', 'system', '2023-07-26 08:40:17.685432+07', 'Xã Vạn Hưng', '22525', 'Xã');
INSERT INTO category."Wards" VALUES (22528, 572, 'system', '2023-07-26 08:40:17.685434+07', 'system', '2023-07-26 08:40:17.685434+07', 'Phường Ninh Hiệp', '22528', 'Phường');
INSERT INTO category."Wards" VALUES (22531, 572, 'system', '2023-07-26 08:40:17.685436+07', 'system', '2023-07-26 08:40:17.685436+07', 'Xã Ninh Sơn', '22531', 'Xã');
INSERT INTO category."Wards" VALUES (22534, 572, 'system', '2023-07-26 08:40:17.685438+07', 'system', '2023-07-26 08:40:17.685438+07', 'Xã Ninh Tây', '22534', 'Xã');
INSERT INTO category."Wards" VALUES (22537, 572, 'system', '2023-07-26 08:40:17.685441+07', 'system', '2023-07-26 08:40:17.685441+07', 'Xã Ninh Thượng', '22537', 'Xã');
INSERT INTO category."Wards" VALUES (22540, 572, 'system', '2023-07-26 08:40:17.685451+07', 'system', '2023-07-26 08:40:17.685451+07', 'Xã Ninh An', '22540', 'Xã');
INSERT INTO category."Wards" VALUES (22543, 572, 'system', '2023-07-26 08:40:17.685454+07', 'system', '2023-07-26 08:40:17.685454+07', 'Phường Ninh Hải', '22543', 'Phường');
INSERT INTO category."Wards" VALUES (22546, 572, 'system', '2023-07-26 08:40:17.685456+07', 'system', '2023-07-26 08:40:17.685456+07', 'Xã Ninh Thọ', '22546', 'Xã');
INSERT INTO category."Wards" VALUES (22549, 572, 'system', '2023-07-26 08:40:17.685458+07', 'system', '2023-07-26 08:40:17.685458+07', 'Xã Ninh Trung', '22549', 'Xã');
INSERT INTO category."Wards" VALUES (22552, 572, 'system', '2023-07-26 08:40:17.68546+07', 'system', '2023-07-26 08:40:17.68546+07', 'Xã Ninh Sim', '22552', 'Xã');
INSERT INTO category."Wards" VALUES (22555, 572, 'system', '2023-07-26 08:40:17.685462+07', 'system', '2023-07-26 08:40:17.685462+07', 'Xã Ninh Xuân', '22555', 'Xã');
INSERT INTO category."Wards" VALUES (22558, 572, 'system', '2023-07-26 08:40:17.685464+07', 'system', '2023-07-26 08:40:17.685464+07', 'Xã Ninh Thân', '22558', 'Xã');
INSERT INTO category."Wards" VALUES (22561, 572, 'system', '2023-07-26 08:40:17.685466+07', 'system', '2023-07-26 08:40:17.685467+07', 'Phường Ninh Diêm', '22561', 'Phường');
INSERT INTO category."Wards" VALUES (22564, 572, 'system', '2023-07-26 08:40:17.685469+07', 'system', '2023-07-26 08:40:17.685469+07', 'Xã Ninh Đông', '22564', 'Xã');
INSERT INTO category."Wards" VALUES (22567, 572, 'system', '2023-07-26 08:40:17.685471+07', 'system', '2023-07-26 08:40:17.685471+07', 'Phường Ninh Thủy', '22567', 'Phường');
INSERT INTO category."Wards" VALUES (22570, 572, 'system', '2023-07-26 08:40:17.685473+07', 'system', '2023-07-26 08:40:17.685473+07', 'Phường Ninh Đa', '22570', 'Phường');
INSERT INTO category."Wards" VALUES (22573, 572, 'system', '2023-07-26 08:40:17.685476+07', 'system', '2023-07-26 08:40:17.685476+07', 'Xã Ninh Phụng', '22573', 'Xã');
INSERT INTO category."Wards" VALUES (22576, 572, 'system', '2023-07-26 08:40:17.685478+07', 'system', '2023-07-26 08:40:17.685478+07', 'Xã Ninh Bình', '22576', 'Xã');
INSERT INTO category."Wards" VALUES (22579, 572, 'system', '2023-07-26 08:40:17.68548+07', 'system', '2023-07-26 08:40:17.68548+07', 'Xã Ninh Phước', '22579', 'Xã');
INSERT INTO category."Wards" VALUES (22582, 572, 'system', '2023-07-26 08:40:17.685482+07', 'system', '2023-07-26 08:40:17.685482+07', 'Xã Ninh Phú', '22582', 'Xã');
INSERT INTO category."Wards" VALUES (22585, 572, 'system', '2023-07-26 08:40:17.685485+07', 'system', '2023-07-26 08:40:17.685485+07', 'Xã Ninh Tân', '22585', 'Xã');
INSERT INTO category."Wards" VALUES (22588, 572, 'system', '2023-07-26 08:40:17.685487+07', 'system', '2023-07-26 08:40:17.685487+07', 'Xã Ninh Quang', '22588', 'Xã');
INSERT INTO category."Wards" VALUES (22591, 572, 'system', '2023-07-26 08:40:17.685489+07', 'system', '2023-07-26 08:40:17.685489+07', 'Phường Ninh Giang', '22591', 'Phường');
INSERT INTO category."Wards" VALUES (22594, 572, 'system', '2023-07-26 08:40:17.685491+07', 'system', '2023-07-26 08:40:17.685491+07', 'Phường Ninh Hà', '22594', 'Phường');
INSERT INTO category."Wards" VALUES (22597, 572, 'system', '2023-07-26 08:40:17.685493+07', 'system', '2023-07-26 08:40:17.685494+07', 'Xã Ninh Hưng', '22597', 'Xã');
INSERT INTO category."Wards" VALUES (22600, 572, 'system', '2023-07-26 08:40:17.685496+07', 'system', '2023-07-26 08:40:17.685496+07', 'Xã Ninh Lộc', '22600', 'Xã');
INSERT INTO category."Wards" VALUES (22603, 572, 'system', '2023-07-26 08:40:17.685498+07', 'system', '2023-07-26 08:40:17.685498+07', 'Xã Ninh Ích', '22603', 'Xã');
INSERT INTO category."Wards" VALUES (22606, 572, 'system', '2023-07-26 08:40:17.6855+07', 'system', '2023-07-26 08:40:17.6855+07', 'Xã Ninh Vân', '22606', 'Xã');
INSERT INTO category."Wards" VALUES (22609, 573, 'system', '2023-07-26 08:40:17.685502+07', 'system', '2023-07-26 08:40:17.685502+07', 'Thị trấn Khánh Vĩnh', '22609', 'Thị trấn');
INSERT INTO category."Wards" VALUES (22612, 573, 'system', '2023-07-26 08:40:17.685505+07', 'system', '2023-07-26 08:40:17.685505+07', 'Xã Khánh Hiệp', '22612', 'Xã');
INSERT INTO category."Wards" VALUES (22615, 573, 'system', '2023-07-26 08:40:17.685507+07', 'system', '2023-07-26 08:40:17.685507+07', 'Xã Khánh Bình', '22615', 'Xã');
INSERT INTO category."Wards" VALUES (22618, 573, 'system', '2023-07-26 08:40:17.685509+07', 'system', '2023-07-26 08:40:17.685509+07', 'Xã Khánh Trung', '22618', 'Xã');
INSERT INTO category."Wards" VALUES (22621, 573, 'system', '2023-07-26 08:40:17.685514+07', 'system', '2023-07-26 08:40:17.685514+07', 'Xã Khánh Đông', '22621', 'Xã');
INSERT INTO category."Wards" VALUES (22624, 573, 'system', '2023-07-26 08:40:17.685518+07', 'system', '2023-07-26 08:40:17.685518+07', 'Xã Khánh Thượng', '22624', 'Xã');
INSERT INTO category."Wards" VALUES (22627, 573, 'system', '2023-07-26 08:40:17.685522+07', 'system', '2023-07-26 08:40:17.685522+07', 'Xã Khánh Nam', '22627', 'Xã');
INSERT INTO category."Wards" VALUES (22630, 573, 'system', '2023-07-26 08:40:17.685525+07', 'system', '2023-07-26 08:40:17.685525+07', 'Xã Sông Cầu', '22630', 'Xã');
INSERT INTO category."Wards" VALUES (22633, 573, 'system', '2023-07-26 08:40:17.685529+07', 'system', '2023-07-26 08:40:17.685529+07', 'Xã Giang Ly', '22633', 'Xã');
INSERT INTO category."Wards" VALUES (22636, 573, 'system', '2023-07-26 08:40:17.685533+07', 'system', '2023-07-26 08:40:17.685533+07', 'Xã Cầu Bà', '22636', 'Xã');
INSERT INTO category."Wards" VALUES (22639, 573, 'system', '2023-07-26 08:40:17.685535+07', 'system', '2023-07-26 08:40:17.685535+07', 'Xã Liên Sang', '22639', 'Xã');
INSERT INTO category."Wards" VALUES (22642, 573, 'system', '2023-07-26 08:40:17.685537+07', 'system', '2023-07-26 08:40:17.685537+07', 'Xã Khánh Thành', '22642', 'Xã');
INSERT INTO category."Wards" VALUES (22645, 573, 'system', '2023-07-26 08:40:17.68554+07', 'system', '2023-07-26 08:40:17.68554+07', 'Xã Khánh Phú', '22645', 'Xã');
INSERT INTO category."Wards" VALUES (22648, 573, 'system', '2023-07-26 08:40:17.685542+07', 'system', '2023-07-26 08:40:17.685542+07', 'Xã Sơn Thái', '22648', 'Xã');
INSERT INTO category."Wards" VALUES (22651, 574, 'system', '2023-07-26 08:40:17.685544+07', 'system', '2023-07-26 08:40:17.685544+07', 'Thị trấn Diên Khánh', '22651', 'Thị trấn');
INSERT INTO category."Wards" VALUES (22654, 574, 'system', '2023-07-26 08:40:17.685546+07', 'system', '2023-07-26 08:40:17.685546+07', 'Xã Diên Lâm', '22654', 'Xã');
INSERT INTO category."Wards" VALUES (22657, 574, 'system', '2023-07-26 08:40:17.685548+07', 'system', '2023-07-26 08:40:17.685548+07', 'Xã Diên Điền', '22657', 'Xã');
INSERT INTO category."Wards" VALUES (22660, 574, 'system', '2023-07-26 08:40:17.685551+07', 'system', '2023-07-26 08:40:17.685551+07', 'Xã Diên Xuân', '22660', 'Xã');
INSERT INTO category."Wards" VALUES (22663, 574, 'system', '2023-07-26 08:40:17.685553+07', 'system', '2023-07-26 08:40:17.685553+07', 'Xã Diên Sơn', '22663', 'Xã');
INSERT INTO category."Wards" VALUES (22666, 574, 'system', '2023-07-26 08:40:17.685555+07', 'system', '2023-07-26 08:40:17.685555+07', 'Xã Diên Đồng', '22666', 'Xã');
INSERT INTO category."Wards" VALUES (22669, 574, 'system', '2023-07-26 08:40:17.685557+07', 'system', '2023-07-26 08:40:17.685557+07', 'Xã Diên Phú', '22669', 'Xã');
INSERT INTO category."Wards" VALUES (22672, 574, 'system', '2023-07-26 08:40:17.685559+07', 'system', '2023-07-26 08:40:17.685559+07', 'Xã Diên Thọ', '22672', 'Xã');
INSERT INTO category."Wards" VALUES (22675, 574, 'system', '2023-07-26 08:40:17.685561+07', 'system', '2023-07-26 08:40:17.685561+07', 'Xã Diên Phước', '22675', 'Xã');
INSERT INTO category."Wards" VALUES (22678, 574, 'system', '2023-07-26 08:40:17.685564+07', 'system', '2023-07-26 08:40:17.685564+07', 'Xã Diên Lạc', '22678', 'Xã');
INSERT INTO category."Wards" VALUES (22681, 574, 'system', '2023-07-26 08:40:17.685566+07', 'system', '2023-07-26 08:40:17.685566+07', 'Xã Diên Tân', '22681', 'Xã');
INSERT INTO category."Wards" VALUES (22684, 574, 'system', '2023-07-26 08:40:17.685568+07', 'system', '2023-07-26 08:40:17.685568+07', 'Xã Diên Hòa', '22684', 'Xã');
INSERT INTO category."Wards" VALUES (22687, 574, 'system', '2023-07-26 08:40:17.68557+07', 'system', '2023-07-26 08:40:17.68557+07', 'Xã Diên Thạnh', '22687', 'Xã');
INSERT INTO category."Wards" VALUES (22690, 574, 'system', '2023-07-26 08:40:17.685572+07', 'system', '2023-07-26 08:40:17.685572+07', 'Xã Diên Toàn', '22690', 'Xã');
INSERT INTO category."Wards" VALUES (22693, 574, 'system', '2023-07-26 08:40:17.685574+07', 'system', '2023-07-26 08:40:17.685574+07', 'Xã Diên An', '22693', 'Xã');
INSERT INTO category."Wards" VALUES (22696, 574, 'system', '2023-07-26 08:40:17.685576+07', 'system', '2023-07-26 08:40:17.685576+07', 'Xã Bình Lộc', '22696', 'Xã');
INSERT INTO category."Wards" VALUES (22702, 574, 'system', '2023-07-26 08:40:17.685578+07', 'system', '2023-07-26 08:40:17.685578+07', 'Xã Suối Hiệp', '22702', 'Xã');
INSERT INTO category."Wards" VALUES (22705, 574, 'system', '2023-07-26 08:40:17.685581+07', 'system', '2023-07-26 08:40:17.685581+07', 'Xã Suối Tiên', '22705', 'Xã');
INSERT INTO category."Wards" VALUES (22708, 570, 'system', '2023-07-26 08:40:17.6854+07', 'system', '2023-07-26 08:40:17.6854+07', 'Xã Suối Cát', '22708', 'Xã');
INSERT INTO category."Wards" VALUES (22711, 570, 'system', '2023-07-26 08:40:17.685402+07', 'system', '2023-07-26 08:40:17.685402+07', 'Xã Suối Tân', '22711', 'Xã');
INSERT INTO category."Wards" VALUES (22714, 575, 'system', '2023-07-26 08:40:17.685583+07', 'system', '2023-07-26 08:40:17.685583+07', 'Thị trấn Tô Hạp', '22714', 'Thị trấn');
INSERT INTO category."Wards" VALUES (22717, 575, 'system', '2023-07-26 08:40:17.685585+07', 'system', '2023-07-26 08:40:17.685585+07', 'Xã Thành Sơn', '22717', 'Xã');
INSERT INTO category."Wards" VALUES (22720, 575, 'system', '2023-07-26 08:40:17.685587+07', 'system', '2023-07-26 08:40:17.685587+07', 'Xã Sơn Lâm', '22720', 'Xã');
INSERT INTO category."Wards" VALUES (22723, 575, 'system', '2023-07-26 08:40:17.685589+07', 'system', '2023-07-26 08:40:17.685589+07', 'Xã Sơn Hiệp', '22723', 'Xã');
INSERT INTO category."Wards" VALUES (22726, 575, 'system', '2023-07-26 08:40:17.685592+07', 'system', '2023-07-26 08:40:17.685592+07', 'Xã Sơn Bình', '22726', 'Xã');
INSERT INTO category."Wards" VALUES (22729, 575, 'system', '2023-07-26 08:40:17.685594+07', 'system', '2023-07-26 08:40:17.685594+07', 'Xã Sơn Trung', '22729', 'Xã');
INSERT INTO category."Wards" VALUES (22732, 575, 'system', '2023-07-26 08:40:17.685596+07', 'system', '2023-07-26 08:40:17.685596+07', 'Xã Ba Cụm Bắc', '22732', 'Xã');
INSERT INTO category."Wards" VALUES (22735, 575, 'system', '2023-07-26 08:40:17.685598+07', 'system', '2023-07-26 08:40:17.685598+07', 'Xã Ba Cụm Nam', '22735', 'Xã');
INSERT INTO category."Wards" VALUES (22736, 576, 'system', '2023-07-26 08:40:17.6856+07', 'system', '2023-07-26 08:40:17.6856+07', 'Thị trấn Trường Sa', '22736', 'Thị trấn');
INSERT INTO category."Wards" VALUES (22737, 576, 'system', '2023-07-26 08:40:17.685603+07', 'system', '2023-07-26 08:40:17.685604+07', 'Xã Song Tử Tây', '22737', 'Xã');
INSERT INTO category."Wards" VALUES (22738, 582, 'system', '2023-07-26 08:40:17.685608+07', 'system', '2023-07-26 08:40:17.685608+07', 'Phường Đô Vinh', '22738', 'Phường');
INSERT INTO category."Wards" VALUES (22739, 576, 'system', '2023-07-26 08:40:17.685606+07', 'system', '2023-07-26 08:40:17.685606+07', 'Xã Sinh Tồn', '22739', 'Xã');
INSERT INTO category."Wards" VALUES (22741, 582, 'system', '2023-07-26 08:40:17.68561+07', 'system', '2023-07-26 08:40:17.68561+07', 'Phường Phước Mỹ', '22741', 'Phường');
INSERT INTO category."Wards" VALUES (22744, 582, 'system', '2023-07-26 08:40:17.685612+07', 'system', '2023-07-26 08:40:17.685612+07', 'Phường Bảo An', '22744', 'Phường');
INSERT INTO category."Wards" VALUES (22747, 582, 'system', '2023-07-26 08:40:17.685615+07', 'system', '2023-07-26 08:40:17.685615+07', 'Phường Phủ Hà', '22747', 'Phường');
INSERT INTO category."Wards" VALUES (22750, 582, 'system', '2023-07-26 08:40:17.685617+07', 'system', '2023-07-26 08:40:17.685617+07', 'Phường Thanh Sơn', '22750', 'Phường');
INSERT INTO category."Wards" VALUES (22753, 582, 'system', '2023-07-26 08:40:17.685619+07', 'system', '2023-07-26 08:40:17.68562+07', 'Phường Mỹ Hương', '22753', 'Phường');
INSERT INTO category."Wards" VALUES (22756, 582, 'system', '2023-07-26 08:40:17.685622+07', 'system', '2023-07-26 08:40:17.685622+07', 'Phường Tấn Tài', '22756', 'Phường');
INSERT INTO category."Wards" VALUES (22759, 582, 'system', '2023-07-26 08:40:17.685624+07', 'system', '2023-07-26 08:40:17.685624+07', 'Phường Kinh Dinh', '22759', 'Phường');
INSERT INTO category."Wards" VALUES (22762, 582, 'system', '2023-07-26 08:40:17.685626+07', 'system', '2023-07-26 08:40:17.685626+07', 'Phường Đạo Long', '22762', 'Phường');
INSERT INTO category."Wards" VALUES (22765, 582, 'system', '2023-07-26 08:40:17.685629+07', 'system', '2023-07-26 08:40:17.685629+07', 'Phường Đài Sơn', '22765', 'Phường');
INSERT INTO category."Wards" VALUES (22768, 582, 'system', '2023-07-26 08:40:17.685631+07', 'system', '2023-07-26 08:40:17.685631+07', 'Phường Đông Hải', '22768', 'Phường');
INSERT INTO category."Wards" VALUES (22771, 582, 'system', '2023-07-26 08:40:17.685634+07', 'system', '2023-07-26 08:40:17.685634+07', 'Phường Mỹ Đông', '22771', 'Phường');
INSERT INTO category."Wards" VALUES (22774, 582, 'system', '2023-07-26 08:40:17.685636+07', 'system', '2023-07-26 08:40:17.685636+07', 'Xã Thành Hải', '22774', 'Xã');
INSERT INTO category."Wards" VALUES (22777, 582, 'system', '2023-07-26 08:40:17.685638+07', 'system', '2023-07-26 08:40:17.685638+07', 'Phường Văn Hải', '22777', 'Phường');
INSERT INTO category."Wards" VALUES (22779, 582, 'system', '2023-07-26 08:40:17.68564+07', 'system', '2023-07-26 08:40:17.68564+07', 'Phường Mỹ Bình', '22779', 'Phường');
INSERT INTO category."Wards" VALUES (22780, 582, 'system', '2023-07-26 08:40:17.685642+07', 'system', '2023-07-26 08:40:17.685642+07', 'Phường Mỹ Hải', '22780', 'Phường');
INSERT INTO category."Wards" VALUES (22783, 584, 'system', '2023-07-26 08:40:17.685645+07', 'system', '2023-07-26 08:40:17.685645+07', 'Xã Phước Bình', '22783', 'Xã');
INSERT INTO category."Wards" VALUES (22786, 584, 'system', '2023-07-26 08:40:17.685647+07', 'system', '2023-07-26 08:40:17.685647+07', 'Xã Phước Hòa', '22786', 'Xã');
INSERT INTO category."Wards" VALUES (22789, 584, 'system', '2023-07-26 08:40:17.685649+07', 'system', '2023-07-26 08:40:17.685649+07', 'Xã Phước Tân', '22789', 'Xã');
INSERT INTO category."Wards" VALUES (22792, 584, 'system', '2023-07-26 08:40:17.685652+07', 'system', '2023-07-26 08:40:17.685652+07', 'Xã Phước Tiến', '22792', 'Xã');
INSERT INTO category."Wards" VALUES (22795, 584, 'system', '2023-07-26 08:40:17.685654+07', 'system', '2023-07-26 08:40:17.685654+07', 'Xã Phước Thắng', '22795', 'Xã');
INSERT INTO category."Wards" VALUES (22798, 584, 'system', '2023-07-26 08:40:17.685656+07', 'system', '2023-07-26 08:40:17.685656+07', 'Xã Phước Thành', '22798', 'Xã');
INSERT INTO category."Wards" VALUES (22801, 584, 'system', '2023-07-26 08:40:17.685658+07', 'system', '2023-07-26 08:40:17.685658+07', 'Xã Phước Đại', '22801', 'Xã');
INSERT INTO category."Wards" VALUES (22804, 584, 'system', '2023-07-26 08:40:17.685661+07', 'system', '2023-07-26 08:40:17.685661+07', 'Xã Phước Chính', '22804', 'Xã');
INSERT INTO category."Wards" VALUES (22807, 584, 'system', '2023-07-26 08:40:17.685663+07', 'system', '2023-07-26 08:40:17.685663+07', 'Xã Phước Trung', '22807', 'Xã');
INSERT INTO category."Wards" VALUES (22810, 585, 'system', '2023-07-26 08:40:17.685665+07', 'system', '2023-07-26 08:40:17.685665+07', 'Thị trấn Tân Sơn', '22810', 'Thị trấn');
INSERT INTO category."Wards" VALUES (22813, 585, 'system', '2023-07-26 08:40:17.685667+07', 'system', '2023-07-26 08:40:17.685667+07', 'Xã Lâm Sơn', '22813', 'Xã');
INSERT INTO category."Wards" VALUES (22816, 585, 'system', '2023-07-26 08:40:17.685669+07', 'system', '2023-07-26 08:40:17.685669+07', 'Xã Lương Sơn', '22816', 'Xã');
INSERT INTO category."Wards" VALUES (22819, 585, 'system', '2023-07-26 08:40:17.685672+07', 'system', '2023-07-26 08:40:17.685672+07', 'Xã Quảng Sơn', '22819', 'Xã');
INSERT INTO category."Wards" VALUES (22822, 585, 'system', '2023-07-26 08:40:17.685674+07', 'system', '2023-07-26 08:40:17.685674+07', 'Xã Mỹ Sơn', '22822', 'Xã');
INSERT INTO category."Wards" VALUES (22825, 585, 'system', '2023-07-26 08:40:17.685676+07', 'system', '2023-07-26 08:40:17.685676+07', 'Xã Hòa Sơn', '22825', 'Xã');
INSERT INTO category."Wards" VALUES (22828, 585, 'system', '2023-07-26 08:40:17.685678+07', 'system', '2023-07-26 08:40:17.685678+07', 'Xã Ma Nới', '22828', 'Xã');
INSERT INTO category."Wards" VALUES (22831, 585, 'system', '2023-07-26 08:40:17.68568+07', 'system', '2023-07-26 08:40:17.68568+07', 'Xã Nhơn Sơn', '22831', 'Xã');
INSERT INTO category."Wards" VALUES (22834, 586, 'system', '2023-07-26 08:40:17.685683+07', 'system', '2023-07-26 08:40:17.685683+07', 'Thị trấn Khánh Hải', '22834', 'Thị trấn');
INSERT INTO category."Wards" VALUES (22837, 588, 'system', '2023-07-26 08:40:17.685722+07', 'system', '2023-07-26 08:40:17.685722+07', 'Xã Phước Chiến', '22837', 'Xã');
INSERT INTO category."Wards" VALUES (22840, 588, 'system', '2023-07-26 08:40:17.685724+07', 'system', '2023-07-26 08:40:17.685724+07', 'Xã Công Hải', '22840', 'Xã');
INSERT INTO category."Wards" VALUES (22843, 588, 'system', '2023-07-26 08:40:17.685726+07', 'system', '2023-07-26 08:40:17.685726+07', 'Xã Phước Kháng', '22843', 'Xã');
INSERT INTO category."Wards" VALUES (22846, 586, 'system', '2023-07-26 08:40:17.685685+07', 'system', '2023-07-26 08:40:17.685685+07', 'Xã Vĩnh Hải', '22846', 'Xã');
INSERT INTO category."Wards" VALUES (22849, 588, 'system', '2023-07-26 08:40:17.685728+07', 'system', '2023-07-26 08:40:17.685728+07', 'Xã Lợi Hải', '22849', 'Xã');
INSERT INTO category."Wards" VALUES (22852, 586, 'system', '2023-07-26 08:40:17.685688+07', 'system', '2023-07-26 08:40:17.685688+07', 'Xã Phương Hải', '22852', 'Xã');
INSERT INTO category."Wards" VALUES (22853, 588, 'system', '2023-07-26 08:40:17.685731+07', 'system', '2023-07-26 08:40:17.685731+07', 'Xã Bắc Sơn', '22853', 'Xã');
INSERT INTO category."Wards" VALUES (22855, 586, 'system', '2023-07-26 08:40:17.68569+07', 'system', '2023-07-26 08:40:17.68569+07', 'Xã Tân Hải', '22855', 'Xã');
INSERT INTO category."Wards" VALUES (22856, 588, 'system', '2023-07-26 08:40:17.685733+07', 'system', '2023-07-26 08:40:17.685733+07', 'Xã Bắc Phong', '22856', 'Xã');
INSERT INTO category."Wards" VALUES (22858, 586, 'system', '2023-07-26 08:40:17.685692+07', 'system', '2023-07-26 08:40:17.685692+07', 'Xã Xuân Hải', '22858', 'Xã');
INSERT INTO category."Wards" VALUES (22861, 586, 'system', '2023-07-26 08:40:17.685694+07', 'system', '2023-07-26 08:40:17.685694+07', 'Xã Hộ Hải', '22861', 'Xã');
INSERT INTO category."Wards" VALUES (22864, 586, 'system', '2023-07-26 08:40:17.685696+07', 'system', '2023-07-26 08:40:17.685697+07', 'Xã Tri Hải', '22864', 'Xã');
INSERT INTO category."Wards" VALUES (22867, 586, 'system', '2023-07-26 08:40:17.685699+07', 'system', '2023-07-26 08:40:17.685699+07', 'Xã Nhơn Hải', '22867', 'Xã');
INSERT INTO category."Wards" VALUES (22868, 586, 'system', '2023-07-26 08:40:17.685701+07', 'system', '2023-07-26 08:40:17.685701+07', 'Xã Thanh Hải', '22868', 'Xã');
INSERT INTO category."Wards" VALUES (22870, 587, 'system', '2023-07-26 08:40:17.685703+07', 'system', '2023-07-26 08:40:17.685703+07', 'Thị trấn Phước Dân', '22870', 'Thị trấn');
INSERT INTO category."Wards" VALUES (22873, 587, 'system', '2023-07-26 08:40:17.685705+07', 'system', '2023-07-26 08:40:17.685705+07', 'Xã Phước Sơn', '22873', 'Xã');
INSERT INTO category."Wards" VALUES (22876, 587, 'system', '2023-07-26 08:40:17.685707+07', 'system', '2023-07-26 08:40:17.685707+07', 'Xã Phước Thái', '22876', 'Xã');
INSERT INTO category."Wards" VALUES (22879, 587, 'system', '2023-07-26 08:40:17.685709+07', 'system', '2023-07-26 08:40:17.685709+07', 'Xã Phước Hậu', '22879', 'Xã');
INSERT INTO category."Wards" VALUES (22882, 587, 'system', '2023-07-26 08:40:17.685711+07', 'system', '2023-07-26 08:40:17.685711+07', 'Xã Phước Thuận', '22882', 'Xã');
INSERT INTO category."Wards" VALUES (22885, 589, 'system', '2023-07-26 08:40:17.685735+07', 'system', '2023-07-26 08:40:17.685735+07', 'Xã Phước Hà', '22885', 'Xã');
INSERT INTO category."Wards" VALUES (22888, 587, 'system', '2023-07-26 08:40:17.685714+07', 'system', '2023-07-26 08:40:17.685714+07', 'Xã An Hải', '22888', 'Xã');
INSERT INTO category."Wards" VALUES (22891, 587, 'system', '2023-07-26 08:40:17.685716+07', 'system', '2023-07-26 08:40:17.685716+07', 'Xã Phước Hữu', '22891', 'Xã');
INSERT INTO category."Wards" VALUES (22894, 587, 'system', '2023-07-26 08:40:17.685718+07', 'system', '2023-07-26 08:40:17.685718+07', 'Xã Phước Hải', '22894', 'Xã');
INSERT INTO category."Wards" VALUES (22897, 589, 'system', '2023-07-26 08:40:17.685737+07', 'system', '2023-07-26 08:40:17.685737+07', 'Xã Phước Nam', '22897', 'Xã');
INSERT INTO category."Wards" VALUES (22898, 589, 'system', '2023-07-26 08:40:17.685739+07', 'system', '2023-07-26 08:40:17.68574+07', 'Xã Phước Ninh', '22898', 'Xã');
INSERT INTO category."Wards" VALUES (22900, 589, 'system', '2023-07-26 08:40:17.685742+07', 'system', '2023-07-26 08:40:17.685742+07', 'Xã Nhị Hà', '22900', 'Xã');
INSERT INTO category."Wards" VALUES (22903, 589, 'system', '2023-07-26 08:40:17.685744+07', 'system', '2023-07-26 08:40:17.685744+07', 'Xã Phước Dinh', '22903', 'Xã');
INSERT INTO category."Wards" VALUES (22906, 589, 'system', '2023-07-26 08:40:17.685746+07', 'system', '2023-07-26 08:40:17.685746+07', 'Xã Phước Minh', '22906', 'Xã');
INSERT INTO category."Wards" VALUES (22909, 589, 'system', '2023-07-26 08:40:17.685748+07', 'system', '2023-07-26 08:40:17.685748+07', 'Xã Phước Diêm', '22909', 'Xã');
INSERT INTO category."Wards" VALUES (22910, 589, 'system', '2023-07-26 08:40:17.68575+07', 'system', '2023-07-26 08:40:17.68575+07', 'Xã Cà Ná', '22910', 'Xã');
INSERT INTO category."Wards" VALUES (22912, 587, 'system', '2023-07-26 08:40:17.68572+07', 'system', '2023-07-26 08:40:17.68572+07', 'Xã Phước Vinh', '22912', 'Xã');
INSERT INTO category."Wards" VALUES (22915, 593, 'system', '2023-07-26 08:40:17.685752+07', 'system', '2023-07-26 08:40:17.685753+07', 'Phường Mũi Né', '22915', 'Phường');
INSERT INTO category."Wards" VALUES (22918, 593, 'system', '2023-07-26 08:40:17.685755+07', 'system', '2023-07-26 08:40:17.685755+07', 'Phường Hàm Tiến', '22918', 'Phường');
INSERT INTO category."Wards" VALUES (22921, 593, 'system', '2023-07-26 08:40:17.685757+07', 'system', '2023-07-26 08:40:17.685757+07', 'Phường Phú Hài', '22921', 'Phường');
INSERT INTO category."Wards" VALUES (22924, 593, 'system', '2023-07-26 08:40:17.685759+07', 'system', '2023-07-26 08:40:17.685759+07', 'Phường Phú Thủy', '22924', 'Phường');
INSERT INTO category."Wards" VALUES (22927, 593, 'system', '2023-07-26 08:40:17.685762+07', 'system', '2023-07-26 08:40:17.685762+07', 'Phường Phú Tài', '22927', 'Phường');
INSERT INTO category."Wards" VALUES (22930, 593, 'system', '2023-07-26 08:40:17.685765+07', 'system', '2023-07-26 08:40:17.685765+07', 'Phường Phú Trinh', '22930', 'Phường');
INSERT INTO category."Wards" VALUES (22933, 593, 'system', '2023-07-26 08:40:17.685767+07', 'system', '2023-07-26 08:40:17.685767+07', 'Phường Xuân An', '22933', 'Phường');
INSERT INTO category."Wards" VALUES (22936, 593, 'system', '2023-07-26 08:40:17.685769+07', 'system', '2023-07-26 08:40:17.685769+07', 'Phường Thanh Hải', '22936', 'Phường');
INSERT INTO category."Wards" VALUES (22939, 593, 'system', '2023-07-26 08:40:17.685771+07', 'system', '2023-07-26 08:40:17.685772+07', 'Phường Bình Hưng', '22939', 'Phường');
INSERT INTO category."Wards" VALUES (22942, 593, 'system', '2023-07-26 08:40:17.685774+07', 'system', '2023-07-26 08:40:17.685774+07', 'Phường Đức Nghĩa', '22942', 'Phường');
INSERT INTO category."Wards" VALUES (22945, 593, 'system', '2023-07-26 08:40:17.685776+07', 'system', '2023-07-26 08:40:17.685776+07', 'Phường Lạc Đạo', '22945', 'Phường');
INSERT INTO category."Wards" VALUES (22948, 593, 'system', '2023-07-26 08:40:17.685778+07', 'system', '2023-07-26 08:40:17.685779+07', 'Phường Đức Thắng', '22948', 'Phường');
INSERT INTO category."Wards" VALUES (22951, 593, 'system', '2023-07-26 08:40:17.685781+07', 'system', '2023-07-26 08:40:17.685781+07', 'Phường Hưng Long', '22951', 'Phường');
INSERT INTO category."Wards" VALUES (22954, 593, 'system', '2023-07-26 08:40:17.685783+07', 'system', '2023-07-26 08:40:17.685783+07', 'Phường Đức Long', '22954', 'Phường');
INSERT INTO category."Wards" VALUES (22957, 593, 'system', '2023-07-26 08:40:17.685785+07', 'system', '2023-07-26 08:40:17.685785+07', 'Xã Thiện Nghiệp', '22957', 'Xã');
INSERT INTO category."Wards" VALUES (22960, 593, 'system', '2023-07-26 08:40:17.685787+07', 'system', '2023-07-26 08:40:17.685787+07', 'Xã Phong Nẫm', '22960', 'Xã');
INSERT INTO category."Wards" VALUES (22963, 593, 'system', '2023-07-26 08:40:17.68579+07', 'system', '2023-07-26 08:40:17.68579+07', 'Xã Tiến Lợi', '22963', 'Xã');
INSERT INTO category."Wards" VALUES (22966, 593, 'system', '2023-07-26 08:40:17.685792+07', 'system', '2023-07-26 08:40:17.685792+07', 'Xã Tiến Thành', '22966', 'Xã');
INSERT INTO category."Wards" VALUES (22969, 595, 'system', '2023-07-26 08:40:17.685814+07', 'system', '2023-07-26 08:40:17.685814+07', 'Thị trấn Liên Hương', '22969', 'Thị trấn');
INSERT INTO category."Wards" VALUES (22972, 595, 'system', '2023-07-26 08:40:17.685817+07', 'system', '2023-07-26 08:40:17.685817+07', 'Thị trấn Phan Rí Cửa', '22972', 'Thị trấn');
INSERT INTO category."Wards" VALUES (22975, 595, 'system', '2023-07-26 08:40:17.685819+07', 'system', '2023-07-26 08:40:17.685819+07', 'Xã Phan Dũng', '22975', 'Xã');
INSERT INTO category."Wards" VALUES (22978, 595, 'system', '2023-07-26 08:40:17.685822+07', 'system', '2023-07-26 08:40:17.685822+07', 'Xã Phong Phú', '22978', 'Xã');
INSERT INTO category."Wards" VALUES (22981, 595, 'system', '2023-07-26 08:40:17.685824+07', 'system', '2023-07-26 08:40:17.685824+07', 'Xã Vĩnh Hảo', '22981', 'Xã');
INSERT INTO category."Wards" VALUES (22984, 595, 'system', '2023-07-26 08:40:17.685826+07', 'system', '2023-07-26 08:40:17.685826+07', 'Xã Vĩnh Tân', '22984', 'Xã');
INSERT INTO category."Wards" VALUES (22987, 595, 'system', '2023-07-26 08:40:17.685828+07', 'system', '2023-07-26 08:40:17.685828+07', 'Xã Phú Lạc', '22987', 'Xã');
INSERT INTO category."Wards" VALUES (22990, 595, 'system', '2023-07-26 08:40:17.68583+07', 'system', '2023-07-26 08:40:17.68583+07', 'Xã Phước Thể', '22990', 'Xã');
INSERT INTO category."Wards" VALUES (22993, 595, 'system', '2023-07-26 08:40:17.685833+07', 'system', '2023-07-26 08:40:17.685833+07', 'Xã Hòa Minh', '22993', 'Xã');
INSERT INTO category."Wards" VALUES (22996, 595, 'system', '2023-07-26 08:40:17.685835+07', 'system', '2023-07-26 08:40:17.685835+07', 'Xã Chí Công', '22996', 'Xã');
INSERT INTO category."Wards" VALUES (22999, 595, 'system', '2023-07-26 08:40:17.685837+07', 'system', '2023-07-26 08:40:17.685837+07', 'Xã Bình Thạnh', '22999', 'Xã');
INSERT INTO category."Wards" VALUES (23005, 596, 'system', '2023-07-26 08:40:17.685839+07', 'system', '2023-07-26 08:40:17.685839+07', 'Thị trấn Chợ Lầu', '23005', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23008, 596, 'system', '2023-07-26 08:40:17.685842+07', 'system', '2023-07-26 08:40:17.685842+07', 'Xã Phan Sơn', '23008', 'Xã');
INSERT INTO category."Wards" VALUES (23011, 596, 'system', '2023-07-26 08:40:17.685844+07', 'system', '2023-07-26 08:40:17.685844+07', 'Xã Phan Lâm', '23011', 'Xã');
INSERT INTO category."Wards" VALUES (23014, 596, 'system', '2023-07-26 08:40:17.685847+07', 'system', '2023-07-26 08:40:17.685847+07', 'Xã Bình An', '23014', 'Xã');
INSERT INTO category."Wards" VALUES (23017, 596, 'system', '2023-07-26 08:40:17.685849+07', 'system', '2023-07-26 08:40:17.685849+07', 'Xã Phan Điền', '23017', 'Xã');
INSERT INTO category."Wards" VALUES (23020, 596, 'system', '2023-07-26 08:40:17.685851+07', 'system', '2023-07-26 08:40:17.685851+07', 'Xã Hải Ninh', '23020', 'Xã');
INSERT INTO category."Wards" VALUES (23023, 596, 'system', '2023-07-26 08:40:17.685853+07', 'system', '2023-07-26 08:40:17.685853+07', 'Xã Sông Lũy', '23023', 'Xã');
INSERT INTO category."Wards" VALUES (23026, 596, 'system', '2023-07-26 08:40:17.685855+07', 'system', '2023-07-26 08:40:17.685855+07', 'Xã Phan Tiến', '23026', 'Xã');
INSERT INTO category."Wards" VALUES (23029, 596, 'system', '2023-07-26 08:40:17.685857+07', 'system', '2023-07-26 08:40:17.685858+07', 'Xã Sông Bình', '23029', 'Xã');
INSERT INTO category."Wards" VALUES (23032, 596, 'system', '2023-07-26 08:40:17.68586+07', 'system', '2023-07-26 08:40:17.68586+07', 'Thị trấn Lương Sơn', '23032', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23035, 596, 'system', '2023-07-26 08:40:17.685862+07', 'system', '2023-07-26 08:40:17.685862+07', 'Xã Phan Hòa', '23035', 'Xã');
INSERT INTO category."Wards" VALUES (23038, 596, 'system', '2023-07-26 08:40:17.685864+07', 'system', '2023-07-26 08:40:17.685864+07', 'Xã Phan Thanh', '23038', 'Xã');
INSERT INTO category."Wards" VALUES (23041, 596, 'system', '2023-07-26 08:40:17.685866+07', 'system', '2023-07-26 08:40:17.685866+07', 'Xã Hồng Thái', '23041', 'Xã');
INSERT INTO category."Wards" VALUES (23044, 596, 'system', '2023-07-26 08:40:17.685868+07', 'system', '2023-07-26 08:40:17.685868+07', 'Xã Phan Hiệp', '23044', 'Xã');
INSERT INTO category."Wards" VALUES (23047, 596, 'system', '2023-07-26 08:40:17.68587+07', 'system', '2023-07-26 08:40:17.685871+07', 'Xã Bình Tân', '23047', 'Xã');
INSERT INTO category."Wards" VALUES (23050, 596, 'system', '2023-07-26 08:40:17.685872+07', 'system', '2023-07-26 08:40:17.685872+07', 'Xã Phan Rí Thành', '23050', 'Xã');
INSERT INTO category."Wards" VALUES (23053, 596, 'system', '2023-07-26 08:40:17.685875+07', 'system', '2023-07-26 08:40:17.685875+07', 'Xã Hòa Thắng', '23053', 'Xã');
INSERT INTO category."Wards" VALUES (23056, 596, 'system', '2023-07-26 08:40:17.685877+07', 'system', '2023-07-26 08:40:17.685877+07', 'Xã Hồng Phong', '23056', 'Xã');
INSERT INTO category."Wards" VALUES (23059, 597, 'system', '2023-07-26 08:40:17.685879+07', 'system', '2023-07-26 08:40:17.685879+07', 'Thị trấn Ma Lâm', '23059', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23062, 597, 'system', '2023-07-26 08:40:17.685881+07', 'system', '2023-07-26 08:40:17.685881+07', 'Thị trấn Phú Long', '23062', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23065, 597, 'system', '2023-07-26 08:40:17.685884+07', 'system', '2023-07-26 08:40:17.685884+07', 'Xã La Dạ', '23065', 'Xã');
INSERT INTO category."Wards" VALUES (23068, 597, 'system', '2023-07-26 08:40:17.685886+07', 'system', '2023-07-26 08:40:17.685886+07', 'Xã Đông Tiến', '23068', 'Xã');
INSERT INTO category."Wards" VALUES (23071, 597, 'system', '2023-07-26 08:40:17.685888+07', 'system', '2023-07-26 08:40:17.685888+07', 'Xã Thuận Hòa', '23071', 'Xã');
INSERT INTO category."Wards" VALUES (23074, 597, 'system', '2023-07-26 08:40:17.68589+07', 'system', '2023-07-26 08:40:17.68589+07', 'Xã Đông Giang', '23074', 'Xã');
INSERT INTO category."Wards" VALUES (23077, 597, 'system', '2023-07-26 08:40:17.685892+07', 'system', '2023-07-26 08:40:17.685892+07', 'Xã Hàm Phú', '23077', 'Xã');
INSERT INTO category."Wards" VALUES (23080, 597, 'system', '2023-07-26 08:40:17.685894+07', 'system', '2023-07-26 08:40:17.685894+07', 'Xã Hồng Liêm', '23080', 'Xã');
INSERT INTO category."Wards" VALUES (23083, 597, 'system', '2023-07-26 08:40:17.685897+07', 'system', '2023-07-26 08:40:17.685897+07', 'Xã Thuận Minh', '23083', 'Xã');
INSERT INTO category."Wards" VALUES (23086, 597, 'system', '2023-07-26 08:40:17.685899+07', 'system', '2023-07-26 08:40:17.685899+07', 'Xã Hồng Sơn', '23086', 'Xã');
INSERT INTO category."Wards" VALUES (23089, 597, 'system', '2023-07-26 08:40:17.685901+07', 'system', '2023-07-26 08:40:17.685901+07', 'Xã Hàm Trí', '23089', 'Xã');
INSERT INTO category."Wards" VALUES (23092, 597, 'system', '2023-07-26 08:40:17.685903+07', 'system', '2023-07-26 08:40:17.685903+07', 'Xã Hàm Đức', '23092', 'Xã');
INSERT INTO category."Wards" VALUES (23095, 597, 'system', '2023-07-26 08:40:17.685905+07', 'system', '2023-07-26 08:40:17.685905+07', 'Xã Hàm Liêm', '23095', 'Xã');
INSERT INTO category."Wards" VALUES (23098, 597, 'system', '2023-07-26 08:40:17.685907+07', 'system', '2023-07-26 08:40:17.685907+07', 'Xã Hàm Chính', '23098', 'Xã');
INSERT INTO category."Wards" VALUES (23101, 597, 'system', '2023-07-26 08:40:17.685909+07', 'system', '2023-07-26 08:40:17.685909+07', 'Xã Hàm Hiệp', '23101', 'Xã');
INSERT INTO category."Wards" VALUES (23104, 597, 'system', '2023-07-26 08:40:17.685912+07', 'system', '2023-07-26 08:40:17.685912+07', 'Xã Hàm Thắng', '23104', 'Xã');
INSERT INTO category."Wards" VALUES (23107, 597, 'system', '2023-07-26 08:40:17.685914+07', 'system', '2023-07-26 08:40:17.685914+07', 'Xã Đa Mi', '23107', 'Xã');
INSERT INTO category."Wards" VALUES (23110, 598, 'system', '2023-07-26 08:40:17.685916+07', 'system', '2023-07-26 08:40:17.685916+07', 'Thị trấn Thuận Nam', '23110', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23113, 598, 'system', '2023-07-26 08:40:17.685919+07', 'system', '2023-07-26 08:40:17.685919+07', 'Xã Mỹ Thạnh', '23113', 'Xã');
INSERT INTO category."Wards" VALUES (23116, 598, 'system', '2023-07-26 08:40:17.685921+07', 'system', '2023-07-26 08:40:17.685921+07', 'Xã Hàm Cần', '23116', 'Xã');
INSERT INTO category."Wards" VALUES (23119, 598, 'system', '2023-07-26 08:40:17.685924+07', 'system', '2023-07-26 08:40:17.685924+07', 'Xã Mương Mán', '23119', 'Xã');
INSERT INTO category."Wards" VALUES (23122, 598, 'system', '2023-07-26 08:40:17.685926+07', 'system', '2023-07-26 08:40:17.685926+07', 'Xã Hàm Thạnh', '23122', 'Xã');
INSERT INTO category."Wards" VALUES (23125, 598, 'system', '2023-07-26 08:40:17.685928+07', 'system', '2023-07-26 08:40:17.685928+07', 'Xã Hàm Kiệm', '23125', 'Xã');
INSERT INTO category."Wards" VALUES (23128, 598, 'system', '2023-07-26 08:40:17.685931+07', 'system', '2023-07-26 08:40:17.685931+07', 'Xã Hàm Cường', '23128', 'Xã');
INSERT INTO category."Wards" VALUES (23131, 598, 'system', '2023-07-26 08:40:17.685933+07', 'system', '2023-07-26 08:40:17.685933+07', 'Xã Hàm Mỹ', '23131', 'Xã');
INSERT INTO category."Wards" VALUES (23134, 598, 'system', '2023-07-26 08:40:17.685935+07', 'system', '2023-07-26 08:40:17.685935+07', 'Xã Tân Lập', '23134', 'Xã');
INSERT INTO category."Wards" VALUES (23137, 598, 'system', '2023-07-26 08:40:17.685937+07', 'system', '2023-07-26 08:40:17.685937+07', 'Xã Hàm Minh', '23137', 'Xã');
INSERT INTO category."Wards" VALUES (23140, 598, 'system', '2023-07-26 08:40:17.685939+07', 'system', '2023-07-26 08:40:17.685939+07', 'Xã Thuận Quí', '23140', 'Xã');
INSERT INTO category."Wards" VALUES (23143, 598, 'system', '2023-07-26 08:40:17.685941+07', 'system', '2023-07-26 08:40:17.685941+07', 'Xã Tân Thuận', '23143', 'Xã');
INSERT INTO category."Wards" VALUES (23146, 598, 'system', '2023-07-26 08:40:17.685943+07', 'system', '2023-07-26 08:40:17.685944+07', 'Xã Tân Thành', '23146', 'Xã');
INSERT INTO category."Wards" VALUES (23149, 599, 'system', '2023-07-26 08:40:17.685946+07', 'system', '2023-07-26 08:40:17.685946+07', 'Thị trấn Lạc Tánh', '23149', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23152, 599, 'system', '2023-07-26 08:40:17.685948+07', 'system', '2023-07-26 08:40:17.685948+07', 'Xã Bắc Ruộng', '23152', 'Xã');
INSERT INTO category."Wards" VALUES (23158, 599, 'system', '2023-07-26 08:40:17.68595+07', 'system', '2023-07-26 08:40:17.68595+07', 'Xã Nghị Đức', '23158', 'Xã');
INSERT INTO category."Wards" VALUES (23161, 599, 'system', '2023-07-26 08:40:17.685952+07', 'system', '2023-07-26 08:40:17.685953+07', 'Xã La Ngâu', '23161', 'Xã');
INSERT INTO category."Wards" VALUES (23164, 599, 'system', '2023-07-26 08:40:17.685955+07', 'system', '2023-07-26 08:40:17.685955+07', 'Xã Huy Khiêm', '23164', 'Xã');
INSERT INTO category."Wards" VALUES (23167, 599, 'system', '2023-07-26 08:40:17.685957+07', 'system', '2023-07-26 08:40:17.685957+07', 'Xã Măng Tố', '23167', 'Xã');
INSERT INTO category."Wards" VALUES (23170, 599, 'system', '2023-07-26 08:40:17.685959+07', 'system', '2023-07-26 08:40:17.685959+07', 'Xã Đức Phú', '23170', 'Xã');
INSERT INTO category."Wards" VALUES (23173, 599, 'system', '2023-07-26 08:40:17.685961+07', 'system', '2023-07-26 08:40:17.685961+07', 'Xã Đồng Kho', '23173', 'Xã');
INSERT INTO category."Wards" VALUES (23176, 599, 'system', '2023-07-26 08:40:17.685963+07', 'system', '2023-07-26 08:40:17.685964+07', 'Xã Gia An', '23176', 'Xã');
INSERT INTO category."Wards" VALUES (23179, 599, 'system', '2023-07-26 08:40:17.685965+07', 'system', '2023-07-26 08:40:17.685966+07', 'Xã Đức Bình', '23179', 'Xã');
INSERT INTO category."Wards" VALUES (23182, 599, 'system', '2023-07-26 08:40:17.685968+07', 'system', '2023-07-26 08:40:17.685968+07', 'Xã Gia Huynh', '23182', 'Xã');
INSERT INTO category."Wards" VALUES (23185, 599, 'system', '2023-07-26 08:40:17.68597+07', 'system', '2023-07-26 08:40:17.68597+07', 'Xã Đức Thuận', '23185', 'Xã');
INSERT INTO category."Wards" VALUES (23188, 599, 'system', '2023-07-26 08:40:17.685972+07', 'system', '2023-07-26 08:40:17.685972+07', 'Xã Suối Kiết', '23188', 'Xã');
INSERT INTO category."Wards" VALUES (23191, 600, 'system', '2023-07-26 08:40:17.685984+07', 'system', '2023-07-26 08:40:17.685984+07', 'Thị trấn Võ Xu', '23191', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23194, 600, 'system', '2023-07-26 08:40:17.685987+07', 'system', '2023-07-26 08:40:17.685987+07', 'Thị trấn Đức Tài', '23194', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23197, 600, 'system', '2023-07-26 08:40:17.685989+07', 'system', '2023-07-26 08:40:17.685989+07', 'Xã Đa Kai', '23197', 'Xã');
INSERT INTO category."Wards" VALUES (23200, 600, 'system', '2023-07-26 08:40:17.685991+07', 'system', '2023-07-26 08:40:17.685991+07', 'Xã Sùng Nhơn', '23200', 'Xã');
INSERT INTO category."Wards" VALUES (23203, 600, 'system', '2023-07-26 08:40:17.685993+07', 'system', '2023-07-26 08:40:17.685993+07', 'Xã Mê Pu', '23203', 'Xã');
INSERT INTO category."Wards" VALUES (23206, 600, 'system', '2023-07-26 08:40:17.685995+07', 'system', '2023-07-26 08:40:17.685995+07', 'Xã Nam Chính', '23206', 'Xã');
INSERT INTO category."Wards" VALUES (23212, 600, 'system', '2023-07-26 08:40:17.685998+07', 'system', '2023-07-26 08:40:17.685998+07', 'Xã Đức Hạnh', '23212', 'Xã');
INSERT INTO category."Wards" VALUES (23215, 600, 'system', '2023-07-26 08:40:17.686+07', 'system', '2023-07-26 08:40:17.686+07', 'Xã Đức Tín', '23215', 'Xã');
INSERT INTO category."Wards" VALUES (23218, 600, 'system', '2023-07-26 08:40:17.686002+07', 'system', '2023-07-26 08:40:17.686002+07', 'Xã Vũ Hoà', '23218', 'Xã');
INSERT INTO category."Wards" VALUES (23221, 600, 'system', '2023-07-26 08:40:17.686004+07', 'system', '2023-07-26 08:40:17.686004+07', 'Xã Tân Hà', '23221', 'Xã');
INSERT INTO category."Wards" VALUES (23224, 600, 'system', '2023-07-26 08:40:17.686006+07', 'system', '2023-07-26 08:40:17.686006+07', 'Xã Đông Hà', '23224', 'Xã');
INSERT INTO category."Wards" VALUES (23227, 600, 'system', '2023-07-26 08:40:17.686008+07', 'system', '2023-07-26 08:40:17.686009+07', 'Xã Trà Tân', '23227', 'Xã');
INSERT INTO category."Wards" VALUES (23230, 601, 'system', '2023-07-26 08:40:17.686011+07', 'system', '2023-07-26 08:40:17.686011+07', 'Thị trấn Tân Minh', '23230', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23231, 594, 'system', '2023-07-26 08:40:17.685794+07', 'system', '2023-07-26 08:40:17.685794+07', 'Phường Phước Hội', '23231', 'Phường');
INSERT INTO category."Wards" VALUES (23232, 594, 'system', '2023-07-26 08:40:17.685796+07', 'system', '2023-07-26 08:40:17.685796+07', 'Phường Phước Lộc', '23232', 'Phường');
INSERT INTO category."Wards" VALUES (23234, 594, 'system', '2023-07-26 08:40:17.685799+07', 'system', '2023-07-26 08:40:17.685799+07', 'Phường Tân Thiện', '23234', 'Phường');
INSERT INTO category."Wards" VALUES (23235, 594, 'system', '2023-07-26 08:40:17.685801+07', 'system', '2023-07-26 08:40:17.685801+07', 'Phường Tân An', '23235', 'Phường');
INSERT INTO category."Wards" VALUES (23236, 601, 'system', '2023-07-26 08:40:17.686014+07', 'system', '2023-07-26 08:40:17.686014+07', 'Thị trấn Tân Nghĩa', '23236', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23237, 594, 'system', '2023-07-26 08:40:17.685803+07', 'system', '2023-07-26 08:40:17.685803+07', 'Phường Bình Tân', '23237', 'Phường');
INSERT INTO category."Wards" VALUES (23239, 601, 'system', '2023-07-26 08:40:17.686016+07', 'system', '2023-07-26 08:40:17.686016+07', 'Xã Sông Phan', '23239', 'Xã');
INSERT INTO category."Wards" VALUES (23242, 601, 'system', '2023-07-26 08:40:17.686018+07', 'system', '2023-07-26 08:40:17.686018+07', 'Xã Tân Phúc', '23242', 'Xã');
INSERT INTO category."Wards" VALUES (23245, 594, 'system', '2023-07-26 08:40:17.685805+07', 'system', '2023-07-26 08:40:17.685805+07', 'Xã Tân Hải', '23245', 'Xã');
INSERT INTO category."Wards" VALUES (23246, 594, 'system', '2023-07-26 08:40:17.685808+07', 'system', '2023-07-26 08:40:17.685808+07', 'Xã Tân Tiến', '23246', 'Xã');
INSERT INTO category."Wards" VALUES (23248, 594, 'system', '2023-07-26 08:40:17.68581+07', 'system', '2023-07-26 08:40:17.68581+07', 'Xã Tân Bình', '23248', 'Xã');
INSERT INTO category."Wards" VALUES (23251, 601, 'system', '2023-07-26 08:40:17.68602+07', 'system', '2023-07-26 08:40:17.68602+07', 'Xã Tân Đức', '23251', 'Xã');
INSERT INTO category."Wards" VALUES (23254, 601, 'system', '2023-07-26 08:40:17.686022+07', 'system', '2023-07-26 08:40:17.686022+07', 'Xã Tân Thắng', '23254', 'Xã');
INSERT INTO category."Wards" VALUES (23255, 601, 'system', '2023-07-26 08:40:17.686025+07', 'system', '2023-07-26 08:40:17.686025+07', 'Xã Thắng Hải', '23255', 'Xã');
INSERT INTO category."Wards" VALUES (23257, 601, 'system', '2023-07-26 08:40:17.686027+07', 'system', '2023-07-26 08:40:17.686027+07', 'Xã Tân Hà', '23257', 'Xã');
INSERT INTO category."Wards" VALUES (23260, 601, 'system', '2023-07-26 08:40:17.686029+07', 'system', '2023-07-26 08:40:17.686029+07', 'Xã Tân Xuân', '23260', 'Xã');
INSERT INTO category."Wards" VALUES (23266, 601, 'system', '2023-07-26 08:40:17.686031+07', 'system', '2023-07-26 08:40:17.686031+07', 'Xã Sơn Mỹ', '23266', 'Xã');
INSERT INTO category."Wards" VALUES (23268, 594, 'system', '2023-07-26 08:40:17.685812+07', 'system', '2023-07-26 08:40:17.685812+07', 'Xã Tân Phước', '23268', 'Xã');
INSERT INTO category."Wards" VALUES (23272, 602, 'system', '2023-07-26 08:40:17.686033+07', 'system', '2023-07-26 08:40:17.686033+07', 'Xã Ngũ Phụng', '23272', 'Xã');
INSERT INTO category."Wards" VALUES (23275, 602, 'system', '2023-07-26 08:40:17.686035+07', 'system', '2023-07-26 08:40:17.686036+07', 'Xã Long Hải', '23275', 'Xã');
INSERT INTO category."Wards" VALUES (23278, 602, 'system', '2023-07-26 08:40:17.686038+07', 'system', '2023-07-26 08:40:17.686038+07', 'Xã Tam Thanh', '23278', 'Xã');
INSERT INTO category."Wards" VALUES (23281, 608, 'system', '2023-07-26 08:40:17.68604+07', 'system', '2023-07-26 08:40:17.68604+07', 'Phường Quang Trung', '23281', 'Phường');
INSERT INTO category."Wards" VALUES (23284, 608, 'system', '2023-07-26 08:40:17.686042+07', 'system', '2023-07-26 08:40:17.686042+07', 'Phường Duy Tân', '23284', 'Phường');
INSERT INTO category."Wards" VALUES (23287, 608, 'system', '2023-07-26 08:40:17.686044+07', 'system', '2023-07-26 08:40:17.686044+07', 'Phường Quyết Thắng', '23287', 'Phường');
INSERT INTO category."Wards" VALUES (23290, 608, 'system', '2023-07-26 08:40:17.686046+07', 'system', '2023-07-26 08:40:17.686047+07', 'Phường Trường Chinh', '23290', 'Phường');
INSERT INTO category."Wards" VALUES (23293, 608, 'system', '2023-07-26 08:40:17.686049+07', 'system', '2023-07-26 08:40:17.686049+07', 'Phường Thắng Lợi', '23293', 'Phường');
INSERT INTO category."Wards" VALUES (23296, 608, 'system', '2023-07-26 08:40:17.686051+07', 'system', '2023-07-26 08:40:17.686051+07', 'Phường Ngô Mây', '23296', 'Phường');
INSERT INTO category."Wards" VALUES (23299, 608, 'system', '2023-07-26 08:40:17.686053+07', 'system', '2023-07-26 08:40:17.686054+07', 'Phường Thống Nhất', '23299', 'Phường');
INSERT INTO category."Wards" VALUES (23302, 608, 'system', '2023-07-26 08:40:17.686056+07', 'system', '2023-07-26 08:40:17.686056+07', 'Phường Lê Lợi', '23302', 'Phường');
INSERT INTO category."Wards" VALUES (23305, 608, 'system', '2023-07-26 08:40:17.686058+07', 'system', '2023-07-26 08:40:17.686058+07', 'Phường Nguyễn Trãi', '23305', 'Phường');
INSERT INTO category."Wards" VALUES (23308, 608, 'system', '2023-07-26 08:40:17.68606+07', 'system', '2023-07-26 08:40:17.68606+07', 'Phường Trần Hưng Đạo', '23308', 'Phường');
INSERT INTO category."Wards" VALUES (23311, 608, 'system', '2023-07-26 08:40:17.686063+07', 'system', '2023-07-26 08:40:17.686063+07', 'Xã Đắk Cấm', '23311', 'Xã');
INSERT INTO category."Wards" VALUES (23314, 608, 'system', '2023-07-26 08:40:17.686065+07', 'system', '2023-07-26 08:40:17.686065+07', 'Xã Kroong', '23314', 'Xã');
INSERT INTO category."Wards" VALUES (23317, 608, 'system', '2023-07-26 08:40:17.686067+07', 'system', '2023-07-26 08:40:17.686067+07', 'Xã Ngọk Bay', '23317', 'Xã');
INSERT INTO category."Wards" VALUES (23320, 608, 'system', '2023-07-26 08:40:17.686069+07', 'system', '2023-07-26 08:40:17.686069+07', 'Xã Vinh Quang', '23320', 'Xã');
INSERT INTO category."Wards" VALUES (23323, 608, 'system', '2023-07-26 08:40:17.686071+07', 'system', '2023-07-26 08:40:17.686071+07', 'Xã Đắk Blà', '23323', 'Xã');
INSERT INTO category."Wards" VALUES (23326, 608, 'system', '2023-07-26 08:40:17.686073+07', 'system', '2023-07-26 08:40:17.686073+07', 'Xã Ia Chim', '23326', 'Xã');
INSERT INTO category."Wards" VALUES (23327, 608, 'system', '2023-07-26 08:40:17.686075+07', 'system', '2023-07-26 08:40:17.686075+07', 'Xã Đăk Năng', '23327', 'Xã');
INSERT INTO category."Wards" VALUES (23329, 608, 'system', '2023-07-26 08:40:17.686077+07', 'system', '2023-07-26 08:40:17.686077+07', 'Xã Đoàn Kết', '23329', 'Xã');
INSERT INTO category."Wards" VALUES (23332, 608, 'system', '2023-07-26 08:40:17.68608+07', 'system', '2023-07-26 08:40:17.68608+07', 'Xã Chư Hreng', '23332', 'Xã');
INSERT INTO category."Wards" VALUES (23335, 608, 'system', '2023-07-26 08:40:17.686082+07', 'system', '2023-07-26 08:40:17.686082+07', 'Xã Đắk Rơ Wa', '23335', 'Xã');
INSERT INTO category."Wards" VALUES (23338, 608, 'system', '2023-07-26 08:40:17.686084+07', 'system', '2023-07-26 08:40:17.686084+07', 'Xã Hòa Bình', '23338', 'Xã');
INSERT INTO category."Wards" VALUES (23341, 610, 'system', '2023-07-26 08:40:17.686086+07', 'system', '2023-07-26 08:40:17.686086+07', 'Thị trấn Đắk Glei', '23341', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23344, 610, 'system', '2023-07-26 08:40:17.686088+07', 'system', '2023-07-26 08:40:17.686088+07', 'Xã Đắk Blô', '23344', 'Xã');
INSERT INTO category."Wards" VALUES (23347, 610, 'system', '2023-07-26 08:40:17.686091+07', 'system', '2023-07-26 08:40:17.686091+07', 'Xã Đắk Man', '23347', 'Xã');
INSERT INTO category."Wards" VALUES (23350, 610, 'system', '2023-07-26 08:40:17.686093+07', 'system', '2023-07-26 08:40:17.686093+07', 'Xã Đắk Nhoong', '23350', 'Xã');
INSERT INTO category."Wards" VALUES (23353, 610, 'system', '2023-07-26 08:40:17.686096+07', 'system', '2023-07-26 08:40:17.686096+07', 'Xã Đắk Pék', '23353', 'Xã');
INSERT INTO category."Wards" VALUES (23356, 610, 'system', '2023-07-26 08:40:17.686098+07', 'system', '2023-07-26 08:40:17.686098+07', 'Xã Đắk Choong', '23356', 'Xã');
INSERT INTO category."Wards" VALUES (23359, 610, 'system', '2023-07-26 08:40:17.6861+07', 'system', '2023-07-26 08:40:17.6861+07', 'Xã Xốp', '23359', 'Xã');
INSERT INTO category."Wards" VALUES (23362, 610, 'system', '2023-07-26 08:40:17.686102+07', 'system', '2023-07-26 08:40:17.686102+07', 'Xã Mường Hoong', '23362', 'Xã');
INSERT INTO category."Wards" VALUES (23365, 610, 'system', '2023-07-26 08:40:17.686104+07', 'system', '2023-07-26 08:40:17.686104+07', 'Xã Ngọc Linh', '23365', 'Xã');
INSERT INTO category."Wards" VALUES (23368, 610, 'system', '2023-07-26 08:40:17.686106+07', 'system', '2023-07-26 08:40:17.686106+07', 'Xã Đắk Long', '23368', 'Xã');
INSERT INTO category."Wards" VALUES (23371, 610, 'system', '2023-07-26 08:40:17.686108+07', 'system', '2023-07-26 08:40:17.686108+07', 'Xã Đắk KRoong', '23371', 'Xã');
INSERT INTO category."Wards" VALUES (23374, 610, 'system', '2023-07-26 08:40:17.68611+07', 'system', '2023-07-26 08:40:17.68611+07', 'Xã Đắk Môn', '23374', 'Xã');
INSERT INTO category."Wards" VALUES (23377, 611, 'system', '2023-07-26 08:40:17.686113+07', 'system', '2023-07-26 08:40:17.686113+07', 'Thị trấn Plei Kần', '23377', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23380, 611, 'system', '2023-07-26 08:40:17.686115+07', 'system', '2023-07-26 08:40:17.686115+07', 'Xã Đắk Ang', '23380', 'Xã');
INSERT INTO category."Wards" VALUES (23383, 611, 'system', '2023-07-26 08:40:17.686117+07', 'system', '2023-07-26 08:40:17.686117+07', 'Xã Đắk Dục', '23383', 'Xã');
INSERT INTO category."Wards" VALUES (23386, 611, 'system', '2023-07-26 08:40:17.686119+07', 'system', '2023-07-26 08:40:17.686119+07', 'Xã Đắk Nông', '23386', 'Xã');
INSERT INTO category."Wards" VALUES (23389, 611, 'system', '2023-07-26 08:40:17.686121+07', 'system', '2023-07-26 08:40:17.686122+07', 'Xã Đắk Xú', '23389', 'Xã');
INSERT INTO category."Wards" VALUES (23392, 611, 'system', '2023-07-26 08:40:17.686124+07', 'system', '2023-07-26 08:40:17.686124+07', 'Xã Đắk Kan', '23392', 'Xã');
INSERT INTO category."Wards" VALUES (23395, 611, 'system', '2023-07-26 08:40:17.686126+07', 'system', '2023-07-26 08:40:17.686126+07', 'Xã Bờ Y', '23395', 'Xã');
INSERT INTO category."Wards" VALUES (23398, 611, 'system', '2023-07-26 08:40:17.686128+07', 'system', '2023-07-26 08:40:17.686128+07', 'Xã Sa Loong', '23398', 'Xã');
INSERT INTO category."Wards" VALUES (23401, 612, 'system', '2023-07-26 08:40:17.68613+07', 'system', '2023-07-26 08:40:17.68613+07', 'Thị trấn Đắk Tô', '23401', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23404, 617, 'system', '2023-07-26 08:40:17.686232+07', 'system', '2023-07-26 08:40:17.686232+07', 'Xã Ngọc Lây', '23404', 'Xã');
INSERT INTO category."Wards" VALUES (23407, 617, 'system', '2023-07-26 08:40:17.686235+07', 'system', '2023-07-26 08:40:17.686235+07', 'Xã Đắk Na', '23407', 'Xã');
INSERT INTO category."Wards" VALUES (23410, 617, 'system', '2023-07-26 08:40:17.686237+07', 'system', '2023-07-26 08:40:17.686237+07', 'Xã Măng Ri', '23410', 'Xã');
INSERT INTO category."Wards" VALUES (23413, 617, 'system', '2023-07-26 08:40:17.686239+07', 'system', '2023-07-26 08:40:17.686239+07', 'Xã Ngọc Yêu', '23413', 'Xã');
INSERT INTO category."Wards" VALUES (23416, 617, 'system', '2023-07-26 08:40:17.686241+07', 'system', '2023-07-26 08:40:17.686241+07', 'Xã Đắk Sao', '23416', 'Xã');
INSERT INTO category."Wards" VALUES (23417, 617, 'system', '2023-07-26 08:40:17.686243+07', 'system', '2023-07-26 08:40:17.686243+07', 'Xã Đắk Rơ Ông', '23417', 'Xã');
INSERT INTO category."Wards" VALUES (23419, 617, 'system', '2023-07-26 08:40:17.686245+07', 'system', '2023-07-26 08:40:17.686245+07', 'Xã Đắk Tờ Kan', '23419', 'Xã');
INSERT INTO category."Wards" VALUES (23422, 617, 'system', '2023-07-26 08:40:17.686248+07', 'system', '2023-07-26 08:40:17.686248+07', 'Xã Tu Mơ Rông', '23422', 'Xã');
INSERT INTO category."Wards" VALUES (23425, 617, 'system', '2023-07-26 08:40:17.686251+07', 'system', '2023-07-26 08:40:17.686251+07', 'Xã Đắk Hà', '23425', 'Xã');
INSERT INTO category."Wards" VALUES (23427, 612, 'system', '2023-07-26 08:40:17.686133+07', 'system', '2023-07-26 08:40:17.686133+07', 'Xã Đắk Rơ Nga', '23427', 'Xã');
INSERT INTO category."Wards" VALUES (23428, 612, 'system', '2023-07-26 08:40:17.686135+07', 'system', '2023-07-26 08:40:17.686135+07', 'Xã Ngọk Tụ', '23428', 'Xã');
INSERT INTO category."Wards" VALUES (23430, 612, 'system', '2023-07-26 08:40:17.686137+07', 'system', '2023-07-26 08:40:17.686137+07', 'Xã Đắk Trăm', '23430', 'Xã');
INSERT INTO category."Wards" VALUES (23431, 612, 'system', '2023-07-26 08:40:17.686139+07', 'system', '2023-07-26 08:40:17.686139+07', 'Xã Văn Lem', '23431', 'Xã');
INSERT INTO category."Wards" VALUES (23434, 612, 'system', '2023-07-26 08:40:17.686141+07', 'system', '2023-07-26 08:40:17.686141+07', 'Xã Kon Đào', '23434', 'Xã');
INSERT INTO category."Wards" VALUES (23437, 612, 'system', '2023-07-26 08:40:17.686144+07', 'system', '2023-07-26 08:40:17.686144+07', 'Xã Tân Cảnh', '23437', 'Xã');
INSERT INTO category."Wards" VALUES (23440, 612, 'system', '2023-07-26 08:40:17.686146+07', 'system', '2023-07-26 08:40:17.686146+07', 'Xã Diên Bình', '23440', 'Xã');
INSERT INTO category."Wards" VALUES (23443, 612, 'system', '2023-07-26 08:40:17.686148+07', 'system', '2023-07-26 08:40:17.686148+07', 'Xã Pô Kô', '23443', 'Xã');
INSERT INTO category."Wards" VALUES (23446, 617, 'system', '2023-07-26 08:40:17.686253+07', 'system', '2023-07-26 08:40:17.686253+07', 'Xã Tê Xăng', '23446', 'Xã');
INSERT INTO category."Wards" VALUES (23449, 617, 'system', '2023-07-26 08:40:17.686255+07', 'system', '2023-07-26 08:40:17.686255+07', 'Xã Văn Xuôi', '23449', 'Xã');
INSERT INTO category."Wards" VALUES (23452, 613, 'system', '2023-07-26 08:40:17.68615+07', 'system', '2023-07-26 08:40:17.68615+07', 'Xã Đắk Nên', '23452', 'Xã');
INSERT INTO category."Wards" VALUES (23455, 613, 'system', '2023-07-26 08:40:17.686152+07', 'system', '2023-07-26 08:40:17.686152+07', 'Xã Đắk Ring', '23455', 'Xã');
INSERT INTO category."Wards" VALUES (23458, 613, 'system', '2023-07-26 08:40:17.686154+07', 'system', '2023-07-26 08:40:17.686154+07', 'Xã Măng Buk', '23458', 'Xã');
INSERT INTO category."Wards" VALUES (23461, 613, 'system', '2023-07-26 08:40:17.686156+07', 'system', '2023-07-26 08:40:17.686156+07', 'Xã Đắk Tăng', '23461', 'Xã');
INSERT INTO category."Wards" VALUES (23464, 613, 'system', '2023-07-26 08:40:17.686159+07', 'system', '2023-07-26 08:40:17.686159+07', 'Xã Ngok Tem', '23464', 'Xã');
INSERT INTO category."Wards" VALUES (23467, 613, 'system', '2023-07-26 08:40:17.686161+07', 'system', '2023-07-26 08:40:17.686161+07', 'Xã Pờ Ê', '23467', 'Xã');
INSERT INTO category."Wards" VALUES (23470, 613, 'system', '2023-07-26 08:40:17.686163+07', 'system', '2023-07-26 08:40:17.686163+07', 'Xã Măng Cành', '23470', 'Xã');
INSERT INTO category."Wards" VALUES (23473, 613, 'system', '2023-07-26 08:40:17.686165+07', 'system', '2023-07-26 08:40:17.686165+07', 'Thị trấn Măng Đen', '23473', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23476, 613, 'system', '2023-07-26 08:40:17.686167+07', 'system', '2023-07-26 08:40:17.686167+07', 'Xã Hiếu', '23476', 'Xã');
INSERT INTO category."Wards" VALUES (23479, 614, 'system', '2023-07-26 08:40:17.68617+07', 'system', '2023-07-26 08:40:17.68617+07', 'Thị trấn Đắk Rve', '23479', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23482, 614, 'system', '2023-07-26 08:40:17.686172+07', 'system', '2023-07-26 08:40:17.686172+07', 'Xã Đắk Kôi', '23482', 'Xã');
INSERT INTO category."Wards" VALUES (23485, 614, 'system', '2023-07-26 08:40:17.686175+07', 'system', '2023-07-26 08:40:17.686175+07', 'Xã Đắk Tơ Lung', '23485', 'Xã');
INSERT INTO category."Wards" VALUES (23488, 614, 'system', '2023-07-26 08:40:17.686177+07', 'system', '2023-07-26 08:40:17.686177+07', 'Xã Đắk Ruồng', '23488', 'Xã');
INSERT INTO category."Wards" VALUES (23491, 614, 'system', '2023-07-26 08:40:17.686179+07', 'system', '2023-07-26 08:40:17.686179+07', 'Xã Đắk Pne', '23491', 'Xã');
INSERT INTO category."Wards" VALUES (23494, 614, 'system', '2023-07-26 08:40:17.686181+07', 'system', '2023-07-26 08:40:17.686181+07', 'Xã Đắk Tờ Re', '23494', 'Xã');
INSERT INTO category."Wards" VALUES (23497, 614, 'system', '2023-07-26 08:40:17.686183+07', 'system', '2023-07-26 08:40:17.686183+07', 'Xã Tân Lập', '23497', 'Xã');
INSERT INTO category."Wards" VALUES (23500, 615, 'system', '2023-07-26 08:40:17.686185+07', 'system', '2023-07-26 08:40:17.686185+07', 'Thị trấn Đắk Hà', '23500', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23503, 615, 'system', '2023-07-26 08:40:17.686188+07', 'system', '2023-07-26 08:40:17.686188+07', 'Xã Đắk PXi', '23503', 'Xã');
INSERT INTO category."Wards" VALUES (23504, 615, 'system', '2023-07-26 08:40:17.68619+07', 'system', '2023-07-26 08:40:17.68619+07', 'Xã Đăk Long', '23504', 'Xã');
INSERT INTO category."Wards" VALUES (23506, 615, 'system', '2023-07-26 08:40:17.686192+07', 'system', '2023-07-26 08:40:17.686192+07', 'Xã Đắk HRing', '23506', 'Xã');
INSERT INTO category."Wards" VALUES (23509, 615, 'system', '2023-07-26 08:40:17.686194+07', 'system', '2023-07-26 08:40:17.686194+07', 'Xã Đắk Ui', '23509', 'Xã');
INSERT INTO category."Wards" VALUES (23510, 615, 'system', '2023-07-26 08:40:17.686196+07', 'system', '2023-07-26 08:40:17.686196+07', 'Xã Đăk Ngọk', '23510', 'Xã');
INSERT INTO category."Wards" VALUES (23512, 615, 'system', '2023-07-26 08:40:17.686198+07', 'system', '2023-07-26 08:40:17.686198+07', 'Xã Đắk Mar', '23512', 'Xã');
INSERT INTO category."Wards" VALUES (23515, 615, 'system', '2023-07-26 08:40:17.6862+07', 'system', '2023-07-26 08:40:17.6862+07', 'Xã Ngok Wang', '23515', 'Xã');
INSERT INTO category."Wards" VALUES (23518, 615, 'system', '2023-07-26 08:40:17.686203+07', 'system', '2023-07-26 08:40:17.686203+07', 'Xã Ngok Réo', '23518', 'Xã');
INSERT INTO category."Wards" VALUES (23521, 615, 'system', '2023-07-26 08:40:17.686205+07', 'system', '2023-07-26 08:40:17.686205+07', 'Xã Hà Mòn', '23521', 'Xã');
INSERT INTO category."Wards" VALUES (23524, 615, 'system', '2023-07-26 08:40:17.686207+07', 'system', '2023-07-26 08:40:17.686207+07', 'Xã Đắk La', '23524', 'Xã');
INSERT INTO category."Wards" VALUES (23527, 616, 'system', '2023-07-26 08:40:17.686209+07', 'system', '2023-07-26 08:40:17.686209+07', 'Thị trấn Sa Thầy', '23527', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23530, 616, 'system', '2023-07-26 08:40:17.686211+07', 'system', '2023-07-26 08:40:17.686211+07', 'Xã Rơ Kơi', '23530', 'Xã');
INSERT INTO category."Wards" VALUES (23533, 616, 'system', '2023-07-26 08:40:17.686213+07', 'system', '2023-07-26 08:40:17.686213+07', 'Xã Sa Nhơn', '23533', 'Xã');
INSERT INTO category."Wards" VALUES (23534, 616, 'system', '2023-07-26 08:40:17.686216+07', 'system', '2023-07-26 08:40:17.686216+07', 'Xã Hơ Moong', '23534', 'Xã');
INSERT INTO category."Wards" VALUES (23535, 618, 'system', '2023-07-26 08:40:17.686257+07', 'system', '2023-07-26 08:40:17.686257+07', 'Xã Ia Đal', '23535', 'Xã');
INSERT INTO category."Wards" VALUES (23536, 616, 'system', '2023-07-26 08:40:17.686218+07', 'system', '2023-07-26 08:40:17.686218+07', 'Xã Mô Rai', '23536', 'Xã');
INSERT INTO category."Wards" VALUES (23537, 618, 'system', '2023-07-26 08:40:17.686259+07', 'system', '2023-07-26 08:40:17.686259+07', 'Xã Ia Dom', '23537', 'Xã');
INSERT INTO category."Wards" VALUES (23538, 618, 'system', '2023-07-26 08:40:17.686261+07', 'system', '2023-07-26 08:40:17.686261+07', 'Xã Ia Tơi', '23538', 'Xã');
INSERT INTO category."Wards" VALUES (23539, 616, 'system', '2023-07-26 08:40:17.68622+07', 'system', '2023-07-26 08:40:17.68622+07', 'Xã Sa Sơn', '23539', 'Xã');
INSERT INTO category."Wards" VALUES (23542, 616, 'system', '2023-07-26 08:40:17.686222+07', 'system', '2023-07-26 08:40:17.686222+07', 'Xã Sa Nghĩa', '23542', 'Xã');
INSERT INTO category."Wards" VALUES (23545, 616, 'system', '2023-07-26 08:40:17.686224+07', 'system', '2023-07-26 08:40:17.686224+07', 'Xã Sa Bình', '23545', 'Xã');
INSERT INTO category."Wards" VALUES (23548, 616, 'system', '2023-07-26 08:40:17.686226+07', 'system', '2023-07-26 08:40:17.686226+07', 'Xã Ya Xiêr', '23548', 'Xã');
INSERT INTO category."Wards" VALUES (23551, 616, 'system', '2023-07-26 08:40:17.686228+07', 'system', '2023-07-26 08:40:17.686228+07', 'Xã Ya Tăng', '23551', 'Xã');
INSERT INTO category."Wards" VALUES (23554, 616, 'system', '2023-07-26 08:40:17.68623+07', 'system', '2023-07-26 08:40:17.68623+07', 'Xã Ya ly', '23554', 'Xã');
INSERT INTO category."Wards" VALUES (23557, 622, 'system', '2023-07-26 08:40:17.686263+07', 'system', '2023-07-26 08:40:17.686263+07', 'Phường Yên Đỗ', '23557', 'Phường');
INSERT INTO category."Wards" VALUES (23560, 622, 'system', '2023-07-26 08:40:17.686265+07', 'system', '2023-07-26 08:40:17.686265+07', 'Phường Diên Hồng', '23560', 'Phường');
INSERT INTO category."Wards" VALUES (23563, 622, 'system', '2023-07-26 08:40:17.686268+07', 'system', '2023-07-26 08:40:17.686268+07', 'Phường Ia Kring', '23563', 'Phường');
INSERT INTO category."Wards" VALUES (23566, 622, 'system', '2023-07-26 08:40:17.68627+07', 'system', '2023-07-26 08:40:17.68627+07', 'Phường Hội Thương', '23566', 'Phường');
INSERT INTO category."Wards" VALUES (23569, 622, 'system', '2023-07-26 08:40:17.686272+07', 'system', '2023-07-26 08:40:17.686272+07', 'Phường Hội Phú', '23569', 'Phường');
INSERT INTO category."Wards" VALUES (23570, 622, 'system', '2023-07-26 08:40:17.686275+07', 'system', '2023-07-26 08:40:17.686275+07', 'Phường Phù Đổng', '23570', 'Phường');
INSERT INTO category."Wards" VALUES (23572, 622, 'system', '2023-07-26 08:40:17.686277+07', 'system', '2023-07-26 08:40:17.686277+07', 'Phường Hoa Lư', '23572', 'Phường');
INSERT INTO category."Wards" VALUES (23575, 622, 'system', '2023-07-26 08:40:17.686279+07', 'system', '2023-07-26 08:40:17.686279+07', 'Phường Tây Sơn', '23575', 'Phường');
INSERT INTO category."Wards" VALUES (23578, 622, 'system', '2023-07-26 08:40:17.686282+07', 'system', '2023-07-26 08:40:17.686282+07', 'Phường Thống Nhất', '23578', 'Phường');
INSERT INTO category."Wards" VALUES (23579, 622, 'system', '2023-07-26 08:40:17.686284+07', 'system', '2023-07-26 08:40:17.686284+07', 'Phường Đống Đa', '23579', 'Phường');
INSERT INTO category."Wards" VALUES (23581, 622, 'system', '2023-07-26 08:40:17.686286+07', 'system', '2023-07-26 08:40:17.686286+07', 'Phường Trà Bá', '23581', 'Phường');
INSERT INTO category."Wards" VALUES (23582, 622, 'system', '2023-07-26 08:40:17.686288+07', 'system', '2023-07-26 08:40:17.686288+07', 'Phường Thắng Lợi', '23582', 'Phường');
INSERT INTO category."Wards" VALUES (23584, 622, 'system', '2023-07-26 08:40:17.68629+07', 'system', '2023-07-26 08:40:17.686291+07', 'Phường Yên Thế', '23584', 'Phường');
INSERT INTO category."Wards" VALUES (23586, 622, 'system', '2023-07-26 08:40:17.686293+07', 'system', '2023-07-26 08:40:17.686293+07', 'Phường Chi Lăng', '23586', 'Phường');
INSERT INTO category."Wards" VALUES (23590, 622, 'system', '2023-07-26 08:40:17.686295+07', 'system', '2023-07-26 08:40:17.686295+07', 'Xã Biển Hồ', '23590', 'Xã');
INSERT INTO category."Wards" VALUES (23593, 622, 'system', '2023-07-26 08:40:17.686297+07', 'system', '2023-07-26 08:40:17.686297+07', 'Xã Tân Sơn', '23593', 'Xã');
INSERT INTO category."Wards" VALUES (23596, 622, 'system', '2023-07-26 08:40:17.686299+07', 'system', '2023-07-26 08:40:17.686299+07', 'Xã Trà Đa', '23596', 'Xã');
INSERT INTO category."Wards" VALUES (23599, 622, 'system', '2023-07-26 08:40:17.686302+07', 'system', '2023-07-26 08:40:17.686302+07', 'Xã Chư Á', '23599', 'Xã');
INSERT INTO category."Wards" VALUES (23602, 622, 'system', '2023-07-26 08:40:17.686304+07', 'system', '2023-07-26 08:40:17.686304+07', 'Xã An Phú', '23602', 'Xã');
INSERT INTO category."Wards" VALUES (23605, 622, 'system', '2023-07-26 08:40:17.686306+07', 'system', '2023-07-26 08:40:17.686306+07', 'Xã Diên Phú', '23605', 'Xã');
INSERT INTO category."Wards" VALUES (23608, 622, 'system', '2023-07-26 08:40:17.686308+07', 'system', '2023-07-26 08:40:17.686308+07', 'Xã Ia Kênh', '23608', 'Xã');
INSERT INTO category."Wards" VALUES (23611, 622, 'system', '2023-07-26 08:40:17.68631+07', 'system', '2023-07-26 08:40:17.68631+07', 'Xã Gào', '23611', 'Xã');
INSERT INTO category."Wards" VALUES (23614, 623, 'system', '2023-07-26 08:40:17.686312+07', 'system', '2023-07-26 08:40:17.686312+07', 'Phường An Bình', '23614', 'Phường');
INSERT INTO category."Wards" VALUES (23617, 623, 'system', '2023-07-26 08:40:17.686315+07', 'system', '2023-07-26 08:40:17.686315+07', 'Phường Tây Sơn', '23617', 'Phường');
INSERT INTO category."Wards" VALUES (23620, 623, 'system', '2023-07-26 08:40:17.686317+07', 'system', '2023-07-26 08:40:17.686317+07', 'Phường An Phú', '23620', 'Phường');
INSERT INTO category."Wards" VALUES (23623, 623, 'system', '2023-07-26 08:40:17.686319+07', 'system', '2023-07-26 08:40:17.686319+07', 'Phường An Tân', '23623', 'Phường');
INSERT INTO category."Wards" VALUES (23626, 623, 'system', '2023-07-26 08:40:17.686321+07', 'system', '2023-07-26 08:40:17.686321+07', 'Xã Tú An', '23626', 'Xã');
INSERT INTO category."Wards" VALUES (23627, 623, 'system', '2023-07-26 08:40:17.686324+07', 'system', '2023-07-26 08:40:17.686324+07', 'Xã Xuân An', '23627', 'Xã');
INSERT INTO category."Wards" VALUES (23629, 623, 'system', '2023-07-26 08:40:17.686326+07', 'system', '2023-07-26 08:40:17.686326+07', 'Xã Cửu An', '23629', 'Xã');
INSERT INTO category."Wards" VALUES (23630, 623, 'system', '2023-07-26 08:40:17.686328+07', 'system', '2023-07-26 08:40:17.686328+07', 'Phường An Phước', '23630', 'Phường');
INSERT INTO category."Wards" VALUES (23632, 623, 'system', '2023-07-26 08:40:17.686331+07', 'system', '2023-07-26 08:40:17.686331+07', 'Xã Song An', '23632', 'Xã');
INSERT INTO category."Wards" VALUES (23633, 623, 'system', '2023-07-26 08:40:17.686333+07', 'system', '2023-07-26 08:40:17.686333+07', 'Phường Ngô Mây', '23633', 'Phường');
INSERT INTO category."Wards" VALUES (23635, 623, 'system', '2023-07-26 08:40:17.686335+07', 'system', '2023-07-26 08:40:17.686335+07', 'Xã Thành An', '23635', 'Xã');
INSERT INTO category."Wards" VALUES (23638, 625, 'system', '2023-07-26 08:40:17.686388+07', 'system', '2023-07-26 08:40:17.686388+07', 'Thị trấn KBang', '23638', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23641, 625, 'system', '2023-07-26 08:40:17.68639+07', 'system', '2023-07-26 08:40:17.68639+07', 'Xã Kon Pne', '23641', 'Xã');
INSERT INTO category."Wards" VALUES (23644, 625, 'system', '2023-07-26 08:40:17.686393+07', 'system', '2023-07-26 08:40:17.686393+07', 'Xã Đăk Roong', '23644', 'Xã');
INSERT INTO category."Wards" VALUES (23647, 625, 'system', '2023-07-26 08:40:17.686395+07', 'system', '2023-07-26 08:40:17.686395+07', 'Xã Sơn Lang', '23647', 'Xã');
INSERT INTO category."Wards" VALUES (23650, 625, 'system', '2023-07-26 08:40:17.686397+07', 'system', '2023-07-26 08:40:17.686397+07', 'Xã KRong', '23650', 'Xã');
INSERT INTO category."Wards" VALUES (23653, 625, 'system', '2023-07-26 08:40:17.686399+07', 'system', '2023-07-26 08:40:17.686399+07', 'Xã Sơ Pai', '23653', 'Xã');
INSERT INTO category."Wards" VALUES (23656, 625, 'system', '2023-07-26 08:40:17.686401+07', 'system', '2023-07-26 08:40:17.686401+07', 'Xã Lơ Ku', '23656', 'Xã');
INSERT INTO category."Wards" VALUES (23659, 625, 'system', '2023-07-26 08:40:17.686403+07', 'system', '2023-07-26 08:40:17.686403+07', 'Xã Đông', '23659', 'Xã');
INSERT INTO category."Wards" VALUES (23660, 625, 'system', '2023-07-26 08:40:17.686405+07', 'system', '2023-07-26 08:40:17.686405+07', 'Xã Đak SMar', '23660', 'Xã');
INSERT INTO category."Wards" VALUES (23662, 625, 'system', '2023-07-26 08:40:17.686407+07', 'system', '2023-07-26 08:40:17.686408+07', 'Xã Nghĩa An', '23662', 'Xã');
INSERT INTO category."Wards" VALUES (23665, 625, 'system', '2023-07-26 08:40:17.68641+07', 'system', '2023-07-26 08:40:17.68641+07', 'Xã Tơ Tung', '23665', 'Xã');
INSERT INTO category."Wards" VALUES (23668, 625, 'system', '2023-07-26 08:40:17.686412+07', 'system', '2023-07-26 08:40:17.686412+07', 'Xã Kông Lơng Khơng', '23668', 'Xã');
INSERT INTO category."Wards" VALUES (23671, 625, 'system', '2023-07-26 08:40:17.686414+07', 'system', '2023-07-26 08:40:17.686414+07', 'Xã Kông Pla', '23671', 'Xã');
INSERT INTO category."Wards" VALUES (23674, 625, 'system', '2023-07-26 08:40:17.686416+07', 'system', '2023-07-26 08:40:17.686416+07', 'Xã Đăk HLơ', '23674', 'Xã');
INSERT INTO category."Wards" VALUES (23677, 626, 'system', '2023-07-26 08:40:17.686418+07', 'system', '2023-07-26 08:40:17.686418+07', 'Thị trấn Đăk Đoa', '23677', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23680, 626, 'system', '2023-07-26 08:40:17.68642+07', 'system', '2023-07-26 08:40:17.68642+07', 'Xã Hà Đông', '23680', 'Xã');
INSERT INTO category."Wards" VALUES (23683, 626, 'system', '2023-07-26 08:40:17.686423+07', 'system', '2023-07-26 08:40:17.686423+07', 'Xã Đăk Sơmei', '23683', 'Xã');
INSERT INTO category."Wards" VALUES (23684, 626, 'system', '2023-07-26 08:40:17.686425+07', 'system', '2023-07-26 08:40:17.686425+07', 'Xã Đăk Krong', '23684', 'Xã');
INSERT INTO category."Wards" VALUES (23686, 626, 'system', '2023-07-26 08:40:17.686427+07', 'system', '2023-07-26 08:40:17.686427+07', 'Xã Hải Yang', '23686', 'Xã');
INSERT INTO category."Wards" VALUES (23689, 626, 'system', '2023-07-26 08:40:17.686429+07', 'system', '2023-07-26 08:40:17.686429+07', 'Xã Kon Gang', '23689', 'Xã');
INSERT INTO category."Wards" VALUES (23692, 626, 'system', '2023-07-26 08:40:17.686431+07', 'system', '2023-07-26 08:40:17.686431+07', 'Xã Hà Bầu', '23692', 'Xã');
INSERT INTO category."Wards" VALUES (23695, 626, 'system', '2023-07-26 08:40:17.686433+07', 'system', '2023-07-26 08:40:17.686433+07', 'Xã Nam Yang', '23695', 'Xã');
INSERT INTO category."Wards" VALUES (23698, 626, 'system', '2023-07-26 08:40:17.686435+07', 'system', '2023-07-26 08:40:17.686435+07', 'Xã K'' Dang', '23698', 'Xã');
INSERT INTO category."Wards" VALUES (23701, 626, 'system', '2023-07-26 08:40:17.686437+07', 'system', '2023-07-26 08:40:17.686437+07', 'Xã H'' Neng', '23701', 'Xã');
INSERT INTO category."Wards" VALUES (23704, 626, 'system', '2023-07-26 08:40:17.686439+07', 'system', '2023-07-26 08:40:17.686439+07', 'Xã Tân Bình', '23704', 'Xã');
INSERT INTO category."Wards" VALUES (23707, 626, 'system', '2023-07-26 08:40:17.686442+07', 'system', '2023-07-26 08:40:17.686442+07', 'Xã Glar', '23707', 'Xã');
INSERT INTO category."Wards" VALUES (23710, 626, 'system', '2023-07-26 08:40:17.686444+07', 'system', '2023-07-26 08:40:17.686444+07', 'Xã A Dơk', '23710', 'Xã');
INSERT INTO category."Wards" VALUES (23713, 626, 'system', '2023-07-26 08:40:17.686446+07', 'system', '2023-07-26 08:40:17.686446+07', 'Xã Trang', '23713', 'Xã');
INSERT INTO category."Wards" VALUES (23714, 626, 'system', '2023-07-26 08:40:17.686448+07', 'system', '2023-07-26 08:40:17.686448+07', 'Xã HNol', '23714', 'Xã');
INSERT INTO category."Wards" VALUES (23716, 626, 'system', '2023-07-26 08:40:17.68645+07', 'system', '2023-07-26 08:40:17.68645+07', 'Xã Ia Pết', '23716', 'Xã');
INSERT INTO category."Wards" VALUES (23719, 626, 'system', '2023-07-26 08:40:17.686453+07', 'system', '2023-07-26 08:40:17.686453+07', 'Xã Ia Băng', '23719', 'Xã');
INSERT INTO category."Wards" VALUES (23722, 627, 'system', '2023-07-26 08:40:17.686455+07', 'system', '2023-07-26 08:40:17.686455+07', 'Thị trấn Phú Hòa', '23722', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23725, 627, 'system', '2023-07-26 08:40:17.686457+07', 'system', '2023-07-26 08:40:17.686457+07', 'Xã Hà Tây', '23725', 'Xã');
INSERT INTO category."Wards" VALUES (23728, 627, 'system', '2023-07-26 08:40:17.686459+07', 'system', '2023-07-26 08:40:17.686459+07', 'Xã Ia Khươl', '23728', 'Xã');
INSERT INTO category."Wards" VALUES (23731, 627, 'system', '2023-07-26 08:40:17.686461+07', 'system', '2023-07-26 08:40:17.686461+07', 'Xã Ia Phí', '23731', 'Xã');
INSERT INTO category."Wards" VALUES (23734, 627, 'system', '2023-07-26 08:40:17.686464+07', 'system', '2023-07-26 08:40:17.686464+07', 'Thị trấn Ia Ly', '23734', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23737, 627, 'system', '2023-07-26 08:40:17.686466+07', 'system', '2023-07-26 08:40:17.686466+07', 'Xã Ia Mơ Nông', '23737', 'Xã');
INSERT INTO category."Wards" VALUES (23738, 627, 'system', '2023-07-26 08:40:17.686468+07', 'system', '2023-07-26 08:40:17.686468+07', 'Xã Ia Kreng', '23738', 'Xã');
INSERT INTO category."Wards" VALUES (23740, 627, 'system', '2023-07-26 08:40:17.68647+07', 'system', '2023-07-26 08:40:17.68647+07', 'Xã Đăk Tơ Ver', '23740', 'Xã');
INSERT INTO category."Wards" VALUES (23743, 627, 'system', '2023-07-26 08:40:17.686473+07', 'system', '2023-07-26 08:40:17.686473+07', 'Xã Hòa Phú', '23743', 'Xã');
INSERT INTO category."Wards" VALUES (23746, 627, 'system', '2023-07-26 08:40:17.686475+07', 'system', '2023-07-26 08:40:17.686475+07', 'Xã Chư Đăng Ya', '23746', 'Xã');
INSERT INTO category."Wards" VALUES (23749, 627, 'system', '2023-07-26 08:40:17.686477+07', 'system', '2023-07-26 08:40:17.686477+07', 'Xã Ia Ka', '23749', 'Xã');
INSERT INTO category."Wards" VALUES (23752, 627, 'system', '2023-07-26 08:40:17.686479+07', 'system', '2023-07-26 08:40:17.686479+07', 'Xã Ia Nhin', '23752', 'Xã');
INSERT INTO category."Wards" VALUES (23755, 627, 'system', '2023-07-26 08:40:17.686481+07', 'system', '2023-07-26 08:40:17.686481+07', 'Xã Nghĩa Hòa', '23755', 'Xã');
INSERT INTO category."Wards" VALUES (23761, 627, 'system', '2023-07-26 08:40:17.686483+07', 'system', '2023-07-26 08:40:17.686483+07', 'Xã Nghĩa Hưng', '23761', 'Xã');
INSERT INTO category."Wards" VALUES (23764, 628, 'system', '2023-07-26 08:40:17.686486+07', 'system', '2023-07-26 08:40:17.686486+07', 'Thị trấn Ia Kha', '23764', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23767, 628, 'system', '2023-07-26 08:40:17.686488+07', 'system', '2023-07-26 08:40:17.686488+07', 'Xã Ia Sao', '23767', 'Xã');
INSERT INTO category."Wards" VALUES (23768, 628, 'system', '2023-07-26 08:40:17.68649+07', 'system', '2023-07-26 08:40:17.68649+07', 'Xã Ia Yok', '23768', 'Xã');
INSERT INTO category."Wards" VALUES (23770, 628, 'system', '2023-07-26 08:40:17.686492+07', 'system', '2023-07-26 08:40:17.686492+07', 'Xã Ia Hrung', '23770', 'Xã');
INSERT INTO category."Wards" VALUES (23771, 628, 'system', '2023-07-26 08:40:17.686495+07', 'system', '2023-07-26 08:40:17.686495+07', 'Xã Ia Bă', '23771', 'Xã');
INSERT INTO category."Wards" VALUES (23773, 628, 'system', '2023-07-26 08:40:17.686497+07', 'system', '2023-07-26 08:40:17.686497+07', 'Xã Ia Khai', '23773', 'Xã');
INSERT INTO category."Wards" VALUES (23776, 628, 'system', '2023-07-26 08:40:17.686499+07', 'system', '2023-07-26 08:40:17.686499+07', 'Xã Ia KRai', '23776', 'Xã');
INSERT INTO category."Wards" VALUES (23778, 628, 'system', '2023-07-26 08:40:17.686501+07', 'system', '2023-07-26 08:40:17.686501+07', 'Xã Ia Grăng', '23778', 'Xã');
INSERT INTO category."Wards" VALUES (23779, 628, 'system', '2023-07-26 08:40:17.686503+07', 'system', '2023-07-26 08:40:17.686503+07', 'Xã Ia Tô', '23779', 'Xã');
INSERT INTO category."Wards" VALUES (23782, 628, 'system', '2023-07-26 08:40:17.686505+07', 'system', '2023-07-26 08:40:17.686505+07', 'Xã Ia O', '23782', 'Xã');
INSERT INTO category."Wards" VALUES (23785, 628, 'system', '2023-07-26 08:40:17.686507+07', 'system', '2023-07-26 08:40:17.686507+07', 'Xã Ia Dêr', '23785', 'Xã');
INSERT INTO category."Wards" VALUES (23788, 628, 'system', '2023-07-26 08:40:17.68651+07', 'system', '2023-07-26 08:40:17.68651+07', 'Xã Ia Chia', '23788', 'Xã');
INSERT INTO category."Wards" VALUES (23791, 628, 'system', '2023-07-26 08:40:17.686513+07', 'system', '2023-07-26 08:40:17.686513+07', 'Xã Ia Pếch', '23791', 'Xã');
INSERT INTO category."Wards" VALUES (23794, 629, 'system', '2023-07-26 08:40:17.686517+07', 'system', '2023-07-26 08:40:17.686517+07', 'Thị trấn Kon Dơng', '23794', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23797, 629, 'system', '2023-07-26 08:40:17.686521+07', 'system', '2023-07-26 08:40:17.686521+07', 'Xã Ayun', '23797', 'Xã');
INSERT INTO category."Wards" VALUES (23798, 629, 'system', '2023-07-26 08:40:17.686524+07', 'system', '2023-07-26 08:40:17.686524+07', 'Xã Đak Jơ Ta', '23798', 'Xã');
INSERT INTO category."Wards" VALUES (23799, 629, 'system', '2023-07-26 08:40:17.686529+07', 'system', '2023-07-26 08:40:17.686529+07', 'Xã Đak Ta Ley', '23799', 'Xã');
INSERT INTO category."Wards" VALUES (23800, 629, 'system', '2023-07-26 08:40:17.686534+07', 'system', '2023-07-26 08:40:17.686534+07', 'Xã Hra', '23800', 'Xã');
INSERT INTO category."Wards" VALUES (23803, 629, 'system', '2023-07-26 08:40:17.686536+07', 'system', '2023-07-26 08:40:17.686536+07', 'Xã Đăk Yă', '23803', 'Xã');
INSERT INTO category."Wards" VALUES (23806, 629, 'system', '2023-07-26 08:40:17.686547+07', 'system', '2023-07-26 08:40:17.686547+07', 'Xã Đăk Djrăng', '23806', 'Xã');
INSERT INTO category."Wards" VALUES (23809, 629, 'system', '2023-07-26 08:40:17.686549+07', 'system', '2023-07-26 08:40:17.68655+07', 'Xã Lơ Pang', '23809', 'Xã');
INSERT INTO category."Wards" VALUES (23812, 629, 'system', '2023-07-26 08:40:17.686552+07', 'system', '2023-07-26 08:40:17.686552+07', 'Xã Kon Thụp', '23812', 'Xã');
INSERT INTO category."Wards" VALUES (23815, 629, 'system', '2023-07-26 08:40:17.686554+07', 'system', '2023-07-26 08:40:17.686554+07', 'Xã Đê Ar', '23815', 'Xã');
INSERT INTO category."Wards" VALUES (23818, 629, 'system', '2023-07-26 08:40:17.686556+07', 'system', '2023-07-26 08:40:17.686556+07', 'Xã Kon Chiêng', '23818', 'Xã');
INSERT INTO category."Wards" VALUES (23821, 629, 'system', '2023-07-26 08:40:17.686558+07', 'system', '2023-07-26 08:40:17.686558+07', 'Xã Đăk Trôi', '23821', 'Xã');
INSERT INTO category."Wards" VALUES (23824, 630, 'system', '2023-07-26 08:40:17.68656+07', 'system', '2023-07-26 08:40:17.68656+07', 'Thị trấn Kông Chro', '23824', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23827, 630, 'system', '2023-07-26 08:40:17.686563+07', 'system', '2023-07-26 08:40:17.686563+07', 'Xã Chư Krêy', '23827', 'Xã');
INSERT INTO category."Wards" VALUES (23830, 630, 'system', '2023-07-26 08:40:17.686565+07', 'system', '2023-07-26 08:40:17.686565+07', 'Xã An Trung', '23830', 'Xã');
INSERT INTO category."Wards" VALUES (23833, 630, 'system', '2023-07-26 08:40:17.686567+07', 'system', '2023-07-26 08:40:17.686567+07', 'Xã Kông Yang', '23833', 'Xã');
INSERT INTO category."Wards" VALUES (23836, 630, 'system', '2023-07-26 08:40:17.686569+07', 'system', '2023-07-26 08:40:17.686569+07', 'Xã Đăk Tơ Pang', '23836', 'Xã');
INSERT INTO category."Wards" VALUES (23839, 630, 'system', '2023-07-26 08:40:17.686572+07', 'system', '2023-07-26 08:40:17.686572+07', 'Xã SRó', '23839', 'Xã');
INSERT INTO category."Wards" VALUES (23840, 630, 'system', '2023-07-26 08:40:17.686574+07', 'system', '2023-07-26 08:40:17.686574+07', 'Xã Đắk Kơ Ning', '23840', 'Xã');
INSERT INTO category."Wards" VALUES (23842, 630, 'system', '2023-07-26 08:40:17.686576+07', 'system', '2023-07-26 08:40:17.686576+07', 'Xã Đăk Song', '23842', 'Xã');
INSERT INTO category."Wards" VALUES (23843, 630, 'system', '2023-07-26 08:40:17.686578+07', 'system', '2023-07-26 08:40:17.686578+07', 'Xã Đăk Pling', '23843', 'Xã');
INSERT INTO category."Wards" VALUES (23845, 630, 'system', '2023-07-26 08:40:17.68658+07', 'system', '2023-07-26 08:40:17.68658+07', 'Xã Yang Trung', '23845', 'Xã');
INSERT INTO category."Wards" VALUES (23846, 630, 'system', '2023-07-26 08:40:17.686582+07', 'system', '2023-07-26 08:40:17.686582+07', 'Xã Đăk Pơ Pho', '23846', 'Xã');
INSERT INTO category."Wards" VALUES (23848, 630, 'system', '2023-07-26 08:40:17.686584+07', 'system', '2023-07-26 08:40:17.686584+07', 'Xã Ya Ma', '23848', 'Xã');
INSERT INTO category."Wards" VALUES (23851, 630, 'system', '2023-07-26 08:40:17.686586+07', 'system', '2023-07-26 08:40:17.686587+07', 'Xã Chơ Long', '23851', 'Xã');
INSERT INTO category."Wards" VALUES (23854, 630, 'system', '2023-07-26 08:40:17.686589+07', 'system', '2023-07-26 08:40:17.686589+07', 'Xã Yang Nam', '23854', 'Xã');
INSERT INTO category."Wards" VALUES (23857, 631, 'system', '2023-07-26 08:40:17.686591+07', 'system', '2023-07-26 08:40:17.686591+07', 'Thị trấn Chư Ty', '23857', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23860, 631, 'system', '2023-07-26 08:40:17.686593+07', 'system', '2023-07-26 08:40:17.686593+07', 'Xã Ia Dơk', '23860', 'Xã');
INSERT INTO category."Wards" VALUES (23863, 631, 'system', '2023-07-26 08:40:17.686595+07', 'system', '2023-07-26 08:40:17.686595+07', 'Xã Ia Krêl', '23863', 'Xã');
INSERT INTO category."Wards" VALUES (23866, 631, 'system', '2023-07-26 08:40:17.686597+07', 'system', '2023-07-26 08:40:17.686597+07', 'Xã Ia Din', '23866', 'Xã');
INSERT INTO category."Wards" VALUES (23869, 631, 'system', '2023-07-26 08:40:17.686599+07', 'system', '2023-07-26 08:40:17.686599+07', 'Xã Ia Kla', '23869', 'Xã');
INSERT INTO category."Wards" VALUES (23872, 631, 'system', '2023-07-26 08:40:17.686601+07', 'system', '2023-07-26 08:40:17.686601+07', 'Xã Ia Dom', '23872', 'Xã');
INSERT INTO category."Wards" VALUES (23875, 631, 'system', '2023-07-26 08:40:17.686603+07', 'system', '2023-07-26 08:40:17.686603+07', 'Xã Ia Lang', '23875', 'Xã');
INSERT INTO category."Wards" VALUES (23878, 631, 'system', '2023-07-26 08:40:17.686605+07', 'system', '2023-07-26 08:40:17.686605+07', 'Xã Ia Kriêng', '23878', 'Xã');
INSERT INTO category."Wards" VALUES (23881, 631, 'system', '2023-07-26 08:40:17.686607+07', 'system', '2023-07-26 08:40:17.686607+07', 'Xã Ia Pnôn', '23881', 'Xã');
INSERT INTO category."Wards" VALUES (23884, 631, 'system', '2023-07-26 08:40:17.68661+07', 'system', '2023-07-26 08:40:17.68661+07', 'Xã Ia Nan', '23884', 'Xã');
INSERT INTO category."Wards" VALUES (23887, 632, 'system', '2023-07-26 08:40:17.686612+07', 'system', '2023-07-26 08:40:17.686612+07', 'Thị trấn Chư Prông', '23887', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23888, 632, 'system', '2023-07-26 08:40:17.686614+07', 'system', '2023-07-26 08:40:17.686614+07', 'Xã Ia Kly', '23888', 'Xã');
INSERT INTO category."Wards" VALUES (23890, 632, 'system', '2023-07-26 08:40:17.686616+07', 'system', '2023-07-26 08:40:17.686616+07', 'Xã Bình Giáo', '23890', 'Xã');
INSERT INTO category."Wards" VALUES (23893, 632, 'system', '2023-07-26 08:40:17.686618+07', 'system', '2023-07-26 08:40:17.686618+07', 'Xã Ia Drăng', '23893', 'Xã');
INSERT INTO category."Wards" VALUES (23896, 632, 'system', '2023-07-26 08:40:17.686621+07', 'system', '2023-07-26 08:40:17.686621+07', 'Xã Thăng Hưng', '23896', 'Xã');
INSERT INTO category."Wards" VALUES (23899, 632, 'system', '2023-07-26 08:40:17.686624+07', 'system', '2023-07-26 08:40:17.686624+07', 'Xã Bàu Cạn', '23899', 'Xã');
INSERT INTO category."Wards" VALUES (23902, 632, 'system', '2023-07-26 08:40:17.686626+07', 'system', '2023-07-26 08:40:17.686626+07', 'Xã Ia Phìn', '23902', 'Xã');
INSERT INTO category."Wards" VALUES (23905, 632, 'system', '2023-07-26 08:40:17.686628+07', 'system', '2023-07-26 08:40:17.686628+07', 'Xã Ia Băng', '23905', 'Xã');
INSERT INTO category."Wards" VALUES (23908, 632, 'system', '2023-07-26 08:40:17.68663+07', 'system', '2023-07-26 08:40:17.68663+07', 'Xã Ia Tôr', '23908', 'Xã');
INSERT INTO category."Wards" VALUES (23911, 632, 'system', '2023-07-26 08:40:17.686632+07', 'system', '2023-07-26 08:40:17.686632+07', 'Xã Ia Boòng', '23911', 'Xã');
INSERT INTO category."Wards" VALUES (23914, 632, 'system', '2023-07-26 08:40:17.686635+07', 'system', '2023-07-26 08:40:17.686635+07', 'Xã Ia O', '23914', 'Xã');
INSERT INTO category."Wards" VALUES (23917, 632, 'system', '2023-07-26 08:40:17.686637+07', 'system', '2023-07-26 08:40:17.686637+07', 'Xã Ia Púch', '23917', 'Xã');
INSERT INTO category."Wards" VALUES (23920, 632, 'system', '2023-07-26 08:40:17.686639+07', 'system', '2023-07-26 08:40:17.686639+07', 'Xã Ia Me', '23920', 'Xã');
INSERT INTO category."Wards" VALUES (23923, 632, 'system', '2023-07-26 08:40:17.686641+07', 'system', '2023-07-26 08:40:17.686641+07', 'Xã Ia Vê', '23923', 'Xã');
INSERT INTO category."Wards" VALUES (23924, 632, 'system', '2023-07-26 08:40:17.686643+07', 'system', '2023-07-26 08:40:17.686643+07', 'Xã Ia Bang', '23924', 'Xã');
INSERT INTO category."Wards" VALUES (23926, 632, 'system', '2023-07-26 08:40:17.686645+07', 'system', '2023-07-26 08:40:17.686645+07', 'Xã Ia Pia', '23926', 'Xã');
INSERT INTO category."Wards" VALUES (23929, 632, 'system', '2023-07-26 08:40:17.686647+07', 'system', '2023-07-26 08:40:17.686647+07', 'Xã Ia Ga', '23929', 'Xã');
INSERT INTO category."Wards" VALUES (23932, 632, 'system', '2023-07-26 08:40:17.686649+07', 'system', '2023-07-26 08:40:17.686649+07', 'Xã Ia Lâu', '23932', 'Xã');
INSERT INTO category."Wards" VALUES (23935, 632, 'system', '2023-07-26 08:40:17.686651+07', 'system', '2023-07-26 08:40:17.686651+07', 'Xã Ia Piơr', '23935', 'Xã');
INSERT INTO category."Wards" VALUES (23938, 632, 'system', '2023-07-26 08:40:17.686653+07', 'system', '2023-07-26 08:40:17.686653+07', 'Xã Ia Mơ', '23938', 'Xã');
INSERT INTO category."Wards" VALUES (23941, 633, 'system', '2023-07-26 08:40:17.686656+07', 'system', '2023-07-26 08:40:17.686656+07', 'Thị trấn Chư Sê', '23941', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23942, 639, 'system', '2023-07-26 08:40:17.686776+07', 'system', '2023-07-26 08:40:17.686776+07', 'Thị trấn Nhơn Hoà', '23942', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23944, 633, 'system', '2023-07-26 08:40:17.686658+07', 'system', '2023-07-26 08:40:17.686658+07', 'Xã Ia Tiêm', '23944', 'Xã');
INSERT INTO category."Wards" VALUES (23945, 633, 'system', '2023-07-26 08:40:17.68666+07', 'system', '2023-07-26 08:40:17.68666+07', 'Xã Chư Pơng', '23945', 'Xã');
INSERT INTO category."Wards" VALUES (23946, 633, 'system', '2023-07-26 08:40:17.686662+07', 'system', '2023-07-26 08:40:17.686662+07', 'Xã Bar Măih', '23946', 'Xã');
INSERT INTO category."Wards" VALUES (23947, 633, 'system', '2023-07-26 08:40:17.686664+07', 'system', '2023-07-26 08:40:17.686664+07', 'Xã Bờ Ngoong', '23947', 'Xã');
INSERT INTO category."Wards" VALUES (23950, 633, 'system', '2023-07-26 08:40:17.686666+07', 'system', '2023-07-26 08:40:17.686666+07', 'Xã Ia Glai', '23950', 'Xã');
INSERT INTO category."Wards" VALUES (23953, 633, 'system', '2023-07-26 08:40:17.686668+07', 'system', '2023-07-26 08:40:17.686668+07', 'Xã AL Bá', '23953', 'Xã');
INSERT INTO category."Wards" VALUES (23954, 633, 'system', '2023-07-26 08:40:17.686671+07', 'system', '2023-07-26 08:40:17.686671+07', 'Xã Kông HTok', '23954', 'Xã');
INSERT INTO category."Wards" VALUES (23956, 633, 'system', '2023-07-26 08:40:17.686673+07', 'system', '2023-07-26 08:40:17.686673+07', 'Xã AYun', '23956', 'Xã');
INSERT INTO category."Wards" VALUES (23959, 633, 'system', '2023-07-26 08:40:17.686675+07', 'system', '2023-07-26 08:40:17.686675+07', 'Xã Ia HLốp', '23959', 'Xã');
INSERT INTO category."Wards" VALUES (23962, 633, 'system', '2023-07-26 08:40:17.686677+07', 'system', '2023-07-26 08:40:17.686677+07', 'Xã Ia Blang', '23962', 'Xã');
INSERT INTO category."Wards" VALUES (23965, 633, 'system', '2023-07-26 08:40:17.686679+07', 'system', '2023-07-26 08:40:17.686679+07', 'Xã Dun', '23965', 'Xã');
INSERT INTO category."Wards" VALUES (23966, 633, 'system', '2023-07-26 08:40:17.686681+07', 'system', '2023-07-26 08:40:17.686681+07', 'Xã Ia Pal', '23966', 'Xã');
INSERT INTO category."Wards" VALUES (23968, 633, 'system', '2023-07-26 08:40:17.686683+07', 'system', '2023-07-26 08:40:17.686683+07', 'Xã H Bông', '23968', 'Xã');
INSERT INTO category."Wards" VALUES (23971, 639, 'system', '2023-07-26 08:40:17.686779+07', 'system', '2023-07-26 08:40:17.686779+07', 'Xã Ia Hrú', '23971', 'Xã');
INSERT INTO category."Wards" VALUES (23972, 639, 'system', '2023-07-26 08:40:17.686782+07', 'system', '2023-07-26 08:40:17.686782+07', 'Xã Ia Rong', '23972', 'Xã');
INSERT INTO category."Wards" VALUES (23974, 639, 'system', '2023-07-26 08:40:17.686784+07', 'system', '2023-07-26 08:40:17.686784+07', 'Xã Ia Dreng', '23974', 'Xã');
INSERT INTO category."Wards" VALUES (23977, 633, 'system', '2023-07-26 08:40:17.686685+07', 'system', '2023-07-26 08:40:17.686685+07', 'Xã Ia Ko', '23977', 'Xã');
INSERT INTO category."Wards" VALUES (23978, 639, 'system', '2023-07-26 08:40:17.686786+07', 'system', '2023-07-26 08:40:17.686786+07', 'Xã Ia Hla', '23978', 'Xã');
INSERT INTO category."Wards" VALUES (23980, 639, 'system', '2023-07-26 08:40:17.686788+07', 'system', '2023-07-26 08:40:17.686788+07', 'Xã Chư Don', '23980', 'Xã');
INSERT INTO category."Wards" VALUES (23983, 639, 'system', '2023-07-26 08:40:17.68679+07', 'system', '2023-07-26 08:40:17.68679+07', 'Xã Ia Phang', '23983', 'Xã');
INSERT INTO category."Wards" VALUES (23986, 639, 'system', '2023-07-26 08:40:17.686792+07', 'system', '2023-07-26 08:40:17.686792+07', 'Xã Ia Le', '23986', 'Xã');
INSERT INTO category."Wards" VALUES (23987, 639, 'system', '2023-07-26 08:40:17.686794+07', 'system', '2023-07-26 08:40:17.686794+07', 'Xã Ia BLứ', '23987', 'Xã');
INSERT INTO category."Wards" VALUES (23989, 634, 'system', '2023-07-26 08:40:17.686687+07', 'system', '2023-07-26 08:40:17.686687+07', 'Xã Hà Tam', '23989', 'Xã');
INSERT INTO category."Wards" VALUES (23992, 634, 'system', '2023-07-26 08:40:17.686689+07', 'system', '2023-07-26 08:40:17.686689+07', 'Xã An Thành', '23992', 'Xã');
INSERT INTO category."Wards" VALUES (23995, 634, 'system', '2023-07-26 08:40:17.686691+07', 'system', '2023-07-26 08:40:17.686691+07', 'Thị trấn Đak Pơ', '23995', 'Thị trấn');
INSERT INTO category."Wards" VALUES (23998, 634, 'system', '2023-07-26 08:40:17.686694+07', 'system', '2023-07-26 08:40:17.686694+07', 'Xã Yang Bắc', '23998', 'Xã');
INSERT INTO category."Wards" VALUES (24001, 634, 'system', '2023-07-26 08:40:17.686696+07', 'system', '2023-07-26 08:40:17.686696+07', 'Xã Cư An', '24001', 'Xã');
INSERT INTO category."Wards" VALUES (24004, 634, 'system', '2023-07-26 08:40:17.686698+07', 'system', '2023-07-26 08:40:17.686698+07', 'Xã Tân An', '24004', 'Xã');
INSERT INTO category."Wards" VALUES (24007, 634, 'system', '2023-07-26 08:40:17.686701+07', 'system', '2023-07-26 08:40:17.686701+07', 'Xã Phú An', '24007', 'Xã');
INSERT INTO category."Wards" VALUES (24010, 634, 'system', '2023-07-26 08:40:17.686703+07', 'system', '2023-07-26 08:40:17.686703+07', 'Xã Ya Hội', '24010', 'Xã');
INSERT INTO category."Wards" VALUES (24013, 635, 'system', '2023-07-26 08:40:17.686705+07', 'system', '2023-07-26 08:40:17.686706+07', 'Xã Pờ Tó', '24013', 'Xã');
INSERT INTO category."Wards" VALUES (24016, 635, 'system', '2023-07-26 08:40:17.686708+07', 'system', '2023-07-26 08:40:17.686708+07', 'Xã Chư Răng', '24016', 'Xã');
INSERT INTO category."Wards" VALUES (24019, 635, 'system', '2023-07-26 08:40:17.68671+07', 'system', '2023-07-26 08:40:17.68671+07', 'Xã Ia KDăm', '24019', 'Xã');
INSERT INTO category."Wards" VALUES (24022, 635, 'system', '2023-07-26 08:40:17.686712+07', 'system', '2023-07-26 08:40:17.686712+07', 'Xã Kim Tân', '24022', 'Xã');
INSERT INTO category."Wards" VALUES (24025, 635, 'system', '2023-07-26 08:40:17.686714+07', 'system', '2023-07-26 08:40:17.686714+07', 'Xã Chư Mố', '24025', 'Xã');
INSERT INTO category."Wards" VALUES (24028, 635, 'system', '2023-07-26 08:40:17.686716+07', 'system', '2023-07-26 08:40:17.686716+07', 'Xã Ia Tul', '24028', 'Xã');
INSERT INTO category."Wards" VALUES (24031, 635, 'system', '2023-07-26 08:40:17.686718+07', 'system', '2023-07-26 08:40:17.686718+07', 'Xã Ia Ma Rơn', '24031', 'Xã');
INSERT INTO category."Wards" VALUES (24034, 635, 'system', '2023-07-26 08:40:17.68672+07', 'system', '2023-07-26 08:40:17.68672+07', 'Xã Ia Broăi', '24034', 'Xã');
INSERT INTO category."Wards" VALUES (24037, 635, 'system', '2023-07-26 08:40:17.686722+07', 'system', '2023-07-26 08:40:17.686722+07', 'Xã Ia Trok', '24037', 'Xã');
INSERT INTO category."Wards" VALUES (24041, 624, 'system', '2023-07-26 08:40:17.686337+07', 'system', '2023-07-26 08:40:17.686337+07', 'Phường Cheo Reo', '24041', 'Phường');
INSERT INTO category."Wards" VALUES (24042, 624, 'system', '2023-07-26 08:40:17.68634+07', 'system', '2023-07-26 08:40:17.68634+07', 'Phường Hòa Bình', '24042', 'Phường');
INSERT INTO category."Wards" VALUES (24043, 638, 'system', '2023-07-26 08:40:17.686754+07', 'system', '2023-07-26 08:40:17.686754+07', 'Thị trấn Phú Thiện', '24043', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24044, 624, 'system', '2023-07-26 08:40:17.686342+07', 'system', '2023-07-26 08:40:17.686342+07', 'Phường Đoàn Kết', '24044', 'Phường');
INSERT INTO category."Wards" VALUES (24045, 624, 'system', '2023-07-26 08:40:17.686344+07', 'system', '2023-07-26 08:40:17.686344+07', 'Phường Sông Bờ', '24045', 'Phường');
INSERT INTO category."Wards" VALUES (24046, 638, 'system', '2023-07-26 08:40:17.686757+07', 'system', '2023-07-26 08:40:17.686757+07', 'Xã Chư A Thai', '24046', 'Xã');
INSERT INTO category."Wards" VALUES (24048, 638, 'system', '2023-07-26 08:40:17.686759+07', 'system', '2023-07-26 08:40:17.686759+07', 'Xã Ayun Hạ', '24048', 'Xã');
INSERT INTO category."Wards" VALUES (24049, 638, 'system', '2023-07-26 08:40:17.686761+07', 'system', '2023-07-26 08:40:17.686761+07', 'Xã Ia Ake', '24049', 'Xã');
INSERT INTO category."Wards" VALUES (24052, 638, 'system', '2023-07-26 08:40:17.686763+07', 'system', '2023-07-26 08:40:17.686763+07', 'Xã Ia Sol', '24052', 'Xã');
INSERT INTO category."Wards" VALUES (24055, 638, 'system', '2023-07-26 08:40:17.686765+07', 'system', '2023-07-26 08:40:17.686765+07', 'Xã Ia Piar', '24055', 'Xã');
INSERT INTO category."Wards" VALUES (24058, 638, 'system', '2023-07-26 08:40:17.686768+07', 'system', '2023-07-26 08:40:17.686768+07', 'Xã Ia Peng', '24058', 'Xã');
INSERT INTO category."Wards" VALUES (24060, 638, 'system', '2023-07-26 08:40:17.68677+07', 'system', '2023-07-26 08:40:17.68677+07', 'Xã Chrôh Pơnan', '24060', 'Xã');
INSERT INTO category."Wards" VALUES (24061, 638, 'system', '2023-07-26 08:40:17.686772+07', 'system', '2023-07-26 08:40:17.686772+07', 'Xã Ia Hiao', '24061', 'Xã');
INSERT INTO category."Wards" VALUES (24064, 624, 'system', '2023-07-26 08:40:17.686346+07', 'system', '2023-07-26 08:40:17.686346+07', 'Xã Ia RBol', '24064', 'Xã');
INSERT INTO category."Wards" VALUES (24065, 624, 'system', '2023-07-26 08:40:17.686348+07', 'system', '2023-07-26 08:40:17.686349+07', 'Xã Chư Băh', '24065', 'Xã');
INSERT INTO category."Wards" VALUES (24067, 638, 'system', '2023-07-26 08:40:17.686774+07', 'system', '2023-07-26 08:40:17.686774+07', 'Xã Ia Yeng', '24067', 'Xã');
INSERT INTO category."Wards" VALUES (24070, 624, 'system', '2023-07-26 08:40:17.686384+07', 'system', '2023-07-26 08:40:17.686384+07', 'Xã Ia RTô', '24070', 'Xã');
INSERT INTO category."Wards" VALUES (24073, 624, 'system', '2023-07-26 08:40:17.686386+07', 'system', '2023-07-26 08:40:17.686386+07', 'Xã Ia Sao', '24073', 'Xã');
INSERT INTO category."Wards" VALUES (24076, 637, 'system', '2023-07-26 08:40:17.686724+07', 'system', '2023-07-26 08:40:17.686724+07', 'Thị trấn Phú Túc', '24076', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24079, 637, 'system', '2023-07-26 08:40:17.686727+07', 'system', '2023-07-26 08:40:17.686727+07', 'Xã Ia RSai', '24079', 'Xã');
INSERT INTO category."Wards" VALUES (24082, 637, 'system', '2023-07-26 08:40:17.686729+07', 'system', '2023-07-26 08:40:17.686729+07', 'Xã Ia RSươm', '24082', 'Xã');
INSERT INTO category."Wards" VALUES (24085, 637, 'system', '2023-07-26 08:40:17.686731+07', 'system', '2023-07-26 08:40:17.686731+07', 'Xã Chư Gu', '24085', 'Xã');
INSERT INTO category."Wards" VALUES (24088, 637, 'system', '2023-07-26 08:40:17.686733+07', 'system', '2023-07-26 08:40:17.686733+07', 'Xã Đất Bằng', '24088', 'Xã');
INSERT INTO category."Wards" VALUES (24091, 637, 'system', '2023-07-26 08:40:17.686735+07', 'system', '2023-07-26 08:40:17.686735+07', 'Xã Ia Mláh', '24091', 'Xã');
INSERT INTO category."Wards" VALUES (24094, 637, 'system', '2023-07-26 08:40:17.686738+07', 'system', '2023-07-26 08:40:17.686738+07', 'Xã Chư Drăng', '24094', 'Xã');
INSERT INTO category."Wards" VALUES (24097, 637, 'system', '2023-07-26 08:40:17.68674+07', 'system', '2023-07-26 08:40:17.68674+07', 'Xã Phú Cần', '24097', 'Xã');
INSERT INTO category."Wards" VALUES (24100, 637, 'system', '2023-07-26 08:40:17.686742+07', 'system', '2023-07-26 08:40:17.686742+07', 'Xã Ia HDreh', '24100', 'Xã');
INSERT INTO category."Wards" VALUES (24103, 637, 'system', '2023-07-26 08:40:17.686744+07', 'system', '2023-07-26 08:40:17.686744+07', 'Xã Ia RMok', '24103', 'Xã');
INSERT INTO category."Wards" VALUES (24106, 637, 'system', '2023-07-26 08:40:17.686746+07', 'system', '2023-07-26 08:40:17.686746+07', 'Xã Chư Ngọc', '24106', 'Xã');
INSERT INTO category."Wards" VALUES (24109, 637, 'system', '2023-07-26 08:40:17.686748+07', 'system', '2023-07-26 08:40:17.686748+07', 'Xã Uar', '24109', 'Xã');
INSERT INTO category."Wards" VALUES (24112, 637, 'system', '2023-07-26 08:40:17.68675+07', 'system', '2023-07-26 08:40:17.68675+07', 'Xã Chư Rcăm', '24112', 'Xã');
INSERT INTO category."Wards" VALUES (24115, 637, 'system', '2023-07-26 08:40:17.686752+07', 'system', '2023-07-26 08:40:17.686752+07', 'Xã Krông Năng', '24115', 'Xã');
INSERT INTO category."Wards" VALUES (24118, 643, 'system', '2023-07-26 08:40:17.686796+07', 'system', '2023-07-26 08:40:17.686797+07', 'Phường Tân Lập', '24118', 'Phường');
INSERT INTO category."Wards" VALUES (24121, 643, 'system', '2023-07-26 08:40:17.686799+07', 'system', '2023-07-26 08:40:17.686799+07', 'Phường Tân Hòa', '24121', 'Phường');
INSERT INTO category."Wards" VALUES (24124, 643, 'system', '2023-07-26 08:40:17.686801+07', 'system', '2023-07-26 08:40:17.686801+07', 'Phường Tân An', '24124', 'Phường');
INSERT INTO category."Wards" VALUES (24127, 643, 'system', '2023-07-26 08:40:17.686804+07', 'system', '2023-07-26 08:40:17.686804+07', 'Phường Thống Nhất', '24127', 'Phường');
INSERT INTO category."Wards" VALUES (24130, 643, 'system', '2023-07-26 08:40:17.686806+07', 'system', '2023-07-26 08:40:17.686806+07', 'Phường Thành Nhất', '24130', 'Phường');
INSERT INTO category."Wards" VALUES (24133, 643, 'system', '2023-07-26 08:40:17.686808+07', 'system', '2023-07-26 08:40:17.686808+07', 'Phường Thắng Lợi', '24133', 'Phường');
INSERT INTO category."Wards" VALUES (24136, 643, 'system', '2023-07-26 08:40:17.686811+07', 'system', '2023-07-26 08:40:17.686811+07', 'Phường Tân Lợi', '24136', 'Phường');
INSERT INTO category."Wards" VALUES (24139, 643, 'system', '2023-07-26 08:40:17.686813+07', 'system', '2023-07-26 08:40:17.686813+07', 'Phường Thành Công', '24139', 'Phường');
INSERT INTO category."Wards" VALUES (24142, 643, 'system', '2023-07-26 08:40:17.686815+07', 'system', '2023-07-26 08:40:17.686815+07', 'Phường Tân Thành', '24142', 'Phường');
INSERT INTO category."Wards" VALUES (24145, 643, 'system', '2023-07-26 08:40:17.686817+07', 'system', '2023-07-26 08:40:17.686817+07', 'Phường Tân Tiến', '24145', 'Phường');
INSERT INTO category."Wards" VALUES (24148, 643, 'system', '2023-07-26 08:40:17.686819+07', 'system', '2023-07-26 08:40:17.686819+07', 'Phường Tự An', '24148', 'Phường');
INSERT INTO category."Wards" VALUES (24151, 643, 'system', '2023-07-26 08:40:17.686822+07', 'system', '2023-07-26 08:40:17.686822+07', 'Phường Ea Tam', '24151', 'Phường');
INSERT INTO category."Wards" VALUES (24154, 643, 'system', '2023-07-26 08:40:17.686824+07', 'system', '2023-07-26 08:40:17.686824+07', 'Phường Khánh Xuân', '24154', 'Phường');
INSERT INTO category."Wards" VALUES (24157, 643, 'system', '2023-07-26 08:40:17.686826+07', 'system', '2023-07-26 08:40:17.686827+07', 'Xã Hòa Thuận', '24157', 'Xã');
INSERT INTO category."Wards" VALUES (24160, 643, 'system', '2023-07-26 08:40:17.686829+07', 'system', '2023-07-26 08:40:17.686829+07', 'Xã Cư ÊBur', '24160', 'Xã');
INSERT INTO category."Wards" VALUES (24163, 643, 'system', '2023-07-26 08:40:17.686831+07', 'system', '2023-07-26 08:40:17.686831+07', 'Xã Ea Tu', '24163', 'Xã');
INSERT INTO category."Wards" VALUES (24166, 643, 'system', '2023-07-26 08:40:17.686833+07', 'system', '2023-07-26 08:40:17.686833+07', 'Xã Hòa Thắng', '24166', 'Xã');
INSERT INTO category."Wards" VALUES (24169, 643, 'system', '2023-07-26 08:40:17.686835+07', 'system', '2023-07-26 08:40:17.686835+07', 'Xã Ea Kao', '24169', 'Xã');
INSERT INTO category."Wards" VALUES (24172, 643, 'system', '2023-07-26 08:40:17.686838+07', 'system', '2023-07-26 08:40:17.686838+07', 'Xã Hòa Phú', '24172', 'Xã');
INSERT INTO category."Wards" VALUES (24175, 643, 'system', '2023-07-26 08:40:17.68684+07', 'system', '2023-07-26 08:40:17.68684+07', 'Xã Hòa Khánh', '24175', 'Xã');
INSERT INTO category."Wards" VALUES (24178, 643, 'system', '2023-07-26 08:40:17.686842+07', 'system', '2023-07-26 08:40:17.686842+07', 'Xã Hòa Xuân', '24178', 'Xã');
INSERT INTO category."Wards" VALUES (24181, 645, 'system', '2023-07-26 08:40:17.686872+07', 'system', '2023-07-26 08:40:17.686872+07', 'Thị trấn Ea Drăng', '24181', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24184, 645, 'system', '2023-07-26 08:40:17.686874+07', 'system', '2023-07-26 08:40:17.686874+07', 'Xã Ea H''leo', '24184', 'Xã');
INSERT INTO category."Wards" VALUES (24187, 645, 'system', '2023-07-26 08:40:17.686877+07', 'system', '2023-07-26 08:40:17.686877+07', 'Xã Ea Sol', '24187', 'Xã');
INSERT INTO category."Wards" VALUES (24190, 645, 'system', '2023-07-26 08:40:17.686879+07', 'system', '2023-07-26 08:40:17.686879+07', 'Xã Ea Ral', '24190', 'Xã');
INSERT INTO category."Wards" VALUES (24193, 645, 'system', '2023-07-26 08:40:17.686881+07', 'system', '2023-07-26 08:40:17.686881+07', 'Xã Ea Wy', '24193', 'Xã');
INSERT INTO category."Wards" VALUES (24194, 645, 'system', '2023-07-26 08:40:17.686883+07', 'system', '2023-07-26 08:40:17.686883+07', 'Xã Cư A Mung', '24194', 'Xã');
INSERT INTO category."Wards" VALUES (24196, 645, 'system', '2023-07-26 08:40:17.686885+07', 'system', '2023-07-26 08:40:17.686885+07', 'Xã Cư Mốt', '24196', 'Xã');
INSERT INTO category."Wards" VALUES (24199, 645, 'system', '2023-07-26 08:40:17.686887+07', 'system', '2023-07-26 08:40:17.686887+07', 'Xã Ea Hiao', '24199', 'Xã');
INSERT INTO category."Wards" VALUES (24202, 645, 'system', '2023-07-26 08:40:17.686889+07', 'system', '2023-07-26 08:40:17.686889+07', 'Xã Ea Khal', '24202', 'Xã');
INSERT INTO category."Wards" VALUES (24205, 645, 'system', '2023-07-26 08:40:17.686892+07', 'system', '2023-07-26 08:40:17.686892+07', 'Xã Dliê Yang', '24205', 'Xã');
INSERT INTO category."Wards" VALUES (24207, 645, 'system', '2023-07-26 08:40:17.686894+07', 'system', '2023-07-26 08:40:17.686894+07', 'Xã Ea Tir', '24207', 'Xã');
INSERT INTO category."Wards" VALUES (24208, 645, 'system', '2023-07-26 08:40:17.686896+07', 'system', '2023-07-26 08:40:17.686896+07', 'Xã Ea Nam', '24208', 'Xã');
INSERT INTO category."Wards" VALUES (24211, 646, 'system', '2023-07-26 08:40:17.686898+07', 'system', '2023-07-26 08:40:17.686898+07', 'Thị trấn Ea Súp', '24211', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24214, 646, 'system', '2023-07-26 08:40:17.6869+07', 'system', '2023-07-26 08:40:17.6869+07', 'Xã Ia Lốp', '24214', 'Xã');
INSERT INTO category."Wards" VALUES (24215, 646, 'system', '2023-07-26 08:40:17.686902+07', 'system', '2023-07-26 08:40:17.686902+07', 'Xã Ia JLơi', '24215', 'Xã');
INSERT INTO category."Wards" VALUES (24217, 646, 'system', '2023-07-26 08:40:17.686904+07', 'system', '2023-07-26 08:40:17.686904+07', 'Xã Ea Rốk', '24217', 'Xã');
INSERT INTO category."Wards" VALUES (24220, 646, 'system', '2023-07-26 08:40:17.686906+07', 'system', '2023-07-26 08:40:17.686907+07', 'Xã Ya Tờ Mốt', '24220', 'Xã');
INSERT INTO category."Wards" VALUES (24221, 646, 'system', '2023-07-26 08:40:17.686909+07', 'system', '2023-07-26 08:40:17.686909+07', 'Xã Ia RVê', '24221', 'Xã');
INSERT INTO category."Wards" VALUES (24223, 646, 'system', '2023-07-26 08:40:17.686911+07', 'system', '2023-07-26 08:40:17.686911+07', 'Xã Ea Lê', '24223', 'Xã');
INSERT INTO category."Wards" VALUES (24226, 646, 'system', '2023-07-26 08:40:17.686913+07', 'system', '2023-07-26 08:40:17.686913+07', 'Xã Cư KBang', '24226', 'Xã');
INSERT INTO category."Wards" VALUES (24229, 646, 'system', '2023-07-26 08:40:17.686915+07', 'system', '2023-07-26 08:40:17.686915+07', 'Xã Ea Bung', '24229', 'Xã');
INSERT INTO category."Wards" VALUES (24232, 646, 'system', '2023-07-26 08:40:17.686917+07', 'system', '2023-07-26 08:40:17.686917+07', 'Xã Cư M''Lan', '24232', 'Xã');
INSERT INTO category."Wards" VALUES (24235, 647, 'system', '2023-07-26 08:40:17.686919+07', 'system', '2023-07-26 08:40:17.68692+07', 'Xã Krông Na', '24235', 'Xã');
INSERT INTO category."Wards" VALUES (24238, 647, 'system', '2023-07-26 08:40:17.686922+07', 'system', '2023-07-26 08:40:17.686922+07', 'Xã Ea Huar', '24238', 'Xã');
INSERT INTO category."Wards" VALUES (24241, 647, 'system', '2023-07-26 08:40:17.686924+07', 'system', '2023-07-26 08:40:17.686924+07', 'Xã Ea Wer', '24241', 'Xã');
INSERT INTO category."Wards" VALUES (24244, 647, 'system', '2023-07-26 08:40:17.686926+07', 'system', '2023-07-26 08:40:17.686926+07', 'Xã Tân Hoà', '24244', 'Xã');
INSERT INTO category."Wards" VALUES (24247, 647, 'system', '2023-07-26 08:40:17.686928+07', 'system', '2023-07-26 08:40:17.686928+07', 'Xã Cuôr KNia', '24247', 'Xã');
INSERT INTO category."Wards" VALUES (24250, 647, 'system', '2023-07-26 08:40:17.68693+07', 'system', '2023-07-26 08:40:17.68693+07', 'Xã Ea Bar', '24250', 'Xã');
INSERT INTO category."Wards" VALUES (24253, 647, 'system', '2023-07-26 08:40:17.686933+07', 'system', '2023-07-26 08:40:17.686933+07', 'Xã Ea Nuôl', '24253', 'Xã');
INSERT INTO category."Wards" VALUES (24256, 648, 'system', '2023-07-26 08:40:17.686935+07', 'system', '2023-07-26 08:40:17.686935+07', 'Thị trấn Ea Pốk', '24256', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24259, 648, 'system', '2023-07-26 08:40:17.686937+07', 'system', '2023-07-26 08:40:17.686937+07', 'Thị trấn Quảng Phú', '24259', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24262, 648, 'system', '2023-07-26 08:40:17.68694+07', 'system', '2023-07-26 08:40:17.68694+07', 'Xã Quảng Tiến', '24262', 'Xã');
INSERT INTO category."Wards" VALUES (24264, 648, 'system', '2023-07-26 08:40:17.686943+07', 'system', '2023-07-26 08:40:17.686943+07', 'Xã Ea Kuêh', '24264', 'Xã');
INSERT INTO category."Wards" VALUES (24265, 648, 'system', '2023-07-26 08:40:17.686945+07', 'system', '2023-07-26 08:40:17.686945+07', 'Xã Ea Kiết', '24265', 'Xã');
INSERT INTO category."Wards" VALUES (24268, 648, 'system', '2023-07-26 08:40:17.686947+07', 'system', '2023-07-26 08:40:17.686947+07', 'Xã Ea Tar', '24268', 'Xã');
INSERT INTO category."Wards" VALUES (24271, 648, 'system', '2023-07-26 08:40:17.686949+07', 'system', '2023-07-26 08:40:17.686949+07', 'Xã Cư Dliê M''nông', '24271', 'Xã');
INSERT INTO category."Wards" VALUES (24274, 648, 'system', '2023-07-26 08:40:17.686951+07', 'system', '2023-07-26 08:40:17.686951+07', 'Xã Ea H''đinh', '24274', 'Xã');
INSERT INTO category."Wards" VALUES (24277, 648, 'system', '2023-07-26 08:40:17.686954+07', 'system', '2023-07-26 08:40:17.686954+07', 'Xã Ea Tul', '24277', 'Xã');
INSERT INTO category."Wards" VALUES (24280, 648, 'system', '2023-07-26 08:40:17.686956+07', 'system', '2023-07-26 08:40:17.686956+07', 'Xã Ea KPam', '24280', 'Xã');
INSERT INTO category."Wards" VALUES (24283, 648, 'system', '2023-07-26 08:40:17.686958+07', 'system', '2023-07-26 08:40:17.686958+07', 'Xã Ea M''DRóh', '24283', 'Xã');
INSERT INTO category."Wards" VALUES (24286, 648, 'system', '2023-07-26 08:40:17.68696+07', 'system', '2023-07-26 08:40:17.68696+07', 'Xã Quảng Hiệp', '24286', 'Xã');
INSERT INTO category."Wards" VALUES (24289, 648, 'system', '2023-07-26 08:40:17.686962+07', 'system', '2023-07-26 08:40:17.686962+07', 'Xã Cư M''gar', '24289', 'Xã');
INSERT INTO category."Wards" VALUES (24292, 648, 'system', '2023-07-26 08:40:17.686964+07', 'system', '2023-07-26 08:40:17.686964+07', 'Xã Ea D''Rơng', '24292', 'Xã');
INSERT INTO category."Wards" VALUES (24295, 648, 'system', '2023-07-26 08:40:17.686966+07', 'system', '2023-07-26 08:40:17.686966+07', 'Xã Ea M''nang', '24295', 'Xã');
INSERT INTO category."Wards" VALUES (24298, 648, 'system', '2023-07-26 08:40:17.686969+07', 'system', '2023-07-26 08:40:17.686969+07', 'Xã Cư Suê', '24298', 'Xã');
INSERT INTO category."Wards" VALUES (24301, 648, 'system', '2023-07-26 08:40:17.686971+07', 'system', '2023-07-26 08:40:17.686971+07', 'Xã Cuor Đăng', '24301', 'Xã');
INSERT INTO category."Wards" VALUES (24305, 644, 'system', '2023-07-26 08:40:17.686844+07', 'system', '2023-07-26 08:40:17.686844+07', 'Phường An Lạc', '24305', 'Phường');
INSERT INTO category."Wards" VALUES (24307, 649, 'system', '2023-07-26 08:40:17.686973+07', 'system', '2023-07-26 08:40:17.686973+07', 'Xã Cư Né', '24307', 'Xã');
INSERT INTO category."Wards" VALUES (24308, 644, 'system', '2023-07-26 08:40:17.686846+07', 'system', '2023-07-26 08:40:17.686846+07', 'Phường An Bình', '24308', 'Phường');
INSERT INTO category."Wards" VALUES (24310, 649, 'system', '2023-07-26 08:40:17.686975+07', 'system', '2023-07-26 08:40:17.686975+07', 'Xã Chư KBô', '24310', 'Xã');
INSERT INTO category."Wards" VALUES (24311, 644, 'system', '2023-07-26 08:40:17.686849+07', 'system', '2023-07-26 08:40:17.686849+07', 'Phường Thiện An', '24311', 'Phường');
INSERT INTO category."Wards" VALUES (24313, 649, 'system', '2023-07-26 08:40:17.686977+07', 'system', '2023-07-26 08:40:17.686977+07', 'Xã Cư Pơng', '24313', 'Xã');
INSERT INTO category."Wards" VALUES (24314, 649, 'system', '2023-07-26 08:40:17.68698+07', 'system', '2023-07-26 08:40:17.68698+07', 'Xã Ea Sin', '24314', 'Xã');
INSERT INTO category."Wards" VALUES (24316, 649, 'system', '2023-07-26 08:40:17.686982+07', 'system', '2023-07-26 08:40:17.686982+07', 'Xã Pơng Drang', '24316', 'Xã');
INSERT INTO category."Wards" VALUES (24317, 649, 'system', '2023-07-26 08:40:17.686984+07', 'system', '2023-07-26 08:40:17.686984+07', 'Xã Tân Lập', '24317', 'Xã');
INSERT INTO category."Wards" VALUES (24318, 644, 'system', '2023-07-26 08:40:17.686851+07', 'system', '2023-07-26 08:40:17.686851+07', 'Phường Đạt Hiếu', '24318', 'Phường');
INSERT INTO category."Wards" VALUES (24319, 649, 'system', '2023-07-26 08:40:17.686986+07', 'system', '2023-07-26 08:40:17.686986+07', 'Xã Ea Ngai', '24319', 'Xã');
INSERT INTO category."Wards" VALUES (24322, 644, 'system', '2023-07-26 08:40:17.686853+07', 'system', '2023-07-26 08:40:17.686853+07', 'Phường Đoàn Kết', '24322', 'Phường');
INSERT INTO category."Wards" VALUES (24325, 644, 'system', '2023-07-26 08:40:17.686855+07', 'system', '2023-07-26 08:40:17.686856+07', 'Xã Ea Blang', '24325', 'Xã');
INSERT INTO category."Wards" VALUES (24328, 644, 'system', '2023-07-26 08:40:17.686858+07', 'system', '2023-07-26 08:40:17.686858+07', 'Xã Ea Drông', '24328', 'Xã');
INSERT INTO category."Wards" VALUES (24331, 644, 'system', '2023-07-26 08:40:17.686861+07', 'system', '2023-07-26 08:40:17.686861+07', 'Phường Thống Nhất', '24331', 'Phường');
INSERT INTO category."Wards" VALUES (24332, 644, 'system', '2023-07-26 08:40:17.686863+07', 'system', '2023-07-26 08:40:17.686863+07', 'Phường Bình Tân', '24332', 'Phường');
INSERT INTO category."Wards" VALUES (24334, 644, 'system', '2023-07-26 08:40:17.686865+07', 'system', '2023-07-26 08:40:17.686865+07', 'Xã Ea Siên', '24334', 'Xã');
INSERT INTO category."Wards" VALUES (24337, 644, 'system', '2023-07-26 08:40:17.686867+07', 'system', '2023-07-26 08:40:17.686867+07', 'Xã Bình Thuận', '24337', 'Xã');
INSERT INTO category."Wards" VALUES (24340, 644, 'system', '2023-07-26 08:40:17.68687+07', 'system', '2023-07-26 08:40:17.68687+07', 'Xã Cư Bao', '24340', 'Xã');
INSERT INTO category."Wards" VALUES (24343, 650, 'system', '2023-07-26 08:40:17.686988+07', 'system', '2023-07-26 08:40:17.686988+07', 'Thị trấn Krông Năng', '24343', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24346, 650, 'system', '2023-07-26 08:40:17.68699+07', 'system', '2023-07-26 08:40:17.686991+07', 'Xã ĐLiê Ya', '24346', 'Xã');
INSERT INTO category."Wards" VALUES (24349, 650, 'system', '2023-07-26 08:40:17.686993+07', 'system', '2023-07-26 08:40:17.686993+07', 'Xã Ea Tóh', '24349', 'Xã');
INSERT INTO category."Wards" VALUES (24352, 650, 'system', '2023-07-26 08:40:17.686995+07', 'system', '2023-07-26 08:40:17.686995+07', 'Xã Ea Tam', '24352', 'Xã');
INSERT INTO category."Wards" VALUES (24355, 650, 'system', '2023-07-26 08:40:17.686997+07', 'system', '2023-07-26 08:40:17.686997+07', 'Xã Phú Lộc', '24355', 'Xã');
INSERT INTO category."Wards" VALUES (24358, 650, 'system', '2023-07-26 08:40:17.686999+07', 'system', '2023-07-26 08:40:17.686999+07', 'Xã Tam Giang', '24358', 'Xã');
INSERT INTO category."Wards" VALUES (24359, 650, 'system', '2023-07-26 08:40:17.687001+07', 'system', '2023-07-26 08:40:17.687001+07', 'Xã Ea Puk', '24359', 'Xã');
INSERT INTO category."Wards" VALUES (24360, 650, 'system', '2023-07-26 08:40:17.687003+07', 'system', '2023-07-26 08:40:17.687003+07', 'Xã Ea Dăh', '24360', 'Xã');
INSERT INTO category."Wards" VALUES (24361, 650, 'system', '2023-07-26 08:40:17.687005+07', 'system', '2023-07-26 08:40:17.687006+07', 'Xã Ea Hồ', '24361', 'Xã');
INSERT INTO category."Wards" VALUES (24364, 650, 'system', '2023-07-26 08:40:17.687008+07', 'system', '2023-07-26 08:40:17.687008+07', 'Xã Phú Xuân', '24364', 'Xã');
INSERT INTO category."Wards" VALUES (24367, 650, 'system', '2023-07-26 08:40:17.68701+07', 'system', '2023-07-26 08:40:17.68701+07', 'Xã Cư Klông', '24367', 'Xã');
INSERT INTO category."Wards" VALUES (24370, 650, 'system', '2023-07-26 08:40:17.687012+07', 'system', '2023-07-26 08:40:17.687012+07', 'Xã Ea Tân', '24370', 'Xã');
INSERT INTO category."Wards" VALUES (24373, 651, 'system', '2023-07-26 08:40:17.687014+07', 'system', '2023-07-26 08:40:17.687014+07', 'Thị trấn Ea Kar', '24373', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24376, 651, 'system', '2023-07-26 08:40:17.687016+07', 'system', '2023-07-26 08:40:17.687016+07', 'Thị trấn Ea Knốp', '24376', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24379, 651, 'system', '2023-07-26 08:40:17.687019+07', 'system', '2023-07-26 08:40:17.687019+07', 'Xã Ea Sô', '24379', 'Xã');
INSERT INTO category."Wards" VALUES (24380, 651, 'system', '2023-07-26 08:40:17.687021+07', 'system', '2023-07-26 08:40:17.687022+07', 'Xã Ea Sar', '24380', 'Xã');
INSERT INTO category."Wards" VALUES (24382, 651, 'system', '2023-07-26 08:40:17.687024+07', 'system', '2023-07-26 08:40:17.687024+07', 'Xã Xuân Phú', '24382', 'Xã');
INSERT INTO category."Wards" VALUES (24385, 651, 'system', '2023-07-26 08:40:17.687026+07', 'system', '2023-07-26 08:40:17.687026+07', 'Xã Cư Huê', '24385', 'Xã');
INSERT INTO category."Wards" VALUES (24388, 651, 'system', '2023-07-26 08:40:17.687028+07', 'system', '2023-07-26 08:40:17.687028+07', 'Xã Ea Tih', '24388', 'Xã');
INSERT INTO category."Wards" VALUES (24391, 651, 'system', '2023-07-26 08:40:17.68703+07', 'system', '2023-07-26 08:40:17.68703+07', 'Xã Ea Đar', '24391', 'Xã');
INSERT INTO category."Wards" VALUES (24394, 651, 'system', '2023-07-26 08:40:17.687032+07', 'system', '2023-07-26 08:40:17.687032+07', 'Xã Ea Kmút', '24394', 'Xã');
INSERT INTO category."Wards" VALUES (24397, 651, 'system', '2023-07-26 08:40:17.687034+07', 'system', '2023-07-26 08:40:17.687034+07', 'Xã Cư Ni', '24397', 'Xã');
INSERT INTO category."Wards" VALUES (24400, 651, 'system', '2023-07-26 08:40:17.687036+07', 'system', '2023-07-26 08:40:17.687036+07', 'Xã Ea Păl', '24400', 'Xã');
INSERT INTO category."Wards" VALUES (24401, 651, 'system', '2023-07-26 08:40:17.687038+07', 'system', '2023-07-26 08:40:17.687038+07', 'Xã Cư Prông', '24401', 'Xã');
INSERT INTO category."Wards" VALUES (24403, 651, 'system', '2023-07-26 08:40:17.68704+07', 'system', '2023-07-26 08:40:17.68704+07', 'Xã Ea Ô', '24403', 'Xã');
INSERT INTO category."Wards" VALUES (24404, 651, 'system', '2023-07-26 08:40:17.687042+07', 'system', '2023-07-26 08:40:17.687042+07', 'Xã Cư ELang', '24404', 'Xã');
INSERT INTO category."Wards" VALUES (24406, 651, 'system', '2023-07-26 08:40:17.687044+07', 'system', '2023-07-26 08:40:17.687044+07', 'Xã Cư Bông', '24406', 'Xã');
INSERT INTO category."Wards" VALUES (24409, 651, 'system', '2023-07-26 08:40:17.687047+07', 'system', '2023-07-26 08:40:17.687047+07', 'Xã Cư Jang', '24409', 'Xã');
INSERT INTO category."Wards" VALUES (24412, 652, 'system', '2023-07-26 08:40:17.687049+07', 'system', '2023-07-26 08:40:17.687049+07', 'Thị trấn M''Đrắk', '24412', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24415, 652, 'system', '2023-07-26 08:40:17.687051+07', 'system', '2023-07-26 08:40:17.687051+07', 'Xã Cư Prao', '24415', 'Xã');
INSERT INTO category."Wards" VALUES (24418, 652, 'system', '2023-07-26 08:40:17.687053+07', 'system', '2023-07-26 08:40:17.687053+07', 'Xã Ea Pil', '24418', 'Xã');
INSERT INTO category."Wards" VALUES (24421, 652, 'system', '2023-07-26 08:40:17.687055+07', 'system', '2023-07-26 08:40:17.687055+07', 'Xã Ea Lai', '24421', 'Xã');
INSERT INTO category."Wards" VALUES (24424, 652, 'system', '2023-07-26 08:40:17.687057+07', 'system', '2023-07-26 08:40:17.687057+07', 'Xã Ea H''MLay', '24424', 'Xã');
INSERT INTO category."Wards" VALUES (24427, 652, 'system', '2023-07-26 08:40:17.687059+07', 'system', '2023-07-26 08:40:17.687059+07', 'Xã Krông Jing', '24427', 'Xã');
INSERT INTO category."Wards" VALUES (24430, 652, 'system', '2023-07-26 08:40:17.687062+07', 'system', '2023-07-26 08:40:17.687062+07', 'Xã Ea M'' Doal', '24430', 'Xã');
INSERT INTO category."Wards" VALUES (24433, 652, 'system', '2023-07-26 08:40:17.687064+07', 'system', '2023-07-26 08:40:17.687064+07', 'Xã Ea Riêng', '24433', 'Xã');
INSERT INTO category."Wards" VALUES (24436, 652, 'system', '2023-07-26 08:40:17.687066+07', 'system', '2023-07-26 08:40:17.687066+07', 'Xã Cư M''ta', '24436', 'Xã');
INSERT INTO category."Wards" VALUES (24439, 652, 'system', '2023-07-26 08:40:17.687068+07', 'system', '2023-07-26 08:40:17.687068+07', 'Xã Cư K Róa', '24439', 'Xã');
INSERT INTO category."Wards" VALUES (24442, 652, 'system', '2023-07-26 08:40:17.687079+07', 'system', '2023-07-26 08:40:17.687079+07', 'Xã Krông Á', '24442', 'Xã');
INSERT INTO category."Wards" VALUES (24444, 652, 'system', '2023-07-26 08:40:17.687081+07', 'system', '2023-07-26 08:40:17.687081+07', 'Xã Cư San', '24444', 'Xã');
INSERT INTO category."Wards" VALUES (24445, 652, 'system', '2023-07-26 08:40:17.687083+07', 'system', '2023-07-26 08:40:17.687083+07', 'Xã Ea Trang', '24445', 'Xã');
INSERT INTO category."Wards" VALUES (24448, 653, 'system', '2023-07-26 08:40:17.687085+07', 'system', '2023-07-26 08:40:17.687085+07', 'Thị trấn Krông Kmar', '24448', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24451, 653, 'system', '2023-07-26 08:40:17.687088+07', 'system', '2023-07-26 08:40:17.687088+07', 'Xã Dang Kang', '24451', 'Xã');
INSERT INTO category."Wards" VALUES (24454, 653, 'system', '2023-07-26 08:40:17.68709+07', 'system', '2023-07-26 08:40:17.68709+07', 'Xã Cư KTy', '24454', 'Xã');
INSERT INTO category."Wards" VALUES (24457, 653, 'system', '2023-07-26 08:40:17.687092+07', 'system', '2023-07-26 08:40:17.687092+07', 'Xã Hòa Thành', '24457', 'Xã');
INSERT INTO category."Wards" VALUES (24460, 653, 'system', '2023-07-26 08:40:17.687094+07', 'system', '2023-07-26 08:40:17.687094+07', 'Xã Hòa Tân', '24460', 'Xã');
INSERT INTO category."Wards" VALUES (24463, 653, 'system', '2023-07-26 08:40:17.687096+07', 'system', '2023-07-26 08:40:17.687096+07', 'Xã Hòa Phong', '24463', 'Xã');
INSERT INTO category."Wards" VALUES (24466, 653, 'system', '2023-07-26 08:40:17.687098+07', 'system', '2023-07-26 08:40:17.687098+07', 'Xã Hòa Lễ', '24466', 'Xã');
INSERT INTO category."Wards" VALUES (24469, 653, 'system', '2023-07-26 08:40:17.6871+07', 'system', '2023-07-26 08:40:17.6871+07', 'Xã Yang Reh', '24469', 'Xã');
INSERT INTO category."Wards" VALUES (24472, 653, 'system', '2023-07-26 08:40:17.687102+07', 'system', '2023-07-26 08:40:17.687102+07', 'Xã Ea Trul', '24472', 'Xã');
INSERT INTO category."Wards" VALUES (24475, 653, 'system', '2023-07-26 08:40:17.687104+07', 'system', '2023-07-26 08:40:17.687104+07', 'Xã Khuê Ngọc Điền', '24475', 'Xã');
INSERT INTO category."Wards" VALUES (24478, 653, 'system', '2023-07-26 08:40:17.687106+07', 'system', '2023-07-26 08:40:17.687107+07', 'Xã Cư Pui', '24478', 'Xã');
INSERT INTO category."Wards" VALUES (24481, 653, 'system', '2023-07-26 08:40:17.687109+07', 'system', '2023-07-26 08:40:17.687109+07', 'Xã Hòa Sơn', '24481', 'Xã');
INSERT INTO category."Wards" VALUES (24484, 653, 'system', '2023-07-26 08:40:17.687111+07', 'system', '2023-07-26 08:40:17.687112+07', 'Xã Cư Drăm', '24484', 'Xã');
INSERT INTO category."Wards" VALUES (24487, 653, 'system', '2023-07-26 08:40:17.687114+07', 'system', '2023-07-26 08:40:17.687114+07', 'Xã Yang Mao', '24487', 'Xã');
INSERT INTO category."Wards" VALUES (24490, 654, 'system', '2023-07-26 08:40:17.687116+07', 'system', '2023-07-26 08:40:17.687116+07', 'Thị trấn Phước An', '24490', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24493, 654, 'system', '2023-07-26 08:40:17.687118+07', 'system', '2023-07-26 08:40:17.687118+07', 'Xã KRông Búk', '24493', 'Xã');
INSERT INTO category."Wards" VALUES (24496, 654, 'system', '2023-07-26 08:40:17.68712+07', 'system', '2023-07-26 08:40:17.68712+07', 'Xã Ea Kly', '24496', 'Xã');
INSERT INTO category."Wards" VALUES (24499, 654, 'system', '2023-07-26 08:40:17.687122+07', 'system', '2023-07-26 08:40:17.687122+07', 'Xã Ea Kênh', '24499', 'Xã');
INSERT INTO category."Wards" VALUES (24502, 654, 'system', '2023-07-26 08:40:17.687124+07', 'system', '2023-07-26 08:40:17.687124+07', 'Xã Ea Phê', '24502', 'Xã');
INSERT INTO category."Wards" VALUES (24505, 654, 'system', '2023-07-26 08:40:17.687126+07', 'system', '2023-07-26 08:40:17.687127+07', 'Xã Ea KNuec', '24505', 'Xã');
INSERT INTO category."Wards" VALUES (24508, 654, 'system', '2023-07-26 08:40:17.687128+07', 'system', '2023-07-26 08:40:17.687129+07', 'Xã Ea Yông', '24508', 'Xã');
INSERT INTO category."Wards" VALUES (24511, 654, 'system', '2023-07-26 08:40:17.687131+07', 'system', '2023-07-26 08:40:17.687131+07', 'Xã Hòa An', '24511', 'Xã');
INSERT INTO category."Wards" VALUES (24514, 654, 'system', '2023-07-26 08:40:17.687133+07', 'system', '2023-07-26 08:40:17.687133+07', 'Xã Ea Kuăng', '24514', 'Xã');
INSERT INTO category."Wards" VALUES (24517, 654, 'system', '2023-07-26 08:40:17.687135+07', 'system', '2023-07-26 08:40:17.687135+07', 'Xã Hòa Đông', '24517', 'Xã');
INSERT INTO category."Wards" VALUES (24520, 654, 'system', '2023-07-26 08:40:17.687137+07', 'system', '2023-07-26 08:40:17.687137+07', 'Xã Ea Hiu', '24520', 'Xã');
INSERT INTO category."Wards" VALUES (24523, 654, 'system', '2023-07-26 08:40:17.687139+07', 'system', '2023-07-26 08:40:17.687139+07', 'Xã Hòa Tiến', '24523', 'Xã');
INSERT INTO category."Wards" VALUES (24526, 654, 'system', '2023-07-26 08:40:17.687141+07', 'system', '2023-07-26 08:40:17.687141+07', 'Xã Tân Tiến', '24526', 'Xã');
INSERT INTO category."Wards" VALUES (24529, 654, 'system', '2023-07-26 08:40:17.687144+07', 'system', '2023-07-26 08:40:17.687144+07', 'Xã Vụ Bổn', '24529', 'Xã');
INSERT INTO category."Wards" VALUES (24532, 654, 'system', '2023-07-26 08:40:17.687146+07', 'system', '2023-07-26 08:40:17.687146+07', 'Xã Ea Uy', '24532', 'Xã');
INSERT INTO category."Wards" VALUES (24535, 654, 'system', '2023-07-26 08:40:17.687148+07', 'system', '2023-07-26 08:40:17.687148+07', 'Xã Ea Yiêng', '24535', 'Xã');
INSERT INTO category."Wards" VALUES (24538, 655, 'system', '2023-07-26 08:40:17.68715+07', 'system', '2023-07-26 08:40:17.68715+07', 'Thị trấn Buôn Trấp', '24538', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24540, 657, 'system', '2023-07-26 08:40:17.687192+07', 'system', '2023-07-26 08:40:17.687192+07', 'Xã Ea Ning', '24540', 'Xã');
INSERT INTO category."Wards" VALUES (24541, 657, 'system', '2023-07-26 08:40:17.687194+07', 'system', '2023-07-26 08:40:17.687194+07', 'Xã Cư Ê Wi', '24541', 'Xã');
INSERT INTO category."Wards" VALUES (24544, 657, 'system', '2023-07-26 08:40:17.687196+07', 'system', '2023-07-26 08:40:17.687196+07', 'Xã Ea Ktur', '24544', 'Xã');
INSERT INTO category."Wards" VALUES (24547, 657, 'system', '2023-07-26 08:40:17.687198+07', 'system', '2023-07-26 08:40:17.687198+07', 'Xã Ea Tiêu', '24547', 'Xã');
INSERT INTO category."Wards" VALUES (24550, 657, 'system', '2023-07-26 08:40:17.6872+07', 'system', '2023-07-26 08:40:17.6872+07', 'Xã Ea BHốk', '24550', 'Xã');
INSERT INTO category."Wards" VALUES (24553, 657, 'system', '2023-07-26 08:40:17.687202+07', 'system', '2023-07-26 08:40:17.687202+07', 'Xã Ea Hu', '24553', 'Xã');
INSERT INTO category."Wards" VALUES (24556, 655, 'system', '2023-07-26 08:40:17.687152+07', 'system', '2023-07-26 08:40:17.687152+07', 'Xã Dray Sáp', '24556', 'Xã');
INSERT INTO category."Wards" VALUES (24559, 655, 'system', '2023-07-26 08:40:17.687154+07', 'system', '2023-07-26 08:40:17.687154+07', 'Xã Ea Na', '24559', 'Xã');
INSERT INTO category."Wards" VALUES (24561, 657, 'system', '2023-07-26 08:40:17.687204+07', 'system', '2023-07-26 08:40:17.687204+07', 'Xã Dray Bhăng', '24561', 'Xã');
INSERT INTO category."Wards" VALUES (24562, 657, 'system', '2023-07-26 08:40:17.687207+07', 'system', '2023-07-26 08:40:17.687207+07', 'Xã Hòa Hiệp', '24562', 'Xã');
INSERT INTO category."Wards" VALUES (24565, 655, 'system', '2023-07-26 08:40:17.687156+07', 'system', '2023-07-26 08:40:17.687156+07', 'Xã Ea Bông', '24565', 'Xã');
INSERT INTO category."Wards" VALUES (24568, 655, 'system', '2023-07-26 08:40:17.687159+07', 'system', '2023-07-26 08:40:17.687159+07', 'Xã Băng A Drênh', '24568', 'Xã');
INSERT INTO category."Wards" VALUES (24571, 655, 'system', '2023-07-26 08:40:17.687161+07', 'system', '2023-07-26 08:40:17.687161+07', 'Xã Dur KMăl', '24571', 'Xã');
INSERT INTO category."Wards" VALUES (24574, 655, 'system', '2023-07-26 08:40:17.687163+07', 'system', '2023-07-26 08:40:17.687163+07', 'Xã Bình Hòa', '24574', 'Xã');
INSERT INTO category."Wards" VALUES (24577, 655, 'system', '2023-07-26 08:40:17.687165+07', 'system', '2023-07-26 08:40:17.687165+07', 'Xã Quảng Điền', '24577', 'Xã');
INSERT INTO category."Wards" VALUES (24580, 656, 'system', '2023-07-26 08:40:17.687167+07', 'system', '2023-07-26 08:40:17.687167+07', 'Thị trấn Liên Sơn', '24580', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24583, 656, 'system', '2023-07-26 08:40:17.68717+07', 'system', '2023-07-26 08:40:17.68717+07', 'Xã Yang Tao', '24583', 'Xã');
INSERT INTO category."Wards" VALUES (24586, 656, 'system', '2023-07-26 08:40:17.687172+07', 'system', '2023-07-26 08:40:17.687172+07', 'Xã Bông Krang', '24586', 'Xã');
INSERT INTO category."Wards" VALUES (24589, 656, 'system', '2023-07-26 08:40:17.687174+07', 'system', '2023-07-26 08:40:17.687174+07', 'Xã Đắk Liêng', '24589', 'Xã');
INSERT INTO category."Wards" VALUES (24592, 656, 'system', '2023-07-26 08:40:17.687176+07', 'system', '2023-07-26 08:40:17.687176+07', 'Xã Buôn Triết', '24592', 'Xã');
INSERT INTO category."Wards" VALUES (24595, 656, 'system', '2023-07-26 08:40:17.687178+07', 'system', '2023-07-26 08:40:17.687178+07', 'Xã Buôn Tría', '24595', 'Xã');
INSERT INTO category."Wards" VALUES (24598, 656, 'system', '2023-07-26 08:40:17.68718+07', 'system', '2023-07-26 08:40:17.68718+07', 'Xã Đắk Phơi', '24598', 'Xã');
INSERT INTO category."Wards" VALUES (24601, 656, 'system', '2023-07-26 08:40:17.687182+07', 'system', '2023-07-26 08:40:17.687182+07', 'Xã Đắk Nuê', '24601', 'Xã');
INSERT INTO category."Wards" VALUES (24604, 656, 'system', '2023-07-26 08:40:17.687185+07', 'system', '2023-07-26 08:40:17.687185+07', 'Xã Krông Nô', '24604', 'Xã');
INSERT INTO category."Wards" VALUES (24607, 656, 'system', '2023-07-26 08:40:17.687188+07', 'system', '2023-07-26 08:40:17.687188+07', 'Xã Nam Ka', '24607', 'Xã');
INSERT INTO category."Wards" VALUES (24610, 656, 'system', '2023-07-26 08:40:17.68719+07', 'system', '2023-07-26 08:40:17.68719+07', 'Xã Ea R''Bin', '24610', 'Xã');
INSERT INTO category."Wards" VALUES (24611, 660, 'system', '2023-07-26 08:40:17.687209+07', 'system', '2023-07-26 08:40:17.687209+07', 'Phường Nghĩa Đức', '24611', 'Phường');
INSERT INTO category."Wards" VALUES (24612, 660, 'system', '2023-07-26 08:40:17.687211+07', 'system', '2023-07-26 08:40:17.687211+07', 'Phường Nghĩa Thành', '24612', 'Phường');
INSERT INTO category."Wards" VALUES (24614, 660, 'system', '2023-07-26 08:40:17.687213+07', 'system', '2023-07-26 08:40:17.687213+07', 'Phường Nghĩa Phú', '24614', 'Phường');
INSERT INTO category."Wards" VALUES (24615, 660, 'system', '2023-07-26 08:40:17.687216+07', 'system', '2023-07-26 08:40:17.687216+07', 'Phường Nghĩa Tân', '24615', 'Phường');
INSERT INTO category."Wards" VALUES (24616, 661, 'system', '2023-07-26 08:40:17.687227+07', 'system', '2023-07-26 08:40:17.687227+07', 'Xã Quảng Sơn', '24616', 'Xã');
INSERT INTO category."Wards" VALUES (24617, 660, 'system', '2023-07-26 08:40:17.687218+07', 'system', '2023-07-26 08:40:17.687218+07', 'Phường Nghĩa Trung', '24617', 'Phường');
INSERT INTO category."Wards" VALUES (24618, 660, 'system', '2023-07-26 08:40:17.68722+07', 'system', '2023-07-26 08:40:17.68722+07', 'Xã Đăk R''Moan', '24618', 'Xã');
INSERT INTO category."Wards" VALUES (24619, 660, 'system', '2023-07-26 08:40:17.687222+07', 'system', '2023-07-26 08:40:17.687222+07', 'Phường Quảng Thành', '24619', 'Phường');
INSERT INTO category."Wards" VALUES (24620, 661, 'system', '2023-07-26 08:40:17.687229+07', 'system', '2023-07-26 08:40:17.687229+07', 'Xã Quảng Hoà', '24620', 'Xã');
INSERT INTO category."Wards" VALUES (24622, 661, 'system', '2023-07-26 08:40:17.687231+07', 'system', '2023-07-26 08:40:17.687231+07', 'Xã Đắk Ha', '24622', 'Xã');
INSERT INTO category."Wards" VALUES (24625, 661, 'system', '2023-07-26 08:40:17.687233+07', 'system', '2023-07-26 08:40:17.687233+07', 'Xã Đắk R''Măng', '24625', 'Xã');
INSERT INTO category."Wards" VALUES (24628, 660, 'system', '2023-07-26 08:40:17.687225+07', 'system', '2023-07-26 08:40:17.687225+07', 'Xã Đắk Nia', '24628', 'Xã');
INSERT INTO category."Wards" VALUES (24631, 661, 'system', '2023-07-26 08:40:17.687235+07', 'system', '2023-07-26 08:40:17.687235+07', 'Xã Quảng Khê', '24631', 'Xã');
INSERT INTO category."Wards" VALUES (24634, 661, 'system', '2023-07-26 08:40:17.687238+07', 'system', '2023-07-26 08:40:17.687238+07', 'Xã Đắk Plao', '24634', 'Xã');
INSERT INTO category."Wards" VALUES (24637, 661, 'system', '2023-07-26 08:40:17.68724+07', 'system', '2023-07-26 08:40:17.68724+07', 'Xã Đắk Som', '24637', 'Xã');
INSERT INTO category."Wards" VALUES (24640, 662, 'system', '2023-07-26 08:40:17.687242+07', 'system', '2023-07-26 08:40:17.687242+07', 'Thị trấn Ea T''Ling', '24640', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24643, 662, 'system', '2023-07-26 08:40:17.687244+07', 'system', '2023-07-26 08:40:17.687244+07', 'Xã Đắk Wil', '24643', 'Xã');
INSERT INTO category."Wards" VALUES (24646, 662, 'system', '2023-07-26 08:40:17.687246+07', 'system', '2023-07-26 08:40:17.687246+07', 'Xã Ea Pô', '24646', 'Xã');
INSERT INTO category."Wards" VALUES (24649, 662, 'system', '2023-07-26 08:40:17.687248+07', 'system', '2023-07-26 08:40:17.687248+07', 'Xã Nam Dong', '24649', 'Xã');
INSERT INTO category."Wards" VALUES (24652, 662, 'system', '2023-07-26 08:40:17.68725+07', 'system', '2023-07-26 08:40:17.68725+07', 'Xã Đắk DRông', '24652', 'Xã');
INSERT INTO category."Wards" VALUES (24655, 662, 'system', '2023-07-26 08:40:17.687253+07', 'system', '2023-07-26 08:40:17.687253+07', 'Xã Tâm Thắng', '24655', 'Xã');
INSERT INTO category."Wards" VALUES (24658, 662, 'system', '2023-07-26 08:40:17.687255+07', 'system', '2023-07-26 08:40:17.687255+07', 'Xã Cư Knia', '24658', 'Xã');
INSERT INTO category."Wards" VALUES (24661, 662, 'system', '2023-07-26 08:40:17.687257+07', 'system', '2023-07-26 08:40:17.687257+07', 'Xã Trúc Sơn', '24661', 'Xã');
INSERT INTO category."Wards" VALUES (24664, 663, 'system', '2023-07-26 08:40:17.687259+07', 'system', '2023-07-26 08:40:17.687259+07', 'Thị trấn Đắk Mil', '24664', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24667, 663, 'system', '2023-07-26 08:40:17.687261+07', 'system', '2023-07-26 08:40:17.687262+07', 'Xã  Đắk Lao', '24667', 'Xã');
INSERT INTO category."Wards" VALUES (24670, 663, 'system', '2023-07-26 08:40:17.687264+07', 'system', '2023-07-26 08:40:17.687264+07', 'Xã Đắk R''La', '24670', 'Xã');
INSERT INTO category."Wards" VALUES (24673, 663, 'system', '2023-07-26 08:40:17.687267+07', 'system', '2023-07-26 08:40:17.687267+07', 'Xã Đắk Gằn', '24673', 'Xã');
INSERT INTO category."Wards" VALUES (24676, 663, 'system', '2023-07-26 08:40:17.687269+07', 'system', '2023-07-26 08:40:17.687269+07', 'Xã Đức Mạnh', '24676', 'Xã');
INSERT INTO category."Wards" VALUES (24677, 663, 'system', '2023-07-26 08:40:17.687271+07', 'system', '2023-07-26 08:40:17.687271+07', 'Xã Đắk N''Drót', '24677', 'Xã');
INSERT INTO category."Wards" VALUES (24678, 663, 'system', '2023-07-26 08:40:17.687273+07', 'system', '2023-07-26 08:40:17.687273+07', 'Xã Long Sơn', '24678', 'Xã');
INSERT INTO category."Wards" VALUES (24679, 663, 'system', '2023-07-26 08:40:17.687276+07', 'system', '2023-07-26 08:40:17.687276+07', 'Xã Đắk Sắk', '24679', 'Xã');
INSERT INTO category."Wards" VALUES (24682, 663, 'system', '2023-07-26 08:40:17.687278+07', 'system', '2023-07-26 08:40:17.687278+07', 'Xã Thuận An', '24682', 'Xã');
INSERT INTO category."Wards" VALUES (24685, 663, 'system', '2023-07-26 08:40:17.68728+07', 'system', '2023-07-26 08:40:17.68728+07', 'Xã Đức Minh', '24685', 'Xã');
INSERT INTO category."Wards" VALUES (24688, 664, 'system', '2023-07-26 08:40:17.687282+07', 'system', '2023-07-26 08:40:17.687282+07', 'Thị trấn Đắk Mâm', '24688', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24691, 664, 'system', '2023-07-26 08:40:17.687284+07', 'system', '2023-07-26 08:40:17.687285+07', 'Xã Đắk Sôr', '24691', 'Xã');
INSERT INTO category."Wards" VALUES (24692, 664, 'system', '2023-07-26 08:40:17.687287+07', 'system', '2023-07-26 08:40:17.687287+07', 'Xã Nam Xuân', '24692', 'Xã');
INSERT INTO category."Wards" VALUES (24694, 664, 'system', '2023-07-26 08:40:17.687289+07', 'system', '2023-07-26 08:40:17.687289+07', 'Xã Buôn Choah', '24694', 'Xã');
INSERT INTO category."Wards" VALUES (24697, 664, 'system', '2023-07-26 08:40:17.687291+07', 'system', '2023-07-26 08:40:17.687291+07', 'Xã Nam Đà', '24697', 'Xã');
INSERT INTO category."Wards" VALUES (24699, 664, 'system', '2023-07-26 08:40:17.687293+07', 'system', '2023-07-26 08:40:17.687293+07', 'Xã Tân Thành', '24699', 'Xã');
INSERT INTO category."Wards" VALUES (24700, 664, 'system', '2023-07-26 08:40:17.687295+07', 'system', '2023-07-26 08:40:17.687295+07', 'Xã Đắk Drô', '24700', 'Xã');
INSERT INTO category."Wards" VALUES (24703, 664, 'system', '2023-07-26 08:40:17.687297+07', 'system', '2023-07-26 08:40:17.687297+07', 'Xã Nâm Nung', '24703', 'Xã');
INSERT INTO category."Wards" VALUES (24706, 664, 'system', '2023-07-26 08:40:17.687299+07', 'system', '2023-07-26 08:40:17.687299+07', 'Xã Đức Xuyên', '24706', 'Xã');
INSERT INTO category."Wards" VALUES (24709, 664, 'system', '2023-07-26 08:40:17.687302+07', 'system', '2023-07-26 08:40:17.687302+07', 'Xã Đắk Nang', '24709', 'Xã');
INSERT INTO category."Wards" VALUES (24712, 664, 'system', '2023-07-26 08:40:17.687304+07', 'system', '2023-07-26 08:40:17.687304+07', 'Xã Quảng Phú', '24712', 'Xã');
INSERT INTO category."Wards" VALUES (24715, 664, 'system', '2023-07-26 08:40:17.687306+07', 'system', '2023-07-26 08:40:17.687306+07', 'Xã Nâm N''Đir', '24715', 'Xã');
INSERT INTO category."Wards" VALUES (24717, 665, 'system', '2023-07-26 08:40:17.687308+07', 'system', '2023-07-26 08:40:17.687308+07', 'Thị trấn Đức An', '24717', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24718, 665, 'system', '2023-07-26 08:40:17.68731+07', 'system', '2023-07-26 08:40:17.68731+07', 'Xã Đắk Môl', '24718', 'Xã');
INSERT INTO category."Wards" VALUES (24719, 665, 'system', '2023-07-26 08:40:17.687312+07', 'system', '2023-07-26 08:40:17.687313+07', 'Xã Đắk Hòa', '24719', 'Xã');
INSERT INTO category."Wards" VALUES (24721, 665, 'system', '2023-07-26 08:40:17.687315+07', 'system', '2023-07-26 08:40:17.687315+07', 'Xã Nam Bình', '24721', 'Xã');
INSERT INTO category."Wards" VALUES (24722, 665, 'system', '2023-07-26 08:40:17.687317+07', 'system', '2023-07-26 08:40:17.687317+07', 'Xã Thuận Hà', '24722', 'Xã');
INSERT INTO category."Wards" VALUES (24724, 665, 'system', '2023-07-26 08:40:17.687319+07', 'system', '2023-07-26 08:40:17.687319+07', 'Xã Thuận Hạnh', '24724', 'Xã');
INSERT INTO category."Wards" VALUES (24727, 665, 'system', '2023-07-26 08:40:17.687321+07', 'system', '2023-07-26 08:40:17.687321+07', 'Xã Đắk N''Dung', '24727', 'Xã');
INSERT INTO category."Wards" VALUES (24728, 665, 'system', '2023-07-26 08:40:17.687323+07', 'system', '2023-07-26 08:40:17.687323+07', 'Xã Nâm N''Jang', '24728', 'Xã');
INSERT INTO category."Wards" VALUES (24730, 665, 'system', '2023-07-26 08:40:17.687325+07', 'system', '2023-07-26 08:40:17.687325+07', 'Xã Trường Xuân', '24730', 'Xã');
INSERT INTO category."Wards" VALUES (24733, 666, 'system', '2023-07-26 08:40:17.687328+07', 'system', '2023-07-26 08:40:17.687328+07', 'Thị trấn Kiến Đức', '24733', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24736, 667, 'system', '2023-07-26 08:40:17.687352+07', 'system', '2023-07-26 08:40:17.687352+07', 'Xã Quảng Trực', '24736', 'Xã');
INSERT INTO category."Wards" VALUES (24739, 667, 'system', '2023-07-26 08:40:17.687354+07', 'system', '2023-07-26 08:40:17.687355+07', 'Xã Đắk Búk So', '24739', 'Xã');
INSERT INTO category."Wards" VALUES (24740, 667, 'system', '2023-07-26 08:40:17.687357+07', 'system', '2023-07-26 08:40:17.687357+07', 'Xã Quảng Tâm', '24740', 'Xã');
INSERT INTO category."Wards" VALUES (24742, 667, 'system', '2023-07-26 08:40:17.687359+07', 'system', '2023-07-26 08:40:17.687359+07', 'Xã Đắk R''Tíh', '24742', 'Xã');
INSERT INTO category."Wards" VALUES (24745, 666, 'system', '2023-07-26 08:40:17.68733+07', 'system', '2023-07-26 08:40:17.68733+07', 'Xã Quảng Tín', '24745', 'Xã');
INSERT INTO category."Wards" VALUES (24746, 667, 'system', '2023-07-26 08:40:17.687361+07', 'system', '2023-07-26 08:40:17.687361+07', 'Xã Đắk Ngo', '24746', 'Xã');
INSERT INTO category."Wards" VALUES (24748, 667, 'system', '2023-07-26 08:40:17.687363+07', 'system', '2023-07-26 08:40:17.687363+07', 'Xã Quảng Tân', '24748', 'Xã');
INSERT INTO category."Wards" VALUES (24750, 666, 'system', '2023-07-26 08:40:17.687332+07', 'system', '2023-07-26 08:40:17.687332+07', 'Xã Đắk Wer', '24750', 'Xã');
INSERT INTO category."Wards" VALUES (24751, 666, 'system', '2023-07-26 08:40:17.687334+07', 'system', '2023-07-26 08:40:17.687334+07', 'Xã Nhân Cơ', '24751', 'Xã');
INSERT INTO category."Wards" VALUES (24754, 666, 'system', '2023-07-26 08:40:17.687336+07', 'system', '2023-07-26 08:40:17.687337+07', 'Xã Kiến Thành', '24754', 'Xã');
INSERT INTO category."Wards" VALUES (24756, 666, 'system', '2023-07-26 08:40:17.687339+07', 'system', '2023-07-26 08:40:17.687339+07', 'Xã Nghĩa Thắng', '24756', 'Xã');
INSERT INTO category."Wards" VALUES (24757, 666, 'system', '2023-07-26 08:40:17.687341+07', 'system', '2023-07-26 08:40:17.687341+07', 'Xã Đạo Nghĩa', '24757', 'Xã');
INSERT INTO category."Wards" VALUES (24760, 666, 'system', '2023-07-26 08:40:17.687343+07', 'system', '2023-07-26 08:40:17.687343+07', 'Xã Đắk Sin', '24760', 'Xã');
INSERT INTO category."Wards" VALUES (24761, 666, 'system', '2023-07-26 08:40:17.687346+07', 'system', '2023-07-26 08:40:17.687346+07', 'Xã Hưng Bình', '24761', 'Xã');
INSERT INTO category."Wards" VALUES (24763, 666, 'system', '2023-07-26 08:40:17.687348+07', 'system', '2023-07-26 08:40:17.687348+07', 'Xã Đắk Ru', '24763', 'Xã');
INSERT INTO category."Wards" VALUES (24766, 666, 'system', '2023-07-26 08:40:17.68735+07', 'system', '2023-07-26 08:40:17.68735+07', 'Xã Nhân Đạo', '24766', 'Xã');
INSERT INTO category."Wards" VALUES (24769, 672, 'system', '2023-07-26 08:40:17.687365+07', 'system', '2023-07-26 08:40:17.687365+07', 'Phường 7', '24769', 'Phường');
INSERT INTO category."Wards" VALUES (24772, 672, 'system', '2023-07-26 08:40:17.687367+07', 'system', '2023-07-26 08:40:17.687367+07', 'Phường 8', '24772', 'Phường');
INSERT INTO category."Wards" VALUES (24775, 672, 'system', '2023-07-26 08:40:17.687369+07', 'system', '2023-07-26 08:40:17.687369+07', 'Phường 12', '24775', 'Phường');
INSERT INTO category."Wards" VALUES (24778, 672, 'system', '2023-07-26 08:40:17.687372+07', 'system', '2023-07-26 08:40:17.687372+07', 'Phường 9', '24778', 'Phường');
INSERT INTO category."Wards" VALUES (24781, 672, 'system', '2023-07-26 08:40:17.687374+07', 'system', '2023-07-26 08:40:17.687374+07', 'Phường 2', '24781', 'Phường');
INSERT INTO category."Wards" VALUES (24784, 672, 'system', '2023-07-26 08:40:17.687376+07', 'system', '2023-07-26 08:40:17.687376+07', 'Phường 1', '24784', 'Phường');
INSERT INTO category."Wards" VALUES (24787, 672, 'system', '2023-07-26 08:40:17.687378+07', 'system', '2023-07-26 08:40:17.687378+07', 'Phường 6', '24787', 'Phường');
INSERT INTO category."Wards" VALUES (24790, 672, 'system', '2023-07-26 08:40:17.68738+07', 'system', '2023-07-26 08:40:17.68738+07', 'Phường 5', '24790', 'Phường');
INSERT INTO category."Wards" VALUES (24793, 672, 'system', '2023-07-26 08:40:17.687382+07', 'system', '2023-07-26 08:40:17.687382+07', 'Phường 4', '24793', 'Phường');
INSERT INTO category."Wards" VALUES (24796, 672, 'system', '2023-07-26 08:40:17.687385+07', 'system', '2023-07-26 08:40:17.687385+07', 'Phường 10', '24796', 'Phường');
INSERT INTO category."Wards" VALUES (24799, 672, 'system', '2023-07-26 08:40:17.687387+07', 'system', '2023-07-26 08:40:17.687387+07', 'Phường 11', '24799', 'Phường');
INSERT INTO category."Wards" VALUES (24802, 672, 'system', '2023-07-26 08:40:17.687389+07', 'system', '2023-07-26 08:40:17.687389+07', 'Phường 3', '24802', 'Phường');
INSERT INTO category."Wards" VALUES (24805, 672, 'system', '2023-07-26 08:40:17.687391+07', 'system', '2023-07-26 08:40:17.687391+07', 'Xã Xuân Thọ', '24805', 'Xã');
INSERT INTO category."Wards" VALUES (24808, 672, 'system', '2023-07-26 08:40:17.687393+07', 'system', '2023-07-26 08:40:17.687393+07', 'Xã Tà Nung', '24808', 'Xã');
INSERT INTO category."Wards" VALUES (24810, 672, 'system', '2023-07-26 08:40:17.687396+07', 'system', '2023-07-26 08:40:17.687396+07', 'Xã Trạm Hành', '24810', 'Xã');
INSERT INTO category."Wards" VALUES (24811, 672, 'system', '2023-07-26 08:40:17.687398+07', 'system', '2023-07-26 08:40:17.687398+07', 'Xã Xuân Trường', '24811', 'Xã');
INSERT INTO category."Wards" VALUES (24814, 673, 'system', '2023-07-26 08:40:17.6874+07', 'system', '2023-07-26 08:40:17.6874+07', 'Phường Lộc Phát', '24814', 'Phường');
INSERT INTO category."Wards" VALUES (24817, 673, 'system', '2023-07-26 08:40:17.687403+07', 'system', '2023-07-26 08:40:17.687403+07', 'Phường Lộc Tiến', '24817', 'Phường');
INSERT INTO category."Wards" VALUES (24820, 673, 'system', '2023-07-26 08:40:17.687405+07', 'system', '2023-07-26 08:40:17.687405+07', 'Phường 2', '24820', 'Phường');
INSERT INTO category."Wards" VALUES (24823, 673, 'system', '2023-07-26 08:40:17.687407+07', 'system', '2023-07-26 08:40:17.687407+07', 'Phường 1', '24823', 'Phường');
INSERT INTO category."Wards" VALUES (24826, 673, 'system', '2023-07-26 08:40:17.687409+07', 'system', '2023-07-26 08:40:17.687409+07', 'Phường B''lao', '24826', 'Phường');
INSERT INTO category."Wards" VALUES (24829, 673, 'system', '2023-07-26 08:40:17.687411+07', 'system', '2023-07-26 08:40:17.687411+07', 'Phường Lộc Sơn', '24829', 'Phường');
INSERT INTO category."Wards" VALUES (24832, 673, 'system', '2023-07-26 08:40:17.687414+07', 'system', '2023-07-26 08:40:17.687414+07', 'Xã Đạm Bri', '24832', 'Xã');
INSERT INTO category."Wards" VALUES (24835, 673, 'system', '2023-07-26 08:40:17.687416+07', 'system', '2023-07-26 08:40:17.687416+07', 'Xã Lộc Thanh', '24835', 'Xã');
INSERT INTO category."Wards" VALUES (24838, 673, 'system', '2023-07-26 08:40:17.687418+07', 'system', '2023-07-26 08:40:17.687418+07', 'Xã Lộc Nga', '24838', 'Xã');
INSERT INTO category."Wards" VALUES (24841, 673, 'system', '2023-07-26 08:40:17.68742+07', 'system', '2023-07-26 08:40:17.68742+07', 'Xã Lộc Châu', '24841', 'Xã');
INSERT INTO category."Wards" VALUES (24844, 673, 'system', '2023-07-26 08:40:17.687422+07', 'system', '2023-07-26 08:40:17.687422+07', 'Xã Đại Lào', '24844', 'Xã');
INSERT INTO category."Wards" VALUES (24846, 675, 'system', '2023-07-26 08:40:17.687443+07', 'system', '2023-07-26 08:40:17.687443+07', 'Thị trấn Lạc Dương', '24846', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24847, 675, 'system', '2023-07-26 08:40:17.687445+07', 'system', '2023-07-26 08:40:17.687445+07', 'Xã Đạ Chais', '24847', 'Xã');
INSERT INTO category."Wards" VALUES (24848, 675, 'system', '2023-07-26 08:40:17.687447+07', 'system', '2023-07-26 08:40:17.687447+07', 'Xã Đạ Nhim', '24848', 'Xã');
INSERT INTO category."Wards" VALUES (24850, 675, 'system', '2023-07-26 08:40:17.687449+07', 'system', '2023-07-26 08:40:17.687449+07', 'Xã Đưng KNớ', '24850', 'Xã');
INSERT INTO category."Wards" VALUES (24853, 674, 'system', '2023-07-26 08:40:17.687425+07', 'system', '2023-07-26 08:40:17.687425+07', 'Xã Đạ Tông', '24853', 'Xã');
INSERT INTO category."Wards" VALUES (24856, 674, 'system', '2023-07-26 08:40:17.687428+07', 'system', '2023-07-26 08:40:17.687428+07', 'Xã Đạ Long', '24856', 'Xã');
INSERT INTO category."Wards" VALUES (24859, 674, 'system', '2023-07-26 08:40:17.68743+07', 'system', '2023-07-26 08:40:17.68743+07', 'Xã Đạ M'' Rong', '24859', 'Xã');
INSERT INTO category."Wards" VALUES (24862, 675, 'system', '2023-07-26 08:40:17.687452+07', 'system', '2023-07-26 08:40:17.687452+07', 'Xã Lát', '24862', 'Xã');
INSERT INTO category."Wards" VALUES (24865, 675, 'system', '2023-07-26 08:40:17.687454+07', 'system', '2023-07-26 08:40:17.687454+07', 'Xã Đạ Sar', '24865', 'Xã');
INSERT INTO category."Wards" VALUES (24868, 676, 'system', '2023-07-26 08:40:17.687456+07', 'system', '2023-07-26 08:40:17.687456+07', 'Thị trấn Nam Ban', '24868', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24871, 676, 'system', '2023-07-26 08:40:17.687458+07', 'system', '2023-07-26 08:40:17.687458+07', 'Thị trấn Đinh Văn', '24871', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24874, 674, 'system', '2023-07-26 08:40:17.687432+07', 'system', '2023-07-26 08:40:17.687432+07', 'Xã Liêng Srônh', '24874', 'Xã');
INSERT INTO category."Wards" VALUES (24875, 674, 'system', '2023-07-26 08:40:17.687434+07', 'system', '2023-07-26 08:40:17.687434+07', 'Xã Đạ Rsal', '24875', 'Xã');
INSERT INTO category."Wards" VALUES (24877, 674, 'system', '2023-07-26 08:40:17.687436+07', 'system', '2023-07-26 08:40:17.687436+07', 'Xã Rô Men', '24877', 'Xã');
INSERT INTO category."Wards" VALUES (24880, 676, 'system', '2023-07-26 08:40:17.687461+07', 'system', '2023-07-26 08:40:17.687461+07', 'Xã Phú Sơn', '24880', 'Xã');
INSERT INTO category."Wards" VALUES (24883, 676, 'system', '2023-07-26 08:40:17.687463+07', 'system', '2023-07-26 08:40:17.687463+07', 'Xã Phi Tô', '24883', 'Xã');
INSERT INTO category."Wards" VALUES (24886, 674, 'system', '2023-07-26 08:40:17.687438+07', 'system', '2023-07-26 08:40:17.687439+07', 'Xã Phi Liêng', '24886', 'Xã');
INSERT INTO category."Wards" VALUES (24889, 674, 'system', '2023-07-26 08:40:17.687441+07', 'system', '2023-07-26 08:40:17.687441+07', 'Xã Đạ K'' Nàng', '24889', 'Xã');
INSERT INTO category."Wards" VALUES (24892, 676, 'system', '2023-07-26 08:40:17.687465+07', 'system', '2023-07-26 08:40:17.687465+07', 'Xã Mê Linh', '24892', 'Xã');
INSERT INTO category."Wards" VALUES (24895, 676, 'system', '2023-07-26 08:40:17.687467+07', 'system', '2023-07-26 08:40:17.687467+07', 'Xã Đạ Đờn', '24895', 'Xã');
INSERT INTO category."Wards" VALUES (24898, 676, 'system', '2023-07-26 08:40:17.687469+07', 'system', '2023-07-26 08:40:17.687469+07', 'Xã Phúc Thọ', '24898', 'Xã');
INSERT INTO category."Wards" VALUES (24901, 676, 'system', '2023-07-26 08:40:17.687472+07', 'system', '2023-07-26 08:40:17.687472+07', 'Xã Đông Thanh', '24901', 'Xã');
INSERT INTO category."Wards" VALUES (24904, 676, 'system', '2023-07-26 08:40:17.687474+07', 'system', '2023-07-26 08:40:17.687474+07', 'Xã Gia Lâm', '24904', 'Xã');
INSERT INTO category."Wards" VALUES (24907, 676, 'system', '2023-07-26 08:40:17.687476+07', 'system', '2023-07-26 08:40:17.687476+07', 'Xã Tân Thanh', '24907', 'Xã');
INSERT INTO category."Wards" VALUES (24910, 676, 'system', '2023-07-26 08:40:17.687478+07', 'system', '2023-07-26 08:40:17.687478+07', 'Xã Tân Văn', '24910', 'Xã');
INSERT INTO category."Wards" VALUES (24913, 676, 'system', '2023-07-26 08:40:17.68748+07', 'system', '2023-07-26 08:40:17.68748+07', 'Xã Hoài Đức', '24913', 'Xã');
INSERT INTO category."Wards" VALUES (24916, 676, 'system', '2023-07-26 08:40:17.687482+07', 'system', '2023-07-26 08:40:17.687482+07', 'Xã Tân Hà', '24916', 'Xã');
INSERT INTO category."Wards" VALUES (24919, 676, 'system', '2023-07-26 08:40:17.687484+07', 'system', '2023-07-26 08:40:17.687484+07', 'Xã Liên Hà', '24919', 'Xã');
INSERT INTO category."Wards" VALUES (24922, 676, 'system', '2023-07-26 08:40:17.687486+07', 'system', '2023-07-26 08:40:17.687487+07', 'Xã Đan Phượng', '24922', 'Xã');
INSERT INTO category."Wards" VALUES (24925, 676, 'system', '2023-07-26 08:40:17.687489+07', 'system', '2023-07-26 08:40:17.687489+07', 'Xã Nam Hà', '24925', 'Xã');
INSERT INTO category."Wards" VALUES (24928, 677, 'system', '2023-07-26 08:40:17.687491+07', 'system', '2023-07-26 08:40:17.687491+07', 'Thị trấn D''Ran', '24928', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24931, 677, 'system', '2023-07-26 08:40:17.687493+07', 'system', '2023-07-26 08:40:17.687493+07', 'Thị trấn Thạnh Mỹ', '24931', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24934, 677, 'system', '2023-07-26 08:40:17.687495+07', 'system', '2023-07-26 08:40:17.687495+07', 'Xã Lạc Xuân', '24934', 'Xã');
INSERT INTO category."Wards" VALUES (24937, 677, 'system', '2023-07-26 08:40:17.687498+07', 'system', '2023-07-26 08:40:17.687498+07', 'Xã Đạ Ròn', '24937', 'Xã');
INSERT INTO category."Wards" VALUES (24940, 677, 'system', '2023-07-26 08:40:17.6875+07', 'system', '2023-07-26 08:40:17.6875+07', 'Xã Lạc Lâm', '24940', 'Xã');
INSERT INTO category."Wards" VALUES (24943, 677, 'system', '2023-07-26 08:40:17.687502+07', 'system', '2023-07-26 08:40:17.687502+07', 'Xã Ka Đô', '24943', 'Xã');
INSERT INTO category."Wards" VALUES (24946, 677, 'system', '2023-07-26 08:40:17.687504+07', 'system', '2023-07-26 08:40:17.687504+07', 'Xã Quảng Lập', '24946', 'Xã');
INSERT INTO category."Wards" VALUES (24949, 677, 'system', '2023-07-26 08:40:17.687507+07', 'system', '2023-07-26 08:40:17.687507+07', 'Xã Ka Đơn', '24949', 'Xã');
INSERT INTO category."Wards" VALUES (24952, 677, 'system', '2023-07-26 08:40:17.687509+07', 'system', '2023-07-26 08:40:17.687509+07', 'Xã Tu Tra', '24952', 'Xã');
INSERT INTO category."Wards" VALUES (24955, 677, 'system', '2023-07-26 08:40:17.687512+07', 'system', '2023-07-26 08:40:17.687512+07', 'Xã Pró', '24955', 'Xã');
INSERT INTO category."Wards" VALUES (24958, 678, 'system', '2023-07-26 08:40:17.687516+07', 'system', '2023-07-26 08:40:17.687516+07', 'Thị trấn Liên Nghĩa', '24958', 'Thị trấn');
INSERT INTO category."Wards" VALUES (24961, 678, 'system', '2023-07-26 08:40:17.68752+07', 'system', '2023-07-26 08:40:17.68752+07', 'Xã Hiệp An', '24961', 'Xã');
INSERT INTO category."Wards" VALUES (24964, 678, 'system', '2023-07-26 08:40:17.687523+07', 'system', '2023-07-26 08:40:17.687523+07', 'Xã Liên Hiệp', '24964', 'Xã');
INSERT INTO category."Wards" VALUES (24967, 678, 'system', '2023-07-26 08:40:17.687527+07', 'system', '2023-07-26 08:40:17.687527+07', 'Xã Hiệp Thạnh', '24967', 'Xã');
INSERT INTO category."Wards" VALUES (24970, 678, 'system', '2023-07-26 08:40:17.687531+07', 'system', '2023-07-26 08:40:17.687531+07', 'Xã Bình Thạnh', '24970', 'Xã');
INSERT INTO category."Wards" VALUES (24973, 678, 'system', '2023-07-26 08:40:17.687534+07', 'system', '2023-07-26 08:40:17.687534+07', 'Xã N''Thol Hạ', '24973', 'Xã');
INSERT INTO category."Wards" VALUES (24976, 678, 'system', '2023-07-26 08:40:17.687536+07', 'system', '2023-07-26 08:40:17.687536+07', 'Xã Tân Hội', '24976', 'Xã');
INSERT INTO category."Wards" VALUES (24979, 678, 'system', '2023-07-26 08:40:17.687538+07', 'system', '2023-07-26 08:40:17.687538+07', 'Xã Tân Thành', '24979', 'Xã');
INSERT INTO category."Wards" VALUES (24982, 678, 'system', '2023-07-26 08:40:17.68754+07', 'system', '2023-07-26 08:40:17.687541+07', 'Xã Phú Hội', '24982', 'Xã');
INSERT INTO category."Wards" VALUES (24985, 678, 'system', '2023-07-26 08:40:17.687542+07', 'system', '2023-07-26 08:40:17.687542+07', 'Xã Ninh Gia', '24985', 'Xã');
INSERT INTO category."Wards" VALUES (24988, 678, 'system', '2023-07-26 08:40:17.687544+07', 'system', '2023-07-26 08:40:17.687545+07', 'Xã Tà Năng', '24988', 'Xã');
INSERT INTO category."Wards" VALUES (24989, 678, 'system', '2023-07-26 08:40:17.687547+07', 'system', '2023-07-26 08:40:17.687547+07', 'Xã Đa Quyn', '24989', 'Xã');
INSERT INTO category."Wards" VALUES (24991, 678, 'system', '2023-07-26 08:40:17.687549+07', 'system', '2023-07-26 08:40:17.687549+07', 'Xã Tà Hine', '24991', 'Xã');
INSERT INTO category."Wards" VALUES (24994, 678, 'system', '2023-07-26 08:40:17.687551+07', 'system', '2023-07-26 08:40:17.687551+07', 'Xã Đà Loan', '24994', 'Xã');
INSERT INTO category."Wards" VALUES (24997, 678, 'system', '2023-07-26 08:40:17.687553+07', 'system', '2023-07-26 08:40:17.687553+07', 'Xã Ninh Loan', '24997', 'Xã');
INSERT INTO category."Wards" VALUES (25000, 679, 'system', '2023-07-26 08:40:17.687555+07', 'system', '2023-07-26 08:40:17.687555+07', 'Thị trấn Di Linh', '25000', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25003, 679, 'system', '2023-07-26 08:40:17.687558+07', 'system', '2023-07-26 08:40:17.687558+07', 'Xã Đinh Trang Thượng', '25003', 'Xã');
INSERT INTO category."Wards" VALUES (25006, 679, 'system', '2023-07-26 08:40:17.68756+07', 'system', '2023-07-26 08:40:17.68756+07', 'Xã Tân Thượng', '25006', 'Xã');
INSERT INTO category."Wards" VALUES (25007, 679, 'system', '2023-07-26 08:40:17.687562+07', 'system', '2023-07-26 08:40:17.687562+07', 'Xã Tân Lâm', '25007', 'Xã');
INSERT INTO category."Wards" VALUES (25009, 679, 'system', '2023-07-26 08:40:17.687564+07', 'system', '2023-07-26 08:40:17.687564+07', 'Xã Tân Châu', '25009', 'Xã');
INSERT INTO category."Wards" VALUES (25012, 679, 'system', '2023-07-26 08:40:17.687566+07', 'system', '2023-07-26 08:40:17.687566+07', 'Xã Tân Nghĩa', '25012', 'Xã');
INSERT INTO category."Wards" VALUES (25015, 679, 'system', '2023-07-26 08:40:17.687568+07', 'system', '2023-07-26 08:40:17.687568+07', 'Xã Gia Hiệp', '25015', 'Xã');
INSERT INTO category."Wards" VALUES (25018, 679, 'system', '2023-07-26 08:40:17.687571+07', 'system', '2023-07-26 08:40:17.687571+07', 'Xã Đinh Lạc', '25018', 'Xã');
INSERT INTO category."Wards" VALUES (25021, 679, 'system', '2023-07-26 08:40:17.687573+07', 'system', '2023-07-26 08:40:17.687573+07', 'Xã Tam Bố', '25021', 'Xã');
INSERT INTO category."Wards" VALUES (25024, 679, 'system', '2023-07-26 08:40:17.687575+07', 'system', '2023-07-26 08:40:17.687575+07', 'Xã Đinh Trang Hòa', '25024', 'Xã');
INSERT INTO category."Wards" VALUES (25027, 679, 'system', '2023-07-26 08:40:17.687577+07', 'system', '2023-07-26 08:40:17.687577+07', 'Xã Liên Đầm', '25027', 'Xã');
INSERT INTO category."Wards" VALUES (25030, 679, 'system', '2023-07-26 08:40:17.68758+07', 'system', '2023-07-26 08:40:17.68758+07', 'Xã Gung Ré', '25030', 'Xã');
INSERT INTO category."Wards" VALUES (25033, 679, 'system', '2023-07-26 08:40:17.687582+07', 'system', '2023-07-26 08:40:17.687582+07', 'Xã Bảo Thuận', '25033', 'Xã');
INSERT INTO category."Wards" VALUES (25036, 679, 'system', '2023-07-26 08:40:17.687584+07', 'system', '2023-07-26 08:40:17.687584+07', 'Xã Hòa Ninh', '25036', 'Xã');
INSERT INTO category."Wards" VALUES (25039, 679, 'system', '2023-07-26 08:40:17.687586+07', 'system', '2023-07-26 08:40:17.687586+07', 'Xã Hòa Trung', '25039', 'Xã');
INSERT INTO category."Wards" VALUES (25042, 679, 'system', '2023-07-26 08:40:17.687588+07', 'system', '2023-07-26 08:40:17.687588+07', 'Xã Hòa Nam', '25042', 'Xã');
INSERT INTO category."Wards" VALUES (25045, 679, 'system', '2023-07-26 08:40:17.68759+07', 'system', '2023-07-26 08:40:17.68759+07', 'Xã Hòa Bắc', '25045', 'Xã');
INSERT INTO category."Wards" VALUES (25048, 679, 'system', '2023-07-26 08:40:17.687592+07', 'system', '2023-07-26 08:40:17.687592+07', 'Xã Sơn Điền', '25048', 'Xã');
INSERT INTO category."Wards" VALUES (25051, 679, 'system', '2023-07-26 08:40:17.687596+07', 'system', '2023-07-26 08:40:17.687596+07', 'Xã Gia Bắc', '25051', 'Xã');
INSERT INTO category."Wards" VALUES (25054, 680, 'system', '2023-07-26 08:40:17.687598+07', 'system', '2023-07-26 08:40:17.687598+07', 'Thị trấn Lộc Thắng', '25054', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25057, 680, 'system', '2023-07-26 08:40:17.68761+07', 'system', '2023-07-26 08:40:17.68761+07', 'Xã Lộc Bảo', '25057', 'Xã');
INSERT INTO category."Wards" VALUES (25060, 680, 'system', '2023-07-26 08:40:17.687612+07', 'system', '2023-07-26 08:40:17.687612+07', 'Xã Lộc Lâm', '25060', 'Xã');
INSERT INTO category."Wards" VALUES (25063, 680, 'system', '2023-07-26 08:40:17.687614+07', 'system', '2023-07-26 08:40:17.687615+07', 'Xã Lộc Phú', '25063', 'Xã');
INSERT INTO category."Wards" VALUES (25066, 680, 'system', '2023-07-26 08:40:17.687617+07', 'system', '2023-07-26 08:40:17.687617+07', 'Xã Lộc Bắc', '25066', 'Xã');
INSERT INTO category."Wards" VALUES (25069, 680, 'system', '2023-07-26 08:40:17.687619+07', 'system', '2023-07-26 08:40:17.687619+07', 'Xã B'' Lá', '25069', 'Xã');
INSERT INTO category."Wards" VALUES (25072, 680, 'system', '2023-07-26 08:40:17.687621+07', 'system', '2023-07-26 08:40:17.687621+07', 'Xã Lộc Ngãi', '25072', 'Xã');
INSERT INTO category."Wards" VALUES (25075, 680, 'system', '2023-07-26 08:40:17.687623+07', 'system', '2023-07-26 08:40:17.687623+07', 'Xã Lộc Quảng', '25075', 'Xã');
INSERT INTO category."Wards" VALUES (25078, 680, 'system', '2023-07-26 08:40:17.687625+07', 'system', '2023-07-26 08:40:17.687625+07', 'Xã Lộc Tân', '25078', 'Xã');
INSERT INTO category."Wards" VALUES (25081, 680, 'system', '2023-07-26 08:40:17.687627+07', 'system', '2023-07-26 08:40:17.687627+07', 'Xã Lộc Đức', '25081', 'Xã');
INSERT INTO category."Wards" VALUES (25084, 680, 'system', '2023-07-26 08:40:17.687629+07', 'system', '2023-07-26 08:40:17.687629+07', 'Xã Lộc An', '25084', 'Xã');
INSERT INTO category."Wards" VALUES (25087, 680, 'system', '2023-07-26 08:40:17.687632+07', 'system', '2023-07-26 08:40:17.687632+07', 'Xã Tân Lạc', '25087', 'Xã');
INSERT INTO category."Wards" VALUES (25090, 680, 'system', '2023-07-26 08:40:17.687634+07', 'system', '2023-07-26 08:40:17.687634+07', 'Xã Lộc Thành', '25090', 'Xã');
INSERT INTO category."Wards" VALUES (25093, 680, 'system', '2023-07-26 08:40:17.687636+07', 'system', '2023-07-26 08:40:17.687636+07', 'Xã Lộc Nam', '25093', 'Xã');
INSERT INTO category."Wards" VALUES (25096, 681, 'system', '2023-07-26 08:40:17.687638+07', 'system', '2023-07-26 08:40:17.687638+07', 'Thị trấn Đạ M''ri', '25096', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25099, 681, 'system', '2023-07-26 08:40:17.68764+07', 'system', '2023-07-26 08:40:17.68764+07', 'Thị trấn Ma Đa Guôi', '25099', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25105, 681, 'system', '2023-07-26 08:40:17.687643+07', 'system', '2023-07-26 08:40:17.687643+07', 'Xã Hà Lâm', '25105', 'Xã');
INSERT INTO category."Wards" VALUES (25108, 681, 'system', '2023-07-26 08:40:17.687645+07', 'system', '2023-07-26 08:40:17.687645+07', 'Xã Đạ Tồn', '25108', 'Xã');
INSERT INTO category."Wards" VALUES (25111, 681, 'system', '2023-07-26 08:40:17.687647+07', 'system', '2023-07-26 08:40:17.687647+07', 'Xã Đạ Oai', '25111', 'Xã');
INSERT INTO category."Wards" VALUES (25114, 681, 'system', '2023-07-26 08:40:17.68765+07', 'system', '2023-07-26 08:40:17.68765+07', 'Xã Đạ Ploa', '25114', 'Xã');
INSERT INTO category."Wards" VALUES (25117, 681, 'system', '2023-07-26 08:40:17.687652+07', 'system', '2023-07-26 08:40:17.687652+07', 'Xã Ma Đa Guôi', '25117', 'Xã');
INSERT INTO category."Wards" VALUES (25120, 681, 'system', '2023-07-26 08:40:17.687654+07', 'system', '2023-07-26 08:40:17.687654+07', 'Xã Đoàn Kết', '25120', 'Xã');
INSERT INTO category."Wards" VALUES (25123, 681, 'system', '2023-07-26 08:40:17.687656+07', 'system', '2023-07-26 08:40:17.687656+07', 'Xã Phước Lộc', '25123', 'Xã');
INSERT INTO category."Wards" VALUES (25126, 682, 'system', '2023-07-26 08:40:17.687658+07', 'system', '2023-07-26 08:40:17.687658+07', 'Thị trấn Đạ Tẻh', '25126', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25129, 682, 'system', '2023-07-26 08:40:17.687661+07', 'system', '2023-07-26 08:40:17.687661+07', 'Xã An Nhơn', '25129', 'Xã');
INSERT INTO category."Wards" VALUES (25132, 682, 'system', '2023-07-26 08:40:17.687663+07', 'system', '2023-07-26 08:40:17.687663+07', 'Xã Quốc Oai', '25132', 'Xã');
INSERT INTO category."Wards" VALUES (25135, 682, 'system', '2023-07-26 08:40:17.687665+07', 'system', '2023-07-26 08:40:17.687665+07', 'Xã Mỹ Đức', '25135', 'Xã');
INSERT INTO category."Wards" VALUES (25138, 682, 'system', '2023-07-26 08:40:17.687667+07', 'system', '2023-07-26 08:40:17.687667+07', 'Xã Quảng Trị', '25138', 'Xã');
INSERT INTO category."Wards" VALUES (25141, 682, 'system', '2023-07-26 08:40:17.687669+07', 'system', '2023-07-26 08:40:17.687669+07', 'Xã Đạ Lây', '25141', 'Xã');
INSERT INTO category."Wards" VALUES (25147, 682, 'system', '2023-07-26 08:40:17.687671+07', 'system', '2023-07-26 08:40:17.687671+07', 'Xã Triệu Hải', '25147', 'Xã');
INSERT INTO category."Wards" VALUES (25153, 682, 'system', '2023-07-26 08:40:17.687673+07', 'system', '2023-07-26 08:40:17.687673+07', 'Xã Đạ Kho', '25153', 'Xã');
INSERT INTO category."Wards" VALUES (25156, 682, 'system', '2023-07-26 08:40:17.687675+07', 'system', '2023-07-26 08:40:17.687675+07', 'Xã Đạ Pal', '25156', 'Xã');
INSERT INTO category."Wards" VALUES (25159, 683, 'system', '2023-07-26 08:40:17.687677+07', 'system', '2023-07-26 08:40:17.687678+07', 'Thị trấn Cát Tiên', '25159', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25162, 683, 'system', '2023-07-26 08:40:17.68768+07', 'system', '2023-07-26 08:40:17.68768+07', 'Xã Tiên Hoàng', '25162', 'Xã');
INSERT INTO category."Wards" VALUES (25165, 683, 'system', '2023-07-26 08:40:17.687682+07', 'system', '2023-07-26 08:40:17.687682+07', 'Xã Phước Cát 2', '25165', 'Xã');
INSERT INTO category."Wards" VALUES (25168, 683, 'system', '2023-07-26 08:40:17.687685+07', 'system', '2023-07-26 08:40:17.687685+07', 'Xã Gia Viễn', '25168', 'Xã');
INSERT INTO category."Wards" VALUES (25171, 683, 'system', '2023-07-26 08:40:17.687687+07', 'system', '2023-07-26 08:40:17.687687+07', 'Xã Nam Ninh', '25171', 'Xã');
INSERT INTO category."Wards" VALUES (25180, 683, 'system', '2023-07-26 08:40:17.68769+07', 'system', '2023-07-26 08:40:17.68769+07', 'Thị trấn Phước Cát ', '25180', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25183, 683, 'system', '2023-07-26 08:40:17.687692+07', 'system', '2023-07-26 08:40:17.687692+07', 'Xã Đức Phổ', '25183', 'Xã');
INSERT INTO category."Wards" VALUES (25189, 683, 'system', '2023-07-26 08:40:17.687694+07', 'system', '2023-07-26 08:40:17.687694+07', 'Xã Quảng Ngãi', '25189', 'Xã');
INSERT INTO category."Wards" VALUES (25192, 683, 'system', '2023-07-26 08:40:17.687696+07', 'system', '2023-07-26 08:40:17.687696+07', 'Xã Đồng Nai Thượng', '25192', 'Xã');
INSERT INTO category."Wards" VALUES (25195, 689, 'system', '2023-07-26 08:40:17.687715+07', 'system', '2023-07-26 08:40:17.687715+07', 'Phường Tân Phú', '25195', 'Phường');
INSERT INTO category."Wards" VALUES (25198, 689, 'system', '2023-07-26 08:40:17.687717+07', 'system', '2023-07-26 08:40:17.687717+07', 'Phường Tân Đồng', '25198', 'Phường');
INSERT INTO category."Wards" VALUES (25201, 689, 'system', '2023-07-26 08:40:17.687719+07', 'system', '2023-07-26 08:40:17.687719+07', 'Phường Tân Bình', '25201', 'Phường');
INSERT INTO category."Wards" VALUES (25204, 689, 'system', '2023-07-26 08:40:17.687721+07', 'system', '2023-07-26 08:40:17.687721+07', 'Phường Tân Xuân', '25204', 'Phường');
INSERT INTO category."Wards" VALUES (25205, 689, 'system', '2023-07-26 08:40:17.687723+07', 'system', '2023-07-26 08:40:17.687723+07', 'Phường Tân Thiện', '25205', 'Phường');
INSERT INTO category."Wards" VALUES (25207, 689, 'system', '2023-07-26 08:40:17.687726+07', 'system', '2023-07-26 08:40:17.687726+07', 'Xã Tân Thành', '25207', 'Xã');
INSERT INTO category."Wards" VALUES (25210, 689, 'system', '2023-07-26 08:40:17.687728+07', 'system', '2023-07-26 08:40:17.687728+07', 'Phường Tiến Thành', '25210', 'Phường');
INSERT INTO category."Wards" VALUES (25213, 689, 'system', '2023-07-26 08:40:17.68773+07', 'system', '2023-07-26 08:40:17.68773+07', 'Xã Tiến Hưng', '25213', 'Xã');
INSERT INTO category."Wards" VALUES (25216, 688, 'system', '2023-07-26 08:40:17.687699+07', 'system', '2023-07-26 08:40:17.687699+07', 'Phường Thác Mơ', '25216', 'Phường');
INSERT INTO category."Wards" VALUES (25217, 688, 'system', '2023-07-26 08:40:17.687701+07', 'system', '2023-07-26 08:40:17.687701+07', 'Phường Long Thủy', '25217', 'Phường');
INSERT INTO category."Wards" VALUES (25219, 688, 'system', '2023-07-26 08:40:17.687703+07', 'system', '2023-07-26 08:40:17.687703+07', 'Phường Phước Bình', '25219', 'Phường');
INSERT INTO category."Wards" VALUES (25220, 688, 'system', '2023-07-26 08:40:17.687706+07', 'system', '2023-07-26 08:40:17.687706+07', 'Phường Long Phước', '25220', 'Phường');
INSERT INTO category."Wards" VALUES (25222, 691, 'system', '2023-07-26 08:40:17.687746+07', 'system', '2023-07-26 08:40:17.687746+07', 'Xã Bù Gia Mập', '25222', 'Xã');
INSERT INTO category."Wards" VALUES (25225, 691, 'system', '2023-07-26 08:40:17.687748+07', 'system', '2023-07-26 08:40:17.687748+07', 'Xã Đak Ơ', '25225', 'Xã');
INSERT INTO category."Wards" VALUES (25228, 691, 'system', '2023-07-26 08:40:17.68775+07', 'system', '2023-07-26 08:40:17.68775+07', 'Xã Đức Hạnh', '25228', 'Xã');
INSERT INTO category."Wards" VALUES (25229, 691, 'system', '2023-07-26 08:40:17.687752+07', 'system', '2023-07-26 08:40:17.687752+07', 'Xã Phú Văn', '25229', 'Xã');
INSERT INTO category."Wards" VALUES (25231, 691, 'system', '2023-07-26 08:40:17.687754+07', 'system', '2023-07-26 08:40:17.687755+07', 'Xã Đa Kia', '25231', 'Xã');
INSERT INTO category."Wards" VALUES (25232, 691, 'system', '2023-07-26 08:40:17.687757+07', 'system', '2023-07-26 08:40:17.687757+07', 'Xã Phước Minh', '25232', 'Xã');
INSERT INTO category."Wards" VALUES (25234, 691, 'system', '2023-07-26 08:40:17.687759+07', 'system', '2023-07-26 08:40:17.687759+07', 'Xã Bình Thắng', '25234', 'Xã');
INSERT INTO category."Wards" VALUES (25237, 688, 'system', '2023-07-26 08:40:17.687708+07', 'system', '2023-07-26 08:40:17.687708+07', 'Phường Sơn Giang', '25237', 'Phường');
INSERT INTO category."Wards" VALUES (25240, 698, 'system', '2023-07-26 08:40:17.687969+07', 'system', '2023-07-26 08:40:17.687969+07', 'Xã Long Bình', '25240', 'Xã');
INSERT INTO category."Wards" VALUES (25243, 698, 'system', '2023-07-26 08:40:17.687972+07', 'system', '2023-07-26 08:40:17.687972+07', 'Xã Bình Tân', '25243', 'Xã');
INSERT INTO category."Wards" VALUES (25244, 698, 'system', '2023-07-26 08:40:17.687974+07', 'system', '2023-07-26 08:40:17.687974+07', 'Xã Bình Sơn', '25244', 'Xã');
INSERT INTO category."Wards" VALUES (25245, 688, 'system', '2023-07-26 08:40:17.68771+07', 'system', '2023-07-26 08:40:17.68771+07', 'Xã Long Giang', '25245', 'Xã');
INSERT INTO category."Wards" VALUES (25246, 698, 'system', '2023-07-26 08:40:17.687976+07', 'system', '2023-07-26 08:40:17.687976+07', 'Xã Long Hưng', '25246', 'Xã');
INSERT INTO category."Wards" VALUES (25249, 688, 'system', '2023-07-26 08:40:17.687713+07', 'system', '2023-07-26 08:40:17.687713+07', 'Xã Phước Tín', '25249', 'Xã');
INSERT INTO category."Wards" VALUES (25250, 698, 'system', '2023-07-26 08:40:17.687979+07', 'system', '2023-07-26 08:40:17.687979+07', 'Xã Phước Tân', '25250', 'Xã');
INSERT INTO category."Wards" VALUES (25252, 698, 'system', '2023-07-26 08:40:17.687981+07', 'system', '2023-07-26 08:40:17.687981+07', 'Xã Bù Nho', '25252', 'Xã');
INSERT INTO category."Wards" VALUES (25255, 698, 'system', '2023-07-26 08:40:17.687983+07', 'system', '2023-07-26 08:40:17.687983+07', 'Xã Long Hà', '25255', 'Xã');
INSERT INTO category."Wards" VALUES (25258, 698, 'system', '2023-07-26 08:40:17.687985+07', 'system', '2023-07-26 08:40:17.687985+07', 'Xã Long Tân', '25258', 'Xã');
INSERT INTO category."Wards" VALUES (25261, 698, 'system', '2023-07-26 08:40:17.687987+07', 'system', '2023-07-26 08:40:17.687987+07', 'Xã Phú Trung', '25261', 'Xã');
INSERT INTO category."Wards" VALUES (25264, 698, 'system', '2023-07-26 08:40:17.687989+07', 'system', '2023-07-26 08:40:17.687989+07', 'Xã Phú Riềng', '25264', 'Xã');
INSERT INTO category."Wards" VALUES (25267, 691, 'system', '2023-07-26 08:40:17.687761+07', 'system', '2023-07-26 08:40:17.687761+07', 'Xã Phú Nghĩa', '25267', 'Xã');
INSERT INTO category."Wards" VALUES (25270, 692, 'system', '2023-07-26 08:40:17.687763+07', 'system', '2023-07-26 08:40:17.687763+07', 'Thị trấn Lộc Ninh', '25270', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25273, 692, 'system', '2023-07-26 08:40:17.687766+07', 'system', '2023-07-26 08:40:17.687766+07', 'Xã Lộc Hòa', '25273', 'Xã');
INSERT INTO category."Wards" VALUES (25276, 692, 'system', '2023-07-26 08:40:17.687768+07', 'system', '2023-07-26 08:40:17.687768+07', 'Xã Lộc An', '25276', 'Xã');
INSERT INTO category."Wards" VALUES (25279, 692, 'system', '2023-07-26 08:40:17.687771+07', 'system', '2023-07-26 08:40:17.687771+07', 'Xã Lộc Tấn', '25279', 'Xã');
INSERT INTO category."Wards" VALUES (25280, 692, 'system', '2023-07-26 08:40:17.687773+07', 'system', '2023-07-26 08:40:17.687773+07', 'Xã Lộc Thạnh', '25280', 'Xã');
INSERT INTO category."Wards" VALUES (25282, 692, 'system', '2023-07-26 08:40:17.687775+07', 'system', '2023-07-26 08:40:17.687775+07', 'Xã Lộc Hiệp', '25282', 'Xã');
INSERT INTO category."Wards" VALUES (25285, 692, 'system', '2023-07-26 08:40:17.687777+07', 'system', '2023-07-26 08:40:17.687777+07', 'Xã Lộc Thiện', '25285', 'Xã');
INSERT INTO category."Wards" VALUES (25288, 692, 'system', '2023-07-26 08:40:17.687779+07', 'system', '2023-07-26 08:40:17.687779+07', 'Xã Lộc Thuận', '25288', 'Xã');
INSERT INTO category."Wards" VALUES (25291, 692, 'system', '2023-07-26 08:40:17.687781+07', 'system', '2023-07-26 08:40:17.687782+07', 'Xã Lộc Quang', '25291', 'Xã');
INSERT INTO category."Wards" VALUES (25292, 692, 'system', '2023-07-26 08:40:17.687783+07', 'system', '2023-07-26 08:40:17.687784+07', 'Xã Lộc Phú', '25292', 'Xã');
INSERT INTO category."Wards" VALUES (25294, 692, 'system', '2023-07-26 08:40:17.687786+07', 'system', '2023-07-26 08:40:17.687786+07', 'Xã Lộc Thành', '25294', 'Xã');
INSERT INTO category."Wards" VALUES (25297, 692, 'system', '2023-07-26 08:40:17.687788+07', 'system', '2023-07-26 08:40:17.687788+07', 'Xã Lộc Thái', '25297', 'Xã');
INSERT INTO category."Wards" VALUES (25300, 692, 'system', '2023-07-26 08:40:17.68779+07', 'system', '2023-07-26 08:40:17.68779+07', 'Xã Lộc Điền', '25300', 'Xã');
INSERT INTO category."Wards" VALUES (25303, 692, 'system', '2023-07-26 08:40:17.687792+07', 'system', '2023-07-26 08:40:17.687792+07', 'Xã Lộc Hưng', '25303', 'Xã');
INSERT INTO category."Wards" VALUES (25305, 692, 'system', '2023-07-26 08:40:17.687794+07', 'system', '2023-07-26 08:40:17.687794+07', 'Xã Lộc Thịnh', '25305', 'Xã');
INSERT INTO category."Wards" VALUES (25306, 692, 'system', '2023-07-26 08:40:17.687796+07', 'system', '2023-07-26 08:40:17.687796+07', 'Xã Lộc Khánh', '25306', 'Xã');
INSERT INTO category."Wards" VALUES (25308, 693, 'system', '2023-07-26 08:40:17.687799+07', 'system', '2023-07-26 08:40:17.687799+07', 'Thị trấn Thanh Bình', '25308', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25309, 693, 'system', '2023-07-26 08:40:17.687801+07', 'system', '2023-07-26 08:40:17.687801+07', 'Xã Hưng Phước', '25309', 'Xã');
INSERT INTO category."Wards" VALUES (25310, 693, 'system', '2023-07-26 08:40:17.687803+07', 'system', '2023-07-26 08:40:17.687803+07', 'Xã Phước Thiện', '25310', 'Xã');
INSERT INTO category."Wards" VALUES (25312, 693, 'system', '2023-07-26 08:40:17.687806+07', 'system', '2023-07-26 08:40:17.687806+07', 'Xã Thiện Hưng', '25312', 'Xã');
INSERT INTO category."Wards" VALUES (25315, 693, 'system', '2023-07-26 08:40:17.687808+07', 'system', '2023-07-26 08:40:17.687808+07', 'Xã Thanh Hòa', '25315', 'Xã');
INSERT INTO category."Wards" VALUES (25318, 693, 'system', '2023-07-26 08:40:17.68781+07', 'system', '2023-07-26 08:40:17.68781+07', 'Xã Tân Thành', '25318', 'Xã');
INSERT INTO category."Wards" VALUES (25320, 690, 'system', '2023-07-26 08:40:17.687732+07', 'system', '2023-07-26 08:40:17.687732+07', 'Phường Hưng Chiến', '25320', 'Phường');
INSERT INTO category."Wards" VALUES (25321, 693, 'system', '2023-07-26 08:40:17.687812+07', 'system', '2023-07-26 08:40:17.687812+07', 'Xã Tân Tiến', '25321', 'Xã');
INSERT INTO category."Wards" VALUES (25324, 690, 'system', '2023-07-26 08:40:17.687734+07', 'system', '2023-07-26 08:40:17.687734+07', 'Phường An Lộc', '25324', 'Phường');
INSERT INTO category."Wards" VALUES (25325, 690, 'system', '2023-07-26 08:40:17.687737+07', 'system', '2023-07-26 08:40:17.687737+07', 'Phường Phú Thịnh', '25325', 'Phường');
INSERT INTO category."Wards" VALUES (25326, 690, 'system', '2023-07-26 08:40:17.687739+07', 'system', '2023-07-26 08:40:17.687739+07', 'Phường Phú Đức', '25326', 'Phường');
INSERT INTO category."Wards" VALUES (25327, 694, 'system', '2023-07-26 08:40:17.687814+07', 'system', '2023-07-26 08:40:17.687814+07', 'Xã Thanh An', '25327', 'Xã');
INSERT INTO category."Wards" VALUES (25330, 694, 'system', '2023-07-26 08:40:17.687817+07', 'system', '2023-07-26 08:40:17.687817+07', 'Xã An Khương', '25330', 'Xã');
INSERT INTO category."Wards" VALUES (25333, 690, 'system', '2023-07-26 08:40:17.687741+07', 'system', '2023-07-26 08:40:17.687741+07', 'Xã Thanh Lương', '25333', 'Xã');
INSERT INTO category."Wards" VALUES (25336, 690, 'system', '2023-07-26 08:40:17.687743+07', 'system', '2023-07-26 08:40:17.687743+07', 'Xã Thanh Phú', '25336', 'Xã');
INSERT INTO category."Wards" VALUES (25339, 694, 'system', '2023-07-26 08:40:17.687819+07', 'system', '2023-07-26 08:40:17.687819+07', 'Xã An Phú', '25339', 'Xã');
INSERT INTO category."Wards" VALUES (25342, 694, 'system', '2023-07-26 08:40:17.687821+07', 'system', '2023-07-26 08:40:17.687821+07', 'Xã Tân Lợi', '25342', 'Xã');
INSERT INTO category."Wards" VALUES (25345, 694, 'system', '2023-07-26 08:40:17.687823+07', 'system', '2023-07-26 08:40:17.687823+07', 'Xã Tân Hưng', '25345', 'Xã');
INSERT INTO category."Wards" VALUES (25348, 694, 'system', '2023-07-26 08:40:17.687825+07', 'system', '2023-07-26 08:40:17.687825+07', 'Xã Minh Đức', '25348', 'Xã');
INSERT INTO category."Wards" VALUES (25349, 694, 'system', '2023-07-26 08:40:17.687827+07', 'system', '2023-07-26 08:40:17.687827+07', 'Xã Minh Tâm', '25349', 'Xã');
INSERT INTO category."Wards" VALUES (25351, 694, 'system', '2023-07-26 08:40:17.687874+07', 'system', '2023-07-26 08:40:17.687874+07', 'Xã Phước An', '25351', 'Xã');
INSERT INTO category."Wards" VALUES (25354, 694, 'system', '2023-07-26 08:40:17.687878+07', 'system', '2023-07-26 08:40:17.687878+07', 'Xã Thanh Bình', '25354', 'Xã');
INSERT INTO category."Wards" VALUES (25357, 694, 'system', '2023-07-26 08:40:17.68788+07', 'system', '2023-07-26 08:40:17.68788+07', 'Thị trấn Tân Khai', '25357', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25360, 694, 'system', '2023-07-26 08:40:17.687882+07', 'system', '2023-07-26 08:40:17.687882+07', 'Xã Đồng Nơ', '25360', 'Xã');
INSERT INTO category."Wards" VALUES (25361, 694, 'system', '2023-07-26 08:40:17.687884+07', 'system', '2023-07-26 08:40:17.687885+07', 'Xã Tân Hiệp', '25361', 'Xã');
INSERT INTO category."Wards" VALUES (25363, 695, 'system', '2023-07-26 08:40:17.687889+07', 'system', '2023-07-26 08:40:17.687889+07', 'Thị trấn Tân Phú', '25363', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25366, 695, 'system', '2023-07-26 08:40:17.687892+07', 'system', '2023-07-26 08:40:17.687892+07', 'Xã Thuận Lợi', '25366', 'Xã');
INSERT INTO category."Wards" VALUES (25369, 695, 'system', '2023-07-26 08:40:17.687894+07', 'system', '2023-07-26 08:40:17.687894+07', 'Xã Đồng Tâm', '25369', 'Xã');
INSERT INTO category."Wards" VALUES (25372, 695, 'system', '2023-07-26 08:40:17.687897+07', 'system', '2023-07-26 08:40:17.687897+07', 'Xã Tân Phước', '25372', 'Xã');
INSERT INTO category."Wards" VALUES (25375, 695, 'system', '2023-07-26 08:40:17.687899+07', 'system', '2023-07-26 08:40:17.687899+07', 'Xã Tân Hưng', '25375', 'Xã');
INSERT INTO category."Wards" VALUES (25378, 695, 'system', '2023-07-26 08:40:17.687901+07', 'system', '2023-07-26 08:40:17.687901+07', 'Xã Tân Lợi', '25378', 'Xã');
INSERT INTO category."Wards" VALUES (25381, 695, 'system', '2023-07-26 08:40:17.687903+07', 'system', '2023-07-26 08:40:17.687903+07', 'Xã Tân Lập', '25381', 'Xã');
INSERT INTO category."Wards" VALUES (25384, 695, 'system', '2023-07-26 08:40:17.687905+07', 'system', '2023-07-26 08:40:17.687905+07', 'Xã Tân Hòa', '25384', 'Xã');
INSERT INTO category."Wards" VALUES (25387, 695, 'system', '2023-07-26 08:40:17.687907+07', 'system', '2023-07-26 08:40:17.687908+07', 'Xã Thuận Phú', '25387', 'Xã');
INSERT INTO category."Wards" VALUES (25390, 695, 'system', '2023-07-26 08:40:17.68791+07', 'system', '2023-07-26 08:40:17.68791+07', 'Xã Đồng Tiến', '25390', 'Xã');
INSERT INTO category."Wards" VALUES (25393, 695, 'system', '2023-07-26 08:40:17.687912+07', 'system', '2023-07-26 08:40:17.687912+07', 'Xã Tân Tiến', '25393', 'Xã');
INSERT INTO category."Wards" VALUES (25396, 696, 'system', '2023-07-26 08:40:17.687914+07', 'system', '2023-07-26 08:40:17.687914+07', 'Thị trấn Đức Phong', '25396', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25398, 696, 'system', '2023-07-26 08:40:17.687916+07', 'system', '2023-07-26 08:40:17.687917+07', 'Xã Đường 10', '25398', 'Xã');
INSERT INTO category."Wards" VALUES (25399, 696, 'system', '2023-07-26 08:40:17.687919+07', 'system', '2023-07-26 08:40:17.687919+07', 'Xã Đak Nhau', '25399', 'Xã');
INSERT INTO category."Wards" VALUES (25400, 696, 'system', '2023-07-26 08:40:17.687921+07', 'system', '2023-07-26 08:40:17.687921+07', 'Xã Phú Sơn', '25400', 'Xã');
INSERT INTO category."Wards" VALUES (25402, 696, 'system', '2023-07-26 08:40:17.687923+07', 'system', '2023-07-26 08:40:17.687923+07', 'Xã Thọ Sơn', '25402', 'Xã');
INSERT INTO category."Wards" VALUES (25404, 696, 'system', '2023-07-26 08:40:17.687925+07', 'system', '2023-07-26 08:40:17.687925+07', 'Xã Bình Minh', '25404', 'Xã');
INSERT INTO category."Wards" VALUES (25405, 696, 'system', '2023-07-26 08:40:17.687927+07', 'system', '2023-07-26 08:40:17.687927+07', 'Xã Bom Bo', '25405', 'Xã');
INSERT INTO category."Wards" VALUES (25408, 696, 'system', '2023-07-26 08:40:17.68793+07', 'system', '2023-07-26 08:40:17.68793+07', 'Xã Minh Hưng', '25408', 'Xã');
INSERT INTO category."Wards" VALUES (25411, 696, 'system', '2023-07-26 08:40:17.687932+07', 'system', '2023-07-26 08:40:17.687932+07', 'Xã Đoàn Kết', '25411', 'Xã');
INSERT INTO category."Wards" VALUES (25414, 696, 'system', '2023-07-26 08:40:17.687934+07', 'system', '2023-07-26 08:40:17.687934+07', 'Xã Đồng Nai', '25414', 'Xã');
INSERT INTO category."Wards" VALUES (25417, 696, 'system', '2023-07-26 08:40:17.687936+07', 'system', '2023-07-26 08:40:17.687936+07', 'Xã Đức Liễu', '25417', 'Xã');
INSERT INTO category."Wards" VALUES (25420, 696, 'system', '2023-07-26 08:40:17.687938+07', 'system', '2023-07-26 08:40:17.687938+07', 'Xã Thống Nhất', '25420', 'Xã');
INSERT INTO category."Wards" VALUES (25423, 696, 'system', '2023-07-26 08:40:17.687941+07', 'system', '2023-07-26 08:40:17.687941+07', 'Xã Nghĩa Trung', '25423', 'Xã');
INSERT INTO category."Wards" VALUES (25424, 696, 'system', '2023-07-26 08:40:17.687943+07', 'system', '2023-07-26 08:40:17.687943+07', 'Xã Nghĩa Bình', '25424', 'Xã');
INSERT INTO category."Wards" VALUES (25426, 696, 'system', '2023-07-26 08:40:17.687945+07', 'system', '2023-07-26 08:40:17.687945+07', 'Xã Đăng Hà', '25426', 'Xã');
INSERT INTO category."Wards" VALUES (25429, 696, 'system', '2023-07-26 08:40:17.687947+07', 'system', '2023-07-26 08:40:17.687947+07', 'Xã Phước Sơn', '25429', 'Xã');
INSERT INTO category."Wards" VALUES (25432, 697, 'system', '2023-07-26 08:40:17.68795+07', 'system', '2023-07-26 08:40:17.68795+07', 'Thị trấn Chơn Thành', '25432', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25433, 697, 'system', '2023-07-26 08:40:17.687952+07', 'system', '2023-07-26 08:40:17.687952+07', 'Xã Thành Tâm', '25433', 'Xã');
INSERT INTO category."Wards" VALUES (25435, 697, 'system', '2023-07-26 08:40:17.687954+07', 'system', '2023-07-26 08:40:17.687954+07', 'Xã Minh Lập', '25435', 'Xã');
INSERT INTO category."Wards" VALUES (25438, 694, 'system', '2023-07-26 08:40:17.687887+07', 'system', '2023-07-26 08:40:17.687887+07', 'Xã Tân Quan', '25438', 'Xã');
INSERT INTO category."Wards" VALUES (25439, 697, 'system', '2023-07-26 08:40:17.687956+07', 'system', '2023-07-26 08:40:17.687956+07', 'Xã Quang Minh', '25439', 'Xã');
INSERT INTO category."Wards" VALUES (25441, 697, 'system', '2023-07-26 08:40:17.687958+07', 'system', '2023-07-26 08:40:17.687958+07', 'Xã Minh Hưng', '25441', 'Xã');
INSERT INTO category."Wards" VALUES (25444, 697, 'system', '2023-07-26 08:40:17.687961+07', 'system', '2023-07-26 08:40:17.687961+07', 'Xã Minh Long', '25444', 'Xã');
INSERT INTO category."Wards" VALUES (25447, 697, 'system', '2023-07-26 08:40:17.687963+07', 'system', '2023-07-26 08:40:17.687963+07', 'Xã Minh Thành', '25447', 'Xã');
INSERT INTO category."Wards" VALUES (25450, 697, 'system', '2023-07-26 08:40:17.687965+07', 'system', '2023-07-26 08:40:17.687965+07', 'Xã Nha Bích', '25450', 'Xã');
INSERT INTO category."Wards" VALUES (25453, 697, 'system', '2023-07-26 08:40:17.687967+07', 'system', '2023-07-26 08:40:17.687967+07', 'Xã Minh Thắng', '25453', 'Xã');
INSERT INTO category."Wards" VALUES (25456, 703, 'system', '2023-07-26 08:40:17.687992+07', 'system', '2023-07-26 08:40:17.687992+07', 'Phường 1', '25456', 'Phường');
INSERT INTO category."Wards" VALUES (25459, 703, 'system', '2023-07-26 08:40:17.687994+07', 'system', '2023-07-26 08:40:17.687994+07', 'Phường 3', '25459', 'Phường');
INSERT INTO category."Wards" VALUES (25462, 703, 'system', '2023-07-26 08:40:17.687996+07', 'system', '2023-07-26 08:40:17.687996+07', 'Phường 4', '25462', 'Phường');
INSERT INTO category."Wards" VALUES (25465, 703, 'system', '2023-07-26 08:40:17.687998+07', 'system', '2023-07-26 08:40:17.687998+07', 'Phường Hiệp Ninh', '25465', 'Phường');
INSERT INTO category."Wards" VALUES (25468, 703, 'system', '2023-07-26 08:40:17.688001+07', 'system', '2023-07-26 08:40:17.688001+07', 'Phường 2', '25468', 'Phường');
INSERT INTO category."Wards" VALUES (25471, 703, 'system', '2023-07-26 08:40:17.688003+07', 'system', '2023-07-26 08:40:17.688003+07', 'Xã Thạnh Tân', '25471', 'Xã');
INSERT INTO category."Wards" VALUES (25474, 703, 'system', '2023-07-26 08:40:17.688005+07', 'system', '2023-07-26 08:40:17.688005+07', 'Xã Tân Bình', '25474', 'Xã');
INSERT INTO category."Wards" VALUES (25477, 703, 'system', '2023-07-26 08:40:17.688007+07', 'system', '2023-07-26 08:40:17.688007+07', 'Xã Bình Minh', '25477', 'Xã');
INSERT INTO category."Wards" VALUES (25480, 703, 'system', '2023-07-26 08:40:17.688009+07', 'system', '2023-07-26 08:40:17.688009+07', 'Phường Ninh Sơn', '25480', 'Phường');
INSERT INTO category."Wards" VALUES (25483, 703, 'system', '2023-07-26 08:40:17.688012+07', 'system', '2023-07-26 08:40:17.688012+07', 'Phường Ninh Thạnh', '25483', 'Phường');
INSERT INTO category."Wards" VALUES (25486, 705, 'system', '2023-07-26 08:40:17.688014+07', 'system', '2023-07-26 08:40:17.688014+07', 'Thị trấn Tân Biên', '25486', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25489, 705, 'system', '2023-07-26 08:40:17.688016+07', 'system', '2023-07-26 08:40:17.688016+07', 'Xã Tân Lập', '25489', 'Xã');
INSERT INTO category."Wards" VALUES (25492, 705, 'system', '2023-07-26 08:40:17.688018+07', 'system', '2023-07-26 08:40:17.688018+07', 'Xã Thạnh Bắc', '25492', 'Xã');
INSERT INTO category."Wards" VALUES (25495, 705, 'system', '2023-07-26 08:40:17.688021+07', 'system', '2023-07-26 08:40:17.688021+07', 'Xã Tân Bình', '25495', 'Xã');
INSERT INTO category."Wards" VALUES (25498, 705, 'system', '2023-07-26 08:40:17.688023+07', 'system', '2023-07-26 08:40:17.688023+07', 'Xã Thạnh Bình', '25498', 'Xã');
INSERT INTO category."Wards" VALUES (25501, 705, 'system', '2023-07-26 08:40:17.688025+07', 'system', '2023-07-26 08:40:17.688025+07', 'Xã Thạnh Tây', '25501', 'Xã');
INSERT INTO category."Wards" VALUES (25504, 705, 'system', '2023-07-26 08:40:17.688027+07', 'system', '2023-07-26 08:40:17.688027+07', 'Xã Hòa Hiệp', '25504', 'Xã');
INSERT INTO category."Wards" VALUES (25507, 705, 'system', '2023-07-26 08:40:17.688029+07', 'system', '2023-07-26 08:40:17.688029+07', 'Xã Tân Phong', '25507', 'Xã');
INSERT INTO category."Wards" VALUES (25510, 705, 'system', '2023-07-26 08:40:17.688032+07', 'system', '2023-07-26 08:40:17.688032+07', 'Xã Mỏ Công', '25510', 'Xã');
INSERT INTO category."Wards" VALUES (25513, 705, 'system', '2023-07-26 08:40:17.688034+07', 'system', '2023-07-26 08:40:17.688034+07', 'Xã Trà Vong', '25513', 'Xã');
INSERT INTO category."Wards" VALUES (25516, 706, 'system', '2023-07-26 08:40:17.688036+07', 'system', '2023-07-26 08:40:17.688036+07', 'Thị trấn Tân Châu', '25516', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25519, 706, 'system', '2023-07-26 08:40:17.688038+07', 'system', '2023-07-26 08:40:17.688038+07', 'Xã Tân Hà', '25519', 'Xã');
INSERT INTO category."Wards" VALUES (25522, 706, 'system', '2023-07-26 08:40:17.688041+07', 'system', '2023-07-26 08:40:17.688041+07', 'Xã Tân Đông', '25522', 'Xã');
INSERT INTO category."Wards" VALUES (25525, 706, 'system', '2023-07-26 08:40:17.688043+07', 'system', '2023-07-26 08:40:17.688043+07', 'Xã Tân Hội', '25525', 'Xã');
INSERT INTO category."Wards" VALUES (25528, 706, 'system', '2023-07-26 08:40:17.688045+07', 'system', '2023-07-26 08:40:17.688045+07', 'Xã Tân Hòa', '25528', 'Xã');
INSERT INTO category."Wards" VALUES (25531, 706, 'system', '2023-07-26 08:40:17.688047+07', 'system', '2023-07-26 08:40:17.688047+07', 'Xã Suối Ngô', '25531', 'Xã');
INSERT INTO category."Wards" VALUES (25534, 706, 'system', '2023-07-26 08:40:17.688049+07', 'system', '2023-07-26 08:40:17.688049+07', 'Xã Suối Dây', '25534', 'Xã');
INSERT INTO category."Wards" VALUES (25537, 706, 'system', '2023-07-26 08:40:17.688052+07', 'system', '2023-07-26 08:40:17.688052+07', 'Xã Tân Hiệp', '25537', 'Xã');
INSERT INTO category."Wards" VALUES (25540, 706, 'system', '2023-07-26 08:40:17.688054+07', 'system', '2023-07-26 08:40:17.688055+07', 'Xã Thạnh Đông', '25540', 'Xã');
INSERT INTO category."Wards" VALUES (25543, 706, 'system', '2023-07-26 08:40:17.688057+07', 'system', '2023-07-26 08:40:17.688057+07', 'Xã Tân Thành', '25543', 'Xã');
INSERT INTO category."Wards" VALUES (25546, 706, 'system', '2023-07-26 08:40:17.688059+07', 'system', '2023-07-26 08:40:17.688059+07', 'Xã Tân Phú', '25546', 'Xã');
INSERT INTO category."Wards" VALUES (25549, 706, 'system', '2023-07-26 08:40:17.688061+07', 'system', '2023-07-26 08:40:17.688061+07', 'Xã Tân Hưng', '25549', 'Xã');
INSERT INTO category."Wards" VALUES (25552, 707, 'system', '2023-07-26 08:40:17.688063+07', 'system', '2023-07-26 08:40:17.688063+07', 'Thị trấn Dương Minh Châu', '25552', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25555, 707, 'system', '2023-07-26 08:40:17.688066+07', 'system', '2023-07-26 08:40:17.688066+07', 'Xã Suối Đá', '25555', 'Xã');
INSERT INTO category."Wards" VALUES (25558, 707, 'system', '2023-07-26 08:40:17.688068+07', 'system', '2023-07-26 08:40:17.688068+07', 'Xã Phan', '25558', 'Xã');
INSERT INTO category."Wards" VALUES (25561, 707, 'system', '2023-07-26 08:40:17.68807+07', 'system', '2023-07-26 08:40:17.68807+07', 'Xã Phước Ninh', '25561', 'Xã');
INSERT INTO category."Wards" VALUES (25564, 707, 'system', '2023-07-26 08:40:17.688072+07', 'system', '2023-07-26 08:40:17.688072+07', 'Xã Phước Minh', '25564', 'Xã');
INSERT INTO category."Wards" VALUES (25567, 707, 'system', '2023-07-26 08:40:17.688074+07', 'system', '2023-07-26 08:40:17.688074+07', 'Xã Bàu Năng', '25567', 'Xã');
INSERT INTO category."Wards" VALUES (25570, 707, 'system', '2023-07-26 08:40:17.688077+07', 'system', '2023-07-26 08:40:17.688077+07', 'Xã Chà Là', '25570', 'Xã');
INSERT INTO category."Wards" VALUES (25573, 707, 'system', '2023-07-26 08:40:17.688079+07', 'system', '2023-07-26 08:40:17.688079+07', 'Xã Cầu Khởi', '25573', 'Xã');
INSERT INTO category."Wards" VALUES (25576, 707, 'system', '2023-07-26 08:40:17.688081+07', 'system', '2023-07-26 08:40:17.688081+07', 'Xã Bến Củi', '25576', 'Xã');
INSERT INTO category."Wards" VALUES (25579, 707, 'system', '2023-07-26 08:40:17.688083+07', 'system', '2023-07-26 08:40:17.688083+07', 'Xã Lộc Ninh', '25579', 'Xã');
INSERT INTO category."Wards" VALUES (25582, 707, 'system', '2023-07-26 08:40:17.688085+07', 'system', '2023-07-26 08:40:17.688085+07', 'Xã Truông Mít', '25582', 'Xã');
INSERT INTO category."Wards" VALUES (25585, 708, 'system', '2023-07-26 08:40:17.688088+07', 'system', '2023-07-26 08:40:17.688088+07', 'Thị trấn Châu Thành', '25585', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25588, 708, 'system', '2023-07-26 08:40:17.68809+07', 'system', '2023-07-26 08:40:17.68809+07', 'Xã Hảo Đước', '25588', 'Xã');
INSERT INTO category."Wards" VALUES (25591, 708, 'system', '2023-07-26 08:40:17.688092+07', 'system', '2023-07-26 08:40:17.688092+07', 'Xã Phước Vinh', '25591', 'Xã');
INSERT INTO category."Wards" VALUES (25594, 708, 'system', '2023-07-26 08:40:17.688094+07', 'system', '2023-07-26 08:40:17.688094+07', 'Xã Đồng Khởi', '25594', 'Xã');
INSERT INTO category."Wards" VALUES (25597, 708, 'system', '2023-07-26 08:40:17.688097+07', 'system', '2023-07-26 08:40:17.688097+07', 'Xã Thái Bình', '25597', 'Xã');
INSERT INTO category."Wards" VALUES (25600, 708, 'system', '2023-07-26 08:40:17.688099+07', 'system', '2023-07-26 08:40:17.688099+07', 'Xã An Cơ', '25600', 'Xã');
INSERT INTO category."Wards" VALUES (25603, 708, 'system', '2023-07-26 08:40:17.688101+07', 'system', '2023-07-26 08:40:17.688101+07', 'Xã Biên Giới', '25603', 'Xã');
INSERT INTO category."Wards" VALUES (25606, 708, 'system', '2023-07-26 08:40:17.688103+07', 'system', '2023-07-26 08:40:17.688103+07', 'Xã Hòa Thạnh', '25606', 'Xã');
INSERT INTO category."Wards" VALUES (25609, 708, 'system', '2023-07-26 08:40:17.688105+07', 'system', '2023-07-26 08:40:17.688105+07', 'Xã Trí Bình', '25609', 'Xã');
INSERT INTO category."Wards" VALUES (25612, 708, 'system', '2023-07-26 08:40:17.688107+07', 'system', '2023-07-26 08:40:17.688107+07', 'Xã Hòa Hội', '25612', 'Xã');
INSERT INTO category."Wards" VALUES (25615, 708, 'system', '2023-07-26 08:40:17.688109+07', 'system', '2023-07-26 08:40:17.688109+07', 'Xã An Bình', '25615', 'Xã');
INSERT INTO category."Wards" VALUES (25618, 708, 'system', '2023-07-26 08:40:17.688112+07', 'system', '2023-07-26 08:40:17.688112+07', 'Xã Thanh Điền', '25618', 'Xã');
INSERT INTO category."Wards" VALUES (25621, 708, 'system', '2023-07-26 08:40:17.688114+07', 'system', '2023-07-26 08:40:17.688114+07', 'Xã Thành Long', '25621', 'Xã');
INSERT INTO category."Wards" VALUES (25624, 708, 'system', '2023-07-26 08:40:17.688116+07', 'system', '2023-07-26 08:40:17.688116+07', 'Xã Ninh Điền', '25624', 'Xã');
INSERT INTO category."Wards" VALUES (25627, 708, 'system', '2023-07-26 08:40:17.688118+07', 'system', '2023-07-26 08:40:17.688118+07', 'Xã Long Vĩnh', '25627', 'Xã');
INSERT INTO category."Wards" VALUES (25630, 709, 'system', '2023-07-26 08:40:17.68812+07', 'system', '2023-07-26 08:40:17.68812+07', 'Phường Long Hoa', '25630', 'Phường');
INSERT INTO category."Wards" VALUES (25633, 709, 'system', '2023-07-26 08:40:17.688123+07', 'system', '2023-07-26 08:40:17.688123+07', 'Phường Hiệp Tân', '25633', 'Phường');
INSERT INTO category."Wards" VALUES (25636, 709, 'system', '2023-07-26 08:40:17.688125+07', 'system', '2023-07-26 08:40:17.688125+07', 'Phường Long Thành Bắc', '25636', 'Phường');
INSERT INTO category."Wards" VALUES (25639, 709, 'system', '2023-07-26 08:40:17.688128+07', 'system', '2023-07-26 08:40:17.688128+07', 'Xã Trường Hòa', '25639', 'Xã');
INSERT INTO category."Wards" VALUES (25642, 709, 'system', '2023-07-26 08:40:17.68813+07', 'system', '2023-07-26 08:40:17.68813+07', 'Xã Trường Đông', '25642', 'Xã');
INSERT INTO category."Wards" VALUES (25645, 709, 'system', '2023-07-26 08:40:17.688133+07', 'system', '2023-07-26 08:40:17.688133+07', 'Phường Long Thành Trung', '25645', 'Phường');
INSERT INTO category."Wards" VALUES (25648, 709, 'system', '2023-07-26 08:40:17.688135+07', 'system', '2023-07-26 08:40:17.688135+07', 'Xã Trường Tây', '25648', 'Xã');
INSERT INTO category."Wards" VALUES (25651, 709, 'system', '2023-07-26 08:40:17.688137+07', 'system', '2023-07-26 08:40:17.688138+07', 'Xã Long Thành Nam', '25651', 'Xã');
INSERT INTO category."Wards" VALUES (25654, 710, 'system', '2023-07-26 08:40:17.68814+07', 'system', '2023-07-26 08:40:17.68814+07', 'Thị trấn Gò Dầu', '25654', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25657, 710, 'system', '2023-07-26 08:40:17.688142+07', 'system', '2023-07-26 08:40:17.688142+07', 'Xã Thạnh Đức', '25657', 'Xã');
INSERT INTO category."Wards" VALUES (25660, 710, 'system', '2023-07-26 08:40:17.688144+07', 'system', '2023-07-26 08:40:17.688144+07', 'Xã Cẩm Giang', '25660', 'Xã');
INSERT INTO category."Wards" VALUES (25663, 710, 'system', '2023-07-26 08:40:17.688147+07', 'system', '2023-07-26 08:40:17.688147+07', 'Xã Hiệp Thạnh', '25663', 'Xã');
INSERT INTO category."Wards" VALUES (25666, 710, 'system', '2023-07-26 08:40:17.688149+07', 'system', '2023-07-26 08:40:17.688149+07', 'Xã Bàu Đồn', '25666', 'Xã');
INSERT INTO category."Wards" VALUES (25669, 710, 'system', '2023-07-26 08:40:17.688151+07', 'system', '2023-07-26 08:40:17.688151+07', 'Xã Phước Thạnh', '25669', 'Xã');
INSERT INTO category."Wards" VALUES (25672, 710, 'system', '2023-07-26 08:40:17.688153+07', 'system', '2023-07-26 08:40:17.688153+07', 'Xã Phước Đông', '25672', 'Xã');
INSERT INTO category."Wards" VALUES (25675, 710, 'system', '2023-07-26 08:40:17.688165+07', 'system', '2023-07-26 08:40:17.688165+07', 'Xã Phước Trạch', '25675', 'Xã');
INSERT INTO category."Wards" VALUES (25678, 710, 'system', '2023-07-26 08:40:17.688168+07', 'system', '2023-07-26 08:40:17.688168+07', 'Xã Thanh Phước', '25678', 'Xã');
INSERT INTO category."Wards" VALUES (25681, 711, 'system', '2023-07-26 08:40:17.68817+07', 'system', '2023-07-26 08:40:17.68817+07', 'Thị trấn Bến Cầu', '25681', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25684, 711, 'system', '2023-07-26 08:40:17.688172+07', 'system', '2023-07-26 08:40:17.688172+07', 'Xã Long Chữ', '25684', 'Xã');
INSERT INTO category."Wards" VALUES (25687, 711, 'system', '2023-07-26 08:40:17.688175+07', 'system', '2023-07-26 08:40:17.688175+07', 'Xã Long Phước', '25687', 'Xã');
INSERT INTO category."Wards" VALUES (25690, 711, 'system', '2023-07-26 08:40:17.688177+07', 'system', '2023-07-26 08:40:17.688177+07', 'Xã Long Giang', '25690', 'Xã');
INSERT INTO category."Wards" VALUES (25693, 711, 'system', '2023-07-26 08:40:17.688179+07', 'system', '2023-07-26 08:40:17.688179+07', 'Xã Tiên Thuận', '25693', 'Xã');
INSERT INTO category."Wards" VALUES (25696, 711, 'system', '2023-07-26 08:40:17.688181+07', 'system', '2023-07-26 08:40:17.688181+07', 'Xã Long Khánh', '25696', 'Xã');
INSERT INTO category."Wards" VALUES (25699, 711, 'system', '2023-07-26 08:40:17.688183+07', 'system', '2023-07-26 08:40:17.688183+07', 'Xã Lợi Thuận', '25699', 'Xã');
INSERT INTO category."Wards" VALUES (25702, 711, 'system', '2023-07-26 08:40:17.688186+07', 'system', '2023-07-26 08:40:17.688186+07', 'Xã Long Thuận', '25702', 'Xã');
INSERT INTO category."Wards" VALUES (25705, 711, 'system', '2023-07-26 08:40:17.688188+07', 'system', '2023-07-26 08:40:17.688188+07', 'Xã An Thạnh', '25705', 'Xã');
INSERT INTO category."Wards" VALUES (25708, 712, 'system', '2023-07-26 08:40:17.68819+07', 'system', '2023-07-26 08:40:17.68819+07', 'Phường Trảng Bàng', '25708', 'Phường');
INSERT INTO category."Wards" VALUES (25711, 712, 'system', '2023-07-26 08:40:17.688192+07', 'system', '2023-07-26 08:40:17.688192+07', 'Xã Đôn Thuận', '25711', 'Xã');
INSERT INTO category."Wards" VALUES (25714, 712, 'system', '2023-07-26 08:40:17.688194+07', 'system', '2023-07-26 08:40:17.688194+07', 'Xã Hưng Thuận', '25714', 'Xã');
INSERT INTO category."Wards" VALUES (25717, 712, 'system', '2023-07-26 08:40:17.688197+07', 'system', '2023-07-26 08:40:17.688197+07', 'Phường Lộc Hưng', '25717', 'Phường');
INSERT INTO category."Wards" VALUES (25720, 712, 'system', '2023-07-26 08:40:17.688199+07', 'system', '2023-07-26 08:40:17.688199+07', 'Phường Gia Lộc', '25720', 'Phường');
INSERT INTO category."Wards" VALUES (25723, 712, 'system', '2023-07-26 08:40:17.688201+07', 'system', '2023-07-26 08:40:17.688201+07', 'Phường Gia Bình', '25723', 'Phường');
INSERT INTO category."Wards" VALUES (25729, 712, 'system', '2023-07-26 08:40:17.688203+07', 'system', '2023-07-26 08:40:17.688203+07', 'Xã Phước Bình', '25729', 'Xã');
INSERT INTO category."Wards" VALUES (25732, 712, 'system', '2023-07-26 08:40:17.688206+07', 'system', '2023-07-26 08:40:17.688206+07', 'Phường An Tịnh', '25732', 'Phường');
INSERT INTO category."Wards" VALUES (25735, 712, 'system', '2023-07-26 08:40:17.688208+07', 'system', '2023-07-26 08:40:17.688208+07', 'Phường An Hòa', '25735', 'Phường');
INSERT INTO category."Wards" VALUES (25738, 712, 'system', '2023-07-26 08:40:17.68821+07', 'system', '2023-07-26 08:40:17.68821+07', 'Xã Phước Chỉ', '25738', 'Xã');
INSERT INTO category."Wards" VALUES (25741, 718, 'system', '2023-07-26 08:40:17.688213+07', 'system', '2023-07-26 08:40:17.688213+07', 'Phường Hiệp Thành', '25741', 'Phường');
INSERT INTO category."Wards" VALUES (25744, 718, 'system', '2023-07-26 08:40:17.688215+07', 'system', '2023-07-26 08:40:17.688215+07', 'Phường Phú Lợi', '25744', 'Phường');
INSERT INTO category."Wards" VALUES (25747, 718, 'system', '2023-07-26 08:40:17.688217+07', 'system', '2023-07-26 08:40:17.688217+07', 'Phường Phú Cường', '25747', 'Phường');
INSERT INTO category."Wards" VALUES (25750, 718, 'system', '2023-07-26 08:40:17.68822+07', 'system', '2023-07-26 08:40:17.68822+07', 'Phường Phú Hòa', '25750', 'Phường');
INSERT INTO category."Wards" VALUES (25753, 718, 'system', '2023-07-26 08:40:17.688222+07', 'system', '2023-07-26 08:40:17.688222+07', 'Phường Phú Thọ', '25753', 'Phường');
INSERT INTO category."Wards" VALUES (25756, 718, 'system', '2023-07-26 08:40:17.688225+07', 'system', '2023-07-26 08:40:17.688225+07', 'Phường Chánh Nghĩa', '25756', 'Phường');
INSERT INTO category."Wards" VALUES (25759, 718, 'system', '2023-07-26 08:40:17.688228+07', 'system', '2023-07-26 08:40:17.688228+07', 'Phường Định Hoà', '25759', 'Phường');
INSERT INTO category."Wards" VALUES (25760, 718, 'system', '2023-07-26 08:40:17.68823+07', 'system', '2023-07-26 08:40:17.68823+07', 'Phường Hoà Phú', '25760', 'Phường');
INSERT INTO category."Wards" VALUES (25762, 718, 'system', '2023-07-26 08:40:17.688232+07', 'system', '2023-07-26 08:40:17.688232+07', 'Phường Phú Mỹ', '25762', 'Phường');
INSERT INTO category."Wards" VALUES (25763, 718, 'system', '2023-07-26 08:40:17.688234+07', 'system', '2023-07-26 08:40:17.688234+07', 'Phường Phú Tân', '25763', 'Phường');
INSERT INTO category."Wards" VALUES (25765, 718, 'system', '2023-07-26 08:40:17.688237+07', 'system', '2023-07-26 08:40:17.688237+07', 'Phường Tân An', '25765', 'Phường');
INSERT INTO category."Wards" VALUES (25768, 718, 'system', '2023-07-26 08:40:17.688239+07', 'system', '2023-07-26 08:40:17.688239+07', 'Phường Hiệp An', '25768', 'Phường');
INSERT INTO category."Wards" VALUES (25771, 718, 'system', '2023-07-26 08:40:17.688242+07', 'system', '2023-07-26 08:40:17.688242+07', 'Phường Tương Bình Hiệp', '25771', 'Phường');
INSERT INTO category."Wards" VALUES (25774, 718, 'system', '2023-07-26 08:40:17.688244+07', 'system', '2023-07-26 08:40:17.688244+07', 'Phường Chánh Mỹ', '25774', 'Phường');
INSERT INTO category."Wards" VALUES (25777, 720, 'system', '2023-07-26 08:40:17.688263+07', 'system', '2023-07-26 08:40:17.688263+07', 'Thị trấn Dầu Tiếng', '25777', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25780, 720, 'system', '2023-07-26 08:40:17.688265+07', 'system', '2023-07-26 08:40:17.688265+07', 'Xã Minh Hoà', '25780', 'Xã');
INSERT INTO category."Wards" VALUES (25783, 720, 'system', '2023-07-26 08:40:17.688267+07', 'system', '2023-07-26 08:40:17.688267+07', 'Xã Minh Thạnh', '25783', 'Xã');
INSERT INTO category."Wards" VALUES (25786, 720, 'system', '2023-07-26 08:40:17.688269+07', 'system', '2023-07-26 08:40:17.688269+07', 'Xã Minh Tân', '25786', 'Xã');
INSERT INTO category."Wards" VALUES (25789, 720, 'system', '2023-07-26 08:40:17.688272+07', 'system', '2023-07-26 08:40:17.688272+07', 'Xã Định An', '25789', 'Xã');
INSERT INTO category."Wards" VALUES (25792, 720, 'system', '2023-07-26 08:40:17.688274+07', 'system', '2023-07-26 08:40:17.688274+07', 'Xã Long Hoà', '25792', 'Xã');
INSERT INTO category."Wards" VALUES (25795, 720, 'system', '2023-07-26 08:40:17.688276+07', 'system', '2023-07-26 08:40:17.688276+07', 'Xã Định Thành', '25795', 'Xã');
INSERT INTO category."Wards" VALUES (25798, 720, 'system', '2023-07-26 08:40:17.688278+07', 'system', '2023-07-26 08:40:17.688278+07', 'Xã Định Hiệp', '25798', 'Xã');
INSERT INTO category."Wards" VALUES (25801, 720, 'system', '2023-07-26 08:40:17.688281+07', 'system', '2023-07-26 08:40:17.688281+07', 'Xã An Lập', '25801', 'Xã');
INSERT INTO category."Wards" VALUES (25804, 720, 'system', '2023-07-26 08:40:17.688283+07', 'system', '2023-07-26 08:40:17.688283+07', 'Xã Long Tân', '25804', 'Xã');
INSERT INTO category."Wards" VALUES (25807, 720, 'system', '2023-07-26 08:40:17.688285+07', 'system', '2023-07-26 08:40:17.688285+07', 'Xã Thanh An', '25807', 'Xã');
INSERT INTO category."Wards" VALUES (25810, 720, 'system', '2023-07-26 08:40:17.688287+07', 'system', '2023-07-26 08:40:17.688287+07', 'Xã Thanh Tuyền', '25810', 'Xã');
INSERT INTO category."Wards" VALUES (25813, 721, 'system', '2023-07-26 08:40:17.688289+07', 'system', '2023-07-26 08:40:17.688289+07', 'Phường Mỹ Phước', '25813', 'Phường');
INSERT INTO category."Wards" VALUES (25816, 719, 'system', '2023-07-26 08:40:17.688247+07', 'system', '2023-07-26 08:40:17.688247+07', 'Xã Trừ Văn Thố', '25816', 'Xã');
INSERT INTO category."Wards" VALUES (25819, 719, 'system', '2023-07-26 08:40:17.688249+07', 'system', '2023-07-26 08:40:17.688249+07', 'Xã Cây Trường II', '25819', 'Xã');
INSERT INTO category."Wards" VALUES (25822, 719, 'system', '2023-07-26 08:40:17.688251+07', 'system', '2023-07-26 08:40:17.688251+07', 'Thị trấn Lai Uyên', '25822', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25825, 719, 'system', '2023-07-26 08:40:17.688254+07', 'system', '2023-07-26 08:40:17.688254+07', 'Xã Tân Hưng', '25825', 'Xã');
INSERT INTO category."Wards" VALUES (25828, 719, 'system', '2023-07-26 08:40:17.688256+07', 'system', '2023-07-26 08:40:17.688256+07', 'Xã Long Nguyên', '25828', 'Xã');
INSERT INTO category."Wards" VALUES (25831, 719, 'system', '2023-07-26 08:40:17.688258+07', 'system', '2023-07-26 08:40:17.688258+07', 'Xã Hưng Hòa', '25831', 'Xã');
INSERT INTO category."Wards" VALUES (25834, 719, 'system', '2023-07-26 08:40:17.68826+07', 'system', '2023-07-26 08:40:17.68826+07', 'Xã Lai Hưng', '25834', 'Xã');
INSERT INTO category."Wards" VALUES (25837, 721, 'system', '2023-07-26 08:40:17.688292+07', 'system', '2023-07-26 08:40:17.688292+07', 'Phường Chánh Phú Hòa', '25837', 'Phường');
INSERT INTO category."Wards" VALUES (25840, 721, 'system', '2023-07-26 08:40:17.688294+07', 'system', '2023-07-26 08:40:17.688294+07', 'Xã An Điền', '25840', 'Xã');
INSERT INTO category."Wards" VALUES (25843, 721, 'system', '2023-07-26 08:40:17.688296+07', 'system', '2023-07-26 08:40:17.688296+07', 'Xã An Tây', '25843', 'Xã');
INSERT INTO category."Wards" VALUES (25846, 721, 'system', '2023-07-26 08:40:17.688298+07', 'system', '2023-07-26 08:40:17.688298+07', 'Phường Thới Hòa', '25846', 'Phường');
INSERT INTO category."Wards" VALUES (25849, 721, 'system', '2023-07-26 08:40:17.688301+07', 'system', '2023-07-26 08:40:17.688301+07', 'Phường Hòa Lợi', '25849', 'Phường');
INSERT INTO category."Wards" VALUES (25852, 721, 'system', '2023-07-26 08:40:17.688303+07', 'system', '2023-07-26 08:40:17.688303+07', 'Phường Tân Định', '25852', 'Phường');
INSERT INTO category."Wards" VALUES (25855, 721, 'system', '2023-07-26 08:40:17.688306+07', 'system', '2023-07-26 08:40:17.688306+07', 'Xã Phú An', '25855', 'Xã');
INSERT INTO category."Wards" VALUES (25858, 722, 'system', '2023-07-26 08:40:17.688308+07', 'system', '2023-07-26 08:40:17.688308+07', 'Thị trấn Phước Vĩnh', '25858', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25861, 722, 'system', '2023-07-26 08:40:17.688311+07', 'system', '2023-07-26 08:40:17.688311+07', 'Xã An Linh', '25861', 'Xã');
INSERT INTO category."Wards" VALUES (25864, 722, 'system', '2023-07-26 08:40:17.688313+07', 'system', '2023-07-26 08:40:17.688313+07', 'Xã Phước Sang', '25864', 'Xã');
INSERT INTO category."Wards" VALUES (25865, 722, 'system', '2023-07-26 08:40:17.688315+07', 'system', '2023-07-26 08:40:17.688315+07', 'Xã An Thái', '25865', 'Xã');
INSERT INTO category."Wards" VALUES (25867, 722, 'system', '2023-07-26 08:40:17.688318+07', 'system', '2023-07-26 08:40:17.688318+07', 'Xã An Long', '25867', 'Xã');
INSERT INTO category."Wards" VALUES (25870, 722, 'system', '2023-07-26 08:40:17.68832+07', 'system', '2023-07-26 08:40:17.68832+07', 'Xã An Bình', '25870', 'Xã');
INSERT INTO category."Wards" VALUES (25873, 722, 'system', '2023-07-26 08:40:17.688322+07', 'system', '2023-07-26 08:40:17.688322+07', 'Xã Tân Hiệp', '25873', 'Xã');
INSERT INTO category."Wards" VALUES (25876, 722, 'system', '2023-07-26 08:40:17.688324+07', 'system', '2023-07-26 08:40:17.688324+07', 'Xã Tam Lập', '25876', 'Xã');
INSERT INTO category."Wards" VALUES (25879, 722, 'system', '2023-07-26 08:40:17.688326+07', 'system', '2023-07-26 08:40:17.688326+07', 'Xã Tân Long', '25879', 'Xã');
INSERT INTO category."Wards" VALUES (25882, 722, 'system', '2023-07-26 08:40:17.688328+07', 'system', '2023-07-26 08:40:17.688328+07', 'Xã Vĩnh Hoà', '25882', 'Xã');
INSERT INTO category."Wards" VALUES (25885, 722, 'system', '2023-07-26 08:40:17.68833+07', 'system', '2023-07-26 08:40:17.68833+07', 'Xã Phước Hoà', '25885', 'Xã');
INSERT INTO category."Wards" VALUES (25888, 723, 'system', '2023-07-26 08:40:17.688333+07', 'system', '2023-07-26 08:40:17.688333+07', 'Phường Uyên Hưng', '25888', 'Phường');
INSERT INTO category."Wards" VALUES (25891, 723, 'system', '2023-07-26 08:40:17.688335+07', 'system', '2023-07-26 08:40:17.688335+07', 'Phường Tân Phước Khánh', '25891', 'Phường');
INSERT INTO category."Wards" VALUES (25894, 726, 'system', '2023-07-26 08:40:17.6884+07', 'system', '2023-07-26 08:40:17.6884+07', 'Xã Tân Định', '25894', 'Xã');
INSERT INTO category."Wards" VALUES (25897, 726, 'system', '2023-07-26 08:40:17.688402+07', 'system', '2023-07-26 08:40:17.688402+07', 'Xã Bình Mỹ', '25897', 'Xã');
INSERT INTO category."Wards" VALUES (25900, 726, 'system', '2023-07-26 08:40:17.688404+07', 'system', '2023-07-26 08:40:17.688404+07', 'Thị trấn Tân Bình', '25900', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25903, 726, 'system', '2023-07-26 08:40:17.688407+07', 'system', '2023-07-26 08:40:17.688407+07', 'Xã Tân Lập', '25903', 'Xã');
INSERT INTO category."Wards" VALUES (25906, 726, 'system', '2023-07-26 08:40:17.688409+07', 'system', '2023-07-26 08:40:17.688409+07', 'Thị trấn Tân Thành', '25906', 'Thị trấn');
INSERT INTO category."Wards" VALUES (25907, 726, 'system', '2023-07-26 08:40:17.688411+07', 'system', '2023-07-26 08:40:17.688411+07', 'Xã Đất Cuốc', '25907', 'Xã');
INSERT INTO category."Wards" VALUES (25908, 726, 'system', '2023-07-26 08:40:17.688414+07', 'system', '2023-07-26 08:40:17.688414+07', 'Xã Hiếu Liêm', '25908', 'Xã');
INSERT INTO category."Wards" VALUES (25909, 726, 'system', '2023-07-26 08:40:17.688416+07', 'system', '2023-07-26 08:40:17.688416+07', 'Xã Lạc An', '25909', 'Xã');
INSERT INTO category."Wards" VALUES (25912, 723, 'system', '2023-07-26 08:40:17.688337+07', 'system', '2023-07-26 08:40:17.688337+07', 'Phường Vĩnh Tân', '25912', 'Phường');
INSERT INTO category."Wards" VALUES (25915, 723, 'system', '2023-07-26 08:40:17.688339+07', 'system', '2023-07-26 08:40:17.688339+07', 'Phường Hội Nghĩa', '25915', 'Phường');
INSERT INTO category."Wards" VALUES (25918, 726, 'system', '2023-07-26 08:40:17.688418+07', 'system', '2023-07-26 08:40:17.688418+07', 'Xã Tân Mỹ', '25918', 'Xã');
INSERT INTO category."Wards" VALUES (25920, 723, 'system', '2023-07-26 08:40:17.688342+07', 'system', '2023-07-26 08:40:17.688342+07', 'Phường Tân Hiệp', '25920', 'Phường');
INSERT INTO category."Wards" VALUES (25921, 723, 'system', '2023-07-26 08:40:17.688344+07', 'system', '2023-07-26 08:40:17.688344+07', 'Phường Khánh Bình', '25921', 'Phường');
INSERT INTO category."Wards" VALUES (25924, 723, 'system', '2023-07-26 08:40:17.688346+07', 'system', '2023-07-26 08:40:17.688346+07', 'Phường Phú Chánh', '25924', 'Phường');
INSERT INTO category."Wards" VALUES (25927, 726, 'system', '2023-07-26 08:40:17.68842+07', 'system', '2023-07-26 08:40:17.68842+07', 'Xã Thường Tân', '25927', 'Xã');
INSERT INTO category."Wards" VALUES (25930, 723, 'system', '2023-07-26 08:40:17.688349+07', 'system', '2023-07-26 08:40:17.688349+07', 'Xã Bạch Đằng', '25930', 'Xã');
INSERT INTO category."Wards" VALUES (25933, 723, 'system', '2023-07-26 08:40:17.688351+07', 'system', '2023-07-26 08:40:17.688351+07', 'Phường Tân Vĩnh Hiệp', '25933', 'Phường');
INSERT INTO category."Wards" VALUES (25936, 723, 'system', '2023-07-26 08:40:17.688353+07', 'system', '2023-07-26 08:40:17.688353+07', 'Phường Thạnh Phước', '25936', 'Phường');
INSERT INTO category."Wards" VALUES (25937, 723, 'system', '2023-07-26 08:40:17.688356+07', 'system', '2023-07-26 08:40:17.688356+07', 'Xã Thạnh Hội', '25937', 'Xã');
INSERT INTO category."Wards" VALUES (25939, 723, 'system', '2023-07-26 08:40:17.688358+07', 'system', '2023-07-26 08:40:17.688358+07', 'Phường Thái Hòa', '25939', 'Phường');
INSERT INTO category."Wards" VALUES (25942, 724, 'system', '2023-07-26 08:40:17.68836+07', 'system', '2023-07-26 08:40:17.68836+07', 'Phường Dĩ An', '25942', 'Phường');
INSERT INTO category."Wards" VALUES (25945, 724, 'system', '2023-07-26 08:40:17.688362+07', 'system', '2023-07-26 08:40:17.688363+07', 'Phường Tân Bình', '25945', 'Phường');
INSERT INTO category."Wards" VALUES (25948, 724, 'system', '2023-07-26 08:40:17.688365+07', 'system', '2023-07-26 08:40:17.688365+07', 'Phường Tân Đông Hiệp', '25948', 'Phường');
INSERT INTO category."Wards" VALUES (25951, 724, 'system', '2023-07-26 08:40:17.688367+07', 'system', '2023-07-26 08:40:17.688367+07', 'Phường Bình An', '25951', 'Phường');
INSERT INTO category."Wards" VALUES (25954, 724, 'system', '2023-07-26 08:40:17.688369+07', 'system', '2023-07-26 08:40:17.688369+07', 'Phường Bình Thắng', '25954', 'Phường');
INSERT INTO category."Wards" VALUES (25957, 724, 'system', '2023-07-26 08:40:17.688371+07', 'system', '2023-07-26 08:40:17.688372+07', 'Phường Đông Hòa', '25957', 'Phường');
INSERT INTO category."Wards" VALUES (25960, 724, 'system', '2023-07-26 08:40:17.688374+07', 'system', '2023-07-26 08:40:17.688374+07', 'Phường An Bình', '25960', 'Phường');
INSERT INTO category."Wards" VALUES (25963, 725, 'system', '2023-07-26 08:40:17.688376+07', 'system', '2023-07-26 08:40:17.688376+07', 'Phường An Thạnh', '25963', 'Phường');
INSERT INTO category."Wards" VALUES (25966, 725, 'system', '2023-07-26 08:40:17.688378+07', 'system', '2023-07-26 08:40:17.688378+07', 'Phường Lái Thiêu', '25966', 'Phường');
INSERT INTO category."Wards" VALUES (25969, 725, 'system', '2023-07-26 08:40:17.688381+07', 'system', '2023-07-26 08:40:17.688381+07', 'Phường Bình Chuẩn', '25969', 'Phường');
INSERT INTO category."Wards" VALUES (25972, 725, 'system', '2023-07-26 08:40:17.688383+07', 'system', '2023-07-26 08:40:17.688383+07', 'Phường Thuận Giao', '25972', 'Phường');
INSERT INTO category."Wards" VALUES (25975, 725, 'system', '2023-07-26 08:40:17.688386+07', 'system', '2023-07-26 08:40:17.688386+07', 'Phường An Phú', '25975', 'Phường');
INSERT INTO category."Wards" VALUES (25978, 725, 'system', '2023-07-26 08:40:17.688389+07', 'system', '2023-07-26 08:40:17.688389+07', 'Phường Hưng Định', '25978', 'Phường');
INSERT INTO category."Wards" VALUES (25981, 725, 'system', '2023-07-26 08:40:17.688391+07', 'system', '2023-07-26 08:40:17.688391+07', 'Xã An Sơn', '25981', 'Xã');
INSERT INTO category."Wards" VALUES (25984, 725, 'system', '2023-07-26 08:40:17.688393+07', 'system', '2023-07-26 08:40:17.688393+07', 'Phường Bình Nhâm', '25984', 'Phường');
INSERT INTO category."Wards" VALUES (25987, 725, 'system', '2023-07-26 08:40:17.688395+07', 'system', '2023-07-26 08:40:17.688396+07', 'Phường Bình Hòa', '25987', 'Phường');
INSERT INTO category."Wards" VALUES (25990, 725, 'system', '2023-07-26 08:40:17.688398+07', 'system', '2023-07-26 08:40:17.688398+07', 'Phường Vĩnh Phú', '25990', 'Phường');
INSERT INTO category."Wards" VALUES (25993, 731, 'system', '2023-07-26 08:40:17.688422+07', 'system', '2023-07-26 08:40:17.688422+07', 'Phường Trảng Dài', '25993', 'Phường');
INSERT INTO category."Wards" VALUES (25996, 731, 'system', '2023-07-26 08:40:17.688425+07', 'system', '2023-07-26 08:40:17.688425+07', 'Phường Tân Phong', '25996', 'Phường');
INSERT INTO category."Wards" VALUES (25999, 731, 'system', '2023-07-26 08:40:17.688427+07', 'system', '2023-07-26 08:40:17.688427+07', 'Phường Tân Biên', '25999', 'Phường');
INSERT INTO category."Wards" VALUES (26002, 731, 'system', '2023-07-26 08:40:17.688429+07', 'system', '2023-07-26 08:40:17.688429+07', 'Phường Hố Nai', '26002', 'Phường');
INSERT INTO category."Wards" VALUES (26005, 731, 'system', '2023-07-26 08:40:17.688431+07', 'system', '2023-07-26 08:40:17.688431+07', 'Phường Tân Hòa', '26005', 'Phường');
INSERT INTO category."Wards" VALUES (26008, 731, 'system', '2023-07-26 08:40:17.688433+07', 'system', '2023-07-26 08:40:17.688434+07', 'Phường Tân Hiệp', '26008', 'Phường');
INSERT INTO category."Wards" VALUES (26011, 731, 'system', '2023-07-26 08:40:17.688436+07', 'system', '2023-07-26 08:40:17.688436+07', 'Phường Bửu Long', '26011', 'Phường');
INSERT INTO category."Wards" VALUES (26014, 731, 'system', '2023-07-26 08:40:17.688438+07', 'system', '2023-07-26 08:40:17.688438+07', 'Phường Tân Tiến', '26014', 'Phường');
INSERT INTO category."Wards" VALUES (26017, 731, 'system', '2023-07-26 08:40:17.68844+07', 'system', '2023-07-26 08:40:17.68844+07', 'Phường Tam Hiệp', '26017', 'Phường');
INSERT INTO category."Wards" VALUES (26020, 731, 'system', '2023-07-26 08:40:17.688442+07', 'system', '2023-07-26 08:40:17.688443+07', 'Phường Long Bình', '26020', 'Phường');
INSERT INTO category."Wards" VALUES (26023, 731, 'system', '2023-07-26 08:40:17.688445+07', 'system', '2023-07-26 08:40:17.688445+07', 'Phường Quang Vinh', '26023', 'Phường');
INSERT INTO category."Wards" VALUES (26026, 731, 'system', '2023-07-26 08:40:17.688447+07', 'system', '2023-07-26 08:40:17.688447+07', 'Phường Tân Mai', '26026', 'Phường');
INSERT INTO category."Wards" VALUES (26029, 731, 'system', '2023-07-26 08:40:17.688449+07', 'system', '2023-07-26 08:40:17.688449+07', 'Phường Thống Nhất', '26029', 'Phường');
INSERT INTO category."Wards" VALUES (26032, 731, 'system', '2023-07-26 08:40:17.688452+07', 'system', '2023-07-26 08:40:17.688452+07', 'Phường Trung Dũng', '26032', 'Phường');
INSERT INTO category."Wards" VALUES (26035, 731, 'system', '2023-07-26 08:40:17.688454+07', 'system', '2023-07-26 08:40:17.688454+07', 'Phường Tam Hòa', '26035', 'Phường');
INSERT INTO category."Wards" VALUES (26038, 731, 'system', '2023-07-26 08:40:17.688456+07', 'system', '2023-07-26 08:40:17.688456+07', 'Phường Hòa Bình', '26038', 'Phường');
INSERT INTO category."Wards" VALUES (26041, 731, 'system', '2023-07-26 08:40:17.688458+07', 'system', '2023-07-26 08:40:17.688458+07', 'Phường Quyết Thắng', '26041', 'Phường');
INSERT INTO category."Wards" VALUES (26044, 731, 'system', '2023-07-26 08:40:17.688461+07', 'system', '2023-07-26 08:40:17.688461+07', 'Phường Thanh Bình', '26044', 'Phường');
INSERT INTO category."Wards" VALUES (26047, 731, 'system', '2023-07-26 08:40:17.688464+07', 'system', '2023-07-26 08:40:17.688464+07', 'Phường Bình Đa', '26047', 'Phường');
INSERT INTO category."Wards" VALUES (26050, 731, 'system', '2023-07-26 08:40:17.688466+07', 'system', '2023-07-26 08:40:17.688466+07', 'Phường An Bình', '26050', 'Phường');
INSERT INTO category."Wards" VALUES (26053, 731, 'system', '2023-07-26 08:40:17.688468+07', 'system', '2023-07-26 08:40:17.688468+07', 'Phường Bửu Hòa', '26053', 'Phường');
INSERT INTO category."Wards" VALUES (26056, 731, 'system', '2023-07-26 08:40:17.688471+07', 'system', '2023-07-26 08:40:17.688471+07', 'Phường Long Bình Tân', '26056', 'Phường');
INSERT INTO category."Wards" VALUES (26059, 731, 'system', '2023-07-26 08:40:17.688473+07', 'system', '2023-07-26 08:40:17.688473+07', 'Phường Tân Vạn', '26059', 'Phường');
INSERT INTO category."Wards" VALUES (26062, 731, 'system', '2023-07-26 08:40:17.688475+07', 'system', '2023-07-26 08:40:17.688475+07', 'Phường Tân Hạnh', '26062', 'Phường');
INSERT INTO category."Wards" VALUES (26065, 731, 'system', '2023-07-26 08:40:17.688477+07', 'system', '2023-07-26 08:40:17.688477+07', 'Phường Hiệp Hòa', '26065', 'Phường');
INSERT INTO category."Wards" VALUES (26068, 731, 'system', '2023-07-26 08:40:17.68848+07', 'system', '2023-07-26 08:40:17.68848+07', 'Phường Hóa An', '26068', 'Phường');
INSERT INTO category."Wards" VALUES (26071, 732, 'system', '2023-07-26 08:40:17.688491+07', 'system', '2023-07-26 08:40:17.688491+07', 'Phường Xuân Trung', '26071', 'Phường');
INSERT INTO category."Wards" VALUES (26074, 732, 'system', '2023-07-26 08:40:17.688494+07', 'system', '2023-07-26 08:40:17.688494+07', 'Phường Xuân Thanh', '26074', 'Phường');
INSERT INTO category."Wards" VALUES (26077, 732, 'system', '2023-07-26 08:40:17.688496+07', 'system', '2023-07-26 08:40:17.688496+07', 'Phường Xuân Bình', '26077', 'Phường');
INSERT INTO category."Wards" VALUES (26080, 732, 'system', '2023-07-26 08:40:17.688498+07', 'system', '2023-07-26 08:40:17.688498+07', 'Phường Xuân An', '26080', 'Phường');
INSERT INTO category."Wards" VALUES (26083, 732, 'system', '2023-07-26 08:40:17.6885+07', 'system', '2023-07-26 08:40:17.6885+07', 'Phường Xuân Hoà', '26083', 'Phường');
INSERT INTO category."Wards" VALUES (26086, 732, 'system', '2023-07-26 08:40:17.688503+07', 'system', '2023-07-26 08:40:17.688503+07', 'Phường Phú Bình', '26086', 'Phường');
INSERT INTO category."Wards" VALUES (26089, 732, 'system', '2023-07-26 08:40:17.688505+07', 'system', '2023-07-26 08:40:17.688505+07', 'Xã Bình Lộc', '26089', 'Xã');
INSERT INTO category."Wards" VALUES (26092, 732, 'system', '2023-07-26 08:40:17.688507+07', 'system', '2023-07-26 08:40:17.688507+07', 'Xã Bảo Quang', '26092', 'Xã');
INSERT INTO category."Wards" VALUES (26095, 732, 'system', '2023-07-26 08:40:17.68851+07', 'system', '2023-07-26 08:40:17.68851+07', 'Phường Suối Tre', '26095', 'Phường');
INSERT INTO category."Wards" VALUES (26098, 732, 'system', '2023-07-26 08:40:17.688514+07', 'system', '2023-07-26 08:40:17.688514+07', 'Phường Bảo Vinh', '26098', 'Phường');
INSERT INTO category."Wards" VALUES (26101, 732, 'system', '2023-07-26 08:40:17.688518+07', 'system', '2023-07-26 08:40:17.688518+07', 'Phường Xuân Lập', '26101', 'Phường');
INSERT INTO category."Wards" VALUES (26104, 732, 'system', '2023-07-26 08:40:17.688522+07', 'system', '2023-07-26 08:40:17.688522+07', 'Phường Bàu Sen', '26104', 'Phường');
INSERT INTO category."Wards" VALUES (26107, 732, 'system', '2023-07-26 08:40:17.688526+07', 'system', '2023-07-26 08:40:17.688526+07', 'Xã Bàu Trâm', '26107', 'Xã');
INSERT INTO category."Wards" VALUES (26110, 732, 'system', '2023-07-26 08:40:17.68853+07', 'system', '2023-07-26 08:40:17.68853+07', 'Phường Xuân Tân', '26110', 'Phường');
INSERT INTO category."Wards" VALUES (26113, 732, 'system', '2023-07-26 08:40:17.688534+07', 'system', '2023-07-26 08:40:17.688534+07', 'Xã Hàng Gòn', '26113', 'Xã');
INSERT INTO category."Wards" VALUES (26116, 734, 'system', '2023-07-26 08:40:17.688551+07', 'system', '2023-07-26 08:40:17.688551+07', 'Thị trấn Tân Phú', '26116', 'Thị trấn');
INSERT INTO category."Wards" VALUES (26119, 734, 'system', '2023-07-26 08:40:17.688553+07', 'system', '2023-07-26 08:40:17.688553+07', 'Xã Dak Lua', '26119', 'Xã');
INSERT INTO category."Wards" VALUES (26122, 734, 'system', '2023-07-26 08:40:17.688555+07', 'system', '2023-07-26 08:40:17.688555+07', 'Xã Nam Cát Tiên', '26122', 'Xã');
INSERT INTO category."Wards" VALUES (26125, 734, 'system', '2023-07-26 08:40:17.688557+07', 'system', '2023-07-26 08:40:17.688557+07', 'Xã Phú An', '26125', 'Xã');
INSERT INTO category."Wards" VALUES (26128, 734, 'system', '2023-07-26 08:40:17.688559+07', 'system', '2023-07-26 08:40:17.688559+07', 'Xã Núi Tượng', '26128', 'Xã');
INSERT INTO category."Wards" VALUES (26131, 734, 'system', '2023-07-26 08:40:17.688561+07', 'system', '2023-07-26 08:40:17.688561+07', 'Xã Tà Lài', '26131', 'Xã');
INSERT INTO category."Wards" VALUES (26134, 734, 'system', '2023-07-26 08:40:17.688563+07', 'system', '2023-07-26 08:40:17.688563+07', 'Xã Phú Lập', '26134', 'Xã');
INSERT INTO category."Wards" VALUES (26137, 734, 'system', '2023-07-26 08:40:17.688564+07', 'system', '2023-07-26 08:40:17.688564+07', 'Xã Phú Sơn', '26137', 'Xã');
INSERT INTO category."Wards" VALUES (26140, 734, 'system', '2023-07-26 08:40:17.688567+07', 'system', '2023-07-26 08:40:17.688567+07', 'Xã Phú Thịnh', '26140', 'Xã');
INSERT INTO category."Wards" VALUES (26143, 734, 'system', '2023-07-26 08:40:17.688569+07', 'system', '2023-07-26 08:40:17.688569+07', 'Xã Thanh Sơn', '26143', 'Xã');
INSERT INTO category."Wards" VALUES (26146, 734, 'system', '2023-07-26 08:40:17.688571+07', 'system', '2023-07-26 08:40:17.688571+07', 'Xã Phú Trung', '26146', 'Xã');
INSERT INTO category."Wards" VALUES (26149, 734, 'system', '2023-07-26 08:40:17.688573+07', 'system', '2023-07-26 08:40:17.688573+07', 'Xã Phú Xuân', '26149', 'Xã');
INSERT INTO category."Wards" VALUES (26152, 734, 'system', '2023-07-26 08:40:17.688575+07', 'system', '2023-07-26 08:40:17.688575+07', 'Xã Phú Lộc', '26152', 'Xã');
INSERT INTO category."Wards" VALUES (26155, 734, 'system', '2023-07-26 08:40:17.688577+07', 'system', '2023-07-26 08:40:17.688577+07', 'Xã Phú Lâm', '26155', 'Xã');
INSERT INTO category."Wards" VALUES (26158, 734, 'system', '2023-07-26 08:40:17.688578+07', 'system', '2023-07-26 08:40:17.688578+07', 'Xã Phú Bình', '26158', 'Xã');
INSERT INTO category."Wards" VALUES (26161, 734, 'system', '2023-07-26 08:40:17.68858+07', 'system', '2023-07-26 08:40:17.68858+07', 'Xã Phú Thanh', '26161', 'Xã');
INSERT INTO category."Wards" VALUES (26164, 734, 'system', '2023-07-26 08:40:17.688582+07', 'system', '2023-07-26 08:40:17.688582+07', 'Xã Trà Cổ', '26164', 'Xã');
INSERT INTO category."Wards" VALUES (26167, 734, 'system', '2023-07-26 08:40:17.688584+07', 'system', '2023-07-26 08:40:17.688584+07', 'Xã Phú Điền', '26167', 'Xã');
INSERT INTO category."Wards" VALUES (26170, 735, 'system', '2023-07-26 08:40:17.688586+07', 'system', '2023-07-26 08:40:17.688586+07', 'Thị trấn Vĩnh An', '26170', 'Thị trấn');
INSERT INTO category."Wards" VALUES (26173, 735, 'system', '2023-07-26 08:40:17.688588+07', 'system', '2023-07-26 08:40:17.688588+07', 'Xã Phú Lý', '26173', 'Xã');
INSERT INTO category."Wards" VALUES (26176, 735, 'system', '2023-07-26 08:40:17.68859+07', 'system', '2023-07-26 08:40:17.68859+07', 'Xã Trị An', '26176', 'Xã');
INSERT INTO category."Wards" VALUES (26179, 735, 'system', '2023-07-26 08:40:17.688592+07', 'system', '2023-07-26 08:40:17.688592+07', 'Xã Tân An', '26179', 'Xã');
INSERT INTO category."Wards" VALUES (26182, 735, 'system', '2023-07-26 08:40:17.688593+07', 'system', '2023-07-26 08:40:17.688594+07', 'Xã Vĩnh Tân', '26182', 'Xã');
INSERT INTO category."Wards" VALUES (26185, 735, 'system', '2023-07-26 08:40:17.688595+07', 'system', '2023-07-26 08:40:17.688595+07', 'Xã Bình Lợi', '26185', 'Xã');
INSERT INTO category."Wards" VALUES (26188, 735, 'system', '2023-07-26 08:40:17.688597+07', 'system', '2023-07-26 08:40:17.688597+07', 'Xã Thạnh Phú', '26188', 'Xã');
INSERT INTO category."Wards" VALUES (26191, 735, 'system', '2023-07-26 08:40:17.688599+07', 'system', '2023-07-26 08:40:17.688599+07', 'Xã Thiện Tân', '26191', 'Xã');
INSERT INTO category."Wards" VALUES (26194, 735, 'system', '2023-07-26 08:40:17.688601+07', 'system', '2023-07-26 08:40:17.688601+07', 'Xã Tân Bình', '26194', 'Xã');
INSERT INTO category."Wards" VALUES (26197, 735, 'system', '2023-07-26 08:40:17.688603+07', 'system', '2023-07-26 08:40:17.688603+07', 'Xã Bình Hòa', '26197', 'Xã');
INSERT INTO category."Wards" VALUES (26200, 735, 'system', '2023-07-26 08:40:17.688605+07', 'system', '2023-07-26 08:40:17.688605+07', 'Xã Mã Đà', '26200', 'Xã');
INSERT INTO category."Wards" VALUES (26203, 735, 'system', '2023-07-26 08:40:17.688606+07', 'system', '2023-07-26 08:40:17.688606+07', 'Xã Hiếu Liêm', '26203', 'Xã');
INSERT INTO category."Wards" VALUES (26206, 736, 'system', '2023-07-26 08:40:17.688608+07', 'system', '2023-07-26 08:40:17.688608+07', 'Thị trấn Định Quán', '26206', 'Thị trấn');
INSERT INTO category."Wards" VALUES (26209, 736, 'system', '2023-07-26 08:40:17.68861+07', 'system', '2023-07-26 08:40:17.68861+07', 'Xã Thanh Sơn', '26209', 'Xã');
INSERT INTO category."Wards" VALUES (26212, 736, 'system', '2023-07-26 08:40:17.688612+07', 'system', '2023-07-26 08:40:17.688612+07', 'Xã Phú Tân', '26212', 'Xã');
INSERT INTO category."Wards" VALUES (26215, 736, 'system', '2023-07-26 08:40:17.688614+07', 'system', '2023-07-26 08:40:17.688614+07', 'Xã Phú Vinh', '26215', 'Xã');
INSERT INTO category."Wards" VALUES (26218, 736, 'system', '2023-07-26 08:40:17.688616+07', 'system', '2023-07-26 08:40:17.688616+07', 'Xã Phú Lợi', '26218', 'Xã');
INSERT INTO category."Wards" VALUES (26221, 736, 'system', '2023-07-26 08:40:17.688618+07', 'system', '2023-07-26 08:40:17.688618+07', 'Xã Phú Hòa', '26221', 'Xã');
INSERT INTO category."Wards" VALUES (26224, 736, 'system', '2023-07-26 08:40:17.688619+07', 'system', '2023-07-26 08:40:17.68862+07', 'Xã Ngọc Định', '26224', 'Xã');
INSERT INTO category."Wards" VALUES (26227, 736, 'system', '2023-07-26 08:40:17.688621+07', 'system', '2023-07-26 08:40:17.688621+07', 'Xã La Ngà', '26227', 'Xã');
INSERT INTO category."Wards" VALUES (26230, 736, 'system', '2023-07-26 08:40:17.688623+07', 'system', '2023-07-26 08:40:17.688623+07', 'Xã Gia Canh', '26230', 'Xã');
INSERT INTO category."Wards" VALUES (26233, 736, 'system', '2023-07-26 08:40:17.688625+07', 'system', '2023-07-26 08:40:17.688625+07', 'Xã Phú Ngọc', '26233', 'Xã');
INSERT INTO category."Wards" VALUES (26236, 736, 'system', '2023-07-26 08:40:17.688627+07', 'system', '2023-07-26 08:40:17.688627+07', 'Xã Phú Cường', '26236', 'Xã');
INSERT INTO category."Wards" VALUES (26239, 736, 'system', '2023-07-26 08:40:17.688629+07', 'system', '2023-07-26 08:40:17.688629+07', 'Xã Túc Trưng', '26239', 'Xã');
INSERT INTO category."Wards" VALUES (26242, 736, 'system', '2023-07-26 08:40:17.688631+07', 'system', '2023-07-26 08:40:17.688631+07', 'Xã Phú Túc', '26242', 'Xã');
INSERT INTO category."Wards" VALUES (26245, 736, 'system', '2023-07-26 08:40:17.688633+07', 'system', '2023-07-26 08:40:17.688633+07', 'Xã Suối Nho', '26245', 'Xã');
INSERT INTO category."Wards" VALUES (26248, 737, 'system', '2023-07-26 08:40:17.688635+07', 'system', '2023-07-26 08:40:17.688635+07', 'Thị trấn Trảng Bom', '26248', 'Thị trấn');
INSERT INTO category."Wards" VALUES (26251, 737, 'system', '2023-07-26 08:40:17.688638+07', 'system', '2023-07-26 08:40:17.688638+07', 'Xã Thanh Bình', '26251', 'Xã');
INSERT INTO category."Wards" VALUES (26254, 737, 'system', '2023-07-26 08:40:17.688639+07', 'system', '2023-07-26 08:40:17.688639+07', 'Xã Cây Gáo', '26254', 'Xã');
INSERT INTO category."Wards" VALUES (26257, 737, 'system', '2023-07-26 08:40:17.688641+07', 'system', '2023-07-26 08:40:17.688641+07', 'Xã Bàu Hàm', '26257', 'Xã');
INSERT INTO category."Wards" VALUES (26260, 737, 'system', '2023-07-26 08:40:17.688643+07', 'system', '2023-07-26 08:40:17.688643+07', 'Xã Sông Thao', '26260', 'Xã');
INSERT INTO category."Wards" VALUES (26263, 737, 'system', '2023-07-26 08:40:17.688645+07', 'system', '2023-07-26 08:40:17.688645+07', 'Xã Sông Trầu', '26263', 'Xã');
INSERT INTO category."Wards" VALUES (26266, 737, 'system', '2023-07-26 08:40:17.688647+07', 'system', '2023-07-26 08:40:17.688647+07', 'Xã Đông Hoà', '26266', 'Xã');
INSERT INTO category."Wards" VALUES (26269, 737, 'system', '2023-07-26 08:40:17.688649+07', 'system', '2023-07-26 08:40:17.688649+07', 'Xã Bắc Sơn', '26269', 'Xã');
INSERT INTO category."Wards" VALUES (26272, 737, 'system', '2023-07-26 08:40:17.68865+07', 'system', '2023-07-26 08:40:17.68865+07', 'Xã Hố Nai 3', '26272', 'Xã');
INSERT INTO category."Wards" VALUES (26275, 737, 'system', '2023-07-26 08:40:17.688652+07', 'system', '2023-07-26 08:40:17.688652+07', 'Xã Tây Hoà', '26275', 'Xã');
INSERT INTO category."Wards" VALUES (26278, 737, 'system', '2023-07-26 08:40:17.688654+07', 'system', '2023-07-26 08:40:17.688654+07', 'Xã Bình Minh', '26278', 'Xã');
INSERT INTO category."Wards" VALUES (26281, 737, 'system', '2023-07-26 08:40:17.688656+07', 'system', '2023-07-26 08:40:17.688656+07', 'Xã Trung Hoà', '26281', 'Xã');
INSERT INTO category."Wards" VALUES (26284, 737, 'system', '2023-07-26 08:40:17.688658+07', 'system', '2023-07-26 08:40:17.688658+07', 'Xã Đồi 61', '26284', 'Xã');
INSERT INTO category."Wards" VALUES (26287, 737, 'system', '2023-07-26 08:40:17.688659+07', 'system', '2023-07-26 08:40:17.688659+07', 'Xã Hưng Thịnh', '26287', 'Xã');
INSERT INTO category."Wards" VALUES (26290, 737, 'system', '2023-07-26 08:40:17.688661+07', 'system', '2023-07-26 08:40:17.688661+07', 'Xã Quảng Tiến', '26290', 'Xã');
INSERT INTO category."Wards" VALUES (26293, 737, 'system', '2023-07-26 08:40:17.688663+07', 'system', '2023-07-26 08:40:17.688663+07', 'Xã Giang Điền', '26293', 'Xã');
INSERT INTO category."Wards" VALUES (26296, 737, 'system', '2023-07-26 08:40:17.688665+07', 'system', '2023-07-26 08:40:17.688665+07', 'Xã An Viễn', '26296', 'Xã');
INSERT INTO category."Wards" VALUES (26299, 738, 'system', '2023-07-26 08:40:17.688667+07', 'system', '2023-07-26 08:40:17.688667+07', 'Xã Gia Tân 1', '26299', 'Xã');
INSERT INTO category."Wards" VALUES (26302, 738, 'system', '2023-07-26 08:40:17.688669+07', 'system', '2023-07-26 08:40:17.688669+07', 'Xã Gia Tân 2', '26302', 'Xã');
INSERT INTO category."Wards" VALUES (26305, 738, 'system', '2023-07-26 08:40:17.688671+07', 'system', '2023-07-26 08:40:17.688671+07', 'Xã Gia Tân 3', '26305', 'Xã');
INSERT INTO category."Wards" VALUES (26308, 738, 'system', '2023-07-26 08:40:17.688672+07', 'system', '2023-07-26 08:40:17.688672+07', 'Xã Gia Kiệm', '26308', 'Xã');
INSERT INTO category."Wards" VALUES (26311, 738, 'system', '2023-07-26 08:40:17.688674+07', 'system', '2023-07-26 08:40:17.688674+07', 'Xã Quang Trung', '26311', 'Xã');
INSERT INTO category."Wards" VALUES (26314, 738, 'system', '2023-07-26 08:40:17.688676+07', 'system', '2023-07-26 08:40:17.688676+07', 'Xã Bàu Hàm 2', '26314', 'Xã');
INSERT INTO category."Wards" VALUES (26317, 738, 'system', '2023-07-26 08:40:17.688686+07', 'system', '2023-07-26 08:40:17.688686+07', 'Xã Hưng Lộc', '26317', 'Xã');
INSERT INTO category."Wards" VALUES (26320, 738, 'system', '2023-07-26 08:40:17.688688+07', 'system', '2023-07-26 08:40:17.688688+07', 'Xã Lộ 25', '26320', 'Xã');
INSERT INTO category."Wards" VALUES (26323, 738, 'system', '2023-07-26 08:40:17.68869+07', 'system', '2023-07-26 08:40:17.68869+07', 'Xã Xuân Thiện', '26323', 'Xã');
INSERT INTO category."Wards" VALUES (26326, 738, 'system', '2023-07-26 08:40:17.688692+07', 'system', '2023-07-26 08:40:17.688692+07', 'Thị trấn Dầu Giây', '26326', 'Thị trấn');
INSERT INTO category."Wards" VALUES (26329, 739, 'system', '2023-07-26 08:40:17.688694+07', 'system', '2023-07-26 08:40:17.688694+07', 'Xã Sông Nhạn', '26329', 'Xã');
INSERT INTO category."Wards" VALUES (26332, 739, 'system', '2023-07-26 08:40:17.688696+07', 'system', '2023-07-26 08:40:17.688696+07', 'Xã Xuân Quế', '26332', 'Xã');
INSERT INTO category."Wards" VALUES (26335, 739, 'system', '2023-07-26 08:40:17.688697+07', 'system', '2023-07-26 08:40:17.688697+07', 'Xã Nhân Nghĩa', '26335', 'Xã');
INSERT INTO category."Wards" VALUES (26338, 739, 'system', '2023-07-26 08:40:17.688699+07', 'system', '2023-07-26 08:40:17.688699+07', 'Xã Xuân Đường', '26338', 'Xã');
INSERT INTO category."Wards" VALUES (26341, 739, 'system', '2023-07-26 08:40:17.688701+07', 'system', '2023-07-26 08:40:17.688701+07', 'Thị trấn Long Giao', '26341', 'Thị trấn');
INSERT INTO category."Wards" VALUES (26344, 739, 'system', '2023-07-26 08:40:17.688703+07', 'system', '2023-07-26 08:40:17.688703+07', 'Xã Xuân Mỹ', '26344', 'Xã');
INSERT INTO category."Wards" VALUES (26347, 739, 'system', '2023-07-26 08:40:17.688705+07', 'system', '2023-07-26 08:40:17.688705+07', 'Xã Thừa Đức', '26347', 'Xã');
INSERT INTO category."Wards" VALUES (26350, 739, 'system', '2023-07-26 08:40:17.688707+07', 'system', '2023-07-26 08:40:17.688707+07', 'Xã Bảo Bình', '26350', 'Xã');
INSERT INTO category."Wards" VALUES (26353, 739, 'system', '2023-07-26 08:40:17.688709+07', 'system', '2023-07-26 08:40:17.688709+07', 'Xã Xuân Bảo', '26353', 'Xã');
INSERT INTO category."Wards" VALUES (26356, 739, 'system', '2023-07-26 08:40:17.688711+07', 'system', '2023-07-26 08:40:17.688711+07', 'Xã Xuân Tây', '26356', 'Xã');
INSERT INTO category."Wards" VALUES (26359, 739, 'system', '2023-07-26 08:40:17.688713+07', 'system', '2023-07-26 08:40:17.688714+07', 'Xã Xuân Đông', '26359', 'Xã');
INSERT INTO category."Wards" VALUES (26362, 739, 'system', '2023-07-26 08:40:17.688715+07', 'system', '2023-07-26 08:40:17.688715+07', 'Xã Sông Ray', '26362', 'Xã');
INSERT INTO category."Wards" VALUES (26365, 739, 'system', '2023-07-26 08:40:17.688717+07', 'system', '2023-07-26 08:40:17.688717+07', 'Xã Lâm San', '26365', 'Xã');
INSERT INTO category."Wards" VALUES (26368, 740, 'system', '2023-07-26 08:40:17.688719+07', 'system', '2023-07-26 08:40:17.688719+07', 'Thị trấn Long Thành', '26368', 'Thị trấn');
INSERT INTO category."Wards" VALUES (26371, 731, 'system', '2023-07-26 08:40:17.688482+07', 'system', '2023-07-26 08:40:17.688482+07', 'Phường An Hòa', '26371', 'Phường');
INSERT INTO category."Wards" VALUES (26374, 731, 'system', '2023-07-26 08:40:17.688484+07', 'system', '2023-07-26 08:40:17.688484+07', 'Phường Tam Phước', '26374', 'Phường');
INSERT INTO category."Wards" VALUES (26377, 731, 'system', '2023-07-26 08:40:17.688487+07', 'system', '2023-07-26 08:40:17.688487+07', 'Phường Phước Tân', '26377', 'Phường');
INSERT INTO category."Wards" VALUES (26380, 731, 'system', '2023-07-26 08:40:17.688489+07', 'system', '2023-07-26 08:40:17.688489+07', 'Xã Long Hưng', '26380', 'Xã');
INSERT INTO category."Wards" VALUES (26383, 740, 'system', '2023-07-26 08:40:17.688721+07', 'system', '2023-07-26 08:40:17.688721+07', 'Xã An Phước', '26383', 'Xã');
INSERT INTO category."Wards" VALUES (26386, 740, 'system', '2023-07-26 08:40:17.688723+07', 'system', '2023-07-26 08:40:17.688723+07', 'Xã Bình An', '26386', 'Xã');
INSERT INTO category."Wards" VALUES (26389, 740, 'system', '2023-07-26 08:40:17.688725+07', 'system', '2023-07-26 08:40:17.688725+07', 'Xã Long Đức', '26389', 'Xã');
INSERT INTO category."Wards" VALUES (26392, 740, 'system', '2023-07-26 08:40:17.688727+07', 'system', '2023-07-26 08:40:17.688727+07', 'Xã Lộc An', '26392', 'Xã');
INSERT INTO category."Wards" VALUES (26395, 740, 'system', '2023-07-26 08:40:17.688729+07', 'system', '2023-07-26 08:40:17.688729+07', 'Xã Bình Sơn', '26395', 'Xã');
INSERT INTO category."Wards" VALUES (26398, 740, 'system', '2023-07-26 08:40:17.68873+07', 'system', '2023-07-26 08:40:17.68873+07', 'Xã Tam An', '26398', 'Xã');
INSERT INTO category."Wards" VALUES (26401, 740, 'system', '2023-07-26 08:40:17.688732+07', 'system', '2023-07-26 08:40:17.688732+07', 'Xã Cẩm Đường', '26401', 'Xã');
INSERT INTO category."Wards" VALUES (26404, 740, 'system', '2023-07-26 08:40:17.688734+07', 'system', '2023-07-26 08:40:17.688734+07', 'Xã Long An', '26404', 'Xã');
INSERT INTO category."Wards" VALUES (26410, 740, 'system', '2023-07-26 08:40:17.688736+07', 'system', '2023-07-26 08:40:17.688736+07', 'Xã Bàu Cạn', '26410', 'Xã');
INSERT INTO category."Wards" VALUES (26413, 740, 'system', '2023-07-26 08:40:17.688738+07', 'system', '2023-07-26 08:40:17.688738+07', 'Xã Long Phước', '26413', 'Xã');
INSERT INTO category."Wards" VALUES (26416, 740, 'system', '2023-07-26 08:40:17.68874+07', 'system', '2023-07-26 08:40:17.68874+07', 'Xã Phước Bình', '26416', 'Xã');
INSERT INTO category."Wards" VALUES (26419, 740, 'system', '2023-07-26 08:40:17.688742+07', 'system', '2023-07-26 08:40:17.688742+07', 'Xã Tân Hiệp', '26419', 'Xã');
INSERT INTO category."Wards" VALUES (26422, 740, 'system', '2023-07-26 08:40:17.688744+07', 'system', '2023-07-26 08:40:17.688744+07', 'Xã Phước Thái', '26422', 'Xã');
INSERT INTO category."Wards" VALUES (26425, 741, 'system', '2023-07-26 08:40:17.688745+07', 'system', '2023-07-26 08:40:17.688745+07', 'Thị trấn Gia Ray', '26425', 'Thị trấn');
INSERT INTO category."Wards" VALUES (26428, 741, 'system', '2023-07-26 08:40:17.688747+07', 'system', '2023-07-26 08:40:17.688747+07', 'Xã Xuân Bắc', '26428', 'Xã');
INSERT INTO category."Wards" VALUES (26431, 741, 'system', '2023-07-26 08:40:17.688749+07', 'system', '2023-07-26 08:40:17.688749+07', 'Xã Suối Cao', '26431', 'Xã');
INSERT INTO category."Wards" VALUES (26434, 741, 'system', '2023-07-26 08:40:17.688751+07', 'system', '2023-07-26 08:40:17.688751+07', 'Xã Xuân Thành', '26434', 'Xã');
INSERT INTO category."Wards" VALUES (26437, 741, 'system', '2023-07-26 08:40:17.688753+07', 'system', '2023-07-26 08:40:17.688753+07', 'Xã Xuân Thọ', '26437', 'Xã');
INSERT INTO category."Wards" VALUES (26440, 741, 'system', '2023-07-26 08:40:17.688755+07', 'system', '2023-07-26 08:40:17.688755+07', 'Xã Xuân Trường', '26440', 'Xã');
INSERT INTO category."Wards" VALUES (26443, 741, 'system', '2023-07-26 08:40:17.688756+07', 'system', '2023-07-26 08:40:17.688757+07', 'Xã Xuân Hòa', '26443', 'Xã');
INSERT INTO category."Wards" VALUES (26446, 741, 'system', '2023-07-26 08:40:17.688758+07', 'system', '2023-07-26 08:40:17.688758+07', 'Xã Xuân Hưng', '26446', 'Xã');
INSERT INTO category."Wards" VALUES (26449, 741, 'system', '2023-07-26 08:40:17.688761+07', 'system', '2023-07-26 08:40:17.688761+07', 'Xã Xuân Tâm', '26449', 'Xã');
INSERT INTO category."Wards" VALUES (26452, 741, 'system', '2023-07-26 08:40:17.688763+07', 'system', '2023-07-26 08:40:17.688763+07', 'Xã Suối Cát', '26452', 'Xã');
INSERT INTO category."Wards" VALUES (26455, 741, 'system', '2023-07-26 08:40:17.688766+07', 'system', '2023-07-26 08:40:17.688766+07', 'Xã Xuân Hiệp', '26455', 'Xã');
INSERT INTO category."Wards" VALUES (26458, 741, 'system', '2023-07-26 08:40:17.688769+07', 'system', '2023-07-26 08:40:17.688769+07', 'Xã Xuân Phú', '26458', 'Xã');
INSERT INTO category."Wards" VALUES (26461, 741, 'system', '2023-07-26 08:40:17.688772+07', 'system', '2023-07-26 08:40:17.688772+07', 'Xã Xuân Định', '26461', 'Xã');
INSERT INTO category."Wards" VALUES (26464, 741, 'system', '2023-07-26 08:40:17.688774+07', 'system', '2023-07-26 08:40:17.688775+07', 'Xã Bảo Hoà', '26464', 'Xã');
INSERT INTO category."Wards" VALUES (26467, 741, 'system', '2023-07-26 08:40:17.688777+07', 'system', '2023-07-26 08:40:17.688777+07', 'Xã Lang Minh', '26467', 'Xã');
INSERT INTO category."Wards" VALUES (26470, 742, 'system', '2023-07-26 08:40:17.688779+07', 'system', '2023-07-26 08:40:17.68878+07', 'Xã Phước Thiền', '26470', 'Xã');
INSERT INTO category."Wards" VALUES (26473, 742, 'system', '2023-07-26 08:40:17.688782+07', 'system', '2023-07-26 08:40:17.688782+07', 'Xã Long Tân', '26473', 'Xã');
INSERT INTO category."Wards" VALUES (26476, 742, 'system', '2023-07-26 08:40:17.688785+07', 'system', '2023-07-26 08:40:17.688785+07', 'Xã Đại Phước', '26476', 'Xã');
INSERT INTO category."Wards" VALUES (26479, 742, 'system', '2023-07-26 08:40:17.688788+07', 'system', '2023-07-26 08:40:17.688788+07', 'Thị trấn Hiệp Phước', '26479', 'Thị trấn');
INSERT INTO category."Wards" VALUES (26482, 742, 'system', '2023-07-26 08:40:17.688793+07', 'system', '2023-07-26 08:40:17.688793+07', 'Xã Phú Hữu', '26482', 'Xã');
INSERT INTO category."Wards" VALUES (26485, 742, 'system', '2023-07-26 08:40:17.688795+07', 'system', '2023-07-26 08:40:17.688796+07', 'Xã Phú Hội', '26485', 'Xã');
INSERT INTO category."Wards" VALUES (26488, 742, 'system', '2023-07-26 08:40:17.688798+07', 'system', '2023-07-26 08:40:17.688798+07', 'Xã Phú Thạnh', '26488', 'Xã');
INSERT INTO category."Wards" VALUES (26491, 742, 'system', '2023-07-26 08:40:17.688801+07', 'system', '2023-07-26 08:40:17.688801+07', 'Xã Phú Đông', '26491', 'Xã');
INSERT INTO category."Wards" VALUES (26494, 742, 'system', '2023-07-26 08:40:17.688803+07', 'system', '2023-07-26 08:40:17.688803+07', 'Xã Long Thọ', '26494', 'Xã');
INSERT INTO category."Wards" VALUES (26497, 742, 'system', '2023-07-26 08:40:17.688806+07', 'system', '2023-07-26 08:40:17.688806+07', 'Xã Vĩnh Thanh', '26497', 'Xã');
INSERT INTO category."Wards" VALUES (26500, 742, 'system', '2023-07-26 08:40:17.688808+07', 'system', '2023-07-26 08:40:17.688808+07', 'Xã Phước Khánh', '26500', 'Xã');
INSERT INTO category."Wards" VALUES (26503, 742, 'system', '2023-07-26 08:40:17.688811+07', 'system', '2023-07-26 08:40:17.688811+07', 'Xã Phước An', '26503', 'Xã');
INSERT INTO category."Wards" VALUES (26506, 747, 'system', '2023-07-26 08:40:17.688814+07', 'system', '2023-07-26 08:40:17.688814+07', 'Phường 1', '26506', 'Phường');
INSERT INTO category."Wards" VALUES (26508, 747, 'system', '2023-07-26 08:40:17.688817+07', 'system', '2023-07-26 08:40:17.688817+07', 'Phường Thắng Tam', '26508', 'Phường');
INSERT INTO category."Wards" VALUES (26509, 747, 'system', '2023-07-26 08:40:17.68882+07', 'system', '2023-07-26 08:40:17.68882+07', 'Phường 2', '26509', 'Phường');
INSERT INTO category."Wards" VALUES (26512, 747, 'system', '2023-07-26 08:40:17.688822+07', 'system', '2023-07-26 08:40:17.688822+07', 'Phường 3', '26512', 'Phường');
INSERT INTO category."Wards" VALUES (26515, 747, 'system', '2023-07-26 08:40:17.688825+07', 'system', '2023-07-26 08:40:17.688825+07', 'Phường 4', '26515', 'Phường');
INSERT INTO category."Wards" VALUES (26518, 747, 'system', '2023-07-26 08:40:17.688828+07', 'system', '2023-07-26 08:40:17.688828+07', 'Phường 5', '26518', 'Phường');
INSERT INTO category."Wards" VALUES (26521, 747, 'system', '2023-07-26 08:40:17.688831+07', 'system', '2023-07-26 08:40:17.688831+07', 'Phường Thắng Nhì', '26521', 'Phường');
INSERT INTO category."Wards" VALUES (26524, 747, 'system', '2023-07-26 08:40:17.688834+07', 'system', '2023-07-26 08:40:17.688834+07', 'Phường 7', '26524', 'Phường');
INSERT INTO category."Wards" VALUES (26526, 747, 'system', '2023-07-26 08:40:17.688837+07', 'system', '2023-07-26 08:40:17.688837+07', 'Phường Nguyễn An Ninh', '26526', 'Phường');
INSERT INTO category."Wards" VALUES (26527, 747, 'system', '2023-07-26 08:40:17.68884+07', 'system', '2023-07-26 08:40:17.68884+07', 'Phường 8', '26527', 'Phường');
INSERT INTO category."Wards" VALUES (26530, 747, 'system', '2023-07-26 08:40:17.688843+07', 'system', '2023-07-26 08:40:17.688843+07', 'Phường 9', '26530', 'Phường');
INSERT INTO category."Wards" VALUES (26533, 747, 'system', '2023-07-26 08:40:17.688846+07', 'system', '2023-07-26 08:40:17.688846+07', 'Phường Thắng Nhất', '26533', 'Phường');
INSERT INTO category."Wards" VALUES (26535, 747, 'system', '2023-07-26 08:40:17.688849+07', 'system', '2023-07-26 08:40:17.688849+07', 'Phường Rạch Dừa', '26535', 'Phường');
INSERT INTO category."Wards" VALUES (26536, 747, 'system', '2023-07-26 08:40:17.688852+07', 'system', '2023-07-26 08:40:17.688852+07', 'Phường 10', '26536', 'Phường');
INSERT INTO category."Wards" VALUES (26539, 747, 'system', '2023-07-26 08:40:17.688855+07', 'system', '2023-07-26 08:40:17.688855+07', 'Phường 11', '26539', 'Phường');
INSERT INTO category."Wards" VALUES (26542, 747, 'system', '2023-07-26 08:40:17.688858+07', 'system', '2023-07-26 08:40:17.688858+07', 'Phường 12', '26542', 'Phường');
INSERT INTO category."Wards" VALUES (26545, 747, 'system', '2023-07-26 08:40:17.688861+07', 'system', '2023-07-26 08:40:17.688861+07', 'Xã Long Sơn', '26545', 'Xã');
INSERT INTO category."Wards" VALUES (26548, 748, 'system', '2023-07-26 08:40:17.688865+07', 'system', '2023-07-26 08:40:17.688865+07', 'Phường Phước Hưng', '26548', 'Phường');
INSERT INTO category."Wards" VALUES (26551, 748, 'system', '2023-07-26 08:40:17.688868+07', 'system', '2023-07-26 08:40:17.688868+07', 'Phường Phước Hiệp', '26551', 'Phường');
INSERT INTO category."Wards" VALUES (26554, 748, 'system', '2023-07-26 08:40:17.688871+07', 'system', '2023-07-26 08:40:17.688872+07', 'Phường Phước Nguyên', '26554', 'Phường');
INSERT INTO category."Wards" VALUES (26557, 748, 'system', '2023-07-26 08:40:17.688874+07', 'system', '2023-07-26 08:40:17.688874+07', 'Phường Long Toàn', '26557', 'Phường');
INSERT INTO category."Wards" VALUES (26558, 748, 'system', '2023-07-26 08:40:17.688876+07', 'system', '2023-07-26 08:40:17.688876+07', 'Phường Long Tâm', '26558', 'Phường');
INSERT INTO category."Wards" VALUES (26560, 748, 'system', '2023-07-26 08:40:17.688878+07', 'system', '2023-07-26 08:40:17.688878+07', 'Phường Phước Trung', '26560', 'Phường');
INSERT INTO category."Wards" VALUES (26563, 748, 'system', '2023-07-26 08:40:17.68888+07', 'system', '2023-07-26 08:40:17.68888+07', 'Phường Long Hương', '26563', 'Phường');
INSERT INTO category."Wards" VALUES (26566, 748, 'system', '2023-07-26 08:40:17.688882+07', 'system', '2023-07-26 08:40:17.688882+07', 'Phường Kim Dinh', '26566', 'Phường');
INSERT INTO category."Wards" VALUES (26567, 748, 'system', '2023-07-26 08:40:17.688884+07', 'system', '2023-07-26 08:40:17.688884+07', 'Xã Tân Hưng', '26567', 'Xã');
INSERT INTO category."Wards" VALUES (26569, 748, 'system', '2023-07-26 08:40:17.688885+07', 'system', '2023-07-26 08:40:17.688886+07', 'Xã Long Phước', '26569', 'Xã');
INSERT INTO category."Wards" VALUES (26572, 748, 'system', '2023-07-26 08:40:17.688889+07', 'system', '2023-07-26 08:40:17.688889+07', 'Xã Hoà Long', '26572', 'Xã');
INSERT INTO category."Wards" VALUES (26574, 750, 'system', '2023-07-26 08:40:17.688891+07', 'system', '2023-07-26 08:40:17.688891+07', 'Xã Bàu Chinh', '26574', 'Xã');
INSERT INTO category."Wards" VALUES (26575, 750, 'system', '2023-07-26 08:40:17.688893+07', 'system', '2023-07-26 08:40:17.688893+07', 'Thị trấn Ngãi Giao', '26575', 'Thị trấn');
INSERT INTO category."Wards" VALUES (26578, 750, 'system', '2023-07-26 08:40:17.688895+07', 'system', '2023-07-26 08:40:17.688895+07', 'Xã Bình Ba', '26578', 'Xã');
INSERT INTO category."Wards" VALUES (26581, 750, 'system', '2023-07-26 08:40:17.688897+07', 'system', '2023-07-26 08:40:17.688897+07', 'Xã Suối Nghệ', '26581', 'Xã');
INSERT INTO category."Wards" VALUES (26584, 750, 'system', '2023-07-26 08:40:17.688899+07', 'system', '2023-07-26 08:40:17.688899+07', 'Xã Xuân Sơn', '26584', 'Xã');
INSERT INTO category."Wards" VALUES (26587, 750, 'system', '2023-07-26 08:40:17.6889+07', 'system', '2023-07-26 08:40:17.6889+07', 'Xã Sơn Bình', '26587', 'Xã');
INSERT INTO category."Wards" VALUES (26590, 750, 'system', '2023-07-26 08:40:17.688902+07', 'system', '2023-07-26 08:40:17.688902+07', 'Xã Bình Giã', '26590', 'Xã');
INSERT INTO category."Wards" VALUES (26593, 750, 'system', '2023-07-26 08:40:17.688904+07', 'system', '2023-07-26 08:40:17.688904+07', 'Xã Bình Trung', '26593', 'Xã');
INSERT INTO category."Wards" VALUES (26596, 750, 'system', '2023-07-26 08:40:17.688906+07', 'system', '2023-07-26 08:40:17.688906+07', 'Xã Xà Bang', '26596', 'Xã');
INSERT INTO category."Wards" VALUES (26599, 750, 'system', '2023-07-26 08:40:17.688908+07', 'system', '2023-07-26 08:40:17.688908+07', 'Xã Cù Bị', '26599', 'Xã');
INSERT INTO category."Wards" VALUES (26602, 750, 'system', '2023-07-26 08:40:17.688909+07', 'system', '2023-07-26 08:40:17.688909+07', 'Xã Láng Lớn', '26602', 'Xã');
INSERT INTO category."Wards" VALUES (26605, 750, 'system', '2023-07-26 08:40:17.688911+07', 'system', '2023-07-26 08:40:17.688911+07', 'Xã Quảng Thành', '26605', 'Xã');
INSERT INTO category."Wards" VALUES (26608, 750, 'system', '2023-07-26 08:40:17.688913+07', 'system', '2023-07-26 08:40:17.688913+07', 'Xã Kim Long', '26608', 'Xã');
INSERT INTO category."Wards" VALUES (26611, 750, 'system', '2023-07-26 08:40:17.688915+07', 'system', '2023-07-26 08:40:17.688915+07', 'Xã Suối Rao', '26611', 'Xã');
INSERT INTO category."Wards" VALUES (26614, 750, 'system', '2023-07-26 08:40:17.688917+07', 'system', '2023-07-26 08:40:17.688917+07', 'Xã Đá Bạc', '26614', 'Xã');
INSERT INTO category."Wards" VALUES (26617, 750, 'system', '2023-07-26 08:40:17.688918+07', 'system', '2023-07-26 08:40:17.688919+07', 'Xã Nghĩa Thành', '26617', 'Xã');
INSERT INTO category."Wards" VALUES (26620, 751, 'system', '2023-07-26 08:40:17.68892+07', 'system', '2023-07-26 08:40:17.688921+07', 'Thị trấn Phước Bửu', '26620', 'Thị trấn');
INSERT INTO category."Wards" VALUES (26623, 751, 'system', '2023-07-26 08:40:17.688923+07', 'system', '2023-07-26 08:40:17.688923+07', 'Xã Phước Thuận', '26623', 'Xã');
INSERT INTO category."Wards" VALUES (26626, 751, 'system', '2023-07-26 08:40:17.688924+07', 'system', '2023-07-26 08:40:17.688925+07', 'Xã Phước Tân', '26626', 'Xã');
INSERT INTO category."Wards" VALUES (26629, 751, 'system', '2023-07-26 08:40:17.688926+07', 'system', '2023-07-26 08:40:17.688927+07', 'Xã Xuyên Mộc', '26629', 'Xã');
INSERT INTO category."Wards" VALUES (26632, 751, 'system', '2023-07-26 08:40:17.688928+07', 'system', '2023-07-26 08:40:17.688928+07', 'Xã Bông Trang', '26632', 'Xã');
INSERT INTO category."Wards" VALUES (26635, 751, 'system', '2023-07-26 08:40:17.68893+07', 'system', '2023-07-26 08:40:17.68893+07', 'Xã Tân Lâm', '26635', 'Xã');
INSERT INTO category."Wards" VALUES (26638, 751, 'system', '2023-07-26 08:40:17.688932+07', 'system', '2023-07-26 08:40:17.688932+07', 'Xã Bàu Lâm', '26638', 'Xã');
INSERT INTO category."Wards" VALUES (26641, 751, 'system', '2023-07-26 08:40:17.688934+07', 'system', '2023-07-26 08:40:17.688934+07', 'Xã Hòa Bình', '26641', 'Xã');
INSERT INTO category."Wards" VALUES (26644, 751, 'system', '2023-07-26 08:40:17.688936+07', 'system', '2023-07-26 08:40:17.688936+07', 'Xã Hòa Hưng', '26644', 'Xã');
INSERT INTO category."Wards" VALUES (26647, 751, 'system', '2023-07-26 08:40:17.688937+07', 'system', '2023-07-26 08:40:17.688937+07', 'Xã Hòa Hiệp', '26647', 'Xã');
INSERT INTO category."Wards" VALUES (26650, 751, 'system', '2023-07-26 08:40:17.688939+07', 'system', '2023-07-26 08:40:17.688939+07', 'Xã Hòa Hội', '26650', 'Xã');
INSERT INTO category."Wards" VALUES (26653, 751, 'system', '2023-07-26 08:40:17.688941+07', 'system', '2023-07-26 08:40:17.688941+07', 'Xã Bưng Riềng', '26653', 'Xã');
INSERT INTO category."Wards" VALUES (26656, 751, 'system', '2023-07-26 08:40:17.688943+07', 'system', '2023-07-26 08:40:17.688943+07', 'Xã Bình Châu', '26656', 'Xã');
INSERT INTO category."Wards" VALUES (26659, 752, 'system', '2023-07-26 08:40:17.688945+07', 'system', '2023-07-26 08:40:17.688945+07', 'Thị trấn Long Điền', '26659', 'Thị trấn');
INSERT INTO category."Wards" VALUES (26662, 752, 'system', '2023-07-26 08:40:17.688947+07', 'system', '2023-07-26 08:40:17.688947+07', 'Thị trấn Long Hải', '26662', 'Thị trấn');
INSERT INTO category."Wards" VALUES (26665, 752, 'system', '2023-07-26 08:40:17.688949+07', 'system', '2023-07-26 08:40:17.688949+07', 'Xã An Ngãi', '26665', 'Xã');
INSERT INTO category."Wards" VALUES (26668, 752, 'system', '2023-07-26 08:40:17.68895+07', 'system', '2023-07-26 08:40:17.688951+07', 'Xã Tam Phước', '26668', 'Xã');
INSERT INTO category."Wards" VALUES (26671, 752, 'system', '2023-07-26 08:40:17.688952+07', 'system', '2023-07-26 08:40:17.688953+07', 'Xã An Nhứt', '26671', 'Xã');
INSERT INTO category."Wards" VALUES (26674, 752, 'system', '2023-07-26 08:40:17.688954+07', 'system', '2023-07-26 08:40:17.688954+07', 'Xã Phước Tỉnh', '26674', 'Xã');
INSERT INTO category."Wards" VALUES (26677, 752, 'system', '2023-07-26 08:40:17.688957+07', 'system', '2023-07-26 08:40:17.688957+07', 'Xã Phước Hưng', '26677', 'Xã');
INSERT INTO category."Wards" VALUES (26680, 753, 'system', '2023-07-26 08:40:17.688959+07', 'system', '2023-07-26 08:40:17.688959+07', 'Thị trấn Đất Đỏ', '26680', 'Thị trấn');
INSERT INTO category."Wards" VALUES (26683, 753, 'system', '2023-07-26 08:40:17.688961+07', 'system', '2023-07-26 08:40:17.688961+07', 'Xã Phước Long Thọ', '26683', 'Xã');
INSERT INTO category."Wards" VALUES (26686, 753, 'system', '2023-07-26 08:40:17.688963+07', 'system', '2023-07-26 08:40:17.688963+07', 'Xã Phước Hội', '26686', 'Xã');
INSERT INTO category."Wards" VALUES (26689, 753, 'system', '2023-07-26 08:40:17.688965+07', 'system', '2023-07-26 08:40:17.688965+07', 'Xã Long Mỹ', '26689', 'Xã');
INSERT INTO category."Wards" VALUES (26692, 753, 'system', '2023-07-26 08:40:17.688967+07', 'system', '2023-07-26 08:40:17.688967+07', 'Thị trấn Phước Hải', '26692', 'Thị trấn');
INSERT INTO category."Wards" VALUES (26695, 753, 'system', '2023-07-26 08:40:17.688969+07', 'system', '2023-07-26 08:40:17.688969+07', 'Xã Long Tân', '26695', 'Xã');
INSERT INTO category."Wards" VALUES (26698, 753, 'system', '2023-07-26 08:40:17.688971+07', 'system', '2023-07-26 08:40:17.688971+07', 'Xã Láng Dài', '26698', 'Xã');
INSERT INTO category."Wards" VALUES (26701, 753, 'system', '2023-07-26 08:40:17.688972+07', 'system', '2023-07-26 08:40:17.688972+07', 'Xã Lộc An', '26701', 'Xã');
INSERT INTO category."Wards" VALUES (26704, 754, 'system', '2023-07-26 08:40:17.688974+07', 'system', '2023-07-26 08:40:17.688974+07', 'Phường Phú Mỹ', '26704', 'Phường');
INSERT INTO category."Wards" VALUES (26707, 754, 'system', '2023-07-26 08:40:17.688976+07', 'system', '2023-07-26 08:40:17.688976+07', 'Xã Tân Hoà', '26707', 'Xã');
INSERT INTO category."Wards" VALUES (26710, 754, 'system', '2023-07-26 08:40:17.688978+07', 'system', '2023-07-26 08:40:17.688978+07', 'Xã Tân Hải', '26710', 'Xã');
INSERT INTO category."Wards" VALUES (26713, 754, 'system', '2023-07-26 08:40:17.68898+07', 'system', '2023-07-26 08:40:17.68898+07', 'Phường Phước Hoà', '26713', 'Phường');
INSERT INTO category."Wards" VALUES (26716, 754, 'system', '2023-07-26 08:40:17.688982+07', 'system', '2023-07-26 08:40:17.688982+07', 'Phường Tân Phước', '26716', 'Phường');
INSERT INTO category."Wards" VALUES (26719, 754, 'system', '2023-07-26 08:40:17.688984+07', 'system', '2023-07-26 08:40:17.688984+07', 'Phường Mỹ Xuân', '26719', 'Phường');
INSERT INTO category."Wards" VALUES (26722, 754, 'system', '2023-07-26 08:40:17.688986+07', 'system', '2023-07-26 08:40:17.688986+07', 'Xã Sông Xoài', '26722', 'Xã');
INSERT INTO category."Wards" VALUES (26725, 754, 'system', '2023-07-26 08:40:17.688988+07', 'system', '2023-07-26 08:40:17.688988+07', 'Phường Hắc Dịch', '26725', 'Phường');
INSERT INTO category."Wards" VALUES (26728, 754, 'system', '2023-07-26 08:40:17.68899+07', 'system', '2023-07-26 08:40:17.68899+07', 'Xã Châu Pha', '26728', 'Xã');
INSERT INTO category."Wards" VALUES (26731, 754, 'system', '2023-07-26 08:40:17.688992+07', 'system', '2023-07-26 08:40:17.688992+07', 'Xã Tóc Tiên', '26731', 'Xã');
INSERT INTO category."Wards" VALUES (26734, 760, 'system', '2023-07-26 08:40:17.688994+07', 'system', '2023-07-26 08:40:17.688994+07', 'Phường Tân Định', '26734', 'Phường');
INSERT INTO category."Wards" VALUES (26737, 760, 'system', '2023-07-26 08:40:17.688996+07', 'system', '2023-07-26 08:40:17.688996+07', 'Phường Đa Kao', '26737', 'Phường');
INSERT INTO category."Wards" VALUES (26740, 760, 'system', '2023-07-26 08:40:17.688997+07', 'system', '2023-07-26 08:40:17.688997+07', 'Phường Bến Nghé', '26740', 'Phường');
INSERT INTO category."Wards" VALUES (26743, 760, 'system', '2023-07-26 08:40:17.688999+07', 'system', '2023-07-26 08:40:17.688999+07', 'Phường Bến Thành', '26743', 'Phường');
INSERT INTO category."Wards" VALUES (26746, 760, 'system', '2023-07-26 08:40:17.689001+07', 'system', '2023-07-26 08:40:17.689001+07', 'Phường Nguyễn Thái Bình', '26746', 'Phường');
INSERT INTO category."Wards" VALUES (26749, 760, 'system', '2023-07-26 08:40:17.689003+07', 'system', '2023-07-26 08:40:17.689003+07', 'Phường Phạm Ngũ Lão', '26749', 'Phường');
INSERT INTO category."Wards" VALUES (26752, 760, 'system', '2023-07-26 08:40:17.689006+07', 'system', '2023-07-26 08:40:17.689006+07', 'Phường Cầu Ông Lãnh', '26752', 'Phường');
INSERT INTO category."Wards" VALUES (26755, 760, 'system', '2023-07-26 08:40:17.689008+07', 'system', '2023-07-26 08:40:17.689008+07', 'Phường Cô Giang', '26755', 'Phường');
INSERT INTO category."Wards" VALUES (26758, 760, 'system', '2023-07-26 08:40:17.68901+07', 'system', '2023-07-26 08:40:17.68901+07', 'Phường Nguyễn Cư Trinh', '26758', 'Phường');
INSERT INTO category."Wards" VALUES (26761, 760, 'system', '2023-07-26 08:40:17.689012+07', 'system', '2023-07-26 08:40:17.689012+07', 'Phường Cầu Kho', '26761', 'Phường');
INSERT INTO category."Wards" VALUES (26764, 761, 'system', '2023-07-26 08:40:17.689014+07', 'system', '2023-07-26 08:40:17.689014+07', 'Phường Thạnh Xuân', '26764', 'Phường');
INSERT INTO category."Wards" VALUES (26767, 761, 'system', '2023-07-26 08:40:17.689016+07', 'system', '2023-07-26 08:40:17.689016+07', 'Phường Thạnh Lộc', '26767', 'Phường');
INSERT INTO category."Wards" VALUES (26770, 761, 'system', '2023-07-26 08:40:17.689018+07', 'system', '2023-07-26 08:40:17.689018+07', 'Phường Hiệp Thành', '26770', 'Phường');
INSERT INTO category."Wards" VALUES (26773, 761, 'system', '2023-07-26 08:40:17.68902+07', 'system', '2023-07-26 08:40:17.68902+07', 'Phường Thới An', '26773', 'Phường');
INSERT INTO category."Wards" VALUES (26776, 761, 'system', '2023-07-26 08:40:17.689022+07', 'system', '2023-07-26 08:40:17.689022+07', 'Phường Tân Chánh Hiệp', '26776', 'Phường');
INSERT INTO category."Wards" VALUES (26779, 761, 'system', '2023-07-26 08:40:17.689024+07', 'system', '2023-07-26 08:40:17.689024+07', 'Phường An Phú Đông', '26779', 'Phường');
INSERT INTO category."Wards" VALUES (26782, 761, 'system', '2023-07-26 08:40:17.689027+07', 'system', '2023-07-26 08:40:17.689027+07', 'Phường Tân Thới Hiệp', '26782', 'Phường');
INSERT INTO category."Wards" VALUES (26785, 761, 'system', '2023-07-26 08:40:17.68903+07', 'system', '2023-07-26 08:40:17.68903+07', 'Phường Trung Mỹ Tây', '26785', 'Phường');
INSERT INTO category."Wards" VALUES (26787, 761, 'system', '2023-07-26 08:40:17.689032+07', 'system', '2023-07-26 08:40:17.689032+07', 'Phường Tân Hưng Thuận', '26787', 'Phường');
INSERT INTO category."Wards" VALUES (26788, 761, 'system', '2023-07-26 08:40:17.689034+07', 'system', '2023-07-26 08:40:17.689034+07', 'Phường Đông Hưng Thuận', '26788', 'Phường');
INSERT INTO category."Wards" VALUES (26791, 761, 'system', '2023-07-26 08:40:17.689036+07', 'system', '2023-07-26 08:40:17.689036+07', 'Phường Tân Thới Nhất', '26791', 'Phường');
INSERT INTO category."Wards" VALUES (26794, 769, 'system', '2023-07-26 08:40:17.689191+07', 'system', '2023-07-26 08:40:17.689191+07', 'Phường Linh Xuân', '26794', 'Phường');
INSERT INTO category."Wards" VALUES (26797, 769, 'system', '2023-07-26 08:40:17.689193+07', 'system', '2023-07-26 08:40:17.689193+07', 'Phường Bình Chiểu', '26797', 'Phường');
INSERT INTO category."Wards" VALUES (26800, 769, 'system', '2023-07-26 08:40:17.689195+07', 'system', '2023-07-26 08:40:17.689195+07', 'Phường Linh Trung', '26800', 'Phường');
INSERT INTO category."Wards" VALUES (26803, 769, 'system', '2023-07-26 08:40:17.689197+07', 'system', '2023-07-26 08:40:17.689197+07', 'Phường Tam Bình', '26803', 'Phường');
INSERT INTO category."Wards" VALUES (26806, 769, 'system', '2023-07-26 08:40:17.689199+07', 'system', '2023-07-26 08:40:17.689199+07', 'Phường Tam Phú', '26806', 'Phường');
INSERT INTO category."Wards" VALUES (26809, 769, 'system', '2023-07-26 08:40:17.689201+07', 'system', '2023-07-26 08:40:17.689201+07', 'Phường Hiệp Bình Phước', '26809', 'Phường');
INSERT INTO category."Wards" VALUES (26812, 769, 'system', '2023-07-26 08:40:17.689203+07', 'system', '2023-07-26 08:40:17.689203+07', 'Phường Hiệp Bình Chánh', '26812', 'Phường');
INSERT INTO category."Wards" VALUES (26815, 769, 'system', '2023-07-26 08:40:17.689205+07', 'system', '2023-07-26 08:40:17.689205+07', 'Phường Linh Chiểu', '26815', 'Phường');
INSERT INTO category."Wards" VALUES (26818, 769, 'system', '2023-07-26 08:40:17.689207+07', 'system', '2023-07-26 08:40:17.689207+07', 'Phường Linh Tây', '26818', 'Phường');
INSERT INTO category."Wards" VALUES (26821, 769, 'system', '2023-07-26 08:40:17.689209+07', 'system', '2023-07-26 08:40:17.689209+07', 'Phường Linh Đông', '26821', 'Phường');
INSERT INTO category."Wards" VALUES (26824, 769, 'system', '2023-07-26 08:40:17.68921+07', 'system', '2023-07-26 08:40:17.689211+07', 'Phường Bình Thọ', '26824', 'Phường');
INSERT INTO category."Wards" VALUES (26827, 769, 'system', '2023-07-26 08:40:17.689212+07', 'system', '2023-07-26 08:40:17.689212+07', 'Phường Trường Thọ', '26827', 'Phường');
INSERT INTO category."Wards" VALUES (26830, 769, 'system', '2023-07-26 08:40:17.689214+07', 'system', '2023-07-26 08:40:17.689214+07', 'Phường Long Bình', '26830', 'Phường');
INSERT INTO category."Wards" VALUES (26833, 769, 'system', '2023-07-26 08:40:17.689216+07', 'system', '2023-07-26 08:40:17.689216+07', 'Phường Long Thạnh Mỹ', '26833', 'Phường');
INSERT INTO category."Wards" VALUES (26836, 769, 'system', '2023-07-26 08:40:17.689218+07', 'system', '2023-07-26 08:40:17.689218+07', 'Phường Tân Phú', '26836', 'Phường');
INSERT INTO category."Wards" VALUES (26839, 769, 'system', '2023-07-26 08:40:17.68922+07', 'system', '2023-07-26 08:40:17.68922+07', 'Phường Hiệp Phú', '26839', 'Phường');
INSERT INTO category."Wards" VALUES (26842, 769, 'system', '2023-07-26 08:40:17.689222+07', 'system', '2023-07-26 08:40:17.689222+07', 'Phường Tăng Nhơn Phú A', '26842', 'Phường');
INSERT INTO category."Wards" VALUES (26845, 769, 'system', '2023-07-26 08:40:17.689224+07', 'system', '2023-07-26 08:40:17.689224+07', 'Phường Tăng Nhơn Phú B', '26845', 'Phường');
INSERT INTO category."Wards" VALUES (26848, 769, 'system', '2023-07-26 08:40:17.689226+07', 'system', '2023-07-26 08:40:17.689226+07', 'Phường Phước Long B', '26848', 'Phường');
INSERT INTO category."Wards" VALUES (26851, 769, 'system', '2023-07-26 08:40:17.689228+07', 'system', '2023-07-26 08:40:17.689228+07', 'Phường Phước Long A', '26851', 'Phường');
INSERT INTO category."Wards" VALUES (26854, 769, 'system', '2023-07-26 08:40:17.68923+07', 'system', '2023-07-26 08:40:17.68923+07', 'Phường Trường Thạnh', '26854', 'Phường');
INSERT INTO category."Wards" VALUES (26857, 769, 'system', '2023-07-26 08:40:17.689232+07', 'system', '2023-07-26 08:40:17.689232+07', 'Phường Long Phước', '26857', 'Phường');
INSERT INTO category."Wards" VALUES (26860, 769, 'system', '2023-07-26 08:40:17.689234+07', 'system', '2023-07-26 08:40:17.689234+07', 'Phường Long Trường', '26860', 'Phường');
INSERT INTO category."Wards" VALUES (26863, 769, 'system', '2023-07-26 08:40:17.689236+07', 'system', '2023-07-26 08:40:17.689236+07', 'Phường Phước Bình', '26863', 'Phường');
INSERT INTO category."Wards" VALUES (26866, 769, 'system', '2023-07-26 08:40:17.689238+07', 'system', '2023-07-26 08:40:17.689238+07', 'Phường Phú Hữu', '26866', 'Phường');
INSERT INTO category."Wards" VALUES (26869, 764, 'system', '2023-07-26 08:40:17.689038+07', 'system', '2023-07-26 08:40:17.689038+07', 'Phường 15', '26869', 'Phường');
INSERT INTO category."Wards" VALUES (26872, 764, 'system', '2023-07-26 08:40:17.68904+07', 'system', '2023-07-26 08:40:17.68904+07', 'Phường 13', '26872', 'Phường');
INSERT INTO category."Wards" VALUES (26875, 764, 'system', '2023-07-26 08:40:17.689042+07', 'system', '2023-07-26 08:40:17.689042+07', 'Phường 17', '26875', 'Phường');
INSERT INTO category."Wards" VALUES (26876, 764, 'system', '2023-07-26 08:40:17.689044+07', 'system', '2023-07-26 08:40:17.689044+07', 'Phường 6', '26876', 'Phường');
INSERT INTO category."Wards" VALUES (26878, 764, 'system', '2023-07-26 08:40:17.689046+07', 'system', '2023-07-26 08:40:17.689046+07', 'Phường 16', '26878', 'Phường');
INSERT INTO category."Wards" VALUES (26881, 764, 'system', '2023-07-26 08:40:17.689047+07', 'system', '2023-07-26 08:40:17.689047+07', 'Phường 12', '26881', 'Phường');
INSERT INTO category."Wards" VALUES (26882, 764, 'system', '2023-07-26 08:40:17.689049+07', 'system', '2023-07-26 08:40:17.689049+07', 'Phường 14', '26882', 'Phường');
INSERT INTO category."Wards" VALUES (26884, 764, 'system', '2023-07-26 08:40:17.689051+07', 'system', '2023-07-26 08:40:17.689051+07', 'Phường 10', '26884', 'Phường');
INSERT INTO category."Wards" VALUES (26887, 764, 'system', '2023-07-26 08:40:17.689053+07', 'system', '2023-07-26 08:40:17.689053+07', 'Phường 05', '26887', 'Phường');
INSERT INTO category."Wards" VALUES (26890, 764, 'system', '2023-07-26 08:40:17.689055+07', 'system', '2023-07-26 08:40:17.689055+07', 'Phường 07', '26890', 'Phường');
INSERT INTO category."Wards" VALUES (26893, 764, 'system', '2023-07-26 08:40:17.689057+07', 'system', '2023-07-26 08:40:17.689057+07', 'Phường 04', '26893', 'Phường');
INSERT INTO category."Wards" VALUES (26896, 764, 'system', '2023-07-26 08:40:17.689058+07', 'system', '2023-07-26 08:40:17.689059+07', 'Phường 01', '26896', 'Phường');
INSERT INTO category."Wards" VALUES (26897, 764, 'system', '2023-07-26 08:40:17.68906+07', 'system', '2023-07-26 08:40:17.68906+07', 'Phường 9', '26897', 'Phường');
INSERT INTO category."Wards" VALUES (26898, 764, 'system', '2023-07-26 08:40:17.689062+07', 'system', '2023-07-26 08:40:17.689062+07', 'Phường 8', '26898', 'Phường');
INSERT INTO category."Wards" VALUES (26899, 764, 'system', '2023-07-26 08:40:17.689064+07', 'system', '2023-07-26 08:40:17.689064+07', 'Phường 11', '26899', 'Phường');
INSERT INTO category."Wards" VALUES (26902, 764, 'system', '2023-07-26 08:40:17.689066+07', 'system', '2023-07-26 08:40:17.689066+07', 'Phường 03', '26902', 'Phường');
INSERT INTO category."Wards" VALUES (26905, 765, 'system', '2023-07-26 08:40:17.689068+07', 'system', '2023-07-26 08:40:17.689068+07', 'Phường 13', '26905', 'Phường');
INSERT INTO category."Wards" VALUES (26908, 765, 'system', '2023-07-26 08:40:17.68907+07', 'system', '2023-07-26 08:40:17.68907+07', 'Phường 11', '26908', 'Phường');
INSERT INTO category."Wards" VALUES (26911, 765, 'system', '2023-07-26 08:40:17.689071+07', 'system', '2023-07-26 08:40:17.689071+07', 'Phường 27', '26911', 'Phường');
INSERT INTO category."Wards" VALUES (26914, 765, 'system', '2023-07-26 08:40:17.689073+07', 'system', '2023-07-26 08:40:17.689073+07', 'Phường 26', '26914', 'Phường');
INSERT INTO category."Wards" VALUES (26917, 765, 'system', '2023-07-26 08:40:17.689075+07', 'system', '2023-07-26 08:40:17.689075+07', 'Phường 12', '26917', 'Phường');
INSERT INTO category."Wards" VALUES (26920, 765, 'system', '2023-07-26 08:40:17.689077+07', 'system', '2023-07-26 08:40:17.689077+07', 'Phường 25', '26920', 'Phường');
INSERT INTO category."Wards" VALUES (26923, 765, 'system', '2023-07-26 08:40:17.689079+07', 'system', '2023-07-26 08:40:17.689079+07', 'Phường 05', '26923', 'Phường');
INSERT INTO category."Wards" VALUES (26926, 765, 'system', '2023-07-26 08:40:17.689081+07', 'system', '2023-07-26 08:40:17.689081+07', 'Phường 07', '26926', 'Phường');
INSERT INTO category."Wards" VALUES (26929, 765, 'system', '2023-07-26 08:40:17.689082+07', 'system', '2023-07-26 08:40:17.689082+07', 'Phường 24', '26929', 'Phường');
INSERT INTO category."Wards" VALUES (26932, 765, 'system', '2023-07-26 08:40:17.689084+07', 'system', '2023-07-26 08:40:17.689084+07', 'Phường 06', '26932', 'Phường');
INSERT INTO category."Wards" VALUES (26935, 765, 'system', '2023-07-26 08:40:17.689086+07', 'system', '2023-07-26 08:40:17.689086+07', 'Phường 14', '26935', 'Phường');
INSERT INTO category."Wards" VALUES (26938, 765, 'system', '2023-07-26 08:40:17.689088+07', 'system', '2023-07-26 08:40:17.689088+07', 'Phường 15', '26938', 'Phường');
INSERT INTO category."Wards" VALUES (26941, 765, 'system', '2023-07-26 08:40:17.68909+07', 'system', '2023-07-26 08:40:17.68909+07', 'Phường 02', '26941', 'Phường');
INSERT INTO category."Wards" VALUES (26944, 765, 'system', '2023-07-26 08:40:17.689092+07', 'system', '2023-07-26 08:40:17.689092+07', 'Phường 01', '26944', 'Phường');
INSERT INTO category."Wards" VALUES (26947, 765, 'system', '2023-07-26 08:40:17.689093+07', 'system', '2023-07-26 08:40:17.689093+07', 'Phường 03', '26947', 'Phường');
INSERT INTO category."Wards" VALUES (26950, 765, 'system', '2023-07-26 08:40:17.689096+07', 'system', '2023-07-26 08:40:17.689096+07', 'Phường 17', '26950', 'Phường');
INSERT INTO category."Wards" VALUES (26953, 765, 'system', '2023-07-26 08:40:17.689098+07', 'system', '2023-07-26 08:40:17.689098+07', 'Phường 21', '26953', 'Phường');
INSERT INTO category."Wards" VALUES (26956, 765, 'system', '2023-07-26 08:40:17.6891+07', 'system', '2023-07-26 08:40:17.6891+07', 'Phường 22', '26956', 'Phường');
INSERT INTO category."Wards" VALUES (26959, 765, 'system', '2023-07-26 08:40:17.689102+07', 'system', '2023-07-26 08:40:17.689102+07', 'Phường 19', '26959', 'Phường');
INSERT INTO category."Wards" VALUES (26962, 765, 'system', '2023-07-26 08:40:17.689104+07', 'system', '2023-07-26 08:40:17.689104+07', 'Phường 28', '26962', 'Phường');
INSERT INTO category."Wards" VALUES (26965, 766, 'system', '2023-07-26 08:40:17.689106+07', 'system', '2023-07-26 08:40:17.689106+07', 'Phường 02', '26965', 'Phường');
INSERT INTO category."Wards" VALUES (26968, 766, 'system', '2023-07-26 08:40:17.689108+07', 'system', '2023-07-26 08:40:17.689108+07', 'Phường 04', '26968', 'Phường');
INSERT INTO category."Wards" VALUES (26971, 766, 'system', '2023-07-26 08:40:17.68911+07', 'system', '2023-07-26 08:40:17.68911+07', 'Phường 12', '26971', 'Phường');
INSERT INTO category."Wards" VALUES (26974, 766, 'system', '2023-07-26 08:40:17.689111+07', 'system', '2023-07-26 08:40:17.689111+07', 'Phường 13', '26974', 'Phường');
INSERT INTO category."Wards" VALUES (26977, 766, 'system', '2023-07-26 08:40:17.689113+07', 'system', '2023-07-26 08:40:17.689113+07', 'Phường 01', '26977', 'Phường');
INSERT INTO category."Wards" VALUES (26980, 766, 'system', '2023-07-26 08:40:17.689115+07', 'system', '2023-07-26 08:40:17.689115+07', 'Phường 03', '26980', 'Phường');
INSERT INTO category."Wards" VALUES (26983, 766, 'system', '2023-07-26 08:40:17.689117+07', 'system', '2023-07-26 08:40:17.689117+07', 'Phường 11', '26983', 'Phường');
INSERT INTO category."Wards" VALUES (26986, 766, 'system', '2023-07-26 08:40:17.689119+07', 'system', '2023-07-26 08:40:17.689119+07', 'Phường 07', '26986', 'Phường');
INSERT INTO category."Wards" VALUES (26989, 766, 'system', '2023-07-26 08:40:17.68912+07', 'system', '2023-07-26 08:40:17.68912+07', 'Phường 05', '26989', 'Phường');
INSERT INTO category."Wards" VALUES (26992, 766, 'system', '2023-07-26 08:40:17.689122+07', 'system', '2023-07-26 08:40:17.689122+07', 'Phường 10', '26992', 'Phường');
INSERT INTO category."Wards" VALUES (26995, 766, 'system', '2023-07-26 08:40:17.689124+07', 'system', '2023-07-26 08:40:17.689124+07', 'Phường 06', '26995', 'Phường');
INSERT INTO category."Wards" VALUES (26998, 766, 'system', '2023-07-26 08:40:17.689126+07', 'system', '2023-07-26 08:40:17.689126+07', 'Phường 08', '26998', 'Phường');
INSERT INTO category."Wards" VALUES (27001, 766, 'system', '2023-07-26 08:40:17.689128+07', 'system', '2023-07-26 08:40:17.689128+07', 'Phường 09', '27001', 'Phường');
INSERT INTO category."Wards" VALUES (27004, 766, 'system', '2023-07-26 08:40:17.68914+07', 'system', '2023-07-26 08:40:17.68914+07', 'Phường 14', '27004', 'Phường');
INSERT INTO category."Wards" VALUES (27007, 766, 'system', '2023-07-26 08:40:17.689142+07', 'system', '2023-07-26 08:40:17.689142+07', 'Phường 15', '27007', 'Phường');
INSERT INTO category."Wards" VALUES (27010, 767, 'system', '2023-07-26 08:40:17.689144+07', 'system', '2023-07-26 08:40:17.689144+07', 'Phường Tân Sơn Nhì', '27010', 'Phường');
INSERT INTO category."Wards" VALUES (27013, 767, 'system', '2023-07-26 08:40:17.689146+07', 'system', '2023-07-26 08:40:17.689146+07', 'Phường Tây Thạnh', '27013', 'Phường');
INSERT INTO category."Wards" VALUES (27016, 767, 'system', '2023-07-26 08:40:17.689148+07', 'system', '2023-07-26 08:40:17.689148+07', 'Phường Sơn Kỳ', '27016', 'Phường');
INSERT INTO category."Wards" VALUES (27019, 767, 'system', '2023-07-26 08:40:17.68915+07', 'system', '2023-07-26 08:40:17.68915+07', 'Phường Tân Quý', '27019', 'Phường');
INSERT INTO category."Wards" VALUES (27022, 767, 'system', '2023-07-26 08:40:17.689152+07', 'system', '2023-07-26 08:40:17.689152+07', 'Phường Tân Thành', '27022', 'Phường');
INSERT INTO category."Wards" VALUES (27025, 767, 'system', '2023-07-26 08:40:17.689154+07', 'system', '2023-07-26 08:40:17.689154+07', 'Phường Phú Thọ Hòa', '27025', 'Phường');
INSERT INTO category."Wards" VALUES (27028, 767, 'system', '2023-07-26 08:40:17.689156+07', 'system', '2023-07-26 08:40:17.689156+07', 'Phường Phú Thạnh', '27028', 'Phường');
INSERT INTO category."Wards" VALUES (27031, 767, 'system', '2023-07-26 08:40:17.689158+07', 'system', '2023-07-26 08:40:17.689158+07', 'Phường Phú Trung', '27031', 'Phường');
INSERT INTO category."Wards" VALUES (27034, 767, 'system', '2023-07-26 08:40:17.68916+07', 'system', '2023-07-26 08:40:17.68916+07', 'Phường Hòa Thạnh', '27034', 'Phường');
INSERT INTO category."Wards" VALUES (27037, 767, 'system', '2023-07-26 08:40:17.689162+07', 'system', '2023-07-26 08:40:17.689162+07', 'Phường Hiệp Tân', '27037', 'Phường');
INSERT INTO category."Wards" VALUES (27040, 767, 'system', '2023-07-26 08:40:17.689164+07', 'system', '2023-07-26 08:40:17.689164+07', 'Phường Tân Thới Hòa', '27040', 'Phường');
INSERT INTO category."Wards" VALUES (27043, 768, 'system', '2023-07-26 08:40:17.689166+07', 'system', '2023-07-26 08:40:17.689166+07', 'Phường 04', '27043', 'Phường');
INSERT INTO category."Wards" VALUES (27046, 768, 'system', '2023-07-26 08:40:17.689168+07', 'system', '2023-07-26 08:40:17.689168+07', 'Phường 05', '27046', 'Phường');
INSERT INTO category."Wards" VALUES (27049, 768, 'system', '2023-07-26 08:40:17.689169+07', 'system', '2023-07-26 08:40:17.689169+07', 'Phường 09', '27049', 'Phường');
INSERT INTO category."Wards" VALUES (27052, 768, 'system', '2023-07-26 08:40:17.689171+07', 'system', '2023-07-26 08:40:17.689171+07', 'Phường 07', '27052', 'Phường');
INSERT INTO category."Wards" VALUES (27055, 768, 'system', '2023-07-26 08:40:17.689173+07', 'system', '2023-07-26 08:40:17.689173+07', 'Phường 03', '27055', 'Phường');
INSERT INTO category."Wards" VALUES (27058, 768, 'system', '2023-07-26 08:40:17.689176+07', 'system', '2023-07-26 08:40:17.689176+07', 'Phường 01', '27058', 'Phường');
INSERT INTO category."Wards" VALUES (27061, 768, 'system', '2023-07-26 08:40:17.689178+07', 'system', '2023-07-26 08:40:17.689178+07', 'Phường 02', '27061', 'Phường');
INSERT INTO category."Wards" VALUES (27064, 768, 'system', '2023-07-26 08:40:17.68918+07', 'system', '2023-07-26 08:40:17.68918+07', 'Phường 08', '27064', 'Phường');
INSERT INTO category."Wards" VALUES (27067, 768, 'system', '2023-07-26 08:40:17.689181+07', 'system', '2023-07-26 08:40:17.689182+07', 'Phường 15', '27067', 'Phường');
INSERT INTO category."Wards" VALUES (27070, 768, 'system', '2023-07-26 08:40:17.689183+07', 'system', '2023-07-26 08:40:17.689183+07', 'Phường 10', '27070', 'Phường');
INSERT INTO category."Wards" VALUES (27073, 768, 'system', '2023-07-26 08:40:17.689185+07', 'system', '2023-07-26 08:40:17.689185+07', 'Phường 11', '27073', 'Phường');
INSERT INTO category."Wards" VALUES (27076, 768, 'system', '2023-07-26 08:40:17.689187+07', 'system', '2023-07-26 08:40:17.689187+07', 'Phường 17', '27076', 'Phường');
INSERT INTO category."Wards" VALUES (27085, 768, 'system', '2023-07-26 08:40:17.689189+07', 'system', '2023-07-26 08:40:17.689189+07', 'Phường 13', '27085', 'Phường');
INSERT INTO category."Wards" VALUES (27088, 769, 'system', '2023-07-26 08:40:17.68924+07', 'system', '2023-07-26 08:40:17.68924+07', 'Phường Thảo Điền', '27088', 'Phường');
INSERT INTO category."Wards" VALUES (27091, 769, 'system', '2023-07-26 08:40:17.689243+07', 'system', '2023-07-26 08:40:17.689243+07', 'Phường An Phú', '27091', 'Phường');
INSERT INTO category."Wards" VALUES (27094, 769, 'system', '2023-07-26 08:40:17.689245+07', 'system', '2023-07-26 08:40:17.689245+07', 'Phường An Khánh', '27094', 'Phường');
INSERT INTO category."Wards" VALUES (27097, 769, 'system', '2023-07-26 08:40:17.689247+07', 'system', '2023-07-26 08:40:17.689247+07', 'Phường Bình Trưng Đông', '27097', 'Phường');
INSERT INTO category."Wards" VALUES (27100, 769, 'system', '2023-07-26 08:40:17.689249+07', 'system', '2023-07-26 08:40:17.689249+07', 'Phường Bình Trưng Tây', '27100', 'Phường');
INSERT INTO category."Wards" VALUES (27109, 769, 'system', '2023-07-26 08:40:17.689251+07', 'system', '2023-07-26 08:40:17.689251+07', 'Phường Cát Lái', '27109', 'Phường');
INSERT INTO category."Wards" VALUES (27112, 769, 'system', '2023-07-26 08:40:17.689253+07', 'system', '2023-07-26 08:40:17.689253+07', 'Phường Thạnh Mỹ Lợi', '27112', 'Phường');
INSERT INTO category."Wards" VALUES (27115, 769, 'system', '2023-07-26 08:40:17.689255+07', 'system', '2023-07-26 08:40:17.689255+07', 'Phường An Lợi Đông', '27115', 'Phường');
INSERT INTO category."Wards" VALUES (27118, 769, 'system', '2023-07-26 08:40:17.689257+07', 'system', '2023-07-26 08:40:17.689257+07', 'Phường Thủ Thiêm', '27118', 'Phường');
INSERT INTO category."Wards" VALUES (27127, 770, 'system', '2023-07-26 08:40:17.689259+07', 'system', '2023-07-26 08:40:17.689259+07', 'Phường 14', '27127', 'Phường');
INSERT INTO category."Wards" VALUES (27130, 770, 'system', '2023-07-26 08:40:17.68926+07', 'system', '2023-07-26 08:40:17.68926+07', 'Phường 12', '27130', 'Phường');
INSERT INTO category."Wards" VALUES (27133, 770, 'system', '2023-07-26 08:40:17.689262+07', 'system', '2023-07-26 08:40:17.689262+07', 'Phường 11', '27133', 'Phường');
INSERT INTO category."Wards" VALUES (27136, 770, 'system', '2023-07-26 08:40:17.689264+07', 'system', '2023-07-26 08:40:17.689264+07', 'Phường 13', '27136', 'Phường');
INSERT INTO category."Wards" VALUES (27139, 770, 'system', '2023-07-26 08:40:17.689266+07', 'system', '2023-07-26 08:40:17.689266+07', 'Phường Võ Thị Sáu', '27139', 'Phường');
INSERT INTO category."Wards" VALUES (27142, 770, 'system', '2023-07-26 08:40:17.689268+07', 'system', '2023-07-26 08:40:17.689268+07', 'Phường 09', '27142', 'Phường');
INSERT INTO category."Wards" VALUES (27145, 770, 'system', '2023-07-26 08:40:17.68927+07', 'system', '2023-07-26 08:40:17.68927+07', 'Phường 10', '27145', 'Phường');
INSERT INTO category."Wards" VALUES (27148, 770, 'system', '2023-07-26 08:40:17.689271+07', 'system', '2023-07-26 08:40:17.689271+07', 'Phường 04', '27148', 'Phường');
INSERT INTO category."Wards" VALUES (27151, 770, 'system', '2023-07-26 08:40:17.689273+07', 'system', '2023-07-26 08:40:17.689273+07', 'Phường 05', '27151', 'Phường');
INSERT INTO category."Wards" VALUES (27154, 770, 'system', '2023-07-26 08:40:17.689275+07', 'system', '2023-07-26 08:40:17.689275+07', 'Phường 03', '27154', 'Phường');
INSERT INTO category."Wards" VALUES (27157, 770, 'system', '2023-07-26 08:40:17.689277+07', 'system', '2023-07-26 08:40:17.689277+07', 'Phường 02', '27157', 'Phường');
INSERT INTO category."Wards" VALUES (27160, 770, 'system', '2023-07-26 08:40:17.689279+07', 'system', '2023-07-26 08:40:17.689279+07', 'Phường 01', '27160', 'Phường');
INSERT INTO category."Wards" VALUES (27163, 771, 'system', '2023-07-26 08:40:17.689281+07', 'system', '2023-07-26 08:40:17.689281+07', 'Phường 15', '27163', 'Phường');
INSERT INTO category."Wards" VALUES (27166, 771, 'system', '2023-07-26 08:40:17.689282+07', 'system', '2023-07-26 08:40:17.689282+07', 'Phường 13', '27166', 'Phường');
INSERT INTO category."Wards" VALUES (27169, 771, 'system', '2023-07-26 08:40:17.689284+07', 'system', '2023-07-26 08:40:17.689284+07', 'Phường 14', '27169', 'Phường');
INSERT INTO category."Wards" VALUES (27172, 771, 'system', '2023-07-26 08:40:17.689286+07', 'system', '2023-07-26 08:40:17.689286+07', 'Phường 12', '27172', 'Phường');
INSERT INTO category."Wards" VALUES (27175, 771, 'system', '2023-07-26 08:40:17.689288+07', 'system', '2023-07-26 08:40:17.689288+07', 'Phường 11', '27175', 'Phường');
INSERT INTO category."Wards" VALUES (27178, 771, 'system', '2023-07-26 08:40:17.68929+07', 'system', '2023-07-26 08:40:17.68929+07', 'Phường 10', '27178', 'Phường');
INSERT INTO category."Wards" VALUES (27181, 771, 'system', '2023-07-26 08:40:17.689291+07', 'system', '2023-07-26 08:40:17.689291+07', 'Phường 09', '27181', 'Phường');
INSERT INTO category."Wards" VALUES (27184, 771, 'system', '2023-07-26 08:40:17.689293+07', 'system', '2023-07-26 08:40:17.689293+07', 'Phường 01', '27184', 'Phường');
INSERT INTO category."Wards" VALUES (27187, 771, 'system', '2023-07-26 08:40:17.689295+07', 'system', '2023-07-26 08:40:17.689295+07', 'Phường 08', '27187', 'Phường');
INSERT INTO category."Wards" VALUES (27190, 771, 'system', '2023-07-26 08:40:17.689297+07', 'system', '2023-07-26 08:40:17.689297+07', 'Phường 02', '27190', 'Phường');
INSERT INTO category."Wards" VALUES (27193, 771, 'system', '2023-07-26 08:40:17.689299+07', 'system', '2023-07-26 08:40:17.689299+07', 'Phường 04', '27193', 'Phường');
INSERT INTO category."Wards" VALUES (27196, 771, 'system', '2023-07-26 08:40:17.689301+07', 'system', '2023-07-26 08:40:17.689301+07', 'Phường 07', '27196', 'Phường');
INSERT INTO category."Wards" VALUES (27199, 771, 'system', '2023-07-26 08:40:17.689302+07', 'system', '2023-07-26 08:40:17.689302+07', 'Phường 05', '27199', 'Phường');
INSERT INTO category."Wards" VALUES (27202, 771, 'system', '2023-07-26 08:40:17.689304+07', 'system', '2023-07-26 08:40:17.689304+07', 'Phường 06', '27202', 'Phường');
INSERT INTO category."Wards" VALUES (27208, 772, 'system', '2023-07-26 08:40:17.689306+07', 'system', '2023-07-26 08:40:17.689306+07', 'Phường 15', '27208', 'Phường');
INSERT INTO category."Wards" VALUES (27211, 772, 'system', '2023-07-26 08:40:17.689309+07', 'system', '2023-07-26 08:40:17.689309+07', 'Phường 05', '27211', 'Phường');
INSERT INTO category."Wards" VALUES (27214, 772, 'system', '2023-07-26 08:40:17.689311+07', 'system', '2023-07-26 08:40:17.689311+07', 'Phường 14', '27214', 'Phường');
INSERT INTO category."Wards" VALUES (27217, 772, 'system', '2023-07-26 08:40:17.689313+07', 'system', '2023-07-26 08:40:17.689313+07', 'Phường 11', '27217', 'Phường');
INSERT INTO category."Wards" VALUES (27220, 772, 'system', '2023-07-26 08:40:17.689315+07', 'system', '2023-07-26 08:40:17.689315+07', 'Phường 03', '27220', 'Phường');
INSERT INTO category."Wards" VALUES (27223, 772, 'system', '2023-07-26 08:40:17.689316+07', 'system', '2023-07-26 08:40:17.689316+07', 'Phường 10', '27223', 'Phường');
INSERT INTO category."Wards" VALUES (27226, 772, 'system', '2023-07-26 08:40:17.689318+07', 'system', '2023-07-26 08:40:17.689318+07', 'Phường 13', '27226', 'Phường');
INSERT INTO category."Wards" VALUES (27229, 772, 'system', '2023-07-26 08:40:17.68932+07', 'system', '2023-07-26 08:40:17.68932+07', 'Phường 08', '27229', 'Phường');
INSERT INTO category."Wards" VALUES (27232, 772, 'system', '2023-07-26 08:40:17.689322+07', 'system', '2023-07-26 08:40:17.689322+07', 'Phường 09', '27232', 'Phường');
INSERT INTO category."Wards" VALUES (27235, 772, 'system', '2023-07-26 08:40:17.689324+07', 'system', '2023-07-26 08:40:17.689324+07', 'Phường 12', '27235', 'Phường');
INSERT INTO category."Wards" VALUES (27238, 772, 'system', '2023-07-26 08:40:17.689325+07', 'system', '2023-07-26 08:40:17.689325+07', 'Phường 07', '27238', 'Phường');
INSERT INTO category."Wards" VALUES (27241, 772, 'system', '2023-07-26 08:40:17.689327+07', 'system', '2023-07-26 08:40:17.689327+07', 'Phường 06', '27241', 'Phường');
INSERT INTO category."Wards" VALUES (27244, 772, 'system', '2023-07-26 08:40:17.689329+07', 'system', '2023-07-26 08:40:17.689329+07', 'Phường 04', '27244', 'Phường');
INSERT INTO category."Wards" VALUES (27247, 772, 'system', '2023-07-26 08:40:17.689331+07', 'system', '2023-07-26 08:40:17.689331+07', 'Phường 01', '27247', 'Phường');
INSERT INTO category."Wards" VALUES (27250, 772, 'system', '2023-07-26 08:40:17.689333+07', 'system', '2023-07-26 08:40:17.689333+07', 'Phường 02', '27250', 'Phường');
INSERT INTO category."Wards" VALUES (27253, 772, 'system', '2023-07-26 08:40:17.689334+07', 'system', '2023-07-26 08:40:17.689334+07', 'Phường 16', '27253', 'Phường');
INSERT INTO category."Wards" VALUES (27259, 773, 'system', '2023-07-26 08:40:17.689336+07', 'system', '2023-07-26 08:40:17.689336+07', 'Phường 13', '27259', 'Phường');
INSERT INTO category."Wards" VALUES (27262, 773, 'system', '2023-07-26 08:40:17.689338+07', 'system', '2023-07-26 08:40:17.689338+07', 'Phường 09', '27262', 'Phường');
INSERT INTO category."Wards" VALUES (27265, 773, 'system', '2023-07-26 08:40:17.68934+07', 'system', '2023-07-26 08:40:17.68934+07', 'Phường 06', '27265', 'Phường');
INSERT INTO category."Wards" VALUES (27268, 773, 'system', '2023-07-26 08:40:17.689342+07', 'system', '2023-07-26 08:40:17.689342+07', 'Phường 08', '27268', 'Phường');
INSERT INTO category."Wards" VALUES (27271, 773, 'system', '2023-07-26 08:40:17.689344+07', 'system', '2023-07-26 08:40:17.689344+07', 'Phường 10', '27271', 'Phường');
INSERT INTO category."Wards" VALUES (27277, 773, 'system', '2023-07-26 08:40:17.689345+07', 'system', '2023-07-26 08:40:17.689345+07', 'Phường 18', '27277', 'Phường');
INSERT INTO category."Wards" VALUES (27280, 773, 'system', '2023-07-26 08:40:17.689347+07', 'system', '2023-07-26 08:40:17.689347+07', 'Phường 14', '27280', 'Phường');
INSERT INTO category."Wards" VALUES (27283, 773, 'system', '2023-07-26 08:40:17.689349+07', 'system', '2023-07-26 08:40:17.689349+07', 'Phường 04', '27283', 'Phường');
INSERT INTO category."Wards" VALUES (27286, 773, 'system', '2023-07-26 08:40:17.689351+07', 'system', '2023-07-26 08:40:17.689351+07', 'Phường 03', '27286', 'Phường');
INSERT INTO category."Wards" VALUES (27289, 773, 'system', '2023-07-26 08:40:17.689353+07', 'system', '2023-07-26 08:40:17.689353+07', 'Phường 16', '27289', 'Phường');
INSERT INTO category."Wards" VALUES (27292, 773, 'system', '2023-07-26 08:40:17.689355+07', 'system', '2023-07-26 08:40:17.689355+07', 'Phường 02', '27292', 'Phường');
INSERT INTO category."Wards" VALUES (27295, 773, 'system', '2023-07-26 08:40:17.689356+07', 'system', '2023-07-26 08:40:17.689356+07', 'Phường 15', '27295', 'Phường');
INSERT INTO category."Wards" VALUES (27298, 773, 'system', '2023-07-26 08:40:17.689358+07', 'system', '2023-07-26 08:40:17.689358+07', 'Phường 01', '27298', 'Phường');
INSERT INTO category."Wards" VALUES (27301, 774, 'system', '2023-07-26 08:40:17.68936+07', 'system', '2023-07-26 08:40:17.68936+07', 'Phường 04', '27301', 'Phường');
INSERT INTO category."Wards" VALUES (27304, 774, 'system', '2023-07-26 08:40:17.689362+07', 'system', '2023-07-26 08:40:17.689362+07', 'Phường 09', '27304', 'Phường');
INSERT INTO category."Wards" VALUES (27307, 774, 'system', '2023-07-26 08:40:17.689363+07', 'system', '2023-07-26 08:40:17.689364+07', 'Phường 03', '27307', 'Phường');
INSERT INTO category."Wards" VALUES (27310, 774, 'system', '2023-07-26 08:40:17.689365+07', 'system', '2023-07-26 08:40:17.689365+07', 'Phường 12', '27310', 'Phường');
INSERT INTO category."Wards" VALUES (27313, 774, 'system', '2023-07-26 08:40:17.689367+07', 'system', '2023-07-26 08:40:17.689367+07', 'Phường 02', '27313', 'Phường');
INSERT INTO category."Wards" VALUES (27316, 774, 'system', '2023-07-26 08:40:17.689369+07', 'system', '2023-07-26 08:40:17.689369+07', 'Phường 08', '27316', 'Phường');
INSERT INTO category."Wards" VALUES (27322, 774, 'system', '2023-07-26 08:40:17.689371+07', 'system', '2023-07-26 08:40:17.689371+07', 'Phường 07', '27322', 'Phường');
INSERT INTO category."Wards" VALUES (27325, 774, 'system', '2023-07-26 08:40:17.689373+07', 'system', '2023-07-26 08:40:17.689373+07', 'Phường 01', '27325', 'Phường');
INSERT INTO category."Wards" VALUES (27328, 774, 'system', '2023-07-26 08:40:17.689375+07', 'system', '2023-07-26 08:40:17.689375+07', 'Phường 11', '27328', 'Phường');
INSERT INTO category."Wards" VALUES (27331, 774, 'system', '2023-07-26 08:40:17.689377+07', 'system', '2023-07-26 08:40:17.689378+07', 'Phường 14', '27331', 'Phường');
INSERT INTO category."Wards" VALUES (27334, 774, 'system', '2023-07-26 08:40:17.689379+07', 'system', '2023-07-26 08:40:17.689379+07', 'Phường 05', '27334', 'Phường');
INSERT INTO category."Wards" VALUES (27337, 774, 'system', '2023-07-26 08:40:17.689381+07', 'system', '2023-07-26 08:40:17.689381+07', 'Phường 06', '27337', 'Phường');
INSERT INTO category."Wards" VALUES (27340, 774, 'system', '2023-07-26 08:40:17.689383+07', 'system', '2023-07-26 08:40:17.689383+07', 'Phường 10', '27340', 'Phường');
INSERT INTO category."Wards" VALUES (27343, 774, 'system', '2023-07-26 08:40:17.689385+07', 'system', '2023-07-26 08:40:17.689385+07', 'Phường 13', '27343', 'Phường');
INSERT INTO category."Wards" VALUES (27346, 775, 'system', '2023-07-26 08:40:17.689387+07', 'system', '2023-07-26 08:40:17.689387+07', 'Phường 14', '27346', 'Phường');
INSERT INTO category."Wards" VALUES (27349, 775, 'system', '2023-07-26 08:40:17.689388+07', 'system', '2023-07-26 08:40:17.689389+07', 'Phường 13', '27349', 'Phường');
INSERT INTO category."Wards" VALUES (27352, 775, 'system', '2023-07-26 08:40:17.68939+07', 'system', '2023-07-26 08:40:17.68939+07', 'Phường 09', '27352', 'Phường');
INSERT INTO category."Wards" VALUES (27355, 775, 'system', '2023-07-26 08:40:17.689392+07', 'system', '2023-07-26 08:40:17.689392+07', 'Phường 06', '27355', 'Phường');
INSERT INTO category."Wards" VALUES (27358, 775, 'system', '2023-07-26 08:40:17.689394+07', 'system', '2023-07-26 08:40:17.689394+07', 'Phường 12', '27358', 'Phường');
INSERT INTO category."Wards" VALUES (27361, 775, 'system', '2023-07-26 08:40:17.689396+07', 'system', '2023-07-26 08:40:17.689396+07', 'Phường 05', '27361', 'Phường');
INSERT INTO category."Wards" VALUES (27364, 775, 'system', '2023-07-26 08:40:17.689397+07', 'system', '2023-07-26 08:40:17.689398+07', 'Phường 11', '27364', 'Phường');
INSERT INTO category."Wards" VALUES (27367, 775, 'system', '2023-07-26 08:40:17.689399+07', 'system', '2023-07-26 08:40:17.689399+07', 'Phường 02', '27367', 'Phường');
INSERT INTO category."Wards" VALUES (27370, 775, 'system', '2023-07-26 08:40:17.689401+07', 'system', '2023-07-26 08:40:17.689401+07', 'Phường 01', '27370', 'Phường');
INSERT INTO category."Wards" VALUES (27373, 775, 'system', '2023-07-26 08:40:17.689403+07', 'system', '2023-07-26 08:40:17.689403+07', 'Phường 04', '27373', 'Phường');
INSERT INTO category."Wards" VALUES (27376, 775, 'system', '2023-07-26 08:40:17.689405+07', 'system', '2023-07-26 08:40:17.689405+07', 'Phường 08', '27376', 'Phường');
INSERT INTO category."Wards" VALUES (27379, 775, 'system', '2023-07-26 08:40:17.689407+07', 'system', '2023-07-26 08:40:17.689407+07', 'Phường 03', '27379', 'Phường');
INSERT INTO category."Wards" VALUES (27382, 775, 'system', '2023-07-26 08:40:17.689408+07', 'system', '2023-07-26 08:40:17.689408+07', 'Phường 07', '27382', 'Phường');
INSERT INTO category."Wards" VALUES (27385, 775, 'system', '2023-07-26 08:40:17.68941+07', 'system', '2023-07-26 08:40:17.68941+07', 'Phường 10', '27385', 'Phường');
INSERT INTO category."Wards" VALUES (27388, 776, 'system', '2023-07-26 08:40:17.689412+07', 'system', '2023-07-26 08:40:17.689412+07', 'Phường 08', '27388', 'Phường');
INSERT INTO category."Wards" VALUES (27391, 776, 'system', '2023-07-26 08:40:17.689414+07', 'system', '2023-07-26 08:40:17.689414+07', 'Phường 02', '27391', 'Phường');
INSERT INTO category."Wards" VALUES (27394, 776, 'system', '2023-07-26 08:40:17.689416+07', 'system', '2023-07-26 08:40:17.689416+07', 'Phường 01', '27394', 'Phường');
INSERT INTO category."Wards" VALUES (27397, 776, 'system', '2023-07-26 08:40:17.689418+07', 'system', '2023-07-26 08:40:17.689418+07', 'Phường 03', '27397', 'Phường');
INSERT INTO category."Wards" VALUES (27400, 776, 'system', '2023-07-26 08:40:17.689419+07', 'system', '2023-07-26 08:40:17.689419+07', 'Phường 11', '27400', 'Phường');
INSERT INTO category."Wards" VALUES (27403, 776, 'system', '2023-07-26 08:40:17.689421+07', 'system', '2023-07-26 08:40:17.689421+07', 'Phường 09', '27403', 'Phường');
INSERT INTO category."Wards" VALUES (27406, 776, 'system', '2023-07-26 08:40:17.689423+07', 'system', '2023-07-26 08:40:17.689423+07', 'Phường 10', '27406', 'Phường');
INSERT INTO category."Wards" VALUES (27409, 776, 'system', '2023-07-26 08:40:17.689425+07', 'system', '2023-07-26 08:40:17.689425+07', 'Phường 04', '27409', 'Phường');
INSERT INTO category."Wards" VALUES (27412, 776, 'system', '2023-07-26 08:40:17.689427+07', 'system', '2023-07-26 08:40:17.689427+07', 'Phường 13', '27412', 'Phường');
INSERT INTO category."Wards" VALUES (27415, 776, 'system', '2023-07-26 08:40:17.689428+07', 'system', '2023-07-26 08:40:17.689428+07', 'Phường 12', '27415', 'Phường');
INSERT INTO category."Wards" VALUES (27418, 776, 'system', '2023-07-26 08:40:17.68943+07', 'system', '2023-07-26 08:40:17.68943+07', 'Phường 05', '27418', 'Phường');
INSERT INTO category."Wards" VALUES (27421, 776, 'system', '2023-07-26 08:40:17.689432+07', 'system', '2023-07-26 08:40:17.689432+07', 'Phường 14', '27421', 'Phường');
INSERT INTO category."Wards" VALUES (27424, 776, 'system', '2023-07-26 08:40:17.689434+07', 'system', '2023-07-26 08:40:17.689434+07', 'Phường 06', '27424', 'Phường');
INSERT INTO category."Wards" VALUES (27427, 776, 'system', '2023-07-26 08:40:17.689436+07', 'system', '2023-07-26 08:40:17.689436+07', 'Phường 15', '27427', 'Phường');
INSERT INTO category."Wards" VALUES (27430, 776, 'system', '2023-07-26 08:40:17.689437+07', 'system', '2023-07-26 08:40:17.689437+07', 'Phường 16', '27430', 'Phường');
INSERT INTO category."Wards" VALUES (27433, 776, 'system', '2023-07-26 08:40:17.689439+07', 'system', '2023-07-26 08:40:17.689439+07', 'Phường 07', '27433', 'Phường');
INSERT INTO category."Wards" VALUES (27436, 777, 'system', '2023-07-26 08:40:17.689441+07', 'system', '2023-07-26 08:40:17.689441+07', 'Phường Bình Hưng Hòa', '27436', 'Phường');
INSERT INTO category."Wards" VALUES (27439, 777, 'system', '2023-07-26 08:40:17.689444+07', 'system', '2023-07-26 08:40:17.689444+07', 'Phường Bình Hưng Hoà A', '27439', 'Phường');
INSERT INTO category."Wards" VALUES (27442, 777, 'system', '2023-07-26 08:40:17.689446+07', 'system', '2023-07-26 08:40:17.689446+07', 'Phường Bình Hưng Hoà B', '27442', 'Phường');
INSERT INTO category."Wards" VALUES (27445, 777, 'system', '2023-07-26 08:40:17.689448+07', 'system', '2023-07-26 08:40:17.689448+07', 'Phường Bình Trị Đông', '27445', 'Phường');
INSERT INTO category."Wards" VALUES (27448, 777, 'system', '2023-07-26 08:40:17.68945+07', 'system', '2023-07-26 08:40:17.68945+07', 'Phường Bình Trị Đông A', '27448', 'Phường');
INSERT INTO category."Wards" VALUES (27451, 777, 'system', '2023-07-26 08:40:17.689452+07', 'system', '2023-07-26 08:40:17.689452+07', 'Phường Bình Trị Đông B', '27451', 'Phường');
INSERT INTO category."Wards" VALUES (27454, 777, 'system', '2023-07-26 08:40:17.689454+07', 'system', '2023-07-26 08:40:17.689454+07', 'Phường Tân Tạo', '27454', 'Phường');
INSERT INTO category."Wards" VALUES (27457, 777, 'system', '2023-07-26 08:40:17.689456+07', 'system', '2023-07-26 08:40:17.689456+07', 'Phường Tân Tạo A', '27457', 'Phường');
INSERT INTO category."Wards" VALUES (27460, 777, 'system', '2023-07-26 08:40:17.689458+07', 'system', '2023-07-26 08:40:17.689458+07', 'Phường  An Lạc', '27460', 'Phường');
INSERT INTO category."Wards" VALUES (27463, 777, 'system', '2023-07-26 08:40:17.68946+07', 'system', '2023-07-26 08:40:17.68946+07', 'Phường An Lạc A', '27463', 'Phường');
INSERT INTO category."Wards" VALUES (27466, 778, 'system', '2023-07-26 08:40:17.689462+07', 'system', '2023-07-26 08:40:17.689462+07', 'Phường Tân Thuận Đông', '27466', 'Phường');
INSERT INTO category."Wards" VALUES (27469, 778, 'system', '2023-07-26 08:40:17.689464+07', 'system', '2023-07-26 08:40:17.689464+07', 'Phường Tân Thuận Tây', '27469', 'Phường');
INSERT INTO category."Wards" VALUES (27472, 778, 'system', '2023-07-26 08:40:17.689466+07', 'system', '2023-07-26 08:40:17.689466+07', 'Phường Tân Kiểng', '27472', 'Phường');
INSERT INTO category."Wards" VALUES (27475, 778, 'system', '2023-07-26 08:40:17.689468+07', 'system', '2023-07-26 08:40:17.689468+07', 'Phường Tân Hưng', '27475', 'Phường');
INSERT INTO category."Wards" VALUES (27478, 778, 'system', '2023-07-26 08:40:17.68947+07', 'system', '2023-07-26 08:40:17.68947+07', 'Phường Bình Thuận', '27478', 'Phường');
INSERT INTO category."Wards" VALUES (27481, 778, 'system', '2023-07-26 08:40:17.689472+07', 'system', '2023-07-26 08:40:17.689472+07', 'Phường Tân Quy', '27481', 'Phường');
INSERT INTO category."Wards" VALUES (27484, 778, 'system', '2023-07-26 08:40:17.689474+07', 'system', '2023-07-26 08:40:17.689474+07', 'Phường Phú Thuận', '27484', 'Phường');
INSERT INTO category."Wards" VALUES (27487, 778, 'system', '2023-07-26 08:40:17.689476+07', 'system', '2023-07-26 08:40:17.689476+07', 'Phường Tân Phú', '27487', 'Phường');
INSERT INTO category."Wards" VALUES (27490, 778, 'system', '2023-07-26 08:40:17.689478+07', 'system', '2023-07-26 08:40:17.689478+07', 'Phường Tân Phong', '27490', 'Phường');
INSERT INTO category."Wards" VALUES (27493, 778, 'system', '2023-07-26 08:40:17.68948+07', 'system', '2023-07-26 08:40:17.68948+07', 'Phường Phú Mỹ', '27493', 'Phường');
INSERT INTO category."Wards" VALUES (27496, 783, 'system', '2023-07-26 08:40:17.689482+07', 'system', '2023-07-26 08:40:17.689482+07', 'Thị trấn Củ Chi', '27496', 'Thị trấn');
INSERT INTO category."Wards" VALUES (27499, 783, 'system', '2023-07-26 08:40:17.689484+07', 'system', '2023-07-26 08:40:17.689484+07', 'Xã Phú Mỹ Hưng', '27499', 'Xã');
INSERT INTO category."Wards" VALUES (27502, 783, 'system', '2023-07-26 08:40:17.689486+07', 'system', '2023-07-26 08:40:17.689486+07', 'Xã An Phú', '27502', 'Xã');
INSERT INTO category."Wards" VALUES (27505, 783, 'system', '2023-07-26 08:40:17.689488+07', 'system', '2023-07-26 08:40:17.689488+07', 'Xã Trung Lập Thượng', '27505', 'Xã');
INSERT INTO category."Wards" VALUES (27508, 783, 'system', '2023-07-26 08:40:17.68949+07', 'system', '2023-07-26 08:40:17.68949+07', 'Xã An Nhơn Tây', '27508', 'Xã');
INSERT INTO category."Wards" VALUES (27511, 783, 'system', '2023-07-26 08:40:17.689492+07', 'system', '2023-07-26 08:40:17.689492+07', 'Xã Nhuận Đức', '27511', 'Xã');
INSERT INTO category."Wards" VALUES (27514, 783, 'system', '2023-07-26 08:40:17.689493+07', 'system', '2023-07-26 08:40:17.689493+07', 'Xã Phạm Văn Cội', '27514', 'Xã');
INSERT INTO category."Wards" VALUES (27517, 783, 'system', '2023-07-26 08:40:17.689495+07', 'system', '2023-07-26 08:40:17.689495+07', 'Xã Phú Hòa Đông', '27517', 'Xã');
INSERT INTO category."Wards" VALUES (27520, 783, 'system', '2023-07-26 08:40:17.689497+07', 'system', '2023-07-26 08:40:17.689497+07', 'Xã Trung Lập Hạ', '27520', 'Xã');
INSERT INTO category."Wards" VALUES (27523, 783, 'system', '2023-07-26 08:40:17.689499+07', 'system', '2023-07-26 08:40:17.689499+07', 'Xã Trung An', '27523', 'Xã');
INSERT INTO category."Wards" VALUES (27526, 783, 'system', '2023-07-26 08:40:17.689501+07', 'system', '2023-07-26 08:40:17.689501+07', 'Xã Phước Thạnh', '27526', 'Xã');
INSERT INTO category."Wards" VALUES (27529, 783, 'system', '2023-07-26 08:40:17.689503+07', 'system', '2023-07-26 08:40:17.689503+07', 'Xã Phước Hiệp', '27529', 'Xã');
INSERT INTO category."Wards" VALUES (27532, 783, 'system', '2023-07-26 08:40:17.689505+07', 'system', '2023-07-26 08:40:17.689505+07', 'Xã Tân An Hội', '27532', 'Xã');
INSERT INTO category."Wards" VALUES (27535, 783, 'system', '2023-07-26 08:40:17.689507+07', 'system', '2023-07-26 08:40:17.689507+07', 'Xã Phước Vĩnh An', '27535', 'Xã');
INSERT INTO category."Wards" VALUES (27538, 783, 'system', '2023-07-26 08:40:17.689509+07', 'system', '2023-07-26 08:40:17.689509+07', 'Xã Thái Mỹ', '27538', 'Xã');
INSERT INTO category."Wards" VALUES (27541, 783, 'system', '2023-07-26 08:40:17.689512+07', 'system', '2023-07-26 08:40:17.689512+07', 'Xã Tân Thạnh Tây', '27541', 'Xã');
INSERT INTO category."Wards" VALUES (27544, 783, 'system', '2023-07-26 08:40:17.689517+07', 'system', '2023-07-26 08:40:17.689517+07', 'Xã Hòa Phú', '27544', 'Xã');
INSERT INTO category."Wards" VALUES (27547, 783, 'system', '2023-07-26 08:40:17.68952+07', 'system', '2023-07-26 08:40:17.68952+07', 'Xã Tân Thạnh Đông', '27547', 'Xã');
INSERT INTO category."Wards" VALUES (27550, 783, 'system', '2023-07-26 08:40:17.689523+07', 'system', '2023-07-26 08:40:17.689523+07', 'Xã Bình Mỹ', '27550', 'Xã');
INSERT INTO category."Wards" VALUES (27553, 783, 'system', '2023-07-26 08:40:17.689527+07', 'system', '2023-07-26 08:40:17.689527+07', 'Xã Tân Phú Trung', '27553', 'Xã');
INSERT INTO category."Wards" VALUES (27556, 783, 'system', '2023-07-26 08:40:17.68953+07', 'system', '2023-07-26 08:40:17.68953+07', 'Xã Tân Thông Hội', '27556', 'Xã');
INSERT INTO category."Wards" VALUES (27559, 784, 'system', '2023-07-26 08:40:17.689532+07', 'system', '2023-07-26 08:40:17.689532+07', 'Thị trấn Hóc Môn', '27559', 'Thị trấn');
INSERT INTO category."Wards" VALUES (27562, 784, 'system', '2023-07-26 08:40:17.689534+07', 'system', '2023-07-26 08:40:17.689534+07', 'Xã Tân Hiệp', '27562', 'Xã');
INSERT INTO category."Wards" VALUES (27565, 784, 'system', '2023-07-26 08:40:17.689536+07', 'system', '2023-07-26 08:40:17.689536+07', 'Xã Nhị Bình', '27565', 'Xã');
INSERT INTO category."Wards" VALUES (27568, 784, 'system', '2023-07-26 08:40:17.689538+07', 'system', '2023-07-26 08:40:17.689538+07', 'Xã Đông Thạnh', '27568', 'Xã');
INSERT INTO category."Wards" VALUES (27571, 784, 'system', '2023-07-26 08:40:17.68954+07', 'system', '2023-07-26 08:40:17.68954+07', 'Xã Tân Thới Nhì', '27571', 'Xã');
INSERT INTO category."Wards" VALUES (27574, 784, 'system', '2023-07-26 08:40:17.689542+07', 'system', '2023-07-26 08:40:17.689542+07', 'Xã Thới Tam Thôn', '27574', 'Xã');
INSERT INTO category."Wards" VALUES (27577, 784, 'system', '2023-07-26 08:40:17.689544+07', 'system', '2023-07-26 08:40:17.689544+07', 'Xã Xuân Thới Sơn', '27577', 'Xã');
INSERT INTO category."Wards" VALUES (27580, 784, 'system', '2023-07-26 08:40:17.689546+07', 'system', '2023-07-26 08:40:17.689546+07', 'Xã Tân Xuân', '27580', 'Xã');
INSERT INTO category."Wards" VALUES (27583, 784, 'system', '2023-07-26 08:40:17.689548+07', 'system', '2023-07-26 08:40:17.689548+07', 'Xã Xuân Thới Đông', '27583', 'Xã');
INSERT INTO category."Wards" VALUES (27586, 784, 'system', '2023-07-26 08:40:17.68955+07', 'system', '2023-07-26 08:40:17.68955+07', 'Xã Trung Chánh', '27586', 'Xã');
INSERT INTO category."Wards" VALUES (27589, 784, 'system', '2023-07-26 08:40:17.689551+07', 'system', '2023-07-26 08:40:17.689551+07', 'Xã Xuân Thới Thượng', '27589', 'Xã');
INSERT INTO category."Wards" VALUES (27592, 784, 'system', '2023-07-26 08:40:17.689553+07', 'system', '2023-07-26 08:40:17.689553+07', 'Xã Bà Điểm', '27592', 'Xã');
INSERT INTO category."Wards" VALUES (27823, 798, 'system', '2023-07-26 08:40:17.689716+07', 'system', '2023-07-26 08:40:17.689716+07', 'Xã Tân Thành', '27823', 'Xã');
INSERT INTO category."Wards" VALUES (27595, 785, 'system', '2023-07-26 08:40:17.689555+07', 'system', '2023-07-26 08:40:17.689555+07', 'Thị trấn Tân Túc', '27595', 'Thị trấn');
INSERT INTO category."Wards" VALUES (27598, 785, 'system', '2023-07-26 08:40:17.689557+07', 'system', '2023-07-26 08:40:17.689557+07', 'Xã Phạm Văn Hai', '27598', 'Xã');
INSERT INTO category."Wards" VALUES (27601, 785, 'system', '2023-07-26 08:40:17.689559+07', 'system', '2023-07-26 08:40:17.689559+07', 'Xã Vĩnh Lộc A', '27601', 'Xã');
INSERT INTO category."Wards" VALUES (27604, 785, 'system', '2023-07-26 08:40:17.689561+07', 'system', '2023-07-26 08:40:17.689561+07', 'Xã Vĩnh Lộc B', '27604', 'Xã');
INSERT INTO category."Wards" VALUES (27607, 785, 'system', '2023-07-26 08:40:17.689563+07', 'system', '2023-07-26 08:40:17.689563+07', 'Xã Bình Lợi', '27607', 'Xã');
INSERT INTO category."Wards" VALUES (27610, 785, 'system', '2023-07-26 08:40:17.689565+07', 'system', '2023-07-26 08:40:17.689565+07', 'Xã Lê Minh Xuân', '27610', 'Xã');
INSERT INTO category."Wards" VALUES (27613, 785, 'system', '2023-07-26 08:40:17.689567+07', 'system', '2023-07-26 08:40:17.689567+07', 'Xã Tân Nhựt', '27613', 'Xã');
INSERT INTO category."Wards" VALUES (27616, 785, 'system', '2023-07-26 08:40:17.689568+07', 'system', '2023-07-26 08:40:17.689568+07', 'Xã Tân Kiên', '27616', 'Xã');
INSERT INTO category."Wards" VALUES (27619, 785, 'system', '2023-07-26 08:40:17.68957+07', 'system', '2023-07-26 08:40:17.68957+07', 'Xã Bình Hưng', '27619', 'Xã');
INSERT INTO category."Wards" VALUES (27622, 785, 'system', '2023-07-26 08:40:17.689572+07', 'system', '2023-07-26 08:40:17.689572+07', 'Xã Phong Phú', '27622', 'Xã');
INSERT INTO category."Wards" VALUES (27625, 785, 'system', '2023-07-26 08:40:17.689574+07', 'system', '2023-07-26 08:40:17.689574+07', 'Xã An Phú Tây', '27625', 'Xã');
INSERT INTO category."Wards" VALUES (27628, 785, 'system', '2023-07-26 08:40:17.689576+07', 'system', '2023-07-26 08:40:17.689576+07', 'Xã Hưng Long', '27628', 'Xã');
INSERT INTO category."Wards" VALUES (27631, 785, 'system', '2023-07-26 08:40:17.689578+07', 'system', '2023-07-26 08:40:17.689578+07', 'Xã Đa Phước', '27631', 'Xã');
INSERT INTO category."Wards" VALUES (27634, 785, 'system', '2023-07-26 08:40:17.68958+07', 'system', '2023-07-26 08:40:17.68958+07', 'Xã Tân Quý Tây', '27634', 'Xã');
INSERT INTO category."Wards" VALUES (27637, 785, 'system', '2023-07-26 08:40:17.689581+07', 'system', '2023-07-26 08:40:17.689582+07', 'Xã Bình Chánh', '27637', 'Xã');
INSERT INTO category."Wards" VALUES (27640, 785, 'system', '2023-07-26 08:40:17.689583+07', 'system', '2023-07-26 08:40:17.689583+07', 'Xã Quy Đức', '27640', 'Xã');
INSERT INTO category."Wards" VALUES (27643, 786, 'system', '2023-07-26 08:40:17.689593+07', 'system', '2023-07-26 08:40:17.689593+07', 'Thị trấn Nhà Bè', '27643', 'Thị trấn');
INSERT INTO category."Wards" VALUES (27646, 786, 'system', '2023-07-26 08:40:17.689595+07', 'system', '2023-07-26 08:40:17.689596+07', 'Xã Phước Kiển', '27646', 'Xã');
INSERT INTO category."Wards" VALUES (27649, 786, 'system', '2023-07-26 08:40:17.689598+07', 'system', '2023-07-26 08:40:17.689598+07', 'Xã Phước Lộc', '27649', 'Xã');
INSERT INTO category."Wards" VALUES (27652, 786, 'system', '2023-07-26 08:40:17.6896+07', 'system', '2023-07-26 08:40:17.6896+07', 'Xã Nhơn Đức', '27652', 'Xã');
INSERT INTO category."Wards" VALUES (27655, 786, 'system', '2023-07-26 08:40:17.689602+07', 'system', '2023-07-26 08:40:17.689602+07', 'Xã Phú Xuân', '27655', 'Xã');
INSERT INTO category."Wards" VALUES (27658, 786, 'system', '2023-07-26 08:40:17.689604+07', 'system', '2023-07-26 08:40:17.689604+07', 'Xã Long Thới', '27658', 'Xã');
INSERT INTO category."Wards" VALUES (27661, 786, 'system', '2023-07-26 08:40:17.689605+07', 'system', '2023-07-26 08:40:17.689606+07', 'Xã Hiệp Phước', '27661', 'Xã');
INSERT INTO category."Wards" VALUES (27664, 787, 'system', '2023-07-26 08:40:17.689607+07', 'system', '2023-07-26 08:40:17.689607+07', 'Thị trấn Cần Thạnh', '27664', 'Thị trấn');
INSERT INTO category."Wards" VALUES (27667, 787, 'system', '2023-07-26 08:40:17.68961+07', 'system', '2023-07-26 08:40:17.68961+07', 'Xã Bình Khánh', '27667', 'Xã');
INSERT INTO category."Wards" VALUES (27670, 787, 'system', '2023-07-26 08:40:17.689611+07', 'system', '2023-07-26 08:40:17.689611+07', 'Xã Tam Thôn Hiệp', '27670', 'Xã');
INSERT INTO category."Wards" VALUES (27673, 787, 'system', '2023-07-26 08:40:17.689613+07', 'system', '2023-07-26 08:40:17.689613+07', 'Xã An Thới Đông', '27673', 'Xã');
INSERT INTO category."Wards" VALUES (27676, 787, 'system', '2023-07-26 08:40:17.689615+07', 'system', '2023-07-26 08:40:17.689615+07', 'Xã Thạnh An', '27676', 'Xã');
INSERT INTO category."Wards" VALUES (27679, 787, 'system', '2023-07-26 08:40:17.689617+07', 'system', '2023-07-26 08:40:17.689617+07', 'Xã Long Hòa', '27679', 'Xã');
INSERT INTO category."Wards" VALUES (27682, 787, 'system', '2023-07-26 08:40:17.689619+07', 'system', '2023-07-26 08:40:17.689619+07', 'Xã Lý Nhơn', '27682', 'Xã');
INSERT INTO category."Wards" VALUES (27685, 794, 'system', '2023-07-26 08:40:17.689621+07', 'system', '2023-07-26 08:40:17.689621+07', 'Phường 5', '27685', 'Phường');
INSERT INTO category."Wards" VALUES (27688, 794, 'system', '2023-07-26 08:40:17.689622+07', 'system', '2023-07-26 08:40:17.689623+07', 'Phường 2', '27688', 'Phường');
INSERT INTO category."Wards" VALUES (27691, 794, 'system', '2023-07-26 08:40:17.689624+07', 'system', '2023-07-26 08:40:17.689624+07', 'Phường 4', '27691', 'Phường');
INSERT INTO category."Wards" VALUES (27692, 794, 'system', '2023-07-26 08:40:17.689626+07', 'system', '2023-07-26 08:40:17.689626+07', 'Phường Tân Khánh', '27692', 'Phường');
INSERT INTO category."Wards" VALUES (27694, 794, 'system', '2023-07-26 08:40:17.689628+07', 'system', '2023-07-26 08:40:17.689628+07', 'Phường 1', '27694', 'Phường');
INSERT INTO category."Wards" VALUES (27697, 794, 'system', '2023-07-26 08:40:17.68963+07', 'system', '2023-07-26 08:40:17.68963+07', 'Phường 3', '27697', 'Phường');
INSERT INTO category."Wards" VALUES (27698, 794, 'system', '2023-07-26 08:40:17.689632+07', 'system', '2023-07-26 08:40:17.689632+07', 'Phường 7', '27698', 'Phường');
INSERT INTO category."Wards" VALUES (27700, 794, 'system', '2023-07-26 08:40:17.689634+07', 'system', '2023-07-26 08:40:17.689634+07', 'Phường 6', '27700', 'Phường');
INSERT INTO category."Wards" VALUES (27703, 794, 'system', '2023-07-26 08:40:17.689636+07', 'system', '2023-07-26 08:40:17.689636+07', 'Xã Hướng Thọ Phú', '27703', 'Xã');
INSERT INTO category."Wards" VALUES (27706, 794, 'system', '2023-07-26 08:40:17.689638+07', 'system', '2023-07-26 08:40:17.689638+07', 'Xã Nhơn Thạnh Trung', '27706', 'Xã');
INSERT INTO category."Wards" VALUES (27709, 794, 'system', '2023-07-26 08:40:17.689639+07', 'system', '2023-07-26 08:40:17.68964+07', 'Xã Lợi Bình Nhơn', '27709', 'Xã');
INSERT INTO category."Wards" VALUES (27712, 794, 'system', '2023-07-26 08:40:17.689641+07', 'system', '2023-07-26 08:40:17.689642+07', 'Xã Bình Tâm', '27712', 'Xã');
INSERT INTO category."Wards" VALUES (27715, 794, 'system', '2023-07-26 08:40:17.689643+07', 'system', '2023-07-26 08:40:17.689643+07', 'Phường Khánh Hậu', '27715', 'Phường');
INSERT INTO category."Wards" VALUES (27718, 794, 'system', '2023-07-26 08:40:17.689645+07', 'system', '2023-07-26 08:40:17.689645+07', 'Xã An Vĩnh Ngãi', '27718', 'Xã');
INSERT INTO category."Wards" VALUES (27721, 796, 'system', '2023-07-26 08:40:17.689662+07', 'system', '2023-07-26 08:40:17.689662+07', 'Thị trấn Tân Hưng', '27721', 'Thị trấn');
INSERT INTO category."Wards" VALUES (27724, 796, 'system', '2023-07-26 08:40:17.689664+07', 'system', '2023-07-26 08:40:17.689665+07', 'Xã Hưng Hà', '27724', 'Xã');
INSERT INTO category."Wards" VALUES (27727, 796, 'system', '2023-07-26 08:40:17.689667+07', 'system', '2023-07-26 08:40:17.689667+07', 'Xã Hưng Điền B', '27727', 'Xã');
INSERT INTO category."Wards" VALUES (27730, 796, 'system', '2023-07-26 08:40:17.689669+07', 'system', '2023-07-26 08:40:17.689669+07', 'Xã Hưng Điền', '27730', 'Xã');
INSERT INTO category."Wards" VALUES (27733, 796, 'system', '2023-07-26 08:40:17.689671+07', 'system', '2023-07-26 08:40:17.689671+07', 'Xã Thạnh Hưng', '27733', 'Xã');
INSERT INTO category."Wards" VALUES (27736, 796, 'system', '2023-07-26 08:40:17.689673+07', 'system', '2023-07-26 08:40:17.689673+07', 'Xã Hưng Thạnh', '27736', 'Xã');
INSERT INTO category."Wards" VALUES (27739, 796, 'system', '2023-07-26 08:40:17.689675+07', 'system', '2023-07-26 08:40:17.689675+07', 'Xã Vĩnh Thạnh', '27739', 'Xã');
INSERT INTO category."Wards" VALUES (27742, 796, 'system', '2023-07-26 08:40:17.689677+07', 'system', '2023-07-26 08:40:17.689677+07', 'Xã Vĩnh Châu B', '27742', 'Xã');
INSERT INTO category."Wards" VALUES (27745, 796, 'system', '2023-07-26 08:40:17.689678+07', 'system', '2023-07-26 08:40:17.689678+07', 'Xã Vĩnh Lợi', '27745', 'Xã');
INSERT INTO category."Wards" VALUES (27748, 796, 'system', '2023-07-26 08:40:17.68968+07', 'system', '2023-07-26 08:40:17.68968+07', 'Xã Vĩnh Đại', '27748', 'Xã');
INSERT INTO category."Wards" VALUES (27751, 796, 'system', '2023-07-26 08:40:17.689682+07', 'system', '2023-07-26 08:40:17.689682+07', 'Xã Vĩnh Châu A', '27751', 'Xã');
INSERT INTO category."Wards" VALUES (27754, 796, 'system', '2023-07-26 08:40:17.689684+07', 'system', '2023-07-26 08:40:17.689684+07', 'Xã Vĩnh Bửu', '27754', 'Xã');
INSERT INTO category."Wards" VALUES (27757, 797, 'system', '2023-07-26 08:40:17.689686+07', 'system', '2023-07-26 08:40:17.689686+07', 'Thị trấn Vĩnh Hưng', '27757', 'Thị trấn');
INSERT INTO category."Wards" VALUES (27760, 797, 'system', '2023-07-26 08:40:17.689688+07', 'system', '2023-07-26 08:40:17.689688+07', 'Xã Hưng Điền A', '27760', 'Xã');
INSERT INTO category."Wards" VALUES (27763, 797, 'system', '2023-07-26 08:40:17.68969+07', 'system', '2023-07-26 08:40:17.68969+07', 'Xã Khánh Hưng', '27763', 'Xã');
INSERT INTO category."Wards" VALUES (27766, 797, 'system', '2023-07-26 08:40:17.689691+07', 'system', '2023-07-26 08:40:17.689691+07', 'Xã Thái Trị', '27766', 'Xã');
INSERT INTO category."Wards" VALUES (27769, 797, 'system', '2023-07-26 08:40:17.689693+07', 'system', '2023-07-26 08:40:17.689693+07', 'Xã Vĩnh Trị', '27769', 'Xã');
INSERT INTO category."Wards" VALUES (27772, 797, 'system', '2023-07-26 08:40:17.689695+07', 'system', '2023-07-26 08:40:17.689695+07', 'Xã Thái Bình Trung', '27772', 'Xã');
INSERT INTO category."Wards" VALUES (27775, 797, 'system', '2023-07-26 08:40:17.689697+07', 'system', '2023-07-26 08:40:17.689697+07', 'Xã Vĩnh Bình', '27775', 'Xã');
INSERT INTO category."Wards" VALUES (27778, 797, 'system', '2023-07-26 08:40:17.689699+07', 'system', '2023-07-26 08:40:17.689699+07', 'Xã Vĩnh Thuận', '27778', 'Xã');
INSERT INTO category."Wards" VALUES (27781, 797, 'system', '2023-07-26 08:40:17.689701+07', 'system', '2023-07-26 08:40:17.689701+07', 'Xã Tuyên Bình', '27781', 'Xã');
INSERT INTO category."Wards" VALUES (27784, 797, 'system', '2023-07-26 08:40:17.689703+07', 'system', '2023-07-26 08:40:17.689703+07', 'Xã Tuyên Bình Tây', '27784', 'Xã');
INSERT INTO category."Wards" VALUES (27787, 795, 'system', '2023-07-26 08:40:17.689647+07', 'system', '2023-07-26 08:40:17.689647+07', 'Phường 1', '27787', 'Phường');
INSERT INTO category."Wards" VALUES (27788, 795, 'system', '2023-07-26 08:40:17.689649+07', 'system', '2023-07-26 08:40:17.689649+07', 'Phường 2', '27788', 'Phường');
INSERT INTO category."Wards" VALUES (27790, 795, 'system', '2023-07-26 08:40:17.689651+07', 'system', '2023-07-26 08:40:17.689651+07', 'Xã Thạnh Trị', '27790', 'Xã');
INSERT INTO category."Wards" VALUES (27793, 795, 'system', '2023-07-26 08:40:17.689653+07', 'system', '2023-07-26 08:40:17.689653+07', 'Xã Bình Hiệp', '27793', 'Xã');
INSERT INTO category."Wards" VALUES (27796, 798, 'system', '2023-07-26 08:40:17.689705+07', 'system', '2023-07-26 08:40:17.689705+07', 'Xã Bình Hòa Tây', '27796', 'Xã');
INSERT INTO category."Wards" VALUES (27799, 795, 'system', '2023-07-26 08:40:17.689655+07', 'system', '2023-07-26 08:40:17.689655+07', 'Xã Bình Tân', '27799', 'Xã');
INSERT INTO category."Wards" VALUES (27802, 798, 'system', '2023-07-26 08:40:17.689706+07', 'system', '2023-07-26 08:40:17.689707+07', 'Xã Bình Thạnh', '27802', 'Xã');
INSERT INTO category."Wards" VALUES (27805, 795, 'system', '2023-07-26 08:40:17.689657+07', 'system', '2023-07-26 08:40:17.689657+07', 'Xã Tuyên Thạnh', '27805', 'Xã');
INSERT INTO category."Wards" VALUES (27806, 795, 'system', '2023-07-26 08:40:17.689659+07', 'system', '2023-07-26 08:40:17.689659+07', 'Phường 3', '27806', 'Phường');
INSERT INTO category."Wards" VALUES (27808, 798, 'system', '2023-07-26 08:40:17.689708+07', 'system', '2023-07-26 08:40:17.689708+07', 'Xã Bình Hòa Trung', '27808', 'Xã');
INSERT INTO category."Wards" VALUES (27811, 798, 'system', '2023-07-26 08:40:17.68971+07', 'system', '2023-07-26 08:40:17.68971+07', 'Xã Bình Hòa Đông', '27811', 'Xã');
INSERT INTO category."Wards" VALUES (27814, 798, 'system', '2023-07-26 08:40:17.689712+07', 'system', '2023-07-26 08:40:17.689712+07', 'Thị trấn Bình Phong Thạnh', '27814', 'Thị trấn');
INSERT INTO category."Wards" VALUES (27817, 795, 'system', '2023-07-26 08:40:17.68966+07', 'system', '2023-07-26 08:40:17.68966+07', 'Xã Thạnh Hưng', '27817', 'Xã');
INSERT INTO category."Wards" VALUES (27820, 798, 'system', '2023-07-26 08:40:17.689714+07', 'system', '2023-07-26 08:40:17.689714+07', 'Xã Tân Lập', '27820', 'Xã');
INSERT INTO category."Wards" VALUES (27826, 799, 'system', '2023-07-26 08:40:17.689718+07', 'system', '2023-07-26 08:40:17.689718+07', 'Thị trấn Tân Thạnh', '27826', 'Thị trấn');
INSERT INTO category."Wards" VALUES (27829, 799, 'system', '2023-07-26 08:40:17.68972+07', 'system', '2023-07-26 08:40:17.68972+07', 'Xã Bắc Hòa', '27829', 'Xã');
INSERT INTO category."Wards" VALUES (27832, 799, 'system', '2023-07-26 08:40:17.689722+07', 'system', '2023-07-26 08:40:17.689722+07', 'Xã Hậu Thạnh Tây', '27832', 'Xã');
INSERT INTO category."Wards" VALUES (27835, 799, 'system', '2023-07-26 08:40:17.689724+07', 'system', '2023-07-26 08:40:17.689724+07', 'Xã Nhơn Hòa Lập', '27835', 'Xã');
INSERT INTO category."Wards" VALUES (27838, 799, 'system', '2023-07-26 08:40:17.689725+07', 'system', '2023-07-26 08:40:17.689726+07', 'Xã Tân Lập', '27838', 'Xã');
INSERT INTO category."Wards" VALUES (27841, 799, 'system', '2023-07-26 08:40:17.689727+07', 'system', '2023-07-26 08:40:17.689727+07', 'Xã Hậu Thạnh Đông', '27841', 'Xã');
INSERT INTO category."Wards" VALUES (27844, 799, 'system', '2023-07-26 08:40:17.689729+07', 'system', '2023-07-26 08:40:17.689729+07', 'Xã Nhơn Hoà', '27844', 'Xã');
INSERT INTO category."Wards" VALUES (27847, 799, 'system', '2023-07-26 08:40:17.689731+07', 'system', '2023-07-26 08:40:17.689731+07', 'Xã Kiến Bình', '27847', 'Xã');
INSERT INTO category."Wards" VALUES (27850, 799, 'system', '2023-07-26 08:40:17.689733+07', 'system', '2023-07-26 08:40:17.689733+07', 'Xã Tân Thành', '27850', 'Xã');
INSERT INTO category."Wards" VALUES (27853, 799, 'system', '2023-07-26 08:40:17.689735+07', 'system', '2023-07-26 08:40:17.689735+07', 'Xã Tân Bình', '27853', 'Xã');
INSERT INTO category."Wards" VALUES (27856, 799, 'system', '2023-07-26 08:40:17.689737+07', 'system', '2023-07-26 08:40:17.689737+07', 'Xã Tân Ninh', '27856', 'Xã');
INSERT INTO category."Wards" VALUES (27859, 799, 'system', '2023-07-26 08:40:17.689739+07', 'system', '2023-07-26 08:40:17.689739+07', 'Xã Nhơn Ninh', '27859', 'Xã');
INSERT INTO category."Wards" VALUES (27862, 799, 'system', '2023-07-26 08:40:17.689741+07', 'system', '2023-07-26 08:40:17.689741+07', 'Xã Tân Hòa', '27862', 'Xã');
INSERT INTO category."Wards" VALUES (27865, 800, 'system', '2023-07-26 08:40:17.689743+07', 'system', '2023-07-26 08:40:17.689743+07', 'Thị trấn Thạnh Hóa', '27865', 'Thị trấn');
INSERT INTO category."Wards" VALUES (27868, 800, 'system', '2023-07-26 08:40:17.689745+07', 'system', '2023-07-26 08:40:17.689745+07', 'Xã Tân Hiệp', '27868', 'Xã');
INSERT INTO category."Wards" VALUES (27871, 800, 'system', '2023-07-26 08:40:17.689747+07', 'system', '2023-07-26 08:40:17.689747+07', 'Xã Thuận Bình', '27871', 'Xã');
INSERT INTO category."Wards" VALUES (27874, 800, 'system', '2023-07-26 08:40:17.689748+07', 'system', '2023-07-26 08:40:17.689748+07', 'Xã Thạnh Phước', '27874', 'Xã');
INSERT INTO category."Wards" VALUES (27877, 800, 'system', '2023-07-26 08:40:17.68975+07', 'system', '2023-07-26 08:40:17.68975+07', 'Xã Thạnh Phú', '27877', 'Xã');
INSERT INTO category."Wards" VALUES (27880, 800, 'system', '2023-07-26 08:40:17.689752+07', 'system', '2023-07-26 08:40:17.689752+07', 'Xã Thuận Nghĩa Hòa', '27880', 'Xã');
INSERT INTO category."Wards" VALUES (27883, 800, 'system', '2023-07-26 08:40:17.689754+07', 'system', '2023-07-26 08:40:17.689754+07', 'Xã Thủy Đông', '27883', 'Xã');
INSERT INTO category."Wards" VALUES (27886, 800, 'system', '2023-07-26 08:40:17.689756+07', 'system', '2023-07-26 08:40:17.689756+07', 'Xã Thủy Tây', '27886', 'Xã');
INSERT INTO category."Wards" VALUES (27889, 800, 'system', '2023-07-26 08:40:17.689758+07', 'system', '2023-07-26 08:40:17.689758+07', 'Xã Tân Tây', '27889', 'Xã');
INSERT INTO category."Wards" VALUES (27892, 800, 'system', '2023-07-26 08:40:17.68976+07', 'system', '2023-07-26 08:40:17.68976+07', 'Xã Tân Đông', '27892', 'Xã');
INSERT INTO category."Wards" VALUES (27895, 800, 'system', '2023-07-26 08:40:17.689762+07', 'system', '2023-07-26 08:40:17.689762+07', 'Xã Thạnh An', '27895', 'Xã');
INSERT INTO category."Wards" VALUES (27898, 801, 'system', '2023-07-26 08:40:17.689764+07', 'system', '2023-07-26 08:40:17.689764+07', 'Thị trấn Đông Thành', '27898', 'Thị trấn');
INSERT INTO category."Wards" VALUES (27901, 801, 'system', '2023-07-26 08:40:17.689766+07', 'system', '2023-07-26 08:40:17.689766+07', 'Xã Mỹ Quý Đông', '27901', 'Xã');
INSERT INTO category."Wards" VALUES (27904, 801, 'system', '2023-07-26 08:40:17.689767+07', 'system', '2023-07-26 08:40:17.689767+07', 'Xã Mỹ Thạnh Bắc', '27904', 'Xã');
INSERT INTO category."Wards" VALUES (27907, 801, 'system', '2023-07-26 08:40:17.689769+07', 'system', '2023-07-26 08:40:17.689769+07', 'Xã Mỹ Quý Tây', '27907', 'Xã');
INSERT INTO category."Wards" VALUES (27910, 801, 'system', '2023-07-26 08:40:17.689771+07', 'system', '2023-07-26 08:40:17.689771+07', 'Xã Mỹ Thạnh Tây', '27910', 'Xã');
INSERT INTO category."Wards" VALUES (27913, 801, 'system', '2023-07-26 08:40:17.689773+07', 'system', '2023-07-26 08:40:17.689773+07', 'Xã Mỹ Thạnh Đông', '27913', 'Xã');
INSERT INTO category."Wards" VALUES (27916, 801, 'system', '2023-07-26 08:40:17.689775+07', 'system', '2023-07-26 08:40:17.689775+07', 'Xã Bình Thành', '27916', 'Xã');
INSERT INTO category."Wards" VALUES (27919, 801, 'system', '2023-07-26 08:40:17.689777+07', 'system', '2023-07-26 08:40:17.689777+07', 'Xã Bình Hòa Bắc', '27919', 'Xã');
INSERT INTO category."Wards" VALUES (27922, 801, 'system', '2023-07-26 08:40:17.689779+07', 'system', '2023-07-26 08:40:17.689779+07', 'Xã Bình Hòa Hưng', '27922', 'Xã');
INSERT INTO category."Wards" VALUES (27925, 801, 'system', '2023-07-26 08:40:17.689781+07', 'system', '2023-07-26 08:40:17.689781+07', 'Xã Bình Hòa Nam', '27925', 'Xã');
INSERT INTO category."Wards" VALUES (27928, 801, 'system', '2023-07-26 08:40:17.689783+07', 'system', '2023-07-26 08:40:17.689783+07', 'Xã Mỹ Bình', '27928', 'Xã');
INSERT INTO category."Wards" VALUES (27931, 802, 'system', '2023-07-26 08:40:17.689784+07', 'system', '2023-07-26 08:40:17.689784+07', 'Thị trấn Hậu Nghĩa', '27931', 'Thị trấn');
INSERT INTO category."Wards" VALUES (27934, 802, 'system', '2023-07-26 08:40:17.689786+07', 'system', '2023-07-26 08:40:17.689786+07', 'Thị trấn Hiệp Hòa', '27934', 'Thị trấn');
INSERT INTO category."Wards" VALUES (27937, 802, 'system', '2023-07-26 08:40:17.689788+07', 'system', '2023-07-26 08:40:17.689788+07', 'Thị trấn Đức Hòa', '27937', 'Thị trấn');
INSERT INTO category."Wards" VALUES (27940, 802, 'system', '2023-07-26 08:40:17.68979+07', 'system', '2023-07-26 08:40:17.68979+07', 'Xã Lộc Giang', '27940', 'Xã');
INSERT INTO category."Wards" VALUES (27943, 802, 'system', '2023-07-26 08:40:17.689792+07', 'system', '2023-07-26 08:40:17.689792+07', 'Xã An Ninh Đông', '27943', 'Xã');
INSERT INTO category."Wards" VALUES (27946, 802, 'system', '2023-07-26 08:40:17.689794+07', 'system', '2023-07-26 08:40:17.689794+07', 'Xã An Ninh Tây', '27946', 'Xã');
INSERT INTO category."Wards" VALUES (27949, 802, 'system', '2023-07-26 08:40:17.689796+07', 'system', '2023-07-26 08:40:17.689796+07', 'Xã Tân Mỹ', '27949', 'Xã');
INSERT INTO category."Wards" VALUES (27952, 802, 'system', '2023-07-26 08:40:17.689798+07', 'system', '2023-07-26 08:40:17.689798+07', 'Xã Hiệp Hòa', '27952', 'Xã');
INSERT INTO category."Wards" VALUES (27955, 802, 'system', '2023-07-26 08:40:17.689799+07', 'system', '2023-07-26 08:40:17.689799+07', 'Xã Đức Lập Thượng', '27955', 'Xã');
INSERT INTO category."Wards" VALUES (27958, 802, 'system', '2023-07-26 08:40:17.689802+07', 'system', '2023-07-26 08:40:17.689802+07', 'Xã Đức Lập Hạ', '27958', 'Xã');
INSERT INTO category."Wards" VALUES (27961, 802, 'system', '2023-07-26 08:40:17.689804+07', 'system', '2023-07-26 08:40:17.689804+07', 'Xã Tân Phú', '27961', 'Xã');
INSERT INTO category."Wards" VALUES (27964, 802, 'system', '2023-07-26 08:40:17.689806+07', 'system', '2023-07-26 08:40:17.689806+07', 'Xã Mỹ Hạnh Bắc', '27964', 'Xã');
INSERT INTO category."Wards" VALUES (27967, 802, 'system', '2023-07-26 08:40:17.689808+07', 'system', '2023-07-26 08:40:17.689808+07', 'Xã Đức Hòa Thượng', '27967', 'Xã');
INSERT INTO category."Wards" VALUES (27970, 802, 'system', '2023-07-26 08:40:17.68981+07', 'system', '2023-07-26 08:40:17.68981+07', 'Xã Hòa Khánh Tây', '27970', 'Xã');
INSERT INTO category."Wards" VALUES (27973, 802, 'system', '2023-07-26 08:40:17.689812+07', 'system', '2023-07-26 08:40:17.689812+07', 'Xã Hòa Khánh Đông', '27973', 'Xã');
INSERT INTO category."Wards" VALUES (27976, 802, 'system', '2023-07-26 08:40:17.689813+07', 'system', '2023-07-26 08:40:17.689814+07', 'Xã Mỹ Hạnh Nam', '27976', 'Xã');
INSERT INTO category."Wards" VALUES (27979, 802, 'system', '2023-07-26 08:40:17.689815+07', 'system', '2023-07-26 08:40:17.689815+07', 'Xã Hòa Khánh Nam', '27979', 'Xã');
INSERT INTO category."Wards" VALUES (27982, 802, 'system', '2023-07-26 08:40:17.689817+07', 'system', '2023-07-26 08:40:17.689817+07', 'Xã Đức Hòa Đông', '27982', 'Xã');
INSERT INTO category."Wards" VALUES (27985, 802, 'system', '2023-07-26 08:40:17.689819+07', 'system', '2023-07-26 08:40:17.689819+07', 'Xã Đức Hòa Hạ', '27985', 'Xã');
INSERT INTO category."Wards" VALUES (27988, 802, 'system', '2023-07-26 08:40:17.689821+07', 'system', '2023-07-26 08:40:17.689821+07', 'Xã Hựu Thạnh', '27988', 'Xã');
INSERT INTO category."Wards" VALUES (27991, 803, 'system', '2023-07-26 08:40:17.689823+07', 'system', '2023-07-26 08:40:17.689823+07', 'Thị trấn Bến Lức', '27991', 'Thị trấn');
INSERT INTO category."Wards" VALUES (27994, 803, 'system', '2023-07-26 08:40:17.689825+07', 'system', '2023-07-26 08:40:17.689825+07', 'Xã Thạnh Lợi', '27994', 'Xã');
INSERT INTO category."Wards" VALUES (27997, 803, 'system', '2023-07-26 08:40:17.689827+07', 'system', '2023-07-26 08:40:17.689827+07', 'Xã Lương Bình', '27997', 'Xã');
INSERT INTO category."Wards" VALUES (28000, 803, 'system', '2023-07-26 08:40:17.689829+07', 'system', '2023-07-26 08:40:17.689829+07', 'Xã Thạnh Hòa', '28000', 'Xã');
INSERT INTO category."Wards" VALUES (28003, 803, 'system', '2023-07-26 08:40:17.689831+07', 'system', '2023-07-26 08:40:17.689831+07', 'Xã Lương Hòa', '28003', 'Xã');
INSERT INTO category."Wards" VALUES (28006, 803, 'system', '2023-07-26 08:40:17.689833+07', 'system', '2023-07-26 08:40:17.689833+07', 'Xã Tân Hòa', '28006', 'Xã');
INSERT INTO category."Wards" VALUES (28009, 803, 'system', '2023-07-26 08:40:17.689834+07', 'system', '2023-07-26 08:40:17.689834+07', 'Xã Tân Bửu', '28009', 'Xã');
INSERT INTO category."Wards" VALUES (28012, 803, 'system', '2023-07-26 08:40:17.689836+07', 'system', '2023-07-26 08:40:17.689836+07', 'Xã An Thạnh', '28012', 'Xã');
INSERT INTO category."Wards" VALUES (28015, 803, 'system', '2023-07-26 08:40:17.689838+07', 'system', '2023-07-26 08:40:17.689838+07', 'Xã Bình Đức', '28015', 'Xã');
INSERT INTO category."Wards" VALUES (28018, 803, 'system', '2023-07-26 08:40:17.68984+07', 'system', '2023-07-26 08:40:17.68984+07', 'Xã Mỹ Yên', '28018', 'Xã');
INSERT INTO category."Wards" VALUES (28021, 803, 'system', '2023-07-26 08:40:17.689842+07', 'system', '2023-07-26 08:40:17.689842+07', 'Xã Thanh Phú', '28021', 'Xã');
INSERT INTO category."Wards" VALUES (28024, 803, 'system', '2023-07-26 08:40:17.689844+07', 'system', '2023-07-26 08:40:17.689844+07', 'Xã Long Hiệp', '28024', 'Xã');
INSERT INTO category."Wards" VALUES (28027, 803, 'system', '2023-07-26 08:40:17.689845+07', 'system', '2023-07-26 08:40:17.689845+07', 'Xã Thạnh Đức', '28027', 'Xã');
INSERT INTO category."Wards" VALUES (28030, 803, 'system', '2023-07-26 08:40:17.689847+07', 'system', '2023-07-26 08:40:17.689847+07', 'Xã Phước Lợi', '28030', 'Xã');
INSERT INTO category."Wards" VALUES (28033, 803, 'system', '2023-07-26 08:40:17.689849+07', 'system', '2023-07-26 08:40:17.689849+07', 'Xã Nhựt Chánh', '28033', 'Xã');
INSERT INTO category."Wards" VALUES (28036, 804, 'system', '2023-07-26 08:40:17.689851+07', 'system', '2023-07-26 08:40:17.689851+07', 'Thị trấn Thủ Thừa', '28036', 'Thị trấn');
INSERT INTO category."Wards" VALUES (28039, 804, 'system', '2023-07-26 08:40:17.689853+07', 'system', '2023-07-26 08:40:17.689853+07', 'Xã Long Thạnh', '28039', 'Xã');
INSERT INTO category."Wards" VALUES (28042, 804, 'system', '2023-07-26 08:40:17.689855+07', 'system', '2023-07-26 08:40:17.689855+07', 'Xã Tân Thành', '28042', 'Xã');
INSERT INTO category."Wards" VALUES (28045, 804, 'system', '2023-07-26 08:40:17.689857+07', 'system', '2023-07-26 08:40:17.689857+07', 'Xã Long Thuận', '28045', 'Xã');
INSERT INTO category."Wards" VALUES (28048, 804, 'system', '2023-07-26 08:40:17.689858+07', 'system', '2023-07-26 08:40:17.689859+07', 'Xã Mỹ Lạc', '28048', 'Xã');
INSERT INTO category."Wards" VALUES (28051, 804, 'system', '2023-07-26 08:40:17.68986+07', 'system', '2023-07-26 08:40:17.68986+07', 'Xã Mỹ Thạnh', '28051', 'Xã');
INSERT INTO category."Wards" VALUES (28054, 804, 'system', '2023-07-26 08:40:17.689862+07', 'system', '2023-07-26 08:40:17.689862+07', 'Xã Bình An', '28054', 'Xã');
INSERT INTO category."Wards" VALUES (28057, 804, 'system', '2023-07-26 08:40:17.689864+07', 'system', '2023-07-26 08:40:17.689864+07', 'Xã Nhị Thành', '28057', 'Xã');
INSERT INTO category."Wards" VALUES (28060, 804, 'system', '2023-07-26 08:40:17.689866+07', 'system', '2023-07-26 08:40:17.689866+07', 'Xã Mỹ An', '28060', 'Xã');
INSERT INTO category."Wards" VALUES (28063, 804, 'system', '2023-07-26 08:40:17.689868+07', 'system', '2023-07-26 08:40:17.689868+07', 'Xã Bình Thạnh', '28063', 'Xã');
INSERT INTO category."Wards" VALUES (28066, 804, 'system', '2023-07-26 08:40:17.68987+07', 'system', '2023-07-26 08:40:17.68987+07', 'Xã Mỹ Phú', '28066', 'Xã');
INSERT INTO category."Wards" VALUES (28072, 804, 'system', '2023-07-26 08:40:17.689872+07', 'system', '2023-07-26 08:40:17.689872+07', 'Xã Tân Long', '28072', 'Xã');
INSERT INTO category."Wards" VALUES (28075, 805, 'system', '2023-07-26 08:40:17.689874+07', 'system', '2023-07-26 08:40:17.689874+07', 'Thị trấn Tân Trụ', '28075', 'Thị trấn');
INSERT INTO category."Wards" VALUES (28078, 805, 'system', '2023-07-26 08:40:17.689876+07', 'system', '2023-07-26 08:40:17.689876+07', 'Xã Tân Bình', '28078', 'Xã');
INSERT INTO category."Wards" VALUES (28084, 805, 'system', '2023-07-26 08:40:17.689878+07', 'system', '2023-07-26 08:40:17.689878+07', 'Xã Quê Mỹ Thạnh', '28084', 'Xã');
INSERT INTO category."Wards" VALUES (28087, 805, 'system', '2023-07-26 08:40:17.68988+07', 'system', '2023-07-26 08:40:17.68988+07', 'Xã Lạc Tấn', '28087', 'Xã');
INSERT INTO category."Wards" VALUES (28090, 805, 'system', '2023-07-26 08:40:17.689881+07', 'system', '2023-07-26 08:40:17.689881+07', 'Xã Bình Trinh Đông', '28090', 'Xã');
INSERT INTO category."Wards" VALUES (28093, 805, 'system', '2023-07-26 08:40:17.689883+07', 'system', '2023-07-26 08:40:17.689883+07', 'Xã Tân Phước Tây', '28093', 'Xã');
INSERT INTO category."Wards" VALUES (28096, 805, 'system', '2023-07-26 08:40:17.689885+07', 'system', '2023-07-26 08:40:17.689885+07', 'Xã Bình Lãng', '28096', 'Xã');
INSERT INTO category."Wards" VALUES (28099, 805, 'system', '2023-07-26 08:40:17.689887+07', 'system', '2023-07-26 08:40:17.689887+07', 'Xã Bình Tịnh', '28099', 'Xã');
INSERT INTO category."Wards" VALUES (28102, 805, 'system', '2023-07-26 08:40:17.689889+07', 'system', '2023-07-26 08:40:17.689889+07', 'Xã Đức Tân', '28102', 'Xã');
INSERT INTO category."Wards" VALUES (28105, 805, 'system', '2023-07-26 08:40:17.689891+07', 'system', '2023-07-26 08:40:17.689891+07', 'Xã Nhựt Ninh', '28105', 'Xã');
INSERT INTO category."Wards" VALUES (28108, 806, 'system', '2023-07-26 08:40:17.689893+07', 'system', '2023-07-26 08:40:17.689893+07', 'Thị trấn Cần Đước', '28108', 'Thị trấn');
INSERT INTO category."Wards" VALUES (28111, 806, 'system', '2023-07-26 08:40:17.689895+07', 'system', '2023-07-26 08:40:17.689895+07', 'Xã Long Trạch', '28111', 'Xã');
INSERT INTO category."Wards" VALUES (28114, 806, 'system', '2023-07-26 08:40:17.689897+07', 'system', '2023-07-26 08:40:17.689897+07', 'Xã Long Khê', '28114', 'Xã');
INSERT INTO category."Wards" VALUES (28117, 806, 'system', '2023-07-26 08:40:17.689898+07', 'system', '2023-07-26 08:40:17.689898+07', 'Xã Long Định', '28117', 'Xã');
INSERT INTO category."Wards" VALUES (28120, 806, 'system', '2023-07-26 08:40:17.6899+07', 'system', '2023-07-26 08:40:17.6899+07', 'Xã Phước Vân', '28120', 'Xã');
INSERT INTO category."Wards" VALUES (28123, 806, 'system', '2023-07-26 08:40:17.689902+07', 'system', '2023-07-26 08:40:17.689902+07', 'Xã Long Hòa', '28123', 'Xã');
INSERT INTO category."Wards" VALUES (28126, 806, 'system', '2023-07-26 08:40:17.689904+07', 'system', '2023-07-26 08:40:17.689904+07', 'Xã Long Cang', '28126', 'Xã');
INSERT INTO category."Wards" VALUES (28129, 806, 'system', '2023-07-26 08:40:17.689906+07', 'system', '2023-07-26 08:40:17.689906+07', 'Xã Long Sơn', '28129', 'Xã');
INSERT INTO category."Wards" VALUES (28132, 806, 'system', '2023-07-26 08:40:17.689908+07', 'system', '2023-07-26 08:40:17.689908+07', 'Xã Tân Trạch', '28132', 'Xã');
INSERT INTO category."Wards" VALUES (28135, 806, 'system', '2023-07-26 08:40:17.689909+07', 'system', '2023-07-26 08:40:17.68991+07', 'Xã Mỹ Lệ', '28135', 'Xã');
INSERT INTO category."Wards" VALUES (28138, 806, 'system', '2023-07-26 08:40:17.689911+07', 'system', '2023-07-26 08:40:17.689911+07', 'Xã Tân Lân', '28138', 'Xã');
INSERT INTO category."Wards" VALUES (28141, 806, 'system', '2023-07-26 08:40:17.689913+07', 'system', '2023-07-26 08:40:17.689913+07', 'Xã Phước Tuy', '28141', 'Xã');
INSERT INTO category."Wards" VALUES (28144, 806, 'system', '2023-07-26 08:40:17.689915+07', 'system', '2023-07-26 08:40:17.689915+07', 'Xã Long Hựu Đông', '28144', 'Xã');
INSERT INTO category."Wards" VALUES (28147, 806, 'system', '2023-07-26 08:40:17.689917+07', 'system', '2023-07-26 08:40:17.689917+07', 'Xã Tân Ân', '28147', 'Xã');
INSERT INTO category."Wards" VALUES (28150, 806, 'system', '2023-07-26 08:40:17.689919+07', 'system', '2023-07-26 08:40:17.689919+07', 'Xã Phước Đông', '28150', 'Xã');
INSERT INTO category."Wards" VALUES (28153, 806, 'system', '2023-07-26 08:40:17.689921+07', 'system', '2023-07-26 08:40:17.689921+07', 'Xã Long Hựu Tây', '28153', 'Xã');
INSERT INTO category."Wards" VALUES (28156, 806, 'system', '2023-07-26 08:40:17.689922+07', 'system', '2023-07-26 08:40:17.689922+07', 'Xã Tân Chánh', '28156', 'Xã');
INSERT INTO category."Wards" VALUES (28159, 807, 'system', '2023-07-26 08:40:17.689924+07', 'system', '2023-07-26 08:40:17.689924+07', 'Thị trấn Cần Giuộc', '28159', 'Thị trấn');
INSERT INTO category."Wards" VALUES (28162, 807, 'system', '2023-07-26 08:40:17.689926+07', 'system', '2023-07-26 08:40:17.689926+07', 'Xã Phước Lý', '28162', 'Xã');
INSERT INTO category."Wards" VALUES (28165, 807, 'system', '2023-07-26 08:40:17.689928+07', 'system', '2023-07-26 08:40:17.689928+07', 'Xã Long Thượng', '28165', 'Xã');
INSERT INTO category."Wards" VALUES (28168, 807, 'system', '2023-07-26 08:40:17.68993+07', 'system', '2023-07-26 08:40:17.68993+07', 'Xã Long Hậu', '28168', 'Xã');
INSERT INTO category."Wards" VALUES (28174, 807, 'system', '2023-07-26 08:40:17.689932+07', 'system', '2023-07-26 08:40:17.689932+07', 'Xã Phước Hậu', '28174', 'Xã');
INSERT INTO category."Wards" VALUES (28177, 807, 'system', '2023-07-26 08:40:17.689934+07', 'system', '2023-07-26 08:40:17.689934+07', 'Xã Mỹ Lộc', '28177', 'Xã');
INSERT INTO category."Wards" VALUES (28180, 807, 'system', '2023-07-26 08:40:17.689936+07', 'system', '2023-07-26 08:40:17.689936+07', 'Xã Phước Lại', '28180', 'Xã');
INSERT INTO category."Wards" VALUES (28183, 807, 'system', '2023-07-26 08:40:17.689938+07', 'system', '2023-07-26 08:40:17.689938+07', 'Xã Phước Lâm', '28183', 'Xã');
INSERT INTO category."Wards" VALUES (28189, 807, 'system', '2023-07-26 08:40:17.689941+07', 'system', '2023-07-26 08:40:17.689941+07', 'Xã Thuận Thành', '28189', 'Xã');
INSERT INTO category."Wards" VALUES (28192, 807, 'system', '2023-07-26 08:40:17.689943+07', 'system', '2023-07-26 08:40:17.689943+07', 'Xã Phước Vĩnh Tây', '28192', 'Xã');
INSERT INTO category."Wards" VALUES (28195, 807, 'system', '2023-07-26 08:40:17.689945+07', 'system', '2023-07-26 08:40:17.689945+07', 'Xã Phước Vĩnh Đông', '28195', 'Xã');
INSERT INTO category."Wards" VALUES (28198, 807, 'system', '2023-07-26 08:40:17.689947+07', 'system', '2023-07-26 08:40:17.689947+07', 'Xã Long An', '28198', 'Xã');
INSERT INTO category."Wards" VALUES (28201, 807, 'system', '2023-07-26 08:40:17.689949+07', 'system', '2023-07-26 08:40:17.689949+07', 'Xã Long Phụng', '28201', 'Xã');
INSERT INTO category."Wards" VALUES (28204, 807, 'system', '2023-07-26 08:40:17.689951+07', 'system', '2023-07-26 08:40:17.689951+07', 'Xã Đông Thạnh', '28204', 'Xã');
INSERT INTO category."Wards" VALUES (28207, 807, 'system', '2023-07-26 08:40:17.689953+07', 'system', '2023-07-26 08:40:17.689953+07', 'Xã Tân Tập', '28207', 'Xã');
INSERT INTO category."Wards" VALUES (28210, 808, 'system', '2023-07-26 08:40:17.689955+07', 'system', '2023-07-26 08:40:17.689955+07', 'Thị trấn Tầm Vu', '28210', 'Thị trấn');
INSERT INTO category."Wards" VALUES (28213, 808, 'system', '2023-07-26 08:40:17.689957+07', 'system', '2023-07-26 08:40:17.689957+07', 'Xã Bình Quới', '28213', 'Xã');
INSERT INTO category."Wards" VALUES (28216, 808, 'system', '2023-07-26 08:40:17.689958+07', 'system', '2023-07-26 08:40:17.689959+07', 'Xã Hòa Phú', '28216', 'Xã');
INSERT INTO category."Wards" VALUES (28219, 808, 'system', '2023-07-26 08:40:17.68996+07', 'system', '2023-07-26 08:40:17.68996+07', 'Xã Phú Ngãi Trị', '28219', 'Xã');
INSERT INTO category."Wards" VALUES (28222, 808, 'system', '2023-07-26 08:40:17.689962+07', 'system', '2023-07-26 08:40:17.689962+07', 'Xã Vĩnh Công', '28222', 'Xã');
INSERT INTO category."Wards" VALUES (28225, 808, 'system', '2023-07-26 08:40:17.689964+07', 'system', '2023-07-26 08:40:17.689964+07', 'Xã Thuận Mỹ', '28225', 'Xã');
INSERT INTO category."Wards" VALUES (28228, 808, 'system', '2023-07-26 08:40:17.689966+07', 'system', '2023-07-26 08:40:17.689966+07', 'Xã Hiệp Thạnh', '28228', 'Xã');
INSERT INTO category."Wards" VALUES (28231, 808, 'system', '2023-07-26 08:40:17.689968+07', 'system', '2023-07-26 08:40:17.689968+07', 'Xã Phước Tân Hưng', '28231', 'Xã');
INSERT INTO category."Wards" VALUES (28234, 808, 'system', '2023-07-26 08:40:17.68997+07', 'system', '2023-07-26 08:40:17.68997+07', 'Xã Thanh Phú Long', '28234', 'Xã');
INSERT INTO category."Wards" VALUES (28237, 808, 'system', '2023-07-26 08:40:17.689972+07', 'system', '2023-07-26 08:40:17.689972+07', 'Xã Dương Xuân Hội', '28237', 'Xã');
INSERT INTO category."Wards" VALUES (28240, 808, 'system', '2023-07-26 08:40:17.689974+07', 'system', '2023-07-26 08:40:17.689974+07', 'Xã An Lục Long', '28240', 'Xã');
INSERT INTO category."Wards" VALUES (28243, 808, 'system', '2023-07-26 08:40:17.689976+07', 'system', '2023-07-26 08:40:17.689976+07', 'Xã Long Trì', '28243', 'Xã');
INSERT INTO category."Wards" VALUES (28246, 808, 'system', '2023-07-26 08:40:17.689977+07', 'system', '2023-07-26 08:40:17.689977+07', 'Xã Thanh Vĩnh Đông', '28246', 'Xã');
INSERT INTO category."Wards" VALUES (28249, 815, 'system', '2023-07-26 08:40:17.689979+07', 'system', '2023-07-26 08:40:17.689979+07', 'Phường 5', '28249', 'Phường');
INSERT INTO category."Wards" VALUES (28252, 815, 'system', '2023-07-26 08:40:17.689981+07', 'system', '2023-07-26 08:40:17.689981+07', 'Phường 4', '28252', 'Phường');
INSERT INTO category."Wards" VALUES (28255, 815, 'system', '2023-07-26 08:40:17.689983+07', 'system', '2023-07-26 08:40:17.689983+07', 'Phường 7', '28255', 'Phường');
INSERT INTO category."Wards" VALUES (28258, 815, 'system', '2023-07-26 08:40:17.689985+07', 'system', '2023-07-26 08:40:17.689985+07', 'Phường 3', '28258', 'Phường');
INSERT INTO category."Wards" VALUES (28261, 815, 'system', '2023-07-26 08:40:17.689987+07', 'system', '2023-07-26 08:40:17.689987+07', 'Phường 1', '28261', 'Phường');
INSERT INTO category."Wards" VALUES (28264, 815, 'system', '2023-07-26 08:40:17.689989+07', 'system', '2023-07-26 08:40:17.689989+07', 'Phường 2', '28264', 'Phường');
INSERT INTO category."Wards" VALUES (28267, 815, 'system', '2023-07-26 08:40:17.689991+07', 'system', '2023-07-26 08:40:17.689991+07', 'Phường 8', '28267', 'Phường');
INSERT INTO category."Wards" VALUES (28270, 815, 'system', '2023-07-26 08:40:17.689993+07', 'system', '2023-07-26 08:40:17.689993+07', 'Phường 6', '28270', 'Phường');
INSERT INTO category."Wards" VALUES (28273, 815, 'system', '2023-07-26 08:40:17.689994+07', 'system', '2023-07-26 08:40:17.689994+07', 'Phường 9', '28273', 'Phường');
INSERT INTO category."Wards" VALUES (28276, 815, 'system', '2023-07-26 08:40:17.689996+07', 'system', '2023-07-26 08:40:17.689996+07', 'Phường 10', '28276', 'Phường');
INSERT INTO category."Wards" VALUES (28279, 815, 'system', '2023-07-26 08:40:17.689998+07', 'system', '2023-07-26 08:40:17.689998+07', 'Phường Tân Long', '28279', 'Phường');
INSERT INTO category."Wards" VALUES (28282, 815, 'system', '2023-07-26 08:40:17.69+07', 'system', '2023-07-26 08:40:17.69+07', 'Xã Đạo Thạnh', '28282', 'Xã');
INSERT INTO category."Wards" VALUES (28285, 815, 'system', '2023-07-26 08:40:17.690002+07', 'system', '2023-07-26 08:40:17.690002+07', 'Xã Trung An', '28285', 'Xã');
INSERT INTO category."Wards" VALUES (28288, 815, 'system', '2023-07-26 08:40:17.690004+07', 'system', '2023-07-26 08:40:17.690004+07', 'Xã Mỹ Phong', '28288', 'Xã');
INSERT INTO category."Wards" VALUES (28291, 815, 'system', '2023-07-26 08:40:17.690006+07', 'system', '2023-07-26 08:40:17.690006+07', 'Xã Tân Mỹ Chánh', '28291', 'Xã');
INSERT INTO category."Wards" VALUES (28294, 816, 'system', '2023-07-26 08:40:17.690012+07', 'system', '2023-07-26 08:40:17.690012+07', 'Phường 3', '28294', 'Phường');
INSERT INTO category."Wards" VALUES (28297, 816, 'system', '2023-07-26 08:40:17.690014+07', 'system', '2023-07-26 08:40:17.690014+07', 'Phường 2', '28297', 'Phường');
INSERT INTO category."Wards" VALUES (28300, 816, 'system', '2023-07-26 08:40:17.690016+07', 'system', '2023-07-26 08:40:17.690016+07', 'Phường 4', '28300', 'Phường');
INSERT INTO category."Wards" VALUES (28303, 816, 'system', '2023-07-26 08:40:17.690018+07', 'system', '2023-07-26 08:40:17.690018+07', 'Phường 1', '28303', 'Phường');
INSERT INTO category."Wards" VALUES (28306, 816, 'system', '2023-07-26 08:40:17.69002+07', 'system', '2023-07-26 08:40:17.69002+07', 'Phường 5', '28306', 'Phường');
INSERT INTO category."Wards" VALUES (28309, 816, 'system', '2023-07-26 08:40:17.690022+07', 'system', '2023-07-26 08:40:17.690022+07', 'Xã Long Hưng', '28309', 'Xã');
INSERT INTO category."Wards" VALUES (28312, 816, 'system', '2023-07-26 08:40:17.690023+07', 'system', '2023-07-26 08:40:17.690023+07', 'Xã Long Thuận', '28312', 'Xã');
INSERT INTO category."Wards" VALUES (28315, 816, 'system', '2023-07-26 08:40:17.690025+07', 'system', '2023-07-26 08:40:17.690025+07', 'Xã Long Chánh', '28315', 'Xã');
INSERT INTO category."Wards" VALUES (28318, 816, 'system', '2023-07-26 08:40:17.690027+07', 'system', '2023-07-26 08:40:17.690027+07', 'Xã Long Hòa', '28318', 'Xã');
INSERT INTO category."Wards" VALUES (28321, 818, 'system', '2023-07-26 08:40:17.690072+07', 'system', '2023-07-26 08:40:17.690072+07', 'Thị trấn Mỹ Phước', '28321', 'Thị trấn');
INSERT INTO category."Wards" VALUES (28324, 818, 'system', '2023-07-26 08:40:17.690074+07', 'system', '2023-07-26 08:40:17.690075+07', 'Xã Tân Hòa Đông', '28324', 'Xã');
INSERT INTO category."Wards" VALUES (28327, 818, 'system', '2023-07-26 08:40:17.690076+07', 'system', '2023-07-26 08:40:17.690076+07', 'Xã Thạnh Tân', '28327', 'Xã');
INSERT INTO category."Wards" VALUES (28330, 818, 'system', '2023-07-26 08:40:17.690078+07', 'system', '2023-07-26 08:40:17.690078+07', 'Xã Thạnh Mỹ', '28330', 'Xã');
INSERT INTO category."Wards" VALUES (28333, 818, 'system', '2023-07-26 08:40:17.69008+07', 'system', '2023-07-26 08:40:17.69008+07', 'Xã Thạnh Hoà', '28333', 'Xã');
INSERT INTO category."Wards" VALUES (28336, 818, 'system', '2023-07-26 08:40:17.690082+07', 'system', '2023-07-26 08:40:17.690082+07', 'Xã Phú Mỹ', '28336', 'Xã');
INSERT INTO category."Wards" VALUES (28339, 818, 'system', '2023-07-26 08:40:17.690084+07', 'system', '2023-07-26 08:40:17.690084+07', 'Xã Tân Hòa Thành', '28339', 'Xã');
INSERT INTO category."Wards" VALUES (28342, 818, 'system', '2023-07-26 08:40:17.690087+07', 'system', '2023-07-26 08:40:17.690087+07', 'Xã Hưng Thạnh', '28342', 'Xã');
INSERT INTO category."Wards" VALUES (28345, 818, 'system', '2023-07-26 08:40:17.690089+07', 'system', '2023-07-26 08:40:17.690089+07', 'Xã Tân Lập 1', '28345', 'Xã');
INSERT INTO category."Wards" VALUES (28348, 818, 'system', '2023-07-26 08:40:17.690091+07', 'system', '2023-07-26 08:40:17.690091+07', 'Xã Tân Hòa Tây', '28348', 'Xã');
INSERT INTO category."Wards" VALUES (28354, 818, 'system', '2023-07-26 08:40:17.690092+07', 'system', '2023-07-26 08:40:17.690092+07', 'Xã Tân Lập 2', '28354', 'Xã');
INSERT INTO category."Wards" VALUES (28357, 818, 'system', '2023-07-26 08:40:17.690094+07', 'system', '2023-07-26 08:40:17.690094+07', 'Xã Phước Lập', '28357', 'Xã');
INSERT INTO category."Wards" VALUES (28360, 819, 'system', '2023-07-26 08:40:17.690096+07', 'system', '2023-07-26 08:40:17.690096+07', 'Thị trấn Cái Bè', '28360', 'Thị trấn');
INSERT INTO category."Wards" VALUES (28363, 819, 'system', '2023-07-26 08:40:17.690098+07', 'system', '2023-07-26 08:40:17.690098+07', 'Xã Hậu Mỹ Bắc B', '28363', 'Xã');
INSERT INTO category."Wards" VALUES (28366, 819, 'system', '2023-07-26 08:40:17.6901+07', 'system', '2023-07-26 08:40:17.6901+07', 'Xã Hậu Mỹ Bắc A', '28366', 'Xã');
INSERT INTO category."Wards" VALUES (28369, 819, 'system', '2023-07-26 08:40:17.690102+07', 'system', '2023-07-26 08:40:17.690102+07', 'Xã Mỹ Trung', '28369', 'Xã');
INSERT INTO category."Wards" VALUES (28372, 819, 'system', '2023-07-26 08:40:17.690104+07', 'system', '2023-07-26 08:40:17.690104+07', 'Xã Hậu Mỹ Trinh', '28372', 'Xã');
INSERT INTO category."Wards" VALUES (28375, 819, 'system', '2023-07-26 08:40:17.690106+07', 'system', '2023-07-26 08:40:17.690106+07', 'Xã Hậu Mỹ Phú', '28375', 'Xã');
INSERT INTO category."Wards" VALUES (28378, 819, 'system', '2023-07-26 08:40:17.690108+07', 'system', '2023-07-26 08:40:17.690108+07', 'Xã Mỹ Tân', '28378', 'Xã');
INSERT INTO category."Wards" VALUES (28381, 819, 'system', '2023-07-26 08:40:17.69011+07', 'system', '2023-07-26 08:40:17.69011+07', 'Xã Mỹ Lợi B', '28381', 'Xã');
INSERT INTO category."Wards" VALUES (28384, 819, 'system', '2023-07-26 08:40:17.690112+07', 'system', '2023-07-26 08:40:17.690112+07', 'Xã Thiện Trung', '28384', 'Xã');
INSERT INTO category."Wards" VALUES (28387, 819, 'system', '2023-07-26 08:40:17.690114+07', 'system', '2023-07-26 08:40:17.690114+07', 'Xã Mỹ Hội', '28387', 'Xã');
INSERT INTO category."Wards" VALUES (28390, 819, 'system', '2023-07-26 08:40:17.690115+07', 'system', '2023-07-26 08:40:17.690115+07', 'Xã An Cư', '28390', 'Xã');
INSERT INTO category."Wards" VALUES (28393, 819, 'system', '2023-07-26 08:40:17.690117+07', 'system', '2023-07-26 08:40:17.690117+07', 'Xã Hậu Thành', '28393', 'Xã');
INSERT INTO category."Wards" VALUES (28396, 819, 'system', '2023-07-26 08:40:17.690119+07', 'system', '2023-07-26 08:40:17.690119+07', 'Xã Mỹ Lợi A', '28396', 'Xã');
INSERT INTO category."Wards" VALUES (28399, 819, 'system', '2023-07-26 08:40:17.690121+07', 'system', '2023-07-26 08:40:17.690121+07', 'Xã Hòa Khánh', '28399', 'Xã');
INSERT INTO category."Wards" VALUES (28402, 819, 'system', '2023-07-26 08:40:17.690123+07', 'system', '2023-07-26 08:40:17.690123+07', 'Xã Thiện Trí', '28402', 'Xã');
INSERT INTO category."Wards" VALUES (28405, 819, 'system', '2023-07-26 08:40:17.690125+07', 'system', '2023-07-26 08:40:17.690125+07', 'Xã Mỹ Đức Đông', '28405', 'Xã');
INSERT INTO category."Wards" VALUES (28408, 819, 'system', '2023-07-26 08:40:17.690127+07', 'system', '2023-07-26 08:40:17.690127+07', 'Xã Mỹ Đức Tây', '28408', 'Xã');
INSERT INTO category."Wards" VALUES (28411, 819, 'system', '2023-07-26 08:40:17.690129+07', 'system', '2023-07-26 08:40:17.690129+07', 'Xã Đông Hòa Hiệp', '28411', 'Xã');
INSERT INTO category."Wards" VALUES (28414, 819, 'system', '2023-07-26 08:40:17.690131+07', 'system', '2023-07-26 08:40:17.690131+07', 'Xã An Thái Đông', '28414', 'Xã');
INSERT INTO category."Wards" VALUES (28417, 819, 'system', '2023-07-26 08:40:17.690133+07', 'system', '2023-07-26 08:40:17.690133+07', 'Xã Tân Hưng', '28417', 'Xã');
INSERT INTO category."Wards" VALUES (28420, 819, 'system', '2023-07-26 08:40:17.690134+07', 'system', '2023-07-26 08:40:17.690135+07', 'Xã Mỹ Lương', '28420', 'Xã');
INSERT INTO category."Wards" VALUES (28423, 819, 'system', '2023-07-26 08:40:17.690136+07', 'system', '2023-07-26 08:40:17.690136+07', 'Xã Tân Thanh', '28423', 'Xã');
INSERT INTO category."Wards" VALUES (28426, 819, 'system', '2023-07-26 08:40:17.690138+07', 'system', '2023-07-26 08:40:17.690138+07', 'Xã An Thái Trung', '28426', 'Xã');
INSERT INTO category."Wards" VALUES (28429, 819, 'system', '2023-07-26 08:40:17.69014+07', 'system', '2023-07-26 08:40:17.69014+07', 'Xã An Hữu', '28429', 'Xã');
INSERT INTO category."Wards" VALUES (28432, 819, 'system', '2023-07-26 08:40:17.690142+07', 'system', '2023-07-26 08:40:17.690142+07', 'Xã Hòa Hưng', '28432', 'Xã');
INSERT INTO category."Wards" VALUES (28435, 817, 'system', '2023-07-26 08:40:17.690035+07', 'system', '2023-07-26 08:40:17.690035+07', 'Phường 1', '28435', 'Phường');
INSERT INTO category."Wards" VALUES (28436, 817, 'system', '2023-07-26 08:40:17.690037+07', 'system', '2023-07-26 08:40:17.690037+07', 'Phường 2', '28436', 'Phường');
INSERT INTO category."Wards" VALUES (28437, 817, 'system', '2023-07-26 08:40:17.690046+07', 'system', '2023-07-26 08:40:17.690046+07', 'Phường 3', '28437', 'Phường');
INSERT INTO category."Wards" VALUES (28438, 820, 'system', '2023-07-26 08:40:17.690144+07', 'system', '2023-07-26 08:40:17.690144+07', 'Xã Thạnh Lộc', '28438', 'Xã');
INSERT INTO category."Wards" VALUES (28439, 817, 'system', '2023-07-26 08:40:17.690048+07', 'system', '2023-07-26 08:40:17.690048+07', 'Phường 4', '28439', 'Phường');
INSERT INTO category."Wards" VALUES (28440, 817, 'system', '2023-07-26 08:40:17.690049+07', 'system', '2023-07-26 08:40:17.690049+07', 'Phường 5', '28440', 'Phường');
INSERT INTO category."Wards" VALUES (28441, 820, 'system', '2023-07-26 08:40:17.690146+07', 'system', '2023-07-26 08:40:17.690146+07', 'Xã Mỹ Thành Bắc', '28441', 'Xã');
INSERT INTO category."Wards" VALUES (28444, 820, 'system', '2023-07-26 08:40:17.690148+07', 'system', '2023-07-26 08:40:17.690148+07', 'Xã Phú Cường', '28444', 'Xã');
INSERT INTO category."Wards" VALUES (28447, 817, 'system', '2023-07-26 08:40:17.690051+07', 'system', '2023-07-26 08:40:17.690051+07', 'Xã Mỹ Phước Tây', '28447', 'Xã');
INSERT INTO category."Wards" VALUES (28450, 817, 'system', '2023-07-26 08:40:17.690053+07', 'system', '2023-07-26 08:40:17.690053+07', 'Xã Mỹ Hạnh Đông', '28450', 'Xã');
INSERT INTO category."Wards" VALUES (28453, 817, 'system', '2023-07-26 08:40:17.690055+07', 'system', '2023-07-26 08:40:17.690055+07', 'Xã Mỹ Hạnh Trung', '28453', 'Xã');
INSERT INTO category."Wards" VALUES (28456, 820, 'system', '2023-07-26 08:40:17.69015+07', 'system', '2023-07-26 08:40:17.69015+07', 'Xã Mỹ Thành Nam', '28456', 'Xã');
INSERT INTO category."Wards" VALUES (28459, 817, 'system', '2023-07-26 08:40:17.690057+07', 'system', '2023-07-26 08:40:17.690057+07', 'Xã Tân Phú', '28459', 'Xã');
INSERT INTO category."Wards" VALUES (28462, 817, 'system', '2023-07-26 08:40:17.690059+07', 'system', '2023-07-26 08:40:17.690059+07', 'Xã Tân Bình', '28462', 'Xã');
INSERT INTO category."Wards" VALUES (28465, 820, 'system', '2023-07-26 08:40:17.690152+07', 'system', '2023-07-26 08:40:17.690152+07', 'Xã Phú Nhuận', '28465', 'Xã');
INSERT INTO category."Wards" VALUES (28468, 817, 'system', '2023-07-26 08:40:17.690061+07', 'system', '2023-07-26 08:40:17.690061+07', 'Xã Tân Hội', '28468', 'Xã');
INSERT INTO category."Wards" VALUES (28471, 820, 'system', '2023-07-26 08:40:17.690153+07', 'system', '2023-07-26 08:40:17.690153+07', 'Xã Bình Phú', '28471', 'Xã');
INSERT INTO category."Wards" VALUES (28474, 817, 'system', '2023-07-26 08:40:17.690063+07', 'system', '2023-07-26 08:40:17.690063+07', 'Phường Nhị Mỹ', '28474', 'Phường');
INSERT INTO category."Wards" VALUES (28477, 817, 'system', '2023-07-26 08:40:17.690065+07', 'system', '2023-07-26 08:40:17.690065+07', 'Xã Nhị Quý', '28477', 'Xã');
INSERT INTO category."Wards" VALUES (28480, 817, 'system', '2023-07-26 08:40:17.690067+07', 'system', '2023-07-26 08:40:17.690067+07', 'Xã Thanh Hòa', '28480', 'Xã');
INSERT INTO category."Wards" VALUES (28483, 817, 'system', '2023-07-26 08:40:17.690069+07', 'system', '2023-07-26 08:40:17.690069+07', 'Xã Phú Quý', '28483', 'Xã');
INSERT INTO category."Wards" VALUES (28486, 817, 'system', '2023-07-26 08:40:17.69007+07', 'system', '2023-07-26 08:40:17.69007+07', 'Xã Long Khánh', '28486', 'Xã');
INSERT INTO category."Wards" VALUES (28489, 820, 'system', '2023-07-26 08:40:17.690156+07', 'system', '2023-07-26 08:40:17.690156+07', 'Xã Cẩm Sơn', '28489', 'Xã');
INSERT INTO category."Wards" VALUES (28492, 820, 'system', '2023-07-26 08:40:17.690158+07', 'system', '2023-07-26 08:40:17.690158+07', 'Xã Phú An', '28492', 'Xã');
INSERT INTO category."Wards" VALUES (28495, 820, 'system', '2023-07-26 08:40:17.69016+07', 'system', '2023-07-26 08:40:17.69016+07', 'Xã Mỹ Long', '28495', 'Xã');
INSERT INTO category."Wards" VALUES (28498, 820, 'system', '2023-07-26 08:40:17.690162+07', 'system', '2023-07-26 08:40:17.690162+07', 'Xã Long Tiên', '28498', 'Xã');
INSERT INTO category."Wards" VALUES (28501, 820, 'system', '2023-07-26 08:40:17.690164+07', 'system', '2023-07-26 08:40:17.690164+07', 'Xã Hiệp Đức', '28501', 'Xã');
INSERT INTO category."Wards" VALUES (28504, 820, 'system', '2023-07-26 08:40:17.690165+07', 'system', '2023-07-26 08:40:17.690165+07', 'Xã Long Trung', '28504', 'Xã');
INSERT INTO category."Wards" VALUES (28507, 820, 'system', '2023-07-26 08:40:17.690167+07', 'system', '2023-07-26 08:40:17.690167+07', 'Xã Hội Xuân', '28507', 'Xã');
INSERT INTO category."Wards" VALUES (28510, 820, 'system', '2023-07-26 08:40:17.690169+07', 'system', '2023-07-26 08:40:17.690169+07', 'Xã Tân Phong', '28510', 'Xã');
INSERT INTO category."Wards" VALUES (28513, 820, 'system', '2023-07-26 08:40:17.690171+07', 'system', '2023-07-26 08:40:17.690171+07', 'Xã Tam Bình', '28513', 'Xã');
INSERT INTO category."Wards" VALUES (28516, 820, 'system', '2023-07-26 08:40:17.690173+07', 'system', '2023-07-26 08:40:17.690173+07', 'Xã Ngũ Hiệp', '28516', 'Xã');
INSERT INTO category."Wards" VALUES (28519, 821, 'system', '2023-07-26 08:40:17.690175+07', 'system', '2023-07-26 08:40:17.690175+07', 'Thị trấn Tân Hiệp', '28519', 'Thị trấn');
INSERT INTO category."Wards" VALUES (28522, 821, 'system', '2023-07-26 08:40:17.690177+07', 'system', '2023-07-26 08:40:17.690177+07', 'Xã Tân Hội Đông', '28522', 'Xã');
INSERT INTO category."Wards" VALUES (28525, 821, 'system', '2023-07-26 08:40:17.690179+07', 'system', '2023-07-26 08:40:17.690179+07', 'Xã Tân Hương', '28525', 'Xã');
INSERT INTO category."Wards" VALUES (28528, 821, 'system', '2023-07-26 08:40:17.69018+07', 'system', '2023-07-26 08:40:17.690181+07', 'Xã Tân Lý Đông', '28528', 'Xã');
INSERT INTO category."Wards" VALUES (28531, 821, 'system', '2023-07-26 08:40:17.690182+07', 'system', '2023-07-26 08:40:17.690182+07', 'Xã Tân Lý Tây', '28531', 'Xã');
INSERT INTO category."Wards" VALUES (28534, 821, 'system', '2023-07-26 08:40:17.690184+07', 'system', '2023-07-26 08:40:17.690184+07', 'Xã Thân Cửu Nghĩa', '28534', 'Xã');
INSERT INTO category."Wards" VALUES (28537, 821, 'system', '2023-07-26 08:40:17.690186+07', 'system', '2023-07-26 08:40:17.690186+07', 'Xã Tam Hiệp', '28537', 'Xã');
INSERT INTO category."Wards" VALUES (28540, 821, 'system', '2023-07-26 08:40:17.690188+07', 'system', '2023-07-26 08:40:17.690188+07', 'Xã Điềm Hy', '28540', 'Xã');
INSERT INTO category."Wards" VALUES (28543, 821, 'system', '2023-07-26 08:40:17.69019+07', 'system', '2023-07-26 08:40:17.69019+07', 'Xã Nhị Bình', '28543', 'Xã');
INSERT INTO category."Wards" VALUES (28546, 821, 'system', '2023-07-26 08:40:17.690192+07', 'system', '2023-07-26 08:40:17.690192+07', 'Xã Dưỡng Điềm', '28546', 'Xã');
INSERT INTO category."Wards" VALUES (28549, 821, 'system', '2023-07-26 08:40:17.690194+07', 'system', '2023-07-26 08:40:17.690194+07', 'Xã Đông Hòa', '28549', 'Xã');
INSERT INTO category."Wards" VALUES (28552, 821, 'system', '2023-07-26 08:40:17.690196+07', 'system', '2023-07-26 08:40:17.690196+07', 'Xã Long Định', '28552', 'Xã');
INSERT INTO category."Wards" VALUES (28555, 821, 'system', '2023-07-26 08:40:17.690198+07', 'system', '2023-07-26 08:40:17.690198+07', 'Xã Hữu Đạo', '28555', 'Xã');
INSERT INTO category."Wards" VALUES (28558, 821, 'system', '2023-07-26 08:40:17.690199+07', 'system', '2023-07-26 08:40:17.6902+07', 'Xã Long An', '28558', 'Xã');
INSERT INTO category."Wards" VALUES (28561, 821, 'system', '2023-07-26 08:40:17.690201+07', 'system', '2023-07-26 08:40:17.690201+07', 'Xã Long Hưng', '28561', 'Xã');
INSERT INTO category."Wards" VALUES (28564, 821, 'system', '2023-07-26 08:40:17.690203+07', 'system', '2023-07-26 08:40:17.690203+07', 'Xã Bình Trưng', '28564', 'Xã');
INSERT INTO category."Wards" VALUES (28567, 815, 'system', '2023-07-26 08:40:17.690007+07', 'system', '2023-07-26 08:40:17.690007+07', 'Xã Phước Thạnh', '28567', 'Xã');
INSERT INTO category."Wards" VALUES (28570, 821, 'system', '2023-07-26 08:40:17.690205+07', 'system', '2023-07-26 08:40:17.690206+07', 'Xã Thạnh Phú', '28570', 'Xã');
INSERT INTO category."Wards" VALUES (28573, 821, 'system', '2023-07-26 08:40:17.690207+07', 'system', '2023-07-26 08:40:17.690207+07', 'Xã Bàn Long', '28573', 'Xã');
INSERT INTO category."Wards" VALUES (28576, 821, 'system', '2023-07-26 08:40:17.690209+07', 'system', '2023-07-26 08:40:17.690209+07', 'Xã Vĩnh Kim', '28576', 'Xã');
INSERT INTO category."Wards" VALUES (28579, 821, 'system', '2023-07-26 08:40:17.690211+07', 'system', '2023-07-26 08:40:17.690211+07', 'Xã Bình Đức', '28579', 'Xã');
INSERT INTO category."Wards" VALUES (28582, 821, 'system', '2023-07-26 08:40:17.690213+07', 'system', '2023-07-26 08:40:17.690213+07', 'Xã Song Thuận', '28582', 'Xã');
INSERT INTO category."Wards" VALUES (28585, 821, 'system', '2023-07-26 08:40:17.690215+07', 'system', '2023-07-26 08:40:17.690215+07', 'Xã Kim Sơn', '28585', 'Xã');
INSERT INTO category."Wards" VALUES (28588, 821, 'system', '2023-07-26 08:40:17.690217+07', 'system', '2023-07-26 08:40:17.690217+07', 'Xã Phú Phong', '28588', 'Xã');
INSERT INTO category."Wards" VALUES (28591, 815, 'system', '2023-07-26 08:40:17.69001+07', 'system', '2023-07-26 08:40:17.69001+07', 'Xã Thới Sơn', '28591', 'Xã');
INSERT INTO category."Wards" VALUES (28594, 822, 'system', '2023-07-26 08:40:17.690219+07', 'system', '2023-07-26 08:40:17.690219+07', 'Thị trấn Chợ Gạo', '28594', 'Thị trấn');
INSERT INTO category."Wards" VALUES (28597, 822, 'system', '2023-07-26 08:40:17.690221+07', 'system', '2023-07-26 08:40:17.690221+07', 'Xã Trung Hòa', '28597', 'Xã');
INSERT INTO category."Wards" VALUES (28600, 822, 'system', '2023-07-26 08:40:17.690223+07', 'system', '2023-07-26 08:40:17.690223+07', 'Xã Hòa Tịnh', '28600', 'Xã');
INSERT INTO category."Wards" VALUES (28603, 822, 'system', '2023-07-26 08:40:17.690225+07', 'system', '2023-07-26 08:40:17.690225+07', 'Xã Mỹ Tịnh An', '28603', 'Xã');
INSERT INTO category."Wards" VALUES (28606, 822, 'system', '2023-07-26 08:40:17.690227+07', 'system', '2023-07-26 08:40:17.690227+07', 'Xã Tân Bình Thạnh', '28606', 'Xã');
INSERT INTO category."Wards" VALUES (28609, 822, 'system', '2023-07-26 08:40:17.690229+07', 'system', '2023-07-26 08:40:17.690229+07', 'Xã Phú Kiết', '28609', 'Xã');
INSERT INTO category."Wards" VALUES (28612, 822, 'system', '2023-07-26 08:40:17.690231+07', 'system', '2023-07-26 08:40:17.690231+07', 'Xã Lương Hòa Lạc', '28612', 'Xã');
INSERT INTO category."Wards" VALUES (28615, 822, 'system', '2023-07-26 08:40:17.690233+07', 'system', '2023-07-26 08:40:17.690233+07', 'Xã Thanh Bình', '28615', 'Xã');
INSERT INTO category."Wards" VALUES (28618, 822, 'system', '2023-07-26 08:40:17.690235+07', 'system', '2023-07-26 08:40:17.690235+07', 'Xã Quơn Long', '28618', 'Xã');
INSERT INTO category."Wards" VALUES (28621, 822, 'system', '2023-07-26 08:40:17.690237+07', 'system', '2023-07-26 08:40:17.690237+07', 'Xã Bình Phục Nhứt', '28621', 'Xã');
INSERT INTO category."Wards" VALUES (28624, 822, 'system', '2023-07-26 08:40:17.690239+07', 'system', '2023-07-26 08:40:17.690239+07', 'Xã Đăng Hưng Phước', '28624', 'Xã');
INSERT INTO category."Wards" VALUES (28627, 822, 'system', '2023-07-26 08:40:17.690241+07', 'system', '2023-07-26 08:40:17.690241+07', 'Xã Tân Thuận Bình', '28627', 'Xã');
INSERT INTO category."Wards" VALUES (28630, 822, 'system', '2023-07-26 08:40:17.690243+07', 'system', '2023-07-26 08:40:17.690243+07', 'Xã Song Bình', '28630', 'Xã');
INSERT INTO category."Wards" VALUES (28633, 822, 'system', '2023-07-26 08:40:17.690245+07', 'system', '2023-07-26 08:40:17.690245+07', 'Xã Bình Phan', '28633', 'Xã');
INSERT INTO category."Wards" VALUES (28636, 822, 'system', '2023-07-26 08:40:17.690247+07', 'system', '2023-07-26 08:40:17.690247+07', 'Xã Long Bình Điền', '28636', 'Xã');
INSERT INTO category."Wards" VALUES (28639, 822, 'system', '2023-07-26 08:40:17.690249+07', 'system', '2023-07-26 08:40:17.690249+07', 'Xã An Thạnh Thủy', '28639', 'Xã');
INSERT INTO category."Wards" VALUES (28642, 822, 'system', '2023-07-26 08:40:17.690251+07', 'system', '2023-07-26 08:40:17.690251+07', 'Xã Xuân Đông', '28642', 'Xã');
INSERT INTO category."Wards" VALUES (28645, 822, 'system', '2023-07-26 08:40:17.690252+07', 'system', '2023-07-26 08:40:17.690252+07', 'Xã Hòa Định', '28645', 'Xã');
INSERT INTO category."Wards" VALUES (28648, 822, 'system', '2023-07-26 08:40:17.690254+07', 'system', '2023-07-26 08:40:17.690254+07', 'Xã Bình Ninh', '28648', 'Xã');
INSERT INTO category."Wards" VALUES (28651, 823, 'system', '2023-07-26 08:40:17.690256+07', 'system', '2023-07-26 08:40:17.690256+07', 'Thị trấn Vĩnh Bình', '28651', 'Thị trấn');
INSERT INTO category."Wards" VALUES (28654, 823, 'system', '2023-07-26 08:40:17.690258+07', 'system', '2023-07-26 08:40:17.690258+07', 'Xã Đồng Sơn', '28654', 'Xã');
INSERT INTO category."Wards" VALUES (28657, 823, 'system', '2023-07-26 08:40:17.69026+07', 'system', '2023-07-26 08:40:17.69026+07', 'Xã Bình Phú', '28657', 'Xã');
INSERT INTO category."Wards" VALUES (28660, 823, 'system', '2023-07-26 08:40:17.690262+07', 'system', '2023-07-26 08:40:17.690262+07', 'Xã Đồng Thạnh', '28660', 'Xã');
INSERT INTO category."Wards" VALUES (28663, 823, 'system', '2023-07-26 08:40:17.690264+07', 'system', '2023-07-26 08:40:17.690264+07', 'Xã Thành Công', '28663', 'Xã');
INSERT INTO category."Wards" VALUES (28666, 823, 'system', '2023-07-26 08:40:17.690265+07', 'system', '2023-07-26 08:40:17.690265+07', 'Xã Bình Nhì', '28666', 'Xã');
INSERT INTO category."Wards" VALUES (28669, 823, 'system', '2023-07-26 08:40:17.690267+07', 'system', '2023-07-26 08:40:17.690267+07', 'Xã Yên Luông', '28669', 'Xã');
INSERT INTO category."Wards" VALUES (28672, 823, 'system', '2023-07-26 08:40:17.690269+07', 'system', '2023-07-26 08:40:17.690269+07', 'Xã Thạnh Trị', '28672', 'Xã');
INSERT INTO category."Wards" VALUES (28675, 823, 'system', '2023-07-26 08:40:17.690271+07', 'system', '2023-07-26 08:40:17.690271+07', 'Xã Thạnh Nhựt', '28675', 'Xã');
INSERT INTO category."Wards" VALUES (28678, 823, 'system', '2023-07-26 08:40:17.690273+07', 'system', '2023-07-26 08:40:17.690273+07', 'Xã Long Vĩnh', '28678', 'Xã');
INSERT INTO category."Wards" VALUES (28681, 823, 'system', '2023-07-26 08:40:17.690275+07', 'system', '2023-07-26 08:40:17.690275+07', 'Xã Bình Tân', '28681', 'Xã');
INSERT INTO category."Wards" VALUES (28684, 823, 'system', '2023-07-26 08:40:17.690277+07', 'system', '2023-07-26 08:40:17.690277+07', 'Xã Vĩnh Hựu', '28684', 'Xã');
INSERT INTO category."Wards" VALUES (28687, 823, 'system', '2023-07-26 08:40:17.690278+07', 'system', '2023-07-26 08:40:17.690278+07', 'Xã Long Bình', '28687', 'Xã');
INSERT INTO category."Wards" VALUES (28690, 825, 'system', '2023-07-26 08:40:17.690306+07', 'system', '2023-07-26 08:40:17.690306+07', 'Xã Tân Thới', '28690', 'Xã');
INSERT INTO category."Wards" VALUES (28693, 825, 'system', '2023-07-26 08:40:17.690308+07', 'system', '2023-07-26 08:40:17.690308+07', 'Xã Tân Phú', '28693', 'Xã');
INSERT INTO category."Wards" VALUES (28696, 825, 'system', '2023-07-26 08:40:17.69031+07', 'system', '2023-07-26 08:40:17.69031+07', 'Xã Phú Thạnh', '28696', 'Xã');
INSERT INTO category."Wards" VALUES (28699, 825, 'system', '2023-07-26 08:40:17.690312+07', 'system', '2023-07-26 08:40:17.690312+07', 'Xã Tân Thạnh', '28699', 'Xã');
INSERT INTO category."Wards" VALUES (28702, 824, 'system', '2023-07-26 08:40:17.69028+07', 'system', '2023-07-26 08:40:17.69028+07', 'Thị trấn Tân Hòa', '28702', 'Thị trấn');
INSERT INTO category."Wards" VALUES (28705, 824, 'system', '2023-07-26 08:40:17.690282+07', 'system', '2023-07-26 08:40:17.690282+07', 'Xã Tăng Hoà', '28705', 'Xã');
INSERT INTO category."Wards" VALUES (28708, 816, 'system', '2023-07-26 08:40:17.690029+07', 'system', '2023-07-26 08:40:17.690029+07', 'Xã Bình Đông', '28708', 'Xã');
INSERT INTO category."Wards" VALUES (28711, 824, 'system', '2023-07-26 08:40:17.690284+07', 'system', '2023-07-26 08:40:17.690284+07', 'Xã Tân Phước', '28711', 'Xã');
INSERT INTO category."Wards" VALUES (28714, 824, 'system', '2023-07-26 08:40:17.690286+07', 'system', '2023-07-26 08:40:17.690286+07', 'Xã Gia Thuận', '28714', 'Xã');
INSERT INTO category."Wards" VALUES (28717, 816, 'system', '2023-07-26 08:40:17.690031+07', 'system', '2023-07-26 08:40:17.690031+07', 'Xã Bình Xuân', '28717', 'Xã');
INSERT INTO category."Wards" VALUES (28720, 824, 'system', '2023-07-26 08:40:17.690288+07', 'system', '2023-07-26 08:40:17.690288+07', 'Thị trấn Vàm Láng', '28720', 'Thị trấn');
INSERT INTO category."Wards" VALUES (28723, 824, 'system', '2023-07-26 08:40:17.69029+07', 'system', '2023-07-26 08:40:17.69029+07', 'Xã Tân Tây', '28723', 'Xã');
INSERT INTO category."Wards" VALUES (28726, 824, 'system', '2023-07-26 08:40:17.690292+07', 'system', '2023-07-26 08:40:17.690292+07', 'Xã Kiểng Phước', '28726', 'Xã');
INSERT INTO category."Wards" VALUES (28729, 816, 'system', '2023-07-26 08:40:17.690033+07', 'system', '2023-07-26 08:40:17.690033+07', 'Xã Tân Trung', '28729', 'Xã');
INSERT INTO category."Wards" VALUES (28732, 824, 'system', '2023-07-26 08:40:17.690295+07', 'system', '2023-07-26 08:40:17.690295+07', 'Xã Tân Đông', '28732', 'Xã');
INSERT INTO category."Wards" VALUES (28735, 824, 'system', '2023-07-26 08:40:17.690297+07', 'system', '2023-07-26 08:40:17.690297+07', 'Xã Bình Ân', '28735', 'Xã');
INSERT INTO category."Wards" VALUES (28738, 824, 'system', '2023-07-26 08:40:17.690298+07', 'system', '2023-07-26 08:40:17.690298+07', 'Xã Tân Điền', '28738', 'Xã');
INSERT INTO category."Wards" VALUES (28741, 824, 'system', '2023-07-26 08:40:17.6903+07', 'system', '2023-07-26 08:40:17.6903+07', 'Xã Bình Nghị', '28741', 'Xã');
INSERT INTO category."Wards" VALUES (28744, 824, 'system', '2023-07-26 08:40:17.690302+07', 'system', '2023-07-26 08:40:17.690302+07', 'Xã Phước Trung', '28744', 'Xã');
INSERT INTO category."Wards" VALUES (28747, 824, 'system', '2023-07-26 08:40:17.690304+07', 'system', '2023-07-26 08:40:17.690304+07', 'Xã Tân Thành', '28747', 'Xã');
INSERT INTO category."Wards" VALUES (28750, 825, 'system', '2023-07-26 08:40:17.690313+07', 'system', '2023-07-26 08:40:17.690313+07', 'Xã Phú Đông', '28750', 'Xã');
INSERT INTO category."Wards" VALUES (28753, 825, 'system', '2023-07-26 08:40:17.690315+07', 'system', '2023-07-26 08:40:17.690315+07', 'Xã Phú Tân', '28753', 'Xã');
INSERT INTO category."Wards" VALUES (28756, 829, 'system', '2023-07-26 08:40:17.690317+07', 'system', '2023-07-26 08:40:17.690317+07', 'Phường Phú Khương', '28756', 'Phường');
INSERT INTO category."Wards" VALUES (28757, 829, 'system', '2023-07-26 08:40:17.690319+07', 'system', '2023-07-26 08:40:17.690319+07', 'Phường Phú Tân', '28757', 'Phường');
INSERT INTO category."Wards" VALUES (28759, 829, 'system', '2023-07-26 08:40:17.690321+07', 'system', '2023-07-26 08:40:17.690321+07', 'Phường 8', '28759', 'Phường');
INSERT INTO category."Wards" VALUES (28762, 829, 'system', '2023-07-26 08:40:17.690323+07', 'system', '2023-07-26 08:40:17.690323+07', 'Phường 6', '28762', 'Phường');
INSERT INTO category."Wards" VALUES (28765, 829, 'system', '2023-07-26 08:40:17.690325+07', 'system', '2023-07-26 08:40:17.690325+07', 'Phường 4', '28765', 'Phường');
INSERT INTO category."Wards" VALUES (28768, 829, 'system', '2023-07-26 08:40:17.690327+07', 'system', '2023-07-26 08:40:17.690327+07', 'Phường 5', '28768', 'Phường');
INSERT INTO category."Wards" VALUES (28777, 829, 'system', '2023-07-26 08:40:17.690329+07', 'system', '2023-07-26 08:40:17.690329+07', 'Phường An Hội', '28777', 'Phường');
INSERT INTO category."Wards" VALUES (28780, 829, 'system', '2023-07-26 08:40:17.690331+07', 'system', '2023-07-26 08:40:17.690331+07', 'Phường 7', '28780', 'Phường');
INSERT INTO category."Wards" VALUES (28783, 829, 'system', '2023-07-26 08:40:17.690333+07', 'system', '2023-07-26 08:40:17.690333+07', 'Xã Sơn Đông', '28783', 'Xã');
INSERT INTO category."Wards" VALUES (28786, 829, 'system', '2023-07-26 08:40:17.690334+07', 'system', '2023-07-26 08:40:17.690334+07', 'Xã Phú Hưng', '28786', 'Xã');
INSERT INTO category."Wards" VALUES (28789, 829, 'system', '2023-07-26 08:40:17.690336+07', 'system', '2023-07-26 08:40:17.690336+07', 'Xã Bình Phú', '28789', 'Xã');
INSERT INTO category."Wards" VALUES (28792, 829, 'system', '2023-07-26 08:40:17.690338+07', 'system', '2023-07-26 08:40:17.690338+07', 'Xã Mỹ Thạnh An', '28792', 'Xã');
INSERT INTO category."Wards" VALUES (28795, 829, 'system', '2023-07-26 08:40:17.69034+07', 'system', '2023-07-26 08:40:17.69034+07', 'Xã Nhơn Thạnh', '28795', 'Xã');
INSERT INTO category."Wards" VALUES (28798, 829, 'system', '2023-07-26 08:40:17.690342+07', 'system', '2023-07-26 08:40:17.690342+07', 'Xã Phú Nhuận', '28798', 'Xã');
INSERT INTO category."Wards" VALUES (28801, 831, 'system', '2023-07-26 08:40:17.690344+07', 'system', '2023-07-26 08:40:17.690344+07', 'Thị trấn Châu Thành', '28801', 'Thị trấn');
INSERT INTO category."Wards" VALUES (28804, 831, 'system', '2023-07-26 08:40:17.690346+07', 'system', '2023-07-26 08:40:17.690346+07', 'Xã Tân Thạch', '28804', 'Xã');
INSERT INTO category."Wards" VALUES (28807, 831, 'system', '2023-07-26 08:40:17.690348+07', 'system', '2023-07-26 08:40:17.690348+07', 'Xã Qưới Sơn', '28807', 'Xã');
INSERT INTO category."Wards" VALUES (28810, 831, 'system', '2023-07-26 08:40:17.69035+07', 'system', '2023-07-26 08:40:17.69035+07', 'Xã An Khánh', '28810', 'Xã');
INSERT INTO category."Wards" VALUES (28813, 831, 'system', '2023-07-26 08:40:17.690351+07', 'system', '2023-07-26 08:40:17.690351+07', 'Xã Giao Long', '28813', 'Xã');
INSERT INTO category."Wards" VALUES (28819, 831, 'system', '2023-07-26 08:40:17.690353+07', 'system', '2023-07-26 08:40:17.690353+07', 'Xã Phú Túc', '28819', 'Xã');
INSERT INTO category."Wards" VALUES (28822, 831, 'system', '2023-07-26 08:40:17.690355+07', 'system', '2023-07-26 08:40:17.690355+07', 'Xã Phú Đức', '28822', 'Xã');
INSERT INTO category."Wards" VALUES (28825, 831, 'system', '2023-07-26 08:40:17.690357+07', 'system', '2023-07-26 08:40:17.690357+07', 'Xã Phú An Hòa', '28825', 'Xã');
INSERT INTO category."Wards" VALUES (28828, 831, 'system', '2023-07-26 08:40:17.690359+07', 'system', '2023-07-26 08:40:17.690359+07', 'Xã An Phước', '28828', 'Xã');
INSERT INTO category."Wards" VALUES (28831, 831, 'system', '2023-07-26 08:40:17.69036+07', 'system', '2023-07-26 08:40:17.69036+07', 'Xã Tam Phước', '28831', 'Xã');
INSERT INTO category."Wards" VALUES (28834, 831, 'system', '2023-07-26 08:40:17.690363+07', 'system', '2023-07-26 08:40:17.690363+07', 'Xã Thành Triệu', '28834', 'Xã');
INSERT INTO category."Wards" VALUES (28837, 831, 'system', '2023-07-26 08:40:17.690365+07', 'system', '2023-07-26 08:40:17.690365+07', 'Xã Tường Đa', '28837', 'Xã');
INSERT INTO category."Wards" VALUES (28840, 831, 'system', '2023-07-26 08:40:17.690367+07', 'system', '2023-07-26 08:40:17.690367+07', 'Xã Tân Phú', '28840', 'Xã');
INSERT INTO category."Wards" VALUES (28843, 831, 'system', '2023-07-26 08:40:17.690369+07', 'system', '2023-07-26 08:40:17.690369+07', 'Xã Quới Thành', '28843', 'Xã');
INSERT INTO category."Wards" VALUES (28846, 831, 'system', '2023-07-26 08:40:17.690371+07', 'system', '2023-07-26 08:40:17.690371+07', 'Xã Phước Thạnh', '28846', 'Xã');
INSERT INTO category."Wards" VALUES (28849, 831, 'system', '2023-07-26 08:40:17.690373+07', 'system', '2023-07-26 08:40:17.690373+07', 'Xã An Hóa', '28849', 'Xã');
INSERT INTO category."Wards" VALUES (28852, 831, 'system', '2023-07-26 08:40:17.690375+07', 'system', '2023-07-26 08:40:17.690375+07', 'Xã Tiên Long', '28852', 'Xã');
INSERT INTO category."Wards" VALUES (28855, 831, 'system', '2023-07-26 08:40:17.690377+07', 'system', '2023-07-26 08:40:17.690377+07', 'Xã An Hiệp', '28855', 'Xã');
INSERT INTO category."Wards" VALUES (28858, 831, 'system', '2023-07-26 08:40:17.690379+07', 'system', '2023-07-26 08:40:17.690379+07', 'Xã Hữu Định', '28858', 'Xã');
INSERT INTO category."Wards" VALUES (28861, 831, 'system', '2023-07-26 08:40:17.690381+07', 'system', '2023-07-26 08:40:17.690381+07', 'Xã Tiên Thủy', '28861', 'Xã');
INSERT INTO category."Wards" VALUES (28864, 831, 'system', '2023-07-26 08:40:17.690383+07', 'system', '2023-07-26 08:40:17.690383+07', 'Xã Sơn Hòa', '28864', 'Xã');
INSERT INTO category."Wards" VALUES (28870, 832, 'system', '2023-07-26 08:40:17.690384+07', 'system', '2023-07-26 08:40:17.690384+07', 'Thị trấn Chợ Lách', '28870', 'Thị trấn');
INSERT INTO category."Wards" VALUES (28873, 832, 'system', '2023-07-26 08:40:17.690386+07', 'system', '2023-07-26 08:40:17.690387+07', 'Xã Phú Phụng', '28873', 'Xã');
INSERT INTO category."Wards" VALUES (28876, 832, 'system', '2023-07-26 08:40:17.690388+07', 'system', '2023-07-26 08:40:17.690388+07', 'Xã Sơn Định', '28876', 'Xã');
INSERT INTO category."Wards" VALUES (28879, 832, 'system', '2023-07-26 08:40:17.69039+07', 'system', '2023-07-26 08:40:17.69039+07', 'Xã Vĩnh Bình', '28879', 'Xã');
INSERT INTO category."Wards" VALUES (28882, 832, 'system', '2023-07-26 08:40:17.690392+07', 'system', '2023-07-26 08:40:17.690392+07', 'Xã Hòa Nghĩa', '28882', 'Xã');
INSERT INTO category."Wards" VALUES (28885, 832, 'system', '2023-07-26 08:40:17.690394+07', 'system', '2023-07-26 08:40:17.690394+07', 'Xã Long Thới', '28885', 'Xã');
INSERT INTO category."Wards" VALUES (28888, 832, 'system', '2023-07-26 08:40:17.690396+07', 'system', '2023-07-26 08:40:17.690396+07', 'Xã Phú Sơn', '28888', 'Xã');
INSERT INTO category."Wards" VALUES (28889, 838, 'system', '2023-07-26 08:40:17.690609+07', 'system', '2023-07-26 08:40:17.690609+07', 'Xã Phú Mỹ', '28889', 'Xã');
INSERT INTO category."Wards" VALUES (28891, 832, 'system', '2023-07-26 08:40:17.690397+07', 'system', '2023-07-26 08:40:17.690397+07', 'Xã Tân Thiềng', '28891', 'Xã');
INSERT INTO category."Wards" VALUES (28894, 832, 'system', '2023-07-26 08:40:17.690399+07', 'system', '2023-07-26 08:40:17.690399+07', 'Xã Vĩnh Thành', '28894', 'Xã');
INSERT INTO category."Wards" VALUES (28897, 832, 'system', '2023-07-26 08:40:17.690401+07', 'system', '2023-07-26 08:40:17.690401+07', 'Xã Vĩnh Hòa', '28897', 'Xã');
INSERT INTO category."Wards" VALUES (28900, 832, 'system', '2023-07-26 08:40:17.690403+07', 'system', '2023-07-26 08:40:17.690403+07', 'Xã Hưng Khánh Trung B', '28900', 'Xã');
INSERT INTO category."Wards" VALUES (28901, 838, 'system', '2023-07-26 08:40:17.690611+07', 'system', '2023-07-26 08:40:17.690611+07', 'Xã Hưng Khánh Trung A', '28901', 'Xã');
INSERT INTO category."Wards" VALUES (28903, 833, 'system', '2023-07-26 08:40:17.690405+07', 'system', '2023-07-26 08:40:17.690405+07', 'Thị trấn Mỏ Cày', '28903', 'Thị trấn');
INSERT INTO category."Wards" VALUES (28906, 838, 'system', '2023-07-26 08:40:17.690613+07', 'system', '2023-07-26 08:40:17.690613+07', 'Xã Thanh Tân', '28906', 'Xã');
INSERT INTO category."Wards" VALUES (28909, 838, 'system', '2023-07-26 08:40:17.690615+07', 'system', '2023-07-26 08:40:17.690615+07', 'Xã Thạnh Ngãi', '28909', 'Xã');
INSERT INTO category."Wards" VALUES (28912, 838, 'system', '2023-07-26 08:40:17.690617+07', 'system', '2023-07-26 08:40:17.690617+07', 'Xã Tân Phú Tây', '28912', 'Xã');
INSERT INTO category."Wards" VALUES (28915, 838, 'system', '2023-07-26 08:40:17.690619+07', 'system', '2023-07-26 08:40:17.690619+07', 'Xã Phước Mỹ Trung', '28915', 'Xã');
INSERT INTO category."Wards" VALUES (28918, 838, 'system', '2023-07-26 08:40:17.69062+07', 'system', '2023-07-26 08:40:17.69062+07', 'Xã Tân Thành Bình', '28918', 'Xã');
INSERT INTO category."Wards" VALUES (28921, 838, 'system', '2023-07-26 08:40:17.690622+07', 'system', '2023-07-26 08:40:17.690622+07', 'Xã Thành An', '28921', 'Xã');
INSERT INTO category."Wards" VALUES (28924, 838, 'system', '2023-07-26 08:40:17.690624+07', 'system', '2023-07-26 08:40:17.690624+07', 'Xã Hòa Lộc', '28924', 'Xã');
INSERT INTO category."Wards" VALUES (28927, 838, 'system', '2023-07-26 08:40:17.690626+07', 'system', '2023-07-26 08:40:17.690626+07', 'Xã Tân Thanh Tây', '28927', 'Xã');
INSERT INTO category."Wards" VALUES (28930, 833, 'system', '2023-07-26 08:40:17.690407+07', 'system', '2023-07-26 08:40:17.690407+07', 'Xã Định Thủy', '28930', 'Xã');
INSERT INTO category."Wards" VALUES (28933, 838, 'system', '2023-07-26 08:40:17.690628+07', 'system', '2023-07-26 08:40:17.690628+07', 'Xã Tân Bình', '28933', 'Xã');
INSERT INTO category."Wards" VALUES (28936, 838, 'system', '2023-07-26 08:40:17.69063+07', 'system', '2023-07-26 08:40:17.69063+07', 'Xã Nhuận Phú Tân', '28936', 'Xã');
INSERT INTO category."Wards" VALUES (28939, 833, 'system', '2023-07-26 08:40:17.690409+07', 'system', '2023-07-26 08:40:17.690409+07', 'Xã Đa Phước Hội', '28939', 'Xã');
INSERT INTO category."Wards" VALUES (28940, 833, 'system', '2023-07-26 08:40:17.690411+07', 'system', '2023-07-26 08:40:17.690411+07', 'Xã Tân Hội', '28940', 'Xã');
INSERT INTO category."Wards" VALUES (28942, 833, 'system', '2023-07-26 08:40:17.690413+07', 'system', '2023-07-26 08:40:17.690413+07', 'Xã Phước Hiệp', '28942', 'Xã');
INSERT INTO category."Wards" VALUES (28945, 833, 'system', '2023-07-26 08:40:17.690415+07', 'system', '2023-07-26 08:40:17.690415+07', 'Xã Bình Khánh ', '28945', 'Xã');
INSERT INTO category."Wards" VALUES (28948, 838, 'system', '2023-07-26 08:40:17.690632+07', 'system', '2023-07-26 08:40:17.690632+07', 'Xã Khánh Thạnh Tân', '28948', 'Xã');
INSERT INTO category."Wards" VALUES (28951, 833, 'system', '2023-07-26 08:40:17.690417+07', 'system', '2023-07-26 08:40:17.690417+07', 'Xã An Thạnh', '28951', 'Xã');
INSERT INTO category."Wards" VALUES (28957, 833, 'system', '2023-07-26 08:40:17.690419+07', 'system', '2023-07-26 08:40:17.690419+07', 'Xã An Định', '28957', 'Xã');
INSERT INTO category."Wards" VALUES (28960, 833, 'system', '2023-07-26 08:40:17.69042+07', 'system', '2023-07-26 08:40:17.69042+07', 'Xã Thành Thới B', '28960', 'Xã');
INSERT INTO category."Wards" VALUES (28963, 833, 'system', '2023-07-26 08:40:17.690422+07', 'system', '2023-07-26 08:40:17.690423+07', 'Xã Tân Trung', '28963', 'Xã');
INSERT INTO category."Wards" VALUES (28966, 833, 'system', '2023-07-26 08:40:17.690424+07', 'system', '2023-07-26 08:40:17.690424+07', 'Xã An Thới', '28966', 'Xã');
INSERT INTO category."Wards" VALUES (28969, 833, 'system', '2023-07-26 08:40:17.690426+07', 'system', '2023-07-26 08:40:17.690426+07', 'Xã Thành Thới A', '28969', 'Xã');
INSERT INTO category."Wards" VALUES (28972, 833, 'system', '2023-07-26 08:40:17.690428+07', 'system', '2023-07-26 08:40:17.690428+07', 'Xã Minh Đức', '28972', 'Xã');
INSERT INTO category."Wards" VALUES (28975, 833, 'system', '2023-07-26 08:40:17.69043+07', 'system', '2023-07-26 08:40:17.69043+07', 'Xã Ngãi Đăng', '28975', 'Xã');
INSERT INTO category."Wards" VALUES (28978, 833, 'system', '2023-07-26 08:40:17.690433+07', 'system', '2023-07-26 08:40:17.690433+07', 'Xã Cẩm Sơn', '28978', 'Xã');
INSERT INTO category."Wards" VALUES (28981, 833, 'system', '2023-07-26 08:40:17.690434+07', 'system', '2023-07-26 08:40:17.690434+07', 'Xã Hương Mỹ', '28981', 'Xã');
INSERT INTO category."Wards" VALUES (28984, 834, 'system', '2023-07-26 08:40:17.690436+07', 'system', '2023-07-26 08:40:17.690436+07', 'Thị trấn Giồng Trôm', '28984', 'Thị trấn');
INSERT INTO category."Wards" VALUES (28987, 834, 'system', '2023-07-26 08:40:17.690438+07', 'system', '2023-07-26 08:40:17.690438+07', 'Xã Phong Nẫm', '28987', 'Xã');
INSERT INTO category."Wards" VALUES (28993, 834, 'system', '2023-07-26 08:40:17.69044+07', 'system', '2023-07-26 08:40:17.69044+07', 'Xã Mỹ Thạnh', '28993', 'Xã');
INSERT INTO category."Wards" VALUES (28996, 834, 'system', '2023-07-26 08:40:17.690442+07', 'system', '2023-07-26 08:40:17.690442+07', 'Xã Châu Hòa', '28996', 'Xã');
INSERT INTO category."Wards" VALUES (28999, 834, 'system', '2023-07-26 08:40:17.690444+07', 'system', '2023-07-26 08:40:17.690444+07', 'Xã Lương Hòa', '28999', 'Xã');
INSERT INTO category."Wards" VALUES (29002, 834, 'system', '2023-07-26 08:40:17.690446+07', 'system', '2023-07-26 08:40:17.690446+07', 'Xã Lương Quới', '29002', 'Xã');
INSERT INTO category."Wards" VALUES (29005, 834, 'system', '2023-07-26 08:40:17.690448+07', 'system', '2023-07-26 08:40:17.690448+07', 'Xã Lương Phú', '29005', 'Xã');
INSERT INTO category."Wards" VALUES (29008, 834, 'system', '2023-07-26 08:40:17.690449+07', 'system', '2023-07-26 08:40:17.690449+07', 'Xã Châu Bình', '29008', 'Xã');
INSERT INTO category."Wards" VALUES (29011, 834, 'system', '2023-07-26 08:40:17.690451+07', 'system', '2023-07-26 08:40:17.690451+07', 'Xã Thuận Điền', '29011', 'Xã');
INSERT INTO category."Wards" VALUES (29014, 834, 'system', '2023-07-26 08:40:17.690453+07', 'system', '2023-07-26 08:40:17.690453+07', 'Xã Sơn Phú', '29014', 'Xã');
INSERT INTO category."Wards" VALUES (29017, 834, 'system', '2023-07-26 08:40:17.690455+07', 'system', '2023-07-26 08:40:17.690455+07', 'Xã Bình Hoà', '29017', 'Xã');
INSERT INTO category."Wards" VALUES (29020, 834, 'system', '2023-07-26 08:40:17.690457+07', 'system', '2023-07-26 08:40:17.690457+07', 'Xã Phước Long', '29020', 'Xã');
INSERT INTO category."Wards" VALUES (29023, 834, 'system', '2023-07-26 08:40:17.690459+07', 'system', '2023-07-26 08:40:17.690459+07', 'Xã Hưng Phong', '29023', 'Xã');
INSERT INTO category."Wards" VALUES (29026, 834, 'system', '2023-07-26 08:40:17.690461+07', 'system', '2023-07-26 08:40:17.690461+07', 'Xã Long Mỹ', '29026', 'Xã');
INSERT INTO category."Wards" VALUES (29029, 834, 'system', '2023-07-26 08:40:17.690462+07', 'system', '2023-07-26 08:40:17.690463+07', 'Xã Tân Hào', '29029', 'Xã');
INSERT INTO category."Wards" VALUES (29032, 834, 'system', '2023-07-26 08:40:17.690464+07', 'system', '2023-07-26 08:40:17.690464+07', 'Xã Bình Thành', '29032', 'Xã');
INSERT INTO category."Wards" VALUES (29035, 834, 'system', '2023-07-26 08:40:17.690466+07', 'system', '2023-07-26 08:40:17.690466+07', 'Xã Tân Thanh', '29035', 'Xã');
INSERT INTO category."Wards" VALUES (29038, 834, 'system', '2023-07-26 08:40:17.690468+07', 'system', '2023-07-26 08:40:17.690468+07', 'Xã Tân Lợi Thạnh', '29038', 'Xã');
INSERT INTO category."Wards" VALUES (29041, 834, 'system', '2023-07-26 08:40:17.69047+07', 'system', '2023-07-26 08:40:17.69047+07', 'Xã Thạnh Phú Đông', '29041', 'Xã');
INSERT INTO category."Wards" VALUES (29044, 834, 'system', '2023-07-26 08:40:17.690472+07', 'system', '2023-07-26 08:40:17.690472+07', 'Xã Hưng Nhượng', '29044', 'Xã');
INSERT INTO category."Wards" VALUES (29047, 834, 'system', '2023-07-26 08:40:17.690474+07', 'system', '2023-07-26 08:40:17.690474+07', 'Xã Hưng Lễ', '29047', 'Xã');
INSERT INTO category."Wards" VALUES (29050, 835, 'system', '2023-07-26 08:40:17.690476+07', 'system', '2023-07-26 08:40:17.690476+07', 'Thị trấn Bình Đại', '29050', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29053, 835, 'system', '2023-07-26 08:40:17.690478+07', 'system', '2023-07-26 08:40:17.690478+07', 'Xã Tam Hiệp', '29053', 'Xã');
INSERT INTO category."Wards" VALUES (29056, 835, 'system', '2023-07-26 08:40:17.69048+07', 'system', '2023-07-26 08:40:17.69048+07', 'Xã Long Định', '29056', 'Xã');
INSERT INTO category."Wards" VALUES (29059, 835, 'system', '2023-07-26 08:40:17.690482+07', 'system', '2023-07-26 08:40:17.690482+07', 'Xã Long Hòa', '29059', 'Xã');
INSERT INTO category."Wards" VALUES (29062, 835, 'system', '2023-07-26 08:40:17.690484+07', 'system', '2023-07-26 08:40:17.690484+07', 'Xã Phú Thuận', '29062', 'Xã');
INSERT INTO category."Wards" VALUES (29065, 835, 'system', '2023-07-26 08:40:17.690485+07', 'system', '2023-07-26 08:40:17.690485+07', 'Xã Vang Quới Tây', '29065', 'Xã');
INSERT INTO category."Wards" VALUES (29068, 835, 'system', '2023-07-26 08:40:17.690487+07', 'system', '2023-07-26 08:40:17.690487+07', 'Xã Vang Quới Đông', '29068', 'Xã');
INSERT INTO category."Wards" VALUES (29071, 835, 'system', '2023-07-26 08:40:17.690489+07', 'system', '2023-07-26 08:40:17.690489+07', 'Xã Châu Hưng', '29071', 'Xã');
INSERT INTO category."Wards" VALUES (29074, 835, 'system', '2023-07-26 08:40:17.690498+07', 'system', '2023-07-26 08:40:17.690498+07', 'Xã Phú Vang', '29074', 'Xã');
INSERT INTO category."Wards" VALUES (29077, 835, 'system', '2023-07-26 08:40:17.6905+07', 'system', '2023-07-26 08:40:17.6905+07', 'Xã Lộc Thuận', '29077', 'Xã');
INSERT INTO category."Wards" VALUES (29080, 835, 'system', '2023-07-26 08:40:17.690503+07', 'system', '2023-07-26 08:40:17.690503+07', 'Xã Định Trung', '29080', 'Xã');
INSERT INTO category."Wards" VALUES (29083, 835, 'system', '2023-07-26 08:40:17.690504+07', 'system', '2023-07-26 08:40:17.690504+07', 'Xã Thới Lai', '29083', 'Xã');
INSERT INTO category."Wards" VALUES (29086, 835, 'system', '2023-07-26 08:40:17.690506+07', 'system', '2023-07-26 08:40:17.690506+07', 'Xã Bình Thới', '29086', 'Xã');
INSERT INTO category."Wards" VALUES (29089, 835, 'system', '2023-07-26 08:40:17.69051+07', 'system', '2023-07-26 08:40:17.69051+07', 'Xã Phú Long', '29089', 'Xã');
INSERT INTO category."Wards" VALUES (29092, 835, 'system', '2023-07-26 08:40:17.690513+07', 'system', '2023-07-26 08:40:17.690513+07', 'Xã Bình Thắng', '29092', 'Xã');
INSERT INTO category."Wards" VALUES (29095, 835, 'system', '2023-07-26 08:40:17.690516+07', 'system', '2023-07-26 08:40:17.690516+07', 'Xã Thạnh Trị', '29095', 'Xã');
INSERT INTO category."Wards" VALUES (29098, 835, 'system', '2023-07-26 08:40:17.69052+07', 'system', '2023-07-26 08:40:17.69052+07', 'Xã Đại Hòa Lộc', '29098', 'Xã');
INSERT INTO category."Wards" VALUES (29101, 835, 'system', '2023-07-26 08:40:17.690523+07', 'system', '2023-07-26 08:40:17.690523+07', 'Xã Thừa Đức', '29101', 'Xã');
INSERT INTO category."Wards" VALUES (29104, 835, 'system', '2023-07-26 08:40:17.690526+07', 'system', '2023-07-26 08:40:17.690526+07', 'Xã Thạnh Phước', '29104', 'Xã');
INSERT INTO category."Wards" VALUES (29107, 835, 'system', '2023-07-26 08:40:17.69053+07', 'system', '2023-07-26 08:40:17.69053+07', 'Xã Thới Thuận', '29107', 'Xã');
INSERT INTO category."Wards" VALUES (29110, 836, 'system', '2023-07-26 08:40:17.690532+07', 'system', '2023-07-26 08:40:17.690532+07', 'Thị trấn Ba Tri', '29110', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29113, 836, 'system', '2023-07-26 08:40:17.690534+07', 'system', '2023-07-26 08:40:17.690534+07', 'Xã Tân Mỹ', '29113', 'Xã');
INSERT INTO category."Wards" VALUES (29116, 836, 'system', '2023-07-26 08:40:17.690535+07', 'system', '2023-07-26 08:40:17.690536+07', 'Xã Mỹ Hòa', '29116', 'Xã');
INSERT INTO category."Wards" VALUES (29119, 836, 'system', '2023-07-26 08:40:17.690537+07', 'system', '2023-07-26 08:40:17.690537+07', 'Xã Tân Xuân', '29119', 'Xã');
INSERT INTO category."Wards" VALUES (29122, 836, 'system', '2023-07-26 08:40:17.690539+07', 'system', '2023-07-26 08:40:17.690539+07', 'Xã Mỹ Chánh', '29122', 'Xã');
INSERT INTO category."Wards" VALUES (29125, 836, 'system', '2023-07-26 08:40:17.690541+07', 'system', '2023-07-26 08:40:17.690541+07', 'Xã Bảo Thạnh', '29125', 'Xã');
INSERT INTO category."Wards" VALUES (29128, 836, 'system', '2023-07-26 08:40:17.690543+07', 'system', '2023-07-26 08:40:17.690543+07', 'Xã An Phú Trung', '29128', 'Xã');
INSERT INTO category."Wards" VALUES (29131, 836, 'system', '2023-07-26 08:40:17.690545+07', 'system', '2023-07-26 08:40:17.690545+07', 'Xã Mỹ Thạnh', '29131', 'Xã');
INSERT INTO category."Wards" VALUES (29134, 836, 'system', '2023-07-26 08:40:17.690547+07', 'system', '2023-07-26 08:40:17.690547+07', 'Xã Mỹ Nhơn', '29134', 'Xã');
INSERT INTO category."Wards" VALUES (29137, 836, 'system', '2023-07-26 08:40:17.690549+07', 'system', '2023-07-26 08:40:17.690549+07', 'Xã Phước Ngãi', '29137', 'Xã');
INSERT INTO category."Wards" VALUES (29143, 836, 'system', '2023-07-26 08:40:17.69055+07', 'system', '2023-07-26 08:40:17.69055+07', 'Xã An Ngãi Trung', '29143', 'Xã');
INSERT INTO category."Wards" VALUES (29146, 836, 'system', '2023-07-26 08:40:17.690552+07', 'system', '2023-07-26 08:40:17.690552+07', 'Xã Phú Lễ', '29146', 'Xã');
INSERT INTO category."Wards" VALUES (29149, 836, 'system', '2023-07-26 08:40:17.690554+07', 'system', '2023-07-26 08:40:17.690554+07', 'Xã An Bình Tây', '29149', 'Xã');
INSERT INTO category."Wards" VALUES (29152, 836, 'system', '2023-07-26 08:40:17.690556+07', 'system', '2023-07-26 08:40:17.690556+07', 'Xã Bảo Thuận', '29152', 'Xã');
INSERT INTO category."Wards" VALUES (29155, 836, 'system', '2023-07-26 08:40:17.690558+07', 'system', '2023-07-26 08:40:17.690558+07', 'Xã Tân Hưng', '29155', 'Xã');
INSERT INTO category."Wards" VALUES (29158, 836, 'system', '2023-07-26 08:40:17.69056+07', 'system', '2023-07-26 08:40:17.69056+07', 'Xã An Ngãi Tây', '29158', 'Xã');
INSERT INTO category."Wards" VALUES (29161, 836, 'system', '2023-07-26 08:40:17.690562+07', 'system', '2023-07-26 08:40:17.690562+07', 'Xã An Hiệp', '29161', 'Xã');
INSERT INTO category."Wards" VALUES (29164, 836, 'system', '2023-07-26 08:40:17.690563+07', 'system', '2023-07-26 08:40:17.690563+07', 'Xã Vĩnh Hòa', '29164', 'Xã');
INSERT INTO category."Wards" VALUES (29167, 836, 'system', '2023-07-26 08:40:17.690565+07', 'system', '2023-07-26 08:40:17.690565+07', 'Xã Tân Thủy', '29167', 'Xã');
INSERT INTO category."Wards" VALUES (29170, 836, 'system', '2023-07-26 08:40:17.690567+07', 'system', '2023-07-26 08:40:17.690567+07', 'Xã Vĩnh An', '29170', 'Xã');
INSERT INTO category."Wards" VALUES (29173, 836, 'system', '2023-07-26 08:40:17.690569+07', 'system', '2023-07-26 08:40:17.690569+07', 'Xã An Đức', '29173', 'Xã');
INSERT INTO category."Wards" VALUES (29176, 836, 'system', '2023-07-26 08:40:17.690571+07', 'system', '2023-07-26 08:40:17.690571+07', 'Xã An Hòa Tây', '29176', 'Xã');
INSERT INTO category."Wards" VALUES (29179, 836, 'system', '2023-07-26 08:40:17.690573+07', 'system', '2023-07-26 08:40:17.690573+07', 'Xã An Thủy', '29179', 'Xã');
INSERT INTO category."Wards" VALUES (29182, 837, 'system', '2023-07-26 08:40:17.690574+07', 'system', '2023-07-26 08:40:17.690575+07', 'Thị trấn Thạnh Phú', '29182', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29185, 837, 'system', '2023-07-26 08:40:17.690577+07', 'system', '2023-07-26 08:40:17.690577+07', 'Xã Phú Khánh', '29185', 'Xã');
INSERT INTO category."Wards" VALUES (29188, 837, 'system', '2023-07-26 08:40:17.690578+07', 'system', '2023-07-26 08:40:17.690578+07', 'Xã Đại Điền', '29188', 'Xã');
INSERT INTO category."Wards" VALUES (29191, 837, 'system', '2023-07-26 08:40:17.69058+07', 'system', '2023-07-26 08:40:17.69058+07', 'Xã Quới Điền', '29191', 'Xã');
INSERT INTO category."Wards" VALUES (29194, 837, 'system', '2023-07-26 08:40:17.690582+07', 'system', '2023-07-26 08:40:17.690582+07', 'Xã Tân Phong', '29194', 'Xã');
INSERT INTO category."Wards" VALUES (29197, 837, 'system', '2023-07-26 08:40:17.690584+07', 'system', '2023-07-26 08:40:17.690584+07', 'Xã Mỹ Hưng', '29197', 'Xã');
INSERT INTO category."Wards" VALUES (29200, 837, 'system', '2023-07-26 08:40:17.690586+07', 'system', '2023-07-26 08:40:17.690586+07', 'Xã An Thạnh', '29200', 'Xã');
INSERT INTO category."Wards" VALUES (29203, 837, 'system', '2023-07-26 08:40:17.690589+07', 'system', '2023-07-26 08:40:17.690589+07', 'Xã Thới Thạnh', '29203', 'Xã');
INSERT INTO category."Wards" VALUES (29206, 837, 'system', '2023-07-26 08:40:17.690591+07', 'system', '2023-07-26 08:40:17.690591+07', 'Xã Hòa Lợi', '29206', 'Xã');
INSERT INTO category."Wards" VALUES (29209, 837, 'system', '2023-07-26 08:40:17.690593+07', 'system', '2023-07-26 08:40:17.690593+07', 'Xã An Điền', '29209', 'Xã');
INSERT INTO category."Wards" VALUES (29212, 837, 'system', '2023-07-26 08:40:17.690594+07', 'system', '2023-07-26 08:40:17.690594+07', 'Xã Bình Thạnh', '29212', 'Xã');
INSERT INTO category."Wards" VALUES (29215, 837, 'system', '2023-07-26 08:40:17.690596+07', 'system', '2023-07-26 08:40:17.690596+07', 'Xã An Thuận', '29215', 'Xã');
INSERT INTO category."Wards" VALUES (29218, 837, 'system', '2023-07-26 08:40:17.690598+07', 'system', '2023-07-26 08:40:17.690598+07', 'Xã An Quy', '29218', 'Xã');
INSERT INTO category."Wards" VALUES (29221, 837, 'system', '2023-07-26 08:40:17.6906+07', 'system', '2023-07-26 08:40:17.6906+07', 'Xã Thạnh Hải', '29221', 'Xã');
INSERT INTO category."Wards" VALUES (29224, 837, 'system', '2023-07-26 08:40:17.690601+07', 'system', '2023-07-26 08:40:17.690601+07', 'Xã An Nhơn', '29224', 'Xã');
INSERT INTO category."Wards" VALUES (29227, 837, 'system', '2023-07-26 08:40:17.690603+07', 'system', '2023-07-26 08:40:17.690603+07', 'Xã Giao Thạnh', '29227', 'Xã');
INSERT INTO category."Wards" VALUES (29230, 837, 'system', '2023-07-26 08:40:17.690605+07', 'system', '2023-07-26 08:40:17.690605+07', 'Xã Thạnh Phong', '29230', 'Xã');
INSERT INTO category."Wards" VALUES (29233, 837, 'system', '2023-07-26 08:40:17.690607+07', 'system', '2023-07-26 08:40:17.690607+07', 'Xã Mỹ An', '29233', 'Xã');
INSERT INTO category."Wards" VALUES (29236, 842, 'system', '2023-07-26 08:40:17.690634+07', 'system', '2023-07-26 08:40:17.690634+07', 'Phường 4', '29236', 'Phường');
INSERT INTO category."Wards" VALUES (29239, 842, 'system', '2023-07-26 08:40:17.690635+07', 'system', '2023-07-26 08:40:17.690636+07', 'Phường 1', '29239', 'Phường');
INSERT INTO category."Wards" VALUES (29242, 842, 'system', '2023-07-26 08:40:17.690637+07', 'system', '2023-07-26 08:40:17.690637+07', 'Phường 3', '29242', 'Phường');
INSERT INTO category."Wards" VALUES (29245, 842, 'system', '2023-07-26 08:40:17.690639+07', 'system', '2023-07-26 08:40:17.690639+07', 'Phường 2', '29245', 'Phường');
INSERT INTO category."Wards" VALUES (29248, 842, 'system', '2023-07-26 08:40:17.690641+07', 'system', '2023-07-26 08:40:17.690641+07', 'Phường 5', '29248', 'Phường');
INSERT INTO category."Wards" VALUES (29251, 842, 'system', '2023-07-26 08:40:17.690643+07', 'system', '2023-07-26 08:40:17.690643+07', 'Phường 6', '29251', 'Phường');
INSERT INTO category."Wards" VALUES (29254, 842, 'system', '2023-07-26 08:40:17.690645+07', 'system', '2023-07-26 08:40:17.690645+07', 'Phường 7', '29254', 'Phường');
INSERT INTO category."Wards" VALUES (29257, 842, 'system', '2023-07-26 08:40:17.690647+07', 'system', '2023-07-26 08:40:17.690647+07', 'Phường 8', '29257', 'Phường');
INSERT INTO category."Wards" VALUES (29260, 842, 'system', '2023-07-26 08:40:17.690648+07', 'system', '2023-07-26 08:40:17.690648+07', 'Phường 9', '29260', 'Phường');
INSERT INTO category."Wards" VALUES (29263, 842, 'system', '2023-07-26 08:40:17.69065+07', 'system', '2023-07-26 08:40:17.69065+07', 'Xã Long Đức', '29263', 'Xã');
INSERT INTO category."Wards" VALUES (29266, 844, 'system', '2023-07-26 08:40:17.690652+07', 'system', '2023-07-26 08:40:17.690652+07', 'Thị trấn Càng Long', '29266', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29269, 844, 'system', '2023-07-26 08:40:17.690654+07', 'system', '2023-07-26 08:40:17.690654+07', 'Xã Mỹ Cẩm', '29269', 'Xã');
INSERT INTO category."Wards" VALUES (29272, 844, 'system', '2023-07-26 08:40:17.690657+07', 'system', '2023-07-26 08:40:17.690657+07', 'Xã An Trường A', '29272', 'Xã');
INSERT INTO category."Wards" VALUES (29275, 844, 'system', '2023-07-26 08:40:17.690659+07', 'system', '2023-07-26 08:40:17.690659+07', 'Xã An Trường', '29275', 'Xã');
INSERT INTO category."Wards" VALUES (29278, 844, 'system', '2023-07-26 08:40:17.69066+07', 'system', '2023-07-26 08:40:17.69066+07', 'Xã Huyền Hội', '29278', 'Xã');
INSERT INTO category."Wards" VALUES (29281, 844, 'system', '2023-07-26 08:40:17.690662+07', 'system', '2023-07-26 08:40:17.690662+07', 'Xã Tân An', '29281', 'Xã');
INSERT INTO category."Wards" VALUES (29284, 844, 'system', '2023-07-26 08:40:17.690664+07', 'system', '2023-07-26 08:40:17.690664+07', 'Xã Tân Bình', '29284', 'Xã');
INSERT INTO category."Wards" VALUES (29287, 844, 'system', '2023-07-26 08:40:17.690666+07', 'system', '2023-07-26 08:40:17.690666+07', 'Xã Bình Phú', '29287', 'Xã');
INSERT INTO category."Wards" VALUES (29290, 844, 'system', '2023-07-26 08:40:17.690668+07', 'system', '2023-07-26 08:40:17.690668+07', 'Xã Phương Thạnh', '29290', 'Xã');
INSERT INTO category."Wards" VALUES (29293, 844, 'system', '2023-07-26 08:40:17.690669+07', 'system', '2023-07-26 08:40:17.69067+07', 'Xã Đại Phúc', '29293', 'Xã');
INSERT INTO category."Wards" VALUES (29296, 844, 'system', '2023-07-26 08:40:17.690671+07', 'system', '2023-07-26 08:40:17.690671+07', 'Xã Đại Phước', '29296', 'Xã');
INSERT INTO category."Wards" VALUES (29299, 844, 'system', '2023-07-26 08:40:17.690673+07', 'system', '2023-07-26 08:40:17.690673+07', 'Xã Nhị Long Phú', '29299', 'Xã');
INSERT INTO category."Wards" VALUES (29302, 844, 'system', '2023-07-26 08:40:17.690675+07', 'system', '2023-07-26 08:40:17.690675+07', 'Xã Nhị Long', '29302', 'Xã');
INSERT INTO category."Wards" VALUES (29305, 844, 'system', '2023-07-26 08:40:17.690677+07', 'system', '2023-07-26 08:40:17.690677+07', 'Xã Đức Mỹ', '29305', 'Xã');
INSERT INTO category."Wards" VALUES (29308, 845, 'system', '2023-07-26 08:40:17.690679+07', 'system', '2023-07-26 08:40:17.690679+07', 'Thị trấn Cầu Kè', '29308', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29311, 845, 'system', '2023-07-26 08:40:17.690681+07', 'system', '2023-07-26 08:40:17.690681+07', 'Xã Hòa Ân', '29311', 'Xã');
INSERT INTO category."Wards" VALUES (29314, 845, 'system', '2023-07-26 08:40:17.690682+07', 'system', '2023-07-26 08:40:17.690683+07', 'Xã Châu Điền', '29314', 'Xã');
INSERT INTO category."Wards" VALUES (29317, 845, 'system', '2023-07-26 08:40:17.690684+07', 'system', '2023-07-26 08:40:17.690685+07', 'Xã An Phú Tân', '29317', 'Xã');
INSERT INTO category."Wards" VALUES (29320, 845, 'system', '2023-07-26 08:40:17.690686+07', 'system', '2023-07-26 08:40:17.690686+07', 'Xã Hoà Tân', '29320', 'Xã');
INSERT INTO category."Wards" VALUES (29323, 845, 'system', '2023-07-26 08:40:17.690688+07', 'system', '2023-07-26 08:40:17.690688+07', 'Xã Ninh Thới', '29323', 'Xã');
INSERT INTO category."Wards" VALUES (29326, 845, 'system', '2023-07-26 08:40:17.69069+07', 'system', '2023-07-26 08:40:17.69069+07', 'Xã Phong Phú', '29326', 'Xã');
INSERT INTO category."Wards" VALUES (29329, 845, 'system', '2023-07-26 08:40:17.690692+07', 'system', '2023-07-26 08:40:17.690692+07', 'Xã Phong Thạnh', '29329', 'Xã');
INSERT INTO category."Wards" VALUES (29332, 845, 'system', '2023-07-26 08:40:17.690694+07', 'system', '2023-07-26 08:40:17.690694+07', 'Xã Tam Ngãi', '29332', 'Xã');
INSERT INTO category."Wards" VALUES (29335, 845, 'system', '2023-07-26 08:40:17.690696+07', 'system', '2023-07-26 08:40:17.690696+07', 'Xã Thông Hòa', '29335', 'Xã');
INSERT INTO category."Wards" VALUES (29338, 845, 'system', '2023-07-26 08:40:17.690698+07', 'system', '2023-07-26 08:40:17.690698+07', 'Xã Thạnh Phú', '29338', 'Xã');
INSERT INTO category."Wards" VALUES (29341, 846, 'system', '2023-07-26 08:40:17.6907+07', 'system', '2023-07-26 08:40:17.6907+07', 'Thị trấn Tiểu Cần', '29341', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29344, 846, 'system', '2023-07-26 08:40:17.690702+07', 'system', '2023-07-26 08:40:17.690702+07', 'Thị trấn Cầu Quan', '29344', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29347, 846, 'system', '2023-07-26 08:40:17.690704+07', 'system', '2023-07-26 08:40:17.690704+07', 'Xã Phú Cần', '29347', 'Xã');
INSERT INTO category."Wards" VALUES (29350, 846, 'system', '2023-07-26 08:40:17.690705+07', 'system', '2023-07-26 08:40:17.690705+07', 'Xã Hiếu Tử', '29350', 'Xã');
INSERT INTO category."Wards" VALUES (29353, 846, 'system', '2023-07-26 08:40:17.690707+07', 'system', '2023-07-26 08:40:17.690707+07', 'Xã Hiếu Trung', '29353', 'Xã');
INSERT INTO category."Wards" VALUES (29356, 846, 'system', '2023-07-26 08:40:17.690709+07', 'system', '2023-07-26 08:40:17.690709+07', 'Xã Long Thới', '29356', 'Xã');
INSERT INTO category."Wards" VALUES (29359, 846, 'system', '2023-07-26 08:40:17.690711+07', 'system', '2023-07-26 08:40:17.690711+07', 'Xã Hùng Hòa', '29359', 'Xã');
INSERT INTO category."Wards" VALUES (29362, 846, 'system', '2023-07-26 08:40:17.690713+07', 'system', '2023-07-26 08:40:17.690713+07', 'Xã Tân Hùng', '29362', 'Xã');
INSERT INTO category."Wards" VALUES (29365, 846, 'system', '2023-07-26 08:40:17.690715+07', 'system', '2023-07-26 08:40:17.690715+07', 'Xã Tập Ngãi', '29365', 'Xã');
INSERT INTO category."Wards" VALUES (29368, 846, 'system', '2023-07-26 08:40:17.690716+07', 'system', '2023-07-26 08:40:17.690716+07', 'Xã Ngãi Hùng', '29368', 'Xã');
INSERT INTO category."Wards" VALUES (29371, 846, 'system', '2023-07-26 08:40:17.690718+07', 'system', '2023-07-26 08:40:17.690718+07', 'Xã Tân Hòa', '29371', 'Xã');
INSERT INTO category."Wards" VALUES (29374, 847, 'system', '2023-07-26 08:40:17.69072+07', 'system', '2023-07-26 08:40:17.69072+07', 'Thị trấn Châu Thành', '29374', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29377, 847, 'system', '2023-07-26 08:40:17.690722+07', 'system', '2023-07-26 08:40:17.690722+07', 'Xã Đa Lộc', '29377', 'Xã');
INSERT INTO category."Wards" VALUES (29380, 847, 'system', '2023-07-26 08:40:17.690725+07', 'system', '2023-07-26 08:40:17.690725+07', 'Xã Mỹ Chánh', '29380', 'Xã');
INSERT INTO category."Wards" VALUES (29383, 847, 'system', '2023-07-26 08:40:17.690727+07', 'system', '2023-07-26 08:40:17.690727+07', 'Xã Thanh Mỹ', '29383', 'Xã');
INSERT INTO category."Wards" VALUES (29386, 847, 'system', '2023-07-26 08:40:17.690728+07', 'system', '2023-07-26 08:40:17.690729+07', 'Xã Lương Hoà A', '29386', 'Xã');
INSERT INTO category."Wards" VALUES (29389, 847, 'system', '2023-07-26 08:40:17.69073+07', 'system', '2023-07-26 08:40:17.69073+07', 'Xã Lương Hòa', '29389', 'Xã');
INSERT INTO category."Wards" VALUES (29392, 847, 'system', '2023-07-26 08:40:17.690732+07', 'system', '2023-07-26 08:40:17.690732+07', 'Xã Song Lộc', '29392', 'Xã');
INSERT INTO category."Wards" VALUES (29395, 847, 'system', '2023-07-26 08:40:17.690734+07', 'system', '2023-07-26 08:40:17.690734+07', 'Xã Nguyệt Hóa', '29395', 'Xã');
INSERT INTO category."Wards" VALUES (29398, 847, 'system', '2023-07-26 08:40:17.690736+07', 'system', '2023-07-26 08:40:17.690736+07', 'Xã Hòa Thuận', '29398', 'Xã');
INSERT INTO category."Wards" VALUES (29401, 847, 'system', '2023-07-26 08:40:17.690738+07', 'system', '2023-07-26 08:40:17.690738+07', 'Xã Hòa Lợi', '29401', 'Xã');
INSERT INTO category."Wards" VALUES (29404, 847, 'system', '2023-07-26 08:40:17.69074+07', 'system', '2023-07-26 08:40:17.69074+07', 'Xã Phước Hảo', '29404', 'Xã');
INSERT INTO category."Wards" VALUES (29407, 847, 'system', '2023-07-26 08:40:17.690742+07', 'system', '2023-07-26 08:40:17.690742+07', 'Xã Hưng Mỹ', '29407', 'Xã');
INSERT INTO category."Wards" VALUES (29410, 847, 'system', '2023-07-26 08:40:17.690743+07', 'system', '2023-07-26 08:40:17.690743+07', 'Xã Hòa Minh', '29410', 'Xã');
INSERT INTO category."Wards" VALUES (29413, 847, 'system', '2023-07-26 08:40:17.690745+07', 'system', '2023-07-26 08:40:17.690745+07', 'Xã Long Hòa', '29413', 'Xã');
INSERT INTO category."Wards" VALUES (29416, 848, 'system', '2023-07-26 08:40:17.690747+07', 'system', '2023-07-26 08:40:17.690747+07', 'Thị trấn Cầu Ngang', '29416', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29419, 848, 'system', '2023-07-26 08:40:17.690749+07', 'system', '2023-07-26 08:40:17.690749+07', 'Thị trấn Mỹ Long', '29419', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29422, 848, 'system', '2023-07-26 08:40:17.690751+07', 'system', '2023-07-26 08:40:17.690751+07', 'Xã Mỹ Long Bắc', '29422', 'Xã');
INSERT INTO category."Wards" VALUES (29425, 848, 'system', '2023-07-26 08:40:17.690753+07', 'system', '2023-07-26 08:40:17.690753+07', 'Xã Mỹ Long Nam', '29425', 'Xã');
INSERT INTO category."Wards" VALUES (29428, 848, 'system', '2023-07-26 08:40:17.690755+07', 'system', '2023-07-26 08:40:17.690755+07', 'Xã Mỹ Hòa', '29428', 'Xã');
INSERT INTO category."Wards" VALUES (29431, 848, 'system', '2023-07-26 08:40:17.690757+07', 'system', '2023-07-26 08:40:17.690757+07', 'Xã Vĩnh Kim', '29431', 'Xã');
INSERT INTO category."Wards" VALUES (29434, 848, 'system', '2023-07-26 08:40:17.690758+07', 'system', '2023-07-26 08:40:17.690759+07', 'Xã Kim Hòa', '29434', 'Xã');
INSERT INTO category."Wards" VALUES (29437, 848, 'system', '2023-07-26 08:40:17.69076+07', 'system', '2023-07-26 08:40:17.69076+07', 'Xã Hiệp Hòa', '29437', 'Xã');
INSERT INTO category."Wards" VALUES (29440, 848, 'system', '2023-07-26 08:40:17.690762+07', 'system', '2023-07-26 08:40:17.690762+07', 'Xã Thuận Hòa', '29440', 'Xã');
INSERT INTO category."Wards" VALUES (29443, 848, 'system', '2023-07-26 08:40:17.690764+07', 'system', '2023-07-26 08:40:17.690764+07', 'Xã Long Sơn', '29443', 'Xã');
INSERT INTO category."Wards" VALUES (29446, 848, 'system', '2023-07-26 08:40:17.690766+07', 'system', '2023-07-26 08:40:17.690766+07', 'Xã Nhị Trường', '29446', 'Xã');
INSERT INTO category."Wards" VALUES (29449, 848, 'system', '2023-07-26 08:40:17.690768+07', 'system', '2023-07-26 08:40:17.690768+07', 'Xã Trường Thọ', '29449', 'Xã');
INSERT INTO category."Wards" VALUES (29452, 848, 'system', '2023-07-26 08:40:17.690769+07', 'system', '2023-07-26 08:40:17.690769+07', 'Xã Hiệp Mỹ Đông', '29452', 'Xã');
INSERT INTO category."Wards" VALUES (29455, 848, 'system', '2023-07-26 08:40:17.690771+07', 'system', '2023-07-26 08:40:17.690771+07', 'Xã Hiệp Mỹ Tây', '29455', 'Xã');
INSERT INTO category."Wards" VALUES (29458, 848, 'system', '2023-07-26 08:40:17.690773+07', 'system', '2023-07-26 08:40:17.690773+07', 'Xã Thạnh Hòa Sơn', '29458', 'Xã');
INSERT INTO category."Wards" VALUES (29461, 849, 'system', '2023-07-26 08:40:17.690775+07', 'system', '2023-07-26 08:40:17.690775+07', 'Thị trấn Trà Cú', '29461', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29462, 849, 'system', '2023-07-26 08:40:17.690777+07', 'system', '2023-07-26 08:40:17.690777+07', 'Thị trấn Định An', '29462', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29464, 849, 'system', '2023-07-26 08:40:17.690779+07', 'system', '2023-07-26 08:40:17.690779+07', 'Xã Phước Hưng', '29464', 'Xã');
INSERT INTO category."Wards" VALUES (29467, 849, 'system', '2023-07-26 08:40:17.690781+07', 'system', '2023-07-26 08:40:17.690781+07', 'Xã Tập Sơn', '29467', 'Xã');
INSERT INTO category."Wards" VALUES (29470, 849, 'system', '2023-07-26 08:40:17.690783+07', 'system', '2023-07-26 08:40:17.690783+07', 'Xã Tân Sơn', '29470', 'Xã');
INSERT INTO category."Wards" VALUES (29473, 849, 'system', '2023-07-26 08:40:17.690785+07', 'system', '2023-07-26 08:40:17.690785+07', 'Xã An Quảng Hữu', '29473', 'Xã');
INSERT INTO category."Wards" VALUES (29476, 849, 'system', '2023-07-26 08:40:17.690787+07', 'system', '2023-07-26 08:40:17.690787+07', 'Xã Lưu Nghiệp Anh', '29476', 'Xã');
INSERT INTO category."Wards" VALUES (29479, 849, 'system', '2023-07-26 08:40:17.690789+07', 'system', '2023-07-26 08:40:17.690789+07', 'Xã Ngãi Xuyên', '29479', 'Xã');
INSERT INTO category."Wards" VALUES (29482, 849, 'system', '2023-07-26 08:40:17.690791+07', 'system', '2023-07-26 08:40:17.690791+07', 'Xã Kim Sơn', '29482', 'Xã');
INSERT INTO category."Wards" VALUES (29485, 849, 'system', '2023-07-26 08:40:17.690793+07', 'system', '2023-07-26 08:40:17.690793+07', 'Xã Thanh Sơn', '29485', 'Xã');
INSERT INTO category."Wards" VALUES (29488, 849, 'system', '2023-07-26 08:40:17.690795+07', 'system', '2023-07-26 08:40:17.690795+07', 'Xã Hàm Giang', '29488', 'Xã');
INSERT INTO category."Wards" VALUES (29489, 849, 'system', '2023-07-26 08:40:17.690797+07', 'system', '2023-07-26 08:40:17.690797+07', 'Xã Hàm Tân', '29489', 'Xã');
INSERT INTO category."Wards" VALUES (29491, 849, 'system', '2023-07-26 08:40:17.690799+07', 'system', '2023-07-26 08:40:17.690799+07', 'Xã Đại An', '29491', 'Xã');
INSERT INTO category."Wards" VALUES (29494, 849, 'system', '2023-07-26 08:40:17.690801+07', 'system', '2023-07-26 08:40:17.690801+07', 'Xã Định An', '29494', 'Xã');
INSERT INTO category."Wards" VALUES (29497, 850, 'system', '2023-07-26 08:40:17.690808+07', 'system', '2023-07-26 08:40:17.690808+07', 'Xã Đôn Xuân', '29497', 'Xã');
INSERT INTO category."Wards" VALUES (29500, 850, 'system', '2023-07-26 08:40:17.69081+07', 'system', '2023-07-26 08:40:17.69081+07', 'Xã Đôn Châu', '29500', 'Xã');
INSERT INTO category."Wards" VALUES (29503, 849, 'system', '2023-07-26 08:40:17.690803+07', 'system', '2023-07-26 08:40:17.690803+07', 'Xã Ngọc Biên', '29503', 'Xã');
INSERT INTO category."Wards" VALUES (29506, 849, 'system', '2023-07-26 08:40:17.690805+07', 'system', '2023-07-26 08:40:17.690805+07', 'Xã Long Hiệp', '29506', 'Xã');
INSERT INTO category."Wards" VALUES (29509, 849, 'system', '2023-07-26 08:40:17.690806+07', 'system', '2023-07-26 08:40:17.690806+07', 'Xã Tân Hiệp', '29509', 'Xã');
INSERT INTO category."Wards" VALUES (29512, 851, 'system', '2023-07-26 08:40:17.690821+07', 'system', '2023-07-26 08:40:17.690821+07', 'Phường 1', '29512', 'Phường');
INSERT INTO category."Wards" VALUES (29513, 850, 'system', '2023-07-26 08:40:17.690812+07', 'system', '2023-07-26 08:40:17.690812+07', 'Thị trấn Long Thành', '29513', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29515, 851, 'system', '2023-07-26 08:40:17.690823+07', 'system', '2023-07-26 08:40:17.690823+07', 'Xã Long Toàn', '29515', 'Xã');
INSERT INTO category."Wards" VALUES (29516, 851, 'system', '2023-07-26 08:40:17.690825+07', 'system', '2023-07-26 08:40:17.690825+07', 'Phường 2', '29516', 'Phường');
INSERT INTO category."Wards" VALUES (29518, 851, 'system', '2023-07-26 08:40:17.690827+07', 'system', '2023-07-26 08:40:17.690827+07', 'Xã Long Hữu', '29518', 'Xã');
INSERT INTO category."Wards" VALUES (29521, 850, 'system', '2023-07-26 08:40:17.690814+07', 'system', '2023-07-26 08:40:17.690814+07', 'Xã Long Khánh', '29521', 'Xã');
INSERT INTO category."Wards" VALUES (29524, 851, 'system', '2023-07-26 08:40:17.690829+07', 'system', '2023-07-26 08:40:17.690829+07', 'Xã Dân Thành', '29524', 'Xã');
INSERT INTO category."Wards" VALUES (29527, 851, 'system', '2023-07-26 08:40:17.69083+07', 'system', '2023-07-26 08:40:17.690831+07', 'Xã Trường Long Hòa', '29527', 'Xã');
INSERT INTO category."Wards" VALUES (29530, 850, 'system', '2023-07-26 08:40:17.690816+07', 'system', '2023-07-26 08:40:17.690816+07', 'Xã Ngũ Lạc', '29530', 'Xã');
INSERT INTO category."Wards" VALUES (29533, 850, 'system', '2023-07-26 08:40:17.690818+07', 'system', '2023-07-26 08:40:17.690818+07', 'Xã Long Vĩnh', '29533', 'Xã');
INSERT INTO category."Wards" VALUES (29536, 850, 'system', '2023-07-26 08:40:17.69082+07', 'system', '2023-07-26 08:40:17.69082+07', 'Xã Đông Hải', '29536', 'Xã');
INSERT INTO category."Wards" VALUES (29539, 851, 'system', '2023-07-26 08:40:17.690832+07', 'system', '2023-07-26 08:40:17.690832+07', 'Xã Hiệp Thạnh', '29539', 'Xã');
INSERT INTO category."Wards" VALUES (29542, 855, 'system', '2023-07-26 08:40:17.690834+07', 'system', '2023-07-26 08:40:17.690834+07', 'Phường 9', '29542', 'Phường');
INSERT INTO category."Wards" VALUES (29545, 855, 'system', '2023-07-26 08:40:17.690836+07', 'system', '2023-07-26 08:40:17.690836+07', 'Phường 5', '29545', 'Phường');
INSERT INTO category."Wards" VALUES (29548, 855, 'system', '2023-07-26 08:40:17.690838+07', 'system', '2023-07-26 08:40:17.690838+07', 'Phường 1', '29548', 'Phường');
INSERT INTO category."Wards" VALUES (29551, 855, 'system', '2023-07-26 08:40:17.69084+07', 'system', '2023-07-26 08:40:17.69084+07', 'Phường 2', '29551', 'Phường');
INSERT INTO category."Wards" VALUES (29554, 855, 'system', '2023-07-26 08:40:17.690841+07', 'system', '2023-07-26 08:40:17.690842+07', 'Phường 4', '29554', 'Phường');
INSERT INTO category."Wards" VALUES (29557, 855, 'system', '2023-07-26 08:40:17.690843+07', 'system', '2023-07-26 08:40:17.690843+07', 'Phường 3', '29557', 'Phường');
INSERT INTO category."Wards" VALUES (29560, 855, 'system', '2023-07-26 08:40:17.690845+07', 'system', '2023-07-26 08:40:17.690845+07', 'Phường 8', '29560', 'Phường');
INSERT INTO category."Wards" VALUES (29563, 855, 'system', '2023-07-26 08:40:17.690847+07', 'system', '2023-07-26 08:40:17.690847+07', 'Phường Tân Ngãi', '29563', 'Phường');
INSERT INTO category."Wards" VALUES (29566, 855, 'system', '2023-07-26 08:40:17.690849+07', 'system', '2023-07-26 08:40:17.690849+07', 'Phường Tân Hòa', '29566', 'Phường');
INSERT INTO category."Wards" VALUES (29569, 855, 'system', '2023-07-26 08:40:17.690851+07', 'system', '2023-07-26 08:40:17.690851+07', 'Phường Tân Hội', '29569', 'Phường');
INSERT INTO category."Wards" VALUES (29572, 855, 'system', '2023-07-26 08:40:17.690853+07', 'system', '2023-07-26 08:40:17.690853+07', 'Phường Trường An', '29572', 'Phường');
INSERT INTO category."Wards" VALUES (29575, 857, 'system', '2023-07-26 08:40:17.690855+07', 'system', '2023-07-26 08:40:17.690855+07', 'Thị trấn Long Hồ', '29575', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29578, 857, 'system', '2023-07-26 08:40:17.690857+07', 'system', '2023-07-26 08:40:17.690857+07', 'Xã Đồng Phú', '29578', 'Xã');
INSERT INTO category."Wards" VALUES (29581, 857, 'system', '2023-07-26 08:40:17.690859+07', 'system', '2023-07-26 08:40:17.690859+07', 'Xã Bình Hòa Phước', '29581', 'Xã');
INSERT INTO category."Wards" VALUES (29584, 857, 'system', '2023-07-26 08:40:17.690861+07', 'system', '2023-07-26 08:40:17.690861+07', 'Xã Hòa Ninh', '29584', 'Xã');
INSERT INTO category."Wards" VALUES (29587, 857, 'system', '2023-07-26 08:40:17.690863+07', 'system', '2023-07-26 08:40:17.690863+07', 'Xã An Bình', '29587', 'Xã');
INSERT INTO category."Wards" VALUES (29590, 857, 'system', '2023-07-26 08:40:17.690865+07', 'system', '2023-07-26 08:40:17.690865+07', 'Xã Thanh Đức', '29590', 'Xã');
INSERT INTO category."Wards" VALUES (29593, 857, 'system', '2023-07-26 08:40:17.690867+07', 'system', '2023-07-26 08:40:17.690867+07', 'Xã Tân Hạnh', '29593', 'Xã');
INSERT INTO category."Wards" VALUES (29596, 857, 'system', '2023-07-26 08:40:17.690869+07', 'system', '2023-07-26 08:40:17.690869+07', 'Xã Phước Hậu', '29596', 'Xã');
INSERT INTO category."Wards" VALUES (29599, 857, 'system', '2023-07-26 08:40:17.690871+07', 'system', '2023-07-26 08:40:17.690871+07', 'Xã Long Phước', '29599', 'Xã');
INSERT INTO category."Wards" VALUES (29602, 857, 'system', '2023-07-26 08:40:17.690873+07', 'system', '2023-07-26 08:40:17.690873+07', 'Xã Phú Đức', '29602', 'Xã');
INSERT INTO category."Wards" VALUES (29605, 857, 'system', '2023-07-26 08:40:17.690874+07', 'system', '2023-07-26 08:40:17.690875+07', 'Xã Lộc Hòa', '29605', 'Xã');
INSERT INTO category."Wards" VALUES (29608, 857, 'system', '2023-07-26 08:40:17.690876+07', 'system', '2023-07-26 08:40:17.690876+07', 'Xã Long An', '29608', 'Xã');
INSERT INTO category."Wards" VALUES (29611, 857, 'system', '2023-07-26 08:40:17.690878+07', 'system', '2023-07-26 08:40:17.690878+07', 'Xã Phú Quới', '29611', 'Xã');
INSERT INTO category."Wards" VALUES (29614, 857, 'system', '2023-07-26 08:40:17.69088+07', 'system', '2023-07-26 08:40:17.69088+07', 'Xã Thạnh Quới', '29614', 'Xã');
INSERT INTO category."Wards" VALUES (29617, 857, 'system', '2023-07-26 08:40:17.690882+07', 'system', '2023-07-26 08:40:17.690882+07', 'Xã Hòa Phú', '29617', 'Xã');
INSERT INTO category."Wards" VALUES (29623, 858, 'system', '2023-07-26 08:40:17.690884+07', 'system', '2023-07-26 08:40:17.690884+07', 'Xã Mỹ An', '29623', 'Xã');
INSERT INTO category."Wards" VALUES (29626, 858, 'system', '2023-07-26 08:40:17.690885+07', 'system', '2023-07-26 08:40:17.690885+07', 'Xã Mỹ Phước', '29626', 'Xã');
INSERT INTO category."Wards" VALUES (29629, 858, 'system', '2023-07-26 08:40:17.690887+07', 'system', '2023-07-26 08:40:17.690887+07', 'Xã An Phước', '29629', 'Xã');
INSERT INTO category."Wards" VALUES (29632, 858, 'system', '2023-07-26 08:40:17.690889+07', 'system', '2023-07-26 08:40:17.690889+07', 'Xã Nhơn Phú', '29632', 'Xã');
INSERT INTO category."Wards" VALUES (29635, 858, 'system', '2023-07-26 08:40:17.690891+07', 'system', '2023-07-26 08:40:17.690891+07', 'Xã Long Mỹ', '29635', 'Xã');
INSERT INTO category."Wards" VALUES (29638, 858, 'system', '2023-07-26 08:40:17.690893+07', 'system', '2023-07-26 08:40:17.690893+07', 'Xã Hòa Tịnh', '29638', 'Xã');
INSERT INTO category."Wards" VALUES (29641, 858, 'system', '2023-07-26 08:40:17.690894+07', 'system', '2023-07-26 08:40:17.690894+07', 'Thị trấn Cái Nhum', '29641', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29644, 858, 'system', '2023-07-26 08:40:17.690897+07', 'system', '2023-07-26 08:40:17.690897+07', 'Xã Bình Phước', '29644', 'Xã');
INSERT INTO category."Wards" VALUES (29647, 858, 'system', '2023-07-26 08:40:17.690898+07', 'system', '2023-07-26 08:40:17.690898+07', 'Xã Chánh An', '29647', 'Xã');
INSERT INTO category."Wards" VALUES (29650, 858, 'system', '2023-07-26 08:40:17.6909+07', 'system', '2023-07-26 08:40:17.6909+07', 'Xã Tân An Hội', '29650', 'Xã');
INSERT INTO category."Wards" VALUES (29653, 858, 'system', '2023-07-26 08:40:17.690902+07', 'system', '2023-07-26 08:40:17.690902+07', 'Xã Tân Long', '29653', 'Xã');
INSERT INTO category."Wards" VALUES (29656, 858, 'system', '2023-07-26 08:40:17.690904+07', 'system', '2023-07-26 08:40:17.690904+07', 'Xã Tân Long Hội', '29656', 'Xã');
INSERT INTO category."Wards" VALUES (29659, 859, 'system', '2023-07-26 08:40:17.690906+07', 'system', '2023-07-26 08:40:17.690906+07', 'Thị trấn Vũng Liêm', '29659', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29662, 859, 'system', '2023-07-26 08:40:17.690908+07', 'system', '2023-07-26 08:40:17.690908+07', 'Xã Tân Quới Trung', '29662', 'Xã');
INSERT INTO category."Wards" VALUES (29665, 859, 'system', '2023-07-26 08:40:17.69091+07', 'system', '2023-07-26 08:40:17.69091+07', 'Xã Quới Thiện', '29665', 'Xã');
INSERT INTO category."Wards" VALUES (29668, 859, 'system', '2023-07-26 08:40:17.690911+07', 'system', '2023-07-26 08:40:17.690912+07', 'Xã Quới An', '29668', 'Xã');
INSERT INTO category."Wards" VALUES (29671, 859, 'system', '2023-07-26 08:40:17.690913+07', 'system', '2023-07-26 08:40:17.690913+07', 'Xã Trung Chánh', '29671', 'Xã');
INSERT INTO category."Wards" VALUES (29674, 859, 'system', '2023-07-26 08:40:17.690915+07', 'system', '2023-07-26 08:40:17.690915+07', 'Xã Tân An Luông', '29674', 'Xã');
INSERT INTO category."Wards" VALUES (29677, 859, 'system', '2023-07-26 08:40:17.690917+07', 'system', '2023-07-26 08:40:17.690917+07', 'Xã Thanh Bình', '29677', 'Xã');
INSERT INTO category."Wards" VALUES (29680, 859, 'system', '2023-07-26 08:40:17.690919+07', 'system', '2023-07-26 08:40:17.690919+07', 'Xã Trung Thành Tây', '29680', 'Xã');
INSERT INTO category."Wards" VALUES (29683, 859, 'system', '2023-07-26 08:40:17.690921+07', 'system', '2023-07-26 08:40:17.690921+07', 'Xã Trung Hiệp', '29683', 'Xã');
INSERT INTO category."Wards" VALUES (29686, 859, 'system', '2023-07-26 08:40:17.690922+07', 'system', '2023-07-26 08:40:17.690923+07', 'Xã Hiếu Phụng', '29686', 'Xã');
INSERT INTO category."Wards" VALUES (29689, 859, 'system', '2023-07-26 08:40:17.690924+07', 'system', '2023-07-26 08:40:17.690924+07', 'Xã Trung Thành Đông', '29689', 'Xã');
INSERT INTO category."Wards" VALUES (29692, 859, 'system', '2023-07-26 08:40:17.690926+07', 'system', '2023-07-26 08:40:17.690926+07', 'Xã Trung Thành', '29692', 'Xã');
INSERT INTO category."Wards" VALUES (29695, 859, 'system', '2023-07-26 08:40:17.690929+07', 'system', '2023-07-26 08:40:17.690929+07', 'Xã Trung Hiếu', '29695', 'Xã');
INSERT INTO category."Wards" VALUES (29698, 859, 'system', '2023-07-26 08:40:17.690931+07', 'system', '2023-07-26 08:40:17.690931+07', 'Xã Trung Ngãi', '29698', 'Xã');
INSERT INTO category."Wards" VALUES (29701, 859, 'system', '2023-07-26 08:40:17.690933+07', 'system', '2023-07-26 08:40:17.690933+07', 'Xã Hiếu Thuận', '29701', 'Xã');
INSERT INTO category."Wards" VALUES (29704, 859, 'system', '2023-07-26 08:40:17.690934+07', 'system', '2023-07-26 08:40:17.690934+07', 'Xã Trung Nghĩa', '29704', 'Xã');
INSERT INTO category."Wards" VALUES (29707, 859, 'system', '2023-07-26 08:40:17.690936+07', 'system', '2023-07-26 08:40:17.690936+07', 'Xã Trung An', '29707', 'Xã');
INSERT INTO category."Wards" VALUES (29710, 859, 'system', '2023-07-26 08:40:17.690938+07', 'system', '2023-07-26 08:40:17.690938+07', 'Xã Hiếu Nhơn', '29710', 'Xã');
INSERT INTO category."Wards" VALUES (29713, 859, 'system', '2023-07-26 08:40:17.69094+07', 'system', '2023-07-26 08:40:17.69094+07', 'Xã Hiếu Thành', '29713', 'Xã');
INSERT INTO category."Wards" VALUES (29716, 859, 'system', '2023-07-26 08:40:17.690942+07', 'system', '2023-07-26 08:40:17.690942+07', 'Xã Hiếu Nghĩa', '29716', 'Xã');
INSERT INTO category."Wards" VALUES (29719, 860, 'system', '2023-07-26 08:40:17.690952+07', 'system', '2023-07-26 08:40:17.690952+07', 'Thị trấn Tam Bình', '29719', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29722, 860, 'system', '2023-07-26 08:40:17.690954+07', 'system', '2023-07-26 08:40:17.690954+07', 'Xã Tân Lộc', '29722', 'Xã');
INSERT INTO category."Wards" VALUES (29725, 860, 'system', '2023-07-26 08:40:17.690956+07', 'system', '2023-07-26 08:40:17.690956+07', 'Xã Phú Thịnh', '29725', 'Xã');
INSERT INTO category."Wards" VALUES (29728, 860, 'system', '2023-07-26 08:40:17.690958+07', 'system', '2023-07-26 08:40:17.690958+07', 'Xã Hậu Lộc', '29728', 'Xã');
INSERT INTO category."Wards" VALUES (29731, 860, 'system', '2023-07-26 08:40:17.690959+07', 'system', '2023-07-26 08:40:17.690959+07', 'Xã Hòa Thạnh', '29731', 'Xã');
INSERT INTO category."Wards" VALUES (29734, 860, 'system', '2023-07-26 08:40:17.690961+07', 'system', '2023-07-26 08:40:17.690961+07', 'Xã Hoà Lộc', '29734', 'Xã');
INSERT INTO category."Wards" VALUES (29737, 860, 'system', '2023-07-26 08:40:17.690963+07', 'system', '2023-07-26 08:40:17.690963+07', 'Xã Phú Lộc', '29737', 'Xã');
INSERT INTO category."Wards" VALUES (29740, 860, 'system', '2023-07-26 08:40:17.690965+07', 'system', '2023-07-26 08:40:17.690965+07', 'Xã Song Phú', '29740', 'Xã');
INSERT INTO category."Wards" VALUES (29743, 860, 'system', '2023-07-26 08:40:17.690967+07', 'system', '2023-07-26 08:40:17.690967+07', 'Xã Hòa Hiệp', '29743', 'Xã');
INSERT INTO category."Wards" VALUES (29746, 860, 'system', '2023-07-26 08:40:17.690969+07', 'system', '2023-07-26 08:40:17.690969+07', 'Xã Mỹ Lộc', '29746', 'Xã');
INSERT INTO category."Wards" VALUES (29749, 860, 'system', '2023-07-26 08:40:17.690971+07', 'system', '2023-07-26 08:40:17.690971+07', 'Xã Tân Phú', '29749', 'Xã');
INSERT INTO category."Wards" VALUES (29752, 860, 'system', '2023-07-26 08:40:17.690972+07', 'system', '2023-07-26 08:40:17.690972+07', 'Xã Long Phú', '29752', 'Xã');
INSERT INTO category."Wards" VALUES (29755, 860, 'system', '2023-07-26 08:40:17.690974+07', 'system', '2023-07-26 08:40:17.690974+07', 'Xã Mỹ Thạnh Trung', '29755', 'Xã');
INSERT INTO category."Wards" VALUES (29758, 860, 'system', '2023-07-26 08:40:17.690976+07', 'system', '2023-07-26 08:40:17.690976+07', 'Xã Tường Lộc', '29758', 'Xã');
INSERT INTO category."Wards" VALUES (29761, 860, 'system', '2023-07-26 08:40:17.690978+07', 'system', '2023-07-26 08:40:17.690978+07', 'Xã Loan Mỹ', '29761', 'Xã');
INSERT INTO category."Wards" VALUES (29764, 860, 'system', '2023-07-26 08:40:17.69098+07', 'system', '2023-07-26 08:40:17.69098+07', 'Xã Ngãi Tứ', '29764', 'Xã');
INSERT INTO category."Wards" VALUES (29767, 860, 'system', '2023-07-26 08:40:17.690982+07', 'system', '2023-07-26 08:40:17.690982+07', 'Xã Bình Ninh', '29767', 'Xã');
INSERT INTO category."Wards" VALUES (29770, 861, 'system', '2023-07-26 08:40:17.690984+07', 'system', '2023-07-26 08:40:17.690984+07', 'Phường Cái Vồn', '29770', 'Phường');
INSERT INTO category."Wards" VALUES (29771, 861, 'system', '2023-07-26 08:40:17.690986+07', 'system', '2023-07-26 08:40:17.690986+07', 'Phường Thành Phước', '29771', 'Phường');
INSERT INTO category."Wards" VALUES (29773, 863, 'system', '2023-07-26 08:40:17.691026+07', 'system', '2023-07-26 08:40:17.691027+07', 'Xã Tân Hưng', '29773', 'Xã');
INSERT INTO category."Wards" VALUES (29776, 863, 'system', '2023-07-26 08:40:17.691028+07', 'system', '2023-07-26 08:40:17.691028+07', 'Xã Tân Thành', '29776', 'Xã');
INSERT INTO category."Wards" VALUES (29779, 863, 'system', '2023-07-26 08:40:17.69103+07', 'system', '2023-07-26 08:40:17.69103+07', 'Xã Thành Trung', '29779', 'Xã');
INSERT INTO category."Wards" VALUES (29782, 863, 'system', '2023-07-26 08:40:17.691032+07', 'system', '2023-07-26 08:40:17.691032+07', 'Xã Tân An Thạnh', '29782', 'Xã');
INSERT INTO category."Wards" VALUES (29785, 863, 'system', '2023-07-26 08:40:17.691034+07', 'system', '2023-07-26 08:40:17.691034+07', 'Xã Tân Lược', '29785', 'Xã');
INSERT INTO category."Wards" VALUES (29788, 863, 'system', '2023-07-26 08:40:17.691036+07', 'system', '2023-07-26 08:40:17.691036+07', 'Xã Nguyễn Văn Thảnh', '29788', 'Xã');
INSERT INTO category."Wards" VALUES (29791, 863, 'system', '2023-07-26 08:40:17.691038+07', 'system', '2023-07-26 08:40:17.691038+07', 'Xã Thành Lợi', '29791', 'Xã');
INSERT INTO category."Wards" VALUES (29794, 863, 'system', '2023-07-26 08:40:17.691039+07', 'system', '2023-07-26 08:40:17.69104+07', 'Xã Mỹ Thuận', '29794', 'Xã');
INSERT INTO category."Wards" VALUES (29797, 863, 'system', '2023-07-26 08:40:17.691041+07', 'system', '2023-07-26 08:40:17.691041+07', 'Xã Tân Bình', '29797', 'Xã');
INSERT INTO category."Wards" VALUES (29800, 863, 'system', '2023-07-26 08:40:17.691043+07', 'system', '2023-07-26 08:40:17.691043+07', 'Thị trấn Tân Quới', '29800', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29806, 861, 'system', '2023-07-26 08:40:17.690988+07', 'system', '2023-07-26 08:40:17.690988+07', 'Xã Thuận An', '29806', 'Xã');
INSERT INTO category."Wards" VALUES (29809, 861, 'system', '2023-07-26 08:40:17.690989+07', 'system', '2023-07-26 08:40:17.690989+07', 'Xã Đông Thạnh', '29809', 'Xã');
INSERT INTO category."Wards" VALUES (29812, 861, 'system', '2023-07-26 08:40:17.690991+07', 'system', '2023-07-26 08:40:17.690991+07', 'Xã Đông Bình', '29812', 'Xã');
INSERT INTO category."Wards" VALUES (29813, 861, 'system', '2023-07-26 08:40:17.690993+07', 'system', '2023-07-26 08:40:17.690993+07', 'Phường Đông Thuận', '29813', 'Phường');
INSERT INTO category."Wards" VALUES (29815, 861, 'system', '2023-07-26 08:40:17.690995+07', 'system', '2023-07-26 08:40:17.690995+07', 'Xã Mỹ Hòa', '29815', 'Xã');
INSERT INTO category."Wards" VALUES (29818, 861, 'system', '2023-07-26 08:40:17.690997+07', 'system', '2023-07-26 08:40:17.690997+07', 'Xã Đông Thành', '29818', 'Xã');
INSERT INTO category."Wards" VALUES (29821, 862, 'system', '2023-07-26 08:40:17.690999+07', 'system', '2023-07-26 08:40:17.690999+07', 'Thị trấn Trà Ôn', '29821', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29824, 862, 'system', '2023-07-26 08:40:17.691001+07', 'system', '2023-07-26 08:40:17.691001+07', 'Xã Xuân Hiệp', '29824', 'Xã');
INSERT INTO category."Wards" VALUES (29827, 862, 'system', '2023-07-26 08:40:17.691003+07', 'system', '2023-07-26 08:40:17.691003+07', 'Xã Nhơn Bình', '29827', 'Xã');
INSERT INTO category."Wards" VALUES (29830, 862, 'system', '2023-07-26 08:40:17.691006+07', 'system', '2023-07-26 08:40:17.691006+07', 'Xã Hòa Bình', '29830', 'Xã');
INSERT INTO category."Wards" VALUES (29833, 862, 'system', '2023-07-26 08:40:17.691008+07', 'system', '2023-07-26 08:40:17.691008+07', 'Xã Thới Hòa', '29833', 'Xã');
INSERT INTO category."Wards" VALUES (29836, 862, 'system', '2023-07-26 08:40:17.691009+07', 'system', '2023-07-26 08:40:17.69101+07', 'Xã Trà Côn', '29836', 'Xã');
INSERT INTO category."Wards" VALUES (29839, 862, 'system', '2023-07-26 08:40:17.691011+07', 'system', '2023-07-26 08:40:17.691011+07', 'Xã Tân Mỹ', '29839', 'Xã');
INSERT INTO category."Wards" VALUES (29842, 862, 'system', '2023-07-26 08:40:17.691013+07', 'system', '2023-07-26 08:40:17.691013+07', 'Xã Hựu Thành', '29842', 'Xã');
INSERT INTO category."Wards" VALUES (29845, 862, 'system', '2023-07-26 08:40:17.691015+07', 'system', '2023-07-26 08:40:17.691015+07', 'Xã Vĩnh Xuân', '29845', 'Xã');
INSERT INTO category."Wards" VALUES (29848, 862, 'system', '2023-07-26 08:40:17.691017+07', 'system', '2023-07-26 08:40:17.691017+07', 'Xã Thuận Thới', '29848', 'Xã');
INSERT INTO category."Wards" VALUES (29851, 862, 'system', '2023-07-26 08:40:17.691019+07', 'system', '2023-07-26 08:40:17.691019+07', 'Xã Phú Thành', '29851', 'Xã');
INSERT INTO category."Wards" VALUES (29854, 862, 'system', '2023-07-26 08:40:17.691021+07', 'system', '2023-07-26 08:40:17.691021+07', 'Xã Thiện Mỹ', '29854', 'Xã');
INSERT INTO category."Wards" VALUES (29857, 862, 'system', '2023-07-26 08:40:17.691023+07', 'system', '2023-07-26 08:40:17.691023+07', 'Xã Lục Sỹ Thành', '29857', 'Xã');
INSERT INTO category."Wards" VALUES (29860, 862, 'system', '2023-07-26 08:40:17.691025+07', 'system', '2023-07-26 08:40:17.691025+07', 'Xã Tích Thiện', '29860', 'Xã');
INSERT INTO category."Wards" VALUES (29863, 866, 'system', '2023-07-26 08:40:17.691045+07', 'system', '2023-07-26 08:40:17.691045+07', 'Phường 11', '29863', 'Phường');
INSERT INTO category."Wards" VALUES (29866, 866, 'system', '2023-07-26 08:40:17.691047+07', 'system', '2023-07-26 08:40:17.691047+07', 'Phường 1', '29866', 'Phường');
INSERT INTO category."Wards" VALUES (29869, 866, 'system', '2023-07-26 08:40:17.691049+07', 'system', '2023-07-26 08:40:17.691049+07', 'Phường 2', '29869', 'Phường');
INSERT INTO category."Wards" VALUES (29872, 866, 'system', '2023-07-26 08:40:17.691051+07', 'system', '2023-07-26 08:40:17.691051+07', 'Phường 4', '29872', 'Phường');
INSERT INTO category."Wards" VALUES (29875, 866, 'system', '2023-07-26 08:40:17.691052+07', 'system', '2023-07-26 08:40:17.691052+07', 'Phường 3', '29875', 'Phường');
INSERT INTO category."Wards" VALUES (29878, 866, 'system', '2023-07-26 08:40:17.691054+07', 'system', '2023-07-26 08:40:17.691054+07', 'Phường 6', '29878', 'Phường');
INSERT INTO category."Wards" VALUES (29881, 866, 'system', '2023-07-26 08:40:17.691056+07', 'system', '2023-07-26 08:40:17.691056+07', 'Xã Mỹ Ngãi', '29881', 'Xã');
INSERT INTO category."Wards" VALUES (29884, 866, 'system', '2023-07-26 08:40:17.691058+07', 'system', '2023-07-26 08:40:17.691058+07', 'Xã Mỹ Tân', '29884', 'Xã');
INSERT INTO category."Wards" VALUES (29887, 866, 'system', '2023-07-26 08:40:17.69106+07', 'system', '2023-07-26 08:40:17.69106+07', 'Xã Mỹ Trà', '29887', 'Xã');
INSERT INTO category."Wards" VALUES (29888, 866, 'system', '2023-07-26 08:40:17.691061+07', 'system', '2023-07-26 08:40:17.691061+07', 'Phường Mỹ Phú', '29888', 'Phường');
INSERT INTO category."Wards" VALUES (29890, 866, 'system', '2023-07-26 08:40:17.691063+07', 'system', '2023-07-26 08:40:17.691063+07', 'Xã Tân Thuận Tây', '29890', 'Xã');
INSERT INTO category."Wards" VALUES (29892, 866, 'system', '2023-07-26 08:40:17.691065+07', 'system', '2023-07-26 08:40:17.691065+07', 'Phường Hoà Thuận', '29892', 'Phường');
INSERT INTO category."Wards" VALUES (29893, 866, 'system', '2023-07-26 08:40:17.691067+07', 'system', '2023-07-26 08:40:17.691067+07', 'Xã Hòa An', '29893', 'Xã');
INSERT INTO category."Wards" VALUES (29896, 866, 'system', '2023-07-26 08:40:17.691069+07', 'system', '2023-07-26 08:40:17.691069+07', 'Xã Tân Thuận Đông', '29896', 'Xã');
INSERT INTO category."Wards" VALUES (29899, 866, 'system', '2023-07-26 08:40:17.691071+07', 'system', '2023-07-26 08:40:17.691071+07', 'Xã Tịnh Thới', '29899', 'Xã');
INSERT INTO category."Wards" VALUES (29902, 867, 'system', '2023-07-26 08:40:17.691074+07', 'system', '2023-07-26 08:40:17.691074+07', 'Phường 3', '29902', 'Phường');
INSERT INTO category."Wards" VALUES (29905, 867, 'system', '2023-07-26 08:40:17.691076+07', 'system', '2023-07-26 08:40:17.691076+07', 'Phường 1', '29905', 'Phường');
INSERT INTO category."Wards" VALUES (29908, 867, 'system', '2023-07-26 08:40:17.691077+07', 'system', '2023-07-26 08:40:17.691077+07', 'Phường 4', '29908', 'Phường');
INSERT INTO category."Wards" VALUES (29911, 867, 'system', '2023-07-26 08:40:17.691079+07', 'system', '2023-07-26 08:40:17.691079+07', 'Phường 2', '29911', 'Phường');
INSERT INTO category."Wards" VALUES (29914, 867, 'system', '2023-07-26 08:40:17.691081+07', 'system', '2023-07-26 08:40:17.691081+07', 'Xã Tân Khánh Đông', '29914', 'Xã');
INSERT INTO category."Wards" VALUES (29917, 867, 'system', '2023-07-26 08:40:17.691083+07', 'system', '2023-07-26 08:40:17.691083+07', 'Phường Tân Quy Đông', '29917', 'Phường');
INSERT INTO category."Wards" VALUES (29919, 867, 'system', '2023-07-26 08:40:17.691085+07', 'system', '2023-07-26 08:40:17.691085+07', 'Phường An Hoà', '29919', 'Phường');
INSERT INTO category."Wards" VALUES (29920, 867, 'system', '2023-07-26 08:40:17.691087+07', 'system', '2023-07-26 08:40:17.691087+07', 'Xã Tân Quy Tây', '29920', 'Xã');
INSERT INTO category."Wards" VALUES (29923, 867, 'system', '2023-07-26 08:40:17.691089+07', 'system', '2023-07-26 08:40:17.691089+07', 'Xã Tân Phú Đông', '29923', 'Xã');
INSERT INTO category."Wards" VALUES (29926, 869, 'system', '2023-07-26 08:40:17.691104+07', 'system', '2023-07-26 08:40:17.691104+07', 'Thị trấn Sa Rài', '29926', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29929, 869, 'system', '2023-07-26 08:40:17.691106+07', 'system', '2023-07-26 08:40:17.691106+07', 'Xã Tân Hộ Cơ', '29929', 'Xã');
INSERT INTO category."Wards" VALUES (29932, 869, 'system', '2023-07-26 08:40:17.691108+07', 'system', '2023-07-26 08:40:17.691108+07', 'Xã Thông Bình', '29932', 'Xã');
INSERT INTO category."Wards" VALUES (29935, 869, 'system', '2023-07-26 08:40:17.69111+07', 'system', '2023-07-26 08:40:17.69111+07', 'Xã Bình Phú', '29935', 'Xã');
INSERT INTO category."Wards" VALUES (29938, 869, 'system', '2023-07-26 08:40:17.691111+07', 'system', '2023-07-26 08:40:17.691111+07', 'Xã Tân Thành A', '29938', 'Xã');
INSERT INTO category."Wards" VALUES (29941, 869, 'system', '2023-07-26 08:40:17.691113+07', 'system', '2023-07-26 08:40:17.691113+07', 'Xã Tân Thành B', '29941', 'Xã');
INSERT INTO category."Wards" VALUES (29944, 869, 'system', '2023-07-26 08:40:17.691115+07', 'system', '2023-07-26 08:40:17.691115+07', 'Xã Tân Phước', '29944', 'Xã');
INSERT INTO category."Wards" VALUES (29947, 869, 'system', '2023-07-26 08:40:17.691117+07', 'system', '2023-07-26 08:40:17.691117+07', 'Xã Tân Công Chí', '29947', 'Xã');
INSERT INTO category."Wards" VALUES (29950, 869, 'system', '2023-07-26 08:40:17.691119+07', 'system', '2023-07-26 08:40:17.691119+07', 'Xã An Phước', '29950', 'Xã');
INSERT INTO category."Wards" VALUES (29954, 868, 'system', '2023-07-26 08:40:17.691091+07', 'system', '2023-07-26 08:40:17.691091+07', 'Phường An Lộc', '29954', 'Phường');
INSERT INTO category."Wards" VALUES (29955, 868, 'system', '2023-07-26 08:40:17.691093+07', 'system', '2023-07-26 08:40:17.691093+07', 'Phường An Thạnh', '29955', 'Phường');
INSERT INTO category."Wards" VALUES (29956, 870, 'system', '2023-07-26 08:40:17.691121+07', 'system', '2023-07-26 08:40:17.691121+07', 'Xã Thường Phước 1', '29956', 'Xã');
INSERT INTO category."Wards" VALUES (29959, 868, 'system', '2023-07-26 08:40:17.691095+07', 'system', '2023-07-26 08:40:17.691095+07', 'Xã Bình Thạnh', '29959', 'Xã');
INSERT INTO category."Wards" VALUES (29962, 870, 'system', '2023-07-26 08:40:17.691123+07', 'system', '2023-07-26 08:40:17.691123+07', 'Xã Thường Thới Hậu A', '29962', 'Xã');
INSERT INTO category."Wards" VALUES (29965, 868, 'system', '2023-07-26 08:40:17.691096+07', 'system', '2023-07-26 08:40:17.691096+07', 'Xã Tân Hội', '29965', 'Xã');
INSERT INTO category."Wards" VALUES (29971, 870, 'system', '2023-07-26 08:40:17.691125+07', 'system', '2023-07-26 08:40:17.691125+07', 'Thị trấn Thường Thới Tiền', '29971', 'Thị trấn');
INSERT INTO category."Wards" VALUES (29974, 870, 'system', '2023-07-26 08:40:17.691127+07', 'system', '2023-07-26 08:40:17.691127+07', 'Xã Thường Phước 2', '29974', 'Xã');
INSERT INTO category."Wards" VALUES (29977, 870, 'system', '2023-07-26 08:40:17.691129+07', 'system', '2023-07-26 08:40:17.691129+07', 'Xã Thường Lạc', '29977', 'Xã');
INSERT INTO category."Wards" VALUES (29978, 868, 'system', '2023-07-26 08:40:17.691098+07', 'system', '2023-07-26 08:40:17.691098+07', 'Phường An Lạc', '29978', 'Phường');
INSERT INTO category."Wards" VALUES (29980, 870, 'system', '2023-07-26 08:40:17.691131+07', 'system', '2023-07-26 08:40:17.691131+07', 'Xã Long Khánh A', '29980', 'Xã');
INSERT INTO category."Wards" VALUES (29983, 870, 'system', '2023-07-26 08:40:17.691133+07', 'system', '2023-07-26 08:40:17.691133+07', 'Xã Long Khánh B', '29983', 'Xã');
INSERT INTO category."Wards" VALUES (29986, 868, 'system', '2023-07-26 08:40:17.6911+07', 'system', '2023-07-26 08:40:17.6911+07', 'Phường An Bình B', '29986', 'Phường');
INSERT INTO category."Wards" VALUES (29989, 868, 'system', '2023-07-26 08:40:17.691102+07', 'system', '2023-07-26 08:40:17.691102+07', 'Phường An Bình A', '29989', 'Phường');
INSERT INTO category."Wards" VALUES (29992, 870, 'system', '2023-07-26 08:40:17.691134+07', 'system', '2023-07-26 08:40:17.691134+07', 'Xã Long Thuận', '29992', 'Xã');
INSERT INTO category."Wards" VALUES (29995, 870, 'system', '2023-07-26 08:40:17.691136+07', 'system', '2023-07-26 08:40:17.691136+07', 'Xã Phú Thuận B', '29995', 'Xã');
INSERT INTO category."Wards" VALUES (29998, 870, 'system', '2023-07-26 08:40:17.691138+07', 'system', '2023-07-26 08:40:17.691138+07', 'Xã Phú Thuận A', '29998', 'Xã');
INSERT INTO category."Wards" VALUES (30001, 871, 'system', '2023-07-26 08:40:17.691141+07', 'system', '2023-07-26 08:40:17.691141+07', 'Thị trấn Tràm Chim', '30001', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30004, 871, 'system', '2023-07-26 08:40:17.691143+07', 'system', '2023-07-26 08:40:17.691143+07', 'Xã Hoà Bình', '30004', 'Xã');
INSERT INTO category."Wards" VALUES (30007, 871, 'system', '2023-07-26 08:40:17.691145+07', 'system', '2023-07-26 08:40:17.691145+07', 'Xã Tân Công Sính', '30007', 'Xã');
INSERT INTO category."Wards" VALUES (30010, 871, 'system', '2023-07-26 08:40:17.691147+07', 'system', '2023-07-26 08:40:17.691147+07', 'Xã Phú Hiệp', '30010', 'Xã');
INSERT INTO category."Wards" VALUES (30013, 871, 'system', '2023-07-26 08:40:17.691148+07', 'system', '2023-07-26 08:40:17.691148+07', 'Xã Phú Đức', '30013', 'Xã');
INSERT INTO category."Wards" VALUES (30016, 871, 'system', '2023-07-26 08:40:17.69115+07', 'system', '2023-07-26 08:40:17.69115+07', 'Xã Phú Thành B', '30016', 'Xã');
INSERT INTO category."Wards" VALUES (30019, 871, 'system', '2023-07-26 08:40:17.691152+07', 'system', '2023-07-26 08:40:17.691152+07', 'Xã An Hòa', '30019', 'Xã');
INSERT INTO category."Wards" VALUES (30022, 871, 'system', '2023-07-26 08:40:17.691154+07', 'system', '2023-07-26 08:40:17.691154+07', 'Xã An Long', '30022', 'Xã');
INSERT INTO category."Wards" VALUES (30025, 871, 'system', '2023-07-26 08:40:17.691156+07', 'system', '2023-07-26 08:40:17.691156+07', 'Xã Phú Cường', '30025', 'Xã');
INSERT INTO category."Wards" VALUES (30028, 871, 'system', '2023-07-26 08:40:17.691158+07', 'system', '2023-07-26 08:40:17.691158+07', 'Xã Phú Ninh', '30028', 'Xã');
INSERT INTO category."Wards" VALUES (30031, 871, 'system', '2023-07-26 08:40:17.691159+07', 'system', '2023-07-26 08:40:17.691159+07', 'Xã Phú Thọ', '30031', 'Xã');
INSERT INTO category."Wards" VALUES (30034, 871, 'system', '2023-07-26 08:40:17.691161+07', 'system', '2023-07-26 08:40:17.691161+07', 'Xã Phú Thành A', '30034', 'Xã');
INSERT INTO category."Wards" VALUES (30037, 872, 'system', '2023-07-26 08:40:17.691163+07', 'system', '2023-07-26 08:40:17.691163+07', 'Thị trấn Mỹ An', '30037', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30040, 872, 'system', '2023-07-26 08:40:17.691165+07', 'system', '2023-07-26 08:40:17.691165+07', 'Xã Thạnh Lợi', '30040', 'Xã');
INSERT INTO category."Wards" VALUES (30043, 872, 'system', '2023-07-26 08:40:17.691167+07', 'system', '2023-07-26 08:40:17.691167+07', 'Xã Hưng Thạnh', '30043', 'Xã');
INSERT INTO category."Wards" VALUES (30046, 872, 'system', '2023-07-26 08:40:17.691169+07', 'system', '2023-07-26 08:40:17.691169+07', 'Xã Trường Xuân', '30046', 'Xã');
INSERT INTO category."Wards" VALUES (30049, 872, 'system', '2023-07-26 08:40:17.69117+07', 'system', '2023-07-26 08:40:17.691171+07', 'Xã Tân Kiều', '30049', 'Xã');
INSERT INTO category."Wards" VALUES (30052, 872, 'system', '2023-07-26 08:40:17.691172+07', 'system', '2023-07-26 08:40:17.691172+07', 'Xã Mỹ Hòa', '30052', 'Xã');
INSERT INTO category."Wards" VALUES (30055, 872, 'system', '2023-07-26 08:40:17.691174+07', 'system', '2023-07-26 08:40:17.691174+07', 'Xã Mỹ Quý', '30055', 'Xã');
INSERT INTO category."Wards" VALUES (30058, 872, 'system', '2023-07-26 08:40:17.691176+07', 'system', '2023-07-26 08:40:17.691176+07', 'Xã Mỹ Đông', '30058', 'Xã');
INSERT INTO category."Wards" VALUES (30061, 872, 'system', '2023-07-26 08:40:17.691178+07', 'system', '2023-07-26 08:40:17.691178+07', 'Xã Đốc Binh Kiều', '30061', 'Xã');
INSERT INTO category."Wards" VALUES (30064, 872, 'system', '2023-07-26 08:40:17.69118+07', 'system', '2023-07-26 08:40:17.69118+07', 'Xã Mỹ An', '30064', 'Xã');
INSERT INTO category."Wards" VALUES (30067, 872, 'system', '2023-07-26 08:40:17.691181+07', 'system', '2023-07-26 08:40:17.691181+07', 'Xã Phú Điền', '30067', 'Xã');
INSERT INTO category."Wards" VALUES (30070, 872, 'system', '2023-07-26 08:40:17.691183+07', 'system', '2023-07-26 08:40:17.691183+07', 'Xã Láng Biển', '30070', 'Xã');
INSERT INTO category."Wards" VALUES (30073, 872, 'system', '2023-07-26 08:40:17.691185+07', 'system', '2023-07-26 08:40:17.691185+07', 'Xã Thanh Mỹ', '30073', 'Xã');
INSERT INTO category."Wards" VALUES (30076, 873, 'system', '2023-07-26 08:40:17.691187+07', 'system', '2023-07-26 08:40:17.691187+07', 'Thị trấn Mỹ Thọ', '30076', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30079, 873, 'system', '2023-07-26 08:40:17.691189+07', 'system', '2023-07-26 08:40:17.691189+07', 'Xã Gáo Giồng', '30079', 'Xã');
INSERT INTO category."Wards" VALUES (30082, 873, 'system', '2023-07-26 08:40:17.691191+07', 'system', '2023-07-26 08:40:17.691191+07', 'Xã Phương Thịnh', '30082', 'Xã');
INSERT INTO category."Wards" VALUES (30085, 873, 'system', '2023-07-26 08:40:17.691193+07', 'system', '2023-07-26 08:40:17.691193+07', 'Xã Ba Sao', '30085', 'Xã');
INSERT INTO category."Wards" VALUES (30088, 873, 'system', '2023-07-26 08:40:17.691195+07', 'system', '2023-07-26 08:40:17.691195+07', 'Xã Phong Mỹ', '30088', 'Xã');
INSERT INTO category."Wards" VALUES (30091, 873, 'system', '2023-07-26 08:40:17.691196+07', 'system', '2023-07-26 08:40:17.691197+07', 'Xã Tân Nghĩa', '30091', 'Xã');
INSERT INTO category."Wards" VALUES (30094, 873, 'system', '2023-07-26 08:40:17.691198+07', 'system', '2023-07-26 08:40:17.691198+07', 'Xã Phương Trà', '30094', 'Xã');
INSERT INTO category."Wards" VALUES (30097, 873, 'system', '2023-07-26 08:40:17.6912+07', 'system', '2023-07-26 08:40:17.6912+07', 'Xã Nhị Mỹ', '30097', 'Xã');
INSERT INTO category."Wards" VALUES (30100, 873, 'system', '2023-07-26 08:40:17.691202+07', 'system', '2023-07-26 08:40:17.691202+07', 'Xã Mỹ Thọ', '30100', 'Xã');
INSERT INTO category."Wards" VALUES (30103, 873, 'system', '2023-07-26 08:40:17.691204+07', 'system', '2023-07-26 08:40:17.691204+07', 'Xã Tân Hội Trung', '30103', 'Xã');
INSERT INTO category."Wards" VALUES (30106, 873, 'system', '2023-07-26 08:40:17.691206+07', 'system', '2023-07-26 08:40:17.691206+07', 'Xã An Bình', '30106', 'Xã');
INSERT INTO category."Wards" VALUES (30109, 873, 'system', '2023-07-26 08:40:17.691209+07', 'system', '2023-07-26 08:40:17.691209+07', 'Xã Mỹ Hội', '30109', 'Xã');
INSERT INTO category."Wards" VALUES (30112, 873, 'system', '2023-07-26 08:40:17.691211+07', 'system', '2023-07-26 08:40:17.691211+07', 'Xã Mỹ Hiệp', '30112', 'Xã');
INSERT INTO category."Wards" VALUES (30115, 873, 'system', '2023-07-26 08:40:17.691212+07', 'system', '2023-07-26 08:40:17.691212+07', 'Xã Mỹ Long', '30115', 'Xã');
INSERT INTO category."Wards" VALUES (30118, 873, 'system', '2023-07-26 08:40:17.691214+07', 'system', '2023-07-26 08:40:17.691214+07', 'Xã Bình Hàng Trung', '30118', 'Xã');
INSERT INTO category."Wards" VALUES (30121, 873, 'system', '2023-07-26 08:40:17.691216+07', 'system', '2023-07-26 08:40:17.691216+07', 'Xã Mỹ Xương', '30121', 'Xã');
INSERT INTO category."Wards" VALUES (30124, 873, 'system', '2023-07-26 08:40:17.691218+07', 'system', '2023-07-26 08:40:17.691218+07', 'Xã Bình Hàng Tây', '30124', 'Xã');
INSERT INTO category."Wards" VALUES (30127, 873, 'system', '2023-07-26 08:40:17.69122+07', 'system', '2023-07-26 08:40:17.69122+07', 'Xã Bình Thạnh', '30127', 'Xã');
INSERT INTO category."Wards" VALUES (30130, 874, 'system', '2023-07-26 08:40:17.691222+07', 'system', '2023-07-26 08:40:17.691222+07', 'Thị trấn Thanh Bình', '30130', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30133, 874, 'system', '2023-07-26 08:40:17.691224+07', 'system', '2023-07-26 08:40:17.691224+07', 'Xã Tân Quới', '30133', 'Xã');
INSERT INTO category."Wards" VALUES (30136, 874, 'system', '2023-07-26 08:40:17.691226+07', 'system', '2023-07-26 08:40:17.691226+07', 'Xã Tân Hòa', '30136', 'Xã');
INSERT INTO category."Wards" VALUES (30139, 874, 'system', '2023-07-26 08:40:17.691227+07', 'system', '2023-07-26 08:40:17.691227+07', 'Xã An Phong', '30139', 'Xã');
INSERT INTO category."Wards" VALUES (30142, 874, 'system', '2023-07-26 08:40:17.691229+07', 'system', '2023-07-26 08:40:17.691229+07', 'Xã Phú Lợi', '30142', 'Xã');
INSERT INTO category."Wards" VALUES (30145, 874, 'system', '2023-07-26 08:40:17.691231+07', 'system', '2023-07-26 08:40:17.691231+07', 'Xã Tân Mỹ', '30145', 'Xã');
INSERT INTO category."Wards" VALUES (30148, 874, 'system', '2023-07-26 08:40:17.691233+07', 'system', '2023-07-26 08:40:17.691233+07', 'Xã Bình Tấn', '30148', 'Xã');
INSERT INTO category."Wards" VALUES (30151, 874, 'system', '2023-07-26 08:40:17.691235+07', 'system', '2023-07-26 08:40:17.691235+07', 'Xã Tân Huề', '30151', 'Xã');
INSERT INTO category."Wards" VALUES (30154, 874, 'system', '2023-07-26 08:40:17.691237+07', 'system', '2023-07-26 08:40:17.691237+07', 'Xã Tân Bình', '30154', 'Xã');
INSERT INTO category."Wards" VALUES (30157, 874, 'system', '2023-07-26 08:40:17.691238+07', 'system', '2023-07-26 08:40:17.691238+07', 'Xã Tân Thạnh', '30157', 'Xã');
INSERT INTO category."Wards" VALUES (30160, 874, 'system', '2023-07-26 08:40:17.69124+07', 'system', '2023-07-26 08:40:17.69124+07', 'Xã Tân Phú', '30160', 'Xã');
INSERT INTO category."Wards" VALUES (30163, 874, 'system', '2023-07-26 08:40:17.691242+07', 'system', '2023-07-26 08:40:17.691242+07', 'Xã Bình Thành', '30163', 'Xã');
INSERT INTO category."Wards" VALUES (30166, 874, 'system', '2023-07-26 08:40:17.691244+07', 'system', '2023-07-26 08:40:17.691244+07', 'Xã Tân Long', '30166', 'Xã');
INSERT INTO category."Wards" VALUES (30169, 875, 'system', '2023-07-26 08:40:17.691246+07', 'system', '2023-07-26 08:40:17.691246+07', 'Thị trấn Lấp Vò', '30169', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30172, 875, 'system', '2023-07-26 08:40:17.691248+07', 'system', '2023-07-26 08:40:17.691248+07', 'Xã Mỹ An Hưng A', '30172', 'Xã');
INSERT INTO category."Wards" VALUES (30175, 875, 'system', '2023-07-26 08:40:17.69125+07', 'system', '2023-07-26 08:40:17.69125+07', 'Xã Tân Mỹ', '30175', 'Xã');
INSERT INTO category."Wards" VALUES (30178, 875, 'system', '2023-07-26 08:40:17.691251+07', 'system', '2023-07-26 08:40:17.691251+07', 'Xã Mỹ An Hưng B', '30178', 'Xã');
INSERT INTO category."Wards" VALUES (30181, 875, 'system', '2023-07-26 08:40:17.691253+07', 'system', '2023-07-26 08:40:17.691253+07', 'Xã Tân  Khánh Trung', '30181', 'Xã');
INSERT INTO category."Wards" VALUES (30184, 875, 'system', '2023-07-26 08:40:17.691255+07', 'system', '2023-07-26 08:40:17.691255+07', 'Xã Long Hưng A', '30184', 'Xã');
INSERT INTO category."Wards" VALUES (30187, 875, 'system', '2023-07-26 08:40:17.691257+07', 'system', '2023-07-26 08:40:17.691257+07', 'Xã Vĩnh Thạnh', '30187', 'Xã');
INSERT INTO category."Wards" VALUES (30190, 875, 'system', '2023-07-26 08:40:17.691259+07', 'system', '2023-07-26 08:40:17.691259+07', 'Xã Long Hưng B', '30190', 'Xã');
INSERT INTO category."Wards" VALUES (30193, 875, 'system', '2023-07-26 08:40:17.691261+07', 'system', '2023-07-26 08:40:17.691261+07', 'Xã Bình Thành', '30193', 'Xã');
INSERT INTO category."Wards" VALUES (30196, 875, 'system', '2023-07-26 08:40:17.691263+07', 'system', '2023-07-26 08:40:17.691263+07', 'Xã Định An', '30196', 'Xã');
INSERT INTO category."Wards" VALUES (30199, 875, 'system', '2023-07-26 08:40:17.691264+07', 'system', '2023-07-26 08:40:17.691265+07', 'Xã Định Yên', '30199', 'Xã');
INSERT INTO category."Wards" VALUES (30202, 875, 'system', '2023-07-26 08:40:17.691266+07', 'system', '2023-07-26 08:40:17.691266+07', 'Xã Hội An Đông', '30202', 'Xã');
INSERT INTO category."Wards" VALUES (30205, 875, 'system', '2023-07-26 08:40:17.691268+07', 'system', '2023-07-26 08:40:17.691268+07', 'Xã Bình Thạnh Trung', '30205', 'Xã');
INSERT INTO category."Wards" VALUES (30208, 876, 'system', '2023-07-26 08:40:17.69127+07', 'system', '2023-07-26 08:40:17.69127+07', 'Thị trấn Lai Vung', '30208', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30211, 876, 'system', '2023-07-26 08:40:17.691272+07', 'system', '2023-07-26 08:40:17.691272+07', 'Xã Tân Dương', '30211', 'Xã');
INSERT INTO category."Wards" VALUES (30214, 876, 'system', '2023-07-26 08:40:17.691274+07', 'system', '2023-07-26 08:40:17.691274+07', 'Xã Hòa Thành', '30214', 'Xã');
INSERT INTO category."Wards" VALUES (30217, 876, 'system', '2023-07-26 08:40:17.691277+07', 'system', '2023-07-26 08:40:17.691277+07', 'Xã Long Hậu', '30217', 'Xã');
INSERT INTO category."Wards" VALUES (30220, 876, 'system', '2023-07-26 08:40:17.691278+07', 'system', '2023-07-26 08:40:17.691278+07', 'Xã Tân Phước', '30220', 'Xã');
INSERT INTO category."Wards" VALUES (30223, 876, 'system', '2023-07-26 08:40:17.69128+07', 'system', '2023-07-26 08:40:17.69128+07', 'Xã Hòa Long', '30223', 'Xã');
INSERT INTO category."Wards" VALUES (30226, 876, 'system', '2023-07-26 08:40:17.691282+07', 'system', '2023-07-26 08:40:17.691282+07', 'Xã Tân Thành', '30226', 'Xã');
INSERT INTO category."Wards" VALUES (30229, 876, 'system', '2023-07-26 08:40:17.691284+07', 'system', '2023-07-26 08:40:17.691284+07', 'Xã Long Thắng', '30229', 'Xã');
INSERT INTO category."Wards" VALUES (30232, 876, 'system', '2023-07-26 08:40:17.691286+07', 'system', '2023-07-26 08:40:17.691286+07', 'Xã Vĩnh Thới', '30232', 'Xã');
INSERT INTO category."Wards" VALUES (30235, 876, 'system', '2023-07-26 08:40:17.691288+07', 'system', '2023-07-26 08:40:17.691288+07', 'Xã Tân Hòa', '30235', 'Xã');
INSERT INTO category."Wards" VALUES (30238, 876, 'system', '2023-07-26 08:40:17.691289+07', 'system', '2023-07-26 08:40:17.691289+07', 'Xã Định Hòa', '30238', 'Xã');
INSERT INTO category."Wards" VALUES (30241, 876, 'system', '2023-07-26 08:40:17.691291+07', 'system', '2023-07-26 08:40:17.691291+07', 'Xã Phong Hòa', '30241', 'Xã');
INSERT INTO category."Wards" VALUES (30244, 877, 'system', '2023-07-26 08:40:17.691293+07', 'system', '2023-07-26 08:40:17.691293+07', 'Thị trấn Cái Tàu Hạ', '30244', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30247, 877, 'system', '2023-07-26 08:40:17.691295+07', 'system', '2023-07-26 08:40:17.691295+07', 'Xã An Hiệp', '30247', 'Xã');
INSERT INTO category."Wards" VALUES (30250, 877, 'system', '2023-07-26 08:40:17.691297+07', 'system', '2023-07-26 08:40:17.691297+07', 'Xã An Nhơn', '30250', 'Xã');
INSERT INTO category."Wards" VALUES (30253, 877, 'system', '2023-07-26 08:40:17.691299+07', 'system', '2023-07-26 08:40:17.691299+07', 'Xã Tân Nhuận Đông', '30253', 'Xã');
INSERT INTO category."Wards" VALUES (30256, 877, 'system', '2023-07-26 08:40:17.691301+07', 'system', '2023-07-26 08:40:17.691301+07', 'Xã Tân Bình', '30256', 'Xã');
INSERT INTO category."Wards" VALUES (30259, 877, 'system', '2023-07-26 08:40:17.691303+07', 'system', '2023-07-26 08:40:17.691303+07', 'Xã Tân Phú Trung', '30259', 'Xã');
INSERT INTO category."Wards" VALUES (30262, 877, 'system', '2023-07-26 08:40:17.691305+07', 'system', '2023-07-26 08:40:17.691305+07', 'Xã Phú Long', '30262', 'Xã');
INSERT INTO category."Wards" VALUES (30265, 877, 'system', '2023-07-26 08:40:17.691306+07', 'system', '2023-07-26 08:40:17.691306+07', 'Xã An Phú Thuận', '30265', 'Xã');
INSERT INTO category."Wards" VALUES (30268, 877, 'system', '2023-07-26 08:40:17.691308+07', 'system', '2023-07-26 08:40:17.691308+07', 'Xã Phú Hựu', '30268', 'Xã');
INSERT INTO category."Wards" VALUES (30271, 877, 'system', '2023-07-26 08:40:17.69131+07', 'system', '2023-07-26 08:40:17.69131+07', 'Xã An Khánh', '30271', 'Xã');
INSERT INTO category."Wards" VALUES (30274, 877, 'system', '2023-07-26 08:40:17.691312+07', 'system', '2023-07-26 08:40:17.691312+07', 'Xã Tân Phú', '30274', 'Xã');
INSERT INTO category."Wards" VALUES (30277, 877, 'system', '2023-07-26 08:40:17.691314+07', 'system', '2023-07-26 08:40:17.691314+07', 'Xã Hòa Tân', '30277', 'Xã');
INSERT INTO category."Wards" VALUES (30280, 883, 'system', '2023-07-26 08:40:17.691316+07', 'system', '2023-07-26 08:40:17.691316+07', 'Phường Mỹ Bình', '30280', 'Phường');
INSERT INTO category."Wards" VALUES (30283, 883, 'system', '2023-07-26 08:40:17.691318+07', 'system', '2023-07-26 08:40:17.691318+07', 'Phường Mỹ Long', '30283', 'Phường');
INSERT INTO category."Wards" VALUES (30285, 883, 'system', '2023-07-26 08:40:17.69132+07', 'system', '2023-07-26 08:40:17.69132+07', 'Phường Đông Xuyên', '30285', 'Phường');
INSERT INTO category."Wards" VALUES (30286, 883, 'system', '2023-07-26 08:40:17.691322+07', 'system', '2023-07-26 08:40:17.691322+07', 'Phường Mỹ Xuyên', '30286', 'Phường');
INSERT INTO category."Wards" VALUES (30289, 883, 'system', '2023-07-26 08:40:17.691324+07', 'system', '2023-07-26 08:40:17.691324+07', 'Phường Bình Đức', '30289', 'Phường');
INSERT INTO category."Wards" VALUES (30292, 883, 'system', '2023-07-26 08:40:17.691325+07', 'system', '2023-07-26 08:40:17.691326+07', 'Phường Bình Khánh', '30292', 'Phường');
INSERT INTO category."Wards" VALUES (30295, 883, 'system', '2023-07-26 08:40:17.691327+07', 'system', '2023-07-26 08:40:17.691327+07', 'Phường Mỹ Phước', '30295', 'Phường');
INSERT INTO category."Wards" VALUES (30298, 883, 'system', '2023-07-26 08:40:17.691329+07', 'system', '2023-07-26 08:40:17.691329+07', 'Phường Mỹ Quý', '30298', 'Phường');
INSERT INTO category."Wards" VALUES (30301, 883, 'system', '2023-07-26 08:40:17.691331+07', 'system', '2023-07-26 08:40:17.691331+07', 'Phường Mỹ Thới', '30301', 'Phường');
INSERT INTO category."Wards" VALUES (30304, 883, 'system', '2023-07-26 08:40:17.691333+07', 'system', '2023-07-26 08:40:17.691333+07', 'Phường Mỹ Thạnh', '30304', 'Phường');
INSERT INTO category."Wards" VALUES (30307, 883, 'system', '2023-07-26 08:40:17.691335+07', 'system', '2023-07-26 08:40:17.691335+07', 'Phường Mỹ Hòa', '30307', 'Phường');
INSERT INTO category."Wards" VALUES (30310, 883, 'system', '2023-07-26 08:40:17.691337+07', 'system', '2023-07-26 08:40:17.691337+07', 'Xã Mỹ Khánh', '30310', 'Xã');
INSERT INTO category."Wards" VALUES (30313, 883, 'system', '2023-07-26 08:40:17.691339+07', 'system', '2023-07-26 08:40:17.691339+07', 'Xã Mỹ Hoà Hưng', '30313', 'Xã');
INSERT INTO category."Wards" VALUES (30316, 884, 'system', '2023-07-26 08:40:17.691341+07', 'system', '2023-07-26 08:40:17.691341+07', 'Phường Châu Phú B', '30316', 'Phường');
INSERT INTO category."Wards" VALUES (30319, 884, 'system', '2023-07-26 08:40:17.691343+07', 'system', '2023-07-26 08:40:17.691343+07', 'Phường Châu Phú A', '30319', 'Phường');
INSERT INTO category."Wards" VALUES (30322, 884, 'system', '2023-07-26 08:40:17.691346+07', 'system', '2023-07-26 08:40:17.691346+07', 'Phường Vĩnh Mỹ', '30322', 'Phường');
INSERT INTO category."Wards" VALUES (30325, 884, 'system', '2023-07-26 08:40:17.691348+07', 'system', '2023-07-26 08:40:17.691348+07', 'Phường Núi Sam', '30325', 'Phường');
INSERT INTO category."Wards" VALUES (30328, 884, 'system', '2023-07-26 08:40:17.69135+07', 'system', '2023-07-26 08:40:17.69135+07', 'Phường Vĩnh Ngươn', '30328', 'Phường');
INSERT INTO category."Wards" VALUES (30331, 884, 'system', '2023-07-26 08:40:17.691352+07', 'system', '2023-07-26 08:40:17.691352+07', 'Xã Vĩnh Tế', '30331', 'Xã');
INSERT INTO category."Wards" VALUES (30334, 884, 'system', '2023-07-26 08:40:17.691354+07', 'system', '2023-07-26 08:40:17.691354+07', 'Xã Vĩnh Châu', '30334', 'Xã');
INSERT INTO category."Wards" VALUES (30337, 886, 'system', '2023-07-26 08:40:17.691356+07', 'system', '2023-07-26 08:40:17.691356+07', 'Thị trấn An Phú', '30337', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30340, 886, 'system', '2023-07-26 08:40:17.691358+07', 'system', '2023-07-26 08:40:17.691358+07', 'Xã Khánh An', '30340', 'Xã');
INSERT INTO category."Wards" VALUES (30341, 886, 'system', '2023-07-26 08:40:17.69136+07', 'system', '2023-07-26 08:40:17.69136+07', 'Thị Trấn Long Bình', '30341', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30343, 886, 'system', '2023-07-26 08:40:17.691362+07', 'system', '2023-07-26 08:40:17.691362+07', 'Xã Khánh Bình', '30343', 'Xã');
INSERT INTO category."Wards" VALUES (30346, 886, 'system', '2023-07-26 08:40:17.691364+07', 'system', '2023-07-26 08:40:17.691364+07', 'Xã Quốc Thái', '30346', 'Xã');
INSERT INTO category."Wards" VALUES (30349, 886, 'system', '2023-07-26 08:40:17.691366+07', 'system', '2023-07-26 08:40:17.691366+07', 'Xã Nhơn Hội', '30349', 'Xã');
INSERT INTO category."Wards" VALUES (30352, 886, 'system', '2023-07-26 08:40:17.691367+07', 'system', '2023-07-26 08:40:17.691367+07', 'Xã Phú Hữu', '30352', 'Xã');
INSERT INTO category."Wards" VALUES (30355, 886, 'system', '2023-07-26 08:40:17.691369+07', 'system', '2023-07-26 08:40:17.691369+07', 'Xã Phú Hội', '30355', 'Xã');
INSERT INTO category."Wards" VALUES (30358, 886, 'system', '2023-07-26 08:40:17.691371+07', 'system', '2023-07-26 08:40:17.691371+07', 'Xã Phước Hưng', '30358', 'Xã');
INSERT INTO category."Wards" VALUES (30361, 886, 'system', '2023-07-26 08:40:17.691373+07', 'system', '2023-07-26 08:40:17.691373+07', 'Xã Vĩnh Lộc', '30361', 'Xã');
INSERT INTO category."Wards" VALUES (30364, 886, 'system', '2023-07-26 08:40:17.691375+07', 'system', '2023-07-26 08:40:17.691375+07', 'Xã Vĩnh Hậu', '30364', 'Xã');
INSERT INTO category."Wards" VALUES (30367, 886, 'system', '2023-07-26 08:40:17.691377+07', 'system', '2023-07-26 08:40:17.691377+07', 'Xã Vĩnh Trường', '30367', 'Xã');
INSERT INTO category."Wards" VALUES (30370, 886, 'system', '2023-07-26 08:40:17.691379+07', 'system', '2023-07-26 08:40:17.691379+07', 'Xã Vĩnh Hội Đông', '30370', 'Xã');
INSERT INTO category."Wards" VALUES (30373, 886, 'system', '2023-07-26 08:40:17.691381+07', 'system', '2023-07-26 08:40:17.691381+07', 'Xã Đa Phước', '30373', 'Xã');
INSERT INTO category."Wards" VALUES (30376, 887, 'system', '2023-07-26 08:40:17.691382+07', 'system', '2023-07-26 08:40:17.691383+07', 'Phường Long Thạnh', '30376', 'Phường');
INSERT INTO category."Wards" VALUES (30377, 887, 'system', '2023-07-26 08:40:17.691385+07', 'system', '2023-07-26 08:40:17.691385+07', 'Phường Long Hưng', '30377', 'Phường');
INSERT INTO category."Wards" VALUES (30378, 887, 'system', '2023-07-26 08:40:17.691387+07', 'system', '2023-07-26 08:40:17.691387+07', 'Phường Long Châu', '30378', 'Phường');
INSERT INTO category."Wards" VALUES (30379, 887, 'system', '2023-07-26 08:40:17.691389+07', 'system', '2023-07-26 08:40:17.691389+07', 'Xã Phú Lộc', '30379', 'Xã');
INSERT INTO category."Wards" VALUES (30382, 887, 'system', '2023-07-26 08:40:17.69139+07', 'system', '2023-07-26 08:40:17.69139+07', 'Xã Vĩnh Xương', '30382', 'Xã');
INSERT INTO category."Wards" VALUES (30385, 887, 'system', '2023-07-26 08:40:17.691392+07', 'system', '2023-07-26 08:40:17.691392+07', 'Xã Vĩnh Hòa', '30385', 'Xã');
INSERT INTO category."Wards" VALUES (30387, 887, 'system', '2023-07-26 08:40:17.691394+07', 'system', '2023-07-26 08:40:17.691394+07', 'Xã Tân Thạnh', '30387', 'Xã');
INSERT INTO category."Wards" VALUES (30388, 887, 'system', '2023-07-26 08:40:17.691403+07', 'system', '2023-07-26 08:40:17.691403+07', 'Xã Tân An', '30388', 'Xã');
INSERT INTO category."Wards" VALUES (30391, 887, 'system', '2023-07-26 08:40:17.691405+07', 'system', '2023-07-26 08:40:17.691405+07', 'Xã Long An', '30391', 'Xã');
INSERT INTO category."Wards" VALUES (30394, 887, 'system', '2023-07-26 08:40:17.691407+07', 'system', '2023-07-26 08:40:17.691407+07', 'Phường Long Phú', '30394', 'Phường');
INSERT INTO category."Wards" VALUES (30397, 887, 'system', '2023-07-26 08:40:17.691408+07', 'system', '2023-07-26 08:40:17.691408+07', 'Xã Châu Phong', '30397', 'Xã');
INSERT INTO category."Wards" VALUES (30400, 887, 'system', '2023-07-26 08:40:17.69141+07', 'system', '2023-07-26 08:40:17.69141+07', 'Xã Phú Vĩnh', '30400', 'Xã');
INSERT INTO category."Wards" VALUES (30403, 887, 'system', '2023-07-26 08:40:17.691412+07', 'system', '2023-07-26 08:40:17.691412+07', 'Xã Lê Chánh', '30403', 'Xã');
INSERT INTO category."Wards" VALUES (30406, 888, 'system', '2023-07-26 08:40:17.691416+07', 'system', '2023-07-26 08:40:17.691416+07', 'Thị trấn Phú Mỹ', '30406', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30409, 888, 'system', '2023-07-26 08:40:17.691418+07', 'system', '2023-07-26 08:40:17.691418+07', 'Thị trấn Chợ Vàm', '30409', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30412, 887, 'system', '2023-07-26 08:40:17.691414+07', 'system', '2023-07-26 08:40:17.691414+07', 'Phường Long Sơn', '30412', 'Phường');
INSERT INTO category."Wards" VALUES (30415, 888, 'system', '2023-07-26 08:40:17.691421+07', 'system', '2023-07-26 08:40:17.691421+07', 'Xã Long Hoà', '30415', 'Xã');
INSERT INTO category."Wards" VALUES (30418, 888, 'system', '2023-07-26 08:40:17.691423+07', 'system', '2023-07-26 08:40:17.691423+07', 'Xã Phú Long', '30418', 'Xã');
INSERT INTO category."Wards" VALUES (30421, 888, 'system', '2023-07-26 08:40:17.691424+07', 'system', '2023-07-26 08:40:17.691425+07', 'Xã Phú Lâm', '30421', 'Xã');
INSERT INTO category."Wards" VALUES (30424, 888, 'system', '2023-07-26 08:40:17.691427+07', 'system', '2023-07-26 08:40:17.691427+07', 'Xã Phú Hiệp', '30424', 'Xã');
INSERT INTO category."Wards" VALUES (30427, 888, 'system', '2023-07-26 08:40:17.691428+07', 'system', '2023-07-26 08:40:17.691428+07', 'Xã Phú Thạnh', '30427', 'Xã');
INSERT INTO category."Wards" VALUES (30430, 888, 'system', '2023-07-26 08:40:17.69143+07', 'system', '2023-07-26 08:40:17.69143+07', 'Xã Hoà Lạc', '30430', 'Xã');
INSERT INTO category."Wards" VALUES (30433, 888, 'system', '2023-07-26 08:40:17.691432+07', 'system', '2023-07-26 08:40:17.691432+07', 'Xã Phú Thành', '30433', 'Xã');
INSERT INTO category."Wards" VALUES (30436, 888, 'system', '2023-07-26 08:40:17.691434+07', 'system', '2023-07-26 08:40:17.691434+07', 'Xã Phú An', '30436', 'Xã');
INSERT INTO category."Wards" VALUES (30439, 888, 'system', '2023-07-26 08:40:17.691436+07', 'system', '2023-07-26 08:40:17.691436+07', 'Xã Phú Xuân', '30439', 'Xã');
INSERT INTO category."Wards" VALUES (30442, 888, 'system', '2023-07-26 08:40:17.691438+07', 'system', '2023-07-26 08:40:17.691438+07', 'Xã Hiệp Xương', '30442', 'Xã');
INSERT INTO category."Wards" VALUES (30445, 888, 'system', '2023-07-26 08:40:17.69144+07', 'system', '2023-07-26 08:40:17.69144+07', 'Xã Phú Bình', '30445', 'Xã');
INSERT INTO category."Wards" VALUES (30448, 888, 'system', '2023-07-26 08:40:17.691442+07', 'system', '2023-07-26 08:40:17.691442+07', 'Xã Phú Thọ', '30448', 'Xã');
INSERT INTO category."Wards" VALUES (30451, 888, 'system', '2023-07-26 08:40:17.691443+07', 'system', '2023-07-26 08:40:17.691443+07', 'Xã Phú Hưng', '30451', 'Xã');
INSERT INTO category."Wards" VALUES (30454, 888, 'system', '2023-07-26 08:40:17.691445+07', 'system', '2023-07-26 08:40:17.691445+07', 'Xã Bình Thạnh Đông', '30454', 'Xã');
INSERT INTO category."Wards" VALUES (30457, 888, 'system', '2023-07-26 08:40:17.691447+07', 'system', '2023-07-26 08:40:17.691447+07', 'Xã Tân Hòa', '30457', 'Xã');
INSERT INTO category."Wards" VALUES (30460, 888, 'system', '2023-07-26 08:40:17.691449+07', 'system', '2023-07-26 08:40:17.691449+07', 'Xã Tân Trung', '30460', 'Xã');
INSERT INTO category."Wards" VALUES (30463, 889, 'system', '2023-07-26 08:40:17.691451+07', 'system', '2023-07-26 08:40:17.691451+07', 'Thị trấn Cái Dầu', '30463', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30466, 889, 'system', '2023-07-26 08:40:17.691453+07', 'system', '2023-07-26 08:40:17.691453+07', 'Xã Khánh Hòa', '30466', 'Xã');
INSERT INTO category."Wards" VALUES (30469, 889, 'system', '2023-07-26 08:40:17.691454+07', 'system', '2023-07-26 08:40:17.691454+07', 'Xã Mỹ Đức', '30469', 'Xã');
INSERT INTO category."Wards" VALUES (30472, 889, 'system', '2023-07-26 08:40:17.691456+07', 'system', '2023-07-26 08:40:17.691456+07', 'Xã Mỹ Phú', '30472', 'Xã');
INSERT INTO category."Wards" VALUES (30475, 889, 'system', '2023-07-26 08:40:17.691458+07', 'system', '2023-07-26 08:40:17.691458+07', 'Xã Ô Long Vỹ', '30475', 'Xã');
INSERT INTO category."Wards" VALUES (30478, 889, 'system', '2023-07-26 08:40:17.69146+07', 'system', '2023-07-26 08:40:17.69146+07', 'Thị trấn Vĩnh Thạnh Trung', '30478', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30481, 889, 'system', '2023-07-26 08:40:17.691462+07', 'system', '2023-07-26 08:40:17.691462+07', 'Xã Thạnh Mỹ Tây', '30481', 'Xã');
INSERT INTO category."Wards" VALUES (30484, 889, 'system', '2023-07-26 08:40:17.691464+07', 'system', '2023-07-26 08:40:17.691464+07', 'Xã Bình Long', '30484', 'Xã');
INSERT INTO category."Wards" VALUES (30487, 889, 'system', '2023-07-26 08:40:17.691466+07', 'system', '2023-07-26 08:40:17.691466+07', 'Xã Bình Mỹ', '30487', 'Xã');
INSERT INTO category."Wards" VALUES (30490, 889, 'system', '2023-07-26 08:40:17.691468+07', 'system', '2023-07-26 08:40:17.691468+07', 'Xã Bình Thủy', '30490', 'Xã');
INSERT INTO category."Wards" VALUES (30493, 889, 'system', '2023-07-26 08:40:17.69147+07', 'system', '2023-07-26 08:40:17.69147+07', 'Xã Đào Hữu Cảnh', '30493', 'Xã');
INSERT INTO category."Wards" VALUES (30496, 889, 'system', '2023-07-26 08:40:17.691472+07', 'system', '2023-07-26 08:40:17.691472+07', 'Xã Bình Phú', '30496', 'Xã');
INSERT INTO category."Wards" VALUES (30499, 889, 'system', '2023-07-26 08:40:17.691473+07', 'system', '2023-07-26 08:40:17.691473+07', 'Xã Bình Chánh', '30499', 'Xã');
INSERT INTO category."Wards" VALUES (30502, 890, 'system', '2023-07-26 08:40:17.691475+07', 'system', '2023-07-26 08:40:17.691475+07', 'Thị trấn Nhà Bàng', '30502', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30505, 890, 'system', '2023-07-26 08:40:17.691477+07', 'system', '2023-07-26 08:40:17.691477+07', 'Thị trấn Chi Lăng', '30505', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30508, 890, 'system', '2023-07-26 08:40:17.691479+07', 'system', '2023-07-26 08:40:17.691479+07', 'Xã Núi Voi', '30508', 'Xã');
INSERT INTO category."Wards" VALUES (30511, 890, 'system', '2023-07-26 08:40:17.691481+07', 'system', '2023-07-26 08:40:17.691481+07', 'Xã Nhơn Hưng', '30511', 'Xã');
INSERT INTO category."Wards" VALUES (30514, 890, 'system', '2023-07-26 08:40:17.691483+07', 'system', '2023-07-26 08:40:17.691483+07', 'Xã An Phú', '30514', 'Xã');
INSERT INTO category."Wards" VALUES (30517, 890, 'system', '2023-07-26 08:40:17.691484+07', 'system', '2023-07-26 08:40:17.691484+07', 'Xã Thới Sơn', '30517', 'Xã');
INSERT INTO category."Wards" VALUES (30520, 890, 'system', '2023-07-26 08:40:17.691486+07', 'system', '2023-07-26 08:40:17.691486+07', 'Thị trấn Tịnh Biên', '30520', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30523, 890, 'system', '2023-07-26 08:40:17.691489+07', 'system', '2023-07-26 08:40:17.691489+07', 'Xã Văn Giáo', '30523', 'Xã');
INSERT INTO category."Wards" VALUES (30526, 890, 'system', '2023-07-26 08:40:17.691491+07', 'system', '2023-07-26 08:40:17.691491+07', 'Xã An Cư', '30526', 'Xã');
INSERT INTO category."Wards" VALUES (30529, 890, 'system', '2023-07-26 08:40:17.691493+07', 'system', '2023-07-26 08:40:17.691493+07', 'Xã An Nông', '30529', 'Xã');
INSERT INTO category."Wards" VALUES (30532, 890, 'system', '2023-07-26 08:40:17.691495+07', 'system', '2023-07-26 08:40:17.691495+07', 'Xã Vĩnh Trung', '30532', 'Xã');
INSERT INTO category."Wards" VALUES (30535, 890, 'system', '2023-07-26 08:40:17.691496+07', 'system', '2023-07-26 08:40:17.691497+07', 'Xã Tân Lợi', '30535', 'Xã');
INSERT INTO category."Wards" VALUES (30538, 890, 'system', '2023-07-26 08:40:17.691498+07', 'system', '2023-07-26 08:40:17.691498+07', 'Xã An Hảo', '30538', 'Xã');
INSERT INTO category."Wards" VALUES (30541, 890, 'system', '2023-07-26 08:40:17.6915+07', 'system', '2023-07-26 08:40:17.6915+07', 'Xã Tân Lập', '30541', 'Xã');
INSERT INTO category."Wards" VALUES (30544, 891, 'system', '2023-07-26 08:40:17.691502+07', 'system', '2023-07-26 08:40:17.691502+07', 'Thị trấn Tri Tôn', '30544', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30547, 891, 'system', '2023-07-26 08:40:17.691504+07', 'system', '2023-07-26 08:40:17.691504+07', 'Thị trấn Ba Chúc', '30547', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30550, 891, 'system', '2023-07-26 08:40:17.691506+07', 'system', '2023-07-26 08:40:17.691506+07', 'Xã Lạc Quới', '30550', 'Xã');
INSERT INTO category."Wards" VALUES (30553, 891, 'system', '2023-07-26 08:40:17.691508+07', 'system', '2023-07-26 08:40:17.691508+07', 'Xã Lê Trì', '30553', 'Xã');
INSERT INTO category."Wards" VALUES (30556, 891, 'system', '2023-07-26 08:40:17.69151+07', 'system', '2023-07-26 08:40:17.69151+07', 'Xã Vĩnh Gia', '30556', 'Xã');
INSERT INTO category."Wards" VALUES (30559, 891, 'system', '2023-07-26 08:40:17.691514+07', 'system', '2023-07-26 08:40:17.691514+07', 'Xã Vĩnh Phước', '30559', 'Xã');
INSERT INTO category."Wards" VALUES (30562, 891, 'system', '2023-07-26 08:40:17.691517+07', 'system', '2023-07-26 08:40:17.691517+07', 'Xã Châu Lăng', '30562', 'Xã');
INSERT INTO category."Wards" VALUES (30565, 891, 'system', '2023-07-26 08:40:17.69152+07', 'system', '2023-07-26 08:40:17.69152+07', 'Xã Lương Phi', '30565', 'Xã');
INSERT INTO category."Wards" VALUES (30568, 891, 'system', '2023-07-26 08:40:17.691523+07', 'system', '2023-07-26 08:40:17.691523+07', 'Xã Lương An Trà', '30568', 'Xã');
INSERT INTO category."Wards" VALUES (30571, 891, 'system', '2023-07-26 08:40:17.691525+07', 'system', '2023-07-26 08:40:17.691526+07', 'Xã Tà Đảnh', '30571', 'Xã');
INSERT INTO category."Wards" VALUES (30574, 891, 'system', '2023-07-26 08:40:17.691529+07', 'system', '2023-07-26 08:40:17.691529+07', 'Xã Núi Tô', '30574', 'Xã');
INSERT INTO category."Wards" VALUES (30577, 891, 'system', '2023-07-26 08:40:17.691532+07', 'system', '2023-07-26 08:40:17.691532+07', 'Xã An Tức', '30577', 'Xã');
INSERT INTO category."Wards" VALUES (30580, 891, 'system', '2023-07-26 08:40:17.691535+07', 'system', '2023-07-26 08:40:17.691535+07', 'Thị trấn Cô Tô', '30580', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30583, 891, 'system', '2023-07-26 08:40:17.691539+07', 'system', '2023-07-26 08:40:17.691539+07', 'Xã Tân Tuyến', '30583', 'Xã');
INSERT INTO category."Wards" VALUES (30586, 891, 'system', '2023-07-26 08:40:17.691541+07', 'system', '2023-07-26 08:40:17.691541+07', 'Xã Ô Lâm', '30586', 'Xã');
INSERT INTO category."Wards" VALUES (30589, 892, 'system', '2023-07-26 08:40:17.691544+07', 'system', '2023-07-26 08:40:17.691544+07', 'Thị trấn An Châu', '30589', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30592, 892, 'system', '2023-07-26 08:40:17.691547+07', 'system', '2023-07-26 08:40:17.691547+07', 'Xã An Hòa', '30592', 'Xã');
INSERT INTO category."Wards" VALUES (30595, 892, 'system', '2023-07-26 08:40:17.69155+07', 'system', '2023-07-26 08:40:17.69155+07', 'Xã Cần Đăng', '30595', 'Xã');
INSERT INTO category."Wards" VALUES (30598, 892, 'system', '2023-07-26 08:40:17.691553+07', 'system', '2023-07-26 08:40:17.691553+07', 'Xã Vĩnh Hanh', '30598', 'Xã');
INSERT INTO category."Wards" VALUES (30601, 892, 'system', '2023-07-26 08:40:17.691557+07', 'system', '2023-07-26 08:40:17.691557+07', 'Xã Bình Thạnh', '30601', 'Xã');
INSERT INTO category."Wards" VALUES (30604, 892, 'system', '2023-07-26 08:40:17.69156+07', 'system', '2023-07-26 08:40:17.69156+07', 'Thị trấn Vĩnh Bình', '30604', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30607, 892, 'system', '2023-07-26 08:40:17.691563+07', 'system', '2023-07-26 08:40:17.691563+07', 'Xã Bình Hòa', '30607', 'Xã');
INSERT INTO category."Wards" VALUES (30610, 892, 'system', '2023-07-26 08:40:17.691567+07', 'system', '2023-07-26 08:40:17.691567+07', 'Xã Vĩnh An', '30610', 'Xã');
INSERT INTO category."Wards" VALUES (30613, 892, 'system', '2023-07-26 08:40:17.69157+07', 'system', '2023-07-26 08:40:17.69157+07', 'Xã Hòa Bình Thạnh', '30613', 'Xã');
INSERT INTO category."Wards" VALUES (30616, 892, 'system', '2023-07-26 08:40:17.691573+07', 'system', '2023-07-26 08:40:17.691573+07', 'Xã Vĩnh Lợi', '30616', 'Xã');
INSERT INTO category."Wards" VALUES (30619, 892, 'system', '2023-07-26 08:40:17.691576+07', 'system', '2023-07-26 08:40:17.691576+07', 'Xã Vĩnh Nhuận', '30619', 'Xã');
INSERT INTO category."Wards" VALUES (30622, 892, 'system', '2023-07-26 08:40:17.691579+07', 'system', '2023-07-26 08:40:17.691579+07', 'Xã Tân Phú', '30622', 'Xã');
INSERT INTO category."Wards" VALUES (30625, 892, 'system', '2023-07-26 08:40:17.691582+07', 'system', '2023-07-26 08:40:17.691582+07', 'Xã Vĩnh Thành', '30625', 'Xã');
INSERT INTO category."Wards" VALUES (30628, 893, 'system', '2023-07-26 08:40:17.691585+07', 'system', '2023-07-26 08:40:17.691585+07', 'Thị trấn Chợ Mới', '30628', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30631, 893, 'system', '2023-07-26 08:40:17.69159+07', 'system', '2023-07-26 08:40:17.69159+07', 'Thị trấn Mỹ Luông', '30631', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30634, 893, 'system', '2023-07-26 08:40:17.691594+07', 'system', '2023-07-26 08:40:17.691594+07', 'Xã Kiến An', '30634', 'Xã');
INSERT INTO category."Wards" VALUES (30637, 893, 'system', '2023-07-26 08:40:17.691597+07', 'system', '2023-07-26 08:40:17.691597+07', 'Xã Mỹ Hội Đông', '30637', 'Xã');
INSERT INTO category."Wards" VALUES (30640, 893, 'system', '2023-07-26 08:40:17.691601+07', 'system', '2023-07-26 08:40:17.691601+07', 'Xã Long Điền A', '30640', 'Xã');
INSERT INTO category."Wards" VALUES (30643, 893, 'system', '2023-07-26 08:40:17.691604+07', 'system', '2023-07-26 08:40:17.691604+07', 'Xã Tấn Mỹ', '30643', 'Xã');
INSERT INTO category."Wards" VALUES (30646, 893, 'system', '2023-07-26 08:40:17.691608+07', 'system', '2023-07-26 08:40:17.691608+07', 'Xã Long Điền B', '30646', 'Xã');
INSERT INTO category."Wards" VALUES (30649, 893, 'system', '2023-07-26 08:40:17.691611+07', 'system', '2023-07-26 08:40:17.691611+07', 'Xã Kiến Thành', '30649', 'Xã');
INSERT INTO category."Wards" VALUES (30652, 893, 'system', '2023-07-26 08:40:17.691614+07', 'system', '2023-07-26 08:40:17.691614+07', 'Xã Mỹ Hiệp', '30652', 'Xã');
INSERT INTO category."Wards" VALUES (30655, 893, 'system', '2023-07-26 08:40:17.691617+07', 'system', '2023-07-26 08:40:17.691617+07', 'Xã Mỹ An', '30655', 'Xã');
INSERT INTO category."Wards" VALUES (30658, 893, 'system', '2023-07-26 08:40:17.691621+07', 'system', '2023-07-26 08:40:17.691621+07', 'Xã Nhơn Mỹ', '30658', 'Xã');
INSERT INTO category."Wards" VALUES (30661, 893, 'system', '2023-07-26 08:40:17.691624+07', 'system', '2023-07-26 08:40:17.691624+07', 'Xã Long Giang', '30661', 'Xã');
INSERT INTO category."Wards" VALUES (30664, 893, 'system', '2023-07-26 08:40:17.691627+07', 'system', '2023-07-26 08:40:17.691627+07', 'Xã Long Kiến', '30664', 'Xã');
INSERT INTO category."Wards" VALUES (30667, 893, 'system', '2023-07-26 08:40:17.69163+07', 'system', '2023-07-26 08:40:17.69163+07', 'Xã Bình Phước Xuân', '30667', 'Xã');
INSERT INTO category."Wards" VALUES (30670, 893, 'system', '2023-07-26 08:40:17.691633+07', 'system', '2023-07-26 08:40:17.691633+07', 'Xã An Thạnh Trung', '30670', 'Xã');
INSERT INTO category."Wards" VALUES (30673, 893, 'system', '2023-07-26 08:40:17.691641+07', 'system', '2023-07-26 08:40:17.691642+07', 'Xã Hội An', '30673', 'Xã');
INSERT INTO category."Wards" VALUES (30676, 893, 'system', '2023-07-26 08:40:17.691655+07', 'system', '2023-07-26 08:40:17.691655+07', 'Xã Hòa Bình', '30676', 'Xã');
INSERT INTO category."Wards" VALUES (30679, 893, 'system', '2023-07-26 08:40:17.691663+07', 'system', '2023-07-26 08:40:17.691663+07', 'Xã Hòa An', '30679', 'Xã');
INSERT INTO category."Wards" VALUES (30682, 894, 'system', '2023-07-26 08:40:17.691666+07', 'system', '2023-07-26 08:40:17.691666+07', 'Thị trấn Núi Sập', '30682', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30685, 894, 'system', '2023-07-26 08:40:17.69167+07', 'system', '2023-07-26 08:40:17.691671+07', 'Thị trấn Phú Hoà', '30685', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30688, 894, 'system', '2023-07-26 08:40:17.691675+07', 'system', '2023-07-26 08:40:17.691675+07', 'Thị Trấn Óc Eo', '30688', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30691, 894, 'system', '2023-07-26 08:40:17.691678+07', 'system', '2023-07-26 08:40:17.691679+07', 'Xã Tây Phú', '30691', 'Xã');
INSERT INTO category."Wards" VALUES (30692, 894, 'system', '2023-07-26 08:40:17.691682+07', 'system', '2023-07-26 08:40:17.691682+07', 'Xã An Bình', '30692', 'Xã');
INSERT INTO category."Wards" VALUES (30694, 894, 'system', '2023-07-26 08:40:17.691686+07', 'system', '2023-07-26 08:40:17.691686+07', 'Xã Vĩnh Phú', '30694', 'Xã');
INSERT INTO category."Wards" VALUES (30697, 894, 'system', '2023-07-26 08:40:17.691689+07', 'system', '2023-07-26 08:40:17.691689+07', 'Xã Vĩnh Trạch', '30697', 'Xã');
INSERT INTO category."Wards" VALUES (30700, 894, 'system', '2023-07-26 08:40:17.691693+07', 'system', '2023-07-26 08:40:17.691693+07', 'Xã Phú Thuận', '30700', 'Xã');
INSERT INTO category."Wards" VALUES (30703, 894, 'system', '2023-07-26 08:40:17.691696+07', 'system', '2023-07-26 08:40:17.691696+07', 'Xã Vĩnh Chánh', '30703', 'Xã');
INSERT INTO category."Wards" VALUES (30706, 894, 'system', '2023-07-26 08:40:17.6917+07', 'system', '2023-07-26 08:40:17.6917+07', 'Xã Định Mỹ', '30706', 'Xã');
INSERT INTO category."Wards" VALUES (30709, 894, 'system', '2023-07-26 08:40:17.691703+07', 'system', '2023-07-26 08:40:17.691703+07', 'Xã Định Thành', '30709', 'Xã');
INSERT INTO category."Wards" VALUES (30712, 894, 'system', '2023-07-26 08:40:17.691707+07', 'system', '2023-07-26 08:40:17.691707+07', 'Xã Mỹ Phú Đông', '30712', 'Xã');
INSERT INTO category."Wards" VALUES (30715, 894, 'system', '2023-07-26 08:40:17.69171+07', 'system', '2023-07-26 08:40:17.691711+07', 'Xã Vọng Đông', '30715', 'Xã');
INSERT INTO category."Wards" VALUES (30718, 894, 'system', '2023-07-26 08:40:17.691714+07', 'system', '2023-07-26 08:40:17.691714+07', 'Xã Vĩnh Khánh', '30718', 'Xã');
INSERT INTO category."Wards" VALUES (30721, 894, 'system', '2023-07-26 08:40:17.691718+07', 'system', '2023-07-26 08:40:17.691718+07', 'Xã Thoại Giang', '30721', 'Xã');
INSERT INTO category."Wards" VALUES (30724, 894, 'system', '2023-07-26 08:40:17.691721+07', 'system', '2023-07-26 08:40:17.691721+07', 'Xã Bình Thành', '30724', 'Xã');
INSERT INTO category."Wards" VALUES (30727, 894, 'system', '2023-07-26 08:40:17.691724+07', 'system', '2023-07-26 08:40:17.691724+07', 'Xã Vọng Thê', '30727', 'Xã');
INSERT INTO category."Wards" VALUES (30730, 899, 'system', '2023-07-26 08:40:17.691728+07', 'system', '2023-07-26 08:40:17.691728+07', 'Phường Vĩnh Thanh Vân', '30730', 'Phường');
INSERT INTO category."Wards" VALUES (30733, 899, 'system', '2023-07-26 08:40:17.691732+07', 'system', '2023-07-26 08:40:17.691732+07', 'Phường Vĩnh Thanh', '30733', 'Phường');
INSERT INTO category."Wards" VALUES (30736, 899, 'system', '2023-07-26 08:40:17.691736+07', 'system', '2023-07-26 08:40:17.691737+07', 'Phường Vĩnh Quang', '30736', 'Phường');
INSERT INTO category."Wards" VALUES (30739, 899, 'system', '2023-07-26 08:40:17.69174+07', 'system', '2023-07-26 08:40:17.69174+07', 'Phường Vĩnh Hiệp', '30739', 'Phường');
INSERT INTO category."Wards" VALUES (30742, 899, 'system', '2023-07-26 08:40:17.691744+07', 'system', '2023-07-26 08:40:17.691771+07', 'Phường Vĩnh Bảo', '30742', 'Phường');
INSERT INTO category."Wards" VALUES (30745, 899, 'system', '2023-07-26 08:40:17.691783+07', 'system', '2023-07-26 08:40:17.691783+07', 'Phường Vĩnh Lạc', '30745', 'Phường');
INSERT INTO category."Wards" VALUES (30748, 899, 'system', '2023-07-26 08:40:17.691786+07', 'system', '2023-07-26 08:40:17.691786+07', 'Phường An Hòa', '30748', 'Phường');
INSERT INTO category."Wards" VALUES (30751, 899, 'system', '2023-07-26 08:40:17.691788+07', 'system', '2023-07-26 08:40:17.691788+07', 'Phường An Bình', '30751', 'Phường');
INSERT INTO category."Wards" VALUES (30754, 899, 'system', '2023-07-26 08:40:17.69179+07', 'system', '2023-07-26 08:40:17.69179+07', 'Phường Rạch Sỏi', '30754', 'Phường');
INSERT INTO category."Wards" VALUES (30757, 899, 'system', '2023-07-26 08:40:17.691792+07', 'system', '2023-07-26 08:40:17.691792+07', 'Phường Vĩnh Lợi', '30757', 'Phường');
INSERT INTO category."Wards" VALUES (30760, 899, 'system', '2023-07-26 08:40:17.691794+07', 'system', '2023-07-26 08:40:17.691794+07', 'Phường Vĩnh Thông', '30760', 'Phường');
INSERT INTO category."Wards" VALUES (30763, 899, 'system', '2023-07-26 08:40:17.691796+07', 'system', '2023-07-26 08:40:17.691796+07', 'Xã Phi Thông', '30763', 'Xã');
INSERT INTO category."Wards" VALUES (30766, 900, 'system', '2023-07-26 08:40:17.691798+07', 'system', '2023-07-26 08:40:17.691798+07', 'Phường Tô Châu', '30766', 'Phường');
INSERT INTO category."Wards" VALUES (30769, 900, 'system', '2023-07-26 08:40:17.6918+07', 'system', '2023-07-26 08:40:17.6918+07', 'Phường Đông Hồ', '30769', 'Phường');
INSERT INTO category."Wards" VALUES (30772, 900, 'system', '2023-07-26 08:40:17.691802+07', 'system', '2023-07-26 08:40:17.691802+07', 'Phường Bình San', '30772', 'Phường');
INSERT INTO category."Wards" VALUES (30775, 900, 'system', '2023-07-26 08:40:17.691804+07', 'system', '2023-07-26 08:40:17.691804+07', 'Phường Pháo Đài', '30775', 'Phường');
INSERT INTO category."Wards" VALUES (30778, 900, 'system', '2023-07-26 08:40:17.691806+07', 'system', '2023-07-26 08:40:17.691806+07', 'Phường Mỹ Đức', '30778', 'Phường');
INSERT INTO category."Wards" VALUES (30781, 900, 'system', '2023-07-26 08:40:17.691808+07', 'system', '2023-07-26 08:40:17.691808+07', 'Xã Tiên Hải', '30781', 'Xã');
INSERT INTO category."Wards" VALUES (30784, 900, 'system', '2023-07-26 08:40:17.69181+07', 'system', '2023-07-26 08:40:17.69181+07', 'Xã Thuận Yên', '30784', 'Xã');
INSERT INTO category."Wards" VALUES (30787, 902, 'system', '2023-07-26 08:40:17.691811+07', 'system', '2023-07-26 08:40:17.691812+07', 'Thị trấn Kiên Lương', '30787', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30790, 902, 'system', '2023-07-26 08:40:17.691814+07', 'system', '2023-07-26 08:40:17.691814+07', 'Xã Kiên Bình', '30790', 'Xã');
INSERT INTO category."Wards" VALUES (30791, 914, 'system', '2023-07-26 08:40:17.692051+07', 'system', '2023-07-26 08:40:17.692051+07', 'Xã Vĩnh Phú', '30791', 'Xã');
INSERT INTO category."Wards" VALUES (30793, 914, 'system', '2023-07-26 08:40:17.692053+07', 'system', '2023-07-26 08:40:17.692053+07', 'Xã Vĩnh Điều', '30793', 'Xã');
INSERT INTO category."Wards" VALUES (30796, 914, 'system', '2023-07-26 08:40:17.692055+07', 'system', '2023-07-26 08:40:17.692055+07', 'Xã Tân Khánh Hòa', '30796', 'Xã');
INSERT INTO category."Wards" VALUES (30797, 914, 'system', '2023-07-26 08:40:17.692056+07', 'system', '2023-07-26 08:40:17.692056+07', 'Xã Phú Lợi', '30797', 'Xã');
INSERT INTO category."Wards" VALUES (30799, 914, 'system', '2023-07-26 08:40:17.692058+07', 'system', '2023-07-26 08:40:17.692058+07', 'Xã Phú Mỹ', '30799', 'Xã');
INSERT INTO category."Wards" VALUES (30802, 902, 'system', '2023-07-26 08:40:17.691815+07', 'system', '2023-07-26 08:40:17.691815+07', 'Xã Hòa Điền', '30802', 'Xã');
INSERT INTO category."Wards" VALUES (30805, 902, 'system', '2023-07-26 08:40:17.691817+07', 'system', '2023-07-26 08:40:17.691817+07', 'Xã Dương Hòa', '30805', 'Xã');
INSERT INTO category."Wards" VALUES (30808, 902, 'system', '2023-07-26 08:40:17.691819+07', 'system', '2023-07-26 08:40:17.691819+07', 'Xã Bình An', '30808', 'Xã');
INSERT INTO category."Wards" VALUES (30809, 902, 'system', '2023-07-26 08:40:17.691821+07', 'system', '2023-07-26 08:40:17.691821+07', 'Xã Bình Trị', '30809', 'Xã');
INSERT INTO category."Wards" VALUES (30811, 902, 'system', '2023-07-26 08:40:17.691823+07', 'system', '2023-07-26 08:40:17.691823+07', 'Xã Sơn Hải', '30811', 'Xã');
INSERT INTO category."Wards" VALUES (30814, 902, 'system', '2023-07-26 08:40:17.691825+07', 'system', '2023-07-26 08:40:17.691825+07', 'Xã Hòn Nghệ', '30814', 'Xã');
INSERT INTO category."Wards" VALUES (30817, 903, 'system', '2023-07-26 08:40:17.691827+07', 'system', '2023-07-26 08:40:17.691827+07', 'Thị trấn Hòn Đất', '30817', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30820, 903, 'system', '2023-07-26 08:40:17.691829+07', 'system', '2023-07-26 08:40:17.691829+07', 'Thị trấn Sóc Sơn', '30820', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30823, 903, 'system', '2023-07-26 08:40:17.691831+07', 'system', '2023-07-26 08:40:17.691831+07', 'Xã Bình Sơn', '30823', 'Xã');
INSERT INTO category."Wards" VALUES (30826, 903, 'system', '2023-07-26 08:40:17.691833+07', 'system', '2023-07-26 08:40:17.691833+07', 'Xã Bình Giang', '30826', 'Xã');
INSERT INTO category."Wards" VALUES (30828, 903, 'system', '2023-07-26 08:40:17.691834+07', 'system', '2023-07-26 08:40:17.691835+07', 'Xã Mỹ Thái', '30828', 'Xã');
INSERT INTO category."Wards" VALUES (30829, 903, 'system', '2023-07-26 08:40:17.691836+07', 'system', '2023-07-26 08:40:17.691836+07', 'Xã Nam Thái Sơn', '30829', 'Xã');
INSERT INTO category."Wards" VALUES (30832, 903, 'system', '2023-07-26 08:40:17.691838+07', 'system', '2023-07-26 08:40:17.691838+07', 'Xã Mỹ Hiệp Sơn', '30832', 'Xã');
INSERT INTO category."Wards" VALUES (30835, 903, 'system', '2023-07-26 08:40:17.69184+07', 'system', '2023-07-26 08:40:17.69184+07', 'Xã Sơn Kiên', '30835', 'Xã');
INSERT INTO category."Wards" VALUES (30836, 903, 'system', '2023-07-26 08:40:17.691842+07', 'system', '2023-07-26 08:40:17.691842+07', 'Xã Sơn Bình', '30836', 'Xã');
INSERT INTO category."Wards" VALUES (30838, 903, 'system', '2023-07-26 08:40:17.691843+07', 'system', '2023-07-26 08:40:17.691843+07', 'Xã Mỹ Thuận', '30838', 'Xã');
INSERT INTO category."Wards" VALUES (30840, 903, 'system', '2023-07-26 08:40:17.691847+07', 'system', '2023-07-26 08:40:17.691847+07', 'Xã Lình Huỳnh', '30840', 'Xã');
INSERT INTO category."Wards" VALUES (30841, 903, 'system', '2023-07-26 08:40:17.691849+07', 'system', '2023-07-26 08:40:17.691849+07', 'Xã Thổ Sơn', '30841', 'Xã');
INSERT INTO category."Wards" VALUES (30844, 903, 'system', '2023-07-26 08:40:17.691851+07', 'system', '2023-07-26 08:40:17.691851+07', 'Xã Mỹ Lâm', '30844', 'Xã');
INSERT INTO category."Wards" VALUES (30847, 903, 'system', '2023-07-26 08:40:17.691852+07', 'system', '2023-07-26 08:40:17.691852+07', 'Xã Mỹ Phước', '30847', 'Xã');
INSERT INTO category."Wards" VALUES (30850, 904, 'system', '2023-07-26 08:40:17.691854+07', 'system', '2023-07-26 08:40:17.691854+07', 'Thị trấn Tân Hiệp', '30850', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30853, 904, 'system', '2023-07-26 08:40:17.691856+07', 'system', '2023-07-26 08:40:17.691856+07', 'Xã Tân Hội', '30853', 'Xã');
INSERT INTO category."Wards" VALUES (30856, 904, 'system', '2023-07-26 08:40:17.691858+07', 'system', '2023-07-26 08:40:17.691858+07', 'Xã Tân Thành', '30856', 'Xã');
INSERT INTO category."Wards" VALUES (30859, 904, 'system', '2023-07-26 08:40:17.69186+07', 'system', '2023-07-26 08:40:17.69186+07', 'Xã Tân Hiệp B', '30859', 'Xã');
INSERT INTO category."Wards" VALUES (30860, 904, 'system', '2023-07-26 08:40:17.691862+07', 'system', '2023-07-26 08:40:17.691862+07', 'Xã Tân Hoà', '30860', 'Xã');
INSERT INTO category."Wards" VALUES (30862, 904, 'system', '2023-07-26 08:40:17.691864+07', 'system', '2023-07-26 08:40:17.691864+07', 'Xã Thạnh Đông B', '30862', 'Xã');
INSERT INTO category."Wards" VALUES (30865, 904, 'system', '2023-07-26 08:40:17.691866+07', 'system', '2023-07-26 08:40:17.691866+07', 'Xã Thạnh Đông', '30865', 'Xã');
INSERT INTO category."Wards" VALUES (30868, 904, 'system', '2023-07-26 08:40:17.691868+07', 'system', '2023-07-26 08:40:17.691868+07', 'Xã Tân Hiệp A', '30868', 'Xã');
INSERT INTO category."Wards" VALUES (30871, 904, 'system', '2023-07-26 08:40:17.69187+07', 'system', '2023-07-26 08:40:17.69187+07', 'Xã Tân An', '30871', 'Xã');
INSERT INTO category."Wards" VALUES (30874, 904, 'system', '2023-07-26 08:40:17.691871+07', 'system', '2023-07-26 08:40:17.691871+07', 'Xã Thạnh Đông A', '30874', 'Xã');
INSERT INTO category."Wards" VALUES (30877, 904, 'system', '2023-07-26 08:40:17.691884+07', 'system', '2023-07-26 08:40:17.691884+07', 'Xã Thạnh Trị', '30877', 'Xã');
INSERT INTO category."Wards" VALUES (30880, 905, 'system', '2023-07-26 08:40:17.691886+07', 'system', '2023-07-26 08:40:17.691886+07', 'Thị trấn Minh Lương', '30880', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30883, 905, 'system', '2023-07-26 08:40:17.691888+07', 'system', '2023-07-26 08:40:17.691888+07', 'Xã Mong Thọ A', '30883', 'Xã');
INSERT INTO category."Wards" VALUES (30886, 905, 'system', '2023-07-26 08:40:17.69189+07', 'system', '2023-07-26 08:40:17.69189+07', 'Xã Mong Thọ B', '30886', 'Xã');
INSERT INTO category."Wards" VALUES (30887, 905, 'system', '2023-07-26 08:40:17.691892+07', 'system', '2023-07-26 08:40:17.691892+07', 'Xã Mong Thọ', '30887', 'Xã');
INSERT INTO category."Wards" VALUES (30889, 905, 'system', '2023-07-26 08:40:17.691894+07', 'system', '2023-07-26 08:40:17.691894+07', 'Xã Giục Tượng', '30889', 'Xã');
INSERT INTO category."Wards" VALUES (30892, 905, 'system', '2023-07-26 08:40:17.691896+07', 'system', '2023-07-26 08:40:17.691896+07', 'Xã Vĩnh Hòa Hiệp', '30892', 'Xã');
INSERT INTO category."Wards" VALUES (30893, 905, 'system', '2023-07-26 08:40:17.691898+07', 'system', '2023-07-26 08:40:17.691898+07', 'Xã Vĩnh Hoà Phú', '30893', 'Xã');
INSERT INTO category."Wards" VALUES (30895, 905, 'system', '2023-07-26 08:40:17.6919+07', 'system', '2023-07-26 08:40:17.6919+07', 'Xã Minh Hòa', '30895', 'Xã');
INSERT INTO category."Wards" VALUES (30898, 905, 'system', '2023-07-26 08:40:17.691902+07', 'system', '2023-07-26 08:40:17.691902+07', 'Xã Bình An', '30898', 'Xã');
INSERT INTO category."Wards" VALUES (30901, 905, 'system', '2023-07-26 08:40:17.691904+07', 'system', '2023-07-26 08:40:17.691904+07', 'Xã Thạnh Lộc', '30901', 'Xã');
INSERT INTO category."Wards" VALUES (30904, 906, 'system', '2023-07-26 08:40:17.691905+07', 'system', '2023-07-26 08:40:17.691905+07', 'Thị Trấn Giồng Riềng', '30904', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30907, 906, 'system', '2023-07-26 08:40:17.691907+07', 'system', '2023-07-26 08:40:17.691907+07', 'Xã Thạnh Hưng', '30907', 'Xã');
INSERT INTO category."Wards" VALUES (30910, 906, 'system', '2023-07-26 08:40:17.691909+07', 'system', '2023-07-26 08:40:17.691909+07', 'Xã Thạnh Phước', '30910', 'Xã');
INSERT INTO category."Wards" VALUES (30913, 906, 'system', '2023-07-26 08:40:17.691911+07', 'system', '2023-07-26 08:40:17.691911+07', 'Xã Thạnh Lộc', '30913', 'Xã');
INSERT INTO category."Wards" VALUES (30916, 906, 'system', '2023-07-26 08:40:17.691913+07', 'system', '2023-07-26 08:40:17.691913+07', 'Xã Thạnh Hòa', '30916', 'Xã');
INSERT INTO category."Wards" VALUES (30917, 906, 'system', '2023-07-26 08:40:17.691915+07', 'system', '2023-07-26 08:40:17.691915+07', 'Xã Thạnh Bình', '30917', 'Xã');
INSERT INTO category."Wards" VALUES (30919, 906, 'system', '2023-07-26 08:40:17.691917+07', 'system', '2023-07-26 08:40:17.691917+07', 'Xã Bàn Thạch', '30919', 'Xã');
INSERT INTO category."Wards" VALUES (30922, 906, 'system', '2023-07-26 08:40:17.691919+07', 'system', '2023-07-26 08:40:17.691919+07', 'Xã Bàn Tân Định', '30922', 'Xã');
INSERT INTO category."Wards" VALUES (30925, 906, 'system', '2023-07-26 08:40:17.691921+07', 'system', '2023-07-26 08:40:17.691921+07', 'Xã Ngọc Thành', '30925', 'Xã');
INSERT INTO category."Wards" VALUES (30928, 906, 'system', '2023-07-26 08:40:17.691922+07', 'system', '2023-07-26 08:40:17.691923+07', 'Xã Ngọc Chúc', '30928', 'Xã');
INSERT INTO category."Wards" VALUES (30931, 906, 'system', '2023-07-26 08:40:17.691924+07', 'system', '2023-07-26 08:40:17.691924+07', 'Xã Ngọc Thuận', '30931', 'Xã');
INSERT INTO category."Wards" VALUES (30934, 906, 'system', '2023-07-26 08:40:17.691926+07', 'system', '2023-07-26 08:40:17.691926+07', 'Xã Hòa Hưng', '30934', 'Xã');
INSERT INTO category."Wards" VALUES (30937, 906, 'system', '2023-07-26 08:40:17.691929+07', 'system', '2023-07-26 08:40:17.691929+07', 'Xã Hoà Lợi', '30937', 'Xã');
INSERT INTO category."Wards" VALUES (30940, 906, 'system', '2023-07-26 08:40:17.691931+07', 'system', '2023-07-26 08:40:17.691931+07', 'Xã Hoà An', '30940', 'Xã');
INSERT INTO category."Wards" VALUES (30943, 906, 'system', '2023-07-26 08:40:17.691933+07', 'system', '2023-07-26 08:40:17.691933+07', 'Xã Long Thạnh', '30943', 'Xã');
INSERT INTO category."Wards" VALUES (30946, 906, 'system', '2023-07-26 08:40:17.691934+07', 'system', '2023-07-26 08:40:17.691934+07', 'Xã Vĩnh Thạnh', '30946', 'Xã');
INSERT INTO category."Wards" VALUES (30947, 906, 'system', '2023-07-26 08:40:17.691936+07', 'system', '2023-07-26 08:40:17.691936+07', 'Xã Vĩnh Phú', '30947', 'Xã');
INSERT INTO category."Wards" VALUES (30949, 906, 'system', '2023-07-26 08:40:17.691938+07', 'system', '2023-07-26 08:40:17.691938+07', 'Xã  Hòa Thuận', '30949', 'Xã');
INSERT INTO category."Wards" VALUES (30950, 906, 'system', '2023-07-26 08:40:17.69194+07', 'system', '2023-07-26 08:40:17.69194+07', 'Xã Ngọc Hoà', '30950', 'Xã');
INSERT INTO category."Wards" VALUES (30952, 907, 'system', '2023-07-26 08:40:17.691942+07', 'system', '2023-07-26 08:40:17.691942+07', 'Thị trấn Gò Quao', '30952', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30955, 907, 'system', '2023-07-26 08:40:17.691944+07', 'system', '2023-07-26 08:40:17.691944+07', 'Xã Vĩnh Hòa Hưng Bắc', '30955', 'Xã');
INSERT INTO category."Wards" VALUES (30958, 907, 'system', '2023-07-26 08:40:17.691946+07', 'system', '2023-07-26 08:40:17.691946+07', 'Xã Định Hòa', '30958', 'Xã');
INSERT INTO category."Wards" VALUES (30961, 907, 'system', '2023-07-26 08:40:17.691948+07', 'system', '2023-07-26 08:40:17.691948+07', 'Xã Thới Quản', '30961', 'Xã');
INSERT INTO category."Wards" VALUES (30964, 907, 'system', '2023-07-26 08:40:17.691949+07', 'system', '2023-07-26 08:40:17.691949+07', 'Xã Định An', '30964', 'Xã');
INSERT INTO category."Wards" VALUES (30967, 907, 'system', '2023-07-26 08:40:17.691951+07', 'system', '2023-07-26 08:40:17.691951+07', 'Xã Thủy Liễu', '30967', 'Xã');
INSERT INTO category."Wards" VALUES (30970, 907, 'system', '2023-07-26 08:40:17.691953+07', 'system', '2023-07-26 08:40:17.691953+07', 'Xã Vĩnh Hòa Hưng Nam', '30970', 'Xã');
INSERT INTO category."Wards" VALUES (30973, 907, 'system', '2023-07-26 08:40:17.691955+07', 'system', '2023-07-26 08:40:17.691955+07', 'Xã Vĩnh Phước A', '30973', 'Xã');
INSERT INTO category."Wards" VALUES (30976, 907, 'system', '2023-07-26 08:40:17.691957+07', 'system', '2023-07-26 08:40:17.691957+07', 'Xã Vĩnh Phước B', '30976', 'Xã');
INSERT INTO category."Wards" VALUES (30979, 907, 'system', '2023-07-26 08:40:17.691959+07', 'system', '2023-07-26 08:40:17.691959+07', 'Xã Vĩnh Tuy', '30979', 'Xã');
INSERT INTO category."Wards" VALUES (30982, 907, 'system', '2023-07-26 08:40:17.691961+07', 'system', '2023-07-26 08:40:17.691961+07', 'Xã Vĩnh Thắng', '30982', 'Xã');
INSERT INTO category."Wards" VALUES (30985, 908, 'system', '2023-07-26 08:40:17.691963+07', 'system', '2023-07-26 08:40:17.691963+07', 'Thị trấn Thứ Ba', '30985', 'Thị trấn');
INSERT INTO category."Wards" VALUES (30988, 908, 'system', '2023-07-26 08:40:17.691965+07', 'system', '2023-07-26 08:40:17.691965+07', 'Xã Tây Yên', '30988', 'Xã');
INSERT INTO category."Wards" VALUES (30991, 908, 'system', '2023-07-26 08:40:17.691967+07', 'system', '2023-07-26 08:40:17.691967+07', 'Xã Tây Yên A', '30991', 'Xã');
INSERT INTO category."Wards" VALUES (30994, 908, 'system', '2023-07-26 08:40:17.691968+07', 'system', '2023-07-26 08:40:17.691968+07', 'Xã Nam Yên', '30994', 'Xã');
INSERT INTO category."Wards" VALUES (30997, 908, 'system', '2023-07-26 08:40:17.69197+07', 'system', '2023-07-26 08:40:17.69197+07', 'Xã Hưng Yên', '30997', 'Xã');
INSERT INTO category."Wards" VALUES (31000, 908, 'system', '2023-07-26 08:40:17.691972+07', 'system', '2023-07-26 08:40:17.691972+07', 'Xã Nam Thái', '31000', 'Xã');
INSERT INTO category."Wards" VALUES (31003, 908, 'system', '2023-07-26 08:40:17.691974+07', 'system', '2023-07-26 08:40:17.691974+07', 'Xã Nam Thái A', '31003', 'Xã');
INSERT INTO category."Wards" VALUES (31006, 908, 'system', '2023-07-26 08:40:17.691976+07', 'system', '2023-07-26 08:40:17.691976+07', 'Xã Đông Thái', '31006', 'Xã');
INSERT INTO category."Wards" VALUES (31009, 908, 'system', '2023-07-26 08:40:17.691978+07', 'system', '2023-07-26 08:40:17.691978+07', 'Xã Đông Yên', '31009', 'Xã');
INSERT INTO category."Wards" VALUES (31012, 913, 'system', '2023-07-26 08:40:17.69204+07', 'system', '2023-07-26 08:40:17.69204+07', 'Xã Thạnh Yên', '31012', 'Xã');
INSERT INTO category."Wards" VALUES (31015, 913, 'system', '2023-07-26 08:40:17.692042+07', 'system', '2023-07-26 08:40:17.692042+07', 'Xã Thạnh Yên A', '31015', 'Xã');
INSERT INTO category."Wards" VALUES (31018, 909, 'system', '2023-07-26 08:40:17.69198+07', 'system', '2023-07-26 08:40:17.69198+07', 'Thị trấn Thứ Mười Một', '31018', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31021, 909, 'system', '2023-07-26 08:40:17.691982+07', 'system', '2023-07-26 08:40:17.691982+07', 'Xã Thuận Hoà', '31021', 'Xã');
INSERT INTO category."Wards" VALUES (31024, 909, 'system', '2023-07-26 08:40:17.691984+07', 'system', '2023-07-26 08:40:17.691984+07', 'Xã Đông Hòa', '31024', 'Xã');
INSERT INTO category."Wards" VALUES (31027, 913, 'system', '2023-07-26 08:40:17.692043+07', 'system', '2023-07-26 08:40:17.692043+07', 'Xã An Minh Bắc', '31027', 'Xã');
INSERT INTO category."Wards" VALUES (31030, 909, 'system', '2023-07-26 08:40:17.691985+07', 'system', '2023-07-26 08:40:17.691985+07', 'Xã Đông Thạnh', '31030', 'Xã');
INSERT INTO category."Wards" VALUES (31031, 909, 'system', '2023-07-26 08:40:17.691987+07', 'system', '2023-07-26 08:40:17.691987+07', 'Xã Tân Thạnh', '31031', 'Xã');
INSERT INTO category."Wards" VALUES (31033, 909, 'system', '2023-07-26 08:40:17.691989+07', 'system', '2023-07-26 08:40:17.691989+07', 'Xã Đông Hưng', '31033', 'Xã');
INSERT INTO category."Wards" VALUES (31036, 909, 'system', '2023-07-26 08:40:17.691991+07', 'system', '2023-07-26 08:40:17.691991+07', 'Xã Đông Hưng A', '31036', 'Xã');
INSERT INTO category."Wards" VALUES (31039, 909, 'system', '2023-07-26 08:40:17.691993+07', 'system', '2023-07-26 08:40:17.691993+07', 'Xã Đông Hưng B', '31039', 'Xã');
INSERT INTO category."Wards" VALUES (31042, 909, 'system', '2023-07-26 08:40:17.691996+07', 'system', '2023-07-26 08:40:17.691996+07', 'Xã Vân Khánh', '31042', 'Xã');
INSERT INTO category."Wards" VALUES (31045, 909, 'system', '2023-07-26 08:40:17.691998+07', 'system', '2023-07-26 08:40:17.691998+07', 'Xã Vân Khánh Đông', '31045', 'Xã');
INSERT INTO category."Wards" VALUES (31048, 909, 'system', '2023-07-26 08:40:17.691999+07', 'system', '2023-07-26 08:40:17.691999+07', 'Xã Vân Khánh Tây', '31048', 'Xã');
INSERT INTO category."Wards" VALUES (31051, 910, 'system', '2023-07-26 08:40:17.692001+07', 'system', '2023-07-26 08:40:17.692001+07', 'Thị trấn Vĩnh Thuận', '31051', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31054, 913, 'system', '2023-07-26 08:40:17.692045+07', 'system', '2023-07-26 08:40:17.692046+07', 'Xã Vĩnh Hòa', '31054', 'Xã');
INSERT INTO category."Wards" VALUES (31057, 913, 'system', '2023-07-26 08:40:17.692047+07', 'system', '2023-07-26 08:40:17.692047+07', 'Xã Hoà Chánh', '31057', 'Xã');
INSERT INTO category."Wards" VALUES (31060, 910, 'system', '2023-07-26 08:40:17.692003+07', 'system', '2023-07-26 08:40:17.692003+07', 'Xã Vĩnh Bình Bắc', '31060', 'Xã');
INSERT INTO category."Wards" VALUES (31063, 910, 'system', '2023-07-26 08:40:17.692005+07', 'system', '2023-07-26 08:40:17.692005+07', 'Xã Vĩnh Bình Nam', '31063', 'Xã');
INSERT INTO category."Wards" VALUES (31064, 910, 'system', '2023-07-26 08:40:17.692007+07', 'system', '2023-07-26 08:40:17.692007+07', 'Xã Bình Minh', '31064', 'Xã');
INSERT INTO category."Wards" VALUES (31066, 913, 'system', '2023-07-26 08:40:17.692049+07', 'system', '2023-07-26 08:40:17.692049+07', 'Xã Minh Thuận', '31066', 'Xã');
INSERT INTO category."Wards" VALUES (31069, 910, 'system', '2023-07-26 08:40:17.692009+07', 'system', '2023-07-26 08:40:17.692009+07', 'Xã Vĩnh Thuận', '31069', 'Xã');
INSERT INTO category."Wards" VALUES (31072, 910, 'system', '2023-07-26 08:40:17.692011+07', 'system', '2023-07-26 08:40:17.692011+07', 'Xã Tân Thuận', '31072', 'Xã');
INSERT INTO category."Wards" VALUES (31074, 910, 'system', '2023-07-26 08:40:17.692012+07', 'system', '2023-07-26 08:40:17.692012+07', 'Xã Phong Đông', '31074', 'Xã');
INSERT INTO category."Wards" VALUES (31075, 910, 'system', '2023-07-26 08:40:17.692014+07', 'system', '2023-07-26 08:40:17.692014+07', 'Xã Vĩnh Phong', '31075', 'Xã');
INSERT INTO category."Wards" VALUES (31078, 911, 'system', '2023-07-26 08:40:17.692016+07', 'system', '2023-07-26 08:40:17.692016+07', 'Phường Dương Đông', '31078', 'Phường');
INSERT INTO category."Wards" VALUES (31081, 911, 'system', '2023-07-26 08:40:17.692018+07', 'system', '2023-07-26 08:40:17.692018+07', 'Phường An Thới', '31081', 'Phường');
INSERT INTO category."Wards" VALUES (31084, 911, 'system', '2023-07-26 08:40:17.69202+07', 'system', '2023-07-26 08:40:17.69202+07', 'Xã Cửa Cạn', '31084', 'Xã');
INSERT INTO category."Wards" VALUES (31087, 911, 'system', '2023-07-26 08:40:17.692021+07', 'system', '2023-07-26 08:40:17.692022+07', 'Xã Gành Dầu', '31087', 'Xã');
INSERT INTO category."Wards" VALUES (31090, 911, 'system', '2023-07-26 08:40:17.692023+07', 'system', '2023-07-26 08:40:17.692023+07', 'Xã Cửa Dương', '31090', 'Xã');
INSERT INTO category."Wards" VALUES (31093, 911, 'system', '2023-07-26 08:40:17.692025+07', 'system', '2023-07-26 08:40:17.692025+07', 'Xã Hàm Ninh', '31093', 'Xã');
INSERT INTO category."Wards" VALUES (31096, 911, 'system', '2023-07-26 08:40:17.692027+07', 'system', '2023-07-26 08:40:17.692027+07', 'Xã Dương Tơ', '31096', 'Xã');
INSERT INTO category."Wards" VALUES (31102, 911, 'system', '2023-07-26 08:40:17.692029+07', 'system', '2023-07-26 08:40:17.692029+07', 'Xã Bãi Thơm', '31102', 'Xã');
INSERT INTO category."Wards" VALUES (31105, 911, 'system', '2023-07-26 08:40:17.692031+07', 'system', '2023-07-26 08:40:17.692031+07', 'Xã Thổ Châu', '31105', 'Xã');
INSERT INTO category."Wards" VALUES (31108, 912, 'system', '2023-07-26 08:40:17.692032+07', 'system', '2023-07-26 08:40:17.692033+07', 'Xã Hòn Tre', '31108', 'Xã');
INSERT INTO category."Wards" VALUES (31111, 912, 'system', '2023-07-26 08:40:17.692034+07', 'system', '2023-07-26 08:40:17.692034+07', 'Xã Lại Sơn', '31111', 'Xã');
INSERT INTO category."Wards" VALUES (31114, 912, 'system', '2023-07-26 08:40:17.692036+07', 'system', '2023-07-26 08:40:17.692036+07', 'Xã An Sơn', '31114', 'Xã');
INSERT INTO category."Wards" VALUES (31115, 912, 'system', '2023-07-26 08:40:17.692038+07', 'system', '2023-07-26 08:40:17.692038+07', 'Xã Nam Du', '31115', 'Xã');
INSERT INTO category."Wards" VALUES (31117, 916, 'system', '2023-07-26 08:40:17.69206+07', 'system', '2023-07-26 08:40:17.69206+07', 'Phường Cái Khế', '31117', 'Phường');
INSERT INTO category."Wards" VALUES (31120, 916, 'system', '2023-07-26 08:40:17.692063+07', 'system', '2023-07-26 08:40:17.692063+07', 'Phường An Hòa', '31120', 'Phường');
INSERT INTO category."Wards" VALUES (31123, 916, 'system', '2023-07-26 08:40:17.692065+07', 'system', '2023-07-26 08:40:17.692065+07', 'Phường Thới Bình', '31123', 'Phường');
INSERT INTO category."Wards" VALUES (31126, 916, 'system', '2023-07-26 08:40:17.692067+07', 'system', '2023-07-26 08:40:17.692067+07', 'Phường An Nghiệp', '31126', 'Phường');
INSERT INTO category."Wards" VALUES (31129, 916, 'system', '2023-07-26 08:40:17.692069+07', 'system', '2023-07-26 08:40:17.692069+07', 'Phường An Cư', '31129', 'Phường');
INSERT INTO category."Wards" VALUES (31135, 916, 'system', '2023-07-26 08:40:17.692071+07', 'system', '2023-07-26 08:40:17.692071+07', 'Phường Tân An', '31135', 'Phường');
INSERT INTO category."Wards" VALUES (31141, 916, 'system', '2023-07-26 08:40:17.692073+07', 'system', '2023-07-26 08:40:17.692073+07', 'Phường An Phú', '31141', 'Phường');
INSERT INTO category."Wards" VALUES (31144, 916, 'system', '2023-07-26 08:40:17.692075+07', 'system', '2023-07-26 08:40:17.692075+07', 'Phường Xuân Khánh', '31144', 'Phường');
INSERT INTO category."Wards" VALUES (31147, 916, 'system', '2023-07-26 08:40:17.692077+07', 'system', '2023-07-26 08:40:17.692077+07', 'Phường Hưng Lợi', '31147', 'Phường');
INSERT INTO category."Wards" VALUES (31149, 916, 'system', '2023-07-26 08:40:17.692079+07', 'system', '2023-07-26 08:40:17.692079+07', 'Phường An Khánh', '31149', 'Phường');
INSERT INTO category."Wards" VALUES (31150, 916, 'system', '2023-07-26 08:40:17.692081+07', 'system', '2023-07-26 08:40:17.692081+07', 'Phường An Bình', '31150', 'Phường');
INSERT INTO category."Wards" VALUES (31153, 917, 'system', '2023-07-26 08:40:17.692083+07', 'system', '2023-07-26 08:40:17.692083+07', 'Phường Châu Văn Liêm', '31153', 'Phường');
INSERT INTO category."Wards" VALUES (31154, 917, 'system', '2023-07-26 08:40:17.692085+07', 'system', '2023-07-26 08:40:17.692085+07', 'Phường Thới Hòa', '31154', 'Phường');
INSERT INTO category."Wards" VALUES (31156, 917, 'system', '2023-07-26 08:40:17.692086+07', 'system', '2023-07-26 08:40:17.692086+07', 'Phường Thới Long', '31156', 'Phường');
INSERT INTO category."Wards" VALUES (31157, 917, 'system', '2023-07-26 08:40:17.692088+07', 'system', '2023-07-26 08:40:17.692088+07', 'Phường Long Hưng', '31157', 'Phường');
INSERT INTO category."Wards" VALUES (31159, 917, 'system', '2023-07-26 08:40:17.69209+07', 'system', '2023-07-26 08:40:17.69209+07', 'Phường Thới An', '31159', 'Phường');
INSERT INTO category."Wards" VALUES (31162, 917, 'system', '2023-07-26 08:40:17.692092+07', 'system', '2023-07-26 08:40:17.692092+07', 'Phường Phước Thới', '31162', 'Phường');
INSERT INTO category."Wards" VALUES (31165, 917, 'system', '2023-07-26 08:40:17.692094+07', 'system', '2023-07-26 08:40:17.692094+07', 'Phường Trường Lạc', '31165', 'Phường');
INSERT INTO category."Wards" VALUES (31168, 918, 'system', '2023-07-26 08:40:17.692096+07', 'system', '2023-07-26 08:40:17.692096+07', 'Phường Bình Thủy', '31168', 'Phường');
INSERT INTO category."Wards" VALUES (31169, 918, 'system', '2023-07-26 08:40:17.692098+07', 'system', '2023-07-26 08:40:17.692098+07', 'Phường Trà An', '31169', 'Phường');
INSERT INTO category."Wards" VALUES (31171, 918, 'system', '2023-07-26 08:40:17.6921+07', 'system', '2023-07-26 08:40:17.6921+07', 'Phường Trà Nóc', '31171', 'Phường');
INSERT INTO category."Wards" VALUES (31174, 918, 'system', '2023-07-26 08:40:17.692101+07', 'system', '2023-07-26 08:40:17.692102+07', 'Phường Thới An Đông', '31174', 'Phường');
INSERT INTO category."Wards" VALUES (31177, 918, 'system', '2023-07-26 08:40:17.692104+07', 'system', '2023-07-26 08:40:17.692104+07', 'Phường An Thới', '31177', 'Phường');
INSERT INTO category."Wards" VALUES (31178, 918, 'system', '2023-07-26 08:40:17.692105+07', 'system', '2023-07-26 08:40:17.692105+07', 'Phường Bùi Hữu Nghĩa', '31178', 'Phường');
INSERT INTO category."Wards" VALUES (31180, 918, 'system', '2023-07-26 08:40:17.692107+07', 'system', '2023-07-26 08:40:17.692108+07', 'Phường Long Hòa', '31180', 'Phường');
INSERT INTO category."Wards" VALUES (31183, 918, 'system', '2023-07-26 08:40:17.692109+07', 'system', '2023-07-26 08:40:17.692109+07', 'Phường Long Tuyền', '31183', 'Phường');
INSERT INTO category."Wards" VALUES (31186, 919, 'system', '2023-07-26 08:40:17.692111+07', 'system', '2023-07-26 08:40:17.692111+07', 'Phường Lê Bình', '31186', 'Phường');
INSERT INTO category."Wards" VALUES (31189, 919, 'system', '2023-07-26 08:40:17.692113+07', 'system', '2023-07-26 08:40:17.692113+07', 'Phường Hưng Phú', '31189', 'Phường');
INSERT INTO category."Wards" VALUES (31192, 919, 'system', '2023-07-26 08:40:17.692115+07', 'system', '2023-07-26 08:40:17.692115+07', 'Phường Hưng Thạnh', '31192', 'Phường');
INSERT INTO category."Wards" VALUES (31195, 919, 'system', '2023-07-26 08:40:17.692117+07', 'system', '2023-07-26 08:40:17.692117+07', 'Phường Ba Láng', '31195', 'Phường');
INSERT INTO category."Wards" VALUES (31198, 919, 'system', '2023-07-26 08:40:17.692119+07', 'system', '2023-07-26 08:40:17.692119+07', 'Phường Thường Thạnh', '31198', 'Phường');
INSERT INTO category."Wards" VALUES (31201, 919, 'system', '2023-07-26 08:40:17.692121+07', 'system', '2023-07-26 08:40:17.692121+07', 'Phường Phú Thứ', '31201', 'Phường');
INSERT INTO category."Wards" VALUES (31204, 919, 'system', '2023-07-26 08:40:17.692123+07', 'system', '2023-07-26 08:40:17.692123+07', 'Phường Tân Phú', '31204', 'Phường');
INSERT INTO category."Wards" VALUES (31207, 923, 'system', '2023-07-26 08:40:17.692125+07', 'system', '2023-07-26 08:40:17.692125+07', 'Phường Thốt Nốt', '31207', 'Phường');
INSERT INTO category."Wards" VALUES (31210, 923, 'system', '2023-07-26 08:40:17.692127+07', 'system', '2023-07-26 08:40:17.692127+07', 'Phường Thới Thuận', '31210', 'Phường');
INSERT INTO category."Wards" VALUES (31211, 924, 'system', '2023-07-26 08:40:17.692143+07', 'system', '2023-07-26 08:40:17.692143+07', 'Xã Vĩnh Bình', '31211', 'Xã');
INSERT INTO category."Wards" VALUES (31212, 923, 'system', '2023-07-26 08:40:17.692129+07', 'system', '2023-07-26 08:40:17.692129+07', 'Phường Thuận An', '31212', 'Phường');
INSERT INTO category."Wards" VALUES (31213, 923, 'system', '2023-07-26 08:40:17.692131+07', 'system', '2023-07-26 08:40:17.692131+07', 'Phường Tân Lộc', '31213', 'Phường');
INSERT INTO category."Wards" VALUES (31216, 923, 'system', '2023-07-26 08:40:17.692133+07', 'system', '2023-07-26 08:40:17.692133+07', 'Phường Trung Nhứt', '31216', 'Phường');
INSERT INTO category."Wards" VALUES (31217, 923, 'system', '2023-07-26 08:40:17.692135+07', 'system', '2023-07-26 08:40:17.692135+07', 'Phường Thạnh Hoà', '31217', 'Phường');
INSERT INTO category."Wards" VALUES (31219, 923, 'system', '2023-07-26 08:40:17.692137+07', 'system', '2023-07-26 08:40:17.692137+07', 'Phường Trung Kiên', '31219', 'Phường');
INSERT INTO category."Wards" VALUES (31222, 925, 'system', '2023-07-26 08:40:17.692164+07', 'system', '2023-07-26 08:40:17.692164+07', 'Xã Trung An', '31222', 'Xã');
INSERT INTO category."Wards" VALUES (31225, 925, 'system', '2023-07-26 08:40:17.692166+07', 'system', '2023-07-26 08:40:17.692166+07', 'Xã Trung Thạnh', '31225', 'Xã');
INSERT INTO category."Wards" VALUES (31227, 923, 'system', '2023-07-26 08:40:17.692139+07', 'system', '2023-07-26 08:40:17.692139+07', 'Phường Tân Hưng', '31227', 'Phường');
INSERT INTO category."Wards" VALUES (31228, 923, 'system', '2023-07-26 08:40:17.692141+07', 'system', '2023-07-26 08:40:17.692141+07', 'Phường Thuận Hưng', '31228', 'Phường');
INSERT INTO category."Wards" VALUES (31231, 924, 'system', '2023-07-26 08:40:17.692145+07', 'system', '2023-07-26 08:40:17.692145+07', 'Thị trấn Thanh An', '31231', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31232, 924, 'system', '2023-07-26 08:40:17.692147+07', 'system', '2023-07-26 08:40:17.692147+07', 'Thị trấn Vĩnh Thạnh', '31232', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31234, 924, 'system', '2023-07-26 08:40:17.692149+07', 'system', '2023-07-26 08:40:17.692149+07', 'Xã Thạnh Mỹ', '31234', 'Xã');
INSERT INTO category."Wards" VALUES (31237, 924, 'system', '2023-07-26 08:40:17.692151+07', 'system', '2023-07-26 08:40:17.692151+07', 'Xã Vĩnh Trinh', '31237', 'Xã');
INSERT INTO category."Wards" VALUES (31240, 924, 'system', '2023-07-26 08:40:17.692153+07', 'system', '2023-07-26 08:40:17.692153+07', 'Xã Thạnh An', '31240', 'Xã');
INSERT INTO category."Wards" VALUES (31241, 924, 'system', '2023-07-26 08:40:17.692155+07', 'system', '2023-07-26 08:40:17.692155+07', 'Xã Thạnh Tiến', '31241', 'Xã');
INSERT INTO category."Wards" VALUES (31243, 924, 'system', '2023-07-26 08:40:17.692156+07', 'system', '2023-07-26 08:40:17.692156+07', 'Xã Thạnh Thắng', '31243', 'Xã');
INSERT INTO category."Wards" VALUES (31244, 924, 'system', '2023-07-26 08:40:17.692158+07', 'system', '2023-07-26 08:40:17.692158+07', 'Xã Thạnh Lợi', '31244', 'Xã');
INSERT INTO category."Wards" VALUES (31246, 924, 'system', '2023-07-26 08:40:17.69216+07', 'system', '2023-07-26 08:40:17.69216+07', 'Xã Thạnh Qưới', '31246', 'Xã');
INSERT INTO category."Wards" VALUES (31249, 925, 'system', '2023-07-26 08:40:17.692168+07', 'system', '2023-07-26 08:40:17.692168+07', 'Xã Thạnh Phú', '31249', 'Xã');
INSERT INTO category."Wards" VALUES (31252, 924, 'system', '2023-07-26 08:40:17.692162+07', 'system', '2023-07-26 08:40:17.692162+07', 'Xã Thạnh Lộc', '31252', 'Xã');
INSERT INTO category."Wards" VALUES (31255, 925, 'system', '2023-07-26 08:40:17.69217+07', 'system', '2023-07-26 08:40:17.69217+07', 'Xã Trung Hưng', '31255', 'Xã');
INSERT INTO category."Wards" VALUES (31258, 927, 'system', '2023-07-26 08:40:17.692197+07', 'system', '2023-07-26 08:40:17.692197+07', 'Thị trấn Thới Lai', '31258', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31261, 925, 'system', '2023-07-26 08:40:17.692171+07', 'system', '2023-07-26 08:40:17.692172+07', 'Thị trấn Cờ Đỏ', '31261', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31264, 925, 'system', '2023-07-26 08:40:17.692174+07', 'system', '2023-07-26 08:40:17.692174+07', 'Xã Thới Hưng', '31264', 'Xã');
INSERT INTO category."Wards" VALUES (31267, 927, 'system', '2023-07-26 08:40:17.692202+07', 'system', '2023-07-26 08:40:17.692202+07', 'Xã Thới Thạnh', '31267', 'Xã');
INSERT INTO category."Wards" VALUES (31268, 927, 'system', '2023-07-26 08:40:17.692205+07', 'system', '2023-07-26 08:40:17.692205+07', 'Xã Tân Thạnh', '31268', 'Xã');
INSERT INTO category."Wards" VALUES (31270, 927, 'system', '2023-07-26 08:40:17.692209+07', 'system', '2023-07-26 08:40:17.692209+07', 'Xã Xuân Thắng', '31270', 'Xã');
INSERT INTO category."Wards" VALUES (31273, 925, 'system', '2023-07-26 08:40:17.692175+07', 'system', '2023-07-26 08:40:17.692176+07', 'Xã Đông Hiệp', '31273', 'Xã');
INSERT INTO category."Wards" VALUES (31274, 925, 'system', '2023-07-26 08:40:17.692177+07', 'system', '2023-07-26 08:40:17.692177+07', 'Xã Đông Thắng', '31274', 'Xã');
INSERT INTO category."Wards" VALUES (31276, 925, 'system', '2023-07-26 08:40:17.692179+07', 'system', '2023-07-26 08:40:17.692179+07', 'Xã Thới Đông', '31276', 'Xã');
INSERT INTO category."Wards" VALUES (31277, 925, 'system', '2023-07-26 08:40:17.692181+07', 'system', '2023-07-26 08:40:17.692181+07', 'Xã Thới Xuân', '31277', 'Xã');
INSERT INTO category."Wards" VALUES (31279, 927, 'system', '2023-07-26 08:40:17.692212+07', 'system', '2023-07-26 08:40:17.692212+07', 'Xã Đông Bình', '31279', 'Xã');
INSERT INTO category."Wards" VALUES (31282, 927, 'system', '2023-07-26 08:40:17.692215+07', 'system', '2023-07-26 08:40:17.692215+07', 'Xã Đông Thuận', '31282', 'Xã');
INSERT INTO category."Wards" VALUES (31285, 927, 'system', '2023-07-26 08:40:17.692219+07', 'system', '2023-07-26 08:40:17.692219+07', 'Xã Thới Tân', '31285', 'Xã');
INSERT INTO category."Wards" VALUES (31286, 927, 'system', '2023-07-26 08:40:17.692221+07', 'system', '2023-07-26 08:40:17.692221+07', 'Xã Trường Thắng', '31286', 'Xã');
INSERT INTO category."Wards" VALUES (31288, 927, 'system', '2023-07-26 08:40:17.692225+07', 'system', '2023-07-26 08:40:17.692225+07', 'Xã Định Môn', '31288', 'Xã');
INSERT INTO category."Wards" VALUES (31291, 927, 'system', '2023-07-26 08:40:17.692228+07', 'system', '2023-07-26 08:40:17.692228+07', 'Xã Trường Thành', '31291', 'Xã');
INSERT INTO category."Wards" VALUES (31294, 927, 'system', '2023-07-26 08:40:17.692232+07', 'system', '2023-07-26 08:40:17.692232+07', 'Xã Trường Xuân', '31294', 'Xã');
INSERT INTO category."Wards" VALUES (31297, 927, 'system', '2023-07-26 08:40:17.692235+07', 'system', '2023-07-26 08:40:17.692235+07', 'Xã Trường Xuân A', '31297', 'Xã');
INSERT INTO category."Wards" VALUES (31298, 927, 'system', '2023-07-26 08:40:17.692238+07', 'system', '2023-07-26 08:40:17.692238+07', 'Xã Trường Xuân B', '31298', 'Xã');
INSERT INTO category."Wards" VALUES (31299, 926, 'system', '2023-07-26 08:40:17.692183+07', 'system', '2023-07-26 08:40:17.692183+07', 'Thị trấn Phong Điền', '31299', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31300, 926, 'system', '2023-07-26 08:40:17.692185+07', 'system', '2023-07-26 08:40:17.692185+07', 'Xã Nhơn Ái', '31300', 'Xã');
INSERT INTO category."Wards" VALUES (31303, 926, 'system', '2023-07-26 08:40:17.692187+07', 'system', '2023-07-26 08:40:17.692187+07', 'Xã Giai Xuân', '31303', 'Xã');
INSERT INTO category."Wards" VALUES (31306, 926, 'system', '2023-07-26 08:40:17.692189+07', 'system', '2023-07-26 08:40:17.692189+07', 'Xã Tân Thới', '31306', 'Xã');
INSERT INTO category."Wards" VALUES (31309, 926, 'system', '2023-07-26 08:40:17.692191+07', 'system', '2023-07-26 08:40:17.692191+07', 'Xã Trường Long', '31309', 'Xã');
INSERT INTO category."Wards" VALUES (31312, 926, 'system', '2023-07-26 08:40:17.692193+07', 'system', '2023-07-26 08:40:17.692193+07', 'Xã Mỹ Khánh', '31312', 'Xã');
INSERT INTO category."Wards" VALUES (31315, 926, 'system', '2023-07-26 08:40:17.692195+07', 'system', '2023-07-26 08:40:17.692195+07', 'Xã Nhơn Nghĩa', '31315', 'Xã');
INSERT INTO category."Wards" VALUES (31318, 930, 'system', '2023-07-26 08:40:17.69224+07', 'system', '2023-07-26 08:40:17.69224+07', 'Phường I', '31318', 'Phường');
INSERT INTO category."Wards" VALUES (31321, 930, 'system', '2023-07-26 08:40:17.692242+07', 'system', '2023-07-26 08:40:17.692242+07', 'Phường III', '31321', 'Phường');
INSERT INTO category."Wards" VALUES (31324, 930, 'system', '2023-07-26 08:40:17.692244+07', 'system', '2023-07-26 08:40:17.692244+07', 'Phường IV', '31324', 'Phường');
INSERT INTO category."Wards" VALUES (31327, 930, 'system', '2023-07-26 08:40:17.692246+07', 'system', '2023-07-26 08:40:17.692246+07', 'Phường V', '31327', 'Phường');
INSERT INTO category."Wards" VALUES (31330, 930, 'system', '2023-07-26 08:40:17.692248+07', 'system', '2023-07-26 08:40:17.692248+07', 'Phường VII', '31330', 'Phường');
INSERT INTO category."Wards" VALUES (31333, 930, 'system', '2023-07-26 08:40:17.692249+07', 'system', '2023-07-26 08:40:17.692249+07', 'Xã Vị Tân', '31333', 'Xã');
INSERT INTO category."Wards" VALUES (31336, 930, 'system', '2023-07-26 08:40:17.692251+07', 'system', '2023-07-26 08:40:17.692251+07', 'Xã Hoả Lựu', '31336', 'Xã');
INSERT INTO category."Wards" VALUES (31338, 930, 'system', '2023-07-26 08:40:17.692253+07', 'system', '2023-07-26 08:40:17.692253+07', 'Xã Tân Tiến', '31338', 'Xã');
INSERT INTO category."Wards" VALUES (31339, 930, 'system', '2023-07-26 08:40:17.692255+07', 'system', '2023-07-26 08:40:17.692255+07', 'Xã Hoả Tiến', '31339', 'Xã');
INSERT INTO category."Wards" VALUES (31340, 931, 'system', '2023-07-26 08:40:17.692257+07', 'system', '2023-07-26 08:40:17.692257+07', 'Phường Ngã Bảy', '31340', 'Phường');
INSERT INTO category."Wards" VALUES (31341, 931, 'system', '2023-07-26 08:40:17.692259+07', 'system', '2023-07-26 08:40:17.692259+07', 'Phường Lái Hiếu', '31341', 'Phường');
INSERT INTO category."Wards" VALUES (31342, 932, 'system', '2023-07-26 08:40:17.692268+07', 'system', '2023-07-26 08:40:17.692268+07', 'Thị trấn Một Ngàn', '31342', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31343, 931, 'system', '2023-07-26 08:40:17.692261+07', 'system', '2023-07-26 08:40:17.692261+07', 'Phường Hiệp Thành', '31343', 'Phường');
INSERT INTO category."Wards" VALUES (31344, 931, 'system', '2023-07-26 08:40:17.692263+07', 'system', '2023-07-26 08:40:17.692263+07', 'Phường Hiệp Lợi', '31344', 'Phường');
INSERT INTO category."Wards" VALUES (31345, 932, 'system', '2023-07-26 08:40:17.69227+07', 'system', '2023-07-26 08:40:17.69227+07', 'Xã Tân Hoà', '31345', 'Xã');
INSERT INTO category."Wards" VALUES (31346, 932, 'system', '2023-07-26 08:40:17.692272+07', 'system', '2023-07-26 08:40:17.692272+07', 'Thị trấn Bảy Ngàn', '31346', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31348, 932, 'system', '2023-07-26 08:40:17.692274+07', 'system', '2023-07-26 08:40:17.692274+07', 'Xã Trường Long Tây', '31348', 'Xã');
INSERT INTO category."Wards" VALUES (31351, 932, 'system', '2023-07-26 08:40:17.692276+07', 'system', '2023-07-26 08:40:17.692276+07', 'Xã Trường Long A', '31351', 'Xã');
INSERT INTO category."Wards" VALUES (31357, 932, 'system', '2023-07-26 08:40:17.692278+07', 'system', '2023-07-26 08:40:17.692278+07', 'Xã Nhơn Nghĩa A', '31357', 'Xã');
INSERT INTO category."Wards" VALUES (31359, 932, 'system', '2023-07-26 08:40:17.69228+07', 'system', '2023-07-26 08:40:17.69228+07', 'Thị trấn Rạch Gòi', '31359', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31360, 932, 'system', '2023-07-26 08:40:17.692282+07', 'system', '2023-07-26 08:40:17.692282+07', 'Xã Thạnh Xuân', '31360', 'Xã');
INSERT INTO category."Wards" VALUES (31362, 932, 'system', '2023-07-26 08:40:17.692284+07', 'system', '2023-07-26 08:40:17.692284+07', 'Thị trấn Cái Tắc', '31362', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31363, 932, 'system', '2023-07-26 08:40:17.692287+07', 'system', '2023-07-26 08:40:17.692287+07', 'Xã Tân Phú Thạnh', '31363', 'Xã');
INSERT INTO category."Wards" VALUES (31366, 933, 'system', '2023-07-26 08:40:17.692289+07', 'system', '2023-07-26 08:40:17.692289+07', 'Thị Trấn Ngã Sáu', '31366', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31369, 933, 'system', '2023-07-26 08:40:17.692291+07', 'system', '2023-07-26 08:40:17.692291+07', 'Xã Đông Thạnh', '31369', 'Xã');
INSERT INTO category."Wards" VALUES (31375, 933, 'system', '2023-07-26 08:40:17.692293+07', 'system', '2023-07-26 08:40:17.692293+07', 'Xã Đông Phú', '31375', 'Xã');
INSERT INTO category."Wards" VALUES (31378, 933, 'system', '2023-07-26 08:40:17.692295+07', 'system', '2023-07-26 08:40:17.692295+07', 'Xã Phú Hữu', '31378', 'Xã');
INSERT INTO category."Wards" VALUES (31379, 933, 'system', '2023-07-26 08:40:17.692297+07', 'system', '2023-07-26 08:40:17.692297+07', 'Xã Phú Tân', '31379', 'Xã');
INSERT INTO category."Wards" VALUES (31381, 933, 'system', '2023-07-26 08:40:17.692298+07', 'system', '2023-07-26 08:40:17.692298+07', 'Thị trấn Mái Dầm', '31381', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31384, 933, 'system', '2023-07-26 08:40:17.6923+07', 'system', '2023-07-26 08:40:17.692301+07', 'Xã Đông Phước', '31384', 'Xã');
INSERT INTO category."Wards" VALUES (31387, 933, 'system', '2023-07-26 08:40:17.692302+07', 'system', '2023-07-26 08:40:17.692302+07', 'Xã Đông Phước A', '31387', 'Xã');
INSERT INTO category."Wards" VALUES (31393, 934, 'system', '2023-07-26 08:40:17.692304+07', 'system', '2023-07-26 08:40:17.692304+07', 'Thị trấn Kinh Cùng', '31393', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31396, 934, 'system', '2023-07-26 08:40:17.692306+07', 'system', '2023-07-26 08:40:17.692306+07', 'Thị trấn Cây Dương', '31396', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31399, 934, 'system', '2023-07-26 08:40:17.692308+07', 'system', '2023-07-26 08:40:17.692308+07', 'Xã Tân Bình', '31399', 'Xã');
INSERT INTO category."Wards" VALUES (31402, 934, 'system', '2023-07-26 08:40:17.69231+07', 'system', '2023-07-26 08:40:17.69231+07', 'Xã Bình Thành', '31402', 'Xã');
INSERT INTO category."Wards" VALUES (31405, 934, 'system', '2023-07-26 08:40:17.692312+07', 'system', '2023-07-26 08:40:17.692312+07', 'Xã Thạnh Hòa', '31405', 'Xã');
INSERT INTO category."Wards" VALUES (31408, 934, 'system', '2023-07-26 08:40:17.692314+07', 'system', '2023-07-26 08:40:17.692314+07', 'Xã Long Thạnh', '31408', 'Xã');
INSERT INTO category."Wards" VALUES (31411, 931, 'system', '2023-07-26 08:40:17.692265+07', 'system', '2023-07-26 08:40:17.692265+07', 'Xã Đại Thành', '31411', 'Xã');
INSERT INTO category."Wards" VALUES (31414, 931, 'system', '2023-07-26 08:40:17.692266+07', 'system', '2023-07-26 08:40:17.692266+07', 'Xã Tân Thành', '31414', 'Xã');
INSERT INTO category."Wards" VALUES (31417, 934, 'system', '2023-07-26 08:40:17.692316+07', 'system', '2023-07-26 08:40:17.692316+07', 'Xã Phụng Hiệp', '31417', 'Xã');
INSERT INTO category."Wards" VALUES (31420, 934, 'system', '2023-07-26 08:40:17.692318+07', 'system', '2023-07-26 08:40:17.692318+07', 'Xã Hòa Mỹ', '31420', 'Xã');
INSERT INTO category."Wards" VALUES (31423, 934, 'system', '2023-07-26 08:40:17.69232+07', 'system', '2023-07-26 08:40:17.69232+07', 'Xã Hòa An', '31423', 'Xã');
INSERT INTO category."Wards" VALUES (31426, 934, 'system', '2023-07-26 08:40:17.692321+07', 'system', '2023-07-26 08:40:17.692322+07', 'Xã Phương Bình', '31426', 'Xã');
INSERT INTO category."Wards" VALUES (31429, 934, 'system', '2023-07-26 08:40:17.692323+07', 'system', '2023-07-26 08:40:17.692323+07', 'Xã Hiệp Hưng', '31429', 'Xã');
INSERT INTO category."Wards" VALUES (31432, 934, 'system', '2023-07-26 08:40:17.692325+07', 'system', '2023-07-26 08:40:17.692325+07', 'Xã Tân Phước Hưng', '31432', 'Xã');
INSERT INTO category."Wards" VALUES (31433, 934, 'system', '2023-07-26 08:40:17.692327+07', 'system', '2023-07-26 08:40:17.692327+07', 'Thị trấn Búng Tàu', '31433', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31435, 934, 'system', '2023-07-26 08:40:17.692339+07', 'system', '2023-07-26 08:40:17.692339+07', 'Xã Phương Phú', '31435', 'Xã');
INSERT INTO category."Wards" VALUES (31438, 934, 'system', '2023-07-26 08:40:17.692341+07', 'system', '2023-07-26 08:40:17.692341+07', 'Xã Tân Long', '31438', 'Xã');
INSERT INTO category."Wards" VALUES (31441, 935, 'system', '2023-07-26 08:40:17.692343+07', 'system', '2023-07-26 08:40:17.692343+07', 'Thị trấn Nàng Mau', '31441', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31444, 935, 'system', '2023-07-26 08:40:17.692345+07', 'system', '2023-07-26 08:40:17.692345+07', 'Xã Vị Trung', '31444', 'Xã');
INSERT INTO category."Wards" VALUES (31447, 935, 'system', '2023-07-26 08:40:17.692347+07', 'system', '2023-07-26 08:40:17.692347+07', 'Xã Vị Thuỷ', '31447', 'Xã');
INSERT INTO category."Wards" VALUES (31450, 935, 'system', '2023-07-26 08:40:17.692349+07', 'system', '2023-07-26 08:40:17.692349+07', 'Xã Vị Thắng', '31450', 'Xã');
INSERT INTO category."Wards" VALUES (31453, 935, 'system', '2023-07-26 08:40:17.692351+07', 'system', '2023-07-26 08:40:17.692351+07', 'Xã Vĩnh Thuận Tây', '31453', 'Xã');
INSERT INTO category."Wards" VALUES (31456, 935, 'system', '2023-07-26 08:40:17.692353+07', 'system', '2023-07-26 08:40:17.692353+07', 'Xã Vĩnh Trung', '31456', 'Xã');
INSERT INTO category."Wards" VALUES (31459, 935, 'system', '2023-07-26 08:40:17.692355+07', 'system', '2023-07-26 08:40:17.692355+07', 'Xã Vĩnh Tường', '31459', 'Xã');
INSERT INTO category."Wards" VALUES (31462, 935, 'system', '2023-07-26 08:40:17.692357+07', 'system', '2023-07-26 08:40:17.692357+07', 'Xã Vị Đông', '31462', 'Xã');
INSERT INTO category."Wards" VALUES (31465, 935, 'system', '2023-07-26 08:40:17.692358+07', 'system', '2023-07-26 08:40:17.692359+07', 'Xã Vị Thanh', '31465', 'Xã');
INSERT INTO category."Wards" VALUES (31468, 935, 'system', '2023-07-26 08:40:17.69236+07', 'system', '2023-07-26 08:40:17.69236+07', 'Xã Vị Bình', '31468', 'Xã');
INSERT INTO category."Wards" VALUES (31471, 937, 'system', '2023-07-26 08:40:17.692379+07', 'system', '2023-07-26 08:40:17.692379+07', 'Phường Thuận An', '31471', 'Phường');
INSERT INTO category."Wards" VALUES (31472, 937, 'system', '2023-07-26 08:40:17.692381+07', 'system', '2023-07-26 08:40:17.692381+07', 'Phường Trà Lồng', '31472', 'Phường');
INSERT INTO category."Wards" VALUES (31473, 937, 'system', '2023-07-26 08:40:17.692383+07', 'system', '2023-07-26 08:40:17.692383+07', 'Phường Bình Thạnh', '31473', 'Phường');
INSERT INTO category."Wards" VALUES (31474, 937, 'system', '2023-07-26 08:40:17.692385+07', 'system', '2023-07-26 08:40:17.692385+07', 'Xã Long Bình', '31474', 'Xã');
INSERT INTO category."Wards" VALUES (31475, 937, 'system', '2023-07-26 08:40:17.692387+07', 'system', '2023-07-26 08:40:17.692387+07', 'Phường Vĩnh Tường', '31475', 'Phường');
INSERT INTO category."Wards" VALUES (31477, 937, 'system', '2023-07-26 08:40:17.692389+07', 'system', '2023-07-26 08:40:17.692389+07', 'Xã Long Trị', '31477', 'Xã');
INSERT INTO category."Wards" VALUES (31478, 937, 'system', '2023-07-26 08:40:17.69239+07', 'system', '2023-07-26 08:40:17.692391+07', 'Xã Long Trị A', '31478', 'Xã');
INSERT INTO category."Wards" VALUES (31480, 937, 'system', '2023-07-26 08:40:17.692392+07', 'system', '2023-07-26 08:40:17.692392+07', 'Xã Long Phú', '31480', 'Xã');
INSERT INTO category."Wards" VALUES (31481, 937, 'system', '2023-07-26 08:40:17.692394+07', 'system', '2023-07-26 08:40:17.692394+07', 'Xã Tân Phú', '31481', 'Xã');
INSERT INTO category."Wards" VALUES (31483, 936, 'system', '2023-07-26 08:40:17.692362+07', 'system', '2023-07-26 08:40:17.692362+07', 'Xã Thuận Hưng', '31483', 'Xã');
INSERT INTO category."Wards" VALUES (31484, 936, 'system', '2023-07-26 08:40:17.692365+07', 'system', '2023-07-26 08:40:17.692365+07', 'Xã Thuận Hòa', '31484', 'Xã');
INSERT INTO category."Wards" VALUES (31486, 936, 'system', '2023-07-26 08:40:17.692367+07', 'system', '2023-07-26 08:40:17.692367+07', 'Xã Vĩnh Thuận Đông', '31486', 'Xã');
INSERT INTO category."Wards" VALUES (31489, 936, 'system', '2023-07-26 08:40:17.692369+07', 'system', '2023-07-26 08:40:17.692369+07', 'Thị trấn Vĩnh Viễn', '31489', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31490, 936, 'system', '2023-07-26 08:40:17.692371+07', 'system', '2023-07-26 08:40:17.692371+07', 'Xã Vĩnh Viễn A', '31490', 'Xã');
INSERT INTO category."Wards" VALUES (31492, 936, 'system', '2023-07-26 08:40:17.692373+07', 'system', '2023-07-26 08:40:17.692373+07', 'Xã Lương Tâm', '31492', 'Xã');
INSERT INTO category."Wards" VALUES (31493, 936, 'system', '2023-07-26 08:40:17.692375+07', 'system', '2023-07-26 08:40:17.692375+07', 'Xã Lương Nghĩa', '31493', 'Xã');
INSERT INTO category."Wards" VALUES (31495, 936, 'system', '2023-07-26 08:40:17.692377+07', 'system', '2023-07-26 08:40:17.692377+07', 'Xã Xà Phiên', '31495', 'Xã');
INSERT INTO category."Wards" VALUES (31498, 941, 'system', '2023-07-26 08:40:17.692396+07', 'system', '2023-07-26 08:40:17.692396+07', 'Phường 5', '31498', 'Phường');
INSERT INTO category."Wards" VALUES (31501, 941, 'system', '2023-07-26 08:40:17.692398+07', 'system', '2023-07-26 08:40:17.692398+07', 'Phường 7', '31501', 'Phường');
INSERT INTO category."Wards" VALUES (31504, 941, 'system', '2023-07-26 08:40:17.6924+07', 'system', '2023-07-26 08:40:17.6924+07', 'Phường 8', '31504', 'Phường');
INSERT INTO category."Wards" VALUES (31507, 941, 'system', '2023-07-26 08:40:17.692402+07', 'system', '2023-07-26 08:40:17.692402+07', 'Phường 6', '31507', 'Phường');
INSERT INTO category."Wards" VALUES (31510, 941, 'system', '2023-07-26 08:40:17.692404+07', 'system', '2023-07-26 08:40:17.692404+07', 'Phường 2', '31510', 'Phường');
INSERT INTO category."Wards" VALUES (31513, 941, 'system', '2023-07-26 08:40:17.692406+07', 'system', '2023-07-26 08:40:17.692406+07', 'Phường 1', '31513', 'Phường');
INSERT INTO category."Wards" VALUES (31516, 941, 'system', '2023-07-26 08:40:17.692407+07', 'system', '2023-07-26 08:40:17.692408+07', 'Phường 4', '31516', 'Phường');
INSERT INTO category."Wards" VALUES (31519, 941, 'system', '2023-07-26 08:40:17.692409+07', 'system', '2023-07-26 08:40:17.692409+07', 'Phường 3', '31519', 'Phường');
INSERT INTO category."Wards" VALUES (31522, 941, 'system', '2023-07-26 08:40:17.692411+07', 'system', '2023-07-26 08:40:17.692411+07', 'Phường 9', '31522', 'Phường');
INSERT INTO category."Wards" VALUES (31525, 941, 'system', '2023-07-26 08:40:17.692413+07', 'system', '2023-07-26 08:40:17.692413+07', 'Phường 10', '31525', 'Phường');
INSERT INTO category."Wards" VALUES (31528, 943, 'system', '2023-07-26 08:40:17.69243+07', 'system', '2023-07-26 08:40:17.69243+07', 'Thị trấn Kế Sách', '31528', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31531, 943, 'system', '2023-07-26 08:40:17.692432+07', 'system', '2023-07-26 08:40:17.692432+07', 'Thị trấn An Lạc Thôn', '31531', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31534, 943, 'system', '2023-07-26 08:40:17.692435+07', 'system', '2023-07-26 08:40:17.692435+07', 'Xã Xuân Hòa', '31534', 'Xã');
INSERT INTO category."Wards" VALUES (31537, 943, 'system', '2023-07-26 08:40:17.692437+07', 'system', '2023-07-26 08:40:17.692437+07', 'Xã Phong Nẫm', '31537', 'Xã');
INSERT INTO category."Wards" VALUES (31540, 943, 'system', '2023-07-26 08:40:17.692439+07', 'system', '2023-07-26 08:40:17.692439+07', 'Xã An Lạc Tây', '31540', 'Xã');
INSERT INTO category."Wards" VALUES (31543, 943, 'system', '2023-07-26 08:40:17.692441+07', 'system', '2023-07-26 08:40:17.692441+07', 'Xã Trinh Phú', '31543', 'Xã');
INSERT INTO category."Wards" VALUES (31546, 943, 'system', '2023-07-26 08:40:17.692443+07', 'system', '2023-07-26 08:40:17.692443+07', 'Xã Ba Trinh', '31546', 'Xã');
INSERT INTO category."Wards" VALUES (31549, 943, 'system', '2023-07-26 08:40:17.692445+07', 'system', '2023-07-26 08:40:17.692445+07', 'Xã Thới An Hội', '31549', 'Xã');
INSERT INTO category."Wards" VALUES (31552, 943, 'system', '2023-07-26 08:40:17.692447+07', 'system', '2023-07-26 08:40:17.692447+07', 'Xã Nhơn Mỹ', '31552', 'Xã');
INSERT INTO category."Wards" VALUES (31555, 943, 'system', '2023-07-26 08:40:17.692448+07', 'system', '2023-07-26 08:40:17.692448+07', 'Xã Kế Thành', '31555', 'Xã');
INSERT INTO category."Wards" VALUES (31558, 943, 'system', '2023-07-26 08:40:17.69245+07', 'system', '2023-07-26 08:40:17.69245+07', 'Xã Kế An', '31558', 'Xã');
INSERT INTO category."Wards" VALUES (31561, 943, 'system', '2023-07-26 08:40:17.692452+07', 'system', '2023-07-26 08:40:17.692452+07', 'Xã Đại Hải', '31561', 'Xã');
INSERT INTO category."Wards" VALUES (31564, 943, 'system', '2023-07-26 08:40:17.692454+07', 'system', '2023-07-26 08:40:17.692454+07', 'Xã An Mỹ', '31564', 'Xã');
INSERT INTO category."Wards" VALUES (31567, 944, 'system', '2023-07-26 08:40:17.692456+07', 'system', '2023-07-26 08:40:17.692456+07', 'Thị trấn Huỳnh Hữu Nghĩa', '31567', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31569, 942, 'system', '2023-07-26 08:40:17.692415+07', 'system', '2023-07-26 08:40:17.692415+07', 'Thị trấn Châu Thành', '31569', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31570, 942, 'system', '2023-07-26 08:40:17.692417+07', 'system', '2023-07-26 08:40:17.692417+07', 'Xã Hồ Đắc Kiện', '31570', 'Xã');
INSERT INTO category."Wards" VALUES (31573, 942, 'system', '2023-07-26 08:40:17.692419+07', 'system', '2023-07-26 08:40:17.692419+07', 'Xã Phú Tâm', '31573', 'Xã');
INSERT INTO category."Wards" VALUES (31576, 942, 'system', '2023-07-26 08:40:17.692421+07', 'system', '2023-07-26 08:40:17.692421+07', 'Xã Thuận Hòa', '31576', 'Xã');
INSERT INTO category."Wards" VALUES (31579, 944, 'system', '2023-07-26 08:40:17.692458+07', 'system', '2023-07-26 08:40:17.692458+07', 'Xã Long Hưng', '31579', 'Xã');
INSERT INTO category."Wards" VALUES (31582, 942, 'system', '2023-07-26 08:40:17.692423+07', 'system', '2023-07-26 08:40:17.692423+07', 'Xã Phú Tân', '31582', 'Xã');
INSERT INTO category."Wards" VALUES (31585, 942, 'system', '2023-07-26 08:40:17.692425+07', 'system', '2023-07-26 08:40:17.692425+07', 'Xã Thiện Mỹ', '31585', 'Xã');
INSERT INTO category."Wards" VALUES (31588, 944, 'system', '2023-07-26 08:40:17.69246+07', 'system', '2023-07-26 08:40:17.69246+07', 'Xã Hưng Phú', '31588', 'Xã');
INSERT INTO category."Wards" VALUES (31591, 944, 'system', '2023-07-26 08:40:17.692462+07', 'system', '2023-07-26 08:40:17.692462+07', 'Xã Mỹ Hương', '31591', 'Xã');
INSERT INTO category."Wards" VALUES (31594, 942, 'system', '2023-07-26 08:40:17.692427+07', 'system', '2023-07-26 08:40:17.692427+07', 'Xã An Hiệp', '31594', 'Xã');
INSERT INTO category."Wards" VALUES (31597, 944, 'system', '2023-07-26 08:40:17.692463+07', 'system', '2023-07-26 08:40:17.692464+07', 'Xã Mỹ Tú', '31597', 'Xã');
INSERT INTO category."Wards" VALUES (31600, 942, 'system', '2023-07-26 08:40:17.692428+07', 'system', '2023-07-26 08:40:17.692429+07', 'Xã An Ninh', '31600', 'Xã');
INSERT INTO category."Wards" VALUES (31603, 944, 'system', '2023-07-26 08:40:17.692465+07', 'system', '2023-07-26 08:40:17.692465+07', 'Xã Mỹ Phước', '31603', 'Xã');
INSERT INTO category."Wards" VALUES (31606, 944, 'system', '2023-07-26 08:40:17.692467+07', 'system', '2023-07-26 08:40:17.692467+07', 'Xã Thuận Hưng', '31606', 'Xã');
INSERT INTO category."Wards" VALUES (31609, 944, 'system', '2023-07-26 08:40:17.692469+07', 'system', '2023-07-26 08:40:17.692469+07', 'Xã Mỹ Thuận', '31609', 'Xã');
INSERT INTO category."Wards" VALUES (31612, 944, 'system', '2023-07-26 08:40:17.692471+07', 'system', '2023-07-26 08:40:17.692471+07', 'Xã Phú Mỹ', '31612', 'Xã');
INSERT INTO category."Wards" VALUES (31615, 945, 'system', '2023-07-26 08:40:17.692473+07', 'system', '2023-07-26 08:40:17.692473+07', 'Thị trấn Cù Lao Dung', '31615', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31618, 945, 'system', '2023-07-26 08:40:17.692475+07', 'system', '2023-07-26 08:40:17.692475+07', 'Xã An Thạnh 1', '31618', 'Xã');
INSERT INTO category."Wards" VALUES (31621, 945, 'system', '2023-07-26 08:40:17.692477+07', 'system', '2023-07-26 08:40:17.692477+07', 'Xã An Thạnh Tây', '31621', 'Xã');
INSERT INTO category."Wards" VALUES (31624, 945, 'system', '2023-07-26 08:40:17.692479+07', 'system', '2023-07-26 08:40:17.692479+07', 'Xã An Thạnh Đông', '31624', 'Xã');
INSERT INTO category."Wards" VALUES (31627, 945, 'system', '2023-07-26 08:40:17.692481+07', 'system', '2023-07-26 08:40:17.692481+07', 'Xã Đại Ân 1', '31627', 'Xã');
INSERT INTO category."Wards" VALUES (31630, 945, 'system', '2023-07-26 08:40:17.692483+07', 'system', '2023-07-26 08:40:17.692483+07', 'Xã An Thạnh 2', '31630', 'Xã');
INSERT INTO category."Wards" VALUES (31633, 945, 'system', '2023-07-26 08:40:17.692485+07', 'system', '2023-07-26 08:40:17.692485+07', 'Xã An Thạnh 3', '31633', 'Xã');
INSERT INTO category."Wards" VALUES (31636, 945, 'system', '2023-07-26 08:40:17.692486+07', 'system', '2023-07-26 08:40:17.692486+07', 'Xã An Thạnh Nam', '31636', 'Xã');
INSERT INTO category."Wards" VALUES (31639, 946, 'system', '2023-07-26 08:40:17.692488+07', 'system', '2023-07-26 08:40:17.692488+07', 'Thị trấn Long Phú', '31639', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31642, 946, 'system', '2023-07-26 08:40:17.69249+07', 'system', '2023-07-26 08:40:17.692491+07', 'Xã Song Phụng', '31642', 'Xã');
INSERT INTO category."Wards" VALUES (31645, 946, 'system', '2023-07-26 08:40:17.692492+07', 'system', '2023-07-26 08:40:17.692492+07', 'Thị trấn Đại Ngãi', '31645', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31648, 946, 'system', '2023-07-26 08:40:17.692494+07', 'system', '2023-07-26 08:40:17.692495+07', 'Xã Hậu Thạnh', '31648', 'Xã');
INSERT INTO category."Wards" VALUES (31651, 946, 'system', '2023-07-26 08:40:17.692496+07', 'system', '2023-07-26 08:40:17.692496+07', 'Xã Long Đức', '31651', 'Xã');
INSERT INTO category."Wards" VALUES (31654, 946, 'system', '2023-07-26 08:40:17.692498+07', 'system', '2023-07-26 08:40:17.692498+07', 'Xã Trường Khánh', '31654', 'Xã');
INSERT INTO category."Wards" VALUES (31657, 946, 'system', '2023-07-26 08:40:17.6925+07', 'system', '2023-07-26 08:40:17.6925+07', 'Xã Phú Hữu', '31657', 'Xã');
INSERT INTO category."Wards" VALUES (31660, 946, 'system', '2023-07-26 08:40:17.692502+07', 'system', '2023-07-26 08:40:17.692502+07', 'Xã Tân Hưng', '31660', 'Xã');
INSERT INTO category."Wards" VALUES (31663, 946, 'system', '2023-07-26 08:40:17.692505+07', 'system', '2023-07-26 08:40:17.692505+07', 'Xã Châu Khánh', '31663', 'Xã');
INSERT INTO category."Wards" VALUES (31666, 946, 'system', '2023-07-26 08:40:17.692507+07', 'system', '2023-07-26 08:40:17.692507+07', 'Xã Tân Thạnh', '31666', 'Xã');
INSERT INTO category."Wards" VALUES (31669, 946, 'system', '2023-07-26 08:40:17.692509+07', 'system', '2023-07-26 08:40:17.692509+07', 'Xã Long Phú', '31669', 'Xã');
INSERT INTO category."Wards" VALUES (31672, 951, 'system', '2023-07-26 08:40:17.692596+07', 'system', '2023-07-26 08:40:17.692596+07', 'Xã Đại Ân  2', '31672', 'Xã');
INSERT INTO category."Wards" VALUES (31673, 951, 'system', '2023-07-26 08:40:17.692598+07', 'system', '2023-07-26 08:40:17.692598+07', 'Thị trấn Trần Đề', '31673', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31675, 951, 'system', '2023-07-26 08:40:17.6926+07', 'system', '2023-07-26 08:40:17.6926+07', 'Xã Liêu Tú', '31675', 'Xã');
INSERT INTO category."Wards" VALUES (31678, 951, 'system', '2023-07-26 08:40:17.692602+07', 'system', '2023-07-26 08:40:17.692602+07', 'Xã Lịch Hội Thượng', '31678', 'Xã');
INSERT INTO category."Wards" VALUES (31679, 951, 'system', '2023-07-26 08:40:17.692604+07', 'system', '2023-07-26 08:40:17.692604+07', 'Thị trấn Lịch Hội Thượng', '31679', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31681, 951, 'system', '2023-07-26 08:40:17.692606+07', 'system', '2023-07-26 08:40:17.692606+07', 'Xã Trung Bình', '31681', 'Xã');
INSERT INTO category."Wards" VALUES (31684, 947, 'system', '2023-07-26 08:40:17.692512+07', 'system', '2023-07-26 08:40:17.692512+07', 'Thị trấn Mỹ Xuyên', '31684', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31687, 951, 'system', '2023-07-26 08:40:17.692608+07', 'system', '2023-07-26 08:40:17.692608+07', 'Xã Tài Văn', '31687', 'Xã');
INSERT INTO category."Wards" VALUES (31690, 947, 'system', '2023-07-26 08:40:17.692516+07', 'system', '2023-07-26 08:40:17.692516+07', 'Xã Đại Tâm', '31690', 'Xã');
INSERT INTO category."Wards" VALUES (31693, 947, 'system', '2023-07-26 08:40:17.692519+07', 'system', '2023-07-26 08:40:17.692519+07', 'Xã Tham Đôn', '31693', 'Xã');
INSERT INTO category."Wards" VALUES (31696, 951, 'system', '2023-07-26 08:40:17.692609+07', 'system', '2023-07-26 08:40:17.69261+07', 'Xã Viên An', '31696', 'Xã');
INSERT INTO category."Wards" VALUES (31699, 951, 'system', '2023-07-26 08:40:17.692611+07', 'system', '2023-07-26 08:40:17.692611+07', 'Xã Thạnh Thới An', '31699', 'Xã');
INSERT INTO category."Wards" VALUES (31702, 951, 'system', '2023-07-26 08:40:17.692613+07', 'system', '2023-07-26 08:40:17.692613+07', 'Xã Thạnh Thới Thuận', '31702', 'Xã');
INSERT INTO category."Wards" VALUES (31705, 951, 'system', '2023-07-26 08:40:17.692615+07', 'system', '2023-07-26 08:40:17.692615+07', 'Xã Viên Bình', '31705', 'Xã');
INSERT INTO category."Wards" VALUES (31708, 947, 'system', '2023-07-26 08:40:17.692523+07', 'system', '2023-07-26 08:40:17.692523+07', 'Xã Thạnh Phú', '31708', 'Xã');
INSERT INTO category."Wards" VALUES (31711, 947, 'system', '2023-07-26 08:40:17.692526+07', 'system', '2023-07-26 08:40:17.692527+07', 'Xã Ngọc Đông', '31711', 'Xã');
INSERT INTO category."Wards" VALUES (31714, 947, 'system', '2023-07-26 08:40:17.69253+07', 'system', '2023-07-26 08:40:17.69253+07', 'Xã Thạnh Quới', '31714', 'Xã');
INSERT INTO category."Wards" VALUES (31717, 947, 'system', '2023-07-26 08:40:17.692533+07', 'system', '2023-07-26 08:40:17.692533+07', 'Xã Hòa Tú 1', '31717', 'Xã');
INSERT INTO category."Wards" VALUES (31720, 947, 'system', '2023-07-26 08:40:17.692534+07', 'system', '2023-07-26 08:40:17.692535+07', 'Xã Gia Hòa 1', '31720', 'Xã');
INSERT INTO category."Wards" VALUES (31723, 947, 'system', '2023-07-26 08:40:17.692536+07', 'system', '2023-07-26 08:40:17.692536+07', 'Xã Ngọc Tố', '31723', 'Xã');
INSERT INTO category."Wards" VALUES (31726, 947, 'system', '2023-07-26 08:40:17.692538+07', 'system', '2023-07-26 08:40:17.692538+07', 'Xã Gia Hòa 2', '31726', 'Xã');
INSERT INTO category."Wards" VALUES (31729, 947, 'system', '2023-07-26 08:40:17.69254+07', 'system', '2023-07-26 08:40:17.69254+07', 'Xã Hòa Tú II', '31729', 'Xã');
INSERT INTO category."Wards" VALUES (31732, 948, 'system', '2023-07-26 08:40:17.692542+07', 'system', '2023-07-26 08:40:17.692542+07', 'Phường 1', '31732', 'Phường');
INSERT INTO category."Wards" VALUES (31735, 948, 'system', '2023-07-26 08:40:17.692544+07', 'system', '2023-07-26 08:40:17.692544+07', 'Phường 2', '31735', 'Phường');
INSERT INTO category."Wards" VALUES (31738, 948, 'system', '2023-07-26 08:40:17.692546+07', 'system', '2023-07-26 08:40:17.692546+07', 'Xã Vĩnh Quới', '31738', 'Xã');
INSERT INTO category."Wards" VALUES (31741, 948, 'system', '2023-07-26 08:40:17.692548+07', 'system', '2023-07-26 08:40:17.692548+07', 'Xã Tân Long', '31741', 'Xã');
INSERT INTO category."Wards" VALUES (31744, 948, 'system', '2023-07-26 08:40:17.692549+07', 'system', '2023-07-26 08:40:17.692549+07', 'Xã Long Bình', '31744', 'Xã');
INSERT INTO category."Wards" VALUES (31747, 948, 'system', '2023-07-26 08:40:17.692551+07', 'system', '2023-07-26 08:40:17.692551+07', 'Phường 3', '31747', 'Phường');
INSERT INTO category."Wards" VALUES (31750, 948, 'system', '2023-07-26 08:40:17.692553+07', 'system', '2023-07-26 08:40:17.692553+07', 'Xã Mỹ Bình', '31750', 'Xã');
INSERT INTO category."Wards" VALUES (31753, 948, 'system', '2023-07-26 08:40:17.692555+07', 'system', '2023-07-26 08:40:17.692555+07', 'Xã Mỹ Quới', '31753', 'Xã');
INSERT INTO category."Wards" VALUES (31756, 949, 'system', '2023-07-26 08:40:17.692557+07', 'system', '2023-07-26 08:40:17.692557+07', 'Thị trấn Phú Lộc', '31756', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31757, 949, 'system', '2023-07-26 08:40:17.692559+07', 'system', '2023-07-26 08:40:17.692559+07', 'Thị trấn Hưng Lợi', '31757', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31759, 949, 'system', '2023-07-26 08:40:17.692561+07', 'system', '2023-07-26 08:40:17.692561+07', 'Xã Lâm Tân', '31759', 'Xã');
INSERT INTO category."Wards" VALUES (31762, 949, 'system', '2023-07-26 08:40:17.692563+07', 'system', '2023-07-26 08:40:17.692563+07', 'Xã Thạnh Tân', '31762', 'Xã');
INSERT INTO category."Wards" VALUES (31765, 949, 'system', '2023-07-26 08:40:17.692564+07', 'system', '2023-07-26 08:40:17.692564+07', 'Xã Lâm Kiết', '31765', 'Xã');
INSERT INTO category."Wards" VALUES (31768, 949, 'system', '2023-07-26 08:40:17.692566+07', 'system', '2023-07-26 08:40:17.692566+07', 'Xã Tuân Tức', '31768', 'Xã');
INSERT INTO category."Wards" VALUES (31771, 949, 'system', '2023-07-26 08:40:17.692568+07', 'system', '2023-07-26 08:40:17.692568+07', 'Xã Vĩnh Thành', '31771', 'Xã');
INSERT INTO category."Wards" VALUES (31774, 949, 'system', '2023-07-26 08:40:17.69257+07', 'system', '2023-07-26 08:40:17.69257+07', 'Xã Thạnh Trị', '31774', 'Xã');
INSERT INTO category."Wards" VALUES (31777, 949, 'system', '2023-07-26 08:40:17.692572+07', 'system', '2023-07-26 08:40:17.692572+07', 'Xã Vĩnh Lợi', '31777', 'Xã');
INSERT INTO category."Wards" VALUES (31780, 949, 'system', '2023-07-26 08:40:17.692574+07', 'system', '2023-07-26 08:40:17.692574+07', 'Xã Châu Hưng', '31780', 'Xã');
INSERT INTO category."Wards" VALUES (31783, 950, 'system', '2023-07-26 08:40:17.692576+07', 'system', '2023-07-26 08:40:17.692576+07', 'Phường 1', '31783', 'Phường');
INSERT INTO category."Wards" VALUES (31786, 950, 'system', '2023-07-26 08:40:17.692577+07', 'system', '2023-07-26 08:40:17.692578+07', 'Xã Hòa Đông', '31786', 'Xã');
INSERT INTO category."Wards" VALUES (31789, 950, 'system', '2023-07-26 08:40:17.692579+07', 'system', '2023-07-26 08:40:17.692579+07', 'Phường Khánh Hòa', '31789', 'Phường');
INSERT INTO category."Wards" VALUES (31792, 950, 'system', '2023-07-26 08:40:17.692581+07', 'system', '2023-07-26 08:40:17.692581+07', 'Xã Vĩnh Hiệp', '31792', 'Xã');
INSERT INTO category."Wards" VALUES (31795, 950, 'system', '2023-07-26 08:40:17.692584+07', 'system', '2023-07-26 08:40:17.692584+07', 'Xã Vĩnh Hải', '31795', 'Xã');
INSERT INTO category."Wards" VALUES (31798, 950, 'system', '2023-07-26 08:40:17.692586+07', 'system', '2023-07-26 08:40:17.692586+07', 'Xã Lạc Hòa', '31798', 'Xã');
INSERT INTO category."Wards" VALUES (31801, 950, 'system', '2023-07-26 08:40:17.692588+07', 'system', '2023-07-26 08:40:17.692588+07', 'Phường 2', '31801', 'Phường');
INSERT INTO category."Wards" VALUES (31804, 950, 'system', '2023-07-26 08:40:17.69259+07', 'system', '2023-07-26 08:40:17.69259+07', 'Phường Vĩnh Phước', '31804', 'Phường');
INSERT INTO category."Wards" VALUES (31807, 950, 'system', '2023-07-26 08:40:17.692592+07', 'system', '2023-07-26 08:40:17.692592+07', 'Xã Vĩnh Tân', '31807', 'Xã');
INSERT INTO category."Wards" VALUES (31810, 950, 'system', '2023-07-26 08:40:17.692594+07', 'system', '2023-07-26 08:40:17.692594+07', 'Xã Lai Hòa', '31810', 'Xã');
INSERT INTO category."Wards" VALUES (31813, 954, 'system', '2023-07-26 08:40:17.692617+07', 'system', '2023-07-26 08:40:17.692617+07', 'Phường 2', '31813', 'Phường');
INSERT INTO category."Wards" VALUES (31816, 954, 'system', '2023-07-26 08:40:17.692619+07', 'system', '2023-07-26 08:40:17.692619+07', 'Phường 3', '31816', 'Phường');
INSERT INTO category."Wards" VALUES (31819, 954, 'system', '2023-07-26 08:40:17.692621+07', 'system', '2023-07-26 08:40:17.692621+07', 'Phường 5', '31819', 'Phường');
INSERT INTO category."Wards" VALUES (31822, 954, 'system', '2023-07-26 08:40:17.692622+07', 'system', '2023-07-26 08:40:17.692622+07', 'Phường 7', '31822', 'Phường');
INSERT INTO category."Wards" VALUES (31825, 954, 'system', '2023-07-26 08:40:17.692624+07', 'system', '2023-07-26 08:40:17.692624+07', 'Phường 1', '31825', 'Phường');
INSERT INTO category."Wards" VALUES (31828, 954, 'system', '2023-07-26 08:40:17.692626+07', 'system', '2023-07-26 08:40:17.692626+07', 'Phường 8', '31828', 'Phường');
INSERT INTO category."Wards" VALUES (31831, 954, 'system', '2023-07-26 08:40:17.692628+07', 'system', '2023-07-26 08:40:17.692628+07', 'Phường Nhà Mát', '31831', 'Phường');
INSERT INTO category."Wards" VALUES (31834, 954, 'system', '2023-07-26 08:40:17.69263+07', 'system', '2023-07-26 08:40:17.69263+07', 'Xã Vĩnh Trạch', '31834', 'Xã');
INSERT INTO category."Wards" VALUES (31837, 954, 'system', '2023-07-26 08:40:17.692632+07', 'system', '2023-07-26 08:40:17.692632+07', 'Xã Vĩnh Trạch Đông', '31837', 'Xã');
INSERT INTO category."Wards" VALUES (31840, 954, 'system', '2023-07-26 08:40:17.692634+07', 'system', '2023-07-26 08:40:17.692634+07', 'Xã Hiệp Thành', '31840', 'Xã');
INSERT INTO category."Wards" VALUES (31843, 956, 'system', '2023-07-26 08:40:17.692636+07', 'system', '2023-07-26 08:40:17.692636+07', 'Thị trấn Ngan Dừa', '31843', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31846, 956, 'system', '2023-07-26 08:40:17.692638+07', 'system', '2023-07-26 08:40:17.692638+07', 'Xã Ninh Quới', '31846', 'Xã');
INSERT INTO category."Wards" VALUES (31849, 956, 'system', '2023-07-26 08:40:17.692639+07', 'system', '2023-07-26 08:40:17.692639+07', 'Xã Ninh Quới A', '31849', 'Xã');
INSERT INTO category."Wards" VALUES (31852, 956, 'system', '2023-07-26 08:40:17.692641+07', 'system', '2023-07-26 08:40:17.692641+07', 'Xã Ninh Hòa', '31852', 'Xã');
INSERT INTO category."Wards" VALUES (31855, 956, 'system', '2023-07-26 08:40:17.692643+07', 'system', '2023-07-26 08:40:17.692643+07', 'Xã Lộc Ninh', '31855', 'Xã');
INSERT INTO category."Wards" VALUES (31858, 956, 'system', '2023-07-26 08:40:17.692645+07', 'system', '2023-07-26 08:40:17.692645+07', 'Xã Vĩnh Lộc', '31858', 'Xã');
INSERT INTO category."Wards" VALUES (31861, 956, 'system', '2023-07-26 08:40:17.692647+07', 'system', '2023-07-26 08:40:17.692647+07', 'Xã Vĩnh Lộc A', '31861', 'Xã');
INSERT INTO category."Wards" VALUES (31863, 956, 'system', '2023-07-26 08:40:17.692649+07', 'system', '2023-07-26 08:40:17.692649+07', 'Xã Ninh Thạnh Lợi A', '31863', 'Xã');
INSERT INTO category."Wards" VALUES (31864, 956, 'system', '2023-07-26 08:40:17.692651+07', 'system', '2023-07-26 08:40:17.692651+07', 'Xã Ninh Thạnh Lợi', '31864', 'Xã');
INSERT INTO category."Wards" VALUES (31867, 957, 'system', '2023-07-26 08:40:17.692653+07', 'system', '2023-07-26 08:40:17.692653+07', 'Thị trấn Phước Long', '31867', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31870, 957, 'system', '2023-07-26 08:40:17.692655+07', 'system', '2023-07-26 08:40:17.692655+07', 'Xã Vĩnh Phú Đông', '31870', 'Xã');
INSERT INTO category."Wards" VALUES (31873, 957, 'system', '2023-07-26 08:40:17.692657+07', 'system', '2023-07-26 08:40:17.692657+07', 'Xã Vĩnh Phú Tây', '31873', 'Xã');
INSERT INTO category."Wards" VALUES (31876, 957, 'system', '2023-07-26 08:40:17.692659+07', 'system', '2023-07-26 08:40:17.692659+07', 'Xã Phước Long', '31876', 'Xã');
INSERT INTO category."Wards" VALUES (31879, 957, 'system', '2023-07-26 08:40:17.692661+07', 'system', '2023-07-26 08:40:17.692661+07', 'Xã Hưng Phú', '31879', 'Xã');
INSERT INTO category."Wards" VALUES (31882, 957, 'system', '2023-07-26 08:40:17.692663+07', 'system', '2023-07-26 08:40:17.692663+07', 'Xã Vĩnh Thanh', '31882', 'Xã');
INSERT INTO category."Wards" VALUES (31885, 957, 'system', '2023-07-26 08:40:17.692665+07', 'system', '2023-07-26 08:40:17.692665+07', 'Xã Phong Thạnh Tây A', '31885', 'Xã');
INSERT INTO category."Wards" VALUES (31888, 957, 'system', '2023-07-26 08:40:17.692667+07', 'system', '2023-07-26 08:40:17.692667+07', 'Xã Phong Thạnh Tây B', '31888', 'Xã');
INSERT INTO category."Wards" VALUES (31891, 961, 'system', '2023-07-26 08:40:17.692725+07', 'system', '2023-07-26 08:40:17.692725+07', 'Thị trấn Hòa Bình', '31891', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31894, 958, 'system', '2023-07-26 08:40:17.692669+07', 'system', '2023-07-26 08:40:17.692669+07', 'Xã Vĩnh Hưng', '31894', 'Xã');
INSERT INTO category."Wards" VALUES (31897, 958, 'system', '2023-07-26 08:40:17.69267+07', 'system', '2023-07-26 08:40:17.69267+07', 'Xã Vĩnh Hưng A', '31897', 'Xã');
INSERT INTO category."Wards" VALUES (31900, 958, 'system', '2023-07-26 08:40:17.692672+07', 'system', '2023-07-26 08:40:17.692672+07', 'Thị trấn Châu Hưng', '31900', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31903, 958, 'system', '2023-07-26 08:40:17.692674+07', 'system', '2023-07-26 08:40:17.692674+07', 'Xã Châu Hưng A', '31903', 'Xã');
INSERT INTO category."Wards" VALUES (31906, 958, 'system', '2023-07-26 08:40:17.692676+07', 'system', '2023-07-26 08:40:17.692676+07', 'Xã Hưng Thành', '31906', 'Xã');
INSERT INTO category."Wards" VALUES (31909, 958, 'system', '2023-07-26 08:40:17.692678+07', 'system', '2023-07-26 08:40:17.692678+07', 'Xã Hưng Hội', '31909', 'Xã');
INSERT INTO category."Wards" VALUES (31912, 958, 'system', '2023-07-26 08:40:17.69268+07', 'system', '2023-07-26 08:40:17.69268+07', 'Xã Châu Thới', '31912', 'Xã');
INSERT INTO category."Wards" VALUES (31915, 961, 'system', '2023-07-26 08:40:17.692727+07', 'system', '2023-07-26 08:40:17.692727+07', 'Xã Minh Diệu', '31915', 'Xã');
INSERT INTO category."Wards" VALUES (31918, 961, 'system', '2023-07-26 08:40:17.692728+07', 'system', '2023-07-26 08:40:17.692729+07', 'Xã Vĩnh Bình', '31918', 'Xã');
INSERT INTO category."Wards" VALUES (31921, 958, 'system', '2023-07-26 08:40:17.692681+07', 'system', '2023-07-26 08:40:17.692681+07', 'Xã Long Thạnh', '31921', 'Xã');
INSERT INTO category."Wards" VALUES (31924, 961, 'system', '2023-07-26 08:40:17.69273+07', 'system', '2023-07-26 08:40:17.69273+07', 'Xã Vĩnh Mỹ B', '31924', 'Xã');
INSERT INTO category."Wards" VALUES (31927, 961, 'system', '2023-07-26 08:40:17.692732+07', 'system', '2023-07-26 08:40:17.692732+07', 'Xã Vĩnh Hậu', '31927', 'Xã');
INSERT INTO category."Wards" VALUES (31930, 961, 'system', '2023-07-26 08:40:17.692734+07', 'system', '2023-07-26 08:40:17.692734+07', 'Xã Vĩnh Hậu A', '31930', 'Xã');
INSERT INTO category."Wards" VALUES (31933, 961, 'system', '2023-07-26 08:40:17.692736+07', 'system', '2023-07-26 08:40:17.692736+07', 'Xã Vĩnh Mỹ A', '31933', 'Xã');
INSERT INTO category."Wards" VALUES (31936, 961, 'system', '2023-07-26 08:40:17.692738+07', 'system', '2023-07-26 08:40:17.692738+07', 'Xã Vĩnh Thịnh', '31936', 'Xã');
INSERT INTO category."Wards" VALUES (31942, 959, 'system', '2023-07-26 08:40:17.692683+07', 'system', '2023-07-26 08:40:17.692683+07', 'Phường 1', '31942', 'Phường');
INSERT INTO category."Wards" VALUES (31945, 959, 'system', '2023-07-26 08:40:17.692685+07', 'system', '2023-07-26 08:40:17.692685+07', 'Phường Hộ Phòng', '31945', 'Phường');
INSERT INTO category."Wards" VALUES (31948, 959, 'system', '2023-07-26 08:40:17.692687+07', 'system', '2023-07-26 08:40:17.692687+07', 'Xã Phong Thạnh Đông', '31948', 'Xã');
INSERT INTO category."Wards" VALUES (31951, 959, 'system', '2023-07-26 08:40:17.692689+07', 'system', '2023-07-26 08:40:17.692689+07', 'Phường Láng Tròn', '31951', 'Phường');
INSERT INTO category."Wards" VALUES (31954, 959, 'system', '2023-07-26 08:40:17.692691+07', 'system', '2023-07-26 08:40:17.692691+07', 'Xã Phong Tân', '31954', 'Xã');
INSERT INTO category."Wards" VALUES (31957, 959, 'system', '2023-07-26 08:40:17.692693+07', 'system', '2023-07-26 08:40:17.692693+07', 'Xã Tân Phong', '31957', 'Xã');
INSERT INTO category."Wards" VALUES (31960, 959, 'system', '2023-07-26 08:40:17.692695+07', 'system', '2023-07-26 08:40:17.692695+07', 'Xã Phong Thạnh', '31960', 'Xã');
INSERT INTO category."Wards" VALUES (31963, 959, 'system', '2023-07-26 08:40:17.692697+07', 'system', '2023-07-26 08:40:17.692697+07', 'Xã Phong Thạnh A', '31963', 'Xã');
INSERT INTO category."Wards" VALUES (31966, 959, 'system', '2023-07-26 08:40:17.692699+07', 'system', '2023-07-26 08:40:17.692699+07', 'Xã Phong Thạnh Tây', '31966', 'Xã');
INSERT INTO category."Wards" VALUES (31969, 959, 'system', '2023-07-26 08:40:17.692701+07', 'system', '2023-07-26 08:40:17.692701+07', 'Xã Tân Thạnh', '31969', 'Xã');
INSERT INTO category."Wards" VALUES (31972, 960, 'system', '2023-07-26 08:40:17.692703+07', 'system', '2023-07-26 08:40:17.692703+07', 'Thị trấn Gành Hào', '31972', 'Thị trấn');
INSERT INTO category."Wards" VALUES (31975, 960, 'system', '2023-07-26 08:40:17.692704+07', 'system', '2023-07-26 08:40:17.692705+07', 'Xã Long Điền Đông', '31975', 'Xã');
INSERT INTO category."Wards" VALUES (31978, 960, 'system', '2023-07-26 08:40:17.692706+07', 'system', '2023-07-26 08:40:17.692707+07', 'Xã Long Điền Đông A', '31978', 'Xã');
INSERT INTO category."Wards" VALUES (31981, 960, 'system', '2023-07-26 08:40:17.692709+07', 'system', '2023-07-26 08:40:17.692709+07', 'Xã Long Điền', '31981', 'Xã');
INSERT INTO category."Wards" VALUES (31984, 960, 'system', '2023-07-26 08:40:17.69271+07', 'system', '2023-07-26 08:40:17.69271+07', 'Xã Long Điền Tây', '31984', 'Xã');
INSERT INTO category."Wards" VALUES (31985, 960, 'system', '2023-07-26 08:40:17.692712+07', 'system', '2023-07-26 08:40:17.692712+07', 'Xã Điền Hải', '31985', 'Xã');
INSERT INTO category."Wards" VALUES (31987, 960, 'system', '2023-07-26 08:40:17.692714+07', 'system', '2023-07-26 08:40:17.692714+07', 'Xã An Trạch', '31987', 'Xã');
INSERT INTO category."Wards" VALUES (31988, 960, 'system', '2023-07-26 08:40:17.692716+07', 'system', '2023-07-26 08:40:17.692716+07', 'Xã An Trạch A', '31988', 'Xã');
INSERT INTO category."Wards" VALUES (31990, 960, 'system', '2023-07-26 08:40:17.692718+07', 'system', '2023-07-26 08:40:17.692718+07', 'Xã An Phúc', '31990', 'Xã');
INSERT INTO category."Wards" VALUES (31993, 960, 'system', '2023-07-26 08:40:17.692721+07', 'system', '2023-07-26 08:40:17.692721+07', 'Xã Định Thành', '31993', 'Xã');
INSERT INTO category."Wards" VALUES (31996, 960, 'system', '2023-07-26 08:40:17.692723+07', 'system', '2023-07-26 08:40:17.692723+07', 'Xã Định Thành A', '31996', 'Xã');
INSERT INTO category."Wards" VALUES (31999, 964, 'system', '2023-07-26 08:40:17.69274+07', 'system', '2023-07-26 08:40:17.69274+07', 'Phường 9', '31999', 'Phường');
INSERT INTO category."Wards" VALUES (32002, 964, 'system', '2023-07-26 08:40:17.692741+07', 'system', '2023-07-26 08:40:17.692741+07', 'Phường 4', '32002', 'Phường');
INSERT INTO category."Wards" VALUES (32005, 964, 'system', '2023-07-26 08:40:17.692743+07', 'system', '2023-07-26 08:40:17.692743+07', 'Phường 1', '32005', 'Phường');
INSERT INTO category."Wards" VALUES (32008, 964, 'system', '2023-07-26 08:40:17.692745+07', 'system', '2023-07-26 08:40:17.692745+07', 'Phường 5', '32008', 'Phường');
INSERT INTO category."Wards" VALUES (32011, 964, 'system', '2023-07-26 08:40:17.692747+07', 'system', '2023-07-26 08:40:17.692747+07', 'Phường 2', '32011', 'Phường');
INSERT INTO category."Wards" VALUES (32014, 964, 'system', '2023-07-26 08:40:17.692749+07', 'system', '2023-07-26 08:40:17.692749+07', 'Phường 8', '32014', 'Phường');
INSERT INTO category."Wards" VALUES (32017, 964, 'system', '2023-07-26 08:40:17.692751+07', 'system', '2023-07-26 08:40:17.692751+07', 'Phường 6', '32017', 'Phường');
INSERT INTO category."Wards" VALUES (32020, 964, 'system', '2023-07-26 08:40:17.692753+07', 'system', '2023-07-26 08:40:17.692753+07', 'Phường 7', '32020', 'Phường');
INSERT INTO category."Wards" VALUES (32022, 964, 'system', '2023-07-26 08:40:17.692754+07', 'system', '2023-07-26 08:40:17.692754+07', 'Phường Tân Xuyên', '32022', 'Phường');
INSERT INTO category."Wards" VALUES (32023, 964, 'system', '2023-07-26 08:40:17.692756+07', 'system', '2023-07-26 08:40:17.692756+07', 'Xã An Xuyên', '32023', 'Xã');
INSERT INTO category."Wards" VALUES (32025, 964, 'system', '2023-07-26 08:40:17.692758+07', 'system', '2023-07-26 08:40:17.692758+07', 'Phường Tân Thành', '32025', 'Phường');
INSERT INTO category."Wards" VALUES (32026, 964, 'system', '2023-07-26 08:40:17.69276+07', 'system', '2023-07-26 08:40:17.69276+07', 'Xã Tân Thành', '32026', 'Xã');
INSERT INTO category."Wards" VALUES (32029, 964, 'system', '2023-07-26 08:40:17.692762+07', 'system', '2023-07-26 08:40:17.692762+07', 'Xã Tắc Vân', '32029', 'Xã');
INSERT INTO category."Wards" VALUES (32032, 964, 'system', '2023-07-26 08:40:17.692764+07', 'system', '2023-07-26 08:40:17.692764+07', 'Xã Lý Văn Lâm', '32032', 'Xã');
INSERT INTO category."Wards" VALUES (32035, 964, 'system', '2023-07-26 08:40:17.692766+07', 'system', '2023-07-26 08:40:17.692766+07', 'Xã Định Bình', '32035', 'Xã');
INSERT INTO category."Wards" VALUES (32038, 964, 'system', '2023-07-26 08:40:17.692768+07', 'system', '2023-07-26 08:40:17.692768+07', 'Xã Hòa Thành', '32038', 'Xã');
INSERT INTO category."Wards" VALUES (32041, 964, 'system', '2023-07-26 08:40:17.69277+07', 'system', '2023-07-26 08:40:17.69277+07', 'Xã Hòa Tân', '32041', 'Xã');
INSERT INTO category."Wards" VALUES (32044, 966, 'system', '2023-07-26 08:40:17.692772+07', 'system', '2023-07-26 08:40:17.692772+07', 'Thị trấn U Minh', '32044', 'Thị trấn');
INSERT INTO category."Wards" VALUES (32047, 966, 'system', '2023-07-26 08:40:17.692774+07', 'system', '2023-07-26 08:40:17.692774+07', 'Xã Khánh Hòa', '32047', 'Xã');
INSERT INTO category."Wards" VALUES (32048, 966, 'system', '2023-07-26 08:40:17.692776+07', 'system', '2023-07-26 08:40:17.692776+07', 'Xã Khánh Thuận', '32048', 'Xã');
INSERT INTO category."Wards" VALUES (32050, 966, 'system', '2023-07-26 08:40:17.692777+07', 'system', '2023-07-26 08:40:17.692777+07', 'Xã Khánh Tiến', '32050', 'Xã');
INSERT INTO category."Wards" VALUES (32053, 966, 'system', '2023-07-26 08:40:17.692779+07', 'system', '2023-07-26 08:40:17.692779+07', 'Xã Nguyễn Phích', '32053', 'Xã');
INSERT INTO category."Wards" VALUES (32056, 966, 'system', '2023-07-26 08:40:17.692781+07', 'system', '2023-07-26 08:40:17.692781+07', 'Xã Khánh Lâm', '32056', 'Xã');
INSERT INTO category."Wards" VALUES (32059, 966, 'system', '2023-07-26 08:40:17.692793+07', 'system', '2023-07-26 08:40:17.692793+07', 'Xã Khánh An', '32059', 'Xã');
INSERT INTO category."Wards" VALUES (32062, 966, 'system', '2023-07-26 08:40:17.692795+07', 'system', '2023-07-26 08:40:17.692795+07', 'Xã Khánh Hội', '32062', 'Xã');
INSERT INTO category."Wards" VALUES (32065, 967, 'system', '2023-07-26 08:40:17.692797+07', 'system', '2023-07-26 08:40:17.692797+07', 'Thị trấn Thới Bình', '32065', 'Thị trấn');
INSERT INTO category."Wards" VALUES (32068, 967, 'system', '2023-07-26 08:40:17.6928+07', 'system', '2023-07-26 08:40:17.6928+07', 'Xã Biển Bạch', '32068', 'Xã');
INSERT INTO category."Wards" VALUES (32069, 967, 'system', '2023-07-26 08:40:17.692802+07', 'system', '2023-07-26 08:40:17.692802+07', 'Xã Tân Bằng', '32069', 'Xã');
INSERT INTO category."Wards" VALUES (32071, 967, 'system', '2023-07-26 08:40:17.692804+07', 'system', '2023-07-26 08:40:17.692804+07', 'Xã Trí Phải', '32071', 'Xã');
INSERT INTO category."Wards" VALUES (32072, 967, 'system', '2023-07-26 08:40:17.692806+07', 'system', '2023-07-26 08:40:17.692806+07', 'Xã Trí Lực', '32072', 'Xã');
INSERT INTO category."Wards" VALUES (32074, 967, 'system', '2023-07-26 08:40:17.692808+07', 'system', '2023-07-26 08:40:17.692808+07', 'Xã Biển Bạch Đông', '32074', 'Xã');
INSERT INTO category."Wards" VALUES (32077, 967, 'system', '2023-07-26 08:40:17.69281+07', 'system', '2023-07-26 08:40:17.69281+07', 'Xã Thới Bình', '32077', 'Xã');
INSERT INTO category."Wards" VALUES (32080, 967, 'system', '2023-07-26 08:40:17.692812+07', 'system', '2023-07-26 08:40:17.692812+07', 'Xã Tân Phú', '32080', 'Xã');
INSERT INTO category."Wards" VALUES (32083, 967, 'system', '2023-07-26 08:40:17.692814+07', 'system', '2023-07-26 08:40:17.692814+07', 'Xã Tân Lộc Bắc', '32083', 'Xã');
INSERT INTO category."Wards" VALUES (32086, 967, 'system', '2023-07-26 08:40:17.692816+07', 'system', '2023-07-26 08:40:17.692816+07', 'Xã Tân Lộc', '32086', 'Xã');
INSERT INTO category."Wards" VALUES (32089, 967, 'system', '2023-07-26 08:40:17.692817+07', 'system', '2023-07-26 08:40:17.692817+07', 'Xã Tân Lộc Đông', '32089', 'Xã');
INSERT INTO category."Wards" VALUES (32092, 967, 'system', '2023-07-26 08:40:17.692819+07', 'system', '2023-07-26 08:40:17.692819+07', 'Xã Hồ Thị Kỷ', '32092', 'Xã');
INSERT INTO category."Wards" VALUES (32095, 968, 'system', '2023-07-26 08:40:17.692829+07', 'system', '2023-07-26 08:40:17.692829+07', 'Thị trấn Trần Văn Thời', '32095', 'Thị trấn');
INSERT INTO category."Wards" VALUES (32098, 968, 'system', '2023-07-26 08:40:17.692832+07', 'system', '2023-07-26 08:40:17.692832+07', 'Thị trấn Sông Đốc', '32098', 'Thị trấn');
INSERT INTO category."Wards" VALUES (32101, 968, 'system', '2023-07-26 08:40:17.692834+07', 'system', '2023-07-26 08:40:17.692834+07', 'Xã Khánh Bình Tây Bắc', '32101', 'Xã');
INSERT INTO category."Wards" VALUES (32104, 968, 'system', '2023-07-26 08:40:17.692836+07', 'system', '2023-07-26 08:40:17.692836+07', 'Xã Khánh Bình Tây', '32104', 'Xã');
INSERT INTO category."Wards" VALUES (32107, 968, 'system', '2023-07-26 08:40:17.692838+07', 'system', '2023-07-26 08:40:17.692838+07', 'Xã Trần Hợi', '32107', 'Xã');
INSERT INTO category."Wards" VALUES (32108, 968, 'system', '2023-07-26 08:40:17.692839+07', 'system', '2023-07-26 08:40:17.69284+07', 'Xã Khánh Lộc', '32108', 'Xã');
INSERT INTO category."Wards" VALUES (32110, 968, 'system', '2023-07-26 08:40:17.692841+07', 'system', '2023-07-26 08:40:17.692841+07', 'Xã Khánh Bình', '32110', 'Xã');
INSERT INTO category."Wards" VALUES (32113, 968, 'system', '2023-07-26 08:40:17.692843+07', 'system', '2023-07-26 08:40:17.692843+07', 'Xã Khánh Hưng', '32113', 'Xã');
INSERT INTO category."Wards" VALUES (32116, 968, 'system', '2023-07-26 08:40:17.692845+07', 'system', '2023-07-26 08:40:17.692845+07', 'Xã Khánh Bình Đông', '32116', 'Xã');
INSERT INTO category."Wards" VALUES (32119, 968, 'system', '2023-07-26 08:40:17.692847+07', 'system', '2023-07-26 08:40:17.692847+07', 'Xã Khánh Hải', '32119', 'Xã');
INSERT INTO category."Wards" VALUES (32122, 968, 'system', '2023-07-26 08:40:17.692849+07', 'system', '2023-07-26 08:40:17.692849+07', 'Xã Lợi An', '32122', 'Xã');
INSERT INTO category."Wards" VALUES (32124, 968, 'system', '2023-07-26 08:40:17.692851+07', 'system', '2023-07-26 08:40:17.692851+07', 'Xã Phong Điền', '32124', 'Xã');
INSERT INTO category."Wards" VALUES (32125, 968, 'system', '2023-07-26 08:40:17.692852+07', 'system', '2023-07-26 08:40:17.692853+07', 'Xã Phong Lạc', '32125', 'Xã');
INSERT INTO category."Wards" VALUES (32128, 969, 'system', '2023-07-26 08:40:17.692854+07', 'system', '2023-07-26 08:40:17.692854+07', 'Thị trấn Cái Nước', '32128', 'Thị trấn');
INSERT INTO category."Wards" VALUES (32130, 969, 'system', '2023-07-26 08:40:17.692856+07', 'system', '2023-07-26 08:40:17.692856+07', 'Xã Thạnh Phú', '32130', 'Xã');
INSERT INTO category."Wards" VALUES (32131, 969, 'system', '2023-07-26 08:40:17.692858+07', 'system', '2023-07-26 08:40:17.692858+07', 'Xã Lương Thế Trân', '32131', 'Xã');
INSERT INTO category."Wards" VALUES (32134, 969, 'system', '2023-07-26 08:40:17.69286+07', 'system', '2023-07-26 08:40:17.69286+07', 'Xã Phú Hưng', '32134', 'Xã');
INSERT INTO category."Wards" VALUES (32137, 969, 'system', '2023-07-26 08:40:17.692862+07', 'system', '2023-07-26 08:40:17.692862+07', 'Xã Tân Hưng', '32137', 'Xã');
INSERT INTO category."Wards" VALUES (32140, 969, 'system', '2023-07-26 08:40:17.692864+07', 'system', '2023-07-26 08:40:17.692864+07', 'Xã Hưng Mỹ', '32140', 'Xã');
INSERT INTO category."Wards" VALUES (32141, 969, 'system', '2023-07-26 08:40:17.692866+07', 'system', '2023-07-26 08:40:17.692866+07', 'Xã Hoà Mỹ', '32141', 'Xã');
INSERT INTO category."Wards" VALUES (32142, 969, 'system', '2023-07-26 08:40:17.692868+07', 'system', '2023-07-26 08:40:17.692868+07', 'Xã Đông Hưng', '32142', 'Xã');
INSERT INTO category."Wards" VALUES (32143, 969, 'system', '2023-07-26 08:40:17.692869+07', 'system', '2023-07-26 08:40:17.692869+07', 'Xã Đông Thới', '32143', 'Xã');
INSERT INTO category."Wards" VALUES (32146, 969, 'system', '2023-07-26 08:40:17.692871+07', 'system', '2023-07-26 08:40:17.692871+07', 'Xã Tân Hưng Đông', '32146', 'Xã');
INSERT INTO category."Wards" VALUES (32149, 969, 'system', '2023-07-26 08:40:17.692873+07', 'system', '2023-07-26 08:40:17.692873+07', 'Xã Trần Thới', '32149', 'Xã');
INSERT INTO category."Wards" VALUES (32152, 970, 'system', '2023-07-26 08:40:17.692875+07', 'system', '2023-07-26 08:40:17.692875+07', 'Thị trấn Đầm Dơi', '32152', 'Thị trấn');
INSERT INTO category."Wards" VALUES (32155, 970, 'system', '2023-07-26 08:40:17.692878+07', 'system', '2023-07-26 08:40:17.692878+07', 'Xã Tạ An Khương', '32155', 'Xã');
INSERT INTO category."Wards" VALUES (32158, 970, 'system', '2023-07-26 08:40:17.692881+07', 'system', '2023-07-26 08:40:17.692881+07', 'Xã Tạ An Khương  Đông', '32158', 'Xã');
INSERT INTO category."Wards" VALUES (32161, 970, 'system', '2023-07-26 08:40:17.692883+07', 'system', '2023-07-26 08:40:17.692883+07', 'Xã Trần Phán', '32161', 'Xã');
INSERT INTO category."Wards" VALUES (32162, 970, 'system', '2023-07-26 08:40:17.692885+07', 'system', '2023-07-26 08:40:17.692885+07', 'Xã Tân Trung', '32162', 'Xã');
INSERT INTO category."Wards" VALUES (32164, 970, 'system', '2023-07-26 08:40:17.692887+07', 'system', '2023-07-26 08:40:17.692887+07', 'Xã Tân Đức', '32164', 'Xã');
INSERT INTO category."Wards" VALUES (32167, 970, 'system', '2023-07-26 08:40:17.692888+07', 'system', '2023-07-26 08:40:17.692889+07', 'Xã Tân Thuận', '32167', 'Xã');
INSERT INTO category."Wards" VALUES (32170, 970, 'system', '2023-07-26 08:40:17.69289+07', 'system', '2023-07-26 08:40:17.69289+07', 'Xã Tạ An Khương  Nam', '32170', 'Xã');
INSERT INTO category."Wards" VALUES (32173, 970, 'system', '2023-07-26 08:40:17.692892+07', 'system', '2023-07-26 08:40:17.692892+07', 'Xã Tân Duyệt', '32173', 'Xã');
INSERT INTO category."Wards" VALUES (32174, 970, 'system', '2023-07-26 08:40:17.692894+07', 'system', '2023-07-26 08:40:17.692894+07', 'Xã Tân Dân', '32174', 'Xã');
INSERT INTO category."Wards" VALUES (32176, 970, 'system', '2023-07-26 08:40:17.692896+07', 'system', '2023-07-26 08:40:17.692896+07', 'Xã Tân Tiến', '32176', 'Xã');
INSERT INTO category."Wards" VALUES (32179, 970, 'system', '2023-07-26 08:40:17.692898+07', 'system', '2023-07-26 08:40:17.692898+07', 'Xã Quách Phẩm Bắc', '32179', 'Xã');
INSERT INTO category."Wards" VALUES (32182, 970, 'system', '2023-07-26 08:40:17.6929+07', 'system', '2023-07-26 08:40:17.6929+07', 'Xã Quách Phẩm', '32182', 'Xã');
INSERT INTO category."Wards" VALUES (32185, 970, 'system', '2023-07-26 08:40:17.692902+07', 'system', '2023-07-26 08:40:17.692902+07', 'Xã Thanh Tùng', '32185', 'Xã');
INSERT INTO category."Wards" VALUES (32186, 970, 'system', '2023-07-26 08:40:17.692903+07', 'system', '2023-07-26 08:40:17.692903+07', 'Xã Ngọc Chánh', '32186', 'Xã');
INSERT INTO category."Wards" VALUES (32188, 970, 'system', '2023-07-26 08:40:17.692905+07', 'system', '2023-07-26 08:40:17.692905+07', 'Xã Nguyễn Huân', '32188', 'Xã');
INSERT INTO category."Wards" VALUES (32191, 971, 'system', '2023-07-26 08:40:17.692907+07', 'system', '2023-07-26 08:40:17.692907+07', 'Thị Trấn Năm Căn', '32191', 'Thị trấn');
INSERT INTO category."Wards" VALUES (32194, 971, 'system', '2023-07-26 08:40:17.692909+07', 'system', '2023-07-26 08:40:17.692909+07', 'Xã Hàm Rồng', '32194', 'Xã');
INSERT INTO category."Wards" VALUES (32197, 971, 'system', '2023-07-26 08:40:17.692911+07', 'system', '2023-07-26 08:40:17.692911+07', 'Xã Hiệp Tùng', '32197', 'Xã');
INSERT INTO category."Wards" VALUES (32200, 971, 'system', '2023-07-26 08:40:17.692913+07', 'system', '2023-07-26 08:40:17.692913+07', 'Xã Đất Mới', '32200', 'Xã');
INSERT INTO category."Wards" VALUES (32201, 971, 'system', '2023-07-26 08:40:17.692915+07', 'system', '2023-07-26 08:40:17.692915+07', 'Xã Lâm Hải', '32201', 'Xã');
INSERT INTO category."Wards" VALUES (32203, 971, 'system', '2023-07-26 08:40:17.692916+07', 'system', '2023-07-26 08:40:17.692916+07', 'Xã Hàng Vịnh', '32203', 'Xã');
INSERT INTO category."Wards" VALUES (32206, 971, 'system', '2023-07-26 08:40:17.692918+07', 'system', '2023-07-26 08:40:17.692918+07', 'Xã Tam Giang', '32206', 'Xã');
INSERT INTO category."Wards" VALUES (32209, 971, 'system', '2023-07-26 08:40:17.69292+07', 'system', '2023-07-26 08:40:17.69292+07', 'Xã Tam Giang Đông', '32209', 'Xã');
INSERT INTO category."Wards" VALUES (32212, 972, 'system', '2023-07-26 08:40:17.692922+07', 'system', '2023-07-26 08:40:17.692922+07', 'Thị trấn Cái Đôi Vàm', '32212', 'Thị trấn');
INSERT INTO category."Wards" VALUES (32214, 972, 'system', '2023-07-26 08:40:17.692924+07', 'system', '2023-07-26 08:40:17.692924+07', 'Xã Phú Thuận', '32214', 'Xã');
INSERT INTO category."Wards" VALUES (32215, 972, 'system', '2023-07-26 08:40:17.692926+07', 'system', '2023-07-26 08:40:17.692926+07', 'Xã Phú Mỹ', '32215', 'Xã');
INSERT INTO category."Wards" VALUES (32218, 972, 'system', '2023-07-26 08:40:17.692928+07', 'system', '2023-07-26 08:40:17.692928+07', 'Xã Phú Tân', '32218', 'Xã');
INSERT INTO category."Wards" VALUES (32221, 972, 'system', '2023-07-26 08:40:17.69293+07', 'system', '2023-07-26 08:40:17.69293+07', 'Xã Tân Hải', '32221', 'Xã');
INSERT INTO category."Wards" VALUES (32224, 972, 'system', '2023-07-26 08:40:17.692932+07', 'system', '2023-07-26 08:40:17.692932+07', 'Xã Việt Thắng', '32224', 'Xã');
INSERT INTO category."Wards" VALUES (32227, 972, 'system', '2023-07-26 08:40:17.692934+07', 'system', '2023-07-26 08:40:17.692934+07', 'Xã Tân Hưng Tây', '32227', 'Xã');
INSERT INTO category."Wards" VALUES (32228, 972, 'system', '2023-07-26 08:40:17.692935+07', 'system', '2023-07-26 08:40:17.692935+07', 'Xã Rạch Chèo', '32228', 'Xã');
INSERT INTO category."Wards" VALUES (32230, 972, 'system', '2023-07-26 08:40:17.692937+07', 'system', '2023-07-26 08:40:17.692937+07', 'Xã Nguyễn Việt Khái', '32230', 'Xã');
INSERT INTO category."Wards" VALUES (32233, 973, 'system', '2023-07-26 08:40:17.692939+07', 'system', '2023-07-26 08:40:17.692939+07', 'Xã Tam Giang Tây', '32233', 'Xã');
INSERT INTO category."Wards" VALUES (32236, 973, 'system', '2023-07-26 08:40:17.692941+07', 'system', '2023-07-26 08:40:17.692941+07', 'Xã Tân Ân Tây', '32236', 'Xã');
INSERT INTO category."Wards" VALUES (32239, 973, 'system', '2023-07-26 08:40:17.692943+07', 'system', '2023-07-26 08:40:17.692943+07', 'Xã Viên An Đông', '32239', 'Xã');
INSERT INTO category."Wards" VALUES (32242, 973, 'system', '2023-07-26 08:40:17.692945+07', 'system', '2023-07-26 08:40:17.692945+07', 'Xã Viên An', '32242', 'Xã');
INSERT INTO category."Wards" VALUES (32244, 973, 'system', '2023-07-26 08:40:17.692948+07', 'system', '2023-07-26 08:40:17.692948+07', 'Thị trấn Rạch Gốc', '32244', 'Thị trấn');
INSERT INTO category."Wards" VALUES (32245, 973, 'system', '2023-07-26 08:40:17.69295+07', 'system', '2023-07-26 08:40:17.69295+07', 'Xã Tân Ân', '32245', 'Xã');
INSERT INTO category."Wards" VALUES (32248, 973, 'system', '2023-07-26 08:40:17.692952+07', 'system', '2023-07-26 08:40:17.692952+07', 'Xã Đất Mũi', '32248', 'Xã');


--
-- Data for Name: __CategoryMigrationsHistory; Type: TABLE DATA; Schema: category; Owner: sdoc
--

INSERT INTO category."__CategoryMigrationsHistory" VALUES ('20230712084400_Init', '7.0.9');


--
-- Data for Name: AccountDetails; Type: TABLE DATA; Schema: identity; Owner: sdoc
--



--
-- Data for Name: AspNetRoleClaims; Type: TABLE DATA; Schema: identity; Owner: sdoc
--



--
-- Data for Name: AspNetRoles; Type: TABLE DATA; Schema: identity; Owner: sdoc
--



--
-- Data for Name: AspNetUserClaims; Type: TABLE DATA; Schema: identity; Owner: sdoc
--



--
-- Data for Name: AspNetUserLogins; Type: TABLE DATA; Schema: identity; Owner: sdoc
--



--
-- Data for Name: AspNetUserRoles; Type: TABLE DATA; Schema: identity; Owner: sdoc
--



--
-- Data for Name: AspNetUserTokens; Type: TABLE DATA; Schema: identity; Owner: sdoc
--



--
-- Data for Name: AspNetUsers; Type: TABLE DATA; Schema: identity; Owner: sdoc
--



--
-- Data for Name: MenuRoles; Type: TABLE DATA; Schema: identity; Owner: sdoc
--



--
-- Data for Name: Menus; Type: TABLE DATA; Schema: identity; Owner: sdoc
--



--
-- Data for Name: OpenIdApplications; Type: TABLE DATA; Schema: identity; Owner: sdoc
--



--
-- Data for Name: OpenIdAuthorizations; Type: TABLE DATA; Schema: identity; Owner: sdoc
--



--
-- Data for Name: OpenIdScopes; Type: TABLE DATA; Schema: identity; Owner: sdoc
--



--
-- Data for Name: OpenIdTokens; Type: TABLE DATA; Schema: identity; Owner: sdoc
--



--
-- Data for Name: __IdentityMigrationsHistory; Type: TABLE DATA; Schema: identity; Owner: sdoc
--

INSERT INTO identity."__IdentityMigrationsHistory" VALUES ('20230712084333_Init', '7.0.9');


--
-- Data for Name: ArchivedDocuments; Type: TABLE DATA; Schema: sdoc; Owner: sdoc
--



--
-- Data for Name: ArchivedFiles; Type: TABLE DATA; Schema: sdoc; Owner: sdoc
--



--
-- Data for Name: Catalogues; Type: TABLE DATA; Schema: sdoc; Owner: sdoc
--



--
-- Data for Name: DocTypes; Type: TABLE DATA; Schema: sdoc; Owner: sdoc
--

INSERT INTO sdoc."DocTypes" VALUES (1, 'Hiến pháp', '', 'QuyPhamPhapLuat', 'system', '2023-07-26 08:40:14.888664+07', 'system', '2023-07-26 08:40:14.888664+07');
INSERT INTO sdoc."DocTypes" VALUES (2, 'Bộ luật', '', 'QuyPhamPhapLuat', 'system', '2023-07-26 08:40:14.891532+07', 'system', '2023-07-26 08:40:14.891533+07');
INSERT INTO sdoc."DocTypes" VALUES (3, 'Luật', '', 'QuyPhamPhapLuat', 'system', '2023-07-26 08:40:14.891544+07', 'system', '2023-07-26 08:40:14.891544+07');
INSERT INTO sdoc."DocTypes" VALUES (4, 'Pháp lệnh', '', 'QuyPhamPhapLuat', 'system', '2023-07-26 08:40:14.891546+07', 'system', '2023-07-26 08:40:14.891546+07');
INSERT INTO sdoc."DocTypes" VALUES (5, 'Lệnh', '', 'QuyPhamPhapLuat', 'system', '2023-07-26 08:40:14.891548+07', 'system', '2023-07-26 08:40:14.891548+07');
INSERT INTO sdoc."DocTypes" VALUES (6, 'Nghị quyết', '', 'QuyPhamPhapLuat', 'system', '2023-07-26 08:40:14.89155+07', 'system', '2023-07-26 08:40:14.89155+07');
INSERT INTO sdoc."DocTypes" VALUES (7, 'Nghị quyết liên tịch', '', 'QuyPhamPhapLuat', 'system', '2023-07-26 08:40:14.891552+07', 'system', '2023-07-26 08:40:14.891552+07');
INSERT INTO sdoc."DocTypes" VALUES (8, 'Nghị định', '', 'QuyPhamPhapLuat', 'system', '2023-07-26 08:40:14.891553+07', 'system', '2023-07-26 08:40:14.891554+07');
INSERT INTO sdoc."DocTypes" VALUES (9, 'Quyết định', '', 'QuyPhamPhapLuat', 'system', '2023-07-26 08:40:14.891555+07', 'system', '2023-07-26 08:40:14.891555+07');
INSERT INTO sdoc."DocTypes" VALUES (10, 'Thông tư', '', 'QuyPhamPhapLuat', 'system', '2023-07-26 08:40:14.891557+07', 'system', '2023-07-26 08:40:14.891557+07');
INSERT INTO sdoc."DocTypes" VALUES (11, 'Thông tư liên tịch', '', 'QuyPhamPhapLuat', 'system', '2023-07-26 08:40:14.891558+07', 'system', '2023-07-26 08:40:14.891558+07');
INSERT INTO sdoc."DocTypes" VALUES (12, 'Chỉ thị', '', 'QuyPhamPhapLuat', 'system', '2023-07-26 08:40:14.89156+07', 'system', '2023-07-26 08:40:14.89156+07');
INSERT INTO sdoc."DocTypes" VALUES (13, 'Nghị quyết (cá biệt)', 'NQ', 'HanhChinh', 'system', '2023-07-26 08:40:14.891561+07', 'system', '2023-07-26 08:40:14.891561+07');
INSERT INTO sdoc."DocTypes" VALUES (14, 'Quyết định (cá biệt)', 'QĐ', 'HanhChinh', 'system', '2023-07-26 08:40:14.891563+07', 'system', '2023-07-26 08:40:14.891563+07');
INSERT INTO sdoc."DocTypes" VALUES (15, 'Chỉ thi', 'CT', 'HanhChinh', 'system', '2023-07-26 08:40:14.891564+07', 'system', '2023-07-26 08:40:14.891564+07');
INSERT INTO sdoc."DocTypes" VALUES (16, 'Quy chế', 'QC', 'HanhChinh', 'system', '2023-07-26 08:40:14.891566+07', 'system', '2023-07-26 08:40:14.891566+07');
INSERT INTO sdoc."DocTypes" VALUES (17, 'Quy định', 'QyĐ', 'HanhChinh', 'system', '2023-07-26 08:40:14.891567+07', 'system', '2023-07-26 08:40:14.891567+07');
INSERT INTO sdoc."DocTypes" VALUES (18, 'Thông cáo', 'TC', 'HanhChinh', 'system', '2023-07-26 08:40:14.891569+07', 'system', '2023-07-26 08:40:14.891569+07');
INSERT INTO sdoc."DocTypes" VALUES (19, 'Thông báo', 'TB', 'HanhChinh', 'system', '2023-07-26 08:40:14.89157+07', 'system', '2023-07-26 08:40:14.89157+07');
INSERT INTO sdoc."DocTypes" VALUES (20, 'Hướng dẫn', 'HD', 'HanhChinh', 'system', '2023-07-26 08:40:14.891572+07', 'system', '2023-07-26 08:40:14.891572+07');
INSERT INTO sdoc."DocTypes" VALUES (21, 'Chương trình', 'CTr', 'HanhChinh', 'system', '2023-07-26 08:40:14.891573+07', 'system', '2023-07-26 08:40:14.891573+07');
INSERT INTO sdoc."DocTypes" VALUES (22, 'Kế hoạch', 'KH', 'HanhChinh', 'system', '2023-07-26 08:40:14.891575+07', 'system', '2023-07-26 08:40:14.891575+07');
INSERT INTO sdoc."DocTypes" VALUES (23, 'Phương án', 'PA', 'HanhChinh', 'system', '2023-07-26 08:40:14.891576+07', 'system', '2023-07-26 08:40:14.891576+07');
INSERT INTO sdoc."DocTypes" VALUES (24, 'Đề án', 'ĐA', 'HanhChinh', 'system', '2023-07-26 08:40:14.891578+07', 'system', '2023-07-26 08:40:14.891578+07');
INSERT INTO sdoc."DocTypes" VALUES (25, 'Dự án', 'DA', 'HanhChinh', 'system', '2023-07-26 08:40:14.891579+07', 'system', '2023-07-26 08:40:14.891579+07');
INSERT INTO sdoc."DocTypes" VALUES (26, 'Báo cáo', 'BC', 'HanhChinh', 'system', '2023-07-26 08:40:14.89158+07', 'system', '2023-07-26 08:40:14.89158+07');
INSERT INTO sdoc."DocTypes" VALUES (27, 'Biên bản', 'BB', 'HanhChinh', 'system', '2023-07-26 08:40:14.891582+07', 'system', '2023-07-26 08:40:14.891582+07');
INSERT INTO sdoc."DocTypes" VALUES (28, 'Tờ trình', 'TTr', 'HanhChinh', 'system', '2023-07-26 08:40:14.891583+07', 'system', '2023-07-26 08:40:14.891583+07');
INSERT INTO sdoc."DocTypes" VALUES (29, 'Hợp đồng', 'HĐ', 'HanhChinh', 'system', '2023-07-26 08:40:14.891585+07', 'system', '2023-07-26 08:40:14.891585+07');
INSERT INTO sdoc."DocTypes" VALUES (30, 'Công điện', 'CĐ', 'HanhChinh', 'system', '2023-07-26 08:40:14.891587+07', 'system', '2023-07-26 08:40:14.891587+07');
INSERT INTO sdoc."DocTypes" VALUES (31, 'Bản ghi nhớ', 'BGN', 'HanhChinh', 'system', '2023-07-26 08:40:14.891589+07', 'system', '2023-07-26 08:40:14.891589+07');
INSERT INTO sdoc."DocTypes" VALUES (32, 'Bản thỏa thuận', 'BTT', 'HanhChinh', 'system', '2023-07-26 08:40:14.89159+07', 'system', '2023-07-26 08:40:14.89159+07');
INSERT INTO sdoc."DocTypes" VALUES (33, 'Giấy ủy quyền', 'GUQ', 'HanhChinh', 'system', '2023-07-26 08:40:14.891592+07', 'system', '2023-07-26 08:40:14.891592+07');
INSERT INTO sdoc."DocTypes" VALUES (34, 'Giấy mời', 'GM', 'HanhChinh', 'system', '2023-07-26 08:40:14.891593+07', 'system', '2023-07-26 08:40:14.891593+07');
INSERT INTO sdoc."DocTypes" VALUES (35, 'Giấy giới thiệu', 'GGT', 'HanhChinh', 'system', '2023-07-26 08:40:14.891595+07', 'system', '2023-07-26 08:40:14.891595+07');
INSERT INTO sdoc."DocTypes" VALUES (36, 'Giấy nghỉ phép', 'GNP', 'HanhChinh', 'system', '2023-07-26 08:40:14.891596+07', 'system', '2023-07-26 08:40:14.891596+07');
INSERT INTO sdoc."DocTypes" VALUES (37, 'Phiếu gửi', 'PG', 'HanhChinh', 'system', '2023-07-26 08:40:14.891598+07', 'system', '2023-07-26 08:40:14.891598+07');
INSERT INTO sdoc."DocTypes" VALUES (38, 'Phiếu chuyển', 'PC', 'HanhChinh', 'system', '2023-07-26 08:40:14.891599+07', 'system', '2023-07-26 08:40:14.891599+07');
INSERT INTO sdoc."DocTypes" VALUES (39, 'Phiếu báo', 'PB', 'HanhChinh', 'system', '2023-07-26 08:40:14.8916+07', 'system', '2023-07-26 08:40:14.8916+07');
INSERT INTO sdoc."DocTypes" VALUES (40, 'Bản sao y', 'SY', 'HanhChinh', 'system', '2023-07-26 08:40:14.891602+07', 'system', '2023-07-26 08:40:14.891602+07');
INSERT INTO sdoc."DocTypes" VALUES (41, 'Bản trích sao', 'TrS', 'HanhChinh', 'system', '2023-07-26 08:40:14.891603+07', 'system', '2023-07-26 08:40:14.891603+07');
INSERT INTO sdoc."DocTypes" VALUES (42, 'Bản sao lục', 'SL', 'HanhChinh', 'system', '2023-07-26 08:40:14.891605+07', 'system', '2023-07-26 08:40:14.891605+07');


--
-- Data for Name: Documents; Type: TABLE DATA; Schema: sdoc; Owner: sdoc
--



--
-- Data for Name: FileGroups; Type: TABLE DATA; Schema: sdoc; Owner: sdoc
--

INSERT INTO sdoc."FileGroups" VALUES (1, 'Tài liệu hành chính', 'system', '2023-07-26 08:40:14.724006+07', 'system', '2023-07-26 08:40:14.724007+07');


--
-- Data for Name: FileHistories; Type: TABLE DATA; Schema: sdoc; Owner: sdoc
--



--
-- Data for Name: Files; Type: TABLE DATA; Schema: sdoc; Owner: sdoc
--



--
-- Data for Name: Fonds; Type: TABLE DATA; Schema: sdoc; Owner: sdoc
--



--
-- Data for Name: Photos; Type: TABLE DATA; Schema: sdoc; Owner: sdoc
--



--
-- Data for Name: Records; Type: TABLE DATA; Schema: sdoc; Owner: sdoc
--



--
-- Data for Name: Repositories; Type: TABLE DATA; Schema: sdoc; Owner: sdoc
--



--
-- Data for Name: Settings; Type: TABLE DATA; Schema: sdoc; Owner: sdoc
--

INSERT INTO sdoc."Settings" VALUES (1, 'OrganId', 'Tên cơ quan, đơn vị lưu trữ triển khai ứng dụng', '000.23.09.H08', NULL, 'system', '2023-07-26 08:40:14.42621+07', 'system', '2023-07-26 08:40:14.42622+07');


--
-- Data for Name: __SDocMigrationsHistory; Type: TABLE DATA; Schema: sdoc; Owner: sdoc
--

INSERT INTO sdoc."__SDocMigrationsHistory" VALUES ('20230712084347_Init', '7.0.9');


--
-- Name: EntityFrameworkHiLoSequence; Type: SEQUENCE SET; Schema: category; Owner: sdoc
--

SELECT pg_catalog.setval('category."EntityFrameworkHiLoSequence"', 1, false);


--
-- Name: EntityFrameworkHiLoSequence; Type: SEQUENCE SET; Schema: identity; Owner: sdoc
--

SELECT pg_catalog.setval('identity."EntityFrameworkHiLoSequence"', 1, false);


--
-- Name: EntityFrameworkHiLoSequence; Type: SEQUENCE SET; Schema: sdoc; Owner: sdoc
--

SELECT pg_catalog.setval('sdoc."EntityFrameworkHiLoSequence"', 1, true);


--
-- Name: Countries PK_Countries; Type: CONSTRAINT; Schema: category; Owner: sdoc
--

ALTER TABLE ONLY category."Countries"
    ADD CONSTRAINT "PK_Countries" PRIMARY KEY ("Id");


--
-- Name: Districts PK_Districts; Type: CONSTRAINT; Schema: category; Owner: sdoc
--

ALTER TABLE ONLY category."Districts"
    ADD CONSTRAINT "PK_Districts" PRIMARY KEY ("Id");


--
-- Name: Languages PK_Languages; Type: CONSTRAINT; Schema: category; Owner: sdoc
--

ALTER TABLE ONLY category."Languages"
    ADD CONSTRAINT "PK_Languages" PRIMARY KEY ("Id");


--
-- Name: Organizations PK_Organizations; Type: CONSTRAINT; Schema: category; Owner: sdoc
--

ALTER TABLE ONLY category."Organizations"
    ADD CONSTRAINT "PK_Organizations" PRIMARY KEY ("Id");


--
-- Name: Provinces PK_Provinces; Type: CONSTRAINT; Schema: category; Owner: sdoc
--

ALTER TABLE ONLY category."Provinces"
    ADD CONSTRAINT "PK_Provinces" PRIMARY KEY ("Id");


--
-- Name: Wards PK_Wards; Type: CONSTRAINT; Schema: category; Owner: sdoc
--

ALTER TABLE ONLY category."Wards"
    ADD CONSTRAINT "PK_Wards" PRIMARY KEY ("Id");


--
-- Name: __CategoryMigrationsHistory PK___CategoryMigrationsHistory; Type: CONSTRAINT; Schema: category; Owner: sdoc
--

ALTER TABLE ONLY category."__CategoryMigrationsHistory"
    ADD CONSTRAINT "PK___CategoryMigrationsHistory" PRIMARY KEY ("MigrationId");


--
-- Name: AccountDetails PK_AccountDetails; Type: CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."AccountDetails"
    ADD CONSTRAINT "PK_AccountDetails" PRIMARY KEY ("AccountId");


--
-- Name: AspNetRoleClaims PK_AspNetRoleClaims; Type: CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."AspNetRoleClaims"
    ADD CONSTRAINT "PK_AspNetRoleClaims" PRIMARY KEY ("Id");


--
-- Name: AspNetRoles PK_AspNetRoles; Type: CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."AspNetRoles"
    ADD CONSTRAINT "PK_AspNetRoles" PRIMARY KEY ("Id");


--
-- Name: AspNetUserClaims PK_AspNetUserClaims; Type: CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."AspNetUserClaims"
    ADD CONSTRAINT "PK_AspNetUserClaims" PRIMARY KEY ("Id");


--
-- Name: AspNetUserLogins PK_AspNetUserLogins; Type: CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."AspNetUserLogins"
    ADD CONSTRAINT "PK_AspNetUserLogins" PRIMARY KEY ("LoginProvider", "ProviderKey");


--
-- Name: AspNetUserRoles PK_AspNetUserRoles; Type: CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."AspNetUserRoles"
    ADD CONSTRAINT "PK_AspNetUserRoles" PRIMARY KEY ("UserId", "RoleId");


--
-- Name: AspNetUserTokens PK_AspNetUserTokens; Type: CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."AspNetUserTokens"
    ADD CONSTRAINT "PK_AspNetUserTokens" PRIMARY KEY ("UserId", "LoginProvider", "Name");


--
-- Name: AspNetUsers PK_AspNetUsers; Type: CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."AspNetUsers"
    ADD CONSTRAINT "PK_AspNetUsers" PRIMARY KEY ("Id");


--
-- Name: MenuRoles PK_MenuRoles; Type: CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."MenuRoles"
    ADD CONSTRAINT "PK_MenuRoles" PRIMARY KEY ("AuthorizedMenusId", "AuthorizedRolesId");


--
-- Name: Menus PK_Menus; Type: CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."Menus"
    ADD CONSTRAINT "PK_Menus" PRIMARY KEY ("Id");


--
-- Name: OpenIdApplications PK_OpenIdApplications; Type: CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."OpenIdApplications"
    ADD CONSTRAINT "PK_OpenIdApplications" PRIMARY KEY ("Id");


--
-- Name: OpenIdAuthorizations PK_OpenIdAuthorizations; Type: CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."OpenIdAuthorizations"
    ADD CONSTRAINT "PK_OpenIdAuthorizations" PRIMARY KEY ("Id");


--
-- Name: OpenIdScopes PK_OpenIdScopes; Type: CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."OpenIdScopes"
    ADD CONSTRAINT "PK_OpenIdScopes" PRIMARY KEY ("Id");


--
-- Name: OpenIdTokens PK_OpenIdTokens; Type: CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."OpenIdTokens"
    ADD CONSTRAINT "PK_OpenIdTokens" PRIMARY KEY ("Id");


--
-- Name: __IdentityMigrationsHistory PK___IdentityMigrationsHistory; Type: CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."__IdentityMigrationsHistory"
    ADD CONSTRAINT "PK___IdentityMigrationsHistory" PRIMARY KEY ("MigrationId");


--
-- Name: ArchivedDocuments PK_ArchivedDocuments; Type: CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."ArchivedDocuments"
    ADD CONSTRAINT "PK_ArchivedDocuments" PRIMARY KEY ("Id");


--
-- Name: ArchivedFiles PK_ArchivedFiles; Type: CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."ArchivedFiles"
    ADD CONSTRAINT "PK_ArchivedFiles" PRIMARY KEY ("Id");


--
-- Name: Catalogues PK_Catalogues; Type: CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."Catalogues"
    ADD CONSTRAINT "PK_Catalogues" PRIMARY KEY ("Id");


--
-- Name: DocTypes PK_DocTypes; Type: CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."DocTypes"
    ADD CONSTRAINT "PK_DocTypes" PRIMARY KEY ("Id");


--
-- Name: Documents PK_Documents; Type: CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."Documents"
    ADD CONSTRAINT "PK_Documents" PRIMARY KEY ("Id");


--
-- Name: FileGroups PK_FileGroups; Type: CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."FileGroups"
    ADD CONSTRAINT "PK_FileGroups" PRIMARY KEY ("Id");


--
-- Name: FileHistories PK_FileHistories; Type: CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."FileHistories"
    ADD CONSTRAINT "PK_FileHistories" PRIMARY KEY ("Id");


--
-- Name: Files PK_Files; Type: CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."Files"
    ADD CONSTRAINT "PK_Files" PRIMARY KEY ("Id");


--
-- Name: Fonds PK_Fonds; Type: CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."Fonds"
    ADD CONSTRAINT "PK_Fonds" PRIMARY KEY ("Id");


--
-- Name: Photos PK_Photos; Type: CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."Photos"
    ADD CONSTRAINT "PK_Photos" PRIMARY KEY ("Id");


--
-- Name: Records PK_Records; Type: CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."Records"
    ADD CONSTRAINT "PK_Records" PRIMARY KEY ("Id");


--
-- Name: Repositories PK_Repositories; Type: CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."Repositories"
    ADD CONSTRAINT "PK_Repositories" PRIMARY KEY ("Id");


--
-- Name: Settings PK_Settings; Type: CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."Settings"
    ADD CONSTRAINT "PK_Settings" PRIMARY KEY ("Id");


--
-- Name: __SDocMigrationsHistory PK___SDocMigrationsHistory; Type: CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."__SDocMigrationsHistory"
    ADD CONSTRAINT "PK___SDocMigrationsHistory" PRIMARY KEY ("MigrationId");


--
-- Name: IX_Districts_ProvinceId; Type: INDEX; Schema: category; Owner: sdoc
--

CREATE INDEX "IX_Districts_ProvinceId" ON category."Districts" USING btree ("ProvinceId");


--
-- Name: IX_Organizations_DistrictId; Type: INDEX; Schema: category; Owner: sdoc
--

CREATE INDEX "IX_Organizations_DistrictId" ON category."Organizations" USING btree ("DistrictId");


--
-- Name: IX_Organizations_OrganizationInChargeId; Type: INDEX; Schema: category; Owner: sdoc
--

CREATE INDEX "IX_Organizations_OrganizationInChargeId" ON category."Organizations" USING btree ("OrganizationInChargeId");


--
-- Name: IX_Organizations_ProvinceId; Type: INDEX; Schema: category; Owner: sdoc
--

CREATE INDEX "IX_Organizations_ProvinceId" ON category."Organizations" USING btree ("ProvinceId");


--
-- Name: IX_Organizations_SearchVector; Type: INDEX; Schema: category; Owner: sdoc
--

CREATE INDEX "IX_Organizations_SearchVector" ON category."Organizations" USING gin ("SearchVector");


--
-- Name: IX_Organizations_WardId; Type: INDEX; Schema: category; Owner: sdoc
--

CREATE INDEX "IX_Organizations_WardId" ON category."Organizations" USING btree ("WardId");


--
-- Name: IX_Wards_DistrictId; Type: INDEX; Schema: category; Owner: sdoc
--

CREATE INDEX "IX_Wards_DistrictId" ON category."Wards" USING btree ("DistrictId");


--
-- Name: UX_Organizations_OrganId; Type: INDEX; Schema: category; Owner: sdoc
--

CREATE UNIQUE INDEX "UX_Organizations_OrganId" ON category."Organizations" USING btree ("OrganId") WHERE ("OrganId" IS NOT NULL);


--
-- Name: EmailIndex; Type: INDEX; Schema: identity; Owner: sdoc
--

CREATE INDEX "EmailIndex" ON identity."AspNetUsers" USING btree ("NormalizedEmail");


--
-- Name: IX_AspNetRoleClaims_RoleId; Type: INDEX; Schema: identity; Owner: sdoc
--

CREATE INDEX "IX_AspNetRoleClaims_RoleId" ON identity."AspNetRoleClaims" USING btree ("RoleId");


--
-- Name: IX_AspNetUserClaims_UserId; Type: INDEX; Schema: identity; Owner: sdoc
--

CREATE INDEX "IX_AspNetUserClaims_UserId" ON identity."AspNetUserClaims" USING btree ("UserId");


--
-- Name: IX_AspNetUserLogins_UserId; Type: INDEX; Schema: identity; Owner: sdoc
--

CREATE INDEX "IX_AspNetUserLogins_UserId" ON identity."AspNetUserLogins" USING btree ("UserId");


--
-- Name: IX_AspNetUserRoles_RoleId; Type: INDEX; Schema: identity; Owner: sdoc
--

CREATE INDEX "IX_AspNetUserRoles_RoleId" ON identity."AspNetUserRoles" USING btree ("RoleId");


--
-- Name: IX_MenuRoles_AuthorizedRolesId; Type: INDEX; Schema: identity; Owner: sdoc
--

CREATE INDEX "IX_MenuRoles_AuthorizedRolesId" ON identity."MenuRoles" USING btree ("AuthorizedRolesId");


--
-- Name: IX_Menus_ParentId; Type: INDEX; Schema: identity; Owner: sdoc
--

CREATE INDEX "IX_Menus_ParentId" ON identity."Menus" USING btree ("ParentId");


--
-- Name: IX_OpenIdApplications_ClientId; Type: INDEX; Schema: identity; Owner: sdoc
--

CREATE UNIQUE INDEX "IX_OpenIdApplications_ClientId" ON identity."OpenIdApplications" USING btree ("ClientId");


--
-- Name: IX_OpenIdAuthorizations_ApplicationId_Status_Subject_Type; Type: INDEX; Schema: identity; Owner: sdoc
--

CREATE INDEX "IX_OpenIdAuthorizations_ApplicationId_Status_Subject_Type" ON identity."OpenIdAuthorizations" USING btree ("ApplicationId", "Status", "Subject", "Type");


--
-- Name: IX_OpenIdScopes_Name; Type: INDEX; Schema: identity; Owner: sdoc
--

CREATE UNIQUE INDEX "IX_OpenIdScopes_Name" ON identity."OpenIdScopes" USING btree ("Name");


--
-- Name: IX_OpenIdTokens_ApplicationId_Status_Subject_Type; Type: INDEX; Schema: identity; Owner: sdoc
--

CREATE INDEX "IX_OpenIdTokens_ApplicationId_Status_Subject_Type" ON identity."OpenIdTokens" USING btree ("ApplicationId", "Status", "Subject", "Type");


--
-- Name: IX_OpenIdTokens_AuthorizationId; Type: INDEX; Schema: identity; Owner: sdoc
--

CREATE INDEX "IX_OpenIdTokens_AuthorizationId" ON identity."OpenIdTokens" USING btree ("AuthorizationId");


--
-- Name: IX_OpenIdTokens_ReferenceId; Type: INDEX; Schema: identity; Owner: sdoc
--

CREATE UNIQUE INDEX "IX_OpenIdTokens_ReferenceId" ON identity."OpenIdTokens" USING btree ("ReferenceId");


--
-- Name: RoleNameIndex; Type: INDEX; Schema: identity; Owner: sdoc
--

CREATE UNIQUE INDEX "RoleNameIndex" ON identity."AspNetRoles" USING btree ("NormalizedName");


--
-- Name: UserNameIndex; Type: INDEX; Schema: identity; Owner: sdoc
--

CREATE UNIQUE INDEX "UserNameIndex" ON identity."AspNetUsers" USING btree ("NormalizedUserName");


--
-- Name: IX_Documents_DocTypeId; Type: INDEX; Schema: sdoc; Owner: sdoc
--

CREATE INDEX "IX_Documents_DocTypeId" ON sdoc."Documents" USING btree ("DocTypeId");


--
-- Name: IX_Documents_SearchVector; Type: INDEX; Schema: sdoc; Owner: sdoc
--

CREATE INDEX "IX_Documents_SearchVector" ON sdoc."Documents" USING gin ("SearchVector");


--
-- Name: IX_FileHistories_FileId; Type: INDEX; Schema: sdoc; Owner: sdoc
--

CREATE INDEX "IX_FileHistories_FileId" ON sdoc."FileHistories" USING btree ("FileId");


--
-- Name: IX_Files_FileGroupId; Type: INDEX; Schema: sdoc; Owner: sdoc
--

CREATE INDEX "IX_Files_FileGroupId" ON sdoc."Files" USING btree ("FileGroupId");


--
-- Name: IX_Files_RepositoryId; Type: INDEX; Schema: sdoc; Owner: sdoc
--

CREATE INDEX "IX_Files_RepositoryId" ON sdoc."Files" USING btree ("RepositoryId");


--
-- Name: IX_Files_SearchVector; Type: INDEX; Schema: sdoc; Owner: sdoc
--

CREATE INDEX "IX_Files_SearchVector" ON sdoc."Files" USING gin ("SearchVector");


--
-- Name: IX_Fonds_SearchVector; Type: INDEX; Schema: sdoc; Owner: sdoc
--

CREATE INDEX "IX_Fonds_SearchVector" ON sdoc."Fonds" USING gin ("SearchVector");


--
-- Name: ux_catalogue_font_number; Type: INDEX; Schema: sdoc; Owner: sdoc
--

CREATE UNIQUE INDEX ux_catalogue_font_number ON sdoc."Catalogues" USING btree ("FondId", "CatalogueNumber");


--
-- Name: ux_document_file_ordinal; Type: INDEX; Schema: sdoc; Owner: sdoc
--

CREATE UNIQUE INDEX ux_document_file_ordinal ON sdoc."Documents" USING btree ("FileId", "DocOrdinal");


--
-- Name: ux_file_catalogue_number; Type: INDEX; Schema: sdoc; Owner: sdoc
--

CREATE UNIQUE INDEX ux_file_catalogue_number ON sdoc."Files" USING btree ("CatalogueId", "FileNumber");


--
-- Name: ux_fond_number; Type: INDEX; Schema: sdoc; Owner: sdoc
--

CREATE UNIQUE INDEX ux_fond_number ON sdoc."Fonds" USING btree ("FondNumber");


--
-- Name: ux_settings; Type: INDEX; Schema: sdoc; Owner: sdoc
--

CREATE UNIQUE INDEX ux_settings ON sdoc."Settings" USING btree ("SettingCode");


--
-- Name: Districts FK_Districts_Provinces_ProvinceId; Type: FK CONSTRAINT; Schema: category; Owner: sdoc
--

ALTER TABLE ONLY category."Districts"
    ADD CONSTRAINT "FK_Districts_Provinces_ProvinceId" FOREIGN KEY ("ProvinceId") REFERENCES category."Provinces"("Id") ON DELETE CASCADE;


--
-- Name: Organizations FK_Organizations_Districts_DistrictId; Type: FK CONSTRAINT; Schema: category; Owner: sdoc
--

ALTER TABLE ONLY category."Organizations"
    ADD CONSTRAINT "FK_Organizations_Districts_DistrictId" FOREIGN KEY ("DistrictId") REFERENCES category."Districts"("Id");


--
-- Name: Organizations FK_Organizations_Districts_ProvinceId; Type: FK CONSTRAINT; Schema: category; Owner: sdoc
--

ALTER TABLE ONLY category."Organizations"
    ADD CONSTRAINT "FK_Organizations_Districts_ProvinceId" FOREIGN KEY ("ProvinceId") REFERENCES category."Districts"("Id");


--
-- Name: Organizations FK_Organizations_Organizations_OrganizationInChargeId; Type: FK CONSTRAINT; Schema: category; Owner: sdoc
--

ALTER TABLE ONLY category."Organizations"
    ADD CONSTRAINT "FK_Organizations_Organizations_OrganizationInChargeId" FOREIGN KEY ("OrganizationInChargeId") REFERENCES category."Organizations"("Id");


--
-- Name: Organizations FK_Organizations_Wards_WardId; Type: FK CONSTRAINT; Schema: category; Owner: sdoc
--

ALTER TABLE ONLY category."Organizations"
    ADD CONSTRAINT "FK_Organizations_Wards_WardId" FOREIGN KEY ("WardId") REFERENCES category."Wards"("Id");


--
-- Name: Wards FK_Wards_Districts_DistrictId; Type: FK CONSTRAINT; Schema: category; Owner: sdoc
--

ALTER TABLE ONLY category."Wards"
    ADD CONSTRAINT "FK_Wards_Districts_DistrictId" FOREIGN KEY ("DistrictId") REFERENCES category."Districts"("Id") ON DELETE CASCADE;


--
-- Name: AccountDetails FK_AccountDetails_AspNetUsers_AccountId; Type: FK CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."AccountDetails"
    ADD CONSTRAINT "FK_AccountDetails_AspNetUsers_AccountId" FOREIGN KEY ("AccountId") REFERENCES identity."AspNetUsers"("Id") ON DELETE CASCADE;


--
-- Name: AspNetRoleClaims FK_AspNetRoleClaims_AspNetRoles_RoleId; Type: FK CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."AspNetRoleClaims"
    ADD CONSTRAINT "FK_AspNetRoleClaims_AspNetRoles_RoleId" FOREIGN KEY ("RoleId") REFERENCES identity."AspNetRoles"("Id") ON DELETE CASCADE;


--
-- Name: AspNetUserClaims FK_AspNetUserClaims_AspNetUsers_UserId; Type: FK CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."AspNetUserClaims"
    ADD CONSTRAINT "FK_AspNetUserClaims_AspNetUsers_UserId" FOREIGN KEY ("UserId") REFERENCES identity."AspNetUsers"("Id") ON DELETE CASCADE;


--
-- Name: AspNetUserLogins FK_AspNetUserLogins_AspNetUsers_UserId; Type: FK CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."AspNetUserLogins"
    ADD CONSTRAINT "FK_AspNetUserLogins_AspNetUsers_UserId" FOREIGN KEY ("UserId") REFERENCES identity."AspNetUsers"("Id") ON DELETE CASCADE;


--
-- Name: AspNetUserRoles FK_AspNetUserRoles_AspNetRoles_RoleId; Type: FK CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."AspNetUserRoles"
    ADD CONSTRAINT "FK_AspNetUserRoles_AspNetRoles_RoleId" FOREIGN KEY ("RoleId") REFERENCES identity."AspNetRoles"("Id") ON DELETE CASCADE;


--
-- Name: AspNetUserRoles FK_AspNetUserRoles_AspNetUsers_UserId; Type: FK CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."AspNetUserRoles"
    ADD CONSTRAINT "FK_AspNetUserRoles_AspNetUsers_UserId" FOREIGN KEY ("UserId") REFERENCES identity."AspNetUsers"("Id") ON DELETE CASCADE;


--
-- Name: AspNetUserTokens FK_AspNetUserTokens_AspNetUsers_UserId; Type: FK CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."AspNetUserTokens"
    ADD CONSTRAINT "FK_AspNetUserTokens_AspNetUsers_UserId" FOREIGN KEY ("UserId") REFERENCES identity."AspNetUsers"("Id") ON DELETE CASCADE;


--
-- Name: MenuRoles FK_MenuRoles_AspNetRoles_AuthorizedRolesId; Type: FK CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."MenuRoles"
    ADD CONSTRAINT "FK_MenuRoles_AspNetRoles_AuthorizedRolesId" FOREIGN KEY ("AuthorizedRolesId") REFERENCES identity."AspNetRoles"("Id") ON DELETE CASCADE;


--
-- Name: MenuRoles FK_MenuRoles_Menus_AuthorizedMenusId; Type: FK CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."MenuRoles"
    ADD CONSTRAINT "FK_MenuRoles_Menus_AuthorizedMenusId" FOREIGN KEY ("AuthorizedMenusId") REFERENCES identity."Menus"("Id") ON DELETE CASCADE;


--
-- Name: Menus FK_Menus_Menus_ParentId; Type: FK CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."Menus"
    ADD CONSTRAINT "FK_Menus_Menus_ParentId" FOREIGN KEY ("ParentId") REFERENCES identity."Menus"("Id");


--
-- Name: OpenIdAuthorizations FK_OpenIdAuthorizations_OpenIdApplications_ApplicationId; Type: FK CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."OpenIdAuthorizations"
    ADD CONSTRAINT "FK_OpenIdAuthorizations_OpenIdApplications_ApplicationId" FOREIGN KEY ("ApplicationId") REFERENCES identity."OpenIdApplications"("Id");


--
-- Name: OpenIdTokens FK_OpenIdTokens_OpenIdApplications_ApplicationId; Type: FK CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."OpenIdTokens"
    ADD CONSTRAINT "FK_OpenIdTokens_OpenIdApplications_ApplicationId" FOREIGN KEY ("ApplicationId") REFERENCES identity."OpenIdApplications"("Id");


--
-- Name: OpenIdTokens FK_OpenIdTokens_OpenIdAuthorizations_AuthorizationId; Type: FK CONSTRAINT; Schema: identity; Owner: sdoc
--

ALTER TABLE ONLY identity."OpenIdTokens"
    ADD CONSTRAINT "FK_OpenIdTokens_OpenIdAuthorizations_AuthorizationId" FOREIGN KEY ("AuthorizationId") REFERENCES identity."OpenIdAuthorizations"("Id");


--
-- Name: Catalogues FK_Catalogues_Fonds_FondId; Type: FK CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."Catalogues"
    ADD CONSTRAINT "FK_Catalogues_Fonds_FondId" FOREIGN KEY ("FondId") REFERENCES sdoc."Fonds"("Id") ON DELETE CASCADE;


--
-- Name: Documents FK_Documents_DocTypes_DocTypeId; Type: FK CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."Documents"
    ADD CONSTRAINT "FK_Documents_DocTypes_DocTypeId" FOREIGN KEY ("DocTypeId") REFERENCES sdoc."DocTypes"("Id");


--
-- Name: Documents FK_Documents_Files_FileId; Type: FK CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."Documents"
    ADD CONSTRAINT "FK_Documents_Files_FileId" FOREIGN KEY ("FileId") REFERENCES sdoc."Files"("Id");


--
-- Name: FileHistories FK_FileHistories_Files_FileId; Type: FK CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."FileHistories"
    ADD CONSTRAINT "FK_FileHistories_Files_FileId" FOREIGN KEY ("FileId") REFERENCES sdoc."Files"("Id") ON DELETE CASCADE;


--
-- Name: Files FK_Files_Catalogues_CatalogueId; Type: FK CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."Files"
    ADD CONSTRAINT "FK_Files_Catalogues_CatalogueId" FOREIGN KEY ("CatalogueId") REFERENCES sdoc."Catalogues"("Id");


--
-- Name: Files FK_Files_FileGroups_FileGroupId; Type: FK CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."Files"
    ADD CONSTRAINT "FK_Files_FileGroups_FileGroupId" FOREIGN KEY ("FileGroupId") REFERENCES sdoc."FileGroups"("Id");


--
-- Name: Files FK_Files_Repositories_RepositoryId; Type: FK CONSTRAINT; Schema: sdoc; Owner: sdoc
--

ALTER TABLE ONLY sdoc."Files"
    ADD CONSTRAINT "FK_Files_Repositories_RepositoryId" FOREIGN KEY ("RepositoryId") REFERENCES sdoc."Repositories"("Id");


--
-- PostgreSQL database dump complete
--

--
-- Database "xtdt" dump
--

--
-- PostgreSQL database dump
--

-- Dumped from database version 15.5
-- Dumped by pg_dump version 16.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: xtdt; Type: DATABASE; Schema: -; Owner: geoserver
--

CREATE DATABASE xtdt WITH TEMPLATE = template0 ENCODING = 'UTF8' LOCALE_PROVIDER = libc LOCALE = 'English_United States.1252';


ALTER DATABASE xtdt OWNER TO geoserver;

\connect xtdt

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: postgis; Type: EXTENSION; Schema: -; Owner: -
--

CREATE EXTENSION IF NOT EXISTS postgis WITH SCHEMA public;


--
-- Name: EXTENSION postgis; Type: COMMENT; Schema: -; Owner: 
--

COMMENT ON EXTENSION postgis IS 'PostGIS geometry and geography spatial types and functions';


--
-- Data for Name: spatial_ref_sys; Type: TABLE DATA; Schema: public; Owner: geoserver
--



--
-- PostgreSQL database dump complete
--

--
-- PostgreSQL database cluster dump complete
--